From fa2f2d0ce15998e70bed3546e55cefa5ac4fb4df Mon Sep 17 00:00:00 2001 From: zc he Date: Thu, 21 Nov 2024 21:28:50 +0800 Subject: [PATCH] Fix ctrl_match with _entry_separator (#150) This PR fixes some errors of `ctrl_match` because of non-explicit separator in match body. image --- grammar.js | 85 +- src/grammar.json | 509 +- src/node-types.json | 26 +- src/parser.c | 592411 ++++++++++++++++----------------- test/corpus/ctrl/match.nu | 95 +- test/corpus/expr/closure.nu | 15 + test/corpus/expr/values.nu | 16 + 7 files changed, 284051 insertions(+), 309106 deletions(-) diff --git a/grammar.js b/grammar.js index dca986e..66e19dc 100644 --- a/grammar.js +++ b/grammar.js @@ -36,8 +36,10 @@ module.exports = grammar({ [$.block, $.val_closure], [$.block, $.val_record], [$.ctrl_if_parenthesized], + [$.ctrl_match], [$.ctrl_try_parenthesized], [$.expr_binary_parenthesized], + [$.parameter, $.param_type, $.param_value], [$.pipeline], [$.pipeline_parenthesized], ], @@ -186,7 +188,7 @@ module.exports = grammar({ _multiple_types: ($) => seq( BRACK().open_brack, - general_body_rules("", "_one_type", "_entry_separator")($), + optional(general_body_rules("", "_one_type", "_entry_separator")($)), BRACK().close_brack, ), @@ -195,45 +197,33 @@ module.exports = grammar({ parameter_parens: ($) => seq( BRACK().open_paren, - repeat($.parameter), repeat($._newline), + repeat($.parameter), BRACK().close_paren, ), parameter_bracks: ($) => seq( BRACK().open_brack, - repeat($.parameter), repeat($._newline), + repeat($.parameter), BRACK().close_brack, ), parameter_pipes: ($) => - seq(PUNC().pipe, repeat($.parameter), repeat($._newline), PUNC().pipe), + seq(PUNC().pipe, repeat($._newline), repeat($.parameter), PUNC().pipe), parameter: ($) => - prec.right( - seq( - repeat($._newline), - choice( - $._param_name, + seq( + choice( + $._param_name, + seq( field("param_long_flag", $.param_long_flag), - field( - "param_long_flag", - seq($.param_long_flag, field("flag_capsule", $.flag_capsule)), - ), + field("flag_capsule", optional($.flag_capsule)), ), - optional( - choice( - $.param_type, - $.param_value, - seq($.param_value, $.param_type), - seq($.param_type, $.param_value), - ), - ), - repeat($._newline), - optional(PUNC().comma), ), + repeat(choice($.param_type, $.param_value)), + repeat(choice($._newline, PUNC().comma)), ), _param_name: ($) => @@ -246,7 +236,9 @@ module.exports = grammar({ param_type: ($) => seq( + repeat($._newline), PUNC().colon, + repeat($._newline), $._type_annotation, field("completion", optional($.param_cmd)), ), @@ -447,34 +439,31 @@ module.exports = grammar({ KEYWORD().match, field( "scrutinee", - choice($._expression, alias($.unquoted, $.val_string)), + choice($._item_expression, alias($.unquoted, $.val_string)), ), open_brace(), - repeat($.match_arm), + optional(general_body_rules("", "match_arm", "_entry_separator")($)), optional($.default_arm), - repeat($._newline), BRACK().close_brace, ), match_arm: ($) => seq( - repeat($._newline), field("pattern", $.match_pattern), PUNC().fat_arrow, field("expression", $._match_expression), - optional(PUNC().comma), ), default_arm: ($) => seq( - repeat($._newline), field("default_pattern", PUNC().underscore), PUNC().fat_arrow, field("expression", $._match_expression), - optional(PUNC().comma), + repeat($._entry_separator), ), - _match_expression: ($) => choice($._expression, prec.dynamic(10, $.block)), + _match_expression: ($) => + choice($._item_expression, prec.dynamic(10, $.block)), match_pattern: ($) => choice( @@ -818,7 +807,7 @@ module.exports = grammar({ expr_parenthesized: ($) => seq( BRACK().open_paren, - $._parenthesized_body, + optional($._parenthesized_body), BRACK().close_paren, optional($.cell_path), ), @@ -839,18 +828,22 @@ module.exports = grammar({ ), _parenthesized_body: ($) => - seq( - repeat($._terminator), - repeat( - seq( - $._block_body_statement_parenthesized, - // at least one ; - repeat1(seq(repeat($._newline), PUNC().semicolon)), + choice( + seq( + repeat($._terminator), + repeat( + seq( + $._block_body_statement_parenthesized, + // at least one ; + repeat1(seq(repeat($._newline), PUNC().semicolon)), + ), ), + repeat($._newline), + $._block_body_statement_parenthesized, + repeat($._terminator), ), - repeat($._newline), - $._block_body_statement_parenthesized, - repeat($._terminator), + // empty body + repeat1($._terminator), ), val_range: _range_rule(false), @@ -1217,7 +1210,7 @@ module.exports = grammar({ /// CellPaths - cell_path: ($) => prec.right(1, repeat1($.path)), + cell_path: ($) => repeat1($.path), path: ($) => { const path = choice( @@ -1888,17 +1881,15 @@ function _unquoted_rule(type) { switch (type) { case "list": excluded_common += ","; + excluded_first += ","; break; case "record": excluded_common += ":,"; + excluded_first += ":,"; break; case "command": excluded_first += "-"; break; - case "identifier": - excluded_common += "<>=:"; - excluded_first += "<>=\\-#^"; - break; } const pattern_once = none_of(excluded_common); const pattern = token(seq(none_of(excluded_first), repeat(pattern_once))); diff --git a/src/grammar.json b/src/grammar.json index a2144fd..9e841ac 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2331,55 +2331,63 @@ "value": "[" }, { - "type": "PREC", - "value": 20, - "content": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_one_type" - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "_entry_separator" - } - } - ] - } - }, - { + "type": "CHOICE", + "members": [ + { + "type": "PREC", + "value": 20, + "content": { "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_one_type" + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } }, { "type": "REPEAT", "content": { - "type": "SYMBOL", - "name": "_entry_separator" + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_one_type" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_entry_separator" + } + } + ] } + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_one_type" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_entry_separator" + } + } + ] } ] } - ] - } + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -2398,14 +2406,14 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "parameter" + "name": "_newline" } }, { "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_newline" + "name": "parameter" } }, { @@ -2425,14 +2433,14 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "parameter" + "name": "_newline" } }, { "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_newline" + "name": "parameter" } }, { @@ -2452,14 +2460,14 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "parameter" + "name": "_newline" } }, { "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_newline" + "name": "parameter" } }, { @@ -2469,124 +2477,79 @@ ] }, "parameter": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { "type": "SYMBOL", - "name": "_newline" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_param_name" - }, - { - "type": "FIELD", - "name": "param_long_flag", - "content": { - "type": "SYMBOL", - "name": "param_long_flag" - } - }, - { - "type": "FIELD", - "name": "param_long_flag", - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "param_long_flag" - }, - { - "type": "FIELD", - "name": "flag_capsule", - "content": { - "type": "SYMBOL", - "name": "flag_capsule" - } - } - ] - } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "param_type" - }, - { + "name": "_param_name" + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "param_long_flag", + "content": { "type": "SYMBOL", - "name": "param_value" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "param_value" - }, - { - "type": "SYMBOL", - "name": "param_type" - } - ] - }, - { - "type": "SEQ", + "name": "param_long_flag" + } + }, + { + "type": "FIELD", + "name": "flag_capsule", + "content": { + "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "param_type" + "name": "flag_capsule" }, { - "type": "SYMBOL", - "name": "param_value" + "type": "BLANK" } ] } - ] + } + ] + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "param_type" }, { - "type": "BLANK" + "type": "SYMBOL", + "name": "param_value" } ] - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" - } - }, - { + } + }, + { + "type": "REPEAT", + "content": { "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "," + "type": "SYMBOL", + "name": "_newline" }, { - "type": "BLANK" + "type": "STRING", + "value": "," } ] } - ] - } + } + ] }, "_param_name": { "type": "CHOICE", @@ -2645,10 +2608,24 @@ "param_type": { "type": "SEQ", "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, { "type": "STRING", "value": ":" }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, { "type": "SYMBOL", "name": "_type_annotation" @@ -3863,7 +3840,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "_item_expression" }, { "type": "ALIAS", @@ -3899,11 +3876,63 @@ "value": "{" }, { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "match_arm" - } + "type": "CHOICE", + "members": [ + { + "type": "PREC", + "value": 20, + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "match_arm" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_entry_separator" + } + } + ] + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "match_arm" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_entry_separator" + } + } + ] + } + ] + } + }, + { + "type": "BLANK" + } + ] }, { "type": "CHOICE", @@ -3917,13 +3946,6 @@ } ] }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" - } - }, { "type": "STRING", "value": "}" @@ -3933,13 +3955,6 @@ "match_arm": { "type": "SEQ", "members": [ - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" - } - }, { "type": "FIELD", "name": "pattern", @@ -3959,31 +3974,12 @@ "type": "SYMBOL", "name": "_match_expression" } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] } ] }, "default_arm": { "type": "SEQ", "members": [ - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" - } - }, { "type": "FIELD", "name": "default_pattern", @@ -4005,16 +4001,11 @@ } }, { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_entry_separator" + } } ] }, @@ -4023,7 +4014,7 @@ "members": [ { "type": "SYMBOL", - "name": "_expression" + "name": "_item_expression" }, { "type": "PREC_DYNAMIC", @@ -13061,8 +13052,16 @@ "value": "(" }, { - "type": "SYMBOL", - "name": "_parenthesized_body" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_parenthesized_body" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -13148,59 +13147,71 @@ ] }, "_parenthesized_body": { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_terminator" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { "type": "SYMBOL", - "name": "_block_body_statement_parenthesized" - }, - { - "type": "REPEAT1", - "content": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" - } - }, - { - "type": "STRING", - "value": ";" + "name": "_terminator" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_block_body_statement_parenthesized" + }, + { + "type": "REPEAT1", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "STRING", + "value": ";" + } + ] } - ] - } + } + ] } - ] - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" - } - }, - { - "type": "SYMBOL", - "name": "_block_body_statement_parenthesized" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "SYMBOL", + "name": "_block_body_statement_parenthesized" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_terminator" + } + } + ] }, { - "type": "REPEAT", + "type": "REPEAT1", "content": { "type": "SYMBOL", "name": "_terminator" @@ -16645,14 +16656,10 @@ ] }, "cell_path": { - "type": "PREC_RIGHT", - "value": 1, + "type": "REPEAT1", "content": { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "path" - } + "type": "SYMBOL", + "name": "path" } }, "path": { @@ -17547,7 +17554,7 @@ "members": [ { "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`'$]" + "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`'$,]" }, { "type": "REPEAT", @@ -17693,7 +17700,7 @@ "members": [ { "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`'$]" + "value": "[^\\s\\r\\n\\t\\|();\\[\\]{}\"`'$:,]" }, { "type": "REPEAT", @@ -18300,12 +18307,20 @@ [ "ctrl_if_parenthesized" ], + [ + "ctrl_match" + ], [ "ctrl_try_parenthesized" ], [ "expr_binary_parenthesized" ], + [ + "parameter", + "param_type", + "param_value" + ], [ "pipeline" ], diff --git a/src/node-types.json b/src/node-types.json index a733fe7..7b1d90d 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -908,18 +908,10 @@ "multiple": false, "required": true, "types": [ - { - "type": "expr_binary", - "named": true - }, { "type": "expr_parenthesized", "named": true }, - { - "type": "expr_unary", - "named": true - }, { "type": "val_binary", "named": true @@ -1549,18 +1541,10 @@ "type": "block", "named": true }, - { - "type": "expr_binary", - "named": true - }, { "type": "expr_parenthesized", "named": true }, - { - "type": "expr_unary", - "named": true - }, { "type": "val_binary", "named": true @@ -2692,18 +2676,10 @@ "type": "block", "named": true }, - { - "type": "expr_binary", - "named": true - }, { "type": "expr_parenthesized", "named": true }, - { - "type": "expr_unary", - "named": true - }, { "type": "val_binary", "named": true @@ -3887,7 +3863,7 @@ "fields": { "type": { "multiple": true, - "required": true, + "required": false, "types": [ { "type": "collection_type", diff --git a/src/parser.c b/src/parser.c index 99d4a70..afdb11e 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,15 +13,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 8062 -#define LARGE_STATE_COUNT 1678 -#define SYMBOL_COUNT 524 +#define STATE_COUNT 7817 +#define LARGE_STATE_COUNT 1474 +#define SYMBOL_COUNT 526 #define ALIAS_COUNT 4 #define TOKEN_COUNT 320 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 72 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 274 +#define PRODUCTION_ID_COUNT 272 enum ts_symbol_identifiers { sym_identifier = 1, @@ -518,39 +518,41 @@ enum ts_symbol_identifiers { aux_sym__multiple_types_repeat1 = 492, aux_sym__multiple_types_repeat2 = 493, aux_sym_parameter_parens_repeat1 = 494, - aux_sym_collection_type_repeat1 = 495, - aux_sym_ctrl_do_repeat1 = 496, - aux_sym_ctrl_do_repeat2 = 497, - aux_sym_ctrl_do_parenthesized_repeat1 = 498, - aux_sym_ctrl_do_parenthesized_repeat2 = 499, - aux_sym_ctrl_do_parenthesized_repeat3 = 500, - aux_sym_ctrl_match_repeat1 = 501, - aux_sym_match_pattern_repeat1 = 502, - aux_sym__match_pattern_list_repeat1 = 503, - aux_sym__match_pattern_record_repeat1 = 504, - aux_sym_pipe_element_repeat1 = 505, - aux_sym_pipe_element_repeat2 = 506, - aux_sym_pipe_element_parenthesized_repeat1 = 507, - aux_sym_command_list_repeat1 = 508, - aux_sym__parenthesized_body_repeat1 = 509, - aux_sym__parenthesized_body_repeat2 = 510, - aux_sym_val_binary_repeat1 = 511, - aux_sym__str_double_quotes_repeat1 = 512, - aux_sym__inter_single_quotes_repeat1 = 513, - aux_sym__inter_double_quotes_repeat1 = 514, - aux_sym_list_body_repeat1 = 515, - aux_sym_record_body_repeat1 = 516, - aux_sym_val_table_repeat1 = 517, - aux_sym_cell_path_repeat1 = 518, - aux_sym_command_repeat1 = 519, - aux_sym__command_parenthesized_repeat1 = 520, - aux_sym__unquoted_with_expr_repeat1 = 521, - aux_sym__unquoted_in_list_with_expr_repeat1 = 522, - aux_sym__unquoted_in_record_with_expr_repeat1 = 523, - anon_alias_sym__head = 524, - anon_alias_sym__prefix = 525, - anon_alias_sym__unit = 526, - anon_alias_sym_quoted = 527, + aux_sym_parameter_repeat1 = 495, + aux_sym_parameter_repeat2 = 496, + aux_sym_collection_type_repeat1 = 497, + aux_sym_ctrl_do_repeat1 = 498, + aux_sym_ctrl_do_repeat2 = 499, + aux_sym_ctrl_do_parenthesized_repeat1 = 500, + aux_sym_ctrl_do_parenthesized_repeat2 = 501, + aux_sym_ctrl_do_parenthesized_repeat3 = 502, + aux_sym_ctrl_match_repeat1 = 503, + aux_sym_match_pattern_repeat1 = 504, + aux_sym__match_pattern_list_repeat1 = 505, + aux_sym__match_pattern_record_repeat1 = 506, + aux_sym_pipe_element_repeat1 = 507, + aux_sym_pipe_element_repeat2 = 508, + aux_sym_pipe_element_parenthesized_repeat1 = 509, + aux_sym_command_list_repeat1 = 510, + aux_sym__parenthesized_body_repeat1 = 511, + aux_sym__parenthesized_body_repeat2 = 512, + aux_sym_val_binary_repeat1 = 513, + aux_sym__str_double_quotes_repeat1 = 514, + aux_sym__inter_single_quotes_repeat1 = 515, + aux_sym__inter_double_quotes_repeat1 = 516, + aux_sym_list_body_repeat1 = 517, + aux_sym_record_body_repeat1 = 518, + aux_sym_val_table_repeat1 = 519, + aux_sym_cell_path_repeat1 = 520, + aux_sym_command_repeat1 = 521, + aux_sym__command_parenthesized_repeat1 = 522, + aux_sym__unquoted_with_expr_repeat1 = 523, + aux_sym__unquoted_in_list_with_expr_repeat1 = 524, + aux_sym__unquoted_in_record_with_expr_repeat1 = 525, + anon_alias_sym__head = 526, + anon_alias_sym__prefix = 527, + anon_alias_sym__unit = 528, + anon_alias_sym_quoted = 529, }; static const char * const ts_symbol_names[] = { @@ -1049,6 +1051,8 @@ static const char * const ts_symbol_names[] = { [aux_sym__multiple_types_repeat1] = "_multiple_types_repeat1", [aux_sym__multiple_types_repeat2] = "_multiple_types_repeat2", [aux_sym_parameter_parens_repeat1] = "parameter_parens_repeat1", + [aux_sym_parameter_repeat1] = "parameter_repeat1", + [aux_sym_parameter_repeat2] = "parameter_repeat2", [aux_sym_collection_type_repeat1] = "collection_type_repeat1", [aux_sym_ctrl_do_repeat1] = "ctrl_do_repeat1", [aux_sym_ctrl_do_repeat2] = "ctrl_do_repeat2", @@ -1580,6 +1584,8 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym__multiple_types_repeat1] = aux_sym__multiple_types_repeat1, [aux_sym__multiple_types_repeat2] = aux_sym__multiple_types_repeat2, [aux_sym_parameter_parens_repeat1] = aux_sym_parameter_parens_repeat1, + [aux_sym_parameter_repeat1] = aux_sym_parameter_repeat1, + [aux_sym_parameter_repeat2] = aux_sym_parameter_repeat2, [aux_sym_collection_type_repeat1] = aux_sym_collection_type_repeat1, [aux_sym_ctrl_do_repeat1] = aux_sym_ctrl_do_repeat1, [aux_sym_ctrl_do_repeat2] = aux_sym_ctrl_do_repeat2, @@ -3596,6 +3602,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_parameter_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_parameter_repeat2] = { + .visible = false, + .named = false, + }, [aux_sym_collection_type_repeat1] = { .visible = false, .named = false, @@ -3995,142 +4009,142 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [115] = {.index = 213, .length = 1}, [116] = {.index = 214, .length = 2}, [117] = {.index = 216, .length = 2}, - [118] = {.index = 218, .length = 4}, - [119] = {.index = 222, .length = 1}, - [120] = {.index = 223, .length = 1}, - [121] = {.index = 211, .length = 2}, - [122] = {.index = 224, .length = 2}, - [123] = {.index = 224, .length = 2}, - [124] = {.index = 224, .length = 2}, - [125] = {.index = 224, .length = 2}, - [126] = {.index = 226, .length = 2}, - [127] = {.index = 228, .length = 1}, - [128] = {.index = 229, .length = 9}, - [129] = {.index = 238, .length = 2}, - [130] = {.index = 240, .length = 1}, - [131] = {.index = 241, .length = 2}, - [132] = {.index = 243, .length = 1}, - [133] = {.index = 244, .length = 2}, - [134] = {.index = 244, .length = 2}, - [135] = {.index = 244, .length = 2}, - [136] = {.index = 244, .length = 2}, - [137] = {.index = 246, .length = 4}, - [138] = {.index = 250, .length = 5}, - [139] = {.index = 255, .length = 5}, - [140] = {.index = 260, .length = 2}, - [141] = {.index = 262, .length = 5}, - [142] = {.index = 267, .length = 2}, - [143] = {.index = 267, .length = 2}, - [144] = {.index = 269, .length = 6}, - [145] = {.index = 275, .length = 3}, - [146] = {.index = 278, .length = 3}, - [147] = {.index = 281, .length = 6}, - [148] = {.index = 287, .length = 2}, - [149] = {.index = 287, .length = 2}, - [150] = {.index = 289, .length = 3}, - [151] = {.index = 292, .length = 1}, - [152] = {.index = 293, .length = 2}, - [153] = {.index = 295, .length = 2}, - [154] = {.index = 297, .length = 2}, - [155] = {.index = 299, .length = 2}, - [156] = {.index = 301, .length = 3}, - [157] = {.index = 301, .length = 3}, - [158] = {.index = 304, .length = 3}, - [159] = {.index = 304, .length = 3}, - [160] = {.index = 307, .length = 5}, - [161] = {.index = 312, .length = 3}, - [162] = {.index = 315, .length = 3}, - [163] = {.index = 318, .length = 1}, - [164] = {.index = 319, .length = 1}, - [165] = {.index = 320, .length = 2}, - [166] = {.index = 322, .length = 4}, - [167] = {.index = 326, .length = 3}, - [168] = {.index = 326, .length = 3}, - [169] = {.index = 326, .length = 3}, - [170] = {.index = 326, .length = 3}, - [171] = {.index = 326, .length = 3}, - [172] = {.index = 326, .length = 3}, - [173] = {.index = 326, .length = 3}, - [174] = {.index = 326, .length = 3}, - [175] = {.index = 329, .length = 6}, - [176] = {.index = 335, .length = 5}, - [177] = {.index = 340, .length = 1}, - [178] = {.index = 340, .length = 1}, - [179] = {.index = 341, .length = 2}, - [180] = {.index = 343, .length = 2}, - [181] = {.index = 345, .length = 3}, - [182] = {.index = 348, .length = 6}, - [183] = {.index = 354, .length = 3}, - [184] = {.index = 357, .length = 4}, - [185] = {.index = 361, .length = 3}, - [187] = {.index = 364, .length = 2}, - [188] = {.index = 366, .length = 2}, - [189] = {.index = 368, .length = 2}, - [190] = {.index = 370, .length = 9}, - [191] = {.index = 379, .length = 9}, - [192] = {.index = 388, .length = 3}, - [193] = {.index = 388, .length = 3}, - [194] = {.index = 391, .length = 5}, - [195] = {.index = 396, .length = 5}, - [196] = {.index = 401, .length = 5}, - [197] = {.index = 406, .length = 1}, - [198] = {.index = 407, .length = 2}, - [199] = {.index = 409, .length = 1}, - [200] = {.index = 410, .length = 2}, - [201] = {.index = 412, .length = 1}, - [202] = {.index = 413, .length = 2}, - [203] = {.index = 415, .length = 2}, - [204] = {.index = 417, .length = 1}, - [205] = {.index = 418, .length = 4}, - [206] = {.index = 422, .length = 4}, - [207] = {.index = 426, .length = 6}, - [208] = {.index = 432, .length = 3}, - [209] = {.index = 435, .length = 6}, - [210] = {.index = 441, .length = 2}, - [211] = {.index = 443, .length = 1}, - [212] = {.index = 444, .length = 1}, - [213] = {.index = 445, .length = 2}, - [214] = {.index = 447, .length = 6}, - [215] = {.index = 453, .length = 4}, - [216] = {.index = 457, .length = 3}, - [217] = {.index = 460, .length = 4}, - [218] = {.index = 464, .length = 3}, - [219] = {.index = 467, .length = 3}, - [220] = {.index = 470, .length = 3}, - [221] = {.index = 473, .length = 3}, - [222] = {.index = 476, .length = 3}, - [223] = {.index = 479, .length = 3}, - [224] = {.index = 482, .length = 2}, - [225] = {.index = 484, .length = 2}, - [226] = {.index = 486, .length = 9}, - [227] = {.index = 495, .length = 5}, - [228] = {.index = 500, .length = 5}, - [229] = {.index = 505, .length = 5}, - [230] = {.index = 510, .length = 5}, - [231] = {.index = 515, .length = 2}, - [232] = {.index = 517, .length = 2}, - [233] = {.index = 519, .length = 2}, - [234] = {.index = 521, .length = 1}, - [235] = {.index = 522, .length = 4}, - [236] = {.index = 526, .length = 2}, - [237] = {.index = 526, .length = 2}, - [238] = {.index = 528, .length = 3}, - [239] = {.index = 531, .length = 2}, - [240] = {.index = 533, .length = 4}, + [118] = {.index = 218, .length = 1}, + [119] = {.index = 211, .length = 2}, + [120] = {.index = 219, .length = 2}, + [121] = {.index = 219, .length = 2}, + [122] = {.index = 219, .length = 2}, + [123] = {.index = 219, .length = 2}, + [124] = {.index = 221, .length = 2}, + [125] = {.index = 223, .length = 1}, + [126] = {.index = 224, .length = 9}, + [127] = {.index = 233, .length = 2}, + [128] = {.index = 235, .length = 1}, + [129] = {.index = 236, .length = 2}, + [130] = {.index = 238, .length = 1}, + [131] = {.index = 239, .length = 2}, + [132] = {.index = 239, .length = 2}, + [133] = {.index = 239, .length = 2}, + [134] = {.index = 239, .length = 2}, + [135] = {.index = 241, .length = 4}, + [136] = {.index = 245, .length = 5}, + [137] = {.index = 250, .length = 5}, + [138] = {.index = 255, .length = 2}, + [139] = {.index = 257, .length = 1}, + [140] = {.index = 258, .length = 5}, + [141] = {.index = 263, .length = 2}, + [142] = {.index = 263, .length = 2}, + [143] = {.index = 265, .length = 6}, + [144] = {.index = 271, .length = 3}, + [145] = {.index = 274, .length = 3}, + [146] = {.index = 277, .length = 6}, + [147] = {.index = 283, .length = 2}, + [148] = {.index = 283, .length = 2}, + [149] = {.index = 285, .length = 3}, + [150] = {.index = 288, .length = 1}, + [151] = {.index = 289, .length = 2}, + [152] = {.index = 291, .length = 2}, + [153] = {.index = 293, .length = 2}, + [154] = {.index = 295, .length = 2}, + [155] = {.index = 297, .length = 3}, + [156] = {.index = 297, .length = 3}, + [157] = {.index = 300, .length = 3}, + [158] = {.index = 300, .length = 3}, + [159] = {.index = 303, .length = 5}, + [160] = {.index = 308, .length = 3}, + [161] = {.index = 311, .length = 3}, + [162] = {.index = 314, .length = 1}, + [163] = {.index = 315, .length = 1}, + [164] = {.index = 316, .length = 4}, + [165] = {.index = 320, .length = 3}, + [166] = {.index = 320, .length = 3}, + [167] = {.index = 320, .length = 3}, + [168] = {.index = 320, .length = 3}, + [169] = {.index = 320, .length = 3}, + [170] = {.index = 320, .length = 3}, + [171] = {.index = 320, .length = 3}, + [172] = {.index = 320, .length = 3}, + [173] = {.index = 323, .length = 6}, + [174] = {.index = 329, .length = 5}, + [175] = {.index = 334, .length = 1}, + [176] = {.index = 334, .length = 1}, + [177] = {.index = 335, .length = 2}, + [178] = {.index = 337, .length = 1}, + [179] = {.index = 338, .length = 2}, + [180] = {.index = 340, .length = 2}, + [181] = {.index = 342, .length = 3}, + [182] = {.index = 345, .length = 6}, + [183] = {.index = 351, .length = 3}, + [184] = {.index = 354, .length = 4}, + [185] = {.index = 358, .length = 3}, + [187] = {.index = 361, .length = 2}, + [188] = {.index = 363, .length = 2}, + [189] = {.index = 365, .length = 2}, + [190] = {.index = 367, .length = 9}, + [191] = {.index = 376, .length = 9}, + [192] = {.index = 385, .length = 3}, + [193] = {.index = 385, .length = 3}, + [194] = {.index = 388, .length = 5}, + [195] = {.index = 393, .length = 5}, + [196] = {.index = 398, .length = 5}, + [197] = {.index = 403, .length = 1}, + [198] = {.index = 404, .length = 2}, + [199] = {.index = 406, .length = 1}, + [200] = {.index = 407, .length = 2}, + [201] = {.index = 409, .length = 1}, + [202] = {.index = 410, .length = 2}, + [203] = {.index = 412, .length = 2}, + [204] = {.index = 414, .length = 1}, + [205] = {.index = 415, .length = 4}, + [206] = {.index = 419, .length = 4}, + [207] = {.index = 423, .length = 6}, + [208] = {.index = 429, .length = 3}, + [209] = {.index = 432, .length = 6}, + [210] = {.index = 438, .length = 2}, + [211] = {.index = 440, .length = 1}, + [212] = {.index = 441, .length = 2}, + [213] = {.index = 443, .length = 2}, + [214] = {.index = 445, .length = 6}, + [215] = {.index = 451, .length = 4}, + [216] = {.index = 455, .length = 3}, + [217] = {.index = 458, .length = 4}, + [218] = {.index = 462, .length = 3}, + [219] = {.index = 465, .length = 3}, + [220] = {.index = 468, .length = 3}, + [221] = {.index = 471, .length = 3}, + [222] = {.index = 474, .length = 3}, + [223] = {.index = 477, .length = 3}, + [224] = {.index = 480, .length = 2}, + [225] = {.index = 482, .length = 2}, + [226] = {.index = 484, .length = 9}, + [227] = {.index = 493, .length = 5}, + [228] = {.index = 498, .length = 5}, + [229] = {.index = 503, .length = 5}, + [230] = {.index = 508, .length = 5}, + [231] = {.index = 513, .length = 2}, + [232] = {.index = 515, .length = 1}, + [233] = {.index = 516, .length = 4}, + [234] = {.index = 520, .length = 2}, + [235] = {.index = 520, .length = 2}, + [236] = {.index = 522, .length = 3}, + [237] = {.index = 525, .length = 2}, + [238] = {.index = 527, .length = 4}, + [239] = {.index = 531, .length = 3}, + [240] = {.index = 534, .length = 3}, [241] = {.index = 537, .length = 3}, [242] = {.index = 540, .length = 3}, [243] = {.index = 543, .length = 3}, [244] = {.index = 546, .length = 3}, [245] = {.index = 549, .length = 3}, [246] = {.index = 552, .length = 3}, - [247] = {.index = 555, .length = 3}, - [248] = {.index = 558, .length = 3}, - [249] = {.index = 561, .length = 2}, - [250] = {.index = 563, .length = 2}, - [251] = {.index = 565, .length = 5}, - [252] = {.index = 570, .length = 5}, - [253] = {.index = 575, .length = 5}, - [254] = {.index = 580, .length = 3}, + [247] = {.index = 555, .length = 2}, + [248] = {.index = 557, .length = 2}, + [249] = {.index = 559, .length = 5}, + [250] = {.index = 564, .length = 5}, + [251] = {.index = 569, .length = 5}, + [252] = {.index = 574, .length = 3}, + [253] = {.index = 574, .length = 3}, + [254] = {.index = 577, .length = 3}, [255] = {.index = 580, .length = 3}, [256] = {.index = 583, .length = 3}, [257] = {.index = 586, .length = 3}, @@ -4138,18 +4152,16 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [259] = {.index = 592, .length = 3}, [260] = {.index = 595, .length = 3}, [261] = {.index = 598, .length = 3}, - [262] = {.index = 601, .length = 3}, - [263] = {.index = 604, .length = 3}, - [264] = {.index = 607, .length = 2}, - [265] = {.index = 609, .length = 5}, + [262] = {.index = 601, .length = 2}, + [263] = {.index = 603, .length = 5}, + [264] = {.index = 608, .length = 3}, + [265] = {.index = 611, .length = 3}, [266] = {.index = 614, .length = 3}, [267] = {.index = 617, .length = 3}, [268] = {.index = 620, .length = 3}, [269] = {.index = 623, .length = 3}, [270] = {.index = 626, .length = 3}, [271] = {.index = 629, .length = 3}, - [272] = {.index = 632, .length = 3}, - [273] = {.index = 635, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -4473,23 +4485,16 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_flag_capsule, 1}, {field_param_long_flag, 0}, [218] = - {field_param_name, 1, .inherited = true}, - {field_param_optional, 1, .inherited = true}, - {field_param_rest, 1, .inherited = true}, - {field_param_short_flag, 1, .inherited = true}, - [222] = - {field_param_long_flag, 1}, - [223] = {field_parameters, 1}, - [224] = + [219] = {field_end, 3}, {field_step, 1}, - [226] = + [221] = {field_catch_branch, 3}, {field_try_branch, 1}, - [228] = + [223] = {field_overlay, 3}, - [229] = + [224] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 2, .inherited = true}, @@ -4499,184 +4504,188 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 2}, {field_rhs, 2, .inherited = true}, - [238] = + [233] = {field_digit, 0}, {field_digit, 1}, - [240] = + [235] = {field_digit, 2, .inherited = true}, - [241] = + [236] = {field_digit, 0, .inherited = true}, {field_digit, 1, .inherited = true}, - [243] = + [238] = {field_file_path, 2}, - [244] = + [239] = {field_start, 0}, {field_step, 2}, - [246] = + [241] = {field_name, 2}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, {field_value, 4}, - [250] = + [245] = {field_body, 4}, {field_name, 2}, {field_parameters, 3}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [255] = + [250] = {field_body, 4}, {field_name, 2}, {field_quoted_name, 2, .inherited = true}, {field_signature, 3}, {field_unquoted_name, 2, .inherited = true}, - [260] = + [255] = {field_completion, 2}, {field_type, 1, .inherited = true}, - [262] = + [257] = + {field_type, 2, .inherited = true}, + [258] = {field_dollar_name, 0, .inherited = true}, {field_name, 0}, {field_type, 1}, {field_value, 3}, {field_var_name, 0, .inherited = true}, - [267] = + [263] = {field_name, 1}, {field_value, 3}, - [269] = + [265] = {field_body, 4}, {field_name, 1}, {field_parameters, 2}, {field_quoted_name, 1, .inherited = true}, {field_return_type, 3}, {field_unquoted_name, 1, .inherited = true}, - [275] = + [271] = {field_cmd, 1}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [278] = + [274] = {field_cmd, 0}, {field_quoted_name, 0, .inherited = true}, {field_unquoted_name, 0, .inherited = true}, - [281] = + [277] = {field_cmd, 0, .inherited = true}, {field_cmd, 1, .inherited = true}, {field_quoted_name, 0, .inherited = true}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 0, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [287] = + [283] = {field_protected_path, 1}, {field_protected_path, 2}, - [289] = + [285] = {field_head, 1}, {field_head, 2}, {field_row, 3}, - [292] = + [288] = {field_row, 0}, - [293] = + [289] = {field_row, 0, .inherited = true}, {field_row, 1, .inherited = true}, - [295] = + [291] = {field_head, 2}, {field_head, 3}, - [297] = + [293] = {field_condition, 1}, {field_then_branch, 3}, - [299] = + [295] = {field_condition, 2}, {field_then_branch, 3}, - [301] = + [297] = {field_lhs, 0}, {field_opr, 1}, {field_rhs, 3}, - [304] = + [300] = {field_lhs, 0}, {field_opr, 2}, {field_rhs, 3}, - [307] = + [303] = {field_body, 4}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 3}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [312] = + [308] = {field_condition, 1}, {field_else_branch, 4}, {field_then_branch, 2}, - [315] = + [311] = {field_condition, 1}, {field_else_block, 4}, {field_then_branch, 2}, - [318] = + [314] = {field_name, 2}, - [319] = + [315] = {field_param_value, 1}, - [320] = - {field_flag_capsule, 2}, - {field_param_long_flag, 1}, - [322] = + [316] = {field_overlay, 2}, {field_quoted_name, 4, .inherited = true}, {field_rename, 4}, {field_unquoted_name, 4, .inherited = true}, - [326] = + [320] = {field_end, 4}, {field_start, 0}, {field_step, 2}, - [329] = + [323] = {field_body, 5}, {field_name, 2}, {field_parameters, 3}, {field_quoted_name, 2, .inherited = true}, {field_return_type, 4}, {field_unquoted_name, 2, .inherited = true}, - [335] = + [329] = {field_body, 5}, {field_name, 3}, {field_parameters, 4}, {field_quoted_name, 3, .inherited = true}, {field_unquoted_name, 3, .inherited = true}, - [340] = + [334] = {field_key, 0}, - [341] = + [335] = + {field_completion, 3}, + {field_type, 2, .inherited = true}, + [337] = + {field_type, 3, .inherited = true}, + [338] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [343] = + [340] = {field_type, 0, .inherited = true}, {field_type, 2, .inherited = true}, - [345] = + [342] = {field_cmd, 2}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [348] = + [345] = {field_cmd, 1, .inherited = true}, {field_cmd, 2}, {field_quoted_name, 1, .inherited = true}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [354] = + [351] = {field_head, 1}, {field_head, 2}, {field_row, 4}, - [357] = + [354] = {field_head, 1}, {field_head, 2}, {field_row, 3, .inherited = true}, {field_row, 4}, - [361] = + [358] = {field_head, 2}, {field_head, 3}, {field_row, 4}, - [364] = + [361] = {field_condition, 2}, {field_then_branch, 4}, - [366] = + [363] = {field_catch_branch, 4}, {field_try_branch, 1}, - [368] = + [365] = {field_catch_branch, 4}, {field_try_branch, 2}, - [370] = + [367] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 3, .inherited = true}, @@ -4686,7 +4695,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 3}, {field_rhs, 3, .inherited = true}, - [379] = + [376] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 3, .inherited = true}, @@ -4696,138 +4705,139 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 3}, {field_rhs, 3, .inherited = true}, - [388] = + [385] = {field_lhs, 0}, {field_opr, 2}, {field_rhs, 4}, - [391] = + [388] = {field_body, 5}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 3}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [396] = + [393] = {field_body, 5}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 4}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [401] = + [398] = {field_body, 5}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 4}, {field_looping_var, 2}, {field_var_name, 2, .inherited = true}, - [406] = + [403] = {field_rest, 1}, - [407] = + [404] = {field_item, 0}, {field_item, 1}, - [409] = + [406] = {field_item, 1, .inherited = true}, - [410] = + [407] = {field_item, 0, .inherited = true}, {field_item, 1, .inherited = true}, - [412] = + [409] = {field_entry, 1, .inherited = true}, - [413] = + [410] = {field_default_pattern, 0}, {field_expression, 2}, - [415] = + [412] = {field_expression, 2}, {field_pattern, 0}, - [417] = + [414] = {field_param_value, 2}, - [418] = + [415] = {field_overlay, 2}, {field_quoted_name, 5, .inherited = true}, {field_rename, 5}, {field_unquoted_name, 5, .inherited = true}, - [422] = + [419] = {field_overlay, 3}, {field_quoted_name, 5, .inherited = true}, {field_rename, 5}, {field_unquoted_name, 5, .inherited = true}, - [426] = + [423] = {field_body, 6}, {field_name, 3}, {field_parameters, 4}, {field_quoted_name, 3, .inherited = true}, {field_return_type, 5}, {field_unquoted_name, 3, .inherited = true}, - [432] = + [429] = {field_completion, 2, .inherited = true}, {field_key, 2, .inherited = true}, {field_type, 2, .inherited = true}, - [435] = + [432] = {field_completion, 0, .inherited = true}, {field_completion, 1, .inherited = true}, {field_key, 0, .inherited = true}, {field_key, 1, .inherited = true}, {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [441] = + [438] = {field_inner, 2}, {field_type, 2, .inherited = true}, - [443] = + [440] = {field_completion, 2}, - [444] = - {field_type, 2, .inherited = true}, - [445] = + [441] = + {field_completion, 4}, + {field_type, 3, .inherited = true}, + [443] = {field_type, 1, .inherited = true}, {field_type, 2, .inherited = true}, - [447] = + [445] = {field_cmd, 2, .inherited = true}, {field_cmd, 3}, {field_quoted_name, 2, .inherited = true}, {field_quoted_name, 3, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, {field_unquoted_name, 3, .inherited = true}, - [453] = + [451] = {field_head, 1}, {field_head, 2}, {field_row, 4, .inherited = true}, {field_row, 5}, - [457] = + [455] = {field_head, 2}, {field_head, 3}, {field_row, 5}, - [460] = + [458] = {field_head, 2}, {field_head, 3}, {field_row, 4, .inherited = true}, {field_row, 5}, - [464] = + [462] = {field_condition, 1}, {field_else_branch, 5}, {field_then_branch, 2}, - [467] = + [465] = {field_condition, 1}, {field_else_block, 5}, {field_then_branch, 2}, - [470] = + [468] = {field_condition, 1}, {field_else_branch, 5}, {field_then_branch, 3}, - [473] = + [471] = {field_condition, 1}, {field_else_block, 5}, {field_then_branch, 3}, - [476] = + [474] = {field_condition, 2}, {field_else_branch, 5}, {field_then_branch, 3}, - [479] = + [477] = {field_condition, 2}, {field_else_block, 5}, {field_then_branch, 3}, - [482] = + [480] = {field_catch_branch, 5}, {field_try_branch, 1}, - [484] = + [482] = {field_catch_branch, 5}, {field_try_branch, 2}, - [486] = + [484] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 4, .inherited = true}, @@ -4837,191 +4847,185 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 4}, {field_rhs, 4, .inherited = true}, - [495] = + [493] = {field_body, 6}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 4}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [500] = + [498] = {field_body, 6}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 5}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [505] = + [503] = {field_body, 6}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 4}, {field_looping_var, 2}, {field_var_name, 2, .inherited = true}, - [510] = + [508] = {field_body, 6}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 5}, {field_looping_var, 2}, {field_var_name, 2, .inherited = true}, - [515] = + [513] = {field_item, 1, .inherited = true}, {field_rest, 2}, - [517] = - {field_default_pattern, 1}, - {field_expression, 3}, - [519] = - {field_expression, 3}, - {field_pattern, 1}, - [521] = + [515] = {field_param_value, 3}, - [522] = + [516] = {field_overlay, 3}, {field_quoted_name, 6, .inherited = true}, {field_rename, 6}, {field_unquoted_name, 6, .inherited = true}, - [526] = + [520] = {field_key, 0}, {field_type, 2, .inherited = true}, - [528] = + [522] = {field_completion, 3}, {field_inner, 2}, {field_type, 2, .inherited = true}, - [531] = + [525] = {field_type, 2, .inherited = true}, {field_type, 3, .inherited = true}, - [533] = + [527] = {field_head, 2}, {field_head, 3}, {field_row, 5, .inherited = true}, {field_row, 6}, - [537] = + [531] = {field_condition, 1}, {field_else_branch, 6}, {field_then_branch, 2}, - [540] = + [534] = {field_condition, 1}, {field_else_block, 6}, {field_then_branch, 2}, - [543] = + [537] = {field_condition, 1}, {field_else_branch, 6}, {field_then_branch, 3}, - [546] = + [540] = {field_condition, 1}, {field_else_block, 6}, {field_then_branch, 3}, - [549] = + [543] = {field_condition, 2}, {field_else_branch, 6}, {field_then_branch, 3}, - [552] = + [546] = {field_condition, 2}, {field_else_block, 6}, {field_then_branch, 3}, - [555] = + [549] = {field_condition, 2}, {field_else_branch, 6}, {field_then_branch, 4}, - [558] = + [552] = {field_condition, 2}, {field_else_block, 6}, {field_then_branch, 4}, - [561] = + [555] = {field_catch_branch, 6}, {field_try_branch, 1}, - [563] = + [557] = {field_catch_branch, 6}, {field_try_branch, 2}, - [565] = + [559] = {field_body, 7}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 5}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [570] = + [564] = {field_body, 7}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 5}, {field_looping_var, 2}, {field_var_name, 2, .inherited = true}, - [575] = + [569] = {field_body, 7}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 6}, {field_looping_var, 2}, {field_var_name, 2, .inherited = true}, - [580] = + [574] = {field_completion, 3}, {field_key, 0}, {field_type, 2, .inherited = true}, - [583] = + [577] = {field_condition, 1}, {field_else_branch, 7}, {field_then_branch, 2}, - [586] = + [580] = {field_condition, 1}, {field_else_block, 7}, {field_then_branch, 2}, - [589] = + [583] = {field_condition, 1}, {field_else_branch, 7}, {field_then_branch, 3}, - [592] = + [586] = {field_condition, 1}, {field_else_block, 7}, {field_then_branch, 3}, - [595] = + [589] = {field_condition, 2}, {field_else_branch, 7}, {field_then_branch, 3}, - [598] = + [592] = {field_condition, 2}, {field_else_block, 7}, {field_then_branch, 3}, - [601] = + [595] = {field_condition, 2}, {field_else_branch, 7}, {field_then_branch, 4}, - [604] = + [598] = {field_condition, 2}, {field_else_block, 7}, {field_then_branch, 4}, - [607] = + [601] = {field_catch_branch, 7}, {field_try_branch, 2}, - [609] = + [603] = {field_body, 8}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 6}, {field_looping_var, 2}, {field_var_name, 2, .inherited = true}, - [614] = + [608] = {field_condition, 1}, {field_else_branch, 8}, {field_then_branch, 3}, - [617] = + [611] = {field_condition, 1}, {field_else_block, 8}, {field_then_branch, 3}, - [620] = + [614] = {field_condition, 2}, {field_else_branch, 8}, {field_then_branch, 3}, - [623] = + [617] = {field_condition, 2}, {field_else_block, 8}, {field_then_branch, 3}, - [626] = + [620] = {field_condition, 2}, {field_else_branch, 8}, {field_then_branch, 4}, - [629] = + [623] = {field_condition, 2}, {field_else_block, 8}, {field_then_branch, 4}, - [632] = + [626] = {field_condition, 2}, {field_else_branch, 9}, {field_then_branch, 4}, - [635] = + [629] = {field_condition, 2}, {field_else_block, 9}, {field_then_branch, 4}, @@ -5087,65 +5091,65 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [114] = { [0] = sym_identifier, }, - [123] = { + [121] = { [3] = sym_val_number, }, - [124] = { + [122] = { [1] = sym_val_number, }, - [125] = { + [123] = { [1] = sym_val_number, [3] = sym_val_number, }, - [134] = { + [132] = { [2] = sym_val_number, }, - [135] = { + [133] = { [0] = sym_val_number, }, - [136] = { + [134] = { [0] = sym_val_number, [2] = sym_val_number, }, - [143] = { + [142] = { [3] = sym_val_string, }, - [149] = { + [148] = { [1] = anon_alias_sym_quoted, }, - [157] = { + [156] = { [3] = sym_val_string, }, - [159] = { + [158] = { [3] = sym_val_string, }, - [168] = { + [166] = { [4] = sym_val_number, }, - [169] = { + [167] = { [2] = sym_val_number, }, - [170] = { + [168] = { [2] = sym_val_number, [4] = sym_val_number, }, - [171] = { + [169] = { [0] = sym_val_number, }, - [172] = { + [170] = { [0] = sym_val_number, [4] = sym_val_number, }, - [173] = { + [171] = { [0] = sym_val_number, [2] = sym_val_number, }, - [174] = { + [172] = { [0] = sym_val_number, [2] = sym_val_number, [4] = sym_val_number, }, - [178] = { + [176] = { [0] = sym_identifier, }, [186] = { @@ -5154,10 +5158,10 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [193] = { [4] = sym_val_string, }, - [237] = { + [235] = { [0] = sym_identifier, }, - [255] = { + [253] = { [0] = sym_identifier, }, }; @@ -5197,14 +5201,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 3, - [5] = 5, - [6] = 5, + [4] = 4, + [5] = 3, + [6] = 4, [7] = 3, - [8] = 3, - [9] = 5, - [10] = 3, - [11] = 5, + [8] = 4, + [9] = 3, + [10] = 4, + [11] = 3, [12] = 3, [13] = 3, [14] = 3, @@ -5219,113 +5223,113 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [23] = 3, [24] = 3, [25] = 3, - [26] = 3, - [27] = 5, - [28] = 28, - [29] = 28, - [30] = 28, - [31] = 28, - [32] = 32, - [33] = 33, - [34] = 32, - [35] = 35, - [36] = 36, - [37] = 33, - [38] = 32, - [39] = 35, - [40] = 33, - [41] = 35, - [42] = 32, - [43] = 35, - [44] = 36, - [45] = 33, - [46] = 32, - [47] = 35, - [48] = 33, - [49] = 35, - [50] = 33, - [51] = 35, - [52] = 33, - [53] = 35, - [54] = 33, - [55] = 35, - [56] = 33, - [57] = 35, - [58] = 33, - [59] = 35, - [60] = 33, - [61] = 35, - [62] = 33, - [63] = 35, - [64] = 33, - [65] = 35, - [66] = 33, - [67] = 35, - [68] = 35, - [69] = 35, - [70] = 35, - [71] = 35, - [72] = 35, - [73] = 35, - [74] = 35, - [75] = 35, - [76] = 33, - [77] = 33, - [78] = 33, - [79] = 33, - [80] = 33, - [81] = 33, - [82] = 33, - [83] = 33, - [84] = 33, - [85] = 33, - [86] = 33, - [87] = 87, - [88] = 88, - [89] = 89, - [90] = 87, - [91] = 87, - [92] = 92, - [93] = 88, - [94] = 87, - [95] = 87, - [96] = 87, - [97] = 92, - [98] = 87, - [99] = 88, - [100] = 87, - [101] = 87, - [102] = 87, - [103] = 87, - [104] = 87, - [105] = 87, - [106] = 87, - [107] = 107, - [108] = 108, - [109] = 108, - [110] = 110, - [111] = 108, - [112] = 112, - [113] = 108, - [114] = 110, - [115] = 108, - [116] = 110, - [117] = 108, - [118] = 110, - [119] = 108, - [120] = 110, - [121] = 108, - [122] = 108, - [123] = 108, - [124] = 107, - [125] = 108, - [126] = 108, - [127] = 108, - [128] = 108, - [129] = 108, - [130] = 110, - [131] = 131, - [132] = 132, + [26] = 26, + [27] = 27, + [28] = 26, + [29] = 27, + [30] = 27, + [31] = 27, + [32] = 26, + [33] = 27, + [34] = 26, + [35] = 27, + [36] = 27, + [37] = 27, + [38] = 27, + [39] = 27, + [40] = 27, + [41] = 27, + [42] = 27, + [43] = 27, + [44] = 27, + [45] = 27, + [46] = 27, + [47] = 27, + [48] = 27, + [49] = 27, + [50] = 27, + [51] = 27, + [52] = 27, + [53] = 27, + [54] = 54, + [55] = 55, + [56] = 54, + [57] = 55, + [58] = 58, + [59] = 59, + [60] = 54, + [61] = 55, + [62] = 58, + [63] = 58, + [64] = 59, + [65] = 54, + [66] = 55, + [67] = 58, + [68] = 54, + [69] = 55, + [70] = 54, + [71] = 58, + [72] = 54, + [73] = 58, + [74] = 54, + [75] = 58, + [76] = 54, + [77] = 58, + [78] = 54, + [79] = 58, + [80] = 54, + [81] = 58, + [82] = 54, + [83] = 58, + [84] = 58, + [85] = 58, + [86] = 58, + [87] = 58, + [88] = 58, + [89] = 58, + [90] = 58, + [91] = 58, + [92] = 58, + [93] = 58, + [94] = 94, + [95] = 95, + [96] = 95, + [97] = 97, + [98] = 98, + [99] = 95, + [100] = 97, + [101] = 101, + [102] = 102, + [103] = 102, + [104] = 102, + [105] = 105, + [106] = 94, + [107] = 105, + [108] = 105, + [109] = 102, + [110] = 105, + [111] = 102, + [112] = 105, + [113] = 102, + [114] = 102, + [115] = 102, + [116] = 102, + [117] = 102, + [118] = 102, + [119] = 102, + [120] = 102, + [121] = 102, + [122] = 102, + [123] = 123, + [124] = 124, + [125] = 125, + [126] = 126, + [127] = 127, + [128] = 128, + [129] = 129, + [130] = 130, + [131] = 130, + [132] = 129, [133] = 133, [134] = 134, [135] = 135, @@ -5333,8 +5337,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [137] = 137, [138] = 138, [139] = 139, - [140] = 139, - [141] = 137, + [140] = 140, + [141] = 141, [142] = 142, [143] = 143, [144] = 144, @@ -5343,125 +5347,125 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [147] = 147, [148] = 148, [149] = 149, - [150] = 150, + [150] = 149, [151] = 151, [152] = 152, [153] = 153, [154] = 154, - [155] = 155, - [156] = 156, + [155] = 154, + [156] = 147, [157] = 157, - [158] = 158, - [159] = 156, + [158] = 148, + [159] = 159, [160] = 160, - [161] = 161, + [161] = 160, [162] = 162, - [163] = 161, + [163] = 163, [164] = 164, [165] = 165, - [166] = 158, - [167] = 164, + [166] = 163, + [167] = 167, [168] = 168, - [169] = 162, - [170] = 170, - [171] = 171, + [169] = 168, + [170] = 168, + [171] = 167, [172] = 172, [173] = 173, - [174] = 171, + [174] = 174, [175] = 175, - [176] = 176, + [176] = 174, [177] = 177, - [178] = 177, - [179] = 175, - [180] = 175, + [178] = 175, + [179] = 179, + [180] = 180, [181] = 181, [182] = 182, [183] = 183, - [184] = 182, - [185] = 183, - [186] = 186, + [184] = 184, + [185] = 185, + [186] = 182, [187] = 187, [188] = 188, [189] = 189, [190] = 190, [191] = 191, - [192] = 192, - [193] = 190, + [192] = 183, + [193] = 193, [194] = 194, - [195] = 195, - [196] = 196, - [197] = 192, - [198] = 198, - [199] = 194, - [200] = 196, - [201] = 195, + [195] = 188, + [196] = 185, + [197] = 184, + [198] = 187, + [199] = 199, + [200] = 200, + [201] = 201, [202] = 202, [203] = 203, [204] = 204, - [205] = 191, + [205] = 205, [206] = 206, - [207] = 207, + [207] = 134, [208] = 208, - [209] = 204, + [209] = 209, [210] = 210, [211] = 211, - [212] = 207, - [213] = 208, - [214] = 214, - [215] = 198, - [216] = 202, - [217] = 217, - [218] = 218, - [219] = 219, - [220] = 203, - [221] = 221, - [222] = 206, - [223] = 223, - [224] = 224, - [225] = 225, - [226] = 226, - [227] = 142, - [228] = 210, - [229] = 217, - [230] = 218, - [231] = 231, + [212] = 212, + [213] = 194, + [214] = 193, + [215] = 189, + [216] = 216, + [217] = 191, + [218] = 199, + [219] = 200, + [220] = 190, + [221] = 203, + [222] = 222, + [223] = 212, + [224] = 134, + [225] = 135, + [226] = 208, + [227] = 136, + [228] = 172, + [229] = 229, + [230] = 216, + [231] = 206, [232] = 232, - [233] = 225, - [234] = 176, - [235] = 224, - [236] = 221, - [237] = 144, - [238] = 142, - [239] = 219, - [240] = 226, - [241] = 241, + [233] = 210, + [234] = 211, + [235] = 201, + [236] = 204, + [237] = 205, + [238] = 238, + [239] = 239, + [240] = 209, + [241] = 202, [242] = 242, - [243] = 223, - [244] = 143, - [245] = 214, - [246] = 211, - [247] = 247, - [248] = 248, + [243] = 137, + [244] = 139, + [245] = 140, + [246] = 141, + [247] = 222, + [248] = 232, [249] = 249, - [250] = 142, + [250] = 250, [251] = 251, - [252] = 143, - [253] = 144, - [254] = 242, - [255] = 146, - [256] = 148, - [257] = 145, - [258] = 147, - [259] = 149, - [260] = 231, - [261] = 241, - [262] = 262, + [252] = 252, + [253] = 253, + [254] = 203, + [255] = 206, + [256] = 256, + [257] = 229, + [258] = 258, + [259] = 259, + [260] = 260, + [261] = 261, + [262] = 138, [263] = 263, [264] = 264, [265] = 265, [266] = 266, - [267] = 210, - [268] = 219, + [267] = 134, + [268] = 268, [269] = 269, [270] = 270, [271] = 271, @@ -5473,259 +5477,259 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [277] = 277, [278] = 278, [279] = 279, - [280] = 280, + [280] = 172, [281] = 281, [282] = 282, [283] = 283, [284] = 284, [285] = 285, [286] = 286, - [287] = 287, - [288] = 288, + [287] = 135, + [288] = 136, [289] = 289, - [290] = 290, - [291] = 291, - [292] = 292, - [293] = 293, - [294] = 294, - [295] = 295, + [290] = 252, + [291] = 222, + [292] = 144, + [293] = 232, + [294] = 206, + [295] = 206, [296] = 296, - [297] = 146, - [298] = 251, - [299] = 148, - [300] = 145, + [297] = 253, + [298] = 203, + [299] = 299, + [300] = 300, [301] = 301, [302] = 302, - [303] = 210, + [303] = 303, [304] = 304, [305] = 305, - [306] = 306, - [307] = 231, - [308] = 308, - [309] = 241, - [310] = 219, - [311] = 219, - [312] = 312, + [306] = 142, + [307] = 307, + [308] = 250, + [309] = 309, + [310] = 310, + [311] = 311, + [312] = 251, [313] = 313, [314] = 314, - [315] = 315, + [315] = 135, [316] = 316, - [317] = 317, - [318] = 147, - [319] = 319, - [320] = 149, - [321] = 321, - [322] = 322, - [323] = 144, - [324] = 142, + [317] = 136, + [318] = 318, + [319] = 139, + [320] = 320, + [321] = 140, + [322] = 141, + [323] = 323, + [324] = 324, [325] = 325, [326] = 326, - [327] = 152, + [327] = 327, [328] = 328, [329] = 329, - [330] = 150, + [330] = 285, [331] = 331, - [332] = 151, - [333] = 263, - [334] = 262, - [335] = 264, - [336] = 336, - [337] = 265, - [338] = 266, - [339] = 143, - [340] = 340, + [332] = 286, + [333] = 333, + [334] = 203, + [335] = 335, + [336] = 134, + [337] = 337, + [338] = 138, + [339] = 137, + [340] = 143, [341] = 341, [342] = 342, - [343] = 176, + [343] = 343, [344] = 344, [345] = 345, - [346] = 346, - [347] = 347, - [348] = 210, + [346] = 342, + [347] = 222, + [348] = 252, [349] = 349, - [350] = 350, - [351] = 351, - [352] = 264, - [353] = 344, - [354] = 354, - [355] = 341, - [356] = 342, - [357] = 345, - [358] = 346, - [359] = 347, - [360] = 349, - [361] = 350, - [362] = 296, - [363] = 363, - [364] = 154, - [365] = 322, - [366] = 210, - [367] = 336, - [368] = 312, - [369] = 369, - [370] = 317, - [371] = 145, - [372] = 321, - [373] = 373, - [374] = 308, - [375] = 295, - [376] = 351, - [377] = 231, - [378] = 378, - [379] = 241, - [380] = 380, - [381] = 381, - [382] = 325, - [383] = 326, + [350] = 307, + [351] = 325, + [352] = 302, + [353] = 309, + [354] = 145, + [355] = 355, + [356] = 134, + [357] = 326, + [358] = 310, + [359] = 311, + [360] = 139, + [361] = 253, + [362] = 362, + [363] = 355, + [364] = 364, + [365] = 365, + [366] = 327, + [367] = 328, + [368] = 329, + [369] = 203, + [370] = 222, + [371] = 303, + [372] = 372, + [373] = 206, + [374] = 313, + [375] = 333, + [376] = 140, + [377] = 345, + [378] = 335, + [379] = 318, + [380] = 304, + [381] = 135, + [382] = 250, + [383] = 383, [384] = 384, - [385] = 340, - [386] = 143, - [387] = 144, - [388] = 388, - [389] = 142, - [390] = 390, - [391] = 328, - [392] = 302, - [393] = 304, - [394] = 231, - [395] = 305, - [396] = 152, - [397] = 306, - [398] = 147, - [399] = 149, - [400] = 400, - [401] = 241, - [402] = 146, - [403] = 263, - [404] = 148, + [385] = 385, + [386] = 141, + [387] = 305, + [388] = 143, + [389] = 232, + [390] = 337, + [391] = 391, + [392] = 138, + [393] = 232, + [394] = 144, + [395] = 142, + [396] = 137, + [397] = 323, + [398] = 398, + [399] = 399, + [400] = 343, + [401] = 344, + [402] = 251, + [403] = 314, + [404] = 404, [405] = 405, - [406] = 150, + [406] = 399, [407] = 407, - [408] = 407, - [409] = 369, - [410] = 410, - [411] = 151, - [412] = 265, - [413] = 266, - [414] = 331, - [415] = 219, - [416] = 329, - [417] = 417, - [418] = 145, + [408] = 299, + [409] = 409, + [410] = 300, + [411] = 301, + [412] = 136, + [413] = 413, + [414] = 383, + [415] = 384, + [416] = 385, + [417] = 391, + [418] = 418, [419] = 419, - [420] = 152, + [420] = 404, [421] = 421, - [422] = 150, - [423] = 151, - [424] = 143, - [425] = 144, - [426] = 154, - [427] = 427, - [428] = 428, + [422] = 422, + [423] = 423, + [424] = 398, + [425] = 407, + [426] = 409, + [427] = 364, + [428] = 405, [429] = 429, - [430] = 430, - [431] = 431, - [432] = 147, - [433] = 149, - [434] = 434, - [435] = 354, + [430] = 145, + [431] = 143, + [432] = 144, + [433] = 142, + [434] = 135, + [435] = 136, [436] = 436, - [437] = 437, - [438] = 146, - [439] = 148, - [440] = 390, - [441] = 441, - [442] = 231, - [443] = 241, - [444] = 373, - [445] = 264, - [446] = 265, - [447] = 266, - [448] = 380, - [449] = 263, - [450] = 264, - [451] = 265, - [452] = 266, - [453] = 210, - [454] = 219, - [455] = 405, - [456] = 410, - [457] = 457, - [458] = 458, - [459] = 459, - [460] = 460, - [461] = 461, - [462] = 462, - [463] = 417, - [464] = 400, - [465] = 388, - [466] = 384, - [467] = 378, - [468] = 263, - [469] = 431, - [470] = 441, - [471] = 457, - [472] = 152, - [473] = 427, - [474] = 210, - [475] = 475, - [476] = 476, - [477] = 477, - [478] = 146, - [479] = 148, - [480] = 145, - [481] = 150, - [482] = 231, - [483] = 151, - [484] = 241, - [485] = 219, + [437] = 365, + [438] = 438, + [439] = 439, + [440] = 138, + [441] = 137, + [442] = 139, + [443] = 140, + [444] = 141, + [445] = 445, + [446] = 446, + [447] = 447, + [448] = 222, + [449] = 232, + [450] = 250, + [451] = 251, + [452] = 252, + [453] = 253, + [454] = 454, + [455] = 455, + [456] = 456, + [457] = 250, + [458] = 251, + [459] = 252, + [460] = 253, + [461] = 203, + [462] = 206, + [463] = 362, + [464] = 464, + [465] = 138, + [466] = 466, + [467] = 145, + [468] = 468, + [469] = 469, + [470] = 470, + [471] = 471, + [472] = 436, + [473] = 137, + [474] = 418, + [475] = 139, + [476] = 140, + [477] = 141, + [478] = 464, + [479] = 438, + [480] = 439, + [481] = 481, + [482] = 143, + [483] = 483, + [484] = 144, + [485] = 485, [486] = 486, - [487] = 154, - [488] = 488, - [489] = 489, - [490] = 459, - [491] = 491, - [492] = 492, - [493] = 429, - [494] = 494, - [495] = 430, - [496] = 496, - [497] = 266, + [487] = 445, + [488] = 419, + [489] = 421, + [490] = 250, + [491] = 422, + [492] = 251, + [493] = 252, + [494] = 253, + [495] = 495, + [496] = 203, + [497] = 423, [498] = 498, [499] = 499, - [500] = 500, - [501] = 501, - [502] = 502, - [503] = 147, + [500] = 222, + [501] = 232, + [502] = 206, + [503] = 503, [504] = 504, - [505] = 505, - [506] = 458, - [507] = 507, - [508] = 460, - [509] = 461, - [510] = 421, - [511] = 462, - [512] = 512, - [513] = 263, - [514] = 149, - [515] = 264, + [505] = 413, + [506] = 429, + [507] = 446, + [508] = 447, + [509] = 454, + [510] = 455, + [511] = 511, + [512] = 142, + [513] = 511, + [514] = 514, + [515] = 515, [516] = 516, [517] = 517, - [518] = 428, + [518] = 518, [519] = 519, - [520] = 434, - [521] = 436, + [520] = 520, + [521] = 521, [522] = 522, [523] = 523, - [524] = 437, + [524] = 524, [525] = 525, - [526] = 265, + [526] = 526, [527] = 527, [528] = 528, [529] = 529, - [530] = 231, - [531] = 241, - [532] = 152, + [530] = 530, + [531] = 531, + [532] = 532, [533] = 533, [534] = 534, [535] = 535, @@ -5735,30 +5739,30 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [539] = 539, [540] = 540, [541] = 541, - [542] = 301, + [542] = 542, [543] = 543, [544] = 544, [545] = 545, - [546] = 546, - [547] = 547, - [548] = 548, + [546] = 364, + [547] = 405, + [548] = 145, [549] = 549, - [550] = 550, - [551] = 263, - [552] = 552, - [553] = 264, - [554] = 265, - [555] = 266, + [550] = 143, + [551] = 324, + [552] = 144, + [553] = 553, + [554] = 466, + [555] = 555, [556] = 556, [557] = 557, [558] = 558, - [559] = 559, - [560] = 475, + [559] = 139, + [560] = 140, [561] = 561, - [562] = 501, - [563] = 154, + [562] = 141, + [563] = 563, [564] = 564, - [565] = 145, + [565] = 565, [566] = 566, [567] = 567, [568] = 568, @@ -5770,1711 +5774,1711 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [574] = 574, [575] = 575, [576] = 576, - [577] = 577, + [577] = 222, [578] = 578, - [579] = 579, - [580] = 580, - [581] = 581, - [582] = 582, - [583] = 583, + [579] = 232, + [580] = 250, + [581] = 251, + [582] = 252, + [583] = 253, [584] = 584, [585] = 585, - [586] = 150, - [587] = 151, - [588] = 148, - [589] = 512, - [590] = 384, - [591] = 378, - [592] = 494, + [586] = 586, + [587] = 468, + [588] = 483, + [589] = 589, + [590] = 142, + [591] = 569, + [592] = 521, [593] = 593, - [594] = 146, - [595] = 145, - [596] = 569, - [597] = 533, - [598] = 489, - [599] = 381, - [600] = 571, - [601] = 572, - [602] = 573, - [603] = 574, - [604] = 575, - [605] = 576, - [606] = 577, - [607] = 476, - [608] = 525, - [609] = 534, - [610] = 578, - [611] = 561, - [612] = 488, - [613] = 535, - [614] = 491, - [615] = 579, - [616] = 580, - [617] = 499, - [618] = 581, - [619] = 582, - [620] = 620, - [621] = 583, - [622] = 536, - [623] = 584, - [624] = 537, - [625] = 148, - [626] = 585, - [627] = 519, - [628] = 522, - [629] = 629, - [630] = 538, - [631] = 539, - [632] = 264, - [633] = 486, - [634] = 568, - [635] = 559, - [636] = 154, - [637] = 540, - [638] = 541, - [639] = 543, - [640] = 477, - [641] = 263, - [642] = 507, - [643] = 544, - [644] = 545, - [645] = 546, - [646] = 492, - [647] = 566, - [648] = 567, - [649] = 547, - [650] = 548, - [651] = 549, - [652] = 504, - [653] = 550, - [654] = 384, - [655] = 378, - [656] = 556, - [657] = 564, - [658] = 552, - [659] = 265, - [660] = 266, - [661] = 557, - [662] = 146, - [663] = 523, - [664] = 558, - [665] = 529, - [666] = 517, - [667] = 496, + [594] = 553, + [595] = 364, + [596] = 405, + [597] = 573, + [598] = 372, + [599] = 522, + [600] = 523, + [601] = 576, + [602] = 524, + [603] = 503, + [604] = 578, + [605] = 525, + [606] = 526, + [607] = 527, + [608] = 145, + [609] = 609, + [610] = 574, + [611] = 528, + [612] = 529, + [613] = 530, + [614] = 139, + [615] = 531, + [616] = 532, + [617] = 140, + [618] = 556, + [619] = 141, + [620] = 533, + [621] = 250, + [622] = 561, + [623] = 564, + [624] = 534, + [625] = 251, + [626] = 535, + [627] = 571, + [628] = 252, + [629] = 568, + [630] = 549, + [631] = 555, + [632] = 536, + [633] = 537, + [634] = 584, + [635] = 586, + [636] = 572, + [637] = 538, + [638] = 558, + [639] = 575, + [640] = 539, + [641] = 570, + [642] = 540, + [643] = 563, + [644] = 516, + [645] = 589, + [646] = 557, + [647] = 541, + [648] = 542, + [649] = 498, + [650] = 519, + [651] = 567, + [652] = 543, + [653] = 514, + [654] = 544, + [655] = 545, + [656] = 515, + [657] = 499, + [658] = 565, + [659] = 517, + [660] = 518, + [661] = 471, + [662] = 520, + [663] = 253, + [664] = 664, + [665] = 665, + [666] = 666, + [667] = 667, [668] = 668, [669] = 669, [670] = 670, [671] = 671, [672] = 672, [673] = 673, - [674] = 674, + [674] = 664, [675] = 675, - [676] = 676, - [677] = 677, - [678] = 675, - [679] = 673, - [680] = 680, - [681] = 669, - [682] = 674, - [683] = 676, - [684] = 680, + [676] = 669, + [677] = 670, + [678] = 671, + [679] = 675, + [680] = 665, + [681] = 681, + [682] = 682, + [683] = 683, + [684] = 324, [685] = 685, [686] = 686, - [687] = 687, - [688] = 301, + [687] = 372, + [688] = 688, [689] = 689, - [690] = 690, + [690] = 324, [691] = 691, - [692] = 381, - [693] = 693, - [694] = 196, - [695] = 194, + [692] = 691, + [693] = 372, + [694] = 691, + [695] = 695, [696] = 696, - [697] = 696, - [698] = 696, - [699] = 699, - [700] = 696, - [701] = 696, - [702] = 202, - [703] = 696, - [704] = 696, - [705] = 705, - [706] = 696, - [707] = 696, - [708] = 708, + [697] = 691, + [698] = 695, + [699] = 691, + [700] = 691, + [701] = 691, + [702] = 691, + [703] = 691, + [704] = 691, + [705] = 691, + [706] = 691, + [707] = 691, + [708] = 691, [709] = 696, - [710] = 696, - [711] = 696, - [712] = 696, - [713] = 696, - [714] = 696, - [715] = 705, - [716] = 203, - [717] = 696, - [718] = 696, - [719] = 696, - [720] = 696, - [721] = 696, - [722] = 708, - [723] = 705, - [724] = 696, - [725] = 221, - [726] = 217, - [727] = 218, - [728] = 301, - [729] = 196, - [730] = 214, - [731] = 194, - [732] = 211, - [733] = 142, - [734] = 734, - [735] = 734, - [736] = 736, - [737] = 734, - [738] = 381, - [739] = 734, - [740] = 144, - [741] = 202, - [742] = 203, - [743] = 734, - [744] = 734, - [745] = 734, - [746] = 734, - [747] = 734, - [748] = 734, - [749] = 734, - [750] = 734, - [751] = 734, - [752] = 734, - [753] = 734, - [754] = 734, - [755] = 734, - [756] = 734, - [757] = 734, - [758] = 734, - [759] = 734, - [760] = 734, - [761] = 143, + [710] = 691, + [711] = 691, + [712] = 691, + [713] = 691, + [714] = 691, + [715] = 691, + [716] = 691, + [717] = 695, + [718] = 718, + [719] = 718, + [720] = 718, + [721] = 721, + [722] = 718, + [723] = 718, + [724] = 718, + [725] = 718, + [726] = 718, + [727] = 718, + [728] = 718, + [729] = 718, + [730] = 718, + [731] = 718, + [732] = 718, + [733] = 718, + [734] = 718, + [735] = 718, + [736] = 718, + [737] = 718, + [738] = 718, + [739] = 718, + [740] = 718, + [741] = 741, + [742] = 742, + [743] = 743, + [744] = 744, + [745] = 745, + [746] = 746, + [747] = 747, + [748] = 748, + [749] = 744, + [750] = 750, + [751] = 751, + [752] = 752, + [753] = 753, + [754] = 754, + [755] = 755, + [756] = 756, + [757] = 757, + [758] = 758, + [759] = 759, + [760] = 760, + [761] = 761, [762] = 762, - [763] = 147, - [764] = 149, - [765] = 211, - [766] = 214, - [767] = 217, - [768] = 218, - [769] = 146, - [770] = 148, - [771] = 145, - [772] = 321, + [763] = 763, + [764] = 764, + [765] = 765, + [766] = 766, + [767] = 767, + [768] = 768, + [769] = 769, + [770] = 770, + [771] = 771, + [772] = 772, [773] = 773, - [774] = 302, - [775] = 142, - [776] = 304, - [777] = 306, - [778] = 221, + [774] = 774, + [775] = 775, + [776] = 776, + [777] = 777, + [778] = 778, [779] = 779, - [780] = 305, - [781] = 150, - [782] = 151, - [783] = 331, - [784] = 152, + [780] = 780, + [781] = 756, + [782] = 782, + [783] = 783, + [784] = 784, [785] = 785, - [786] = 344, - [787] = 345, - [788] = 346, - [789] = 347, - [790] = 349, - [791] = 350, - [792] = 296, - [793] = 322, - [794] = 336, - [795] = 312, - [796] = 317, - [797] = 797, - [798] = 295, - [799] = 351, - [800] = 325, - [801] = 326, - [802] = 328, - [803] = 803, - [804] = 804, - [805] = 805, - [806] = 143, - [807] = 144, - [808] = 808, - [809] = 809, - [810] = 810, - [811] = 811, - [812] = 812, - [813] = 813, - [814] = 814, - [815] = 815, - [816] = 405, - [817] = 817, - [818] = 818, - [819] = 819, - [820] = 820, - [821] = 821, - [822] = 822, - [823] = 823, - [824] = 824, - [825] = 825, - [826] = 826, - [827] = 827, - [828] = 828, - [829] = 829, - [830] = 830, - [831] = 803, - [832] = 832, - [833] = 833, - [834] = 804, - [835] = 805, - [836] = 808, - [837] = 809, - [838] = 810, - [839] = 811, - [840] = 812, - [841] = 813, - [842] = 814, - [843] = 815, - [844] = 817, - [845] = 822, - [846] = 818, - [847] = 819, - [848] = 820, - [849] = 821, - [850] = 824, - [851] = 826, - [852] = 827, - [853] = 829, - [854] = 830, - [855] = 855, - [856] = 832, - [857] = 857, - [858] = 858, - [859] = 859, - [860] = 860, - [861] = 861, - [862] = 862, - [863] = 863, - [864] = 864, - [865] = 865, - [866] = 866, - [867] = 867, - [868] = 868, - [869] = 869, - [870] = 823, - [871] = 855, - [872] = 872, - [873] = 873, - [874] = 874, - [875] = 875, - [876] = 868, - [877] = 877, - [878] = 878, - [879] = 879, - [880] = 880, - [881] = 881, - [882] = 882, - [883] = 883, + [786] = 786, + [787] = 787, + [788] = 788, + [789] = 789, + [790] = 790, + [791] = 791, + [792] = 792, + [793] = 793, + [794] = 794, + [795] = 795, + [796] = 789, + [797] = 782, + [798] = 771, + [799] = 790, + [800] = 800, + [801] = 801, + [802] = 745, + [803] = 746, + [804] = 747, + [805] = 748, + [806] = 772, + [807] = 750, + [808] = 751, + [809] = 752, + [810] = 753, + [811] = 754, + [812] = 755, + [813] = 757, + [814] = 758, + [815] = 759, + [816] = 760, + [817] = 761, + [818] = 762, + [819] = 763, + [820] = 764, + [821] = 765, + [822] = 766, + [823] = 767, + [824] = 768, + [825] = 769, + [826] = 770, + [827] = 771, + [828] = 770, + [829] = 773, + [830] = 774, + [831] = 775, + [832] = 776, + [833] = 777, + [834] = 778, + [835] = 779, + [836] = 780, + [837] = 756, + [838] = 782, + [839] = 783, + [840] = 784, + [841] = 785, + [842] = 786, + [843] = 787, + [844] = 788, + [845] = 789, + [846] = 790, + [847] = 791, + [848] = 792, + [849] = 793, + [850] = 794, + [851] = 795, + [852] = 764, + [853] = 791, + [854] = 792, + [855] = 773, + [856] = 759, + [857] = 760, + [858] = 774, + [859] = 765, + [860] = 775, + [861] = 761, + [862] = 762, + [863] = 776, + [864] = 777, + [865] = 763, + [866] = 766, + [867] = 800, + [868] = 801, + [869] = 745, + [870] = 746, + [871] = 747, + [872] = 748, + [873] = 744, + [874] = 793, + [875] = 750, + [876] = 794, + [877] = 795, + [878] = 751, + [879] = 757, + [880] = 758, + [881] = 752, + [882] = 753, + [883] = 754, [884] = 884, - [885] = 833, - [886] = 804, - [887] = 805, - [888] = 808, - [889] = 809, - [890] = 810, - [891] = 811, - [892] = 812, - [893] = 813, - [894] = 814, - [895] = 815, - [896] = 817, - [897] = 822, - [898] = 818, - [899] = 819, - [900] = 820, - [901] = 821, - [902] = 824, - [903] = 826, - [904] = 827, - [905] = 829, - [906] = 830, - [907] = 803, - [908] = 832, - [909] = 857, - [910] = 858, - [911] = 859, - [912] = 860, - [913] = 861, - [914] = 862, - [915] = 863, - [916] = 864, - [917] = 865, - [918] = 866, - [919] = 867, - [920] = 868, - [921] = 869, - [922] = 823, - [923] = 855, - [924] = 872, - [925] = 873, - [926] = 874, - [927] = 875, - [928] = 928, - [929] = 877, - [930] = 878, - [931] = 879, - [932] = 880, - [933] = 881, - [934] = 882, - [935] = 883, - [936] = 884, - [937] = 857, - [938] = 858, - [939] = 859, - [940] = 860, - [941] = 390, - [942] = 861, - [943] = 862, - [944] = 863, - [945] = 864, - [946] = 865, - [947] = 866, - [948] = 867, - [949] = 872, - [950] = 873, - [951] = 874, - [952] = 875, - [953] = 928, - [954] = 877, - [955] = 878, - [956] = 879, - [957] = 880, - [958] = 881, - [959] = 882, - [960] = 883, - [961] = 884, - [962] = 869, - [963] = 154, - [964] = 833, - [965] = 928, - [966] = 966, - [967] = 149, - [968] = 968, - [969] = 441, - [970] = 427, - [971] = 971, - [972] = 146, - [973] = 973, - [974] = 974, - [975] = 975, - [976] = 429, - [977] = 977, - [978] = 978, - [979] = 979, - [980] = 980, - [981] = 981, - [982] = 982, - [983] = 983, - [984] = 984, - [985] = 148, - [986] = 986, - [987] = 145, - [988] = 988, - [989] = 430, - [990] = 431, - [991] = 147, - [992] = 992, - [993] = 974, - [994] = 994, - [995] = 973, + [885] = 755, + [886] = 767, + [887] = 778, + [888] = 768, + [889] = 783, + [890] = 784, + [891] = 785, + [892] = 786, + [893] = 787, + [894] = 788, + [895] = 769, + [896] = 779, + [897] = 780, + [898] = 800, + [899] = 801, + [900] = 772, + [901] = 901, + [902] = 901, + [903] = 903, + [904] = 904, + [905] = 905, + [906] = 906, + [907] = 907, + [908] = 908, + [909] = 909, + [910] = 910, + [911] = 911, + [912] = 912, + [913] = 904, + [914] = 914, + [915] = 915, + [916] = 916, + [917] = 917, + [918] = 905, + [919] = 906, + [920] = 907, + [921] = 908, + [922] = 909, + [923] = 910, + [924] = 911, + [925] = 910, + [926] = 914, + [927] = 917, + [928] = 905, + [929] = 906, + [930] = 907, + [931] = 915, + [932] = 912, + [933] = 904, + [934] = 914, + [935] = 915, + [936] = 916, + [937] = 917, + [938] = 905, + [939] = 906, + [940] = 907, + [941] = 908, + [942] = 909, + [943] = 910, + [944] = 911, + [945] = 903, + [946] = 912, + [947] = 904, + [948] = 914, + [949] = 915, + [950] = 916, + [951] = 917, + [952] = 905, + [953] = 906, + [954] = 907, + [955] = 908, + [956] = 909, + [957] = 910, + [958] = 911, + [959] = 908, + [960] = 912, + [961] = 912, + [962] = 911, + [963] = 912, + [964] = 916, + [965] = 904, + [966] = 914, + [967] = 915, + [968] = 916, + [969] = 917, + [970] = 905, + [971] = 906, + [972] = 907, + [973] = 908, + [974] = 909, + [975] = 910, + [976] = 911, + [977] = 904, + [978] = 914, + [979] = 915, + [980] = 916, + [981] = 912, + [982] = 904, + [983] = 914, + [984] = 915, + [985] = 916, + [986] = 917, + [987] = 905, + [988] = 906, + [989] = 907, + [990] = 908, + [991] = 909, + [992] = 910, + [993] = 911, + [994] = 917, + [995] = 909, [996] = 996, [997] = 997, - [998] = 998, - [999] = 999, + [998] = 997, + [999] = 996, [1000] = 1000, - [1001] = 1001, + [1001] = 1000, [1002] = 1002, [1003] = 1003, - [1004] = 1004, - [1005] = 1005, + [1004] = 1003, + [1005] = 1002, [1006] = 1006, [1007] = 1007, [1008] = 1008, - [1009] = 998, + [1009] = 1009, [1010] = 1010, [1011] = 1011, - [1012] = 1012, + [1012] = 1010, [1013] = 1013, - [1014] = 152, - [1015] = 150, - [1016] = 151, - [1017] = 1008, - [1018] = 1000, - [1019] = 1001, - [1020] = 1002, - [1021] = 1003, - [1022] = 1004, - [1023] = 1005, - [1024] = 1006, - [1025] = 1011, - [1026] = 1012, - [1027] = 1013, - [1028] = 996, - [1029] = 1000, - [1030] = 1001, - [1031] = 1002, - [1032] = 1003, - [1033] = 1004, - [1034] = 1005, - [1035] = 1006, - [1036] = 1007, - [1037] = 1008, - [1038] = 998, - [1039] = 1011, - [1040] = 1012, - [1041] = 1013, - [1042] = 1000, - [1043] = 1001, - [1044] = 1002, - [1045] = 1003, - [1046] = 1004, - [1047] = 1005, - [1048] = 1006, - [1049] = 1007, - [1050] = 1008, - [1051] = 998, - [1052] = 1011, - [1053] = 1012, - [1054] = 1013, - [1055] = 1007, - [1056] = 1000, - [1057] = 1001, - [1058] = 1002, - [1059] = 1003, - [1060] = 1004, - [1061] = 1005, - [1062] = 1062, - [1063] = 1007, - [1064] = 1008, - [1065] = 998, - [1066] = 1011, - [1067] = 1012, - [1068] = 1013, - [1069] = 475, - [1070] = 1000, - [1071] = 1001, - [1072] = 1002, - [1073] = 1003, - [1074] = 1004, - [1075] = 1005, - [1076] = 1006, - [1077] = 1007, - [1078] = 1008, - [1079] = 998, - [1080] = 1011, - [1081] = 1012, - [1082] = 1013, - [1083] = 1000, - [1084] = 1001, - [1085] = 1002, - [1086] = 1003, - [1087] = 1004, - [1088] = 1005, - [1089] = 1006, - [1090] = 1007, - [1091] = 1008, - [1092] = 998, - [1093] = 1011, - [1094] = 1012, - [1095] = 1013, - [1096] = 1000, - [1097] = 1001, - [1098] = 1002, - [1099] = 1003, - [1100] = 1004, - [1101] = 1005, - [1102] = 1006, - [1103] = 1007, - [1104] = 1008, - [1105] = 998, - [1106] = 1011, - [1107] = 1012, - [1108] = 1013, - [1109] = 1000, - [1110] = 1001, - [1111] = 1002, - [1112] = 1003, - [1113] = 1004, - [1114] = 1005, - [1115] = 1006, - [1116] = 1007, - [1117] = 1008, - [1118] = 998, - [1119] = 1011, - [1120] = 1012, - [1121] = 1013, - [1122] = 999, - [1123] = 1123, - [1124] = 1006, - [1125] = 544, - [1126] = 146, - [1127] = 1127, - [1128] = 1128, - [1129] = 1129, - [1130] = 1130, - [1131] = 441, - [1132] = 1132, - [1133] = 1133, - [1134] = 1128, - [1135] = 154, - [1136] = 1129, - [1137] = 148, - [1138] = 1138, - [1139] = 559, - [1140] = 561, - [1141] = 145, - [1142] = 1142, - [1143] = 1143, - [1144] = 1144, - [1145] = 517, - [1146] = 523, - [1147] = 525, - [1148] = 486, - [1149] = 507, - [1150] = 476, - [1151] = 488, - [1152] = 519, - [1153] = 522, - [1154] = 1154, - [1155] = 533, - [1156] = 496, - [1157] = 477, - [1158] = 405, - [1159] = 1159, - [1160] = 534, - [1161] = 492, - [1162] = 504, - [1163] = 1163, - [1164] = 1164, - [1165] = 1165, - [1166] = 1166, - [1167] = 1167, - [1168] = 1168, - [1169] = 529, - [1170] = 1170, - [1171] = 1171, - [1172] = 1172, - [1173] = 1127, - [1174] = 1174, - [1175] = 1175, - [1176] = 535, - [1177] = 536, - [1178] = 537, - [1179] = 1179, - [1180] = 1180, - [1181] = 1181, - [1182] = 1182, - [1183] = 1183, - [1184] = 1184, - [1185] = 1185, - [1186] = 1186, - [1187] = 1187, - [1188] = 538, - [1189] = 539, - [1190] = 1190, - [1191] = 1191, - [1192] = 1192, - [1193] = 1193, - [1194] = 1194, - [1195] = 540, - [1196] = 541, - [1197] = 543, - [1198] = 545, - [1199] = 546, - [1200] = 547, - [1201] = 548, - [1202] = 549, - [1203] = 550, - [1204] = 556, - [1205] = 557, - [1206] = 558, - [1207] = 1207, - [1208] = 1208, - [1209] = 1209, - [1210] = 1210, - [1211] = 1211, - [1212] = 1212, - [1213] = 1210, - [1214] = 1208, - [1215] = 1215, - [1216] = 1216, - [1217] = 1211, - [1218] = 1218, - [1219] = 1215, - [1220] = 1216, - [1221] = 1218, - [1222] = 1212, - [1223] = 1209, - [1224] = 1224, - [1225] = 1225, - [1226] = 1225, - [1227] = 1227, - [1228] = 1228, - [1229] = 1225, - [1230] = 1228, - [1231] = 1228, - [1232] = 1232, - [1233] = 1233, + [1014] = 1014, + [1015] = 1015, + [1016] = 1014, + [1017] = 1015, + [1018] = 1018, + [1019] = 1013, + [1020] = 1013, + [1021] = 1015, + [1022] = 324, + [1023] = 1023, + [1024] = 1023, + [1025] = 182, + [1026] = 1026, + [1027] = 1026, + [1028] = 134, + [1029] = 1029, + [1030] = 1030, + [1031] = 1031, + [1032] = 1032, + [1033] = 1033, + [1034] = 1034, + [1035] = 182, + [1036] = 1036, + [1037] = 1037, + [1038] = 1038, + [1039] = 1039, + [1040] = 372, + [1041] = 184, + [1042] = 1042, + [1043] = 134, + [1044] = 1039, + [1045] = 187, + [1046] = 1034, + [1047] = 134, + [1048] = 188, + [1049] = 135, + [1050] = 1037, + [1051] = 1051, + [1052] = 183, + [1053] = 136, + [1054] = 185, + [1055] = 1036, + [1056] = 1038, + [1057] = 140, + [1058] = 136, + [1059] = 141, + [1060] = 1060, + [1061] = 199, + [1062] = 190, + [1063] = 188, + [1064] = 185, + [1065] = 135, + [1066] = 200, + [1067] = 134, + [1068] = 193, + [1069] = 138, + [1070] = 136, + [1071] = 185, + [1072] = 183, + [1073] = 137, + [1074] = 135, + [1075] = 184, + [1076] = 183, + [1077] = 191, + [1078] = 189, + [1079] = 139, + [1080] = 187, + [1081] = 1081, + [1082] = 189, + [1083] = 193, + [1084] = 191, + [1085] = 139, + [1086] = 140, + [1087] = 141, + [1088] = 138, + [1089] = 137, + [1090] = 199, + [1091] = 216, + [1092] = 202, + [1093] = 1093, + [1094] = 1094, + [1095] = 1095, + [1096] = 200, + [1097] = 190, + [1098] = 1081, + [1099] = 1094, + [1100] = 203, + [1101] = 1101, + [1102] = 201, + [1103] = 208, + [1104] = 1093, + [1105] = 135, + [1106] = 1093, + [1107] = 204, + [1108] = 205, + [1109] = 1095, + [1110] = 1081, + [1111] = 134, + [1112] = 206, + [1113] = 1094, + [1114] = 183, + [1115] = 185, + [1116] = 143, + [1117] = 1081, + [1118] = 1095, + [1119] = 1093, + [1120] = 1095, + [1121] = 1081, + [1122] = 1094, + [1123] = 1093, + [1124] = 1095, + [1125] = 1081, + [1126] = 1094, + [1127] = 1093, + [1128] = 1095, + [1129] = 1093, + [1130] = 1094, + [1131] = 1093, + [1132] = 1095, + [1133] = 1081, + [1134] = 1094, + [1135] = 1095, + [1136] = 1093, + [1137] = 1095, + [1138] = 1081, + [1139] = 1094, + [1140] = 1060, + [1141] = 1081, + [1142] = 1093, + [1143] = 1095, + [1144] = 1081, + [1145] = 1094, + [1146] = 136, + [1147] = 1093, + [1148] = 1095, + [1149] = 1081, + [1150] = 1094, + [1151] = 144, + [1152] = 142, + [1153] = 1094, + [1154] = 1093, + [1155] = 1095, + [1156] = 1081, + [1157] = 1094, + [1158] = 1093, + [1159] = 1095, + [1160] = 1081, + [1161] = 1094, + [1162] = 1093, + [1163] = 1095, + [1164] = 1081, + [1165] = 1094, + [1166] = 1101, + [1167] = 1093, + [1168] = 193, + [1169] = 191, + [1170] = 139, + [1171] = 140, + [1172] = 141, + [1173] = 138, + [1174] = 137, + [1175] = 1081, + [1176] = 208, + [1177] = 144, + [1178] = 204, + [1179] = 139, + [1180] = 140, + [1181] = 141, + [1182] = 144, + [1183] = 138, + [1184] = 135, + [1185] = 136, + [1186] = 137, + [1187] = 193, + [1188] = 222, + [1189] = 191, + [1190] = 142, + [1191] = 205, + [1192] = 232, + [1193] = 216, + [1194] = 202, + [1195] = 1195, + [1196] = 203, + [1197] = 201, + [1198] = 134, + [1199] = 208, + [1200] = 201, + [1201] = 204, + [1202] = 1202, + [1203] = 205, + [1204] = 145, + [1205] = 143, + [1206] = 143, + [1207] = 206, + [1208] = 142, + [1209] = 222, + [1210] = 141, + [1211] = 206, + [1212] = 137, + [1213] = 135, + [1214] = 252, + [1215] = 203, + [1216] = 285, + [1217] = 185, + [1218] = 253, + [1219] = 1219, + [1220] = 144, + [1221] = 142, + [1222] = 139, + [1223] = 250, + [1224] = 145, + [1225] = 145, + [1226] = 183, + [1227] = 136, + [1228] = 208, + [1229] = 1229, + [1230] = 183, + [1231] = 204, + [1232] = 205, + [1233] = 140, [1234] = 1234, - [1235] = 1235, - [1236] = 1236, - [1237] = 1233, - [1238] = 1238, - [1239] = 190, - [1240] = 1240, - [1241] = 142, - [1242] = 1242, - [1243] = 142, - [1244] = 1236, - [1245] = 1238, - [1246] = 1240, - [1247] = 1247, - [1248] = 1247, - [1249] = 1249, - [1250] = 301, - [1251] = 1251, - [1252] = 1252, - [1253] = 381, - [1254] = 190, - [1255] = 143, - [1256] = 144, - [1257] = 196, - [1258] = 192, - [1259] = 143, - [1260] = 144, - [1261] = 142, - [1262] = 191, - [1263] = 195, - [1264] = 1264, - [1265] = 194, - [1266] = 147, - [1267] = 149, - [1268] = 191, - [1269] = 148, - [1270] = 145, - [1271] = 144, - [1272] = 202, - [1273] = 146, - [1274] = 149, - [1275] = 1275, - [1276] = 195, - [1277] = 148, - [1278] = 145, - [1279] = 203, - [1280] = 142, - [1281] = 194, - [1282] = 206, - [1283] = 207, - [1284] = 208, - [1285] = 198, - [1286] = 192, - [1287] = 194, - [1288] = 143, - [1289] = 147, - [1290] = 196, - [1291] = 196, - [1292] = 146, - [1293] = 1293, - [1294] = 206, - [1295] = 1295, - [1296] = 1293, - [1297] = 143, - [1298] = 1298, - [1299] = 152, - [1300] = 1300, - [1301] = 210, - [1302] = 150, - [1303] = 151, - [1304] = 207, - [1305] = 1275, - [1306] = 1306, - [1307] = 208, - [1308] = 202, - [1309] = 1295, - [1310] = 203, - [1311] = 1298, - [1312] = 198, - [1313] = 1293, - [1314] = 202, - [1315] = 1295, - [1316] = 1298, - [1317] = 1306, - [1318] = 203, - [1319] = 146, - [1320] = 1300, - [1321] = 148, - [1322] = 145, - [1323] = 1298, - [1324] = 1300, - [1325] = 144, - [1326] = 1300, - [1327] = 211, - [1328] = 152, - [1329] = 214, - [1330] = 217, - [1331] = 218, - [1332] = 1293, - [1333] = 1295, - [1334] = 1298, - [1335] = 1300, - [1336] = 150, - [1337] = 151, - [1338] = 1293, - [1339] = 1295, - [1340] = 1298, - [1341] = 1293, - [1342] = 142, - [1343] = 219, - [1344] = 1293, - [1345] = 1295, - [1346] = 1298, - [1347] = 1300, - [1348] = 194, - [1349] = 1293, - [1350] = 1295, - [1351] = 1298, - [1352] = 1300, - [1353] = 1293, - [1354] = 1295, - [1355] = 1298, - [1356] = 1300, - [1357] = 1293, - [1358] = 1295, - [1359] = 1298, - [1360] = 1300, - [1361] = 1293, - [1362] = 1295, - [1363] = 1298, - [1364] = 1300, - [1365] = 1293, - [1366] = 1295, - [1367] = 1298, - [1368] = 1300, - [1369] = 1293, - [1370] = 1295, - [1371] = 1298, - [1372] = 1300, - [1373] = 1293, - [1374] = 1295, - [1375] = 1298, - [1376] = 1300, - [1377] = 1293, - [1378] = 1298, - [1379] = 196, - [1380] = 147, - [1381] = 149, - [1382] = 221, - [1383] = 1295, - [1384] = 1300, - [1385] = 154, - [1386] = 210, - [1387] = 211, - [1388] = 214, - [1389] = 217, - [1390] = 218, - [1391] = 219, - [1392] = 147, - [1393] = 142, - [1394] = 149, - [1395] = 1395, - [1396] = 231, - [1397] = 218, - [1398] = 143, - [1399] = 152, - [1400] = 144, - [1401] = 146, - [1402] = 148, - [1403] = 145, - [1404] = 241, - [1405] = 202, - [1406] = 221, - [1407] = 1407, - [1408] = 211, - [1409] = 154, - [1410] = 214, - [1411] = 217, - [1412] = 203, - [1413] = 150, - [1414] = 151, - [1415] = 264, - [1416] = 219, - [1417] = 194, - [1418] = 196, - [1419] = 1407, - [1420] = 154, - [1421] = 211, - [1422] = 262, - [1423] = 1423, - [1424] = 150, - [1425] = 265, - [1426] = 152, - [1427] = 266, - [1428] = 1428, - [1429] = 151, - [1430] = 1430, - [1431] = 263, - [1432] = 149, - [1433] = 214, - [1434] = 146, - [1435] = 241, - [1436] = 194, - [1437] = 217, - [1438] = 218, - [1439] = 231, - [1440] = 143, - [1441] = 144, - [1442] = 145, + [1235] = 138, + [1236] = 185, + [1237] = 1195, + [1238] = 143, + [1239] = 286, + [1240] = 145, + [1241] = 232, + [1242] = 251, + [1243] = 201, + [1244] = 203, + [1245] = 202, + [1246] = 285, + [1247] = 203, + [1248] = 193, + [1249] = 191, + [1250] = 253, + [1251] = 183, + [1252] = 143, + [1253] = 193, + [1254] = 144, + [1255] = 142, + [1256] = 206, + [1257] = 342, + [1258] = 343, + [1259] = 222, + [1260] = 185, + [1261] = 216, + [1262] = 299, + [1263] = 300, + [1264] = 301, + [1265] = 302, + [1266] = 303, + [1267] = 1267, + [1268] = 232, + [1269] = 304, + [1270] = 1270, + [1271] = 1234, + [1272] = 252, + [1273] = 307, + [1274] = 139, + [1275] = 309, + [1276] = 310, + [1277] = 134, + [1278] = 206, + [1279] = 140, + [1280] = 311, + [1281] = 313, + [1282] = 191, + [1283] = 141, + [1284] = 345, + [1285] = 318, + [1286] = 323, + [1287] = 333, + [1288] = 335, + [1289] = 337, + [1290] = 183, + [1291] = 344, + [1292] = 286, + [1293] = 185, + [1294] = 185, + [1295] = 138, + [1296] = 137, + [1297] = 314, + [1298] = 183, + [1299] = 250, + [1300] = 183, + [1301] = 251, + [1302] = 185, + [1303] = 305, + [1304] = 183, + [1305] = 252, + [1306] = 398, + [1307] = 253, + [1308] = 409, + [1309] = 314, + [1310] = 1270, + [1311] = 405, + [1312] = 201, + [1313] = 407, + [1314] = 193, + [1315] = 333, + [1316] = 343, + [1317] = 232, + [1318] = 216, + [1319] = 409, + [1320] = 202, + [1321] = 202, + [1322] = 344, + [1323] = 203, + [1324] = 391, + [1325] = 191, + [1326] = 206, + [1327] = 193, + [1328] = 185, + [1329] = 204, + [1330] = 201, + [1331] = 216, + [1332] = 250, + [1333] = 318, + [1334] = 193, + [1335] = 208, + [1336] = 191, + [1337] = 222, + [1338] = 342, + [1339] = 204, + [1340] = 1340, + [1341] = 143, + [1342] = 300, + [1343] = 205, + [1344] = 345, + [1345] = 299, + [1346] = 301, + [1347] = 1270, + [1348] = 144, + [1349] = 142, + [1350] = 323, + [1351] = 222, + [1352] = 335, + [1353] = 364, + [1354] = 191, + [1355] = 134, + [1356] = 232, + [1357] = 251, + [1358] = 302, + [1359] = 407, + [1360] = 303, + [1361] = 304, + [1362] = 193, + [1363] = 305, + [1364] = 208, + [1365] = 307, + [1366] = 309, + [1367] = 310, + [1368] = 383, + [1369] = 384, + [1370] = 313, + [1371] = 385, + [1372] = 311, + [1373] = 136, + [1374] = 135, + [1375] = 145, + [1376] = 337, + [1377] = 191, + [1378] = 205, + [1379] = 1379, + [1380] = 1380, + [1381] = 205, + [1382] = 201, + [1383] = 251, + [1384] = 409, + [1385] = 1385, + [1386] = 1386, + [1387] = 1387, + [1388] = 1388, + [1389] = 139, + [1390] = 193, + [1391] = 1391, + [1392] = 1392, + [1393] = 1393, + [1394] = 1394, + [1395] = 205, + [1396] = 252, + [1397] = 1397, + [1398] = 1398, + [1399] = 1399, + [1400] = 1400, + [1401] = 222, + [1402] = 364, + [1403] = 1340, + [1404] = 253, + [1405] = 436, + [1406] = 398, + [1407] = 201, + [1408] = 405, + [1409] = 1409, + [1410] = 141, + [1411] = 191, + [1412] = 204, + [1413] = 205, + [1414] = 208, + [1415] = 391, + [1416] = 139, + [1417] = 1417, + [1418] = 445, + [1419] = 419, + [1420] = 421, + [1421] = 140, + [1422] = 208, + [1423] = 141, + [1424] = 205, + [1425] = 232, + [1426] = 204, + [1427] = 464, + [1428] = 422, + [1429] = 208, + [1430] = 250, + [1431] = 138, + [1432] = 206, + [1433] = 1433, + [1434] = 1409, + [1435] = 407, + [1436] = 145, + [1437] = 135, + [1438] = 438, + [1439] = 439, + [1440] = 423, + [1441] = 1441, + [1442] = 1442, [1443] = 251, - [1444] = 210, - [1445] = 148, - [1446] = 154, - [1447] = 196, - [1448] = 147, - [1449] = 336, - [1450] = 1450, - [1451] = 147, - [1452] = 149, - [1453] = 196, - [1454] = 210, - [1455] = 296, - [1456] = 202, - [1457] = 264, - [1458] = 295, - [1459] = 203, - [1460] = 351, - [1461] = 266, - [1462] = 194, - [1463] = 322, - [1464] = 325, - [1465] = 152, - [1466] = 302, - [1467] = 346, - [1468] = 196, - [1469] = 326, - [1470] = 150, - [1471] = 151, - [1472] = 219, - [1473] = 328, - [1474] = 221, - [1475] = 221, - [1476] = 312, - [1477] = 262, - [1478] = 210, - [1479] = 321, - [1480] = 349, - [1481] = 350, - [1482] = 194, - [1483] = 347, - [1484] = 265, - [1485] = 251, - [1486] = 203, - [1487] = 304, - [1488] = 202, - [1489] = 699, - [1490] = 305, - [1491] = 263, - [1492] = 194, - [1493] = 331, - [1494] = 231, - [1495] = 1423, - [1496] = 344, - [1497] = 196, - [1498] = 345, - [1499] = 196, - [1500] = 194, - [1501] = 241, - [1502] = 145, - [1503] = 306, - [1504] = 146, - [1505] = 142, - [1506] = 219, - [1507] = 148, - [1508] = 317, - [1509] = 351, - [1510] = 241, - [1511] = 231, - [1512] = 388, - [1513] = 344, - [1514] = 384, - [1515] = 336, - [1516] = 994, - [1517] = 302, - [1518] = 210, - [1519] = 203, - [1520] = 405, - [1521] = 214, - [1522] = 347, - [1523] = 331, - [1524] = 231, - [1525] = 312, - [1526] = 203, - [1527] = 217, - [1528] = 405, - [1529] = 317, - [1530] = 321, - [1531] = 400, - [1532] = 975, - [1533] = 218, - [1534] = 295, - [1535] = 980, - [1536] = 997, - [1537] = 982, - [1538] = 304, - [1539] = 417, - [1540] = 828, - [1541] = 390, - [1542] = 390, - [1543] = 1543, - [1544] = 325, - [1545] = 966, - [1546] = 968, - [1547] = 326, - [1548] = 147, - [1549] = 328, - [1550] = 241, - [1551] = 345, - [1552] = 202, - [1553] = 221, - [1554] = 211, - [1555] = 699, - [1556] = 202, - [1557] = 346, - [1558] = 196, - [1559] = 373, - [1560] = 149, - [1561] = 203, - [1562] = 263, - [1563] = 986, - [1564] = 378, - [1565] = 194, - [1566] = 202, - [1567] = 988, - [1568] = 984, - [1569] = 142, - [1570] = 350, - [1571] = 981, - [1572] = 264, - [1573] = 992, - [1574] = 150, - [1575] = 143, - [1576] = 144, - [1577] = 349, - [1578] = 202, - [1579] = 296, - [1580] = 265, - [1581] = 151, - [1582] = 977, - [1583] = 266, - [1584] = 217, - [1585] = 219, - [1586] = 306, - [1587] = 322, - [1588] = 978, - [1589] = 203, - [1590] = 699, - [1591] = 305, - [1592] = 154, - [1593] = 214, - [1594] = 211, - [1595] = 983, - [1596] = 979, - [1597] = 152, - [1598] = 218, - [1599] = 971, - [1600] = 373, - [1601] = 390, - [1602] = 148, - [1603] = 421, - [1604] = 1604, - [1605] = 384, + [1444] = 1444, + [1445] = 1442, + [1446] = 136, + [1447] = 1417, + [1448] = 1448, + [1449] = 383, + [1450] = 252, + [1451] = 204, + [1452] = 253, + [1453] = 250, + [1454] = 137, + [1455] = 201, + [1456] = 140, + [1457] = 216, + [1458] = 1458, + [1459] = 202, + [1460] = 418, + [1461] = 398, + [1462] = 138, + [1463] = 137, + [1464] = 203, + [1465] = 384, + [1466] = 1441, + [1467] = 208, + [1468] = 385, + [1469] = 201, + [1470] = 1470, + [1471] = 204, + [1472] = 1472, + [1473] = 1472, + [1474] = 1474, + [1475] = 251, + [1476] = 1476, + [1477] = 423, + [1478] = 1409, + [1479] = 206, + [1480] = 1444, + [1481] = 1481, + [1482] = 466, + [1483] = 138, + [1484] = 407, + [1485] = 464, + [1486] = 436, + [1487] = 137, + [1488] = 142, + [1489] = 1489, + [1490] = 445, + [1491] = 1491, + [1492] = 464, + [1493] = 1493, + [1494] = 1494, + [1495] = 142, + [1496] = 1493, + [1497] = 1442, + [1498] = 1498, + [1499] = 419, + [1500] = 144, + [1501] = 1441, + [1502] = 204, + [1503] = 141, + [1504] = 208, + [1505] = 1417, + [1506] = 1400, + [1507] = 1474, + [1508] = 253, + [1509] = 1509, + [1510] = 250, + [1511] = 439, + [1512] = 1442, + [1513] = 205, + [1514] = 1514, + [1515] = 252, + [1516] = 139, + [1517] = 1517, + [1518] = 1518, + [1519] = 438, + [1520] = 466, + [1521] = 439, + [1522] = 445, + [1523] = 222, + [1524] = 1491, + [1525] = 232, + [1526] = 140, + [1527] = 421, + [1528] = 1379, + [1529] = 1472, + [1530] = 143, + [1531] = 201, + [1532] = 143, + [1533] = 409, + [1534] = 436, + [1535] = 418, + [1536] = 203, + [1537] = 1514, + [1538] = 144, + [1539] = 422, + [1540] = 438, + [1541] = 311, + [1542] = 516, + [1543] = 140, + [1544] = 557, + [1545] = 503, + [1546] = 519, + [1547] = 141, + [1548] = 564, + [1549] = 522, + [1550] = 523, + [1551] = 524, + [1552] = 525, + [1553] = 526, + [1554] = 527, + [1555] = 528, + [1556] = 529, + [1557] = 530, + [1558] = 531, + [1559] = 532, + [1560] = 533, + [1561] = 534, + [1562] = 535, + [1563] = 536, + [1564] = 537, + [1565] = 538, + [1566] = 539, + [1567] = 540, + [1568] = 541, + [1569] = 542, + [1570] = 216, + [1571] = 589, + [1572] = 202, + [1573] = 553, + [1574] = 514, + [1575] = 515, + [1576] = 549, + [1577] = 517, + [1578] = 518, + [1579] = 145, + [1580] = 364, + [1581] = 520, + [1582] = 521, + [1583] = 555, + [1584] = 558, + [1585] = 563, + [1586] = 567, + [1587] = 405, + [1588] = 568, + [1589] = 569, + [1590] = 570, + [1591] = 571, + [1592] = 572, + [1593] = 573, + [1594] = 574, + [1595] = 575, + [1596] = 576, + [1597] = 578, + [1598] = 134, + [1599] = 143, + [1600] = 144, + [1601] = 142, + [1602] = 222, + [1603] = 232, + [1604] = 1493, + [1605] = 1514, [1606] = 1606, - [1607] = 1607, - [1608] = 217, - [1609] = 145, - [1610] = 428, - [1611] = 434, - [1612] = 436, - [1613] = 437, - [1614] = 221, - [1615] = 211, + [1607] = 1517, + [1608] = 1608, + [1609] = 1609, + [1610] = 1474, + [1611] = 1611, + [1612] = 1612, + [1613] = 436, + [1614] = 1614, + [1615] = 1615, [1616] = 1616, - [1617] = 146, - [1618] = 441, - [1619] = 968, - [1620] = 148, - [1621] = 214, - [1622] = 145, - [1623] = 147, - [1624] = 149, - [1625] = 152, - [1626] = 971, - [1627] = 154, - [1628] = 986, - [1629] = 217, - [1630] = 1543, - [1631] = 202, - [1632] = 988, - [1633] = 211, - [1634] = 405, - [1635] = 218, - [1636] = 150, - [1637] = 151, - [1638] = 263, - [1639] = 1123, - [1640] = 218, - [1641] = 264, - [1642] = 265, - [1643] = 266, - [1644] = 1062, - [1645] = 231, - [1646] = 1646, - [1647] = 203, - [1648] = 214, - [1649] = 429, - [1650] = 263, - [1651] = 143, - [1652] = 210, - [1653] = 430, - [1654] = 431, - [1655] = 217, - [1656] = 264, - [1657] = 241, - [1658] = 144, - [1659] = 218, - [1660] = 378, - [1661] = 219, - [1662] = 218, - [1663] = 265, - [1664] = 266, - [1665] = 475, - [1666] = 1606, - [1667] = 211, - [1668] = 146, - [1669] = 214, - [1670] = 1670, - [1671] = 417, - [1672] = 400, - [1673] = 388, - [1674] = 214, - [1675] = 211, - [1676] = 217, - [1677] = 427, - [1678] = 546, - [1679] = 1138, - [1680] = 218, - [1681] = 436, - [1682] = 492, - [1683] = 504, - [1684] = 1684, - [1685] = 1685, - [1686] = 519, - [1687] = 968, - [1688] = 522, - [1689] = 263, - [1690] = 1159, - [1691] = 971, - [1692] = 145, - [1693] = 1606, - [1694] = 1694, - [1695] = 1010, - [1696] = 437, - [1697] = 1697, - [1698] = 1698, - [1699] = 217, - [1700] = 427, - [1701] = 1701, - [1702] = 1123, - [1703] = 1703, - [1704] = 264, - [1705] = 477, - [1706] = 1062, - [1707] = 219, - [1708] = 231, - [1709] = 1154, - [1710] = 241, - [1711] = 429, - [1712] = 430, - [1713] = 431, - [1714] = 1714, - [1715] = 152, - [1716] = 1144, - [1717] = 428, - [1718] = 421, - [1719] = 475, - [1720] = 441, - [1721] = 441, - [1722] = 265, - [1723] = 147, - [1724] = 149, - [1725] = 429, - [1726] = 150, - [1727] = 151, - [1728] = 427, - [1729] = 1685, - [1730] = 1175, - [1731] = 214, - [1732] = 986, - [1733] = 430, - [1734] = 517, - [1735] = 431, - [1736] = 266, - [1737] = 533, - [1738] = 211, - [1739] = 988, - [1740] = 476, - [1741] = 434, - [1742] = 1606, - [1743] = 523, - [1744] = 525, - [1745] = 534, - [1746] = 1746, - [1747] = 1163, - [1748] = 1164, - [1749] = 1165, - [1750] = 496, - [1751] = 302, - [1752] = 306, - [1753] = 304, - [1754] = 331, - [1755] = 344, - [1756] = 345, - [1757] = 346, - [1758] = 347, - [1759] = 349, - [1760] = 350, - [1761] = 296, - [1762] = 322, - [1763] = 336, - [1764] = 312, - [1765] = 317, - [1766] = 321, - [1767] = 295, - [1768] = 351, - [1769] = 325, - [1770] = 326, - [1771] = 328, - [1772] = 1166, - [1773] = 1167, - [1774] = 1607, - [1775] = 441, - [1776] = 1670, - [1777] = 1168, - [1778] = 146, - [1779] = 488, - [1780] = 405, - [1781] = 486, - [1782] = 507, - [1783] = 535, - [1784] = 1207, - [1785] = 536, - [1786] = 537, - [1787] = 538, - [1788] = 539, - [1789] = 540, - [1790] = 541, - [1791] = 543, - [1792] = 544, - [1793] = 545, - [1794] = 1143, - [1795] = 547, - [1796] = 548, - [1797] = 549, - [1798] = 550, - [1799] = 556, - [1800] = 557, - [1801] = 558, - [1802] = 529, - [1803] = 1170, - [1804] = 1010, - [1805] = 1171, - [1806] = 1172, - [1807] = 1616, - [1808] = 1130, - [1809] = 210, - [1810] = 148, - [1811] = 1133, - [1812] = 1142, - [1813] = 305, - [1814] = 1814, - [1815] = 221, - [1816] = 1697, + [1617] = 1617, + [1618] = 1618, + [1619] = 1619, + [1620] = 1620, + [1621] = 464, + [1622] = 1622, + [1623] = 1623, + [1624] = 438, + [1625] = 439, + [1626] = 1626, + [1627] = 1627, + [1628] = 1628, + [1629] = 1629, + [1630] = 1630, + [1631] = 1631, + [1632] = 1632, + [1633] = 445, + [1634] = 1634, + [1635] = 1635, + [1636] = 216, + [1637] = 202, + [1638] = 1476, + [1639] = 1639, + [1640] = 250, + [1641] = 251, + [1642] = 252, + [1643] = 253, + [1644] = 1644, + [1645] = 445, + [1646] = 1493, + [1647] = 344, + [1648] = 342, + [1649] = 1649, + [1650] = 1518, + [1651] = 1514, + [1652] = 314, + [1653] = 1498, + [1654] = 343, + [1655] = 299, + [1656] = 1656, + [1657] = 139, + [1658] = 301, + [1659] = 302, + [1660] = 303, + [1661] = 304, + [1662] = 305, + [1663] = 307, + [1664] = 309, + [1665] = 310, + [1666] = 311, + [1667] = 313, + [1668] = 345, + [1669] = 318, + [1670] = 323, + [1671] = 333, + [1672] = 335, + [1673] = 337, + [1674] = 541, + [1675] = 556, + [1676] = 542, + [1677] = 516, + [1678] = 1509, + [1679] = 1679, + [1680] = 589, + [1681] = 557, + [1682] = 503, + [1683] = 519, + [1684] = 553, + [1685] = 561, + [1686] = 564, + [1687] = 522, + [1688] = 523, + [1689] = 524, + [1690] = 525, + [1691] = 526, + [1692] = 527, + [1693] = 528, + [1694] = 529, + [1695] = 530, + [1696] = 531, + [1697] = 532, + [1698] = 533, + [1699] = 534, + [1700] = 535, + [1701] = 536, + [1702] = 537, + [1703] = 538, + [1704] = 539, + [1705] = 540, + [1706] = 466, + [1707] = 139, + [1708] = 514, + [1709] = 515, + [1710] = 140, + [1711] = 517, + [1712] = 518, + [1713] = 141, + [1714] = 520, + [1715] = 521, + [1716] = 1474, + [1717] = 134, + [1718] = 561, + [1719] = 1719, + [1720] = 1720, + [1721] = 1721, + [1722] = 1722, + [1723] = 1723, + [1724] = 134, + [1725] = 1725, + [1726] = 1726, + [1727] = 1727, + [1728] = 1728, + [1729] = 1729, + [1730] = 1639, + [1731] = 1634, + [1732] = 1635, + [1733] = 1725, + [1734] = 344, + [1735] = 342, + [1736] = 314, + [1737] = 343, + [1738] = 299, + [1739] = 300, + [1740] = 301, + [1741] = 302, + [1742] = 303, + [1743] = 304, + [1744] = 305, + [1745] = 307, + [1746] = 309, + [1747] = 310, + [1748] = 313, + [1749] = 345, + [1750] = 318, + [1751] = 323, + [1752] = 333, + [1753] = 335, + [1754] = 337, + [1755] = 556, + [1756] = 300, + [1757] = 578, + [1758] = 1758, + [1759] = 314, + [1760] = 1760, + [1761] = 1761, + [1762] = 1762, + [1763] = 1763, + [1764] = 1764, + [1765] = 1765, + [1766] = 1766, + [1767] = 1767, + [1768] = 1768, + [1769] = 1769, + [1770] = 1770, + [1771] = 1771, + [1772] = 1493, + [1773] = 342, + [1774] = 1774, + [1775] = 1775, + [1776] = 1632, + [1777] = 1777, + [1778] = 549, + [1779] = 303, + [1780] = 304, + [1781] = 305, + [1782] = 466, + [1783] = 1783, + [1784] = 1611, + [1785] = 576, + [1786] = 1719, + [1787] = 568, + [1788] = 569, + [1789] = 570, + [1790] = 1612, + [1791] = 1791, + [1792] = 302, + [1793] = 1720, + [1794] = 1721, + [1795] = 300, + [1796] = 301, + [1797] = 1797, + [1798] = 1722, + [1799] = 1723, + [1800] = 1800, + [1801] = 344, + [1802] = 307, + [1803] = 309, + [1804] = 310, + [1805] = 311, + [1806] = 313, + [1807] = 1807, + [1808] = 1808, + [1809] = 345, + [1810] = 343, + [1811] = 1726, + [1812] = 1727, + [1813] = 1813, + [1814] = 1728, + [1815] = 1729, + [1816] = 250, [1817] = 1817, - [1818] = 1010, - [1819] = 488, - [1820] = 1714, - [1821] = 1132, - [1822] = 142, - [1823] = 331, - [1824] = 519, - [1825] = 427, - [1826] = 522, - [1827] = 1123, - [1828] = 1701, - [1829] = 305, + [1818] = 251, + [1819] = 252, + [1820] = 253, + [1821] = 1821, + [1822] = 556, + [1823] = 555, + [1824] = 516, + [1825] = 1825, + [1826] = 558, + [1827] = 563, + [1828] = 567, + [1829] = 1829, [1830] = 1830, - [1831] = 405, - [1832] = 571, - [1833] = 496, - [1834] = 477, - [1835] = 142, - [1836] = 429, - [1837] = 302, - [1838] = 430, - [1839] = 431, - [1840] = 154, - [1841] = 384, - [1842] = 492, - [1843] = 504, - [1844] = 572, - [1845] = 573, - [1846] = 574, - [1847] = 575, - [1848] = 441, - [1849] = 378, - [1850] = 1850, - [1851] = 146, - [1852] = 1010, - [1853] = 576, - [1854] = 577, - [1855] = 578, - [1856] = 221, - [1857] = 579, - [1858] = 580, - [1859] = 581, - [1860] = 582, - [1861] = 583, - [1862] = 584, - [1863] = 585, - [1864] = 344, - [1865] = 345, - [1866] = 142, - [1867] = 517, - [1868] = 152, - [1869] = 1062, - [1870] = 263, - [1871] = 264, - [1872] = 306, - [1873] = 265, - [1874] = 266, - [1875] = 346, - [1876] = 347, - [1877] = 349, - [1878] = 1684, - [1879] = 304, + [1831] = 557, + [1832] = 503, + [1833] = 519, + [1834] = 318, + [1835] = 323, + [1836] = 333, + [1837] = 335, + [1838] = 1838, + [1839] = 561, + [1840] = 564, + [1841] = 522, + [1842] = 1842, + [1843] = 523, + [1844] = 524, + [1845] = 1845, + [1846] = 525, + [1847] = 526, + [1848] = 527, + [1849] = 1849, + [1850] = 528, + [1851] = 529, + [1852] = 530, + [1853] = 531, + [1854] = 1854, + [1855] = 532, + [1856] = 533, + [1857] = 534, + [1858] = 535, + [1859] = 536, + [1860] = 537, + [1861] = 538, + [1862] = 539, + [1863] = 540, + [1864] = 1864, + [1865] = 541, + [1866] = 542, + [1867] = 1867, + [1868] = 216, + [1869] = 1869, + [1870] = 589, + [1871] = 1871, + [1872] = 1872, + [1873] = 202, + [1874] = 364, + [1875] = 1875, + [1876] = 553, + [1877] = 337, + [1878] = 405, + [1879] = 1879, [1880] = 1880, - [1881] = 350, - [1882] = 296, - [1883] = 1883, - [1884] = 1123, - [1885] = 322, - [1886] = 336, - [1887] = 533, - [1888] = 312, - [1889] = 317, - [1890] = 321, - [1891] = 148, - [1892] = 1062, - [1893] = 295, - [1894] = 351, - [1895] = 325, - [1896] = 523, - [1897] = 525, - [1898] = 326, - [1899] = 1899, - [1900] = 150, - [1901] = 328, - [1902] = 559, - [1903] = 151, - [1904] = 1904, - [1905] = 534, - [1906] = 145, - [1907] = 561, - [1908] = 507, - [1909] = 1909, - [1910] = 535, - [1911] = 1698, - [1912] = 1912, - [1913] = 486, - [1914] = 536, - [1915] = 1915, - [1916] = 537, - [1917] = 145, - [1918] = 231, - [1919] = 1817, - [1920] = 1830, - [1921] = 1921, - [1922] = 1922, - [1923] = 538, - [1924] = 1924, - [1925] = 539, - [1926] = 540, - [1927] = 541, - [1928] = 543, - [1929] = 544, - [1930] = 545, - [1931] = 546, - [1932] = 547, - [1933] = 143, - [1934] = 144, - [1935] = 548, - [1936] = 549, - [1937] = 550, - [1938] = 556, - [1939] = 557, - [1940] = 1940, - [1941] = 558, - [1942] = 529, - [1943] = 1943, - [1944] = 559, - [1945] = 561, - [1946] = 1946, - [1947] = 1947, - [1948] = 476, - [1949] = 1921, - [1950] = 475, - [1951] = 148, - [1952] = 1922, - [1953] = 241, - [1954] = 146, - [1955] = 519, - [1956] = 1946, - [1957] = 1947, - [1958] = 1958, - [1959] = 345, - [1960] = 536, - [1961] = 529, + [1881] = 1881, + [1882] = 1882, + [1883] = 145, + [1884] = 1884, + [1885] = 1885, + [1886] = 1886, + [1887] = 1887, + [1888] = 1888, + [1889] = 1493, + [1890] = 1890, + [1891] = 1891, + [1892] = 1514, + [1893] = 136, + [1894] = 299, + [1895] = 1774, + [1896] = 1608, + [1897] = 1897, + [1898] = 1514, + [1899] = 1609, + [1900] = 1679, + [1901] = 1901, + [1902] = 1902, + [1903] = 1903, + [1904] = 407, + [1905] = 1905, + [1906] = 409, + [1907] = 1907, + [1908] = 135, + [1909] = 136, + [1910] = 139, + [1911] = 514, + [1912] = 515, + [1913] = 571, + [1914] = 140, + [1915] = 517, + [1916] = 518, + [1917] = 135, + [1918] = 572, + [1919] = 573, + [1920] = 141, + [1921] = 520, + [1922] = 521, + [1923] = 136, + [1924] = 574, + [1925] = 575, + [1926] = 135, + [1927] = 1927, + [1928] = 1928, + [1929] = 1929, + [1930] = 1930, + [1931] = 438, + [1932] = 439, + [1933] = 140, + [1934] = 398, + [1935] = 541, + [1936] = 445, + [1937] = 542, + [1938] = 398, + [1939] = 516, + [1940] = 134, + [1941] = 1472, + [1942] = 1409, + [1943] = 1441, + [1944] = 1417, + [1945] = 519, + [1946] = 139, + [1947] = 140, + [1948] = 141, + [1949] = 141, + [1950] = 522, + [1951] = 523, + [1952] = 524, + [1953] = 407, + [1954] = 525, + [1955] = 526, + [1956] = 464, + [1957] = 1957, + [1958] = 528, + [1959] = 529, + [1960] = 138, + [1961] = 1961, [1962] = 1962, - [1963] = 1963, - [1964] = 1964, - [1965] = 537, - [1966] = 295, - [1967] = 492, - [1968] = 351, - [1969] = 146, - [1970] = 523, - [1971] = 1971, - [1972] = 331, - [1973] = 1912, + [1963] = 530, + [1964] = 531, + [1965] = 141, + [1966] = 532, + [1967] = 137, + [1968] = 533, + [1969] = 534, + [1970] = 436, + [1971] = 1458, + [1972] = 139, + [1973] = 535, [1974] = 1974, - [1975] = 1975, - [1976] = 1976, - [1977] = 1977, - [1978] = 1978, - [1979] = 549, - [1980] = 1980, - [1981] = 572, - [1982] = 573, - [1983] = 574, - [1984] = 575, - [1985] = 1985, - [1986] = 265, - [1987] = 1987, - [1988] = 504, - [1989] = 475, - [1990] = 486, - [1991] = 1123, + [1975] = 536, + [1976] = 537, + [1977] = 538, + [1978] = 539, + [1979] = 140, + [1980] = 540, + [1981] = 1981, + [1982] = 409, + [1983] = 216, + [1984] = 139, + [1985] = 202, + [1986] = 138, + [1987] = 137, + [1988] = 527, + [1989] = 1989, + [1990] = 1990, + [1991] = 1991, [1992] = 1992, - [1993] = 1924, + [1993] = 202, [1994] = 1994, [1995] = 1995, - [1996] = 384, - [1997] = 1850, - [1998] = 325, - [1999] = 143, - [2000] = 326, - [2001] = 538, - [2002] = 1062, - [2003] = 1132, + [1996] = 1996, + [1997] = 1997, + [1998] = 1474, + [1999] = 1999, + [2000] = 2000, + [2001] = 2001, + [2002] = 2002, + [2003] = 144, [2004] = 2004, - [2005] = 144, + [2005] = 2005, [2006] = 2006, - [2007] = 525, + [2007] = 2007, [2008] = 2008, [2009] = 2009, - [2010] = 2010, - [2011] = 535, - [2012] = 145, + [2010] = 142, + [2011] = 2011, + [2012] = 2012, [2013] = 2013, - [2014] = 1909, + [2014] = 2014, [2015] = 2015, [2016] = 2016, - [2017] = 576, - [2018] = 577, + [2017] = 2017, + [2018] = 2018, [2019] = 2019, [2020] = 2020, [2021] = 2021, [2022] = 2022, - [2023] = 550, - [2024] = 1915, - [2025] = 579, - [2026] = 305, - [2027] = 488, - [2028] = 559, - [2029] = 306, - [2030] = 221, + [2023] = 185, + [2024] = 2024, + [2025] = 2025, + [2026] = 2026, + [2027] = 2027, + [2028] = 2028, + [2029] = 2029, + [2030] = 2030, [2031] = 2031, - [2032] = 556, + [2032] = 2032, [2033] = 2033, - [2034] = 557, - [2035] = 2035, - [2036] = 378, - [2037] = 507, + [2034] = 1472, + [2035] = 1409, + [2036] = 2036, + [2037] = 2037, [2038] = 2038, - [2039] = 539, - [2040] = 580, - [2041] = 540, - [2042] = 146, - [2043] = 534, - [2044] = 1123, + [2039] = 2039, + [2040] = 2040, + [2041] = 2041, + [2042] = 2042, + [2043] = 2043, + [2044] = 2044, [2045] = 2045, [2046] = 2046, - [2047] = 263, - [2048] = 581, - [2049] = 1994, + [2047] = 2047, + [2048] = 1441, + [2049] = 1417, [2050] = 2050, [2051] = 2051, [2052] = 2052, - [2053] = 541, + [2053] = 2053, [2054] = 2054, - [2055] = 543, - [2056] = 328, - [2057] = 533, + [2055] = 2055, + [2056] = 1392, + [2057] = 464, [2058] = 2058, [2059] = 2059, - [2060] = 154, - [2061] = 578, - [2062] = 582, + [2060] = 436, + [2061] = 2061, + [2062] = 324, [2063] = 2063, - [2064] = 544, - [2065] = 583, + [2064] = 2064, + [2065] = 2065, [2066] = 2066, - [2067] = 545, - [2068] = 2068, - [2069] = 1062, - [2070] = 302, - [2071] = 558, - [2072] = 2072, - [2073] = 522, - [2074] = 584, - [2075] = 546, + [2067] = 2067, + [2068] = 135, + [2069] = 2069, + [2070] = 2070, + [2071] = 2071, + [2072] = 136, + [2073] = 2073, + [2074] = 2074, + [2075] = 2075, [2076] = 2076, - [2077] = 547, - [2078] = 1880, - [2079] = 1883, - [2080] = 561, - [2081] = 2081, - [2082] = 2082, - [2083] = 1940, - [2084] = 1943, - [2085] = 571, - [2086] = 1899, - [2087] = 1904, - [2088] = 585, - [2089] = 548, - [2090] = 1814, - [2091] = 304, - [2092] = 2092, - [2093] = 346, - [2094] = 517, - [2095] = 2095, - [2096] = 347, - [2097] = 349, + [2077] = 2077, + [2078] = 445, + [2079] = 2079, + [2080] = 464, + [2081] = 445, + [2082] = 436, + [2083] = 2083, + [2084] = 2084, + [2085] = 2085, + [2086] = 2086, + [2087] = 2087, + [2088] = 2088, + [2089] = 438, + [2090] = 439, + [2091] = 1393, + [2092] = 438, + [2093] = 439, + [2094] = 2094, + [2095] = 1433, + [2096] = 1380, + [2097] = 2073, [2098] = 2098, - [2099] = 144, - [2100] = 350, - [2101] = 266, - [2102] = 476, - [2103] = 296, - [2104] = 148, - [2105] = 2105, - [2106] = 322, - [2107] = 2107, - [2108] = 2108, + [2099] = 2099, + [2100] = 2100, + [2101] = 2101, + [2102] = 1388, + [2103] = 2103, + [2104] = 1493, + [2105] = 183, + [2106] = 1385, + [2107] = 216, + [2108] = 1386, [2109] = 2109, [2110] = 2110, - [2111] = 145, - [2112] = 148, - [2113] = 336, - [2114] = 264, - [2115] = 496, - [2116] = 312, - [2117] = 317, - [2118] = 477, - [2119] = 2119, - [2120] = 143, - [2121] = 321, + [2111] = 2111, + [2112] = 2112, + [2113] = 2113, + [2114] = 2114, + [2115] = 2115, + [2116] = 2116, + [2117] = 2117, + [2118] = 2061, + [2119] = 2070, + [2120] = 2120, + [2121] = 1394, [2122] = 2122, - [2123] = 344, - [2124] = 543, + [2123] = 1397, + [2124] = 134, [2125] = 2125, - [2126] = 559, - [2127] = 558, - [2128] = 536, - [2129] = 529, - [2130] = 148, - [2131] = 537, - [2132] = 2132, - [2133] = 545, + [2126] = 143, + [2127] = 2098, + [2128] = 2099, + [2129] = 2129, + [2130] = 2130, + [2131] = 1391, + [2132] = 1387, + [2133] = 2133, [2134] = 2134, - [2135] = 533, - [2136] = 546, - [2137] = 561, - [2138] = 547, - [2139] = 986, - [2140] = 149, - [2141] = 147, + [2135] = 2135, + [2136] = 2136, + [2137] = 2137, + [2138] = 2138, + [2139] = 2139, + [2140] = 2140, + [2141] = 143, [2142] = 2142, - [2143] = 390, - [2144] = 146, - [2145] = 541, - [2146] = 145, - [2147] = 538, - [2148] = 145, - [2149] = 988, - [2150] = 548, - [2151] = 147, - [2152] = 441, - [2153] = 971, - [2154] = 2154, - [2155] = 2155, - [2156] = 549, - [2157] = 149, - [2158] = 146, - [2159] = 828, - [2160] = 142, - [2161] = 430, - [2162] = 431, - [2163] = 2163, - [2164] = 534, - [2165] = 429, - [2166] = 539, - [2167] = 550, - [2168] = 148, - [2169] = 556, - [2170] = 535, - [2171] = 557, - [2172] = 540, - [2173] = 544, + [2143] = 2143, + [2144] = 2144, + [2145] = 2145, + [2146] = 2146, + [2147] = 2147, + [2148] = 2148, + [2149] = 2149, + [2150] = 2150, + [2151] = 2151, + [2152] = 2152, + [2153] = 144, + [2154] = 142, + [2155] = 1398, + [2156] = 1399, + [2157] = 1514, + [2158] = 2158, + [2159] = 1995, + [2160] = 141, + [2161] = 2161, + [2162] = 2162, + [2163] = 2070, + [2164] = 2164, + [2165] = 193, + [2166] = 2142, + [2167] = 2143, + [2168] = 556, + [2169] = 2169, + [2170] = 2170, + [2171] = 2171, + [2172] = 2172, + [2173] = 2173, [2174] = 2174, - [2175] = 390, - [2176] = 221, - [2177] = 968, - [2178] = 427, - [2179] = 405, - [2180] = 1010, + [2175] = 2175, + [2176] = 2176, + [2177] = 2177, + [2178] = 2178, + [2179] = 2142, + [2180] = 1996, [2181] = 2181, - [2182] = 2182, + [2182] = 589, [2183] = 2183, - [2184] = 2184, - [2185] = 2185, + [2184] = 557, + [2185] = 503, [2186] = 2186, [2187] = 2187, [2188] = 2188, [2189] = 2189, [2190] = 2190, [2191] = 2191, - [2192] = 301, - [2193] = 429, - [2194] = 427, - [2195] = 430, - [2196] = 431, - [2197] = 152, - [2198] = 150, - [2199] = 151, + [2192] = 2192, + [2193] = 2193, + [2194] = 2194, + [2195] = 2195, + [2196] = 2196, + [2197] = 2197, + [2198] = 2198, + [2199] = 2199, [2200] = 2200, - [2201] = 2201, + [2201] = 553, [2202] = 2202, - [2203] = 441, + [2203] = 2203, [2204] = 2204, [2205] = 2205, - [2206] = 2206, - [2207] = 2207, + [2206] = 561, + [2207] = 564, [2208] = 2208, [2209] = 2209, [2210] = 2210, [2211] = 2211, - [2212] = 2212, + [2212] = 191, [2213] = 2213, [2214] = 2214, [2215] = 2215, [2216] = 2216, - [2217] = 2217, - [2218] = 2218, - [2219] = 2219, - [2220] = 2220, - [2221] = 2221, - [2222] = 2222, - [2223] = 2223, - [2224] = 2224, - [2225] = 2225, - [2226] = 2226, - [2227] = 2227, - [2228] = 977, + [2217] = 2142, + [2218] = 514, + [2219] = 515, + [2220] = 466, + [2221] = 2143, + [2222] = 1474, + [2223] = 517, + [2224] = 518, + [2225] = 2070, + [2226] = 138, + [2227] = 137, + [2228] = 2228, [2229] = 2229, - [2230] = 2230, - [2231] = 2231, + [2230] = 520, + [2231] = 521, [2232] = 2232, [2233] = 2233, [2234] = 2234, - [2235] = 978, - [2236] = 2236, + [2235] = 182, + [2236] = 1644, [2237] = 2237, [2238] = 2238, [2239] = 2239, [2240] = 2240, [2241] = 2241, - [2242] = 979, - [2243] = 2243, + [2242] = 1493, + [2243] = 372, [2244] = 2244, [2245] = 2245, - [2246] = 980, - [2247] = 981, - [2248] = 194, + [2246] = 2246, + [2247] = 2247, + [2248] = 2248, [2249] = 2249, - [2250] = 2250, - [2251] = 196, - [2252] = 982, - [2253] = 983, - [2254] = 984, - [2255] = 975, - [2256] = 441, - [2257] = 992, - [2258] = 994, + [2250] = 1514, + [2251] = 135, + [2252] = 2252, + [2253] = 2253, + [2254] = 1649, + [2255] = 2255, + [2256] = 2256, + [2257] = 2257, + [2258] = 2258, [2259] = 2259, [2260] = 2260, [2261] = 2261, [2262] = 2262, - [2263] = 2263, - [2264] = 2264, + [2263] = 136, + [2264] = 541, [2265] = 2265, - [2266] = 2266, + [2266] = 542, [2267] = 2267, [2268] = 2268, [2269] = 2269, [2270] = 2270, [2271] = 2271, [2272] = 2272, - [2273] = 997, - [2274] = 966, - [2275] = 143, - [2276] = 144, - [2277] = 559, - [2278] = 561, - [2279] = 1123, - [2280] = 1062, - [2281] = 221, + [2273] = 2273, + [2274] = 1995, + [2275] = 1996, + [2276] = 2276, + [2277] = 2277, + [2278] = 2278, + [2279] = 2279, + [2280] = 2280, + [2281] = 2281, [2282] = 2282, [2283] = 2283, [2284] = 2284, @@ -7485,27 +7489,27 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2289] = 2289, [2290] = 2290, [2291] = 2291, - [2292] = 2292, + [2292] = 445, [2293] = 2293, [2294] = 2294, [2295] = 2295, [2296] = 2296, - [2297] = 152, + [2297] = 2297, [2298] = 2298, - [2299] = 142, - [2300] = 2296, + [2299] = 2299, + [2300] = 2300, [2301] = 2301, [2302] = 2302, [2303] = 2303, [2304] = 2304, - [2305] = 968, - [2306] = 971, - [2307] = 986, - [2308] = 988, - [2309] = 150, - [2310] = 151, + [2305] = 2305, + [2306] = 1474, + [2307] = 2307, + [2308] = 2308, + [2309] = 2309, + [2310] = 2310, [2311] = 2311, - [2312] = 2298, + [2312] = 2312, [2313] = 2313, [2314] = 2314, [2315] = 2315, @@ -7515,5746 +7519,5501 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2319] = 2319, [2320] = 2320, [2321] = 2321, - [2322] = 2322, - [2323] = 2323, + [2322] = 1995, + [2323] = 1996, [2324] = 2324, - [2325] = 2325, - [2326] = 2326, - [2327] = 2327, - [2328] = 2328, + [2325] = 2297, + [2326] = 2301, + [2327] = 2161, + [2328] = 2215, [2329] = 2329, - [2330] = 2311, - [2331] = 2322, - [2332] = 2327, - [2333] = 2333, - [2334] = 2334, + [2330] = 2320, + [2331] = 2321, + [2332] = 2277, + [2333] = 2143, + [2334] = 1656, [2335] = 2335, - [2336] = 2336, - [2337] = 429, - [2338] = 427, - [2339] = 2339, - [2340] = 2340, - [2341] = 2341, - [2342] = 2342, - [2343] = 2343, - [2344] = 2344, - [2345] = 2345, - [2346] = 430, - [2347] = 431, - [2348] = 2348, - [2349] = 2349, - [2350] = 2350, - [2351] = 2351, - [2352] = 2352, - [2353] = 2353, - [2354] = 2354, - [2355] = 2355, - [2356] = 2356, - [2357] = 1010, - [2358] = 2358, - [2359] = 2359, - [2360] = 2360, - [2361] = 2361, - [2362] = 2362, - [2363] = 2363, - [2364] = 2364, - [2365] = 2365, - [2366] = 2366, - [2367] = 2367, - [2368] = 2368, - [2369] = 2369, - [2370] = 2370, - [2371] = 2371, - [2372] = 2301, - [2373] = 2373, - [2374] = 2374, - [2375] = 2375, - [2376] = 2376, - [2377] = 147, - [2378] = 149, - [2379] = 2379, - [2380] = 2301, - [2381] = 2302, - [2382] = 2298, - [2383] = 2383, - [2384] = 1154, - [2385] = 2385, - [2386] = 1175, - [2387] = 2387, - [2388] = 2303, - [2389] = 2304, - [2390] = 2390, - [2391] = 2391, - [2392] = 2392, - [2393] = 2393, - [2394] = 2394, - [2395] = 2395, - [2396] = 2396, - [2397] = 2397, - [2398] = 2398, - [2399] = 475, - [2400] = 2400, - [2401] = 2401, - [2402] = 2402, - [2403] = 2403, - [2404] = 2404, - [2405] = 146, - [2406] = 2302, - [2407] = 148, - [2408] = 2408, - [2409] = 145, - [2410] = 2410, - [2411] = 2411, - [2412] = 2412, - [2413] = 2303, - [2414] = 2304, - [2415] = 2415, - [2416] = 2416, - [2417] = 2298, - [2418] = 2418, - [2419] = 2419, - [2420] = 1138, - [2421] = 2421, - [2422] = 2422, - [2423] = 2423, - [2424] = 2424, - [2425] = 2425, - [2426] = 2426, - [2427] = 2427, - [2428] = 2428, - [2429] = 2301, - [2430] = 2302, - [2431] = 517, - [2432] = 2432, - [2433] = 2303, - [2434] = 2304, - [2435] = 476, - [2436] = 523, - [2437] = 525, - [2438] = 2438, - [2439] = 1181, - [2440] = 1182, - [2441] = 1183, - [2442] = 1184, - [2443] = 1185, - [2444] = 1186, - [2445] = 1187, - [2446] = 1190, - [2447] = 1191, - [2448] = 1192, - [2449] = 1193, - [2450] = 1194, - [2451] = 2451, - [2452] = 2452, - [2453] = 486, - [2454] = 2454, - [2455] = 2455, - [2456] = 507, - [2457] = 2457, + [2336] = 2329, + [2337] = 2213, + [2338] = 2335, + [2339] = 2162, + [2340] = 2234, + [2341] = 139, + [2342] = 140, + [2343] = 528, + [2344] = 185, + [2345] = 445, + [2346] = 2197, + [2347] = 1649, + [2348] = 556, + [2349] = 1626, + [2350] = 139, + [2351] = 2194, + [2352] = 518, + [2353] = 1631, + [2354] = 2193, + [2355] = 557, + [2356] = 541, + [2357] = 503, + [2358] = 208, + [2359] = 140, + [2360] = 522, + [2361] = 144, + [2362] = 1627, + [2363] = 142, + [2364] = 1623, + [2365] = 2195, + [2366] = 1630, + [2367] = 561, + [2368] = 523, + [2369] = 1628, + [2370] = 2196, + [2371] = 524, + [2372] = 553, + [2373] = 141, + [2374] = 187, + [2375] = 526, + [2376] = 527, + [2377] = 2198, + [2378] = 516, + [2379] = 184, + [2380] = 564, + [2381] = 1606, + [2382] = 2191, + [2383] = 530, + [2384] = 517, + [2385] = 531, + [2386] = 2386, + [2387] = 2192, + [2388] = 529, + [2389] = 205, + [2390] = 532, + [2391] = 1629, + [2392] = 519, + [2393] = 534, + [2394] = 520, + [2395] = 204, + [2396] = 521, + [2397] = 535, + [2398] = 1644, + [2399] = 525, + [2400] = 183, + [2401] = 542, + [2402] = 1614, + [2403] = 1615, + [2404] = 514, + [2405] = 1616, + [2406] = 2187, + [2407] = 515, + [2408] = 536, + [2409] = 1617, + [2410] = 537, + [2411] = 2188, + [2412] = 188, + [2413] = 1618, + [2414] = 2189, + [2415] = 538, + [2416] = 138, + [2417] = 1619, + [2418] = 137, + [2419] = 539, + [2420] = 1195, + [2421] = 1656, + [2422] = 201, + [2423] = 2190, + [2424] = 1620, + [2425] = 143, + [2426] = 540, + [2427] = 1622, + [2428] = 589, + [2429] = 533, + [2430] = 1493, + [2431] = 2431, + [2432] = 409, + [2433] = 2433, + [2434] = 191, + [2435] = 200, + [2436] = 1514, + [2437] = 520, + [2438] = 521, + [2439] = 2439, + [2440] = 2440, + [2441] = 2431, + [2442] = 2442, + [2443] = 1974, + [2444] = 1962, + [2445] = 1929, + [2446] = 1930, + [2447] = 2447, + [2448] = 189, + [2449] = 518, + [2450] = 2450, + [2451] = 2450, + [2452] = 2440, + [2453] = 199, + [2454] = 144, + [2455] = 143, + [2456] = 2456, + [2457] = 2442, [2458] = 2458, - [2459] = 2459, - [2460] = 2460, - [2461] = 2461, - [2462] = 2462, - [2463] = 2463, - [2464] = 2464, - [2465] = 519, - [2466] = 522, - [2467] = 1010, - [2468] = 496, - [2469] = 477, - [2470] = 2470, - [2471] = 492, - [2472] = 504, + [2459] = 193, + [2460] = 145, + [2461] = 1928, + [2462] = 142, + [2463] = 514, + [2464] = 515, + [2465] = 184, + [2466] = 407, + [2467] = 2447, + [2468] = 2468, + [2469] = 2439, + [2470] = 517, + [2471] = 190, + [2472] = 2472, [2473] = 2473, [2474] = 2474, - [2475] = 2475, + [2475] = 2474, [2476] = 2476, - [2477] = 2477, - [2478] = 2478, - [2479] = 2479, - [2480] = 2480, + [2477] = 514, + [2478] = 515, + [2479] = 2476, + [2480] = 139, [2481] = 2481, [2482] = 2482, - [2483] = 441, - [2484] = 2484, - [2485] = 2485, - [2486] = 2486, - [2487] = 2487, + [2483] = 2483, + [2484] = 517, + [2485] = 518, + [2486] = 201, + [2487] = 208, [2488] = 2488, - [2489] = 2489, - [2490] = 2490, - [2491] = 2491, - [2492] = 2492, - [2493] = 2493, - [2494] = 2494, - [2495] = 2495, - [2496] = 2496, - [2497] = 2463, - [2498] = 2498, + [2489] = 204, + [2490] = 140, + [2491] = 205, + [2492] = 2482, + [2493] = 2483, + [2494] = 206, + [2495] = 2488, + [2496] = 2481, + [2497] = 2497, + [2498] = 407, [2499] = 2499, - [2500] = 2355, - [2501] = 2385, - [2502] = 2427, - [2503] = 2503, - [2504] = 2461, - [2505] = 2464, - [2506] = 2493, - [2507] = 2507, - [2508] = 2508, - [2509] = 190, - [2510] = 2510, - [2511] = 1123, - [2512] = 381, - [2513] = 202, - [2514] = 2514, - [2515] = 2515, - [2516] = 2516, - [2517] = 2517, - [2518] = 2518, - [2519] = 2519, - [2520] = 2520, - [2521] = 1062, - [2522] = 2522, - [2523] = 143, - [2524] = 2524, - [2525] = 191, - [2526] = 2526, - [2527] = 2527, - [2528] = 203, - [2529] = 2529, - [2530] = 2452, - [2531] = 2390, - [2532] = 2387, - [2533] = 2424, - [2534] = 144, - [2535] = 2535, - [2536] = 2536, - [2537] = 2498, - [2538] = 488, - [2539] = 535, - [2540] = 1133, - [2541] = 559, - [2542] = 1192, - [2543] = 148, - [2544] = 523, - [2545] = 1171, - [2546] = 145, - [2547] = 517, - [2548] = 1166, - [2549] = 537, - [2550] = 1142, - [2551] = 536, - [2552] = 1193, - [2553] = 191, - [2554] = 1143, - [2555] = 441, - [2556] = 544, - [2557] = 545, - [2558] = 1194, - [2559] = 2559, - [2560] = 546, - [2561] = 547, - [2562] = 1182, - [2563] = 548, - [2564] = 1163, - [2565] = 1144, - [2566] = 525, - [2567] = 549, - [2568] = 152, - [2569] = 533, - [2570] = 2570, - [2571] = 504, - [2572] = 541, - [2573] = 1187, - [2574] = 1165, - [2575] = 150, - [2576] = 151, - [2577] = 550, - [2578] = 556, - [2579] = 1167, - [2580] = 557, - [2581] = 558, - [2582] = 194, - [2583] = 1183, - [2584] = 196, - [2585] = 1138, - [2586] = 1168, - [2587] = 1175, - [2588] = 529, - [2589] = 1184, - [2590] = 476, - [2591] = 543, - [2592] = 208, - [2593] = 1181, - [2594] = 538, - [2595] = 192, - [2596] = 1172, - [2597] = 211, - [2598] = 1407, - [2599] = 486, - [2600] = 1207, - [2601] = 195, - [2602] = 507, - [2603] = 561, - [2604] = 1159, - [2605] = 2605, - [2606] = 1185, - [2607] = 519, - [2608] = 1164, - [2609] = 214, - [2610] = 1154, - [2611] = 1190, - [2612] = 1170, - [2613] = 496, - [2614] = 477, - [2615] = 206, - [2616] = 1186, - [2617] = 488, - [2618] = 217, - [2619] = 539, - [2620] = 534, - [2621] = 1130, - [2622] = 146, - [2623] = 147, - [2624] = 149, - [2625] = 198, - [2626] = 522, - [2627] = 540, - [2628] = 492, - [2629] = 1191, - [2630] = 218, - [2631] = 207, - [2632] = 2632, - [2633] = 2633, - [2634] = 2634, - [2635] = 2635, + [2500] = 520, + [2501] = 521, + [2502] = 134, + [2503] = 145, + [2504] = 2481, + [2505] = 2505, + [2506] = 2506, + [2507] = 134, + [2508] = 342, + [2509] = 141, + [2510] = 343, + [2511] = 299, + [2512] = 2512, + [2513] = 2505, + [2514] = 190, + [2515] = 301, + [2516] = 302, + [2517] = 303, + [2518] = 304, + [2519] = 305, + [2520] = 307, + [2521] = 309, + [2522] = 310, + [2523] = 311, + [2524] = 313, + [2525] = 345, + [2526] = 318, + [2527] = 323, + [2528] = 333, + [2529] = 335, + [2530] = 337, + [2531] = 344, + [2532] = 183, + [2533] = 314, + [2534] = 2534, + [2535] = 2473, + [2536] = 185, + [2537] = 2537, + [2538] = 2538, + [2539] = 216, + [2540] = 202, + [2541] = 409, + [2542] = 2537, + [2543] = 2534, + [2544] = 2538, + [2545] = 2472, + [2546] = 2497, + [2547] = 2499, + [2548] = 189, + [2549] = 203, + [2550] = 199, + [2551] = 200, + [2552] = 300, + [2553] = 137, + [2554] = 232, + [2555] = 136, + [2556] = 136, + [2557] = 193, + [2558] = 504, + [2559] = 222, + [2560] = 216, + [2561] = 135, + [2562] = 134, + [2563] = 202, + [2564] = 135, + [2565] = 138, + [2566] = 191, + [2567] = 251, + [2568] = 2568, + [2569] = 2569, + [2570] = 139, + [2571] = 135, + [2572] = 2572, + [2573] = 140, + [2574] = 2574, + [2575] = 141, + [2576] = 206, + [2577] = 2577, + [2578] = 2578, + [2579] = 2579, + [2580] = 139, + [2581] = 2577, + [2582] = 140, + [2583] = 1379, + [2584] = 286, + [2585] = 141, + [2586] = 324, + [2587] = 2574, + [2588] = 203, + [2589] = 585, + [2590] = 143, + [2591] = 203, + [2592] = 2592, + [2593] = 2578, + [2594] = 2579, + [2595] = 2595, + [2596] = 138, + [2597] = 137, + [2598] = 252, + [2599] = 253, + [2600] = 136, + [2601] = 138, + [2602] = 201, + [2603] = 504, + [2604] = 137, + [2605] = 136, + [2606] = 2606, + [2607] = 208, + [2608] = 2608, + [2609] = 144, + [2610] = 142, + [2611] = 204, + [2612] = 285, + [2613] = 205, + [2614] = 206, + [2615] = 250, + [2616] = 135, + [2617] = 335, + [2618] = 445, + [2619] = 203, + [2620] = 1728, + [2621] = 1729, + [2622] = 206, + [2623] = 2595, + [2624] = 222, + [2625] = 2625, + [2626] = 232, + [2627] = 140, + [2628] = 464, + [2629] = 436, + [2630] = 585, + [2631] = 206, + [2632] = 438, + [2633] = 439, + [2634] = 134, + [2635] = 139, [2636] = 2636, - [2637] = 2637, - [2638] = 2638, - [2639] = 207, - [2640] = 2132, - [2641] = 208, - [2642] = 198, - [2643] = 477, - [2644] = 492, - [2645] = 152, - [2646] = 2646, - [2647] = 2632, - [2648] = 2634, - [2649] = 405, - [2650] = 151, - [2651] = 2155, - [2652] = 1062, - [2653] = 154, - [2654] = 2142, - [2655] = 2646, - [2656] = 2656, - [2657] = 522, - [2658] = 150, - [2659] = 2636, - [2660] = 2637, - [2661] = 2656, - [2662] = 1123, - [2663] = 2125, - [2664] = 2664, - [2665] = 191, - [2666] = 2134, - [2667] = 202, - [2668] = 206, - [2669] = 142, - [2670] = 496, - [2671] = 203, - [2672] = 519, - [2673] = 504, - [2674] = 344, - [2675] = 492, - [2676] = 504, - [2677] = 2677, - [2678] = 221, - [2679] = 2679, - [2680] = 2680, - [2681] = 2681, - [2682] = 331, - [2683] = 2683, - [2684] = 142, - [2685] = 194, - [2686] = 2686, - [2687] = 196, - [2688] = 345, - [2689] = 2689, - [2690] = 210, - [2691] = 405, - [2692] = 346, - [2693] = 347, - [2694] = 349, - [2695] = 350, - [2696] = 211, - [2697] = 214, - [2698] = 217, - [2699] = 218, - [2700] = 2700, - [2701] = 219, - [2702] = 143, - [2703] = 144, + [2637] = 140, + [2638] = 466, + [2639] = 143, + [2640] = 203, + [2641] = 141, + [2642] = 138, + [2643] = 139, + [2644] = 2644, + [2645] = 299, + [2646] = 141, + [2647] = 144, + [2648] = 142, + [2649] = 143, + [2650] = 300, + [2651] = 301, + [2652] = 137, + [2653] = 333, + [2654] = 589, + [2655] = 303, + [2656] = 1509, + [2657] = 304, + [2658] = 1474, + [2659] = 2659, + [2660] = 553, + [2661] = 144, + [2662] = 372, + [2663] = 2663, + [2664] = 2644, + [2665] = 305, + [2666] = 142, + [2667] = 2659, + [2668] = 307, + [2669] = 2669, + [2670] = 2670, + [2671] = 309, + [2672] = 337, + [2673] = 2669, + [2674] = 310, + [2675] = 1727, + [2676] = 311, + [2677] = 313, + [2678] = 345, + [2679] = 318, + [2680] = 324, + [2681] = 1726, + [2682] = 222, + [2683] = 232, + [2684] = 323, + [2685] = 302, + [2686] = 542, + [2687] = 515, + [2688] = 556, + [2689] = 516, + [2690] = 557, + [2691] = 503, + [2692] = 519, + [2693] = 333, + [2694] = 2694, + [2695] = 2695, + [2696] = 143, + [2697] = 564, + [2698] = 251, + [2699] = 522, + [2700] = 523, + [2701] = 335, + [2702] = 520, + [2703] = 524, [2704] = 2704, [2705] = 2705, - [2706] = 2689, - [2707] = 2707, - [2708] = 322, - [2709] = 146, - [2710] = 336, - [2711] = 2711, - [2712] = 148, - [2713] = 312, - [2714] = 2707, - [2715] = 2715, - [2716] = 154, - [2717] = 145, - [2718] = 2700, - [2719] = 317, - [2720] = 321, - [2721] = 147, - [2722] = 2722, - [2723] = 149, - [2724] = 295, - [2725] = 351, - [2726] = 2722, - [2727] = 325, - [2728] = 326, - [2729] = 328, - [2730] = 2722, - [2731] = 302, - [2732] = 305, - [2733] = 2733, - [2734] = 306, - [2735] = 2704, - [2736] = 2677, - [2737] = 2737, - [2738] = 2686, - [2739] = 2733, - [2740] = 2715, - [2741] = 519, - [2742] = 522, - [2743] = 2679, - [2744] = 206, - [2745] = 2681, - [2746] = 2683, - [2747] = 496, - [2748] = 477, - [2749] = 207, - [2750] = 142, - [2751] = 208, - [2752] = 198, - [2753] = 2737, - [2754] = 304, - [2755] = 2705, - [2756] = 296, - [2757] = 203, - [2758] = 143, - [2759] = 231, - [2760] = 152, - [2761] = 143, - [2762] = 241, - [2763] = 148, - [2764] = 143, - [2765] = 144, - [2766] = 144, - [2767] = 150, - [2768] = 151, - [2769] = 210, - [2770] = 145, - [2771] = 142, - [2772] = 202, - [2773] = 144, - [2774] = 147, - [2775] = 149, - [2776] = 146, - [2777] = 301, - [2778] = 219, - [2779] = 221, - [2780] = 210, - [2781] = 143, - [2782] = 527, - [2783] = 2783, - [2784] = 2784, - [2785] = 2785, - [2786] = 147, - [2787] = 144, - [2788] = 149, - [2789] = 219, - [2790] = 231, - [2791] = 145, - [2792] = 264, - [2793] = 2793, - [2794] = 241, - [2795] = 2795, - [2796] = 2785, - [2797] = 211, - [2798] = 2783, - [2799] = 2799, - [2800] = 2800, - [2801] = 146, - [2802] = 146, - [2803] = 265, - [2804] = 262, - [2805] = 210, - [2806] = 214, - [2807] = 148, - [2808] = 148, - [2809] = 145, - [2810] = 142, - [2811] = 2811, - [2812] = 152, - [2813] = 148, - [2814] = 266, - [2815] = 263, - [2816] = 145, - [2817] = 218, - [2818] = 150, - [2819] = 1616, - [2820] = 527, - [2821] = 2821, - [2822] = 2822, - [2823] = 147, - [2824] = 151, - [2825] = 149, - [2826] = 217, - [2827] = 2793, - [2828] = 2784, - [2829] = 251, - [2830] = 219, - [2831] = 2831, - [2832] = 381, - [2833] = 146, - [2834] = 593, - [2835] = 147, - [2836] = 149, - [2837] = 210, - [2838] = 2838, - [2839] = 2839, - [2840] = 152, - [2841] = 152, - [2842] = 210, - [2843] = 475, - [2844] = 593, - [2845] = 150, - [2846] = 151, - [2847] = 2847, - [2848] = 430, - [2849] = 142, - [2850] = 263, - [2851] = 373, - [2852] = 264, - [2853] = 431, - [2854] = 265, - [2855] = 266, - [2856] = 1899, - [2857] = 1904, - [2858] = 429, - [2859] = 1698, - [2860] = 2860, + [2706] = 525, + [2707] = 526, + [2708] = 527, + [2709] = 232, + [2710] = 2710, + [2711] = 528, + [2712] = 529, + [2713] = 405, + [2714] = 530, + [2715] = 531, + [2716] = 364, + [2717] = 532, + [2718] = 533, + [2719] = 534, + [2720] = 535, + [2721] = 536, + [2722] = 537, + [2723] = 538, + [2724] = 539, + [2725] = 540, + [2726] = 541, + [2727] = 409, + [2728] = 2728, + [2729] = 2704, + [2730] = 383, + [2731] = 252, + [2732] = 300, + [2733] = 301, + [2734] = 324, + [2735] = 521, + [2736] = 517, + [2737] = 324, + [2738] = 134, + [2739] = 385, + [2740] = 253, + [2741] = 561, + [2742] = 2742, + [2743] = 2743, + [2744] = 232, + [2745] = 2745, + [2746] = 323, + [2747] = 145, + [2748] = 302, + [2749] = 518, + [2750] = 303, + [2751] = 384, + [2752] = 2695, + [2753] = 2753, + [2754] = 144, + [2755] = 304, + [2756] = 391, + [2757] = 142, + [2758] = 305, + [2759] = 222, + [2760] = 307, + [2761] = 309, + [2762] = 136, + [2763] = 139, + [2764] = 140, + [2765] = 145, + [2766] = 141, + [2767] = 183, + [2768] = 1493, + [2769] = 372, + [2770] = 310, + [2771] = 337, + [2772] = 311, + [2773] = 313, + [2774] = 250, + [2775] = 407, + [2776] = 250, + [2777] = 1514, + [2778] = 222, + [2779] = 185, + [2780] = 345, + [2781] = 251, + [2782] = 252, + [2783] = 253, + [2784] = 299, + [2785] = 318, + [2786] = 2705, + [2787] = 514, + [2788] = 135, + [2789] = 253, + [2790] = 421, + [2791] = 138, + [2792] = 409, + [2793] = 250, + [2794] = 364, + [2795] = 185, + [2796] = 2796, + [2797] = 2797, + [2798] = 2798, + [2799] = 2796, + [2800] = 135, + [2801] = 2801, + [2802] = 203, + [2803] = 251, + [2804] = 372, + [2805] = 136, + [2806] = 137, + [2807] = 139, + [2808] = 206, + [2809] = 253, + [2810] = 419, + [2811] = 405, + [2812] = 183, + [2813] = 372, + [2814] = 2814, + [2815] = 203, + [2816] = 2816, + [2817] = 2817, + [2818] = 2818, + [2819] = 251, + [2820] = 140, + [2821] = 466, + [2822] = 383, + [2823] = 384, + [2824] = 445, + [2825] = 2818, + [2826] = 464, + [2827] = 385, + [2828] = 2797, + [2829] = 391, + [2830] = 422, + [2831] = 145, + [2832] = 423, + [2833] = 141, + [2834] = 185, + [2835] = 1270, + [2836] = 2836, + [2837] = 2837, + [2838] = 250, + [2839] = 206, + [2840] = 2836, + [2841] = 252, + [2842] = 439, + [2843] = 185, + [2844] = 191, + [2845] = 438, + [2846] = 2801, + [2847] = 252, + [2848] = 183, + [2849] = 183, + [2850] = 418, + [2851] = 2814, + [2852] = 2852, + [2853] = 407, + [2854] = 193, + [2855] = 204, + [2856] = 191, + [2857] = 203, + [2858] = 569, + [2859] = 549, + [2860] = 324, [2861] = 2861, - [2862] = 2862, - [2863] = 427, - [2864] = 476, - [2865] = 151, - [2866] = 488, - [2867] = 441, - [2868] = 331, - [2869] = 344, - [2870] = 345, - [2871] = 346, - [2872] = 347, - [2873] = 231, - [2874] = 2831, - [2875] = 350, - [2876] = 296, - [2877] = 219, - [2878] = 219, - [2879] = 322, - [2880] = 336, - [2881] = 312, - [2882] = 317, - [2883] = 2861, - [2884] = 321, - [2885] = 154, - [2886] = 295, - [2887] = 2887, - [2888] = 351, - [2889] = 325, - [2890] = 326, - [2891] = 328, - [2892] = 1880, - [2893] = 150, - [2894] = 1883, - [2895] = 1010, - [2896] = 241, - [2897] = 384, - [2898] = 378, - [2899] = 301, - [2900] = 2887, - [2901] = 417, - [2902] = 400, - [2903] = 231, - [2904] = 143, - [2905] = 388, - [2906] = 146, - [2907] = 148, - [2908] = 144, - [2909] = 145, - [2910] = 241, - [2911] = 349, - [2912] = 2912, - [2913] = 492, - [2914] = 331, - [2915] = 231, - [2916] = 550, - [2917] = 504, - [2918] = 556, - [2919] = 557, - [2920] = 2920, - [2921] = 558, - [2922] = 529, - [2923] = 534, - [2924] = 541, - [2925] = 2925, - [2926] = 210, + [2862] = 570, + [2863] = 572, + [2864] = 232, + [2865] = 504, + [2866] = 526, + [2867] = 530, + [2868] = 555, + [2869] = 527, + [2870] = 222, + [2871] = 193, + [2872] = 2872, + [2873] = 516, + [2874] = 528, + [2875] = 558, + [2876] = 573, + [2877] = 522, + [2878] = 536, + [2879] = 183, + [2880] = 2880, + [2881] = 531, + [2882] = 539, + [2883] = 185, + [2884] = 574, + [2885] = 191, + [2886] = 532, + [2887] = 575, + [2888] = 1270, + [2889] = 232, + [2890] = 576, + [2891] = 540, + [2892] = 183, + [2893] = 139, + [2894] = 193, + [2895] = 185, + [2896] = 193, + [2897] = 534, + [2898] = 578, + [2899] = 201, + [2900] = 563, + [2901] = 567, + [2902] = 140, + [2903] = 222, + [2904] = 144, + [2905] = 142, + [2906] = 529, + [2907] = 542, + [2908] = 541, + [2909] = 206, + [2910] = 138, + [2911] = 191, + [2912] = 208, + [2913] = 519, + [2914] = 141, + [2915] = 524, + [2916] = 535, + [2917] = 1270, + [2918] = 571, + [2919] = 537, + [2920] = 205, + [2921] = 538, + [2922] = 137, + [2923] = 525, + [2924] = 143, + [2925] = 523, + [2926] = 568, [2927] = 533, - [2928] = 559, - [2929] = 561, - [2930] = 2930, - [2931] = 2930, - [2932] = 417, - [2933] = 194, - [2934] = 2925, - [2935] = 2912, - [2936] = 539, + [2928] = 439, + [2929] = 1442, + [2930] = 201, + [2931] = 139, + [2932] = 464, + [2933] = 232, + [2934] = 205, + [2935] = 143, + [2936] = 144, [2937] = 2937, - [2938] = 241, - [2939] = 536, - [2940] = 219, - [2941] = 762, - [2942] = 142, - [2943] = 263, - [2944] = 486, - [2945] = 405, + [2938] = 208, + [2939] = 204, + [2940] = 205, + [2941] = 251, + [2942] = 193, + [2943] = 140, + [2944] = 364, + [2945] = 252, [2946] = 2946, - [2947] = 373, - [2948] = 384, - [2949] = 344, - [2950] = 378, - [2951] = 345, - [2952] = 346, - [2953] = 347, - [2954] = 241, - [2955] = 349, - [2956] = 196, - [2957] = 350, - [2958] = 151, - [2959] = 296, - [2960] = 322, - [2961] = 336, - [2962] = 312, - [2963] = 317, - [2964] = 321, - [2965] = 295, - [2966] = 351, - [2967] = 325, - [2968] = 145, - [2969] = 328, - [2970] = 154, - [2971] = 231, - [2972] = 2972, - [2973] = 543, - [2974] = 143, - [2975] = 301, - [2976] = 400, - [2977] = 154, - [2978] = 144, - [2979] = 540, - [2980] = 264, - [2981] = 1123, - [2982] = 517, - [2983] = 146, - [2984] = 381, - [2985] = 523, - [2986] = 544, - [2987] = 145, - [2988] = 545, - [2989] = 265, - [2990] = 266, - [2991] = 2991, - [2992] = 522, - [2993] = 146, - [2994] = 2994, - [2995] = 519, - [2996] = 263, - [2997] = 2997, - [2998] = 1062, - [2999] = 301, - [3000] = 507, - [3001] = 150, - [3002] = 525, - [3003] = 546, - [3004] = 547, - [3005] = 148, - [3006] = 538, - [3007] = 264, - [3008] = 388, - [3009] = 548, - [3010] = 147, - [3011] = 149, - [3012] = 537, - [3013] = 496, - [3014] = 477, - [3015] = 535, - [3016] = 265, - [3017] = 266, - [3018] = 152, - [3019] = 148, - [3020] = 549, - [3021] = 326, - [3022] = 384, - [3023] = 699, - [3024] = 266, - [3025] = 437, - [3026] = 203, - [3027] = 150, - [3028] = 151, - [3029] = 147, - [3030] = 149, - [3031] = 143, - [3032] = 210, - [3033] = 3033, - [3034] = 3034, - [3035] = 194, - [3036] = 428, - [3037] = 417, - [3038] = 400, - [3039] = 388, - [3040] = 154, - [3041] = 194, - [3042] = 196, - [3043] = 434, - [3044] = 144, - [3045] = 381, - [3046] = 421, - [3047] = 429, - [3048] = 381, - [3049] = 436, - [3050] = 152, - [3051] = 431, - [3052] = 219, - [3053] = 231, - [3054] = 475, - [3055] = 202, - [3056] = 441, - [3057] = 405, - [3058] = 241, - [3059] = 219, - [3060] = 373, - [3061] = 378, - [3062] = 263, - [3063] = 264, - [3064] = 3064, - [3065] = 265, - [3066] = 266, - [3067] = 146, - [3068] = 148, - [3069] = 145, - [3070] = 263, - [3071] = 196, - [3072] = 196, - [3073] = 264, - [3074] = 210, - [3075] = 194, - [3076] = 3076, - [3077] = 265, - [3078] = 430, - [3079] = 3079, - [3080] = 545, - [3081] = 154, - [3082] = 546, - [3083] = 547, - [3084] = 548, - [3085] = 549, - [3086] = 550, - [3087] = 576, - [3088] = 577, - [3089] = 578, - [3090] = 556, - [3091] = 579, - [3092] = 580, - [3093] = 557, - [3094] = 581, - [3095] = 3095, - [3096] = 202, - [3097] = 558, - [3098] = 529, - [3099] = 147, - [3100] = 231, - [3101] = 301, - [3102] = 149, - [3103] = 241, - [3104] = 203, - [3105] = 202, - [3106] = 579, - [3107] = 3107, - [3108] = 301, - [3109] = 580, - [3110] = 3110, - [3111] = 581, - [3112] = 3112, - [3113] = 582, - [3114] = 583, - [3115] = 582, - [3116] = 241, - [3117] = 3117, - [3118] = 583, - [3119] = 263, - [3120] = 584, - [3121] = 585, - [3122] = 559, - [3123] = 211, - [3124] = 537, - [3125] = 218, - [3126] = 584, - [3127] = 538, - [3128] = 585, - [3129] = 145, - [3130] = 264, - [3131] = 561, - [3132] = 203, - [3133] = 150, - [3134] = 151, - [3135] = 575, - [3136] = 265, + [2947] = 438, + [2948] = 372, + [2949] = 201, + [2950] = 324, + [2951] = 2951, + [2952] = 253, + [2953] = 2953, + [2954] = 208, + [2955] = 145, + [2956] = 2956, + [2957] = 2957, + [2958] = 2958, + [2959] = 251, + [2960] = 204, + [2961] = 142, + [2962] = 205, + [2963] = 208, + [2964] = 2964, + [2965] = 2965, + [2966] = 193, + [2967] = 252, + [2968] = 222, + [2969] = 585, + [2970] = 253, + [2971] = 250, + [2972] = 405, + [2973] = 141, + [2974] = 2974, + [2975] = 204, + [2976] = 445, + [2977] = 466, + [2978] = 201, + [2979] = 250, + [2980] = 191, + [2981] = 2861, + [2982] = 191, + [2983] = 540, + [2984] = 519, + [2985] = 522, + [2986] = 523, + [2987] = 524, + [2988] = 525, + [2989] = 526, + [2990] = 527, + [2991] = 528, + [2992] = 529, + [2993] = 530, + [2994] = 531, + [2995] = 532, + [2996] = 533, + [2997] = 534, + [2998] = 535, + [2999] = 536, + [3000] = 537, + [3001] = 538, + [3002] = 539, + [3003] = 364, + [3004] = 405, + [3005] = 2880, + [3006] = 1442, + [3007] = 139, + [3008] = 140, + [3009] = 2872, + [3010] = 141, + [3011] = 145, + [3012] = 1442, + [3013] = 549, + [3014] = 555, + [3015] = 558, + [3016] = 563, + [3017] = 567, + [3018] = 568, + [3019] = 569, + [3020] = 570, + [3021] = 571, + [3022] = 572, + [3023] = 542, + [3024] = 574, + [3025] = 575, + [3026] = 576, + [3027] = 578, + [3028] = 3028, + [3029] = 3029, + [3030] = 3030, + [3031] = 3031, + [3032] = 201, + [3033] = 208, + [3034] = 204, + [3035] = 205, + [3036] = 201, + [3037] = 250, + [3038] = 3038, + [3039] = 208, + [3040] = 251, + [3041] = 204, + [3042] = 252, + [3043] = 205, + [3044] = 253, + [3045] = 3045, + [3046] = 3046, + [3047] = 3047, + [3048] = 3048, + [3049] = 3049, + [3050] = 3050, + [3051] = 372, + [3052] = 3052, + [3053] = 516, + [3054] = 541, + [3055] = 573, + [3056] = 3056, + [3057] = 3057, + [3058] = 3058, + [3059] = 3059, + [3060] = 3060, + [3061] = 3061, + [3062] = 3062, + [3063] = 3063, + [3064] = 2837, + [3065] = 3065, + [3066] = 3066, + [3067] = 3062, + [3068] = 3063, + [3069] = 3065, + [3070] = 3066, + [3071] = 184, + [3072] = 3072, + [3073] = 3073, + [3074] = 3057, + [3075] = 3056, + [3076] = 3072, + [3077] = 3073, + [3078] = 3078, + [3079] = 200, + [3080] = 3058, + [3081] = 3058, + [3082] = 189, + [3083] = 199, + [3084] = 190, + [3085] = 445, + [3086] = 135, + [3087] = 3087, + [3088] = 464, + [3089] = 438, + [3090] = 136, + [3091] = 145, + [3092] = 436, + [3093] = 439, + [3094] = 3094, + [3095] = 203, + [3096] = 140, + [3097] = 141, + [3098] = 439, + [3099] = 2142, + [3100] = 2143, + [3101] = 464, + [3102] = 438, + [3103] = 439, + [3104] = 1474, + [3105] = 3105, + [3106] = 436, + [3107] = 134, + [3108] = 134, + [3109] = 438, + [3110] = 436, + [3111] = 464, + [3112] = 206, + [3113] = 138, + [3114] = 137, + [3115] = 445, + [3116] = 2070, + [3117] = 1995, + [3118] = 1996, + [3119] = 445, + [3120] = 139, + [3121] = 2142, + [3122] = 143, + [3123] = 144, + [3124] = 142, + [3125] = 1474, + [3126] = 2070, + [3127] = 3127, + [3128] = 1995, + [3129] = 1996, + [3130] = 2070, + [3131] = 222, + [3132] = 2143, + [3133] = 3133, + [3134] = 3134, + [3135] = 1632, + [3136] = 3136, [3137] = 3137, - [3138] = 152, - [3139] = 576, - [3140] = 266, - [3141] = 533, - [3142] = 539, - [3143] = 577, - [3144] = 578, - [3145] = 540, - [3146] = 194, - [3147] = 231, - [3148] = 571, - [3149] = 3149, - [3150] = 571, - [3151] = 3151, - [3152] = 3152, - [3153] = 535, - [3154] = 541, - [3155] = 196, - [3156] = 543, - [3157] = 203, - [3158] = 194, - [3159] = 544, - [3160] = 219, - [3161] = 536, - [3162] = 384, - [3163] = 378, - [3164] = 699, - [3165] = 572, - [3166] = 573, - [3167] = 574, - [3168] = 699, - [3169] = 575, - [3170] = 572, - [3171] = 534, - [3172] = 3172, - [3173] = 217, - [3174] = 210, - [3175] = 573, - [3176] = 202, - [3177] = 214, - [3178] = 146, - [3179] = 574, - [3180] = 3180, - [3181] = 3181, - [3182] = 148, - [3183] = 196, - [3184] = 431, - [3185] = 381, - [3186] = 3186, - [3187] = 3187, - [3188] = 3188, - [3189] = 3189, - [3190] = 3190, - [3191] = 384, - [3192] = 378, - [3193] = 3149, - [3194] = 154, - [3195] = 211, - [3196] = 429, - [3197] = 214, - [3198] = 430, - [3199] = 217, - [3200] = 218, - [3201] = 441, - [3202] = 263, - [3203] = 264, - [3204] = 265, - [3205] = 266, - [3206] = 152, - [3207] = 150, - [3208] = 151, - [3209] = 202, - [3210] = 203, - [3211] = 202, - [3212] = 475, - [3213] = 3213, - [3214] = 203, - [3215] = 241, - [3216] = 146, - [3217] = 148, - [3218] = 145, - [3219] = 211, - [3220] = 214, - [3221] = 217, - [3222] = 218, - [3223] = 263, - [3224] = 1606, - [3225] = 264, - [3226] = 265, - [3227] = 266, - [3228] = 381, - [3229] = 211, - [3230] = 214, - [3231] = 217, - [3232] = 218, - [3233] = 3233, - [3234] = 3234, - [3235] = 3235, - [3236] = 3236, - [3237] = 3237, - [3238] = 3238, - [3239] = 3239, - [3240] = 3240, - [3241] = 231, - [3242] = 540, - [3243] = 154, - [3244] = 574, - [3245] = 575, - [3246] = 1179, - [3247] = 539, - [3248] = 559, - [3249] = 571, - [3250] = 541, - [3251] = 543, - [3252] = 544, - [3253] = 545, - [3254] = 546, - [3255] = 547, - [3256] = 548, - [3257] = 549, - [3258] = 550, - [3259] = 556, - [3260] = 557, - [3261] = 211, - [3262] = 214, - [3263] = 576, - [3264] = 558, - [3265] = 217, - [3266] = 218, - [3267] = 577, - [3268] = 578, - [3269] = 211, - [3270] = 529, - [3271] = 263, - [3272] = 214, - [3273] = 3273, - [3274] = 264, - [3275] = 384, - [3276] = 217, - [3277] = 3277, - [3278] = 579, - [3279] = 580, - [3280] = 581, - [3281] = 378, - [3282] = 265, - [3283] = 218, - [3284] = 582, - [3285] = 583, - [3286] = 266, - [3287] = 3287, - [3288] = 3288, - [3289] = 584, - [3290] = 585, - [3291] = 561, - [3292] = 533, - [3293] = 3293, - [3294] = 534, - [3295] = 535, - [3296] = 536, - [3297] = 146, - [3298] = 148, - [3299] = 145, - [3300] = 3300, - [3301] = 3301, - [3302] = 3302, - [3303] = 3303, - [3304] = 3304, - [3305] = 3305, - [3306] = 572, - [3307] = 537, - [3308] = 191, - [3309] = 573, - [3310] = 1174, - [3311] = 538, - [3312] = 3180, - [3313] = 785, - [3314] = 1180, - [3315] = 3315, - [3316] = 1606, - [3317] = 1606, - [3318] = 3137, - [3319] = 206, - [3320] = 3320, - [3321] = 3321, - [3322] = 3322, - [3323] = 3321, - [3324] = 3324, - [3325] = 3325, - [3326] = 3326, - [3327] = 3327, - [3328] = 3322, - [3329] = 3329, - [3330] = 3327, - [3331] = 762, - [3332] = 3332, - [3333] = 207, - [3334] = 208, - [3335] = 198, - [3336] = 3320, - [3337] = 3329, - [3338] = 3324, - [3339] = 3326, - [3340] = 3325, - [3341] = 785, - [3342] = 143, - [3343] = 785, - [3344] = 144, - [3345] = 154, - [3346] = 441, - [3347] = 427, - [3348] = 147, - [3349] = 149, - [3350] = 430, - [3351] = 2470, - [3352] = 142, - [3353] = 431, - [3354] = 210, - [3355] = 142, - [3356] = 146, - [3357] = 148, - [3358] = 219, - [3359] = 145, - [3360] = 429, - [3361] = 431, - [3362] = 2301, - [3363] = 2302, - [3364] = 431, - [3365] = 150, - [3366] = 231, - [3367] = 151, - [3368] = 1010, - [3369] = 2559, - [3370] = 2298, - [3371] = 429, - [3372] = 430, - [3373] = 2304, - [3374] = 427, - [3375] = 441, - [3376] = 2570, - [3377] = 3377, - [3378] = 241, - [3379] = 430, - [3380] = 3380, - [3381] = 2303, - [3382] = 429, - [3383] = 152, - [3384] = 441, - [3385] = 427, - [3386] = 2370, - [3387] = 3387, - [3388] = 3388, - [3389] = 265, - [3390] = 1010, - [3391] = 264, - [3392] = 1132, - [3393] = 2298, - [3394] = 3394, - [3395] = 3395, - [3396] = 1181, - [3397] = 1182, - [3398] = 1183, - [3399] = 1184, - [3400] = 1185, - [3401] = 1186, - [3402] = 1187, - [3403] = 1190, - [3404] = 1191, - [3405] = 1192, - [3406] = 1193, - [3407] = 1194, - [3408] = 3394, - [3409] = 1010, - [3410] = 3410, - [3411] = 2395, - [3412] = 263, - [3413] = 2397, - [3414] = 2400, - [3415] = 2402, - [3416] = 266, - [3417] = 2404, - [3418] = 2408, - [3419] = 2410, - [3420] = 2412, - [3421] = 2415, - [3422] = 2418, - [3423] = 2298, - [3424] = 2419, - [3425] = 2422, - [3426] = 3394, - [3427] = 2475, - [3428] = 2477, - [3429] = 2478, - [3430] = 2480, - [3431] = 2482, - [3432] = 2484, - [3433] = 2487, - [3434] = 2489, - [3435] = 2490, - [3436] = 2492, - [3437] = 2494, - [3438] = 2496, - [3439] = 2499, - [3440] = 2503, - [3441] = 2508, - [3442] = 2510, - [3443] = 2514, - [3444] = 2515, - [3445] = 2517, - [3446] = 2518, - [3447] = 2520, - [3448] = 2522, - [3449] = 2526, - [3450] = 2527, - [3451] = 2529, - [3452] = 2535, - [3453] = 2536, - [3454] = 2454, - [3455] = 2507, - [3456] = 2396, - [3457] = 2426, - [3458] = 2519, - [3459] = 2393, - [3460] = 2401, - [3461] = 2301, - [3462] = 2421, - [3463] = 2302, - [3464] = 2432, - [3465] = 2457, - [3466] = 2459, - [3467] = 2474, - [3468] = 2481, - [3469] = 2486, - [3470] = 2495, - [3471] = 2516, - [3472] = 2524, - [3473] = 2451, - [3474] = 2356, - [3475] = 2358, - [3476] = 2359, - [3477] = 2367, - [3478] = 3478, - [3479] = 2374, - [3480] = 2376, - [3481] = 2379, - [3482] = 2383, - [3483] = 2391, - [3484] = 2394, - [3485] = 2398, - [3486] = 2403, - [3487] = 2411, - [3488] = 2416, - [3489] = 2423, - [3490] = 2428, - [3491] = 2438, - [3492] = 2455, - [3493] = 2458, - [3494] = 2460, - [3495] = 2462, - [3496] = 2473, - [3497] = 2476, - [3498] = 2479, - [3499] = 2485, - [3500] = 2488, - [3501] = 2360, - [3502] = 2361, - [3503] = 2362, - [3504] = 2363, - [3505] = 2364, - [3506] = 2365, - [3507] = 2366, - [3508] = 2368, - [3509] = 2369, - [3510] = 2371, - [3511] = 2373, - [3512] = 2375, - [3513] = 2303, - [3514] = 2304, - [3515] = 384, - [3516] = 378, - [3517] = 2301, - [3518] = 2302, - [3519] = 3519, - [3520] = 2303, - [3521] = 2304, - [3522] = 3522, - [3523] = 3523, - [3524] = 3524, - [3525] = 1181, - [3526] = 1182, - [3527] = 1183, - [3528] = 1184, - [3529] = 1185, - [3530] = 1186, - [3531] = 1187, - [3532] = 1190, - [3533] = 1191, - [3534] = 1192, - [3535] = 1193, - [3536] = 1194, - [3537] = 219, - [3538] = 196, - [3539] = 1132, - [3540] = 1174, - [3541] = 194, - [3542] = 1179, - [3543] = 196, - [3544] = 1132, - [3545] = 194, - [3546] = 1180, - [3547] = 3547, - [3548] = 417, - [3549] = 196, - [3550] = 196, - [3551] = 196, - [3552] = 203, - [3553] = 142, - [3554] = 699, - [3555] = 221, - [3556] = 3556, - [3557] = 202, - [3558] = 400, - [3559] = 203, - [3560] = 388, - [3561] = 699, - [3562] = 3556, - [3563] = 373, - [3564] = 194, - [3565] = 194, - [3566] = 194, - [3567] = 202, - [3568] = 3568, - [3569] = 578, - [3570] = 572, - [3571] = 202, - [3572] = 3572, - [3573] = 143, - [3574] = 218, - [3575] = 144, - [3576] = 194, - [3577] = 3572, - [3578] = 3578, - [3579] = 573, - [3580] = 3578, - [3581] = 574, - [3582] = 211, - [3583] = 699, - [3584] = 579, - [3585] = 580, - [3586] = 581, - [3587] = 582, - [3588] = 202, - [3589] = 584, - [3590] = 585, - [3591] = 575, - [3592] = 214, - [3593] = 3593, - [3594] = 217, - [3595] = 211, - [3596] = 217, - [3597] = 3593, - [3598] = 203, - [3599] = 218, - [3600] = 202, - [3601] = 191, - [3602] = 3602, - [3603] = 2470, - [3604] = 571, - [3605] = 203, - [3606] = 196, - [3607] = 203, - [3608] = 214, - [3609] = 576, - [3610] = 577, - [3611] = 583, - [3612] = 2570, - [3613] = 211, - [3614] = 214, - [3615] = 218, - [3616] = 218, - [3617] = 699, - [3618] = 211, - [3619] = 218, - [3620] = 2559, - [3621] = 3621, - [3622] = 527, - [3623] = 217, - [3624] = 203, - [3625] = 147, - [3626] = 149, - [3627] = 211, - [3628] = 214, - [3629] = 1407, - [3630] = 146, - [3631] = 202, - [3632] = 148, - [3633] = 3633, - [3634] = 3634, - [3635] = 206, - [3636] = 214, - [3637] = 207, - [3638] = 208, - [3639] = 198, - [3640] = 3640, - [3641] = 217, - [3642] = 217, - [3643] = 699, - [3644] = 145, - [3645] = 345, - [3646] = 2839, - [3647] = 152, - [3648] = 211, - [3649] = 151, - [3650] = 214, - [3651] = 219, - [3652] = 217, - [3653] = 218, - [3654] = 221, - [3655] = 210, - [3656] = 2847, - [3657] = 3657, - [3658] = 142, - [3659] = 305, - [3660] = 302, - [3661] = 306, - [3662] = 593, - [3663] = 304, - [3664] = 331, - [3665] = 344, - [3666] = 346, - [3667] = 347, - [3668] = 349, - [3669] = 350, - [3670] = 296, - [3671] = 322, - [3672] = 336, - [3673] = 312, - [3674] = 317, - [3675] = 321, - [3676] = 295, - [3677] = 351, - [3678] = 325, - [3679] = 326, - [3680] = 328, - [3681] = 150, - [3682] = 336, - [3683] = 317, - [3684] = 321, - [3685] = 295, - [3686] = 351, - [3687] = 325, - [3688] = 326, - [3689] = 231, - [3690] = 306, - [3691] = 328, - [3692] = 142, - [3693] = 221, - [3694] = 143, - [3695] = 302, - [3696] = 304, - [3697] = 3697, - [3698] = 154, - [3699] = 762, - [3700] = 331, - [3701] = 344, - [3702] = 305, - [3703] = 142, - [3704] = 345, - [3705] = 346, - [3706] = 347, - [3707] = 349, - [3708] = 350, - [3709] = 241, - [3710] = 144, - [3711] = 296, - [3712] = 559, - [3713] = 561, - [3714] = 322, - [3715] = 312, - [3716] = 3095, - [3717] = 143, - [3718] = 266, - [3719] = 378, - [3720] = 144, - [3721] = 265, - [3722] = 263, - [3723] = 3172, - [3724] = 264, - [3725] = 3117, - [3726] = 3079, - [3727] = 3107, - [3728] = 762, - [3729] = 384, - [3730] = 762, - [3731] = 3181, + [3138] = 232, + [3139] = 2187, + [3140] = 2188, + [3141] = 2189, + [3142] = 2190, + [3143] = 2191, + [3144] = 2192, + [3145] = 2193, + [3146] = 2194, + [3147] = 2195, + [3148] = 2196, + [3149] = 2197, + [3150] = 2198, + [3151] = 2262, + [3152] = 2267, + [3153] = 2270, + [3154] = 2278, + [3155] = 2280, + [3156] = 2282, + [3157] = 2286, + [3158] = 2288, + [3159] = 2294, + [3160] = 2296, + [3161] = 2303, + [3162] = 2312, + [3163] = 3133, + [3164] = 2232, + [3165] = 2239, + [3166] = 2244, + [3167] = 2245, + [3168] = 2247, + [3169] = 2249, + [3170] = 2253, + [3171] = 2255, + [3172] = 2257, + [3173] = 2258, + [3174] = 2265, + [3175] = 2268, + [3176] = 2272, + [3177] = 2276, + [3178] = 2279, + [3179] = 2281, + [3180] = 2283, + [3181] = 2284, + [3182] = 2287, + [3183] = 2289, + [3184] = 2290, + [3185] = 2291, + [3186] = 2293, + [3187] = 2295, + [3188] = 2298, + [3189] = 2300, + [3190] = 2302, + [3191] = 2304, + [3192] = 2305, + [3193] = 2309, + [3194] = 2311, + [3195] = 2313, + [3196] = 2315, + [3197] = 1474, + [3198] = 2317, + [3199] = 2319, + [3200] = 2216, + [3201] = 2229, + [3202] = 2248, + [3203] = 2271, + [3204] = 2307, + [3205] = 2164, + [3206] = 2172, + [3207] = 2175, + [3208] = 2181, + [3209] = 2209, + [3210] = 2211, + [3211] = 2214, + [3212] = 2237, + [3213] = 2241, + [3214] = 2246, + [3215] = 2252, + [3216] = 2261, + [3217] = 2269, + [3218] = 2273, + [3219] = 2285, + [3220] = 2299, + [3221] = 2308, + [3222] = 2314, + [3223] = 2318, + [3224] = 2170, + [3225] = 2174, + [3226] = 2199, + [3227] = 2203, + [3228] = 2208, + [3229] = 2210, + [3230] = 2228, + [3231] = 2233, + [3232] = 2238, + [3233] = 2240, + [3234] = 2256, + [3235] = 2260, + [3236] = 2169, + [3237] = 2171, + [3238] = 2173, + [3239] = 2176, + [3240] = 2177, + [3241] = 2178, + [3242] = 2183, + [3243] = 2186, + [3244] = 2200, + [3245] = 2202, + [3246] = 2204, + [3247] = 2205, + [3248] = 3248, + [3249] = 3133, + [3250] = 2142, + [3251] = 2143, + [3252] = 3252, + [3253] = 3253, + [3254] = 1995, + [3255] = 1996, + [3256] = 3256, + [3257] = 3257, + [3258] = 2316, + [3259] = 405, + [3260] = 3260, + [3261] = 251, + [3262] = 252, + [3263] = 183, + [3264] = 1632, + [3265] = 185, + [3266] = 3266, + [3267] = 3078, + [3268] = 3059, + [3269] = 3269, + [3270] = 3061, + [3271] = 1632, + [3272] = 253, + [3273] = 250, + [3274] = 3274, + [3275] = 3269, + [3276] = 3274, + [3277] = 2187, + [3278] = 2188, + [3279] = 2189, + [3280] = 2190, + [3281] = 2191, + [3282] = 2192, + [3283] = 3266, + [3284] = 2193, + [3285] = 2194, + [3286] = 3286, + [3287] = 2195, + [3288] = 2196, + [3289] = 3289, + [3290] = 2197, + [3291] = 2198, + [3292] = 3292, + [3293] = 364, + [3294] = 3260, + [3295] = 3295, + [3296] = 183, + [3297] = 185, + [3298] = 206, + [3299] = 183, + [3300] = 1270, + [3301] = 185, + [3302] = 3295, + [3303] = 134, + [3304] = 183, + [3305] = 191, + [3306] = 185, + [3307] = 193, + [3308] = 216, + [3309] = 202, + [3310] = 391, + [3311] = 3105, + [3312] = 193, + [3313] = 193, + [3314] = 1270, + [3315] = 201, + [3316] = 191, + [3317] = 3317, + [3318] = 3318, + [3319] = 383, + [3320] = 135, + [3321] = 136, + [3322] = 183, + [3323] = 191, + [3324] = 193, + [3325] = 205, + [3326] = 191, + [3327] = 185, + [3328] = 3328, + [3329] = 3328, + [3330] = 184, + [3331] = 384, + [3332] = 385, + [3333] = 208, + [3334] = 204, + [3335] = 3335, + [3336] = 3335, + [3337] = 1270, + [3338] = 204, + [3339] = 3339, + [3340] = 208, + [3341] = 201, + [3342] = 204, + [3343] = 205, + [3344] = 549, + [3345] = 208, + [3346] = 139, + [3347] = 140, + [3348] = 141, + [3349] = 204, + [3350] = 138, + [3351] = 137, + [3352] = 205, + [3353] = 504, + [3354] = 571, + [3355] = 572, + [3356] = 573, + [3357] = 3357, + [3358] = 575, + [3359] = 576, + [3360] = 578, + [3361] = 199, + [3362] = 200, + [3363] = 190, + [3364] = 3127, + [3365] = 208, + [3366] = 558, + [3367] = 563, + [3368] = 201, + [3369] = 567, + [3370] = 1195, + [3371] = 191, + [3372] = 3372, + [3373] = 189, + [3374] = 3374, + [3375] = 1270, + [3376] = 193, + [3377] = 3248, + [3378] = 205, + [3379] = 555, + [3380] = 568, + [3381] = 569, + [3382] = 201, + [3383] = 570, + [3384] = 574, + [3385] = 318, + [3386] = 144, + [3387] = 142, + [3388] = 309, + [3389] = 201, + [3390] = 337, + [3391] = 299, + [3392] = 310, + [3393] = 585, + [3394] = 216, + [3395] = 202, + [3396] = 208, + [3397] = 300, + [3398] = 303, + [3399] = 311, + [3400] = 134, + [3401] = 205, + [3402] = 305, + [3403] = 345, + [3404] = 304, + [3405] = 203, + [3406] = 301, + [3407] = 206, + [3408] = 323, + [3409] = 3409, + [3410] = 344, + [3411] = 342, + [3412] = 307, + [3413] = 204, + [3414] = 302, + [3415] = 333, + [3416] = 314, + [3417] = 335, + [3418] = 143, + [3419] = 343, + [3420] = 313, + [3421] = 3421, + [3422] = 2837, + [3423] = 304, + [3424] = 307, + [3425] = 310, + [3426] = 232, + [3427] = 541, + [3428] = 309, + [3429] = 305, + [3430] = 299, + [3431] = 323, + [3432] = 311, + [3433] = 222, + [3434] = 345, + [3435] = 342, + [3436] = 335, + [3437] = 542, + [3438] = 3438, + [3439] = 318, + [3440] = 145, + [3441] = 337, + [3442] = 135, + [3443] = 300, + [3444] = 301, + [3445] = 343, + [3446] = 302, + [3447] = 136, + [3448] = 313, + [3449] = 303, + [3450] = 134, + [3451] = 344, + [3452] = 333, + [3453] = 314, + [3454] = 2837, + [3455] = 135, + [3456] = 136, + [3457] = 250, + [3458] = 253, + [3459] = 252, + [3460] = 405, + [3461] = 251, + [3462] = 364, + [3463] = 3463, + [3464] = 2837, + [3465] = 398, + [3466] = 3466, + [3467] = 436, + [3468] = 464, + [3469] = 438, + [3470] = 439, + [3471] = 139, + [3472] = 140, + [3473] = 141, + [3474] = 3474, + [3475] = 445, + [3476] = 138, + [3477] = 137, + [3478] = 134, + [3479] = 3479, + [3480] = 206, + [3481] = 1961, + [3482] = 1379, + [3483] = 135, + [3484] = 3484, + [3485] = 3485, + [3486] = 3486, + [3487] = 136, + [3488] = 138, + [3489] = 1474, + [3490] = 464, + [3491] = 144, + [3492] = 142, + [3493] = 438, + [3494] = 445, + [3495] = 464, + [3496] = 438, + [3497] = 439, + [3498] = 439, + [3499] = 3499, + [3500] = 464, + [3501] = 445, + [3502] = 438, + [3503] = 439, + [3504] = 143, + [3505] = 398, + [3506] = 216, + [3507] = 202, + [3508] = 466, + [3509] = 139, + [3510] = 140, + [3511] = 141, + [3512] = 1458, + [3513] = 445, + [3514] = 1474, + [3515] = 436, + [3516] = 137, + [3517] = 3517, + [3518] = 1458, + [3519] = 398, + [3520] = 436, + [3521] = 1498, + [3522] = 1509, + [3523] = 2273, + [3524] = 436, + [3525] = 1721, + [3526] = 557, + [3527] = 445, + [3528] = 202, + [3529] = 391, + [3530] = 3421, + [3531] = 561, + [3532] = 564, + [3533] = 556, + [3534] = 541, + [3535] = 542, + [3536] = 383, + [3537] = 384, + [3538] = 385, + [3539] = 3438, + [3540] = 1726, + [3541] = 407, + [3542] = 589, + [3543] = 409, + [3544] = 1727, + [3545] = 553, + [3546] = 143, + [3547] = 438, + [3548] = 439, + [3549] = 2262, + [3550] = 2267, + [3551] = 2270, + [3552] = 2278, + [3553] = 2280, + [3554] = 2282, + [3555] = 2286, + [3556] = 2288, + [3557] = 2294, + [3558] = 2296, + [3559] = 2303, + [3560] = 2312, + [3561] = 145, + [3562] = 2232, + [3563] = 2239, + [3564] = 2244, + [3565] = 2245, + [3566] = 2247, + [3567] = 2249, + [3568] = 2253, + [3569] = 2255, + [3570] = 2257, + [3571] = 2258, + [3572] = 2265, + [3573] = 2268, + [3574] = 2272, + [3575] = 2276, + [3576] = 2279, + [3577] = 2281, + [3578] = 2283, + [3579] = 2284, + [3580] = 2287, + [3581] = 2289, + [3582] = 2290, + [3583] = 2291, + [3584] = 2293, + [3585] = 2295, + [3586] = 2298, + [3587] = 2300, + [3588] = 2302, + [3589] = 2304, + [3590] = 2305, + [3591] = 2309, + [3592] = 2311, + [3593] = 2313, + [3594] = 2315, + [3595] = 2316, + [3596] = 2317, + [3597] = 2319, + [3598] = 2216, + [3599] = 2229, + [3600] = 2248, + [3601] = 2271, + [3602] = 2307, + [3603] = 2164, + [3604] = 2172, + [3605] = 2175, + [3606] = 2181, + [3607] = 2209, + [3608] = 2211, + [3609] = 2214, + [3610] = 2237, + [3611] = 2241, + [3612] = 2246, + [3613] = 2252, + [3614] = 2261, + [3615] = 2269, + [3616] = 436, + [3617] = 2285, + [3618] = 2299, + [3619] = 2308, + [3620] = 2314, + [3621] = 2318, + [3622] = 2170, + [3623] = 2174, + [3624] = 2199, + [3625] = 2203, + [3626] = 2208, + [3627] = 2210, + [3628] = 2228, + [3629] = 2233, + [3630] = 1514, + [3631] = 2240, + [3632] = 2256, + [3633] = 2260, + [3634] = 2169, + [3635] = 2171, + [3636] = 2173, + [3637] = 2176, + [3638] = 2177, + [3639] = 2178, + [3640] = 2183, + [3641] = 2186, + [3642] = 2200, + [3643] = 2202, + [3644] = 2204, + [3645] = 2205, + [3646] = 1493, + [3647] = 144, + [3648] = 514, + [3649] = 515, + [3650] = 516, + [3651] = 517, + [3652] = 518, + [3653] = 519, + [3654] = 520, + [3655] = 521, + [3656] = 522, + [3657] = 523, + [3658] = 524, + [3659] = 525, + [3660] = 526, + [3661] = 527, + [3662] = 528, + [3663] = 529, + [3664] = 530, + [3665] = 531, + [3666] = 532, + [3667] = 533, + [3668] = 534, + [3669] = 535, + [3670] = 536, + [3671] = 537, + [3672] = 538, + [3673] = 539, + [3674] = 540, + [3675] = 503, + [3676] = 2187, + [3677] = 2188, + [3678] = 2189, + [3679] = 2190, + [3680] = 2191, + [3681] = 2192, + [3682] = 2193, + [3683] = 2194, + [3684] = 2195, + [3685] = 2196, + [3686] = 2197, + [3687] = 2198, + [3688] = 1728, + [3689] = 1719, + [3690] = 1729, + [3691] = 142, + [3692] = 216, + [3693] = 1720, + [3694] = 1474, + [3695] = 1722, + [3696] = 1723, + [3697] = 464, + [3698] = 2238, + [3699] = 3699, + [3700] = 3700, + [3701] = 3701, + [3702] = 3702, + [3703] = 3703, + [3704] = 3704, + [3705] = 3059, + [3706] = 3706, + [3707] = 3061, + [3708] = 3708, + [3709] = 3709, + [3710] = 3710, + [3711] = 3711, + [3712] = 3712, + [3713] = 3713, + [3714] = 3714, + [3715] = 3078, + [3716] = 1474, + [3717] = 3717, + [3718] = 3718, + [3719] = 3719, + [3720] = 3720, + [3721] = 3721, + [3722] = 3722, + [3723] = 3723, + [3724] = 3724, + [3725] = 3725, + [3726] = 409, + [3727] = 3722, + [3728] = 3728, + [3729] = 3729, + [3730] = 1474, + [3731] = 3731, [3732] = 3732, - [3733] = 142, - [3734] = 1616, - [3735] = 146, - [3736] = 429, - [3737] = 430, - [3738] = 431, - [3739] = 143, - [3740] = 390, - [3741] = 148, - [3742] = 145, - [3743] = 429, - [3744] = 430, - [3745] = 431, - [3746] = 2154, - [3747] = 144, - [3748] = 441, - [3749] = 147, - [3750] = 149, - [3751] = 427, - [3752] = 441, - [3753] = 219, - [3754] = 427, - [3755] = 390, - [3756] = 146, - [3757] = 3757, - [3758] = 390, - [3759] = 431, - [3760] = 441, - [3761] = 828, - [3762] = 1010, - [3763] = 148, - [3764] = 1010, - [3765] = 1698, - [3766] = 429, - [3767] = 429, - [3768] = 147, - [3769] = 152, - [3770] = 221, - [3771] = 3771, - [3772] = 427, - [3773] = 429, - [3774] = 430, - [3775] = 145, - [3776] = 149, - [3777] = 150, - [3778] = 431, - [3779] = 151, - [3780] = 430, - [3781] = 828, - [3782] = 475, - [3783] = 441, - [3784] = 430, - [3785] = 1010, - [3786] = 431, - [3787] = 441, - [3788] = 427, - [3789] = 1684, - [3790] = 388, - [3791] = 2475, - [3792] = 2477, - [3793] = 2478, - [3794] = 2480, - [3795] = 2482, - [3796] = 2484, - [3797] = 2487, - [3798] = 2489, - [3799] = 2490, - [3800] = 2492, - [3801] = 2494, - [3802] = 2496, - [3803] = 2499, - [3804] = 2503, - [3805] = 2508, - [3806] = 2510, - [3807] = 2514, - [3808] = 2515, - [3809] = 2517, - [3810] = 2518, - [3811] = 2520, - [3812] = 2522, - [3813] = 2526, - [3814] = 2527, - [3815] = 2529, - [3816] = 2535, - [3817] = 2536, - [3818] = 2454, - [3819] = 2507, - [3820] = 2396, - [3821] = 2426, - [3822] = 2519, - [3823] = 2393, - [3824] = 2401, - [3825] = 2421, - [3826] = 2432, - [3827] = 2457, - [3828] = 2459, - [3829] = 2474, - [3830] = 2481, - [3831] = 2486, - [3832] = 2495, - [3833] = 2516, - [3834] = 2524, - [3835] = 2451, - [3836] = 2356, - [3837] = 2358, - [3838] = 2359, - [3839] = 2367, - [3840] = 2370, - [3841] = 2374, - [3842] = 2376, - [3843] = 2379, - [3844] = 2383, - [3845] = 2391, - [3846] = 2394, - [3847] = 2398, - [3848] = 2403, - [3849] = 2411, - [3850] = 2416, - [3851] = 2423, - [3852] = 2428, - [3853] = 2438, - [3854] = 2455, - [3855] = 2458, - [3856] = 2460, - [3857] = 2462, - [3858] = 2473, - [3859] = 2476, - [3860] = 2479, - [3861] = 2485, - [3862] = 2488, - [3863] = 2360, - [3864] = 2361, - [3865] = 2362, - [3866] = 2363, - [3867] = 2364, - [3868] = 2365, - [3869] = 2366, - [3870] = 2368, - [3871] = 2369, - [3872] = 2371, - [3873] = 2373, - [3874] = 2375, - [3875] = 1880, - [3876] = 486, - [3877] = 507, - [3878] = 1924, - [3879] = 405, - [3880] = 523, - [3881] = 1010, - [3882] = 525, - [3883] = 150, - [3884] = 151, - [3885] = 476, - [3886] = 559, - [3887] = 221, - [3888] = 561, - [3889] = 488, - [3890] = 2847, - [3891] = 154, - [3892] = 427, - [3893] = 152, - [3894] = 1946, - [3895] = 1947, - [3896] = 519, - [3897] = 522, - [3898] = 2839, - [3899] = 533, - [3900] = 496, - [3901] = 477, - [3902] = 534, - [3903] = 492, - [3904] = 504, - [3905] = 535, - [3906] = 517, - [3907] = 536, - [3908] = 537, - [3909] = 538, - [3910] = 539, - [3911] = 540, - [3912] = 429, - [3913] = 1123, - [3914] = 541, - [3915] = 543, - [3916] = 427, - [3917] = 544, - [3918] = 545, - [3919] = 546, - [3920] = 547, - [3921] = 1181, - [3922] = 1182, - [3923] = 1183, - [3924] = 1184, - [3925] = 1185, - [3926] = 1186, - [3927] = 1187, - [3928] = 1190, - [3929] = 1191, - [3930] = 1192, - [3931] = 1193, - [3932] = 1194, - [3933] = 1883, - [3934] = 548, - [3935] = 1181, - [3936] = 1182, - [3937] = 1183, - [3938] = 1184, - [3939] = 1185, - [3940] = 1186, - [3941] = 1187, - [3942] = 1190, - [3943] = 1191, - [3944] = 1192, - [3945] = 1193, - [3946] = 1194, - [3947] = 549, - [3948] = 417, - [3949] = 550, - [3950] = 556, - [3951] = 557, - [3952] = 2395, - [3953] = 2397, - [3954] = 2400, - [3955] = 2402, - [3956] = 2404, - [3957] = 2408, - [3958] = 2410, - [3959] = 2412, - [3960] = 2415, - [3961] = 2418, - [3962] = 2419, - [3963] = 558, - [3964] = 529, - [3965] = 2422, - [3966] = 1899, - [3967] = 1940, - [3968] = 400, - [3969] = 1062, - [3970] = 1904, - [3971] = 1943, - [3972] = 430, - [3973] = 431, - [3974] = 373, - [3975] = 441, - [3976] = 3976, - [3977] = 3977, - [3978] = 1010, - [3979] = 3979, - [3980] = 3980, - [3981] = 3981, - [3982] = 1174, - [3983] = 3983, - [3984] = 3984, - [3985] = 3985, - [3986] = 1010, - [3987] = 3987, - [3988] = 3988, - [3989] = 3989, - [3990] = 3990, - [3991] = 3991, - [3992] = 3992, - [3993] = 3993, - [3994] = 3994, - [3995] = 3995, - [3996] = 1180, - [3997] = 3997, - [3998] = 3998, - [3999] = 3999, - [4000] = 4000, - [4001] = 4001, - [4002] = 4002, - [4003] = 4003, - [4004] = 4004, - [4005] = 405, - [4006] = 3984, - [4007] = 3985, - [4008] = 4008, - [4009] = 3981, - [4010] = 4010, - [4011] = 4011, - [4012] = 1179, - [4013] = 1010, - [4014] = 3985, - [4015] = 3981, - [4016] = 4016, - [4017] = 1190, - [4018] = 1192, - [4019] = 1181, - [4020] = 1181, - [4021] = 1182, - [4022] = 1183, - [4023] = 1184, - [4024] = 1185, - [4025] = 1186, - [4026] = 1187, - [4027] = 1191, - [4028] = 1192, - [4029] = 1193, - [4030] = 1194, - [4031] = 1186, - [4032] = 1194, - [4033] = 4003, - [4034] = 1187, - [4035] = 4035, - [4036] = 1193, - [4037] = 1182, - [4038] = 3983, - [4039] = 1183, - [4040] = 4040, - [4041] = 4041, - [4042] = 1185, - [4043] = 1190, - [4044] = 1191, - [4045] = 1184, - [4046] = 4046, - [4047] = 4047, - [4048] = 4048, - [4049] = 3079, - [4050] = 4048, - [4051] = 3117, - [4052] = 3095, - [4053] = 4053, - [4054] = 4054, - [4055] = 4048, - [4056] = 4048, - [4057] = 4057, - [4058] = 3181, - [4059] = 4059, - [4060] = 4053, - [4061] = 4061, - [4062] = 3107, - [4063] = 4057, - [4064] = 4054, - [4065] = 4048, - [4066] = 4048, - [4067] = 4048, - [4068] = 4046, - [4069] = 4048, - [4070] = 3172, - [4071] = 4059, - [4072] = 4061, - [4073] = 4048, - [4074] = 4047, - [4075] = 190, - [4076] = 190, - [4077] = 195, - [4078] = 192, - [4079] = 195, - [4080] = 194, - [4081] = 191, - [4082] = 192, - [4083] = 190, - [4084] = 196, - [4085] = 331, - [4086] = 326, - [4087] = 195, - [4088] = 196, - [4089] = 206, - [4090] = 328, - [4091] = 305, - [4092] = 203, - [4093] = 190, - [4094] = 306, - [4095] = 202, - [4096] = 302, - [4097] = 192, - [4098] = 321, - [4099] = 194, - [4100] = 304, - [4101] = 295, - [4102] = 191, - [4103] = 351, - [4104] = 325, - [4105] = 207, - [4106] = 344, - [4107] = 345, - [4108] = 208, - [4109] = 198, - [4110] = 1275, - [4111] = 346, - [4112] = 347, - [4113] = 349, - [4114] = 350, - [4115] = 296, - [4116] = 322, - [4117] = 336, - [4118] = 312, - [4119] = 317, - [4120] = 219, - [4121] = 221, - [4122] = 210, - [4123] = 211, - [4124] = 196, - [4125] = 195, - [4126] = 203, - [4127] = 1275, - [4128] = 192, - [4129] = 214, - [4130] = 191, - [4131] = 207, - [4132] = 202, - [4133] = 217, - [4134] = 208, - [4135] = 198, - [4136] = 218, - [4137] = 194, - [4138] = 206, - [4139] = 296, - [4140] = 349, - [4141] = 142, - [4142] = 208, - [4143] = 317, - [4144] = 321, - [4145] = 295, - [4146] = 304, - [4147] = 306, - [4148] = 331, - [4149] = 211, - [4150] = 325, - [4151] = 351, - [4152] = 207, - [4153] = 344, - [4154] = 346, - [4155] = 322, - [4156] = 328, - [4157] = 210, - [4158] = 219, - [4159] = 347, - [4160] = 203, - [4161] = 1275, - [4162] = 345, - [4163] = 305, - [4164] = 194, - [4165] = 302, - [4166] = 142, - [4167] = 326, - [4168] = 196, - [4169] = 221, - [4170] = 202, - [4171] = 350, - [4172] = 336, - [4173] = 231, - [4174] = 206, - [4175] = 214, - [4176] = 217, - [4177] = 218, - [4178] = 241, - [4179] = 198, - [4180] = 312, - [4181] = 262, - [4182] = 202, - [4183] = 211, - [4184] = 190, - [4185] = 143, - [4186] = 251, - [4187] = 217, - [4188] = 231, - [4189] = 219, - [4190] = 241, - [4191] = 210, - [4192] = 218, - [4193] = 203, - [4194] = 475, - [4195] = 1275, - [4196] = 1123, - [4197] = 1062, - [4198] = 263, - [4199] = 214, - [4200] = 264, - [4201] = 266, - [4202] = 144, - [4203] = 221, - [4204] = 154, - [4205] = 265, - [4206] = 142, - [4207] = 544, - [4208] = 301, - [4209] = 519, - [4210] = 217, - [4211] = 522, - [4212] = 545, - [4213] = 218, - [4214] = 496, - [4215] = 477, - [4216] = 231, - [4217] = 492, - [4218] = 504, - [4219] = 251, - [4220] = 557, - [4221] = 190, - [4222] = 146, - [4223] = 148, - [4224] = 145, - [4225] = 1407, - [4226] = 142, - [4227] = 241, - [4228] = 263, - [4229] = 264, - [4230] = 265, - [4231] = 266, - [4232] = 143, - [4233] = 191, - [4234] = 144, - [4235] = 488, - [4236] = 210, - [4237] = 221, - [4238] = 147, - [4239] = 149, - [4240] = 195, - [4241] = 210, - [4242] = 546, - [4243] = 214, - [4244] = 529, - [4245] = 547, - [4246] = 549, - [4247] = 219, - [4248] = 219, - [4249] = 262, - [4250] = 517, - [4251] = 548, - [4252] = 550, - [4253] = 192, - [4254] = 533, - [4255] = 194, - [4256] = 196, - [4257] = 523, - [4258] = 525, - [4259] = 534, - [4260] = 211, - [4261] = 556, - [4262] = 486, - [4263] = 507, - [4264] = 535, - [4265] = 476, - [4266] = 536, - [4267] = 537, - [4268] = 538, - [4269] = 539, - [4270] = 540, - [4271] = 541, - [4272] = 543, - [4273] = 558, - [4274] = 147, - [4275] = 194, - [4276] = 208, - [4277] = 265, - [4278] = 143, - [4279] = 144, - [4280] = 198, - [4281] = 192, - [4282] = 196, - [4283] = 266, - [4284] = 210, - [4285] = 1123, - [4286] = 149, - [4287] = 231, - [4288] = 231, - [4289] = 152, - [4290] = 475, - [4291] = 390, - [4292] = 263, - [4293] = 241, - [4294] = 264, - [4295] = 151, - [4296] = 4296, - [4297] = 2664, - [4298] = 219, - [4299] = 206, + [3733] = 3731, + [3734] = 3728, + [3735] = 3731, + [3736] = 3728, + [3737] = 407, + [3738] = 3738, + [3739] = 3739, + [3740] = 2191, + [3741] = 2196, + [3742] = 2197, + [3743] = 2198, + [3744] = 3744, + [3745] = 2192, + [3746] = 2191, + [3747] = 2193, + [3748] = 3748, + [3749] = 2190, + [3750] = 2194, + [3751] = 2197, + [3752] = 2195, + [3753] = 3753, + [3754] = 2198, + [3755] = 2187, + [3756] = 2187, + [3757] = 2188, + [3758] = 2189, + [3759] = 2190, + [3760] = 3725, + [3761] = 2196, + [3762] = 2192, + [3763] = 2193, + [3764] = 2194, + [3765] = 2195, + [3766] = 3729, + [3767] = 2188, + [3768] = 2189, + [3769] = 3769, + [3770] = 3770, + [3771] = 3484, + [3772] = 3485, + [3773] = 3486, + [3774] = 3774, + [3775] = 3474, + [3776] = 3774, + [3777] = 3777, + [3778] = 3778, + [3779] = 3779, + [3780] = 3769, + [3781] = 3774, + [3782] = 3782, + [3783] = 3783, + [3784] = 3774, + [3785] = 3774, + [3786] = 3774, + [3787] = 3479, + [3788] = 3774, + [3789] = 3783, + [3790] = 3782, + [3791] = 3778, + [3792] = 3466, + [3793] = 3779, + [3794] = 3770, + [3795] = 182, + [3796] = 3777, + [3797] = 187, + [3798] = 182, + [3799] = 188, + [3800] = 187, + [3801] = 182, + [3802] = 185, + [3803] = 188, + [3804] = 184, + [3805] = 183, + [3806] = 185, + [3807] = 200, + [3808] = 190, + [3809] = 183, + [3810] = 193, + [3811] = 191, + [3812] = 189, + [3813] = 342, + [3814] = 343, + [3815] = 299, + [3816] = 300, + [3817] = 199, + [3818] = 184, + [3819] = 302, + [3820] = 303, + [3821] = 304, + [3822] = 305, + [3823] = 307, + [3824] = 309, + [3825] = 310, + [3826] = 311, + [3827] = 313, + [3828] = 345, + [3829] = 318, + [3830] = 323, + [3831] = 333, + [3832] = 335, + [3833] = 337, + [3834] = 187, + [3835] = 344, + [3836] = 188, + [3837] = 1060, + [3838] = 182, + [3839] = 314, + [3840] = 301, + [3841] = 184, + [3842] = 200, + [3843] = 188, + [3844] = 190, + [3845] = 201, + [3846] = 205, + [3847] = 189, + [3848] = 206, + [3849] = 208, + [3850] = 183, + [3851] = 193, + [3852] = 187, + [3853] = 204, + [3854] = 199, + [3855] = 203, + [3856] = 191, + [3857] = 185, + [3858] = 202, + [3859] = 216, + [3860] = 1060, + [3861] = 309, + [3862] = 182, + [3863] = 204, + [3864] = 342, + [3865] = 222, + [3866] = 189, + [3867] = 201, + [3868] = 216, + [3869] = 1060, + [3870] = 134, + [3871] = 299, + [3872] = 190, + [3873] = 205, + [3874] = 191, + [3875] = 202, + [3876] = 185, + [3877] = 183, + [3878] = 343, + [3879] = 300, + [3880] = 301, + [3881] = 314, + [3882] = 302, + [3883] = 199, + [3884] = 303, + [3885] = 304, + [3886] = 305, + [3887] = 307, + [3888] = 203, + [3889] = 310, + [3890] = 311, + [3891] = 313, + [3892] = 193, + [3893] = 345, + [3894] = 318, + [3895] = 323, + [3896] = 333, + [3897] = 335, + [3898] = 206, + [3899] = 337, + [3900] = 208, + [3901] = 344, + [3902] = 134, + [3903] = 200, + [3904] = 232, + [3905] = 201, + [3906] = 222, + [3907] = 185, + [3908] = 193, + [3909] = 286, + [3910] = 216, + [3911] = 1514, + [3912] = 203, + [3913] = 187, + [3914] = 466, + [3915] = 250, + [3916] = 135, + [3917] = 145, + [3918] = 1060, + [3919] = 206, + [3920] = 136, + [3921] = 134, + [3922] = 251, + [3923] = 184, + [3924] = 252, + [3925] = 191, + [3926] = 202, + [3927] = 1493, + [3928] = 205, + [3929] = 253, + [3930] = 285, + [3931] = 232, + [3932] = 183, + [3933] = 208, + [3934] = 188, + [3935] = 204, + [3936] = 137, + [3937] = 136, + [3938] = 514, + [3939] = 556, + [3940] = 516, + [3941] = 191, + [3942] = 203, + [3943] = 203, + [3944] = 557, + [3945] = 503, + [3946] = 519, + [3947] = 285, + [3948] = 216, + [3949] = 139, + [3950] = 140, + [3951] = 138, + [3952] = 561, + [3953] = 564, + [3954] = 520, + [3955] = 521, + [3956] = 522, + [3957] = 324, + [3958] = 206, + [3959] = 523, + [3960] = 251, + [3961] = 208, + [3962] = 141, + [3963] = 524, + [3964] = 232, + [3965] = 525, + [3966] = 515, + [3967] = 526, + [3968] = 527, + [3969] = 189, + [3970] = 528, + [3971] = 529, + [3972] = 201, + [3973] = 1195, + [3974] = 553, + [3975] = 530, + [3976] = 531, + [3977] = 517, + [3978] = 532, + [3979] = 533, + [3980] = 534, + [3981] = 199, + [3982] = 200, + [3983] = 535, + [3984] = 190, + [3985] = 536, + [3986] = 537, + [3987] = 204, + [3988] = 538, + [3989] = 539, + [3990] = 205, + [3991] = 540, + [3992] = 286, + [3993] = 252, + [3994] = 202, + [3995] = 222, + [3996] = 134, + [3997] = 206, + [3998] = 135, + [3999] = 193, + [4000] = 250, + [4001] = 589, + [4002] = 253, + [4003] = 2468, + [4004] = 518, + [4005] = 398, + [4006] = 1493, + [4007] = 203, + [4008] = 203, + [4009] = 208, + [4010] = 285, + [4011] = 216, + [4012] = 372, + [4013] = 286, + [4014] = 144, + [4015] = 1195, + [4016] = 204, + [4017] = 466, + [4018] = 253, + [4019] = 4019, + [4020] = 251, + [4021] = 138, + [4022] = 142, + [4023] = 136, + [4024] = 232, + [4025] = 206, + [4026] = 135, + [4027] = 205, + [4028] = 206, + [4029] = 202, + [4030] = 134, + [4031] = 4031, + [4032] = 139, + [4033] = 232, + [4034] = 252, + [4035] = 201, + [4036] = 1514, + [4037] = 137, + [4038] = 222, + [4039] = 4039, + [4040] = 250, + [4041] = 143, + [4042] = 141, + [4043] = 4043, + [4044] = 222, + [4045] = 140, + [4046] = 328, + [4047] = 337, + [4048] = 134, + [4049] = 344, + [4050] = 250, + [4051] = 139, + [4052] = 140, + [4053] = 141, + [4054] = 314, + [4055] = 232, + [4056] = 251, + [4057] = 206, + [4058] = 252, + [4059] = 144, + [4060] = 1472, + [4061] = 1409, + [4062] = 142, + [4063] = 253, + [4064] = 1441, + [4065] = 1417, + [4066] = 222, + [4067] = 445, + [4068] = 398, + [4069] = 232, + [4070] = 285, + [4071] = 327, + [4072] = 4072, + [4073] = 137, + [4074] = 250, + [4075] = 4075, + [4076] = 138, + [4077] = 251, + [4078] = 135, + [4079] = 136, + [4080] = 520, + [4081] = 4081, + [4082] = 222, + [4083] = 252, + [4084] = 436, + [4085] = 329, + [4086] = 4086, + [4087] = 286, + [4088] = 556, + [4089] = 4031, + [4090] = 516, + [4091] = 4019, + [4092] = 4043, + [4093] = 253, + [4094] = 557, + [4095] = 503, + [4096] = 143, + [4097] = 519, + [4098] = 464, + [4099] = 438, + [4100] = 439, + [4101] = 521, + [4102] = 561, + [4103] = 564, + [4104] = 522, + [4105] = 523, + [4106] = 342, + [4107] = 524, + [4108] = 525, + [4109] = 418, + [4110] = 526, + [4111] = 527, + [4112] = 528, + [4113] = 529, + [4114] = 530, + [4115] = 531, + [4116] = 532, + [4117] = 533, + [4118] = 534, + [4119] = 145, + [4120] = 535, + [4121] = 536, + [4122] = 537, + [4123] = 538, + [4124] = 343, + [4125] = 539, + [4126] = 540, + [4127] = 541, + [4128] = 542, + [4129] = 216, + [4130] = 589, + [4131] = 202, + [4132] = 203, + [4133] = 553, + [4134] = 419, + [4135] = 421, + [4136] = 299, + [4137] = 391, + [4138] = 383, + [4139] = 384, + [4140] = 385, + [4141] = 422, + [4142] = 300, + [4143] = 301, + [4144] = 423, + [4145] = 302, + [4146] = 303, + [4147] = 304, + [4148] = 305, + [4149] = 307, + [4150] = 309, + [4151] = 310, + [4152] = 311, + [4153] = 313, + [4154] = 345, + [4155] = 514, + [4156] = 515, + [4157] = 318, + [4158] = 323, + [4159] = 517, + [4160] = 518, + [4161] = 333, + [4162] = 335, + [4163] = 4163, + [4164] = 407, + [4165] = 299, + [4166] = 418, + [4167] = 314, + [4168] = 409, + [4169] = 445, + [4170] = 419, + [4171] = 421, + [4172] = 329, + [4173] = 4173, + [4174] = 364, + [4175] = 302, + [4176] = 303, + [4177] = 422, + [4178] = 304, + [4179] = 138, + [4180] = 137, + [4181] = 4181, + [4182] = 4182, + [4183] = 4183, + [4184] = 252, + [4185] = 206, + [4186] = 250, + [4187] = 464, + [4188] = 423, + [4189] = 343, + [4190] = 438, + [4191] = 4075, + [4192] = 1474, + [4193] = 439, + [4194] = 135, + [4195] = 4195, + [4196] = 286, + [4197] = 4081, + [4198] = 4086, + [4199] = 136, + [4200] = 139, + [4201] = 436, + [4202] = 305, + [4203] = 4163, + [4204] = 405, + [4205] = 140, + [4206] = 141, + [4207] = 307, + [4208] = 309, + [4209] = 4209, + [4210] = 310, + [4211] = 145, + [4212] = 203, + [4213] = 216, + [4214] = 311, + [4215] = 313, + [4216] = 345, + [4217] = 253, + [4218] = 250, + [4219] = 202, + [4220] = 337, + [4221] = 344, + [4222] = 318, + [4223] = 142, + [4224] = 4224, + [4225] = 222, + [4226] = 342, + [4227] = 251, + [4228] = 144, + [4229] = 232, + [4230] = 383, + [4231] = 384, + [4232] = 327, + [4233] = 323, + [4234] = 333, + [4235] = 328, + [4236] = 251, + [4237] = 335, + [4238] = 4072, + [4239] = 252, + [4240] = 1472, + [4241] = 1409, + [4242] = 4242, + [4243] = 253, + [4244] = 134, + [4245] = 1441, + [4246] = 1417, + [4247] = 300, + [4248] = 391, + [4249] = 143, + [4250] = 301, + [4251] = 285, + [4252] = 385, + [4253] = 398, + [4254] = 307, + [4255] = 4255, + [4256] = 1417, + [4257] = 4257, + [4258] = 337, + [4259] = 4259, + [4260] = 4260, + [4261] = 4261, + [4262] = 304, + [4263] = 4263, + [4264] = 4264, + [4265] = 4265, + [4266] = 1644, + [4267] = 4267, + [4268] = 301, + [4269] = 4269, + [4270] = 4270, + [4271] = 1472, + [4272] = 4272, + [4273] = 4273, + [4274] = 4274, + [4275] = 4275, + [4276] = 383, + [4277] = 384, + [4278] = 4278, + [4279] = 138, + [4280] = 137, + [4281] = 232, + [4282] = 4282, + [4283] = 4283, + [4284] = 4284, + [4285] = 4285, + [4286] = 4286, + [4287] = 4287, + [4288] = 4288, + [4289] = 4289, + [4290] = 4290, + [4291] = 305, + [4292] = 421, + [4293] = 4293, + [4294] = 1474, + [4295] = 4295, + [4296] = 206, + [4297] = 4297, + [4298] = 4298, + [4299] = 4299, [4300] = 4300, - [4301] = 1407, - [4302] = 1062, - [4303] = 241, + [4301] = 4301, + [4302] = 4302, + [4303] = 4303, [4304] = 4304, - [4305] = 381, - [4306] = 195, - [4307] = 251, - [4308] = 262, - [4309] = 202, - [4310] = 203, - [4311] = 146, - [4312] = 148, - [4313] = 145, - [4314] = 207, - [4315] = 150, - [4316] = 556, - [4317] = 492, - [4318] = 504, - [4319] = 231, - [4320] = 152, - [4321] = 434, - [4322] = 507, - [4323] = 296, - [4324] = 4304, - [4325] = 436, - [4326] = 241, - [4327] = 150, - [4328] = 151, - [4329] = 305, - [4330] = 441, - [4331] = 537, - [4332] = 263, - [4333] = 322, - [4334] = 263, - [4335] = 350, - [4336] = 421, - [4337] = 429, - [4338] = 522, - [4339] = 517, - [4340] = 264, - [4341] = 336, - [4342] = 538, - [4343] = 539, - [4344] = 540, - [4345] = 533, - [4346] = 312, - [4347] = 202, - [4348] = 265, - [4349] = 535, - [4350] = 317, - [4351] = 266, - [4352] = 541, - [4353] = 543, - [4354] = 321, - [4355] = 306, - [4356] = 544, - [4357] = 545, - [4358] = 546, - [4359] = 547, - [4360] = 548, - [4361] = 147, - [4362] = 154, - [4363] = 264, - [4364] = 149, - [4365] = 4365, - [4366] = 549, - [4367] = 550, - [4368] = 430, - [4369] = 295, - [4370] = 142, - [4371] = 557, - [4372] = 302, - [4373] = 431, - [4374] = 210, - [4375] = 351, - [4376] = 427, - [4377] = 325, - [4378] = 265, - [4379] = 4379, - [4380] = 349, - [4381] = 529, - [4382] = 304, - [4383] = 326, - [4384] = 4296, - [4385] = 2664, - [4386] = 4386, - [4387] = 559, - [4388] = 342, - [4389] = 519, - [4390] = 219, - [4391] = 344, - [4392] = 146, - [4393] = 968, - [4394] = 971, - [4395] = 221, - [4396] = 266, - [4397] = 496, - [4398] = 986, - [4399] = 988, - [4400] = 561, - [4401] = 4401, - [4402] = 523, - [4403] = 345, - [4404] = 211, - [4405] = 4300, - [4406] = 477, - [4407] = 148, - [4408] = 214, - [4409] = 476, - [4410] = 262, - [4411] = 217, - [4412] = 221, - [4413] = 145, - [4414] = 328, - [4415] = 218, - [4416] = 210, - [4417] = 525, - [4418] = 373, - [4419] = 417, - [4420] = 400, - [4421] = 388, - [4422] = 536, - [4423] = 486, - [4424] = 488, - [4425] = 331, - [4426] = 142, - [4427] = 203, - [4428] = 428, - [4429] = 219, - [4430] = 251, - [4431] = 390, - [4432] = 340, - [4433] = 341, + [4305] = 4305, + [4306] = 206, + [4307] = 4307, + [4308] = 4308, + [4309] = 4309, + [4310] = 4310, + [4311] = 4311, + [4312] = 4312, + [4313] = 422, + [4314] = 4314, + [4315] = 4315, + [4316] = 409, + [4317] = 4317, + [4318] = 4318, + [4319] = 4319, + [4320] = 4320, + [4321] = 139, + [4322] = 4322, + [4323] = 323, + [4324] = 135, + [4325] = 1409, + [4326] = 4195, + [4327] = 134, + [4328] = 309, + [4329] = 4329, + [4330] = 4330, + [4331] = 4331, + [4332] = 4332, + [4333] = 145, + [4334] = 4334, + [4335] = 4335, + [4336] = 4336, + [4337] = 4337, + [4338] = 4338, + [4339] = 4339, + [4340] = 4340, + [4341] = 4341, + [4342] = 4342, + [4343] = 4343, + [4344] = 4344, + [4345] = 4345, + [4346] = 203, + [4347] = 343, + [4348] = 136, + [4349] = 140, + [4350] = 4350, + [4351] = 4351, + [4352] = 4352, + [4353] = 4353, + [4354] = 4354, + [4355] = 1649, + [4356] = 4356, + [4357] = 4357, + [4358] = 134, + [4359] = 4359, + [4360] = 4360, + [4361] = 333, + [4362] = 310, + [4363] = 4363, + [4364] = 4364, + [4365] = 302, + [4366] = 4366, + [4367] = 4367, + [4368] = 4368, + [4369] = 4369, + [4370] = 4370, + [4371] = 4371, + [4372] = 299, + [4373] = 4373, + [4374] = 4374, + [4375] = 4375, + [4376] = 4376, + [4377] = 464, + [4378] = 364, + [4379] = 1400, + [4380] = 445, + [4381] = 4381, + [4382] = 438, + [4383] = 143, + [4384] = 1379, + [4385] = 141, + [4386] = 250, + [4387] = 4387, + [4388] = 4388, + [4389] = 419, + [4390] = 391, + [4391] = 4391, + [4392] = 4392, + [4393] = 4393, + [4394] = 4394, + [4395] = 4395, + [4396] = 436, + [4397] = 4397, + [4398] = 251, + [4399] = 311, + [4400] = 313, + [4401] = 1929, + [4402] = 1930, + [4403] = 4403, + [4404] = 4404, + [4405] = 398, + [4406] = 300, + [4407] = 4407, + [4408] = 4408, + [4409] = 423, + [4410] = 4410, + [4411] = 252, + [4412] = 439, + [4413] = 303, + [4414] = 405, + [4415] = 4415, + [4416] = 385, + [4417] = 407, + [4418] = 4418, + [4419] = 335, + [4420] = 4420, + [4421] = 4421, + [4422] = 4422, + [4423] = 253, + [4424] = 418, + [4425] = 345, + [4426] = 4426, + [4427] = 4427, + [4428] = 4428, + [4429] = 314, + [4430] = 4430, + [4431] = 344, + [4432] = 1656, + [4433] = 4433, [4434] = 4434, - [4435] = 534, - [4436] = 437, - [4437] = 346, - [4438] = 347, - [4439] = 558, - [4440] = 142, - [4441] = 390, - [4442] = 263, - [4443] = 210, - [4444] = 264, - [4445] = 331, - [4446] = 219, - [4447] = 265, - [4448] = 266, - [4449] = 421, - [4450] = 427, - [4451] = 417, - [4452] = 1010, - [4453] = 312, - [4454] = 968, + [4435] = 144, + [4436] = 4436, + [4437] = 222, + [4438] = 142, + [4439] = 4439, + [4440] = 4440, + [4441] = 4441, + [4442] = 318, + [4443] = 4443, + [4444] = 4444, + [4445] = 4445, + [4446] = 4446, + [4447] = 4447, + [4448] = 185, + [4449] = 4449, + [4450] = 4450, + [4451] = 342, + [4452] = 4452, + [4453] = 4453, + [4454] = 4454, [4455] = 4455, - [4456] = 971, + [4456] = 1441, [4457] = 4457, - [4458] = 304, - [4459] = 219, - [4460] = 384, - [4461] = 221, - [4462] = 306, - [4463] = 400, - [4464] = 346, - [4465] = 388, - [4466] = 347, - [4467] = 211, - [4468] = 349, - [4469] = 302, - [4470] = 231, - [4471] = 350, - [4472] = 241, - [4473] = 154, - [4474] = 378, - [4475] = 214, - [4476] = 317, - [4477] = 210, - [4478] = 296, - [4479] = 217, - [4480] = 321, - [4481] = 4481, - [4482] = 986, - [4483] = 4365, - [4484] = 345, - [4485] = 429, - [4486] = 218, - [4487] = 4379, - [4488] = 295, - [4489] = 322, - [4490] = 988, - [4491] = 351, - [4492] = 325, - [4493] = 326, - [4494] = 4386, - [4495] = 328, - [4496] = 340, - [4497] = 143, - [4498] = 430, - [4499] = 431, - [4500] = 341, - [4501] = 434, - [4502] = 4434, - [4503] = 342, - [4504] = 4504, - [4505] = 231, - [4506] = 4401, - [4507] = 152, - [4508] = 336, - [4509] = 143, - [4510] = 144, - [4511] = 305, - [4512] = 150, - [4513] = 151, - [4514] = 4514, - [4515] = 441, - [4516] = 437, - [4517] = 405, - [4518] = 241, - [4519] = 436, - [4520] = 144, - [4521] = 373, - [4522] = 344, - [4523] = 4523, - [4524] = 428, - [4525] = 4525, + [4458] = 4458, + [4459] = 4459, + [4460] = 4460, + [4461] = 445, + [4462] = 139, + [4463] = 385, + [4464] = 567, + [4465] = 4290, + [4466] = 407, + [4467] = 4467, + [4468] = 4468, + [4469] = 419, + [4470] = 421, + [4471] = 183, + [4472] = 1400, + [4473] = 4329, + [4474] = 4474, + [4475] = 250, + [4476] = 445, + [4477] = 391, + [4478] = 143, + [4479] = 4479, + [4480] = 4388, + [4481] = 222, + [4482] = 4410, + [4483] = 4440, + [4484] = 4441, + [4485] = 144, + [4486] = 142, + [4487] = 1679, + [4488] = 4488, + [4489] = 4489, + [4490] = 4366, + [4491] = 418, + [4492] = 422, + [4493] = 4457, + [4494] = 4397, + [4495] = 568, + [4496] = 4408, + [4497] = 569, + [4498] = 251, + [4499] = 140, + [4500] = 1472, + [4501] = 1409, + [4502] = 570, + [4503] = 4503, + [4504] = 409, + [4505] = 232, + [4506] = 466, + [4507] = 1493, + [4508] = 4489, + [4509] = 4259, + [4510] = 4260, + [4511] = 4264, + [4512] = 4269, + [4513] = 4272, + [4514] = 4273, + [4515] = 4274, + [4516] = 445, + [4517] = 4517, + [4518] = 364, + [4519] = 145, + [4520] = 423, + [4521] = 4489, + [4522] = 571, + [4523] = 572, + [4524] = 573, + [4525] = 574, [4526] = 4526, - [4527] = 4527, - [4528] = 4528, - [4529] = 144, - [4530] = 4530, + [4527] = 191, + [4528] = 138, + [4529] = 575, + [4530] = 137, [4531] = 4531, - [4532] = 4532, - [4533] = 4533, - [4534] = 4534, - [4535] = 4535, - [4536] = 4536, - [4537] = 4537, + [4532] = 576, + [4533] = 1441, + [4534] = 1417, + [4535] = 141, + [4536] = 578, + [4537] = 4275, [4538] = 4538, [4539] = 4539, [4540] = 4540, - [4541] = 4541, - [4542] = 4542, - [4543] = 4543, - [4544] = 4544, - [4545] = 4545, - [4546] = 4546, + [4541] = 183, + [4542] = 4467, + [4543] = 252, + [4544] = 206, + [4545] = 4283, + [4546] = 4284, [4547] = 4547, - [4548] = 4548, - [4549] = 146, - [4550] = 4550, - [4551] = 4551, - [4552] = 4552, - [4553] = 4553, - [4554] = 148, - [4555] = 4555, - [4556] = 145, - [4557] = 4557, + [4548] = 405, + [4549] = 4531, + [4550] = 4286, + [4551] = 4538, + [4552] = 4288, + [4553] = 398, + [4554] = 135, + [4555] = 1474, + [4556] = 1656, + [4557] = 136, [4558] = 4558, - [4559] = 263, - [4560] = 142, + [4559] = 4559, + [4560] = 1644, [4561] = 4561, - [4562] = 1607, - [4563] = 4563, - [4564] = 4564, - [4565] = 4565, - [4566] = 231, - [4567] = 264, - [4568] = 4568, + [4562] = 464, + [4563] = 436, + [4564] = 1379, + [4565] = 185, + [4566] = 1649, + [4567] = 4539, + [4568] = 1514, [4569] = 4569, - [4570] = 4570, - [4571] = 265, - [4572] = 4572, - [4573] = 4573, - [4574] = 266, - [4575] = 262, + [4570] = 193, + [4571] = 549, + [4572] = 4489, + [4573] = 253, + [4574] = 1498, + [4575] = 1509, [4576] = 4576, - [4577] = 4577, - [4578] = 373, - [4579] = 4579, - [4580] = 4580, - [4581] = 4581, - [4582] = 1010, - [4583] = 378, - [4584] = 4584, + [4577] = 4468, + [4578] = 555, + [4579] = 383, + [4580] = 438, + [4581] = 439, + [4582] = 384, + [4583] = 558, + [4584] = 563, [4585] = 4585, - [4586] = 4586, + [4586] = 541, [4587] = 4587, [4588] = 4588, [4589] = 4589, - [4590] = 4590, + [4590] = 141, [4591] = 4591, [4592] = 4592, - [4593] = 384, - [4594] = 4594, - [4595] = 241, - [4596] = 4596, - [4597] = 4597, + [4593] = 4593, + [4594] = 251, + [4595] = 4595, + [4596] = 418, + [4597] = 193, [4598] = 4598, - [4599] = 430, - [4600] = 4600, - [4601] = 4601, + [4599] = 4599, + [4600] = 419, + [4601] = 4479, [4602] = 4602, [4603] = 4603, - [4604] = 4604, - [4605] = 4605, + [4604] = 252, + [4605] = 466, [4606] = 4606, - [4607] = 4607, - [4608] = 4608, + [4607] = 556, + [4608] = 143, [4609] = 4609, - [4610] = 4610, - [4611] = 4611, + [4610] = 2386, + [4611] = 1727, [4612] = 4612, [4613] = 4613, - [4614] = 421, - [4615] = 4615, + [4614] = 1722, + [4615] = 253, [4616] = 4616, - [4617] = 4617, - [4618] = 4618, - [4619] = 4619, - [4620] = 4620, - [4621] = 4621, - [4622] = 4622, - [4623] = 219, - [4624] = 4624, - [4625] = 4625, - [4626] = 4626, - [4627] = 4627, - [4628] = 4628, - [4629] = 4629, - [4630] = 4630, - [4631] = 4631, - [4632] = 4632, - [4633] = 4633, + [4617] = 250, + [4618] = 537, + [4619] = 514, + [4620] = 515, + [4621] = 1723, + [4622] = 445, + [4623] = 422, + [4624] = 140, + [4625] = 438, + [4626] = 206, + [4627] = 1719, + [4628] = 421, + [4629] = 1962, + [4630] = 538, + [4631] = 516, + [4632] = 439, + [4633] = 536, [4634] = 4634, [4635] = 4635, [4636] = 4636, - [4637] = 441, - [4638] = 405, - [4639] = 428, - [4640] = 4640, - [4641] = 434, + [4637] = 498, + [4638] = 4638, + [4639] = 553, + [4640] = 204, + [4641] = 499, [4642] = 4642, - [4643] = 4643, - [4644] = 4644, - [4645] = 4645, - [4646] = 4646, - [4647] = 263, - [4648] = 436, - [4649] = 4649, - [4650] = 4650, - [4651] = 968, - [4652] = 971, - [4653] = 437, - [4654] = 4654, - [4655] = 4655, - [4656] = 986, - [4657] = 988, - [4658] = 4658, + [4643] = 571, + [4644] = 555, + [4645] = 517, + [4646] = 518, + [4647] = 1679, + [4648] = 4540, + [4649] = 561, + [4650] = 423, + [4651] = 572, + [4652] = 4652, + [4653] = 573, + [4654] = 141, + [4655] = 574, + [4656] = 549, + [4657] = 208, + [4658] = 557, [4659] = 4659, - [4660] = 146, - [4661] = 441, - [4662] = 148, - [4663] = 147, - [4664] = 149, - [4665] = 4665, - [4666] = 251, - [4667] = 429, + [4660] = 503, + [4661] = 4661, + [4662] = 575, + [4663] = 576, + [4664] = 466, + [4665] = 578, + [4666] = 4666, + [4667] = 4667, [4668] = 4668, - [4669] = 427, - [4670] = 4670, - [4671] = 264, + [4669] = 4669, + [4670] = 1974, + [4671] = 520, [4672] = 4672, - [4673] = 4673, - [4674] = 4674, - [4675] = 154, + [4673] = 521, + [4674] = 144, + [4675] = 142, [4676] = 4676, - [4677] = 390, - [4678] = 4678, - [4679] = 431, - [4680] = 1154, - [4681] = 143, - [4682] = 241, - [4683] = 4683, + [4677] = 138, + [4678] = 137, + [4679] = 4561, + [4680] = 1962, + [4681] = 4681, + [4682] = 4682, + [4683] = 589, [4684] = 4684, - [4685] = 265, - [4686] = 1175, + [4685] = 205, + [4686] = 140, [4687] = 4687, - [4688] = 147, - [4689] = 149, - [4690] = 4690, - [4691] = 4523, + [4688] = 1974, + [4689] = 1493, + [4690] = 139, + [4691] = 4526, [4692] = 4692, - [4693] = 196, + [4693] = 4693, [4694] = 4694, - [4695] = 266, - [4696] = 4696, - [4697] = 145, + [4695] = 464, + [4696] = 564, + [4697] = 436, [4698] = 4698, - [4699] = 417, - [4700] = 400, - [4701] = 388, + [4699] = 201, + [4700] = 1474, + [4701] = 539, [4702] = 4702, [4703] = 4703, - [4704] = 231, - [4705] = 4705, + [4704] = 139, + [4705] = 540, [4706] = 4706, [4707] = 4707, - [4708] = 1138, - [4709] = 4709, - [4710] = 4710, - [4711] = 1616, + [4708] = 1514, + [4709] = 4517, + [4710] = 522, + [4711] = 4558, [4712] = 4712, - [4713] = 305, - [4714] = 4714, - [4715] = 312, - [4716] = 317, - [4717] = 321, - [4718] = 266, - [4719] = 579, - [4720] = 4720, - [4721] = 4721, - [4722] = 1912, - [4723] = 295, - [4724] = 4527, - [4725] = 4577, - [4726] = 580, - [4727] = 4592, - [4728] = 581, - [4729] = 4594, - [4730] = 582, - [4731] = 4616, - [4732] = 4628, - [4733] = 583, - [4734] = 584, - [4735] = 4645, - [4736] = 351, - [4737] = 4655, - [4738] = 325, - [4739] = 4670, - [4740] = 4690, - [4741] = 4692, - [4742] = 4702, - [4743] = 585, - [4744] = 326, + [4713] = 558, + [4714] = 523, + [4715] = 563, + [4716] = 4716, + [4717] = 1728, + [4718] = 4718, + [4719] = 567, + [4720] = 524, + [4721] = 1928, + [4722] = 525, + [4723] = 4723, + [4724] = 542, + [4725] = 526, + [4726] = 527, + [4727] = 528, + [4728] = 4728, + [4729] = 529, + [4730] = 4585, + [4731] = 4731, + [4732] = 4732, + [4733] = 191, + [4734] = 530, + [4735] = 1928, + [4736] = 183, + [4737] = 531, + [4738] = 1729, + [4739] = 1498, + [4740] = 4488, + [4741] = 532, + [4742] = 185, + [4743] = 1720, + [4744] = 533, [4745] = 4745, - [4746] = 4746, - [4747] = 4747, - [4748] = 328, - [4749] = 194, - [4750] = 202, - [4751] = 428, - [4752] = 434, - [4753] = 4526, - [4754] = 4624, - [4755] = 146, + [4746] = 1721, + [4747] = 534, + [4748] = 471, + [4749] = 1509, + [4750] = 568, + [4751] = 569, + [4752] = 4752, + [4753] = 570, + [4754] = 535, + [4755] = 1726, [4756] = 4756, - [4757] = 4640, - [4758] = 1616, - [4759] = 441, - [4760] = 194, - [4761] = 265, - [4762] = 576, - [4763] = 196, - [4764] = 986, - [4765] = 988, - [4766] = 4745, - [4767] = 4767, - [4768] = 4745, - [4769] = 4720, - [4770] = 1607, - [4771] = 4642, - [4772] = 577, - [4773] = 219, - [4774] = 436, - [4775] = 306, - [4776] = 578, - [4777] = 148, - [4778] = 437, - [4779] = 1062, + [4757] = 519, + [4758] = 4758, + [4759] = 4759, + [4760] = 553, + [4761] = 4761, + [4762] = 2872, + [4763] = 182, + [4764] = 532, + [4765] = 4765, + [4766] = 2458, + [4767] = 143, + [4768] = 516, + [4769] = 589, + [4770] = 516, + [4771] = 184, + [4772] = 532, + [4773] = 4773, + [4774] = 498, + [4775] = 514, + [4776] = 561, + [4777] = 533, + [4778] = 515, + [4779] = 4779, [4780] = 4780, - [4781] = 304, - [4782] = 4782, - [4783] = 147, - [4784] = 149, - [4785] = 331, - [4786] = 4721, + [4781] = 515, + [4782] = 589, + [4783] = 4783, + [4784] = 556, + [4785] = 4785, + [4786] = 4786, [4787] = 4787, - [4788] = 1010, - [4789] = 4789, - [4790] = 264, - [4791] = 251, - [4792] = 219, - [4793] = 336, - [4794] = 210, - [4795] = 302, - [4796] = 4745, - [4797] = 1154, - [4798] = 2155, - [4799] = 2132, - [4800] = 4800, - [4801] = 429, - [4802] = 572, - [4803] = 427, + [4788] = 517, + [4789] = 533, + [4790] = 518, + [4791] = 534, + [4792] = 4792, + [4793] = 4793, + [4794] = 527, + [4795] = 204, + [4796] = 4796, + [4797] = 535, + [4798] = 557, + [4799] = 4799, + [4800] = 1722, + [4801] = 144, + [4802] = 4756, + [4803] = 520, [4804] = 4804, - [4805] = 1175, - [4806] = 1123, - [4807] = 263, - [4808] = 573, - [4809] = 574, - [4810] = 430, - [4811] = 431, - [4812] = 344, - [4813] = 264, + [4805] = 573, + [4806] = 142, + [4807] = 536, + [4808] = 537, + [4809] = 1723, + [4810] = 564, + [4811] = 4642, + [4812] = 574, + [4813] = 572, [4814] = 575, - [4815] = 152, + [4815] = 576, [4816] = 4816, - [4817] = 421, - [4818] = 345, - [4819] = 4557, - [4820] = 265, - [4821] = 4821, - [4822] = 4822, - [4823] = 266, - [4824] = 1138, - [4825] = 4825, - [4826] = 4826, - [4827] = 346, - [4828] = 152, - [4829] = 475, - [4830] = 203, - [4831] = 150, - [4832] = 151, - [4833] = 347, - [4834] = 4834, - [4835] = 349, - [4836] = 142, - [4837] = 4746, - [4838] = 4747, - [4839] = 441, - [4840] = 350, - [4841] = 968, - [4842] = 1684, - [4843] = 1698, - [4844] = 262, - [4845] = 4683, - [4846] = 150, - [4847] = 151, - [4848] = 145, - [4849] = 4710, - [4850] = 4625, - [4851] = 971, - [4852] = 4611, - [4853] = 263, - [4854] = 4603, - [4855] = 571, - [4856] = 296, - [4857] = 4834, - [4858] = 322, + [4817] = 517, + [4818] = 4818, + [4819] = 578, + [4820] = 534, + [4821] = 499, + [4822] = 524, + [4823] = 538, + [4824] = 518, + [4825] = 539, + [4826] = 540, + [4827] = 521, + [4828] = 4716, + [4829] = 1719, + [4830] = 4759, + [4831] = 4831, + [4832] = 4832, + [4833] = 4833, + [4834] = 1729, + [4835] = 4666, + [4836] = 1195, + [4837] = 549, + [4838] = 1974, + [4839] = 4839, + [4840] = 4672, + [4841] = 4831, + [4842] = 519, + [4843] = 4752, + [4844] = 3105, + [4845] = 519, + [4846] = 522, + [4847] = 4847, + [4848] = 208, + [4849] = 1720, + [4850] = 4850, + [4851] = 4851, + [4852] = 201, + [4853] = 535, + [4854] = 205, + [4855] = 4855, + [4856] = 2433, + [4857] = 525, + [4858] = 4676, [4859] = 4859, - [4860] = 579, - [4861] = 4821, - [4862] = 2142, - [4863] = 146, - [4864] = 559, - [4865] = 4865, - [4866] = 585, - [4867] = 4867, - [4868] = 148, - [4869] = 4869, - [4870] = 1010, - [4871] = 145, - [4872] = 4872, - [4873] = 488, - [4874] = 231, - [4875] = 486, - [4876] = 4767, + [4860] = 4851, + [4861] = 4861, + [4862] = 4862, + [4863] = 4863, + [4864] = 4716, + [4865] = 539, + [4866] = 4866, + [4867] = 536, + [4868] = 184, + [4869] = 564, + [4870] = 537, + [4871] = 4731, + [4872] = 530, + [4873] = 538, + [4874] = 4874, + [4875] = 184, + [4876] = 4876, [4877] = 4877, - [4878] = 561, - [4879] = 150, - [4880] = 523, - [4881] = 4881, - [4882] = 4882, - [4883] = 4883, - [4884] = 4884, - [4885] = 545, - [4886] = 4886, - [4887] = 151, - [4888] = 504, - [4889] = 535, - [4890] = 2125, - [4891] = 1123, - [4892] = 241, - [4893] = 540, - [4894] = 525, + [4878] = 4878, + [4879] = 514, + [4880] = 568, + [4881] = 1928, + [4882] = 531, + [4883] = 569, + [4884] = 541, + [4885] = 524, + [4886] = 525, + [4887] = 2861, + [4888] = 540, + [4889] = 4889, + [4890] = 520, + [4891] = 4891, + [4892] = 542, + [4893] = 1721, + [4894] = 1728, [4895] = 4895, - [4896] = 4896, - [4897] = 583, - [4898] = 543, - [4899] = 4899, - [4900] = 202, - [4901] = 4901, - [4902] = 519, - [4903] = 492, + [4896] = 1726, + [4897] = 182, + [4898] = 4898, + [4899] = 1727, + [4900] = 523, + [4901] = 521, + [4902] = 528, + [4903] = 4903, [4904] = 4904, - [4905] = 2605, - [4906] = 154, - [4907] = 580, - [4908] = 546, - [4909] = 4909, - [4910] = 1062, - [4911] = 1912, - [4912] = 547, - [4913] = 477, - [4914] = 4914, - [4915] = 4915, + [4905] = 503, + [4906] = 553, + [4907] = 526, + [4908] = 561, + [4909] = 4895, + [4910] = 4861, + [4911] = 527, + [4912] = 4668, + [4913] = 4669, + [4914] = 193, + [4915] = 4866, [4916] = 4916, - [4917] = 1684, - [4918] = 203, - [4919] = 146, - [4920] = 148, - [4921] = 145, - [4922] = 4922, - [4923] = 143, - [4924] = 4756, - [4925] = 548, - [4926] = 4926, - [4927] = 549, - [4928] = 522, - [4929] = 211, - [4930] = 144, - [4931] = 4931, - [4932] = 1880, - [4933] = 1883, - [4934] = 2134, - [4935] = 4935, - [4936] = 152, - [4937] = 4937, - [4938] = 4938, - [4939] = 390, - [4940] = 489, - [4941] = 550, - [4942] = 475, - [4943] = 4943, - [4944] = 219, - [4945] = 537, - [4946] = 1946, - [4947] = 1947, - [4948] = 4822, - [4949] = 582, - [4950] = 499, + [4917] = 4687, + [4918] = 1962, + [4919] = 571, + [4920] = 4920, + [4921] = 2386, + [4922] = 526, + [4923] = 528, + [4924] = 4924, + [4925] = 529, + [4926] = 530, + [4927] = 2880, + [4928] = 529, + [4929] = 557, + [4930] = 4930, + [4931] = 4833, + [4932] = 191, + [4933] = 4681, + [4934] = 471, + [4935] = 570, + [4936] = 531, + [4937] = 503, + [4938] = 555, + [4939] = 4939, + [4940] = 523, + [4941] = 522, + [4942] = 558, + [4943] = 563, + [4944] = 4944, + [4945] = 556, + [4946] = 567, + [4947] = 4947, + [4948] = 4948, + [4949] = 4939, + [4950] = 4950, [4951] = 4951, - [4952] = 4714, - [4953] = 4953, - [4954] = 218, - [4955] = 4955, - [4956] = 538, - [4957] = 491, + [4952] = 4952, + [4953] = 541, + [4954] = 4954, + [4955] = 542, + [4956] = 4804, + [4957] = 4957, [4958] = 4958, - [4959] = 217, - [4960] = 4825, - [4961] = 214, - [4962] = 556, - [4963] = 584, + [4959] = 4959, + [4960] = 4960, + [4961] = 4961, + [4962] = 4962, + [4963] = 4963, [4964] = 4964, - [4965] = 2142, + [4965] = 4903, [4966] = 4966, - [4967] = 4967, + [4967] = 188, [4968] = 4968, - [4969] = 384, - [4970] = 194, + [4969] = 4969, + [4970] = 4970, [4971] = 4971, - [4972] = 476, - [4973] = 557, - [4974] = 2125, + [4972] = 4972, + [4973] = 4779, + [4974] = 183, [4975] = 4975, - [4976] = 581, - [4977] = 4977, - [4978] = 4978, - [4979] = 1924, - [4980] = 507, - [4981] = 533, - [4982] = 4804, - [4983] = 571, - [4984] = 378, - [4985] = 536, + [4976] = 4816, + [4977] = 4818, + [4978] = 4780, + [4979] = 185, + [4980] = 3105, + [4981] = 4981, + [4982] = 2458, + [4983] = 4983, + [4984] = 4984, + [4985] = 4985, [4986] = 4986, - [4987] = 534, - [4988] = 541, - [4989] = 1698, - [4990] = 558, - [4991] = 1899, - [4992] = 1904, - [4993] = 529, - [4994] = 517, - [4995] = 405, - [4996] = 572, - [4997] = 210, - [4998] = 573, - [4999] = 574, - [5000] = 544, - [5001] = 496, - [5002] = 575, - [5003] = 4816, - [5004] = 5004, - [5005] = 2134, + [4987] = 4987, + [4988] = 4988, + [4989] = 4989, + [4990] = 4990, + [4991] = 4991, + [4992] = 4916, + [4993] = 4993, + [4994] = 4994, + [4995] = 4859, + [4996] = 4863, + [4997] = 201, + [4998] = 2433, + [4999] = 4999, + [5000] = 208, + [5001] = 5001, + [5002] = 5002, + [5003] = 5003, + [5004] = 204, + [5005] = 5005, [5006] = 5006, - [5007] = 373, - [5008] = 417, - [5009] = 196, - [5010] = 1940, - [5011] = 1943, - [5012] = 400, - [5013] = 388, - [5014] = 576, - [5015] = 577, - [5016] = 578, - [5017] = 539, + [5007] = 5007, + [5008] = 5008, + [5009] = 205, + [5010] = 5010, + [5011] = 4876, + [5012] = 4877, + [5013] = 5013, + [5014] = 5014, + [5015] = 5015, + [5016] = 5016, + [5017] = 5017, [5018] = 5018, - [5019] = 571, - [5020] = 190, - [5021] = 475, - [5022] = 4899, - [5023] = 522, - [5024] = 5024, - [5025] = 4909, - [5026] = 4922, - [5027] = 476, - [5028] = 5028, - [5029] = 5029, - [5030] = 5030, - [5031] = 203, - [5032] = 557, - [5033] = 441, - [5034] = 540, - [5035] = 543, - [5036] = 4914, - [5037] = 2635, - [5038] = 2638, - [5039] = 428, - [5040] = 5040, - [5041] = 537, + [5019] = 5019, + [5020] = 5020, + [5021] = 5021, + [5022] = 3248, + [5023] = 187, + [5024] = 187, + [5025] = 5025, + [5026] = 5021, + [5027] = 5025, + [5028] = 3127, + [5029] = 188, + [5030] = 189, + [5031] = 4944, + [5032] = 4765, + [5033] = 5033, + [5034] = 4855, + [5035] = 5035, + [5036] = 5036, + [5037] = 4874, + [5038] = 5038, + [5039] = 5039, + [5040] = 5033, + [5041] = 5041, [5042] = 5042, - [5043] = 434, - [5044] = 5044, - [5045] = 5045, - [5046] = 263, - [5047] = 5047, - [5048] = 5048, + [5043] = 5043, + [5044] = 5036, + [5045] = 189, + [5046] = 199, + [5047] = 200, + [5048] = 190, [5049] = 5049, - [5050] = 264, - [5051] = 5030, - [5052] = 558, + [5050] = 5050, + [5051] = 549, + [5052] = 4796, [5053] = 5053, - [5054] = 211, - [5055] = 427, + [5054] = 5054, + [5055] = 5055, [5056] = 5056, - [5057] = 529, - [5058] = 265, - [5059] = 429, - [5060] = 266, - [5061] = 534, - [5062] = 214, - [5063] = 507, - [5064] = 5064, - [5065] = 5018, - [5066] = 549, - [5067] = 1924, - [5068] = 5068, - [5069] = 4872, - [5070] = 538, - [5071] = 2125, - [5072] = 5072, - [5073] = 430, - [5074] = 5074, - [5075] = 496, - [5076] = 431, - [5077] = 436, - [5078] = 477, - [5079] = 4915, - [5080] = 2134, - [5081] = 217, + [5057] = 183, + [5058] = 2386, + [5059] = 555, + [5060] = 558, + [5061] = 563, + [5062] = 567, + [5063] = 185, + [5064] = 4850, + [5065] = 568, + [5066] = 569, + [5067] = 570, + [5068] = 4839, + [5069] = 199, + [5070] = 200, + [5071] = 190, + [5072] = 571, + [5073] = 572, + [5074] = 573, + [5075] = 574, + [5076] = 575, + [5077] = 576, + [5078] = 578, + [5079] = 5079, + [5080] = 5080, + [5081] = 4793, [5082] = 5082, - [5083] = 5083, - [5084] = 5084, - [5085] = 5018, + [5083] = 1962, + [5084] = 4799, + [5085] = 1974, [5086] = 5086, - [5087] = 559, - [5088] = 2605, - [5089] = 218, + [5087] = 5087, + [5088] = 5088, + [5089] = 5089, [5090] = 5090, - [5091] = 492, - [5092] = 437, - [5093] = 544, - [5094] = 5094, + [5091] = 5091, + [5092] = 1928, + [5093] = 5093, + [5094] = 4773, [5095] = 5095, - [5096] = 5096, - [5097] = 147, - [5098] = 149, + [5096] = 4891, + [5097] = 5093, + [5098] = 183, [5099] = 5099, - [5100] = 5100, - [5101] = 572, - [5102] = 4904, - [5103] = 573, - [5104] = 489, - [5105] = 574, + [5100] = 185, + [5101] = 189, + [5102] = 3105, + [5103] = 199, + [5104] = 200, + [5105] = 190, [5106] = 5106, - [5107] = 575, - [5108] = 488, - [5109] = 5109, - [5110] = 533, - [5111] = 548, - [5112] = 1940, - [5113] = 1943, + [5107] = 184, + [5108] = 4716, + [5109] = 4904, + [5110] = 5110, + [5111] = 1195, + [5112] = 5112, + [5113] = 2433, [5114] = 5114, [5115] = 5115, - [5116] = 577, - [5117] = 578, - [5118] = 491, - [5119] = 486, + [5116] = 5116, + [5117] = 5117, + [5118] = 5118, + [5119] = 5119, [5120] = 5120, - [5121] = 545, - [5122] = 517, - [5123] = 4958, - [5124] = 1946, - [5125] = 1947, + [5121] = 4592, + [5122] = 4602, + [5123] = 5120, + [5124] = 193, + [5125] = 3127, [5126] = 5126, - [5127] = 561, - [5128] = 579, - [5129] = 580, - [5130] = 581, - [5131] = 582, - [5132] = 583, - [5133] = 584, - [5134] = 585, - [5135] = 5135, - [5136] = 1899, - [5137] = 499, - [5138] = 5072, - [5139] = 5139, + [5127] = 5127, + [5128] = 2458, + [5129] = 5129, + [5130] = 191, + [5131] = 193, + [5132] = 5132, + [5133] = 134, + [5134] = 183, + [5135] = 184, + [5136] = 191, + [5137] = 5120, + [5138] = 3248, + [5139] = 183, [5140] = 5140, - [5141] = 4951, - [5142] = 5142, - [5143] = 4877, + [5141] = 183, + [5142] = 5120, + [5143] = 185, [5144] = 5144, - [5145] = 504, - [5146] = 5146, - [5147] = 5147, - [5148] = 5148, - [5149] = 202, - [5150] = 539, - [5151] = 231, - [5152] = 5106, - [5153] = 5109, - [5154] = 5154, - [5155] = 5140, - [5156] = 241, - [5157] = 5157, - [5158] = 541, - [5159] = 5159, - [5160] = 546, - [5161] = 5161, - [5162] = 5162, - [5163] = 219, - [5164] = 5159, - [5165] = 191, + [5145] = 5145, + [5146] = 5120, + [5147] = 5119, + [5148] = 193, + [5149] = 3105, + [5150] = 185, + [5151] = 191, + [5152] = 216, + [5153] = 202, + [5154] = 5120, + [5155] = 5120, + [5156] = 3248, + [5157] = 3127, + [5158] = 189, + [5159] = 199, + [5160] = 200, + [5161] = 190, + [5162] = 3105, + [5163] = 185, + [5164] = 205, + [5165] = 3248, [5166] = 5166, [5167] = 5167, [5168] = 5168, - [5169] = 519, + [5169] = 5169, [5170] = 5170, - [5171] = 5171, - [5172] = 5172, - [5173] = 1407, - [5174] = 535, - [5175] = 5175, - [5176] = 191, - [5177] = 523, - [5178] = 5168, - [5179] = 525, - [5180] = 421, - [5181] = 547, - [5182] = 550, - [5183] = 190, - [5184] = 5184, - [5185] = 1904, - [5186] = 536, - [5187] = 4895, - [5188] = 556, - [5189] = 1880, - [5190] = 5190, - [5191] = 1883, - [5192] = 5192, + [5171] = 5169, + [5172] = 5170, + [5173] = 204, + [5174] = 205, + [5175] = 135, + [5176] = 199, + [5177] = 200, + [5178] = 5178, + [5179] = 5179, + [5180] = 190, + [5181] = 201, + [5182] = 5129, + [5183] = 5178, + [5184] = 5179, + [5185] = 185, + [5186] = 5186, + [5187] = 5187, + [5188] = 208, + [5189] = 136, + [5190] = 204, + [5191] = 201, + [5192] = 205, [5193] = 5193, - [5194] = 5194, - [5195] = 2142, - [5196] = 576, - [5197] = 2635, - [5198] = 5115, + [5194] = 3127, + [5195] = 1195, + [5196] = 4947, + [5197] = 208, + [5198] = 193, [5199] = 5199, - [5200] = 5200, - [5201] = 5201, - [5202] = 537, - [5203] = 538, - [5204] = 152, - [5205] = 5205, - [5206] = 430, - [5207] = 431, - [5208] = 218, - [5209] = 5209, - [5210] = 507, - [5211] = 539, - [5212] = 540, + [5200] = 189, + [5201] = 4758, + [5202] = 191, + [5203] = 183, + [5204] = 5178, + [5205] = 5169, + [5206] = 5170, + [5207] = 5179, + [5208] = 4761, + [5209] = 194, + [5210] = 206, + [5211] = 135, + [5212] = 183, [5213] = 5213, [5214] = 5214, - [5215] = 5215, - [5216] = 541, - [5217] = 5217, - [5218] = 5218, - [5219] = 5095, - [5220] = 5220, - [5221] = 543, - [5222] = 5222, - [5223] = 5223, + [5215] = 193, + [5216] = 5140, + [5217] = 4862, + [5218] = 5169, + [5219] = 5170, + [5220] = 5169, + [5221] = 5170, + [5222] = 191, + [5223] = 324, [5224] = 5224, - [5225] = 5083, - [5226] = 5094, - [5227] = 488, - [5228] = 5084, - [5229] = 194, - [5230] = 5230, - [5231] = 5231, - [5232] = 5232, - [5233] = 544, - [5234] = 5234, - [5235] = 150, - [5236] = 217, - [5237] = 5237, - [5238] = 5238, - [5239] = 151, - [5240] = 5240, - [5241] = 5241, - [5242] = 3149, - [5243] = 5243, - [5244] = 5244, - [5245] = 492, - [5246] = 211, - [5247] = 476, - [5248] = 504, - [5249] = 5249, - [5250] = 5193, - [5251] = 194, - [5252] = 2605, - [5253] = 5253, - [5254] = 5064, - [5255] = 5082, - [5256] = 5256, - [5257] = 5257, - [5258] = 3180, - [5259] = 535, - [5260] = 5260, + [5225] = 185, + [5226] = 185, + [5227] = 1195, + [5228] = 5166, + [5229] = 5126, + [5230] = 5127, + [5231] = 5214, + [5232] = 5186, + [5233] = 5114, + [5234] = 4783, + [5235] = 4785, + [5236] = 2468, + [5237] = 5187, + [5238] = 201, + [5239] = 5166, + [5240] = 5213, + [5241] = 208, + [5242] = 3248, + [5243] = 3127, + [5244] = 5167, + [5245] = 5168, + [5246] = 5167, + [5247] = 193, + [5248] = 5168, + [5249] = 204, + [5250] = 136, + [5251] = 5169, + [5252] = 5170, + [5253] = 203, + [5254] = 183, + [5255] = 4792, + [5256] = 216, + [5257] = 202, + [5258] = 134, + [5259] = 191, + [5260] = 204, [5261] = 5261, - [5262] = 421, - [5263] = 486, - [5264] = 192, - [5265] = 5096, - [5266] = 196, - [5267] = 545, - [5268] = 546, - [5269] = 547, + [5262] = 5262, + [5263] = 5262, + [5264] = 206, + [5265] = 1400, + [5266] = 183, + [5267] = 222, + [5268] = 208, + [5269] = 5269, [5270] = 5270, - [5271] = 5271, - [5272] = 5272, - [5273] = 519, - [5274] = 5274, - [5275] = 522, - [5276] = 5276, - [5277] = 196, - [5278] = 5278, - [5279] = 548, - [5280] = 549, - [5281] = 436, - [5282] = 5282, - [5283] = 5283, - [5284] = 550, - [5285] = 5157, - [5286] = 556, - [5287] = 5287, - [5288] = 427, - [5289] = 5120, - [5290] = 534, - [5291] = 5291, - [5292] = 557, - [5293] = 558, - [5294] = 5294, + [5271] = 185, + [5272] = 191, + [5273] = 5269, + [5274] = 140, + [5275] = 5270, + [5276] = 204, + [5277] = 5277, + [5278] = 193, + [5279] = 5269, + [5280] = 205, + [5281] = 5270, + [5282] = 205, + [5283] = 5269, + [5284] = 5270, + [5285] = 5270, + [5286] = 5286, + [5287] = 5269, + [5288] = 5270, + [5289] = 201, + [5290] = 372, + [5291] = 5269, + [5292] = 5270, + [5293] = 5269, + [5294] = 5270, [5295] = 5295, - [5296] = 263, - [5297] = 207, - [5298] = 5298, - [5299] = 5299, - [5300] = 5300, - [5301] = 529, - [5302] = 5302, - [5303] = 5303, - [5304] = 5304, - [5305] = 5142, - [5306] = 5306, - [5307] = 5307, - [5308] = 5243, - [5309] = 5309, - [5310] = 5310, - [5311] = 5311, - [5312] = 517, - [5313] = 5313, - [5314] = 206, - [5315] = 2470, - [5316] = 207, + [5296] = 1195, + [5297] = 5269, + [5298] = 5270, + [5299] = 206, + [5300] = 5261, + [5301] = 191, + [5302] = 5270, + [5303] = 5286, + [5304] = 5261, + [5305] = 5286, + [5306] = 232, + [5307] = 5269, + [5308] = 208, + [5309] = 203, + [5310] = 138, + [5311] = 5262, + [5312] = 1379, + [5313] = 5262, + [5314] = 5314, + [5315] = 5262, + [5316] = 203, [5317] = 208, - [5318] = 198, + [5318] = 137, [5319] = 5319, - [5320] = 5320, - [5321] = 191, - [5322] = 5322, - [5323] = 5323, - [5324] = 5241, - [5325] = 5325, + [5320] = 191, + [5321] = 203, + [5322] = 5286, + [5323] = 5270, + [5324] = 201, + [5325] = 5269, [5326] = 5326, - [5327] = 536, - [5328] = 266, - [5329] = 5329, - [5330] = 428, - [5331] = 5331, - [5332] = 5332, - [5333] = 5333, - [5334] = 5334, - [5335] = 5335, - [5336] = 5056, - [5337] = 5337, - [5338] = 5338, - [5339] = 434, - [5340] = 5340, - [5341] = 5341, - [5342] = 5342, - [5343] = 5343, - [5344] = 5344, - [5345] = 5345, - [5346] = 206, - [5347] = 5347, - [5348] = 208, - [5349] = 198, - [5350] = 5304, - [5351] = 5231, - [5352] = 265, - [5353] = 5126, - [5354] = 5354, - [5355] = 3137, - [5356] = 195, - [5357] = 5135, - [5358] = 301, - [5359] = 5359, - [5360] = 5360, + [5327] = 205, + [5328] = 5270, + [5329] = 5269, + [5330] = 5277, + [5331] = 138, + [5332] = 5326, + [5333] = 137, + [5334] = 5326, + [5335] = 5261, + [5336] = 5262, + [5337] = 5270, + [5338] = 206, + [5339] = 5261, + [5340] = 5270, + [5341] = 5286, + [5342] = 193, + [5343] = 5286, + [5344] = 5269, + [5345] = 139, + [5346] = 5270, + [5347] = 5286, + [5348] = 193, + [5349] = 141, + [5350] = 204, + [5351] = 5270, + [5352] = 201, + [5353] = 5262, + [5354] = 5270, + [5355] = 5261, + [5356] = 5326, + [5357] = 5261, + [5358] = 2837, + [5359] = 345, + [5360] = 301, [5361] = 5361, - [5362] = 5362, - [5363] = 496, - [5364] = 437, - [5365] = 5190, - [5366] = 5366, - [5367] = 477, - [5368] = 264, - [5369] = 533, - [5370] = 5148, - [5371] = 5371, - [5372] = 192, - [5373] = 5042, - [5374] = 5374, - [5375] = 5018, - [5376] = 5376, - [5377] = 195, - [5378] = 441, - [5379] = 5379, - [5380] = 1407, - [5381] = 5272, - [5382] = 523, - [5383] = 5383, - [5384] = 525, - [5385] = 429, - [5386] = 5386, - [5387] = 5194, - [5388] = 5114, - [5389] = 5389, - [5390] = 214, - [5391] = 5391, - [5392] = 5392, - [5393] = 2638, - [5394] = 5394, - [5395] = 5395, - [5396] = 5396, - [5397] = 202, - [5398] = 196, - [5399] = 576, - [5400] = 5396, - [5401] = 196, - [5402] = 191, - [5403] = 5396, - [5404] = 5404, - [5405] = 5405, - [5406] = 194, - [5407] = 5396, - [5408] = 5408, - [5409] = 561, - [5410] = 194, - [5411] = 577, - [5412] = 5412, - [5413] = 574, - [5414] = 5414, - [5415] = 5415, - [5416] = 5416, - [5417] = 196, - [5418] = 5418, - [5419] = 5396, - [5420] = 2142, - [5421] = 571, - [5422] = 194, - [5423] = 579, - [5424] = 5396, - [5425] = 578, - [5426] = 5426, - [5427] = 5427, - [5428] = 2125, - [5429] = 5429, - [5430] = 5430, - [5431] = 580, - [5432] = 581, - [5433] = 5433, - [5434] = 582, - [5435] = 5435, - [5436] = 583, - [5437] = 2635, - [5438] = 575, - [5439] = 584, - [5440] = 5440, - [5441] = 585, - [5442] = 2134, + [5362] = 232, + [5363] = 318, + [5364] = 205, + [5365] = 5365, + [5366] = 299, + [5367] = 300, + [5368] = 301, + [5369] = 302, + [5370] = 303, + [5371] = 304, + [5372] = 305, + [5373] = 307, + [5374] = 309, + [5375] = 310, + [5376] = 311, + [5377] = 313, + [5378] = 345, + [5379] = 318, + [5380] = 323, + [5381] = 333, + [5382] = 335, + [5383] = 337, + [5384] = 342, + [5385] = 1379, + [5386] = 343, + [5387] = 134, + [5388] = 342, + [5389] = 343, + [5390] = 299, + [5391] = 300, + [5392] = 301, + [5393] = 302, + [5394] = 303, + [5395] = 304, + [5396] = 305, + [5397] = 307, + [5398] = 309, + [5399] = 310, + [5400] = 311, + [5401] = 313, + [5402] = 345, + [5403] = 318, + [5404] = 323, + [5405] = 333, + [5406] = 335, + [5407] = 337, + [5408] = 344, + [5409] = 314, + [5410] = 1195, + [5411] = 252, + [5412] = 299, + [5413] = 323, + [5414] = 333, + [5415] = 335, + [5416] = 201, + [5417] = 337, + [5418] = 144, + [5419] = 142, + [5420] = 1720, + [5421] = 1721, + [5422] = 5129, + [5423] = 253, + [5424] = 206, + [5425] = 143, + [5426] = 208, + [5427] = 1726, + [5428] = 5428, + [5429] = 232, + [5430] = 193, + [5431] = 204, + [5432] = 1727, + [5433] = 205, + [5434] = 134, + [5435] = 1400, + [5436] = 344, + [5437] = 216, + [5438] = 222, + [5439] = 302, + [5440] = 436, + [5441] = 206, + [5442] = 5442, [5443] = 5443, - [5444] = 5444, - [5445] = 2470, - [5446] = 203, - [5447] = 5447, - [5448] = 5448, - [5449] = 194, - [5450] = 5396, - [5451] = 5451, - [5452] = 5452, - [5453] = 573, - [5454] = 5086, - [5455] = 202, - [5456] = 381, - [5457] = 5090, - [5458] = 2559, - [5459] = 2570, - [5460] = 206, - [5461] = 207, - [5462] = 208, - [5463] = 198, - [5464] = 559, - [5465] = 196, - [5466] = 5466, - [5467] = 5396, - [5468] = 5412, - [5469] = 5469, - [5470] = 5470, - [5471] = 5471, - [5472] = 2470, - [5473] = 2638, - [5474] = 5474, - [5475] = 3149, - [5476] = 203, - [5477] = 5477, - [5478] = 572, - [5479] = 5479, - [5480] = 5396, - [5481] = 5481, - [5482] = 5482, - [5483] = 5483, - [5484] = 5484, - [5485] = 5485, - [5486] = 5486, - [5487] = 5487, - [5488] = 194, - [5489] = 2664, - [5490] = 196, - [5491] = 5491, - [5492] = 2559, - [5493] = 5493, - [5494] = 5494, - [5495] = 221, - [5496] = 5496, - [5497] = 5371, - [5498] = 1407, - [5499] = 5499, - [5500] = 211, - [5501] = 5501, - [5502] = 214, - [5503] = 5486, - [5504] = 5487, - [5505] = 5505, - [5506] = 5506, - [5507] = 2570, - [5508] = 217, - [5509] = 218, - [5510] = 5493, - [5511] = 5494, - [5512] = 5474, - [5513] = 202, - [5514] = 203, - [5515] = 202, - [5516] = 5516, - [5517] = 5485, - [5518] = 5444, - [5519] = 202, - [5520] = 203, - [5521] = 142, - [5522] = 5299, - [5523] = 206, - [5524] = 5300, - [5525] = 143, - [5526] = 5516, - [5527] = 210, - [5528] = 203, - [5529] = 5491, - [5530] = 204, - [5531] = 1407, - [5532] = 221, - [5533] = 5341, - [5534] = 142, - [5535] = 5486, - [5536] = 5487, - [5537] = 5505, - [5538] = 5506, - [5539] = 211, - [5540] = 214, - [5541] = 5493, - [5542] = 5494, - [5543] = 207, - [5544] = 208, - [5545] = 198, - [5546] = 217, - [5547] = 218, - [5548] = 5516, - [5549] = 5485, - [5550] = 5427, - [5551] = 5466, - [5552] = 5505, - [5553] = 5506, - [5554] = 5484, - [5555] = 219, - [5556] = 5501, - [5557] = 5487, - [5558] = 5493, - [5559] = 5494, - [5560] = 5493, - [5561] = 5494, - [5562] = 5493, - [5563] = 5494, - [5564] = 5564, - [5565] = 202, - [5566] = 5334, - [5567] = 203, - [5568] = 194, - [5569] = 196, - [5570] = 5564, - [5571] = 2559, - [5572] = 2570, - [5573] = 5333, - [5574] = 5335, - [5575] = 144, - [5576] = 5576, - [5577] = 214, - [5578] = 5578, - [5579] = 202, - [5580] = 5580, - [5581] = 5578, - [5582] = 5582, - [5583] = 219, - [5584] = 3697, - [5585] = 5576, - [5586] = 210, - [5587] = 217, - [5588] = 5582, - [5589] = 5576, - [5590] = 5590, - [5591] = 5591, - [5592] = 210, - [5593] = 147, - [5594] = 5594, - [5595] = 149, - [5596] = 5582, - [5597] = 5597, + [5444] = 344, + [5445] = 232, + [5446] = 144, + [5447] = 142, + [5448] = 303, + [5449] = 314, + [5450] = 304, + [5451] = 250, + [5452] = 1719, + [5453] = 1722, + [5454] = 1723, + [5455] = 203, + [5456] = 222, + [5457] = 314, + [5458] = 202, + [5459] = 305, + [5460] = 300, + [5461] = 5428, + [5462] = 5462, + [5463] = 5129, + [5464] = 5464, + [5465] = 143, + [5466] = 203, + [5467] = 307, + [5468] = 201, + [5469] = 445, + [5470] = 1195, + [5471] = 208, + [5472] = 204, + [5473] = 5428, + [5474] = 343, + [5475] = 205, + [5476] = 1498, + [5477] = 309, + [5478] = 1728, + [5479] = 1729, + [5480] = 1509, + [5481] = 134, + [5482] = 251, + [5483] = 216, + [5484] = 310, + [5485] = 202, + [5486] = 201, + [5487] = 342, + [5488] = 5295, + [5489] = 464, + [5490] = 191, + [5491] = 5443, + [5492] = 222, + [5493] = 208, + [5494] = 438, + [5495] = 439, + [5496] = 5443, + [5497] = 343, + [5498] = 1474, + [5499] = 311, + [5500] = 313, + [5501] = 204, + [5502] = 5502, + [5503] = 252, + [5504] = 5504, + [5505] = 134, + [5506] = 436, + [5507] = 300, + [5508] = 301, + [5509] = 253, + [5510] = 5510, + [5511] = 2742, + [5512] = 342, + [5513] = 250, + [5514] = 3058, + [5515] = 1195, + [5516] = 286, + [5517] = 205, + [5518] = 232, + [5519] = 253, + [5520] = 201, + [5521] = 299, + [5522] = 5522, + [5523] = 5523, + [5524] = 208, + [5525] = 5525, + [5526] = 1011, + [5527] = 464, + [5528] = 300, + [5529] = 445, + [5530] = 5295, + [5531] = 5531, + [5532] = 5532, + [5533] = 222, + [5534] = 405, + [5535] = 301, + [5536] = 252, + [5537] = 302, + [5538] = 5538, + [5539] = 5502, + [5540] = 303, + [5541] = 135, + [5542] = 304, + [5543] = 5543, + [5544] = 305, + [5545] = 302, + [5546] = 303, + [5547] = 1498, + [5548] = 5525, + [5549] = 304, + [5550] = 232, + [5551] = 136, + [5552] = 307, + [5553] = 2745, + [5554] = 309, + [5555] = 310, + [5556] = 311, + [5557] = 313, + [5558] = 345, + [5559] = 314, + [5560] = 438, + [5561] = 318, + [5562] = 323, + [5563] = 333, + [5564] = 305, + [5565] = 335, + [5566] = 5543, + [5567] = 439, + [5568] = 307, + [5569] = 5569, + [5570] = 337, + [5571] = 309, + [5572] = 310, + [5573] = 5573, + [5574] = 5574, + [5575] = 145, + [5576] = 2753, + [5577] = 407, + [5578] = 1928, + [5579] = 5510, + [5580] = 364, + [5581] = 251, + [5582] = 250, + [5583] = 311, + [5584] = 313, + [5585] = 5569, + [5586] = 409, + [5587] = 5587, + [5588] = 135, + [5589] = 136, + [5590] = 345, + [5591] = 251, + [5592] = 318, + [5593] = 1962, + [5594] = 323, + [5595] = 285, + [5596] = 1195, + [5597] = 5574, [5598] = 5598, - [5599] = 5578, - [5600] = 5580, - [5601] = 5601, - [5602] = 5602, - [5603] = 5603, - [5604] = 5604, - [5605] = 5605, - [5606] = 5606, - [5607] = 241, - [5608] = 5608, - [5609] = 218, - [5610] = 5610, - [5611] = 5576, - [5612] = 5612, - [5613] = 5582, - [5614] = 5614, + [5599] = 5504, + [5600] = 1474, + [5601] = 134, + [5602] = 135, + [5603] = 136, + [5604] = 327, + [5605] = 5129, + [5606] = 1974, + [5607] = 5523, + [5608] = 328, + [5609] = 5531, + [5610] = 5532, + [5611] = 5538, + [5612] = 1509, + [5613] = 299, + [5614] = 250, [5615] = 5615, - [5616] = 5616, - [5617] = 5617, - [5618] = 5618, - [5619] = 5619, - [5620] = 5620, + [5616] = 252, + [5617] = 253, + [5618] = 204, + [5619] = 333, + [5620] = 335, [5621] = 5621, - [5622] = 211, + [5622] = 337, [5623] = 5623, - [5624] = 5624, - [5625] = 5620, - [5626] = 5626, - [5627] = 5615, - [5628] = 210, - [5629] = 5582, - [5630] = 5576, - [5631] = 5631, - [5632] = 194, + [5624] = 329, + [5625] = 222, + [5626] = 285, + [5627] = 286, + [5628] = 2837, + [5629] = 251, + [5630] = 2694, + [5631] = 344, + [5632] = 5522, [5633] = 5633, - [5634] = 196, - [5635] = 5582, - [5636] = 214, - [5637] = 5578, - [5638] = 5580, - [5639] = 5639, - [5640] = 5640, - [5641] = 217, - [5642] = 5615, - [5643] = 5620, - [5644] = 5582, - [5645] = 218, - [5646] = 5620, - [5647] = 1607, - [5648] = 143, - [5649] = 5582, - [5650] = 211, - [5651] = 1407, - [5652] = 5615, - [5653] = 5582, - [5654] = 5654, - [5655] = 5615, - [5656] = 5582, - [5657] = 5615, - [5658] = 5582, - [5659] = 5615, - [5660] = 5582, - [5661] = 211, + [5634] = 5634, + [5635] = 5635, + [5636] = 5636, + [5637] = 5637, + [5638] = 5634, + [5639] = 5636, + [5640] = 5637, + [5641] = 325, + [5642] = 5642, + [5643] = 5643, + [5644] = 5633, + [5645] = 5645, + [5646] = 5646, + [5647] = 5647, + [5648] = 5648, + [5649] = 5649, + [5650] = 5635, + [5651] = 4072, + [5652] = 5652, + [5653] = 5653, + [5654] = 5634, + [5655] = 5635, + [5656] = 5636, + [5657] = 5637, + [5658] = 1728, + [5659] = 5642, + [5660] = 250, + [5661] = 5633, [5662] = 5662, - [5663] = 5615, - [5664] = 5582, - [5665] = 203, - [5666] = 5615, - [5667] = 5582, - [5668] = 214, - [5669] = 5615, - [5670] = 5582, - [5671] = 211, - [5672] = 217, - [5673] = 5615, - [5674] = 218, - [5675] = 219, - [5676] = 202, - [5677] = 219, - [5678] = 203, - [5679] = 1616, - [5680] = 214, + [5663] = 5648, + [5664] = 5635, + [5665] = 140, + [5666] = 4086, + [5667] = 5634, + [5668] = 5636, + [5669] = 5637, + [5670] = 206, + [5671] = 5642, + [5672] = 5633, + [5673] = 5673, + [5674] = 5674, + [5675] = 5675, + [5676] = 5648, + [5677] = 5635, + [5678] = 5678, + [5679] = 5679, + [5680] = 5634, [5681] = 5681, - [5682] = 5682, - [5683] = 5683, - [5684] = 5684, - [5685] = 144, - [5686] = 5633, - [5687] = 217, - [5688] = 5688, - [5689] = 5689, + [5682] = 5636, + [5683] = 5637, + [5684] = 5642, + [5685] = 5633, + [5686] = 251, + [5687] = 383, + [5688] = 5648, + [5689] = 5635, [5690] = 5690, - [5691] = 5691, - [5692] = 5692, - [5693] = 5693, - [5694] = 5694, - [5695] = 5578, - [5696] = 5580, - [5697] = 5582, - [5698] = 5578, - [5699] = 5615, - [5700] = 5580, - [5701] = 218, - [5702] = 231, - [5703] = 5582, - [5704] = 5576, - [5705] = 5580, - [5706] = 5615, - [5707] = 202, - [5708] = 1880, - [5709] = 5709, - [5710] = 5709, - [5711] = 152, - [5712] = 305, - [5713] = 1883, - [5714] = 1924, - [5715] = 306, - [5716] = 221, - [5717] = 264, - [5718] = 145, - [5719] = 231, - [5720] = 231, - [5721] = 1407, - [5722] = 331, - [5723] = 344, - [5724] = 345, - [5725] = 346, - [5726] = 347, - [5727] = 349, - [5728] = 350, - [5729] = 296, - [5730] = 322, - [5731] = 336, - [5732] = 312, - [5733] = 317, - [5734] = 321, - [5735] = 295, - [5736] = 351, - [5737] = 325, - [5738] = 326, - [5739] = 328, - [5740] = 302, - [5741] = 214, - [5742] = 304, - [5743] = 142, - [5744] = 302, - [5745] = 304, - [5746] = 331, - [5747] = 344, - [5748] = 345, - [5749] = 346, - [5750] = 347, - [5751] = 349, - [5752] = 350, - [5753] = 296, - [5754] = 322, - [5755] = 336, - [5756] = 312, - [5757] = 317, - [5758] = 321, - [5759] = 295, - [5760] = 351, - [5761] = 325, - [5762] = 326, - [5763] = 328, - [5764] = 305, - [5765] = 306, - [5766] = 231, - [5767] = 219, - [5768] = 265, - [5769] = 147, - [5770] = 1899, - [5771] = 149, - [5772] = 1904, - [5773] = 217, - [5774] = 150, - [5775] = 151, - [5776] = 241, - [5777] = 266, - [5778] = 241, - [5779] = 148, - [5780] = 1607, - [5781] = 302, - [5782] = 5709, - [5783] = 1010, - [5784] = 218, - [5785] = 5484, - [5786] = 5484, - [5787] = 203, - [5788] = 328, - [5789] = 5789, - [5790] = 427, - [5791] = 1616, - [5792] = 304, - [5793] = 1407, - [5794] = 1940, - [5795] = 1943, - [5796] = 5796, - [5797] = 211, - [5798] = 142, - [5799] = 331, - [5800] = 241, - [5801] = 146, - [5802] = 3697, - [5803] = 211, - [5804] = 429, - [5805] = 5789, - [5806] = 214, - [5807] = 430, - [5808] = 431, + [5691] = 326, + [5692] = 5634, + [5693] = 5636, + [5694] = 5637, + [5695] = 5642, + [5696] = 5633, + [5697] = 5697, + [5698] = 5648, + [5699] = 5635, + [5700] = 5700, + [5701] = 5642, + [5702] = 5635, + [5703] = 5634, + [5704] = 138, + [5705] = 5642, + [5706] = 137, + [5707] = 5633, + [5708] = 5642, + [5709] = 5648, + [5710] = 5648, + [5711] = 5633, + [5712] = 5635, + [5713] = 2816, + [5714] = 5714, + [5715] = 5634, + [5716] = 5635, + [5717] = 5642, + [5718] = 5633, + [5719] = 1720, + [5720] = 252, + [5721] = 5648, + [5722] = 1721, + [5723] = 5635, + [5724] = 5724, + [5725] = 5725, + [5726] = 203, + [5727] = 5634, + [5728] = 5642, + [5729] = 5633, + [5730] = 5648, + [5731] = 5635, + [5732] = 5634, + [5733] = 5642, + [5734] = 5633, + [5735] = 5648, + [5736] = 5635, + [5737] = 1400, + [5738] = 253, + [5739] = 5634, + [5740] = 5642, + [5741] = 5633, + [5742] = 5648, + [5743] = 5635, + [5744] = 5634, + [5745] = 5642, + [5746] = 5633, + [5747] = 5648, + [5748] = 5635, + [5749] = 5633, + [5750] = 5648, + [5751] = 5635, + [5752] = 1722, + [5753] = 1723, + [5754] = 2817, + [5755] = 5633, + [5756] = 5648, + [5757] = 5635, + [5758] = 141, + [5759] = 206, + [5760] = 5633, + [5761] = 5648, + [5762] = 5635, + [5763] = 5633, + [5764] = 5648, + [5765] = 5635, + [5766] = 203, + [5767] = 5635, + [5768] = 5648, + [5769] = 5635, + [5770] = 5635, + [5771] = 5635, + [5772] = 5635, + [5773] = 5635, + [5774] = 5635, + [5775] = 5635, + [5776] = 5635, + [5777] = 5635, + [5778] = 5635, + [5779] = 5635, + [5780] = 5635, + [5781] = 5648, + [5782] = 5635, + [5783] = 5635, + [5784] = 5635, + [5785] = 5635, + [5786] = 5635, + [5787] = 5635, + [5788] = 5635, + [5789] = 5635, + [5790] = 5635, + [5791] = 5633, + [5792] = 385, + [5793] = 206, + [5794] = 398, + [5795] = 5598, + [5796] = 384, + [5797] = 5662, + [5798] = 5679, + [5799] = 5700, + [5800] = 2742, + [5801] = 139, + [5802] = 203, + [5803] = 5803, + [5804] = 464, + [5805] = 5674, + [5806] = 436, + [5807] = 5675, + [5808] = 398, [5809] = 5809, - [5810] = 217, - [5811] = 218, - [5812] = 344, - [5813] = 345, - [5814] = 5814, - [5815] = 346, - [5816] = 347, - [5817] = 1684, - [5818] = 349, - [5819] = 350, - [5820] = 1698, - [5821] = 1946, - [5822] = 1947, - [5823] = 296, - [5824] = 322, - [5825] = 336, - [5826] = 312, - [5827] = 317, - [5828] = 321, - [5829] = 295, - [5830] = 263, - [5831] = 441, - [5832] = 210, - [5833] = 351, - [5834] = 5834, - [5835] = 325, - [5836] = 326, - [5837] = 5789, - [5838] = 427, - [5839] = 340, - [5840] = 1232, - [5841] = 341, - [5842] = 1407, - [5843] = 262, - [5844] = 5844, - [5845] = 152, - [5846] = 263, + [5810] = 5634, + [5811] = 5811, + [5812] = 5636, + [5813] = 5637, + [5814] = 5642, + [5815] = 135, + [5816] = 2753, + [5817] = 1379, + [5818] = 1379, + [5819] = 391, + [5820] = 391, + [5821] = 5633, + [5822] = 5822, + [5823] = 251, + [5824] = 383, + [5825] = 384, + [5826] = 385, + [5827] = 5827, + [5828] = 3421, + [5829] = 438, + [5830] = 439, + [5831] = 5648, + [5832] = 5648, + [5833] = 1727, + [5834] = 5811, + [5835] = 5635, + [5836] = 5836, + [5837] = 5837, + [5838] = 5634, + [5839] = 5839, + [5840] = 5674, + [5841] = 5636, + [5842] = 5842, + [5843] = 5675, + [5844] = 5636, + [5845] = 1400, + [5846] = 5637, [5847] = 5847, - [5848] = 1684, - [5849] = 150, - [5850] = 5850, - [5851] = 151, - [5852] = 331, - [5853] = 262, + [5848] = 252, + [5849] = 5849, + [5850] = 5637, + [5851] = 5851, + [5852] = 253, + [5853] = 1729, [5854] = 5854, - [5855] = 295, - [5856] = 325, - [5857] = 5857, - [5858] = 5850, - [5859] = 2991, - [5860] = 5854, - [5861] = 5857, - [5862] = 2134, - [5863] = 263, - [5864] = 429, - [5865] = 5865, - [5866] = 326, + [5855] = 445, + [5856] = 5856, + [5857] = 5847, + [5858] = 5642, + [5859] = 136, + [5860] = 5635, + [5861] = 5634, + [5862] = 1719, + [5863] = 5863, + [5864] = 5648, + [5865] = 5636, + [5866] = 5637, [5867] = 5867, - [5868] = 265, - [5869] = 430, - [5870] = 431, - [5871] = 265, - [5872] = 351, - [5873] = 263, - [5874] = 302, - [5875] = 142, - [5876] = 2972, - [5877] = 305, - [5878] = 1010, - [5879] = 306, - [5880] = 265, - [5881] = 266, - [5882] = 5882, - [5883] = 5883, - [5884] = 5884, - [5885] = 2946, - [5886] = 5884, - [5887] = 1407, - [5888] = 5888, - [5889] = 328, - [5890] = 5890, - [5891] = 304, - [5892] = 5888, - [5893] = 264, - [5894] = 5844, - [5895] = 5883, - [5896] = 344, - [5897] = 305, - [5898] = 143, - [5899] = 144, - [5900] = 5900, - [5901] = 345, - [5902] = 266, - [5903] = 211, - [5904] = 5847, - [5905] = 5865, - [5906] = 266, - [5907] = 214, + [5868] = 5868, + [5869] = 5642, + [5870] = 5633, + [5871] = 5871, + [5872] = 5827, + [5873] = 5673, + [5874] = 391, + [5875] = 5875, + [5876] = 185, + [5877] = 5634, + [5878] = 383, + [5879] = 384, + [5880] = 385, + [5881] = 5881, + [5882] = 250, + [5883] = 5648, + [5884] = 5635, + [5885] = 5633, + [5886] = 5634, + [5887] = 5636, + [5888] = 5637, + [5889] = 5642, + [5890] = 5633, + [5891] = 1029, + [5892] = 5892, + [5893] = 183, + [5894] = 5894, + [5895] = 1726, + [5896] = 3438, + [5897] = 5635, + [5898] = 5898, + [5899] = 5899, + [5900] = 1719, + [5901] = 5901, + [5902] = 5902, + [5903] = 5690, + [5904] = 5697, + [5905] = 5875, + [5906] = 5881, + [5907] = 5907, [5908] = 5908, - [5909] = 441, - [5910] = 142, - [5911] = 143, - [5912] = 144, - [5913] = 1698, - [5914] = 251, - [5915] = 5915, - [5916] = 5484, - [5917] = 2994, - [5918] = 217, - [5919] = 5919, - [5920] = 346, - [5921] = 347, - [5922] = 349, - [5923] = 350, - [5924] = 5924, - [5925] = 231, - [5926] = 342, - [5927] = 2142, - [5928] = 306, - [5929] = 218, - [5930] = 264, - [5931] = 264, - [5932] = 251, - [5933] = 321, - [5934] = 241, - [5935] = 2125, - [5936] = 5890, - [5937] = 5900, - [5938] = 5919, - [5939] = 296, - [5940] = 322, - [5941] = 336, - [5942] = 312, - [5943] = 317, + [5909] = 344, + [5910] = 342, + [5911] = 5898, + [5912] = 314, + [5913] = 343, + [5914] = 5914, + [5915] = 5901, + [5916] = 5916, + [5917] = 5917, + [5918] = 134, + [5919] = 206, + [5920] = 1726, + [5921] = 5921, + [5922] = 1727, + [5923] = 5923, + [5924] = 222, + [5925] = 206, + [5926] = 5926, + [5927] = 5927, + [5928] = 5928, + [5929] = 5929, + [5930] = 5927, + [5931] = 193, + [5932] = 232, + [5933] = 5933, + [5934] = 2753, + [5935] = 206, + [5936] = 5936, + [5937] = 1720, + [5938] = 1721, + [5939] = 222, + [5940] = 1493, + [5941] = 5839, + [5942] = 5942, + [5943] = 5598, [5944] = 5944, [5945] = 5945, [5946] = 5946, - [5947] = 5947, - [5948] = 5948, - [5949] = 5945, - [5950] = 5950, - [5951] = 5951, + [5947] = 1728, + [5948] = 1729, + [5949] = 222, + [5950] = 2742, + [5951] = 203, [5952] = 5952, - [5953] = 5953, - [5954] = 5954, + [5953] = 344, + [5954] = 314, [5955] = 5955, - [5956] = 5956, - [5957] = 5945, - [5958] = 5958, - [5959] = 5959, - [5960] = 5960, - [5961] = 5959, - [5962] = 5946, - [5963] = 5947, - [5964] = 5954, - [5965] = 1607, - [5966] = 308, - [5967] = 5953, - [5968] = 5954, - [5969] = 5955, - [5970] = 5956, - [5971] = 5971, - [5972] = 5945, - [5973] = 5973, - [5974] = 1880, - [5975] = 5959, - [5976] = 5946, - [5977] = 210, - [5978] = 5953, - [5979] = 1946, - [5980] = 5954, - [5981] = 5955, - [5982] = 5956, - [5983] = 4401, - [5984] = 373, - [5985] = 5959, - [5986] = 5946, - [5987] = 5945, - [5988] = 5988, - [5989] = 5953, - [5990] = 5954, - [5991] = 5955, - [5992] = 5956, - [5993] = 5946, - [5994] = 5945, - [5995] = 1883, - [5996] = 5959, - [5997] = 5946, - [5998] = 194, - [5999] = 5999, - [6000] = 427, - [6001] = 5953, - [6002] = 5954, - [6003] = 5955, - [6004] = 5956, - [6005] = 5945, - [6006] = 5867, - [6007] = 3033, - [6008] = 6008, - [6009] = 5959, - [6010] = 5946, - [6011] = 3034, - [6012] = 6012, - [6013] = 5953, - [6014] = 5954, - [6015] = 5955, - [6016] = 6016, - [6017] = 5956, - [6018] = 5945, - [6019] = 5954, - [6020] = 5959, - [6021] = 5946, - [6022] = 210, - [6023] = 5955, - [6024] = 378, - [6025] = 6025, - [6026] = 5953, - [6027] = 219, - [6028] = 5956, - [6029] = 6029, - [6030] = 5945, - [6031] = 6031, - [6032] = 5953, - [6033] = 5954, - [6034] = 5959, - [6035] = 5955, - [6036] = 5946, - [6037] = 5955, - [6038] = 144, - [6039] = 1899, - [6040] = 5953, - [6041] = 5956, + [5956] = 5927, + [5957] = 5907, + [5958] = 5842, + [5959] = 5914, + [5960] = 5929, + [5961] = 1514, + [5962] = 232, + [5963] = 362, + [5964] = 5927, + [5965] = 5965, + [5966] = 5966, + [5967] = 5967, + [5968] = 5927, + [5969] = 5929, + [5970] = 5970, + [5971] = 5927, + [5972] = 5929, + [5973] = 5927, + [5974] = 232, + [5975] = 5929, + [5976] = 5929, + [5977] = 206, + [5978] = 143, + [5979] = 5927, + [5980] = 5929, + [5981] = 5981, + [5982] = 5927, + [5983] = 5983, + [5984] = 5929, + [5985] = 5927, + [5986] = 5986, + [5987] = 5929, + [5988] = 1722, + [5989] = 1723, + [5990] = 5927, + [5991] = 5929, + [5992] = 5678, + [5993] = 5927, + [5994] = 5929, + [5995] = 365, + [5996] = 5927, + [5997] = 5997, + [5998] = 5929, + [5999] = 5902, + [6000] = 5927, + [6001] = 5929, + [6002] = 6002, + [6003] = 5927, + [6004] = 139, + [6005] = 5929, + [6006] = 6006, + [6007] = 5929, + [6008] = 144, + [6009] = 142, + [6010] = 5927, + [6011] = 5929, + [6012] = 216, + [6013] = 6013, + [6014] = 1474, + [6015] = 140, + [6016] = 202, + [6017] = 5967, + [6018] = 6006, + [6019] = 141, + [6020] = 5942, + [6021] = 5952, + [6022] = 6022, + [6023] = 6002, + [6024] = 1498, + [6025] = 5945, + [6026] = 5898, + [6027] = 1509, + [6028] = 1400, + [6029] = 5966, + [6030] = 203, + [6031] = 191, + [6032] = 3438, + [6033] = 1474, + [6034] = 6034, + [6035] = 134, + [6036] = 3421, + [6037] = 1498, + [6038] = 5945, + [6039] = 5898, + [6040] = 1379, + [6041] = 1509, [6042] = 5945, - [6043] = 6043, - [6044] = 1904, - [6045] = 5959, - [6046] = 5946, - [6047] = 6047, - [6048] = 441, - [6049] = 5953, - [6050] = 5956, + [6043] = 5898, + [6044] = 5945, + [6045] = 5898, + [6046] = 5945, + [6047] = 5898, + [6048] = 5955, + [6049] = 5945, + [6050] = 5898, [6051] = 5945, - [6052] = 1940, - [6053] = 5959, - [6054] = 5946, - [6055] = 219, - [6056] = 1943, - [6057] = 5953, - [6058] = 6058, - [6059] = 5956, + [6052] = 5898, + [6053] = 5945, + [6054] = 5898, + [6055] = 5945, + [6056] = 5898, + [6057] = 5945, + [6058] = 5898, + [6059] = 6059, [6060] = 5945, - [6061] = 5959, - [6062] = 5946, - [6063] = 6063, - [6064] = 5953, - [6065] = 5956, - [6066] = 5945, - [6067] = 5959, - [6068] = 5946, - [6069] = 6069, - [6070] = 5953, - [6071] = 5956, - [6072] = 5945, - [6073] = 5959, - [6074] = 5946, - [6075] = 5959, - [6076] = 384, - [6077] = 143, - [6078] = 5945, - [6079] = 5959, - [6080] = 5946, - [6081] = 6081, - [6082] = 5945, - [6083] = 5959, - [6084] = 5946, - [6085] = 5953, - [6086] = 5945, - [6087] = 5959, - [6088] = 5946, - [6089] = 5959, - [6090] = 5959, - [6091] = 5946, - [6092] = 5946, - [6093] = 6093, - [6094] = 5946, - [6095] = 5946, - [6096] = 5946, - [6097] = 5946, - [6098] = 5946, - [6099] = 5946, - [6100] = 5946, - [6101] = 5946, - [6102] = 5946, - [6103] = 5946, - [6104] = 5946, - [6105] = 5946, - [6106] = 5946, - [6107] = 5946, - [6108] = 5946, - [6109] = 5946, - [6110] = 5946, - [6111] = 5946, - [6112] = 5946, - [6113] = 5946, - [6114] = 5946, - [6115] = 5946, - [6116] = 5946, - [6117] = 5946, - [6118] = 5946, - [6119] = 5956, - [6120] = 5945, - [6121] = 1235, - [6122] = 2991, - [6123] = 6063, - [6124] = 6069, + [6061] = 5945, + [6062] = 5898, + [6063] = 5945, + [6064] = 5898, + [6065] = 5945, + [6066] = 5898, + [6067] = 5945, + [6068] = 5898, + [6069] = 5945, + [6070] = 5898, + [6071] = 5945, + [6072] = 5898, + [6073] = 5945, + [6074] = 5898, + [6075] = 5945, + [6076] = 5898, + [6077] = 5945, + [6078] = 5898, + [6079] = 5945, + [6080] = 5898, + [6081] = 138, + [6082] = 6082, + [6083] = 137, + [6084] = 6084, + [6085] = 6085, + [6086] = 391, + [6087] = 3421, + [6088] = 3438, + [6089] = 383, + [6090] = 384, + [6091] = 385, + [6092] = 6022, + [6093] = 5929, + [6094] = 5681, + [6095] = 5927, + [6096] = 6096, + [6097] = 3438, + [6098] = 252, + [6099] = 6099, + [6100] = 6100, + [6101] = 6101, + [6102] = 6102, + [6103] = 6103, + [6104] = 6104, + [6105] = 6105, + [6106] = 6106, + [6107] = 6107, + [6108] = 6108, + [6109] = 419, + [6110] = 6110, + [6111] = 3134, + [6112] = 253, + [6113] = 6113, + [6114] = 6114, + [6115] = 1379, + [6116] = 3136, + [6117] = 6117, + [6118] = 421, + [6119] = 138, + [6120] = 438, + [6121] = 6121, + [6122] = 6122, + [6123] = 6123, + [6124] = 1400, [6125] = 6125, - [6126] = 6125, + [6126] = 553, [6127] = 6127, - [6128] = 1947, - [6129] = 144, - [6130] = 5956, - [6131] = 196, + [6128] = 6114, + [6129] = 250, + [6130] = 439, + [6131] = 1474, [6132] = 6132, - [6133] = 1616, - [6134] = 5946, - [6135] = 405, - [6136] = 430, - [6137] = 431, - [6138] = 142, - [6139] = 1607, - [6140] = 6140, - [6141] = 219, - [6142] = 6008, - [6143] = 6143, - [6144] = 6012, - [6145] = 1616, - [6146] = 210, - [6147] = 329, - [6148] = 6029, - [6149] = 5953, - [6150] = 5946, - [6151] = 6008, - [6152] = 6012, - [6153] = 5953, - [6154] = 154, - [6155] = 5954, - [6156] = 5955, - [6157] = 6157, - [6158] = 5956, - [6159] = 5959, - [6160] = 5945, - [6161] = 1924, - [6162] = 6162, - [6163] = 6008, - [6164] = 5945, - [6165] = 5959, - [6166] = 6012, - [6167] = 2946, - [6168] = 429, - [6169] = 5959, + [6133] = 6133, + [6134] = 6123, + [6135] = 6135, + [6136] = 137, + [6137] = 6137, + [6138] = 6138, + [6139] = 6099, + [6140] = 6101, + [6141] = 6102, + [6142] = 6103, + [6143] = 6104, + [6144] = 6105, + [6145] = 6106, + [6146] = 6107, + [6147] = 6123, + [6148] = 6114, + [6149] = 136, + [6150] = 3252, + [6151] = 3253, + [6152] = 6133, + [6153] = 4591, + [6154] = 6154, + [6155] = 6155, + [6156] = 6156, + [6157] = 6099, + [6158] = 6101, + [6159] = 6102, + [6160] = 6103, + [6161] = 6104, + [6162] = 6105, + [6163] = 6106, + [6164] = 6107, + [6165] = 6165, + [6166] = 6123, + [6167] = 6167, + [6168] = 6114, + [6169] = 6114, [6170] = 6170, - [6171] = 6171, - [6172] = 5946, - [6173] = 263, - [6174] = 143, - [6175] = 390, - [6176] = 4434, + [6171] = 6099, + [6172] = 6133, + [6173] = 6173, + [6174] = 6133, + [6175] = 6175, + [6176] = 252, [6177] = 6177, - [6178] = 264, - [6179] = 6179, - [6180] = 6180, - [6181] = 417, - [6182] = 400, - [6183] = 6183, - [6184] = 5953, - [6185] = 265, - [6186] = 266, - [6187] = 6179, - [6188] = 6093, - [6189] = 373, - [6190] = 5954, - [6191] = 5955, - [6192] = 388, - [6193] = 417, - [6194] = 400, - [6195] = 388, - [6196] = 5956, - [6197] = 5956, - [6198] = 5945, - [6199] = 5946, + [6178] = 6099, + [6179] = 6101, + [6180] = 6102, + [6181] = 6103, + [6182] = 6104, + [6183] = 6105, + [6184] = 6106, + [6185] = 6107, + [6186] = 6186, + [6187] = 6187, + [6188] = 6188, + [6189] = 6123, + [6190] = 6114, + [6191] = 464, + [6192] = 232, + [6193] = 208, + [6194] = 6194, + [6195] = 6133, + [6196] = 6101, + [6197] = 6133, + [6198] = 422, + [6199] = 6199, [6200] = 6200, [6201] = 6201, [6202] = 6202, - [6203] = 5945, - [6204] = 417, - [6205] = 142, - [6206] = 6206, - [6207] = 2946, - [6208] = 1880, - [6209] = 1883, - [6210] = 6210, - [6211] = 6211, + [6203] = 6099, + [6204] = 6101, + [6205] = 6102, + [6206] = 6103, + [6207] = 6104, + [6208] = 6105, + [6209] = 6106, + [6210] = 6107, + [6211] = 391, [6212] = 6212, - [6213] = 6210, + [6213] = 6123, [6214] = 6214, - [6215] = 6210, - [6216] = 6216, - [6217] = 6217, - [6218] = 6211, - [6219] = 2991, - [6220] = 5950, - [6221] = 5951, - [6222] = 6210, - [6223] = 210, - [6224] = 6210, - [6225] = 6211, - [6226] = 221, - [6227] = 6210, - [6228] = 6211, - [6229] = 6211, - [6230] = 6211, - [6231] = 219, - [6232] = 148, - [6233] = 231, - [6234] = 6210, - [6235] = 6211, - [6236] = 6211, - [6237] = 6237, - [6238] = 1940, - [6239] = 5988, - [6240] = 5999, + [6215] = 6114, + [6216] = 6103, + [6217] = 6105, + [6218] = 6133, + [6219] = 6102, + [6220] = 6099, + [6221] = 6101, + [6222] = 6102, + [6223] = 6103, + [6224] = 6104, + [6225] = 6105, + [6226] = 6106, + [6227] = 6107, + [6228] = 6201, + [6229] = 6229, + [6230] = 6123, + [6231] = 6114, + [6232] = 6103, + [6233] = 253, + [6234] = 251, + [6235] = 2956, + [6236] = 6133, + [6237] = 6101, + [6238] = 6238, + [6239] = 6239, + [6240] = 201, [6241] = 6241, - [6242] = 6210, - [6243] = 6211, - [6244] = 6244, - [6245] = 1924, - [6246] = 6210, - [6247] = 6211, - [6248] = 6248, - [6249] = 354, - [6250] = 6250, - [6251] = 6210, - [6252] = 6211, - [6253] = 6253, - [6254] = 1010, - [6255] = 147, - [6256] = 6210, - [6257] = 1123, - [6258] = 6211, - [6259] = 149, - [6260] = 5867, - [6261] = 6210, - [6262] = 6262, - [6263] = 6211, - [6264] = 219, - [6265] = 1943, - [6266] = 6210, - [6267] = 6211, - [6268] = 1062, - [6269] = 5952, - [6270] = 6210, - [6271] = 6211, - [6272] = 1946, - [6273] = 380, - [6274] = 1947, - [6275] = 6275, - [6276] = 145, - [6277] = 241, - [6278] = 231, - [6279] = 203, - [6280] = 219, + [6242] = 423, + [6243] = 6243, + [6244] = 6099, + [6245] = 6101, + [6246] = 6102, + [6247] = 6103, + [6248] = 6104, + [6249] = 6105, + [6250] = 6106, + [6251] = 6107, + [6252] = 6252, + [6253] = 6123, + [6254] = 6254, + [6255] = 6114, + [6256] = 6104, + [6257] = 6257, + [6258] = 6133, + [6259] = 6105, + [6260] = 6260, + [6261] = 6261, + [6262] = 6099, + [6263] = 6101, + [6264] = 6102, + [6265] = 6103, + [6266] = 6104, + [6267] = 6105, + [6268] = 6106, + [6269] = 6107, + [6270] = 252, + [6271] = 6271, + [6272] = 6272, + [6273] = 6123, + [6274] = 6114, + [6275] = 556, + [6276] = 6133, + [6277] = 253, + [6278] = 520, + [6279] = 6279, + [6280] = 464, [6281] = 6281, - [6282] = 6282, - [6283] = 5971, - [6284] = 5973, - [6285] = 6132, - [6286] = 6286, - [6287] = 6287, - [6288] = 6288, - [6289] = 6289, - [6290] = 6248, - [6291] = 1899, - [6292] = 1904, - [6293] = 147, - [6294] = 149, - [6295] = 1684, - [6296] = 6296, - [6297] = 6297, - [6298] = 305, - [6299] = 6214, - [6300] = 1010, - [6301] = 146, - [6302] = 1698, - [6303] = 305, - [6304] = 306, - [6305] = 1607, - [6306] = 231, - [6307] = 6210, + [6282] = 6099, + [6283] = 6101, + [6284] = 6102, + [6285] = 6103, + [6286] = 6104, + [6287] = 6105, + [6288] = 6106, + [6289] = 6107, + [6290] = 6123, + [6291] = 436, + [6292] = 6114, + [6293] = 6293, + [6294] = 6294, + [6295] = 6133, + [6296] = 2965, + [6297] = 521, + [6298] = 436, + [6299] = 6099, + [6300] = 6101, + [6301] = 6102, + [6302] = 6103, + [6303] = 6104, + [6304] = 6105, + [6305] = 6106, + [6306] = 6107, + [6307] = 6307, [6308] = 6308, - [6309] = 148, - [6310] = 6310, - [6311] = 145, + [6309] = 6123, + [6310] = 6114, + [6311] = 2951, [6312] = 6312, - [6313] = 6211, - [6314] = 306, - [6315] = 304, - [6316] = 6217, - [6317] = 6317, - [6318] = 6318, - [6319] = 6297, - [6320] = 142, - [6321] = 1684, - [6322] = 6297, - [6323] = 6214, - [6324] = 1616, - [6325] = 1698, - [6326] = 6297, - [6327] = 6214, - [6328] = 6210, - [6329] = 6297, - [6330] = 6214, - [6331] = 6297, - [6332] = 6214, + [6313] = 6133, + [6314] = 6314, + [6315] = 6315, + [6316] = 6316, + [6317] = 6099, + [6318] = 6101, + [6319] = 6102, + [6320] = 6103, + [6321] = 6104, + [6322] = 6105, + [6323] = 6106, + [6324] = 6107, + [6325] = 6325, + [6326] = 6326, + [6327] = 6123, + [6328] = 6328, + [6329] = 6114, + [6330] = 6330, + [6331] = 6331, + [6332] = 6133, [6333] = 6333, - [6334] = 6297, - [6335] = 6214, - [6336] = 6297, - [6337] = 6214, - [6338] = 6338, - [6339] = 6297, - [6340] = 6214, - [6341] = 6341, - [6342] = 6297, - [6343] = 6214, - [6344] = 6297, - [6345] = 6214, - [6346] = 202, - [6347] = 6297, - [6348] = 6214, - [6349] = 241, - [6350] = 6297, - [6351] = 6214, - [6352] = 241, - [6353] = 6297, - [6354] = 6214, - [6355] = 6297, - [6356] = 6214, - [6357] = 6297, - [6358] = 6214, - [6359] = 6297, - [6360] = 6214, - [6361] = 6297, - [6362] = 6214, - [6363] = 6297, - [6364] = 6214, - [6365] = 6297, - [6366] = 6214, - [6367] = 6297, - [6368] = 6214, - [6369] = 6297, - [6370] = 6214, - [6371] = 6210, - [6372] = 6262, - [6373] = 6286, - [6374] = 6211, - [6375] = 373, - [6376] = 2839, - [6377] = 2847, - [6378] = 400, - [6379] = 388, - [6380] = 146, - [6381] = 6381, - [6382] = 210, - [6383] = 6310, - [6384] = 302, - [6385] = 266, - [6386] = 1616, - [6387] = 1010, - [6388] = 6388, - [6389] = 6389, - [6390] = 427, - [6391] = 5215, - [6392] = 6392, - [6393] = 6393, - [6394] = 6394, - [6395] = 6395, - [6396] = 6396, - [6397] = 6397, - [6398] = 6398, - [6399] = 6399, - [6400] = 6400, - [6401] = 6401, - [6402] = 6402, - [6403] = 6403, - [6404] = 6404, - [6405] = 6393, + [6334] = 445, + [6335] = 6335, + [6336] = 6099, + [6337] = 6101, + [6338] = 6102, + [6339] = 6103, + [6340] = 6104, + [6341] = 6105, + [6342] = 6106, + [6343] = 6107, + [6344] = 6344, + [6345] = 6123, + [6346] = 6114, + [6347] = 5997, + [6348] = 6348, + [6349] = 6133, + [6350] = 561, + [6351] = 6351, + [6352] = 6352, + [6353] = 6099, + [6354] = 6101, + [6355] = 6102, + [6356] = 6103, + [6357] = 6104, + [6358] = 6105, + [6359] = 6106, + [6360] = 6107, + [6361] = 6361, + [6362] = 6123, + [6363] = 6363, + [6364] = 6114, + [6365] = 6365, + [6366] = 6133, + [6367] = 6367, + [6368] = 564, + [6369] = 6099, + [6370] = 6101, + [6371] = 6102, + [6372] = 6103, + [6373] = 6104, + [6374] = 6105, + [6375] = 6106, + [6376] = 6107, + [6377] = 6377, + [6378] = 6123, + [6379] = 6379, + [6380] = 6114, + [6381] = 6099, + [6382] = 6133, + [6383] = 6099, + [6384] = 6101, + [6385] = 6102, + [6386] = 6103, + [6387] = 6104, + [6388] = 6105, + [6389] = 6106, + [6390] = 6107, + [6391] = 6123, + [6392] = 6114, + [6393] = 6133, + [6394] = 6106, + [6395] = 6099, + [6396] = 6101, + [6397] = 6102, + [6398] = 6103, + [6399] = 6104, + [6400] = 6105, + [6401] = 6106, + [6402] = 6107, + [6403] = 6123, + [6404] = 6114, + [6405] = 6133, [6406] = 6406, - [6407] = 6399, - [6408] = 6394, - [6409] = 6409, - [6410] = 6403, - [6411] = 6411, - [6412] = 6395, - [6413] = 429, - [6414] = 6414, - [6415] = 441, - [6416] = 6416, - [6417] = 6417, - [6418] = 264, - [6419] = 6419, - [6420] = 6392, - [6421] = 6393, - [6422] = 6394, - [6423] = 6395, - [6424] = 6396, - [6425] = 6397, - [6426] = 6398, - [6427] = 6399, + [6407] = 6099, + [6408] = 6101, + [6409] = 6102, + [6410] = 6103, + [6411] = 6104, + [6412] = 6412, + [6413] = 6106, + [6414] = 6107, + [6415] = 6279, + [6416] = 6123, + [6417] = 6114, + [6418] = 6133, + [6419] = 418, + [6420] = 6099, + [6421] = 6101, + [6422] = 6102, + [6423] = 6103, + [6424] = 6104, + [6425] = 6105, + [6426] = 6106, + [6427] = 6107, [6428] = 6428, - [6429] = 430, - [6430] = 431, - [6431] = 6404, - [6432] = 6432, - [6433] = 6406, - [6434] = 6398, - [6435] = 6435, - [6436] = 6436, - [6437] = 6403, - [6438] = 6438, - [6439] = 143, - [6440] = 144, - [6441] = 5146, - [6442] = 6406, - [6443] = 6443, - [6444] = 6392, - [6445] = 6393, - [6446] = 6394, - [6447] = 6395, - [6448] = 6396, - [6449] = 6397, - [6450] = 6398, - [6451] = 6399, - [6452] = 6452, - [6453] = 6392, - [6454] = 6454, - [6455] = 6404, - [6456] = 6406, - [6457] = 6392, - [6458] = 6393, - [6459] = 6403, - [6460] = 6394, - [6461] = 429, - [6462] = 6244, - [6463] = 427, - [6464] = 219, - [6465] = 6392, - [6466] = 6393, - [6467] = 6394, - [6468] = 6395, - [6469] = 6396, - [6470] = 6397, - [6471] = 6398, - [6472] = 6399, - [6473] = 6395, - [6474] = 6474, - [6475] = 6396, - [6476] = 6404, - [6477] = 6406, - [6478] = 6397, - [6479] = 6398, - [6480] = 1010, - [6481] = 6403, - [6482] = 6399, - [6483] = 6483, - [6484] = 6484, - [6485] = 5139, - [6486] = 6392, - [6487] = 6393, - [6488] = 6394, - [6489] = 6395, - [6490] = 6396, - [6491] = 6397, - [6492] = 6398, - [6493] = 6399, - [6494] = 441, - [6495] = 6495, - [6496] = 6404, - [6497] = 6406, - [6498] = 6392, - [6499] = 6499, - [6500] = 6403, - [6501] = 6501, - [6502] = 6502, - [6503] = 6392, - [6504] = 6504, - [6505] = 6392, - [6506] = 6393, - [6507] = 6394, - [6508] = 6395, - [6509] = 6396, - [6510] = 6397, - [6511] = 6398, - [6512] = 6399, - [6513] = 5171, - [6514] = 6404, - [6515] = 6515, - [6516] = 6406, - [6517] = 1607, - [6518] = 430, - [6519] = 152, - [6520] = 6403, - [6521] = 6393, - [6522] = 431, - [6523] = 6404, - [6524] = 6406, - [6525] = 6392, - [6526] = 6393, - [6527] = 6394, - [6528] = 6395, - [6529] = 6396, - [6530] = 6397, - [6531] = 6398, - [6532] = 6399, - [6533] = 431, - [6534] = 6393, - [6535] = 6404, - [6536] = 6394, - [6537] = 6406, - [6538] = 6395, - [6539] = 6403, - [6540] = 6540, - [6541] = 3234, - [6542] = 6392, - [6543] = 6393, - [6544] = 6394, - [6545] = 6395, - [6546] = 6396, - [6547] = 6397, - [6548] = 6398, - [6549] = 6399, + [6429] = 6123, + [6430] = 6114, + [6431] = 6133, + [6432] = 6123, + [6433] = 6114, + [6434] = 6133, + [6435] = 6123, + [6436] = 6114, + [6437] = 6133, + [6438] = 6123, + [6439] = 6114, + [6440] = 6133, + [6441] = 6123, + [6442] = 6114, + [6443] = 6133, + [6444] = 6123, + [6445] = 6114, + [6446] = 6133, + [6447] = 6123, + [6448] = 6114, + [6449] = 6133, + [6450] = 6123, + [6451] = 6114, + [6452] = 6133, + [6453] = 6453, + [6454] = 6123, + [6455] = 6114, + [6456] = 6133, + [6457] = 6457, + [6458] = 6123, + [6459] = 6114, + [6460] = 6133, + [6461] = 6123, + [6462] = 6114, + [6463] = 6133, + [6464] = 6464, + [6465] = 6123, + [6466] = 6114, + [6467] = 6133, + [6468] = 6123, + [6469] = 6114, + [6470] = 6133, + [6471] = 6123, + [6472] = 6114, + [6473] = 6133, + [6474] = 6123, + [6475] = 6114, + [6476] = 6133, + [6477] = 6477, + [6478] = 6123, + [6479] = 6114, + [6480] = 6133, + [6481] = 6123, + [6482] = 6114, + [6483] = 6133, + [6484] = 6123, + [6485] = 6114, + [6486] = 6133, + [6487] = 6106, + [6488] = 6123, + [6489] = 6114, + [6490] = 6133, + [6491] = 445, + [6492] = 6123, + [6493] = 6114, + [6494] = 6133, + [6495] = 6123, + [6496] = 6114, + [6497] = 6133, + [6498] = 6123, + [6499] = 6114, + [6500] = 6133, + [6501] = 6123, + [6502] = 6114, + [6503] = 6133, + [6504] = 6123, + [6505] = 6114, + [6506] = 6133, + [6507] = 6123, + [6508] = 6114, + [6509] = 6133, + [6510] = 6114, + [6511] = 6133, + [6512] = 6114, + [6513] = 6133, + [6514] = 6114, + [6515] = 6133, + [6516] = 6114, + [6517] = 6133, + [6518] = 6114, + [6519] = 6133, + [6520] = 6520, + [6521] = 6521, + [6522] = 6522, + [6523] = 6523, + [6524] = 6524, + [6525] = 6194, + [6526] = 6102, + [6527] = 6527, + [6528] = 6528, + [6529] = 250, + [6530] = 6530, + [6531] = 2964, + [6532] = 6132, + [6533] = 6412, + [6534] = 6534, + [6535] = 6535, + [6536] = 464, + [6537] = 6133, + [6538] = 445, + [6539] = 514, + [6540] = 515, + [6541] = 557, + [6542] = 464, + [6543] = 438, + [6544] = 439, + [6545] = 5863, + [6546] = 222, + [6547] = 6547, + [6548] = 143, + [6549] = 6099, [6550] = 6550, - [6551] = 5170, - [6552] = 6404, - [6553] = 6406, - [6554] = 6540, - [6555] = 6403, - [6556] = 6556, - [6557] = 6394, - [6558] = 6392, - [6559] = 6393, - [6560] = 6394, - [6561] = 6395, - [6562] = 6396, - [6563] = 6397, - [6564] = 6398, - [6565] = 6399, - [6566] = 6396, - [6567] = 6397, - [6568] = 6404, - [6569] = 6406, - [6570] = 6403, - [6571] = 6398, - [6572] = 265, - [6573] = 6392, - [6574] = 6393, - [6575] = 6394, - [6576] = 6395, - [6577] = 6396, - [6578] = 6397, - [6579] = 6398, - [6580] = 6399, - [6581] = 6581, - [6582] = 6404, - [6583] = 6406, - [6584] = 6403, - [6585] = 6585, - [6586] = 6586, - [6587] = 6392, - [6588] = 6393, - [6589] = 6394, - [6590] = 6395, - [6591] = 6396, - [6592] = 6397, - [6593] = 6398, - [6594] = 6399, - [6595] = 6595, - [6596] = 6404, - [6597] = 6406, - [6598] = 6403, - [6599] = 6599, - [6600] = 6404, - [6601] = 6406, + [6551] = 6551, + [6552] = 6552, + [6553] = 6553, + [6554] = 6554, + [6555] = 6555, + [6556] = 4693, + [6557] = 6557, + [6558] = 6558, + [6559] = 6559, + [6560] = 6560, + [6561] = 1379, + [6562] = 204, + [6563] = 6563, + [6564] = 6523, + [6565] = 445, + [6566] = 135, + [6567] = 136, + [6568] = 5933, + [6569] = 206, + [6570] = 1400, + [6571] = 589, + [6572] = 6101, + [6573] = 6127, + [6574] = 222, + [6575] = 232, + [6576] = 6099, + [6577] = 6101, + [6578] = 6102, + [6579] = 6103, + [6580] = 6104, + [6581] = 6105, + [6582] = 6106, + [6583] = 6107, + [6584] = 6123, + [6585] = 6123, + [6586] = 6102, + [6587] = 6103, + [6588] = 383, + [6589] = 436, + [6590] = 419, + [6591] = 418, + [6592] = 6592, + [6593] = 1498, + [6594] = 421, + [6595] = 2974, + [6596] = 1509, + [6597] = 384, + [6598] = 205, + [6599] = 385, + [6600] = 144, + [6601] = 6601, [6602] = 6602, - [6603] = 6403, - [6604] = 6604, - [6605] = 6404, - [6606] = 6406, - [6607] = 6403, - [6608] = 6608, - [6609] = 6404, - [6610] = 6406, - [6611] = 6403, - [6612] = 6612, - [6613] = 6404, - [6614] = 6406, - [6615] = 6403, - [6616] = 6616, - [6617] = 6404, - [6618] = 6406, - [6619] = 6403, - [6620] = 6620, - [6621] = 6404, - [6622] = 6406, - [6623] = 6403, - [6624] = 263, - [6625] = 6404, - [6626] = 6406, - [6627] = 6403, - [6628] = 6395, - [6629] = 6404, - [6630] = 6406, - [6631] = 6403, - [6632] = 6632, - [6633] = 6404, - [6634] = 6406, - [6635] = 6403, - [6636] = 217, - [6637] = 6404, - [6638] = 6406, - [6639] = 6403, - [6640] = 6640, - [6641] = 6404, + [6603] = 6603, + [6604] = 6535, + [6605] = 438, + [6606] = 517, + [6607] = 439, + [6608] = 6123, + [6609] = 518, + [6610] = 6610, + [6611] = 6611, + [6612] = 6104, + [6613] = 6105, + [6614] = 6106, + [6615] = 6615, + [6616] = 466, + [6617] = 6617, + [6618] = 6618, + [6619] = 6619, + [6620] = 142, + [6621] = 3256, + [6622] = 3257, + [6623] = 6623, + [6624] = 6624, + [6625] = 6625, + [6626] = 6107, + [6627] = 251, + [6628] = 6628, + [6629] = 6629, + [6630] = 6630, + [6631] = 4732, + [6632] = 250, + [6633] = 4786, + [6634] = 6114, + [6635] = 6635, + [6636] = 6636, + [6637] = 423, + [6638] = 6107, + [6639] = 5908, + [6640] = 6110, + [6641] = 251, [6642] = 6406, - [6643] = 6403, - [6644] = 6644, - [6645] = 6404, - [6646] = 6406, - [6647] = 6403, - [6648] = 6403, - [6649] = 6404, - [6650] = 6406, - [6651] = 6403, - [6652] = 436, - [6653] = 6404, - [6654] = 6406, - [6655] = 6403, - [6656] = 6381, - [6657] = 6404, - [6658] = 6406, - [6659] = 6403, - [6660] = 436, - [6661] = 6404, - [6662] = 6406, - [6663] = 6403, - [6664] = 6396, - [6665] = 6404, - [6666] = 6406, - [6667] = 6403, - [6668] = 6397, - [6669] = 6404, - [6670] = 6406, - [6671] = 6403, - [6672] = 6398, - [6673] = 6404, - [6674] = 6406, - [6675] = 6403, - [6676] = 214, - [6677] = 6404, - [6678] = 6406, - [6679] = 6403, - [6680] = 6394, - [6681] = 6404, - [6682] = 6406, - [6683] = 6403, - [6684] = 6684, - [6685] = 6404, - [6686] = 6406, - [6687] = 6403, - [6688] = 6688, - [6689] = 6404, - [6690] = 6406, - [6691] = 6403, - [6692] = 6692, - [6693] = 6404, - [6694] = 6406, - [6695] = 6403, - [6696] = 6399, - [6697] = 6404, - [6698] = 6406, - [6699] = 6403, - [6700] = 6399, - [6701] = 6392, - [6702] = 6406, - [6703] = 6403, - [6704] = 6404, - [6705] = 6406, - [6706] = 6403, - [6707] = 6404, - [6708] = 6406, - [6709] = 6403, - [6710] = 6404, - [6711] = 6406, - [6712] = 6403, - [6713] = 6406, - [6714] = 6403, - [6715] = 6406, - [6716] = 6403, - [6717] = 6406, - [6718] = 6403, - [6719] = 6406, - [6720] = 6403, - [6721] = 6721, - [6722] = 6722, - [6723] = 6474, - [6724] = 150, - [6725] = 421, - [6726] = 2839, - [6727] = 151, - [6728] = 6728, - [6729] = 218, - [6730] = 6399, - [6731] = 6731, - [6732] = 6644, - [6733] = 6392, - [6734] = 6734, - [6735] = 6735, - [6736] = 6736, - [6737] = 6737, - [6738] = 6393, - [6739] = 6739, - [6740] = 6740, - [6741] = 6394, - [6742] = 2847, - [6743] = 6395, - [6744] = 6396, - [6745] = 6499, - [6746] = 6608, - [6747] = 6397, - [6748] = 6398, - [6749] = 6399, - [6750] = 3410, - [6751] = 3522, + [6643] = 3421, + [6644] = 3438, + [6645] = 422, + [6646] = 6123, + [6647] = 438, + [6648] = 6648, + [6649] = 6114, + [6650] = 439, + [6651] = 1474, + [6652] = 6107, + [6653] = 6104, + [6654] = 2946, + [6655] = 6133, + [6656] = 3421, + [6657] = 4588, + [6658] = 135, + [6659] = 6659, + [6660] = 6123, + [6661] = 6648, + [6662] = 6105, + [6663] = 6663, + [6664] = 6664, + [6665] = 6665, + [6666] = 6666, + [6667] = 6667, + [6668] = 6668, + [6669] = 6667, + [6670] = 6670, + [6671] = 6671, + [6672] = 6672, + [6673] = 6673, + [6674] = 6674, + [6675] = 252, + [6676] = 6676, + [6677] = 6677, + [6678] = 6678, + [6679] = 6670, + [6680] = 6121, + [6681] = 6671, + [6682] = 6674, + [6683] = 526, + [6684] = 6678, + [6685] = 6685, + [6686] = 6686, + [6687] = 6664, + [6688] = 6665, + [6689] = 6666, + [6690] = 527, + [6691] = 6668, + [6692] = 6667, + [6693] = 6670, + [6694] = 6122, + [6695] = 6117, + [6696] = 6671, + [6697] = 1474, + [6698] = 6698, + [6699] = 2861, + [6700] = 6700, + [6701] = 6677, + [6702] = 6165, + [6703] = 6703, + [6704] = 6671, + [6705] = 6674, + [6706] = 6678, + [6707] = 6167, + [6708] = 6686, + [6709] = 6664, + [6710] = 6665, + [6711] = 528, + [6712] = 6666, + [6713] = 1498, + [6714] = 6668, + [6715] = 6667, + [6716] = 529, + [6717] = 6314, + [6718] = 6670, + [6719] = 6125, + [6720] = 6331, + [6721] = 143, + [6722] = 6135, + [6723] = 6723, + [6724] = 6724, + [6725] = 6624, + [6726] = 6677, + [6727] = 6527, + [6728] = 6530, + [6729] = 6154, + [6730] = 6674, + [6731] = 1379, + [6732] = 6175, + [6733] = 6678, + [6734] = 6187, + [6735] = 6261, + [6736] = 2965, + [6737] = 6686, + [6738] = 6664, + [6739] = 6665, + [6740] = 4598, + [6741] = 6666, + [6742] = 6686, + [6743] = 6664, + [6744] = 6668, + [6745] = 6667, + [6746] = 6665, + [6747] = 6138, + [6748] = 6670, + [6749] = 6188, + [6750] = 6636, + [6751] = 6252, [6752] = 6752, - [6753] = 6632, - [6754] = 6754, + [6753] = 6333, + [6754] = 6677, [6755] = 6755, - [6756] = 6404, - [6757] = 6757, - [6758] = 6758, - [6759] = 6395, - [6760] = 6404, - [6761] = 6404, - [6762] = 6406, - [6763] = 441, + [6756] = 2951, + [6757] = 3474, + [6758] = 6674, + [6759] = 6241, + [6760] = 6625, + [6761] = 6678, + [6762] = 6671, + [6763] = 1400, [6764] = 6764, - [6765] = 6765, - [6766] = 264, - [6767] = 6767, + [6765] = 6686, + [6766] = 6664, + [6767] = 6665, [6768] = 6768, - [6769] = 231, - [6770] = 263, - [6771] = 6406, - [6772] = 6417, - [6773] = 6404, - [6774] = 6774, - [6775] = 6775, - [6776] = 6406, - [6777] = 6403, - [6778] = 6778, - [6779] = 6779, - [6780] = 266, - [6781] = 427, - [6782] = 6782, - [6783] = 6783, - [6784] = 6784, - [6785] = 3213, - [6786] = 150, - [6787] = 151, - [6788] = 6403, - [6789] = 3239, - [6790] = 6403, - [6791] = 241, - [6792] = 152, - [6793] = 6392, - [6794] = 6794, - [6795] = 6393, - [6796] = 437, - [6797] = 6797, - [6798] = 6394, - [6799] = 6393, - [6800] = 6395, - [6801] = 6396, - [6802] = 6802, - [6803] = 6397, - [6804] = 417, - [6805] = 400, - [6806] = 429, - [6807] = 388, - [6808] = 6398, - [6809] = 6392, - [6810] = 421, - [6811] = 6811, - [6812] = 6812, - [6813] = 6813, - [6814] = 6814, - [6815] = 6393, - [6816] = 6394, - [6817] = 6392, - [6818] = 6393, - [6819] = 6394, - [6820] = 6395, - [6821] = 6396, - [6822] = 6397, - [6823] = 6398, - [6824] = 6399, - [6825] = 6404, - [6826] = 6404, - [6827] = 3519, - [6828] = 3387, - [6829] = 6829, - [6830] = 6830, - [6831] = 6399, - [6832] = 428, + [6769] = 6666, + [6770] = 6520, + [6771] = 6668, + [6772] = 6667, + [6773] = 144, + [6774] = 142, + [6775] = 6670, + [6776] = 6312, + [6777] = 6521, + [6778] = 6628, + [6779] = 571, + [6780] = 6665, + [6781] = 555, + [6782] = 6677, + [6783] = 6522, + [6784] = 5314, + [6785] = 572, + [6786] = 5319, + [6787] = 6674, + [6788] = 6524, + [6789] = 6678, + [6790] = 558, + [6791] = 6315, + [6792] = 6686, + [6793] = 6664, + [6794] = 6665, + [6795] = 6100, + [6796] = 6666, + [6797] = 6108, + [6798] = 6668, + [6799] = 6667, + [6800] = 6670, + [6801] = 6801, + [6802] = 6755, + [6803] = 6170, + [6804] = 6316, + [6805] = 563, + [6806] = 6677, + [6807] = 6610, + [6808] = 6603, + [6809] = 6674, + [6810] = 6674, + [6811] = 6678, + [6812] = 6377, + [6813] = 6686, + [6814] = 6664, + [6815] = 6665, + [6816] = 530, + [6817] = 6666, + [6818] = 6755, + [6819] = 6668, + [6820] = 6667, + [6821] = 531, + [6822] = 6670, + [6823] = 6666, + [6824] = 573, + [6825] = 532, + [6826] = 6668, + [6827] = 6667, + [6828] = 567, + [6829] = 533, + [6830] = 3038, + [6831] = 534, + [6832] = 6677, [6833] = 6833, - [6834] = 6404, - [6835] = 6835, - [6836] = 6836, - [6837] = 6837, + [6834] = 1509, + [6835] = 6674, + [6836] = 535, + [6837] = 6678, [6838] = 6838, - [6839] = 6395, - [6840] = 6396, - [6841] = 1684, - [6842] = 6406, - [6843] = 6206, - [6844] = 1698, - [6845] = 6397, - [6846] = 6398, - [6847] = 6399, - [6848] = 441, - [6849] = 6849, - [6850] = 6403, - [6851] = 6396, - [6852] = 264, - [6853] = 6853, - [6854] = 6854, - [6855] = 6855, - [6856] = 3236, - [6857] = 6403, + [6839] = 6325, + [6840] = 6686, + [6841] = 6664, + [6842] = 6665, + [6843] = 6843, + [6844] = 6666, + [6845] = 574, + [6846] = 536, + [6847] = 6668, + [6848] = 6667, + [6849] = 6670, + [6850] = 537, + [6851] = 538, + [6852] = 6615, + [6853] = 172, + [6854] = 2974, + [6855] = 575, + [6856] = 539, + [6857] = 6857, [6858] = 6858, - [6859] = 6859, - [6860] = 6860, - [6861] = 6403, - [6862] = 437, - [6863] = 3237, - [6864] = 430, - [6865] = 6865, - [6866] = 431, - [6867] = 6392, - [6868] = 428, - [6869] = 6393, - [6870] = 6394, - [6871] = 6395, - [6872] = 6406, - [6873] = 434, - [6874] = 6396, - [6875] = 6397, - [6876] = 211, - [6877] = 6398, - [6878] = 6399, - [6879] = 263, - [6880] = 6397, - [6881] = 3240, - [6882] = 6882, - [6883] = 6404, - [6884] = 373, - [6885] = 6406, - [6886] = 3395, - [6887] = 265, - [6888] = 265, - [6889] = 434, - [6890] = 6396, - [6891] = 6891, - [6892] = 6403, - [6893] = 3478, - [6894] = 6404, - [6895] = 6895, - [6896] = 6896, - [6897] = 6897, - [6898] = 6898, - [6899] = 6406, - [6900] = 6392, - [6901] = 6393, - [6902] = 6394, - [6903] = 6395, - [6904] = 6396, - [6905] = 6404, - [6906] = 6906, - [6907] = 6907, - [6908] = 429, - [6909] = 6406, - [6910] = 6910, - [6911] = 6397, - [6912] = 6865, - [6913] = 2839, - [6914] = 2847, - [6915] = 6915, + [6859] = 6677, + [6860] = 6678, + [6861] = 3028, + [6862] = 3029, + [6863] = 519, + [6864] = 6674, + [6865] = 6678, + [6866] = 6686, + [6867] = 6664, + [6868] = 6665, + [6869] = 540, + [6870] = 6666, + [6871] = 6871, + [6872] = 1498, + [6873] = 6668, + [6874] = 6667, + [6875] = 6670, + [6876] = 6876, + [6877] = 445, + [6878] = 541, + [6879] = 6879, + [6880] = 4592, + [6881] = 4602, + [6882] = 542, + [6883] = 6677, + [6884] = 6670, + [6885] = 6885, + [6886] = 6674, + [6887] = 6678, + [6888] = 3030, + [6889] = 6686, + [6890] = 6664, + [6891] = 6665, + [6892] = 6666, + [6893] = 576, + [6894] = 4659, + [6895] = 6668, + [6896] = 6667, + [6897] = 6330, + [6898] = 6464, + [6899] = 6670, + [6900] = 6096, + [6901] = 139, + [6902] = 6254, + [6903] = 140, + [6904] = 6363, + [6905] = 6677, + [6906] = 141, + [6907] = 6674, + [6908] = 6678, + [6909] = 6909, + [6910] = 6686, + [6911] = 6664, + [6912] = 6665, + [6913] = 6913, + [6914] = 6666, + [6915] = 3031, [6916] = 6916, - [6917] = 6917, - [6918] = 6398, - [6919] = 6399, - [6920] = 6403, - [6921] = 6504, - [6922] = 6922, - [6923] = 6398, + [6917] = 6668, + [6918] = 6667, + [6919] = 6919, + [6920] = 6670, + [6921] = 6328, + [6922] = 6752, + [6923] = 6923, [6924] = 6924, - [6925] = 6397, - [6926] = 6404, - [6927] = 6927, - [6928] = 6406, - [6929] = 6404, - [6930] = 266, - [6931] = 231, - [6932] = 1607, - [6933] = 6933, + [6925] = 6678, + [6926] = 6926, + [6927] = 6686, + [6928] = 6664, + [6929] = 6665, + [6930] = 6666, + [6931] = 6272, + [6932] = 6668, + [6933] = 6667, [6934] = 6934, - [6935] = 6935, - [6936] = 6936, - [6937] = 6937, - [6938] = 6938, - [6939] = 6939, - [6940] = 6940, - [6941] = 1616, - [6942] = 241, - [6943] = 6403, - [6944] = 430, - [6945] = 6389, - [6946] = 6404, - [6947] = 6947, - [6948] = 6948, - [6949] = 6949, - [6950] = 3273, - [6951] = 6951, - [6952] = 6854, - [6953] = 6891, - [6954] = 6954, - [6955] = 6954, + [6935] = 6670, + [6936] = 6678, + [6937] = 6629, + [6938] = 589, + [6939] = 6678, + [6940] = 4703, + [6941] = 6941, + [6942] = 6686, + [6943] = 6664, + [6944] = 6665, + [6945] = 6945, + [6946] = 6666, + [6947] = 251, + [6948] = 578, + [6949] = 6668, + [6950] = 6667, + [6951] = 6670, + [6952] = 6257, + [6953] = 6953, + [6954] = 2946, + [6955] = 6618, [6956] = 6956, - [6957] = 3277, - [6958] = 3287, - [6959] = 6959, - [6960] = 6960, - [6961] = 6855, - [6962] = 6962, - [6963] = 3236, - [6964] = 6964, - [6965] = 6965, - [6966] = 6966, - [6967] = 6967, - [6968] = 6968, - [6969] = 6969, - [6970] = 3237, - [6971] = 6971, - [6972] = 6948, - [6973] = 427, - [6974] = 6960, - [6975] = 3293, - [6976] = 6976, - [6977] = 6977, - [6978] = 3288, - [6979] = 6979, - [6980] = 6980, - [6981] = 6768, - [6982] = 6954, - [6983] = 6959, - [6984] = 6959, - [6985] = 6960, - [6986] = 6962, - [6987] = 176, - [6988] = 6774, - [6989] = 6964, - [6990] = 6965, - [6991] = 6966, - [6992] = 6960, - [6993] = 6967, - [6994] = 6764, - [6995] = 6954, - [6996] = 6968, - [6997] = 6969, - [6998] = 6948, - [6999] = 6962, - [7000] = 6765, - [7001] = 6927, + [6957] = 6957, + [6958] = 6678, + [6959] = 6686, + [6960] = 6664, + [6961] = 6665, + [6962] = 6953, + [6963] = 6666, + [6964] = 6668, + [6965] = 6667, + [6966] = 3048, + [6967] = 6670, + [6968] = 6552, + [6969] = 6678, + [6970] = 6970, + [6971] = 511, + [6972] = 6686, + [6973] = 6664, + [6974] = 6665, + [6975] = 6677, + [6976] = 6666, + [6977] = 6724, + [6978] = 6668, + [6979] = 6667, + [6980] = 6670, + [6981] = 6981, + [6982] = 6982, + [6983] = 6547, + [6984] = 1379, + [6985] = 6671, + [6986] = 6674, + [6987] = 6987, + [6988] = 6678, + [6989] = 3049, + [6990] = 3479, + [6991] = 6686, + [6992] = 6664, + [6993] = 6665, + [6994] = 6686, + [6995] = 6995, + [6996] = 6666, + [6997] = 4599, + [6998] = 6668, + [6999] = 6667, + [7000] = 6670, + [7001] = 6365, [7002] = 7002, - [7003] = 6778, - [7004] = 7004, - [7005] = 6794, - [7006] = 7006, - [7007] = 7007, - [7008] = 3213, + [7003] = 6344, + [7004] = 6137, + [7005] = 6348, + [7006] = 3050, + [7007] = 553, + [7008] = 7008, [7009] = 7009, - [7010] = 6954, - [7011] = 7011, - [7012] = 6620, - [7013] = 6416, - [7014] = 7014, - [7015] = 7015, - [7016] = 6960, - [7017] = 5161, - [7018] = 7018, - [7019] = 6962, - [7020] = 6964, - [7021] = 6965, - [7022] = 6966, - [7023] = 6967, - [7024] = 3239, - [7025] = 6968, - [7026] = 6969, - [7027] = 6948, - [7028] = 1010, - [7029] = 6550, - [7030] = 6515, - [7031] = 1010, - [7032] = 6858, - [7033] = 1698, - [7034] = 6954, - [7035] = 7035, - [7036] = 7036, - [7037] = 6960, - [7038] = 6962, - [7039] = 6964, - [7040] = 6965, - [7041] = 6966, - [7042] = 6964, - [7043] = 6965, - [7044] = 6966, - [7045] = 6967, - [7046] = 6860, - [7047] = 6968, - [7048] = 6969, - [7049] = 6964, - [7050] = 6965, - [7051] = 6948, - [7052] = 6966, - [7053] = 301, - [7054] = 3240, + [7010] = 6528, + [7011] = 445, + [7012] = 7012, + [7013] = 7013, + [7014] = 6664, + [7015] = 6686, + [7016] = 6953, + [7017] = 522, + [7018] = 6666, + [7019] = 6670, + [7020] = 6630, + [7021] = 6351, + [7022] = 6953, + [7023] = 6668, + [7024] = 6307, + [7025] = 6667, + [7026] = 1474, + [7027] = 6677, + [7028] = 523, + [7029] = 6379, + [7030] = 436, + [7031] = 6663, + [7032] = 6553, + [7033] = 7033, + [7034] = 3485, + [7035] = 6953, + [7036] = 6981, + [7037] = 6554, + [7038] = 6555, + [7039] = 7039, + [7040] = 7040, + [7041] = 7041, + [7042] = 6557, + [7043] = 6558, + [7044] = 7044, + [7045] = 7013, + [7046] = 6671, + [7047] = 7047, + [7048] = 6663, + [7049] = 6677, + [7050] = 6674, + [7051] = 7051, + [7052] = 6335, + [7053] = 6916, + [7054] = 6550, [7055] = 7055, - [7056] = 476, - [7057] = 6895, - [7058] = 6935, + [7056] = 6678, + [7057] = 6871, + [7058] = 1474, [7059] = 7059, - [7060] = 7060, - [7061] = 266, - [7062] = 6954, - [7063] = 1616, - [7064] = 6960, - [7065] = 3300, - [7066] = 6962, - [7067] = 429, - [7068] = 6964, - [7069] = 6965, - [7070] = 6966, - [7071] = 6967, - [7072] = 7007, - [7073] = 6936, - [7074] = 6968, - [7075] = 6969, - [7076] = 6938, - [7077] = 6811, - [7078] = 6948, - [7079] = 6409, - [7080] = 430, - [7081] = 431, - [7082] = 6812, - [7083] = 3301, - [7084] = 6954, - [7085] = 264, - [7086] = 6960, - [7087] = 6962, - [7088] = 6934, - [7089] = 6964, - [7090] = 6965, - [7091] = 6966, - [7092] = 6688, - [7093] = 6967, - [7094] = 7094, - [7095] = 6968, - [7096] = 6969, - [7097] = 1607, - [7098] = 6948, - [7099] = 6813, - [7100] = 7100, - [7101] = 6954, - [7102] = 6967, - [7103] = 6814, - [7104] = 6960, - [7105] = 6962, - [7106] = 6968, - [7107] = 6964, - [7108] = 6965, - [7109] = 6966, - [7110] = 6969, - [7111] = 6967, - [7112] = 7112, - [7113] = 7002, - [7114] = 6968, - [7115] = 6969, - [7116] = 6948, - [7117] = 6401, - [7118] = 5598, - [7119] = 3303, - [7120] = 3302, - [7121] = 1616, - [7122] = 1698, - [7123] = 6954, - [7124] = 3304, - [7125] = 6775, - [7126] = 3305, - [7127] = 6960, - [7128] = 6962, - [7129] = 5619, - [7130] = 6964, - [7131] = 6965, - [7132] = 6966, - [7133] = 265, - [7134] = 6967, - [7135] = 1607, - [7136] = 6968, - [7137] = 6969, - [7138] = 6948, - [7139] = 7139, - [7140] = 6483, - [7141] = 7141, - [7142] = 6954, - [7143] = 7060, - [7144] = 7144, - [7145] = 7145, - [7146] = 6960, - [7147] = 6962, - [7148] = 7148, - [7149] = 6964, - [7150] = 6965, - [7151] = 6966, - [7152] = 7152, - [7153] = 6967, - [7154] = 6948, - [7155] = 6968, - [7156] = 6969, - [7157] = 6428, - [7158] = 6948, - [7159] = 7144, - [7160] = 7160, - [7161] = 6432, - [7162] = 7162, - [7163] = 6731, - [7164] = 6962, - [7165] = 6964, - [7166] = 6965, - [7167] = 6966, - [7168] = 7100, - [7169] = 6967, - [7170] = 6435, - [7171] = 6968, - [7172] = 6969, - [7173] = 6948, - [7174] = 7174, - [7175] = 6581, - [7176] = 6967, - [7177] = 6443, - [7178] = 6452, - [7179] = 6968, - [7180] = 6962, - [7181] = 6969, - [7182] = 6585, - [7183] = 6964, - [7184] = 6965, - [7185] = 6966, - [7186] = 6967, - [7187] = 1684, - [7188] = 6968, - [7189] = 6969, - [7190] = 6734, - [7191] = 6948, - [7192] = 6735, - [7193] = 6692, - [7194] = 6954, - [7195] = 7195, - [7196] = 7196, - [7197] = 6962, - [7198] = 6736, - [7199] = 7100, - [7200] = 6964, - [7201] = 6965, - [7202] = 6966, - [7203] = 6967, - [7204] = 7204, - [7205] = 6737, - [7206] = 6968, - [7207] = 6969, - [7208] = 7208, - [7209] = 6739, - [7210] = 6948, - [7211] = 6728, - [7212] = 6779, - [7213] = 7213, - [7214] = 7112, - [7215] = 6962, - [7216] = 6964, - [7217] = 6965, - [7218] = 6966, - [7219] = 512, - [7220] = 6967, - [7221] = 6968, - [7222] = 6969, - [7223] = 7223, - [7224] = 6948, - [7225] = 6954, - [7226] = 7226, - [7227] = 7227, - [7228] = 7228, - [7229] = 6740, - [7230] = 6556, - [7231] = 6959, - [7232] = 6960, - [7233] = 7139, - [7234] = 7234, - [7235] = 6962, - [7236] = 7236, - [7237] = 6939, - [7238] = 6964, - [7239] = 6965, - [7240] = 6966, - [7241] = 1010, - [7242] = 6967, - [7243] = 6968, - [7244] = 6969, - [7245] = 6948, - [7246] = 7246, - [7247] = 3234, - [7248] = 6916, - [7249] = 7249, - [7250] = 7250, - [7251] = 7251, - [7252] = 6752, - [7253] = 6754, - [7254] = 6755, - [7255] = 441, - [7256] = 6757, - [7257] = 6948, - [7258] = 6495, - [7259] = 6758, - [7260] = 6829, - [7261] = 6830, - [7262] = 7262, - [7263] = 7112, - [7264] = 429, - [7265] = 7035, - [7266] = 6954, - [7267] = 6454, - [7268] = 7036, - [7269] = 6959, - [7270] = 6960, - [7271] = 6962, - [7272] = 6836, - [7273] = 6964, - [7274] = 6965, - [7275] = 7275, - [7276] = 7276, - [7277] = 7277, - [7278] = 7278, - [7279] = 7279, - [7280] = 6966, - [7281] = 7249, - [7282] = 6947, - [7283] = 7148, - [7284] = 6967, - [7285] = 427, - [7286] = 147, - [7287] = 7160, - [7288] = 6968, - [7289] = 7250, - [7290] = 6969, - [7291] = 149, - [7292] = 6962, - [7293] = 6948, - [7294] = 7294, + [7060] = 6619, + [7061] = 7002, + [7062] = 6833, + [7063] = 7063, + [7064] = 6686, + [7065] = 6664, + [7066] = 7066, + [7067] = 7067, + [7068] = 6665, + [7069] = 1509, + [7070] = 250, + [7071] = 445, + [7072] = 7033, + [7073] = 7047, + [7074] = 6666, + [7075] = 6611, + [7076] = 6686, + [7077] = 6674, + [7078] = 6664, + [7079] = 6665, + [7080] = 7080, + [7081] = 568, + [7082] = 569, + [7083] = 570, + [7084] = 6668, + [7085] = 6667, + [7086] = 549, + [7087] = 7087, + [7088] = 6670, + [7089] = 6260, + [7090] = 6995, + [7091] = 1400, + [7092] = 6199, + [7093] = 6200, + [7094] = 6202, + [7095] = 464, + [7096] = 251, + [7097] = 436, + [7098] = 7040, + [7099] = 6212, + [7100] = 464, + [7101] = 6551, + [7102] = 3059, + [7103] = 3061, + [7104] = 6953, + [7105] = 7044, + [7106] = 6294, + [7107] = 6308, + [7108] = 6563, + [7109] = 250, + [7110] = 6113, + [7111] = 6678, + [7112] = 6686, + [7113] = 6664, + [7114] = 6665, + [7115] = 6666, + [7116] = 6668, + [7117] = 6667, + [7118] = 6352, + [7119] = 6677, + [7120] = 6670, + [7121] = 524, + [7122] = 6477, + [7123] = 6663, + [7124] = 438, + [7125] = 439, + [7126] = 7051, + [7127] = 1632, + [7128] = 6871, + [7129] = 7002, + [7130] = 6833, + [7131] = 7066, + [7132] = 6623, + [7133] = 252, + [7134] = 6663, + [7135] = 6671, + [7136] = 7051, + [7137] = 6871, + [7138] = 7002, + [7139] = 6674, + [7140] = 6833, + [7141] = 7066, + [7142] = 6326, + [7143] = 6663, + [7144] = 3466, + [7145] = 7051, + [7146] = 6871, + [7147] = 7002, + [7148] = 6833, + [7149] = 7066, + [7150] = 6663, + [7151] = 7151, + [7152] = 7051, + [7153] = 6678, + [7154] = 6871, + [7155] = 7002, + [7156] = 6833, + [7157] = 7066, + [7158] = 6663, + [7159] = 3078, + [7160] = 7051, + [7161] = 6871, + [7162] = 7002, + [7163] = 6833, + [7164] = 7066, + [7165] = 6663, + [7166] = 6601, + [7167] = 7051, + [7168] = 6677, + [7169] = 6871, + [7170] = 7002, + [7171] = 6686, + [7172] = 6833, + [7173] = 7066, + [7174] = 6663, + [7175] = 6664, + [7176] = 7051, + [7177] = 6665, + [7178] = 6871, + [7179] = 7002, + [7180] = 6833, + [7181] = 7066, + [7182] = 6663, + [7183] = 7051, + [7184] = 6155, + [7185] = 6871, + [7186] = 7002, + [7187] = 6666, + [7188] = 6833, + [7189] = 7066, + [7190] = 6663, + [7191] = 7051, + [7192] = 6871, + [7193] = 7002, + [7194] = 6833, + [7195] = 7066, + [7196] = 6663, + [7197] = 6668, + [7198] = 7051, + [7199] = 6667, + [7200] = 6871, + [7201] = 7002, + [7202] = 6833, + [7203] = 7066, + [7204] = 6663, + [7205] = 6666, + [7206] = 7051, + [7207] = 6670, + [7208] = 6871, + [7209] = 7002, + [7210] = 6833, + [7211] = 7066, + [7212] = 6663, + [7213] = 7051, + [7214] = 6871, + [7215] = 7002, + [7216] = 7051, + [7217] = 6833, + [7218] = 7066, + [7219] = 6663, + [7220] = 2964, + [7221] = 7051, + [7222] = 6871, + [7223] = 7002, + [7224] = 6833, + [7225] = 7066, + [7226] = 7051, + [7227] = 525, + [7228] = 6871, + [7229] = 7002, + [7230] = 6833, + [7231] = 7066, + [7232] = 6663, + [7233] = 7051, + [7234] = 6156, + [7235] = 6871, + [7236] = 7002, + [7237] = 6833, + [7238] = 7066, + [7239] = 6663, + [7240] = 7051, + [7241] = 6871, + [7242] = 7002, + [7243] = 6833, + [7244] = 7066, + [7245] = 6663, + [7246] = 7051, + [7247] = 6871, + [7248] = 7002, + [7249] = 6953, + [7250] = 6833, + [7251] = 7066, + [7252] = 6663, + [7253] = 7051, + [7254] = 6871, + [7255] = 7002, + [7256] = 6833, + [7257] = 7066, + [7258] = 6663, + [7259] = 7051, + [7260] = 6243, + [7261] = 6871, + [7262] = 7002, + [7263] = 6833, + [7264] = 7066, + [7265] = 6663, + [7266] = 7051, + [7267] = 6871, + [7268] = 7002, + [7269] = 6833, + [7270] = 7066, + [7271] = 438, + [7272] = 439, + [7273] = 7273, + [7274] = 3045, + [7275] = 6677, + [7276] = 6677, + [7277] = 6668, + [7278] = 253, + [7279] = 3486, + [7280] = 253, + [7281] = 6671, + [7282] = 6674, + [7283] = 7066, + [7284] = 516, + [7285] = 3046, + [7286] = 6678, + [7287] = 7287, + [7288] = 3047, + [7289] = 324, + [7290] = 6602, + [7291] = 7291, + [7292] = 7292, + [7293] = 2956, + [7294] = 1498, [7295] = 7295, - [7296] = 266, + [7296] = 7296, [7297] = 7297, - [7298] = 6837, - [7299] = 7174, - [7300] = 7152, - [7301] = 7014, - [7302] = 6838, + [7298] = 7298, + [7299] = 7299, + [7300] = 7300, + [7301] = 7301, + [7302] = 7302, [7303] = 7303, - [7304] = 7011, - [7305] = 5086, - [7306] = 5090, - [7307] = 7307, - [7308] = 6959, + [7304] = 7304, + [7305] = 7305, + [7306] = 464, + [7307] = 7301, + [7308] = 7304, [7309] = 7309, - [7310] = 6897, - [7311] = 7311, + [7310] = 7310, + [7311] = 1498, [7312] = 7312, - [7313] = 6502, - [7314] = 7314, - [7315] = 7018, - [7316] = 6967, - [7317] = 6898, - [7318] = 7112, - [7319] = 6954, - [7320] = 7320, - [7321] = 7307, - [7322] = 6402, - [7323] = 6782, - [7324] = 6595, - [7325] = 6414, - [7326] = 6599, - [7327] = 6419, + [7313] = 7313, + [7314] = 4758, + [7315] = 7315, + [7316] = 2956, + [7317] = 7317, + [7318] = 7318, + [7319] = 7319, + [7320] = 4947, + [7321] = 7297, + [7322] = 4862, + [7323] = 7323, + [7324] = 7324, + [7325] = 7325, + [7326] = 7315, + [7327] = 7327, [7328] = 7328, - [7329] = 7295, - [7330] = 6602, - [7331] = 6438, - [7332] = 6959, - [7333] = 6960, - [7334] = 6962, - [7335] = 6604, - [7336] = 6960, - [7337] = 3149, - [7338] = 6906, - [7339] = 6964, - [7340] = 6965, - [7341] = 6907, - [7342] = 6966, - [7343] = 6967, - [7344] = 6962, - [7345] = 6968, - [7346] = 6964, - [7347] = 6965, - [7348] = 6966, - [7349] = 6969, - [7350] = 6967, - [7351] = 6968, - [7352] = 6969, - [7353] = 6948, - [7354] = 6948, - [7355] = 430, - [7356] = 7356, - [7357] = 431, - [7358] = 6947, - [7359] = 6915, - [7360] = 6924, - [7361] = 7014, - [7362] = 6964, - [7363] = 7311, - [7364] = 6965, - [7365] = 7307, - [7366] = 7311, + [7329] = 7329, + [7330] = 7319, + [7331] = 4792, + [7332] = 7317, + [7333] = 7333, + [7334] = 1929, + [7335] = 1930, + [7336] = 7336, + [7337] = 7299, + [7338] = 7318, + [7339] = 7317, + [7340] = 7323, + [7341] = 7341, + [7342] = 7318, + [7343] = 7305, + [7344] = 7344, + [7345] = 7345, + [7346] = 7346, + [7347] = 7309, + [7348] = 7348, + [7349] = 4786, + [7350] = 7350, + [7351] = 7345, + [7352] = 7346, + [7353] = 7345, + [7354] = 7348, + [7355] = 7310, + [7356] = 372, + [7357] = 7333, + [7358] = 4642, + [7359] = 7359, + [7360] = 4783, + [7361] = 4785, + [7362] = 7328, + [7363] = 7363, + [7364] = 7364, + [7365] = 445, + [7366] = 7366, [7367] = 7367, - [7368] = 7312, - [7369] = 7314, - [7370] = 7294, - [7371] = 488, - [7372] = 6966, - [7373] = 6947, - [7374] = 7312, - [7375] = 7014, - [7376] = 7307, - [7377] = 7311, - [7378] = 7312, - [7379] = 7314, - [7380] = 6947, - [7381] = 7112, - [7382] = 7014, - [7383] = 7307, - [7384] = 7311, - [7385] = 6612, - [7386] = 7312, - [7387] = 7314, - [7388] = 6947, - [7389] = 7014, - [7390] = 7307, - [7391] = 7311, - [7392] = 6722, - [7393] = 7312, - [7394] = 7314, - [7395] = 6954, - [7396] = 6947, - [7397] = 6910, - [7398] = 7014, - [7399] = 7307, - [7400] = 7311, - [7401] = 7312, - [7402] = 7314, - [7403] = 6922, - [7404] = 6947, - [7405] = 7014, - [7406] = 7307, - [7407] = 7311, - [7408] = 7312, - [7409] = 7314, - [7410] = 6616, - [7411] = 6947, - [7412] = 7328, - [7413] = 7014, - [7414] = 6959, - [7415] = 7307, - [7416] = 7311, - [7417] = 7312, - [7418] = 7314, - [7419] = 6947, - [7420] = 6960, - [7421] = 7014, - [7422] = 7307, - [7423] = 7311, - [7424] = 7312, - [7425] = 7314, - [7426] = 6947, - [7427] = 6962, - [7428] = 7014, - [7429] = 7307, - [7430] = 7311, - [7431] = 7431, - [7432] = 7312, - [7433] = 7314, - [7434] = 6947, - [7435] = 7014, - [7436] = 6962, - [7437] = 7307, - [7438] = 7311, - [7439] = 6964, - [7440] = 7312, - [7441] = 7314, - [7442] = 6965, - [7443] = 6947, - [7444] = 6966, - [7445] = 7014, - [7446] = 7307, - [7447] = 7311, - [7448] = 7312, - [7449] = 7314, - [7450] = 6947, - [7451] = 7014, - [7452] = 6967, - [7453] = 7307, - [7454] = 7311, - [7455] = 6933, - [7456] = 7312, - [7457] = 7314, - [7458] = 6968, - [7459] = 7014, - [7460] = 6969, - [7461] = 7307, - [7462] = 7311, - [7463] = 7312, - [7464] = 7314, - [7465] = 6947, - [7466] = 7014, - [7467] = 7307, - [7468] = 7311, - [7469] = 6948, - [7470] = 7312, - [7471] = 7314, - [7472] = 6947, - [7473] = 7014, - [7474] = 6959, - [7475] = 7307, - [7476] = 7311, - [7477] = 263, - [7478] = 7312, - [7479] = 7314, - [7480] = 6947, - [7481] = 7014, - [7482] = 7112, - [7483] = 7307, - [7484] = 7311, + [7368] = 438, + [7369] = 439, + [7370] = 7370, + [7371] = 7317, + [7372] = 7296, + [7373] = 7373, + [7374] = 7374, + [7375] = 1962, + [7376] = 7318, + [7377] = 7363, + [7378] = 7378, + [7379] = 7379, + [7380] = 7380, + [7381] = 7381, + [7382] = 436, + [7383] = 7329, + [7384] = 7345, + [7385] = 7385, + [7386] = 1474, + [7387] = 7387, + [7388] = 4761, + [7389] = 2965, + [7390] = 7318, + [7391] = 7329, + [7392] = 7392, + [7393] = 7346, + [7394] = 2964, + [7395] = 7395, + [7396] = 7396, + [7397] = 7329, + [7398] = 7378, + [7399] = 7399, + [7400] = 2951, + [7401] = 7401, + [7402] = 7329, + [7403] = 7317, + [7404] = 7401, + [7405] = 7318, + [7406] = 7406, + [7407] = 7407, + [7408] = 7345, + [7409] = 7409, + [7410] = 7329, + [7411] = 7317, + [7412] = 7412, + [7413] = 7318, + [7414] = 7385, + [7415] = 7415, + [7416] = 7329, + [7417] = 7346, + [7418] = 7346, + [7419] = 7329, + [7420] = 7345, + [7421] = 7346, + [7422] = 7312, + [7423] = 1928, + [7424] = 7341, + [7425] = 7345, + [7426] = 7426, + [7427] = 7317, + [7428] = 7318, + [7429] = 7429, + [7430] = 7430, + [7431] = 7346, + [7432] = 7426, + [7433] = 7433, + [7434] = 7329, + [7435] = 7359, + [7436] = 7436, + [7437] = 7341, + [7438] = 2070, + [7439] = 7364, + [7440] = 7374, + [7441] = 7441, + [7442] = 1509, + [7443] = 7380, + [7444] = 7387, + [7445] = 7445, + [7446] = 1474, + [7447] = 2946, + [7448] = 7429, + [7449] = 7396, + [7450] = 1974, + [7451] = 7451, + [7452] = 7367, + [7453] = 7317, + [7454] = 7318, + [7455] = 7370, + [7456] = 7456, + [7457] = 7366, + [7458] = 7298, + [7459] = 4752, + [7460] = 7345, + [7461] = 7346, + [7462] = 7462, + [7463] = 7345, + [7464] = 7346, + [7465] = 1509, + [7466] = 7451, + [7467] = 7373, + [7468] = 7468, + [7469] = 7317, + [7470] = 7470, + [7471] = 7471, + [7472] = 7472, + [7473] = 7473, + [7474] = 7474, + [7475] = 7475, + [7476] = 7476, + [7477] = 7477, + [7478] = 7478, + [7479] = 7479, + [7480] = 7480, + [7481] = 7481, + [7482] = 7482, + [7483] = 7483, + [7484] = 7475, [7485] = 7485, - [7486] = 7312, - [7487] = 7314, - [7488] = 6947, - [7489] = 7014, + [7486] = 7486, + [7487] = 7475, + [7488] = 7477, + [7489] = 7480, [7490] = 7490, - [7491] = 7307, - [7492] = 7311, - [7493] = 7312, - [7494] = 7314, - [7495] = 6947, - [7496] = 7014, - [7497] = 7307, - [7498] = 7311, - [7499] = 7312, - [7500] = 7314, - [7501] = 6947, - [7502] = 7014, - [7503] = 6940, - [7504] = 7307, - [7505] = 7311, - [7506] = 7312, - [7507] = 7314, - [7508] = 6947, - [7509] = 7014, - [7510] = 7307, - [7511] = 7311, - [7512] = 7004, - [7513] = 7312, - [7514] = 7314, - [7515] = 6968, - [7516] = 6767, - [7517] = 6954, - [7518] = 6948, + [7491] = 7491, + [7492] = 7486, + [7493] = 7493, + [7494] = 7480, + [7495] = 7481, + [7496] = 7496, + [7497] = 7497, + [7498] = 7481, + [7499] = 7482, + [7500] = 7500, + [7501] = 7501, + [7502] = 7477, + [7503] = 7503, + [7504] = 7483, + [7505] = 7505, + [7506] = 7506, + [7507] = 7501, + [7508] = 7508, + [7509] = 7480, + [7510] = 7480, + [7511] = 7481, + [7512] = 7481, + [7513] = 7513, + [7514] = 7479, + [7515] = 7515, + [7516] = 7481, + [7517] = 7486, + [7518] = 7483, [7519] = 7519, - [7520] = 6947, - [7521] = 7314, - [7522] = 6849, - [7523] = 6959, - [7524] = 6960, - [7525] = 6853, - [7526] = 6962, - [7527] = 7112, - [7528] = 263, - [7529] = 6969, - [7530] = 6964, - [7531] = 6965, - [7532] = 441, - [7533] = 7533, - [7534] = 6966, - [7535] = 264, - [7536] = 6967, - [7537] = 265, - [7538] = 6968, - [7539] = 6969, - [7540] = 1684, + [7520] = 7471, + [7521] = 7508, + [7522] = 7515, + [7523] = 7523, + [7524] = 7524, + [7525] = 7485, + [7526] = 7480, + [7527] = 7481, + [7528] = 7483, + [7529] = 7529, + [7530] = 7483, + [7531] = 7477, + [7532] = 7480, + [7533] = 7496, + [7534] = 7524, + [7535] = 7535, + [7536] = 7481, + [7537] = 7537, + [7538] = 7482, + [7539] = 7483, + [7540] = 7496, [7541] = 7541, - [7542] = 7542, - [7543] = 7543, - [7544] = 1698, - [7545] = 441, - [7546] = 7546, - [7547] = 7547, - [7548] = 2155, - [7549] = 7549, + [7542] = 364, + [7543] = 7471, + [7544] = 7496, + [7545] = 7545, + [7546] = 7515, + [7547] = 7482, + [7548] = 7479, + [7549] = 7501, [7550] = 7550, - [7551] = 7551, + [7551] = 7486, [7552] = 7552, [7553] = 7553, [7554] = 7554, - [7555] = 7555, + [7555] = 7535, [7556] = 7556, - [7557] = 7557, - [7558] = 7553, - [7559] = 7559, - [7560] = 427, + [7557] = 7500, + [7558] = 7552, + [7559] = 7483, + [7560] = 7471, [7561] = 7561, [7562] = 7562, - [7563] = 7563, + [7563] = 7485, [7564] = 7564, - [7565] = 7565, - [7566] = 7566, + [7565] = 7562, + [7566] = 7486, [7567] = 7567, - [7568] = 7556, - [7569] = 3240, - [7570] = 381, - [7571] = 7571, - [7572] = 7572, - [7573] = 7573, - [7574] = 7542, - [7575] = 7575, - [7576] = 7576, - [7577] = 7577, - [7578] = 7578, - [7579] = 7579, - [7580] = 150, - [7581] = 151, - [7582] = 2134, - [7583] = 7561, - [7584] = 1684, - [7585] = 7561, - [7586] = 7562, - [7587] = 7541, - [7588] = 5334, - [7589] = 7589, - [7590] = 7562, - [7591] = 5215, - [7592] = 7592, - [7593] = 4951, - [7594] = 7561, - [7595] = 7595, - [7596] = 7592, - [7597] = 7562, - [7598] = 7564, + [7568] = 7501, + [7569] = 7569, + [7570] = 7570, + [7571] = 7545, + [7572] = 7562, + [7573] = 7471, + [7574] = 7567, + [7575] = 7496, + [7576] = 7480, + [7577] = 7481, + [7578] = 7483, + [7579] = 7553, + [7580] = 7471, + [7581] = 7581, + [7582] = 7501, + [7583] = 7496, + [7584] = 7496, + [7585] = 7585, + [7586] = 7496, + [7587] = 405, + [7588] = 7588, + [7589] = 7523, + [7590] = 7590, + [7591] = 7471, + [7592] = 7486, + [7593] = 7593, + [7594] = 7501, + [7595] = 7481, + [7596] = 7596, + [7597] = 7496, + [7598] = 7598, [7599] = 7599, - [7600] = 7567, + [7600] = 7503, [7601] = 7601, - [7602] = 7602, + [7602] = 7599, [7603] = 7603, - [7604] = 7604, - [7605] = 7605, - [7606] = 7555, - [7607] = 429, - [7608] = 1010, - [7609] = 7564, + [7604] = 7475, + [7605] = 7501, + [7606] = 7606, + [7607] = 7515, + [7608] = 7552, + [7609] = 7554, [7610] = 7610, - [7611] = 7567, - [7612] = 7564, - [7613] = 7567, - [7614] = 7614, - [7615] = 7561, - [7616] = 7562, - [7617] = 3239, - [7618] = 7554, - [7619] = 7561, - [7620] = 7564, - [7621] = 7567, - [7622] = 5299, - [7623] = 1698, - [7624] = 7624, - [7625] = 7599, - [7626] = 7562, - [7627] = 7627, - [7628] = 7603, + [7611] = 7471, + [7612] = 7612, + [7613] = 7471, + [7614] = 7496, + [7615] = 7496, + [7616] = 7501, + [7617] = 7617, + [7618] = 7480, + [7619] = 7481, + [7620] = 405, + [7621] = 7483, + [7622] = 7524, + [7623] = 7623, + [7624] = 7480, + [7625] = 7496, + [7626] = 7477, + [7627] = 7501, + [7628] = 7480, [7629] = 7629, - [7630] = 7561, - [7631] = 7631, + [7630] = 7481, + [7631] = 7588, [7632] = 7632, - [7633] = 7633, - [7634] = 7562, - [7635] = 7635, - [7636] = 7636, - [7637] = 5300, - [7638] = 7638, - [7639] = 7639, - [7640] = 7549, - [7641] = 7572, - [7642] = 7642, - [7643] = 7643, - [7644] = 7541, + [7633] = 7486, + [7634] = 7480, + [7635] = 7612, + [7636] = 7481, + [7637] = 7482, + [7638] = 7501, + [7639] = 7483, + [7640] = 7640, + [7641] = 7482, + [7642] = 7483, + [7643] = 7585, + [7644] = 7561, [7645] = 7645, [7646] = 7646, - [7647] = 7647, - [7648] = 7589, - [7649] = 7541, - [7650] = 7557, - [7651] = 3236, - [7652] = 7565, - [7653] = 7541, + [7647] = 7569, + [7648] = 7501, + [7649] = 405, + [7650] = 7629, + [7651] = 7651, + [7652] = 364, + [7653] = 7486, [7654] = 7654, - [7655] = 7541, - [7656] = 7567, - [7657] = 3237, - [7658] = 7577, - [7659] = 2125, - [7660] = 7541, - [7661] = 7661, - [7662] = 7601, + [7655] = 7655, + [7656] = 7480, + [7657] = 7481, + [7658] = 7501, + [7659] = 7659, + [7660] = 7660, + [7661] = 7471, + [7662] = 7496, [7663] = 7663, - [7664] = 7664, - [7665] = 7541, - [7666] = 7543, - [7667] = 7667, - [7668] = 430, - [7669] = 7541, - [7670] = 431, - [7671] = 7610, - [7672] = 7541, - [7673] = 7673, - [7674] = 7667, - [7675] = 7579, - [7676] = 7546, - [7677] = 7561, - [7678] = 7562, - [7679] = 7559, - [7680] = 5371, - [7681] = 1684, - [7682] = 7564, - [7683] = 7567, - [7684] = 7667, - [7685] = 7661, - [7686] = 7686, - [7687] = 7633, - [7688] = 7635, - [7689] = 7573, - [7690] = 7551, - [7691] = 2132, - [7692] = 7664, - [7693] = 7693, - [7694] = 7694, - [7695] = 2142, - [7696] = 2298, - [7697] = 152, - [7698] = 7698, - [7699] = 7561, - [7700] = 7562, - [7701] = 7663, - [7702] = 7702, - [7703] = 7564, - [7704] = 7564, - [7705] = 7567, - [7706] = 7706, - [7707] = 7639, - [7708] = 7564, + [7664] = 7479, + [7665] = 7515, + [7666] = 7588, + [7667] = 7501, + [7668] = 7668, + [7669] = 7669, + [7670] = 7503, + [7671] = 7471, + [7672] = 7486, + [7673] = 7471, + [7674] = 7524, + [7675] = 7480, + [7676] = 7477, + [7677] = 7501, + [7678] = 7477, + [7679] = 7486, + [7680] = 7482, + [7681] = 7663, + [7682] = 7471, + [7683] = 7477, + [7684] = 7601, + [7685] = 7685, + [7686] = 7475, + [7687] = 7501, + [7688] = 7480, + [7689] = 7481, + [7690] = 7481, + [7691] = 7482, + [7692] = 7496, + [7693] = 7482, + [7694] = 7483, + [7695] = 7483, + [7696] = 7496, + [7697] = 7501, + [7698] = 7640, + [7699] = 7699, + [7700] = 7553, + [7701] = 7480, + [7702] = 7588, + [7703] = 7703, + [7704] = 7481, + [7705] = 7629, + [7706] = 7501, + [7707] = 7482, + [7708] = 7550, [7709] = 7709, - [7710] = 7710, - [7711] = 7567, - [7712] = 7712, - [7713] = 7627, - [7714] = 7552, - [7715] = 5333, - [7716] = 5335, - [7717] = 5341, - [7718] = 7710, - [7719] = 7561, - [7720] = 7562, - [7721] = 7564, - [7722] = 7567, - [7723] = 4958, - [7724] = 3234, - [7725] = 7576, - [7726] = 7578, - [7727] = 7727, + [7710] = 7529, + [7711] = 7663, + [7712] = 7588, + [7713] = 7713, + [7714] = 7714, + [7715] = 7479, + [7716] = 7481, + [7717] = 7483, + [7718] = 7381, + [7719] = 7524, + [7720] = 7588, + [7721] = 7490, + [7722] = 7550, + [7723] = 7552, + [7724] = 7477, + [7725] = 7515, + [7726] = 7481, + [7727] = 7562, [7728] = 7728, - [7729] = 7729, - [7730] = 7730, - [7731] = 7731, - [7732] = 7732, - [7733] = 7733, - [7734] = 7734, - [7735] = 7735, - [7736] = 7736, - [7737] = 7737, - [7738] = 7735, - [7739] = 7739, - [7740] = 7737, - [7741] = 7735, - [7742] = 7742, - [7743] = 7743, - [7744] = 7744, - [7745] = 7745, + [7729] = 7483, + [7730] = 7480, + [7731] = 7537, + [7732] = 7481, + [7733] = 7486, + [7734] = 7651, + [7735] = 7479, + [7736] = 7562, + [7737] = 7471, + [7738] = 7496, + [7739] = 7481, + [7740] = 7740, + [7741] = 7477, + [7742] = 7486, + [7743] = 7588, + [7744] = 7496, + [7745] = 7481, [7746] = 7746, [7747] = 7747, - [7748] = 7748, - [7749] = 7731, - [7750] = 7728, - [7751] = 7728, - [7752] = 7737, - [7753] = 7753, - [7754] = 7734, - [7755] = 7728, - [7756] = 7756, - [7757] = 7756, - [7758] = 7737, - [7759] = 7734, - [7760] = 7737, - [7761] = 7761, - [7762] = 7762, - [7763] = 7737, - [7764] = 7764, - [7765] = 7735, - [7766] = 7766, - [7767] = 7767, - [7768] = 7768, - [7769] = 7739, - [7770] = 7770, - [7771] = 7728, - [7772] = 7756, - [7773] = 7638, - [7774] = 7774, - [7775] = 7737, - [7776] = 7753, - [7777] = 7777, - [7778] = 7764, - [7779] = 7728, - [7780] = 7767, - [7781] = 7756, - [7782] = 7782, - [7783] = 7767, - [7784] = 7784, - [7785] = 7734, - [7786] = 7737, - [7787] = 7787, - [7788] = 7770, - [7789] = 7731, - [7790] = 7790, - [7791] = 7791, - [7792] = 7792, + [7748] = 7480, + [7749] = 7477, + [7750] = 7481, + [7751] = 7481, + [7752] = 7480, + [7753] = 7486, + [7754] = 7754, + [7755] = 7480, + [7756] = 7541, + [7757] = 7757, + [7758] = 7481, + [7759] = 7668, + [7760] = 7481, + [7761] = 7482, + [7762] = 7483, + [7763] = 7481, + [7764] = 7493, + [7765] = 7765, + [7766] = 7590, + [7767] = 7482, + [7768] = 7483, + [7769] = 7769, + [7770] = 7481, + [7771] = 7771, + [7772] = 7486, + [7773] = 7479, + [7774] = 7486, + [7775] = 7483, + [7776] = 7480, + [7777] = 364, + [7778] = 7660, + [7779] = 7515, + [7780] = 7780, + [7781] = 7483, + [7782] = 7481, + [7783] = 7588, + [7784] = 7486, + [7785] = 7496, + [7786] = 7552, + [7787] = 7481, + [7788] = 7588, + [7789] = 7789, + [7790] = 7541, + [7791] = 7496, + [7792] = 7541, [7793] = 7793, - [7794] = 7794, - [7795] = 7774, - [7796] = 7796, - [7797] = 7731, - [7798] = 7746, - [7799] = 7747, - [7800] = 7767, - [7801] = 7766, - [7802] = 7802, - [7803] = 7803, - [7804] = 7804, - [7805] = 7805, + [7794] = 7541, + [7795] = 7795, + [7796] = 7757, + [7797] = 7562, + [7798] = 7472, + [7799] = 7603, + [7800] = 7800, + [7801] = 7606, + [7802] = 7780, + [7803] = 7481, + [7804] = 7482, + [7805] = 7610, [7806] = 7806, - [7807] = 7807, - [7808] = 7746, - [7809] = 7809, - [7810] = 7731, - [7811] = 7811, - [7812] = 7774, - [7813] = 7813, - [7814] = 7767, - [7815] = 7734, - [7816] = 7753, - [7817] = 7817, - [7818] = 7805, - [7819] = 7774, - [7820] = 7728, - [7821] = 7728, - [7822] = 7756, - [7823] = 7737, - [7824] = 7756, - [7825] = 7735, - [7826] = 7774, - [7827] = 7728, - [7828] = 7737, - [7829] = 7756, - [7830] = 7734, - [7831] = 7746, - [7832] = 7813, - [7833] = 7737, - [7834] = 7767, - [7835] = 7835, - [7836] = 7767, - [7837] = 7837, - [7838] = 7730, - [7839] = 7753, - [7840] = 7774, - [7841] = 7730, - [7842] = 7746, - [7843] = 7843, - [7844] = 7746, - [7845] = 7767, - [7846] = 7846, - [7847] = 7756, - [7848] = 7848, - [7849] = 7849, - [7850] = 7735, - [7851] = 7728, - [7852] = 7774, - [7853] = 7756, - [7854] = 7793, - [7855] = 7737, - [7856] = 7734, - [7857] = 7746, - [7858] = 7787, - [7859] = 7737, - [7860] = 7767, - [7861] = 7861, - [7862] = 7846, - [7863] = 7767, - [7864] = 7774, - [7865] = 7753, - [7866] = 7805, - [7867] = 7728, - [7868] = 7756, - [7869] = 7733, - [7870] = 7737, - [7871] = 7871, - [7872] = 7731, - [7873] = 7746, - [7874] = 7874, - [7875] = 7767, - [7876] = 7774, - [7877] = 7767, - [7878] = 7878, - [7879] = 7748, - [7880] = 7766, - [7881] = 7881, - [7882] = 7770, - [7883] = 384, - [7884] = 7746, - [7885] = 7731, - [7886] = 7886, - [7887] = 7887, - [7888] = 7774, - [7889] = 7747, - [7890] = 7753, - [7891] = 7803, - [7892] = 7728, - [7893] = 7893, - [7894] = 7753, - [7895] = 7728, - [7896] = 7756, - [7897] = 7734, - [7898] = 7737, - [7899] = 7774, - [7900] = 7900, - [7901] = 7901, - [7902] = 7734, - [7903] = 7805, - [7904] = 7767, - [7905] = 7905, - [7906] = 7746, - [7907] = 7728, - [7908] = 7756, - [7909] = 7909, - [7910] = 7774, - [7911] = 7753, - [7912] = 7813, - [7913] = 7767, - [7914] = 7767, - [7915] = 7915, - [7916] = 7753, - [7917] = 7793, - [7918] = 7918, - [7919] = 7919, - [7920] = 384, - [7921] = 7774, - [7922] = 7733, - [7923] = 7746, - [7924] = 7744, - [7925] = 7767, - [7926] = 7886, - [7927] = 7735, - [7928] = 7753, - [7929] = 7929, - [7930] = 7735, - [7931] = 7762, - [7932] = 7774, - [7933] = 7901, - [7934] = 7747, - [7935] = 7728, - [7936] = 7728, - [7937] = 7756, - [7938] = 7734, - [7939] = 7848, - [7940] = 7737, - [7941] = 7746, - [7942] = 7774, - [7943] = 7756, - [7944] = 7944, - [7945] = 7747, - [7946] = 7756, - [7947] = 7767, - [7948] = 7900, - [7949] = 7728, - [7950] = 7950, - [7951] = 7774, - [7952] = 7756, - [7953] = 7787, - [7954] = 7954, - [7955] = 7767, - [7956] = 7766, - [7957] = 7753, - [7958] = 7805, - [7959] = 7756, - [7960] = 7734, - [7961] = 7730, - [7962] = 7737, - [7963] = 7756, - [7964] = 7756, - [7965] = 7787, - [7966] = 7746, - [7967] = 7767, - [7968] = 7731, - [7969] = 7756, - [7970] = 7970, - [7971] = 7813, - [7972] = 384, - [7973] = 7756, - [7974] = 7731, - [7975] = 7756, - [7976] = 7813, - [7977] = 7787, - [7978] = 7762, - [7979] = 7979, - [7980] = 7766, - [7981] = 7753, - [7982] = 7756, - [7983] = 7767, - [7984] = 7804, - [7985] = 7730, - [7986] = 7735, - [7987] = 7756, - [7988] = 7728, - [7989] = 7756, - [7990] = 7743, - [7991] = 7777, - [7992] = 7734, - [7993] = 7756, - [7994] = 378, - [7995] = 7737, - [7996] = 378, - [7997] = 7871, - [7998] = 7998, - [7999] = 7756, - [8000] = 7753, - [8001] = 7874, - [8002] = 8002, - [8003] = 8003, - [8004] = 8004, - [8005] = 7735, - [8006] = 7728, - [8007] = 8007, - [8008] = 7756, - [8009] = 7790, - [8010] = 7734, - [8011] = 7732, - [8012] = 7737, - [8013] = 7753, - [8014] = 8014, - [8015] = 7787, - [8016] = 7756, - [8017] = 7728, - [8018] = 7756, - [8019] = 7878, - [8020] = 8020, - [8021] = 7737, - [8022] = 7746, - [8023] = 7767, - [8024] = 7735, - [8025] = 7805, - [8026] = 7774, - [8027] = 7756, - [8028] = 378, - [8029] = 7731, - [8030] = 7813, - [8031] = 7787, - [8032] = 7753, - [8033] = 7734, - [8034] = 7874, - [8035] = 7728, - [8036] = 7874, - [8037] = 7730, - [8038] = 7874, - [8039] = 7728, - [8040] = 7874, - [8041] = 8014, - [8042] = 7756, - [8043] = 7734, - [8044] = 8044, - [8045] = 8045, - [8046] = 7737, - [8047] = 7736, - [8048] = 7739, - [8049] = 7753, - [8050] = 8050, - [8051] = 7753, - [8052] = 7767, - [8053] = 7764, - [8054] = 7918, - [8055] = 7756, - [8056] = 7746, - [8057] = 7767, - [8058] = 8058, - [8059] = 7735, - [8060] = 7813, - [8061] = 8061, + [7807] = 7588, + [7808] = 7808, + [7809] = 7496, + [7810] = 7482, + [7811] = 7471, + [7812] = 7483, + [7813] = 7519, + [7814] = 7477, + [7815] = 7496, + [7816] = 7816, }; static TSCharacterRange aux_sym_cmd_identifier_token1_character_set_1[] = { @@ -13680,16 +13439,16 @@ static TSCharacterRange aux_sym_unquoted_token1_character_set_2[] = { {'a', 'z'}, {'~', 0x10ffff}, }; -static TSCharacterRange aux_sym__unquoted_in_list_token1_character_set_1[] = { - {0, 0x08}, {0x0e, 0x1f}, {'!', '!'}, {'#', '#'}, {'%', '&'}, {'*', ':'}, {'<', 'Z'}, {'\\', '\\'}, - {'^', '_'}, {'a', 'z'}, {'~', 0x10ffff}, -}; - static TSCharacterRange aux_sym__unquoted_in_list_token1_character_set_2[] = { {0, 0x08}, {0x0e, 0x1f}, {'!', '!'}, {'#', '&'}, {'*', '+'}, {'-', ':'}, {'<', 'Z'}, {'\\', '\\'}, {'^', '_'}, {'a', 'z'}, {'~', 0x10ffff}, }; +static TSCharacterRange aux_sym__unquoted_in_record_token1_character_set_1[] = { + {0, 0x08}, {0x0e, 0x1f}, {'!', '!'}, {'#', '#'}, {'%', '&'}, {'*', '+'}, {'-', '9'}, {'<', 'Z'}, + {'\\', '\\'}, {'^', '_'}, {'a', 'z'}, {'~', 0x10ffff}, +}; + static TSCharacterRange aux_sym__unquoted_in_list_with_expr_token1_character_set_1[] = { {0, 0x08}, {0x0e, 0x1f}, {'!', '\''}, {'*', '+'}, {'-', ':'}, {'<', 'Z'}, {'\\', '\\'}, {'^', '{'}, {'}', 0x10ffff}, @@ -13700,12885 +13459,10628 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(1124); + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2933, + '\n', 2874, '\r', 2, - '!', 3060, - '"', 3586, - '#', 5026, - '$', 3188, - '&', 3055, - '\'', 3603, - '(', 3294, - ')', 2986, - '*', 3262, - '+', 3617, - ',', 2987, - '-', 3031, - '.', 3379, - '/', 3061, - '0', 3067, - ':', 3615, - ';', 2938, - '<', 3017, - '=', 3764, - '>', 3019, - '?', 3024, - '@', 3020, - 'B', 3088, - 'E', 3056, - 'G', 3065, - 'I', 3086, - 'K', 3065, - 'M', 3065, - 'N', 3085, - 'P', 3065, - 'T', 3065, - '[', 3546, - '\\', 3059, - ']', 2984, - '^', 3699, - '_', 3174, - '`', 3069, - 'a', 3080, - 'b', 3082, - 'c', 3070, - 'd', 3071, - 'e', 3057, - 'f', 3072, - 'g', 3064, - 'h', 3079, - 'i', 3066, - 'k', 3064, - 'l', 3074, - 'm', 3062, - 'n', 3075, - 'o', 3058, - 'p', 3064, - 'r', 3076, - 's', 3077, - 't', 3063, - 'u', 3084, - 'v', 3073, - 'w', 3078, - 'x', 3081, - '{', 3087, - '|', 2939, - '}', 3170, - 0xb5, 3083, + '!', 3000, + '"', 3524, + '#', 4824, + '$', 3126, + '&', 2995, + '\'', 3541, + '(', 3232, + ')', 3400, + '*', 3200, + '+', 3555, + ',', 2928, + '-', 2971, + '.', 3317, + '/', 3001, + '0', 3007, + ':', 3553, + ';', 2879, + '<', 2957, + '=', 3694, + '>', 2959, + '?', 2964, + '@', 2960, + 'B', 3028, + 'E', 2996, + 'G', 3005, + 'I', 3026, + 'K', 3005, + 'M', 3005, + 'N', 3025, + 'P', 3005, + 'T', 3005, + '[', 3484, + '\\', 2999, + ']', 2925, + '^', 3637, + '_', 3115, + '`', 3009, + 'a', 3020, + 'b', 3022, + 'c', 3010, + 'd', 3011, + 'e', 2997, + 'f', 3012, + 'g', 3004, + 'h', 3019, + 'i', 3006, + 'k', 3004, + 'l', 3014, + 'm', 3002, + 'n', 3015, + 'o', 2998, + 'p', 3004, + 'r', 3016, + 's', 3017, + 't', 3003, + 'u', 3024, + 'v', 3013, + 'w', 3018, + 'x', 3021, + '{', 3027, + '|', 2880, + '}', 3110, + 0xb5, 3023, '\t', 1, ' ', 1, - 0x0b, 649, - '\f', 649, - 'A', 3088, - 'C', 3088, - 'D', 3088, - 'F', 3088, + 0x0b, 586, + '\f', 586, + 'A', 3028, + 'C', 3028, + 'D', 3028, + 'F', 3028, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3068); - if (set_contains(sym_param_short_flag_identifier_character_set_1, 724, lookahead)) ADVANCE(3089); - if (lookahead != 0) ADVANCE(2720); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3008); + if (set_contains(sym_param_short_flag_identifier_character_set_1, 724, lookahead)) ADVANCE(3029); + if (lookahead != 0) ADVANCE(2661); END_STATE(); case 1: ADVANCE_MAP( - '\n', 2933, + '\n', 2874, '\r', 2, - '!', 1206, - '"', 3586, - '#', 5026, - '$', 2990, - '\'', 585, - '(', 2985, - ')', 2986, - '*', 3261, - '+', 3616, - ',', 2987, - '-', 3032, - '.', 1198, - '/', 2366, - '0', 2423, - ':', 3615, - ';', 2938, - '<', 3287, - '=', 1143, - '>', 3019, - '?', 3263, - 'I', 2707, - 'N', 2703, - '[', 2983, - ']', 2984, - '^', 3699, - '_', 3175, - '`', 695, - 'a', 2556, - 'b', 2522, - 'c', 2450, - 'd', 2489, - 'e', 2375, - 'f', 2436, - 'h', 2524, - 'i', 2418, - 'l', 2497, - 'm', 2448, - 'n', 2490, - 'o', 2374, - 'r', 2508, - 's', 2587, - 't', 2606, - 'u', 2641, - 'v', 2445, - 'w', 2519, - 'x', 2577, - '{', 3169, - '|', 2939, - '}', 3170, + '!', 1147, + '"', 3524, + '#', 4824, + '$', 2930, + '\'', 525, + '(', 2926, + ')', 2927, + '*', 3199, + '+', 3554, + ',', 2928, + '-', 2972, + '.', 1139, + '/', 2307, + '0', 2364, + ':', 3553, + ';', 2879, + '<', 3225, + '=', 1083, + '>', 2959, + '?', 3201, + 'I', 2648, + 'N', 2644, + '[', 2924, + ']', 2925, + '^', 3637, + '_', 3116, + '`', 634, + 'a', 2497, + 'b', 2463, + 'c', 2391, + 'd', 2430, + 'e', 2316, + 'f', 2377, + 'h', 2465, + 'i', 2359, + 'l', 2438, + 'm', 2389, + 'n', 2431, + 'o', 2315, + 'r', 2449, + 's', 2528, + 't', 2547, + 'u', 2582, + 'v', 2386, + 'w', 2460, + 'x', 2518, + '{', 3109, + '|', 2880, + '}', 3110, '\t', 1, ' ', 1, - '&', 1399, - '@', 1399, - 0x0b, 649, - '\f', 649, + '&', 1340, + '@', 1340, + 0x0b, 586, + '\f', 586, ); - if (('A' <= lookahead && lookahead <= 'F')) ADVANCE(2715); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2431); - if (lookahead != 0) ADVANCE(2720); + if (('A' <= lookahead && lookahead <= 'F')) ADVANCE(2656); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2372); + if (lookahead != 0) ADVANCE(2661); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(2933); - if (lookahead == ':') ADVANCE(3615); + if (lookahead == '\n') ADVANCE(2874); + if (lookahead == ':') ADVANCE(3553); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(649); + lookahead == ' ') ADVANCE(586); END_STATE(); case 3: - if (lookahead == '\n') ADVANCE(226); - if (lookahead == ':') ADVANCE(3615); + if (lookahead == '\n') ADVANCE(166); + if (lookahead == ':') ADVANCE(3553); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(649); + lookahead == ' ') ADVANCE(586); END_STATE(); case 4: - if (lookahead == '\n') ADVANCE(3350); + if (lookahead == '\n') ADVANCE(3288); END_STATE(); case 5: - if (lookahead == '\n') ADVANCE(3347); + if (lookahead == '\n') ADVANCE(3285); END_STATE(); case 6: - if (lookahead == '\n') ADVANCE(3367); + if (lookahead == '\n') ADVANCE(3305); END_STATE(); case 7: - if (lookahead == '\n') ADVANCE(3355); + if (lookahead == '\n') ADVANCE(3293); END_STATE(); case 8: - if (lookahead == '\n') ADVANCE(3344); + if (lookahead == '\n') ADVANCE(3282); END_STATE(); case 9: - if (lookahead == '\n') ADVANCE(3349); + if (lookahead == '\n') ADVANCE(3287); END_STATE(); case 10: - if (lookahead == '\n') ADVANCE(3366); + if (lookahead == '\n') ADVANCE(3304); END_STATE(); case 11: - if (lookahead == '\n') ADVANCE(3354); + if (lookahead == '\n') ADVANCE(3292); END_STATE(); case 12: - if (lookahead == '\n') ADVANCE(3362); + if (lookahead == '\n') ADVANCE(3300); END_STATE(); case 13: - if (lookahead == '\n') ADVANCE(3361); + if (lookahead == '\n') ADVANCE(3299); END_STATE(); case 14: - if (lookahead == '\n') ADVANCE(3359); + if (lookahead == '\n') ADVANCE(3297); END_STATE(); case 15: - if (lookahead == '\n') ADVANCE(3348); + if (lookahead == '\n') ADVANCE(3286); END_STATE(); case 16: - if (lookahead == '\n') ADVANCE(3360); + if (lookahead == '\n') ADVANCE(3298); END_STATE(); case 17: - if (lookahead == '\n') ADVANCE(3358); + if (lookahead == '\n') ADVANCE(3296); END_STATE(); case 18: - if (lookahead == '\n') ADVANCE(3363); + if (lookahead == '\n') ADVANCE(3301); END_STATE(); case 19: - if (lookahead == '\n') ADVANCE(3356); + if (lookahead == '\n') ADVANCE(3294); END_STATE(); case 20: - if (lookahead == '\n') ADVANCE(3352); + if (lookahead == '\n') ADVANCE(3290); END_STATE(); case 21: - if (lookahead == '\n') ADVANCE(3353); + if (lookahead == '\n') ADVANCE(3291); END_STATE(); case 22: - if (lookahead == '\n') ADVANCE(3357); + if (lookahead == '\n') ADVANCE(3295); END_STATE(); case 23: - if (lookahead == '\n') ADVANCE(3365); + if (lookahead == '\n') ADVANCE(3303); END_STATE(); case 24: - if (lookahead == '\n') ADVANCE(3364); + if (lookahead == '\n') ADVANCE(3302); END_STATE(); case 25: - if (lookahead == '\n') ADVANCE(2932); + if (lookahead == '\n') ADVANCE(2873); END_STATE(); case 26: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '!', 3885, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '*', 3842, - '+', 3850, - ',', 2987, - '-', 634, - '.', 3875, - '/', 3881, - '0', 3473, - '<', 3886, - '=', 3887, - '>', 3888, - '?', 3263, - 'I', 4021, - 'N', 4016, - '[', 2983, - '_', 3173, - '`', 695, - 'a', 3947, - 'b', 3938, - 'e', 3852, - 'f', 3917, - 'i', 3902, - 'm', 3956, - 'n', 3952, - 'o', 3854, - 's', 3977, - 't', 3960, - 'x', 3954, - '{', 3169, - '}', 3170, + '!', 597, + '#', 4822, + ')', 2927, + '*', 527, + '+', 531, + '-', 593, + '/', 582, + ';', 2879, + '<', 600, + '=', 1084, + '>', 603, + '?', 3201, + 'a', 739, + 'b', 715, + 'e', 545, + 'i', 741, + 'm', 765, + 'n', 760, + 'o', 550, + 's', 842, + 'x', 757, + '{', 3109, + '|', 2880, + '}', 3110, '\t', 26, ' ', 26, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || '9' < lookahead) && - (lookahead < ';' || '?' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); END_STATE(); case 27: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '!', 3885, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '*', 3842, - '+', 3850, - ',', 2987, - '-', 634, - '.', 3875, - '/', 3881, - '0', 3473, - '<', 3886, - '=', 3887, - '>', 3888, - 'I', 4021, - 'N', 4016, - '[', 2983, - '_', 3173, - '`', 695, - 'a', 3947, - 'b', 3938, - 'e', 3852, - 'f', 3917, - 'i', 3902, - 'm', 3956, - 'n', 3952, - 'o', 3854, - 's', 3977, - 't', 3960, - 'x', 3954, - '{', 3169, - '}', 3170, + '!', 597, + '#', 4822, + ')', 2927, + '*', 528, + '+', 552, + '-', 2979, + '/', 583, + ';', 2879, + '<', 600, + '=', 601, + '>', 603, + '?', 3201, + 'a', 739, + 'b', 715, + 'e', 545, + 'i', 741, + 'm', 765, + 'n', 760, + 'o', 550, + 's', 842, + 'x', 757, + '{', 3109, + '|', 2880, + '}', 3110, '\t', 27, ' ', 27, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || '9' < lookahead) && - (lookahead < ';' || '>' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); END_STATE(); case 28: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '!', 3885, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '*', 3842, - '+', 3850, - ',', 2987, - '-', 632, - '.', 3875, - '/', 3881, - '0', 3473, - '<', 3886, - '=', 3887, - '>', 3888, - 'I', 4021, - 'N', 4016, - '[', 2983, - '_', 3173, - '`', 695, - 'a', 3947, - 'b', 3938, - 'e', 3852, - 'f', 3917, - 'i', 3902, - 'm', 3956, - 'n', 3952, - 'o', 3854, - 's', 3977, - 't', 3960, - 'x', 3954, - '{', 3169, - '}', 3170, + '!', 597, + '#', 4822, + ')', 2927, + '*', 528, + '+', 552, + '-', 2979, + '/', 583, + ';', 2879, + '<', 600, + '=', 601, + '>', 603, + 'a', 739, + 'b', 715, + 'e', 545, + 'i', 741, + 'm', 765, + 'n', 760, + 'o', 550, + 's', 842, + 'x', 757, + '{', 3109, + '|', 2880, + '}', 3110, '\t', 28, ' ', 28, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || '9' < lookahead) && - (lookahead < ';' || '>' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); END_STATE(); case 29: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '!', 660, - '#', 5024, - ')', 2986, - '*', 587, - '+', 591, - ',', 2987, - '-', 656, - '/', 645, - ';', 2938, - '<', 663, - '=', 1144, - '>', 666, - '?', 3263, - 'a', 800, - 'b', 776, - 'e', 605, - 'i', 802, - 'm', 826, - 'n', 821, - 'o', 610, - 's', 903, - 'x', 818, - '{', 3169, - '|', 2939, - '}', 3170, + '!', 597, + '#', 4822, + ')', 2927, + '*', 528, + '+', 552, + '-', 873, + '/', 583, + ';', 2879, + '<', 600, + '=', 602, + '>', 603, + 'a', 739, + 'b', 715, + 'e', 545, + 'i', 741, + 'm', 765, + 'n', 760, + 'o', 550, + 's', 842, + 'x', 757, + '|', 2880, + '}', 3110, '\t', 29, ' ', 29, ); END_STATE(); case 30: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '!', 660, - '#', 5024, - ')', 2986, - '*', 588, - '+', 612, - ',', 2987, - '-', 3039, - '/', 646, - ';', 2938, - '<', 663, - '=', 664, - '>', 666, - '?', 3263, - 'a', 800, - 'b', 776, - 'e', 605, - 'i', 749, - 'm', 826, - 'n', 821, - 'o', 610, - 's', 903, - 'x', 818, - '{', 3169, - '|', 2939, - '}', 3170, + '!', 597, + '#', 4822, + ')', 2927, + '*', 528, + '+', 552, + '-', 873, + '/', 583, + ';', 2879, + '<', 600, + '=', 602, + '>', 603, + 'a', 739, + 'b', 715, + 'e', 539, + 'i', 741, + 'm', 765, + 'n', 760, + 'o', 534, + 's', 842, + 'x', 757, + '|', 2880, + '}', 3110, '\t', 30, ' ', 30, ); END_STATE(); case 31: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '!', 660, - '#', 5024, - ')', 2986, - '*', 588, - '+', 612, - '-', 934, - '/', 646, - ';', 2938, - '<', 663, - '=', 665, - '>', 666, - 'a', 800, - 'b', 776, - 'e', 605, - 'i', 802, - 'm', 826, - 'n', 821, - 'o', 610, - 's', 903, - 'x', 818, - '|', 2939, - '}', 3170, - '\t', 31, - ' ', 31, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + ')', 2927, + '+', 1346, + '-', 2987, + '.', 1347, + '0', 3410, + ';', 2879, + '=', 3694, + 'I', 1578, + 'N', 1575, + '[', 2924, + '^', 3637, + '_', 1368, + '`', 634, + 'a', 1464, + 'b', 1509, + 'c', 1369, + 'd', 1395, + 'e', 1473, + 'f', 1372, + 'h', 1449, + 'i', 1365, + 'l', 1417, + 'm', 1374, + 'n', 1396, + 'o', 1569, + 'r', 1397, + 's', 1487, + 't', 1501, + 'u', 1529, + 'w', 1442, + '{', 3109, + '}', 3110, ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(32); + if (lookahead == '!' || + ('&' <= lookahead && lookahead <= ',') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3433); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '0' || '@' < lookahead) && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1584); END_STATE(); case 32: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '!', 660, - '#', 5024, - ')', 2986, - '*', 588, - '+', 612, - '-', 934, - '/', 646, - ';', 2938, - '<', 663, - '=', 665, - '>', 666, - 'a', 800, - 'b', 776, - 'e', 599, - 'i', 802, - 'm', 826, - 'n', 821, - 'o', 594, - 's', 903, - 'x', 818, - '|', 2939, - '}', 3170, - '\t', 32, - ' ', 32, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + ')', 2927, + '+', 1346, + '-', 2987, + '.', 1347, + '0', 3410, + ';', 2879, + 'I', 1578, + 'N', 1575, + '[', 2924, + '^', 3637, + '_', 1368, + '`', 634, + 'a', 1464, + 'b', 1509, + 'c', 1369, + 'd', 1395, + 'e', 1473, + 'f', 1372, + 'h', 1449, + 'i', 1365, + 'l', 1417, + 'm', 1374, + 'n', 1396, + 'o', 1569, + 'r', 1397, + 's', 1487, + 't', 1501, + 'u', 1529, + 'w', 1442, + '{', 3109, + '}', 3110, ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(32); + if (lookahead == '!' || + ('&' <= lookahead && lookahead <= ',') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3433); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '0' || '@' < lookahead) && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1584); END_STATE(); case 33: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '!', 660, - '#', 5024, - '*', 588, - '+', 612, - ',', 2987, - '-', 934, - '/', 646, - '<', 663, - '=', 665, - '>', 666, - 'a', 800, - 'b', 776, - 'e', 808, - 'i', 802, - 'm', 826, - 'n', 821, - 'o', 846, - 's', 903, - 'x', 818, - '}', 3170, - '\t', 33, - ' ', 33, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + ')', 2927, + '+', 574, + '-', 2987, + '.', 575, + '0', 2366, + ':', 2921, + ';', 2879, + '=', 1082, + '>', 2958, + '@', 2960, + 'I', 2648, + 'N', 2644, + '[', 2924, + '_', 2370, + '`', 634, + 'a', 2500, + 'c', 2387, + 'e', 2319, + 'f', 2383, + 'i', 2498, + 'l', 2467, + 'n', 2519, + 'o', 2320, + 't', 2574, + 'v', 2388, + 'x', 2516, + '{', 3109, + '|', 2880, ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(34); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2373); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + (lookahead < '0' || '@' < lookahead) && + (lookahead < ']' || 'a' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2661); END_STATE(); case 34: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - ')', 2986, - '+', 636, - '-', 3047, - '.', 637, - '0', 2425, - ';', 2938, - '=', 1142, - '>', 3018, - '@', 3020, - 'I', 2707, - 'N', 2703, - '[', 2983, - '_', 2429, - '`', 695, - 'a', 2559, - 'c', 2446, - 'e', 2378, - 'f', 2442, - 'i', 2557, - 'l', 2526, - 'n', 2578, - 'o', 2379, - 't', 2633, - 'v', 2447, - 'x', 2575, - '{', 3169, - '|', 2939, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + ')', 2927, + '+', 574, + '-', 2987, + '.', 575, + '0', 2366, + ':', 2921, + ';', 2879, + '=', 1082, + '>', 2958, + 'I', 2648, + 'N', 2644, + '[', 2924, + '_', 2370, + '`', 634, + 'a', 2500, + 'c', 2387, + 'e', 2319, + 'f', 2383, + 'i', 2498, + 'l', 2467, + 'n', 2519, + 'o', 2320, + 't', 2574, + 'v', 2388, + 'x', 2516, + '{', 3109, + '|', 2880, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(35); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2432); + lookahead == ' ') SKIP(34); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2373); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2720); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2661); END_STATE(); case 35: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - ')', 2986, - '+', 636, - '-', 3047, - '.', 637, - '0', 2425, - ';', 2938, - '=', 1142, - '>', 3018, - 'I', 2707, - 'N', 2703, - '[', 2983, - '_', 2429, - '`', 695, - 'a', 2559, - 'c', 2446, - 'e', 2378, - 'f', 2442, - 'i', 2557, - 'l', 2526, - 'n', 2578, - 'o', 2379, - 't', 2633, - 'v', 2447, - 'x', 2575, - '{', 3169, - '|', 2939, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + '+', 1346, + '-', 2987, + '.', 1347, + '0', 3410, + '=', 3694, + 'I', 1578, + 'N', 1575, + '[', 2924, + '^', 3637, + '_', 1368, + '`', 634, + 'a', 1475, + 'b', 1523, + 'c', 1371, + 'd', 1420, + 'e', 1474, + 'f', 1373, + 'h', 1452, + 'i', 1367, + 'l', 1426, + 'm', 1384, + 'n', 1396, + 'o', 1570, + 'r', 1435, + 's', 1496, + 't', 1510, + 'u', 1539, + 'w', 1447, + '{', 3109, + '\t', 2878, + ' ', 2878, + '!', 1884, + '&', 1884, + '*', 1884, + ',', 1884, + '?', 1884, + '@', 1884, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(35); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2432); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3433); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2720); + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1584); END_STATE(); case 36: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - ')', 3462, - '+', 1405, - '-', 3047, - '.', 1406, - '0', 3472, - ';', 2938, - '=', 3764, - 'I', 1637, - 'N', 1634, - '[', 2983, - '^', 3699, - '_', 1427, - '`', 695, - 'a', 1523, - 'b', 1568, - 'c', 1428, - 'd', 1454, - 'e', 1532, - 'f', 1431, - 'h', 1508, - 'i', 1424, - 'l', 1476, - 'm', 1433, - 'n', 1455, - 'o', 1628, - 'r', 1456, - 's', 1546, - 't', 1560, - 'u', 1588, - 'w', 1501, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + '+', 1346, + '-', 2987, + '.', 1347, + '0', 3410, + 'I', 1578, + 'N', 1575, + '[', 2924, + '^', 3637, + '_', 1368, + '`', 634, + 'a', 1475, + 'b', 1509, + 'c', 1370, + 'd', 1419, + 'e', 1128, + 'f', 1373, + 'h', 1452, + 'i', 1365, + 'l', 1426, + 'm', 1375, + 'n', 1396, + 'o', 1129, + 'r', 1436, + 's', 1496, + 't', 1501, + 'u', 1539, + 'w', 1448, + '{', 3109, + '|', 2880, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(37); + lookahead == ' ') SKIP(36); if (lookahead == '!' || - ('&' <= lookahead && lookahead <= ',') || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3495); + lookahead == '@') ADVANCE(1884); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3433); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1643); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1584); END_STATE(); case 37: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - '+', 1405, - '-', 3047, - '.', 1406, - '0', 3472, - ';', 2938, - 'I', 1637, - 'N', 1634, - '[', 2983, - '^', 3699, - '_', 1427, - '`', 695, - 'a', 1523, - 'b', 1568, - 'c', 1428, - 'd', 1454, - 'e', 1532, - 'f', 1431, - 'h', 1508, - 'i', 1424, - 'l', 1476, - 'm', 1433, - 'n', 1455, - 'o', 1628, - 'r', 1456, - 's', 1546, - 't', 1560, - 'u', 1588, - 'w', 1501, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + '+', 1346, + '-', 2987, + '.', 1347, + '0', 3410, + 'I', 1870, + 'N', 1865, + '[', 2924, + '^', 3637, + '_', 1605, + '`', 634, + 'a', 1731, + 'b', 1787, + 'c', 1629, + 'd', 1669, + 'e', 1733, + 'f', 1616, + 'h', 1708, + 'i', 1600, + 'l', 1680, + 'm', 1627, + 'n', 1672, + 'o', 1843, + 'r', 1685, + 's', 1757, + 't', 1771, + 'u', 1802, + 'w', 1699, + '{', 3109, ); if (lookahead == '\t' || lookahead == ' ') SKIP(37); - if (lookahead == '!' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= ',') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3495); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3433); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < '0' || '@' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1643); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); case 38: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - '+', 1405, - '-', 3047, - '.', 1406, - '0', 3472, - '=', 3764, - 'I', 1637, - 'N', 1634, - '[', 2983, - '^', 3699, - '_', 1427, - '`', 695, - 'a', 1534, - 'b', 1582, - 'c', 1430, - 'd', 1479, - 'e', 1533, - 'f', 1432, - 'h', 1511, - 'i', 1426, - 'l', 1485, - 'm', 1443, - 'n', 1455, - 'o', 1629, - 'r', 1494, - 's', 1555, - 't', 1569, - 'u', 1598, - 'w', 1506, - '{', 3169, - '\t', 2937, - ' ', 2937, - '!', 1943, - '&', 1943, - '*', 1943, - ',', 1943, - '?', 1943, - '@', 1943, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + '+', 1346, + '-', 556, + '.', 1602, + '=', 3694, + 'I', 1870, + 'N', 1865, + '[', 3484, + ']', 2925, + '_', 1605, + '`', 634, + 'a', 1731, + 'b', 1787, + 'c', 1629, + 'd', 1669, + 'e', 1733, + 'f', 1616, + 'h', 1708, + 'i', 1597, + 'l', 1680, + 'm', 1627, + 'n', 1674, + 'o', 1843, + 'r', 1685, + 's', 1757, + 't', 1771, + 'u', 1802, + 'w', 1699, + '{', 3109, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3495); + if (lookahead == '\t' || + lookahead == ' ') SKIP(39); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < '0' || '@' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1643); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); case 39: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - '+', 1405, - '-', 3047, - '.', 1406, - '0', 3472, - 'I', 1637, - 'N', 1634, - '[', 2983, - '^', 3699, - '_', 1427, - '`', 695, - 'a', 1534, - 'b', 1568, - 'c', 1429, - 'd', 1478, - 'e', 1187, - 'f', 1432, - 'h', 1511, - 'i', 1424, - 'l', 1485, - 'm', 1434, - 'n', 1455, - 'o', 1188, - 'r', 1495, - 's', 1555, - 't', 1560, - 'u', 1598, - 'w', 1507, - '{', 3169, - '|', 2939, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + '+', 1346, + '-', 556, + '.', 1602, + 'I', 1870, + 'N', 1865, + ']', 2925, + '_', 1605, + '`', 634, + 'a', 1731, + 'b', 1787, + 'c', 1629, + 'd', 1669, + 'e', 1733, + 'f', 1616, + 'h', 1708, + 'i', 1597, + 'l', 1680, + 'm', 1627, + 'n', 1674, + 'o', 1843, + 'r', 1685, + 's', 1757, + 't', 1771, + 'u', 1802, + 'w', 1699, + '{', 3109, ); if (lookahead == '\t' || lookahead == ' ') SKIP(39); - if (lookahead == '!' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= ',') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3495); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < '0' || '@' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1643); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); case 40: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - '+', 1405, - '-', 3047, - '.', 1406, - '0', 3472, - 'I', 1929, - 'N', 1924, - '[', 2983, - '^', 3699, - '_', 1664, - '`', 695, - 'a', 1790, - 'b', 1846, - 'c', 1688, - 'd', 1728, - 'e', 1792, - 'f', 1675, - 'h', 1767, - 'i', 1659, - 'l', 1739, - 'm', 1686, - 'n', 1731, - 'o', 1902, - 'r', 1744, - 's', 1816, - 't', 1830, - 'u', 1861, - 'w', 1758, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + '+', 3797, + '-', 2987, + '.', 3794, + '0', 3411, + 'N', 3856, + '[', 2924, + '_', 3811, + '`', 634, + 'e', 3777, + 'f', 3824, + 'n', 3836, + 'o', 3778, + 't', 3839, + '{', 3109, ); if (lookahead == '\t' || lookahead == ' ') SKIP(40); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3495); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3860); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3879); END_STATE(); case 41: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - '+', 1405, - '-', 616, - '.', 1661, - '=', 3764, - 'I', 1929, - 'N', 1924, - '[', 3546, - ']', 2984, - '_', 1664, - '`', 695, - 'a', 1790, - 'b', 1846, - 'c', 1688, - 'd', 1728, - 'e', 1792, - 'f', 1675, - 'h', 1767, - 'i', 1656, - 'l', 1739, - 'm', 1686, - 'n', 1733, - 'o', 1902, - 'r', 1744, - 's', 1816, - 't', 1830, - 'u', 1861, - 'w', 1758, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + '+', 3797, + '-', 2973, + '.', 3794, + '0', 3411, + 'N', 3856, + '[', 2924, + '_', 3811, + '`', 634, + 'e', 3777, + 'f', 3824, + 'n', 3852, + 'o', 3778, + 't', 3839, + '{', 3109, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(42); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); + lookahead == ' ') SKIP(41); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3860); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3879); END_STATE(); case 42: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - '+', 1405, - '-', 616, - '.', 1661, - 'I', 1929, - 'N', 1924, - ']', 2984, - '_', 1664, - '`', 695, - 'a', 1790, - 'b', 1846, - 'c', 1688, - 'd', 1728, - 'e', 1792, - 'f', 1675, - 'h', 1767, - 'i', 1656, - 'l', 1739, - 'm', 1686, - 'n', 1733, - 'o', 1902, - 'r', 1744, - 's', 1816, - 't', 1830, - 'u', 1861, - 'w', 1758, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + '+', 4267, + ',', 2928, + '-', 4266, + '.', 4263, + '0', 3412, + 'N', 4319, + '[', 2924, + ']', 2925, + '_', 4286, + '`', 634, + 'e', 4256, + 'f', 4299, + 'n', 4316, + 'o', 4257, + 't', 4309, + '{', 3109, ); if (lookahead == '\t' || lookahead == ' ') SKIP(42); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4325); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); END_STATE(); case 43: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - '+', 3878, - '-', 3047, - '.', 3875, - '0', 3473, - 'N', 4016, - '[', 2983, - '_', 3903, - '`', 695, - 'e', 3853, - 'f', 3917, - 'n', 3955, - 'o', 3855, - 't', 3960, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + '+', 4267, + '-', 4266, + '.', 4268, + '0', 3412, + ';', 2879, + 'N', 4319, + '[', 2924, + ']', 2925, + '_', 4286, + '`', 634, + 'e', 4256, + 'f', 4299, + 'n', 4316, + 'o', 4257, + 't', 4309, + '{', 3109, ); if (lookahead == '\t' || lookahead == ' ') SKIP(43); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4021); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); + lookahead == 'i') ADVANCE(4325); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); + (lookahead < '+' || '.' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); END_STATE(); case 44: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - '+', 3878, - '-', 3033, - '.', 3875, - '0', 3473, - 'N', 4016, - '[', 2983, - '_', 3903, - '`', 695, - 'e', 3853, - 'f', 3917, - 'n', 3987, - 'o', 3855, - 't', 3960, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + ')', 2927, + ',', 2928, + '-', 2970, + '.', 3341, + ':', 2921, + '<', 2956, + '=', 1082, + '>', 2958, + '?', 3201, + '@', 2960, + '[', 3484, + ']', 2925, + '`', 634, + '{', 3109, + '|', 2880, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(44); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4021); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); + lookahead == ' ') SKIP(45); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + (lookahead < ':' || '@' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); + lookahead != '^' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2661); END_STATE(); case 45: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - '+', 4469, - '-', 4468, - '.', 4470, - '0', 3474, - ';', 2938, - 'N', 4521, - '[', 2983, - ']', 2984, - '_', 4488, - '`', 695, - 'e', 4458, - 'f', 4501, - 'n', 4518, - 'o', 4459, - 't', 4511, - '{', 3169, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + ')', 2927, + ',', 2928, + '-', 2970, + '.', 580, + ':', 2921, + '=', 1082, + '>', 2958, + '?', 3201, + ']', 2925, + '`', 634, + '{', 3109, + '|', 2880, ); if (lookahead == '\t' || lookahead == ' ') SKIP(45); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4527); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2661); END_STATE(); case 46: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - '+', 4469, - '-', 4468, - '.', 4465, - '0', 3474, - 'N', 4521, - '[', 2983, - ']', 2984, - '_', 4488, - '`', 695, - 'e', 4458, - 'f', 4501, - 'n', 4518, - 'o', 4459, - 't', 4511, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 3559, + '-', 2987, + '.', 1349, + '0', 3417, + 'I', 1870, + 'N', 1865, + '_', 1605, + '`', 634, + 'a', 1721, + 'b', 1770, + 'c', 1614, + 'd', 1654, + 'e', 1730, + 'f', 1615, + 'h', 1700, + 'i', 1598, + 'l', 1668, + 'm', 1617, + 'n', 1656, + 'o', 1842, + 'r', 1657, + 's', 1746, + 't', 1765, + 'u', 1796, + 'w', 1695, + '}', 3110, ); if (lookahead == '\t' || lookahead == ' ') SKIP(46); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4527); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); case 47: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 3878, - ',', 2987, - '-', 635, - '.', 3875, - '0', 3473, - 'N', 4016, - '[', 2983, - '_', 3173, - '`', 695, - 'e', 3853, - 'f', 3917, - 'n', 3987, - 'o', 3855, - 't', 3960, - '{', 3169, - '}', 3170, - '\t', 27, - ' ', 27, - 'I', 4021, - 'i', 4021, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 3797, + '-', 572, + '.', 3794, + '0', 3411, + 'N', 3856, + '[', 2924, + '_', 3114, + '`', 634, + 'e', 3777, + 'f', 3824, + 'n', 3852, + 'o', 3778, + 't', 3839, + '{', 3109, + '}', 3110, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); + if (lookahead == '\t' || + lookahead == ' ') SKIP(47); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3860); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3879); END_STATE(); case 48: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 4079, - ',', 2987, - '-', 4078, - '.', 4080, - '0', 3426, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'N', 4188, - 'P', 4103, - 'T', 4103, - '[', 2983, - '_', 3176, - '`', 695, - 'd', 4120, - 'e', 4041, - 'f', 4121, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4163, - 'o', 4043, - 'p', 4102, - 's', 4127, - 't', 4101, - 'u', 4164, - 'w', 4135, - '{', 3169, - '}', 3170, - 0xb5, 4164, - '\t', 27, - ' ', 27, - 'B', 3524, - 'b', 3524, - 'I', 4195, - 'i', 4195, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 3561, + ',', 1884, + '-', 2989, + '.', 1141, + '0', 3418, + 'I', 1327, + 'N', 1322, + '[', 3484, + '_', 1160, + '`', 634, + 'a', 1241, + 'b', 1276, + 'c', 1177, + 'd', 1205, + 'e', 1246, + 'f', 1174, + 'h', 1228, + 'i', 1155, + 'l', 1209, + 'm', 1170, + 'n', 1203, + 'o', 1314, + 'r', 1193, + 's', 1257, + 't', 1270, + 'u', 1287, + 'w', 1224, + '}', 3110, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3441); + if (lookahead == '\t' || + lookahead == ' ') SKIP(46); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(4633); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4218); + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); END_STATE(); case 49: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 4079, - ',', 2987, - '-', 4078, - '.', 4080, - '0', 3475, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'N', 4188, - 'P', 4103, - 'T', 4103, - '[', 2983, - '_', 3178, - '`', 695, - 'd', 4120, - 'e', 4041, - 'f', 4121, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4163, - 'o', 4043, - 'p', 4102, - 's', 4127, - 't', 4101, - 'u', 4164, - 'w', 4135, - '{', 3169, - '}', 3170, - 0xb5, 4164, - '\t', 27, - ' ', 27, - 'B', 3524, - 'b', 3524, - 'I', 4195, - 'i', 4195, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + ',', 2928, + '-', 2970, + '.', 3316, + ':', 2921, + '=', 1082, + '>', 2958, + '?', 3201, + '`', 634, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4218); + if (lookahead == '\t' || + lookahead == ' ') SKIP(50); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2661); END_STATE(); case 50: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 4079, - ',', 2987, - '-', 4078, - '.', 4080, - '0', 3475, - 'E', 4103, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'N', 4188, - 'P', 4103, - 'T', 4103, - '[', 2983, - '_', 3178, - '`', 695, - 'd', 4120, - 'e', 4044, - 'f', 4121, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4163, - 'o', 4043, - 'p', 4102, - 's', 4127, - 't', 4101, - 'u', 4164, - 'w', 4135, - '{', 3169, - '}', 3170, - 0xb5, 4164, - '\t', 27, - ' ', 27, - 'B', 3524, - 'b', 3524, - 'I', 4195, - 'i', 4195, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + ',', 2928, + '-', 2970, + ':', 2921, + '=', 1082, + '>', 2958, + '?', 3201, + '`', 634, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4218); + if (lookahead == '\t' || + lookahead == ' ') SKIP(50); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2661); END_STATE(); case 51: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 4079, - ',', 2987, - '-', 4078, - '.', 3394, - '0', 3475, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'N', 4188, - 'P', 4103, - 'T', 4103, - '[', 2983, - '_', 3178, - '`', 695, - 'd', 4120, - 'e', 4041, - 'f', 4121, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4163, - 'o', 4043, - 'p', 4102, - 's', 4127, - 't', 4101, - 'u', 4164, - 'w', 4135, - '{', 3169, - '}', 3170, - 0xb5, 4164, - '\t', 27, - ' ', 27, - 'B', 3524, - 'b', 3524, - 'I', 4195, - 'i', 4195, + '"', 3524, + '#', 4822, + '\'', 525, + ')', 2927, + '*', 3198, + '+', 1346, + '-', 573, + '.', 1602, + ';', 2879, + '=', 610, + 'I', 1870, + 'N', 1865, + '[', 2924, + '_', 1605, + '`', 634, + 'a', 1731, + 'b', 1787, + 'c', 1629, + 'd', 1669, + 'e', 1733, + 'f', 1616, + 'h', 1708, + 'i', 1597, + 'l', 1680, + 'm', 1627, + 'n', 1674, + 'o', 1843, + 'r', 1685, + 's', 1757, + 't', 1771, + 'u', 1802, + 'w', 1699, + '{', 3109, + '|', 2880, + '}', 3110, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); + if (lookahead == '\t' || + lookahead == ' ') SKIP(51); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4218); + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'f' < lookahead)) ADVANCE(1884); END_STATE(); case 52: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 3880, - ',', 2987, - '-', 641, - '.', 3876, - '0', 3427, - 'N', 4016, - '[', 2983, - '_', 3177, - '`', 695, - 'e', 3853, - 'f', 3917, - 'n', 3987, - 'o', 3855, - 't', 3960, - '{', 3169, - '}', 3170, + '#', 4822, + '$', 2929, + '(', 3232, + ')', 2927, + '+', 4364, + ',', 2928, + '-', 2977, + '.', 4360, + ':', 2921, + '=', 1082, + ']', 2925, + '_', 2363, + '|', 2880, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(84); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4021); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3442); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); + lookahead == ' ') SKIP(67); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(4453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3360); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); END_STATE(); case 53: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 3880, - ',', 2987, - '-', 641, - '.', 3387, - '0', 3427, - 'N', 4016, - '[', 2983, - '_', 3177, - '`', 695, - 'e', 3853, - 'f', 3917, - 'n', 3987, - 'o', 3855, - 't', 3960, - '{', 3169, - '}', 3170, + '#', 4822, + '$', 2929, + '(', 3232, + ')', 2927, + '+', 4364, + ',', 2928, + '-', 2977, + '.', 3337, + ':', 2921, + '=', 1082, + ']', 2925, + '_', 2363, + '|', 2880, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(84); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4021); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3442); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); + lookahead == ' ') SKIP(67); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(4453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3360); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); END_STATE(); case 54: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - ')', 2986, - ',', 2987, - '-', 3030, - '.', 3403, - ':', 2980, - '<', 3016, - '=', 1142, - '>', 3018, - '?', 3263, - '@', 3020, - '[', 3546, - ']', 2984, - '`', 695, - '{', 3169, - '|', 2939, + '#', 4822, + '$', 2929, + '(', 3232, + ')', 2927, + ',', 2928, + '-', 2970, + '.', 3341, + ':', 2921, + '=', 1082, + 'E', 2311, + 'G', 2357, + 'K', 2357, + 'M', 2357, + 'P', 2357, + 'T', 2357, + ']', 2925, + 'd', 2380, + 'e', 2310, + 'g', 2356, + 'h', 2536, + 'k', 2356, + 'm', 2358, + 'n', 2576, + 'p', 2356, + 's', 2409, + 't', 2356, + 'u', 2576, + 'w', 2470, + '|', 2880, + 0xb5, 2576, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(55); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < ':' || '@' < lookahead) && - lookahead != ']' && - lookahead != '^' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2720); + lookahead == ' ') SKIP(71); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3466); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(4453); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); END_STATE(); case 55: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - ')', 2986, - ',', 2987, - '-', 3030, - '.', 643, - ':', 2980, - '=', 1142, - '>', 3018, - '?', 3263, - ']', 2984, - '`', 695, - '{', 3169, - '|', 2939, + '#', 4822, + '$', 2929, + '(', 3232, + ')', 2927, + ',', 2928, + '-', 2970, + '.', 3341, + ':', 2921, + '=', 1082, + ']', 2925, + '|', 2880, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(55); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2720); + lookahead == ' ') SKIP(71); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2312); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(4453); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); END_STATE(); case 56: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3621, - '-', 3047, - '.', 1408, - '0', 3479, - 'I', 1929, - 'N', 1924, - '_', 1664, - '`', 695, - 'a', 1780, - 'b', 1829, - 'c', 1673, - 'd', 1713, - 'e', 1789, - 'f', 1674, - 'h', 1759, - 'i', 1657, - 'l', 1727, - 'm', 1676, - 'n', 1715, - 'o', 1901, - 'r', 1716, - 's', 1805, - 't', 1824, - 'u', 1855, - 'w', 1754, - '}', 3170, + '#', 4822, + '$', 2929, + '(', 3232, + ')', 2927, + ',', 2928, + '-', 2970, + '.', 4365, + ':', 2921, + '=', 1082, + 'E', 2311, + 'G', 2357, + 'K', 2357, + 'M', 2357, + 'P', 2357, + 'T', 2357, + ']', 2925, + '_', 2363, + 'd', 2380, + 'e', 2310, + 'g', 2356, + 'h', 2536, + 'k', 2356, + 'm', 2358, + 'n', 2576, + 'p', 2356, + 's', 2409, + 't', 2356, + 'u', 2576, + 'w', 2470, + '|', 2880, + 0xb5, 2576, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(56); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + lookahead == ' ') SKIP(71); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3466); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(4453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3360); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); END_STATE(); case 57: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3878, - ',', 2987, - '-', 633, - '.', 3395, - '0', 3473, - 'N', 4016, - '[', 2983, - '_', 3173, - '`', 695, - 'e', 3853, - 'f', 3917, - 'n', 3987, - 'o', 3855, - 't', 3960, - '{', 3169, - '}', 3170, - '\t', 28, - ' ', 28, - 'I', 4021, - 'i', 4021, + '#', 4822, + '$', 2929, + '(', 3232, + ')', 2927, + ',', 2928, + '-', 2970, + '.', 4365, + ':', 2921, + '=', 1082, + 'E', 2311, + 'G', 2357, + 'K', 2357, + 'M', 2357, + 'P', 2357, + 'T', 2357, + ']', 2925, + 'd', 2380, + 'e', 2310, + 'g', 2356, + 'h', 2536, + 'k', 2356, + 'm', 2358, + 'n', 2576, + 'p', 2356, + 's', 2409, + 't', 2356, + 'u', 2576, + 'w', 2470, + '|', 2880, + 0xb5, 2576, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); + if (lookahead == '\t' || + lookahead == ' ') SKIP(71); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3466); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(4453); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); END_STATE(); case 58: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3878, - ',', 2987, - '-', 635, - '.', 3875, - '0', 3473, - '?', 3263, - 'N', 4016, - '[', 2983, - '_', 3173, - '`', 695, - 'e', 3853, - 'f', 3917, - 'n', 3987, - 'o', 3855, - 't', 3960, - '{', 3169, - '}', 3170, + '#', 4822, + '$', 2929, + '(', 3232, + ')', 2927, + ',', 2928, + '-', 2970, + '.', 4365, + ':', 2921, + '=', 1082, + 'E', 2357, + 'G', 2357, + 'K', 2357, + 'M', 2357, + 'P', 2357, + 'T', 2357, + ']', 2925, + 'd', 2380, + 'e', 2356, + 'g', 2356, + 'h', 2536, + 'k', 2356, + 'm', 2358, + 'n', 2576, + 'p', 2356, + 's', 2409, + 't', 2356, + 'u', 2576, + 'w', 2470, + '|', 2880, + 0xb5, 2576, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(58); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4021); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); + lookahead == ' ') SKIP(71); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3466); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(4453); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); END_STATE(); case 59: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3878, - ',', 2987, - '-', 635, - '.', 3875, - '0', 3473, - 'E', 3910, - 'N', 4016, - '[', 2983, - '_', 3173, - '`', 695, - 'e', 3846, - 'f', 3917, - 'n', 3987, - 'o', 3855, - 't', 3960, - '{', 3169, - '}', 3170, + '#', 4822, + '$', 2929, + '(', 3232, + ')', 2927, + ',', 2928, + '-', 2970, + '.', 4365, + ':', 2921, + '=', 1082, + ']', 2925, + '_', 2363, + '|', 2880, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(62); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4021); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); + lookahead == ' ') SKIP(71); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2312); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(4453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3360); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); END_STATE(); case 60: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3878, - ',', 2987, - '-', 635, - '.', 3875, - '0', 3473, - 'N', 4016, - '[', 3546, - '_', 3173, - '`', 695, - 'e', 3853, - 'f', 3917, - 'n', 3987, - 'o', 3855, - 't', 3960, - '{', 3169, - '}', 3170, - '\t', 27, - ' ', 27, - 'I', 4021, - 'i', 4021, + '#', 4822, + '$', 2929, + '(', 3232, + ')', 2927, + ',', 2928, + '-', 2970, + '.', 4365, + ':', 2921, + '=', 1082, + ']', 2925, + '|', 2880, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); + if (lookahead == '\t' || + lookahead == ' ') SKIP(71); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2312); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(4453); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); END_STATE(); case 61: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3878, - ',', 2987, - '-', 635, - '.', 3875, - '0', 3473, - 'N', 4016, - '[', 2983, - '_', 3173, - '`', 695, - 'e', 3853, - 'f', 3917, - 'n', 3987, - 'o', 3855, - 't', 3960, - '{', 3169, - '}', 3170, - '\t', 27, - ' ', 27, - 'I', 4021, - 'i', 4021, + '#', 4822, + '$', 2929, + '(', 3232, + ')', 2927, + ',', 2928, + '-', 2970, + '.', 4365, + ':', 2921, + '=', 1082, + ']', 2925, + '|', 2880, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); + if (lookahead == '\t' || + lookahead == ' ') SKIP(71); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(4453); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); END_STATE(); case 62: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3878, - ',', 2987, - '-', 635, - '.', 3875, - '0', 3473, - 'N', 4016, - '[', 2983, - '_', 3173, - '`', 695, - 'e', 3853, - 'f', 3917, - 'n', 3987, - 'o', 3855, - 't', 3960, - '{', 3169, - '}', 3170, + '#', 4822, + '$', 2929, + '(', 3232, + ')', 2927, + ',', 2928, + '-', 2970, + '.', 4361, + ':', 2921, + '=', 1082, + ']', 2925, + '_', 2363, + '|', 2880, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(62); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4021); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); + lookahead == ' ') SKIP(71); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2312); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(4453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3360); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); END_STATE(); case 63: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3878, - ',', 2987, - '-', 635, - '.', 3875, - '0', 3427, - 'E', 3910, - 'N', 4016, - '[', 2983, - '_', 3177, - '`', 695, - 'e', 3846, - 'f', 3917, - 'n', 3987, - 'o', 3855, - 't', 3960, - '{', 3169, - '}', 3170, + '#', 4822, + '$', 2929, + '(', 3232, + ')', 2927, + ',', 2928, + '-', 2970, + '.', 4361, + ':', 2921, + '=', 1082, + ']', 2925, + '|', 2880, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(62); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4021); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3442); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); + lookahead == ' ') SKIP(71); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2312); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(4453); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); END_STATE(); case 64: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3878, - ',', 2987, - '-', 635, - '.', 3877, - '0', 3473, - 'E', 3897, - 'G', 3900, - 'K', 3900, - 'M', 3900, - 'N', 4016, - 'P', 3900, - 'T', 3900, - '[', 2983, - '_', 3173, - '`', 695, - 'd', 3918, - 'e', 3845, - 'f', 3917, - 'g', 3899, - 'h', 3959, - 'k', 3899, - 'm', 3901, - 'n', 3971, - 'o', 3855, - 'p', 3899, - 's', 3929, - 't', 3898, - 'u', 3972, - 'w', 3941, - '{', 3169, - '}', 3170, - 0xb5, 3972, - '\t', 27, - ' ', 27, - 'B', 3524, - 'b', 3524, - 'I', 4021, - 'i', 4021, + '#', 4822, + '$', 2929, + '(', 3232, + ')', 2927, + ',', 2928, + '-', 2970, + '.', 4361, + ':', 2921, + '=', 1082, + ']', 2925, + '|', 2880, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); + if (lookahead == '\t' || + lookahead == ' ') SKIP(71); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(4453); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); END_STATE(); case 65: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3878, - ',', 2987, - '-', 635, - '.', 3877, - '0', 3473, - 'E', 3900, - 'G', 3900, - 'K', 3900, - 'M', 3900, - 'N', 4016, - 'P', 3900, - 'T', 3900, - '[', 2983, - '_', 3173, - '`', 695, - 'd', 3918, - 'e', 3851, - 'f', 3917, - 'g', 3899, - 'h', 3959, - 'k', 3899, - 'm', 3901, - 'n', 3971, - 'o', 3855, - 'p', 3899, - 's', 3929, - 't', 3898, - 'u', 3972, - 'w', 3941, - '{', 3169, - '}', 3170, - 0xb5, 3972, - '\t', 27, - ' ', 27, - 'B', 3524, - 'b', 3524, - 'I', 4021, - 'i', 4021, + '#', 4822, + '$', 2929, + '(', 3232, + ')', 2927, + ',', 2928, + '-', 2970, + '.', 3336, + ':', 2921, + '=', 1082, + ']', 2925, + '|', 2880, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); + if (lookahead == '\t' || + lookahead == ' ') SKIP(71); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2312); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(4453); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); END_STATE(); case 66: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3878, - ',', 2987, - '-', 635, - '.', 3877, - '0', 3473, - 'E', 3910, - 'N', 4016, - '[', 2983, - '_', 3173, - '`', 695, - 'e', 3846, - 'f', 3917, - 'n', 3987, - 'o', 3855, - 't', 3960, - '{', 3169, - '}', 3170, + '#', 4822, + '$', 2929, + '(', 2926, + '+', 574, + '-', 2987, + '.', 623, + '0', 2365, + 'N', 2644, + '_', 2370, + 'f', 2384, + 'n', 2520, + 't', 2574, + '{', 3109, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(62); + lookahead == ' ') SKIP(66); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4021); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); + lookahead == 'i') ADVANCE(2648); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2370); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2661); END_STATE(); case 67: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3878, - ',', 2987, - '-', 635, - '.', 3877, - '0', 3473, - 'N', 4016, - '[', 2983, - '_', 3173, - '`', 695, - 'e', 3853, - 'f', 3917, - 'n', 3987, - 'o', 3855, - 't', 3960, - '{', 3169, - '}', 3170, - '\t', 27, - ' ', 27, - 'I', 4021, - 'i', 4021, + '#', 4822, + '$', 2929, + ')', 2927, + '+', 579, + ',', 2928, + '-', 2975, + '.', 581, + ':', 2921, + '=', 1082, + ']', 2925, + '|', 2880, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); + if (lookahead == '\t' || + lookahead == ' ') SKIP(67); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2661); END_STATE(); case 68: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3878, - ',', 2987, - '-', 635, - '.', 3877, - '0', 3473, - 'N', 4016, - '[', 2983, - '_', 3173, - '`', 695, - 'e', 3853, - 'f', 3917, - 'n', 3987, - 'o', 3855, - 't', 3960, - '{', 3169, - '}', 3170, + '#', 4822, + '$', 2929, + ')', 2927, + ',', 2928, + '-', 2970, + '.', 3339, + ':', 2921, + '=', 1082, + '?', 3201, + ']', 2925, + '|', 2880, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(62); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4021); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); + lookahead == ' ') SKIP(70); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2661); END_STATE(); case 69: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3878, - ',', 2987, - '-', 635, - '.', 3877, - '0', 3427, - 'E', 3897, - 'G', 3900, - 'K', 3900, - 'M', 3900, - 'N', 4016, - 'P', 3900, - 'T', 3900, - '[', 2983, - '_', 3177, - '`', 695, - 'd', 3918, - 'e', 3845, - 'f', 3917, - 'g', 3899, - 'h', 3959, - 'k', 3899, - 'm', 3901, - 'n', 3971, - 'o', 3855, - 'p', 3899, - 's', 3929, - 't', 3898, - 'u', 3972, - 'w', 3941, - '{', 3169, - '}', 3170, - 0xb5, 3972, - '\t', 27, - ' ', 27, - 'B', 3524, - 'b', 3524, - 'I', 4021, - 'i', 4021, + '#', 4822, + '$', 2929, + ')', 2927, + ',', 2928, + '-', 2970, + '.', 580, + ':', 2921, + '=', 1082, + '?', 2964, + ']', 2925, + '|', 2880, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3442); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); + if (lookahead == '\t' || + lookahead == ' ') SKIP(71); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2661); END_STATE(); case 70: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3878, - ',', 2987, - '-', 635, - '.', 3877, - '0', 3427, - 'E', 3910, - 'N', 4016, - '[', 2983, - '_', 3177, - '`', 695, - 'e', 3846, - 'f', 3917, - 'n', 3987, - 'o', 3855, - 't', 3960, - '{', 3169, - '}', 3170, + '#', 4822, + '$', 2929, + ')', 2927, + ',', 2928, + '-', 2970, + '.', 580, + ':', 2921, + '=', 1082, + '?', 3201, + ']', 2925, + '|', 2880, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(62); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4021); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3442); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); + lookahead == ' ') SKIP(70); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2661); END_STATE(); case 71: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3878, - ',', 2987, - '-', 635, - '.', 3395, - '0', 3473, - '?', 3263, - 'N', 4016, - '[', 2983, - '_', 3173, - '`', 695, - 'e', 3853, - 'f', 3917, - 'n', 3987, - 'o', 3855, - 't', 3960, - '{', 3169, - '}', 3170, - '\t', 26, - ' ', 26, - 'I', 4021, - 'i', 4021, + '#', 4822, + '$', 2929, + ')', 2927, + ',', 2928, + '-', 2970, + '.', 580, + ':', 2921, + '=', 1082, + ']', 2925, + '|', 2880, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); + if (lookahead == '\t' || + lookahead == ' ') SKIP(71); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2661); END_STATE(); case 72: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3878, - ',', 2987, - '-', 635, - '.', 3395, - '0', 3473, - '?', 3263, - 'N', 4016, - '[', 2983, - '_', 3173, - '`', 695, - 'e', 3853, - 'f', 3917, - 'n', 3987, - 'o', 3855, - 't', 3960, - '{', 3169, - '}', 3170, + '#', 4822, + '$', 2929, + ')', 2927, + '-', 2970, + '.', 576, + ':', 2921, + ';', 2879, + '=', 1082, + 'a', 738, + 'e', 547, + 'i', 735, + 'o', 548, + 'x', 756, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(58); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4021); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); + lookahead == ' ') SKIP(73); END_STATE(); case 73: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3878, - ',', 2987, - '-', 635, - '.', 3395, - '0', 3473, - 'E', 3897, - 'G', 3900, - 'K', 3900, - 'M', 3900, - 'N', 4016, - 'P', 3900, - 'T', 3900, - '[', 2983, - '_', 3173, - '`', 695, - 'd', 3918, - 'e', 3845, - 'f', 3917, - 'g', 3899, - 'h', 3959, - 'k', 3899, - 'm', 3901, - 'n', 3971, - 'o', 3855, - 'p', 3899, - 's', 3929, - 't', 3898, - 'u', 3972, - 'w', 3941, - '{', 3169, - '}', 3170, - 0xb5, 3972, - '\t', 27, - ' ', 27, - 'B', 3524, - 'b', 3524, - 'I', 4021, - 'i', 4021, + '#', 4822, + '$', 2929, + ')', 2927, + '-', 2970, + ':', 2921, + ';', 2879, + '=', 1082, + 'a', 738, + 'e', 547, + 'i', 735, + 'o', 548, + 'x', 756, + '{', 3109, + '|', 2880, + '}', 3110, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); + if (lookahead == '\t' || + lookahead == ' ') SKIP(73); END_STATE(); case 74: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3878, - ',', 2987, - '-', 635, - '.', 3395, - '0', 3473, - 'E', 3910, - 'N', 4016, - '[', 2983, - '_', 3173, - '`', 695, - 'e', 3846, - 'f', 3917, - 'n', 3987, - 'o', 3855, - 't', 3960, - '{', 3169, - '}', 3170, + '#', 4822, + '(', 3232, + ')', 2927, + '-', 2970, + '.', 576, + ';', 2879, + '=', 610, + 'E', 619, + 'G', 619, + 'K', 619, + 'M', 619, + 'P', 619, + 'T', 619, + '[', 3484, + 'd', 637, + 'e', 543, + 'g', 618, + 'h', 773, + 'k', 618, + 'm', 620, + 'n', 796, + 'o', 551, + 'p', 618, + 's', 678, + 't', 618, + 'u', 796, + 'w', 719, + '{', 3109, + '|', 2880, + '}', 3110, + 0xb5, 796, + '\t', 28, + ' ', 28, + 'B', 3462, + 'b', 3462, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(62); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4021); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); END_STATE(); case 75: - ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3878, - ',', 2987, - '-', 635, - '.', 3395, - '0', 3473, - 'N', 4016, - '[', 2983, - '_', 3173, - '`', 695, - 'e', 3853, - 'f', 3917, - 'n', 3987, - 'o', 3855, - 't', 3960, - '{', 3169, - '}', 3170, - ); + if (lookahead == '\n') ADVANCE(2873); + if (lookahead == '\r') ADVANCE(25); + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '(') ADVANCE(3232); + if (lookahead == '.') ADVANCE(3330); + if (lookahead == '{') ADVANCE(3109); if (lookahead == '\t' || - lookahead == ' ') SKIP(62); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4021); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); + lookahead == ' ') SKIP(87); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3943); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 76: - ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3878, - ',', 2987, - '-', 635, - '.', 3382, - '0', 3473, - '?', 3263, - 'N', 4016, - '[', 2983, - '_', 3173, - '`', 695, - 'e', 3853, - 'f', 3917, - 'n', 3987, - 'o', 3855, - 't', 3960, - '{', 3169, - '}', 3170, - '\t', 26, - ' ', 26, - 'I', 4021, - 'i', 4021, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); + if (lookahead == '\n') ADVANCE(2873); + if (lookahead == '\r') ADVANCE(25); + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '(') ADVANCE(3232); + if (lookahead == '.') ADVANCE(3912); + if (lookahead == '_') ADVANCE(3933); + if (lookahead == '{') ADVANCE(3109); + if (lookahead == '\t' || + lookahead == ' ') SKIP(87); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3943); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 77: - ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3878, - ',', 2987, - '-', 635, - '.', 3382, - '0', 3473, - '?', 3263, - 'N', 4016, - '[', 2983, - '_', 3173, - '`', 695, - 'e', 3853, - 'f', 3917, - 'n', 3987, - 'o', 3855, - 't', 3960, - '{', 3169, - '}', 3170, - ); + if (lookahead == '\n') ADVANCE(2873); + if (lookahead == '\r') ADVANCE(25); + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '(') ADVANCE(3232); + if (lookahead == '.') ADVANCE(3912); + if (lookahead == '{') ADVANCE(3109); if (lookahead == '\t' || - lookahead == ' ') SKIP(58); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4021); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); + lookahead == ' ') SKIP(87); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3943); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 78: - ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3878, - ',', 2987, - '-', 635, - '.', 3382, - '0', 3473, - 'E', 3910, - 'N', 4016, - '[', 2983, - '_', 3173, - '`', 695, - 'e', 3846, - 'f', 3917, - 'n', 3987, - 'o', 3855, - 't', 3960, - '{', 3169, - '}', 3170, - ); + if (lookahead == '\n') ADVANCE(2873); + if (lookahead == '\r') ADVANCE(25); + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '(') ADVANCE(3232); + if (lookahead == '.') ADVANCE(3912); + if (lookahead == '{') ADVANCE(3109); if (lookahead == '\t' || - lookahead == ' ') SKIP(62); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4021); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); + lookahead == ' ') SKIP(87); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 79: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3878, - ',', 2987, - '-', 635, - '.', 3382, - '0', 3473, - 'N', 4016, - '[', 2983, - '_', 3173, - '`', 695, - 'e', 3853, - 'f', 3917, - 'n', 3987, - 'o', 3855, - 't', 3960, - '{', 3169, - '}', 3170, - '\t', 27, - ' ', 27, - 'I', 4021, - 'i', 4021, + '#', 4822, + ')', 2927, + '-', 611, + '.', 3316, + ':', 2921, + ';', 2879, + '=', 1082, + '>', 2958, + '@', 2960, + '[', 2924, + ']', 2925, + 'c', 2450, + 'e', 2569, + 'f', 2636, + 'i', 2499, + 'l', 2467, + 'o', 2509, + 'v', 2388, + '{', 3109, + '}', 3110, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); + if (lookahead == '\t' || + lookahead == ' ') SKIP(80); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2661); END_STATE(); case 80: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3878, - ',', 2987, - '-', 635, - '.', 3382, - '0', 3473, - 'N', 4016, - '[', 2983, - '_', 3173, - '`', 695, - 'e', 3853, - 'f', 3917, - 'n', 3987, - 'o', 3855, - 't', 3960, - '{', 3169, - '}', 3170, + '#', 4822, + ')', 2927, + '-', 611, + ':', 2921, + ';', 2879, + '=', 1082, + '>', 2958, + '[', 2924, + ']', 2925, + 'c', 2450, + 'e', 2569, + 'f', 2636, + 'i', 2499, + 'l', 2467, + 'o', 2509, + 'v', 2388, + '{', 3109, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(62); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4021); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); + lookahead == ' ') SKIP(80); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2661); END_STATE(); case 81: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3878, - '-', 635, - '.', 3875, - '0', 3473, - 'N', 4016, - '[', 2983, - '_', 3173, - '`', 695, - 'e', 3853, - 'f', 3917, - 'n', 3987, - 'o', 3855, - 't', 3960, - '{', 3169, - '}', 3170, + '#', 4822, + '.', 3330, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'd', 3948, + 'e', 3927, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + 0xb5, 3984, + '\t', 2878, + ' ', 2878, + 'B', 3462, + 'b', 3462, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(81); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4021); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 82: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4079, - ',', 2987, - '-', 4078, - '.', 4076, - '0', 3475, - 'N', 4188, - '[', 2983, - '_', 3178, - '`', 695, - 'e', 4045, - 'f', 4121, - 'n', 4174, - 'o', 4043, - 't', 4152, - '{', 3169, - '}', 3170, - '\t', 27, - ' ', 27, - 'I', 4195, - 'i', 4195, + '#', 4822, + '.', 3912, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + '_', 3933, + 'd', 3948, + 'e', 3927, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + 0xb5, 3984, + '\t', 2878, + ' ', 2878, + 'B', 3462, + 'b', 3462, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4218); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 83: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3623, - ',', 1943, - '-', 3049, - '.', 1200, - '0', 3480, - 'I', 1386, - 'N', 1381, - '[', 3546, - '_', 1219, - '`', 695, - 'a', 1300, - 'b', 1335, - 'c', 1236, - 'd', 1264, - 'e', 1305, - 'f', 1233, - 'h', 1287, - 'i', 1214, - 'l', 1268, - 'm', 1229, - 'n', 1262, - 'o', 1373, - 'r', 1252, - 's', 1316, - 't', 1329, - 'u', 1346, - 'w', 1283, - '}', 3170, + '#', 4822, + '.', 3912, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'd', 3948, + 'e', 3927, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + 0xb5, 3984, + '\t', 2878, + ' ', 2878, + 'B', 3462, + 'b', 3462, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(56); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4835); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 84: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3880, - ',', 2987, - '-', 641, - '.', 3876, - '0', 3473, - 'N', 4016, - '[', 2983, - '_', 3173, - '`', 695, - 'e', 3853, - 'f', 3917, - 'n', 3987, - 'o', 3855, - 't', 3960, - '{', 3169, - '}', 3170, + '#', 4822, + '.', 3912, + 'E', 3931, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'd', 3948, + 'e', 3930, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + 0xb5, 3984, + '\t', 2878, + ' ', 2878, + 'B', 3462, + 'b', 3462, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(84); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4021); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 85: - ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '"', 3586, - '#', 5024, - '\'', 585, - ')', 2986, - '*', 3260, - '+', 1405, - '-', 635, - '.', 1661, - ';', 2938, - '=', 673, - 'I', 1929, - 'N', 1924, - '[', 2983, - '_', 1664, - '`', 695, - 'a', 1790, - 'b', 1846, - 'c', 1688, - 'd', 1728, - 'e', 1792, - 'f', 1675, - 'h', 1767, - 'i', 1656, - 'l', 1739, - 'm', 1686, - 'n', 1733, - 'o', 1902, - 'r', 1744, - 's', 1816, - 't', 1830, - 'u', 1861, - 'w', 1758, - '{', 3169, - '|', 2939, - '}', 3170, - ); + if (lookahead == '\n') ADVANCE(2873); + if (lookahead == '\r') ADVANCE(25); + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '=') ADVANCE(3694); if (lookahead == '\t' || - lookahead == ' ') SKIP(85); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead)) ADVANCE(1943); + lookahead == ' ') ADVANCE(2878); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2840); END_STATE(); case 86: - ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '"', 3586, - '#', 5031, - '$', 2995, - '\'', 585, - '(', 3294, - '+', 4249, - ',', 2988, - '-', 4248, - '.', 4245, - '0', 4275, - 'N', 4417, - '[', 2983, - '_', 3179, - '`', 695, - 'e', 4228, - 'f', 4281, - 'n', 4394, - 'o', 4229, - 't', 4356, - '{', 3169, - '}', 3170, - '\t', 27, - ' ', 27, - 'I', 4426, - 'i', 4426, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4279); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4456); + if (lookahead == '\n') ADVANCE(2873); + if (lookahead == '\r') ADVANCE(25); + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '=') ADVANCE(3694); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(2878); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); case 87: - ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '$', 2989, - '(', 3294, - ')', 2986, - '+', 4566, - ',', 2987, - '-', 3037, - '.', 4562, - ':', 2980, - ']', 2984, - '_', 2422, - '|', 2939, - ); + if (lookahead == '\n') ADVANCE(2873); + if (lookahead == '\r') ADVANCE(25); + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '{') ADVANCE(3109); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4655); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3422); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); + lookahead == ' ') SKIP(87); END_STATE(); case 88: - ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '$', 2989, - '(', 3294, - ')', 2986, - '+', 4566, - ',', 2987, - '-', 3037, - '.', 4562, - ']', 2984, - '_', 2422, - '|', 2939, - ); + if (lookahead == '\n') ADVANCE(2873); + if (lookahead == '\r') ADVANCE(25); + if (lookahead == '#') ADVANCE(4822); if (lookahead == '\t' || - lookahead == ' ') SKIP(117); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4655); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3422); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); + lookahead == ' ') ADVANCE(2878); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 89: - ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '$', 2989, - '(', 3294, - ')', 2986, - '+', 4566, - ',', 2987, - '-', 3037, - '.', 3399, - ':', 2980, - ']', 2984, - '_', 2422, - '|', 2939, - ); + if (lookahead == '\n') ADVANCE(2873); + if (lookahead == '\r') ADVANCE(25); + if (lookahead == '#') ADVANCE(4829); + if (lookahead == '(') ADVANCE(3232); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4655); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3422); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); + lookahead == ' ') ADVANCE(2878); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 90: ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - '$', 2989, - '(', 3294, - ')', 2986, - '+', 4566, - ',', 2987, - '-', 3037, - '.', 3399, - ']', 2984, - '_', 2422, - '|', 2939, + '#', 4828, + '$', 2934, + '(', 3232, + ')', 2927, + ',', 2928, + '-', 2984, + '.', 4473, + ':', 2922, + '=', 1086, + ']', 2925, + '|', 2880, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(117); + lookahead == ' ') SKIP(71); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || - lookahead == ':' || + lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4655); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3422); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); + lookahead == '^') ADVANCE(4541); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4525); END_STATE(); case 91: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '$', 2989, - '(', 3294, - ')', 2986, - ',', 2987, - '-', 3030, - '.', 3403, - ':', 2980, - 'E', 2372, - 'G', 2416, - 'K', 2416, - 'M', 2416, - 'P', 2416, - 'T', 2416, - ']', 2984, - 'd', 2439, - 'e', 2371, - 'g', 2415, - 'h', 2595, - 'k', 2415, - 'm', 2417, - 'n', 2635, - 'p', 2415, - 's', 2468, - 't', 2415, - 'u', 2635, - 'w', 2529, - '|', 2939, - 0xb5, 2635, + '\n', 2876, + '\r', 112, + '!', 1585, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '*', 1123, + '+', 3556, + ',', 2928, + '-', 2985, + '.', 1349, + '/', 1355, + '0', 3417, + ':', 3553, + ';', 2879, + '<', 600, + '=', 1084, + '>', 603, + '?', 3201, + 'I', 1870, + 'N', 1865, + '_', 1605, + '`', 634, + 'a', 1720, + 'b', 1704, + 'c', 1614, + 'd', 1654, + 'e', 1124, + 'f', 1615, + 'h', 1700, + 'i', 1599, + 'l', 1668, + 'm', 1618, + 'n', 1655, + 'o', 1126, + 'r', 1657, + 's', 1745, + 't', 1765, + 'u', 1796, + 'w', 1695, + 'x', 1751, + '|', 2880, + '}', 3110, + '\t', 91, + ' ', 91, + 0x0b, 586, + '\f', 586, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(123); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3528); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4655); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if (lookahead != 0 && + (lookahead < '\'' || '?' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); case 92: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '$', 2989, - '(', 3294, - ')', 2986, - ',', 2987, - '-', 3030, - '.', 3403, - ':', 2980, - ']', 2984, - '|', 2939, + '\n', 2876, + '\r', 112, + '!', 1585, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '*', 1123, + '+', 3556, + ',', 2928, + '-', 2985, + '.', 1349, + '/', 1355, + '0', 3417, + ':', 3553, + ';', 2879, + '<', 600, + '=', 1084, + '>', 603, + 'I', 1870, + 'N', 1865, + '_', 1605, + '`', 634, + 'a', 1720, + 'b', 1704, + 'c', 1614, + 'd', 1654, + 'e', 1124, + 'f', 1615, + 'h', 1700, + 'i', 1599, + 'l', 1668, + 'm', 1618, + 'n', 1655, + 'o', 1126, + 'r', 1657, + 's', 1745, + 't', 1765, + 'u', 1796, + 'w', 1695, + 'x', 1751, + '{', 3109, + '|', 2880, + '}', 3110, + '\t', 92, + ' ', 92, + 0x0b, 586, + '\f', 586, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(123); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2373); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4655); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if (lookahead != 0 && + (lookahead < '\'' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead)) ADVANCE(1884); END_STATE(); case 93: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '$', 2989, - '(', 3294, - ')', 2986, - ',', 2987, - '-', 3030, - '.', 3403, - 'E', 2372, - 'G', 2416, - 'K', 2416, - 'M', 2416, - 'P', 2416, - 'T', 2416, - ']', 2984, - 'd', 2439, - 'e', 2371, - 'g', 2415, - 'h', 2595, - 'k', 2415, - 'm', 2417, - 'n', 2635, - 'p', 2415, - 's', 2468, - 't', 2415, - 'u', 2635, - 'w', 2529, - '|', 2939, - 0xb5, 2635, + '\n', 2876, + '\r', 112, + '!', 1585, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '*', 1123, + '+', 3556, + ',', 2928, + '-', 2985, + '.', 1349, + '/', 1355, + '0', 3417, + ':', 3553, + ';', 2879, + '<', 600, + '=', 1084, + '>', 603, + 'I', 1870, + 'N', 1865, + '_', 1605, + '`', 634, + 'a', 1720, + 'b', 1704, + 'c', 1614, + 'd', 1654, + 'e', 1124, + 'f', 1615, + 'h', 1700, + 'i', 1599, + 'l', 1668, + 'm', 1618, + 'n', 1655, + 'o', 1126, + 'r', 1657, + 's', 1745, + 't', 1765, + 'u', 1796, + 'w', 1695, + 'x', 1751, + '|', 2880, + '}', 3110, + '\t', 93, + ' ', 93, + 0x0b, 586, + '\f', 586, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(124); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3528); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4655); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if (lookahead != 0 && + (lookahead < '\'' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); case 94: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '$', 2989, - '(', 3294, - ')', 2986, - ',', 2987, - '-', 3030, - '.', 3403, - ']', 2984, - '|', 2939, + '\n', 2876, + '\r', 112, + '!', 597, + '#', 4822, + '*', 527, + '+', 531, + '-', 593, + '/', 582, + ':', 3553, + ';', 2879, + '<', 600, + '=', 1084, + '>', 603, + '?', 3201, + 'a', 739, + 'b', 715, + 'e', 545, + 'i', 741, + 'm', 765, + 'n', 760, + 'o', 550, + 's', 842, + 'x', 757, + '{', 3109, + '|', 2880, + '}', 3110, + '\t', 94, + ' ', 94, + 0x0b, 586, + '\f', 586, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(124); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2373); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4655); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 95: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '$', 2989, - '(', 3294, - ')', 2986, - ',', 2987, - '-', 3030, - '.', 4567, - ':', 2980, - 'E', 2372, - 'G', 2416, - 'K', 2416, - 'M', 2416, - 'P', 2416, - 'T', 2416, - ']', 2984, - '_', 2422, - 'd', 2439, - 'e', 2371, - 'g', 2415, - 'h', 2595, - 'k', 2415, - 'm', 2417, - 'n', 2635, - 'p', 2415, - 's', 2468, - 't', 2415, - 'u', 2635, - 'w', 2529, - '|', 2939, - 0xb5, 2635, + '\n', 2876, + '\r', 112, + '!', 597, + '#', 4822, + '*', 528, + '+', 552, + '-', 2979, + '/', 583, + ':', 3553, + ';', 2879, + '<', 600, + '=', 601, + '>', 603, + '?', 3201, + 'a', 739, + 'b', 715, + 'e', 545, + 'i', 688, + 'm', 765, + 'n', 760, + 'o', 550, + 's', 842, + 'x', 757, + '{', 3109, + '|', 2880, + '}', 3110, + '\t', 95, + ' ', 95, + 0x0b, 586, + '\f', 586, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(123); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3528); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4655); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3422); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 96: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '$', 2989, - '(', 3294, - ')', 2986, - ',', 2987, - '-', 3030, - '.', 4567, - ':', 2980, - 'E', 2372, - 'G', 2416, - 'K', 2416, - 'M', 2416, - 'P', 2416, - 'T', 2416, - ']', 2984, - 'd', 2439, - 'e', 2371, - 'g', 2415, - 'h', 2595, - 'k', 2415, - 'm', 2417, - 'n', 2635, - 'p', 2415, - 's', 2468, - 't', 2415, - 'u', 2635, - 'w', 2529, - '|', 2939, - 0xb5, 2635, + '\n', 2876, + '\r', 112, + '!', 597, + '#', 4822, + '*', 528, + '+', 552, + '-', 873, + '/', 583, + ':', 3553, + ';', 2879, + '<', 600, + '=', 601, + '>', 603, + 'a', 739, + 'b', 715, + 'e', 545, + 'i', 741, + 'm', 765, + 'n', 760, + 'o', 550, + 's', 842, + 'x', 757, + '|', 2880, + '}', 3110, + '\t', 96, + ' ', 96, + 0x0b, 586, + '\f', 586, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(123); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3528); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4655); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 97: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '$', 2989, - '(', 3294, - ')', 2986, - ',', 2987, - '-', 3030, - '.', 4567, - ':', 2980, - 'E', 2416, - 'G', 2416, - 'K', 2416, - 'M', 2416, - 'P', 2416, - 'T', 2416, - ']', 2984, - 'd', 2439, - 'e', 2415, - 'g', 2415, - 'h', 2595, - 'k', 2415, - 'm', 2417, - 'n', 2635, - 'p', 2415, - 's', 2468, - 't', 2415, - 'u', 2635, - 'w', 2529, - '|', 2939, - 0xb5, 2635, + '\n', 2876, + '\r', 112, + '!', 597, + '#', 4822, + '*', 528, + '+', 552, + '-', 873, + '/', 583, + ':', 3553, + ';', 2879, + '<', 600, + '=', 602, + '>', 603, + 'a', 739, + 'b', 715, + 'e', 545, + 'i', 741, + 'm', 765, + 'n', 760, + 'o', 550, + 's', 842, + 'x', 757, + '|', 2880, + '}', 3110, + '\t', 97, + ' ', 97, + 0x0b, 586, + '\f', 586, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(123); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3528); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4655); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 98: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '$', 2989, - '(', 3294, - ')', 2986, - ',', 2987, - '-', 3030, - '.', 4567, - ':', 2980, - ']', 2984, - '_', 2422, - '|', 2939, + '\n', 2876, + '\r', 112, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + '+', 574, + '-', 2987, + '.', 575, + '0', 3413, + ':', 3553, + ';', 2879, + '?', 3201, + 'I', 905, + 'N', 896, + '[', 2924, + '_', 626, + '`', 634, + 'a', 723, + 'c', 755, + 'd', 676, + 'e', 541, + 'f', 639, + 'h', 705, + 'i', 689, + 'l', 706, + 'm', 635, + 'n', 675, + 'o', 535, + 't', 774, + 'u', 800, + '{', 3109, + '|', 2880, + '}', 3110, + '\t', 98, + ' ', 98, + 0x0b, 586, + '\f', 586, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(123); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2373); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4655); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3422); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3436); END_STATE(); case 99: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '$', 2989, - '(', 3294, - ')', 2986, - ',', 2987, - '-', 3030, - '.', 4567, - ':', 2980, - ']', 2984, - '|', 2939, + '\n', 2876, + '\r', 112, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + '+', 574, + '-', 2987, + '.', 3318, + '0', 3413, + ':', 3553, + ';', 2879, + '=', 3694, + '?', 3201, + 'I', 905, + 'N', 896, + '[', 2924, + '_', 626, + '`', 634, + 'a', 723, + 'c', 755, + 'd', 676, + 'e', 541, + 'f', 639, + 'h', 705, + 'i', 689, + 'l', 706, + 'm', 635, + 'n', 675, + 'o', 535, + 't', 774, + 'u', 800, + '{', 3109, + '|', 2880, + '}', 3110, + '\t', 98, + ' ', 98, + 0x0b, 586, + '\f', 586, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(123); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2373); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4655); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3436); END_STATE(); case 100: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '$', 2989, - '(', 3294, - ')', 2986, - ',', 2987, - '-', 3030, - '.', 4567, - ':', 2980, - ']', 2984, - '|', 2939, + '\n', 2876, + '\r', 112, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '*', 1357, + '+', 3557, + ',', 2928, + '-', 2986, + '.', 3338, + '/', 1358, + '0', 3417, + ':', 3553, + ';', 2879, + '=', 1082, + '?', 3201, + 'I', 1870, + 'N', 1865, + '_', 1605, + '`', 634, + 'a', 1721, + 'b', 1770, + 'c', 1614, + 'd', 1654, + 'e', 1125, + 'f', 1615, + 'h', 1700, + 'i', 1598, + 'l', 1668, + 'm', 1617, + 'n', 1656, + 'o', 1127, + 'r', 1657, + 's', 1746, + 't', 1765, + 'u', 1796, + 'w', 1695, + '|', 2880, + '}', 3110, + '\t', 91, + ' ', 91, + 0x0b, 586, + '\f', 586, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(123); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4655); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if (lookahead != 0 && + (lookahead < '\'' || '?' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); case 101: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '$', 2989, - '(', 3294, - ')', 2986, - ',', 2987, - '-', 3030, - '.', 4567, - 'E', 2372, - 'G', 2416, - 'K', 2416, - 'M', 2416, - 'P', 2416, - 'T', 2416, - ']', 2984, - '_', 2422, - 'd', 2439, - 'e', 2371, - 'g', 2415, - 'h', 2595, - 'k', 2415, - 'm', 2417, - 'n', 2635, - 'p', 2415, - 's', 2468, - 't', 2415, - 'u', 2635, - 'w', 2529, - '|', 2939, - 0xb5, 2635, + '\n', 2876, + '\r', 112, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '*', 1357, + '+', 3557, + ',', 2928, + '-', 2986, + '.', 3338, + '/', 1358, + '0', 3417, + ':', 3553, + ';', 2879, + '=', 1082, + 'I', 1870, + 'N', 1865, + '[', 3484, + '_', 1605, + '`', 634, + 'a', 1721, + 'b', 1770, + 'c', 1614, + 'd', 1654, + 'e', 1125, + 'f', 1615, + 'h', 1700, + 'i', 1598, + 'l', 1668, + 'm', 1617, + 'n', 1656, + 'o', 1127, + 'r', 1657, + 's', 1746, + 't', 1765, + 'u', 1796, + 'w', 1695, + '{', 3109, + '|', 2880, + '}', 3110, + '\t', 92, + ' ', 92, + 0x0b, 586, + '\f', 586, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(124); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3528); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3422); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4655); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if (lookahead != 0 && + (lookahead < '\'' || '>' < lookahead) && + (lookahead < ']' || 'f' < lookahead)) ADVANCE(1884); END_STATE(); case 102: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '$', 2989, - '(', 3294, - ')', 2986, - ',', 2987, - '-', 3030, - '.', 4567, - 'E', 2372, - 'G', 2416, - 'K', 2416, - 'M', 2416, - 'P', 2416, - 'T', 2416, - ']', 2984, - 'd', 2439, - 'e', 2371, - 'g', 2415, - 'h', 2595, - 'k', 2415, - 'm', 2417, - 'n', 2635, - 'p', 2415, - 's', 2468, - 't', 2415, - 'u', 2635, - 'w', 2529, - '|', 2939, - 0xb5, 2635, + '\n', 2876, + '\r', 112, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '*', 1357, + '+', 3557, + ',', 2928, + '-', 2986, + '.', 1352, + '/', 1358, + '0', 3417, + ':', 3553, + ';', 2879, + '=', 1082, + 'I', 1870, + 'N', 1865, + '_', 1605, + '`', 634, + 'a', 1721, + 'b', 1770, + 'c', 1614, + 'd', 1654, + 'e', 1125, + 'f', 1615, + 'h', 1700, + 'i', 1598, + 'l', 1668, + 'm', 1617, + 'n', 1656, + 'o', 1127, + 'r', 1657, + 's', 1746, + 't', 1765, + 'u', 1796, + 'w', 1695, + '|', 2880, + '}', 3110, + '\t', 93, + ' ', 93, + 0x0b, 586, + '\f', 586, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(124); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3528); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4655); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if (lookahead != 0 && + (lookahead < '\'' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); case 103: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '$', 2989, - '(', 3294, - ')', 2986, - ',', 2987, - '-', 3030, - '.', 4567, - 'E', 2416, - 'G', 2416, - 'K', 2416, - 'M', 2416, - 'P', 2416, - 'T', 2416, - ']', 2984, - 'd', 2439, - 'e', 2415, - 'g', 2415, - 'h', 2595, - 'k', 2415, - 'm', 2417, - 'n', 2635, - 'p', 2415, - 's', 2468, - 't', 2415, - 'u', 2635, - 'w', 2529, - '|', 2939, - 0xb5, 2635, + '\n', 2876, + '\r', 112, + '#', 4822, + '*', 591, + '+', 536, + '-', 592, + '.', 3330, + '/', 594, + ':', 3553, + ';', 2879, + '=', 1082, + '?', 3201, + 'E', 619, + 'G', 619, + 'K', 619, + 'M', 619, + 'P', 619, + 'T', 619, + 'd', 637, + 'e', 543, + 'g', 618, + 'h', 773, + 'k', 618, + 'm', 620, + 'n', 796, + 'o', 551, + 'p', 618, + 's', 678, + 't', 618, + 'u', 796, + 'w', 719, + '{', 3109, + '|', 2880, + '}', 3110, + 0xb5, 796, + '\t', 94, + ' ', 94, + 'B', 3462, + 'b', 3462, + 0x0b, 586, + '\f', 586, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(124); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3528); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4655); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 104: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '$', 2989, - '(', 3294, - ')', 2986, - ',', 2987, - '-', 3030, - '.', 4567, - ']', 2984, - '_', 2422, - '|', 2939, + '\n', 2876, + '\r', 112, + '#', 4822, + '-', 2970, + '.', 3330, + ':', 3553, + ';', 2879, + '=', 610, + '?', 3201, + 'e', 547, + 'i', 685, + 'o', 551, + '{', 3109, + '|', 2880, + '}', 3110, + '\t', 95, + ' ', 95, + 0x0b, 586, + '\f', 586, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(124); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2373); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3422); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4655); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 105: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '$', 2989, - '(', 3294, - ')', 2986, - ',', 2987, - '-', 3030, - '.', 4567, - ']', 2984, - '|', 2939, + '\n', 2876, + '\r', 112, + '#', 4822, + '-', 2970, + '.', 3316, + ':', 3553, + ';', 2879, + '=', 610, + '?', 3201, + 'e', 547, + 'i', 685, + 'o', 551, + '{', 3109, + '|', 2880, + '}', 3110, + '\t', 95, + ' ', 95, + 0x0b, 586, + '\f', 586, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(124); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2373); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4655); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 106: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '$', 2989, - '(', 3294, - ')', 2986, - ',', 2987, - '-', 3030, - '.', 4567, - ']', 2984, - '|', 2939, + '\n', 2876, + '\r', 112, + '#', 4822, + '.', 3330, + ':', 3553, + ';', 2879, + '=', 610, + 'E', 2267, + 'G', 2269, + 'K', 2269, + 'M', 2269, + 'P', 2269, + 'T', 2269, + 'd', 2275, + 'e', 2243, + 'g', 2268, + 'h', 2289, + 'k', 2268, + 'm', 2270, + 'n', 2296, + 'o', 2245, + 'p', 2268, + 's', 2278, + 't', 2268, + 'u', 2296, + 'w', 2283, + '|', 2880, + '}', 3110, + 0xb5, 2296, + '\t', 96, + ' ', 96, + 'B', 3462, + 'b', 3462, + 0x0b, 586, + '\f', 586, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(124); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4655); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); case 107: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '$', 2989, - '(', 3294, - ')', 2986, - ',', 2987, - '-', 3030, - '.', 4563, - ':', 2980, - ']', 2984, - '_', 2422, - '|', 2939, + '\n', 2876, + '\r', 112, + '#', 4822, + '.', 2257, + ':', 3553, + ';', 2879, + '=', 610, + 'E', 2267, + 'G', 2269, + 'K', 2269, + 'M', 2269, + 'P', 2269, + 'T', 2269, + '_', 2274, + 'd', 2275, + 'e', 2243, + 'g', 2268, + 'h', 2289, + 'k', 2268, + 'm', 2270, + 'n', 2296, + 'o', 2245, + 'p', 2268, + 's', 2278, + 't', 2268, + 'u', 2296, + 'w', 2283, + '|', 2880, + '}', 3110, + 0xb5, 2296, + '\t', 96, + ' ', 96, + 'B', 3462, + 'b', 3462, + 0x0b, 586, + '\f', 586, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(123); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2373); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4655); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3422); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); case 108: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '$', 2989, - '(', 3294, - ')', 2986, - ',', 2987, - '-', 3030, - '.', 4563, - ':', 2980, - ']', 2984, - '|', 2939, + '\n', 2876, + '\r', 112, + '#', 4822, + '.', 2257, + ':', 3553, + ';', 2879, + '=', 610, + 'E', 2267, + 'G', 2269, + 'K', 2269, + 'M', 2269, + 'P', 2269, + 'T', 2269, + 'd', 2275, + 'e', 2243, + 'g', 2268, + 'h', 2289, + 'k', 2268, + 'm', 2270, + 'n', 2296, + 'o', 2245, + 'p', 2268, + 's', 2278, + 't', 2268, + 'u', 2296, + 'w', 2283, + '|', 2880, + '}', 3110, + 0xb5, 2296, + '\t', 96, + ' ', 96, + 'B', 3462, + 'b', 3462, + 0x0b, 586, + '\f', 586, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(123); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2373); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4655); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); case 109: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '$', 2989, - '(', 3294, - ')', 2986, - ',', 2987, - '-', 3030, - '.', 4563, - ':', 2980, - ']', 2984, - '|', 2939, + '\n', 2876, + '\r', 112, + '#', 4822, + '.', 2257, + ':', 3553, + ';', 2879, + '=', 610, + 'E', 2269, + 'G', 2269, + 'K', 2269, + 'M', 2269, + 'P', 2269, + 'T', 2269, + 'd', 2275, + 'e', 2246, + 'g', 2268, + 'h', 2289, + 'k', 2268, + 'm', 2270, + 'n', 2296, + 'o', 2245, + 'p', 2268, + 's', 2278, + 't', 2268, + 'u', 2296, + 'w', 2283, + '|', 2880, + '}', 3110, + 0xb5, 2296, + '\t', 96, + ' ', 96, + 'B', 3462, + 'b', 3462, + 0x0b, 586, + '\f', 586, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(123); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4655); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); case 110: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '$', 2989, - '(', 3294, - ')', 2986, - ',', 2987, - '-', 3030, - '.', 4563, - ']', 2984, - '_', 2422, - '|', 2939, + '\n', 2876, + '\r', 112, + '#', 4822, + ':', 3553, + ';', 2879, + 'e', 540, + 'o', 535, + '|', 2880, + '}', 3110, + '\t', 2877, + ' ', 2877, + 0x0b, 586, + '\f', 586, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(124); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2373); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3422); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4655); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 111: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '$', 2989, - '(', 3294, - ')', 2986, - ',', 2987, - '-', 3030, - '.', 4563, - ']', 2984, - '|', 2939, + '\n', 2876, + '\r', 112, + '#', 4825, + ':', 3553, + ';', 2879, + 'e', 2167, + 'o', 2168, + '|', 2880, + '}', 3110, + '\t', 97, + ' ', 97, + 0x0b, 586, + '\f', 586, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(124); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2373); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4655); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); case 112: - ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '$', 2989, - '(', 3294, - ')', 2986, - ',', 2987, - '-', 3030, - '.', 4563, - ']', 2984, - '|', 2939, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(124); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4655); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == '\n') ADVANCE(2876); + if (lookahead == ':') ADVANCE(3553); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(586); END_STATE(); case 113: - ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '$', 2989, - '(', 3294, - ')', 2986, - ',', 2987, - '-', 3030, - '.', 3398, - ':', 2980, - ']', 2984, - '|', 2939, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(123); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2373); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4655); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == '\n') ADVANCE(2875); END_STATE(); case 114: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '$', 2989, - '(', 3294, - ')', 2986, - ',', 2987, - '-', 3030, - '.', 3398, - ']', 2984, - '|', 2939, + '\n', 2875, + '\r', 113, + '!', 599, + '#', 4822, + '$', 2929, + ')', 2927, + '*', 190, + '+', 163, + '-', 191, + '.', 631, + '/', 168, + ';', 2879, + '<', 194, + '=', 604, + '>', 195, + 'a', 730, + 'b', 704, + 'e', 544, + 'i', 687, + 'm', 763, + 'n', 753, + 'o', 549, + 's', 810, + 'x', 762, + '{', 3109, + '|', 2880, + '\t', 114, + ' ', 114, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(124); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2373); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4655); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); case 115: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '$', 2989, - '(', 2985, - '+', 636, - '-', 3047, - '.', 684, - '0', 2424, - 'N', 2703, - '_', 2429, - 'f', 2443, - 'n', 2579, - 't', 2633, - '{', 3169, + '\n', 2875, + '\r', 113, + '!', 599, + '#', 4822, + ')', 2927, + '*', 190, + '+', 164, + '-', 193, + '/', 168, + ';', 2879, + '<', 194, + '=', 604, + '>', 195, + '?', 3201, + 'a', 730, + 'b', 704, + 'e', 544, + 'i', 687, + 'm', 763, + 'n', 753, + 'o', 549, + 's', 810, + 'x', 762, + '{', 3109, + '|', 2880, + '\t', 115, + ' ', 115, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2707); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2429); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2720); END_STATE(); case 116: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '$', 2989, - ')', 2986, - '+', 642, - ',', 2987, - '-', 3036, - '.', 644, - ':', 2980, - ']', 2984, - '|', 2939, + '\n', 2875, + '\r', 113, + '!', 599, + '#', 4822, + ')', 2927, + '*', 190, + '+', 164, + '-', 193, + '/', 168, + ';', 2879, + '<', 194, + '=', 605, + '>', 195, + 'a', 730, + 'b', 704, + 'e', 538, + 'i', 740, + 'm', 763, + 'n', 753, + 'o', 533, + 's', 810, + 'x', 762, + '|', 2880, + '\t', 116, + ' ', 116, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(116); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2720); END_STATE(); case 117: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '$', 2989, - ')', 2986, - '+', 642, - ',', 2987, - '-', 3036, - '.', 644, - ']', 2984, - '|', 2939, + '\n', 2875, + '\r', 113, + '!', 599, + '#', 4822, + ')', 2927, + '*', 190, + '+', 164, + '-', 193, + '/', 168, + ';', 2879, + '<', 194, + '=', 605, + '>', 195, + 'a', 730, + 'b', 704, + 'e', 544, + 'i', 740, + 'm', 763, + 'n', 753, + 'o', 549, + 's', 810, + 'x', 762, + '{', 3109, + '|', 2880, + '\t', 117, + ' ', 117, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(117); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2720); END_STATE(); case 118: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '$', 2989, - ')', 2986, - ',', 2987, - '-', 3030, - '.', 638, - ':', 2980, - ';', 2938, - '=', 1142, - 'a', 799, - 'e', 607, - 'i', 796, - 'o', 608, - 'x', 817, - '{', 3169, - '|', 2939, - '}', 3170, + '\n', 2875, + '\r', 113, + '!', 599, + '#', 4822, + ')', 2927, + '*', 190, + '+', 164, + '-', 193, + '/', 168, + ';', 2879, + '<', 194, + '=', 605, + '>', 195, + 'a', 730, + 'b', 704, + 'e', 544, + 'i', 740, + 'm', 763, + 'n', 753, + 'o', 549, + 's', 810, + 'x', 762, + '|', 2880, + '\t', 118, + ' ', 118, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(125); END_STATE(); case 119: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '$', 2989, - ')', 2986, - ',', 2987, - '-', 3030, - '.', 3401, - ':', 2980, - '=', 1142, - '?', 3263, - ']', 2984, - '|', 2939, + '\n', 2875, + '\r', 113, + '!', 599, + '#', 4822, + ')', 2927, + '*', 189, + '+', 162, + '-', 192, + '/', 167, + ';', 2879, + '<', 194, + '=', 1085, + '>', 195, + '?', 3201, + 'a', 730, + 'b', 704, + 'e', 544, + 'i', 740, + 'm', 763, + 'n', 753, + 'o', 549, + 's', 810, + 'x', 762, + '{', 3109, + '|', 2880, + '\t', 119, + ' ', 119, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(121); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2720); END_STATE(); case 120: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '$', 2989, - ')', 2986, - ',', 2987, - '-', 3030, - '.', 643, - ':', 2980, - '=', 1142, - '?', 3024, - ']', 2984, - '|', 2939, + '\n', 2875, + '\r', 113, + '!', 599, + '#', 4822, + '*', 190, + '+', 164, + '-', 193, + '/', 168, + '<', 194, + '=', 605, + '>', 195, + 'a', 730, + 'b', 704, + 'e', 736, + 'i', 740, + 'm', 763, + 'n', 753, + 'o', 784, + 's', 810, + 'x', 762, + '{', 3109, + '\t', 120, + ' ', 120, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(122); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2720); END_STATE(); case 121: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '$', 2989, - ')', 2986, - ',', 2987, - '-', 3030, - '.', 643, - ':', 2980, - '=', 1142, - '?', 3263, - ']', 2984, - '|', 2939, + '\n', 2875, + '\r', 113, + '#', 4822, + '$', 2929, + '(', 3232, + ')', 2927, + '.', 577, + ';', 2879, + '=', 610, + '[', 3484, + '_', 630, + 'e', 547, + 'i', 685, + 'o', 551, + '{', 3109, + '|', 2880, + '\t', 114, + ' ', 114, + '+', 579, + '-', 579, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(121); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2720); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); END_STATE(); case 122: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '$', 2989, - ')', 2986, - ',', 2987, - '-', 3030, - '.', 643, - ':', 2980, - '=', 1142, - ']', 2984, - '|', 2939, + '\n', 2875, + '\r', 113, + '#', 4822, + '(', 3232, + ')', 2927, + '*', 591, + '+', 536, + '-', 592, + '.', 3330, + '/', 594, + ';', 2879, + '=', 1082, + '?', 3201, + 'E', 619, + 'G', 619, + 'K', 619, + 'M', 619, + 'P', 619, + 'T', 619, + 'd', 637, + 'e', 543, + 'g', 618, + 'h', 773, + 'k', 618, + 'm', 620, + 'n', 796, + 'o', 551, + 'p', 618, + 's', 678, + 't', 618, + 'u', 796, + 'w', 719, + '{', 3109, + '|', 2880, + 0xb5, 796, + '\t', 119, + ' ', 119, + 'B', 3462, + 'b', 3462, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(122); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2720); END_STATE(); case 123: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '$', 2989, - ')', 2986, - ',', 2987, - '-', 3030, - '.', 643, - ':', 2980, - ']', 2984, - '|', 2939, + '\n', 2875, + '\r', 113, + '#', 4822, + '(', 3232, + ')', 2927, + '.', 3330, + ';', 2879, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'd', 3948, + 'e', 3883, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'o', 3882, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '|', 2880, + 0xb5, 3984, + '\t', 118, + ' ', 118, + 'B', 3462, + 'b', 3462, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(123); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2720); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 124: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '$', 2989, - ')', 2986, - ',', 2987, - '-', 3030, - '.', 643, - ']', 2984, - '|', 2939, + '\n', 2875, + '\r', 113, + '#', 4822, + '(', 3232, + ')', 2927, + '.', 3330, + ';', 2879, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'd', 3948, + 'e', 3886, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'o', 3892, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '|', 2880, + 0xb5, 3984, + '\t', 116, + ' ', 116, + 'B', 3462, + 'b', 3462, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(124); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2720); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 125: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '$', 2989, - ')', 2986, - ',', 2987, - '-', 3030, - ':', 2980, - ';', 2938, - '=', 1142, - 'a', 799, - 'e', 607, - 'i', 796, - 'o', 608, - 'x', 817, - '{', 3169, - '|', 2939, - '}', 3170, + '\n', 2875, + '\r', 113, + '#', 4822, + '(', 3232, + ')', 2927, + '.', 3912, + ';', 2879, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + '_', 3933, + 'd', 3948, + 'e', 3883, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'o', 3882, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '|', 2880, + 0xb5, 3984, + '\t', 118, + ' ', 118, + 'B', 3462, + 'b', 3462, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(125); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 126: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '(', 3294, - ')', 2986, - ',', 2987, - '-', 3030, - '.', 3392, - ';', 2938, - '=', 673, - '?', 3263, - 'E', 680, - 'G', 680, - 'K', 680, - 'M', 680, - 'P', 680, - 'T', 680, - '[', 3546, - 'd', 698, - 'e', 603, - 'g', 679, - 'h', 834, - 'i', 746, - 'k', 679, - 'm', 681, - 'n', 857, - 'o', 611, - 'p', 679, - 's', 739, - 't', 679, - 'u', 857, - 'w', 780, - '{', 3169, - '|', 2939, - '}', 3170, - 0xb5, 857, - '\t', 30, - ' ', 30, - 'B', 3524, - 'b', 3524, + '\n', 2875, + '\r', 113, + '#', 4822, + '(', 3232, + ')', 2927, + '.', 3912, + ';', 2879, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + '_', 3933, + 'd', 3948, + 'e', 3886, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'o', 3892, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '|', 2880, + 0xb5, 3984, + '\t', 116, + ' ', 116, + 'B', 3462, + 'b', 3462, ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 127: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '(', 3294, - ',', 2987, - '.', 3392, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4099, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '}', 3170, - 0xb5, 4164, - '\t', 33, - ' ', 33, - 'B', 3524, - 'b', 3524, + '\n', 2875, + '\r', 113, + '#', 4822, + '(', 3232, + ')', 2927, + '.', 3912, + ';', 2879, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'd', 3948, + 'e', 3883, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'o', 3882, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '|', 2880, + 0xb5, 3984, + '\t', 118, + ' ', 118, + 'B', 3462, + 'b', 3462, ); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4218); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 128: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '(', 3294, - ',', 2987, - '.', 4081, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - '_', 4112, - 'd', 4120, - 'e', 4099, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '}', 3170, - 0xb5, 4164, - '\t', 33, - ' ', 33, - 'B', 3524, - 'b', 3524, + '\n', 2875, + '\r', 113, + '#', 4822, + '(', 3232, + ')', 2927, + '.', 3912, + ';', 2879, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'd', 3948, + 'e', 3886, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'o', 3892, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '|', 2880, + 0xb5, 3984, + '\t', 116, + ' ', 116, + 'B', 3462, + 'b', 3462, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4218); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 129: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '(', 3294, - ',', 2987, - '.', 4081, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4099, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '}', 3170, - 0xb5, 4164, - '\t', 33, - ' ', 33, - 'B', 3524, - 'b', 3524, + '\n', 2875, + '\r', 113, + '#', 4822, + '(', 3232, + ')', 2927, + '.', 3912, + ';', 2879, + 'E', 3931, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'd', 3948, + 'e', 3880, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'o', 3882, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '|', 2880, + 0xb5, 3984, + '\t', 118, + ' ', 118, + 'B', 3462, + 'b', 3462, ); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4218); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 130: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '(', 3294, - ',', 2987, - '.', 4081, - 'E', 4103, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4102, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '}', 3170, - 0xb5, 4164, - '\t', 33, - ' ', 33, - 'B', 3524, - 'b', 3524, + '\n', 2875, + '\r', 113, + '#', 4822, + '(', 3232, + ')', 2927, + '.', 3912, + ';', 2879, + 'E', 3931, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'd', 3948, + 'e', 3889, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'o', 3892, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '|', 2880, + 0xb5, 3984, + '\t', 116, + ' ', 116, + 'B', 3462, + 'b', 3462, ); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4218); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 131: - if (lookahead == '\n') ADVANCE(2932); - if (lookahead == '\r') ADVANCE(25); - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '(') ADVANCE(3294); - if (lookahead == '.') ADVANCE(3392); - if (lookahead == '{') ADVANCE(3169); - if (lookahead == '\t' || - lookahead == ' ') SKIP(144); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4110); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ADVANCE_MAP( + '\n', 2875, + '\r', 113, + '#', 4822, + '(', 3232, + '.', 3330, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'd', 3948, + 'e', 3927, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '{', 3109, + 0xb5, 3984, + '\t', 120, + ' ', 120, + 'B', 3462, + 'b', 3462, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 132: - if (lookahead == '\n') ADVANCE(2932); - if (lookahead == '\r') ADVANCE(25); - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '(') ADVANCE(3294); - if (lookahead == '.') ADVANCE(4081); - if (lookahead == '_') ADVANCE(4112); - if (lookahead == '{') ADVANCE(3169); - if (lookahead == '\t' || - lookahead == ' ') SKIP(144); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4110); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ADVANCE_MAP( + '\n', 2875, + '\r', 113, + '#', 4822, + '(', 3232, + '.', 3912, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + '_', 3933, + 'd', 3948, + 'e', 3927, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '{', 3109, + 0xb5, 3984, + '\t', 120, + ' ', 120, + 'B', 3462, + 'b', 3462, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 133: - if (lookahead == '\n') ADVANCE(2932); - if (lookahead == '\r') ADVANCE(25); - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '(') ADVANCE(3294); - if (lookahead == '.') ADVANCE(4081); - if (lookahead == '{') ADVANCE(3169); - if (lookahead == '\t' || - lookahead == ' ') SKIP(144); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4110); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ADVANCE_MAP( + '\n', 2875, + '\r', 113, + '#', 4822, + '(', 3232, + '.', 3912, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'd', 3948, + 'e', 3927, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '{', 3109, + 0xb5, 3984, + '\t', 120, + ' ', 120, + 'B', 3462, + 'b', 3462, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 134: - if (lookahead == '\n') ADVANCE(2932); - if (lookahead == '\r') ADVANCE(25); - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '(') ADVANCE(3294); - if (lookahead == '.') ADVANCE(4081); - if (lookahead == '{') ADVANCE(3169); - if (lookahead == '\t' || - lookahead == ' ') SKIP(144); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); - END_STATE(); - case 135: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - ')', 2986, - '-', 674, - '.', 3378, - ':', 2980, - ';', 2938, - '=', 1142, - '>', 3018, - '@', 3020, - '[', 2983, - 'c', 2509, - 'e', 2628, - 'f', 2695, - 'i', 2558, - 'l', 2526, - 'o', 2568, - 'v', 2447, - '{', 3169, - '}', 3170, + '\n', 2875, + '\r', 113, + '#', 4822, + '(', 3232, + '.', 3912, + 'E', 3931, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'd', 3948, + 'e', 3930, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '{', 3109, + 0xb5, 3984, + '\t', 120, + ' ', 120, + 'B', 3462, + 'b', 3462, ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + END_STATE(); + case 135: + if (lookahead == '\n') ADVANCE(2875); + if (lookahead == '\r') ADVANCE(113); + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '(') ADVANCE(3232); + if (lookahead == '{') ADVANCE(3109); if (lookahead == '\t' || - lookahead == ' ') SKIP(136); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2720); + lookahead == ' ') ADVANCE(120); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 136: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - ')', 2986, - '-', 674, - ':', 2980, - ';', 2938, - '=', 1142, - '>', 3018, - '[', 2983, - 'c', 2509, - 'e', 2628, - 'f', 2695, - 'i', 2558, - 'l', 2526, - 'o', 2568, - 'v', 2447, - '{', 3169, - '}', 3170, + '\n', 2875, + '\r', 113, + '#', 4822, + ')', 2927, + '.', 3330, + ';', 2879, + 'E', 2267, + 'G', 2269, + 'K', 2269, + 'M', 2269, + 'P', 2269, + 'T', 2269, + 'd', 2275, + 'e', 2243, + 'g', 2268, + 'h', 2289, + 'k', 2268, + 'm', 2270, + 'n', 2296, + 'o', 2245, + 'p', 2268, + 's', 2278, + 't', 2268, + 'u', 2296, + 'w', 2283, + '{', 3109, + '|', 2880, + 0xb5, 2296, + '\t', 117, + ' ', 117, + 'B', 3462, + 'b', 3462, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(136); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2720); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); case 137: - if (lookahead == '\n') ADVANCE(2932); - if (lookahead == '\r') ADVANCE(25); - if (lookahead == '#') ADVANCE(5024); - if (lookahead == ',') ADVANCE(2987); - if (lookahead == '}') ADVANCE(3170); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(33); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4218); + ADVANCE_MAP( + '\n', 2875, + '\r', 113, + '#', 4822, + ')', 2927, + '.', 3330, + ';', 2879, + 'E', 2267, + 'G', 2269, + 'K', 2269, + 'M', 2269, + 'P', 2269, + 'T', 2269, + 'd', 2275, + 'e', 2251, + 'g', 2268, + 'h', 2289, + 'k', 2268, + 'm', 2270, + 'n', 2296, + 'o', 2252, + 'p', 2268, + 's', 2278, + 't', 2268, + 'u', 2296, + 'w', 2283, + '|', 2880, + 0xb5, 2296, + '\t', 116, + ' ', 116, + 'B', 3462, + 'b', 3462, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); case 138: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '.', 3392, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4099, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - 0xb5, 4164, - '\t', 2937, - ' ', 2937, - 'B', 3524, - 'b', 3524, + '\n', 2875, + '\r', 113, + '#', 4822, + ')', 2927, + '.', 2257, + ';', 2879, + 'E', 2267, + 'G', 2269, + 'K', 2269, + 'M', 2269, + 'P', 2269, + 'T', 2269, + '_', 2274, + 'd', 2275, + 'e', 2243, + 'g', 2268, + 'h', 2289, + 'k', 2268, + 'm', 2270, + 'n', 2296, + 'o', 2245, + 'p', 2268, + 's', 2278, + 't', 2268, + 'u', 2296, + 'w', 2283, + '{', 3109, + '|', 2880, + 0xb5, 2296, + '\t', 117, + ' ', 117, + 'B', 3462, + 'b', 3462, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); case 139: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '.', 4081, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - '_', 4112, - 'd', 4120, - 'e', 4099, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - 0xb5, 4164, - '\t', 2937, - ' ', 2937, - 'B', 3524, - 'b', 3524, + '\n', 2875, + '\r', 113, + '#', 4822, + ')', 2927, + '.', 2257, + ';', 2879, + 'E', 2267, + 'G', 2269, + 'K', 2269, + 'M', 2269, + 'P', 2269, + 'T', 2269, + '_', 2274, + 'd', 2275, + 'e', 2251, + 'g', 2268, + 'h', 2289, + 'k', 2268, + 'm', 2270, + 'n', 2296, + 'o', 2252, + 'p', 2268, + 's', 2278, + 't', 2268, + 'u', 2296, + 'w', 2283, + '|', 2880, + 0xb5, 2296, + '\t', 116, + ' ', 116, + 'B', 3462, + 'b', 3462, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); case 140: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '.', 4081, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4099, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - 0xb5, 4164, - '\t', 2937, - ' ', 2937, - 'B', 3524, - 'b', 3524, + '\n', 2875, + '\r', 113, + '#', 4822, + ')', 2927, + '.', 2257, + ';', 2879, + 'E', 2267, + 'G', 2269, + 'K', 2269, + 'M', 2269, + 'P', 2269, + 'T', 2269, + 'd', 2275, + 'e', 2243, + 'g', 2268, + 'h', 2289, + 'k', 2268, + 'm', 2270, + 'n', 2296, + 'o', 2245, + 'p', 2268, + 's', 2278, + 't', 2268, + 'u', 2296, + 'w', 2283, + '{', 3109, + '|', 2880, + 0xb5, 2296, + '\t', 117, + ' ', 117, + 'B', 3462, + 'b', 3462, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); case 141: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '.', 4081, - 'E', 4103, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4102, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - 0xb5, 4164, - '\t', 2937, - ' ', 2937, - 'B', 3524, - 'b', 3524, + '\n', 2875, + '\r', 113, + '#', 4822, + ')', 2927, + '.', 2257, + ';', 2879, + 'E', 2267, + 'G', 2269, + 'K', 2269, + 'M', 2269, + 'P', 2269, + 'T', 2269, + 'd', 2275, + 'e', 2251, + 'g', 2268, + 'h', 2289, + 'k', 2268, + 'm', 2270, + 'n', 2296, + 'o', 2252, + 'p', 2268, + 's', 2278, + 't', 2268, + 'u', 2296, + 'w', 2283, + '|', 2880, + 0xb5, 2296, + '\t', 116, + ' ', 116, + 'B', 3462, + 'b', 3462, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); case 142: - if (lookahead == '\n') ADVANCE(2932); - if (lookahead == '\r') ADVANCE(25); - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '=') ADVANCE(3764); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2937); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2899); + ADVANCE_MAP( + '\n', 2875, + '\r', 113, + '#', 4822, + ')', 2927, + '.', 2257, + ';', 2879, + 'E', 2269, + 'G', 2269, + 'K', 2269, + 'M', 2269, + 'P', 2269, + 'T', 2269, + 'd', 2275, + 'e', 2246, + 'g', 2268, + 'h', 2289, + 'k', 2268, + 'm', 2270, + 'n', 2296, + 'o', 2245, + 'p', 2268, + 's', 2278, + 't', 2268, + 'u', 2296, + 'w', 2283, + '{', 3109, + '|', 2880, + 0xb5, 2296, + '\t', 117, + ' ', 117, + 'B', 3462, + 'b', 3462, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); case 143: - if (lookahead == '\n') ADVANCE(2932); - if (lookahead == '\r') ADVANCE(25); - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '=') ADVANCE(3764); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2937); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + ADVANCE_MAP( + '\n', 2875, + '\r', 113, + '#', 4822, + ')', 2927, + '.', 2257, + ';', 2879, + 'E', 2269, + 'G', 2269, + 'K', 2269, + 'M', 2269, + 'P', 2269, + 'T', 2269, + 'd', 2275, + 'e', 2249, + 'g', 2268, + 'h', 2289, + 'k', 2268, + 'm', 2270, + 'n', 2296, + 'o', 2252, + 'p', 2268, + 's', 2278, + 't', 2268, + 'u', 2296, + 'w', 2283, + '|', 2880, + 0xb5, 2296, + '\t', 116, + ' ', 116, + 'B', 3462, + 'b', 3462, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); case 144: - if (lookahead == '\n') ADVANCE(2932); - if (lookahead == '\r') ADVANCE(25); - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '{') ADVANCE(3169); - if (lookahead == '\t' || - lookahead == ' ') SKIP(144); + ADVANCE_MAP( + '\n', 2875, + '\r', 113, + '#', 4822, + ')', 2927, + '.', 3316, + ';', 2879, + '=', 610, + '?', 3201, + 'e', 547, + 'i', 685, + 'o', 551, + '{', 3109, + '|', 2880, + '\t', 115, + ' ', 115, + ); END_STATE(); case 145: - if (lookahead == '\n') ADVANCE(2932); - if (lookahead == '\r') ADVANCE(25); - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2937); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ADVANCE_MAP( + '\n', 2875, + '\r', 113, + '#', 4822, + ')', 2927, + ';', 2879, + 'e', 3881, + 'o', 3882, + '|', 2880, + '\t', 118, + ' ', 118, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 146: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5031, - '(', 3294, - ',', 2988, - '}', 3170, - '\t', 33, - ' ', 33, + '\n', 2875, + '\r', 113, + '#', 4822, + ')', 2927, + ';', 2879, + 'e', 2247, + 'o', 2245, + '|', 2880, + '\t', 118, + ' ', 118, ); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); case 147: - if (lookahead == '\n') ADVANCE(2932); - if (lookahead == '\r') ADVANCE(25); - if (lookahead == '#') ADVANCE(5031); - if (lookahead == '(') ADVANCE(3294); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2937); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ADVANCE_MAP( + '\n', 2875, + '\r', 113, + '#', 4822, + ')', 2927, + ';', 2879, + 'e', 3890, + 'o', 3892, + '|', 2880, + '\t', 116, + ' ', 116, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 148: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5030, - '$', 2994, - '(', 3294, - ')', 2986, - ',', 2987, - '-', 3044, - '.', 4675, - ':', 2981, - ']', 2984, - '|', 2939, + '\n', 2875, + '\r', 113, + '#', 4822, + ')', 2927, + ';', 2879, + 'e', 2250, + 'o', 2252, + '|', 2880, + '\t', 116, + ' ', 116, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(123); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4743); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4727); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); case 149: ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5030, - '$', 2994, - '(', 3294, - ')', 2986, - ',', 2987, - '-', 3044, - '.', 4675, - ']', 2984, - '|', 2939, + '\n', 2875, + '\r', 113, + '#', 4829, + '(', 3232, + ')', 2927, + ';', 2879, + 'e', 4045, + 'o', 4046, + '|', 2880, + '\t', 118, + ' ', 118, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(124); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4743); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4727); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 150: ADVANCE_MAP( - '\n', 2935, - '\r', 172, - '!', 1644, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '*', 1182, - '+', 3618, - ',', 2987, - '-', 3045, - '.', 1408, - '/', 1414, - '0', 3479, - ':', 3615, - ';', 2938, - '<', 663, - '=', 1144, - '>', 666, - '?', 3263, - 'I', 1929, - 'N', 1924, - '_', 1664, - '`', 695, - 'a', 1779, - 'b', 1763, - 'c', 1673, - 'd', 1713, - 'e', 1183, - 'f', 1674, - 'h', 1759, - 'i', 1658, - 'l', 1727, - 'm', 1677, - 'n', 1714, - 'o', 1185, - 'r', 1716, - 's', 1804, - 't', 1824, - 'u', 1855, - 'w', 1754, - 'x', 1810, - '|', 2939, - '}', 3170, - '\t', 150, - ' ', 150, - 0x0b, 649, - '\f', 649, + '\n', 2875, + '\r', 113, + '#', 4829, + '(', 3232, + ')', 2927, + ';', 2879, + 'e', 4049, + 'o', 4051, + '|', 2880, + '\t', 116, + ' ', 116, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); - if (lookahead != 0 && - (lookahead < '\'' || '?' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 151: - ADVANCE_MAP( - '\n', 2935, - '\r', 172, - '!', 1644, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '*', 1182, - '+', 3618, - ',', 2987, - '-', 3045, - '.', 1408, - '/', 1414, - '0', 3479, - ':', 3615, - ';', 2938, - '<', 663, - '=', 1144, - '>', 666, - 'I', 1929, - 'N', 1924, - '_', 1664, - '`', 695, - 'a', 1779, - 'b', 1763, - 'c', 1673, - 'd', 1713, - 'e', 1183, - 'f', 1674, - 'h', 1759, - 'i', 1658, - 'l', 1727, - 'm', 1677, - 'n', 1714, - 'o', 1185, - 'r', 1716, - 's', 1804, - 't', 1824, - 'u', 1855, - 'w', 1754, - 'x', 1810, - '{', 3169, - '|', 2939, - '}', 3170, - '\t', 151, - ' ', 151, - 0x0b, 649, - '\f', 649, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); - if (lookahead != 0 && - (lookahead < '\'' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead)) ADVANCE(1943); + if (lookahead == '\n') ADVANCE(2875); + if (lookahead == '\r') ADVANCE(113); + if (lookahead == '#') ADVANCE(4829); + if (lookahead == '(') ADVANCE(3232); + if (lookahead == '{') ADVANCE(3109); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(120); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 152: ADVANCE_MAP( - '\n', 2935, - '\r', 172, - '!', 1644, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '*', 1182, - '+', 3618, - ',', 2987, - '-', 3045, - '.', 1408, - '/', 1414, - '0', 3479, - ':', 3615, - ';', 2938, - '<', 663, - '=', 1144, - '>', 666, - 'I', 1929, - 'N', 1924, - '_', 1664, - '`', 695, - 'a', 1779, - 'b', 1763, - 'c', 1673, - 'd', 1713, - 'e', 1183, - 'f', 1674, - 'h', 1759, - 'i', 1658, - 'l', 1727, - 'm', 1677, - 'n', 1714, - 'o', 1185, - 'r', 1716, - 's', 1804, - 't', 1824, - 'u', 1855, - 'w', 1754, - 'x', 1810, - '|', 2939, - '}', 3170, - '\t', 152, - ' ', 152, - 0x0b, 649, - '\f', 649, + '\n', 2875, + '\r', 113, + '#', 4825, + ')', 2927, + ';', 2879, + 'e', 2167, + 'o', 2168, + '|', 2880, + '\t', 118, + ' ', 118, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); - if (lookahead != 0 && - (lookahead < '\'' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); case 153: ADVANCE_MAP( - '\n', 2935, - '\r', 172, - '!', 660, - '#', 5024, - '*', 587, - '+', 591, - '-', 656, - '/', 645, - ':', 3615, - ';', 2938, - '<', 663, - '=', 1144, - '>', 666, - '?', 3263, - 'a', 800, - 'b', 776, - 'e', 605, - 'i', 802, - 'm', 826, - 'n', 821, - 'o', 610, - 's', 903, - 'x', 818, - '{', 3169, - '|', 2939, - '}', 3170, - '\t', 153, - ' ', 153, - 0x0b, 649, - '\f', 649, + '\n', 2875, + '\r', 113, + '#', 4825, + ')', 2927, + ';', 2879, + 'e', 2171, + 'o', 2172, + '|', 2880, + '\t', 116, + ' ', 116, ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); case 154: - ADVANCE_MAP( - '\n', 2935, - '\r', 172, - '!', 660, - '#', 5024, - '*', 588, - '+', 612, - '-', 3039, - '/', 646, - ':', 3615, - ';', 2938, - '<', 663, - '=', 664, - '>', 666, - '?', 3263, - 'a', 800, - 'b', 776, - 'e', 605, - 'i', 802, - 'm', 826, - 'n', 821, - 'o', 610, - 's', 903, - 'x', 818, - '{', 3169, - '|', 2939, - '}', 3170, - '\t', 154, - ' ', 154, - 0x0b, 649, - '\f', 649, - ); + if (lookahead == '\n') ADVANCE(188); END_STATE(); case 155: - ADVANCE_MAP( - '\n', 2935, - '\r', 172, - '!', 660, - '#', 5024, - '*', 588, - '+', 612, - '-', 3039, - '/', 646, - ':', 3615, - ';', 2938, - '<', 663, - '=', 664, - '>', 666, - 'a', 800, - 'b', 776, - 'e', 605, - 'i', 802, - 'm', 826, - 'n', 821, - 'o', 610, - 's', 903, - 'x', 818, - '{', 3169, - '|', 2939, - '}', 3170, - '\t', 155, - ' ', 155, - 0x0b, 649, - '\f', 649, - ); + if (lookahead == '\n') ADVANCE(3284); END_STATE(); case 156: - ADVANCE_MAP( - '\n', 2935, - '\r', 172, - '!', 660, - '#', 5024, - '*', 588, - '+', 612, - '-', 934, - '/', 646, - ':', 3615, - ';', 2938, - '<', 663, - '=', 664, - '>', 666, - 'a', 800, - 'b', 776, - 'e', 605, - 'i', 802, - 'm', 826, - 'n', 821, - 'o', 610, - 's', 903, - 'x', 818, - '|', 2939, - '}', 3170, - '\t', 156, - ' ', 156, - 0x0b, 649, - '\f', 649, - ); + if (lookahead == '\n') ADVANCE(3289); END_STATE(); case 157: - ADVANCE_MAP( - '\n', 2935, - '\r', 172, - '!', 660, - '#', 5024, - '*', 588, - '+', 612, - '-', 934, - '/', 646, - ':', 3615, - ';', 2938, - '<', 663, - '=', 665, - '>', 666, - 'a', 800, - 'b', 776, - 'e', 605, - 'i', 802, - 'm', 826, - 'n', 821, - 'o', 610, - 's', 903, - 'x', 818, - '|', 2939, - '}', 3170, - '\t', 157, - ' ', 157, - 0x0b, 649, - '\f', 649, - ); + if (lookahead == '\n') ADVANCE(3306); END_STATE(); case 158: - ADVANCE_MAP( - '\n', 2935, - '\r', 172, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - '+', 636, - '-', 3047, - '.', 637, - '0', 3476, - ':', 3615, - ';', 2938, - '?', 3263, - 'I', 966, - 'N', 957, - '[', 2983, - '_', 687, - '`', 695, - 'a', 784, - 'c', 816, - 'd', 737, - 'e', 601, - 'f', 700, - 'h', 766, - 'i', 750, - 'l', 767, - 'm', 696, - 'n', 736, - 'o', 595, - 't', 835, - 'u', 861, - '{', 3169, - '|', 2939, - '}', 3170, - '\t', 158, - ' ', 158, - 0x0b, 649, - '\f', 649, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3499); + if (lookahead == '\n') ADVANCE(3308); END_STATE(); case 159: - ADVANCE_MAP( - '\n', 2935, - '\r', 172, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - '+', 636, - '-', 3047, - '.', 3381, - '0', 3476, - ':', 3615, - ';', 2938, - '=', 3764, - '?', 3263, - 'I', 966, - 'N', 957, - '[', 2983, - '_', 687, - '`', 695, - 'a', 784, - 'c', 816, - 'd', 737, - 'e', 601, - 'f', 700, - 'h', 766, - 'i', 750, - 'l', 767, - 'm', 696, - 'n', 736, - 'o', 595, - 't', 835, - 'u', 861, - '{', 3169, - '|', 2939, - '}', 3170, - '\t', 158, - ' ', 158, - 0x0b, 649, - '\f', 649, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3499); + if (lookahead == '\n') ADVANCE(3283); END_STATE(); case 160: - ADVANCE_MAP( - '\n', 2935, - '\r', 172, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '*', 1416, - '+', 3619, - ',', 2987, - '-', 3046, - '.', 3400, - '/', 1417, - '0', 3479, - ':', 3615, - ';', 2938, - '=', 1142, - '?', 3263, - 'I', 1929, - 'N', 1924, - '_', 1664, - '`', 695, - 'a', 1780, - 'b', 1829, - 'c', 1673, - 'd', 1713, - 'e', 1184, - 'f', 1674, - 'h', 1759, - 'i', 1657, - 'l', 1727, - 'm', 1676, - 'n', 1715, - 'o', 1186, - 'r', 1716, - 's', 1805, - 't', 1824, - 'u', 1855, - 'w', 1754, - '|', 2939, - '}', 3170, - '\t', 150, - ' ', 150, - 0x0b, 649, - '\f', 649, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); - if (lookahead != 0 && - (lookahead < '\'' || '?' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + if (lookahead == '\n') ADVANCE(3307); END_STATE(); case 161: - ADVANCE_MAP( - '\n', 2935, - '\r', 172, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '*', 1416, - '+', 3619, - ',', 2987, - '-', 3046, - '.', 3400, - '/', 1417, - '0', 3479, - ':', 3615, - ';', 2938, - '=', 1142, - 'I', 1929, - 'N', 1924, - '[', 3546, - '_', 1664, - '`', 695, - 'a', 1780, - 'b', 1829, - 'c', 1673, - 'd', 1713, - 'e', 1184, - 'f', 1674, - 'h', 1759, - 'i', 1657, - 'l', 1727, - 'm', 1676, - 'n', 1715, - 'o', 1186, - 'r', 1716, - 's', 1805, - 't', 1824, - 'u', 1855, - 'w', 1754, - '{', 3169, - '|', 2939, - '}', 3170, - '\t', 151, - ' ', 151, - 0x0b, 649, - '\f', 649, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); - if (lookahead != 0 && - (lookahead < '\'' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead)) ADVANCE(1943); + if (lookahead == '\n') ADVANCE(3309); END_STATE(); case 162: - ADVANCE_MAP( - '\n', 2935, - '\r', 172, - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '*', 1416, - '+', 3619, - ',', 2987, - '-', 3046, - '.', 1411, - '/', 1417, - '0', 3479, - ':', 3615, - ';', 2938, - '=', 1142, - 'I', 1929, - 'N', 1924, - '_', 1664, - '`', 695, - 'a', 1780, - 'b', 1829, - 'c', 1673, - 'd', 1713, - 'e', 1184, - 'f', 1674, - 'h', 1759, - 'i', 1657, - 'l', 1727, - 'm', 1676, - 'n', 1715, - 'o', 1186, - 'r', 1716, - 's', 1805, - 't', 1824, - 'u', 1855, - 'w', 1754, - '|', 2939, - '}', 3170, - '\t', 152, - ' ', 152, - 0x0b, 649, - '\f', 649, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); - if (lookahead != 0 && - (lookahead < '\'' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); - END_STATE(); - case 163: - ADVANCE_MAP( - '\n', 2935, - '\r', 172, - '#', 5024, - '*', 654, - '+', 596, - '-', 655, - '.', 3392, - '/', 657, - ':', 3615, - ';', 2938, - '=', 1142, - '?', 3263, - 'e', 607, - 'o', 611, - '{', 3169, - '|', 2939, - '}', 3170, - '\t', 153, - ' ', 153, - 0x0b, 649, - '\f', 649, - ); - END_STATE(); - case 164: - ADVANCE_MAP( - '\n', 2935, - '\r', 172, - '#', 5024, - '-', 3030, - '.', 638, - ':', 3615, - ';', 2938, - '=', 673, - 'e', 607, - 'o', 611, - '{', 3169, - '|', 2939, - '}', 3170, - '\t', 155, - ' ', 155, - 0x0b, 649, - '\f', 649, - ); - END_STATE(); - case 165: - ADVANCE_MAP( - '\n', 2935, - '\r', 172, - '#', 5024, - '-', 3030, - '.', 3378, - ':', 3615, - ';', 2938, - '=', 673, - '?', 3263, - 'e', 607, - 'o', 611, - '{', 3169, - '|', 2939, - '}', 3170, - '\t', 154, - ' ', 154, - 0x0b, 649, - '\f', 649, - ); - END_STATE(); - case 166: - ADVANCE_MAP( - '\n', 2935, - '\r', 172, - '#', 5024, - '.', 3392, - ':', 3615, - ';', 2938, - '=', 673, - 'E', 2326, - 'G', 2328, - 'K', 2328, - 'M', 2328, - 'P', 2328, - 'T', 2328, - 'd', 2334, - 'e', 2302, - 'g', 2327, - 'h', 2348, - 'k', 2327, - 'm', 2329, - 'n', 2355, - 'o', 2304, - 'p', 2327, - 's', 2337, - 't', 2327, - 'u', 2355, - 'w', 2342, - '|', 2939, - '}', 3170, - 0xb5, 2355, - '\t', 156, - ' ', 156, - 'B', 3524, - 'b', 3524, - 0x0b, 649, - '\f', 649, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); - END_STATE(); - case 167: - ADVANCE_MAP( - '\n', 2935, - '\r', 172, - '#', 5024, - '.', 2316, - ':', 3615, - ';', 2938, - '=', 673, - 'E', 2326, - 'G', 2328, - 'K', 2328, - 'M', 2328, - 'P', 2328, - 'T', 2328, - '_', 2333, - 'd', 2334, - 'e', 2302, - 'g', 2327, - 'h', 2348, - 'k', 2327, - 'm', 2329, - 'n', 2355, - 'o', 2304, - 'p', 2327, - 's', 2337, - 't', 2327, - 'u', 2355, - 'w', 2342, - '|', 2939, - '}', 3170, - 0xb5, 2355, - '\t', 156, - ' ', 156, - 'B', 3524, - 'b', 3524, - 0x0b, 649, - '\f', 649, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); - END_STATE(); - case 168: - ADVANCE_MAP( - '\n', 2935, - '\r', 172, - '#', 5024, - '.', 2316, - ':', 3615, - ';', 2938, - '=', 673, - 'E', 2326, - 'G', 2328, - 'K', 2328, - 'M', 2328, - 'P', 2328, - 'T', 2328, - 'd', 2334, - 'e', 2302, - 'g', 2327, - 'h', 2348, - 'k', 2327, - 'm', 2329, - 'n', 2355, - 'o', 2304, - 'p', 2327, - 's', 2337, - 't', 2327, - 'u', 2355, - 'w', 2342, - '|', 2939, - '}', 3170, - 0xb5, 2355, - '\t', 156, - ' ', 156, - 'B', 3524, - 'b', 3524, - 0x0b, 649, - '\f', 649, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); - END_STATE(); - case 169: - ADVANCE_MAP( - '\n', 2935, - '\r', 172, - '#', 5024, - '.', 2316, - ':', 3615, - ';', 2938, - '=', 673, - 'E', 2328, - 'G', 2328, - 'K', 2328, - 'M', 2328, - 'P', 2328, - 'T', 2328, - 'd', 2334, - 'e', 2305, - 'g', 2327, - 'h', 2348, - 'k', 2327, - 'm', 2329, - 'n', 2355, - 'o', 2304, - 'p', 2327, - 's', 2337, - 't', 2327, - 'u', 2355, - 'w', 2342, - '|', 2939, - '}', 3170, - 0xb5, 2355, - '\t', 156, - ' ', 156, - 'B', 3524, - 'b', 3524, - 0x0b, 649, - '\f', 649, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); - END_STATE(); - case 170: - ADVANCE_MAP( - '\n', 2935, - '\r', 172, - '#', 5024, - ':', 3615, - ';', 2938, - 'e', 600, - 'o', 595, - '|', 2939, - '}', 3170, - '\t', 2936, - ' ', 2936, - 0x0b, 649, - '\f', 649, - ); - END_STATE(); - case 171: - ADVANCE_MAP( - '\n', 2935, - '\r', 172, - '#', 5027, - ':', 3615, - ';', 2938, - 'e', 2226, - 'o', 2227, - '|', 2939, - '}', 3170, - '\t', 157, - ' ', 157, - 0x0b, 649, - '\f', 649, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); - END_STATE(); - case 172: - if (lookahead == '\n') ADVANCE(2935); - if (lookahead == ':') ADVANCE(3615); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(649); - END_STATE(); - case 173: - if (lookahead == '\n') ADVANCE(2934); - END_STATE(); - case 174: - ADVANCE_MAP( - '\n', 2934, - '\r', 173, - '!', 662, - '#', 5024, - '$', 2989, - ')', 2986, - '*', 250, - '+', 223, - '-', 251, - '.', 692, - '/', 228, - ';', 2938, - '<', 254, - '=', 667, - '>', 255, - 'a', 791, - 'b', 765, - 'e', 604, - 'i', 748, - 'm', 824, - 'n', 814, - 'o', 609, - 's', 871, - 'x', 823, - '{', 3169, - '|', 2939, - '\t', 174, - ' ', 174, - ); - END_STATE(); - case 175: - ADVANCE_MAP( - '\n', 2934, - '\r', 173, - '!', 662, - '#', 5024, - ')', 2986, - '*', 250, - '+', 224, - '-', 253, - '/', 228, - ';', 2938, - '<', 254, - '=', 667, - '>', 255, - '?', 3263, - 'a', 791, - 'b', 765, - 'e', 604, - 'i', 748, - 'm', 824, - 'n', 814, - 'o', 609, - 's', 871, - 'x', 823, - '{', 3169, - '|', 2939, - '\t', 175, - ' ', 175, - ); - END_STATE(); - case 176: - ADVANCE_MAP( - '\n', 2934, - '\r', 173, - '!', 662, - '#', 5024, - ')', 2986, - '*', 250, - '+', 224, - '-', 253, - '/', 228, - ';', 2938, - '<', 254, - '=', 668, - '>', 255, - 'a', 791, - 'b', 765, - 'e', 598, - 'i', 801, - 'm', 824, - 'n', 814, - 'o', 593, - 's', 871, - 'x', 823, - '|', 2939, - '\t', 176, - ' ', 176, - ); - END_STATE(); - case 177: - ADVANCE_MAP( - '\n', 2934, - '\r', 173, - '!', 662, - '#', 5024, - ')', 2986, - '*', 250, - '+', 224, - '-', 253, - '/', 228, - ';', 2938, - '<', 254, - '=', 668, - '>', 255, - 'a', 791, - 'b', 765, - 'e', 604, - 'i', 801, - 'm', 824, - 'n', 814, - 'o', 609, - 's', 871, - 'x', 823, - '{', 3169, - '|', 2939, - '\t', 177, - ' ', 177, - ); - END_STATE(); - case 178: - ADVANCE_MAP( - '\n', 2934, - '\r', 173, - '!', 662, - '#', 5024, - ')', 2986, - '*', 250, - '+', 224, - '-', 253, - '/', 228, - ';', 2938, - '<', 254, - '=', 668, - '>', 255, - 'a', 791, - 'b', 765, - 'e', 604, - 'i', 801, - 'm', 824, - 'n', 814, - 'o', 609, - 's', 871, - 'x', 823, - '|', 2939, - '\t', 178, - ' ', 178, - ); - END_STATE(); - case 179: - ADVANCE_MAP( - '\n', 2934, - '\r', 173, - '!', 662, - '#', 5024, - ')', 2986, - '*', 249, - '+', 222, - '-', 252, - '/', 227, - ';', 2938, - '<', 254, - '=', 1145, - '>', 255, - '?', 3263, - 'a', 791, - 'b', 765, - 'e', 604, - 'i', 801, - 'm', 824, - 'n', 814, - 'o', 609, - 's', 871, - 'x', 823, - '{', 3169, - '|', 2939, - '\t', 179, - ' ', 179, - ); - END_STATE(); - case 180: - ADVANCE_MAP( - '\n', 2934, - '\r', 173, - '!', 662, - '#', 5024, - '*', 250, - '+', 224, - '-', 253, - '/', 228, - '<', 254, - '=', 668, - '>', 255, - 'a', 791, - 'b', 765, - 'e', 797, - 'i', 801, - 'm', 824, - 'n', 814, - 'o', 845, - 's', 871, - 'x', 823, - '{', 3169, - '\t', 180, - ' ', 180, - ); - END_STATE(); - case 181: - ADVANCE_MAP( - '\n', 2934, - '\r', 173, - '#', 5024, - '$', 2989, - '(', 3294, - ')', 2986, - '.', 639, - ';', 2938, - '=', 673, - '[', 3546, - '_', 691, - 'e', 607, - 'i', 746, - 'o', 611, - '{', 3169, - '|', 2939, - '\t', 174, - ' ', 174, - '+', 642, - '-', 642, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - END_STATE(); - case 182: - ADVANCE_MAP( - '\n', 2934, - '\r', 173, - '#', 5024, - '(', 3294, - ')', 2986, - '*', 654, - '+', 596, - '-', 655, - '.', 3392, - '/', 657, - ';', 2938, - '=', 1142, - '?', 3263, - 'E', 680, - 'G', 680, - 'K', 680, - 'M', 680, - 'P', 680, - 'T', 680, - 'd', 698, - 'e', 603, - 'g', 679, - 'h', 834, - 'k', 679, - 'm', 681, - 'n', 857, - 'o', 611, - 'p', 679, - 's', 739, - 't', 679, - 'u', 857, - 'w', 780, - '{', 3169, - '|', 2939, - 0xb5, 857, - '\t', 179, - ' ', 179, - 'B', 3524, - 'b', 3524, - ); - END_STATE(); - case 183: - ADVANCE_MAP( - '\n', 2934, - '\r', 173, - '#', 5024, - '(', 3294, - ')', 2986, - '.', 3392, - ';', 2938, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4049, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'o', 4051, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '|', 2939, - 0xb5, 4164, - '\t', 178, - ' ', 178, - 'B', 3524, - 'b', 3524, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); - END_STATE(); - case 184: - ADVANCE_MAP( - '\n', 2934, - '\r', 173, - '#', 5024, - '(', 3294, - ')', 2986, - '.', 3392, - ';', 2938, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4054, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'o', 4057, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '|', 2939, - 0xb5, 4164, - '\t', 176, - ' ', 176, - 'B', 3524, - 'b', 3524, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); - END_STATE(); - case 185: - ADVANCE_MAP( - '\n', 2934, - '\r', 173, - '#', 5024, - '(', 3294, - ')', 2986, - '.', 4081, - ';', 2938, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - '_', 4112, - 'd', 4120, - 'e', 4049, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'o', 4051, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '|', 2939, - 0xb5, 4164, - '\t', 178, - ' ', 178, - 'B', 3524, - 'b', 3524, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); - END_STATE(); - case 186: - ADVANCE_MAP( - '\n', 2934, - '\r', 173, - '#', 5024, - '(', 3294, - ')', 2986, - '.', 4081, - ';', 2938, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - '_', 4112, - 'd', 4120, - 'e', 4054, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'o', 4057, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '|', 2939, - 0xb5, 4164, - '\t', 176, - ' ', 176, - 'B', 3524, - 'b', 3524, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); - END_STATE(); - case 187: - ADVANCE_MAP( - '\n', 2934, - '\r', 173, - '#', 5024, - '(', 3294, - ')', 2986, - '.', 4081, - ';', 2938, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4049, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'o', 4051, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '|', 2939, - 0xb5, 4164, - '\t', 178, - ' ', 178, - 'B', 3524, - 'b', 3524, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); - END_STATE(); - case 188: - ADVANCE_MAP( - '\n', 2934, - '\r', 173, - '#', 5024, - '(', 3294, - ')', 2986, - '.', 4081, - ';', 2938, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4054, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'o', 4057, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '|', 2939, - 0xb5, 4164, - '\t', 176, - ' ', 176, - 'B', 3524, - 'b', 3524, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); - END_STATE(); - case 189: - ADVANCE_MAP( - '\n', 2934, - '\r', 173, - '#', 5024, - '(', 3294, - ')', 2986, - '.', 4081, - ';', 2938, - 'E', 4103, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4046, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'o', 4051, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '|', 2939, - 0xb5, 4164, - '\t', 178, - ' ', 178, - 'B', 3524, - 'b', 3524, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); - END_STATE(); - case 190: - ADVANCE_MAP( - '\n', 2934, - '\r', 173, - '#', 5024, - '(', 3294, - ')', 2986, - '.', 4081, - ';', 2938, - 'E', 4103, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4052, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'o', 4057, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '|', 2939, - 0xb5, 4164, - '\t', 176, - ' ', 176, - 'B', 3524, - 'b', 3524, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); - END_STATE(); - case 191: - ADVANCE_MAP( - '\n', 2934, - '\r', 173, - '#', 5024, - '(', 3294, - '.', 3392, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4099, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '{', 3169, - 0xb5, 4164, - '\t', 180, - ' ', 180, - 'B', 3524, - 'b', 3524, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); - END_STATE(); - case 192: - ADVANCE_MAP( - '\n', 2934, - '\r', 173, - '#', 5024, - '(', 3294, - '.', 4081, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - '_', 4112, - 'd', 4120, - 'e', 4099, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '{', 3169, - 0xb5, 4164, - '\t', 180, - ' ', 180, - 'B', 3524, - 'b', 3524, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); - END_STATE(); - case 193: - ADVANCE_MAP( - '\n', 2934, - '\r', 173, - '#', 5024, - '(', 3294, - '.', 4081, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4099, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '{', 3169, - 0xb5, 4164, - '\t', 180, - ' ', 180, - 'B', 3524, - 'b', 3524, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); - END_STATE(); - case 194: - ADVANCE_MAP( - '\n', 2934, - '\r', 173, - '#', 5024, - '(', 3294, - '.', 4081, - 'E', 4103, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4102, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '{', 3169, - 0xb5, 4164, - '\t', 180, - ' ', 180, - 'B', 3524, - 'b', 3524, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); - END_STATE(); - case 195: - if (lookahead == '\n') ADVANCE(2934); - if (lookahead == '\r') ADVANCE(173); - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '(') ADVANCE(3294); - if (lookahead == '{') ADVANCE(3169); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(180); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); - END_STATE(); - case 196: - ADVANCE_MAP( - '\n', 2934, - '\r', 173, - '#', 5024, - ')', 2986, - '.', 3392, - ';', 2938, - 'E', 2326, - 'G', 2328, - 'K', 2328, - 'M', 2328, - 'P', 2328, - 'T', 2328, - 'd', 2334, - 'e', 2302, - 'g', 2327, - 'h', 2348, - 'k', 2327, - 'm', 2329, - 'n', 2355, - 'o', 2304, - 'p', 2327, - 's', 2337, - 't', 2327, - 'u', 2355, - 'w', 2342, - '{', 3169, - '|', 2939, - 0xb5, 2355, - '\t', 177, - ' ', 177, - 'B', 3524, - 'b', 3524, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); - END_STATE(); - case 197: - ADVANCE_MAP( - '\n', 2934, - '\r', 173, - '#', 5024, - ')', 2986, - '.', 3392, - ';', 2938, - 'E', 2326, - 'G', 2328, - 'K', 2328, - 'M', 2328, - 'P', 2328, - 'T', 2328, - 'd', 2334, - 'e', 2310, - 'g', 2327, - 'h', 2348, - 'k', 2327, - 'm', 2329, - 'n', 2355, - 'o', 2311, - 'p', 2327, - 's', 2337, - 't', 2327, - 'u', 2355, - 'w', 2342, - '|', 2939, - 0xb5, 2355, - '\t', 176, - ' ', 176, - 'B', 3524, - 'b', 3524, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); - END_STATE(); - case 198: - ADVANCE_MAP( - '\n', 2934, - '\r', 173, - '#', 5024, - ')', 2986, - '.', 2316, - ';', 2938, - 'E', 2326, - 'G', 2328, - 'K', 2328, - 'M', 2328, - 'P', 2328, - 'T', 2328, - '_', 2333, - 'd', 2334, - 'e', 2302, - 'g', 2327, - 'h', 2348, - 'k', 2327, - 'm', 2329, - 'n', 2355, - 'o', 2304, - 'p', 2327, - 's', 2337, - 't', 2327, - 'u', 2355, - 'w', 2342, - '{', 3169, - '|', 2939, - 0xb5, 2355, - '\t', 177, - ' ', 177, - 'B', 3524, - 'b', 3524, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); - END_STATE(); - case 199: - ADVANCE_MAP( - '\n', 2934, - '\r', 173, - '#', 5024, - ')', 2986, - '.', 2316, - ';', 2938, - 'E', 2326, - 'G', 2328, - 'K', 2328, - 'M', 2328, - 'P', 2328, - 'T', 2328, - '_', 2333, - 'd', 2334, - 'e', 2310, - 'g', 2327, - 'h', 2348, - 'k', 2327, - 'm', 2329, - 'n', 2355, - 'o', 2311, - 'p', 2327, - 's', 2337, - 't', 2327, - 'u', 2355, - 'w', 2342, - '|', 2939, - 0xb5, 2355, - '\t', 176, - ' ', 176, - 'B', 3524, - 'b', 3524, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); - END_STATE(); - case 200: - ADVANCE_MAP( - '\n', 2934, - '\r', 173, - '#', 5024, - ')', 2986, - '.', 2316, - ';', 2938, - 'E', 2326, - 'G', 2328, - 'K', 2328, - 'M', 2328, - 'P', 2328, - 'T', 2328, - 'd', 2334, - 'e', 2302, - 'g', 2327, - 'h', 2348, - 'k', 2327, - 'm', 2329, - 'n', 2355, - 'o', 2304, - 'p', 2327, - 's', 2337, - 't', 2327, - 'u', 2355, - 'w', 2342, - '{', 3169, - '|', 2939, - 0xb5, 2355, - '\t', 177, - ' ', 177, - 'B', 3524, - 'b', 3524, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); - END_STATE(); - case 201: - ADVANCE_MAP( - '\n', 2934, - '\r', 173, - '#', 5024, - ')', 2986, - '.', 2316, - ';', 2938, - 'E', 2326, - 'G', 2328, - 'K', 2328, - 'M', 2328, - 'P', 2328, - 'T', 2328, - 'd', 2334, - 'e', 2310, - 'g', 2327, - 'h', 2348, - 'k', 2327, - 'm', 2329, - 'n', 2355, - 'o', 2311, - 'p', 2327, - 's', 2337, - 't', 2327, - 'u', 2355, - 'w', 2342, - '|', 2939, - 0xb5, 2355, - '\t', 176, - ' ', 176, - 'B', 3524, - 'b', 3524, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); - END_STATE(); - case 202: - ADVANCE_MAP( - '\n', 2934, - '\r', 173, - '#', 5024, - ')', 2986, - '.', 2316, - ';', 2938, - 'E', 2328, - 'G', 2328, - 'K', 2328, - 'M', 2328, - 'P', 2328, - 'T', 2328, - 'd', 2334, - 'e', 2305, - 'g', 2327, - 'h', 2348, - 'k', 2327, - 'm', 2329, - 'n', 2355, - 'o', 2304, - 'p', 2327, - 's', 2337, - 't', 2327, - 'u', 2355, - 'w', 2342, - '{', 3169, - '|', 2939, - 0xb5, 2355, - '\t', 177, - ' ', 177, - 'B', 3524, - 'b', 3524, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); - END_STATE(); - case 203: - ADVANCE_MAP( - '\n', 2934, - '\r', 173, - '#', 5024, - ')', 2986, - '.', 2316, - ';', 2938, - 'E', 2328, - 'G', 2328, - 'K', 2328, - 'M', 2328, - 'P', 2328, - 'T', 2328, - 'd', 2334, - 'e', 2308, - 'g', 2327, - 'h', 2348, - 'k', 2327, - 'm', 2329, - 'n', 2355, - 'o', 2311, - 'p', 2327, - 's', 2337, - 't', 2327, - 'u', 2355, - 'w', 2342, - '|', 2939, - 0xb5, 2355, - '\t', 176, - ' ', 176, - 'B', 3524, - 'b', 3524, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); - END_STATE(); - case 204: - ADVANCE_MAP( - '\n', 2934, - '\r', 173, - '#', 5024, - ')', 2986, - '.', 3378, - ';', 2938, - '=', 673, - '?', 3263, - 'e', 607, - 'i', 746, - 'o', 611, - '{', 3169, - '|', 2939, - '\t', 175, - ' ', 175, - ); - END_STATE(); - case 205: - ADVANCE_MAP( - '\n', 2934, - '\r', 173, - '#', 5024, - ')', 2986, - ';', 2938, - 'e', 2306, - 'o', 2304, - '|', 2939, - '\t', 178, - ' ', 178, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); - END_STATE(); - case 206: - ADVANCE_MAP( - '\n', 2934, - '\r', 173, - '#', 5024, - ')', 2986, - ';', 2938, - 'e', 4047, - 'o', 4051, - '|', 2939, - '\t', 178, - ' ', 178, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); - END_STATE(); - case 207: - ADVANCE_MAP( - '\n', 2934, - '\r', 173, - '#', 5024, - ')', 2986, - ';', 2938, - 'e', 2309, - 'o', 2311, - '|', 2939, - '\t', 176, - ' ', 176, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); - END_STATE(); - case 208: - ADVANCE_MAP( - '\n', 2934, - '\r', 173, - '#', 5024, - ')', 2986, - ';', 2938, - 'e', 4053, - 'o', 4057, - '|', 2939, - '\t', 176, - ' ', 176, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); - END_STATE(); - case 209: - ADVANCE_MAP( - '\n', 2934, - '\r', 173, - '#', 5031, - '(', 3294, - ')', 2986, - ';', 2938, - 'e', 4232, - 'o', 4233, - '|', 2939, - '\t', 178, - ' ', 178, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); - END_STATE(); - case 210: - ADVANCE_MAP( - '\n', 2934, - '\r', 173, - '#', 5031, - '(', 3294, - ')', 2986, - ';', 2938, - 'e', 4234, - 'o', 4236, - '|', 2939, - '\t', 176, - ' ', 176, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); - END_STATE(); - case 211: - if (lookahead == '\n') ADVANCE(2934); - if (lookahead == '\r') ADVANCE(173); - if (lookahead == '#') ADVANCE(5031); - if (lookahead == '(') ADVANCE(3294); - if (lookahead == '{') ADVANCE(3169); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(180); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); - END_STATE(); - case 212: - ADVANCE_MAP( - '\n', 2934, - '\r', 173, - '#', 5027, - ')', 2986, - ';', 2938, - 'e', 2226, - 'o', 2227, - '|', 2939, - '\t', 178, - ' ', 178, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); - END_STATE(); - case 213: - ADVANCE_MAP( - '\n', 2934, - '\r', 173, - '#', 5027, - ')', 2986, - ';', 2938, - 'e', 2230, - 'o', 2231, - '|', 2939, - '\t', 176, - ' ', 176, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); - END_STATE(); - case 214: - if (lookahead == '\n') ADVANCE(248); - END_STATE(); - case 215: - if (lookahead == '\n') ADVANCE(3346); - END_STATE(); - case 216: - if (lookahead == '\n') ADVANCE(3351); - END_STATE(); - case 217: - if (lookahead == '\n') ADVANCE(3368); - END_STATE(); - case 218: - if (lookahead == '\n') ADVANCE(3370); - END_STATE(); - case 219: - if (lookahead == '\n') ADVANCE(3345); - END_STATE(); - case 220: - if (lookahead == '\n') ADVANCE(3369); - END_STATE(); - case 221: - if (lookahead == '\n') ADVANCE(3371); - END_STATE(); - case 222: if (lookahead == '\r') ADVANCE(4); - if (lookahead == '+') ADVANCE(256); - if (lookahead == '=') ADVANCE(1169); + if (lookahead == '+') ADVANCE(196); + if (lookahead == '=') ADVANCE(1110); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3350); + lookahead == ' ') ADVANCE(3288); END_STATE(); - case 223: + case 163: if (lookahead == '\r') ADVANCE(4); - if (lookahead == '+') ADVANCE(257); - if (lookahead == '.') ADVANCE(683); - if (lookahead == '_') ADVANCE(642); + if (lookahead == '+') ADVANCE(197); + if (lookahead == '.') ADVANCE(622); + if (lookahead == '_') ADVANCE(579); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3350); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); + lookahead == ' ') ADVANCE(3288); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); END_STATE(); - case 224: + case 164: if (lookahead == '\r') ADVANCE(4); - if (lookahead == '+') ADVANCE(257); + if (lookahead == '+') ADVANCE(197); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3350); + lookahead == ' ') ADVANCE(3288); END_STATE(); - case 225: + case 165: if (lookahead == '\r') ADVANCE(4); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3350); + lookahead == ' ') ADVANCE(3288); END_STATE(); - case 226: + case 166: ADVANCE_MAP( '\r', 3, - '!', 662, - '*', 586, - '+', 225, - '/', 228, - ':', 3615, - '=', 668, - 'a', 791, - 'b', 765, - 'e', 797, - 'i', 801, - 'm', 824, - 'n', 814, - 'o', 845, - 's', 871, - 'x', 823, - 0x0b, 649, - '\f', 649, - '\t', 226, - '\n', 226, - ' ', 226, + '!', 599, + '*', 526, + '+', 165, + '/', 168, + ':', 3553, + '=', 605, + 'a', 730, + 'b', 704, + 'e', 736, + 'i', 740, + 'm', 763, + 'n', 753, + 'o', 784, + 's', 810, + 'x', 762, + 0x0b, 586, + '\f', 586, + '\t', 166, + '\n', 166, + ' ', 166, ); END_STATE(); - case 227: + case 167: if (lookahead == '\r') ADVANCE(5); - if (lookahead == '/') ADVANCE(232); - if (lookahead == '=') ADVANCE(1172); + if (lookahead == '/') ADVANCE(172); + if (lookahead == '=') ADVANCE(1113); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3347); + lookahead == ' ') ADVANCE(3285); END_STATE(); - case 228: + case 168: if (lookahead == '\r') ADVANCE(5); - if (lookahead == '/') ADVANCE(232); + if (lookahead == '/') ADVANCE(172); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3347); + lookahead == ' ') ADVANCE(3285); END_STATE(); - case 229: + case 169: if (lookahead == '\r') ADVANCE(6); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3367); + lookahead == ' ') ADVANCE(3305); END_STATE(); - case 230: + case 170: if (lookahead == '\r') ADVANCE(7); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3355); + lookahead == ' ') ADVANCE(3293); END_STATE(); - case 231: + case 171: if (lookahead == '\r') ADVANCE(8); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3344); + lookahead == ' ') ADVANCE(3282); END_STATE(); - case 232: + case 172: if (lookahead == '\r') ADVANCE(9); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3349); + lookahead == ' ') ADVANCE(3287); END_STATE(); - case 233: + case 173: if (lookahead == '\r') ADVANCE(10); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3366); + lookahead == ' ') ADVANCE(3304); END_STATE(); - case 234: + case 174: if (lookahead == '\r') ADVANCE(11); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3354); + lookahead == ' ') ADVANCE(3292); END_STATE(); - case 235: + case 175: if (lookahead == '\r') ADVANCE(12); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3362); + lookahead == ' ') ADVANCE(3300); END_STATE(); - case 236: + case 176: if (lookahead == '\r') ADVANCE(13); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3361); + lookahead == ' ') ADVANCE(3299); END_STATE(); - case 237: + case 177: if (lookahead == '\r') ADVANCE(14); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3359); + lookahead == ' ') ADVANCE(3297); END_STATE(); - case 238: + case 178: if (lookahead == '\r') ADVANCE(15); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3348); + lookahead == ' ') ADVANCE(3286); END_STATE(); - case 239: + case 179: if (lookahead == '\r') ADVANCE(16); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3360); + lookahead == ' ') ADVANCE(3298); END_STATE(); - case 240: + case 180: if (lookahead == '\r') ADVANCE(17); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3358); + lookahead == ' ') ADVANCE(3296); END_STATE(); - case 241: + case 181: if (lookahead == '\r') ADVANCE(18); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3363); + lookahead == ' ') ADVANCE(3301); END_STATE(); - case 242: + case 182: if (lookahead == '\r') ADVANCE(19); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3356); + lookahead == ' ') ADVANCE(3294); END_STATE(); - case 243: + case 183: if (lookahead == '\r') ADVANCE(20); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3352); + lookahead == ' ') ADVANCE(3290); END_STATE(); - case 244: + case 184: if (lookahead == '\r') ADVANCE(21); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3353); + lookahead == ' ') ADVANCE(3291); END_STATE(); - case 245: + case 185: if (lookahead == '\r') ADVANCE(22); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3357); + lookahead == ' ') ADVANCE(3295); END_STATE(); - case 246: + case 186: if (lookahead == '\r') ADVANCE(23); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3365); + lookahead == ' ') ADVANCE(3303); END_STATE(); - case 247: + case 187: if (lookahead == '\r') ADVANCE(24); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3364); + lookahead == ' ') ADVANCE(3302); END_STATE(); - case 248: + case 188: ADVANCE_MAP( - '\r', 214, - '!', 662, - '*', 250, - '+', 224, - '-', 253, - '/', 228, - '<', 254, - '=', 668, - '>', 255, - 'a', 791, - 'b', 765, - 'e', 797, - 'i', 801, - 'm', 824, - 'n', 814, - 'o', 845, - 's', 871, - 'x', 823, - '\t', 248, - '\n', 248, - ' ', 248, + '\r', 154, + '!', 599, + '*', 190, + '+', 164, + '-', 193, + '/', 168, + '<', 194, + '=', 605, + '>', 195, + 'a', 730, + 'b', 704, + 'e', 736, + 'i', 740, + 'm', 763, + 'n', 753, + 'o', 784, + 's', 810, + 'x', 762, + '\t', 188, + '\n', 188, + ' ', 188, ); END_STATE(); - case 249: - if (lookahead == '\r') ADVANCE(215); - if (lookahead == '*') ADVANCE(231); - if (lookahead == '=') ADVANCE(1171); + case 189: + if (lookahead == '\r') ADVANCE(155); + if (lookahead == '*') ADVANCE(171); + if (lookahead == '=') ADVANCE(1112); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3346); + lookahead == ' ') ADVANCE(3284); END_STATE(); - case 250: - if (lookahead == '\r') ADVANCE(215); - if (lookahead == '*') ADVANCE(231); + case 190: + if (lookahead == '\r') ADVANCE(155); + if (lookahead == '*') ADVANCE(171); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3346); + lookahead == ' ') ADVANCE(3284); END_STATE(); - case 251: - if (lookahead == '\r') ADVANCE(216); - if (lookahead == '.') ADVANCE(683); - if (lookahead == '_') ADVANCE(642); + case 191: + if (lookahead == '\r') ADVANCE(156); + if (lookahead == '.') ADVANCE(622); + if (lookahead == '_') ADVANCE(579); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3351); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); + lookahead == ' ') ADVANCE(3289); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); END_STATE(); - case 252: - if (lookahead == '\r') ADVANCE(216); - if (lookahead == '=') ADVANCE(1170); + case 192: + if (lookahead == '\r') ADVANCE(156); + if (lookahead == '=') ADVANCE(1111); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3351); + lookahead == ' ') ADVANCE(3289); END_STATE(); - case 253: - if (lookahead == '\r') ADVANCE(216); + case 193: + if (lookahead == '\r') ADVANCE(156); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3351); + lookahead == ' ') ADVANCE(3289); END_STATE(); - case 254: - if (lookahead == '\r') ADVANCE(217); - if (lookahead == '=') ADVANCE(258); + case 194: + if (lookahead == '\r') ADVANCE(157); + if (lookahead == '=') ADVANCE(198); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3368); + lookahead == ' ') ADVANCE(3306); END_STATE(); - case 255: - if (lookahead == '\r') ADVANCE(218); - if (lookahead == '=') ADVANCE(259); + case 195: + if (lookahead == '\r') ADVANCE(158); + if (lookahead == '=') ADVANCE(199); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3370); + lookahead == ' ') ADVANCE(3308); END_STATE(); - case 256: - if (lookahead == '\r') ADVANCE(219); - if (lookahead == '=') ADVANCE(1173); + case 196: + if (lookahead == '\r') ADVANCE(159); + if (lookahead == '=') ADVANCE(1114); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3345); + lookahead == ' ') ADVANCE(3283); END_STATE(); - case 257: - if (lookahead == '\r') ADVANCE(219); + case 197: + if (lookahead == '\r') ADVANCE(159); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3345); + lookahead == ' ') ADVANCE(3283); END_STATE(); - case 258: - if (lookahead == '\r') ADVANCE(220); + case 198: + if (lookahead == '\r') ADVANCE(160); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3369); + lookahead == ' ') ADVANCE(3307); END_STATE(); - case 259: - if (lookahead == '\r') ADVANCE(221); + case 199: + if (lookahead == '\r') ADVANCE(161); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3371); + lookahead == ' ') ADVANCE(3309); END_STATE(); - case 260: + case 200: ADVANCE_MAP( - '!', 660, - '#', 5024, - '*', 588, - '+', 612, - '-', 3039, - '/', 646, - '<', 663, - '=', 665, - '>', 666, - 'a', 800, - 'b', 776, - 'e', 808, - 'i', 802, - 'm', 826, - 'n', 821, - 'o', 846, - 's', 903, - 'x', 818, - '{', 3169, - '\t', 260, - ' ', 260, + '!', 597, + '#', 4822, + '*', 528, + '+', 552, + '-', 2979, + '/', 583, + '<', 600, + '=', 602, + '>', 603, + 'a', 739, + 'b', 715, + 'e', 747, + 'i', 741, + 'm', 765, + 'n', 760, + 'o', 785, + 's', 842, + 'x', 757, + '{', 3109, + '\t', 200, + ' ', 200, ); END_STATE(); - case 261: + case 201: ADVANCE_MAP( - '!', 660, - '#', 5024, - '*', 588, - '+', 612, - '-', 934, - '/', 646, - '<', 663, - '=', 664, - '>', 666, - 'a', 800, - 'b', 776, - 'e', 808, - 'i', 802, - 'm', 826, - 'n', 821, - 'o', 846, - 's', 903, - 'x', 818, - '|', 2939, - '\t', 261, - ' ', 261, + '!', 597, + '#', 4822, + '*', 528, + '+', 552, + '-', 873, + '/', 583, + '<', 600, + '=', 601, + '>', 603, + 'a', 739, + 'b', 715, + 'e', 747, + 'i', 741, + 'm', 765, + 'n', 760, + 'o', 785, + 's', 842, + 'x', 757, + '|', 2880, + '\t', 201, + ' ', 201, ); END_STATE(); - case 262: + case 202: ADVANCE_MAP( - '!', 660, - '#', 5024, - '*', 588, - '+', 612, - '-', 934, - '/', 646, - '<', 663, - '=', 665, - '>', 666, - 'a', 800, - 'b', 776, - 'e', 808, - 'i', 802, - 'm', 826, - 'n', 821, - 'o', 846, - 's', 903, - 'x', 818, - '{', 3169, - '\t', 262, - ' ', 262, + '!', 597, + '#', 4822, + '*', 528, + '+', 552, + '-', 873, + '/', 583, + '<', 600, + '=', 602, + '>', 603, + 'a', 739, + 'b', 715, + 'e', 747, + 'i', 741, + 'm', 765, + 'n', 760, + 'o', 785, + 's', 842, + 'x', 757, + '{', 3109, + '\t', 202, + ' ', 202, ); END_STATE(); - case 263: + case 203: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 3294, - '+', 636, - '-', 3048, - '.', 637, - '0', 3783, - '=', 3764, - 'N', 3809, - '[', 2983, - '_', 3784, - '`', 695, - 'f', 3791, - 'n', 3798, - 't', 3799, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 3232, + '+', 574, + '-', 2988, + '.', 575, + '0', 3713, + '=', 3694, + 'N', 3739, + '[', 2924, + '_', 3714, + '`', 634, + 'f', 3721, + 'n', 3728, + 't', 3729, + '{', 3109, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(267); + lookahead == ' ') SKIP(207); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3814); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3790); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + lookahead == 'i') ADVANCE(3744); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3720); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 264: + case 204: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - '+', 1405, - '-', 3047, - '.', 1406, - '0', 3472, - ';', 3627, - 'I', 1637, - 'N', 1634, - '[', 2983, - '^', 3699, - '_', 1427, - '`', 695, - 'a', 1534, - 'b', 1568, - 'c', 1429, - 'd', 1478, - 'e', 1533, - 'f', 1432, - 'h', 1511, - 'i', 1424, - 'l', 1485, - 'm', 1434, - 'n', 1455, - 'o', 1629, - 'r', 1495, - 's', 1555, - 't', 1560, - 'u', 1598, - 'w', 1507, - '{', 3169, - '\t', 264, - ' ', 264, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + '+', 1346, + '-', 2987, + '.', 1347, + '0', 3410, + ';', 3565, + 'I', 1578, + 'N', 1575, + '[', 2924, + '^', 3637, + '_', 1368, + '`', 634, + 'a', 1475, + 'b', 1509, + 'c', 1370, + 'd', 1419, + 'e', 1474, + 'f', 1373, + 'h', 1452, + 'i', 1365, + 'l', 1426, + 'm', 1375, + 'n', 1396, + 'o', 1570, + 'r', 1436, + 's', 1496, + 't', 1501, + 'u', 1539, + 'w', 1448, + '{', 3109, + '\t', 204, + ' ', 204, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(652); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(589); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3495); + lookahead == '@') ADVANCE(1884); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3433); if (lookahead != 0 && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1643); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1584); END_STATE(); - case 265: + case 205: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - '+', 1405, - '-', 3047, - '.', 1406, - '0', 3472, - 'I', 1637, - 'N', 1634, - '[', 2983, - '^', 3699, - '_', 1427, - '`', 695, - 'a', 1534, - 'b', 1582, - 'c', 1430, - 'd', 1479, - 'e', 1533, - 'f', 1432, - 'h', 1511, - 'i', 1426, - 'l', 1485, - 'm', 1443, - 'n', 1455, - 'o', 1629, - 'r', 1494, - 's', 1555, - 't', 1569, - 'u', 1598, - 'w', 1506, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + '+', 1346, + '-', 2987, + '.', 1347, + '0', 3410, + 'I', 1578, + 'N', 1575, + '[', 2924, + '^', 3637, + '_', 1368, + '`', 634, + 'a', 1475, + 'b', 1523, + 'c', 1371, + 'd', 1420, + 'e', 1474, + 'f', 1373, + 'h', 1452, + 'i', 1367, + 'l', 1426, + 'm', 1384, + 'n', 1396, + 'o', 1570, + 'r', 1435, + 's', 1496, + 't', 1510, + 'u', 1539, + 'w', 1447, + '{', 3109, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(265); + lookahead == ' ') SKIP(205); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3495); + lookahead == '@') ADVANCE(1884); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3433); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1643); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1584); END_STATE(); - case 266: + case 206: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - '+', 636, - '-', 3047, - '.', 637, - '0', 3476, - 'N', 957, - '[', 3546, - '_', 687, - '`', 695, - 'f', 700, - 'n', 820, - 't', 840, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + '+', 574, + '-', 2987, + '.', 575, + '0', 3413, + 'N', 896, + '[', 3484, + '_', 626, + '`', 634, + 'f', 639, + 'n', 759, + 't', 779, + '{', 3109, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(267); + lookahead == ' ') SKIP(207); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(966); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3499); + lookahead == 'i') ADVANCE(905); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3436); END_STATE(); - case 267: + case 207: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - '+', 636, - '-', 3047, - '.', 637, - '0', 3476, - 'N', 957, - '[', 2983, - '_', 687, - '`', 695, - 'f', 700, - 'n', 820, - 't', 840, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + '+', 574, + '-', 2987, + '.', 575, + '0', 3413, + 'N', 896, + '[', 2924, + '_', 626, + '`', 634, + 'f', 639, + 'n', 759, + 't', 779, + '{', 3109, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(267); + lookahead == ' ') SKIP(207); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(966); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3499); + lookahead == 'i') ADVANCE(905); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3436); END_STATE(); - case 268: + case 208: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - '+', 636, - '-', 3047, - '.', 637, - '0', 2743, - '=', 3764, - 'N', 2868, - '[', 2983, - '_', 2744, - '`', 695, - 'f', 2752, - 'n', 2816, - 't', 2821, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + '+', 574, + '-', 2987, + '.', 575, + '0', 2684, + '=', 3694, + 'N', 2809, + '[', 2924, + '_', 2685, + '`', 634, + 'f', 2693, + 'n', 2757, + 't', 2762, + '{', 3109, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(267); + lookahead == ' ') SKIP(207); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2876); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2750); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2899); + lookahead == 'i') ADVANCE(2817); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2691); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2840); END_STATE(); - case 269: + case 209: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - '+', 636, - '-', 3033, - '.', 637, - '0', 3476, - 'N', 957, - '[', 2983, - '_', 687, - '`', 695, - 'f', 700, - 'n', 820, - 't', 840, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + '+', 574, + '-', 2973, + '.', 575, + '0', 3413, + 'N', 896, + '[', 2924, + '_', 626, + '`', 634, + 'f', 639, + 'n', 759, + 't', 779, + '{', 3109, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(269); + lookahead == ' ') SKIP(209); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(966); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3499); + lookahead == 'i') ADVANCE(905); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3436); END_STATE(); - case 270: + case 210: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - '+', 3878, - '-', 3047, - '.', 3875, - '0', 3473, - ':', 3615, - 'N', 4016, - '[', 2983, - '_', 3903, - '`', 695, - 'e', 3853, - 'f', 3917, - 'n', 3955, - 'o', 3855, - 't', 3960, - '{', 3169, - '\t', 270, - ' ', 270, - 'I', 4021, - 'i', 4021, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + '+', 3797, + '-', 573, + '.', 3794, + '0', 3411, + ':', 3553, + 'N', 3856, + '[', 2924, + '_', 3811, + '`', 634, + 'e', 3777, + 'f', 3824, + 'n', 3852, + 'o', 3778, + 't', 3839, + '{', 3109, + '\t', 210, + ' ', 210, + 'I', 3860, + 'i', 3860, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(649); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(586); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3879); END_STATE(); - case 271: + case 211: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - '+', 3878, - '-', 635, - '.', 3875, - ':', 3615, - 'N', 4016, - '_', 3903, - '`', 695, - 'e', 3853, - 'f', 3917, - 'n', 3987, - 'o', 3855, - 't', 3960, - '\t', 271, - ' ', 271, - 'I', 4021, - 'i', 4021, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + '+', 3797, + '-', 573, + '.', 3794, + ':', 3553, + 'N', 3856, + '_', 3811, + '`', 634, + 'e', 3777, + 'f', 3824, + 'n', 3852, + 'o', 3778, + 't', 3839, + '\t', 211, + ' ', 211, + 'I', 3860, + 'i', 3860, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(649); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3496); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(586); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3434); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3879); END_STATE(); - case 272: + case 212: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - '+', 3878, - '-', 635, - '.', 3875, - 'N', 4016, - '_', 3903, - '`', 695, - 'e', 3853, - 'f', 3917, - 'n', 3987, - 'o', 3855, - 't', 3960, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + '+', 3797, + '-', 573, + '.', 3794, + 'N', 3856, + '_', 3811, + '`', 634, + 'e', 3777, + 'f', 3824, + 'n', 3852, + 'o', 3778, + 't', 3839, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + lookahead == ' ') SKIP(212); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4021); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3496); + lookahead == 'i') ADVANCE(3860); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3434); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4040); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3879); END_STATE(); - case 273: + case 213: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - '+', 4469, - ',', 3610, - '-', 4468, - '.', 4470, - '0', 3474, - 'N', 4521, - '[', 2983, - ']', 2984, - '_', 4488, - '`', 695, - 'e', 4458, - 'f', 4501, - 'n', 4518, - 'o', 4459, - 't', 4511, - '{', 3169, - '\t', 3611, - ' ', 3611, - 'I', 4527, - 'i', 4527, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + '+', 4267, + '-', 4266, + '.', 4268, + '0', 3412, + 'N', 4319, + '[', 2924, + ']', 2925, + '_', 4286, + '`', 634, + 'e', 4256, + 'f', 4299, + 'n', 4316, + 'o', 4257, + 't', 4309, + '{', 3109, + '}', 3110, + '\t', 3552, + ' ', 3552, + 'I', 4325, + 'i', 4325, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); END_STATE(); - case 274: + case 214: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - '+', 4079, - '-', 3051, - '.', 4080, - '0', 3426, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'N', 4188, - 'P', 4103, - 'T', 4103, - '[', 2983, - '_', 4112, - '`', 695, - 'd', 4120, - 'e', 4099, - 'f', 4121, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4144, - 'p', 4102, - 's', 4127, - 't', 4101, - 'u', 4164, - 'w', 4135, - '{', 3169, - 0xb5, 4164, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + '+', 4549, + '-', 4548, + '.', 4547, + '0', 3414, + 'N', 4580, + '[', 2924, + '_', 4555, + '`', 634, + 'e', 4542, + 'f', 4560, + 'n', 4577, + 'o', 4543, + 't', 4570, + '{', 3109, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(267); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); + lookahead == ' ') SKIP(214); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4195); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3441); + lookahead == 'i') ADVANCE(4586); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3437); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && + (lookahead < '+' || '.' < lookahead) && + (lookahead < '0' || ';' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4218); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4600); END_STATE(); - case 275: + case 215: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - '+', 4079, - '-', 3051, - '.', 4080, - '0', 3475, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'N', 4188, - 'P', 4103, - 'T', 4103, - '[', 2983, - '_', 4115, - '`', 695, - 'd', 4120, - 'e', 4099, - 'f', 4121, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4144, - 'p', 4102, - 's', 4127, - 't', 4101, - 'u', 4164, - 'w', 4135, - '{', 3169, - 0xb5, 4164, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + '+', 3914, + '-', 2994, + '.', 3911, + '0', 3364, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'N', 4005, + 'P', 3931, + 'T', 3931, + '[', 2924, + '_', 3933, + '`', 634, + 'd', 3948, + 'e', 3927, + 'f', 3947, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3969, + 'p', 3930, + 's', 3954, + 't', 3929, + 'u', 3984, + 'w', 3960, + '{', 3109, + 0xb5, 3984, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(267); + lookahead == ' ') SKIP(207); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); + lookahead == 'b') ADVANCE(3462); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4195); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); + lookahead == 'i') ADVANCE(4012); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3379); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4218); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4035); END_STATE(); - case 276: + case 216: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - '+', 4079, - '-', 3051, - '.', 4080, - '0', 3475, - 'E', 4103, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'N', 4188, - 'P', 4103, - 'T', 4103, - '[', 2983, - '_', 4115, - '`', 695, - 'd', 4120, - 'e', 4102, - 'f', 4121, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4144, - 'p', 4102, - 's', 4127, - 't', 4101, - 'u', 4164, - 'w', 4135, - '{', 3169, - 0xb5, 4164, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + '+', 3914, + '-', 2994, + '.', 3911, + '0', 3415, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'N', 4005, + 'P', 3931, + 'T', 3931, + '[', 2924, + '_', 3938, + '`', 634, + 'd', 3948, + 'e', 3927, + 'f', 3947, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3969, + 'p', 3930, + 's', 3954, + 't', 3929, + 'u', 3984, + 'w', 3960, + '{', 3109, + 0xb5, 3984, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(267); + lookahead == ' ') SKIP(207); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); + lookahead == 'b') ADVANCE(3462); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4195); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); + lookahead == 'i') ADVANCE(4012); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3438); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4218); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4035); END_STATE(); - case 277: + case 217: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - '+', 4079, - '-', 3051, - '.', 4076, - '0', 3475, - 'N', 4188, - '[', 2983, - '_', 4115, - '`', 695, - 'f', 4121, - 'n', 4145, - 't', 4152, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + '+', 3914, + '-', 2994, + '.', 3911, + '0', 3415, + 'E', 3931, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'N', 4005, + 'P', 3931, + 'T', 3931, + '[', 2924, + '_', 3938, + '`', 634, + 'd', 3948, + 'e', 3930, + 'f', 3947, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3969, + 'p', 3930, + 's', 3954, + 't', 3929, + 'u', 3984, + 'w', 3960, + '{', 3109, + 0xb5, 3984, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(267); + lookahead == ' ') SKIP(207); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4195); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); + lookahead == 'i') ADVANCE(4012); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3438); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4218); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4035); END_STATE(); - case 278: + case 218: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - '+', 4079, - '-', 3051, - '.', 3394, - '0', 3475, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'N', 4188, - 'P', 4103, - 'T', 4103, - '[', 2983, - '_', 4115, - '`', 695, - 'd', 4120, - 'e', 4099, - 'f', 4121, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4144, - 'p', 4102, - 's', 4127, - 't', 4101, - 'u', 4164, - 'w', 4135, - '{', 3169, - 0xb5, 4164, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + '+', 3914, + '-', 2994, + '.', 3910, + '0', 3415, + 'N', 4005, + '[', 2924, + '_', 3938, + '`', 634, + 'f', 3947, + 'n', 3970, + 't', 3976, + '{', 3109, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(267); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); + lookahead == ' ') SKIP(207); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4195); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); + lookahead == 'i') ADVANCE(4012); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3438); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4218); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4035); END_STATE(); - case 279: + case 219: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - '+', 4751, - '-', 4750, - '.', 4749, - '0', 3477, - 'N', 4782, - '[', 2983, - '_', 4757, - '`', 695, - 'e', 4744, - 'f', 4762, - 'n', 4779, - 'o', 4745, - 't', 4772, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + '+', 3914, + '-', 2994, + '.', 3335, + '0', 3415, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'N', 4005, + 'P', 3931, + 'T', 3931, + '[', 2924, + '_', 3938, + '`', 634, + 'd', 3948, + 'e', 3927, + 'f', 3947, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3969, + 'p', 3930, + 's', 3954, + 't', 3929, + 'u', 3984, + 'w', 3960, + '{', 3109, + 0xb5, 3984, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(279); + lookahead == ' ') SKIP(207); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4788); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3500); + lookahead == 'i') ADVANCE(4012); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3438); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4802); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4035); END_STATE(); - case 280: + case 220: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 4469, - ',', 3610, - '-', 4468, - '.', 4465, - '0', 3474, - 'N', 4521, - '[', 2983, - ']', 2984, - '_', 4488, - '`', 695, - 'e', 4458, - 'f', 4501, - 'n', 4518, - 'o', 4459, - 't', 4511, - '{', 3169, - '\t', 3611, - ' ', 3611, - 'I', 4527, - 'i', 4527, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 4267, + ',', 3548, + '-', 4266, + '.', 4263, + '0', 3412, + 'N', 4319, + '[', 2924, + ']', 2925, + '_', 4286, + '`', 634, + 'e', 4256, + 'f', 4299, + 'n', 4316, + 'o', 4257, + 't', 4309, + '{', 3109, + '\t', 3549, + ' ', 3549, + 'I', 4325, + 'i', 4325, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); END_STATE(); - case 281: + case 221: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 4566, - ',', 2987, - '-', 4565, - '.', 4558, - '0', 3428, - 'N', 4626, - '[', 2983, - ']', 2984, - '_', 4583, - '`', 695, - 'e', 4551, - 'f', 4596, - 'n', 4622, - 'o', 4552, - 't', 4613, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 4364, + ',', 2928, + '-', 4363, + '.', 4356, + '0', 3366, + 'N', 4424, + '[', 2924, + ']', 2925, + '_', 4381, + '`', 634, + 'e', 4349, + 'f', 4394, + 'n', 4420, + 'o', 4350, + 't', 4411, + '{', 3109, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(401); + lookahead == ' ') SKIP(342); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4633); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3443); + lookahead == 'i') ADVANCE(4431); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3381); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 282: + case 222: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 4566, - ',', 2987, - '-', 4565, - '.', 3384, - '0', 3428, - 'N', 4626, - '[', 2983, - ']', 2984, - '_', 4583, - '`', 695, - 'e', 4551, - 'f', 4596, - 'n', 4622, - 'o', 4552, - 't', 4613, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 4364, + ',', 2928, + '-', 4363, + '.', 3322, + '0', 3366, + 'N', 4424, + '[', 2924, + ']', 2925, + '_', 4381, + '`', 634, + 'e', 4349, + 'f', 4394, + 'n', 4420, + 'o', 4350, + 't', 4411, + '{', 3109, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(401); + lookahead == ' ') SKIP(342); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4633); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3443); + lookahead == 'i') ADVANCE(4431); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3381); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 283: + case 223: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 4566, - ',', 3610, - '-', 4565, - '.', 4558, - '0', 3428, - 'N', 4626, - '[', 2983, - ']', 2984, - '_', 4583, - '`', 695, - 'e', 4551, - 'f', 4596, - 'n', 4622, - 'o', 4552, - 't', 4613, - '{', 3169, - '\t', 3611, - ' ', 3611, - 'I', 4633, - 'i', 4633, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 4364, + ',', 3548, + '-', 4363, + '.', 4356, + '0', 3366, + 'N', 4424, + '[', 2924, + ']', 2925, + '_', 4381, + '`', 634, + 'e', 4349, + 'f', 4394, + 'n', 4420, + 'o', 4350, + 't', 4411, + '{', 3109, + '\t', 3549, + ' ', 3549, + 'I', 4431, + 'i', 4431, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3443); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3381); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 284: + case 224: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 4566, - ',', 3610, - '-', 4565, - '.', 3384, - '0', 3428, - 'N', 4626, - '[', 2983, - ']', 2984, - '_', 4583, - '`', 695, - 'e', 4551, - 'f', 4596, - 'n', 4622, - 'o', 4552, - 't', 4613, - '{', 3169, - '\t', 3611, - ' ', 3611, - 'I', 4633, - 'i', 4633, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 4364, + ',', 3548, + '-', 4363, + '.', 3322, + '0', 3366, + 'N', 4424, + '[', 2924, + ']', 2925, + '_', 4381, + '`', 634, + 'e', 4349, + 'f', 4394, + 'n', 4420, + 'o', 4350, + 't', 4411, + '{', 3109, + '\t', 3549, + ' ', 3549, + 'I', 4431, + 'i', 4431, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3443); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3381); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 285: + case 225: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 3623, - ',', 1943, - '-', 3049, - '.', 1200, - '0', 3431, - 'E', 1226, - 'I', 1386, - 'N', 1381, - '_', 1224, - '`', 695, - 'a', 1300, - 'b', 1335, - 'c', 1236, - 'd', 1264, - 'e', 1225, - 'f', 1233, - 'h', 1287, - 'i', 1214, - 'l', 1268, - 'm', 1229, - 'n', 1262, - 'o', 1373, - 'r', 1252, - 's', 1316, - 't', 1329, - 'u', 1346, - 'w', 1283, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 3561, + ',', 1884, + '-', 2989, + '.', 1141, + '0', 3369, + 'E', 1167, + 'I', 1327, + 'N', 1322, + '_', 1165, + '`', 634, + 'a', 1241, + 'b', 1276, + 'c', 1177, + 'd', 1205, + 'e', 1166, + 'f', 1174, + 'h', 1228, + 'i', 1155, + 'l', 1209, + 'm', 1170, + 'n', 1203, + 'o', 1314, + 'r', 1193, + 's', 1257, + 't', 1270, + 'u', 1287, + 'w', 1224, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(349); + lookahead == ' ') SKIP(289); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4835); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); + lookahead == '^') ADVANCE(4633); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3370); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); END_STATE(); - case 286: + case 226: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 3623, - ',', 1943, - '-', 3049, - '.', 1200, - '0', 3480, - 'E', 1226, - 'I', 1386, - 'N', 1381, - '_', 1219, - '`', 695, - 'a', 1300, - 'b', 1335, - 'c', 1236, - 'd', 1264, - 'e', 1225, - 'f', 1233, - 'h', 1287, - 'i', 1214, - 'l', 1268, - 'm', 1229, - 'n', 1262, - 'o', 1373, - 'r', 1252, - 's', 1316, - 't', 1329, - 'u', 1346, - 'w', 1283, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 3561, + ',', 1884, + '-', 2989, + '.', 1141, + '0', 3418, + 'E', 1167, + 'I', 1327, + 'N', 1322, + '_', 1160, + '`', 634, + 'a', 1241, + 'b', 1276, + 'c', 1177, + 'd', 1205, + 'e', 1166, + 'f', 1174, + 'h', 1228, + 'i', 1155, + 'l', 1209, + 'm', 1170, + 'n', 1203, + 'o', 1314, + 'r', 1193, + 's', 1257, + 't', 1270, + 'u', 1287, + 'w', 1224, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(349); + lookahead == ' ') SKIP(289); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4835); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + lookahead == '^') ADVANCE(4633); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); END_STATE(); - case 287: + case 227: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 3623, - ',', 1943, - '-', 3049, - '.', 1200, - '0', 3480, - 'I', 1386, - 'N', 1381, - '_', 1219, - '`', 695, - 'a', 1300, - 'b', 1335, - 'c', 1236, - 'd', 1264, - 'e', 1305, - 'f', 1233, - 'h', 1287, - 'i', 1214, - 'l', 1268, - 'm', 1229, - 'n', 1262, - 'o', 1373, - 'r', 1252, - 's', 1316, - 't', 1329, - 'u', 1346, - 'w', 1283, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 3561, + ',', 1884, + '-', 2989, + '.', 1141, + '0', 3418, + 'I', 1327, + 'N', 1322, + '_', 1160, + '`', 634, + 'a', 1241, + 'b', 1276, + 'c', 1177, + 'd', 1205, + 'e', 1246, + 'f', 1174, + 'h', 1228, + 'i', 1155, + 'l', 1209, + 'm', 1170, + 'n', 1203, + 'o', 1314, + 'r', 1193, + 's', 1257, + 't', 1270, + 'u', 1287, + 'w', 1224, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(349); + lookahead == ' ') SKIP(289); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4835); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + lookahead == '^') ADVANCE(4633); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); END_STATE(); - case 288: + case 228: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 3623, - ',', 1943, - '-', 3049, - '.', 3402, - '0', 3480, - 'B', 3524, - 'E', 1208, - 'G', 1213, - 'I', 1386, - 'K', 1213, - 'M', 1213, - 'N', 1381, - 'P', 1213, - 'T', 1213, - '_', 1219, - '`', 695, - 'a', 1300, - 'b', 3525, - 'c', 1236, - 'd', 1234, - 'e', 1207, - 'f', 1233, - 'g', 1212, - 'h', 1286, - 'i', 1214, - 'k', 1212, - 'l', 1268, - 'm', 1209, - 'n', 1261, - 'o', 1373, - 'p', 1212, - 'r', 1252, - 's', 1265, - 't', 1211, - 'u', 1345, - 'w', 1282, - '}', 3170, - 0xb5, 1344, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 3561, + ',', 1884, + '-', 2989, + '.', 3340, + '0', 3418, + 'B', 3462, + 'E', 1149, + 'G', 1154, + 'I', 1327, + 'K', 1154, + 'M', 1154, + 'N', 1322, + 'P', 1154, + 'T', 1154, + '_', 1160, + '`', 634, + 'a', 1241, + 'b', 3463, + 'c', 1177, + 'd', 1175, + 'e', 1148, + 'f', 1174, + 'g', 1153, + 'h', 1227, + 'i', 1155, + 'k', 1153, + 'l', 1209, + 'm', 1150, + 'n', 1202, + 'o', 1314, + 'p', 1153, + 'r', 1193, + 's', 1206, + 't', 1152, + 'u', 1286, + 'w', 1223, + '}', 3110, + 0xb5, 1285, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(349); + lookahead == ' ') SKIP(289); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4835); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + lookahead == '^') ADVANCE(4633); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); END_STATE(); - case 289: + case 229: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 3623, - ',', 1943, - '-', 3049, - '.', 3402, - '0', 3480, - 'E', 1226, - 'I', 1386, - 'N', 1381, - '_', 1219, - '`', 695, - 'a', 1300, - 'b', 1335, - 'c', 1236, - 'd', 1264, - 'e', 1225, - 'f', 1233, - 'h', 1287, - 'i', 1214, - 'l', 1268, - 'm', 1229, - 'n', 1262, - 'o', 1373, - 'r', 1252, - 's', 1316, - 't', 1329, - 'u', 1346, - 'w', 1283, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 3561, + ',', 1884, + '-', 2989, + '.', 3340, + '0', 3418, + 'E', 1167, + 'I', 1327, + 'N', 1322, + '_', 1160, + '`', 634, + 'a', 1241, + 'b', 1276, + 'c', 1177, + 'd', 1205, + 'e', 1166, + 'f', 1174, + 'h', 1228, + 'i', 1155, + 'l', 1209, + 'm', 1170, + 'n', 1203, + 'o', 1314, + 'r', 1193, + 's', 1257, + 't', 1270, + 'u', 1287, + 'w', 1224, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(349); + lookahead == ' ') SKIP(289); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4835); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + lookahead == '^') ADVANCE(4633); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); END_STATE(); - case 290: + case 230: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 3623, - ',', 1943, - '-', 3049, - '.', 3391, - '0', 3480, - 'E', 1226, - 'I', 1386, - 'N', 1381, - '_', 1219, - '`', 695, - 'a', 1300, - 'b', 1335, - 'c', 1236, - 'd', 1264, - 'e', 1225, - 'f', 1233, - 'h', 1287, - 'i', 1214, - 'l', 1268, - 'm', 1229, - 'n', 1262, - 'o', 1373, - 'r', 1252, - 's', 1316, - 't', 1329, - 'u', 1346, - 'w', 1283, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 3561, + ',', 1884, + '-', 2989, + '.', 1143, + '0', 3369, + 'B', 3462, + 'E', 1149, + 'G', 1154, + 'I', 1327, + 'K', 1154, + 'M', 1154, + 'N', 1322, + 'P', 1154, + 'T', 1154, + '_', 1165, + '`', 634, + 'a', 1241, + 'b', 3463, + 'c', 1177, + 'd', 1175, + 'e', 1148, + 'f', 1174, + 'g', 1153, + 'h', 1227, + 'i', 1155, + 'k', 1153, + 'l', 1209, + 'm', 1150, + 'n', 1202, + 'o', 1314, + 'p', 1153, + 'r', 1193, + 's', 1206, + 't', 1152, + 'u', 1286, + 'w', 1223, + '}', 3110, + 0xb5, 1285, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(349); + lookahead == ' ') SKIP(289); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4835); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + lookahead == '^') ADVANCE(4633); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3370); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); END_STATE(); - case 291: + case 231: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 3623, - ',', 1943, - '-', 3049, - '.', 1202, - '0', 3431, - 'B', 3524, - 'E', 1208, - 'G', 1213, - 'I', 1386, - 'K', 1213, - 'M', 1213, - 'N', 1381, - 'P', 1213, - 'T', 1213, - '_', 1224, - '`', 695, - 'a', 1300, - 'b', 3525, - 'c', 1236, - 'd', 1234, - 'e', 1207, - 'f', 1233, - 'g', 1212, - 'h', 1286, - 'i', 1214, - 'k', 1212, - 'l', 1268, - 'm', 1209, - 'n', 1261, - 'o', 1373, - 'p', 1212, - 'r', 1252, - 's', 1265, - 't', 1211, - 'u', 1345, - 'w', 1282, - '}', 3170, - 0xb5, 1344, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 3561, + ',', 1884, + '-', 2989, + '.', 1143, + '0', 3369, + 'E', 1167, + 'I', 1327, + 'N', 1322, + '_', 1165, + '`', 634, + 'a', 1241, + 'b', 1276, + 'c', 1177, + 'd', 1205, + 'e', 1166, + 'f', 1174, + 'h', 1228, + 'i', 1155, + 'l', 1209, + 'm', 1170, + 'n', 1203, + 'o', 1314, + 'r', 1193, + 's', 1257, + 't', 1270, + 'u', 1287, + 'w', 1224, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(349); + lookahead == ' ') SKIP(289); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4835); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); + lookahead == '^') ADVANCE(4633); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3370); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); END_STATE(); - case 292: + case 232: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 3623, - ',', 1943, - '-', 3049, - '.', 1202, - '0', 3431, - 'E', 1226, - 'I', 1386, - 'N', 1381, - '_', 1224, - '`', 695, - 'a', 1300, - 'b', 1335, - 'c', 1236, - 'd', 1264, - 'e', 1225, - 'f', 1233, - 'h', 1287, - 'i', 1214, - 'l', 1268, - 'm', 1229, - 'n', 1262, - 'o', 1373, - 'r', 1252, - 's', 1316, - 't', 1329, - 'u', 1346, - 'w', 1283, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 3561, + ',', 1884, + '-', 2989, + '.', 1143, + '0', 3418, + 'B', 3462, + 'E', 1149, + 'G', 1154, + 'I', 1327, + 'K', 1154, + 'M', 1154, + 'N', 1322, + 'P', 1154, + 'T', 1154, + '_', 1160, + '`', 634, + 'a', 1241, + 'b', 3463, + 'c', 1177, + 'd', 1175, + 'e', 1148, + 'f', 1174, + 'g', 1153, + 'h', 1227, + 'i', 1155, + 'k', 1153, + 'l', 1209, + 'm', 1150, + 'n', 1202, + 'o', 1314, + 'p', 1153, + 'r', 1193, + 's', 1206, + 't', 1152, + 'u', 1286, + 'w', 1223, + '}', 3110, + 0xb5, 1285, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(349); + lookahead == ' ') SKIP(289); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4835); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); + lookahead == '^') ADVANCE(4633); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); END_STATE(); - case 293: + case 233: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 3623, - ',', 1943, - '-', 3049, - '.', 1202, - '0', 3480, - 'B', 3524, - 'E', 1208, - 'G', 1213, - 'I', 1386, - 'K', 1213, - 'M', 1213, - 'N', 1381, - 'P', 1213, - 'T', 1213, - '_', 1219, - '`', 695, - 'a', 1300, - 'b', 3525, - 'c', 1236, - 'd', 1234, - 'e', 1207, - 'f', 1233, - 'g', 1212, - 'h', 1286, - 'i', 1214, - 'k', 1212, - 'l', 1268, - 'm', 1209, - 'n', 1261, - 'o', 1373, - 'p', 1212, - 'r', 1252, - 's', 1265, - 't', 1211, - 'u', 1345, - 'w', 1282, - '}', 3170, - 0xb5, 1344, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 3561, + ',', 1884, + '-', 2989, + '.', 1143, + '0', 3418, + 'B', 3462, + 'E', 1154, + 'G', 1154, + 'I', 1327, + 'K', 1154, + 'M', 1154, + 'N', 1322, + 'P', 1154, + 'T', 1154, + '_', 1160, + '`', 634, + 'a', 1241, + 'b', 3463, + 'c', 1177, + 'd', 1175, + 'e', 1151, + 'f', 1174, + 'g', 1153, + 'h', 1227, + 'i', 1155, + 'k', 1153, + 'l', 1209, + 'm', 1150, + 'n', 1202, + 'o', 1314, + 'p', 1153, + 'r', 1193, + 's', 1206, + 't', 1152, + 'u', 1286, + 'w', 1223, + '}', 3110, + 0xb5, 1285, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(349); + lookahead == ' ') SKIP(289); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4835); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + lookahead == '^') ADVANCE(4633); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); END_STATE(); - case 294: + case 234: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 3623, - ',', 1943, - '-', 3049, - '.', 1202, - '0', 3480, - 'B', 3524, - 'E', 1213, - 'G', 1213, - 'I', 1386, - 'K', 1213, - 'M', 1213, - 'N', 1381, - 'P', 1213, - 'T', 1213, - '_', 1219, - '`', 695, - 'a', 1300, - 'b', 3525, - 'c', 1236, - 'd', 1234, - 'e', 1210, - 'f', 1233, - 'g', 1212, - 'h', 1286, - 'i', 1214, - 'k', 1212, - 'l', 1268, - 'm', 1209, - 'n', 1261, - 'o', 1373, - 'p', 1212, - 'r', 1252, - 's', 1265, - 't', 1211, - 'u', 1345, - 'w', 1282, - '}', 3170, - 0xb5, 1344, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 3561, + ',', 1884, + '-', 2989, + '.', 1143, + '0', 3418, + 'E', 1167, + 'I', 1327, + 'N', 1322, + '_', 1160, + '`', 634, + 'a', 1241, + 'b', 1276, + 'c', 1177, + 'd', 1205, + 'e', 1166, + 'f', 1174, + 'h', 1228, + 'i', 1155, + 'l', 1209, + 'm', 1170, + 'n', 1203, + 'o', 1314, + 'r', 1193, + 's', 1257, + 't', 1270, + 'u', 1287, + 'w', 1224, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(349); + lookahead == ' ') SKIP(289); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4835); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + lookahead == '^') ADVANCE(4633); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); END_STATE(); - case 295: + case 235: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 3623, - ',', 1943, - '-', 3049, - '.', 1202, - '0', 3480, - 'E', 1226, - 'I', 1386, - 'N', 1381, - '_', 1219, - '`', 695, - 'a', 1300, - 'b', 1335, - 'c', 1236, - 'd', 1264, - 'e', 1225, - 'f', 1233, - 'h', 1287, - 'i', 1214, - 'l', 1268, - 'm', 1229, - 'n', 1262, - 'o', 1373, - 'r', 1252, - 's', 1316, - 't', 1329, - 'u', 1346, - 'w', 1283, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 3561, + ',', 1884, + '-', 2989, + '.', 1143, + '0', 3418, + 'I', 1327, + 'N', 1322, + '_', 1160, + '`', 634, + 'a', 1241, + 'b', 1276, + 'c', 1177, + 'd', 1205, + 'e', 1246, + 'f', 1174, + 'h', 1228, + 'i', 1155, + 'l', 1209, + 'm', 1170, + 'n', 1203, + 'o', 1314, + 'r', 1193, + 's', 1257, + 't', 1270, + 'u', 1287, + 'w', 1224, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(349); + lookahead == ' ') SKIP(289); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4835); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + lookahead == '^') ADVANCE(4633); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); END_STATE(); - case 296: + case 236: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 3623, - ',', 1943, - '-', 3049, - '.', 1202, - '0', 3480, - 'I', 1386, - 'N', 1381, - '_', 1219, - '`', 695, - 'a', 1300, - 'b', 1335, - 'c', 1236, - 'd', 1264, - 'e', 1305, - 'f', 1233, - 'h', 1287, - 'i', 1214, - 'l', 1268, - 'm', 1229, - 'n', 1262, - 'o', 1373, - 'r', 1252, - 's', 1316, - 't', 1329, - 'u', 1346, - 'w', 1283, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 3561, + ',', 1884, + '-', 2989, + '.', 3329, + '0', 3418, + 'E', 1167, + 'I', 1327, + 'N', 1322, + '_', 1160, + '`', 634, + 'a', 1241, + 'b', 1276, + 'c', 1177, + 'd', 1205, + 'e', 1166, + 'f', 1174, + 'h', 1228, + 'i', 1155, + 'l', 1209, + 'm', 1170, + 'n', 1203, + 'o', 1314, + 'r', 1193, + 's', 1257, + 't', 1270, + 'u', 1287, + 'w', 1224, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(349); + lookahead == ' ') SKIP(289); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4835); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + lookahead == '^') ADVANCE(4633); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); END_STATE(); - case 297: + case 237: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 3623, - ',', 3610, - '-', 3049, - '.', 1200, - '0', 3431, - 'E', 1226, - 'I', 1386, - 'N', 1381, - '_', 1224, - '`', 695, - 'a', 1300, - 'b', 1335, - 'c', 1236, - 'd', 1264, - 'e', 1225, - 'f', 1233, - 'h', 1287, - 'i', 1214, - 'l', 1268, - 'm', 1229, - 'n', 1262, - 'o', 1373, - 'r', 1252, - 's', 1316, - 't', 1329, - 'u', 1346, - 'w', 1283, - '}', 3170, - '\t', 3611, - ' ', 3611, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 3561, + ',', 3548, + '-', 2989, + '.', 1141, + '0', 3369, + 'E', 1167, + 'I', 1327, + 'N', 1322, + '_', 1165, + '`', 634, + 'a', 1241, + 'b', 1276, + 'c', 1177, + 'd', 1205, + 'e', 1166, + 'f', 1174, + 'h', 1228, + 'i', 1155, + 'l', 1209, + 'm', 1170, + 'n', 1203, + 'o', 1314, + 'r', 1193, + 's', 1257, + 't', 1270, + 'u', 1287, + 'w', 1224, + '}', 3110, + '\t', 3549, + ' ', 3549, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4835); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); + lookahead == '^') ADVANCE(4633); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3370); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); END_STATE(); - case 298: + case 238: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 3623, - ',', 3610, - '-', 3049, - '.', 1200, - '0', 3480, - 'E', 1226, - 'I', 1386, - 'N', 1381, - '_', 1219, - '`', 695, - 'a', 1300, - 'b', 1335, - 'c', 1236, - 'd', 1264, - 'e', 1225, - 'f', 1233, - 'h', 1287, - 'i', 1214, - 'l', 1268, - 'm', 1229, - 'n', 1262, - 'o', 1373, - 'r', 1252, - 's', 1316, - 't', 1329, - 'u', 1346, - 'w', 1283, - '}', 3170, - '\t', 3611, - ' ', 3611, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 3561, + ',', 3548, + '-', 2989, + '.', 1141, + '0', 3418, + 'E', 1167, + 'I', 1327, + 'N', 1322, + '_', 1160, + '`', 634, + 'a', 1241, + 'b', 1276, + 'c', 1177, + 'd', 1205, + 'e', 1166, + 'f', 1174, + 'h', 1228, + 'i', 1155, + 'l', 1209, + 'm', 1170, + 'n', 1203, + 'o', 1314, + 'r', 1193, + 's', 1257, + 't', 1270, + 'u', 1287, + 'w', 1224, + '}', 3110, + '\t', 3549, + ' ', 3549, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4835); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + lookahead == '^') ADVANCE(4633); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); END_STATE(); - case 299: + case 239: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 3623, - ',', 3610, - '-', 3049, - '.', 1200, - '0', 3480, - 'I', 1386, - 'N', 1381, - '_', 1219, - '`', 695, - 'a', 1300, - 'b', 1335, - 'c', 1236, - 'd', 1264, - 'e', 1305, - 'f', 1233, - 'h', 1287, - 'i', 1214, - 'l', 1268, - 'm', 1229, - 'n', 1262, - 'o', 1373, - 'r', 1252, - 's', 1316, - 't', 1329, - 'u', 1346, - 'w', 1283, - '}', 3170, - '\t', 3611, - ' ', 3611, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 3561, + ',', 3548, + '-', 2989, + '.', 1141, + '0', 3418, + 'I', 1327, + 'N', 1322, + '_', 1160, + '`', 634, + 'a', 1241, + 'b', 1276, + 'c', 1177, + 'd', 1205, + 'e', 1246, + 'f', 1174, + 'h', 1228, + 'i', 1155, + 'l', 1209, + 'm', 1170, + 'n', 1203, + 'o', 1314, + 'r', 1193, + 's', 1257, + 't', 1270, + 'u', 1287, + 'w', 1224, + '}', 3110, + '\t', 3549, + ' ', 3549, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4835); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + lookahead == '^') ADVANCE(4633); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); END_STATE(); - case 300: + case 240: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 3623, - ',', 3610, - '-', 3049, - '.', 3402, - '0', 3480, - 'B', 3524, - 'E', 1208, - 'G', 1213, - 'I', 1386, - 'K', 1213, - 'M', 1213, - 'N', 1381, - 'P', 1213, - 'T', 1213, - '_', 1219, - '`', 695, - 'a', 1300, - 'b', 3525, - 'c', 1236, - 'd', 1234, - 'e', 1207, - 'f', 1233, - 'g', 1212, - 'h', 1286, - 'i', 1214, - 'k', 1212, - 'l', 1268, - 'm', 1209, - 'n', 1261, - 'o', 1373, - 'p', 1212, - 'r', 1252, - 's', 1265, - 't', 1211, - 'u', 1345, - 'w', 1282, - '}', 3170, - 0xb5, 1344, - '\t', 3611, - ' ', 3611, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 3561, + ',', 3548, + '-', 2989, + '.', 3340, + '0', 3418, + 'B', 3462, + 'E', 1149, + 'G', 1154, + 'I', 1327, + 'K', 1154, + 'M', 1154, + 'N', 1322, + 'P', 1154, + 'T', 1154, + '_', 1160, + '`', 634, + 'a', 1241, + 'b', 3463, + 'c', 1177, + 'd', 1175, + 'e', 1148, + 'f', 1174, + 'g', 1153, + 'h', 1227, + 'i', 1155, + 'k', 1153, + 'l', 1209, + 'm', 1150, + 'n', 1202, + 'o', 1314, + 'p', 1153, + 'r', 1193, + 's', 1206, + 't', 1152, + 'u', 1286, + 'w', 1223, + '}', 3110, + 0xb5, 1285, + '\t', 3549, + ' ', 3549, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4835); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + lookahead == '^') ADVANCE(4633); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); END_STATE(); - case 301: + case 241: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 3623, - ',', 3610, - '-', 3049, - '.', 3402, - '0', 3480, - 'E', 1226, - 'I', 1386, - 'N', 1381, - '_', 1219, - '`', 695, - 'a', 1300, - 'b', 1335, - 'c', 1236, - 'd', 1264, - 'e', 1225, - 'f', 1233, - 'h', 1287, - 'i', 1214, - 'l', 1268, - 'm', 1229, - 'n', 1262, - 'o', 1373, - 'r', 1252, - 's', 1316, - 't', 1329, - 'u', 1346, - 'w', 1283, - '}', 3170, - '\t', 3611, - ' ', 3611, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 3561, + ',', 3548, + '-', 2989, + '.', 3340, + '0', 3418, + 'E', 1167, + 'I', 1327, + 'N', 1322, + '_', 1160, + '`', 634, + 'a', 1241, + 'b', 1276, + 'c', 1177, + 'd', 1205, + 'e', 1166, + 'f', 1174, + 'h', 1228, + 'i', 1155, + 'l', 1209, + 'm', 1170, + 'n', 1203, + 'o', 1314, + 'r', 1193, + 's', 1257, + 't', 1270, + 'u', 1287, + 'w', 1224, + '}', 3110, + '\t', 3549, + ' ', 3549, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4835); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + lookahead == '^') ADVANCE(4633); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); END_STATE(); - case 302: + case 242: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 3623, - ',', 3610, - '-', 3049, - '.', 3391, - '0', 3480, - 'E', 1226, - 'I', 1386, - 'N', 1381, - '_', 1219, - '`', 695, - 'a', 1300, - 'b', 1335, - 'c', 1236, - 'd', 1264, - 'e', 1225, - 'f', 1233, - 'h', 1287, - 'i', 1214, - 'l', 1268, - 'm', 1229, - 'n', 1262, - 'o', 1373, - 'r', 1252, - 's', 1316, - 't', 1329, - 'u', 1346, - 'w', 1283, - '}', 3170, - '\t', 3611, - ' ', 3611, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 3561, + ',', 3548, + '-', 2989, + '.', 1143, + '0', 3369, + 'B', 3462, + 'E', 1149, + 'G', 1154, + 'I', 1327, + 'K', 1154, + 'M', 1154, + 'N', 1322, + 'P', 1154, + 'T', 1154, + '_', 1165, + '`', 634, + 'a', 1241, + 'b', 3463, + 'c', 1177, + 'd', 1175, + 'e', 1148, + 'f', 1174, + 'g', 1153, + 'h', 1227, + 'i', 1155, + 'k', 1153, + 'l', 1209, + 'm', 1150, + 'n', 1202, + 'o', 1314, + 'p', 1153, + 'r', 1193, + 's', 1206, + 't', 1152, + 'u', 1286, + 'w', 1223, + '}', 3110, + 0xb5, 1285, + '\t', 3549, + ' ', 3549, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4835); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + lookahead == '^') ADVANCE(4633); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3370); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); END_STATE(); - case 303: + case 243: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 3623, - ',', 3610, - '-', 3049, - '.', 1202, - '0', 3431, - 'B', 3524, - 'E', 1208, - 'G', 1213, - 'I', 1386, - 'K', 1213, - 'M', 1213, - 'N', 1381, - 'P', 1213, - 'T', 1213, - '_', 1224, - '`', 695, - 'a', 1300, - 'b', 3525, - 'c', 1236, - 'd', 1234, - 'e', 1207, - 'f', 1233, - 'g', 1212, - 'h', 1286, - 'i', 1214, - 'k', 1212, - 'l', 1268, - 'm', 1209, - 'n', 1261, - 'o', 1373, - 'p', 1212, - 'r', 1252, - 's', 1265, - 't', 1211, - 'u', 1345, - 'w', 1282, - '}', 3170, - 0xb5, 1344, - '\t', 3611, - ' ', 3611, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 3561, + ',', 3548, + '-', 2989, + '.', 1143, + '0', 3369, + 'E', 1167, + 'I', 1327, + 'N', 1322, + '_', 1165, + '`', 634, + 'a', 1241, + 'b', 1276, + 'c', 1177, + 'd', 1205, + 'e', 1166, + 'f', 1174, + 'h', 1228, + 'i', 1155, + 'l', 1209, + 'm', 1170, + 'n', 1203, + 'o', 1314, + 'r', 1193, + 's', 1257, + 't', 1270, + 'u', 1287, + 'w', 1224, + '}', 3110, + '\t', 3549, + ' ', 3549, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4835); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); + lookahead == '^') ADVANCE(4633); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3370); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); END_STATE(); - case 304: + case 244: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 3623, - ',', 3610, - '-', 3049, - '.', 1202, - '0', 3431, - 'E', 1226, - 'I', 1386, - 'N', 1381, - '_', 1224, - '`', 695, - 'a', 1300, - 'b', 1335, - 'c', 1236, - 'd', 1264, - 'e', 1225, - 'f', 1233, - 'h', 1287, - 'i', 1214, - 'l', 1268, - 'm', 1229, - 'n', 1262, - 'o', 1373, - 'r', 1252, - 's', 1316, - 't', 1329, - 'u', 1346, - 'w', 1283, - '}', 3170, - '\t', 3611, - ' ', 3611, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 3561, + ',', 3548, + '-', 2989, + '.', 1143, + '0', 3418, + 'B', 3462, + 'E', 1149, + 'G', 1154, + 'I', 1327, + 'K', 1154, + 'M', 1154, + 'N', 1322, + 'P', 1154, + 'T', 1154, + '_', 1160, + '`', 634, + 'a', 1241, + 'b', 3463, + 'c', 1177, + 'd', 1175, + 'e', 1148, + 'f', 1174, + 'g', 1153, + 'h', 1227, + 'i', 1155, + 'k', 1153, + 'l', 1209, + 'm', 1150, + 'n', 1202, + 'o', 1314, + 'p', 1153, + 'r', 1193, + 's', 1206, + 't', 1152, + 'u', 1286, + 'w', 1223, + '}', 3110, + 0xb5, 1285, + '\t', 3549, + ' ', 3549, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4835); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); + lookahead == '^') ADVANCE(4633); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); END_STATE(); - case 305: + case 245: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 3623, - ',', 3610, - '-', 3049, - '.', 1202, - '0', 3480, - 'B', 3524, - 'E', 1208, - 'G', 1213, - 'I', 1386, - 'K', 1213, - 'M', 1213, - 'N', 1381, - 'P', 1213, - 'T', 1213, - '_', 1219, - '`', 695, - 'a', 1300, - 'b', 3525, - 'c', 1236, - 'd', 1234, - 'e', 1207, - 'f', 1233, - 'g', 1212, - 'h', 1286, - 'i', 1214, - 'k', 1212, - 'l', 1268, - 'm', 1209, - 'n', 1261, - 'o', 1373, - 'p', 1212, - 'r', 1252, - 's', 1265, - 't', 1211, - 'u', 1345, - 'w', 1282, - '}', 3170, - 0xb5, 1344, - '\t', 3611, - ' ', 3611, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 3561, + ',', 3548, + '-', 2989, + '.', 1143, + '0', 3418, + 'B', 3462, + 'E', 1154, + 'G', 1154, + 'I', 1327, + 'K', 1154, + 'M', 1154, + 'N', 1322, + 'P', 1154, + 'T', 1154, + '_', 1160, + '`', 634, + 'a', 1241, + 'b', 3463, + 'c', 1177, + 'd', 1175, + 'e', 1151, + 'f', 1174, + 'g', 1153, + 'h', 1227, + 'i', 1155, + 'k', 1153, + 'l', 1209, + 'm', 1150, + 'n', 1202, + 'o', 1314, + 'p', 1153, + 'r', 1193, + 's', 1206, + 't', 1152, + 'u', 1286, + 'w', 1223, + '}', 3110, + 0xb5, 1285, + '\t', 3549, + ' ', 3549, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4835); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + lookahead == '^') ADVANCE(4633); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); END_STATE(); - case 306: + case 246: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 3623, - ',', 3610, - '-', 3049, - '.', 1202, - '0', 3480, - 'B', 3524, - 'E', 1213, - 'G', 1213, - 'I', 1386, - 'K', 1213, - 'M', 1213, - 'N', 1381, - 'P', 1213, - 'T', 1213, - '_', 1219, - '`', 695, - 'a', 1300, - 'b', 3525, - 'c', 1236, - 'd', 1234, - 'e', 1210, - 'f', 1233, - 'g', 1212, - 'h', 1286, - 'i', 1214, - 'k', 1212, - 'l', 1268, - 'm', 1209, - 'n', 1261, - 'o', 1373, - 'p', 1212, - 'r', 1252, - 's', 1265, - 't', 1211, - 'u', 1345, - 'w', 1282, - '}', 3170, - 0xb5, 1344, - '\t', 3611, - ' ', 3611, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 3561, + ',', 3548, + '-', 2989, + '.', 1143, + '0', 3418, + 'E', 1167, + 'I', 1327, + 'N', 1322, + '_', 1160, + '`', 634, + 'a', 1241, + 'b', 1276, + 'c', 1177, + 'd', 1205, + 'e', 1166, + 'f', 1174, + 'h', 1228, + 'i', 1155, + 'l', 1209, + 'm', 1170, + 'n', 1203, + 'o', 1314, + 'r', 1193, + 's', 1257, + 't', 1270, + 'u', 1287, + 'w', 1224, + '}', 3110, + '\t', 3549, + ' ', 3549, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4835); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + lookahead == '^') ADVANCE(4633); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); END_STATE(); - case 307: + case 247: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 3623, - ',', 3610, - '-', 3049, - '.', 1202, - '0', 3480, - 'E', 1226, - 'I', 1386, - 'N', 1381, - '_', 1219, - '`', 695, - 'a', 1300, - 'b', 1335, - 'c', 1236, - 'd', 1264, - 'e', 1225, - 'f', 1233, - 'h', 1287, - 'i', 1214, - 'l', 1268, - 'm', 1229, - 'n', 1262, - 'o', 1373, - 'r', 1252, - 's', 1316, - 't', 1329, - 'u', 1346, - 'w', 1283, - '}', 3170, - '\t', 3611, - ' ', 3611, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 3561, + ',', 3548, + '-', 2989, + '.', 1143, + '0', 3418, + 'I', 1327, + 'N', 1322, + '_', 1160, + '`', 634, + 'a', 1241, + 'b', 1276, + 'c', 1177, + 'd', 1205, + 'e', 1246, + 'f', 1174, + 'h', 1228, + 'i', 1155, + 'l', 1209, + 'm', 1170, + 'n', 1203, + 'o', 1314, + 'r', 1193, + 's', 1257, + 't', 1270, + 'u', 1287, + 'w', 1224, + '}', 3110, + '\t', 3549, + ' ', 3549, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4835); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + lookahead == '^') ADVANCE(4633); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); END_STATE(); - case 308: + case 248: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 3623, - ',', 3610, - '-', 3049, - '.', 1202, - '0', 3480, - 'I', 1386, - 'N', 1381, - '_', 1219, - '`', 695, - 'a', 1300, - 'b', 1335, - 'c', 1236, - 'd', 1264, - 'e', 1305, - 'f', 1233, - 'h', 1287, - 'i', 1214, - 'l', 1268, - 'm', 1229, - 'n', 1262, - 'o', 1373, - 'r', 1252, - 's', 1316, - 't', 1329, - 'u', 1346, - 'w', 1283, - '}', 3170, - '\t', 3611, - ' ', 3611, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 3561, + ',', 3548, + '-', 2989, + '.', 3329, + '0', 3418, + 'E', 1167, + 'I', 1327, + 'N', 1322, + '_', 1160, + '`', 634, + 'a', 1241, + 'b', 1276, + 'c', 1177, + 'd', 1205, + 'e', 1166, + 'f', 1174, + 'h', 1228, + 'i', 1155, + 'l', 1209, + 'm', 1170, + 'n', 1203, + 'o', 1314, + 'r', 1193, + 's', 1257, + 't', 1270, + 'u', 1287, + 'w', 1224, + '}', 3110, + '\t', 3549, + ' ', 3549, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4835); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + lookahead == '^') ADVANCE(4633); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); END_STATE(); - case 309: + case 249: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 4569, - ',', 3610, - '-', 4568, - '.', 4560, - '0', 3428, - 'E', 4578, - 'G', 4581, - 'K', 4581, - 'M', 4581, - 'N', 4626, - 'P', 4581, - 'T', 4581, - '[', 2983, - ']', 2984, - '_', 4583, - '`', 695, - 'd', 4597, - 'e', 4553, - 'f', 4596, - 'g', 4580, - 'h', 4612, - 'k', 4580, - 'm', 4582, - 'n', 4617, - 'o', 4552, - 'p', 4580, - 's', 4602, - 't', 4579, - 'u', 4618, - 'w', 4605, - '{', 3169, - 0xb5, 4618, - '\t', 3611, - ' ', 3611, - 'B', 3524, - 'b', 3524, - 'I', 4633, - 'i', 4633, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 4367, + ',', 3548, + '-', 4366, + '.', 4358, + '0', 3366, + 'E', 4376, + 'G', 4379, + 'K', 4379, + 'M', 4379, + 'N', 4424, + 'P', 4379, + 'T', 4379, + '[', 2924, + ']', 2925, + '_', 4381, + '`', 634, + 'd', 4395, + 'e', 4351, + 'f', 4394, + 'g', 4378, + 'h', 4410, + 'k', 4378, + 'm', 4380, + 'n', 4415, + 'o', 4350, + 'p', 4378, + 's', 4400, + 't', 4377, + 'u', 4416, + 'w', 4403, + '{', 3109, + 0xb5, 4416, + '\t', 3549, + ' ', 3549, + 'B', 3462, + 'b', 3462, + 'I', 4431, + 'i', 4431, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3443); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3381); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 310: + case 250: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 4569, - ',', 3610, - '-', 4568, - '.', 4560, - '0', 3428, - 'E', 4592, - 'N', 4626, - '[', 2983, - ']', 2984, - '_', 4583, - '`', 695, - 'e', 4554, - 'f', 4596, - 'n', 4622, - 'o', 4552, - 't', 4613, - '{', 3169, - '\t', 3611, - ' ', 3611, - 'I', 4633, - 'i', 4633, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 4367, + ',', 3548, + '-', 4366, + '.', 4358, + '0', 3366, + 'E', 4389, + 'N', 4424, + '[', 2924, + ']', 2925, + '_', 4381, + '`', 634, + 'e', 4352, + 'f', 4394, + 'n', 4420, + 'o', 4350, + 't', 4411, + '{', 3109, + '\t', 3549, + ' ', 3549, + 'I', 4431, + 'i', 4431, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3443); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3381); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 311: + case 251: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 4569, - ',', 3610, - '-', 4568, - '.', 4560, - '0', 3478, - 'E', 4578, - 'G', 4581, - 'K', 4581, - 'M', 4581, - 'N', 4626, - 'P', 4581, - 'T', 4581, - '[', 2983, - ']', 2984, - '_', 4588, - '`', 695, - 'd', 4597, - 'e', 4553, - 'f', 4596, - 'g', 4580, - 'h', 4612, - 'k', 4580, - 'm', 4582, - 'n', 4617, - 'o', 4552, - 'p', 4580, - 's', 4602, - 't', 4579, - 'u', 4618, - 'w', 4605, - '{', 3169, - 0xb5, 4618, - '\t', 3611, - ' ', 3611, - 'B', 3524, - 'b', 3524, - 'I', 4633, - 'i', 4633, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 4367, + ',', 3548, + '-', 4366, + '.', 4358, + '0', 3416, + 'E', 4376, + 'G', 4379, + 'K', 4379, + 'M', 4379, + 'N', 4424, + 'P', 4379, + 'T', 4379, + '[', 2924, + ']', 2925, + '_', 4393, + '`', 634, + 'd', 4395, + 'e', 4351, + 'f', 4394, + 'g', 4378, + 'h', 4410, + 'k', 4378, + 'm', 4380, + 'n', 4415, + 'o', 4350, + 'p', 4378, + 's', 4400, + 't', 4377, + 'u', 4416, + 'w', 4403, + '{', 3109, + 0xb5, 4416, + '\t', 3549, + ' ', 3549, + 'B', 3462, + 'b', 3462, + 'I', 4431, + 'i', 4431, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3501); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3439); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 312: + case 252: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 4569, - ',', 3610, - '-', 4568, - '.', 4560, - '0', 3478, - 'E', 4581, - 'G', 4581, - 'K', 4581, - 'M', 4581, - 'N', 4626, - 'P', 4581, - 'T', 4581, - '[', 2983, - ']', 2984, - '_', 4588, - '`', 695, - 'd', 4597, - 'e', 4550, - 'f', 4596, - 'g', 4580, - 'h', 4612, - 'k', 4580, - 'm', 4582, - 'n', 4617, - 'o', 4552, - 'p', 4580, - 's', 4602, - 't', 4579, - 'u', 4618, - 'w', 4605, - '{', 3169, - 0xb5, 4618, - '\t', 3611, - ' ', 3611, - 'B', 3524, - 'b', 3524, - 'I', 4633, - 'i', 4633, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 4367, + ',', 3548, + '-', 4366, + '.', 4358, + '0', 3416, + 'E', 4379, + 'G', 4379, + 'K', 4379, + 'M', 4379, + 'N', 4424, + 'P', 4379, + 'T', 4379, + '[', 2924, + ']', 2925, + '_', 4393, + '`', 634, + 'd', 4395, + 'e', 4348, + 'f', 4394, + 'g', 4378, + 'h', 4410, + 'k', 4378, + 'm', 4380, + 'n', 4415, + 'o', 4350, + 'p', 4378, + 's', 4400, + 't', 4377, + 'u', 4416, + 'w', 4403, + '{', 3109, + 0xb5, 4416, + '\t', 3549, + ' ', 3549, + 'B', 3462, + 'b', 3462, + 'I', 4431, + 'i', 4431, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3501); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3439); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 313: + case 253: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 4569, - ',', 3610, - '-', 4568, - '.', 4560, - '0', 3478, - 'E', 4592, - 'N', 4626, - '[', 2983, - ']', 2984, - '_', 4588, - '`', 695, - 'e', 4554, - 'f', 4596, - 'n', 4622, - 'o', 4552, - 't', 4613, - '{', 3169, - '\t', 3611, - ' ', 3611, - 'I', 4633, - 'i', 4633, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 4367, + ',', 3548, + '-', 4366, + '.', 4358, + '0', 3416, + 'E', 4389, + 'N', 4424, + '[', 2924, + ']', 2925, + '_', 4393, + '`', 634, + 'e', 4352, + 'f', 4394, + 'n', 4420, + 'o', 4350, + 't', 4411, + '{', 3109, + '\t', 3549, + ' ', 3549, + 'I', 4431, + 'i', 4431, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3501); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3439); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 314: + case 254: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 4569, - ',', 3610, - '-', 4568, - '.', 4560, - '0', 3478, - 'N', 4626, - '[', 2983, - ']', 2984, - '_', 4588, - '`', 695, - 'e', 4551, - 'f', 4596, - 'n', 4622, - 'o', 4552, - 't', 4613, - '{', 3169, - '\t', 3611, - ' ', 3611, - 'I', 4633, - 'i', 4633, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 4367, + ',', 3548, + '-', 4366, + '.', 4358, + '0', 3416, + 'N', 4424, + '[', 2924, + ']', 2925, + '_', 4393, + '`', 634, + 'e', 4349, + 'f', 4394, + 'n', 4420, + 'o', 4350, + 't', 4411, + '{', 3109, + '\t', 3549, + ' ', 3549, + 'I', 4431, + 'i', 4431, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3501); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3439); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 315: + case 255: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 4569, - ',', 3610, - '-', 4568, - '.', 4559, - '0', 3428, - 'E', 4592, - 'N', 4626, - '[', 2983, - ']', 2984, - '_', 4583, - '`', 695, - 'e', 4554, - 'f', 4596, - 'n', 4622, - 'o', 4552, - 't', 4613, - '{', 3169, - '\t', 3611, - ' ', 3611, - 'I', 4633, - 'i', 4633, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 4367, + ',', 3548, + '-', 4366, + '.', 4357, + '0', 3366, + 'E', 4389, + 'N', 4424, + '[', 2924, + ']', 2925, + '_', 4381, + '`', 634, + 'e', 4352, + 'f', 4394, + 'n', 4420, + 'o', 4350, + 't', 4411, + '{', 3109, + '\t', 3549, + ' ', 3549, + 'I', 4431, + 'i', 4431, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3443); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3381); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 316: + case 256: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 4569, - ',', 3610, - '-', 4568, - '.', 4559, - '0', 3478, - 'E', 4592, - 'N', 4626, - '[', 2983, - ']', 2984, - '_', 4588, - '`', 695, - 'e', 4554, - 'f', 4596, - 'n', 4622, - 'o', 4552, - 't', 4613, - '{', 3169, - '\t', 3611, - ' ', 3611, - 'I', 4633, - 'i', 4633, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 4367, + ',', 3548, + '-', 4366, + '.', 4357, + '0', 3416, + 'E', 4389, + 'N', 4424, + '[', 2924, + ']', 2925, + '_', 4393, + '`', 634, + 'e', 4352, + 'f', 4394, + 'n', 4420, + 'o', 4350, + 't', 4411, + '{', 3109, + '\t', 3549, + ' ', 3549, + 'I', 4431, + 'i', 4431, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3501); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3439); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 317: + case 257: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 4569, - ',', 3610, - '-', 4568, - '.', 4559, - '0', 3478, - 'N', 4626, - '[', 2983, - ']', 2984, - '_', 4588, - '`', 695, - 'e', 4551, - 'f', 4596, - 'n', 4622, - 'o', 4552, - 't', 4613, - '{', 3169, - '\t', 3611, - ' ', 3611, - 'I', 4633, - 'i', 4633, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 4367, + ',', 3548, + '-', 4366, + '.', 4357, + '0', 3416, + 'N', 4424, + '[', 2924, + ']', 2925, + '_', 4393, + '`', 634, + 'e', 4349, + 'f', 4394, + 'n', 4420, + 'o', 4350, + 't', 4411, + '{', 3109, + '\t', 3549, + ' ', 3549, + 'I', 4431, + 'i', 4431, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3501); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3439); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 318: + case 258: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 4569, - ',', 3610, - '-', 4568, - '.', 3397, - '0', 3478, - 'E', 4578, - 'G', 4581, - 'K', 4581, - 'M', 4581, - 'N', 4626, - 'P', 4581, - 'T', 4581, - '[', 2983, - ']', 2984, - '_', 4588, - '`', 695, - 'd', 4597, - 'e', 4553, - 'f', 4596, - 'g', 4580, - 'h', 4612, - 'k', 4580, - 'm', 4582, - 'n', 4617, - 'o', 4552, - 'p', 4580, - 's', 4602, - 't', 4579, - 'u', 4618, - 'w', 4605, - '{', 3169, - 0xb5, 4618, - '\t', 3611, - ' ', 3611, - 'B', 3524, - 'b', 3524, - 'I', 4633, - 'i', 4633, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 4367, + ',', 3548, + '-', 4366, + '.', 3334, + '0', 3416, + 'E', 4376, + 'G', 4379, + 'K', 4379, + 'M', 4379, + 'N', 4424, + 'P', 4379, + 'T', 4379, + '[', 2924, + ']', 2925, + '_', 4393, + '`', 634, + 'd', 4395, + 'e', 4351, + 'f', 4394, + 'g', 4378, + 'h', 4410, + 'k', 4378, + 'm', 4380, + 'n', 4415, + 'o', 4350, + 'p', 4378, + 's', 4400, + 't', 4377, + 'u', 4416, + 'w', 4403, + '{', 3109, + 0xb5, 4416, + '\t', 3549, + ' ', 3549, + 'B', 3462, + 'b', 3462, + 'I', 4431, + 'i', 4431, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3501); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3439); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 319: + case 259: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 4569, - ',', 3610, - '-', 4568, - '.', 3397, - '0', 3478, - 'E', 4592, - 'N', 4626, - '[', 2983, - ']', 2984, - '_', 4588, - '`', 695, - 'e', 4554, - 'f', 4596, - 'n', 4622, - 'o', 4552, - 't', 4613, - '{', 3169, - '\t', 3611, - ' ', 3611, - 'I', 4633, - 'i', 4633, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 4367, + ',', 3548, + '-', 4366, + '.', 3334, + '0', 3416, + 'E', 4389, + 'N', 4424, + '[', 2924, + ']', 2925, + '_', 4393, + '`', 634, + 'e', 4352, + 'f', 4394, + 'n', 4420, + 'o', 4350, + 't', 4411, + '{', 3109, + '\t', 3549, + ' ', 3549, + 'I', 4431, + 'i', 4431, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3501); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3439); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 320: + case 260: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 4569, - ',', 3610, - '-', 4568, - '.', 3386, - '0', 3478, - 'E', 4592, - 'N', 4626, - '[', 2983, - ']', 2984, - '_', 4588, - '`', 695, - 'e', 4554, - 'f', 4596, - 'n', 4622, - 'o', 4552, - 't', 4613, - '{', 3169, - '\t', 3611, - ' ', 3611, - 'I', 4633, - 'i', 4633, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 4367, + ',', 3548, + '-', 4366, + '.', 3324, + '0', 3416, + 'E', 4389, + 'N', 4424, + '[', 2924, + ']', 2925, + '_', 4393, + '`', 634, + 'e', 4352, + 'f', 4394, + 'n', 4420, + 'o', 4350, + 't', 4411, + '{', 3109, + '\t', 3549, + ' ', 3549, + 'I', 4431, + 'i', 4431, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3501); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3439); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 321: + case 261: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 3620, - ',', 1943, - '-', 3053, - '.', 3390, - '0', 3431, - 'I', 1386, - 'N', 1381, - '_', 1224, - '`', 695, - 'a', 1300, - 'b', 1335, - 'c', 1236, - 'd', 1264, - 'e', 1305, - 'f', 1233, - 'h', 1287, - 'i', 1214, - 'l', 1268, - 'm', 1229, - 'n', 1262, - 'o', 1373, - 'r', 1252, - 's', 1316, - 't', 1329, - 'u', 1346, - 'w', 1283, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 3558, + ',', 1884, + '-', 2993, + '.', 3328, + '0', 3369, + 'I', 1327, + 'N', 1322, + '_', 1165, + '`', 634, + 'a', 1241, + 'b', 1276, + 'c', 1177, + 'd', 1205, + 'e', 1246, + 'f', 1174, + 'h', 1228, + 'i', 1155, + 'l', 1209, + 'm', 1170, + 'n', 1203, + 'o', 1314, + 'r', 1193, + 's', 1257, + 't', 1270, + 'u', 1287, + 'w', 1224, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(400); + lookahead == ' ') SKIP(341); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4835); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); + lookahead == '^') ADVANCE(4633); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3370); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); END_STATE(); - case 322: + case 262: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 3620, - ',', 1943, - '-', 3053, - '.', 1199, - '0', 3431, - 'I', 1386, - 'N', 1381, - '_', 1224, - '`', 695, - 'a', 1300, - 'b', 1335, - 'c', 1236, - 'd', 1264, - 'e', 1305, - 'f', 1233, - 'h', 1287, - 'i', 1214, - 'l', 1268, - 'm', 1229, - 'n', 1262, - 'o', 1373, - 'r', 1252, - 's', 1316, - 't', 1329, - 'u', 1346, - 'w', 1283, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 3558, + ',', 1884, + '-', 2993, + '.', 1140, + '0', 3369, + 'I', 1327, + 'N', 1322, + '_', 1165, + '`', 634, + 'a', 1241, + 'b', 1276, + 'c', 1177, + 'd', 1205, + 'e', 1246, + 'f', 1174, + 'h', 1228, + 'i', 1155, + 'l', 1209, + 'm', 1170, + 'n', 1203, + 'o', 1314, + 'r', 1193, + 's', 1257, + 't', 1270, + 'u', 1287, + 'w', 1224, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(400); + lookahead == ' ') SKIP(341); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4835); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); + lookahead == '^') ADVANCE(4633); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3370); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); END_STATE(); - case 323: + case 263: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 3620, - ',', 3610, - '-', 3053, - '.', 3390, - '0', 3431, - 'I', 1386, - 'N', 1381, - '[', 2983, - ']', 2984, - '_', 1224, - '`', 695, - 'a', 1300, - 'b', 1335, - 'c', 1236, - 'd', 1264, - 'e', 1305, - 'f', 1233, - 'h', 1287, - 'i', 1214, - 'l', 1268, - 'm', 1229, - 'n', 1262, - 'o', 1373, - 'r', 1252, - 's', 1316, - 't', 1329, - 'u', 1346, - 'w', 1283, - '}', 3170, - '\t', 3611, - ' ', 3611, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 3558, + ',', 3548, + '-', 2993, + '.', 3328, + '0', 3369, + 'I', 1327, + 'N', 1322, + '[', 2924, + ']', 2925, + '_', 1165, + '`', 634, + 'a', 1241, + 'b', 1276, + 'c', 1177, + 'd', 1205, + 'e', 1246, + 'f', 1174, + 'h', 1228, + 'i', 1155, + 'l', 1209, + 'm', 1170, + 'n', 1203, + 'o', 1314, + 'r', 1193, + 's', 1257, + 't', 1270, + 'u', 1287, + 'w', 1224, + '}', 3110, + '\t', 3549, + ' ', 3549, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4835); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); + lookahead == '^') ADVANCE(4633); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3370); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); END_STATE(); - case 324: + case 264: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 3620, - ',', 3610, - '-', 3053, - '.', 1199, - '0', 3431, - 'I', 1386, - 'N', 1381, - '_', 1224, - '`', 695, - 'a', 1300, - 'b', 1335, - 'c', 1236, - 'd', 1264, - 'e', 1305, - 'f', 1233, - 'h', 1287, - 'i', 1214, - 'l', 1268, - 'm', 1229, - 'n', 1262, - 'o', 1373, - 'r', 1252, - 's', 1316, - 't', 1329, - 'u', 1346, - 'w', 1283, - '}', 3170, - '\t', 3611, - ' ', 3611, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 3558, + ',', 3548, + '-', 2993, + '.', 1140, + '0', 3369, + 'I', 1327, + 'N', 1322, + '_', 1165, + '`', 634, + 'a', 1241, + 'b', 1276, + 'c', 1177, + 'd', 1205, + 'e', 1246, + 'f', 1174, + 'h', 1228, + 'i', 1155, + 'l', 1209, + 'm', 1170, + 'n', 1203, + 'o', 1314, + 'r', 1193, + 's', 1257, + 't', 1270, + 'u', 1287, + 'w', 1224, + '}', 3110, + '\t', 3549, + ' ', 3549, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4835); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); + lookahead == '^') ADVANCE(4633); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3370); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); END_STATE(); - case 325: + case 265: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 4472, - ',', 2987, - '-', 4471, - '.', 4466, - '0', 3429, - 'N', 4521, - '[', 2983, - ']', 2984, - '_', 4493, - '`', 695, - 'e', 4458, - 'f', 4501, - 'n', 4518, - 'o', 4459, - 't', 4511, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 4270, + ',', 2928, + '-', 4269, + '.', 4264, + '0', 3367, + 'N', 4319, + '[', 2924, + ']', 2925, + '_', 4291, + '`', 634, + 'e', 4256, + 'f', 4299, + 'n', 4316, + 'o', 4257, + 't', 4309, + '{', 3109, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(401); + lookahead == ' ') SKIP(342); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4527); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3444); + lookahead == 'i') ADVANCE(4325); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3382); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); END_STATE(); - case 326: + case 266: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 4472, - ',', 2987, - '-', 4471, - '.', 3385, - '0', 3429, - 'N', 4521, - '[', 2983, - ']', 2984, - '_', 4493, - '`', 695, - 'e', 4458, - 'f', 4501, - 'n', 4518, - 'o', 4459, - 't', 4511, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 4270, + ',', 2928, + '-', 4269, + '.', 3325, + '0', 3367, + 'N', 4319, + '[', 2924, + ']', 2925, + '_', 4291, + '`', 634, + 'e', 4256, + 'f', 4299, + 'n', 4316, + 'o', 4257, + 't', 4309, + '{', 3109, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(401); + lookahead == ' ') SKIP(342); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4527); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3444); + lookahead == 'i') ADVANCE(4325); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3382); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); END_STATE(); - case 327: + case 267: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 4472, - ',', 3610, - '-', 4471, - '.', 4466, - '0', 3429, - 'N', 4521, - '[', 2983, - ']', 2984, - '_', 4493, - '`', 695, - 'e', 4458, - 'f', 4501, - 'n', 4518, - 'o', 4459, - 't', 4511, - '{', 3169, - '\t', 3611, - ' ', 3611, - 'I', 4527, - 'i', 4527, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 4270, + ',', 3548, + '-', 4269, + '.', 4264, + '0', 3367, + 'N', 4319, + '[', 2924, + ']', 2925, + '_', 4291, + '`', 634, + 'e', 4256, + 'f', 4299, + 'n', 4316, + 'o', 4257, + 't', 4309, + '{', 3109, + '\t', 3549, + ' ', 3549, + 'I', 4325, + 'i', 4325, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3444); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3382); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); END_STATE(); - case 328: + case 268: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 3294, - '+', 4472, - ',', 3610, - '-', 4471, - '.', 3385, - '0', 3429, - 'N', 4521, - '[', 2983, - ']', 2984, - '_', 4493, - '`', 695, - 'e', 4458, - 'f', 4501, - 'n', 4518, - 'o', 4459, - 't', 4511, - '{', 3169, - '\t', 3611, - ' ', 3611, - 'I', 4527, - 'i', 4527, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 3232, + '+', 4270, + ',', 3548, + '-', 4269, + '.', 3325, + '0', 3367, + 'N', 4319, + '[', 2924, + ']', 2925, + '_', 4291, + '`', 634, + 'e', 4256, + 'f', 4299, + 'n', 4316, + 'o', 4257, + 't', 4309, + '{', 3109, + '\t', 3549, + ' ', 3549, + 'I', 4325, + 'i', 4325, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3444); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3382); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); END_STATE(); - case 329: + case 269: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3621, - ',', 2987, - '-', 3047, - '.', 1408, - '0', 3479, - ':', 3615, - '?', 3263, - 'I', 1929, - 'N', 1924, - '_', 1664, - '`', 695, - 'a', 1780, - 'b', 1829, - 'c', 1673, - 'd', 1713, - 'e', 1789, - 'f', 1674, - 'h', 1759, - 'i', 1657, - 'l', 1727, - 'm', 1676, - 'n', 1715, - 'o', 1901, - 'r', 1716, - 's', 1805, - 't', 1824, - 'u', 1855, - 'w', 1754, - '}', 3170, - '\t', 329, - ' ', 329, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 3559, + ',', 2928, + '-', 2987, + '.', 1349, + '0', 3417, + ':', 3553, + '?', 3201, + 'I', 1870, + 'N', 1865, + '_', 1605, + '`', 634, + 'a', 1721, + 'b', 1770, + 'c', 1614, + 'd', 1654, + 'e', 1730, + 'f', 1615, + 'h', 1700, + 'i', 1598, + 'l', 1668, + 'm', 1617, + 'n', 1656, + 'o', 1842, + 'r', 1657, + 's', 1746, + 't', 1765, + 'u', 1796, + 'w', 1695, + '}', 3110, + '\t', 269, + ' ', 269, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(649); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(586); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 330: + case 270: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3621, - ',', 2987, - '-', 3047, - '.', 1408, - '0', 3479, - ':', 3615, - 'I', 1929, - 'N', 1924, - '_', 1664, - '`', 695, - 'a', 1780, - 'b', 1829, - 'c', 1673, - 'd', 1713, - 'e', 1789, - 'f', 1674, - 'h', 1759, - 'i', 1657, - 'l', 1727, - 'm', 1676, - 'n', 1715, - 'o', 1901, - 'r', 1716, - 's', 1805, - 't', 1824, - 'u', 1855, - 'w', 1754, - '}', 3170, - '\t', 330, - ' ', 330, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 3559, + ',', 2928, + '-', 2987, + '.', 1349, + '0', 3417, + ':', 3553, + 'I', 1870, + 'N', 1865, + '_', 1605, + '`', 634, + 'a', 1721, + 'b', 1770, + 'c', 1614, + 'd', 1654, + 'e', 1730, + 'f', 1615, + 'h', 1700, + 'i', 1598, + 'l', 1668, + 'm', 1617, + 'n', 1656, + 'o', 1842, + 'r', 1657, + 's', 1746, + 't', 1765, + 'u', 1796, + 'w', 1695, + '}', 3110, + '\t', 270, + ' ', 270, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(649); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(586); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 331: + case 271: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3621, - ',', 2987, - '-', 3047, - '.', 3389, - '0', 3479, - ':', 3615, - '?', 3263, - 'I', 1929, - 'N', 1924, - '_', 1664, - '`', 695, - 'a', 1780, - 'b', 1829, - 'c', 1673, - 'd', 1713, - 'e', 1789, - 'f', 1674, - 'h', 1759, - 'i', 1657, - 'l', 1727, - 'm', 1676, - 'n', 1715, - 'o', 1901, - 'r', 1716, - 's', 1805, - 't', 1824, - 'u', 1855, - 'w', 1754, - '}', 3170, - '\t', 329, - ' ', 329, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 3559, + ',', 2928, + '-', 2987, + '.', 3327, + '0', 3417, + ':', 3553, + '?', 3201, + 'I', 1870, + 'N', 1865, + '_', 1605, + '`', 634, + 'a', 1721, + 'b', 1770, + 'c', 1614, + 'd', 1654, + 'e', 1730, + 'f', 1615, + 'h', 1700, + 'i', 1598, + 'l', 1668, + 'm', 1617, + 'n', 1656, + 'o', 1842, + 'r', 1657, + 's', 1746, + 't', 1765, + 'u', 1796, + 'w', 1695, + '}', 3110, + '\t', 269, + ' ', 269, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(649); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(586); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 332: + case 272: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3621, - ',', 2987, - '-', 3047, - '.', 3389, - '0', 3479, - ':', 3615, - 'I', 1929, - 'N', 1924, - '_', 1664, - '`', 695, - 'a', 1780, - 'b', 1829, - 'c', 1673, - 'd', 1713, - 'e', 1789, - 'f', 1674, - 'h', 1759, - 'i', 1657, - 'l', 1727, - 'm', 1676, - 'n', 1715, - 'o', 1901, - 'r', 1716, - 's', 1805, - 't', 1824, - 'u', 1855, - 'w', 1754, - '}', 3170, - '\t', 330, - ' ', 330, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 3559, + ',', 2928, + '-', 2987, + '.', 3327, + '0', 3417, + ':', 3553, + 'I', 1870, + 'N', 1865, + '_', 1605, + '`', 634, + 'a', 1721, + 'b', 1770, + 'c', 1614, + 'd', 1654, + 'e', 1730, + 'f', 1615, + 'h', 1700, + 'i', 1598, + 'l', 1668, + 'm', 1617, + 'n', 1656, + 'o', 1842, + 'r', 1657, + 's', 1746, + 't', 1765, + 'u', 1796, + 'w', 1695, + '}', 3110, + '\t', 270, + ' ', 270, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(649); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(586); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 333: + case 273: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3621, - ',', 3610, - '-', 3047, - '.', 3400, - '0', 3479, - '<', 3016, - 'I', 1929, - 'N', 1924, - ']', 2984, - '_', 1664, - '`', 695, - 'a', 1780, - 'b', 1829, - 'c', 1673, - 'd', 1713, - 'e', 1789, - 'f', 1674, - 'h', 1759, - 'i', 1657, - 'l', 1727, - 'm', 1676, - 'n', 1715, - 'o', 1901, - 'r', 1716, - 's', 1805, - 't', 1824, - 'u', 1855, - 'w', 1754, - '}', 3170, - '\t', 3611, - ' ', 3611, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 3559, + ',', 3548, + '-', 2987, + '.', 3338, + '0', 3417, + '<', 2956, + 'I', 1870, + 'N', 1865, + ']', 2925, + '_', 1605, + '`', 634, + 'a', 1721, + 'b', 1770, + 'c', 1614, + 'd', 1654, + 'e', 1730, + 'f', 1615, + 'h', 1700, + 'i', 1598, + 'l', 1668, + 'm', 1617, + 'n', 1656, + 'o', 1842, + 'r', 1657, + 's', 1746, + 't', 1765, + 'u', 1796, + 'w', 1695, + '}', 3110, + '\t', 3549, + ' ', 3549, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 334: + case 274: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3621, - ',', 3610, - '-', 3047, - '.', 3400, - '0', 3479, - '?', 3263, - 'I', 1929, - 'N', 1924, - '_', 1664, - '`', 695, - 'a', 1780, - 'b', 1829, - 'c', 1673, - 'd', 1713, - 'e', 1789, - 'f', 1674, - 'h', 1759, - 'i', 1657, - 'l', 1727, - 'm', 1676, - 'n', 1715, - 'o', 1901, - 'r', 1716, - 's', 1805, - 't', 1824, - 'u', 1855, - 'w', 1754, - '}', 3170, - '\t', 3611, - ' ', 3611, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 3559, + ',', 3548, + '-', 2987, + '.', 3338, + '0', 3417, + '?', 3201, + 'I', 1870, + 'N', 1865, + '_', 1605, + '`', 634, + 'a', 1721, + 'b', 1770, + 'c', 1614, + 'd', 1654, + 'e', 1730, + 'f', 1615, + 'h', 1700, + 'i', 1598, + 'l', 1668, + 'm', 1617, + 'n', 1656, + 'o', 1842, + 'r', 1657, + 's', 1746, + 't', 1765, + 'u', 1796, + 'w', 1695, + '}', 3110, + '\t', 3549, + ' ', 3549, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 335: + case 275: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3621, - ',', 3610, - '-', 3047, - '.', 3400, - '0', 3479, - 'E', 1671, - 'I', 1929, - 'N', 1924, - '_', 1664, - '`', 695, - 'a', 1780, - 'b', 1829, - 'c', 1673, - 'd', 1713, - 'e', 1670, - 'f', 1674, - 'h', 1759, - 'i', 1657, - 'l', 1727, - 'm', 1676, - 'n', 1715, - 'o', 1901, - 'r', 1716, - 's', 1805, - 't', 1824, - 'u', 1855, - 'w', 1754, - '}', 3170, - '\t', 3611, - ' ', 3611, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 3559, + ',', 3548, + '-', 2987, + '.', 3338, + '0', 3417, + 'E', 1612, + 'I', 1870, + 'N', 1865, + '_', 1605, + '`', 634, + 'a', 1721, + 'b', 1770, + 'c', 1614, + 'd', 1654, + 'e', 1611, + 'f', 1615, + 'h', 1700, + 'i', 1598, + 'l', 1668, + 'm', 1617, + 'n', 1656, + 'o', 1842, + 'r', 1657, + 's', 1746, + 't', 1765, + 'u', 1796, + 'w', 1695, + '}', 3110, + '\t', 3549, + ' ', 3549, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 336: + case 276: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3621, - ',', 3610, - '-', 3047, - '.', 1408, - '0', 3479, - 'E', 1671, - 'I', 1929, - 'N', 1924, - '_', 1664, - '`', 695, - 'a', 1780, - 'b', 1829, - 'c', 1673, - 'd', 1713, - 'e', 1670, - 'f', 1674, - 'h', 1759, - 'i', 1657, - 'l', 1727, - 'm', 1676, - 'n', 1715, - 'o', 1901, - 'r', 1716, - 's', 1805, - 't', 1824, - 'u', 1855, - 'w', 1754, - '}', 3170, - '\t', 3611, - ' ', 3611, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 3559, + ',', 3548, + '-', 2987, + '.', 1349, + '0', 3417, + 'E', 1612, + 'I', 1870, + 'N', 1865, + '_', 1605, + '`', 634, + 'a', 1721, + 'b', 1770, + 'c', 1614, + 'd', 1654, + 'e', 1611, + 'f', 1615, + 'h', 1700, + 'i', 1598, + 'l', 1668, + 'm', 1617, + 'n', 1656, + 'o', 1842, + 'r', 1657, + 's', 1746, + 't', 1765, + 'u', 1796, + 'w', 1695, + '}', 3110, + '\t', 3549, + ' ', 3549, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 337: + case 277: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3621, - ',', 3610, - '-', 3047, - '.', 1408, - '0', 3430, - 'E', 1671, - 'I', 1929, - 'N', 1924, - '_', 1669, - '`', 695, - 'a', 1780, - 'b', 1829, - 'c', 1673, - 'd', 1713, - 'e', 1670, - 'f', 1674, - 'h', 1759, - 'i', 1657, - 'l', 1727, - 'm', 1676, - 'n', 1715, - 'o', 1901, - 'r', 1716, - 's', 1805, - 't', 1824, - 'u', 1855, - 'w', 1754, - '}', 3170, - '\t', 3611, - ' ', 3611, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 3559, + ',', 3548, + '-', 2987, + '.', 1349, + '0', 3368, + 'E', 1612, + 'I', 1870, + 'N', 1865, + '_', 1610, + '`', 634, + 'a', 1721, + 'b', 1770, + 'c', 1614, + 'd', 1654, + 'e', 1611, + 'f', 1615, + 'h', 1700, + 'i', 1598, + 'l', 1668, + 'm', 1617, + 'n', 1656, + 'o', 1842, + 'r', 1657, + 's', 1746, + 't', 1765, + 'u', 1796, + 'w', 1695, + '}', 3110, + '\t', 3549, + ' ', 3549, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3370); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 338: + case 278: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3621, - ',', 3610, - '-', 3047, - '.', 3389, - '0', 3479, - '?', 3263, - 'I', 1929, - 'N', 1924, - '_', 1664, - '`', 695, - 'a', 1780, - 'b', 1829, - 'c', 1673, - 'd', 1713, - 'e', 1789, - 'f', 1674, - 'h', 1759, - 'i', 1657, - 'l', 1727, - 'm', 1676, - 'n', 1715, - 'o', 1901, - 'r', 1716, - 's', 1805, - 't', 1824, - 'u', 1855, - 'w', 1754, - '}', 3170, - '\t', 3611, - ' ', 3611, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 3559, + ',', 3548, + '-', 2987, + '.', 3327, + '0', 3417, + '?', 3201, + 'I', 1870, + 'N', 1865, + '_', 1605, + '`', 634, + 'a', 1721, + 'b', 1770, + 'c', 1614, + 'd', 1654, + 'e', 1730, + 'f', 1615, + 'h', 1700, + 'i', 1598, + 'l', 1668, + 'm', 1617, + 'n', 1656, + 'o', 1842, + 'r', 1657, + 's', 1746, + 't', 1765, + 'u', 1796, + 'w', 1695, + '}', 3110, + '\t', 3549, + ' ', 3549, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 339: + case 279: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3621, - ',', 3610, - '-', 3047, - '.', 3389, - '0', 3479, - 'E', 1671, - 'I', 1929, - 'N', 1924, - '_', 1664, - '`', 695, - 'a', 1780, - 'b', 1829, - 'c', 1673, - 'd', 1713, - 'e', 1670, - 'f', 1674, - 'h', 1759, - 'i', 1657, - 'l', 1727, - 'm', 1676, - 'n', 1715, - 'o', 1901, - 'r', 1716, - 's', 1805, - 't', 1824, - 'u', 1855, - 'w', 1754, - '}', 3170, - '\t', 3611, - ' ', 3611, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 3559, + ',', 3548, + '-', 2987, + '.', 3327, + '0', 3417, + 'E', 1612, + 'I', 1870, + 'N', 1865, + '_', 1605, + '`', 634, + 'a', 1721, + 'b', 1770, + 'c', 1614, + 'd', 1654, + 'e', 1611, + 'f', 1615, + 'h', 1700, + 'i', 1598, + 'l', 1668, + 'm', 1617, + 'n', 1656, + 'o', 1842, + 'r', 1657, + 's', 1746, + 't', 1765, + 'u', 1796, + 'w', 1695, + '}', 3110, + '\t', 3549, + ' ', 3549, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 340: + case 280: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3621, - ',', 3610, - '-', 3047, - '.', 3389, - '0', 3479, - 'I', 1929, - 'N', 1924, - '_', 1664, - '`', 695, - 'a', 1780, - 'b', 1829, - 'c', 1673, - 'd', 1713, - 'e', 1789, - 'f', 1674, - 'h', 1759, - 'i', 1657, - 'l', 1727, - 'm', 1676, - 'n', 1715, - 'o', 1901, - 'r', 1716, - 's', 1805, - 't', 1824, - 'u', 1855, - 'w', 1754, - '}', 3170, - '\t', 3611, - ' ', 3611, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 3559, + ',', 3548, + '-', 2987, + '.', 3327, + '0', 3417, + 'I', 1870, + 'N', 1865, + '_', 1605, + '`', 634, + 'a', 1721, + 'b', 1770, + 'c', 1614, + 'd', 1654, + 'e', 1730, + 'f', 1615, + 'h', 1700, + 'i', 1598, + 'l', 1668, + 'm', 1617, + 'n', 1656, + 'o', 1842, + 'r', 1657, + 's', 1746, + 't', 1765, + 'u', 1796, + 'w', 1695, + '}', 3110, + '\t', 3549, + ' ', 3549, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 341: + case 281: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3621, - ',', 3610, - '-', 3047, - '.', 1411, - '0', 3479, - 'E', 1671, - 'I', 1929, - 'N', 1924, - '_', 1664, - '`', 695, - 'a', 1780, - 'b', 1829, - 'c', 1673, - 'd', 1713, - 'e', 1670, - 'f', 1674, - 'h', 1759, - 'i', 1657, - 'l', 1727, - 'm', 1676, - 'n', 1715, - 'o', 1901, - 'r', 1716, - 's', 1805, - 't', 1824, - 'u', 1855, - 'w', 1754, - '}', 3170, - '\t', 3611, - ' ', 3611, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 3559, + ',', 3548, + '-', 2987, + '.', 1352, + '0', 3417, + 'E', 1612, + 'I', 1870, + 'N', 1865, + '_', 1605, + '`', 634, + 'a', 1721, + 'b', 1770, + 'c', 1614, + 'd', 1654, + 'e', 1611, + 'f', 1615, + 'h', 1700, + 'i', 1598, + 'l', 1668, + 'm', 1617, + 'n', 1656, + 'o', 1842, + 'r', 1657, + 's', 1746, + 't', 1765, + 'u', 1796, + 'w', 1695, + '}', 3110, + '\t', 3549, + ' ', 3549, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 342: + case 282: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3621, - ',', 3610, - '-', 3047, - '.', 1411, - '0', 3479, - 'I', 1929, - 'N', 1924, - '_', 1664, - '`', 695, - 'a', 1780, - 'b', 1829, - 'c', 1673, - 'd', 1713, - 'e', 1789, - 'f', 1674, - 'h', 1759, - 'i', 1657, - 'l', 1727, - 'm', 1676, - 'n', 1715, - 'o', 1901, - 'r', 1716, - 's', 1805, - 't', 1824, - 'u', 1855, - 'w', 1754, - '}', 3170, - '\t', 3611, - ' ', 3611, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 3559, + ',', 3548, + '-', 2987, + '.', 1352, + '0', 3417, + 'I', 1870, + 'N', 1865, + '_', 1605, + '`', 634, + 'a', 1721, + 'b', 1770, + 'c', 1614, + 'd', 1654, + 'e', 1730, + 'f', 1615, + 'h', 1700, + 'i', 1598, + 'l', 1668, + 'm', 1617, + 'n', 1656, + 'o', 1842, + 'r', 1657, + 's', 1746, + 't', 1765, + 'u', 1796, + 'w', 1695, + '}', 3110, + '\t', 3549, + ' ', 3549, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 343: + case 283: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3621, - ',', 3610, - '-', 3047, - '.', 1411, - '0', 3430, - 'E', 1671, - 'I', 1929, - 'N', 1924, - '_', 1669, - '`', 695, - 'a', 1780, - 'b', 1829, - 'c', 1673, - 'd', 1713, - 'e', 1670, - 'f', 1674, - 'h', 1759, - 'i', 1657, - 'l', 1727, - 'm', 1676, - 'n', 1715, - 'o', 1901, - 'r', 1716, - 's', 1805, - 't', 1824, - 'u', 1855, - 'w', 1754, - '}', 3170, - '\t', 3611, - ' ', 3611, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 3559, + ',', 3548, + '-', 2987, + '.', 1352, + '0', 3368, + 'E', 1612, + 'I', 1870, + 'N', 1865, + '_', 1610, + '`', 634, + 'a', 1721, + 'b', 1770, + 'c', 1614, + 'd', 1654, + 'e', 1611, + 'f', 1615, + 'h', 1700, + 'i', 1598, + 'l', 1668, + 'm', 1617, + 'n', 1656, + 'o', 1842, + 'r', 1657, + 's', 1746, + 't', 1765, + 'u', 1796, + 'w', 1695, + '}', 3110, + '\t', 3549, + ' ', 3549, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3370); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 344: + case 284: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3621, - '-', 3047, - '.', 3400, - '0', 3479, - '?', 3263, - 'I', 1929, - 'N', 1924, - '_', 1664, - '`', 695, - 'a', 1780, - 'b', 1829, - 'c', 1673, - 'd', 1713, - 'e', 1789, - 'f', 1674, - 'h', 1759, - 'i', 1657, - 'l', 1727, - 'm', 1676, - 'n', 1715, - 'o', 1901, - 'r', 1716, - 's', 1805, - 't', 1824, - 'u', 1855, - 'w', 1754, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 3559, + '-', 2987, + '.', 3338, + '0', 3417, + '?', 3201, + 'I', 1870, + 'N', 1865, + '_', 1605, + '`', 634, + 'a', 1721, + 'b', 1770, + 'c', 1614, + 'd', 1654, + 'e', 1730, + 'f', 1615, + 'h', 1700, + 'i', 1598, + 'l', 1668, + 'm', 1617, + 'n', 1656, + 'o', 1842, + 'r', 1657, + 's', 1746, + 't', 1765, + 'u', 1796, + 'w', 1695, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(347); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + lookahead == ' ') SKIP(287); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 345: + case 285: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3621, - '-', 3047, - '.', 3400, - '0', 3479, - 'E', 1671, - 'I', 1929, - 'N', 1924, - '_', 1664, - '`', 695, - 'a', 1780, - 'b', 1829, - 'c', 1673, - 'd', 1713, - 'e', 1670, - 'f', 1674, - 'h', 1759, - 'i', 1657, - 'l', 1727, - 'm', 1676, - 'n', 1715, - 'o', 1901, - 'r', 1716, - 's', 1805, - 't', 1824, - 'u', 1855, - 'w', 1754, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 3559, + '-', 2987, + '.', 3338, + '0', 3417, + 'E', 1612, + 'I', 1870, + 'N', 1865, + '_', 1605, + '`', 634, + 'a', 1721, + 'b', 1770, + 'c', 1614, + 'd', 1654, + 'e', 1611, + 'f', 1615, + 'h', 1700, + 'i', 1598, + 'l', 1668, + 'm', 1617, + 'n', 1656, + 'o', 1842, + 'r', 1657, + 's', 1746, + 't', 1765, + 'u', 1796, + 'w', 1695, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(349); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + lookahead == ' ') SKIP(289); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 346: + case 286: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3621, - '-', 3047, - '.', 3400, - '0', 3479, - 'I', 1929, - 'N', 1924, - '_', 1664, - '`', 695, - 'a', 1780, - 'b', 1829, - 'c', 1673, - 'd', 1713, - 'e', 1789, - 'f', 1674, - 'h', 1759, - 'i', 1657, - 'l', 1727, - 'm', 1676, - 'n', 1715, - 'o', 1901, - 'r', 1716, - 's', 1805, - 't', 1824, - 'u', 1855, - 'w', 1754, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 3559, + '-', 2987, + '.', 3338, + '0', 3417, + 'I', 1870, + 'N', 1865, + '_', 1605, + '`', 634, + 'a', 1721, + 'b', 1770, + 'c', 1614, + 'd', 1654, + 'e', 1730, + 'f', 1615, + 'h', 1700, + 'i', 1598, + 'l', 1668, + 'm', 1617, + 'n', 1656, + 'o', 1842, + 'r', 1657, + 's', 1746, + 't', 1765, + 'u', 1796, + 'w', 1695, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(349); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + lookahead == ' ') SKIP(289); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 347: + case 287: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3621, - '-', 3047, - '.', 1408, - '0', 3479, - '?', 3263, - 'I', 1929, - 'N', 1924, - '_', 1664, - '`', 695, - 'a', 1780, - 'b', 1829, - 'c', 1673, - 'd', 1713, - 'e', 1789, - 'f', 1674, - 'h', 1759, - 'i', 1657, - 'l', 1727, - 'm', 1676, - 'n', 1715, - 'o', 1901, - 'r', 1716, - 's', 1805, - 't', 1824, - 'u', 1855, - 'w', 1754, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 3559, + '-', 2987, + '.', 1349, + '0', 3417, + '?', 3201, + 'I', 1870, + 'N', 1865, + '_', 1605, + '`', 634, + 'a', 1721, + 'b', 1770, + 'c', 1614, + 'd', 1654, + 'e', 1730, + 'f', 1615, + 'h', 1700, + 'i', 1598, + 'l', 1668, + 'm', 1617, + 'n', 1656, + 'o', 1842, + 'r', 1657, + 's', 1746, + 't', 1765, + 'u', 1796, + 'w', 1695, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(347); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + lookahead == ' ') SKIP(287); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 348: + case 288: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3621, - '-', 3047, - '.', 1408, - '0', 3479, - 'E', 1671, - 'I', 1929, - 'N', 1924, - '_', 1664, - '`', 695, - 'a', 1780, - 'b', 1829, - 'c', 1673, - 'd', 1713, - 'e', 1670, - 'f', 1674, - 'h', 1759, - 'i', 1657, - 'l', 1727, - 'm', 1676, - 'n', 1715, - 'o', 1901, - 'r', 1716, - 's', 1805, - 't', 1824, - 'u', 1855, - 'w', 1754, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 3559, + '-', 2987, + '.', 1349, + '0', 3417, + 'E', 1612, + 'I', 1870, + 'N', 1865, + '_', 1605, + '`', 634, + 'a', 1721, + 'b', 1770, + 'c', 1614, + 'd', 1654, + 'e', 1611, + 'f', 1615, + 'h', 1700, + 'i', 1598, + 'l', 1668, + 'm', 1617, + 'n', 1656, + 'o', 1842, + 'r', 1657, + 's', 1746, + 't', 1765, + 'u', 1796, + 'w', 1695, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(349); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + lookahead == ' ') SKIP(289); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 349: + case 289: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3621, - '-', 3047, - '.', 1408, - '0', 3479, - 'I', 1929, - 'N', 1924, - '_', 1664, - '`', 695, - 'a', 1780, - 'b', 1829, - 'c', 1673, - 'd', 1713, - 'e', 1789, - 'f', 1674, - 'h', 1759, - 'i', 1657, - 'l', 1727, - 'm', 1676, - 'n', 1715, - 'o', 1901, - 'r', 1716, - 's', 1805, - 't', 1824, - 'u', 1855, - 'w', 1754, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 3559, + '-', 2987, + '.', 1349, + '0', 3417, + 'I', 1870, + 'N', 1865, + '_', 1605, + '`', 634, + 'a', 1721, + 'b', 1770, + 'c', 1614, + 'd', 1654, + 'e', 1730, + 'f', 1615, + 'h', 1700, + 'i', 1598, + 'l', 1668, + 'm', 1617, + 'n', 1656, + 'o', 1842, + 'r', 1657, + 's', 1746, + 't', 1765, + 'u', 1796, + 'w', 1695, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(349); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + lookahead == ' ') SKIP(289); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 350: + case 290: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3621, - '-', 3047, - '.', 1408, - '0', 3430, - 'E', 1671, - 'I', 1929, - 'N', 1924, - '_', 1669, - '`', 695, - 'a', 1780, - 'b', 1829, - 'c', 1673, - 'd', 1713, - 'e', 1670, - 'f', 1674, - 'h', 1759, - 'i', 1657, - 'l', 1727, - 'm', 1676, - 'n', 1715, - 'o', 1901, - 'r', 1716, - 's', 1805, - 't', 1824, - 'u', 1855, - 'w', 1754, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 3559, + '-', 2987, + '.', 1349, + '0', 3368, + 'E', 1612, + 'I', 1870, + 'N', 1865, + '_', 1610, + '`', 634, + 'a', 1721, + 'b', 1770, + 'c', 1614, + 'd', 1654, + 'e', 1611, + 'f', 1615, + 'h', 1700, + 'i', 1598, + 'l', 1668, + 'm', 1617, + 'n', 1656, + 'o', 1842, + 'r', 1657, + 's', 1746, + 't', 1765, + 'u', 1796, + 'w', 1695, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(349); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); + lookahead == ' ') SKIP(289); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3370); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 351: + case 291: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3621, - '-', 3047, - '.', 3389, - '0', 3479, - '?', 3263, - 'I', 1929, - 'N', 1924, - '_', 1664, - '`', 695, - 'a', 1780, - 'b', 1829, - 'c', 1673, - 'd', 1713, - 'e', 1789, - 'f', 1674, - 'h', 1759, - 'i', 1657, - 'l', 1727, - 'm', 1676, - 'n', 1715, - 'o', 1901, - 'r', 1716, - 's', 1805, - 't', 1824, - 'u', 1855, - 'w', 1754, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 3559, + '-', 2987, + '.', 3327, + '0', 3417, + '?', 3201, + 'I', 1870, + 'N', 1865, + '_', 1605, + '`', 634, + 'a', 1721, + 'b', 1770, + 'c', 1614, + 'd', 1654, + 'e', 1730, + 'f', 1615, + 'h', 1700, + 'i', 1598, + 'l', 1668, + 'm', 1617, + 'n', 1656, + 'o', 1842, + 'r', 1657, + 's', 1746, + 't', 1765, + 'u', 1796, + 'w', 1695, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(347); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + lookahead == ' ') SKIP(287); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 352: + case 292: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3621, - '-', 3047, - '.', 3389, - '0', 3479, - 'E', 1671, - 'I', 1929, - 'N', 1924, - '_', 1664, - '`', 695, - 'a', 1780, - 'b', 1829, - 'c', 1673, - 'd', 1713, - 'e', 1670, - 'f', 1674, - 'h', 1759, - 'i', 1657, - 'l', 1727, - 'm', 1676, - 'n', 1715, - 'o', 1901, - 'r', 1716, - 's', 1805, - 't', 1824, - 'u', 1855, - 'w', 1754, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 3559, + '-', 2987, + '.', 3327, + '0', 3417, + 'E', 1612, + 'I', 1870, + 'N', 1865, + '_', 1605, + '`', 634, + 'a', 1721, + 'b', 1770, + 'c', 1614, + 'd', 1654, + 'e', 1611, + 'f', 1615, + 'h', 1700, + 'i', 1598, + 'l', 1668, + 'm', 1617, + 'n', 1656, + 'o', 1842, + 'r', 1657, + 's', 1746, + 't', 1765, + 'u', 1796, + 'w', 1695, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(349); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + lookahead == ' ') SKIP(289); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 353: + case 293: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3621, - '-', 3047, - '.', 3389, - '0', 3479, - 'I', 1929, - 'N', 1924, - '_', 1664, - '`', 695, - 'a', 1780, - 'b', 1829, - 'c', 1673, - 'd', 1713, - 'e', 1789, - 'f', 1674, - 'h', 1759, - 'i', 1657, - 'l', 1727, - 'm', 1676, - 'n', 1715, - 'o', 1901, - 'r', 1716, - 's', 1805, - 't', 1824, - 'u', 1855, - 'w', 1754, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 3559, + '-', 2987, + '.', 3327, + '0', 3417, + 'I', 1870, + 'N', 1865, + '_', 1605, + '`', 634, + 'a', 1721, + 'b', 1770, + 'c', 1614, + 'd', 1654, + 'e', 1730, + 'f', 1615, + 'h', 1700, + 'i', 1598, + 'l', 1668, + 'm', 1617, + 'n', 1656, + 'o', 1842, + 'r', 1657, + 's', 1746, + 't', 1765, + 'u', 1796, + 'w', 1695, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(349); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + lookahead == ' ') SKIP(289); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 354: + case 294: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3621, - '-', 3047, - '.', 1411, - '0', 3479, - 'E', 1671, - 'I', 1929, - 'N', 1924, - '_', 1664, - '`', 695, - 'a', 1780, - 'b', 1829, - 'c', 1673, - 'd', 1713, - 'e', 1670, - 'f', 1674, - 'h', 1759, - 'i', 1657, - 'l', 1727, - 'm', 1676, - 'n', 1715, - 'o', 1901, - 'r', 1716, - 's', 1805, - 't', 1824, - 'u', 1855, - 'w', 1754, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 3559, + '-', 2987, + '.', 1352, + '0', 3417, + 'E', 1612, + 'I', 1870, + 'N', 1865, + '_', 1605, + '`', 634, + 'a', 1721, + 'b', 1770, + 'c', 1614, + 'd', 1654, + 'e', 1611, + 'f', 1615, + 'h', 1700, + 'i', 1598, + 'l', 1668, + 'm', 1617, + 'n', 1656, + 'o', 1842, + 'r', 1657, + 's', 1746, + 't', 1765, + 'u', 1796, + 'w', 1695, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(349); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + lookahead == ' ') SKIP(289); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 355: + case 295: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3621, - '-', 3047, - '.', 1411, - '0', 3479, - 'I', 1929, - 'N', 1924, - '_', 1664, - '`', 695, - 'a', 1780, - 'b', 1829, - 'c', 1673, - 'd', 1713, - 'e', 1789, - 'f', 1674, - 'h', 1759, - 'i', 1657, - 'l', 1727, - 'm', 1676, - 'n', 1715, - 'o', 1901, - 'r', 1716, - 's', 1805, - 't', 1824, - 'u', 1855, - 'w', 1754, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 3559, + '-', 2987, + '.', 1352, + '0', 3417, + 'I', 1870, + 'N', 1865, + '_', 1605, + '`', 634, + 'a', 1721, + 'b', 1770, + 'c', 1614, + 'd', 1654, + 'e', 1730, + 'f', 1615, + 'h', 1700, + 'i', 1598, + 'l', 1668, + 'm', 1617, + 'n', 1656, + 'o', 1842, + 'r', 1657, + 's', 1746, + 't', 1765, + 'u', 1796, + 'w', 1695, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(349); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + lookahead == ' ') SKIP(289); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 356: + case 296: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3621, - '-', 3047, - '.', 1411, - '0', 3430, - 'E', 1671, - 'I', 1929, - 'N', 1924, - '_', 1669, - '`', 695, - 'a', 1780, - 'b', 1829, - 'c', 1673, - 'd', 1713, - 'e', 1670, - 'f', 1674, - 'h', 1759, - 'i', 1657, - 'l', 1727, - 'm', 1676, - 'n', 1715, - 'o', 1901, - 'r', 1716, - 's', 1805, - 't', 1824, - 'u', 1855, - 'w', 1754, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 3559, + '-', 2987, + '.', 1352, + '0', 3368, + 'E', 1612, + 'I', 1870, + 'N', 1865, + '_', 1610, + '`', 634, + 'a', 1721, + 'b', 1770, + 'c', 1614, + 'd', 1654, + 'e', 1611, + 'f', 1615, + 'h', 1700, + 'i', 1598, + 'l', 1668, + 'm', 1617, + 'n', 1656, + 'o', 1842, + 'r', 1657, + 's', 1746, + 't', 1765, + 'u', 1796, + 'w', 1695, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(349); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3432); + lookahead == ' ') SKIP(289); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3370); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 357: + case 297: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4469, - ',', 2987, - '-', 4468, - '.', 4465, - '0', 3474, - ';', 3627, - 'N', 4521, - '[', 2983, - ']', 2984, - '_', 4488, - '`', 695, - 'e', 4458, - 'f', 4501, - 'n', 4518, - 'o', 4459, - 't', 4511, - '{', 3169, - '\t', 357, - ' ', 357, - 'I', 4527, - 'i', 4527, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 3797, + ',', 3548, + '-', 573, + '.', 3794, + '0', 3411, + 'N', 3856, + '[', 2924, + ']', 2925, + '_', 3114, + '`', 634, + 'e', 3777, + 'f', 3824, + 'n', 3852, + 'o', 3778, + 't', 3839, + '{', 3109, + '}', 3110, + '\t', 3549, + ' ', 3549, + 'I', 3860, + 'i', 3860, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(652); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3879); END_STATE(); - case 358: + case 298: + ADVANCE_MAP( + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4267, + ',', 2928, + '-', 4266, + '.', 4263, + '0', 3412, + ';', 3565, + 'N', 4319, + '[', 2924, + ']', 2925, + '_', 4286, + '`', 634, + 'e', 4256, + 'f', 4299, + 'n', 4316, + 'o', 4257, + 't', 4309, + '{', 3109, + '\t', 298, + ' ', 298, + 'I', 4325, + 'i', 4325, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(589); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); + END_STATE(); + case 299: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4469, - ',', 2987, - '-', 4468, - '.', 4465, - '0', 3474, - '?', 3263, - 'N', 4521, - '[', 2983, - ']', 2984, - '_', 4488, - '`', 695, - 'e', 4458, - 'f', 4501, - 'n', 4518, - 'o', 4459, - 't', 4511, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4267, + ',', 2928, + '-', 4266, + '.', 4263, + '0', 3412, + '?', 3201, + 'N', 4319, + '[', 2924, + ']', 2925, + '_', 4286, + '`', 634, + 'e', 4256, + 'f', 4299, + 'n', 4316, + 'o', 4257, + 't', 4309, + '{', 3109, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(358); + lookahead == ' ') SKIP(299); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4527); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + lookahead == 'i') ADVANCE(4325); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); END_STATE(); - case 359: + case 300: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4469, - ',', 2987, - '-', 4468, - '.', 4465, - '0', 3474, - 'E', 4499, - 'N', 4521, - '[', 2983, - ']', 2984, - '_', 4488, - '`', 695, - 'e', 4460, - 'f', 4501, - 'n', 4518, - 'o', 4459, - 't', 4511, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4267, + ',', 2928, + '-', 4266, + '.', 4263, + '0', 3412, + 'E', 4297, + 'N', 4319, + '[', 2924, + ']', 2925, + '_', 4286, + '`', 634, + 'e', 4258, + 'f', 4299, + 'n', 4316, + 'o', 4257, + 't', 4309, + '{', 3109, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(361); + lookahead == ' ') SKIP(302); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4527); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + lookahead == 'i') ADVANCE(4325); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); END_STATE(); - case 360: + case 301: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4469, - ',', 2987, - '-', 4468, - '.', 4465, - '0', 3474, - 'N', 4521, - '[', 3546, - ']', 2984, - '_', 4488, - '`', 695, - 'e', 4458, - 'f', 4501, - 'n', 4518, - 'o', 4459, - 't', 4511, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4267, + ',', 2928, + '-', 4266, + '.', 4263, + '0', 3412, + 'N', 4319, + '[', 3484, + ']', 2925, + '_', 4286, + '`', 634, + 'e', 4256, + 'f', 4299, + 'n', 4316, + 'o', 4257, + 't', 4309, + '{', 3109, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(361); + lookahead == ' ') SKIP(302); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4527); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + lookahead == 'i') ADVANCE(4325); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); END_STATE(); - case 361: + case 302: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4469, - ',', 2987, - '-', 4468, - '.', 4465, - '0', 3474, - 'N', 4521, - '[', 2983, - ']', 2984, - '_', 4488, - '`', 695, - 'e', 4458, - 'f', 4501, - 'n', 4518, - 'o', 4459, - 't', 4511, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4267, + ',', 2928, + '-', 4266, + '.', 4263, + '0', 3412, + 'N', 4319, + '[', 2924, + ']', 2925, + '_', 4286, + '`', 634, + 'e', 4256, + 'f', 4299, + 'n', 4316, + 'o', 4257, + 't', 4309, + '{', 3109, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(361); + lookahead == ' ') SKIP(302); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4527); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + lookahead == 'i') ADVANCE(4325); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); END_STATE(); - case 362: + case 303: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4469, - ',', 2987, - '-', 4468, - '.', 4465, - '0', 3429, - 'E', 4499, - 'N', 4521, - '[', 2983, - ']', 2984, - '_', 4493, - '`', 695, - 'e', 4460, - 'f', 4501, - 'n', 4518, - 'o', 4459, - 't', 4511, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4267, + ',', 2928, + '-', 4266, + '.', 4263, + '0', 3367, + 'E', 4297, + 'N', 4319, + '[', 2924, + ']', 2925, + '_', 4291, + '`', 634, + 'e', 4258, + 'f', 4299, + 'n', 4316, + 'o', 4257, + 't', 4309, + '{', 3109, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(361); + lookahead == ' ') SKIP(302); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4527); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3444); + lookahead == 'i') ADVANCE(4325); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3382); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); END_STATE(); - case 363: + case 304: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4469, - ',', 2987, - '-', 4468, - '.', 4467, - '0', 3474, - 'E', 4499, - 'N', 4521, - '[', 2983, - ']', 2984, - '_', 4488, - '`', 695, - 'e', 4460, - 'f', 4501, - 'n', 4518, - 'o', 4459, - 't', 4511, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4267, + ',', 2928, + '-', 4266, + '.', 4265, + '0', 3412, + 'E', 4297, + 'N', 4319, + '[', 2924, + ']', 2925, + '_', 4286, + '`', 634, + 'e', 4258, + 'f', 4299, + 'n', 4316, + 'o', 4257, + 't', 4309, + '{', 3109, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(361); + lookahead == ' ') SKIP(302); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4527); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + lookahead == 'i') ADVANCE(4325); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); END_STATE(); - case 364: + case 305: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4469, - ',', 2987, - '-', 4468, - '.', 4467, - '0', 3474, - 'N', 4521, - '[', 2983, - ']', 2984, - '_', 4488, - '`', 695, - 'e', 4458, - 'f', 4501, - 'n', 4518, - 'o', 4459, - 't', 4511, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4267, + ',', 2928, + '-', 4266, + '.', 4265, + '0', 3412, + 'N', 4319, + '[', 2924, + ']', 2925, + '_', 4286, + '`', 634, + 'e', 4256, + 'f', 4299, + 'n', 4316, + 'o', 4257, + 't', 4309, + '{', 3109, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(361); + lookahead == ' ') SKIP(302); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4527); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + lookahead == 'i') ADVANCE(4325); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); END_STATE(); - case 365: + case 306: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4469, - ',', 2987, - '-', 4468, - '.', 4467, - '0', 3429, - 'E', 4499, - 'N', 4521, - '[', 2983, - ']', 2984, - '_', 4493, - '`', 695, - 'e', 4460, - 'f', 4501, - 'n', 4518, - 'o', 4459, - 't', 4511, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4267, + ',', 2928, + '-', 4266, + '.', 4265, + '0', 3367, + 'E', 4297, + 'N', 4319, + '[', 2924, + ']', 2925, + '_', 4291, + '`', 634, + 'e', 4258, + 'f', 4299, + 'n', 4316, + 'o', 4257, + 't', 4309, + '{', 3109, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(361); + lookahead == ' ') SKIP(302); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4527); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3444); + lookahead == 'i') ADVANCE(4325); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3382); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); END_STATE(); - case 366: + case 307: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4469, - ',', 2987, - '-', 4468, - '.', 3396, - '0', 3474, - '?', 3263, - 'N', 4521, - '[', 2983, - ']', 2984, - '_', 4488, - '`', 695, - 'e', 4458, - 'f', 4501, - 'n', 4518, - 'o', 4459, - 't', 4511, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4267, + ',', 2928, + '-', 4266, + '.', 3333, + '0', 3412, + '?', 3201, + 'N', 4319, + '[', 2924, + ']', 2925, + '_', 4286, + '`', 634, + 'e', 4256, + 'f', 4299, + 'n', 4316, + 'o', 4257, + 't', 4309, + '{', 3109, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(358); + lookahead == ' ') SKIP(299); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4527); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + lookahead == 'i') ADVANCE(4325); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); END_STATE(); - case 367: + case 308: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4469, - ',', 2987, - '-', 4468, - '.', 3396, - '0', 3474, - 'E', 4499, - 'N', 4521, - '[', 2983, - ']', 2984, - '_', 4488, - '`', 695, - 'e', 4460, - 'f', 4501, - 'n', 4518, - 'o', 4459, - 't', 4511, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4267, + ',', 2928, + '-', 4266, + '.', 3333, + '0', 3412, + 'E', 4297, + 'N', 4319, + '[', 2924, + ']', 2925, + '_', 4286, + '`', 634, + 'e', 4258, + 'f', 4299, + 'n', 4316, + 'o', 4257, + 't', 4309, + '{', 3109, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(361); + lookahead == ' ') SKIP(302); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4527); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + lookahead == 'i') ADVANCE(4325); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); END_STATE(); - case 368: + case 309: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4469, - ',', 2987, - '-', 4468, - '.', 3396, - '0', 3474, - 'N', 4521, - '[', 2983, - ']', 2984, - '_', 4488, - '`', 695, - 'e', 4458, - 'f', 4501, - 'n', 4518, - 'o', 4459, - 't', 4511, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4267, + ',', 2928, + '-', 4266, + '.', 3333, + '0', 3412, + 'N', 4319, + '[', 2924, + ']', 2925, + '_', 4286, + '`', 634, + 'e', 4256, + 'f', 4299, + 'n', 4316, + 'o', 4257, + 't', 4309, + '{', 3109, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(361); + lookahead == ' ') SKIP(302); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4527); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + lookahead == 'i') ADVANCE(4325); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); END_STATE(); - case 369: + case 310: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4469, - ',', 2987, - '-', 4468, - '.', 3383, - '0', 3474, - ';', 3627, - 'N', 4521, - '[', 2983, - ']', 2984, - '_', 4488, - '`', 695, - 'e', 4458, - 'f', 4501, - 'n', 4518, - 'o', 4459, - 't', 4511, - '{', 3169, - '\t', 357, - ' ', 357, - 'I', 4527, - 'i', 4527, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4267, + ',', 2928, + '-', 4266, + '.', 3320, + '0', 3412, + ';', 3565, + 'N', 4319, + '[', 2924, + ']', 2925, + '_', 4286, + '`', 634, + 'e', 4256, + 'f', 4299, + 'n', 4316, + 'o', 4257, + 't', 4309, + '{', 3109, + '\t', 298, + ' ', 298, + 'I', 4325, + 'i', 4325, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(652); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(589); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); END_STATE(); - case 370: + case 311: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4469, - ',', 2987, - '-', 4468, - '.', 3383, - '0', 3474, - '?', 3263, - 'N', 4521, - '[', 2983, - ']', 2984, - '_', 4488, - '`', 695, - 'e', 4458, - 'f', 4501, - 'n', 4518, - 'o', 4459, - 't', 4511, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4267, + ',', 2928, + '-', 4266, + '.', 3320, + '0', 3412, + '?', 3201, + 'N', 4319, + '[', 2924, + ']', 2925, + '_', 4286, + '`', 634, + 'e', 4256, + 'f', 4299, + 'n', 4316, + 'o', 4257, + 't', 4309, + '{', 3109, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(358); + lookahead == ' ') SKIP(299); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4527); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + lookahead == 'i') ADVANCE(4325); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); END_STATE(); - case 371: + case 312: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4469, - ',', 2987, - '-', 4468, - '.', 3383, - '0', 3474, - 'E', 4499, - 'N', 4521, - '[', 2983, - ']', 2984, - '_', 4488, - '`', 695, - 'e', 4460, - 'f', 4501, - 'n', 4518, - 'o', 4459, - 't', 4511, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4267, + ',', 2928, + '-', 4266, + '.', 3320, + '0', 3412, + 'E', 4297, + 'N', 4319, + '[', 2924, + ']', 2925, + '_', 4286, + '`', 634, + 'e', 4258, + 'f', 4299, + 'n', 4316, + 'o', 4257, + 't', 4309, + '{', 3109, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(361); + lookahead == ' ') SKIP(302); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4527); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + lookahead == 'i') ADVANCE(4325); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); END_STATE(); - case 372: + case 313: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4469, - ',', 3610, - '-', 4468, - '.', 4465, - '0', 3474, - 'E', 4499, - 'N', 4521, - '[', 2983, - ']', 2984, - '_', 4488, - '`', 695, - 'e', 4460, - 'f', 4501, - 'n', 4518, - 'o', 4459, - 't', 4511, - '{', 3169, - '\t', 3611, - ' ', 3611, - 'I', 4527, - 'i', 4527, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4267, + ',', 3548, + '-', 4266, + '.', 4263, + '0', 3412, + 'E', 4297, + 'N', 4319, + '[', 2924, + ']', 2925, + '_', 4286, + '`', 634, + 'e', 4258, + 'f', 4299, + 'n', 4316, + 'o', 4257, + 't', 4309, + '{', 3109, + '\t', 3549, + ' ', 3549, + 'I', 4325, + 'i', 4325, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); END_STATE(); - case 373: + case 314: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4469, - ',', 3610, - '-', 4468, - '.', 4465, - '0', 3474, - 'N', 4521, - '[', 3546, - ']', 2984, - '_', 4488, - '`', 695, - 'e', 4458, - 'f', 4501, - 'n', 4518, - 'o', 4459, - 't', 4511, - '{', 3169, - '}', 3170, - '\t', 3611, - ' ', 3611, - 'I', 4527, - 'i', 4527, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4267, + ',', 3548, + '-', 4266, + '.', 4263, + '0', 3412, + 'N', 4319, + '[', 3484, + ']', 2925, + '_', 4286, + '`', 634, + 'e', 4256, + 'f', 4299, + 'n', 4316, + 'o', 4257, + 't', 4309, + '{', 3109, + '}', 3110, + '\t', 3549, + ' ', 3549, + 'I', 4325, + 'i', 4325, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); END_STATE(); - case 374: + case 315: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4469, - ',', 3610, - '-', 4468, - '.', 4465, - '0', 3474, - 'N', 4521, - '[', 2983, - ']', 2984, - '_', 4488, - '`', 695, - 'e', 4458, - 'f', 4501, - 'n', 4518, - 'o', 4459, - 't', 4511, - '{', 3169, - '}', 3170, - '\t', 3611, - ' ', 3611, - 'I', 4527, - 'i', 4527, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4267, + ',', 3548, + '-', 4266, + '.', 4263, + '0', 3412, + 'N', 4319, + '[', 2924, + ']', 2925, + '_', 4286, + '`', 634, + 'e', 4256, + 'f', 4299, + 'n', 4316, + 'o', 4257, + 't', 4309, + '{', 3109, + '}', 3110, + '\t', 3549, + ' ', 3549, + 'I', 4325, + 'i', 4325, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); END_STATE(); - case 375: + case 316: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4469, - ',', 3610, - '-', 4468, - '.', 4465, - '0', 3429, - 'E', 4499, - 'N', 4521, - '[', 2983, - ']', 2984, - '_', 4493, - '`', 695, - 'e', 4460, - 'f', 4501, - 'n', 4518, - 'o', 4459, - 't', 4511, - '{', 3169, - '\t', 3611, - ' ', 3611, - 'I', 4527, - 'i', 4527, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4267, + ',', 3548, + '-', 4266, + '.', 4263, + '0', 3367, + 'E', 4297, + 'N', 4319, + '[', 2924, + ']', 2925, + '_', 4291, + '`', 634, + 'e', 4258, + 'f', 4299, + 'n', 4316, + 'o', 4257, + 't', 4309, + '{', 3109, + '\t', 3549, + ' ', 3549, + 'I', 4325, + 'i', 4325, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3444); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3382); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); END_STATE(); - case 376: + case 317: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4469, - ',', 3610, - '-', 4468, - '.', 4467, - '0', 3474, - 'E', 4499, - 'N', 4521, - '[', 2983, - ']', 2984, - '_', 4488, - '`', 695, - 'e', 4460, - 'f', 4501, - 'n', 4518, - 'o', 4459, - 't', 4511, - '{', 3169, - '\t', 3611, - ' ', 3611, - 'I', 4527, - 'i', 4527, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4267, + ',', 3548, + '-', 4266, + '.', 4265, + '0', 3412, + 'E', 4297, + 'N', 4319, + '[', 2924, + ']', 2925, + '_', 4286, + '`', 634, + 'e', 4258, + 'f', 4299, + 'n', 4316, + 'o', 4257, + 't', 4309, + '{', 3109, + '\t', 3549, + ' ', 3549, + 'I', 4325, + 'i', 4325, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); END_STATE(); - case 377: + case 318: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4469, - ',', 3610, - '-', 4468, - '.', 4467, - '0', 3474, - 'N', 4521, - '[', 2983, - ']', 2984, - '_', 4488, - '`', 695, - 'e', 4458, - 'f', 4501, - 'n', 4518, - 'o', 4459, - 't', 4511, - '{', 3169, - '\t', 3611, - ' ', 3611, - 'I', 4527, - 'i', 4527, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4267, + ',', 3548, + '-', 4266, + '.', 4265, + '0', 3412, + 'N', 4319, + '[', 2924, + ']', 2925, + '_', 4286, + '`', 634, + 'e', 4256, + 'f', 4299, + 'n', 4316, + 'o', 4257, + 't', 4309, + '{', 3109, + '\t', 3549, + ' ', 3549, + 'I', 4325, + 'i', 4325, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); END_STATE(); - case 378: + case 319: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4469, - ',', 3610, - '-', 4468, - '.', 4467, - '0', 3429, - 'E', 4499, - 'N', 4521, - '[', 2983, - ']', 2984, - '_', 4493, - '`', 695, - 'e', 4460, - 'f', 4501, - 'n', 4518, - 'o', 4459, - 't', 4511, - '{', 3169, - '\t', 3611, - ' ', 3611, - 'I', 4527, - 'i', 4527, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4267, + ',', 3548, + '-', 4266, + '.', 4265, + '0', 3367, + 'E', 4297, + 'N', 4319, + '[', 2924, + ']', 2925, + '_', 4291, + '`', 634, + 'e', 4258, + 'f', 4299, + 'n', 4316, + 'o', 4257, + 't', 4309, + '{', 3109, + '\t', 3549, + ' ', 3549, + 'I', 4325, + 'i', 4325, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3444); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3382); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); END_STATE(); - case 379: + case 320: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4469, - ',', 3610, - '-', 4468, - '.', 3396, - '0', 3474, - '?', 3263, - 'N', 4521, - '[', 2983, - ']', 2984, - '_', 4488, - '`', 695, - 'e', 4458, - 'f', 4501, - 'n', 4518, - 'o', 4459, - 't', 4511, - '{', 3169, - '\t', 3611, - ' ', 3611, - 'I', 4527, - 'i', 4527, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4267, + ',', 3548, + '-', 4266, + '.', 3333, + '0', 3412, + '?', 3201, + 'N', 4319, + '[', 2924, + ']', 2925, + '_', 4286, + '`', 634, + 'e', 4256, + 'f', 4299, + 'n', 4316, + 'o', 4257, + 't', 4309, + '{', 3109, + '\t', 3549, + ' ', 3549, + 'I', 4325, + 'i', 4325, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); END_STATE(); - case 380: + case 321: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4469, - ',', 3610, - '-', 4468, - '.', 3396, - '0', 3474, - 'E', 4499, - 'N', 4521, - '[', 2983, - ']', 2984, - '_', 4488, - '`', 695, - 'e', 4460, - 'f', 4501, - 'n', 4518, - 'o', 4459, - 't', 4511, - '{', 3169, - '\t', 3611, - ' ', 3611, - 'I', 4527, - 'i', 4527, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4267, + ',', 3548, + '-', 4266, + '.', 3333, + '0', 3412, + 'E', 4297, + 'N', 4319, + '[', 2924, + ']', 2925, + '_', 4286, + '`', 634, + 'e', 4258, + 'f', 4299, + 'n', 4316, + 'o', 4257, + 't', 4309, + '{', 3109, + '\t', 3549, + ' ', 3549, + 'I', 4325, + 'i', 4325, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); END_STATE(); - case 381: + case 322: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4469, - ',', 3610, - '-', 4468, - '.', 3396, - '0', 3474, - 'N', 4521, - '[', 2983, - ']', 2984, - '_', 4488, - '`', 695, - 'e', 4458, - 'f', 4501, - 'n', 4518, - 'o', 4459, - 't', 4511, - '{', 3169, - '\t', 3611, - ' ', 3611, - 'I', 4527, - 'i', 4527, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4267, + ',', 3548, + '-', 4266, + '.', 3333, + '0', 3412, + 'N', 4319, + '[', 2924, + ']', 2925, + '_', 4286, + '`', 634, + 'e', 4256, + 'f', 4299, + 'n', 4316, + 'o', 4257, + 't', 4309, + '{', 3109, + '\t', 3549, + ' ', 3549, + 'I', 4325, + 'i', 4325, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); END_STATE(); - case 382: + case 323: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4469, - ',', 3610, - '-', 4468, - '.', 3383, - '0', 3474, - ';', 3627, - 'N', 4521, - '[', 2983, - ']', 2984, - '_', 4488, - '`', 695, - 'e', 4458, - 'f', 4501, - 'n', 4518, - 'o', 4459, - 't', 4511, - '{', 3169, - '\t', 3612, - ' ', 3612, - 'I', 4527, - 'i', 4527, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4267, + ',', 3548, + '-', 4266, + '.', 3320, + '0', 3412, + ';', 3565, + 'N', 4319, + '[', 2924, + ']', 2925, + '_', 4286, + '`', 634, + 'e', 4256, + 'f', 4299, + 'n', 4316, + 'o', 4257, + 't', 4309, + '{', 3109, + '\t', 3550, + ' ', 3550, + 'I', 4325, + 'i', 4325, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3613); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3551); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); END_STATE(); - case 383: + case 324: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4469, - ',', 3610, - '-', 4468, - '.', 3383, - '0', 3474, - '?', 3263, - 'N', 4521, - '[', 2983, - ']', 2984, - '_', 4488, - '`', 695, - 'e', 4458, - 'f', 4501, - 'n', 4518, - 'o', 4459, - 't', 4511, - '{', 3169, - '\t', 3611, - ' ', 3611, - 'I', 4527, - 'i', 4527, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4267, + ',', 3548, + '-', 4266, + '.', 3320, + '0', 3412, + '?', 3201, + 'N', 4319, + '[', 2924, + ']', 2925, + '_', 4286, + '`', 634, + 'e', 4256, + 'f', 4299, + 'n', 4316, + 'o', 4257, + 't', 4309, + '{', 3109, + '\t', 3549, + ' ', 3549, + 'I', 4325, + 'i', 4325, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); END_STATE(); - case 384: + case 325: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4469, - ',', 3610, - '-', 4468, - '.', 3383, - '0', 3474, - 'E', 4499, - 'N', 4521, - '[', 2983, - ']', 2984, - '_', 4488, - '`', 695, - 'e', 4460, - 'f', 4501, - 'n', 4518, - 'o', 4459, - 't', 4511, - '{', 3169, - '\t', 3611, - ' ', 3611, - 'I', 4527, - 'i', 4527, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4267, + ',', 3548, + '-', 4266, + '.', 3320, + '0', 3412, + 'E', 4297, + 'N', 4319, + '[', 2924, + ']', 2925, + '_', 4286, + '`', 634, + 'e', 4258, + 'f', 4299, + 'n', 4316, + 'o', 4257, + 't', 4309, + '{', 3109, + '\t', 3549, + ' ', 3549, + 'I', 4325, + 'i', 4325, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); END_STATE(); - case 385: + case 326: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4469, - ',', 3610, - '-', 4468, - '.', 3383, - '0', 3474, - 'N', 4521, - '[', 2983, - ']', 2984, - '_', 4488, - '`', 695, - 'e', 4458, - 'f', 4501, - 'n', 4518, - 'o', 4459, - 't', 4511, - '{', 3169, - '\t', 3611, - ' ', 3611, - 'I', 4527, - 'i', 4527, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4267, + ',', 3548, + '-', 4266, + '.', 3320, + '0', 3412, + 'N', 4319, + '[', 2924, + ']', 2925, + '_', 4286, + '`', 634, + 'e', 4256, + 'f', 4299, + 'n', 4316, + 'o', 4257, + 't', 4309, + '{', 3109, + '\t', 3549, + ' ', 3549, + 'I', 4325, + 'i', 4325, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); END_STATE(); - case 386: + case 327: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3623, - ',', 3610, - '-', 3049, - '.', 1200, - '0', 3480, - 'I', 1386, - 'N', 1381, - '[', 3546, - ']', 2984, - '_', 1219, - '`', 695, - 'a', 1300, - 'b', 1335, - 'c', 1236, - 'd', 1264, - 'e', 1305, - 'f', 1233, - 'h', 1287, - 'i', 1214, - 'l', 1268, - 'm', 1229, - 'n', 1262, - 'o', 1373, - 'r', 1252, - 's', 1316, - 't', 1329, - 'u', 1346, - 'w', 1283, - '}', 3170, - '\t', 3611, - ' ', 3611, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 3561, + ',', 3548, + '-', 2989, + '.', 1141, + '0', 3418, + 'I', 1327, + 'N', 1322, + '[', 3484, + ']', 2925, + '_', 1160, + '`', 634, + 'a', 1241, + 'b', 1276, + 'c', 1177, + 'd', 1205, + 'e', 1246, + 'f', 1174, + 'h', 1228, + 'i', 1155, + 'l', 1209, + 'm', 1170, + 'n', 1203, + 'o', 1314, + 'r', 1193, + 's', 1257, + 't', 1270, + 'u', 1287, + 'w', 1224, + '}', 3110, + '\t', 3549, + ' ', 3549, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4835); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + lookahead == '^') ADVANCE(4633); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1399); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1340); END_STATE(); - case 387: + case 328: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4569, - ',', 2987, - '-', 4568, - '.', 4560, - '0', 3428, - 'E', 4578, - 'G', 4581, - 'K', 4581, - 'M', 4581, - 'N', 4626, - 'P', 4581, - 'T', 4581, - '[', 2983, - ']', 2984, - '_', 4583, - '`', 695, - 'd', 4597, - 'e', 4553, - 'f', 4596, - 'g', 4580, - 'h', 4612, - 'k', 4580, - 'm', 4582, - 'n', 4617, - 'o', 4552, - 'p', 4580, - 's', 4602, - 't', 4579, - 'u', 4618, - 'w', 4605, - '{', 3169, - 0xb5, 4618, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4367, + ',', 2928, + '-', 4366, + '.', 4358, + '0', 3366, + 'E', 4376, + 'G', 4379, + 'K', 4379, + 'M', 4379, + 'N', 4424, + 'P', 4379, + 'T', 4379, + '[', 2924, + ']', 2925, + '_', 4381, + '`', 634, + 'd', 4395, + 'e', 4351, + 'f', 4394, + 'g', 4378, + 'h', 4410, + 'k', 4378, + 'm', 4380, + 'n', 4415, + 'o', 4350, + 'p', 4378, + 's', 4400, + 't', 4377, + 'u', 4416, + 'w', 4403, + '{', 3109, + 0xb5, 4416, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(361); + lookahead == ' ') SKIP(302); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); + lookahead == 'b') ADVANCE(3462); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4633); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3443); + lookahead == 'i') ADVANCE(4431); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3381); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 388: + case 329: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4569, - ',', 2987, - '-', 4568, - '.', 4560, - '0', 3428, - 'E', 4592, - 'N', 4626, - '[', 2983, - ']', 2984, - '_', 4583, - '`', 695, - 'e', 4554, - 'f', 4596, - 'n', 4622, - 'o', 4552, - 't', 4613, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4367, + ',', 2928, + '-', 4366, + '.', 4358, + '0', 3366, + 'E', 4389, + 'N', 4424, + '[', 2924, + ']', 2925, + '_', 4381, + '`', 634, + 'e', 4352, + 'f', 4394, + 'n', 4420, + 'o', 4350, + 't', 4411, + '{', 3109, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(361); + lookahead == ' ') SKIP(302); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4633); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3443); + lookahead == 'i') ADVANCE(4431); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3381); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 389: + case 330: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4569, - ',', 2987, - '-', 4568, - '.', 4560, - '0', 3478, - 'E', 4578, - 'G', 4581, - 'K', 4581, - 'M', 4581, - 'N', 4626, - 'P', 4581, - 'T', 4581, - '[', 2983, - ']', 2984, - '_', 4588, - '`', 695, - 'd', 4597, - 'e', 4553, - 'f', 4596, - 'g', 4580, - 'h', 4612, - 'k', 4580, - 'm', 4582, - 'n', 4617, - 'o', 4552, - 'p', 4580, - 's', 4602, - 't', 4579, - 'u', 4618, - 'w', 4605, - '{', 3169, - 0xb5, 4618, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4367, + ',', 2928, + '-', 4366, + '.', 4358, + '0', 3416, + 'E', 4376, + 'G', 4379, + 'K', 4379, + 'M', 4379, + 'N', 4424, + 'P', 4379, + 'T', 4379, + '[', 2924, + ']', 2925, + '_', 4393, + '`', 634, + 'd', 4395, + 'e', 4351, + 'f', 4394, + 'g', 4378, + 'h', 4410, + 'k', 4378, + 'm', 4380, + 'n', 4415, + 'o', 4350, + 'p', 4378, + 's', 4400, + 't', 4377, + 'u', 4416, + 'w', 4403, + '{', 3109, + 0xb5, 4416, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(361); + lookahead == ' ') SKIP(302); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); + lookahead == 'b') ADVANCE(3462); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4633); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3501); + lookahead == 'i') ADVANCE(4431); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3439); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 390: + case 331: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4569, - ',', 2987, - '-', 4568, - '.', 4560, - '0', 3478, - 'E', 4581, - 'G', 4581, - 'K', 4581, - 'M', 4581, - 'N', 4626, - 'P', 4581, - 'T', 4581, - '[', 2983, - ']', 2984, - '_', 4588, - '`', 695, - 'd', 4597, - 'e', 4550, - 'f', 4596, - 'g', 4580, - 'h', 4612, - 'k', 4580, - 'm', 4582, - 'n', 4617, - 'o', 4552, - 'p', 4580, - 's', 4602, - 't', 4579, - 'u', 4618, - 'w', 4605, - '{', 3169, - 0xb5, 4618, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4367, + ',', 2928, + '-', 4366, + '.', 4358, + '0', 3416, + 'E', 4379, + 'G', 4379, + 'K', 4379, + 'M', 4379, + 'N', 4424, + 'P', 4379, + 'T', 4379, + '[', 2924, + ']', 2925, + '_', 4393, + '`', 634, + 'd', 4395, + 'e', 4348, + 'f', 4394, + 'g', 4378, + 'h', 4410, + 'k', 4378, + 'm', 4380, + 'n', 4415, + 'o', 4350, + 'p', 4378, + 's', 4400, + 't', 4377, + 'u', 4416, + 'w', 4403, + '{', 3109, + 0xb5, 4416, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(361); + lookahead == ' ') SKIP(302); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); + lookahead == 'b') ADVANCE(3462); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4633); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3501); + lookahead == 'i') ADVANCE(4431); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3439); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 391: + case 332: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4569, - ',', 2987, - '-', 4568, - '.', 4560, - '0', 3478, - 'E', 4592, - 'N', 4626, - '[', 2983, - ']', 2984, - '_', 4588, - '`', 695, - 'e', 4554, - 'f', 4596, - 'n', 4622, - 'o', 4552, - 't', 4613, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4367, + ',', 2928, + '-', 4366, + '.', 4358, + '0', 3416, + 'E', 4389, + 'N', 4424, + '[', 2924, + ']', 2925, + '_', 4393, + '`', 634, + 'e', 4352, + 'f', 4394, + 'n', 4420, + 'o', 4350, + 't', 4411, + '{', 3109, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(361); + lookahead == ' ') SKIP(302); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4633); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3501); + lookahead == 'i') ADVANCE(4431); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3439); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 392: + case 333: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4569, - ',', 2987, - '-', 4568, - '.', 4560, - '0', 3478, - 'N', 4626, - '[', 2983, - ']', 2984, - '_', 4588, - '`', 695, - 'e', 4551, - 'f', 4596, - 'n', 4622, - 'o', 4552, - 't', 4613, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4367, + ',', 2928, + '-', 4366, + '.', 4358, + '0', 3416, + 'N', 4424, + '[', 2924, + ']', 2925, + '_', 4393, + '`', 634, + 'e', 4349, + 'f', 4394, + 'n', 4420, + 'o', 4350, + 't', 4411, + '{', 3109, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(361); + lookahead == ' ') SKIP(302); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4633); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3501); + lookahead == 'i') ADVANCE(4431); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3439); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 393: + case 334: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4569, - ',', 2987, - '-', 4568, - '.', 4559, - '0', 3428, - 'E', 4592, - 'N', 4626, - '[', 2983, - ']', 2984, - '_', 4583, - '`', 695, - 'e', 4554, - 'f', 4596, - 'n', 4622, - 'o', 4552, - 't', 4613, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4367, + ',', 2928, + '-', 4366, + '.', 4357, + '0', 3366, + 'E', 4389, + 'N', 4424, + '[', 2924, + ']', 2925, + '_', 4381, + '`', 634, + 'e', 4352, + 'f', 4394, + 'n', 4420, + 'o', 4350, + 't', 4411, + '{', 3109, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(361); + lookahead == ' ') SKIP(302); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4633); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3443); + lookahead == 'i') ADVANCE(4431); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3381); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 394: + case 335: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4569, - ',', 2987, - '-', 4568, - '.', 4559, - '0', 3478, - 'E', 4592, - 'N', 4626, - '[', 2983, - ']', 2984, - '_', 4588, - '`', 695, - 'e', 4554, - 'f', 4596, - 'n', 4622, - 'o', 4552, - 't', 4613, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4367, + ',', 2928, + '-', 4366, + '.', 4357, + '0', 3416, + 'E', 4389, + 'N', 4424, + '[', 2924, + ']', 2925, + '_', 4393, + '`', 634, + 'e', 4352, + 'f', 4394, + 'n', 4420, + 'o', 4350, + 't', 4411, + '{', 3109, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(361); + lookahead == ' ') SKIP(302); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4633); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3501); + lookahead == 'i') ADVANCE(4431); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3439); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 395: + case 336: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4569, - ',', 2987, - '-', 4568, - '.', 4559, - '0', 3478, - 'N', 4626, - '[', 2983, - ']', 2984, - '_', 4588, - '`', 695, - 'e', 4551, - 'f', 4596, - 'n', 4622, - 'o', 4552, - 't', 4613, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4367, + ',', 2928, + '-', 4366, + '.', 4357, + '0', 3416, + 'N', 4424, + '[', 2924, + ']', 2925, + '_', 4393, + '`', 634, + 'e', 4349, + 'f', 4394, + 'n', 4420, + 'o', 4350, + 't', 4411, + '{', 3109, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(361); + lookahead == ' ') SKIP(302); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4633); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3501); + lookahead == 'i') ADVANCE(4431); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3439); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 396: + case 337: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4569, - ',', 2987, - '-', 4568, - '.', 3397, - '0', 3478, - 'E', 4578, - 'G', 4581, - 'K', 4581, - 'M', 4581, - 'N', 4626, - 'P', 4581, - 'T', 4581, - '[', 2983, - ']', 2984, - '_', 4588, - '`', 695, - 'd', 4597, - 'e', 4553, - 'f', 4596, - 'g', 4580, - 'h', 4612, - 'k', 4580, - 'm', 4582, - 'n', 4617, - 'o', 4552, - 'p', 4580, - 's', 4602, - 't', 4579, - 'u', 4618, - 'w', 4605, - '{', 3169, - 0xb5, 4618, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4367, + ',', 2928, + '-', 4366, + '.', 3334, + '0', 3416, + 'E', 4376, + 'G', 4379, + 'K', 4379, + 'M', 4379, + 'N', 4424, + 'P', 4379, + 'T', 4379, + '[', 2924, + ']', 2925, + '_', 4393, + '`', 634, + 'd', 4395, + 'e', 4351, + 'f', 4394, + 'g', 4378, + 'h', 4410, + 'k', 4378, + 'm', 4380, + 'n', 4415, + 'o', 4350, + 'p', 4378, + 's', 4400, + 't', 4377, + 'u', 4416, + 'w', 4403, + '{', 3109, + 0xb5, 4416, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(361); + lookahead == ' ') SKIP(302); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); + lookahead == 'b') ADVANCE(3462); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4633); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3501); + lookahead == 'i') ADVANCE(4431); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3439); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 397: + case 338: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4569, - ',', 2987, - '-', 4568, - '.', 3397, - '0', 3478, - 'E', 4592, - 'N', 4626, - '[', 2983, - ']', 2984, - '_', 4588, - '`', 695, - 'e', 4554, - 'f', 4596, - 'n', 4622, - 'o', 4552, - 't', 4613, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4367, + ',', 2928, + '-', 4366, + '.', 3334, + '0', 3416, + 'E', 4389, + 'N', 4424, + '[', 2924, + ']', 2925, + '_', 4393, + '`', 634, + 'e', 4352, + 'f', 4394, + 'n', 4420, + 'o', 4350, + 't', 4411, + '{', 3109, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(361); + lookahead == ' ') SKIP(302); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4633); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3501); + lookahead == 'i') ADVANCE(4431); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3439); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 398: + case 339: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4569, - ',', 2987, - '-', 4568, - '.', 3386, - '0', 3478, - 'E', 4592, - 'N', 4626, - '[', 2983, - ']', 2984, - '_', 4588, - '`', 695, - 'e', 4554, - 'f', 4596, - 'n', 4622, - 'o', 4552, - 't', 4613, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4367, + ',', 2928, + '-', 4366, + '.', 3324, + '0', 3416, + 'E', 4389, + 'N', 4424, + '[', 2924, + ']', 2925, + '_', 4393, + '`', 634, + 'e', 4352, + 'f', 4394, + 'n', 4420, + 'o', 4350, + 't', 4411, + '{', 3109, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(361); + lookahead == ' ') SKIP(302); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4633); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3501); + lookahead == 'i') ADVANCE(4431); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3439); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 399: + case 340: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4569, - ',', 3610, - '-', 4568, - '.', 4559, - '0', 3478, - 'N', 4626, - '[', 2983, - ']', 2984, - '_', 4588, - '`', 695, - 'e', 4551, - 'f', 4596, - 'n', 4622, - 'o', 4552, - 't', 4613, - '{', 3169, - '\t', 3611, - ' ', 3611, - 'I', 4633, - 'i', 4633, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4367, + ',', 3548, + '-', 4366, + '.', 4357, + '0', 3416, + 'N', 4424, + '[', 2924, + ']', 2925, + '_', 4393, + '`', 634, + 'e', 4349, + 'f', 4394, + 'n', 4420, + 'o', 4350, + 't', 4411, + '{', 3109, + '\t', 3549, + ' ', 3549, + 'I', 4431, + 'i', 4431, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3501); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3439); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 400: + case 341: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 3624, - '-', 3052, - '.', 1409, - '0', 3479, - 'I', 1929, - 'N', 1924, - '_', 1664, - '`', 695, - 'a', 1780, - 'b', 1829, - 'c', 1673, - 'd', 1713, - 'e', 1789, - 'f', 1674, - 'h', 1759, - 'i', 1657, - 'l', 1727, - 'm', 1676, - 'n', 1715, - 'o', 1901, - 'r', 1716, - 's', 1805, - 't', 1824, - 'u', 1855, - 'w', 1754, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 3562, + '-', 2992, + '.', 1350, + '0', 3417, + 'I', 1870, + 'N', 1865, + '_', 1605, + '`', 634, + 'a', 1721, + 'b', 1770, + 'c', 1614, + 'd', 1654, + 'e', 1730, + 'f', 1615, + 'h', 1700, + 'i', 1598, + 'l', 1668, + 'm', 1617, + 'n', 1656, + 'o', 1842, + 'r', 1657, + 's', 1746, + 't', 1765, + 'u', 1796, + 'w', 1695, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(400); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3502); + lookahead == ' ') SKIP(341); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 401: + case 342: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - '(', 2985, - '+', 4472, - ',', 2987, - '-', 4471, - '.', 4466, - '0', 3474, - 'N', 4521, - '[', 2983, - ']', 2984, - '_', 4488, - '`', 695, - 'e', 4458, - 'f', 4501, - 'n', 4518, - 'o', 4459, - 't', 4511, - '{', 3169, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + '(', 2926, + '+', 4270, + ',', 2928, + '-', 4269, + '.', 4264, + '0', 3412, + 'N', 4319, + '[', 2924, + ']', 2925, + '_', 4286, + '`', 634, + 'e', 4256, + 'f', 4299, + 'n', 4316, + 'o', 4257, + 't', 4309, + '{', 3109, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(401); + lookahead == ' ') SKIP(342); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4527); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3497); + lookahead == 'i') ADVANCE(4325); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3435); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4549); - END_STATE(); - case 402: - ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - ',', 2987, - '-', 3030, - '.', 3378, - ':', 2980, - ';', 3627, - '=', 1142, - '>', 3018, - '?', 3263, - '`', 695, - '\t', 405, - ' ', 405, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(652); - if (lookahead != 0 && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < ':' || '@' < lookahead) && - lookahead != '[' && - lookahead != ']' && - lookahead != '^' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2720); - END_STATE(); - case 403: - ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - ',', 2987, - '-', 3030, - ':', 3615, - '=', 3764, - '>', 3018, - '`', 695, - '{', 3169, - '\t', 404, - ' ', 404, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(649); - if (lookahead != 0 && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < ':' || '@' < lookahead) && - lookahead != '[' && - lookahead != ']' && - lookahead != '^' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2720); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4347); END_STATE(); - case 404: + case 343: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - ',', 2987, - '-', 3030, - ':', 3615, - '>', 3018, - '`', 695, - '{', 3169, - '\t', 404, - ' ', 404, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + ',', 2928, + '-', 2970, + '.', 3316, + ':', 3553, + ';', 3565, + '=', 3694, + '>', 2958, + '?', 3201, + '`', 634, + '{', 3109, + '\t', 344, + ' ', 344, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(649); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(585); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && @@ -26586,26 +24088,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '^' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2720); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2661); END_STATE(); - case 405: + case 344: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '$', 2989, - '\'', 585, - ',', 2987, - '-', 3030, - ':', 2980, - ';', 3627, - '=', 1142, - '>', 3018, - '?', 3263, - '`', 695, - '\t', 405, - ' ', 405, + '"', 3524, + '#', 4822, + '$', 2929, + '\'', 525, + ',', 2928, + '-', 2970, + ':', 3553, + ';', 3565, + '>', 2958, + '?', 3201, + '`', 634, + '{', 3109, + '\t', 344, + ' ', 344, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(652); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(585); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && @@ -26613,939 +24115,1004 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '^' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2720); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2661); END_STATE(); - case 406: + case 345: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '\'', 585, - '+', 1405, - ',', 3610, - '-', 635, - '.', 1661, - 'I', 1929, - 'N', 1924, - ']', 2984, - '_', 1664, - '`', 695, - 'a', 1790, - 'b', 1846, - 'c', 1688, - 'd', 1728, - 'e', 1792, - 'f', 1675, - 'h', 1767, - 'i', 1656, - 'l', 1739, - 'm', 1686, - 'n', 1733, - 'o', 1902, - 'r', 1744, - 's', 1816, - 't', 1830, - 'u', 1861, - 'w', 1758, - '\t', 3611, - ' ', 3611, + '"', 3524, + '#', 4822, + '\'', 525, + '+', 1346, + ',', 3548, + '-', 573, + '.', 1602, + 'I', 1870, + 'N', 1865, + ']', 2925, + '_', 1605, + '`', 634, + 'a', 1731, + 'b', 1787, + 'c', 1629, + 'd', 1669, + 'e', 1733, + 'f', 1616, + 'h', 1708, + 'i', 1597, + 'l', 1680, + 'm', 1627, + 'n', 1674, + 'o', 1843, + 'r', 1685, + 's', 1757, + 't', 1771, + 'u', 1802, + 'w', 1699, + '\t', 3549, + ' ', 3549, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 407: + case 346: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '\'', 585, - '+', 1405, - '-', 616, - '.', 3404, - '?', 3263, - 'I', 1929, - 'N', 1924, - '_', 1664, - '`', 695, - 'a', 1790, - 'b', 1846, - 'c', 1688, - 'd', 1728, - 'e', 1792, - 'f', 1675, - 'h', 1767, - 'i', 1656, - 'l', 1739, - 'm', 1686, - 'n', 1733, - 'o', 1902, - 'r', 1744, - 's', 1816, - 't', 1830, - 'u', 1861, - 'w', 1758, + '"', 3524, + '#', 4822, + '\'', 525, + '+', 1346, + '-', 556, + '.', 3342, + '?', 3201, + 'I', 1870, + 'N', 1865, + '_', 1605, + '`', 634, + 'a', 1731, + 'b', 1787, + 'c', 1629, + 'd', 1669, + 'e', 1733, + 'f', 1616, + 'h', 1708, + 'i', 1597, + 'l', 1680, + 'm', 1627, + 'n', 1674, + 'o', 1843, + 'r', 1685, + 's', 1757, + 't', 1771, + 'u', 1802, + 'w', 1699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(411); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1943); + lookahead == ' ') SKIP(350); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1884); END_STATE(); - case 408: + case 347: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '\'', 585, - '+', 1405, - '-', 616, - '.', 3404, - 'I', 1929, - 'N', 1924, - '_', 1664, - '`', 695, - 'a', 1790, - 'b', 1846, - 'c', 1688, - 'd', 1728, - 'e', 1792, - 'f', 1675, - 'h', 1767, - 'i', 1656, - 'l', 1739, - 'm', 1686, - 'n', 1733, - 'o', 1902, - 'r', 1744, - 's', 1816, - 't', 1830, - 'u', 1861, - 'w', 1758, + '"', 3524, + '#', 4822, + '\'', 525, + '+', 1346, + '-', 556, + '.', 3342, + 'I', 1870, + 'N', 1865, + '_', 1605, + '`', 634, + 'a', 1731, + 'b', 1787, + 'c', 1629, + 'd', 1669, + 'e', 1733, + 'f', 1616, + 'h', 1708, + 'i', 1597, + 'l', 1680, + 'm', 1627, + 'n', 1674, + 'o', 1843, + 'r', 1685, + 's', 1757, + 't', 1771, + 'u', 1802, + 'w', 1699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(412); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1943); + lookahead == ' ') SKIP(351); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1884); END_STATE(); - case 409: + case 348: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '\'', 585, - '+', 1405, - '-', 616, - '.', 1661, - ':', 3615, - ';', 3627, - 'I', 1929, - 'N', 1924, - '_', 1664, - '`', 695, - 'a', 1790, - 'b', 1846, - 'c', 1688, - 'd', 1728, - 'e', 1792, - 'f', 1675, - 'h', 1767, - 'i', 1656, - 'l', 1739, - 'm', 1686, - 'n', 1733, - 'o', 1902, - 'r', 1744, - 's', 1816, - 't', 1830, - 'u', 1861, - 'w', 1758, - '\t', 409, - ' ', 409, + '"', 3524, + '#', 4822, + '\'', 525, + '+', 1346, + '-', 556, + '.', 1602, + ':', 3553, + ';', 3565, + 'I', 1870, + 'N', 1865, + '_', 1605, + '`', 634, + 'a', 1731, + 'b', 1787, + 'c', 1629, + 'd', 1669, + 'e', 1733, + 'f', 1616, + 'h', 1708, + 'i', 1597, + 'l', 1680, + 'm', 1627, + 'n', 1674, + 'o', 1843, + 'r', 1685, + 's', 1757, + 't', 1771, + 'u', 1802, + 'w', 1699, + '\t', 348, + ' ', 348, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(648); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(585); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 410: + case 349: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '\'', 585, - '+', 1405, - '-', 616, - '.', 1661, - '=', 3764, - 'I', 2876, - 'N', 2868, - '_', 2744, - '`', 695, - 'a', 2799, - 'b', 2828, - 'c', 2756, - 'd', 2765, - 'e', 2802, - 'f', 2751, - 'h', 2790, - 'i', 2739, - 'l', 2772, - 'm', 2753, - 'n', 2766, - 'o', 2860, - 'r', 2767, - 's', 2815, - 't', 2823, - 'u', 2838, - 'w', 2787, + '"', 3524, + '#', 4822, + '\'', 525, + '+', 1346, + '-', 556, + '.', 1602, + '=', 3694, + 'I', 2817, + 'N', 2809, + '_', 2685, + '`', 634, + 'a', 2740, + 'b', 2769, + 'c', 2697, + 'd', 2706, + 'e', 2743, + 'f', 2692, + 'h', 2731, + 'i', 2680, + 'l', 2713, + 'm', 2694, + 'n', 2707, + 'o', 2801, + 'r', 2708, + 's', 2756, + 't', 2764, + 'u', 2779, + 'w', 2728, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(412); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2744); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2899); + lookahead == ' ') SKIP(351); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2685); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2840); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(1943); + (lookahead < ']' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 411: + case 350: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '\'', 585, - '+', 1405, - '-', 616, - '.', 1661, - '?', 3263, - 'I', 1929, - 'N', 1924, - '_', 1664, - '`', 695, - 'a', 1790, - 'b', 1846, - 'c', 1688, - 'd', 1728, - 'e', 1792, - 'f', 1675, - 'h', 1767, - 'i', 1656, - 'l', 1739, - 'm', 1686, - 'n', 1733, - 'o', 1902, - 'r', 1744, - 's', 1816, - 't', 1830, - 'u', 1861, - 'w', 1758, + '"', 3524, + '#', 4822, + '\'', 525, + '+', 1346, + '-', 556, + '.', 1602, + '?', 3201, + 'I', 1870, + 'N', 1865, + '_', 1605, + '`', 634, + 'a', 1731, + 'b', 1787, + 'c', 1629, + 'd', 1669, + 'e', 1733, + 'f', 1616, + 'h', 1708, + 'i', 1597, + 'l', 1680, + 'm', 1627, + 'n', 1674, + 'o', 1843, + 'r', 1685, + 's', 1757, + 't', 1771, + 'u', 1802, + 'w', 1699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(411); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1943); + lookahead == ' ') SKIP(350); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1884); END_STATE(); - case 412: + case 351: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '\'', 585, - '+', 1405, - '-', 616, - '.', 1661, - 'I', 1929, - 'N', 1924, - '_', 1664, - '`', 695, - 'a', 1790, - 'b', 1846, - 'c', 1688, - 'd', 1728, - 'e', 1792, - 'f', 1675, - 'h', 1767, - 'i', 1656, - 'l', 1739, - 'm', 1686, - 'n', 1733, - 'o', 1902, - 'r', 1744, - 's', 1816, - 't', 1830, - 'u', 1861, - 'w', 1758, + '"', 3524, + '#', 4822, + '\'', 525, + '+', 1346, + '-', 556, + '.', 1602, + 'I', 1870, + 'N', 1865, + '_', 1605, + '`', 634, + 'a', 1731, + 'b', 1787, + 'c', 1629, + 'd', 1669, + 'e', 1733, + 'f', 1616, + 'h', 1708, + 'i', 1597, + 'l', 1680, + 'm', 1627, + 'n', 1674, + 'o', 1843, + 'r', 1685, + 's', 1757, + 't', 1771, + 'u', 1802, + 'w', 1699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(412); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1943); + lookahead == ' ') SKIP(351); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1884); END_STATE(); - case 413: + case 352: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '\'', 585, - '+', 1405, - '-', 4074, - '.', 1661, - 'I', 1929, - 'N', 1924, - '_', 1664, - '`', 695, - 'a', 1790, - 'b', 1846, - 'c', 1688, - 'd', 1728, - 'e', 1792, - 'f', 1675, - 'h', 1767, - 'i', 1656, - 'l', 1739, - 'm', 1686, - 'n', 1733, - 'o', 1902, - 'r', 1744, - 's', 1816, - 't', 1830, - 'u', 1861, - 'w', 1758, + '"', 3524, + '#', 4822, + '\'', 525, + '+', 1346, + '-', 3907, + '.', 1602, + 'I', 1870, + 'N', 1865, + '_', 1605, + '`', 634, + 'a', 1731, + 'b', 1787, + 'c', 1629, + 'd', 1669, + 'e', 1733, + 'f', 1616, + 'h', 1708, + 'i', 1597, + 'l', 1680, + 'm', 1627, + 'n', 1674, + 'o', 1843, + 'r', 1685, + 's', 1757, + 't', 1771, + 'u', 1802, + 'w', 1699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(412); + lookahead == ' ') SKIP(351); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4218); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); + lookahead == '^') ADVANCE(4035); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 414: + case 353: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '\'', 585, - '+', 1405, - '-', 4074, - '.', 1410, - 'B', 3524, - 'E', 1650, - 'G', 1655, - 'I', 1929, - 'K', 1655, - 'M', 1655, - 'N', 1924, - 'P', 1655, - 'T', 1655, - '_', 1664, - '`', 695, - 'a', 1790, - 'b', 3526, - 'c', 1688, - 'd', 1683, - 'e', 1649, - 'f', 1675, - 'g', 1654, - 'h', 1766, - 'i', 1656, - 'k', 1654, - 'l', 1739, - 'm', 1651, - 'n', 1732, - 'o', 1902, - 'p', 1654, - 'r', 1744, - 's', 1734, - 't', 1653, - 'u', 1853, - 'w', 1757, - 0xb5, 1852, + '"', 3524, + '#', 4822, + '\'', 525, + '+', 1346, + '-', 3907, + '.', 1351, + 'B', 3462, + 'E', 1591, + 'G', 1596, + 'I', 1870, + 'K', 1596, + 'M', 1596, + 'N', 1865, + 'P', 1596, + 'T', 1596, + '_', 1605, + '`', 634, + 'a', 1731, + 'b', 3464, + 'c', 1629, + 'd', 1624, + 'e', 1590, + 'f', 1616, + 'g', 1595, + 'h', 1707, + 'i', 1597, + 'k', 1595, + 'l', 1680, + 'm', 1592, + 'n', 1673, + 'o', 1843, + 'p', 1595, + 'r', 1685, + 's', 1675, + 't', 1594, + 'u', 1794, + 'w', 1698, + 0xb5, 1793, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(412); + lookahead == ' ') SKIP(351); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4218); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); + lookahead == '^') ADVANCE(4035); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 415: + case 354: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '\'', 585, - '+', 1405, - '-', 4074, - '.', 1410, - 'B', 3524, - 'E', 1650, - 'G', 1655, - 'I', 1929, - 'K', 1655, - 'M', 1655, - 'N', 1924, - 'P', 1655, - 'T', 1655, - '_', 1669, - '`', 695, - 'a', 1790, - 'b', 3526, - 'c', 1688, - 'd', 1683, - 'e', 1649, - 'f', 1675, - 'g', 1654, - 'h', 1766, - 'i', 1656, - 'k', 1654, - 'l', 1739, - 'm', 1651, - 'n', 1732, - 'o', 1902, - 'p', 1654, - 'r', 1744, - 's', 1734, - 't', 1653, - 'u', 1853, - 'w', 1757, - 0xb5, 1852, + '"', 3524, + '#', 4822, + '\'', 525, + '+', 1346, + '-', 3907, + '.', 1351, + 'B', 3462, + 'E', 1591, + 'G', 1596, + 'I', 1870, + 'K', 1596, + 'M', 1596, + 'N', 1865, + 'P', 1596, + 'T', 1596, + '_', 1610, + '`', 634, + 'a', 1731, + 'b', 3464, + 'c', 1629, + 'd', 1624, + 'e', 1590, + 'f', 1616, + 'g', 1595, + 'h', 1707, + 'i', 1597, + 'k', 1595, + 'l', 1680, + 'm', 1592, + 'n', 1673, + 'o', 1843, + 'p', 1595, + 'r', 1685, + 's', 1675, + 't', 1594, + 'u', 1794, + 'w', 1698, + 0xb5, 1793, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(412); + lookahead == ' ') SKIP(351); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4218); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + lookahead == '^') ADVANCE(4035); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 416: + case 355: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '\'', 585, - '+', 1405, - '-', 4074, - '.', 1410, - 'B', 3524, - 'E', 1655, - 'G', 1655, - 'I', 1929, - 'K', 1655, - 'M', 1655, - 'N', 1924, - 'P', 1655, - 'T', 1655, - '_', 1664, - '`', 695, - 'a', 1790, - 'b', 3526, - 'c', 1688, - 'd', 1683, - 'e', 1652, - 'f', 1675, - 'g', 1654, - 'h', 1766, - 'i', 1656, - 'k', 1654, - 'l', 1739, - 'm', 1651, - 'n', 1732, - 'o', 1902, - 'p', 1654, - 'r', 1744, - 's', 1734, - 't', 1653, - 'u', 1853, - 'w', 1757, - 0xb5, 1852, + '"', 3524, + '#', 4822, + '\'', 525, + '+', 1346, + '-', 3907, + '.', 1351, + 'B', 3462, + 'E', 1596, + 'G', 1596, + 'I', 1870, + 'K', 1596, + 'M', 1596, + 'N', 1865, + 'P', 1596, + 'T', 1596, + '_', 1605, + '`', 634, + 'a', 1731, + 'b', 3464, + 'c', 1629, + 'd', 1624, + 'e', 1593, + 'f', 1616, + 'g', 1595, + 'h', 1707, + 'i', 1597, + 'k', 1595, + 'l', 1680, + 'm', 1592, + 'n', 1673, + 'o', 1843, + 'p', 1595, + 'r', 1685, + 's', 1675, + 't', 1594, + 'u', 1794, + 'w', 1698, + 0xb5, 1793, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(412); + lookahead == ' ') SKIP(351); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4218); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); + lookahead == '^') ADVANCE(4035); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 417: + case 356: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '\'', 585, - '+', 1405, - '-', 4074, - '.', 3393, - 'B', 3524, - 'E', 1650, - 'G', 1655, - 'I', 1929, - 'K', 1655, - 'M', 1655, - 'N', 1924, - 'P', 1655, - 'T', 1655, - '_', 1664, - '`', 695, - 'a', 1790, - 'b', 3526, - 'c', 1688, - 'd', 1683, - 'e', 1649, - 'f', 1675, - 'g', 1654, - 'h', 1766, - 'i', 1656, - 'k', 1654, - 'l', 1739, - 'm', 1651, - 'n', 1732, - 'o', 1902, - 'p', 1654, - 'r', 1744, - 's', 1734, - 't', 1653, - 'u', 1853, - 'w', 1757, - 0xb5, 1852, + '"', 3524, + '#', 4822, + '\'', 525, + '+', 1346, + '-', 3907, + '.', 3331, + 'B', 3462, + 'E', 1591, + 'G', 1596, + 'I', 1870, + 'K', 1596, + 'M', 1596, + 'N', 1865, + 'P', 1596, + 'T', 1596, + '_', 1605, + '`', 634, + 'a', 1731, + 'b', 3464, + 'c', 1629, + 'd', 1624, + 'e', 1590, + 'f', 1616, + 'g', 1595, + 'h', 1707, + 'i', 1597, + 'k', 1595, + 'l', 1680, + 'm', 1592, + 'n', 1673, + 'o', 1843, + 'p', 1595, + 'r', 1685, + 's', 1675, + 't', 1594, + 'u', 1794, + 'w', 1698, + 0xb5, 1793, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(412); + lookahead == ' ') SKIP(351); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4218); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); + lookahead == '^') ADVANCE(4035); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 418: + case 357: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '\'', 585, - ',', 2987, - '-', 674, - '<', 3016, - '=', 1142, - '>', 3018, - '@', 3020, - '`', 695, - '{', 3169, + '"', 3524, + '#', 4822, + '\'', 525, + ',', 2928, + '-', 611, + '<', 2956, + '=', 1082, + '>', 2958, + '@', 2960, + '`', 634, + '{', 3109, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(419); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2720); + lookahead == ' ') SKIP(358); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2661); END_STATE(); - case 419: + case 358: ADVANCE_MAP( - '"', 3586, - '#', 5024, - '\'', 585, - ',', 2987, - '-', 674, - '=', 1142, - '>', 3018, - '`', 695, - '{', 3169, + '"', 3524, + '#', 4822, + '\'', 525, + ',', 2928, + '-', 611, + '=', 1082, + '>', 2958, + '`', 634, + '{', 3109, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(419); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2720); + lookahead == ' ') SKIP(358); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2661); END_STATE(); - case 420: - if (lookahead == '"') ADVANCE(3586); - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '\'') ADVANCE(585); - if (lookahead == '`') ADVANCE(695); + case 359: + if (lookahead == '"') ADVANCE(3524); + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '\'') ADVANCE(525); + if (lookahead == '`') ADVANCE(634); if (lookahead == '\t' || - lookahead == ' ') SKIP(420); + lookahead == ' ') SKIP(359); END_STATE(); - case 421: - if (lookahead == '"') ADVANCE(3586); - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '\'') ADVANCE(3628); - if (lookahead == '`') ADVANCE(3687); + case 360: + if (lookahead == '"') ADVANCE(3524); + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '\'') ADVANCE(3566); + if (lookahead == '`') ADVANCE(3625); if (lookahead == '\t' || - lookahead == ' ') SKIP(420); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3696); + lookahead == ' ') SKIP(359); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3634); END_STATE(); - case 422: + case 361: ADVANCE_MAP( - '"', 3586, - '#', 5028, - '$', 2993, - '\'', 585, - '(', 3294, - '+', 3622, - ',', 1943, - '-', 3050, - '.', 4896, - '0', 4899, - 'I', 5005, - 'N', 4997, - '_', 4901, - '`', 695, - 'a', 4947, - 'b', 4968, - 'c', 4905, - 'd', 4916, - 'e', 4952, - 'f', 4906, - 'h', 4939, - 'i', 4898, - 'l', 4929, - 'm', 4907, - 'n', 4917, - 'o', 4994, - 'r', 4918, - 's', 4958, - 't', 4964, - 'u', 4976, - 'w', 4938, - '}', 3170, + '"', 3524, + '#', 4826, + '$', 2933, + '\'', 525, + '(', 3232, + '+', 3560, + ',', 1884, + '-', 2990, + '.', 4694, + '0', 4697, + 'I', 4803, + 'N', 4795, + '_', 4699, + '`', 634, + 'a', 4745, + 'b', 4766, + 'c', 4703, + 'd', 4714, + 'e', 4750, + 'f', 4704, + 'h', 4737, + 'i', 4696, + 'l', 4727, + 'm', 4705, + 'n', 4715, + 'o', 4792, + 'r', 4716, + 's', 4756, + 't', 4762, + 'u', 4774, + 'w', 4736, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(349); + lookahead == ' ') SKIP(289); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5017); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4901); + lookahead == '^') ADVANCE(4815); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4699); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5016); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4814); END_STATE(); - case 423: + case 362: ADVANCE_MAP( - '"', 3586, - '#', 5028, - '$', 2993, - '\'', 585, - '(', 3294, - '+', 3622, - ',', 3610, - '-', 3050, - '.', 4896, - '0', 4899, - 'I', 5005, - 'N', 4997, - '_', 4901, - '`', 695, - 'a', 4947, - 'b', 4968, - 'c', 4905, - 'd', 4916, - 'e', 4952, - 'f', 4906, - 'h', 4939, - 'i', 4898, - 'l', 4929, - 'm', 4907, - 'n', 4917, - 'o', 4994, - 'r', 4918, - 's', 4958, - 't', 4964, - 'u', 4976, - 'w', 4938, - '}', 3170, - '\t', 3611, - ' ', 3611, + '"', 3524, + '#', 4826, + '$', 2933, + '\'', 525, + '(', 3232, + '+', 3560, + ',', 3548, + '-', 2990, + '.', 4694, + '0', 4697, + 'I', 4803, + 'N', 4795, + '_', 4699, + '`', 634, + 'a', 4745, + 'b', 4766, + 'c', 4703, + 'd', 4714, + 'e', 4750, + 'f', 4704, + 'h', 4737, + 'i', 4696, + 'l', 4727, + 'm', 4705, + 'n', 4715, + 'o', 4792, + 'r', 4716, + 's', 4756, + 't', 4762, + 'u', 4774, + 'w', 4736, + '}', 3110, + '\t', 3549, + ' ', 3549, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5017); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4901); + lookahead == '^') ADVANCE(4815); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4699); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5016); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4814); END_STATE(); - case 424: + case 363: ADVANCE_MAP( - '"', 3586, - '#', 5031, - '$', 2991, - '\'', 585, - '(', 2985, - '+', 4249, - '-', 3054, - '.', 4245, - '0', 4275, - 'N', 4417, - '[', 2983, - '_', 4280, - '`', 695, - 'f', 4281, - 'n', 4346, - 't', 4356, - '{', 3169, + '"', 3524, + '#', 4829, + '$', 2931, + '\'', 525, + '(', 2926, + '+', 4058, + '-', 2991, + '.', 4059, + '0', 4077, + 'N', 4215, + '[', 2924, + '_', 4079, + '`', 634, + 'f', 4089, + 'n', 4152, + 't', 4160, + '{', 3109, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(267); + lookahead == ' ') SKIP(207); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4426); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4279); + lookahead == 'i') ADVANCE(4224); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4082); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4456); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4254); END_STATE(); - case 425: + case 364: ADVANCE_MAP( - '"', 3586, - '#', 5031, - '\'', 585, - '+', 4246, - '-', 4242, - '.', 4270, - 'I', 4428, - 'N', 4418, - '_', 4274, - '`', 695, - 'a', 4330, - 'b', 4361, - 'c', 4282, - 'd', 4296, - 'e', 4328, - 'f', 4283, - 'h', 4319, - 'i', 4267, - 'l', 4303, - 'm', 4284, - 'n', 4297, - 'o', 4405, - 'r', 4298, - 's', 4343, - 't', 4359, - 'u', 4380, - 'w', 4318, + '"', 3524, + '#', 4829, + '\'', 525, + '+', 4060, + '-', 4054, + '.', 4084, + 'I', 4226, + 'N', 4216, + '_', 4088, + '`', 634, + 'a', 4136, + 'b', 4165, + 'c', 4090, + 'd', 4104, + 'e', 4134, + 'f', 4091, + 'h', 4125, + 'i', 4075, + 'l', 4111, + 'm', 4092, + 'n', 4105, + 'o', 4203, + 'r', 4106, + 's', 4149, + 't', 4163, + 'u', 4181, + 'w', 4124, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(412); + lookahead == ' ') SKIP(351); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4456); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4274); + lookahead == '^') ADVANCE(4254); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4088); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4436); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4234); END_STATE(); - case 426: + case 365: ADVANCE_MAP( - '"', 3586, - '#', 5030, - '$', 2994, - '\'', 585, - '(', 3294, - '+', 4672, - ',', 3610, - '-', 4671, - '.', 4673, - '0', 4686, - 'N', 4715, - '[', 2983, - ']', 2984, - '_', 4688, - '`', 695, - 'e', 4665, - 'f', 4694, - 'n', 4711, - 'o', 4666, - 't', 4704, - '{', 3169, - '\t', 3611, - ' ', 3611, - 'I', 4720, - 'i', 4720, + '"', 3524, + '#', 4828, + '$', 2934, + '\'', 525, + '(', 3232, + '+', 4470, + ',', 3548, + '-', 4469, + '.', 4471, + '0', 4484, + 'N', 4513, + '[', 2924, + ']', 2925, + '_', 4486, + '`', 634, + 'e', 4463, + 'f', 4492, + 'n', 4509, + 'o', 4464, + 't', 4502, + '{', 3109, + '\t', 3549, + ' ', 3549, + 'I', 4518, + 'i', 4518, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4691); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4489); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4743); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4541); END_STATE(); - case 427: + case 366: ADVANCE_MAP( - '"', 3586, - '#', 5030, - '$', 2994, - '\'', 585, - '(', 2985, - '+', 4672, - ',', 2987, - '-', 4671, - '.', 4673, - '0', 4686, - 'N', 4715, - '[', 2983, - ']', 2984, - '_', 4688, - '`', 695, - 'e', 4665, - 'f', 4694, - 'n', 4711, - 'o', 4666, - 't', 4704, - '{', 3169, + '"', 3524, + '#', 4828, + '$', 2934, + '\'', 525, + '(', 2926, + '+', 4470, + ',', 2928, + '-', 4469, + '.', 4471, + '0', 4484, + 'N', 4513, + '[', 2924, + ']', 2925, + '_', 4486, + '`', 634, + 'e', 4463, + 'f', 4492, + 'n', 4509, + 'o', 4464, + 't', 4502, + '{', 3109, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(361); + lookahead == ' ') SKIP(302); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4720); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4691); + lookahead == 'i') ADVANCE(4518); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4489); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4743); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4541); END_STATE(); - case 428: - if (lookahead == '"') ADVANCE(3586); - if (lookahead == '#') ADVANCE(3589); - if (lookahead == '\\') ADVANCE(911); + case 367: + if (lookahead == '"') ADVANCE(3524); + if (lookahead == '#') ADVANCE(3527); + if (lookahead == '\\') ADVANCE(850); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3588); - if (lookahead != 0) ADVANCE(3589); + lookahead == ' ') ADVANCE(3526); + if (lookahead != 0) ADVANCE(3527); END_STATE(); - case 429: - if (lookahead == '"') ADVANCE(3587); - if (lookahead == '#') ADVANCE(5034); - if (lookahead == '$') ADVANCE(2992); - if (lookahead == '\'') ADVANCE(3836); - if (lookahead == '(') ADVANCE(2985); - if (lookahead == '`') ADVANCE(3837); + case 368: + if (lookahead == '"') ADVANCE(3525); + if (lookahead == '#') ADVANCE(4832); + if (lookahead == '$') ADVANCE(2932); + if (lookahead == '\'') ADVANCE(3766); + if (lookahead == '(') ADVANCE(2926); + if (lookahead == '`') ADVANCE(3767); if (lookahead == '\t' || - lookahead == ' ') SKIP(429); + lookahead == ' ') SKIP(368); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3838); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3768); END_STATE(); - case 430: - if (lookahead == '"') ADVANCE(3606); - if (lookahead == '#') ADVANCE(3597); - if (lookahead == '(') ADVANCE(2985); - if (lookahead == '\\') ADVANCE(905); + case 369: + if (lookahead == '"') ADVANCE(3544); + if (lookahead == '#') ADVANCE(3535); + if (lookahead == '(') ADVANCE(2926); + if (lookahead == '\\') ADVANCE(844); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3596); - if (lookahead != 0) ADVANCE(3597); + lookahead == ' ') ADVANCE(3534); + if (lookahead != 0) ADVANCE(3535); END_STATE(); - case 431: + case 370: + ADVANCE_MAP( + '#', 4822, + '$', 2929, + '(', 3232, + '.', 3346, + '[', 3484, + '_', 3117, + '}', 3110, + '\t', 3552, + ' ', 3552, + '+', 579, + '-', 579, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(3548); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + END_STATE(); + case 371: ADVANCE_MAP( - '#', 5024, - '$', 2989, - '(', 3294, - '.', 3408, - '=', 4090, - '_', 4112, - 'i', 4134, - '|', 2939, + '#', 4822, + '$', 2929, + '(', 3232, + '.', 3935, + '=', 3922, + '_', 3933, + 'i', 3959, + '|', 2880, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(464); + lookahead == ' ') SKIP(404); if (lookahead == '+' || - lookahead == '-') ADVANCE(4082); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4218); + lookahead == '-') ADVANCE(3913); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 432: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '$') ADVANCE(2989); - if (lookahead == '(') ADVANCE(3294); - if (lookahead == '.') ADVANCE(3408); - if (lookahead == '=') ADVANCE(4090); - if (lookahead == '_') ADVANCE(4112); - if (lookahead == '|') ADVANCE(2939); + case 372: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '$') ADVANCE(2929); + if (lookahead == '(') ADVANCE(3232); + if (lookahead == '.') ADVANCE(3935); + if (lookahead == '=') ADVANCE(3922); + if (lookahead == '_') ADVANCE(3933); + if (lookahead == '|') ADVANCE(2880); if (lookahead == '\t' || - lookahead == ' ') SKIP(465); + lookahead == ' ') SKIP(405); if (lookahead == '+' || - lookahead == '-') ADVANCE(4082); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4218); + lookahead == '-') ADVANCE(3913); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 433: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '$') ADVANCE(2989); - if (lookahead == '(') ADVANCE(3294); - if (lookahead == '.') ADVANCE(3408); - if (lookahead == '_') ADVANCE(4112); - if (lookahead == '{') ADVANCE(3169); + case 373: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '$') ADVANCE(2929); + if (lookahead == '(') ADVANCE(3232); + if (lookahead == '.') ADVANCE(3935); + if (lookahead == '_') ADVANCE(3933); + if (lookahead == '{') ADVANCE(3109); if (lookahead == '\t' || - lookahead == ' ') SKIP(467); + lookahead == ' ') SKIP(407); if (lookahead == '+' || - lookahead == '-') ADVANCE(4082); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4218); + lookahead == '-') ADVANCE(3913); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 434: + case 374: + ADVANCE_MAP( + '#', 4822, + '$', 2929, + '(', 3232, + '.', 3343, + '=', 3922, + '_', 3933, + 'i', 3959, + '|', 2880, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(404); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3913); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + END_STATE(); + case 375: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '$') ADVANCE(2929); + if (lookahead == '(') ADVANCE(3232); + if (lookahead == '.') ADVANCE(3343); + if (lookahead == '=') ADVANCE(3922); + if (lookahead == '_') ADVANCE(3933); + if (lookahead == '|') ADVANCE(2880); + if (lookahead == '\t' || + lookahead == ' ') SKIP(405); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3913); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + END_STATE(); + case 376: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '$') ADVANCE(2929); + if (lookahead == '(') ADVANCE(3232); + if (lookahead == '.') ADVANCE(3343); + if (lookahead == '_') ADVANCE(3933); + if (lookahead == '{') ADVANCE(3109); + if (lookahead == '\t' || + lookahead == ' ') SKIP(407); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3913); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + END_STATE(); + case 377: ADVANCE_MAP( - '#', 5024, - '$', 2989, - '(', 3294, - '.', 4585, - ']', 2984, - '_', 4583, - '\t', 3614, - ' ', 3614, - '+', 4566, - '-', 4566, + '#', 4822, + '$', 2929, + '(', 3232, + '.', 4383, + ']', 2925, + '_', 4381, + '\t', 3552, + ' ', 3552, + '+', 4364, + '-', 4364, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3610); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + lookahead == ',') ADVANCE(3548); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -27553,1005 +25120,965 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 435: + case 378: ADVANCE_MAP( - '#', 5024, - '$', 2989, - '(', 3294, - '.', 4814, - '_', 4813, - '}', 3170, - '\t', 3614, - ' ', 3614, - '+', 4805, - '-', 4805, + '#', 4822, + '$', 2929, + '(', 3232, + '.', 4612, + '_', 4611, + '}', 3110, + '\t', 3552, + ' ', 3552, + '+', 4603, + '-', 4603, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3610); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + lookahead == ',') ADVANCE(3548); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4633); END_STATE(); - case 436: + case 379: ADVANCE_MAP( - '#', 5024, - '$', 2989, - '(', 3294, - '.', 3405, - ']', 2984, - '_', 4583, - '}', 3170, - '\t', 3614, - ' ', 3614, - '+', 4566, - '-', 4566, + '#', 4822, + '$', 2929, + '(', 3232, + '.', 3345, + ']', 2925, + '_', 4611, + '}', 3110, + '\t', 3552, + ' ', 3552, + '+', 4603, + '-', 4603, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3610); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + lookahead == ',') ADVANCE(3548); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && + (lookahead < '0' || ';' < lookahead) && lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4633); END_STATE(); - case 437: + case 380: ADVANCE_MAP( - '#', 5024, - '$', 2989, - '(', 3294, - '.', 3406, - '_', 4813, - '}', 3170, - '\t', 3614, - ' ', 3614, - '+', 4805, - '-', 4805, + '#', 4822, + '$', 2929, + '(', 3232, + '.', 3344, + ']', 2925, + '_', 4381, + '\t', 3552, + ' ', 3552, + '+', 4364, + '-', 4364, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3610); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); - END_STATE(); - case 438: - ADVANCE_MAP( - '#', 5024, - '$', 2989, - '(', 3294, - '.', 4117, - '=', 4090, - '_', 4112, - 'i', 4134, - '|', 2939, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(464); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4082); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4218); - END_STATE(); - case 439: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '$') ADVANCE(2989); - if (lookahead == '(') ADVANCE(3294); - if (lookahead == '.') ADVANCE(4117); - if (lookahead == '=') ADVANCE(4090); - if (lookahead == '_') ADVANCE(4112); - if (lookahead == '|') ADVANCE(2939); - if (lookahead == '\t' || - lookahead == ' ') SKIP(465); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4082); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4218); - END_STATE(); - case 440: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '$') ADVANCE(2989); - if (lookahead == '(') ADVANCE(3294); - if (lookahead == '.') ADVANCE(4117); - if (lookahead == '_') ADVANCE(4112); - if (lookahead == '{') ADVANCE(3169); - if (lookahead == '\t' || - lookahead == ' ') SKIP(467); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4082); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4218); + lookahead == ',') ADVANCE(3548); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if (lookahead != 0 && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != '_' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 441: + case 381: ADVANCE_MAP( - '#', 5024, - '$', 2989, - '(', 2985, - '-', 3029, - '=', 3764, - 'f', 700, - 'i', 796, - 'n', 819, - 't', 840, + '#', 4822, + '$', 2929, + '(', 2926, + '-', 2969, + '=', 3694, + 'f', 639, + 'i', 735, + 'n', 758, + 't', 779, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(442); + lookahead == ' ') SKIP(382); END_STATE(); - case 442: + case 382: ADVANCE_MAP( - '#', 5024, - '$', 2989, - '(', 2985, - '-', 3029, - 'f', 700, - 'i', 796, - 'n', 819, - 't', 840, + '#', 4822, + '$', 2929, + '(', 2926, + '-', 2969, + 'f', 639, + 'i', 735, + 'n', 758, + 't', 779, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(442); + lookahead == ' ') SKIP(382); END_STATE(); - case 443: + case 383: ADVANCE_MAP( - '#', 5024, - '$', 2989, - '-', 3030, - '.', 3392, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4099, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '{', 3169, - 0xb5, 4164, + '#', 4822, + '$', 2929, + '-', 2970, + '.', 3330, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'd', 3948, + 'e', 3927, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '{', 3109, + 0xb5, 3984, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(453); + lookahead == ' ') SKIP(393); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4218); + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 444: + case 384: ADVANCE_MAP( - '#', 5024, - '$', 2989, - '-', 3030, - '.', 3392, - 'E', 2370, - 'G', 2416, - 'K', 2416, - 'M', 2416, - 'P', 2416, - 'T', 2416, - 'd', 2439, - 'e', 2369, - 'g', 2415, - 'h', 2595, - 'k', 2415, - 'm', 2417, - 'n', 2635, - 'p', 2415, - 's', 2468, - 't', 2415, - 'u', 2635, - 'w', 2529, - 0xb5, 2635, + '#', 4822, + '$', 2929, + '-', 2970, + '.', 3330, + 'E', 2314, + 'G', 2357, + 'K', 2357, + 'M', 2357, + 'P', 2357, + 'T', 2357, + 'd', 2380, + 'e', 2313, + 'g', 2356, + 'h', 2536, + 'k', 2356, + 'm', 2358, + 'n', 2576, + 'p', 2356, + 's', 2409, + 't', 2356, + 'u', 2576, + 'w', 2470, + 0xb5, 2576, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(457); + lookahead == ' ') SKIP(397); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3528); + lookahead == 'b') ADVANCE(3466); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4218); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); + lookahead == '^') ADVANCE(4035); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); END_STATE(); - case 445: + case 385: ADVANCE_MAP( - '#', 5024, - '$', 2989, - '-', 3030, - '.', 4081, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - '_', 4112, - 'd', 4120, - 'e', 4099, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '{', 3169, - 0xb5, 4164, + '#', 4822, + '$', 2929, + '-', 2970, + '.', 3912, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + '_', 3933, + 'd', 3948, + 'e', 3927, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '{', 3109, + 0xb5, 3984, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(453); + lookahead == ' ') SKIP(393); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4218); + lookahead == 'b') ADVANCE(3462); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 446: + case 386: ADVANCE_MAP( - '#', 5024, - '$', 2989, - '-', 3030, - '.', 4081, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4099, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '{', 3169, - 0xb5, 4164, + '#', 4822, + '$', 2929, + '-', 2970, + '.', 3912, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'd', 3948, + 'e', 3927, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '{', 3109, + 0xb5, 3984, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(453); + lookahead == ' ') SKIP(393); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4218); + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 447: + case 387: ADVANCE_MAP( - '#', 5024, - '$', 2989, - '-', 3030, - '.', 4081, - 'E', 4103, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4102, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '{', 3169, - 0xb5, 4164, + '#', 4822, + '$', 2929, + '-', 2970, + '.', 3912, + 'E', 3931, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'd', 3948, + 'e', 3930, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '{', 3109, + 0xb5, 3984, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(453); + lookahead == ' ') SKIP(393); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4218); + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 448: + case 388: ADVANCE_MAP( - '#', 5024, - '$', 2989, - '-', 3030, - '.', 4081, - 'E', 2416, - 'G', 2416, - 'K', 2416, - 'M', 2416, - 'P', 2416, - 'T', 2416, - 'd', 2439, - 'e', 2415, - 'g', 2415, - 'h', 2595, - 'k', 2415, - 'm', 2417, - 'n', 2635, - 'p', 2415, - 's', 2468, - 't', 2415, - 'u', 2635, - 'w', 2529, - 0xb5, 2635, + '#', 4822, + '$', 2929, + '-', 2970, + '.', 3912, + 'E', 2357, + 'G', 2357, + 'K', 2357, + 'M', 2357, + 'P', 2357, + 'T', 2357, + 'd', 2380, + 'e', 2356, + 'g', 2356, + 'h', 2536, + 'k', 2356, + 'm', 2358, + 'n', 2576, + 'p', 2356, + 's', 2409, + 't', 2356, + 'u', 2576, + 'w', 2470, + 0xb5, 2576, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(457); + lookahead == ' ') SKIP(397); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3528); + lookahead == 'b') ADVANCE(3466); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4218); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); + lookahead == '^') ADVANCE(4035); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); END_STATE(); - case 449: + case 389: ADVANCE_MAP( - '#', 5024, - '$', 2989, - '-', 3030, - '.', 4081, - 'E', 2370, - 'G', 2416, - 'K', 2416, - 'M', 2416, - 'P', 2416, - 'T', 2416, - '_', 2422, - 'd', 2439, - 'e', 2369, - 'g', 2415, - 'h', 2595, - 'k', 2415, - 'm', 2417, - 'n', 2635, - 'p', 2415, - 's', 2468, - 't', 2415, - 'u', 2635, - 'w', 2529, - 0xb5, 2635, + '#', 4822, + '$', 2929, + '-', 2970, + '.', 3912, + 'E', 2314, + 'G', 2357, + 'K', 2357, + 'M', 2357, + 'P', 2357, + 'T', 2357, + '_', 2363, + 'd', 2380, + 'e', 2313, + 'g', 2356, + 'h', 2536, + 'k', 2356, + 'm', 2358, + 'n', 2576, + 'p', 2356, + 's', 2409, + 't', 2356, + 'u', 2576, + 'w', 2470, + 0xb5, 2576, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(457); + lookahead == ' ') SKIP(397); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3528); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3422); + lookahead == 'b') ADVANCE(3466); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3360); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4218); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); + lookahead == '^') ADVANCE(4035); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); END_STATE(); - case 450: + case 390: ADVANCE_MAP( - '#', 5024, - '$', 2989, - '-', 3030, - '.', 4081, - 'E', 2370, - 'G', 2416, - 'K', 2416, - 'M', 2416, - 'P', 2416, - 'T', 2416, - 'd', 2439, - 'e', 2369, - 'g', 2415, - 'h', 2595, - 'k', 2415, - 'm', 2417, - 'n', 2635, - 'p', 2415, - 's', 2468, - 't', 2415, - 'u', 2635, - 'w', 2529, - 0xb5, 2635, + '#', 4822, + '$', 2929, + '-', 2970, + '.', 3912, + 'E', 2314, + 'G', 2357, + 'K', 2357, + 'M', 2357, + 'P', 2357, + 'T', 2357, + 'd', 2380, + 'e', 2313, + 'g', 2356, + 'h', 2536, + 'k', 2356, + 'm', 2358, + 'n', 2576, + 'p', 2356, + 's', 2409, + 't', 2356, + 'u', 2576, + 'w', 2470, + 0xb5, 2576, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(457); + lookahead == ' ') SKIP(397); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3528); + lookahead == 'b') ADVANCE(3466); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4218); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); + lookahead == '^') ADVANCE(4035); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); END_STATE(); - case 451: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '$') ADVANCE(2989); - if (lookahead == '-') ADVANCE(3030); - if (lookahead == '=') ADVANCE(3764); - if (lookahead == '{') ADVANCE(3169); + case 391: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '$') ADVANCE(2929); + if (lookahead == '-') ADVANCE(2970); + if (lookahead == '=') ADVANCE(3694); + if (lookahead == '{') ADVANCE(3109); if (lookahead == '\t' || - lookahead == ' ') SKIP(453); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2899); + lookahead == ' ') SKIP(393); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2840); END_STATE(); - case 452: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '$') ADVANCE(2989); - if (lookahead == '-') ADVANCE(3030); - if (lookahead == '=') ADVANCE(3764); + case 392: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '$') ADVANCE(2929); + if (lookahead == '-') ADVANCE(2970); + if (lookahead == '=') ADVANCE(3694); if (lookahead == '\t' || - lookahead == ' ') SKIP(457); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2867); + lookahead == ' ') SKIP(397); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2808); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '[' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(2720); + (lookahead < ']' || '}' < lookahead)) ADVANCE(2661); END_STATE(); - case 453: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '$') ADVANCE(2989); - if (lookahead == '-') ADVANCE(3030); - if (lookahead == '{') ADVANCE(3169); + case 393: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '$') ADVANCE(2929); + if (lookahead == '-') ADVANCE(2970); + if (lookahead == '{') ADVANCE(3109); if (lookahead == '\t' || - lookahead == ' ') SKIP(453); + lookahead == ' ') SKIP(393); END_STATE(); - case 454: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '$') ADVANCE(2989); - if (lookahead == '-') ADVANCE(3030); - if (lookahead == '{') ADVANCE(3169); + case 394: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '$') ADVANCE(2929); + if (lookahead == '-') ADVANCE(2970); + if (lookahead == '{') ADVANCE(3109); if (lookahead == '\t' || - lookahead == ' ') SKIP(453); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4218); + lookahead == ' ') SKIP(393); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 455: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '$') ADVANCE(2989); - if (lookahead == '-') ADVANCE(3030); - if (lookahead == '{') ADVANCE(3169); + case 395: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '$') ADVANCE(2929); + if (lookahead == '-') ADVANCE(2970); + if (lookahead == '{') ADVANCE(3109); if (lookahead == '\t' || - lookahead == ' ') SKIP(455); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2720); + lookahead == ' ') SKIP(395); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2661); END_STATE(); - case 456: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '$') ADVANCE(2989); - if (lookahead == '-') ADVANCE(3030); + case 396: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '$') ADVANCE(2929); + if (lookahead == '-') ADVANCE(2970); if (lookahead == '\t' || - lookahead == ' ') SKIP(457); + lookahead == ' ') SKIP(397); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4218); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); + lookahead == '^') ADVANCE(4035); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); END_STATE(); - case 457: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '$') ADVANCE(2989); - if (lookahead == '-') ADVANCE(3030); + case 397: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '$') ADVANCE(2929); + if (lookahead == '-') ADVANCE(2970); if (lookahead == '\t' || - lookahead == ' ') SKIP(457); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2720); + lookahead == ' ') SKIP(397); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2661); END_STATE(); - case 458: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '$') ADVANCE(2989); - if (lookahead == '-') ADVANCE(3041); - if (lookahead == '=') ADVANCE(3764); - if (lookahead == '{') ADVANCE(3169); + case 398: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '$') ADVANCE(2929); + if (lookahead == '-') ADVANCE(2981); + if (lookahead == '=') ADVANCE(3694); + if (lookahead == '{') ADVANCE(3109); if (lookahead == '\t' || - lookahead == ' ') SKIP(453); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + lookahead == ' ') SKIP(393); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 459: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '$') ADVANCE(2989); - if (lookahead == '-') ADVANCE(3041); - if (lookahead == '=') ADVANCE(3764); + case 399: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '$') ADVANCE(2929); + if (lookahead == '-') ADVANCE(2981); + if (lookahead == '=') ADVANCE(3694); if (lookahead == '\t' || - lookahead == ' ') SKIP(457); + lookahead == ' ') SKIP(397); if (lookahead == '!' || lookahead == '?' || - lookahead == '@') ADVANCE(3835); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3818); + lookahead == '@') ADVANCE(3765); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3748); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '.' < lookahead) && (lookahead < '0' || '[' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(2720); + (lookahead < ']' || '}' < lookahead)) ADVANCE(2661); END_STATE(); - case 460: + case 400: ADVANCE_MAP( - '#', 5024, - '$', 2989, - '.', 3392, - 'E', 2370, - 'G', 2416, - 'K', 2416, - 'M', 2416, - 'P', 2416, - 'T', 2416, - 'd', 2439, - 'e', 2369, - 'g', 2415, - 'h', 2595, - 'k', 2415, - 'm', 2417, - 'n', 2635, - 'p', 2415, - 's', 2468, - 't', 2415, - 'u', 2635, - 'w', 2529, - 0xb5, 2635, + '#', 4822, + '$', 2929, + '.', 3330, + 'E', 2314, + 'G', 2357, + 'K', 2357, + 'M', 2357, + 'P', 2357, + 'T', 2357, + 'd', 2380, + 'e', 2313, + 'g', 2356, + 'h', 2536, + 'k', 2356, + 'm', 2358, + 'n', 2576, + 'p', 2356, + 's', 2409, + 't', 2356, + 'u', 2576, + 'w', 2470, + 0xb5, 2576, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(471); + lookahead == ' ') SKIP(411); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3528); + lookahead == 'b') ADVANCE(3466); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '-') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4218); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); + lookahead == '^') ADVANCE(4035); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); END_STATE(); - case 461: + case 401: ADVANCE_MAP( - '#', 5024, - '$', 2989, - '.', 4081, - 'E', 2416, - 'G', 2416, - 'K', 2416, - 'M', 2416, - 'P', 2416, - 'T', 2416, - 'd', 2439, - 'e', 2415, - 'g', 2415, - 'h', 2595, - 'k', 2415, - 'm', 2417, - 'n', 2635, - 'p', 2415, - 's', 2468, - 't', 2415, - 'u', 2635, - 'w', 2529, - 0xb5, 2635, + '#', 4822, + '$', 2929, + '.', 3912, + 'E', 2357, + 'G', 2357, + 'K', 2357, + 'M', 2357, + 'P', 2357, + 'T', 2357, + 'd', 2380, + 'e', 2356, + 'g', 2356, + 'h', 2536, + 'k', 2356, + 'm', 2358, + 'n', 2576, + 'p', 2356, + 's', 2409, + 't', 2356, + 'u', 2576, + 'w', 2470, + 0xb5, 2576, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(471); + lookahead == ' ') SKIP(411); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3528); + lookahead == 'b') ADVANCE(3466); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '-') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4218); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); + lookahead == '^') ADVANCE(4035); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); END_STATE(); - case 462: + case 402: ADVANCE_MAP( - '#', 5024, - '$', 2989, - '.', 4081, - 'E', 2370, - 'G', 2416, - 'K', 2416, - 'M', 2416, - 'P', 2416, - 'T', 2416, - '_', 2422, - 'd', 2439, - 'e', 2369, - 'g', 2415, - 'h', 2595, - 'k', 2415, - 'm', 2417, - 'n', 2635, - 'p', 2415, - 's', 2468, - 't', 2415, - 'u', 2635, - 'w', 2529, - 0xb5, 2635, + '#', 4822, + '$', 2929, + '.', 3912, + 'E', 2314, + 'G', 2357, + 'K', 2357, + 'M', 2357, + 'P', 2357, + 'T', 2357, + '_', 2363, + 'd', 2380, + 'e', 2313, + 'g', 2356, + 'h', 2536, + 'k', 2356, + 'm', 2358, + 'n', 2576, + 'p', 2356, + 's', 2409, + 't', 2356, + 'u', 2576, + 'w', 2470, + 0xb5, 2576, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(471); + lookahead == ' ') SKIP(411); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3528); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3422); + lookahead == 'b') ADVANCE(3466); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3360); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '-') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4218); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); + lookahead == '^') ADVANCE(4035); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); END_STATE(); - case 463: + case 403: ADVANCE_MAP( - '#', 5024, - '$', 2989, - '.', 4081, - 'E', 2370, - 'G', 2416, - 'K', 2416, - 'M', 2416, - 'P', 2416, - 'T', 2416, - 'd', 2439, - 'e', 2369, - 'g', 2415, - 'h', 2595, - 'k', 2415, - 'm', 2417, - 'n', 2635, - 'p', 2415, - 's', 2468, - 't', 2415, - 'u', 2635, - 'w', 2529, - 0xb5, 2635, + '#', 4822, + '$', 2929, + '.', 3912, + 'E', 2314, + 'G', 2357, + 'K', 2357, + 'M', 2357, + 'P', 2357, + 'T', 2357, + 'd', 2380, + 'e', 2313, + 'g', 2356, + 'h', 2536, + 'k', 2356, + 'm', 2358, + 'n', 2576, + 'p', 2356, + 's', 2409, + 't', 2356, + 'u', 2576, + 'w', 2470, + 0xb5, 2576, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(471); + lookahead == ' ') SKIP(411); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3528); + lookahead == 'b') ADVANCE(3466); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '-') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4218); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); + lookahead == '^') ADVANCE(4035); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); END_STATE(); - case 464: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '$') ADVANCE(2989); - if (lookahead == '.') ADVANCE(692); - if (lookahead == '=') ADVANCE(673); - if (lookahead == 'i') ADVANCE(746); - if (lookahead == '|') ADVANCE(2939); + case 404: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '$') ADVANCE(2929); + if (lookahead == '.') ADVANCE(631); + if (lookahead == '=') ADVANCE(610); + if (lookahead == 'i') ADVANCE(685); + if (lookahead == '|') ADVANCE(2880); if (lookahead == '\t' || - lookahead == ' ') SKIP(464); + lookahead == ' ') SKIP(404); if (lookahead == '+' || - lookahead == '-') ADVANCE(642); + lookahead == '-') ADVANCE(579); END_STATE(); - case 465: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '$') ADVANCE(2989); - if (lookahead == '.') ADVANCE(692); - if (lookahead == '=') ADVANCE(673); - if (lookahead == '|') ADVANCE(2939); + case 405: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '$') ADVANCE(2929); + if (lookahead == '.') ADVANCE(631); + if (lookahead == '=') ADVANCE(610); + if (lookahead == '|') ADVANCE(2880); if (lookahead == '\t' || - lookahead == ' ') SKIP(465); + lookahead == ' ') SKIP(405); if (lookahead == '+' || - lookahead == '-') ADVANCE(642); + lookahead == '-') ADVANCE(579); END_STATE(); - case 466: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '$') ADVANCE(2989); - if (lookahead == '.') ADVANCE(692); - if (lookahead == ']') ADVANCE(2984); + case 406: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '$') ADVANCE(2929); + if (lookahead == '.') ADVANCE(631); + if (lookahead == ']') ADVANCE(2925); if (lookahead == '\t' || - lookahead == ' ') SKIP(466); + lookahead == ' ') SKIP(406); if (lookahead == '+' || - lookahead == '-') ADVANCE(642); + lookahead == '-') ADVANCE(579); END_STATE(); - case 467: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '$') ADVANCE(2989); - if (lookahead == '.') ADVANCE(692); - if (lookahead == '{') ADVANCE(3169); + case 407: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '$') ADVANCE(2929); + if (lookahead == '.') ADVANCE(631); + if (lookahead == '{') ADVANCE(3109); if (lookahead == '\t' || - lookahead == ' ') SKIP(467); + lookahead == ' ') SKIP(407); if (lookahead == '+' || - lookahead == '-') ADVANCE(642); + lookahead == '-') ADVANCE(579); END_STATE(); - case 468: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '$') ADVANCE(2989); - if (lookahead == '.') ADVANCE(692); + case 408: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '$') ADVANCE(2929); + if (lookahead == '.') ADVANCE(631); if (lookahead == '\t' || - lookahead == ' ') SKIP(468); + lookahead == ' ') SKIP(408); if (lookahead == '+' || - lookahead == '-') ADVANCE(642); + lookahead == '-') ADVANCE(579); END_STATE(); - case 469: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '$') ADVANCE(2989); - if (lookahead == '=') ADVANCE(3764); + case 409: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '$') ADVANCE(2929); + if (lookahead == '=') ADVANCE(3694); if (lookahead == '\t' || - lookahead == ' ') SKIP(471); + lookahead == ' ') SKIP(411); if (lookahead == '!' || lookahead == '-' || lookahead == '?' || - lookahead == '@') ADVANCE(3835); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3818); + lookahead == '@') ADVANCE(3765); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3748); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '.' < lookahead) && (lookahead < '0' || '[' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(2720); + (lookahead < ']' || '}' < lookahead)) ADVANCE(2661); END_STATE(); - case 470: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '$') ADVANCE(2989); + case 410: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '$') ADVANCE(2929); if (lookahead == '\t' || - lookahead == ' ') SKIP(471); + lookahead == ' ') SKIP(411); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4218); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); + lookahead == '^') ADVANCE(4035); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); END_STATE(); - case 471: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '$') ADVANCE(2989); + case 411: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '$') ADVANCE(2929); if (lookahead == '\t' || - lookahead == ' ') SKIP(471); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2720); + lookahead == ' ') SKIP(411); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2661); END_STATE(); - case 472: + case 412: ADVANCE_MAP( - '#', 5024, - '(', 3294, - '-', 3030, - '.', 3392, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4099, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '{', 3169, - 0xb5, 4164, - '\t', 260, - ' ', 260, - 'B', 3524, - 'b', 3524, + '#', 4822, + '(', 3232, + '-', 2970, + '.', 3330, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'd', 3948, + 'e', 3927, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '{', 3109, + 0xb5, 3984, + '\t', 200, + ' ', 200, + 'B', 3462, + 'b', 3462, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 473: + case 413: ADVANCE_MAP( - '#', 5024, - '(', 3294, - '-', 3030, - '.', 4081, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - '_', 4112, - 'd', 4120, - 'e', 4099, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '{', 3169, - 0xb5, 4164, - '\t', 260, - ' ', 260, - 'B', 3524, - 'b', 3524, + '#', 4822, + '(', 3232, + '-', 2970, + '.', 3912, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + '_', 3933, + 'd', 3948, + 'e', 3927, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '{', 3109, + 0xb5, 3984, + '\t', 200, + ' ', 200, + 'B', 3462, + 'b', 3462, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 474: + case 414: ADVANCE_MAP( - '#', 5024, - '(', 3294, - '-', 3030, - '.', 4081, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4099, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '{', 3169, - 0xb5, 4164, - '\t', 260, - ' ', 260, - 'B', 3524, - 'b', 3524, + '#', 4822, + '(', 3232, + '-', 2970, + '.', 3912, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'd', 3948, + 'e', 3927, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '{', 3109, + 0xb5, 3984, + '\t', 200, + ' ', 200, + 'B', 3462, + 'b', 3462, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 475: + case 415: ADVANCE_MAP( - '#', 5024, - '(', 3294, - '-', 3030, - '.', 4081, - 'E', 4103, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4102, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '{', 3169, - 0xb5, 4164, - '\t', 260, - ' ', 260, - 'B', 3524, - 'b', 3524, + '#', 4822, + '(', 3232, + '-', 2970, + '.', 3912, + 'E', 3931, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'd', 3948, + 'e', 3930, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '{', 3109, + 0xb5, 3984, + '\t', 200, + ' ', 200, + 'B', 3462, + 'b', 3462, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 476: + case 416: ADVANCE_MAP( - '#', 5024, - '(', 3294, - '.', 3392, - '=', 4090, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4099, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '|', 2939, - 0xb5, 4164, - '\t', 261, - ' ', 261, - 'B', 3524, - 'b', 3524, + '#', 4822, + '(', 3232, + '.', 3330, + '=', 3922, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'd', 3948, + 'e', 3927, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '|', 2880, + 0xb5, 3984, + '\t', 201, + ' ', 201, + 'B', 3462, + 'b', 3462, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 477: + case 417: ADVANCE_MAP( - '#', 5024, - '(', 3294, - '.', 3392, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4099, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '{', 3169, - 0xb5, 4164, - '\t', 262, - ' ', 262, - 'B', 3524, - 'b', 3524, + '#', 4822, + '(', 3232, + '.', 3330, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'd', 3948, + 'e', 3927, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '{', 3109, + 0xb5, 3984, + '\t', 202, + ' ', 202, + 'B', 3462, + 'b', 3462, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 478: + case 418: ADVANCE_MAP( - '#', 5024, - '(', 3294, - '.', 3392, - 'E', 4578, - 'G', 4581, - 'K', 4581, - 'M', 4581, - 'P', 4581, - 'T', 4581, - ']', 2984, - 'd', 4597, - 'e', 4577, - 'g', 4580, - 'h', 4612, - 'k', 4580, - 'm', 4582, - 'n', 4618, - 'p', 4580, - 's', 4602, - 't', 4580, - 'u', 4618, - 'w', 4605, - '}', 3170, - 0xb5, 4618, - '\t', 3614, - ' ', 3614, - 'B', 3524, - 'b', 3524, + '#', 4822, + '(', 3232, + '.', 3330, + 'E', 4376, + 'G', 4379, + 'K', 4379, + 'M', 4379, + 'P', 4379, + 'T', 4379, + ']', 2925, + 'd', 4395, + 'e', 4375, + 'g', 4378, + 'h', 4410, + 'k', 4378, + 'm', 4380, + 'n', 4416, + 'p', 4378, + 's', 4400, + 't', 4378, + 'u', 4416, + 'w', 4403, + '}', 3110, + 0xb5, 4416, + '\t', 3552, + ' ', 3552, + 'B', 3462, + 'b', 3462, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3610); + lookahead == ',') ADVANCE(3548); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -28559,56 +26086,56 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 479: + case 419: ADVANCE_MAP( - '#', 5024, - '(', 3294, - '.', 3392, - 'E', 4807, - 'G', 4809, - 'K', 4809, - 'M', 4809, - 'P', 4809, - 'T', 4809, - 'd', 4819, - 'e', 4806, - 'g', 4808, - 'h', 4825, - 'k', 4808, - 'm', 4810, - 'n', 4826, - 'p', 4808, - 's', 4822, - 't', 4808, - 'u', 4826, - 'w', 4823, - '}', 3170, - 0xb5, 4826, - '\t', 3614, - ' ', 3614, - 'B', 3524, - 'b', 3524, + '#', 4822, + '(', 3232, + '.', 3330, + 'E', 4605, + 'G', 4607, + 'K', 4607, + 'M', 4607, + 'P', 4607, + 'T', 4607, + 'd', 4617, + 'e', 4604, + 'g', 4606, + 'h', 4623, + 'k', 4606, + 'm', 4608, + 'n', 4624, + 'p', 4606, + 's', 4620, + 't', 4606, + 'u', 4624, + 'w', 4621, + '}', 3110, + 0xb5, 4624, + '\t', 3552, + ' ', 3552, + 'B', 3462, + 'b', 3462, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3610); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + lookahead == ',') ADVANCE(3548); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); - case 480: + case 420: ADVANCE_MAP( - '#', 5024, - '(', 3294, - '.', 3392, - ']', 2984, - '}', 3170, - '\t', 3614, - ' ', 3614, - 'E', 4592, - 'e', 4592, + '#', 4822, + '(', 3232, + '.', 3330, + ']', 2925, + '}', 3110, + '\t', 3552, + ' ', 3552, + 'E', 4389, + 'e', 4389, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3610); + lookahead == ',') ADVANCE(3548); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -28616,236 +26143,235 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 481: + case 421: ADVANCE_MAP( - '#', 5024, - '(', 3294, - '.', 3392, - '}', 3170, - '\t', 3614, - ' ', 3614, - 'E', 4817, - 'e', 4817, + '#', 4822, + '(', 3232, + '.', 3330, + '}', 3110, + '\t', 3552, + ' ', 3552, + 'E', 4615, + 'e', 4615, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3610); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + lookahead == ',') ADVANCE(3548); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); - case 482: + case 422: ADVANCE_MAP( - '#', 5024, - '(', 3294, - '.', 4081, - '=', 4090, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - '_', 4112, - 'd', 4120, - 'e', 4099, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '|', 2939, - 0xb5, 4164, - '\t', 261, - ' ', 261, - 'B', 3524, - 'b', 3524, + '#', 4822, + '(', 3232, + '.', 3912, + '=', 3922, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + '_', 3933, + 'd', 3948, + 'e', 3927, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '|', 2880, + 0xb5, 3984, + '\t', 201, + ' ', 201, + 'B', 3462, + 'b', 3462, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 483: + case 423: ADVANCE_MAP( - '#', 5024, - '(', 3294, - '.', 4081, - '=', 4090, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4099, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '|', 2939, - 0xb5, 4164, - '\t', 261, - ' ', 261, - 'B', 3524, - 'b', 3524, + '#', 4822, + '(', 3232, + '.', 3912, + '=', 3922, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'd', 3948, + 'e', 3927, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '|', 2880, + 0xb5, 3984, + '\t', 201, + ' ', 201, + 'B', 3462, + 'b', 3462, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 484: + case 424: ADVANCE_MAP( - '#', 5024, - '(', 3294, - '.', 4081, - '=', 4090, - 'E', 4103, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4102, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '|', 2939, - 0xb5, 4164, - '\t', 261, - ' ', 261, - 'B', 3524, - 'b', 3524, + '#', 4822, + '(', 3232, + '.', 3912, + '=', 3922, + 'E', 3931, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'd', 3948, + 'e', 3930, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '|', 2880, + 0xb5, 3984, + '\t', 201, + ' ', 201, + 'B', 3462, + 'b', 3462, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 485: + case 425: ADVANCE_MAP( - '#', 5024, - '(', 3294, - '.', 4081, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - '_', 4112, - 'd', 4120, - 'e', 4099, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '{', 3169, - 0xb5, 4164, - '\t', 262, - ' ', 262, - 'B', 3524, - 'b', 3524, + '#', 4822, + '(', 3232, + '.', 3912, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + '_', 3933, + 'd', 3948, + 'e', 3927, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '{', 3109, + 0xb5, 3984, + '\t', 202, + ' ', 202, + 'B', 3462, + 'b', 3462, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 486: + case 426: ADVANCE_MAP( - '#', 5024, - '(', 3294, - '.', 4081, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4099, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '{', 3169, - 0xb5, 4164, - '\t', 262, - ' ', 262, - 'B', 3524, - 'b', 3524, + '#', 4822, + '(', 3232, + '.', 3912, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'd', 3948, + 'e', 3927, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '{', 3109, + 0xb5, 3984, + '\t', 202, + ' ', 202, + 'B', 3462, + 'b', 3462, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 487: + case 427: ADVANCE_MAP( - '#', 5024, - '(', 3294, - '.', 4081, - 'E', 4103, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4102, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '{', 3169, - 0xb5, 4164, - '\t', 262, - ' ', 262, - 'B', 3524, - 'b', 3524, + '#', 4822, + '(', 3232, + '.', 3912, + 'E', 3931, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'd', 3948, + 'e', 3930, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '{', 3109, + 0xb5, 3984, + '\t', 202, + ' ', 202, + 'B', 3462, + 'b', 3462, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 488: + case 428: ADVANCE_MAP( - '#', 5024, - '(', 3294, - '.', 3378, - ']', 2984, - '}', 3170, - '\t', 3614, - ' ', 3614, - 'E', 4592, - 'e', 4592, + '#', 4822, + '(', 3232, + '.', 3316, + ']', 2925, + '\t', 3552, + ' ', 3552, + 'E', 4389, + 'e', 4389, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3610); + lookahead == ',') ADVANCE(3548); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -28853,216 +26379,216 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 489: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '(') ADVANCE(3294); - if (lookahead == '.') ADVANCE(3378); - if (lookahead == '{') ADVANCE(3169); + case 429: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '(') ADVANCE(3232); + if (lookahead == '.') ADVANCE(3316); + if (lookahead == '{') ADVANCE(3109); if (lookahead == '\t' || - lookahead == ' ') SKIP(563); + lookahead == ' ') SKIP(503); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4110); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == 'e') ADVANCE(3943); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 490: + case 430: ADVANCE_MAP( - '#', 5024, - '(', 3294, - '.', 3378, - '}', 3170, - '\t', 3614, - ' ', 3614, - 'E', 4817, - 'e', 4817, + '#', 4822, + '(', 3232, + '.', 3316, + '}', 3110, + '\t', 3552, + ' ', 3552, + 'E', 4615, + 'e', 4615, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3610); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + lookahead == ',') ADVANCE(3548); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); - case 491: + case 431: ADVANCE_MAP( - '#', 5024, - '(', 3294, - '.', 4804, - 'E', 4807, - 'G', 4809, - 'K', 4809, - 'M', 4809, - 'P', 4809, - 'T', 4809, - '_', 4813, - 'd', 4819, - 'e', 4806, - 'g', 4808, - 'h', 4825, - 'k', 4808, - 'm', 4810, - 'n', 4826, - 'p', 4808, - 's', 4822, - 't', 4808, - 'u', 4826, - 'w', 4823, - '}', 3170, - 0xb5, 4826, - '\t', 3614, - ' ', 3614, - 'B', 3524, - 'b', 3524, + '#', 4822, + '(', 3232, + '.', 4602, + 'E', 4605, + 'G', 4607, + 'K', 4607, + 'M', 4607, + 'P', 4607, + 'T', 4607, + '_', 4611, + 'd', 4617, + 'e', 4604, + 'g', 4606, + 'h', 4623, + 'k', 4606, + 'm', 4608, + 'n', 4624, + 'p', 4606, + 's', 4620, + 't', 4606, + 'u', 4624, + 'w', 4621, + '}', 3110, + 0xb5, 4624, + '\t', 3552, + ' ', 3552, + 'B', 3462, + 'b', 3462, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3610); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + lookahead == ',') ADVANCE(3548); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); - case 492: + case 432: ADVANCE_MAP( - '#', 5024, - '(', 3294, - '.', 4804, - 'E', 4807, - 'G', 4809, - 'K', 4809, - 'M', 4809, - 'P', 4809, - 'T', 4809, - 'd', 4819, - 'e', 4806, - 'g', 4808, - 'h', 4825, - 'k', 4808, - 'm', 4810, - 'n', 4826, - 'p', 4808, - 's', 4822, - 't', 4808, - 'u', 4826, - 'w', 4823, - '}', 3170, - 0xb5, 4826, - '\t', 3614, - ' ', 3614, - 'B', 3524, - 'b', 3524, + '#', 4822, + '(', 3232, + '.', 4602, + 'E', 4605, + 'G', 4607, + 'K', 4607, + 'M', 4607, + 'P', 4607, + 'T', 4607, + 'd', 4617, + 'e', 4604, + 'g', 4606, + 'h', 4623, + 'k', 4606, + 'm', 4608, + 'n', 4624, + 'p', 4606, + 's', 4620, + 't', 4606, + 'u', 4624, + 'w', 4621, + '}', 3110, + 0xb5, 4624, + '\t', 3552, + ' ', 3552, + 'B', 3462, + 'b', 3462, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3610); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + lookahead == ',') ADVANCE(3548); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); - case 493: + case 433: ADVANCE_MAP( - '#', 5024, - '(', 3294, - '.', 4804, - 'E', 4809, - 'G', 4809, - 'K', 4809, - 'M', 4809, - 'P', 4809, - 'T', 4809, - 'd', 4819, - 'e', 4808, - 'g', 4808, - 'h', 4825, - 'k', 4808, - 'm', 4810, - 'n', 4826, - 'p', 4808, - 's', 4822, - 't', 4808, - 'u', 4826, - 'w', 4823, - '}', 3170, - 0xb5, 4826, - '\t', 3614, - ' ', 3614, - 'B', 3524, - 'b', 3524, + '#', 4822, + '(', 3232, + '.', 4602, + 'E', 4607, + 'G', 4607, + 'K', 4607, + 'M', 4607, + 'P', 4607, + 'T', 4607, + 'd', 4617, + 'e', 4606, + 'g', 4606, + 'h', 4623, + 'k', 4606, + 'm', 4608, + 'n', 4624, + 'p', 4606, + 's', 4620, + 't', 4606, + 'u', 4624, + 'w', 4621, + '}', 3110, + 0xb5, 4624, + '\t', 3552, + ' ', 3552, + 'B', 3462, + 'b', 3462, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3610); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + lookahead == ',') ADVANCE(3548); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); - case 494: + case 434: ADVANCE_MAP( - '#', 5024, - '(', 3294, - '.', 4804, - '_', 4813, - '}', 3170, - '\t', 3614, - ' ', 3614, - 'E', 4817, - 'e', 4817, + '#', 4822, + '(', 3232, + '.', 4602, + '_', 4611, + '}', 3110, + '\t', 3552, + ' ', 3552, + 'E', 4615, + 'e', 4615, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3610); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + lookahead == ',') ADVANCE(3548); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); - case 495: + case 435: ADVANCE_MAP( - '#', 5024, - '(', 3294, - '.', 4804, - '}', 3170, - '\t', 3614, - ' ', 3614, - 'E', 4817, - 'e', 4817, + '#', 4822, + '(', 3232, + '.', 4602, + '}', 3110, + '\t', 3552, + ' ', 3552, + 'E', 4615, + 'e', 4615, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3610); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + lookahead == ',') ADVANCE(3548); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); - case 496: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '(') ADVANCE(3294); - if (lookahead == '.') ADVANCE(4804); - if (lookahead == '}') ADVANCE(3170); + case 436: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '(') ADVANCE(3232); + if (lookahead == '.') ADVANCE(4602); + if (lookahead == '}') ADVANCE(3110); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3614); + lookahead == ' ') ADVANCE(3552); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3610); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + lookahead == ',') ADVANCE(3548); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); - case 497: + case 437: ADVANCE_MAP( - '#', 5024, - '(', 3294, - '.', 4561, - 'E', 4578, - 'G', 4581, - 'K', 4581, - 'M', 4581, - 'P', 4581, - 'T', 4581, - ']', 2984, - '_', 4583, - 'd', 4597, - 'e', 4577, - 'g', 4580, - 'h', 4612, - 'k', 4580, - 'm', 4582, - 'n', 4618, - 'p', 4580, - 's', 4602, - 't', 4580, - 'u', 4618, - 'w', 4605, - '}', 3170, - 0xb5, 4618, - '\t', 3614, - ' ', 3614, - 'B', 3524, - 'b', 3524, + '#', 4822, + '(', 3232, + '.', 4359, + 'E', 4376, + 'G', 4379, + 'K', 4379, + 'M', 4379, + 'P', 4379, + 'T', 4379, + ']', 2925, + '_', 4381, + 'd', 4395, + 'e', 4375, + 'g', 4378, + 'h', 4410, + 'k', 4378, + 'm', 4380, + 'n', 4416, + 'p', 4378, + 's', 4400, + 't', 4378, + 'u', 4416, + 'w', 4403, + '}', 3110, + 0xb5, 4416, + '\t', 3552, + ' ', 3552, + 'B', 3462, + 'b', 3462, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3610); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + lookahead == ',') ADVANCE(3548); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -29071,40 +26597,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 498: + case 438: ADVANCE_MAP( - '#', 5024, - '(', 3294, - '.', 4561, - 'E', 4578, - 'G', 4581, - 'K', 4581, - 'M', 4581, - 'P', 4581, - 'T', 4581, - ']', 2984, - 'd', 4597, - 'e', 4577, - 'g', 4580, - 'h', 4612, - 'k', 4580, - 'm', 4582, - 'n', 4618, - 'p', 4580, - 's', 4602, - 't', 4580, - 'u', 4618, - 'w', 4605, - 0xb5, 4618, - '\t', 3614, - ' ', 3614, - 'B', 3524, - 'b', 3524, + '#', 4822, + '(', 3232, + '.', 4359, + 'E', 4376, + 'G', 4379, + 'K', 4379, + 'M', 4379, + 'P', 4379, + 'T', 4379, + ']', 2925, + 'd', 4395, + 'e', 4375, + 'g', 4378, + 'h', 4410, + 'k', 4378, + 'm', 4380, + 'n', 4416, + 'p', 4378, + 's', 4400, + 't', 4378, + 'u', 4416, + 'w', 4403, + '}', 3110, + 0xb5, 4416, + '\t', 3552, + ' ', 3552, + 'B', 3462, + 'b', 3462, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3610); + lookahead == ',') ADVANCE(3548); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -29112,40 +26639,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 499: + case 439: ADVANCE_MAP( - '#', 5024, - '(', 3294, - '.', 4561, - 'E', 4581, - 'G', 4581, - 'K', 4581, - 'M', 4581, - 'P', 4581, - 'T', 4581, - ']', 2984, - 'd', 4597, - 'e', 4580, - 'g', 4580, - 'h', 4612, - 'k', 4580, - 'm', 4582, - 'n', 4618, - 'p', 4580, - 's', 4602, - 't', 4580, - 'u', 4618, - 'w', 4605, - 0xb5, 4618, - '\t', 3614, - ' ', 3614, - 'B', 3524, - 'b', 3524, + '#', 4822, + '(', 3232, + '.', 4359, + 'E', 4379, + 'G', 4379, + 'K', 4379, + 'M', 4379, + 'P', 4379, + 'T', 4379, + ']', 2925, + 'd', 4395, + 'e', 4378, + 'g', 4378, + 'h', 4410, + 'k', 4378, + 'm', 4380, + 'n', 4416, + 'p', 4378, + 's', 4400, + 't', 4378, + 'u', 4416, + 'w', 4403, + '}', 3110, + 0xb5, 4416, + '\t', 3552, + ' ', 3552, + 'B', 3462, + 'b', 3462, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3610); + lookahead == ',') ADVANCE(3548); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -29153,24 +26681,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 500: + case 440: ADVANCE_MAP( - '#', 5024, - '(', 3294, - '.', 4561, - ']', 2984, - '_', 4583, - '}', 3170, - '\t', 3614, - ' ', 3614, - 'E', 4592, - 'e', 4592, + '#', 4822, + '(', 3232, + '.', 4359, + ']', 2925, + '_', 4381, + '}', 3110, + '\t', 3552, + ' ', 3552, + 'E', 4389, + 'e', 4389, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3610); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + lookahead == ',') ADVANCE(3548); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -29179,22 +26707,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 501: + case 441: ADVANCE_MAP( - '#', 5024, - '(', 3294, - '.', 4561, - ']', 2984, - '}', 3170, - '\t', 3614, - ' ', 3614, - 'E', 4592, - 'e', 4592, + '#', 4822, + '(', 3232, + '.', 4359, + ']', 2925, + '}', 3110, + '\t', 3552, + ' ', 3552, + 'E', 4389, + 'e', 4389, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3610); + lookahead == ',') ADVANCE(3548); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -29202,18 +26730,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 502: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '(') ADVANCE(3294); - if (lookahead == '.') ADVANCE(4561); - if (lookahead == ']') ADVANCE(2984); - if (lookahead == '}') ADVANCE(3170); + case 442: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '(') ADVANCE(3232); + if (lookahead == '.') ADVANCE(4359); + if (lookahead == ']') ADVANCE(2925); + if (lookahead == '}') ADVANCE(3110); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3614); + lookahead == ' ') ADVANCE(3552); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3610); + lookahead == ',') ADVANCE(3548); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -29221,22 +26749,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 503: + case 443: ADVANCE_MAP( - '#', 5024, - '(', 3294, - ']', 2984, - '_', 4583, - '\t', 3614, - ' ', 3614, - 'E', 4592, - 'e', 4592, + '#', 4822, + '(', 3232, + ']', 2925, + '_', 4381, + '\t', 3552, + ' ', 3552, + 'E', 4389, + 'e', 4389, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3610); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + lookahead == ',') ADVANCE(3548); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -29245,18 +26773,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 504: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '(') ADVANCE(3294); - if (lookahead == ']') ADVANCE(2984); + case 444: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '(') ADVANCE(3232); + if (lookahead == ']') ADVANCE(2925); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3614); + lookahead == ' ') ADVANCE(3552); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4592); + lookahead == 'e') ADVANCE(4389); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3610); + lookahead == ',') ADVANCE(3548); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -29264,16 +26792,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 505: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '(') ADVANCE(3294); - if (lookahead == ']') ADVANCE(2984); + case 445: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '(') ADVANCE(3232); + if (lookahead == ']') ADVANCE(2925); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3614); + lookahead == ' ') ADVANCE(3552); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3610); + lookahead == ',') ADVANCE(3548); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -29281,1140 +26809,1170 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4655); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4453); END_STATE(); - case 506: + case 446: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '(') ADVANCE(3232); + if (lookahead == '_') ADVANCE(3933); + if (lookahead == '{') ADVANCE(3109); + if (lookahead == '\t' || + lookahead == ' ') SKIP(503); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3943); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + END_STATE(); + case 447: ADVANCE_MAP( - '#', 5024, - '(', 3294, - '_', 4813, - '}', 3170, - '\t', 3614, - ' ', 3614, - 'E', 4817, - 'e', 4817, + '#', 4822, + '(', 3232, + '_', 4611, + '}', 3110, + '\t', 3552, + ' ', 3552, + 'E', 4615, + 'e', 4615, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3610); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); - END_STATE(); - case 507: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '(') ADVANCE(3294); - if (lookahead == '_') ADVANCE(4112); - if (lookahead == '{') ADVANCE(3169); - if (lookahead == '\t' || - lookahead == ' ') SKIP(563); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4110); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == ',') ADVANCE(3548); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); - case 508: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '(') ADVANCE(3294); - if (lookahead == '{') ADVANCE(3169); + case 448: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '(') ADVANCE(3232); + if (lookahead == '{') ADVANCE(3109); if (lookahead == '\t' || - lookahead == ' ') SKIP(563); + lookahead == ' ') SKIP(503); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4110); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == 'e') ADVANCE(3943); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 509: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '(') ADVANCE(3294); - if (lookahead == '}') ADVANCE(3170); + case 449: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '(') ADVANCE(3232); + if (lookahead == '}') ADVANCE(3110); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3614); + lookahead == ' ') ADVANCE(3552); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4817); + lookahead == 'e') ADVANCE(4615); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3610); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + lookahead == ',') ADVANCE(3548); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); - case 510: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '(') ADVANCE(3294); - if (lookahead == '}') ADVANCE(3170); + case 450: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '(') ADVANCE(3232); + if (lookahead == '}') ADVANCE(3110); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3614); + lookahead == ' ') ADVANCE(3552); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3610); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + lookahead == ',') ADVANCE(3548); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); - case 511: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == ',') ADVANCE(2987); - if (lookahead == ']') ADVANCE(2984); + case 451: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == ',') ADVANCE(2928); + if (lookahead == ']') ADVANCE(2925); if (lookahead == '\t' || - lookahead == ' ') SKIP(511); + lookahead == ' ') SKIP(451); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3547); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3485); END_STATE(); - case 512: + case 452: ADVANCE_MAP( - '#', 5024, - ',', 3610, - '.', 3378, - ';', 3627, - '?', 3263, - ']', 2984, - '\t', 3612, - ' ', 3612, + '#', 4822, + ',', 3548, + '.', 3316, + ';', 3565, + '?', 3201, + ']', 2925, + '\t', 3550, + ' ', 3550, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3613); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3551); END_STATE(); - case 513: + case 453: ADVANCE_MAP( - '#', 5024, - '-', 3030, - '.', 3392, - 'E', 2370, - 'G', 2416, - 'K', 2416, - 'M', 2416, - 'P', 2416, - 'T', 2416, - 'd', 2439, - 'e', 2369, - 'g', 2415, - 'h', 2595, - 'k', 2415, - 'm', 2417, - 'n', 2635, - 'p', 2415, - 's', 2468, - 't', 2415, - 'u', 2635, - 'w', 2529, - 0xb5, 2635, + '#', 4822, + '-', 2970, + '.', 3330, + 'E', 2314, + 'G', 2357, + 'K', 2357, + 'M', 2357, + 'P', 2357, + 'T', 2357, + 'd', 2380, + 'e', 2313, + 'g', 2356, + 'h', 2536, + 'k', 2356, + 'm', 2358, + 'n', 2576, + 'p', 2356, + 's', 2409, + 't', 2356, + 'u', 2576, + 'w', 2470, + 0xb5, 2576, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(519); + lookahead == ' ') SKIP(459); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3528); + lookahead == 'b') ADVANCE(3466); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4218); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); + lookahead == '^') ADVANCE(4035); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); END_STATE(); - case 514: + case 454: ADVANCE_MAP( - '#', 5024, - '-', 3030, - '.', 4081, - 'E', 2416, - 'G', 2416, - 'K', 2416, - 'M', 2416, - 'P', 2416, - 'T', 2416, - 'd', 2439, - 'e', 2415, - 'g', 2415, - 'h', 2595, - 'k', 2415, - 'm', 2417, - 'n', 2635, - 'p', 2415, - 's', 2468, - 't', 2415, - 'u', 2635, - 'w', 2529, - 0xb5, 2635, + '#', 4822, + '-', 2970, + '.', 3912, + 'E', 2357, + 'G', 2357, + 'K', 2357, + 'M', 2357, + 'P', 2357, + 'T', 2357, + 'd', 2380, + 'e', 2356, + 'g', 2356, + 'h', 2536, + 'k', 2356, + 'm', 2358, + 'n', 2576, + 'p', 2356, + 's', 2409, + 't', 2356, + 'u', 2576, + 'w', 2470, + 0xb5, 2576, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(519); + lookahead == ' ') SKIP(459); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3528); + lookahead == 'b') ADVANCE(3466); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4218); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); + lookahead == '^') ADVANCE(4035); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); END_STATE(); - case 515: + case 455: ADVANCE_MAP( - '#', 5024, - '-', 3030, - '.', 4081, - 'E', 2370, - 'G', 2416, - 'K', 2416, - 'M', 2416, - 'P', 2416, - 'T', 2416, - '_', 2422, - 'd', 2439, - 'e', 2369, - 'g', 2415, - 'h', 2595, - 'k', 2415, - 'm', 2417, - 'n', 2635, - 'p', 2415, - 's', 2468, - 't', 2415, - 'u', 2635, - 'w', 2529, - 0xb5, 2635, + '#', 4822, + '-', 2970, + '.', 3912, + 'E', 2314, + 'G', 2357, + 'K', 2357, + 'M', 2357, + 'P', 2357, + 'T', 2357, + '_', 2363, + 'd', 2380, + 'e', 2313, + 'g', 2356, + 'h', 2536, + 'k', 2356, + 'm', 2358, + 'n', 2576, + 'p', 2356, + 's', 2409, + 't', 2356, + 'u', 2576, + 'w', 2470, + 0xb5, 2576, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(519); + lookahead == ' ') SKIP(459); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3528); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3422); + lookahead == 'b') ADVANCE(3466); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3360); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4218); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); + lookahead == '^') ADVANCE(4035); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); END_STATE(); - case 516: + case 456: ADVANCE_MAP( - '#', 5024, - '-', 3030, - '.', 4081, - 'E', 2370, - 'G', 2416, - 'K', 2416, - 'M', 2416, - 'P', 2416, - 'T', 2416, - 'd', 2439, - 'e', 2369, - 'g', 2415, - 'h', 2595, - 'k', 2415, - 'm', 2417, - 'n', 2635, - 'p', 2415, - 's', 2468, - 't', 2415, - 'u', 2635, - 'w', 2529, - 0xb5, 2635, + '#', 4822, + '-', 2970, + '.', 3912, + 'E', 2314, + 'G', 2357, + 'K', 2357, + 'M', 2357, + 'P', 2357, + 'T', 2357, + 'd', 2380, + 'e', 2313, + 'g', 2356, + 'h', 2536, + 'k', 2356, + 'm', 2358, + 'n', 2576, + 'p', 2356, + 's', 2409, + 't', 2356, + 'u', 2576, + 'w', 2470, + 0xb5, 2576, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(519); + lookahead == ' ') SKIP(459); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3528); + lookahead == 'b') ADVANCE(3466); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4218); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); + lookahead == '^') ADVANCE(4035); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); END_STATE(); - case 517: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '-') ADVANCE(3030); - if (lookahead == '{') ADVANCE(3169); + case 457: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '-') ADVANCE(2970); + if (lookahead == '{') ADVANCE(3109); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(260); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == ' ') ADVANCE(200); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 518: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '-') ADVANCE(3030); + case 458: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '-') ADVANCE(2970); if (lookahead == '\t' || - lookahead == ' ') SKIP(519); + lookahead == ' ') SKIP(459); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4218); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2720); + lookahead == '^') ADVANCE(4035); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2661); END_STATE(); - case 519: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '-') ADVANCE(3030); + case 459: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '-') ADVANCE(2970); if (lookahead == '\t' || - lookahead == ' ') SKIP(519); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2720); + lookahead == ' ') SKIP(459); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2661); END_STATE(); - case 520: + case 460: ADVANCE_MAP( - '#', 5024, - '.', 3392, - '=', 4090, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4099, - 'g', 4102, - 'h', 4151, - 'i', 4134, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '|', 2939, - 0xb5, 4164, + '#', 4822, + '.', 3330, + '=', 3922, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'd', 3948, + 'e', 3927, + 'g', 3930, + 'h', 3974, + 'i', 3959, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '|', 2880, + 0xb5, 3984, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(551); + lookahead == ' ') SKIP(491); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 521: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '.') ADVANCE(3392); - if (lookahead == '=') ADVANCE(4090); - if (lookahead == 'i') ADVANCE(4134); - if (lookahead == '|') ADVANCE(2939); + case 461: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '.') ADVANCE(3330); + if (lookahead == '=') ADVANCE(3922); + if (lookahead == 'i') ADVANCE(3959); + if (lookahead == '|') ADVANCE(2880); if (lookahead == '\t' || - lookahead == ' ') SKIP(551); + lookahead == ' ') SKIP(491); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4110); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == 'e') ADVANCE(3943); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 522: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '.') ADVANCE(3392); - if (lookahead == '=') ADVANCE(4090); - if (lookahead == '|') ADVANCE(2939); + case 462: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '.') ADVANCE(3330); + if (lookahead == '=') ADVANCE(3922); + if (lookahead == '|') ADVANCE(2880); if (lookahead == '\t' || - lookahead == ' ') SKIP(552); + lookahead == ' ') SKIP(492); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4110); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == 'e') ADVANCE(3943); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 523: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '.') ADVANCE(3392); - if (lookahead == '?') ADVANCE(3263); - if (lookahead == ']') ADVANCE(2984); - if (lookahead == '}') ADVANCE(3170); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3614); + case 463: + ADVANCE_MAP( + '#', 4822, + '.', 3330, + '?', 3201, + 'E', 617, + 'G', 619, + 'K', 619, + 'M', 619, + 'P', 619, + 'T', 619, + ']', 2925, + '_', 3117, + 'd', 637, + 'e', 616, + 'g', 618, + 'h', 773, + 'k', 618, + 'm', 620, + 'n', 796, + 'p', 618, + 's', 678, + 't', 618, + 'u', 796, + 'w', 719, + '}', 3110, + 0xb5, 796, + '\t', 3552, + ' ', 3552, + 'B', 3462, + 'b', 3462, + ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3610); + lookahead == ',') ADVANCE(3548); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); END_STATE(); - case 524: + case 464: ADVANCE_MAP( - '#', 5024, - '.', 3392, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4099, - 'g', 4102, - 'h', 4151, - 'i', 4140, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - 0xb5, 4164, + '#', 4822, + '.', 3330, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'd', 3948, + 'e', 3927, + 'g', 3930, + 'h', 3974, + 'i', 3965, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + 0xb5, 3984, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(561); + lookahead == ' ') SKIP(501); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 525: + case 465: ADVANCE_MAP( - '#', 5024, - '.', 4081, - '=', 4090, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - '_', 4112, - 'd', 4120, - 'e', 4099, - 'g', 4102, - 'h', 4151, - 'i', 4134, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '|', 2939, - 0xb5, 4164, + '#', 4822, + '.', 3912, + '=', 3922, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + '_', 3933, + 'd', 3948, + 'e', 3927, + 'g', 3930, + 'h', 3974, + 'i', 3959, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '|', 2880, + 0xb5, 3984, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(551); + lookahead == ' ') SKIP(491); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == 'b') ADVANCE(3462); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 526: + case 466: ADVANCE_MAP( - '#', 5024, - '.', 4081, - '=', 4090, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4099, - 'g', 4102, - 'h', 4151, - 'i', 4134, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '|', 2939, - 0xb5, 4164, + '#', 4822, + '.', 3912, + '=', 3922, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'd', 3948, + 'e', 3927, + 'g', 3930, + 'h', 3974, + 'i', 3959, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '|', 2880, + 0xb5, 3984, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(551); + lookahead == ' ') SKIP(491); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 527: + case 467: ADVANCE_MAP( - '#', 5024, - '.', 4081, - '=', 4090, - 'E', 4103, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4102, - 'g', 4102, - 'h', 4151, - 'i', 4134, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '|', 2939, - 0xb5, 4164, + '#', 4822, + '.', 3912, + '=', 3922, + 'E', 3931, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'd', 3948, + 'e', 3930, + 'g', 3930, + 'h', 3974, + 'i', 3959, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '|', 2880, + 0xb5, 3984, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(551); + lookahead == ' ') SKIP(491); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 528: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '.') ADVANCE(4081); - if (lookahead == '=') ADVANCE(4090); - if (lookahead == '_') ADVANCE(4112); - if (lookahead == 'i') ADVANCE(4134); - if (lookahead == '|') ADVANCE(2939); + case 468: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '.') ADVANCE(3912); + if (lookahead == '=') ADVANCE(3922); + if (lookahead == '_') ADVANCE(3933); + if (lookahead == 'i') ADVANCE(3959); + if (lookahead == '|') ADVANCE(2880); if (lookahead == '\t' || - lookahead == ' ') SKIP(551); + lookahead == ' ') SKIP(491); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4110); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == 'e') ADVANCE(3943); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 529: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '.') ADVANCE(4081); - if (lookahead == '=') ADVANCE(4090); - if (lookahead == '_') ADVANCE(4112); - if (lookahead == '|') ADVANCE(2939); + case 469: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '.') ADVANCE(3912); + if (lookahead == '=') ADVANCE(3922); + if (lookahead == '_') ADVANCE(3933); + if (lookahead == '|') ADVANCE(2880); if (lookahead == '\t' || - lookahead == ' ') SKIP(552); + lookahead == ' ') SKIP(492); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4110); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == 'e') ADVANCE(3943); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 530: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '.') ADVANCE(4081); - if (lookahead == '=') ADVANCE(4090); - if (lookahead == 'i') ADVANCE(4134); - if (lookahead == '|') ADVANCE(2939); + case 470: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '.') ADVANCE(3912); + if (lookahead == '=') ADVANCE(3922); + if (lookahead == 'i') ADVANCE(3959); + if (lookahead == '|') ADVANCE(2880); if (lookahead == '\t' || - lookahead == ' ') SKIP(551); + lookahead == ' ') SKIP(491); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4110); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == 'e') ADVANCE(3943); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 531: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '.') ADVANCE(4081); - if (lookahead == '=') ADVANCE(4090); - if (lookahead == 'i') ADVANCE(4134); - if (lookahead == '|') ADVANCE(2939); + case 471: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '.') ADVANCE(3912); + if (lookahead == '=') ADVANCE(3922); + if (lookahead == 'i') ADVANCE(3959); + if (lookahead == '|') ADVANCE(2880); if (lookahead == '\t' || - lookahead == ' ') SKIP(551); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == ' ') SKIP(491); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 532: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '.') ADVANCE(4081); - if (lookahead == '=') ADVANCE(4090); - if (lookahead == '|') ADVANCE(2939); + case 472: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '.') ADVANCE(3912); + if (lookahead == '=') ADVANCE(3922); + if (lookahead == '|') ADVANCE(2880); if (lookahead == '\t' || - lookahead == ' ') SKIP(552); + lookahead == ' ') SKIP(492); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4110); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == 'e') ADVANCE(3943); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 533: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '.') ADVANCE(4081); - if (lookahead == '=') ADVANCE(4090); - if (lookahead == '|') ADVANCE(2939); + case 473: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '.') ADVANCE(3912); + if (lookahead == '=') ADVANCE(3922); + if (lookahead == '|') ADVANCE(2880); if (lookahead == '\t' || - lookahead == ' ') SKIP(552); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == ' ') SKIP(492); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 534: + case 474: ADVANCE_MAP( - '#', 5024, - '.', 4081, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - '_', 4112, - 'd', 4120, - 'e', 4099, - 'g', 4102, - 'h', 4151, - 'i', 4140, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - 0xb5, 4164, + '#', 4822, + '.', 3912, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + '_', 3933, + 'd', 3948, + 'e', 3927, + 'g', 3930, + 'h', 3974, + 'i', 3965, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + 0xb5, 3984, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(561); + lookahead == ' ') SKIP(501); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == 'b') ADVANCE(3462); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 535: + case 475: ADVANCE_MAP( - '#', 5024, - '.', 4081, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4099, - 'g', 4102, - 'h', 4151, - 'i', 4140, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - 0xb5, 4164, + '#', 4822, + '.', 3912, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'd', 3948, + 'e', 3927, + 'g', 3930, + 'h', 3974, + 'i', 3965, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + 0xb5, 3984, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(561); + lookahead == ' ') SKIP(501); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 536: + case 476: ADVANCE_MAP( - '#', 5024, - '.', 4081, - 'E', 4103, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4102, - 'g', 4102, - 'h', 4151, - 'i', 4140, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - 0xb5, 4164, + '#', 4822, + '.', 3912, + 'E', 3931, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'd', 3948, + 'e', 3930, + 'g', 3930, + 'h', 3974, + 'i', 3965, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + 0xb5, 3984, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(561); + lookahead == ' ') SKIP(501); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 537: + case 477: ADVANCE_MAP( - '#', 5024, - '.', 3378, - ':', 3615, - 'E', 2326, - 'G', 2328, - 'K', 2328, - 'M', 2328, - 'P', 2328, - 'T', 2328, - 'd', 2334, - 'e', 2325, - 'g', 2327, - 'h', 2348, - 'k', 2327, - 'm', 2329, - 'n', 2355, - 'p', 2327, - 's', 2337, - 't', 2327, - 'u', 2355, - 'w', 2342, - 0xb5, 2355, - '\t', 547, - ' ', 547, - 'B', 3524, - 'b', 3524, + '#', 4822, + '.', 3316, + ':', 3553, + 'E', 2267, + 'G', 2269, + 'K', 2269, + 'M', 2269, + 'P', 2269, + 'T', 2269, + 'd', 2275, + 'e', 2266, + 'g', 2268, + 'h', 2289, + 'k', 2268, + 'm', 2270, + 'n', 2296, + 'p', 2268, + 's', 2278, + 't', 2268, + 'u', 2296, + 'w', 2283, + 0xb5, 2296, + '\t', 487, + ' ', 487, + 'B', 3462, + 'b', 3462, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(649); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(586); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 538: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '.') ADVANCE(3378); - if (lookahead == '=') ADVANCE(4090); - if (lookahead == 'i') ADVANCE(4134); - if (lookahead == '|') ADVANCE(2939); + case 478: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '.') ADVANCE(3316); + if (lookahead == '=') ADVANCE(3922); + if (lookahead == 'i') ADVANCE(3959); + if (lookahead == '|') ADVANCE(2880); if (lookahead == '\t' || - lookahead == ' ') SKIP(551); + lookahead == ' ') SKIP(491); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4110); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == 'e') ADVANCE(3943); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 539: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '.') ADVANCE(3378); - if (lookahead == '=') ADVANCE(4090); - if (lookahead == '|') ADVANCE(2939); + case 479: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '.') ADVANCE(3316); + if (lookahead == '=') ADVANCE(3922); + if (lookahead == '|') ADVANCE(2880); if (lookahead == '\t' || - lookahead == ' ') SKIP(552); + lookahead == ' ') SKIP(492); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4110); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == 'e') ADVANCE(3943); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 540: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '.') ADVANCE(3378); - if (lookahead == '?') ADVANCE(3263); - if (lookahead == ']') ADVANCE(2984); - if (lookahead == '}') ADVANCE(3170); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3614); + case 480: + ADVANCE_MAP( + '#', 4822, + '.', 3316, + '?', 3201, + ']', 2925, + '_', 3113, + '}', 3110, + '\t', 3552, + ' ', 3552, + 'E', 628, + 'e', 628, + ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3610); + lookahead == ',') ADVANCE(3548); END_STATE(); - case 541: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '.') ADVANCE(3408); - if (lookahead == '_') ADVANCE(4112); + case 481: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '.') ADVANCE(3935); + if (lookahead == '_') ADVANCE(3933); if (lookahead == '\t' || - lookahead == ' ') SKIP(542); + lookahead == ' ') SKIP(483); if (lookahead == '+' || - lookahead == '-') ADVANCE(4082); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == '-') ADVANCE(3913); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 542: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '.') ADVANCE(692); + case 482: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '.') ADVANCE(3343); + if (lookahead == '_') ADVANCE(3933); if (lookahead == '\t' || - lookahead == ' ') SKIP(542); + lookahead == ' ') SKIP(483); if (lookahead == '+' || - lookahead == '-') ADVANCE(642); + lookahead == '-') ADVANCE(3913); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 543: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '.') ADVANCE(4117); - if (lookahead == '_') ADVANCE(4112); + case 483: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '.') ADVANCE(631); if (lookahead == '\t' || - lookahead == ' ') SKIP(542); + lookahead == ' ') SKIP(483); if (lookahead == '+' || - lookahead == '-') ADVANCE(4082); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == '-') ADVANCE(579); END_STATE(); - case 544: + case 484: ADVANCE_MAP( - '#', 5024, - ':', 3615, - 'E', 2326, - 'G', 2328, - 'K', 2328, - 'M', 2328, - 'P', 2328, - 'T', 2328, - '_', 2333, - 'd', 2334, - 'e', 2325, - 'g', 2327, - 'h', 2348, - 'k', 2327, - 'm', 2329, - 'n', 2355, - 'p', 2327, - 's', 2337, - 't', 2327, - 'u', 2355, - 'w', 2342, - 0xb5, 2355, - '\t', 547, - ' ', 547, - 'B', 3524, - 'b', 3524, + '#', 4822, + ':', 3553, + 'E', 2267, + 'G', 2269, + 'K', 2269, + 'M', 2269, + 'P', 2269, + 'T', 2269, + '_', 2274, + 'd', 2275, + 'e', 2266, + 'g', 2268, + 'h', 2289, + 'k', 2268, + 'm', 2270, + 'n', 2296, + 'p', 2268, + 's', 2278, + 't', 2268, + 'u', 2296, + 'w', 2283, + 0xb5, 2296, + '\t', 487, + ' ', 487, + 'B', 3462, + 'b', 3462, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(649); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(586); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 545: + case 485: ADVANCE_MAP( - '#', 5024, - ':', 3615, - 'E', 2326, - 'G', 2328, - 'K', 2328, - 'M', 2328, - 'P', 2328, - 'T', 2328, - 'd', 2334, - 'e', 2325, - 'g', 2327, - 'h', 2348, - 'k', 2327, - 'm', 2329, - 'n', 2355, - 'p', 2327, - 's', 2337, - 't', 2327, - 'u', 2355, - 'w', 2342, - 0xb5, 2355, - '\t', 547, - ' ', 547, - 'B', 3524, - 'b', 3524, + '#', 4822, + ':', 3553, + 'E', 2267, + 'G', 2269, + 'K', 2269, + 'M', 2269, + 'P', 2269, + 'T', 2269, + 'd', 2275, + 'e', 2266, + 'g', 2268, + 'h', 2289, + 'k', 2268, + 'm', 2270, + 'n', 2296, + 'p', 2268, + 's', 2278, + 't', 2268, + 'u', 2296, + 'w', 2283, + 0xb5, 2296, + '\t', 487, + ' ', 487, + 'B', 3462, + 'b', 3462, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(649); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(586); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 546: + case 486: ADVANCE_MAP( - '#', 5024, - ':', 3615, - 'E', 2328, - 'G', 2328, - 'K', 2328, - 'M', 2328, - 'P', 2328, - 'T', 2328, - 'd', 2334, - 'e', 2327, - 'g', 2327, - 'h', 2348, - 'k', 2327, - 'm', 2329, - 'n', 2355, - 'p', 2327, - 's', 2337, - 't', 2327, - 'u', 2355, - 'w', 2342, - 0xb5, 2355, - '\t', 547, - ' ', 547, - 'B', 3524, - 'b', 3524, + '#', 4822, + ':', 3553, + 'E', 2269, + 'G', 2269, + 'K', 2269, + 'M', 2269, + 'P', 2269, + 'T', 2269, + 'd', 2275, + 'e', 2268, + 'g', 2268, + 'h', 2289, + 'k', 2268, + 'm', 2270, + 'n', 2296, + 'p', 2268, + 's', 2278, + 't', 2268, + 'u', 2296, + 'w', 2283, + 0xb5, 2296, + '\t', 487, + ' ', 487, + 'B', 3462, + 'b', 3462, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(649); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(586); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 547: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == ':') ADVANCE(3615); + case 487: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == ':') ADVANCE(3553); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(547); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(649); + lookahead == ' ') ADVANCE(487); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(586); END_STATE(); - case 548: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '=') ADVANCE(3764); - if (lookahead == 'i') ADVANCE(3797); + case 488: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '=') ADVANCE(3694); + if (lookahead == 'i') ADVANCE(3727); if (lookahead == '\t' || - lookahead == ' ') SKIP(561); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + lookahead == ' ') SKIP(501); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 549: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '=') ADVANCE(3764); - if (lookahead == 'i') ADVANCE(2807); + case 489: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '=') ADVANCE(3694); + if (lookahead == 'i') ADVANCE(2748); if (lookahead == '\t' || - lookahead == ' ') SKIP(561); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2899); + lookahead == ' ') SKIP(501); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2840); END_STATE(); - case 550: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '=') ADVANCE(3764); - if (lookahead == '{') ADVANCE(3169); + case 490: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '=') ADVANCE(3694); + if (lookahead == '{') ADVANCE(3109); if (lookahead == '\t' || - lookahead == ' ') SKIP(563); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + lookahead == ' ') SKIP(503); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 551: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '=') ADVANCE(673); - if (lookahead == 'i') ADVANCE(746); - if (lookahead == '|') ADVANCE(2939); + case 491: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '=') ADVANCE(610); + if (lookahead == 'i') ADVANCE(685); + if (lookahead == '|') ADVANCE(2880); if (lookahead == '\t' || - lookahead == ' ') SKIP(551); + lookahead == ' ') SKIP(491); END_STATE(); - case 552: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '=') ADVANCE(673); - if (lookahead == '|') ADVANCE(2939); + case 492: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '=') ADVANCE(610); + if (lookahead == '|') ADVANCE(2880); if (lookahead == '\t' || - lookahead == ' ') SKIP(552); + lookahead == ' ') SKIP(492); END_STATE(); - case 553: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '=') ADVANCE(4090); - if (lookahead == '_') ADVANCE(4112); - if (lookahead == 'i') ADVANCE(4134); - if (lookahead == '|') ADVANCE(2939); + case 493: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '=') ADVANCE(3922); + if (lookahead == '_') ADVANCE(3933); + if (lookahead == 'i') ADVANCE(3959); + if (lookahead == '|') ADVANCE(2880); if (lookahead == '\t' || - lookahead == ' ') SKIP(551); + lookahead == ' ') SKIP(491); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4110); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == 'e') ADVANCE(3943); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 554: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '=') ADVANCE(4090); - if (lookahead == '_') ADVANCE(4112); - if (lookahead == '|') ADVANCE(2939); + case 494: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '=') ADVANCE(3922); + if (lookahead == '_') ADVANCE(3933); + if (lookahead == '|') ADVANCE(2880); if (lookahead == '\t' || - lookahead == ' ') SKIP(552); + lookahead == ' ') SKIP(492); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4110); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == 'e') ADVANCE(3943); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 555: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '=') ADVANCE(4090); - if (lookahead == 'i') ADVANCE(4134); - if (lookahead == '|') ADVANCE(2939); + case 495: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '=') ADVANCE(3922); + if (lookahead == 'i') ADVANCE(3959); + if (lookahead == '|') ADVANCE(2880); if (lookahead == '\t' || - lookahead == ' ') SKIP(551); + lookahead == ' ') SKIP(491); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4110); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == 'e') ADVANCE(3943); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 556: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '=') ADVANCE(4090); - if (lookahead == 'i') ADVANCE(4134); - if (lookahead == '|') ADVANCE(2939); + case 496: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '=') ADVANCE(3922); + if (lookahead == 'i') ADVANCE(3959); + if (lookahead == '|') ADVANCE(2880); if (lookahead == '\t' || - lookahead == ' ') SKIP(551); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == ' ') SKIP(491); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 557: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '=') ADVANCE(4090); - if (lookahead == '|') ADVANCE(2939); + case 497: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '=') ADVANCE(3922); + if (lookahead == '|') ADVANCE(2880); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(261); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == ' ') ADVANCE(201); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 558: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '=') ADVANCE(4090); - if (lookahead == '|') ADVANCE(2939); + case 498: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '=') ADVANCE(3922); + if (lookahead == '|') ADVANCE(2880); if (lookahead == '\t' || - lookahead == ' ') SKIP(552); + lookahead == ' ') SKIP(492); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4110); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == 'e') ADVANCE(3943); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 559: + case 499: ADVANCE_MAP( - '#', 5024, - ']', 2984, - 'c', 2509, - 'e', 2628, - 'f', 2695, - 'i', 2558, - 'l', 2526, - 'o', 2568, - 'v', 2447, - '\t', 3614, - ' ', 3614, + '#', 4822, + ']', 2925, + 'c', 2450, + 'e', 2569, + 'f', 2636, + 'i', 2499, + 'l', 2467, + 'o', 2509, + 'v', 2388, + '\t', 3552, + ' ', 3552, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3610); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2720); + lookahead == ',') ADVANCE(3548); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2661); END_STATE(); - case 560: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == 'i') ADVANCE(4140); + case 500: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == 'i') ADVANCE(3965); if (lookahead == '\t' || - lookahead == ' ') SKIP(561); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == ' ') SKIP(501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 561: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == 'i') ADVANCE(796); + case 501: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == 'i') ADVANCE(735); if (lookahead == '\t' || - lookahead == ' ') SKIP(561); + lookahead == ' ') SKIP(501); END_STATE(); - case 562: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == 'i') ADVANCE(2566); + case 502: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == 'i') ADVANCE(2507); if (lookahead == '\t' || - lookahead == ' ') SKIP(562); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2720); + lookahead == ' ') SKIP(502); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2661); END_STATE(); - case 563: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '{') ADVANCE(3169); + case 503: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '{') ADVANCE(3109); if (lookahead == '\t' || - lookahead == ' ') SKIP(563); + lookahead == ' ') SKIP(503); END_STATE(); - case 564: - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '{') ADVANCE(3169); + case 504: + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '{') ADVANCE(3109); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(262); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == ' ') ADVANCE(202); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 565: - if (lookahead == '#') ADVANCE(5024); + case 505: + if (lookahead == '#') ADVANCE(4822); if (lookahead == '\t' || - lookahead == ' ') SKIP(565); + lookahead == ' ') SKIP(505); END_STATE(); - case 566: - if (lookahead == '#') ADVANCE(5024); + case 506: + if (lookahead == '#') ADVANCE(4822); if (lookahead == '\t' || - lookahead == ' ') SKIP(565); - if (set_contains(sym_param_short_flag_identifier_character_set_1, 724, lookahead)) ADVANCE(3055); + lookahead == ' ') SKIP(505); + if (set_contains(sym_param_short_flag_identifier_character_set_1, 724, lookahead)) ADVANCE(2995); END_STATE(); - case 567: - if (lookahead == '#') ADVANCE(5024); + case 507: + if (lookahead == '#') ADVANCE(4822); if (lookahead == '\t' || - lookahead == ' ') SKIP(565); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3698); + lookahead == ' ') SKIP(505); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3636); END_STATE(); - case 568: - if (lookahead == '#') ADVANCE(5024); + case 508: + if (lookahead == '#') ADVANCE(4822); if (lookahead == '\t' || - lookahead == ' ') SKIP(565); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + lookahead == ' ') SKIP(505); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 569: - if (lookahead == '#') ADVANCE(5024); + case 509: + if (lookahead == '#') ADVANCE(4822); if (lookahead == '\t' || - lookahead == ' ') SKIP(565); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + lookahead == ' ') SKIP(505); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); - case 570: - if (lookahead == '#') ADVANCE(5024); + case 510: + if (lookahead == '#') ADVANCE(4822); if (lookahead == '\t' || - lookahead == ' ') SKIP(565); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + lookahead == ' ') SKIP(505); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); - case 571: - if (lookahead == '#') ADVANCE(5028); - if (lookahead == '(') ADVANCE(3294); - if (lookahead == '}') ADVANCE(3170); + case 511: + if (lookahead == '#') ADVANCE(4826); + if (lookahead == '(') ADVANCE(3232); + if (lookahead == '}') ADVANCE(3110); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3614); + lookahead == ' ') ADVANCE(3552); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3610); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5017); + lookahead == ',') ADVANCE(3548); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4815); END_STATE(); - case 572: - if (lookahead == '#') ADVANCE(5028); - if (lookahead == '(') ADVANCE(3294); + case 512: + if (lookahead == '#') ADVANCE(4826); + if (lookahead == '(') ADVANCE(3232); if (lookahead == '\t' || - lookahead == ' ') SKIP(565); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5017); + lookahead == ' ') SKIP(505); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4815); END_STATE(); - case 573: - if (lookahead == '#') ADVANCE(5031); - if (lookahead == '$') ADVANCE(2995); - if (lookahead == '-') ADVANCE(3043); - if (lookahead == '{') ADVANCE(3169); + case 513: + if (lookahead == '#') ADVANCE(4829); + if (lookahead == '$') ADVANCE(2935); + if (lookahead == '-') ADVANCE(2983); + if (lookahead == '{') ADVANCE(3109); if (lookahead == '\t' || - lookahead == ' ') SKIP(455); + lookahead == ' ') SKIP(395); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4456); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4440); + lookahead == '^') ADVANCE(4254); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4238); END_STATE(); - case 574: - if (lookahead == '#') ADVANCE(5031); - if (lookahead == '$') ADVANCE(2995); + case 514: + if (lookahead == '#') ADVANCE(4829); + if (lookahead == '$') ADVANCE(2935); if (lookahead == '\t' || - lookahead == ' ') SKIP(471); + lookahead == ' ') SKIP(411); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4456); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4440); + lookahead == '^') ADVANCE(4254); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4238); END_STATE(); - case 575: - if (lookahead == '#') ADVANCE(5031); - if (lookahead == '(') ADVANCE(3294); - if (lookahead == '-') ADVANCE(3043); - if (lookahead == '{') ADVANCE(3169); + case 515: + if (lookahead == '#') ADVANCE(4829); + if (lookahead == '(') ADVANCE(3232); + if (lookahead == '-') ADVANCE(2983); + if (lookahead == '{') ADVANCE(3109); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(260); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + lookahead == ' ') ADVANCE(200); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 576: - if (lookahead == '#') ADVANCE(5031); - if (lookahead == '(') ADVANCE(3294); - if (lookahead == '=') ADVANCE(4262); - if (lookahead == '|') ADVANCE(2939); + case 516: + if (lookahead == '#') ADVANCE(4829); + if (lookahead == '(') ADVANCE(3232); + if (lookahead == '=') ADVANCE(4070); + if (lookahead == '|') ADVANCE(2880); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(261); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + lookahead == ' ') ADVANCE(201); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 577: - if (lookahead == '#') ADVANCE(5031); - if (lookahead == '(') ADVANCE(3294); - if (lookahead == '{') ADVANCE(3169); + case 517: + if (lookahead == '#') ADVANCE(4829); + if (lookahead == '(') ADVANCE(3232); + if (lookahead == '{') ADVANCE(3109); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(262); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + lookahead == ' ') ADVANCE(202); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 578: - if (lookahead == '#') ADVANCE(5031); - if (lookahead == '-') ADVANCE(3043); + case 518: + if (lookahead == '#') ADVANCE(4829); + if (lookahead == '-') ADVANCE(2983); if (lookahead == '\t' || - lookahead == ' ') SKIP(519); + lookahead == ' ') SKIP(459); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4456); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4440); + lookahead == '^') ADVANCE(4254); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4238); END_STATE(); - case 579: - if (lookahead == '#') ADVANCE(5031); - if (lookahead == '=') ADVANCE(4262); - if (lookahead == 'i') ADVANCE(4315); - if (lookahead == '|') ADVANCE(2939); + case 519: + if (lookahead == '#') ADVANCE(4829); + if (lookahead == '=') ADVANCE(4070); + if (lookahead == 'i') ADVANCE(4121); + if (lookahead == '|') ADVANCE(2880); if (lookahead == '\t' || - lookahead == ' ') SKIP(551); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + lookahead == ' ') SKIP(491); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 580: - if (lookahead == '#') ADVANCE(5031); - if (lookahead == 'i') ADVANCE(4339); + case 520: + if (lookahead == '#') ADVANCE(4829); + if (lookahead == 'i') ADVANCE(4145); if (lookahead == '\t' || - lookahead == ' ') SKIP(561); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + lookahead == ' ') SKIP(501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 581: - if (lookahead == '#') ADVANCE(5027); - if (lookahead == ':') ADVANCE(3615); + case 521: + if (lookahead == '#') ADVANCE(4825); + if (lookahead == ':') ADVANCE(3553); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(547); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(649); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + lookahead == ' ') ADVANCE(487); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(586); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); - case 582: - if (lookahead == '#') ADVANCE(5030); - if (lookahead == '(') ADVANCE(3294); - if (lookahead == ']') ADVANCE(2984); + case 522: + if (lookahead == '#') ADVANCE(4828); + if (lookahead == '(') ADVANCE(3232); + if (lookahead == ']') ADVANCE(2925); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3614); + lookahead == ' ') ADVANCE(3552); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3610); + lookahead == ',') ADVANCE(3548); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -30422,3974 +27980,4069 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4743); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4541); + END_STATE(); + case 523: + if (lookahead == '#') ADVANCE(4828); + if (lookahead == '(') ADVANCE(3232); + if (lookahead == '\t' || + lookahead == ' ') SKIP(505); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + END_STATE(); + case 524: + if (lookahead == '#') ADVANCE(3537); + if (lookahead == '\'') ADVANCE(3540); + if (lookahead == '(') ADVANCE(2926); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3536); + if (lookahead != 0) ADVANCE(3537); + END_STATE(); + case 525: + if (lookahead == '\'') ADVANCE(3528); + if (lookahead != 0) ADVANCE(525); + END_STATE(); + case 526: + if (lookahead == '*') ADVANCE(171); + END_STATE(); + case 527: + if (lookahead == '*') ADVANCE(877); + if (lookahead == '=') ADVANCE(1112); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3236); + END_STATE(); + case 528: + if (lookahead == '*') ADVANCE(877); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3236); + END_STATE(); + case 529: + if (lookahead == '+') ADVANCE(627); + if (lookahead == '-') ADVANCE(629); + if (lookahead == '>') ADVANCE(3647); + if (lookahead == '_') ADVANCE(629); + if (lookahead == 'n') ADVANCE(665); + if (lookahead == 'r') ADVANCE(778); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + END_STATE(); + case 530: + if (lookahead == '+') ADVANCE(627); + if (lookahead == '-') ADVANCE(629); + if (lookahead == '>') ADVANCE(3647); + if (lookahead == '_') ADVANCE(629); + if (lookahead == 'r') ADVANCE(778); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + END_STATE(); + case 531: + if (lookahead == '+') ADVANCE(596); + if (lookahead == '=') ADVANCE(1110); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3244); + END_STATE(); + case 532: + if (lookahead == '+') ADVANCE(682); + if (lookahead == '>') ADVANCE(864); + if (lookahead == 'r') ADVANCE(3212); + if (lookahead == 'u') ADVANCE(820); + END_STATE(); + case 533: + if (lookahead == '+') ADVANCE(682); + if (lookahead == '>') ADVANCE(864); + if (lookahead == 'r') ADVANCE(176); + if (lookahead == 'u') ADVANCE(820); + END_STATE(); + case 534: + if (lookahead == '+') ADVANCE(682); + if (lookahead == '>') ADVANCE(864); + if (lookahead == 'r') ADVANCE(884); + if (lookahead == 'u') ADVANCE(820); + END_STATE(); + case 535: + if (lookahead == '+') ADVANCE(682); + if (lookahead == '>') ADVANCE(864); + if (lookahead == 'u') ADVANCE(820); + END_STATE(); + case 536: + if (lookahead == '+') ADVANCE(595); + if (lookahead == '=') ADVANCE(1110); + END_STATE(); + case 537: + if (lookahead == '+') ADVANCE(750); + if (lookahead == '>') ADVANCE(863); + if (lookahead == 'l') ADVANCE(802); + if (lookahead == 'r') ADVANCE(775); + END_STATE(); + case 538: + if (lookahead == '+') ADVANCE(750); + if (lookahead == '>') ADVANCE(863); + if (lookahead == 'n') ADVANCE(654); + if (lookahead == 'r') ADVANCE(775); + END_STATE(); + case 539: + if (lookahead == '+') ADVANCE(750); + if (lookahead == '>') ADVANCE(863); + if (lookahead == 'n') ADVANCE(664); + if (lookahead == 'r') ADVANCE(775); + END_STATE(); + case 540: + if (lookahead == '+') ADVANCE(750); + if (lookahead == '>') ADVANCE(863); + if (lookahead == 'r') ADVANCE(775); + END_STATE(); + case 541: + if (lookahead == '+') ADVANCE(750); + if (lookahead == '>') ADVANCE(863); + if (lookahead == 'r') ADVANCE(775); + if (lookahead == 'x') ADVANCE(836); + END_STATE(); + case 542: + if (lookahead == '+') ADVANCE(752); + if (lookahead == '>') ADVANCE(866); + END_STATE(); + case 543: + if (lookahead == '+') ADVANCE(754); + if (lookahead == '>') ADVANCE(3647); + if (lookahead == 'I') ADVANCE(897); + if (lookahead == 'i') ADVANCE(897); + if (lookahead == 'r') ADVANCE(778); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); + END_STATE(); + case 544: + if (lookahead == '+') ADVANCE(754); + if (lookahead == '>') ADVANCE(3647); + if (lookahead == 'n') ADVANCE(654); + if (lookahead == 'r') ADVANCE(778); + END_STATE(); + case 545: + if (lookahead == '+') ADVANCE(754); + if (lookahead == '>') ADVANCE(3647); + if (lookahead == 'n') ADVANCE(664); + if (lookahead == 'r') ADVANCE(778); + END_STATE(); + case 546: + if (lookahead == '+') ADVANCE(754); + if (lookahead == '>') ADVANCE(3647); + if (lookahead == 'n') ADVANCE(665); + if (lookahead == 'r') ADVANCE(778); + END_STATE(); + case 547: + if (lookahead == '+') ADVANCE(754); + if (lookahead == '>') ADVANCE(3647); + if (lookahead == 'r') ADVANCE(778); + END_STATE(); + case 548: + if (lookahead == '+') ADVANCE(679); + if (lookahead == '>') ADVANCE(3651); + if (lookahead == 'r') ADVANCE(3212); + if (lookahead == 'u') ADVANCE(823); + END_STATE(); + case 549: + if (lookahead == '+') ADVANCE(679); + if (lookahead == '>') ADVANCE(3651); + if (lookahead == 'r') ADVANCE(176); + if (lookahead == 'u') ADVANCE(823); + END_STATE(); + case 550: + if (lookahead == '+') ADVANCE(679); + if (lookahead == '>') ADVANCE(3651); + if (lookahead == 'r') ADVANCE(884); + if (lookahead == 'u') ADVANCE(823); + END_STATE(); + case 551: + if (lookahead == '+') ADVANCE(679); + if (lookahead == '>') ADVANCE(3651); + if (lookahead == 'u') ADVANCE(823); + END_STATE(); + case 552: + if (lookahead == '+') ADVANCE(874); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3244); + END_STATE(); + case 553: + if (lookahead == '+') ADVANCE(764); + if (lookahead == '>') ADVANCE(3639); + END_STATE(); + case 554: + if (lookahead == '+') ADVANCE(681); + if (lookahead == '>') ADVANCE(868); + END_STATE(); + case 555: + if (lookahead == '+') ADVANCE(683); + if (lookahead == '>') ADVANCE(3643); + END_STATE(); + case 556: + if (lookahead == '-') ADVANCE(2965); + if (lookahead == '.') ADVANCE(621); + if (lookahead == '_') ADVANCE(574); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(902); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); + END_STATE(); + case 557: + if (lookahead == '-') ADVANCE(646); + END_STATE(); + case 558: + if (lookahead == '-') ADVANCE(852); + END_STATE(); + case 559: + if (lookahead == '-') ADVANCE(714); + END_STATE(); + case 560: + if (lookahead == '-') ADVANCE(645); + END_STATE(); + case 561: + if (lookahead == '-') ADVANCE(751); + END_STATE(); + case 562: + if (lookahead == '-') ADVANCE(717); + END_STATE(); + case 563: + if (lookahead == '-') ADVANCE(710); + END_STATE(); + case 564: + if (lookahead == '-') ADVANCE(812); + END_STATE(); + case 565: + if (lookahead == '-') ADVANCE(923); + END_STATE(); + case 566: + if (lookahead == '-') ADVANCE(853); + END_STATE(); + case 567: + if (lookahead == '-') ADVANCE(772); + END_STATE(); + case 568: + if (lookahead == '-') ADVANCE(855); + END_STATE(); + case 569: + if (lookahead == '-') ADVANCE(856); + END_STATE(); + case 570: + if (lookahead == '-') ADVANCE(857); + END_STATE(); + case 571: + if (lookahead == '-') ADVANCE(858); + END_STATE(); + case 572: + if (lookahead == '.') ADVANCE(621); + if (lookahead == '>') ADVANCE(2923); + if (lookahead == '_') ADVANCE(574); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(902); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); + END_STATE(); + case 573: + if (lookahead == '.') ADVANCE(621); + if (lookahead == '_') ADVANCE(574); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(902); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); + END_STATE(); + case 574: + if (lookahead == '.') ADVANCE(621); + if (lookahead == '_') ADVANCE(574); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); + END_STATE(); + case 575: + if (lookahead == '.') ADVANCE(3122); + if (lookahead == '_') ADVANCE(623); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + END_STATE(); + case 576: + if (lookahead == '.') ADVANCE(3315); + END_STATE(); + case 577: + if (lookahead == '.') ADVANCE(3315); + if (lookahead == '_') ADVANCE(631); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3392); + END_STATE(); + case 578: + if (lookahead == '.') ADVANCE(2961); + END_STATE(); + case 579: + if (lookahead == '.') ADVANCE(622); + if (lookahead == '_') ADVANCE(579); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); + END_STATE(); + case 580: + if (lookahead == '.') ADVANCE(578); + END_STATE(); + case 581: + if (lookahead == '.') ADVANCE(578); + if (lookahead == '_') ADVANCE(631); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3392); + END_STATE(); + case 582: + if (lookahead == '/') ADVANCE(878); + if (lookahead == '=') ADVANCE(1113); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3238); END_STATE(); case 583: - if (lookahead == '#') ADVANCE(5030); - if (lookahead == '(') ADVANCE(3294); + if (lookahead == '/') ADVANCE(878); if (lookahead == '\t' || - lookahead == ' ') SKIP(565); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); + lookahead == ' ') ADVANCE(3238); END_STATE(); case 584: - if (lookahead == '#') ADVANCE(3599); - if (lookahead == '\'') ADVANCE(3602); - if (lookahead == '(') ADVANCE(2985); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3598); - if (lookahead != 0) ADVANCE(3599); + if (lookahead == '2') ADVANCE(911); + if (lookahead == '0' || + lookahead == '1') ADVANCE(918); END_STATE(); case 585: - if (lookahead == '\'') ADVANCE(3590); - if (lookahead != 0) ADVANCE(585); + if (lookahead == ':') ADVANCE(3553); + if (lookahead == ';') ADVANCE(3565); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(585); END_STATE(); case 586: - if (lookahead == '*') ADVANCE(231); + if (lookahead == ':') ADVANCE(3553); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(586); END_STATE(); case 587: - if (lookahead == '*') ADVANCE(938); - if (lookahead == '=') ADVANCE(1171); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3298); + if (lookahead == ':') ADVANCE(915); END_STATE(); case 588: - if (lookahead == '*') ADVANCE(938); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3298); + if (lookahead == ':') ADVANCE(919); END_STATE(); case 589: - if (lookahead == '+') ADVANCE(688); - if (lookahead == '-') ADVANCE(690); - if (lookahead == '>') ADVANCE(3711); - if (lookahead == '_') ADVANCE(690); - if (lookahead == 'n') ADVANCE(726); - if (lookahead == 'r') ADVANCE(839); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if (lookahead == ';') ADVANCE(3565); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(589); END_STATE(); case 590: - if (lookahead == '+') ADVANCE(688); - if (lookahead == '-') ADVANCE(690); - if (lookahead == '>') ADVANCE(3711); - if (lookahead == '_') ADVANCE(690); - if (lookahead == 'r') ADVANCE(839); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if (lookahead == '=') ADVANCE(3223); + if (lookahead == '~') ADVANCE(3229); END_STATE(); case 591: - if (lookahead == '+') ADVANCE(659); - if (lookahead == '=') ADVANCE(1169); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3306); + if (lookahead == '=') ADVANCE(1112); END_STATE(); case 592: - if (lookahead == '+') ADVANCE(743); - if (lookahead == '>') ADVANCE(925); - if (lookahead == 'r') ADVANCE(3274); - if (lookahead == 'u') ADVANCE(881); + if (lookahead == '=') ADVANCE(1111); END_STATE(); case 593: - if (lookahead == '+') ADVANCE(743); - if (lookahead == '>') ADVANCE(925); - if (lookahead == 'r') ADVANCE(236); - if (lookahead == 'u') ADVANCE(881); + if (lookahead == '=') ADVANCE(1111); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3245); END_STATE(); case 594: - if (lookahead == '+') ADVANCE(743); - if (lookahead == '>') ADVANCE(925); - if (lookahead == 'r') ADVANCE(945); - if (lookahead == 'u') ADVANCE(881); + if (lookahead == '=') ADVANCE(1113); END_STATE(); case 595: - if (lookahead == '+') ADVANCE(743); - if (lookahead == '>') ADVANCE(925); - if (lookahead == 'u') ADVANCE(881); + if (lookahead == '=') ADVANCE(1114); END_STATE(); case 596: - if (lookahead == '+') ADVANCE(658); - if (lookahead == '=') ADVANCE(1169); + if (lookahead == '=') ADVANCE(1114); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3235); END_STATE(); case 597: - if (lookahead == '+') ADVANCE(811); - if (lookahead == '>') ADVANCE(924); - if (lookahead == 'l') ADVANCE(863); - if (lookahead == 'r') ADVANCE(836); + if (lookahead == '=') ADVANCE(875); + if (lookahead == '~') ADVANCE(876); END_STATE(); case 598: - if (lookahead == '+') ADVANCE(811); - if (lookahead == '>') ADVANCE(924); - if (lookahead == 'n') ADVANCE(715); - if (lookahead == 'r') ADVANCE(836); + if (lookahead == '=') ADVANCE(3222); + if (lookahead == '>') ADVANCE(3111); + if (lookahead == '~') ADVANCE(3228); END_STATE(); case 599: - if (lookahead == '+') ADVANCE(811); - if (lookahead == '>') ADVANCE(924); - if (lookahead == 'n') ADVANCE(725); - if (lookahead == 'r') ADVANCE(836); + if (lookahead == '=') ADVANCE(169); + if (lookahead == '~') ADVANCE(170); END_STATE(); case 600: - if (lookahead == '+') ADVANCE(811); - if (lookahead == '>') ADVANCE(924); - if (lookahead == 'r') ADVANCE(836); + if (lookahead == '=') ADVANCE(879); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3278); END_STATE(); case 601: - if (lookahead == '+') ADVANCE(811); - if (lookahead == '>') ADVANCE(924); - if (lookahead == 'r') ADVANCE(836); - if (lookahead == 'x') ADVANCE(897); + if (lookahead == '=') ADVANCE(880); + if (lookahead == '>') ADVANCE(3111); + if (lookahead == '~') ADVANCE(881); END_STATE(); case 602: - if (lookahead == '+') ADVANCE(813); - if (lookahead == '>') ADVANCE(927); + if (lookahead == '=') ADVANCE(880); + if (lookahead == '~') ADVANCE(881); END_STATE(); case 603: - if (lookahead == '+') ADVANCE(815); - if (lookahead == '>') ADVANCE(3711); - if (lookahead == 'I') ADVANCE(958); - if (lookahead == 'i') ADVANCE(958); - if (lookahead == 'r') ADVANCE(839); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); + if (lookahead == '=') ADVANCE(882); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3280); END_STATE(); case 604: - if (lookahead == '+') ADVANCE(815); - if (lookahead == '>') ADVANCE(3711); - if (lookahead == 'n') ADVANCE(715); - if (lookahead == 'r') ADVANCE(839); + if (lookahead == '=') ADVANCE(173); + if (lookahead == '>') ADVANCE(3111); + if (lookahead == '~') ADVANCE(174); END_STATE(); case 605: - if (lookahead == '+') ADVANCE(815); - if (lookahead == '>') ADVANCE(3711); - if (lookahead == 'n') ADVANCE(725); - if (lookahead == 'r') ADVANCE(839); + if (lookahead == '=') ADVANCE(173); + if (lookahead == '~') ADVANCE(174); END_STATE(); case 606: - if (lookahead == '+') ADVANCE(815); - if (lookahead == '>') ADVANCE(3711); - if (lookahead == 'n') ADVANCE(726); - if (lookahead == 'r') ADVANCE(839); + if (lookahead == '>') ADVANCE(3667); END_STATE(); case 607: - if (lookahead == '+') ADVANCE(815); - if (lookahead == '>') ADVANCE(3711); - if (lookahead == 'r') ADVANCE(839); + if (lookahead == '>') ADVANCE(3663); END_STATE(); case 608: - if (lookahead == '+') ADVANCE(740); - if (lookahead == '>') ADVANCE(3716); - if (lookahead == 'r') ADVANCE(3274); - if (lookahead == 'u') ADVANCE(884); + if (lookahead == '>') ADVANCE(3655); END_STATE(); case 609: - if (lookahead == '+') ADVANCE(740); - if (lookahead == '>') ADVANCE(3716); - if (lookahead == 'r') ADVANCE(236); - if (lookahead == 'u') ADVANCE(884); + if (lookahead == '>') ADVANCE(3659); END_STATE(); case 610: - if (lookahead == '+') ADVANCE(740); - if (lookahead == '>') ADVANCE(3716); - if (lookahead == 'r') ADVANCE(945); - if (lookahead == 'u') ADVANCE(884); + if (lookahead == '>') ADVANCE(3111); END_STATE(); case 611: - if (lookahead == '+') ADVANCE(740); - if (lookahead == '>') ADVANCE(3716); - if (lookahead == 'u') ADVANCE(884); + if (lookahead == '>') ADVANCE(2923); END_STATE(); case 612: - if (lookahead == '+') ADVANCE(935); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3306); + if (lookahead == '>') ADVANCE(865); END_STATE(); case 613: - if (lookahead == '+') ADVANCE(825); - if (lookahead == '>') ADVANCE(3701); + if (lookahead == '>') ADVANCE(867); END_STATE(); case 614: - if (lookahead == '+') ADVANCE(742); - if (lookahead == '>') ADVANCE(929); + if (lookahead == '>') ADVANCE(869); END_STATE(); case 615: - if (lookahead == '+') ADVANCE(744); - if (lookahead == '>') ADVANCE(3706); + if (lookahead == '>') ADVANCE(870); END_STATE(); case 616: - if (lookahead == '-') ADVANCE(3025); - if (lookahead == '.') ADVANCE(682); - if (lookahead == '_') ADVANCE(636); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); + if (lookahead == 'I') ADVANCE(897); + if (lookahead == '_') ADVANCE(629); + if (lookahead == 'i') ADVANCE(897); + if (lookahead == '+' || + lookahead == '-') ADVANCE(629); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); END_STATE(); case 617: - if (lookahead == '-') ADVANCE(707); + if (lookahead == 'I') ADVANCE(897); + if (lookahead == '_') ADVANCE(629); + if (lookahead == 'i') ADVANCE(649); + if (lookahead == '+' || + lookahead == '-') ADVANCE(629); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); END_STATE(); case 618: - if (lookahead == '-') ADVANCE(913); + if (lookahead == 'I') ADVANCE(897); + if (lookahead == 'i') ADVANCE(897); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); END_STATE(); case 619: - if (lookahead == '-') ADVANCE(775); + if (lookahead == 'I') ADVANCE(897); + if (lookahead == 'i') ADVANCE(649); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); END_STATE(); case 620: - if (lookahead == '-') ADVANCE(706); + if (lookahead == 'I') ADVANCE(897); + if (lookahead == 'i') ADVANCE(733); + if (lookahead == 's') ADVANCE(3467); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); END_STATE(); case 621: - if (lookahead == '-') ADVANCE(812); + if (lookahead == '_') ADVANCE(621); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3451); END_STATE(); case 622: - if (lookahead == '-') ADVANCE(778); + if (lookahead == '_') ADVANCE(622); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); END_STATE(); case 623: - if (lookahead == '-') ADVANCE(771); + if (lookahead == '_') ADVANCE(623); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); END_STATE(); case 624: - if (lookahead == '-') ADVANCE(873); + if (lookahead == '_') ADVANCE(625); + if (lookahead == '+' || + lookahead == '-') ADVANCE(625); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); END_STATE(); case 625: - if (lookahead == '-') ADVANCE(984); + if (lookahead == '_') ADVANCE(625); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); END_STATE(); case 626: - if (lookahead == '-') ADVANCE(914); + if (lookahead == '_') ADVANCE(626); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); END_STATE(); case 627: - if (lookahead == '-') ADVANCE(833); + if (lookahead == '_') ADVANCE(629); + if (lookahead == 'o') ADVANCE(606); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); END_STATE(); case 628: - if (lookahead == '-') ADVANCE(916); + if (lookahead == '_') ADVANCE(629); + if (lookahead == '+' || + lookahead == '-') ADVANCE(629); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); END_STATE(); case 629: - if (lookahead == '-') ADVANCE(917); + if (lookahead == '_') ADVANCE(629); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); END_STATE(); case 630: - if (lookahead == '-') ADVANCE(918); + if (lookahead == '_') ADVANCE(630); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); END_STATE(); case 631: - if (lookahead == '-') ADVANCE(919); + if (lookahead == '_') ADVANCE(631); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3392); END_STATE(); case 632: - if (lookahead == '.') ADVANCE(682); - if (lookahead == '>') ADVANCE(2982); - if (lookahead == '_') ADVANCE(636); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3307); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); + if (lookahead == '_') ADVANCE(633); + if (lookahead == '+' || + lookahead == '-') ADVANCE(633); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); END_STATE(); case 633: - if (lookahead == '.') ADVANCE(682); - if (lookahead == '>') ADVANCE(2982); - if (lookahead == '_') ADVANCE(636); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); + if (lookahead == '_') ADVANCE(633); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); END_STATE(); case 634: - if (lookahead == '.') ADVANCE(682); - if (lookahead == '_') ADVANCE(636); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3307); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); + if (lookahead == '`') ADVANCE(3530); + if (lookahead != 0) ADVANCE(634); END_STATE(); case 635: - if (lookahead == '.') ADVANCE(682); - if (lookahead == '_') ADVANCE(636); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); + if (lookahead == 'a') ADVANCE(720); + if (lookahead == 'o') ADVANCE(655); END_STATE(); case 636: - if (lookahead == '.') ADVANCE(682); - if (lookahead == '_') ADVANCE(636); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); + if (lookahead == 'a') ADVANCE(780); END_STATE(); case 637: - if (lookahead == '.') ADVANCE(3184); - if (lookahead == '_') ADVANCE(684); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3510); + if (lookahead == 'a') ADVANCE(859); END_STATE(); case 638: - if (lookahead == '.') ADVANCE(3377); + if (lookahead == 'a') ADVANCE(797); END_STATE(); case 639: - if (lookahead == '.') ADVANCE(3377); - if (lookahead == '_') ADVANCE(692); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3454); + if (lookahead == 'a') ADVANCE(729); END_STATE(); case 640: - if (lookahead == '.') ADVANCE(3021); + if (lookahead == 'a') ADVANCE(822); END_STATE(); case 641: - if (lookahead == '.') ADVANCE(683); - if (lookahead == '_') ADVANCE(642); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); + if (lookahead == 'a') ADVANCE(829); END_STATE(); case 642: - if (lookahead == '.') ADVANCE(683); - if (lookahead == '_') ADVANCE(642); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); + if (lookahead == 'a') ADVANCE(824); END_STATE(); case 643: - if (lookahead == '.') ADVANCE(640); + if (lookahead == 'a') ADVANCE(835); END_STATE(); case 644: - if (lookahead == '.') ADVANCE(640); - if (lookahead == '_') ADVANCE(692); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3454); + if (lookahead == 'a') ADVANCE(818); END_STATE(); case 645: - if (lookahead == '/') ADVANCE(939); - if (lookahead == '=') ADVANCE(1172); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3300); + if (lookahead == 'a') ADVANCE(746); + if (lookahead == 'o') ADVANCE(790); + if (lookahead == 's') ADVANCE(698); + if (lookahead == 'x') ADVANCE(766); END_STATE(); case 646: - if (lookahead == '/') ADVANCE(939); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3300); + if (lookahead == 'a') ADVANCE(745); + if (lookahead == 'o') ADVANCE(787); + if (lookahead == 's') ADVANCE(691); + if (lookahead == 'x') ADVANCE(767); END_STATE(); case 647: - if (lookahead == '2') ADVANCE(972); - if (lookahead == '0' || - lookahead == '1') ADVANCE(979); + if (lookahead == 'a') ADVANCE(794); END_STATE(); case 648: - if (lookahead == ':') ADVANCE(3615); - if (lookahead == ';') ADVANCE(3627); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(648); + if (lookahead == 'a') ADVANCE(795); END_STATE(); case 649: - if (lookahead == ':') ADVANCE(3615); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(649); + if (lookahead == 'b') ADVANCE(3462); END_STATE(); case 650: - if (lookahead == ':') ADVANCE(976); + if (lookahead == 'c') ADVANCE(3467); END_STATE(); case 651: - if (lookahead == ':') ADVANCE(980); + if (lookahead == 'c') ADVANCE(669); END_STATE(); case 652: - if (lookahead == ';') ADVANCE(3627); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(652); + if (lookahead == 'c') ADVANCE(696); END_STATE(); case 653: - if (lookahead == '=') ADVANCE(3285); - if (lookahead == '~') ADVANCE(3291); + if (lookahead == 'c') ADVANCE(697); END_STATE(); case 654: - if (lookahead == '=') ADVANCE(1171); + if (lookahead == 'd') ADVANCE(799); END_STATE(); case 655: - if (lookahead == '=') ADVANCE(1170); + if (lookahead == 'd') ADVANCE(845); END_STATE(); case 656: - if (lookahead == '=') ADVANCE(1170); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3307); + if (lookahead == 'd') ADVANCE(3204); END_STATE(); case 657: - if (lookahead == '=') ADVANCE(1172); + if (lookahead == 'd') ADVANCE(671); END_STATE(); case 658: - if (lookahead == '=') ADVANCE(1173); + if (lookahead == 'd') ADVANCE(177); END_STATE(); case 659: - if (lookahead == '=') ADVANCE(1173); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3297); + if (lookahead == 'd') ADVANCE(178); END_STATE(); case 660: - if (lookahead == '=') ADVANCE(936); - if (lookahead == '~') ADVANCE(937); + if (lookahead == 'd') ADVANCE(885); END_STATE(); case 661: - if (lookahead == '=') ADVANCE(3284); - if (lookahead == '>') ADVANCE(3171); - if (lookahead == '~') ADVANCE(3290); + if (lookahead == 'd') ADVANCE(886); END_STATE(); case 662: - if (lookahead == '=') ADVANCE(229); - if (lookahead == '~') ADVANCE(230); + if (lookahead == 'd') ADVANCE(182); END_STATE(); case 663: - if (lookahead == '=') ADVANCE(940); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3340); + if (lookahead == 'd') ADVANCE(890); END_STATE(); case 664: - if (lookahead == '=') ADVANCE(941); - if (lookahead == '>') ADVANCE(3171); - if (lookahead == '~') ADVANCE(942); + if (lookahead == 'd') ADVANCE(806); END_STATE(); case 665: - if (lookahead == '=') ADVANCE(941); - if (lookahead == '~') ADVANCE(942); + if (lookahead == 'd') ADVANCE(808); END_STATE(); case 666: - if (lookahead == '=') ADVANCE(943); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3342); + if (lookahead == 'e') ADVANCE(2947); END_STATE(); case 667: - if (lookahead == '=') ADVANCE(233); - if (lookahead == '>') ADVANCE(3171); - if (lookahead == '~') ADVANCE(234); + if (lookahead == 'e') ADVANCE(2159); END_STATE(); case 668: - if (lookahead == '=') ADVANCE(233); - if (lookahead == '~') ADVANCE(234); + if (lookahead == 'e') ADVANCE(2204); END_STATE(); case 669: - if (lookahead == '>') ADVANCE(3736); + if (lookahead == 'e') ADVANCE(722); END_STATE(); case 670: - if (lookahead == '>') ADVANCE(3731); + if (lookahead == 'e') ADVANCE(2914); END_STATE(); case 671: - if (lookahead == '>') ADVANCE(3721); + if (lookahead == 'e') ADVANCE(3164); END_STATE(); case 672: - if (lookahead == '>') ADVANCE(3726); + if (lookahead == 'e') ADVANCE(3066); END_STATE(); case 673: - if (lookahead == '>') ADVANCE(3171); + if (lookahead == 'e') ADVANCE(2907); END_STATE(); case 674: - if (lookahead == '>') ADVANCE(2982); + if (lookahead == 'e') ADVANCE(3094); END_STATE(); case 675: - if (lookahead == '>') ADVANCE(926); + if (lookahead == 'e') ADVANCE(851); + if (lookahead == 'o') ADVANCE(813); + if (lookahead == 'u') ADVANCE(724); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(903); END_STATE(); case 676: - if (lookahead == '>') ADVANCE(928); + if (lookahead == 'e') ADVANCE(690); + if (lookahead == 'o') ADVANCE(3079); END_STATE(); case 677: - if (lookahead == '>') ADVANCE(930); + if (lookahead == 'e') ADVANCE(777); END_STATE(); case 678: - if (lookahead == '>') ADVANCE(931); + if (lookahead == 'e') ADVANCE(650); END_STATE(); case 679: - if (lookahead == 'I') ADVANCE(958); - if (lookahead == 'i') ADVANCE(958); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); + if (lookahead == 'e') ADVANCE(607); END_STATE(); case 680: - if (lookahead == 'I') ADVANCE(958); - if (lookahead == 'i') ADVANCE(710); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); + if (lookahead == 'e') ADVANCE(781); END_STATE(); case 681: - if (lookahead == 'I') ADVANCE(958); - if (lookahead == 'i') ADVANCE(794); - if (lookahead == 's') ADVANCE(3529); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); + if (lookahead == 'e') ADVANCE(783); END_STATE(); case 682: - if (lookahead == '_') ADVANCE(682); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3513); + if (lookahead == 'e') ADVANCE(613); END_STATE(); case 683: - if (lookahead == '_') ADVANCE(683); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3461); + if (lookahead == 'e') ADVANCE(788); END_STATE(); case 684: - if (lookahead == '_') ADVANCE(684); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3510); + if (lookahead == 'f') ADVANCE(2946); END_STATE(); case 685: - if (lookahead == '_') ADVANCE(686); - if (lookahead == '+' || - lookahead == '-') ADVANCE(686); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3505); + if (lookahead == 'f') ADVANCE(3086); END_STATE(); case 686: - if (lookahead == '_') ADVANCE(686); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3505); + if (lookahead == 'f') ADVANCE(3086); + if (lookahead == 'n') ADVANCE(3048); END_STATE(); case 687: - if (lookahead == '_') ADVANCE(687); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if (lookahead == 'f') ADVANCE(3086); + if (lookahead == 'n') ADVANCE(175); END_STATE(); case 688: - if (lookahead == '_') ADVANCE(690); - if (lookahead == 'o') ADVANCE(669); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if (lookahead == 'f') ADVANCE(3086); + if (lookahead == 'n') ADVANCE(883); END_STATE(); case 689: - if (lookahead == '_') ADVANCE(690); - if (lookahead == '+' || - lookahead == '-') ADVANCE(690); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if (lookahead == 'f') ADVANCE(3086); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(899); END_STATE(); case 690: - if (lookahead == '_') ADVANCE(690); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if (lookahead == 'f') ADVANCE(2889); END_STATE(); case 691: - if (lookahead == '_') ADVANCE(691); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if (lookahead == 'h') ADVANCE(727); END_STATE(); case 692: - if (lookahead == '_') ADVANCE(692); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3454); + if (lookahead == 'h') ADVANCE(2936); END_STATE(); case 693: - if (lookahead == '_') ADVANCE(694); - if (lookahead == '+' || - lookahead == '-') ADVANCE(694); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); + if (lookahead == 'h') ADVANCE(3220); END_STATE(); case 694: - if (lookahead == '_') ADVANCE(694); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); + if (lookahead == 'h') ADVANCE(3218); END_STATE(); case 695: - if (lookahead == '`') ADVANCE(3592); - if (lookahead != 0) ADVANCE(695); + if (lookahead == 'h') ADVANCE(2944); END_STATE(); case 696: - if (lookahead == 'a') ADVANCE(781); - if (lookahead == 'o') ADVANCE(716); + if (lookahead == 'h') ADVANCE(3102); END_STATE(); case 697: - if (lookahead == 'a') ADVANCE(841); + if (lookahead == 'h') ADVANCE(3134); END_STATE(); case 698: - if (lookahead == 'a') ADVANCE(920); + if (lookahead == 'h') ADVANCE(728); END_STATE(); case 699: - if (lookahead == 'a') ADVANCE(858); + if (lookahead == 'h') ADVANCE(561); END_STATE(); case 700: - if (lookahead == 'a') ADVANCE(790); + if (lookahead == 'h') ADVANCE(186); END_STATE(); case 701: - if (lookahead == 'a') ADVANCE(883); + if (lookahead == 'h') ADVANCE(187); END_STATE(); case 702: - if (lookahead == 'a') ADVANCE(890); + if (lookahead == 'h') ADVANCE(894); END_STATE(); case 703: - if (lookahead == 'a') ADVANCE(885); + if (lookahead == 'h') ADVANCE(895); END_STATE(); case 704: - if (lookahead == 'a') ADVANCE(896); + if (lookahead == 'i') ADVANCE(811); END_STATE(); case 705: - if (lookahead == 'a') ADVANCE(879); + if (lookahead == 'i') ADVANCE(657); END_STATE(); case 706: - if (lookahead == 'a') ADVANCE(807); - if (lookahead == 'o') ADVANCE(851); - if (lookahead == 's') ADVANCE(759); - if (lookahead == 'x') ADVANCE(827); + if (lookahead == 'i') ADVANCE(803); END_STATE(); case 707: - if (lookahead == 'a') ADVANCE(806); - if (lookahead == 'o') ADVANCE(848); - if (lookahead == 's') ADVANCE(752); - if (lookahead == 'x') ADVANCE(828); + if (lookahead == 'i') ADVANCE(638); END_STATE(); case 708: - if (lookahead == 'a') ADVANCE(855); + if (lookahead == 'i') ADVANCE(817); END_STATE(); case 709: - if (lookahead == 'a') ADVANCE(856); + if (lookahead == 'i') ADVANCE(821); END_STATE(); case 710: - if (lookahead == 'b') ADVANCE(3524); + if (lookahead == 'i') ADVANCE(731); END_STATE(); case 711: - if (lookahead == 'c') ADVANCE(3529); + if (lookahead == 'i') ADVANCE(828); END_STATE(); case 712: - if (lookahead == 'c') ADVANCE(730); + if (lookahead == 'i') ADVANCE(831); END_STATE(); case 713: - if (lookahead == 'c') ADVANCE(757); + if (lookahead == 'i') ADVANCE(832); END_STATE(); case 714: - if (lookahead == 'c') ADVANCE(758); + if (lookahead == 'i') ADVANCE(742); END_STATE(); case 715: - if (lookahead == 'd') ADVANCE(860); + if (lookahead == 'i') ADVANCE(833); END_STATE(); case 716: - if (lookahead == 'd') ADVANCE(906); + if (lookahead == 'i') ADVANCE(834); END_STATE(); case 717: - if (lookahead == 'd') ADVANCE(3266); + if (lookahead == 'i') ADVANCE(743); END_STATE(); case 718: - if (lookahead == 'd') ADVANCE(732); + if (lookahead == 'i') ADVANCE(837); END_STATE(); case 719: - if (lookahead == 'd') ADVANCE(237); + if (lookahead == 'k') ADVANCE(3467); END_STATE(); case 720: - if (lookahead == 'd') ADVANCE(238); + if (lookahead == 'k') ADVANCE(672); + if (lookahead == 't') ADVANCE(652); END_STATE(); case 721: - if (lookahead == 'd') ADVANCE(946); + if (lookahead == 'l') ADVANCE(2212); END_STATE(); case 722: - if (lookahead == 'd') ADVANCE(947); + if (lookahead == 'l') ADVANCE(725); END_STATE(); case 723: - if (lookahead == 'd') ADVANCE(242); + if (lookahead == 'l') ADVANCE(707); END_STATE(); case 724: - if (lookahead == 'd') ADVANCE(951); + if (lookahead == 'l') ADVANCE(721); END_STATE(); case 725: - if (lookahead == 'd') ADVANCE(867); + if (lookahead == 'l') ADVANCE(567); END_STATE(); case 726: - if (lookahead == 'd') ADVANCE(869); + if (lookahead == 'l') ADVANCE(673); END_STATE(); case 727: - if (lookahead == 'e') ADVANCE(3007); + if (lookahead == 'l') ADVANCE(183); + if (lookahead == 'r') ADVANCE(184); END_STATE(); case 728: - if (lookahead == 'e') ADVANCE(2218); + if (lookahead == 'l') ADVANCE(891); + if (lookahead == 'r') ADVANCE(892); END_STATE(); case 729: - if (lookahead == 'e') ADVANCE(2263); + if (lookahead == 'l') ADVANCE(801); END_STATE(); case 730: - if (lookahead == 'e') ADVANCE(783); + if (lookahead == 'n') ADVANCE(658); END_STATE(); case 731: - if (lookahead == 'e') ADVANCE(2973); + if (lookahead == 'n') ADVANCE(3216); END_STATE(); case 732: - if (lookahead == 'e') ADVANCE(3226); + if (lookahead == 'n') ADVANCE(2945); END_STATE(); case 733: - if (lookahead == 'e') ADVANCE(3126); + if (lookahead == 'n') ADVANCE(3467); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); END_STATE(); case 734: - if (lookahead == 'e') ADVANCE(2966); + if (lookahead == 'n') ADVANCE(2900); END_STATE(); case 735: - if (lookahead == 'e') ADVANCE(3154); + if (lookahead == 'n') ADVANCE(3048); END_STATE(); case 736: - if (lookahead == 'e') ADVANCE(912); - if (lookahead == 'o') ADVANCE(874); - if (lookahead == 'u') ADVANCE(785); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(964); + if (lookahead == 'n') ADVANCE(654); END_STATE(); case 737: - if (lookahead == 'e') ADVANCE(751); - if (lookahead == 'o') ADVANCE(3139); + if (lookahead == 'n') ADVANCE(656); END_STATE(); case 738: - if (lookahead == 'e') ADVANCE(838); + if (lookahead == 'n') ADVANCE(656); + if (lookahead == 's') ADVANCE(3188); END_STATE(); case 739: - if (lookahead == 'e') ADVANCE(711); + if (lookahead == 'n') ADVANCE(660); END_STATE(); case 740: - if (lookahead == 'e') ADVANCE(670); + if (lookahead == 'n') ADVANCE(175); END_STATE(); case 741: - if (lookahead == 'e') ADVANCE(842); + if (lookahead == 'n') ADVANCE(883); END_STATE(); case 742: - if (lookahead == 'e') ADVANCE(844); + if (lookahead == 'n') ADVANCE(181); END_STATE(); case 743: - if (lookahead == 'e') ADVANCE(676); + if (lookahead == 'n') ADVANCE(889); END_STATE(); case 744: - if (lookahead == 'e') ADVANCE(849); + if (lookahead == 'n') ADVANCE(804); END_STATE(); case 745: - if (lookahead == 'f') ADVANCE(3006); + if (lookahead == 'n') ADVANCE(662); END_STATE(); case 746: - if (lookahead == 'f') ADVANCE(3146); + if (lookahead == 'n') ADVANCE(663); END_STATE(); case 747: - if (lookahead == 'f') ADVANCE(3146); - if (lookahead == 'n') ADVANCE(3108); + if (lookahead == 'n') ADVANCE(664); END_STATE(); case 748: - if (lookahead == 'f') ADVANCE(3146); - if (lookahead == 'n') ADVANCE(235); + if (lookahead == 'o') ADVANCE(684); END_STATE(); case 749: - if (lookahead == 'f') ADVANCE(3146); - if (lookahead == 'n') ADVANCE(944); + if (lookahead == 'o') ADVANCE(3079); END_STATE(); case 750: - if (lookahead == 'f') ADVANCE(3146); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(960); + if (lookahead == 'o') ADVANCE(612); END_STATE(); case 751: - if (lookahead == 'f') ADVANCE(2948); + if (lookahead == 'o') ADVANCE(770); END_STATE(); case 752: - if (lookahead == 'h') ADVANCE(788); + if (lookahead == 'o') ADVANCE(848); END_STATE(); case 753: - if (lookahead == 'h') ADVANCE(2996); + if (lookahead == 'o') ADVANCE(816); END_STATE(); case 754: - if (lookahead == 'h') ADVANCE(3282); + if (lookahead == 'o') ADVANCE(606); END_STATE(); case 755: - if (lookahead == 'h') ADVANCE(3280); + if (lookahead == 'o') ADVANCE(744); END_STATE(); case 756: - if (lookahead == 'h') ADVANCE(3004); + if (lookahead == 'o') ADVANCE(776); END_STATE(); case 757: - if (lookahead == 'h') ADVANCE(3162); + if (lookahead == 'o') ADVANCE(789); END_STATE(); case 758: - if (lookahead == 'h') ADVANCE(3196); + if (lookahead == 'o') ADVANCE(813); END_STATE(); case 759: - if (lookahead == 'h') ADVANCE(789); + if (lookahead == 'o') ADVANCE(813); + if (lookahead == 'u') ADVANCE(724); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(903); END_STATE(); case 760: - if (lookahead == 'h') ADVANCE(621); + if (lookahead == 'o') ADVANCE(827); END_STATE(); case 761: - if (lookahead == 'h') ADVANCE(246); + if (lookahead == 'o') ADVANCE(830); END_STATE(); case 762: - if (lookahead == 'h') ADVANCE(247); + if (lookahead == 'o') ADVANCE(786); END_STATE(); case 763: - if (lookahead == 'h') ADVANCE(955); + if (lookahead == 'o') ADVANCE(659); END_STATE(); case 764: - if (lookahead == 'h') ADVANCE(956); + if (lookahead == 'o') ADVANCE(849); END_STATE(); case 765: - if (lookahead == 'i') ADVANCE(872); + if (lookahead == 'o') ADVANCE(661); END_STATE(); case 766: - if (lookahead == 'i') ADVANCE(718); + if (lookahead == 'o') ADVANCE(792); END_STATE(); case 767: - if (lookahead == 'i') ADVANCE(864); + if (lookahead == 'o') ADVANCE(791); END_STATE(); case 768: - if (lookahead == 'i') ADVANCE(699); + if (lookahead == 'p') ADVANCE(640); END_STATE(); case 769: - if (lookahead == 'i') ADVANCE(878); + if (lookahead == 'p') ADVANCE(666); END_STATE(); case 770: - if (lookahead == 'i') ADVANCE(882); + if (lookahead == 'p') ADVANCE(826); END_STATE(); case 771: - if (lookahead == 'i') ADVANCE(792); + if (lookahead == 'p') ADVANCE(641); END_STATE(); case 772: - if (lookahead == 'i') ADVANCE(889); + if (lookahead == 'p') ADVANCE(642); END_STATE(); case 773: - if (lookahead == 'i') ADVANCE(892); + if (lookahead == 'r') ADVANCE(3467); END_STATE(); case 774: - if (lookahead == 'i') ADVANCE(893); + if (lookahead == 'r') ADVANCE(847); END_STATE(); case 775: - if (lookahead == 'i') ADVANCE(803); + if (lookahead == 'r') ADVANCE(542); END_STATE(); case 776: - if (lookahead == 'i') ADVANCE(894); + if (lookahead == 'r') ADVANCE(3208); END_STATE(); case 777: - if (lookahead == 'i') ADVANCE(895); + if (lookahead == 'r') ADVANCE(732); END_STATE(); case 778: - if (lookahead == 'i') ADVANCE(804); + if (lookahead == 'r') ADVANCE(553); END_STATE(); case 779: - if (lookahead == 'i') ADVANCE(898); + if (lookahead == 'r') ADVANCE(846); END_STATE(); case 780: - if (lookahead == 'k') ADVANCE(3529); + if (lookahead == 'r') ADVANCE(839); END_STATE(); case 781: - if (lookahead == 'k') ADVANCE(733); - if (lookahead == 't') ADVANCE(713); + if (lookahead == 'r') ADVANCE(734); END_STATE(); case 782: - if (lookahead == 'l') ADVANCE(2271); + if (lookahead == 'r') ADVANCE(609); END_STATE(); case 783: - if (lookahead == 'l') ADVANCE(786); + if (lookahead == 'r') ADVANCE(793); END_STATE(); case 784: - if (lookahead == 'l') ADVANCE(768); + if (lookahead == 'r') ADVANCE(176); END_STATE(); case 785: - if (lookahead == 'l') ADVANCE(782); + if (lookahead == 'r') ADVANCE(884); END_STATE(); case 786: - if (lookahead == 'l') ADVANCE(627); + if (lookahead == 'r') ADVANCE(179); END_STATE(); case 787: - if (lookahead == 'l') ADVANCE(734); + if (lookahead == 'r') ADVANCE(180); END_STATE(); case 788: - if (lookahead == 'l') ADVANCE(243); - if (lookahead == 'r') ADVANCE(244); + if (lookahead == 'r') ADVANCE(782); END_STATE(); case 789: - if (lookahead == 'l') ADVANCE(952); - if (lookahead == 'r') ADVANCE(953); + if (lookahead == 'r') ADVANCE(887); END_STATE(); case 790: - if (lookahead == 'l') ADVANCE(862); + if (lookahead == 'r') ADVANCE(888); END_STATE(); case 791: - if (lookahead == 'n') ADVANCE(719); + if (lookahead == 'r') ADVANCE(185); END_STATE(); case 792: - if (lookahead == 'n') ADVANCE(3278); + if (lookahead == 'r') ADVANCE(893); END_STATE(); case 793: - if (lookahead == 'n') ADVANCE(3005); + if (lookahead == 'r') ADVANCE(615); END_STATE(); case 794: - if (lookahead == 'n') ADVANCE(3529); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); + if (lookahead == 'r') ADVANCE(840); END_STATE(); case 795: - if (lookahead == 'n') ADVANCE(2959); + if (lookahead == 'r') ADVANCE(841); END_STATE(); case 796: - if (lookahead == 'n') ADVANCE(3108); + if (lookahead == 's') ADVANCE(3467); END_STATE(); case 797: - if (lookahead == 'n') ADVANCE(715); + if (lookahead == 's') ADVANCE(1075); END_STATE(); case 798: - if (lookahead == 'n') ADVANCE(717); + if (lookahead == 's') ADVANCE(3188); END_STATE(); case 799: - if (lookahead == 'n') ADVANCE(717); - if (lookahead == 's') ADVANCE(3250); + if (lookahead == 's') ADVANCE(558); END_STATE(); case 800: - if (lookahead == 'n') ADVANCE(721); + if (lookahead == 's') ADVANCE(670); END_STATE(); case 801: - if (lookahead == 'n') ADVANCE(235); + if (lookahead == 's') ADVANCE(668); END_STATE(); case 802: - if (lookahead == 'n') ADVANCE(944); + if (lookahead == 's') ADVANCE(674); END_STATE(); case 803: - if (lookahead == 'n') ADVANCE(241); + if (lookahead == 's') ADVANCE(814); END_STATE(); case 804: - if (lookahead == 'n') ADVANCE(950); + if (lookahead == 's') ADVANCE(815); END_STATE(); case 805: - if (lookahead == 'n') ADVANCE(865); + if (lookahead == 's') ADVANCE(566); END_STATE(); case 806: - if (lookahead == 'n') ADVANCE(723); + if (lookahead == 's') ADVANCE(568); END_STATE(); case 807: - if (lookahead == 'n') ADVANCE(724); + if (lookahead == 's') ADVANCE(569); END_STATE(); case 808: - if (lookahead == 'n') ADVANCE(725); + if (lookahead == 's') ADVANCE(570); END_STATE(); case 809: - if (lookahead == 'o') ADVANCE(745); + if (lookahead == 's') ADVANCE(571); END_STATE(); case 810: - if (lookahead == 'o') ADVANCE(3139); + if (lookahead == 't') ADVANCE(636); END_STATE(); case 811: - if (lookahead == 'o') ADVANCE(675); + if (lookahead == 't') ADVANCE(557); END_STATE(); case 812: - if (lookahead == 'o') ADVANCE(831); + if (lookahead == 't') ADVANCE(860); END_STATE(); case 813: - if (lookahead == 'o') ADVANCE(909); + if (lookahead == 't') ADVANCE(912); END_STATE(); case 814: - if (lookahead == 'o') ADVANCE(877); + if (lookahead == 't') ADVANCE(2948); END_STATE(); case 815: - if (lookahead == 'o') ADVANCE(669); + if (lookahead == 't') ADVANCE(1103); END_STATE(); case 816: - if (lookahead == 'o') ADVANCE(805); + if (lookahead == 't') ADVANCE(559); END_STATE(); case 817: - if (lookahead == 'o') ADVANCE(837); + if (lookahead == 't') ADVANCE(700); END_STATE(); case 818: - if (lookahead == 'o') ADVANCE(850); + if (lookahead == 't') ADVANCE(652); END_STATE(); case 819: - if (lookahead == 'o') ADVANCE(874); + if (lookahead == 't') ADVANCE(677); END_STATE(); case 820: - if (lookahead == 'o') ADVANCE(874); - if (lookahead == 'u') ADVANCE(785); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(964); + if (lookahead == 't') ADVANCE(554); END_STATE(); case 821: - if (lookahead == 'o') ADVANCE(888); + if (lookahead == 't') ADVANCE(699); END_STATE(); case 822: - if (lookahead == 'o') ADVANCE(891); + if (lookahead == 't') ADVANCE(692); END_STATE(); case 823: - if (lookahead == 'o') ADVANCE(847); + if (lookahead == 't') ADVANCE(555); END_STATE(); case 824: - if (lookahead == 'o') ADVANCE(720); + if (lookahead == 't') ADVANCE(695); END_STATE(); case 825: - if (lookahead == 'o') ADVANCE(910); + if (lookahead == 't') ADVANCE(608); END_STATE(); case 826: - if (lookahead == 'o') ADVANCE(722); + if (lookahead == 't') ADVANCE(564); END_STATE(); case 827: - if (lookahead == 'o') ADVANCE(853); + if (lookahead == 't') ADVANCE(562); END_STATE(); case 828: - if (lookahead == 'o') ADVANCE(852); + if (lookahead == 't') ADVANCE(702); END_STATE(); case 829: - if (lookahead == 'p') ADVANCE(701); + if (lookahead == 't') ADVANCE(819); END_STATE(); case 830: - if (lookahead == 'p') ADVANCE(727); + if (lookahead == 't') ADVANCE(563); END_STATE(); case 831: - if (lookahead == 'p') ADVANCE(887); + if (lookahead == 't') ADVANCE(693); END_STATE(); case 832: - if (lookahead == 'p') ADVANCE(702); + if (lookahead == 't') ADVANCE(694); END_STATE(); case 833: - if (lookahead == 'p') ADVANCE(703); + if (lookahead == 't') ADVANCE(560); END_STATE(); case 834: - if (lookahead == 'r') ADVANCE(3529); + if (lookahead == 't') ADVANCE(701); END_STATE(); case 835: - if (lookahead == 'r') ADVANCE(908); + if (lookahead == 't') ADVANCE(653); END_STATE(); case 836: - if (lookahead == 'r') ADVANCE(602); + if (lookahead == 't') ADVANCE(680); END_STATE(); case 837: - if (lookahead == 'r') ADVANCE(3270); + if (lookahead == 't') ADVANCE(703); END_STATE(); case 838: - if (lookahead == 'r') ADVANCE(793); + if (lookahead == 't') ADVANCE(614); END_STATE(); case 839: - if (lookahead == 'r') ADVANCE(613); + if (lookahead == 't') ADVANCE(805); END_STATE(); case 840: - if (lookahead == 'r') ADVANCE(907); + if (lookahead == 't') ADVANCE(807); END_STATE(); case 841: - if (lookahead == 'r') ADVANCE(900); + if (lookahead == 't') ADVANCE(809); END_STATE(); case 842: - if (lookahead == 'r') ADVANCE(795); + if (lookahead == 't') ADVANCE(647); END_STATE(); case 843: - if (lookahead == 'r') ADVANCE(672); + if (lookahead == 't') ADVANCE(648); END_STATE(); case 844: - if (lookahead == 'r') ADVANCE(854); + if (lookahead == 'u') ADVANCE(862); + if (lookahead == 'x') ADVANCE(931); + if (lookahead != 0) ADVANCE(3545); END_STATE(); case 845: - if (lookahead == 'r') ADVANCE(236); + if (lookahead == 'u') ADVANCE(726); END_STATE(); case 846: - if (lookahead == 'r') ADVANCE(945); + if (lookahead == 'u') ADVANCE(667); END_STATE(); case 847: - if (lookahead == 'r') ADVANCE(239); + if (lookahead == 'u') ADVANCE(667); + if (lookahead == 'y') ADVANCE(3127); END_STATE(); case 848: - if (lookahead == 'r') ADVANCE(240); + if (lookahead == 'u') ADVANCE(838); END_STATE(); case 849: - if (lookahead == 'r') ADVANCE(843); + if (lookahead == 'u') ADVANCE(825); END_STATE(); case 850: - if (lookahead == 'r') ADVANCE(948); + if (lookahead == 'u') ADVANCE(861); + if (lookahead == 'x') ADVANCE(932); + if (lookahead != 0) ADVANCE(3532); END_STATE(); case 851: - if (lookahead == 'r') ADVANCE(949); + if (lookahead == 'w') ADVANCE(3181); END_STATE(); case 852: - if (lookahead == 'r') ADVANCE(245); + if (lookahead == 'w') ADVANCE(708); END_STATE(); case 853: - if (lookahead == 'r') ADVANCE(954); + if (lookahead == 'w') ADVANCE(716); END_STATE(); case 854: - if (lookahead == 'r') ADVANCE(678); + if (lookahead == 'w') ADVANCE(709); END_STATE(); case 855: - if (lookahead == 'r') ADVANCE(901); + if (lookahead == 'w') ADVANCE(711); END_STATE(); case 856: - if (lookahead == 'r') ADVANCE(902); + if (lookahead == 'w') ADVANCE(718); END_STATE(); case 857: - if (lookahead == 's') ADVANCE(3529); + if (lookahead == 'w') ADVANCE(712); END_STATE(); case 858: - if (lookahead == 's') ADVANCE(1135); + if (lookahead == 'w') ADVANCE(713); END_STATE(); case 859: - if (lookahead == 's') ADVANCE(3250); + if (lookahead == 'y') ADVANCE(3467); END_STATE(); case 860: - if (lookahead == 's') ADVANCE(618); + if (lookahead == 'y') ADVANCE(769); END_STATE(); case 861: - if (lookahead == 's') ADVANCE(731); + if (lookahead == '{') ADVANCE(927); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(933); END_STATE(); case 862: - if (lookahead == 's') ADVANCE(729); + if (lookahead == '{') ADVANCE(930); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(929); END_STATE(); case 863: - if (lookahead == 's') ADVANCE(735); + if (lookahead == '|') ADVANCE(2883); END_STATE(); case 864: - if (lookahead == 's') ADVANCE(875); + if (lookahead == '|') ADVANCE(2884); END_STATE(); case 865: - if (lookahead == 's') ADVANCE(876); + if (lookahead == '|') ADVANCE(2888); END_STATE(); case 866: - if (lookahead == 's') ADVANCE(626); + if (lookahead == '|') ADVANCE(2881); END_STATE(); case 867: - if (lookahead == 's') ADVANCE(628); + if (lookahead == '|') ADVANCE(2887); END_STATE(); case 868: - if (lookahead == 's') ADVANCE(629); + if (lookahead == '|') ADVANCE(2882); END_STATE(); case 869: - if (lookahead == 's') ADVANCE(630); + if (lookahead == '|') ADVANCE(2885); END_STATE(); case 870: - if (lookahead == 's') ADVANCE(631); + if (lookahead == '|') ADVANCE(2886); END_STATE(); case 871: - if (lookahead == 't') ADVANCE(697); + if (lookahead == '}') ADVANCE(3532); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(871); END_STATE(); case 872: - if (lookahead == 't') ADVANCE(617); + if (lookahead == '}') ADVANCE(3545); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(872); END_STATE(); case 873: - if (lookahead == 't') ADVANCE(921); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3245); END_STATE(); case 874: - if (lookahead == 't') ADVANCE(973); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3235); END_STATE(); case 875: - if (lookahead == 't') ADVANCE(3008); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3277); END_STATE(); case 876: - if (lookahead == 't') ADVANCE(1162); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3253); END_STATE(); case 877: - if (lookahead == 't') ADVANCE(619); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3234); END_STATE(); case 878: - if (lookahead == 't') ADVANCE(761); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3242); END_STATE(); case 879: - if (lookahead == 't') ADVANCE(713); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3279); END_STATE(); case 880: - if (lookahead == 't') ADVANCE(738); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3275); END_STATE(); case 881: - if (lookahead == 't') ADVANCE(614); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3251); END_STATE(); case 882: - if (lookahead == 't') ADVANCE(760); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3281); END_STATE(); case 883: - if (lookahead == 't') ADVANCE(753); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3267); END_STATE(); case 884: - if (lookahead == 't') ADVANCE(615); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3265); END_STATE(); case 885: - if (lookahead == 't') ADVANCE(756); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3261); END_STATE(); case 886: - if (lookahead == 't') ADVANCE(671); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3240); END_STATE(); case 887: - if (lookahead == 't') ADVANCE(624); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3263); END_STATE(); case 888: - if (lookahead == 't') ADVANCE(622); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3259); END_STATE(); case 889: - if (lookahead == 't') ADVANCE(763); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3269); END_STATE(); case 890: - if (lookahead == 't') ADVANCE(880); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3255); END_STATE(); case 891: - if (lookahead == 't') ADVANCE(623); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3247); END_STATE(); case 892: - if (lookahead == 't') ADVANCE(754); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3249); END_STATE(); case 893: - if (lookahead == 't') ADVANCE(755); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3257); END_STATE(); case 894: - if (lookahead == 't') ADVANCE(620); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3273); END_STATE(); case 895: - if (lookahead == 't') ADVANCE(762); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3271); END_STATE(); case 896: - if (lookahead == 't') ADVANCE(714); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(903); END_STATE(); case 897: - if (lookahead == 't') ADVANCE(741); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); END_STATE(); case 898: - if (lookahead == 't') ADVANCE(764); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2235); END_STATE(); case 899: - if (lookahead == 't') ADVANCE(677); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2230); END_STATE(); case 900: - if (lookahead == 't') ADVANCE(866); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(907); END_STATE(); case 901: - if (lookahead == 't') ADVANCE(868); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(908); END_STATE(); case 902: - if (lookahead == 't') ADVANCE(870); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(898); END_STATE(); case 903: - if (lookahead == 't') ADVANCE(708); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2241); END_STATE(); case 904: - if (lookahead == 't') ADVANCE(709); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(900); END_STATE(); case 905: - if (lookahead == 'u') ADVANCE(923); - if (lookahead == 'x') ADVANCE(992); - if (lookahead != 0) ADVANCE(3607); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(899); END_STATE(); case 906: - if (lookahead == 'u') ADVANCE(787); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(901); END_STATE(); case 907: - if (lookahead == 'u') ADVANCE(728); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(909); END_STATE(); case 908: - if (lookahead == 'u') ADVANCE(728); - if (lookahead == 'y') ADVANCE(3189); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(910); END_STATE(); case 909: - if (lookahead == 'u') ADVANCE(899); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2232); END_STATE(); case 910: - if (lookahead == 'u') ADVANCE(886); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2220); END_STATE(); case 911: - if (lookahead == 'u') ADVANCE(922); - if (lookahead == 'x') ADVANCE(993); - if (lookahead != 0) ADVANCE(3594); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3496); END_STATE(); case 912: - if (lookahead == 'w') ADVANCE(3243); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3231); END_STATE(); case 913: - if (lookahead == 'w') ADVANCE(769); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3486); END_STATE(); case 914: - if (lookahead == 'w') ADVANCE(777); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(588); END_STATE(); case 915: - if (lookahead == 'w') ADVANCE(770); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(914); END_STATE(); case 916: - if (lookahead == 'w') ADVANCE(772); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3489); END_STATE(); case 917: - if (lookahead == 'w') ADVANCE(779); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3512); END_STATE(); case 918: - if (lookahead == 'w') ADVANCE(773); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3496); END_STATE(); case 919: - if (lookahead == 'w') ADVANCE(774); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(916); END_STATE(); case 920: - if (lookahead == 'y') ADVANCE(3529); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(565); END_STATE(); case 921: - if (lookahead == 'y') ADVANCE(830); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3509); END_STATE(); case 922: - if (lookahead == '{') ADVANCE(988); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(994); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(920); END_STATE(); case 923: - if (lookahead == '{') ADVANCE(991); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(990); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(921); END_STATE(); case 924: - if (lookahead == '|') ADVANCE(2942); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(587); END_STATE(); case 925: - if (lookahead == '|') ADVANCE(2943); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(924); END_STATE(); case 926: - if (lookahead == '|') ADVANCE(2947); - END_STATE(); - case 927: - if (lookahead == '|') ADVANCE(2940); - END_STATE(); - case 928: - if (lookahead == '|') ADVANCE(2946); - END_STATE(); - case 929: - if (lookahead == '|') ADVANCE(2941); - END_STATE(); - case 930: - if (lookahead == '|') ADVANCE(2944); - END_STATE(); - case 931: - if (lookahead == '|') ADVANCE(2945); - END_STATE(); - case 932: - if (lookahead == '}') ADVANCE(3594); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(932); - END_STATE(); - case 933: - if (lookahead == '}') ADVANCE(3607); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(933); - END_STATE(); - case 934: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3307); - END_STATE(); - case 935: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3297); - END_STATE(); - case 936: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3339); - END_STATE(); - case 937: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3315); - END_STATE(); - case 938: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3296); - END_STATE(); - case 939: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3304); - END_STATE(); - case 940: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3341); - END_STATE(); - case 941: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3337); - END_STATE(); - case 942: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3313); - END_STATE(); - case 943: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3343); - END_STATE(); - case 944: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3329); - END_STATE(); - case 945: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3327); - END_STATE(); - case 946: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3323); - END_STATE(); - case 947: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3302); - END_STATE(); - case 948: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3325); - END_STATE(); - case 949: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3321); - END_STATE(); - case 950: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3331); - END_STATE(); - case 951: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3317); - END_STATE(); - case 952: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3309); - END_STATE(); - case 953: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3311); - END_STATE(); - case 954: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3319); - END_STATE(); - case 955: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3335); - END_STATE(); - case 956: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3333); - END_STATE(); - case 957: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(964); - END_STATE(); - case 958: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - END_STATE(); - case 959: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2294); - END_STATE(); - case 960: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2289); - END_STATE(); - case 961: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(968); - END_STATE(); - case 962: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(969); - END_STATE(); - case 963: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(959); - END_STATE(); - case 964: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2300); - END_STATE(); - case 965: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(961); - END_STATE(); - case 966: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(960); - END_STATE(); - case 967: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(962); - END_STATE(); - case 968: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(970); - END_STATE(); - case 969: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(971); - END_STATE(); - case 970: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2291); - END_STATE(); - case 971: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2279); - END_STATE(); - case 972: - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3558); - END_STATE(); - case 973: - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3293); - END_STATE(); - case 974: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3548); - END_STATE(); - case 975: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(651); - END_STATE(); - case 976: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(975); - END_STATE(); - case 977: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3551); - END_STATE(); - case 978: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3574); - END_STATE(); - case 979: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3558); - END_STATE(); - case 980: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(977); - END_STATE(); - case 981: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(625); - END_STATE(); - case 982: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3571); - END_STATE(); - case 983: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(981); - END_STATE(); - case 984: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(982); - END_STATE(); - case 985: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(650); - END_STATE(); - case 986: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(985); - END_STATE(); - case 987: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3594); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3532); END_STATE(); - case 988: + case 927: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(932); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(871); END_STATE(); - case 989: + case 928: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3607); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3545); END_STATE(); - case 990: + case 929: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(992); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(931); END_STATE(); - case 991: + case 930: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(933); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(872); END_STATE(); - case 992: + case 931: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(989); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(928); END_STATE(); - case 993: + case 932: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(987); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(926); END_STATE(); - case 994: + case 933: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(993); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(932); END_STATE(); - case 995: - if (eof) ADVANCE(1124); + case 934: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '!', 653, - '#', 5024, - '$', 2989, - '(', 3294, - ')', 2986, - ',', 2987, - '-', 3030, - '.', 3378, - ';', 2938, - '<', 3287, - '=', 661, - '>', 3019, - '?', 3263, - 'E', 689, - '[', 3546, - '_', 691, - 'a', 799, - 'e', 589, - 'i', 747, - 'n', 822, - 'o', 608, - 's', 904, - 'x', 817, - '{', 3169, - '|', 2939, - '}', 3170, + '!', 590, + '#', 4822, + '$', 2929, + '(', 3232, + ')', 2927, + '-', 2970, + '.', 3316, + ';', 2879, + '<', 3225, + '=', 598, + '>', 2959, + '?', 3201, + 'E', 628, + '[', 3484, + '_', 630, + 'a', 738, + 'e', 529, + 'i', 686, + 'n', 761, + 'o', 548, + 's', 843, + 'x', 756, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(996); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + lookahead == ' ') SKIP(935); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); END_STATE(); - case 996: - if (eof) ADVANCE(1124); + case 935: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '!', 653, - '#', 5024, - '$', 2989, - ')', 2986, - ',', 2987, - '-', 3030, - ';', 2938, - '<', 3287, - '=', 661, - '>', 3019, - '?', 3263, - 'a', 799, - 'e', 606, - 'i', 747, - 'n', 822, - 'o', 608, - 's', 904, - 'x', 817, - '{', 3169, - '|', 2939, - '}', 3170, + '!', 590, + '#', 4822, + '$', 2929, + ')', 2927, + '-', 2970, + ';', 2879, + '<', 3225, + '=', 598, + '>', 2959, + '?', 3201, + 'a', 738, + 'e', 546, + 'i', 686, + 'n', 761, + 'o', 548, + 's', 843, + 'x', 756, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(996); + lookahead == ' ') SKIP(935); END_STATE(); - case 997: - if (eof) ADVANCE(1124); + case 936: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '!', 653, - '#', 5024, - ')', 2986, - ',', 2987, - '-', 3030, - '.', 3392, - ';', 2938, - '<', 3287, - '=', 661, - '>', 3019, - '?', 3263, - 'E', 689, - '_', 691, - 'a', 799, - 'e', 589, - 'i', 747, - 'n', 822, - 'o', 608, - 's', 904, - 'x', 817, - '{', 3169, - '|', 2939, - '}', 3170, + '!', 590, + '#', 4822, + ')', 2927, + '-', 2970, + '.', 3330, + ';', 2879, + '<', 3225, + '=', 598, + '>', 2959, + '?', 3201, + 'E', 628, + '_', 630, + 'a', 738, + 'e', 529, + 'i', 686, + 'n', 761, + 'o', 548, + 's', 843, + 'x', 756, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(998); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + lookahead == ' ') SKIP(937); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); END_STATE(); - case 998: - if (eof) ADVANCE(1124); + case 937: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '!', 653, - '#', 5024, - ')', 2986, - ',', 2987, - '-', 3030, - ';', 2938, - '<', 3287, - '=', 661, - '>', 3019, - '?', 3263, - 'a', 799, - 'e', 606, - 'i', 747, - 'n', 822, - 'o', 608, - 's', 904, - 'x', 817, - '{', 3169, - '|', 2939, - '}', 3170, + '!', 590, + '#', 4822, + ')', 2927, + '-', 2970, + ';', 2879, + '<', 3225, + '=', 598, + '>', 2959, + '?', 3201, + 'a', 738, + 'e', 546, + 'i', 686, + 'n', 761, + 'o', 548, + 's', 843, + 'x', 756, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(998); + lookahead == ' ') SKIP(937); END_STATE(); - case 999: - if (eof) ADVANCE(1124); + case 938: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5026, - '$', 2990, - '\'', 585, - '(', 2985, - '+', 1405, - '-', 3047, - '.', 1406, - '0', 3472, - ';', 2938, - 'I', 1637, - 'N', 1634, - '[', 2983, - '^', 3699, - '_', 1427, - '`', 695, - 'a', 1523, - 'b', 1568, - 'c', 1428, - 'd', 1454, - 'e', 1532, - 'f', 1431, - 'h', 1508, - 'i', 1424, - 'l', 1476, - 'm', 1433, - 'n', 1455, - 'o', 1628, - 'r', 1456, - 's', 1546, - 't', 1560, - 'u', 1588, - 'w', 1501, - '{', 3169, + '"', 3524, + '#', 4824, + '$', 2930, + '\'', 525, + '(', 2926, + '+', 1346, + '-', 2987, + '.', 1347, + '0', 3410, + ';', 2879, + 'I', 1578, + 'N', 1575, + '[', 2924, + '^', 3637, + '_', 1368, + '`', 634, + 'a', 1464, + 'b', 1509, + 'c', 1369, + 'd', 1395, + 'e', 1473, + 'f', 1372, + 'h', 1449, + 'i', 1365, + 'l', 1417, + 'm', 1374, + 'n', 1396, + 'o', 1569, + 'r', 1397, + 's', 1487, + 't', 1501, + 'u', 1529, + 'w', 1442, + '{', 3109, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(999); + lookahead == ' ') SKIP(938); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3495); + lookahead == '@') ADVANCE(1884); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3433); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1643); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1584); END_STATE(); - case 1000: - if (eof) ADVANCE(1124); + case 939: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 3294, - ')', 2986, - '+', 3878, - '-', 3033, - '.', 3875, - '0', 3473, - ';', 2938, - 'N', 4016, - '[', 2983, - '_', 3903, - '`', 695, - 'e', 3843, - 'f', 3917, - 'n', 3987, - 'o', 3844, - 't', 3960, - '{', 3169, - '|', 2939, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 3232, + ')', 2927, + '+', 3797, + '-', 2973, + '.', 3794, + '0', 3411, + ';', 2879, + 'N', 3856, + '[', 2924, + '_', 3811, + '`', 634, + 'e', 3772, + 'f', 3824, + 'n', 3852, + 'o', 3773, + 't', 3839, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1026); + lookahead == ' ') SKIP(966); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4021); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); + lookahead == 'i') ADVANCE(3860); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4040); + lookahead != ']') ADVANCE(3879); END_STATE(); - case 1001: - if (eof) ADVANCE(1124); + case 940: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 3294, - ')', 2986, - '+', 4079, - '-', 3034, - '.', 4080, - '0', 3426, - ';', 2938, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'N', 4188, - 'P', 4103, - 'T', 4103, - '[', 2983, - '_', 4112, - '`', 695, - 'd', 4120, - 'e', 4049, - 'f', 4121, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4163, - 'o', 4051, - 'p', 4102, - 's', 4127, - 't', 4101, - 'u', 4164, - 'w', 4135, - '{', 3169, - '|', 2939, - '}', 3170, - 0xb5, 4164, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 3232, + ')', 2927, + '+', 3913, + '-', 2976, + '.', 3909, + '0', 3364, + ';', 2879, + 'N', 4005, + '[', 2924, + '_', 3933, + '`', 634, + 'e', 3881, + 'f', 3947, + 'n', 3992, + 'o', 3882, + 't', 3976, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1026); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); + lookahead == ' ') SKIP(983); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4195); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3441); + lookahead == 'i') ADVANCE(4012); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3379); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4218); + lookahead != ']') ADVANCE(4035); END_STATE(); - case 1002: - if (eof) ADVANCE(1124); + case 941: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 3294, - ')', 2986, - '+', 4079, - '-', 3034, - '.', 4080, - '0', 3426, - ';', 2938, - 'E', 4110, - 'N', 4188, - '[', 2983, - '_', 4112, - '`', 695, - 'e', 4050, - 'f', 4121, - 'n', 4174, - 'o', 4051, - 't', 4152, - '{', 3169, - '|', 2939, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 3232, + ')', 2927, + '+', 3913, + '-', 2976, + '.', 3321, + '0', 3364, + ';', 2879, + 'N', 4005, + '[', 2924, + '_', 3933, + '`', 634, + 'e', 3881, + 'f', 3947, + 'n', 3992, + 'o', 3882, + 't', 3976, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1026); + lookahead == ' ') SKIP(983); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4195); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3441); + lookahead == 'i') ADVANCE(4012); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3379); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4218); + lookahead != ']') ADVANCE(4035); END_STATE(); - case 1003: - if (eof) ADVANCE(1124); + case 942: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 3294, - ')', 2986, - '+', 4079, - '-', 3034, - '.', 4080, - '0', 3475, - ';', 2938, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'N', 4188, - 'P', 4103, - 'T', 4103, - '[', 2983, - '_', 4115, - '`', 695, - 'd', 4120, - 'e', 4049, - 'f', 4121, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4163, - 'o', 4051, - 'p', 4102, - 's', 4127, - 't', 4101, - 'u', 4164, - 'w', 4135, - '{', 3169, - '|', 2939, - '}', 3170, - 0xb5, 4164, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 3232, + ')', 2927, + '+', 3914, + '-', 2978, + '.', 3911, + '0', 3364, + ';', 2879, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'N', 4005, + 'P', 3931, + 'T', 3931, + '[', 2924, + '_', 3933, + '`', 634, + 'd', 3948, + 'e', 3883, + 'f', 3947, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3983, + 'o', 3882, + 'p', 3930, + 's', 3954, + 't', 3929, + 'u', 3984, + 'w', 3960, + '{', 3109, + '|', 2880, + '}', 3110, + 0xb5, 3984, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1026); + lookahead == ' ') SKIP(966); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); + lookahead == 'b') ADVANCE(3462); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4195); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); + lookahead == 'i') ADVANCE(4012); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3379); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4218); + lookahead != ']') ADVANCE(4035); END_STATE(); - case 1004: - if (eof) ADVANCE(1124); + case 943: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 3294, - ')', 2986, - '+', 4079, - '-', 3034, - '.', 4080, - '0', 3475, - ';', 2938, - 'E', 4103, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'N', 4188, - 'P', 4103, - 'T', 4103, - '[', 2983, - '_', 4115, - '`', 695, - 'd', 4120, - 'e', 4046, - 'f', 4121, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4163, - 'o', 4051, - 'p', 4102, - 's', 4127, - 't', 4101, - 'u', 4164, - 'w', 4135, - '{', 3169, - '|', 2939, - '}', 3170, - 0xb5, 4164, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 3232, + ')', 2927, + '+', 3914, + '-', 2978, + '.', 3911, + '0', 3364, + ';', 2879, + 'E', 3943, + 'N', 4005, + '[', 2924, + '_', 3933, + '`', 634, + 'e', 3884, + 'f', 3947, + 'n', 3992, + 'o', 3882, + 't', 3976, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1026); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); + lookahead == ' ') SKIP(966); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4195); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); + lookahead == 'i') ADVANCE(4012); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3379); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4218); + lookahead != ']') ADVANCE(4035); END_STATE(); - case 1005: - if (eof) ADVANCE(1124); + case 944: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 3294, - ')', 2986, - '+', 4079, - '-', 3034, - '.', 4080, - '0', 3475, - ';', 2938, - 'E', 4110, - 'N', 4188, - '[', 2983, - '_', 4115, - '`', 695, - 'e', 4050, - 'f', 4121, - 'n', 4174, - 'o', 4051, - 't', 4152, - '{', 3169, - '|', 2939, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 3232, + ')', 2927, + '+', 3914, + '-', 2978, + '.', 3911, + '0', 3415, + ';', 2879, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'N', 4005, + 'P', 3931, + 'T', 3931, + '[', 2924, + '_', 3938, + '`', 634, + 'd', 3948, + 'e', 3883, + 'f', 3947, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3983, + 'o', 3882, + 'p', 3930, + 's', 3954, + 't', 3929, + 'u', 3984, + 'w', 3960, + '{', 3109, + '|', 2880, + '}', 3110, + 0xb5, 3984, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1026); + lookahead == ' ') SKIP(966); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4195); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); + lookahead == 'i') ADVANCE(4012); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3438); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4218); + lookahead != ']') ADVANCE(4035); END_STATE(); - case 1006: - if (eof) ADVANCE(1124); + case 945: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 3294, - ')', 2986, - '+', 4079, - '-', 3034, - '.', 4080, - '0', 3475, - ';', 2938, - 'N', 4188, - '[', 2983, - '_', 4115, - '`', 695, - 'e', 4047, - 'f', 4121, - 'n', 4174, - 'o', 4051, - 't', 4152, - '{', 3169, - '|', 2939, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 3232, + ')', 2927, + '+', 3914, + '-', 2978, + '.', 3911, + '0', 3415, + ';', 2879, + 'E', 3931, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'N', 4005, + 'P', 3931, + 'T', 3931, + '[', 2924, + '_', 3938, + '`', 634, + 'd', 3948, + 'e', 3880, + 'f', 3947, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3983, + 'o', 3882, + 'p', 3930, + 's', 3954, + 't', 3929, + 'u', 3984, + 'w', 3960, + '{', 3109, + '|', 2880, + '}', 3110, + 0xb5, 3984, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1026); + lookahead == ' ') SKIP(966); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4195); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); + lookahead == 'i') ADVANCE(4012); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3438); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4218); + lookahead != ']') ADVANCE(4035); END_STATE(); - case 1007: - if (eof) ADVANCE(1124); + case 946: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 3294, - ')', 2986, - '+', 4079, - '-', 3034, - '.', 4076, - '0', 3426, - ';', 2938, - 'E', 4110, - 'N', 4188, - '[', 2983, - '_', 4112, - '`', 695, - 'e', 4050, - 'f', 4121, - 'n', 4174, - 'o', 4051, - 't', 4152, - '{', 3169, - '|', 2939, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 3232, + ')', 2927, + '+', 3914, + '-', 2978, + '.', 3911, + '0', 3415, + ';', 2879, + 'E', 3943, + 'N', 4005, + '[', 2924, + '_', 3938, + '`', 634, + 'e', 3884, + 'f', 3947, + 'n', 3992, + 'o', 3882, + 't', 3976, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1026); + lookahead == ' ') SKIP(966); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4195); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3441); + lookahead == 'i') ADVANCE(4012); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3438); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4218); + lookahead != ']') ADVANCE(4035); END_STATE(); - case 1008: - if (eof) ADVANCE(1124); + case 947: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 3294, - ')', 2986, - '+', 4079, - '-', 3034, - '.', 4076, - '0', 3475, - ';', 2938, - 'E', 4110, - 'N', 4188, - '[', 2983, - '_', 4115, - '`', 695, - 'e', 4050, - 'f', 4121, - 'n', 4174, - 'o', 4051, - 't', 4152, - '{', 3169, - '|', 2939, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 3232, + ')', 2927, + '+', 3914, + '-', 2978, + '.', 3911, + '0', 3415, + ';', 2879, + 'N', 4005, + '[', 2924, + '_', 3938, + '`', 634, + 'e', 3881, + 'f', 3947, + 'n', 3992, + 'o', 3882, + 't', 3976, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1026); + lookahead == ' ') SKIP(966); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4195); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); + lookahead == 'i') ADVANCE(4012); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3438); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4218); + lookahead != ']') ADVANCE(4035); END_STATE(); - case 1009: - if (eof) ADVANCE(1124); + case 948: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 3294, - ')', 2986, - '+', 4079, - '-', 3034, - '.', 4076, - '0', 3475, - ';', 2938, - 'N', 4188, - '[', 2983, - '_', 4115, - '`', 695, - 'e', 4047, - 'f', 4121, - 'n', 4174, - 'o', 4051, - 't', 4152, - '{', 3169, - '|', 2939, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 3232, + ')', 2927, + '+', 3914, + '-', 2978, + '.', 3910, + '0', 3364, + ';', 2879, + 'E', 3943, + 'N', 4005, + '[', 2924, + '_', 3933, + '`', 634, + 'e', 3884, + 'f', 3947, + 'n', 3992, + 'o', 3882, + 't', 3976, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1026); + lookahead == ' ') SKIP(966); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4195); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); + lookahead == 'i') ADVANCE(4012); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3379); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4218); + lookahead != ']') ADVANCE(4035); END_STATE(); - case 1010: - if (eof) ADVANCE(1124); + case 949: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 3294, - ')', 2986, - '+', 4079, - '-', 3034, - '.', 3394, - '0', 3475, - ';', 2938, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'N', 4188, - 'P', 4103, - 'T', 4103, - '[', 2983, - '_', 4115, - '`', 695, - 'd', 4120, - 'e', 4049, - 'f', 4121, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4163, - 'o', 4051, - 'p', 4102, - 's', 4127, - 't', 4101, - 'u', 4164, - 'w', 4135, - '{', 3169, - '|', 2939, - '}', 3170, - 0xb5, 4164, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 3232, + ')', 2927, + '+', 3914, + '-', 2978, + '.', 3910, + '0', 3415, + ';', 2879, + 'E', 3943, + 'N', 4005, + '[', 2924, + '_', 3938, + '`', 634, + 'e', 3884, + 'f', 3947, + 'n', 3992, + 'o', 3882, + 't', 3976, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1026); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); + lookahead == ' ') SKIP(966); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4195); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); + lookahead == 'i') ADVANCE(4012); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3438); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4218); + lookahead != ']') ADVANCE(4035); END_STATE(); - case 1011: - if (eof) ADVANCE(1124); + case 950: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 3294, - ')', 2986, - '+', 4079, - '-', 3034, - '.', 3394, - '0', 3475, - ';', 2938, - 'E', 4110, - 'N', 4188, - '[', 2983, - '_', 4115, - '`', 695, - 'e', 4050, - 'f', 4121, - 'n', 4174, - 'o', 4051, - 't', 4152, - '{', 3169, - '|', 2939, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 3232, + ')', 2927, + '+', 3914, + '-', 2978, + '.', 3910, + '0', 3415, + ';', 2879, + 'N', 4005, + '[', 2924, + '_', 3938, + '`', 634, + 'e', 3881, + 'f', 3947, + 'n', 3992, + 'o', 3882, + 't', 3976, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1026); + lookahead == ' ') SKIP(966); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4195); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); + lookahead == 'i') ADVANCE(4012); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3438); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4218); + lookahead != ']') ADVANCE(4035); END_STATE(); - case 1012: - if (eof) ADVANCE(1124); + case 951: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 3294, - ')', 2986, - '+', 4079, - '-', 3034, - '.', 3380, - '0', 3475, - ';', 2938, - 'E', 4110, - 'N', 4188, - '[', 2983, - '_', 4115, - '`', 695, - 'e', 4050, - 'f', 4121, - 'n', 4174, - 'o', 4051, - 't', 4152, - '{', 3169, - '|', 2939, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 3232, + ')', 2927, + '+', 3914, + '-', 2978, + '.', 3335, + '0', 3415, + ';', 2879, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'N', 4005, + 'P', 3931, + 'T', 3931, + '[', 2924, + '_', 3938, + '`', 634, + 'd', 3948, + 'e', 3883, + 'f', 3947, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3983, + 'o', 3882, + 'p', 3930, + 's', 3954, + 't', 3929, + 'u', 3984, + 'w', 3960, + '{', 3109, + '|', 2880, + '}', 3110, + 0xb5, 3984, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1026); + lookahead == ' ') SKIP(966); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4195); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); + lookahead == 'i') ADVANCE(4012); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3438); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4218); + lookahead != ']') ADVANCE(4035); END_STATE(); - case 1013: - if (eof) ADVANCE(1124); + case 952: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 3294, - ')', 2986, - '+', 4082, - '-', 3038, - '.', 4077, - '0', 3426, - ';', 2938, - 'N', 4188, - '[', 2983, - '_', 4112, - '`', 695, - 'e', 4047, - 'f', 4121, - 'n', 4174, - 'o', 4051, - 't', 4152, - '{', 3169, - '|', 2939, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 3232, + ')', 2927, + '+', 3914, + '-', 2978, + '.', 3335, + '0', 3415, + ';', 2879, + 'E', 3943, + 'N', 4005, + '[', 2924, + '_', 3938, + '`', 634, + 'e', 3884, + 'f', 3947, + 'n', 3992, + 'o', 3882, + 't', 3976, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1043); + lookahead == ' ') SKIP(966); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4195); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3441); + lookahead == 'i') ADVANCE(4012); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3438); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4218); + lookahead != ']') ADVANCE(4035); END_STATE(); - case 1014: - if (eof) ADVANCE(1124); + case 953: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 3294, - ')', 2986, - '+', 4082, - '-', 3038, - '.', 3388, - '0', 3426, - ';', 2938, - 'N', 4188, - '[', 2983, - '_', 4112, - '`', 695, - 'e', 4047, - 'f', 4121, - 'n', 4174, - 'o', 4051, - 't', 4152, - '{', 3169, - '|', 2939, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 3232, + ')', 2927, + '+', 3914, + '-', 2978, + '.', 3326, + '0', 3415, + ';', 2879, + 'E', 3943, + 'N', 4005, + '[', 2924, + '_', 3938, + '`', 634, + 'e', 3884, + 'f', 3947, + 'n', 3992, + 'o', 3882, + 't', 3976, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1043); + lookahead == ' ') SKIP(966); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4195); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3441); + lookahead == 'i') ADVANCE(4012); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3438); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4218); + lookahead != ']') ADVANCE(4035); END_STATE(); - case 1015: - if (eof) ADVANCE(1124); + case 954: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 3294, - ')', 2986, - '+', 3880, - '-', 3035, - '.', 3876, - '0', 3427, - ';', 2938, - 'N', 4016, - '[', 2983, - '_', 3912, - '`', 695, - 'e', 3843, - 'f', 3917, - 'n', 3987, - 'o', 3844, - 't', 3960, - '{', 3169, - '|', 2939, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 3232, + ')', 2927, + '+', 3799, + '-', 2974, + '.', 3795, + '0', 3365, + ';', 2879, + 'N', 3856, + '[', 2924, + '_', 3820, + '`', 634, + 'e', 3772, + 'f', 3824, + 'n', 3852, + 'o', 3773, + 't', 3839, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1043); + lookahead == ' ') SKIP(983); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4021); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3442); + lookahead == 'i') ADVANCE(3860); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3380); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4040); + lookahead != ']') ADVANCE(3879); END_STATE(); - case 1016: - if (eof) ADVANCE(1124); + case 955: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 3294, - ')', 2986, - '+', 3880, - '-', 3035, - '.', 3387, - '0', 3427, - ';', 2938, - 'N', 4016, - '[', 2983, - '_', 3912, - '`', 695, - 'e', 3843, - 'f', 3917, - 'n', 3987, - 'o', 3844, - 't', 3960, - '{', 3169, - '|', 2939, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 3232, + ')', 2927, + '+', 3799, + '-', 2974, + '.', 3323, + '0', 3365, + ';', 2879, + 'N', 3856, + '[', 2924, + '_', 3820, + '`', 634, + 'e', 3772, + 'f', 3824, + 'n', 3852, + 'o', 3773, + 't', 3839, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1043); + lookahead == ' ') SKIP(983); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4021); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3442); + lookahead == 'i') ADVANCE(3860); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3380); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4040); + lookahead != ']') ADVANCE(3879); END_STATE(); - case 1017: - if (eof) ADVANCE(1124); + case 956: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - ')', 2986, - '+', 1405, - '-', 3047, - '.', 1406, - '0', 3472, - ';', 2938, - '=', 673, - 'I', 1637, - 'N', 1634, - '[', 2983, - '^', 3699, - '_', 1427, - '`', 695, - 'a', 1523, - 'b', 1568, - 'c', 1428, - 'd', 1454, - 'e', 1532, - 'f', 1431, - 'h', 1508, - 'i', 1424, - 'l', 1476, - 'm', 1433, - 'n', 1455, - 'o', 1628, - 'r', 1456, - 's', 1546, - 't', 1560, - 'u', 1588, - 'w', 1501, - '{', 3169, - '|', 2939, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + ')', 3400, + '+', 1346, + '-', 2987, + '.', 1347, + '0', 3410, + ';', 2879, + '=', 610, + 'I', 1578, + 'N', 1575, + '[', 2924, + '^', 3637, + '_', 1368, + '`', 634, + 'a', 1464, + 'b', 1509, + 'c', 1369, + 'd', 1395, + 'e', 1473, + 'f', 1372, + 'h', 1449, + 'i', 1365, + 'l', 1417, + 'm', 1374, + 'n', 1396, + 'o', 1569, + 'r', 1397, + 's', 1487, + 't', 1501, + 'u', 1529, + 'w', 1442, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1017); + lookahead == ' ') SKIP(957); if (lookahead == '!' || ('&' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3495); + lookahead == '@') ADVANCE(1884); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3433); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'f' < lookahead)) ADVANCE(1643); + (lookahead < ']' || 'f' < lookahead)) ADVANCE(1584); END_STATE(); - case 1018: - if (eof) ADVANCE(1124); + case 957: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - ')', 2986, - '+', 636, - '-', 3047, - '.', 637, - '0', 3476, - ';', 2938, - '=', 673, - 'I', 966, - 'N', 957, - '[', 2983, - '_', 687, - '`', 695, - 'a', 798, - 'c', 704, - 'd', 810, - 'e', 597, - 'f', 700, - 'i', 750, - 'm', 705, - 'n', 820, - 'o', 592, - 't', 835, - 'x', 817, - '{', 3169, - '|', 2939, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + ')', 2927, + '+', 1346, + '-', 2987, + '.', 1347, + '0', 3410, + ';', 2879, + '=', 610, + 'I', 1578, + 'N', 1575, + '[', 2924, + '^', 3637, + '_', 1368, + '`', 634, + 'a', 1464, + 'b', 1509, + 'c', 1369, + 'd', 1395, + 'e', 1473, + 'f', 1372, + 'h', 1449, + 'i', 1365, + 'l', 1417, + 'm', 1374, + 'n', 1396, + 'o', 1569, + 'r', 1397, + 's', 1487, + 't', 1501, + 'u', 1529, + 'w', 1442, + '{', 3109, + '|', 2880, + '}', 3110, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(957); + if (lookahead == '!' || + ('&' <= lookahead && lookahead <= ',') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3433); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '0' || '@' < lookahead) && + (lookahead < ']' || 'f' < lookahead)) ADVANCE(1584); + END_STATE(); + case 958: + if (eof) ADVANCE(1064); + ADVANCE_MAP( + '\n', 2873, + '\r', 25, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + ')', 2927, + '+', 574, + '-', 2987, + '.', 575, + '0', 3413, + ';', 2879, + '=', 610, + 'I', 905, + 'N', 896, + '[', 2924, + '_', 626, + '`', 634, + 'a', 737, + 'c', 643, + 'd', 749, + 'e', 537, + 'f', 639, + 'i', 689, + 'm', 644, + 'n', 759, + 'o', 532, + 't', 774, + 'x', 756, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1018); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3499); + lookahead == ' ') SKIP(958); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3436); END_STATE(); - case 1019: - if (eof) ADVANCE(1124); + case 959: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - ')', 2986, - '+', 3621, - '-', 3047, - '.', 1412, - '0', 3472, - ':', 2980, - ';', 2938, - '=', 1142, - '>', 3018, - 'I', 1637, - 'N', 1634, - '[', 2983, - ']', 2984, - '^', 3699, - '_', 1427, - '`', 695, - 'a', 1524, - 'b', 1568, - 'c', 1442, - 'd', 1454, - 'e', 1536, - 'f', 1431, - 'h', 1508, - 'i', 1425, - 'l', 1477, - 'm', 1441, - 'n', 1480, - 'o', 1628, - 'r', 1456, - 's', 1546, - 't', 1560, - 'u', 1588, - 'w', 1501, - '{', 3169, - '|', 2939, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + ')', 2927, + '+', 3559, + '-', 2987, + '.', 1353, + '0', 3410, + ':', 2921, + ';', 2879, + '=', 1082, + '>', 2958, + 'I', 1578, + 'N', 1575, + '[', 2924, + ']', 2925, + '^', 3637, + '_', 1368, + '`', 634, + 'a', 1465, + 'b', 1509, + 'c', 1383, + 'd', 1395, + 'e', 1477, + 'f', 1372, + 'h', 1449, + 'i', 1366, + 'l', 1418, + 'm', 1382, + 'n', 1421, + 'o', 1569, + 'r', 1397, + 's', 1487, + 't', 1501, + 'u', 1529, + 'w', 1442, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1019); + lookahead == ' ') SKIP(959); if (lookahead == '!' || ('&' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3495); + lookahead == '@') ADVANCE(1884); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3433); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '0' || '@' < lookahead)) ADVANCE(1643); + (lookahead < '0' || '@' < lookahead)) ADVANCE(1584); END_STATE(); - case 1020: - if (eof) ADVANCE(1124); + case 960: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - ')', 2986, - '+', 3878, - '-', 3033, - '.', 3879, - '0', 3473, - ';', 2938, - 'N', 4016, - '[', 2983, - '_', 3903, - '`', 695, - 'e', 3843, - 'f', 3917, - 'n', 3987, - 'o', 3844, - 't', 3960, - '{', 3169, - '|', 2939, - '}', 3170, - '\t', 2937, - ' ', 2937, - 'I', 4021, - 'i', 4021, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + ')', 2927, + '+', 3797, + '-', 2973, + '.', 3798, + '0', 3411, + ';', 2879, + 'N', 3856, + '[', 2924, + '_', 3811, + '`', 634, + 'e', 3772, + 'f', 3824, + 'n', 3852, + 'o', 3773, + 't', 3839, + '{', 3109, + '|', 2880, + '}', 3110, + '\t', 2878, + ' ', 2878, + 'I', 3860, + 'i', 3860, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4040); + lookahead != ']') ADVANCE(3879); END_STATE(); - case 1021: - if (eof) ADVANCE(1124); + case 961: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - ')', 2986, - '+', 3878, - '-', 3033, - '.', 3875, - '0', 2742, - ';', 2938, - '=', 3764, - 'N', 2868, - '[', 2983, - '_', 2744, - '`', 695, - 'e', 2721, - 'f', 2752, - 'n', 2855, - 'o', 2722, - 't', 2821, - '{', 3169, - '|', 2939, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + ')', 2927, + '+', 3797, + '-', 2973, + '.', 3794, + '0', 2683, + ';', 2879, + '=', 3694, + 'N', 2809, + '[', 2924, + '_', 2685, + '`', 634, + 'e', 2662, + 'f', 2693, + 'n', 2796, + 'o', 2663, + 't', 2762, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1026); + lookahead == ' ') SKIP(966); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2876); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2747); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2899); + lookahead == 'i') ADVANCE(2817); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2688); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2840); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4040); + lookahead != ']') ADVANCE(3879); END_STATE(); - case 1022: - if (eof) ADVANCE(1124); + case 962: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - ')', 2986, - '+', 3878, - '-', 3033, - '.', 3875, - '0', 3473, - ';', 2938, - '=', 3764, - 'N', 4016, - '[', 2983, - '_', 3903, - '`', 695, - 'e', 3843, - 'f', 3917, - 'n', 3987, - 'o', 3844, - 't', 3960, - '{', 3169, - '|', 2939, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + ')', 2927, + '+', 3797, + '-', 2973, + '.', 3794, + '0', 3411, + ';', 2879, + '=', 3694, + 'N', 3856, + '[', 2924, + '_', 3811, + '`', 634, + 'e', 3772, + 'f', 3824, + 'n', 3852, + 'o', 3773, + 't', 3839, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1026); + lookahead == ' ') SKIP(966); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4021); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); + lookahead == 'i') ADVANCE(3860); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4040); + lookahead != ']') ADVANCE(3879); END_STATE(); - case 1023: - if (eof) ADVANCE(1124); + case 963: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - ')', 2986, - '+', 3878, - '-', 3033, - '.', 3875, - '0', 3473, - ';', 2938, - '?', 3263, - 'N', 4016, - '[', 2983, - '_', 3903, - '`', 695, - 'e', 3843, - 'f', 3917, - 'n', 3987, - 'o', 3844, - 't', 3960, - '{', 3169, - '|', 2939, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + ')', 2927, + '+', 3797, + '-', 2973, + '.', 3794, + '0', 3411, + ';', 2879, + '?', 3201, + 'N', 3856, + '[', 2924, + '_', 3811, + '`', 634, + 'e', 3772, + 'f', 3824, + 'n', 3852, + 'o', 3773, + 't', 3839, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1023); + lookahead == ' ') SKIP(963); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4021); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); + lookahead == 'i') ADVANCE(3860); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4040); + lookahead != ']') ADVANCE(3879); END_STATE(); - case 1024: - if (eof) ADVANCE(1124); + case 964: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - ')', 2986, - '+', 3878, - '-', 3033, - '.', 3875, - '0', 3473, - ';', 2938, - 'E', 3910, - 'N', 4016, - '[', 2983, - '_', 3903, - '`', 695, - 'e', 3848, - 'f', 3917, - 'n', 3987, - 'o', 3844, - 't', 3960, - '{', 3169, - '|', 2939, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + ')', 2927, + '+', 3797, + '-', 2973, + '.', 3794, + '0', 3411, + ';', 2879, + 'E', 3822, + 'N', 3856, + '[', 2924, + '_', 3811, + '`', 634, + 'e', 3774, + 'f', 3824, + 'n', 3852, + 'o', 3773, + 't', 3839, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1026); + lookahead == ' ') SKIP(966); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4021); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); + lookahead == 'i') ADVANCE(3860); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4040); + lookahead != ']') ADVANCE(3879); END_STATE(); - case 1025: - if (eof) ADVANCE(1124); + case 965: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - ')', 2986, - '+', 3878, - '-', 3033, - '.', 3875, - '0', 3473, - ';', 2938, - 'N', 4016, - '[', 3546, - '_', 3903, - '`', 695, - 'e', 3843, - 'f', 3917, - 'n', 3987, - 'o', 3844, - 't', 3960, - '{', 3169, - '|', 2939, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + ')', 2927, + '+', 3797, + '-', 2973, + '.', 3794, + '0', 3411, + ';', 2879, + 'N', 3856, + '[', 3484, + '_', 3811, + '`', 634, + 'e', 3772, + 'f', 3824, + 'n', 3852, + 'o', 3773, + 't', 3839, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1026); + lookahead == ' ') SKIP(966); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4021); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); + lookahead == 'i') ADVANCE(3860); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4040); + lookahead != ']') ADVANCE(3879); END_STATE(); - case 1026: - if (eof) ADVANCE(1124); + case 966: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - ')', 2986, - '+', 3878, - '-', 3033, - '.', 3875, - '0', 3473, - ';', 2938, - 'N', 4016, - '[', 2983, - '_', 3903, - '`', 695, - 'e', 3843, - 'f', 3917, - 'n', 3987, - 'o', 3844, - 't', 3960, - '{', 3169, - '|', 2939, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + ')', 2927, + '+', 3797, + '-', 2973, + '.', 3794, + '0', 3411, + ';', 2879, + 'N', 3856, + '[', 2924, + '_', 3811, + '`', 634, + 'e', 3772, + 'f', 3824, + 'n', 3852, + 'o', 3773, + 't', 3839, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1026); + lookahead == ' ') SKIP(966); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4021); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); + lookahead == 'i') ADVANCE(3860); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4040); + lookahead != ']') ADVANCE(3879); END_STATE(); - case 1027: - if (eof) ADVANCE(1124); + case 967: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - ')', 2986, - '+', 3878, - '-', 3033, - '.', 3875, - '0', 3427, - ';', 2938, - 'E', 3910, - 'N', 4016, - '[', 2983, - '_', 3912, - '`', 695, - 'e', 3848, - 'f', 3917, - 'n', 3987, - 'o', 3844, - 't', 3960, - '{', 3169, - '|', 2939, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + ')', 2927, + '+', 3797, + '-', 2973, + '.', 3794, + '0', 3365, + ';', 2879, + 'E', 3822, + 'N', 3856, + '[', 2924, + '_', 3820, + '`', 634, + 'e', 3774, + 'f', 3824, + 'n', 3852, + 'o', 3773, + 't', 3839, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1026); + lookahead == ' ') SKIP(966); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4021); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3442); + lookahead == 'i') ADVANCE(3860); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3380); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4040); + lookahead != ']') ADVANCE(3879); END_STATE(); - case 1028: - if (eof) ADVANCE(1124); + case 968: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - ')', 2986, - '+', 3878, - '-', 3033, - '.', 3877, - '0', 3473, - ';', 2938, - 'E', 3910, - 'N', 4016, - '[', 2983, - '_', 3903, - '`', 695, - 'e', 3848, - 'f', 3917, - 'n', 3987, - 'o', 3844, - 't', 3960, - '{', 3169, - '|', 2939, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + ')', 2927, + '+', 3797, + '-', 2973, + '.', 3796, + '0', 3411, + ';', 2879, + 'E', 3822, + 'N', 3856, + '[', 2924, + '_', 3811, + '`', 634, + 'e', 3774, + 'f', 3824, + 'n', 3852, + 'o', 3773, + 't', 3839, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1026); + lookahead == ' ') SKIP(966); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4021); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); + lookahead == 'i') ADVANCE(3860); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4040); + lookahead != ']') ADVANCE(3879); END_STATE(); - case 1029: - if (eof) ADVANCE(1124); + case 969: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - ')', 2986, - '+', 3878, - '-', 3033, - '.', 3877, - '0', 3473, - ';', 2938, - 'N', 4016, - '[', 2983, - '_', 3903, - '`', 695, - 'e', 3843, - 'f', 3917, - 'n', 3987, - 'o', 3844, - 't', 3960, - '{', 3169, - '|', 2939, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + ')', 2927, + '+', 3797, + '-', 2973, + '.', 3796, + '0', 3411, + ';', 2879, + 'N', 3856, + '[', 2924, + '_', 3811, + '`', 634, + 'e', 3772, + 'f', 3824, + 'n', 3852, + 'o', 3773, + 't', 3839, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1026); + lookahead == ' ') SKIP(966); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4021); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); + lookahead == 'i') ADVANCE(3860); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4040); + lookahead != ']') ADVANCE(3879); END_STATE(); - case 1030: - if (eof) ADVANCE(1124); + case 970: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - ')', 2986, - '+', 3878, - '-', 3033, - '.', 3877, - '0', 3427, - ';', 2938, - 'E', 3910, - 'N', 4016, - '[', 2983, - '_', 3912, - '`', 695, - 'e', 3848, - 'f', 3917, - 'n', 3987, - 'o', 3844, - 't', 3960, - '{', 3169, - '|', 2939, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + ')', 2927, + '+', 3797, + '-', 2973, + '.', 3796, + '0', 3365, + ';', 2879, + 'E', 3822, + 'N', 3856, + '[', 2924, + '_', 3820, + '`', 634, + 'e', 3774, + 'f', 3824, + 'n', 3852, + 'o', 3773, + 't', 3839, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1026); + lookahead == ' ') SKIP(966); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4021); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3442); + lookahead == 'i') ADVANCE(3860); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3380); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4040); + lookahead != ']') ADVANCE(3879); END_STATE(); - case 1031: - if (eof) ADVANCE(1124); + case 971: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - ')', 2986, - '+', 3878, - '-', 3033, - '.', 3395, - '0', 3473, - ';', 2938, - '?', 3263, - 'N', 4016, - '[', 2983, - '_', 3903, - '`', 695, - 'e', 3843, - 'f', 3917, - 'n', 3987, - 'o', 3844, - 't', 3960, - '{', 3169, - '|', 2939, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + ')', 2927, + '+', 3797, + '-', 2973, + '.', 3332, + '0', 3411, + ';', 2879, + '?', 3201, + 'N', 3856, + '[', 2924, + '_', 3811, + '`', 634, + 'e', 3772, + 'f', 3824, + 'n', 3852, + 'o', 3773, + 't', 3839, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1023); + lookahead == ' ') SKIP(963); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4021); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); + lookahead == 'i') ADVANCE(3860); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4040); + lookahead != ']') ADVANCE(3879); END_STATE(); - case 1032: - if (eof) ADVANCE(1124); + case 972: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - ')', 2986, - '+', 3878, - '-', 3033, - '.', 3395, - '0', 3473, - ';', 2938, - 'E', 3910, - 'N', 4016, - '[', 2983, - '_', 3903, - '`', 695, - 'e', 3848, - 'f', 3917, - 'n', 3987, - 'o', 3844, - 't', 3960, - '{', 3169, - '|', 2939, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + ')', 2927, + '+', 3797, + '-', 2973, + '.', 3332, + '0', 3411, + ';', 2879, + 'E', 3822, + 'N', 3856, + '[', 2924, + '_', 3811, + '`', 634, + 'e', 3774, + 'f', 3824, + 'n', 3852, + 'o', 3773, + 't', 3839, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1026); + lookahead == ' ') SKIP(966); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4021); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); + lookahead == 'i') ADVANCE(3860); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4040); + lookahead != ']') ADVANCE(3879); END_STATE(); - case 1033: - if (eof) ADVANCE(1124); + case 973: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - ')', 2986, - '+', 3878, - '-', 3033, - '.', 3395, - '0', 3473, - ';', 2938, - 'N', 4016, - '[', 2983, - '_', 3903, - '`', 695, - 'e', 3843, - 'f', 3917, - 'n', 3987, - 'o', 3844, - 't', 3960, - '{', 3169, - '|', 2939, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + ')', 2927, + '+', 3797, + '-', 2973, + '.', 3332, + '0', 3411, + ';', 2879, + 'N', 3856, + '[', 2924, + '_', 3811, + '`', 634, + 'e', 3772, + 'f', 3824, + 'n', 3852, + 'o', 3773, + 't', 3839, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1026); + lookahead == ' ') SKIP(966); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4021); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); + lookahead == 'i') ADVANCE(3860); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4040); + lookahead != ']') ADVANCE(3879); END_STATE(); - case 1034: - if (eof) ADVANCE(1124); + case 974: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - ')', 2986, - '+', 3878, - '-', 3033, - '.', 3382, - '0', 3473, - ';', 2938, - '?', 3263, - 'N', 4016, - '[', 2983, - '_', 3903, - '`', 695, - 'e', 3843, - 'f', 3917, - 'n', 3987, - 'o', 3844, - 't', 3960, - '{', 3169, - '|', 2939, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + ')', 2927, + '+', 3797, + '-', 2973, + '.', 3319, + '0', 3411, + ';', 2879, + '?', 3201, + 'N', 3856, + '[', 2924, + '_', 3811, + '`', 634, + 'e', 3772, + 'f', 3824, + 'n', 3852, + 'o', 3773, + 't', 3839, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1023); + lookahead == ' ') SKIP(963); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4021); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); + lookahead == 'i') ADVANCE(3860); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4040); + lookahead != ']') ADVANCE(3879); END_STATE(); - case 1035: - if (eof) ADVANCE(1124); + case 975: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - ')', 2986, - '+', 3878, - '-', 3033, - '.', 3382, - '0', 3473, - ';', 2938, - 'E', 3910, - 'N', 4016, - '[', 2983, - '_', 3903, - '`', 695, - 'e', 3848, - 'f', 3917, - 'n', 3987, - 'o', 3844, - 't', 3960, - '{', 3169, - '|', 2939, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + ')', 2927, + '+', 3797, + '-', 2973, + '.', 3319, + '0', 3411, + ';', 2879, + 'E', 3822, + 'N', 3856, + '[', 2924, + '_', 3811, + '`', 634, + 'e', 3774, + 'f', 3824, + 'n', 3852, + 'o', 3773, + 't', 3839, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1026); + lookahead == ' ') SKIP(966); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4021); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); + lookahead == 'i') ADVANCE(3860); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4040); + lookahead != ']') ADVANCE(3879); END_STATE(); - case 1036: - if (eof) ADVANCE(1124); + case 976: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - ')', 2986, - '+', 3878, - '-', 3033, - '.', 3382, - '0', 3473, - ';', 2938, - 'N', 4016, - '[', 2983, - '_', 3903, - '`', 695, - 'e', 3843, - 'f', 3917, - 'n', 3987, - 'o', 3844, - 't', 3960, - '{', 3169, - '|', 2939, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + ')', 2927, + '+', 3797, + '-', 2973, + '.', 3319, + '0', 3411, + ';', 2879, + 'N', 3856, + '[', 2924, + '_', 3811, + '`', 634, + 'e', 3772, + 'f', 3824, + 'n', 3852, + 'o', 3773, + 't', 3839, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1026); + lookahead == ' ') SKIP(966); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4021); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); + lookahead == 'i') ADVANCE(3860); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4040); + lookahead != ']') ADVANCE(3879); END_STATE(); - case 1037: - if (eof) ADVANCE(1124); + case 977: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - ')', 2986, - '+', 3878, - '-', 3040, - '.', 3875, - '0', 3782, - ';', 2938, - '=', 3764, - 'N', 3809, - '[', 2983, - '_', 3784, - '`', 695, - 'e', 3765, - 'f', 3791, - 'n', 3808, - 'o', 3766, - 't', 3799, - '{', 3169, - '|', 2939, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + ')', 2927, + '+', 3797, + '-', 2980, + '.', 3794, + '0', 3712, + ';', 2879, + '=', 3694, + 'N', 3739, + '[', 2924, + '_', 3714, + '`', 634, + 'e', 3695, + 'f', 3721, + 'n', 3738, + 'o', 3696, + 't', 3729, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1026); + lookahead == ' ') SKIP(966); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3814); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3787); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + lookahead == 'i') ADVANCE(3744); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3717); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4040); + lookahead != ']') ADVANCE(3879); END_STATE(); - case 1038: - if (eof) ADVANCE(1124); + case 978: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - ')', 2986, - '+', 4079, - '-', 3034, - '.', 4080, - '0', 3426, - ';', 2938, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'N', 4188, - 'P', 4103, - 'T', 4103, - '[', 2983, - '_', 4112, - '`', 695, - 'd', 4120, - 'e', 4049, - 'f', 4121, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4163, - 'o', 4051, - 'p', 4102, - 's', 4127, - 't', 4101, - 'u', 4164, - 'w', 4135, - '{', 3169, - '|', 2939, - '}', 3170, - 0xb5, 4164, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + ')', 2927, + '+', 3914, + '-', 2978, + '.', 3911, + '0', 3364, + ';', 2879, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'N', 4005, + 'P', 3931, + 'T', 3931, + '[', 2924, + '_', 3933, + '`', 634, + 'd', 3948, + 'e', 3883, + 'f', 3947, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3983, + 'o', 3882, + 'p', 3930, + 's', 3954, + 't', 3929, + 'u', 3984, + 'w', 3960, + '{', 3109, + '|', 2880, + '}', 3110, + 0xb5, 3984, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1026); + lookahead == ' ') SKIP(966); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); + lookahead == 'b') ADVANCE(3462); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4195); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3441); + lookahead == 'i') ADVANCE(4012); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3379); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4218); + lookahead != ']') ADVANCE(4035); END_STATE(); - case 1039: - if (eof) ADVANCE(1124); + case 979: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - ')', 2986, - '+', 4079, - '-', 3034, - '.', 4080, - '0', 3475, - ';', 2938, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'N', 4188, - 'P', 4103, - 'T', 4103, - '[', 2983, - '_', 4115, - '`', 695, - 'd', 4120, - 'e', 4049, - 'f', 4121, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4163, - 'o', 4051, - 'p', 4102, - 's', 4127, - 't', 4101, - 'u', 4164, - 'w', 4135, - '{', 3169, - '|', 2939, - '}', 3170, - 0xb5, 4164, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + ')', 2927, + '+', 3914, + '-', 2978, + '.', 3911, + '0', 3415, + ';', 2879, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'N', 4005, + 'P', 3931, + 'T', 3931, + '[', 2924, + '_', 3938, + '`', 634, + 'd', 3948, + 'e', 3883, + 'f', 3947, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3983, + 'o', 3882, + 'p', 3930, + 's', 3954, + 't', 3929, + 'u', 3984, + 'w', 3960, + '{', 3109, + '|', 2880, + '}', 3110, + 0xb5, 3984, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1026); + lookahead == ' ') SKIP(966); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); + lookahead == 'b') ADVANCE(3462); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4195); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); + lookahead == 'i') ADVANCE(4012); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3438); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4218); + lookahead != ']') ADVANCE(4035); END_STATE(); - case 1040: - if (eof) ADVANCE(1124); + case 980: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - ')', 2986, - '+', 4079, - '-', 3034, - '.', 4080, - '0', 3475, - ';', 2938, - 'E', 4103, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'N', 4188, - 'P', 4103, - 'T', 4103, - '[', 2983, - '_', 4115, - '`', 695, - 'd', 4120, - 'e', 4046, - 'f', 4121, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4163, - 'o', 4051, - 'p', 4102, - 's', 4127, - 't', 4101, - 'u', 4164, - 'w', 4135, - '{', 3169, - '|', 2939, - '}', 3170, - 0xb5, 4164, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + ')', 2927, + '+', 3914, + '-', 2978, + '.', 3911, + '0', 3415, + ';', 2879, + 'E', 3931, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'N', 4005, + 'P', 3931, + 'T', 3931, + '[', 2924, + '_', 3938, + '`', 634, + 'd', 3948, + 'e', 3880, + 'f', 3947, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3983, + 'o', 3882, + 'p', 3930, + 's', 3954, + 't', 3929, + 'u', 3984, + 'w', 3960, + '{', 3109, + '|', 2880, + '}', 3110, + 0xb5, 3984, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1026); + lookahead == ' ') SKIP(966); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); + lookahead == 'b') ADVANCE(3462); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4195); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); + lookahead == 'i') ADVANCE(4012); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3438); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4218); + lookahead != ']') ADVANCE(4035); END_STATE(); - case 1041: - if (eof) ADVANCE(1124); + case 981: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - ')', 2986, - '+', 4079, - '-', 3034, - '.', 4076, - '0', 3475, - ';', 2938, - 'N', 4188, - '[', 2983, - '_', 4115, - '`', 695, - 'e', 4047, - 'f', 4121, - 'n', 4174, - 'o', 4051, - 't', 4152, - '{', 3169, - '|', 2939, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + ')', 2927, + '+', 3914, + '-', 2978, + '.', 3910, + '0', 3415, + ';', 2879, + 'N', 4005, + '[', 2924, + '_', 3938, + '`', 634, + 'e', 3881, + 'f', 3947, + 'n', 3992, + 'o', 3882, + 't', 3976, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1026); + lookahead == ' ') SKIP(966); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4195); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); + lookahead == 'i') ADVANCE(4012); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3438); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4218); + lookahead != ']') ADVANCE(4035); END_STATE(); - case 1042: - if (eof) ADVANCE(1124); + case 982: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - ')', 2986, - '+', 4079, - '-', 3034, - '.', 3394, - '0', 3475, - ';', 2938, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'N', 4188, - 'P', 4103, - 'T', 4103, - '[', 2983, - '_', 4115, - '`', 695, - 'd', 4120, - 'e', 4049, - 'f', 4121, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4163, - 'o', 4051, - 'p', 4102, - 's', 4127, - 't', 4101, - 'u', 4164, - 'w', 4135, - '{', 3169, - '|', 2939, - '}', 3170, - 0xb5, 4164, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + ')', 2927, + '+', 3914, + '-', 2978, + '.', 3335, + '0', 3415, + ';', 2879, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'N', 4005, + 'P', 3931, + 'T', 3931, + '[', 2924, + '_', 3938, + '`', 634, + 'd', 3948, + 'e', 3883, + 'f', 3947, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3983, + 'o', 3882, + 'p', 3930, + 's', 3954, + 't', 3929, + 'u', 3984, + 'w', 3960, + '{', 3109, + '|', 2880, + '}', 3110, + 0xb5, 3984, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1026); + lookahead == ' ') SKIP(966); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); + lookahead == 'b') ADVANCE(3462); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4195); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3498); + lookahead == 'i') ADVANCE(4012); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3438); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4218); + lookahead != ']') ADVANCE(4035); END_STATE(); - case 1043: - if (eof) ADVANCE(1124); + case 983: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '$', 2990, - '\'', 585, - '(', 2985, - ')', 2986, - '+', 3880, - '-', 3035, - '.', 3876, - '0', 3473, - ';', 2938, - 'N', 4016, - '[', 2983, - '_', 3903, - '`', 695, - 'e', 3843, - 'f', 3917, - 'n', 3987, - 'o', 3844, - 't', 3960, - '{', 3169, - '|', 2939, - '}', 3170, + '"', 3524, + '#', 4822, + '$', 2930, + '\'', 525, + '(', 2926, + ')', 2927, + '+', 3799, + '-', 2974, + '.', 3795, + '0', 3411, + ';', 2879, + 'N', 3856, + '[', 2924, + '_', 3811, + '`', 634, + 'e', 3772, + 'f', 3824, + 'n', 3852, + 'o', 3773, + 't', 3839, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1043); + lookahead == ' ') SKIP(983); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4021); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3496); + lookahead == 'i') ADVANCE(3860); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3434); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4040); + lookahead != ']') ADVANCE(3879); END_STATE(); - case 1044: - if (eof) ADVANCE(1124); + case 984: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '\'', 585, - '(', 2985, - ')', 2986, - '*', 3260, - '+', 1405, - '-', 635, - '.', 1661, - ';', 2938, - '=', 1142, - '>', 3018, - 'I', 1929, - 'N', 1924, - '[', 2983, - '_', 1664, - '`', 695, - 'a', 1790, - 'b', 1846, - 'c', 1688, - 'd', 1728, - 'e', 1792, - 'f', 1675, - 'h', 1767, - 'i', 1656, - 'l', 1739, - 'm', 1686, - 'n', 1733, - 'o', 1902, - 'r', 1744, - 's', 1816, - 't', 1830, - 'u', 1861, - 'w', 1758, - '{', 3169, - '}', 3170, + '"', 3524, + '#', 4822, + '\'', 525, + '(', 2926, + ')', 2927, + '*', 3198, + '+', 1346, + '-', 573, + '.', 1602, + ';', 2879, + '=', 1082, + '>', 2958, + 'I', 1870, + 'N', 1865, + '[', 2924, + '_', 1605, + '`', 634, + 'a', 1731, + 'b', 1787, + 'c', 1629, + 'd', 1669, + 'e', 1733, + 'f', 1616, + 'h', 1708, + 'i', 1597, + 'l', 1680, + 'm', 1627, + 'n', 1674, + 'o', 1843, + 'r', 1685, + 's', 1757, + 't', 1771, + 'u', 1802, + 'w', 1699, + '{', 3109, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1044); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); + lookahead == ' ') SKIP(984); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 1045: - if (eof) ADVANCE(1124); + case 985: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '\'', 585, - ')', 2986, - '*', 3260, - '+', 1405, - '-', 635, - '.', 3404, - ';', 2938, - '?', 3263, - 'I', 1929, - 'N', 1924, - '[', 2983, - '_', 1664, - '`', 695, - 'a', 1790, - 'b', 1846, - 'c', 1688, - 'd', 1728, - 'e', 1792, - 'f', 1675, - 'h', 1767, - 'i', 1656, - 'l', 1739, - 'm', 1686, - 'n', 1733, - 'o', 1902, - 'r', 1744, - 's', 1816, - 't', 1830, - 'u', 1861, - 'w', 1758, - '}', 3170, + '"', 3524, + '#', 4822, + '\'', 525, + ')', 2927, + '*', 3198, + '+', 1346, + '-', 573, + '.', 3342, + ';', 2879, + '?', 3201, + 'I', 1870, + 'N', 1865, + '[', 2924, + '_', 1605, + '`', 634, + 'a', 1731, + 'b', 1787, + 'c', 1629, + 'd', 1669, + 'e', 1733, + 'f', 1616, + 'h', 1708, + 'i', 1597, + 'l', 1680, + 'm', 1627, + 'n', 1674, + 'o', 1843, + 'r', 1685, + 's', 1757, + 't', 1771, + 'u', 1802, + 'w', 1699, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1047); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); + lookahead == ' ') SKIP(987); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && (lookahead < '0' || '?' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 1046: - if (eof) ADVANCE(1124); + case 986: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '\'', 585, - ')', 2986, - '*', 3260, - '+', 1405, - '-', 635, - '.', 3404, - ';', 2938, - 'I', 1929, - 'N', 1924, - '[', 2983, - '_', 1664, - '`', 695, - 'a', 1790, - 'b', 1846, - 'c', 1688, - 'd', 1728, - 'e', 1792, - 'f', 1675, - 'h', 1767, - 'i', 1656, - 'l', 1739, - 'm', 1686, - 'n', 1733, - 'o', 1902, - 'r', 1744, - 's', 1816, - 't', 1830, - 'u', 1861, - 'w', 1758, - '}', 3170, + '"', 3524, + '#', 4822, + '\'', 525, + ')', 2927, + '*', 3198, + '+', 1346, + '-', 573, + '.', 3342, + ';', 2879, + 'I', 1870, + 'N', 1865, + '[', 2924, + '_', 1605, + '`', 634, + 'a', 1731, + 'b', 1787, + 'c', 1629, + 'd', 1669, + 'e', 1733, + 'f', 1616, + 'h', 1708, + 'i', 1597, + 'l', 1680, + 'm', 1627, + 'n', 1674, + 'o', 1843, + 'r', 1685, + 's', 1757, + 't', 1771, + 'u', 1802, + 'w', 1699, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1048); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); + lookahead == ' ') SKIP(988); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 1047: - if (eof) ADVANCE(1124); + case 987: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '\'', 585, - ')', 2986, - '*', 3260, - '+', 1405, - '-', 635, - '.', 1661, - ';', 2938, - '?', 3263, - 'I', 1929, - 'N', 1924, - '[', 2983, - '_', 1664, - '`', 695, - 'a', 1790, - 'b', 1846, - 'c', 1688, - 'd', 1728, - 'e', 1792, - 'f', 1675, - 'h', 1767, - 'i', 1656, - 'l', 1739, - 'm', 1686, - 'n', 1733, - 'o', 1902, - 'r', 1744, - 's', 1816, - 't', 1830, - 'u', 1861, - 'w', 1758, - '}', 3170, + '"', 3524, + '#', 4822, + '\'', 525, + ')', 2927, + '*', 3198, + '+', 1346, + '-', 573, + '.', 1602, + ';', 2879, + '?', 3201, + 'I', 1870, + 'N', 1865, + '[', 2924, + '_', 1605, + '`', 634, + 'a', 1731, + 'b', 1787, + 'c', 1629, + 'd', 1669, + 'e', 1733, + 'f', 1616, + 'h', 1708, + 'i', 1597, + 'l', 1680, + 'm', 1627, + 'n', 1674, + 'o', 1843, + 'r', 1685, + 's', 1757, + 't', 1771, + 'u', 1802, + 'w', 1699, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1047); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); + lookahead == ' ') SKIP(987); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && (lookahead < '0' || '?' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 1048: - if (eof) ADVANCE(1124); + case 988: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5024, - '\'', 585, - ')', 2986, - '*', 3260, - '+', 1405, - '-', 635, - '.', 1661, - ';', 2938, - 'I', 1929, - 'N', 1924, - '[', 2983, - '_', 1664, - '`', 695, - 'a', 1790, - 'b', 1846, - 'c', 1688, - 'd', 1728, - 'e', 1792, - 'f', 1675, - 'h', 1767, - 'i', 1656, - 'l', 1739, - 'm', 1686, - 'n', 1733, - 'o', 1902, - 'r', 1744, - 's', 1816, - 't', 1830, - 'u', 1861, - 'w', 1758, - '}', 3170, + '"', 3524, + '#', 4822, + '\'', 525, + ')', 2927, + '*', 3198, + '+', 1346, + '-', 573, + '.', 1602, + ';', 2879, + 'I', 1870, + 'N', 1865, + '[', 2924, + '_', 1605, + '`', 634, + 'a', 1731, + 'b', 1787, + 'c', 1629, + 'd', 1669, + 'e', 1733, + 'f', 1616, + 'h', 1708, + 'i', 1597, + 'l', 1680, + 'm', 1627, + 'n', 1674, + 'o', 1843, + 'r', 1685, + 's', 1757, + 't', 1771, + 'u', 1802, + 'w', 1699, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1048); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); + lookahead == ' ') SKIP(988); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1943); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1884); END_STATE(); - case 1049: - if (eof) ADVANCE(1124); + case 989: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5031, - '$', 2991, - '\'', 585, - '(', 3294, - ')', 2986, - '+', 4249, - '-', 3042, - '.', 4245, - '0', 4275, - ';', 2938, - 'N', 4417, - '[', 2983, - '_', 4280, - '`', 695, - 'e', 4232, - 'f', 4281, - 'n', 4394, - 'o', 4233, - 't', 4356, - '{', 3169, - '|', 2939, - '}', 3170, + '"', 3524, + '#', 4829, + '$', 2931, + '\'', 525, + '(', 3232, + ')', 2927, + '+', 4058, + '-', 2982, + '.', 4059, + '0', 4077, + ';', 2879, + 'N', 4215, + '[', 2924, + '_', 4079, + '`', 634, + 'e', 4045, + 'f', 4089, + 'n', 4193, + 'o', 4046, + 't', 4160, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1026); + lookahead == ' ') SKIP(966); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4426); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4279); + lookahead == 'i') ADVANCE(4224); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4082); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4456); + lookahead != ']') ADVANCE(4254); END_STATE(); - case 1050: - if (eof) ADVANCE(1124); + case 990: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '"', 3586, - '#', 5031, - '$', 2991, - '\'', 585, - '(', 2985, - ')', 2986, - '+', 4249, - '-', 3042, - '.', 4245, - '0', 4275, - ';', 2938, - 'N', 4417, - '[', 2983, - '_', 4280, - '`', 695, - 'e', 4232, - 'f', 4281, - 'n', 4394, - 'o', 4233, - 't', 4356, - '{', 3169, - '|', 2939, - '}', 3170, + '"', 3524, + '#', 4829, + '$', 2931, + '\'', 525, + '(', 2926, + ')', 2927, + '+', 4058, + '-', 2982, + '.', 4059, + '0', 4077, + ';', 2879, + 'N', 4215, + '[', 2924, + '_', 4079, + '`', 634, + 'e', 4045, + 'f', 4089, + 'n', 4193, + 'o', 4046, + 't', 4160, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1026); + lookahead == ' ') SKIP(966); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4426); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4279); + lookahead == 'i') ADVANCE(4224); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4082); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4456); + lookahead != ']') ADVANCE(4254); END_STATE(); - case 1051: - if (eof) ADVANCE(1124); + case 991: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - '$', 2989, - '(', 3294, - ')', 2986, - '+', 642, - ',', 2987, - '-', 3036, - '.', 3407, - ';', 2938, - '=', 673, - '_', 691, - 'a', 798, - 'e', 607, - 'i', 746, - 'o', 608, - 'x', 817, - '{', 3169, - '|', 2939, - '}', 3170, + '#', 4822, + '$', 2929, + '(', 3232, + ')', 2927, + '+', 579, + '-', 2975, + '.', 3346, + ';', 2879, + '=', 610, + '_', 630, + 'a', 737, + 'e', 547, + 'i', 685, + 'o', 548, + 'x', 756, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1056); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + lookahead == ' ') SKIP(996); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); END_STATE(); - case 1052: - if (eof) ADVANCE(1124); + case 992: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - '$', 2989, - '(', 3294, - ')', 2986, - '.', 3408, - ';', 2938, - '[', 3546, - '_', 4112, - 'e', 4053, - 'o', 4057, - '|', 2939, - '}', 3170, - '\t', 2937, - ' ', 2937, - '+', 4082, - '-', 4082, + '#', 4822, + '$', 2929, + '(', 3232, + ')', 2927, + '.', 3935, + ';', 2879, + '_', 3933, + 'a', 3966, + 'e', 3890, + 'o', 3891, + 'x', 3972, + '|', 2880, + '}', 3110, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if (lookahead == '\t' || + lookahead == ' ') SKIP(998); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3913); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + END_STATE(); + case 993: + if (eof) ADVANCE(1064); + ADVANCE_MAP( + '\n', 2873, + '\r', 25, + '#', 4822, + '$', 2929, + '(', 3232, + ')', 2927, + '.', 3935, + ';', 2879, + '_', 3933, + 'e', 3890, + 'o', 3892, + '|', 2880, + '}', 3110, + '\t', 2878, + ' ', 2878, + '+', 3913, + '-', 3913, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); + END_STATE(); + case 994: + if (eof) ADVANCE(1064); + ADVANCE_MAP( + '\n', 2873, + '\r', 25, + '#', 4822, + '$', 2929, + '(', 3232, + ')', 2927, + '.', 3343, + ';', 2879, + '[', 3484, + '_', 3933, + 'e', 3890, + 'o', 3892, + '|', 2880, + '}', 3110, + '\t', 2878, + ' ', 2878, + '+', 3913, + '-', 3913, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && @@ -34397,14374 +32050,14320 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4218); - END_STATE(); - case 1053: - if (eof) ADVANCE(1124); - ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '$', 2989, - '(', 3294, - ')', 2986, - '.', 3408, - ';', 2938, - '_', 4112, - 'a', 4141, - 'e', 4053, - 'o', 4056, - 'x', 4147, - '|', 2939, - '}', 3170, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1058); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4082); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4218); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4035); END_STATE(); - case 1054: - if (eof) ADVANCE(1124); + case 995: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - '$', 2989, - '(', 3294, - ')', 2986, - '.', 4117, - ';', 2938, - '_', 4112, - 'a', 4141, - 'e', 4053, - 'o', 4056, - 'x', 4147, - '|', 2939, - '}', 3170, + '#', 4822, + '$', 2929, + '(', 3232, + ')', 2927, + '.', 3343, + ';', 2879, + '_', 3933, + 'a', 3966, + 'e', 3890, + 'o', 3891, + 'x', 3972, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1058); + lookahead == ' ') SKIP(998); if (lookahead == '+' || - lookahead == '-') ADVANCE(4082); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4218); - END_STATE(); - case 1055: - if (eof) ADVANCE(1124); - ADVANCE_MAP( - '\n', 2932, - '\r', 25, - '#', 5024, - '$', 2989, - '(', 3294, - ')', 2986, - '.', 4117, - ';', 2938, - '_', 4112, - 'e', 4053, - 'o', 4057, - '|', 2939, - '}', 3170, - '\t', 2937, - ' ', 2937, - '+', 4082, - '-', 4082, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4218); + lookahead == '-') ADVANCE(3913); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 1056: - if (eof) ADVANCE(1124); + case 996: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - '$', 2989, - ')', 2986, - '+', 642, - ',', 2987, - '-', 3036, - '.', 692, - ';', 2938, - '=', 673, - 'a', 798, - 'e', 607, - 'i', 746, - 'o', 608, - 'x', 817, - '{', 3169, - '|', 2939, - '}', 3170, + '#', 4822, + '$', 2929, + ')', 2927, + '+', 579, + '-', 2975, + '.', 631, + ';', 2879, + '=', 610, + 'a', 737, + 'e', 547, + 'i', 685, + 'o', 548, + 'x', 756, + '{', 3109, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1056); + lookahead == ' ') SKIP(996); END_STATE(); - case 1057: - if (eof) ADVANCE(1124); + case 997: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - '$', 2989, - ')', 2986, - '-', 3030, - '.', 3392, - ';', 2938, - '=', 3764, - '?', 3263, - 'e', 2726, - 'o', 2725, - '{', 3169, - '|', 2939, - '}', 3170, - '\t', 2937, - ' ', 2937, + '#', 4822, + '$', 2929, + ')', 2927, + '-', 2970, + '.', 3330, + ';', 2879, + '=', 3694, + '?', 3201, + 'e', 2667, + 'o', 2666, + '{', 3109, + '|', 2880, + '}', 3110, + '\t', 2878, + ' ', 2878, ); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2899); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2840); END_STATE(); - case 1058: - if (eof) ADVANCE(1124); + case 998: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - '$', 2989, - ')', 2986, - '.', 692, - ';', 2938, - 'a', 798, - 'e', 600, - 'o', 592, - 'x', 817, - '|', 2939, - '}', 3170, + '#', 4822, + '$', 2929, + ')', 2927, + '.', 631, + ';', 2879, + 'a', 737, + 'e', 540, + 'o', 532, + 'x', 756, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1058); + lookahead == ' ') SKIP(998); if (lookahead == '+' || - lookahead == '-') ADVANCE(642); + lookahead == '-') ADVANCE(579); END_STATE(); - case 1059: - if (eof) ADVANCE(1124); + case 999: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - '(', 3294, - ')', 2986, - '*', 654, - '+', 596, - ',', 2987, - '-', 655, - '.', 3392, - '/', 657, - ';', 2938, - '=', 1142, - '?', 3263, - 'E', 680, - 'G', 680, - 'K', 680, - 'M', 680, - 'P', 680, - 'T', 680, - '[', 3546, - 'd', 698, - 'e', 603, - 'g', 679, - 'h', 834, - 'k', 679, - 'm', 681, - 'n', 857, - 'o', 611, - 'p', 679, - 's', 739, - 't', 679, - 'u', 857, - 'w', 780, - '{', 3169, - '|', 2939, - '}', 3170, - 0xb5, 857, - '\t', 29, - ' ', 29, - 'B', 3524, - 'b', 3524, + '#', 4822, + '(', 3232, + ')', 2927, + '*', 591, + '+', 536, + '-', 592, + '.', 3330, + '/', 594, + ';', 2879, + '=', 1082, + '?', 3201, + 'E', 619, + 'G', 619, + 'K', 619, + 'M', 619, + 'P', 619, + 'T', 619, + '[', 3484, + 'd', 637, + 'e', 543, + 'g', 618, + 'h', 773, + 'k', 618, + 'm', 620, + 'n', 796, + 'o', 551, + 'p', 618, + 's', 678, + 't', 618, + 'u', 796, + 'w', 719, + '{', 3109, + '|', 2880, + '}', 3110, + 0xb5, 796, + '\t', 26, + ' ', 26, + 'B', 3462, + 'b', 3462, ); END_STATE(); - case 1060: - if (eof) ADVANCE(1124); + case 1000: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - '(', 3294, - ')', 2986, - '.', 3392, - ';', 2938, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'a', 4141, - 'd', 4120, - 'e', 4054, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'o', 4056, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - 'x', 4147, - '|', 2939, - '}', 3170, - 0xb5, 4164, + '#', 4822, + '(', 3232, + ')', 2927, + '.', 3330, + ';', 2879, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'a', 3966, + 'd', 3948, + 'e', 3886, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'o', 3891, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + 'x', 3972, + '|', 2880, + '}', 3110, + 0xb5, 3984, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1112); + lookahead == ' ') SKIP(1052); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 1061: - if (eof) ADVANCE(1124); + case 1001: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - '(', 3294, - ')', 2986, - '.', 3392, - ';', 2938, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4049, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'o', 4051, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '|', 2939, - '}', 3170, - 0xb5, 4164, - '\t', 31, - ' ', 31, - 'B', 3524, - 'b', 3524, + '#', 4822, + '(', 3232, + ')', 2927, + '.', 3330, + ';', 2879, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'd', 3948, + 'e', 3883, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'o', 3882, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '|', 2880, + '}', 3110, + 0xb5, 3984, + '\t', 29, + ' ', 29, + 'B', 3462, + 'b', 3462, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 1062: - if (eof) ADVANCE(1124); + case 1002: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - '(', 3294, - ')', 2986, - '.', 3392, - ';', 2938, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4054, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'o', 4057, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '|', 2939, - '}', 3170, - 0xb5, 4164, - '\t', 2937, - ' ', 2937, - 'B', 3524, - 'b', 3524, + '#', 4822, + '(', 3232, + ')', 2927, + '.', 3330, + ';', 2879, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'd', 3948, + 'e', 3886, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'o', 3892, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '|', 2880, + '}', 3110, + 0xb5, 3984, + '\t', 2878, + ' ', 2878, + 'B', 3462, + 'b', 3462, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 1063: - if (eof) ADVANCE(1124); + case 1003: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - '(', 3294, - ')', 2986, - '.', 3392, - ';', 2938, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4054, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'o', 4057, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '|', 2939, - '}', 3170, - 0xb5, 4164, - '\t', 32, - ' ', 32, - 'B', 3524, - 'b', 3524, + '#', 4822, + '(', 3232, + ')', 2927, + '.', 3330, + ';', 2879, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'd', 3948, + 'e', 3886, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'o', 3892, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '|', 2880, + '}', 3110, + 0xb5, 3984, + '\t', 30, + ' ', 30, + 'B', 3462, + 'b', 3462, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 1064: - if (eof) ADVANCE(1124); + case 1004: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - '(', 3294, - ')', 2986, - '.', 3392, - ';', 2938, - 'E', 4110, - 'a', 4141, - 'e', 4055, - 'o', 4056, - 'x', 4147, - '|', 2939, - '}', 3170, + '#', 4822, + '(', 3232, + ')', 2927, + '.', 3330, + ';', 2879, + 'E', 3943, + 'a', 3966, + 'e', 3887, + 'o', 3891, + 'x', 3972, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1112); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == ' ') SKIP(1052); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 1065: - if (eof) ADVANCE(1124); + case 1005: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - '(', 3294, - ')', 2986, - '.', 3392, - ';', 2938, - 'E', 4110, - 'e', 4055, - 'o', 4057, - '|', 2939, - '}', 3170, - '\t', 2937, - ' ', 2937, + '#', 4822, + '(', 3232, + ')', 2927, + '.', 3330, + ';', 2879, + 'E', 3943, + 'e', 3887, + 'o', 3892, + '|', 2880, + '}', 3110, + '\t', 2878, + ' ', 2878, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 1066: - if (eof) ADVANCE(1124); + case 1006: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - '(', 3294, - ')', 2986, - '.', 4081, - ';', 2938, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - '_', 4112, - 'a', 4141, - 'd', 4120, - 'e', 4054, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'o', 4056, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - 'x', 4147, - '|', 2939, - '}', 3170, - 0xb5, 4164, + '#', 4822, + '(', 3232, + ')', 2927, + '.', 3912, + ';', 2879, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + '_', 3933, + 'a', 3966, + 'd', 3948, + 'e', 3886, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'o', 3891, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + 'x', 3972, + '|', 2880, + '}', 3110, + 0xb5, 3984, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1112); + lookahead == ' ') SKIP(1052); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == 'b') ADVANCE(3462); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 1067: - if (eof) ADVANCE(1124); + case 1007: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - '(', 3294, - ')', 2986, - '.', 4081, - ';', 2938, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - '_', 4112, - 'd', 4120, - 'e', 4049, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'o', 4051, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '|', 2939, - '}', 3170, - 0xb5, 4164, - '\t', 31, - ' ', 31, - 'B', 3524, - 'b', 3524, + '#', 4822, + '(', 3232, + ')', 2927, + '.', 3912, + ';', 2879, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + '_', 3933, + 'd', 3948, + 'e', 3883, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'o', 3882, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '|', 2880, + '}', 3110, + 0xb5, 3984, + '\t', 29, + ' ', 29, + 'B', 3462, + 'b', 3462, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 1068: - if (eof) ADVANCE(1124); + case 1008: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - '(', 3294, - ')', 2986, - '.', 4081, - ';', 2938, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - '_', 4112, - 'd', 4120, - 'e', 4054, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'o', 4057, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '|', 2939, - '}', 3170, - 0xb5, 4164, - '\t', 2937, - ' ', 2937, - 'B', 3524, - 'b', 3524, + '#', 4822, + '(', 3232, + ')', 2927, + '.', 3912, + ';', 2879, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + '_', 3933, + 'd', 3948, + 'e', 3886, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'o', 3892, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '|', 2880, + '}', 3110, + 0xb5, 3984, + '\t', 2878, + ' ', 2878, + 'B', 3462, + 'b', 3462, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 1069: - if (eof) ADVANCE(1124); + case 1009: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - '(', 3294, - ')', 2986, - '.', 4081, - ';', 2938, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - '_', 4112, - 'd', 4120, - 'e', 4054, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'o', 4057, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '|', 2939, - '}', 3170, - 0xb5, 4164, - '\t', 32, - ' ', 32, - 'B', 3524, - 'b', 3524, + '#', 4822, + '(', 3232, + ')', 2927, + '.', 3912, + ';', 2879, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + '_', 3933, + 'd', 3948, + 'e', 3886, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'o', 3892, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '|', 2880, + '}', 3110, + 0xb5, 3984, + '\t', 30, + ' ', 30, + 'B', 3462, + 'b', 3462, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 1070: - if (eof) ADVANCE(1124); + case 1010: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - '(', 3294, - ')', 2986, - '.', 4081, - ';', 2938, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'a', 4141, - 'd', 4120, - 'e', 4054, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'o', 4056, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - 'x', 4147, - '|', 2939, - '}', 3170, - 0xb5, 4164, + '#', 4822, + '(', 3232, + ')', 2927, + '.', 3912, + ';', 2879, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'a', 3966, + 'd', 3948, + 'e', 3886, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'o', 3891, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + 'x', 3972, + '|', 2880, + '}', 3110, + 0xb5, 3984, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1112); + lookahead == ' ') SKIP(1052); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 1071: - if (eof) ADVANCE(1124); + case 1011: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - '(', 3294, - ')', 2986, - '.', 4081, - ';', 2938, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4049, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'o', 4051, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '|', 2939, - '}', 3170, - 0xb5, 4164, - '\t', 31, - ' ', 31, - 'B', 3524, - 'b', 3524, + '#', 4822, + '(', 3232, + ')', 2927, + '.', 3912, + ';', 2879, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'd', 3948, + 'e', 3883, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'o', 3882, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '|', 2880, + '}', 3110, + 0xb5, 3984, + '\t', 29, + ' ', 29, + 'B', 3462, + 'b', 3462, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 1072: - if (eof) ADVANCE(1124); + case 1012: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - '(', 3294, - ')', 2986, - '.', 4081, - ';', 2938, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4054, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'o', 4057, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '|', 2939, - '}', 3170, - 0xb5, 4164, - '\t', 2937, - ' ', 2937, - 'B', 3524, - 'b', 3524, + '#', 4822, + '(', 3232, + ')', 2927, + '.', 3912, + ';', 2879, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'd', 3948, + 'e', 3886, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'o', 3892, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '|', 2880, + '}', 3110, + 0xb5, 3984, + '\t', 2878, + ' ', 2878, + 'B', 3462, + 'b', 3462, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 1073: - if (eof) ADVANCE(1124); + case 1013: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - '(', 3294, - ')', 2986, - '.', 4081, - ';', 2938, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4054, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'o', 4057, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '|', 2939, - '}', 3170, - 0xb5, 4164, - '\t', 32, - ' ', 32, - 'B', 3524, - 'b', 3524, + '#', 4822, + '(', 3232, + ')', 2927, + '.', 3912, + ';', 2879, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'd', 3948, + 'e', 3886, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'o', 3892, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '|', 2880, + '}', 3110, + 0xb5, 3984, + '\t', 30, + ' ', 30, + 'B', 3462, + 'b', 3462, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 1074: - if (eof) ADVANCE(1124); + case 1014: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - '(', 3294, - ')', 2986, - '.', 4081, - ';', 2938, - 'E', 4103, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'a', 4141, - 'd', 4120, - 'e', 4052, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'o', 4056, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - 'x', 4147, - '|', 2939, - '}', 3170, - 0xb5, 4164, + '#', 4822, + '(', 3232, + ')', 2927, + '.', 3912, + ';', 2879, + 'E', 3931, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'a', 3966, + 'd', 3948, + 'e', 3889, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'o', 3891, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + 'x', 3972, + '|', 2880, + '}', 3110, + 0xb5, 3984, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1112); + lookahead == ' ') SKIP(1052); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 1075: - if (eof) ADVANCE(1124); + case 1015: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - '(', 3294, - ')', 2986, - '.', 4081, - ';', 2938, - 'E', 4103, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4046, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'o', 4051, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '|', 2939, - '}', 3170, - 0xb5, 4164, - '\t', 31, - ' ', 31, - 'B', 3524, - 'b', 3524, + '#', 4822, + '(', 3232, + ')', 2927, + '.', 3912, + ';', 2879, + 'E', 3931, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'd', 3948, + 'e', 3880, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'o', 3882, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '|', 2880, + '}', 3110, + 0xb5, 3984, + '\t', 29, + ' ', 29, + 'B', 3462, + 'b', 3462, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 1076: - if (eof) ADVANCE(1124); + case 1016: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - '(', 3294, - ')', 2986, - '.', 4081, - ';', 2938, - 'E', 4103, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4052, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'o', 4057, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '|', 2939, - '}', 3170, - 0xb5, 4164, - '\t', 2937, - ' ', 2937, - 'B', 3524, - 'b', 3524, + '#', 4822, + '(', 3232, + ')', 2927, + '.', 3912, + ';', 2879, + 'E', 3931, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'd', 3948, + 'e', 3889, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'o', 3892, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '|', 2880, + '}', 3110, + 0xb5, 3984, + '\t', 2878, + ' ', 2878, + 'B', 3462, + 'b', 3462, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 1077: - if (eof) ADVANCE(1124); + case 1017: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - '(', 3294, - ')', 2986, - '.', 4081, - ';', 2938, - 'E', 4103, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'd', 4120, - 'e', 4052, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'o', 4057, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '|', 2939, - '}', 3170, - 0xb5, 4164, - '\t', 32, - ' ', 32, - 'B', 3524, - 'b', 3524, + '#', 4822, + '(', 3232, + ')', 2927, + '.', 3912, + ';', 2879, + 'E', 3931, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'd', 3948, + 'e', 3889, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'o', 3892, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '|', 2880, + '}', 3110, + 0xb5, 3984, + '\t', 30, + ' ', 30, + 'B', 3462, + 'b', 3462, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 1078: - if (eof) ADVANCE(1124); + case 1018: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - '(', 3294, - ')', 2986, - '.', 4081, - ';', 2938, - 'E', 4110, - '_', 4112, - 'a', 4141, - 'e', 4055, - 'o', 4056, - 'x', 4147, - '|', 2939, - '}', 3170, + '#', 4822, + '(', 3232, + ')', 2927, + '.', 3912, + ';', 2879, + 'E', 3943, + '_', 3933, + 'a', 3966, + 'e', 3887, + 'o', 3891, + 'x', 3972, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1112); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == ' ') SKIP(1052); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 1079: - if (eof) ADVANCE(1124); + case 1019: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - '(', 3294, - ')', 2986, - '.', 4081, - ';', 2938, - 'E', 4110, - '_', 4112, - 'e', 4055, - 'o', 4057, - '|', 2939, - '}', 3170, - '\t', 2937, - ' ', 2937, + '#', 4822, + '(', 3232, + ')', 2927, + '.', 3912, + ';', 2879, + 'E', 3943, + '_', 3933, + 'e', 3887, + 'o', 3892, + '|', 2880, + '}', 3110, + '\t', 2878, + ' ', 2878, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 1080: - if (eof) ADVANCE(1124); + case 1020: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - '(', 3294, - ')', 2986, - '.', 4081, - ';', 2938, - 'E', 4110, - 'a', 4141, - 'e', 4055, - 'o', 4056, - 'x', 4147, - '|', 2939, - '}', 3170, + '#', 4822, + '(', 3232, + ')', 2927, + '.', 3912, + ';', 2879, + 'E', 3943, + 'a', 3966, + 'e', 3887, + 'o', 3891, + 'x', 3972, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1112); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == ' ') SKIP(1052); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 1081: - if (eof) ADVANCE(1124); + case 1021: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - '(', 3294, - ')', 2986, - '.', 4081, - ';', 2938, - 'E', 4110, - 'e', 4055, - 'o', 4057, - '|', 2939, - '}', 3170, - '\t', 2937, - ' ', 2937, + '#', 4822, + '(', 3232, + ')', 2927, + '.', 3912, + ';', 2879, + 'E', 3943, + 'e', 3887, + 'o', 3892, + '|', 2880, + '}', 3110, + '\t', 2878, + ' ', 2878, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 1082: - if (eof) ADVANCE(1124); + case 1022: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - '(', 3294, - ')', 2986, - '.', 4081, - ';', 2938, - 'a', 4141, - 'e', 4053, - 'o', 4056, - 'x', 4147, - '|', 2939, - '}', 3170, + '#', 4822, + '(', 3232, + ')', 2927, + '.', 3912, + ';', 2879, + 'a', 3966, + 'e', 3890, + 'o', 3891, + 'x', 3972, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1112); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == ' ') SKIP(1052); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 1083: - if (eof) ADVANCE(1124); + case 1023: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - '(', 3294, - ')', 2986, - '.', 4081, - ';', 2938, - 'e', 4053, - 'o', 4057, - '|', 2939, - '}', 3170, - '\t', 2937, - ' ', 2937, + '#', 4822, + '(', 3232, + ')', 2927, + '.', 3912, + ';', 2879, + 'e', 3890, + 'o', 3892, + '|', 2880, + '}', 3110, + '\t', 2878, + ' ', 2878, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 1084: - if (eof) ADVANCE(1124); + case 1024: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - '(', 3294, - ')', 2986, - '.', 3378, - ';', 2938, - 'E', 4110, - 'a', 4141, - 'e', 4055, - 'o', 4056, - 'x', 4147, - '|', 2939, - '}', 3170, + '#', 4822, + '(', 3232, + ')', 2927, + '.', 3316, + ';', 2879, + 'E', 3943, + 'a', 3966, + 'e', 3887, + 'o', 3891, + 'x', 3972, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1112); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == ' ') SKIP(1052); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 1085: - if (eof) ADVANCE(1124); + case 1025: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - '(', 3294, - ')', 2986, - '.', 3378, - ';', 2938, - 'E', 4110, - 'e', 4055, - 'o', 4057, - '|', 2939, - '}', 3170, - '\t', 2937, - ' ', 2937, + '#', 4822, + '(', 3232, + ')', 2927, + '.', 3316, + ';', 2879, + 'E', 3943, + 'e', 3887, + 'o', 3892, + '|', 2880, + '}', 3110, + '\t', 2878, + ' ', 2878, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 1086: - if (eof) ADVANCE(1124); + case 1026: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - '(', 3294, - ')', 2986, - ';', 2938, - 'E', 4110, - '_', 4112, - 'a', 4141, - 'e', 4055, - 'o', 4056, - 'x', 4147, - '|', 2939, - '}', 3170, + '#', 4822, + '(', 3232, + ')', 2927, + ';', 2879, + 'E', 3943, + '_', 3933, + 'a', 3966, + 'e', 3887, + 'o', 3891, + 'x', 3972, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1112); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == ' ') SKIP(1052); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 1087: - if (eof) ADVANCE(1124); + case 1027: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - '(', 3294, - ')', 2986, - ';', 2938, - 'E', 4110, - '_', 4112, - 'e', 4055, - 'o', 4057, - '|', 2939, - '}', 3170, - '\t', 2937, - ' ', 2937, + '#', 4822, + '(', 3232, + ')', 2927, + ';', 2879, + 'E', 3943, + '_', 3933, + 'e', 3887, + 'o', 3892, + '|', 2880, + '}', 3110, + '\t', 2878, + ' ', 2878, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 1088: - if (eof) ADVANCE(1124); + case 1028: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - '(', 3294, - ')', 2986, - ';', 2938, - 'E', 4110, - 'a', 4141, - 'e', 4055, - 'o', 4056, - 'x', 4147, - '|', 2939, - '}', 3170, + '#', 4822, + '(', 3232, + ')', 2927, + ';', 2879, + 'E', 3943, + 'a', 3966, + 'e', 3887, + 'o', 3891, + 'x', 3972, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1112); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == ' ') SKIP(1052); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 1089: - if (eof) ADVANCE(1124); + case 1029: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - '(', 3294, - ')', 2986, - ';', 2938, - 'E', 4110, - 'e', 4055, - 'o', 4057, - '|', 2939, - '}', 3170, - '\t', 2937, - ' ', 2937, + '#', 4822, + '(', 3232, + ')', 2927, + ';', 2879, + 'E', 3943, + 'e', 3887, + 'o', 3892, + '|', 2880, + '}', 3110, + '\t', 2878, + ' ', 2878, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 1090: - if (eof) ADVANCE(1124); + case 1030: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - '(', 3294, - ')', 2986, - ';', 2938, - 'a', 4141, - 'e', 4053, - 'o', 4056, - 'x', 4147, - '|', 2939, - '}', 3170, + '#', 4822, + '(', 3232, + ')', 2927, + ';', 2879, + 'a', 3966, + 'e', 3890, + 'o', 3891, + 'x', 3972, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1112); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == ' ') SKIP(1052); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 1091: - if (eof) ADVANCE(1124); + case 1031: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - '(', 3294, - ')', 2986, - ';', 2938, - 'e', 4053, - 'o', 4057, - '|', 2939, - '}', 3170, - '\t', 2937, - ' ', 2937, + '#', 4822, + '(', 3232, + ')', 2927, + ';', 2879, + 'e', 3890, + 'o', 3892, + '|', 2880, + '}', 3110, + '\t', 2878, + ' ', 2878, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 1092: - if (eof) ADVANCE(1124); + case 1032: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - ')', 2986, - ',', 2987, - '-', 3030, - '.', 3378, - ';', 2938, - '=', 673, - '?', 3263, - 'E', 689, - 'e', 590, - 'i', 746, - 'o', 611, - '{', 3169, - '|', 2939, - '}', 3170, - '\t', 30, - ' ', 30, + '#', 4822, + ')', 2927, + '-', 2970, + '.', 3330, + ';', 2879, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'a', 3985, + 'd', 3948, + 'e', 3927, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '}', 3110, + 0xb5, 3984, ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1040); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 1093: - if (eof) ADVANCE(1124); + case 1033: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - ')', 2986, - '-', 3030, - '.', 3392, - ';', 2938, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'a', 4165, - 'd', 4120, - 'e', 4099, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '}', 3170, - 0xb5, 4164, + '#', 4822, + ')', 2927, + '-', 2970, + '.', 3912, + ';', 2879, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + '_', 3933, + 'a', 3985, + 'd', 3948, + 'e', 3927, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '}', 3110, + 0xb5, 3984, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1100); + lookahead == ' ') SKIP(1040); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == 'b') ADVANCE(3462); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 1094: - if (eof) ADVANCE(1124); + case 1034: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - ')', 2986, - '-', 3030, - '.', 4081, - ';', 2938, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - '_', 4112, - 'a', 4165, - 'd', 4120, - 'e', 4099, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '}', 3170, - 0xb5, 4164, + '#', 4822, + ')', 2927, + '-', 2970, + '.', 3912, + ';', 2879, + 'E', 3928, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'a', 3985, + 'd', 3948, + 'e', 3927, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '}', 3110, + 0xb5, 3984, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1100); + lookahead == ' ') SKIP(1040); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 1095: - if (eof) ADVANCE(1124); + case 1035: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - ')', 2986, - '-', 3030, - '.', 4081, - ';', 2938, - 'E', 4100, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'a', 4165, - 'd', 4120, - 'e', 4099, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '}', 3170, - 0xb5, 4164, + '#', 4822, + ')', 2927, + '-', 2970, + '.', 3912, + ';', 2879, + 'E', 3931, + 'G', 3931, + 'K', 3931, + 'M', 3931, + 'P', 3931, + 'T', 3931, + 'a', 3985, + 'd', 3948, + 'e', 3930, + 'g', 3930, + 'h', 3974, + 'k', 3930, + 'm', 3932, + 'n', 3984, + 'p', 3930, + 's', 3954, + 't', 3930, + 'u', 3984, + 'w', 3960, + '}', 3110, + 0xb5, 3984, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1100); + lookahead == ' ') SKIP(1040); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 1096: - if (eof) ADVANCE(1124); + case 1036: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - ')', 2986, - '-', 3030, - '.', 4081, - ';', 2938, - 'E', 4103, - 'G', 4103, - 'K', 4103, - 'M', 4103, - 'P', 4103, - 'T', 4103, - 'a', 4165, - 'd', 4120, - 'e', 4102, - 'g', 4102, - 'h', 4151, - 'k', 4102, - 'm', 4104, - 'n', 4164, - 'p', 4102, - 's', 4127, - 't', 4102, - 'u', 4164, - 'w', 4135, - '}', 3170, - 0xb5, 4164, + '#', 4822, + ')', 2927, + '-', 2970, + '.', 3316, + ';', 2879, + '=', 610, + '?', 3201, + 'E', 628, + 'e', 530, + 'o', 551, + '{', 3109, + '|', 2880, + '}', 3110, + '\t', 27, + ' ', 27, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1100); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); END_STATE(); - case 1097: - if (eof) ADVANCE(1124); + case 1037: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - ')', 2986, - '-', 3030, - ';', 2938, - '=', 3764, - 'a', 2835, - '}', 3170, + '#', 4822, + ')', 2927, + '-', 2970, + ';', 2879, + '=', 3694, + 'a', 2776, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1100); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2899); + lookahead == ' ') SKIP(1040); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2840); END_STATE(); - case 1098: - if (eof) ADVANCE(1124); + case 1038: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - ')', 2986, - '-', 3030, - ';', 2938, - '=', 3764, - 'a', 859, - '}', 3170, + '#', 4822, + ')', 2927, + '-', 2970, + ';', 2879, + '=', 3694, + 'a', 798, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1100); + lookahead == ' ') SKIP(1040); END_STATE(); - case 1099: - if (eof) ADVANCE(1124); + case 1039: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - ')', 2986, - '-', 3030, - ';', 2938, - 'a', 4165, - '}', 3170, + '#', 4822, + ')', 2927, + '-', 2970, + ';', 2879, + 'a', 3985, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1100); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + lookahead == ' ') SKIP(1040); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 1100: - if (eof) ADVANCE(1124); + case 1040: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - ')', 2986, - '-', 3030, - ';', 2938, - 'a', 859, - '}', 3170, + '#', 4822, + ')', 2927, + '-', 2970, + ';', 2879, + 'a', 798, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1100); + lookahead == ' ') SKIP(1040); END_STATE(); - case 1101: - if (eof) ADVANCE(1124); + case 1041: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - ')', 2986, - '-', 3041, - ';', 2938, - '=', 3764, - 'a', 3802, - '}', 3170, + '#', 4822, + ')', 2927, + '-', 2981, + ';', 2879, + '=', 3694, + 'a', 3732, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1100); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + lookahead == ' ') SKIP(1040); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 1102: - if (eof) ADVANCE(1124); + case 1042: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - ')', 2986, - '.', 3392, - ';', 2938, - 'E', 2326, - 'G', 2328, - 'K', 2328, - 'M', 2328, - 'P', 2328, - 'T', 2328, - 'd', 2334, - 'e', 2302, - 'g', 2327, - 'h', 2348, - 'k', 2327, - 'm', 2329, - 'n', 2355, - 'o', 2304, - 'p', 2327, - 's', 2337, - 't', 2327, - 'u', 2355, - 'w', 2342, - '|', 2939, - '}', 3170, - 0xb5, 2355, - '\t', 31, - ' ', 31, - 'B', 3524, - 'b', 3524, + '#', 4822, + ')', 2927, + '.', 3330, + ';', 2879, + 'E', 2267, + 'G', 2269, + 'K', 2269, + 'M', 2269, + 'P', 2269, + 'T', 2269, + 'd', 2275, + 'e', 2243, + 'g', 2268, + 'h', 2289, + 'k', 2268, + 'm', 2270, + 'n', 2296, + 'o', 2245, + 'p', 2268, + 's', 2278, + 't', 2268, + 'u', 2296, + 'w', 2283, + '|', 2880, + '}', 3110, + 0xb5, 2296, + '\t', 29, + ' ', 29, + 'B', 3462, + 'b', 3462, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 1103: - if (eof) ADVANCE(1124); + case 1043: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - ')', 2986, - '.', 3392, - ';', 2938, - 'E', 2326, - 'G', 2328, - 'K', 2328, - 'M', 2328, - 'P', 2328, - 'T', 2328, - 'd', 2334, - 'e', 2310, - 'g', 2327, - 'h', 2348, - 'k', 2327, - 'm', 2329, - 'n', 2355, - 'o', 2311, - 'p', 2327, - 's', 2337, - 't', 2327, - 'u', 2355, - 'w', 2342, - '|', 2939, - '}', 3170, - 0xb5, 2355, - '\t', 32, - ' ', 32, - 'B', 3524, - 'b', 3524, + '#', 4822, + ')', 2927, + '.', 3330, + ';', 2879, + 'E', 2267, + 'G', 2269, + 'K', 2269, + 'M', 2269, + 'P', 2269, + 'T', 2269, + 'd', 2275, + 'e', 2251, + 'g', 2268, + 'h', 2289, + 'k', 2268, + 'm', 2270, + 'n', 2296, + 'o', 2252, + 'p', 2268, + 's', 2278, + 't', 2268, + 'u', 2296, + 'w', 2283, + '|', 2880, + '}', 3110, + 0xb5, 2296, + '\t', 30, + ' ', 30, + 'B', 3462, + 'b', 3462, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 1104: - if (eof) ADVANCE(1124); + case 1044: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - ')', 2986, - '.', 2316, - ';', 2938, - 'E', 2326, - 'G', 2328, - 'K', 2328, - 'M', 2328, - 'P', 2328, - 'T', 2328, - '_', 2333, - 'd', 2334, - 'e', 2302, - 'g', 2327, - 'h', 2348, - 'k', 2327, - 'm', 2329, - 'n', 2355, - 'o', 2304, - 'p', 2327, - 's', 2337, - 't', 2327, - 'u', 2355, - 'w', 2342, - '|', 2939, - '}', 3170, - 0xb5, 2355, - '\t', 31, - ' ', 31, - 'B', 3524, - 'b', 3524, + '#', 4822, + ')', 2927, + '.', 2257, + ';', 2879, + 'E', 2267, + 'G', 2269, + 'K', 2269, + 'M', 2269, + 'P', 2269, + 'T', 2269, + '_', 2274, + 'd', 2275, + 'e', 2243, + 'g', 2268, + 'h', 2289, + 'k', 2268, + 'm', 2270, + 'n', 2296, + 'o', 2245, + 'p', 2268, + 's', 2278, + 't', 2268, + 'u', 2296, + 'w', 2283, + '|', 2880, + '}', 3110, + 0xb5, 2296, + '\t', 29, + ' ', 29, + 'B', 3462, + 'b', 3462, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 1105: - if (eof) ADVANCE(1124); + case 1045: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - ')', 2986, - '.', 2316, - ';', 2938, - 'E', 2326, - 'G', 2328, - 'K', 2328, - 'M', 2328, - 'P', 2328, - 'T', 2328, - '_', 2333, - 'd', 2334, - 'e', 2310, - 'g', 2327, - 'h', 2348, - 'k', 2327, - 'm', 2329, - 'n', 2355, - 'o', 2311, - 'p', 2327, - 's', 2337, - 't', 2327, - 'u', 2355, - 'w', 2342, - '|', 2939, - '}', 3170, - 0xb5, 2355, - '\t', 32, - ' ', 32, - 'B', 3524, - 'b', 3524, + '#', 4822, + ')', 2927, + '.', 2257, + ';', 2879, + 'E', 2267, + 'G', 2269, + 'K', 2269, + 'M', 2269, + 'P', 2269, + 'T', 2269, + '_', 2274, + 'd', 2275, + 'e', 2251, + 'g', 2268, + 'h', 2289, + 'k', 2268, + 'm', 2270, + 'n', 2296, + 'o', 2252, + 'p', 2268, + 's', 2278, + 't', 2268, + 'u', 2296, + 'w', 2283, + '|', 2880, + '}', 3110, + 0xb5, 2296, + '\t', 30, + ' ', 30, + 'B', 3462, + 'b', 3462, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 1106: - if (eof) ADVANCE(1124); + case 1046: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - ')', 2986, - '.', 2316, - ';', 2938, - 'E', 2326, - 'G', 2328, - 'K', 2328, - 'M', 2328, - 'P', 2328, - 'T', 2328, - 'd', 2334, - 'e', 2302, - 'g', 2327, - 'h', 2348, - 'k', 2327, - 'm', 2329, - 'n', 2355, - 'o', 2304, - 'p', 2327, - 's', 2337, - 't', 2327, - 'u', 2355, - 'w', 2342, - '|', 2939, - '}', 3170, - 0xb5, 2355, - '\t', 31, - ' ', 31, - 'B', 3524, - 'b', 3524, + '#', 4822, + ')', 2927, + '.', 2257, + ';', 2879, + 'E', 2267, + 'G', 2269, + 'K', 2269, + 'M', 2269, + 'P', 2269, + 'T', 2269, + 'd', 2275, + 'e', 2243, + 'g', 2268, + 'h', 2289, + 'k', 2268, + 'm', 2270, + 'n', 2296, + 'o', 2245, + 'p', 2268, + 's', 2278, + 't', 2268, + 'u', 2296, + 'w', 2283, + '|', 2880, + '}', 3110, + 0xb5, 2296, + '\t', 29, + ' ', 29, + 'B', 3462, + 'b', 3462, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 1107: - if (eof) ADVANCE(1124); + case 1047: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - ')', 2986, - '.', 2316, - ';', 2938, - 'E', 2326, - 'G', 2328, - 'K', 2328, - 'M', 2328, - 'P', 2328, - 'T', 2328, - 'd', 2334, - 'e', 2310, - 'g', 2327, - 'h', 2348, - 'k', 2327, - 'm', 2329, - 'n', 2355, - 'o', 2311, - 'p', 2327, - 's', 2337, - 't', 2327, - 'u', 2355, - 'w', 2342, - '|', 2939, - '}', 3170, - 0xb5, 2355, - '\t', 32, - ' ', 32, - 'B', 3524, - 'b', 3524, + '#', 4822, + ')', 2927, + '.', 2257, + ';', 2879, + 'E', 2267, + 'G', 2269, + 'K', 2269, + 'M', 2269, + 'P', 2269, + 'T', 2269, + 'd', 2275, + 'e', 2251, + 'g', 2268, + 'h', 2289, + 'k', 2268, + 'm', 2270, + 'n', 2296, + 'o', 2252, + 'p', 2268, + 's', 2278, + 't', 2268, + 'u', 2296, + 'w', 2283, + '|', 2880, + '}', 3110, + 0xb5, 2296, + '\t', 30, + ' ', 30, + 'B', 3462, + 'b', 3462, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 1108: - if (eof) ADVANCE(1124); + case 1048: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - ')', 2986, - '.', 2316, - ';', 2938, - 'E', 2328, - 'G', 2328, - 'K', 2328, - 'M', 2328, - 'P', 2328, - 'T', 2328, - 'd', 2334, - 'e', 2305, - 'g', 2327, - 'h', 2348, - 'k', 2327, - 'm', 2329, - 'n', 2355, - 'o', 2304, - 'p', 2327, - 's', 2337, - 't', 2327, - 'u', 2355, - 'w', 2342, - '|', 2939, - '}', 3170, - 0xb5, 2355, - '\t', 31, - ' ', 31, - 'B', 3524, - 'b', 3524, + '#', 4822, + ')', 2927, + '.', 2257, + ';', 2879, + 'E', 2269, + 'G', 2269, + 'K', 2269, + 'M', 2269, + 'P', 2269, + 'T', 2269, + 'd', 2275, + 'e', 2246, + 'g', 2268, + 'h', 2289, + 'k', 2268, + 'm', 2270, + 'n', 2296, + 'o', 2245, + 'p', 2268, + 's', 2278, + 't', 2268, + 'u', 2296, + 'w', 2283, + '|', 2880, + '}', 3110, + 0xb5, 2296, + '\t', 29, + ' ', 29, + 'B', 3462, + 'b', 3462, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 1109: - if (eof) ADVANCE(1124); + case 1049: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - ')', 2986, - '.', 2316, - ';', 2938, - 'E', 2328, - 'G', 2328, - 'K', 2328, - 'M', 2328, - 'P', 2328, - 'T', 2328, - 'd', 2334, - 'e', 2308, - 'g', 2327, - 'h', 2348, - 'k', 2327, - 'm', 2329, - 'n', 2355, - 'o', 2311, - 'p', 2327, - 's', 2337, - 't', 2327, - 'u', 2355, - 'w', 2342, - '|', 2939, - '}', 3170, - 0xb5, 2355, - '\t', 32, - ' ', 32, - 'B', 3524, - 'b', 3524, + '#', 4822, + ')', 2927, + '.', 2257, + ';', 2879, + 'E', 2269, + 'G', 2269, + 'K', 2269, + 'M', 2269, + 'P', 2269, + 'T', 2269, + 'd', 2275, + 'e', 2249, + 'g', 2268, + 'h', 2289, + 'k', 2268, + 'm', 2270, + 'n', 2296, + 'o', 2252, + 'p', 2268, + 's', 2278, + 't', 2268, + 'u', 2296, + 'w', 2283, + '|', 2880, + '}', 3110, + 0xb5, 2296, + '\t', 30, + ' ', 30, + 'B', 3462, + 'b', 3462, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 1110: - if (eof) ADVANCE(1124); + case 1050: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - ')', 2986, - '.', 3378, - ';', 2938, - '?', 3263, - 'e', 600, - 'o', 595, - '|', 2939, - '}', 3170, - '\t', 2937, - ' ', 2937, + '#', 4822, + ')', 2927, + '.', 3316, + ';', 2879, + '?', 3201, + 'e', 540, + 'o', 535, + '|', 2880, + '}', 3110, + '\t', 2878, + ' ', 2878, ); END_STATE(); - case 1111: - if (eof) ADVANCE(1124); + case 1051: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - ')', 2986, - ';', 2938, - '=', 3764, - 'e', 3770, - 'o', 3769, - '|', 2939, - '}', 3170, - '\t', 2937, - ' ', 2937, + '#', 4822, + ')', 2927, + ';', 2879, + '=', 3694, + 'e', 3700, + 'o', 3699, + '|', 2880, + '}', 3110, + '\t', 2878, + ' ', 2878, ); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 1112: - if (eof) ADVANCE(1124); + case 1052: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - ')', 2986, - ';', 2938, - 'a', 798, - 'e', 600, - 'o', 592, - 'x', 817, - '|', 2939, - '}', 3170, + '#', 4822, + ')', 2927, + ';', 2879, + 'a', 737, + 'e', 540, + 'o', 532, + 'x', 756, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1112); + lookahead == ' ') SKIP(1052); END_STATE(); - case 1113: - if (eof) ADVANCE(1124); + case 1053: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - ')', 2986, - ';', 2938, - 'e', 2306, - 'o', 2304, - '|', 2939, - '}', 3170, - '\t', 31, - ' ', 31, + '#', 4822, + ')', 2927, + ';', 2879, + 'e', 3881, + 'o', 3882, + '|', 2880, + '}', 3110, + '\t', 29, + ' ', 29, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 1114: - if (eof) ADVANCE(1124); + case 1054: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - ')', 2986, - ';', 2938, - 'e', 4047, - 'o', 4051, - '|', 2939, - '}', 3170, - '\t', 31, - ' ', 31, + '#', 4822, + ')', 2927, + ';', 2879, + 'e', 2247, + 'o', 2245, + '|', 2880, + '}', 3110, + '\t', 29, + ' ', 29, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 1115: - if (eof) ADVANCE(1124); + case 1055: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - ')', 2986, - ';', 2938, - 'e', 2309, - 'o', 2311, - '|', 2939, - '}', 3170, - '\t', 32, - ' ', 32, + '#', 4822, + ')', 2927, + ';', 2879, + 'e', 3890, + 'o', 3892, + '|', 2880, + '}', 3110, + '\t', 30, + ' ', 30, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); - case 1116: - if (eof) ADVANCE(1124); + case 1056: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5024, - ')', 2986, - ';', 2938, - 'e', 4053, - 'o', 4057, - '|', 2939, - '}', 3170, - '\t', 32, - ' ', 32, + '#', 4822, + ')', 2927, + ';', 2879, + 'e', 2250, + 'o', 2252, + '|', 2880, + '}', 3110, + '\t', 30, + ' ', 30, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 1117: - if (eof) ADVANCE(1124); + case 1057: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5031, - '(', 3294, - ')', 2986, - ';', 2938, - 'a', 4338, - 'e', 4234, - 'o', 4235, - 'x', 4349, - '|', 2939, - '}', 3170, + '#', 4829, + '(', 3232, + ')', 2927, + ';', 2879, + 'a', 4144, + 'e', 4049, + 'o', 4050, + 'x', 4155, + '|', 2880, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1112); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + lookahead == ' ') SKIP(1052); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 1118: - if (eof) ADVANCE(1124); + case 1058: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5031, - '(', 3294, - ')', 2986, - ';', 2938, - 'e', 4232, - 'o', 4233, - '|', 2939, - '}', 3170, - '\t', 31, - ' ', 31, + '#', 4829, + '(', 3232, + ')', 2927, + ';', 2879, + 'e', 4045, + 'o', 4046, + '|', 2880, + '}', 3110, + '\t', 29, + ' ', 29, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 1119: - if (eof) ADVANCE(1124); + case 1059: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5031, - '(', 3294, - ')', 2986, - ';', 2938, - 'e', 4234, - 'o', 4236, - '|', 2939, - '}', 3170, - '\t', 2937, - ' ', 2937, + '#', 4829, + '(', 3232, + ')', 2927, + ';', 2879, + 'e', 4049, + 'o', 4051, + '|', 2880, + '}', 3110, + '\t', 2878, + ' ', 2878, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 1120: - if (eof) ADVANCE(1124); + case 1060: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5031, - '(', 3294, - ')', 2986, - ';', 2938, - 'e', 4234, - 'o', 4236, - '|', 2939, - '}', 3170, - '\t', 32, - ' ', 32, + '#', 4829, + '(', 3232, + ')', 2927, + ';', 2879, + 'e', 4049, + 'o', 4051, + '|', 2880, + '}', 3110, + '\t', 30, + ' ', 30, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 1121: - if (eof) ADVANCE(1124); + case 1061: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5031, - ')', 2986, - '-', 3043, - ';', 2938, - 'a', 4376, - '}', 3170, + '#', 4829, + ')', 2927, + '-', 2983, + ';', 2879, + 'a', 4177, + '}', 3110, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1100); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + lookahead == ' ') SKIP(1040); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 1122: - if (eof) ADVANCE(1124); + case 1062: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5027, - ')', 2986, - ';', 2938, - 'e', 2226, - 'o', 2227, - '|', 2939, - '}', 3170, - '\t', 31, - ' ', 31, + '#', 4825, + ')', 2927, + ';', 2879, + 'e', 2167, + 'o', 2168, + '|', 2880, + '}', 3110, + '\t', 29, + ' ', 29, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); - case 1123: - if (eof) ADVANCE(1124); + case 1063: + if (eof) ADVANCE(1064); ADVANCE_MAP( - '\n', 2932, + '\n', 2873, '\r', 25, - '#', 5027, - ')', 2986, - ';', 2938, - 'e', 2230, - 'o', 2231, - '|', 2939, - '}', 3170, - '\t', 32, - ' ', 32, + '#', 4825, + ')', 2927, + ';', 2879, + 'e', 2171, + 'o', 2172, + '|', 2880, + '}', 3110, + '\t', 30, + ' ', 30, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); - case 1124: + case 1064: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 1125: + case 1065: ACCEPT_TOKEN(anon_sym_POUND_BANG); END_STATE(); - case 1126: + case 1066: ACCEPT_TOKEN(aux_sym_shebang_token1); END_STATE(); - case 1127: + case 1067: ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(1126); - if (lookahead == '\r') ADVANCE(1128); - if (lookahead == '#') ADVANCE(5025); + if (lookahead == '\n') ADVANCE(1066); + if (lookahead == '\r') ADVANCE(1068); + if (lookahead == '#') ADVANCE(4823); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1127); - if (lookahead != 0) ADVANCE(1128); + lookahead == ' ') ADVANCE(1067); + if (lookahead != 0) ADVANCE(1068); END_STATE(); - case 1128: + case 1068: ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(1126); - if (lookahead == '\r') ADVANCE(1128); - if (lookahead != 0) ADVANCE(1128); + if (lookahead == '\n') ADVANCE(1066); + if (lookahead == '\r') ADVANCE(1068); + if (lookahead != 0) ADVANCE(1068); END_STATE(); - case 1129: + case 1069: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == ',') ADVANCE(2217); - if (lookahead == '-') ADVANCE(2198); - if (lookahead == '@') ADVANCE(2205); + if (lookahead == ',') ADVANCE(2158); + if (lookahead == '-') ADVANCE(2139); + if (lookahead == '@') ADVANCE(2146); if (lookahead == '.' || - lookahead == '?') ADVANCE(2207); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2204); + lookahead == '?') ADVANCE(2148); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2145); END_STATE(); - case 1130: + case 1070: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == ',') ADVANCE(2217); - if (lookahead == '-') ADVANCE(2199); + if (lookahead == ',') ADVANCE(2158); + if (lookahead == '-') ADVANCE(2140); if (lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2207); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2206); + lookahead == '@') ADVANCE(2148); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2147); END_STATE(); - case 1131: + case 1071: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == ',') ADVANCE(2217); - if (lookahead == '-') ADVANCE(2199); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2207); + if (lookahead == ',') ADVANCE(2158); + if (lookahead == '-') ADVANCE(2140); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2148); END_STATE(); - case 1132: + case 1072: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == ',') ADVANCE(2217); - if (lookahead == '-') ADVANCE(4879); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4882); + if (lookahead == ',') ADVANCE(2158); + if (lookahead == '-') ADVANCE(4677); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4680); END_STATE(); - case 1133: + case 1073: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(2210); + if (lookahead == '-') ADVANCE(2151); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2217); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2216); + lookahead == '@') ADVANCE(2158); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2157); END_STATE(); - case 1134: + case 1074: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(2210); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2217); + if (lookahead == '-') ADVANCE(2151); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2158); END_STATE(); - case 1135: + case 1075: ACCEPT_TOKEN(anon_sym_alias); END_STATE(); - case 1136: + case 1076: ACCEPT_TOKEN(anon_sym_alias); - if (lookahead == ',') ADVANCE(1957); + if (lookahead == ',') ADVANCE(1898); if (lookahead == '-' || - lookahead == '@') ADVANCE(1953); + lookahead == '@') ADVANCE(1894); if (lookahead == '.' || - lookahead == '?') ADVANCE(1955); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1952); + lookahead == '?') ADVANCE(1896); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1893); END_STATE(); - case 1137: + case 1077: ACCEPT_TOKEN(anon_sym_alias); - if (lookahead == ',') ADVANCE(1957); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4872); + if (lookahead == ',') ADVANCE(1898); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4670); END_STATE(); - case 1138: + case 1078: ACCEPT_TOKEN(anon_sym_alias); - if (lookahead == ',') ADVANCE(1957); + if (lookahead == ',') ADVANCE(1898); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(1955); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1954); + lookahead == '@') ADVANCE(1896); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1895); END_STATE(); - case 1139: + case 1079: ACCEPT_TOKEN(anon_sym_alias); - if (lookahead == ',') ADVANCE(1957); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1955); + if (lookahead == ',') ADVANCE(1898); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1896); END_STATE(); - case 1140: + case 1080: ACCEPT_TOKEN(anon_sym_alias); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1957); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1956); + lookahead == '@') ADVANCE(1898); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1897); END_STATE(); - case 1141: + case 1081: ACCEPT_TOKEN(anon_sym_alias); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1957); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1898); END_STATE(); - case 1142: + case 1082: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 1143: + case 1083: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(3839); - if (lookahead == '~') ADVANCE(3840); + if (lookahead == '=') ADVANCE(3769); + if (lookahead == '~') ADVANCE(3770); END_STATE(); - case 1144: + case 1084: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(941); - if (lookahead == '~') ADVANCE(942); + if (lookahead == '=') ADVANCE(880); + if (lookahead == '~') ADVANCE(881); END_STATE(); - case 1145: + case 1085: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(233); - if (lookahead == '~') ADVANCE(234); + if (lookahead == '=') ADVANCE(173); + if (lookahead == '~') ADVANCE(174); END_STATE(); - case 1146: + case 1086: + ACCEPT_TOKEN(anon_sym_EQ); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); + END_STATE(); + case 1087: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == ',') ADVANCE(1998); - if (lookahead == '-') ADVANCE(1979); - if (lookahead == '@') ADVANCE(1986); + if (lookahead == ',') ADVANCE(1939); + if (lookahead == '-') ADVANCE(1920); + if (lookahead == '@') ADVANCE(1927); if (lookahead == '.' || - lookahead == '?') ADVANCE(1988); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1985); + lookahead == '?') ADVANCE(1929); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1926); END_STATE(); - case 1147: + case 1088: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == ',') ADVANCE(1998); - if (lookahead == '-') ADVANCE(1980); + if (lookahead == ',') ADVANCE(1939); + if (lookahead == '-') ADVANCE(1921); if (lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(1988); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1987); + lookahead == '@') ADVANCE(1929); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1928); END_STATE(); - case 1148: + case 1089: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == ',') ADVANCE(1998); - if (lookahead == '-') ADVANCE(1980); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1988); + if (lookahead == ',') ADVANCE(1939); + if (lookahead == '-') ADVANCE(1921); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1929); END_STATE(); - case 1149: + case 1090: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == ',') ADVANCE(1998); - if (lookahead == '-') ADVANCE(4856); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4859); + if (lookahead == ',') ADVANCE(1939); + if (lookahead == '-') ADVANCE(4654); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4657); END_STATE(); - case 1150: + case 1091: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '-') ADVANCE(1991); + if (lookahead == '-') ADVANCE(1932); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1998); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1997); + lookahead == '@') ADVANCE(1939); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1938); END_STATE(); - case 1151: + case 1092: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '-') ADVANCE(1991); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1998); + if (lookahead == '-') ADVANCE(1932); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1939); END_STATE(); - case 1152: + case 1093: ACCEPT_TOKEN(anon_sym_let_DASHenv); - if (lookahead == ',') ADVANCE(1998); + if (lookahead == ',') ADVANCE(1939); if (lookahead == '.' || - lookahead == '?') ADVANCE(1988); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1986); + lookahead == '?') ADVANCE(1929); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1927); END_STATE(); - case 1153: + case 1094: ACCEPT_TOKEN(anon_sym_let_DASHenv); - if (lookahead == ',') ADVANCE(1998); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4859); + if (lookahead == ',') ADVANCE(1939); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4657); END_STATE(); - case 1154: + case 1095: ACCEPT_TOKEN(anon_sym_let_DASHenv); - if (lookahead == ',') ADVANCE(1998); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1988); + if (lookahead == ',') ADVANCE(1939); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1929); END_STATE(); - case 1155: + case 1096: ACCEPT_TOKEN(anon_sym_let_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1939); END_STATE(); - case 1156: + case 1097: ACCEPT_TOKEN(anon_sym_mut); - if (lookahead == ',') ADVANCE(2004); + if (lookahead == ',') ADVANCE(1945); if (lookahead == '-' || - lookahead == '@') ADVANCE(2000); + lookahead == '@') ADVANCE(1941); if (lookahead == '.' || - lookahead == '?') ADVANCE(2002); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1999); + lookahead == '?') ADVANCE(1943); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1940); END_STATE(); - case 1157: + case 1098: ACCEPT_TOKEN(anon_sym_mut); - if (lookahead == ',') ADVANCE(2004); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4860); + if (lookahead == ',') ADVANCE(1945); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4658); END_STATE(); - case 1158: + case 1099: ACCEPT_TOKEN(anon_sym_mut); - if (lookahead == ',') ADVANCE(2004); + if (lookahead == ',') ADVANCE(1945); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2002); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2001); + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1942); END_STATE(); - case 1159: + case 1100: ACCEPT_TOKEN(anon_sym_mut); - if (lookahead == ',') ADVANCE(2004); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2002); + if (lookahead == ',') ADVANCE(1945); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); - case 1160: + case 1101: ACCEPT_TOKEN(anon_sym_mut); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2004); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2003); + lookahead == '@') ADVANCE(1945); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1944); END_STATE(); - case 1161: + case 1102: ACCEPT_TOKEN(anon_sym_mut); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2004); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1945); END_STATE(); - case 1162: + case 1103: ACCEPT_TOKEN(anon_sym_const); END_STATE(); - case 1163: + case 1104: ACCEPT_TOKEN(anon_sym_const); - if (lookahead == ',') ADVANCE(2010); + if (lookahead == ',') ADVANCE(1951); if (lookahead == '-' || - lookahead == '@') ADVANCE(2006); + lookahead == '@') ADVANCE(1947); if (lookahead == '.' || - lookahead == '?') ADVANCE(2008); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2005); + lookahead == '?') ADVANCE(1949); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1946); END_STATE(); - case 1164: + case 1105: ACCEPT_TOKEN(anon_sym_const); - if (lookahead == ',') ADVANCE(2010); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4875); + if (lookahead == ',') ADVANCE(1951); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4673); END_STATE(); - case 1165: + case 1106: ACCEPT_TOKEN(anon_sym_const); - if (lookahead == ',') ADVANCE(2010); + if (lookahead == ',') ADVANCE(1951); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2008); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2007); + lookahead == '@') ADVANCE(1949); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1948); END_STATE(); - case 1166: + case 1107: ACCEPT_TOKEN(anon_sym_const); - if (lookahead == ',') ADVANCE(2010); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2008); + if (lookahead == ',') ADVANCE(1951); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1949); END_STATE(); - case 1167: + case 1108: ACCEPT_TOKEN(anon_sym_const); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2010); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2009); + lookahead == '@') ADVANCE(1951); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1950); END_STATE(); - case 1168: + case 1109: ACCEPT_TOKEN(anon_sym_const); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2010); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); END_STATE(); - case 1169: + case 1110: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 1170: + case 1111: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 1171: + case 1112: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 1172: + case 1113: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 1173: + case 1114: ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); END_STATE(); - case 1174: + case 1115: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\n') ADVANCE(3344); + if (lookahead == '\n') ADVANCE(3282); if (lookahead == '\r') ADVANCE(8); - if (lookahead == ',') ADVANCE(1943); + if (lookahead == ',') ADVANCE(1884); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3295); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + lookahead == ' ') ADVANCE(3233); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1175: + case 1116: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\n') ADVANCE(3358); + if (lookahead == '\n') ADVANCE(3296); if (lookahead == '\r') ADVANCE(17); - if (lookahead == ',') ADVANCE(1943); + if (lookahead == ',') ADVANCE(1884); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3320); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + lookahead == ' ') ADVANCE(3258); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1176: + case 1117: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\n') ADVANCE(3356); + if (lookahead == '\n') ADVANCE(3294); if (lookahead == '\r') ADVANCE(19); - if (lookahead == ',') ADVANCE(1943); + if (lookahead == ',') ADVANCE(1884); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3316); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + lookahead == ' ') ADVANCE(3254); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1177: + case 1118: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\n') ADVANCE(3352); + if (lookahead == '\n') ADVANCE(3290); if (lookahead == '\r') ADVANCE(20); - if (lookahead == ',') ADVANCE(1943); + if (lookahead == ',') ADVANCE(1884); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3308); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + lookahead == ' ') ADVANCE(3246); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1178: + case 1119: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\n') ADVANCE(3353); + if (lookahead == '\n') ADVANCE(3291); if (lookahead == '\r') ADVANCE(21); - if (lookahead == ',') ADVANCE(1943); + if (lookahead == ',') ADVANCE(1884); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3310); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + lookahead == ' ') ADVANCE(3248); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1179: + case 1120: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\n') ADVANCE(3357); + if (lookahead == '\n') ADVANCE(3295); if (lookahead == '\r') ADVANCE(22); - if (lookahead == ',') ADVANCE(1943); + if (lookahead == ',') ADVANCE(1884); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3318); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + lookahead == ' ') ADVANCE(3256); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1180: + case 1121: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '$') ADVANCE(3463); - if (lookahead == '(') ADVANCE(3372); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == '{') ADVANCE(3609); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '$') ADVANCE(3401); + if (lookahead == '(') ADVANCE(3310); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == '{') ADVANCE(3547); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1181: + case 1122: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '$') ADVANCE(3463); - if (lookahead == '(') ADVANCE(3372); - if (lookahead == '{') ADVANCE(3609); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '$') ADVANCE(3401); + if (lookahead == '(') ADVANCE(3310); + if (lookahead == '{') ADVANCE(3547); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); - case 1182: + case 1123: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '*') ADVANCE(1911); - if (lookahead == '=') ADVANCE(1171); + if (lookahead == '*') ADVANCE(1852); + if (lookahead == '=') ADVANCE(1112); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3298); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + lookahead == ' ') ADVANCE(3236); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); - case 1183: + case 1124: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1806); - if (lookahead == '>') ADVANCE(3711); - if (lookahead == 'l') ADVANCE(1857); - if (lookahead == 'n') ADVANCE(1699); - if (lookahead == 'r') ADVANCE(1825); - if (lookahead == 'x') ADVANCE(1819); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '+') ADVANCE(1747); + if (lookahead == '>') ADVANCE(3647); + if (lookahead == 'l') ADVANCE(1798); + if (lookahead == 'n') ADVANCE(1640); + if (lookahead == 'r') ADVANCE(1766); + if (lookahead == 'x') ADVANCE(1760); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); - case 1184: + case 1125: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1806); - if (lookahead == '>') ADVANCE(3711); - if (lookahead == 'l') ADVANCE(1857); - if (lookahead == 'r') ADVANCE(1825); - if (lookahead == 'x') ADVANCE(1819); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '+') ADVANCE(1747); + if (lookahead == '>') ADVANCE(3647); + if (lookahead == 'l') ADVANCE(1798); + if (lookahead == 'r') ADVANCE(1766); + if (lookahead == 'x') ADVANCE(1760); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); - case 1185: + case 1126: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1730); - if (lookahead == '>') ADVANCE(3716); - if (lookahead == 'r') ADVANCE(1913); - if (lookahead == 'u') ADVANCE(1873); - if (lookahead == 'v') ADVANCE(1735); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '+') ADVANCE(1671); + if (lookahead == '>') ADVANCE(3651); + if (lookahead == 'r') ADVANCE(1854); + if (lookahead == 'u') ADVANCE(1814); + if (lookahead == 'v') ADVANCE(1676); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); - case 1186: + case 1127: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1730); - if (lookahead == '>') ADVANCE(3716); - if (lookahead == 'u') ADVANCE(1873); - if (lookahead == 'v') ADVANCE(1735); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '+') ADVANCE(1671); + if (lookahead == '>') ADVANCE(3651); + if (lookahead == 'u') ADVANCE(1814); + if (lookahead == 'v') ADVANCE(1676); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); - case 1187: + case 1128: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1548); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == '>') ADVANCE(924); - if (lookahead == 'l') ADVANCE(1589); - if (lookahead == 'r') ADVANCE(1567); - if (lookahead == 'x') ADVANCE(1559); + if (lookahead == '+') ADVANCE(1489); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == '>') ADVANCE(863); + if (lookahead == 'l') ADVANCE(1530); + if (lookahead == 'r') ADVANCE(1508); + if (lookahead == 'x') ADVANCE(1500); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); - case 1188: + case 1129: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1492); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == '>') ADVANCE(925); - if (lookahead == 'u') ADVANCE(1612); - if (lookahead == 'v') ADVANCE(1493); + if (lookahead == '+') ADVANCE(1433); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == '>') ADVANCE(864); + if (lookahead == 'u') ADVANCE(1553); + if (lookahead == 'v') ADVANCE(1434); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); - case 1189: + case 1130: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1550); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == '>') ADVANCE(927); - if (lookahead == 'o') ADVANCE(1564); + if (lookahead == '+') ADVANCE(1491); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == '>') ADVANCE(866); + if (lookahead == 'o') ADVANCE(1505); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); - case 1190: + case 1131: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1809); - if (lookahead == '>') ADVANCE(3701); - if (lookahead == 'o') ADVANCE(1827); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '+') ADVANCE(1750); + if (lookahead == '>') ADVANCE(3639); + if (lookahead == 'o') ADVANCE(1768); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); - case 1191: + case 1132: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1738); - if (lookahead == '>') ADVANCE(3706); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '+') ADVANCE(1679); + if (lookahead == '>') ADVANCE(3643); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); - case 1192: + case 1133: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1489); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == '>') ADVANCE(929); + if (lookahead == '+') ADVANCE(1430); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == '>') ADVANCE(868); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); - case 1193: + case 1134: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == '-') ADVANCE(1317); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == '-') ADVANCE(1258); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1194: + case 1135: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == '-') ADVANCE(1352); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == '-') ADVANCE(1293); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1195: + case 1136: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == '-') ADVANCE(1396); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == '-') ADVANCE(1337); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1196: + case 1137: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == '-') ADVANCE(1328); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == '-') ADVANCE(1269); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1197: + case 1138: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == '.') ADVANCE(1215); - if (lookahead == '_') ADVANCE(1197); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == '.') ADVANCE(1156); + if (lookahead == '_') ADVANCE(1138); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1198: + case 1139: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == '.') ADVANCE(3180); - if (lookahead == '_') ADVANCE(1216); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3449); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == '.') ADVANCE(3118); + if (lookahead == '_') ADVANCE(1157); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3387); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1199: + case 1140: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == '.') ADVANCE(1201); - if (lookahead == '_') ADVANCE(1216); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3449); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == '.') ADVANCE(1142); + if (lookahead == '_') ADVANCE(1157); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3387); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1200: + case 1141: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == '.') ADVANCE(1201); - if (lookahead == '_') ADVANCE(1221); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3506); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == '.') ADVANCE(1142); + if (lookahead == '_') ADVANCE(1162); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3444); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1201: + case 1142: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == '.') ADVANCE(1180); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == '.') ADVANCE(1121); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1202: + case 1143: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == '.') ADVANCE(3375); - if (lookahead == '_') ADVANCE(1221); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3506); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == '.') ADVANCE(3313); + if (lookahead == '_') ADVANCE(1162); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3444); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1203: + case 1144: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == '.') ADVANCE(1220); - if (lookahead == '_') ADVANCE(1203); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == '.') ADVANCE(1161); + if (lookahead == '_') ADVANCE(1144); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1204: + case 1145: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == ':') ADVANCE(3864); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == ':') ADVANCE(3787); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1205: + case 1146: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == '=') ADVANCE(1173); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == '=') ADVANCE(1114); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3297); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + lookahead == ' ') ADVANCE(3235); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1206: + case 1147: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == '=') ADVANCE(3286); - if (lookahead == '~') ADVANCE(3292); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == '=') ADVANCE(3224); + if (lookahead == '~') ADVANCE(3230); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1207: + case 1148: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); ADVANCE_MAP( - ',', 1943, - 'I', 1382, - '_', 1227, - 'i', 1382, - 'l', 1347, - 'r', 1337, - 'x', 1327, - '+', 1227, - '-', 1227, - 'B', 3524, - 'b', 3524, + ',', 1884, + 'I', 1323, + '_', 1168, + 'i', 1323, + 'l', 1288, + 'r', 1278, + 'x', 1268, + '+', 1168, + '-', 1168, + 'B', 3462, + 'b', 3462, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1208: + case 1149: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); ADVANCE_MAP( - ',', 1943, - 'I', 1382, - '_', 1227, - 'i', 1239, - '+', 1227, - '-', 1227, - 'B', 3524, - 'b', 3524, + ',', 1884, + 'I', 1323, + '_', 1168, + 'i', 1180, + '+', 1168, + '-', 1168, + 'B', 3462, + 'b', 3462, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1209: + case 1150: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); ADVANCE_MAP( - ',', 1943, - 'I', 1382, - 'a', 1295, - 'i', 1313, - 'o', 1245, - 's', 3529, - 'u', 1354, - 'B', 3524, - 'b', 3524, + ',', 1884, + 'I', 1323, + 'a', 1236, + 'i', 1254, + 'o', 1186, + 's', 3467, + 'u', 1295, + 'B', 3462, + 'b', 3462, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1210: + case 1151: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); ADVANCE_MAP( - ',', 1943, - 'I', 1382, - 'i', 1382, - 'l', 1347, - 'r', 1337, - 'x', 1327, - 'B', 3524, - 'b', 3524, + ',', 1884, + 'I', 1323, + 'i', 1323, + 'l', 1288, + 'r', 1278, + 'x', 1268, + 'B', 3462, + 'b', 3462, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1211: + case 1152: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'I') ADVANCE(1382); - if (lookahead == 'i') ADVANCE(1382); - if (lookahead == 'r') ADVANCE(1369); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'I') ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1310); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1212: + case 1153: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'I') ADVANCE(1382); - if (lookahead == 'i') ADVANCE(1382); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'I') ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1323); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1213: + case 1154: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'I') ADVANCE(1382); - if (lookahead == 'i') ADVANCE(1239); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'I') ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1180); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1214: + case 1155: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'N') ADVANCE(1383); - if (lookahead == 'f') ADVANCE(3150); - if (lookahead == 'n') ADVANCE(3111); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'N') ADVANCE(1324); + if (lookahead == 'f') ADVANCE(3090); + if (lookahead == 'n') ADVANCE(3051); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1215: + case 1156: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == '_') ADVANCE(1215); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3461); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == '_') ADVANCE(1156); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1216: + case 1157: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == '_') ADVANCE(1216); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3449); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == '_') ADVANCE(1157); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3387); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1217: + case 1158: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == '_') ADVANCE(1218); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1218); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == '_') ADVANCE(1159); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1159); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1218: + case 1159: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == '_') ADVANCE(1218); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == '_') ADVANCE(1159); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1219: + case 1160: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == '_') ADVANCE(1219); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == '_') ADVANCE(1160); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1220: + case 1161: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == '_') ADVANCE(1220); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3513); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == '_') ADVANCE(1161); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3451); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1221: + case 1162: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == '_') ADVANCE(1221); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3506); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == '_') ADVANCE(1162); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3444); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1222: + case 1163: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == '_') ADVANCE(1223); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1223); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == '_') ADVANCE(1164); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1164); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1223: + case 1164: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == '_') ADVANCE(1223); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == '_') ADVANCE(1164); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1224: + case 1165: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == '_') ADVANCE(1224); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == '_') ADVANCE(1165); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1225: + case 1166: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == '_') ADVANCE(1227); - if (lookahead == 'l') ADVANCE(1347); - if (lookahead == 'r') ADVANCE(1337); - if (lookahead == 'x') ADVANCE(1327); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1227); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == '_') ADVANCE(1168); + if (lookahead == 'l') ADVANCE(1288); + if (lookahead == 'r') ADVANCE(1278); + if (lookahead == 'x') ADVANCE(1268); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1168); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1226: + case 1167: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == '_') ADVANCE(1227); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1227); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == '_') ADVANCE(1168); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1168); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1227: + case 1168: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == '_') ADVANCE(1227); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == '_') ADVANCE(1168); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1228: + case 1169: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'a') ADVANCE(1307); - if (lookahead == 'o') ADVANCE(1333); - if (lookahead == 's') ADVANCE(1274); - if (lookahead == 'x') ADVANCE(1321); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'a') ADVANCE(1248); + if (lookahead == 'o') ADVANCE(1274); + if (lookahead == 's') ADVANCE(1215); + if (lookahead == 'x') ADVANCE(1262); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1229: + case 1170: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'a') ADVANCE(1295); - if (lookahead == 'o') ADVANCE(1245); - if (lookahead == 'u') ADVANCE(1354); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'a') ADVANCE(1236); + if (lookahead == 'o') ADVANCE(1186); + if (lookahead == 'u') ADVANCE(1295); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1230: + case 1171: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'a') ADVANCE(1294); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'a') ADVANCE(1235); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1231: + case 1172: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'a') ADVANCE(1362); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'a') ADVANCE(1303); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1232: + case 1173: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'a') ADVANCE(1378); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'a') ADVANCE(1319); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1233: + case 1174: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'a') ADVANCE(1306); - if (lookahead == 'o') ADVANCE(1330); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'a') ADVANCE(1247); + if (lookahead == 'o') ADVANCE(1271); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1234: + case 1175: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'a') ADVANCE(1379); - if (lookahead == 'e') ADVANCE(1272); - if (lookahead == 'o') ADVANCE(3143); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'a') ADVANCE(1320); + if (lookahead == 'e') ADVANCE(1213); + if (lookahead == 'o') ADVANCE(3083); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1235: + case 1176: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'a') ADVANCE(1343); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'a') ADVANCE(1284); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1236: + case 1177: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'a') ADVANCE(1359); - if (lookahead == 'o') ADVANCE(1310); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'a') ADVANCE(1300); + if (lookahead == 'o') ADVANCE(1251); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1237: + case 1178: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'a') ADVANCE(1361); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'a') ADVANCE(1302); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1238: + case 1179: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'a') ADVANCE(1366); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'a') ADVANCE(1307); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1239: + case 1180: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1240: + case 1181: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'c') ADVANCE(1248); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'c') ADVANCE(1189); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1241: + case 1182: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'c') ADVANCE(3529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'c') ADVANCE(3467); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1242: + case 1183: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'c') ADVANCE(1279); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'c') ADVANCE(1220); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1243: + case 1184: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'c') ADVANCE(1280); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'c') ADVANCE(1221); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1244: + case 1185: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'c') ADVANCE(1259); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'c') ADVANCE(1200); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1245: + case 1186: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'd') ADVANCE(1371); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'd') ADVANCE(1312); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1246: + case 1187: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'd') ADVANCE(1176); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'd') ADVANCE(1117); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1247: + case 1188: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'd') ADVANCE(1255); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'd') ADVANCE(1196); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1248: + case 1189: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'e') ADVANCE(1297); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'e') ADVANCE(1238); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1249: + case 1190: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'e') ADVANCE(3007); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'e') ADVANCE(2947); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1250: + case 1191: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'e') ADVANCE(2218); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'e') ADVANCE(2159); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1251: + case 1192: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'e') ADVANCE(2263); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'e') ADVANCE(2204); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); - case 1252: + case 1193: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'e') ADVANCE(1214); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1194: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'e') ADVANCE(2918); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1195: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'e') ADVANCE(3098); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1196: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'e') ADVANCE(3167); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1197: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'e') ADVANCE(3070); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1198: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'e') ADVANCE(3076); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1199: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'e') ADVANCE(2911); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1200: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'e') ADVANCE(3150); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1201: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'e') ADVANCE(3039); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1202: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'e') ADVANCE(1315); + if (lookahead == 's') ADVANCE(3467); + if (lookahead == 'u') ADVANCE(1243); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1326); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1203: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'e') ADVANCE(1315); + if (lookahead == 'u') ADVANCE(1243); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1326); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1204: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'e') ADVANCE(1275); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1205: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'e') ADVANCE(1213); + if (lookahead == 'o') ADVANCE(3083); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1206: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'e') ADVANCE(1182); + if (lookahead == 'o') ADVANCE(1309); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1207: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'e') ADVANCE(1171); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1208: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'e') ADVANCE(1280); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1209: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'e') ADVANCE(1294); + if (lookahead == 'i') ADVANCE(1289); + if (lookahead == 'o') ADVANCE(1259); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1210: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); if (lookahead == 'e') ADVANCE(1273); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1211: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'e') ADVANCE(1279); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1212: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'f') ADVANCE(2946); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1213: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'f') ADVANCE(2893); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1214: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'g') ADVANCE(1232); + if (lookahead == 't') ADVANCE(1313); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1215: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'h') ADVANCE(1240); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1216: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'h') ADVANCE(2936); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1217: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'h') ADVANCE(3221); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1218: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'h') ADVANCE(3219); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1219: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'h') ADVANCE(2944); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1220: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'h') ADVANCE(3138); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1221: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'h') ADVANCE(3106); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1222: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'h') ADVANCE(1134); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1223: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'h') ADVANCE(1231); + if (lookahead == 'k') ADVANCE(3467); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1224: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'h') ADVANCE(1231); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1225: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'i') ADVANCE(1299); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1226: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'i') ADVANCE(1249); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1227: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'i') ADVANCE(1188); + if (lookahead == 'r') ADVANCE(3467); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1228: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'i') ADVANCE(1188); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1229: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'i') ADVANCE(1176); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1230: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'i') ADVANCE(1255); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1231: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'i') ADVANCE(1244); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1232: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'i') ADVANCE(1292); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1233: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'i') ADVANCE(1304); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1234: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'i') ADVANCE(1306); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1235: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'k') ADVANCE(3033); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1236: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'k') ADVANCE(1197); + if (lookahead == 't') ADVANCE(1184); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1237: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'l') ADVANCE(2212); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1238: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'l') ADVANCE(1239); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1239: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'l') ADVANCE(1137); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1240: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'l') ADVANCE(1118); + if (lookahead == 'r') ADVANCE(1119); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1241: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'l') ADVANCE(1229); + if (lookahead == 's') ADVANCE(3192); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1242: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'l') ADVANCE(1173); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1243: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'l') ADVANCE(1237); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1244: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'l') ADVANCE(1198); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1245: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'l') ADVANCE(1199); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1246: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'l') ADVANCE(1288); + if (lookahead == 'r') ADVANCE(1278); + if (lookahead == 'x') ADVANCE(1268); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1247: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'l') ADVANCE(1291); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1248: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'n') ADVANCE(1187); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1249: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'n') ADVANCE(3217); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1250: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'n') ADVANCE(2945); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1251: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'n') ADVANCE(1290); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); + END_STATE(); + case 1252: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'n') ADVANCE(2904); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1253: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'e') ADVANCE(2977); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'n') ADVANCE(3145); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1254: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'e') ADVANCE(3158); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'n') ADVANCE(3467); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1255: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'e') ADVANCE(3229); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'n') ADVANCE(1311); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1256: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'e') ADVANCE(3130); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'o') ADVANCE(1212); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1257: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'e') ADVANCE(3136); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'o') ADVANCE(1309); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1258: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'e') ADVANCE(2970); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'o') ADVANCE(1266); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1259: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'e') ADVANCE(3212); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'o') ADVANCE(1264); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1260: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'e') ADVANCE(3099); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'o') ADVANCE(1272); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1261: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'e') ADVANCE(1374); - if (lookahead == 's') ADVANCE(3529); - if (lookahead == 'u') ADVANCE(1302); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1385); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'o') ADVANCE(1282); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1262: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'e') ADVANCE(1374); - if (lookahead == 'u') ADVANCE(1302); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1385); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'o') ADVANCE(1277); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1263: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'e') ADVANCE(1334); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'p') ADVANCE(1178); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1264: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'e') ADVANCE(1272); - if (lookahead == 'o') ADVANCE(3143); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'p') ADVANCE(3063); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1265: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'e') ADVANCE(1241); - if (lookahead == 'o') ADVANCE(1368); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'p') ADVANCE(1190); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1266: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'e') ADVANCE(1230); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'p') ADVANCE(1305); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1267: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'e') ADVANCE(1339); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'p') ADVANCE(1172); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1268: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'e') ADVANCE(1353); - if (lookahead == 'i') ADVANCE(1348); - if (lookahead == 'o') ADVANCE(1318); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'p') ADVANCE(1261); + if (lookahead == 't') ADVANCE(1211); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1269: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'e') ADVANCE(1332); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'p') ADVANCE(1179); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1270: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'e') ADVANCE(1338); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'r') ADVANCE(1310); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1271: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'f') ADVANCE(3006); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'r') ADVANCE(3045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1272: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'f') ADVANCE(2952); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'r') ADVANCE(2940); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1273: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'g') ADVANCE(1291); - if (lookahead == 't') ADVANCE(1372); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'r') ADVANCE(3161); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1274: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'h') ADVANCE(1299); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'r') ADVANCE(1116); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1275: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'h') ADVANCE(2996); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'r') ADVANCE(1250); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1276: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'h') ADVANCE(3283); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'r') ADVANCE(1207); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1277: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'h') ADVANCE(3281); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'r') ADVANCE(1120); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1278: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'h') ADVANCE(3004); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'r') ADVANCE(1260); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1279: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'h') ADVANCE(3200); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'r') ADVANCE(1252); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1280: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'h') ADVANCE(3166); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'r') ADVANCE(1242); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1281: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'h') ADVANCE(1193); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'r') ADVANCE(1253); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1282: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'h') ADVANCE(1290); - if (lookahead == 'k') ADVANCE(3529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'r') ADVANCE(1298); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1283: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'h') ADVANCE(1290); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'r') ADVANCE(1185); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1284: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'i') ADVANCE(1358); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 's') ADVANCE(1079); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1285: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'i') ADVANCE(1308); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 's') ADVANCE(3467); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1286: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'i') ADVANCE(1247); - if (lookahead == 'r') ADVANCE(3529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 's') ADVANCE(3470); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1287: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'i') ADVANCE(1247); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 's') ADVANCE(1194); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1288: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'i') ADVANCE(1235); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 's') ADVANCE(1195); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1289: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'i') ADVANCE(1314); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 's') ADVANCE(1296); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1290: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'i') ADVANCE(1303); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 's') ADVANCE(1297); + if (lookahead == 't') ADVANCE(1230); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1291: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'i') ADVANCE(1351); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 's') ADVANCE(1192); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1292: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'i') ADVANCE(1363); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 's') ADVANCE(1308); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1293: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'i') ADVANCE(1365); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 't') ADVANCE(1321); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1294: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'k') ADVANCE(3093); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 't') ADVANCE(1089); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1295: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'k') ADVANCE(1256); - if (lookahead == 't') ADVANCE(1243); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 't') ADVANCE(1100); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1296: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'l') ADVANCE(2271); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 't') ADVANCE(2952); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1297: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'l') ADVANCE(1298); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 't') ADVANCE(1107); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1298: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'l') ADVANCE(1196); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 't') ADVANCE(1071); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1299: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'l') ADVANCE(1177); - if (lookahead == 'r') ADVANCE(1178); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 't') ADVANCE(1222); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1300: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'l') ADVANCE(1288); - if (lookahead == 's') ADVANCE(3254); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 't') ADVANCE(1183); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1301: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'l') ADVANCE(1232); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 't') ADVANCE(1204); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1302: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'l') ADVANCE(1296); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 't') ADVANCE(1216); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1303: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'l') ADVANCE(1257); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 't') ADVANCE(1301); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1304: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'l') ADVANCE(1258); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 't') ADVANCE(1217); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1305: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'l') ADVANCE(1347); - if (lookahead == 'r') ADVANCE(1337); - if (lookahead == 'x') ADVANCE(1327); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 't') ADVANCE(1135); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1306: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'l') ADVANCE(1350); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 't') ADVANCE(1218); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1307: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'n') ADVANCE(1246); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 't') ADVANCE(1219); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1308: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'n') ADVANCE(3279); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 't') ADVANCE(1210); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1309: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'n') ADVANCE(3005); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'u') ADVANCE(1283); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1310: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'n') ADVANCE(1349); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'u') ADVANCE(1191); + if (lookahead == 'y') ADVANCE(3131); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1311: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'n') ADVANCE(2963); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'u') ADVANCE(1201); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1312: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'n') ADVANCE(3207); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'u') ADVANCE(1245); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1313: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'n') ADVANCE(3529); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'u') ADVANCE(1281); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1314: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'n') ADVANCE(1370); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'v') ADVANCE(1208); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1315: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'o') ADVANCE(1271); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'w') ADVANCE(3185); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1316: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'o') ADVANCE(1368); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'w') ADVANCE(1225); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1317: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'o') ADVANCE(1325); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'w') ADVANCE(1233); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1318: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'o') ADVANCE(1323); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'w') ADVANCE(1234); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1319: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'o') ADVANCE(1331); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'y') ADVANCE(3178); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1320: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'o') ADVANCE(1341); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'y') ADVANCE(3467); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1321: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'o') ADVANCE(1336); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'y') ADVANCE(1265); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1322: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'p') ADVANCE(1237); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1326); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1323: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'p') ADVANCE(3123); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1324: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'p') ADVANCE(1249); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2224); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1325: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'p') ADVANCE(1364); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1329); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1326: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'p') ADVANCE(1231); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2241); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1327: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'p') ADVANCE(1320); - if (lookahead == 't') ADVANCE(1270); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1324); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1328: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'p') ADVANCE(1238); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1325); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1329: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'r') ADVANCE(1369); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1330); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1330: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'r') ADVANCE(3105); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2220); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1331: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'r') ADVANCE(3000); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(3453); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1332: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'r') ADVANCE(3223); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(3454); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1333: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'r') ADVANCE(1175); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1136); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1334: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'r') ADVANCE(1309); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1145); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1335: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'r') ADVANCE(1266); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1333); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1336: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'r') ADVANCE(1179); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1337: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'r') ADVANCE(1319); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1336); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1338: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'r') ADVANCE(1311); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1334); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1339: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'r') ADVANCE(1301); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3452); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1340: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'r') ADVANCE(1312); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ',') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1340); END_STATE(); case 1341: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'r') ADVANCE(1357); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '-') ADVANCE(1626); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1342: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'r') ADVANCE(1244); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '-') ADVANCE(1846); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1343: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 's') ADVANCE(1139); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '-') ADVANCE(1705); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1344: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 's') ADVANCE(3529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '-') ADVANCE(1881); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1345: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 's') ADVANCE(3532); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '-') ADVANCE(1847); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1346: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 's') ADVANCE(1253); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '.') ADVANCE(1601); + if (lookahead == '_') ADVANCE(1346); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1347: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 's') ADVANCE(1254); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '.') ADVANCE(3122); + if (lookahead == '_') ADVANCE(1602); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3442); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1348: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 's') ADVANCE(1355); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '.') ADVANCE(1122); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1349: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 's') ADVANCE(1356); - if (lookahead == 't') ADVANCE(1289); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '.') ADVANCE(1348); + if (lookahead == '_') ADVANCE(1602); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3442); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1350: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 's') ADVANCE(1251); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '.') ADVANCE(1348); + if (lookahead == '_') ADVANCE(1607); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3389); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1351: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 's') ADVANCE(1367); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '.') ADVANCE(3315); + if (lookahead == '_') ADVANCE(1602); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3442); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1352: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 't') ADVANCE(1380); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '.') ADVANCE(3312); + if (lookahead == '_') ADVANCE(1602); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3442); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1353: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 't') ADVANCE(1148); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '.') ADVANCE(3119); + if (lookahead == '_') ADVANCE(1602); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3442); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1354: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 't') ADVANCE(1159); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '.') ADVANCE(1606); + if (lookahead == '_') ADVANCE(1354); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1355: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 't') ADVANCE(3012); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '/') ADVANCE(1853); + if (lookahead == '=') ADVANCE(1113); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3238); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1356: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 't') ADVANCE(1166); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == ':') ADVANCE(915); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1357: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 't') ADVANCE(1131); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(1112); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1358: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 't') ADVANCE(1281); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(1113); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1359: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 't') ADVANCE(1242); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(1114); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3235); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1360: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 't') ADVANCE(1263); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(1114); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1361: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 't') ADVANCE(1275); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == '>') ADVANCE(865); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1362: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 't') ADVANCE(1360); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == '>') ADVANCE(867); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1363: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 't') ADVANCE(1276); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == '>') ADVANCE(869); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1364: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 't') ADVANCE(1194); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == '>') ADVANCE(870); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1365: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 't') ADVANCE(1277); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'N') ADVANCE(1576); + if (lookahead == 'f') ADVANCE(3091); + if (lookahead == 'n') ADVANCE(2107); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1366: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 't') ADVANCE(1278); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'N') ADVANCE(1576); + if (lookahead == 'f') ADVANCE(3091); + if (lookahead == 'n') ADVANCE(3054); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1367: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 't') ADVANCE(1269); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'N') ADVANCE(1576); + if (lookahead == 'f') ADVANCE(2038); + if (lookahead == 'n') ADVANCE(2107); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1368: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'u') ADVANCE(1342); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == '_') ADVANCE(1368); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1369: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'u') ADVANCE(1250); - if (lookahead == 'y') ADVANCE(3193); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'a') ADVANCE(1541); + if (lookahead == 'o') ADVANCE(1478); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1370: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'u') ADVANCE(1260); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'a') ADVANCE(1541); + if (lookahead == 'o') ADVANCE(1484); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1371: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'u') ADVANCE(1304); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'a') ADVANCE(1541); + if (lookahead == 'o') ADVANCE(1486); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1372: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'u') ADVANCE(1340); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'a') ADVANCE(1476); + if (lookahead == 'o') ADVANCE(1502); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1373: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'v') ADVANCE(1267); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'a') ADVANCE(1476); + if (lookahead == 'o') ADVANCE(1503); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1374: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'w') ADVANCE(3247); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'a') ADVANCE(1460); + if (lookahead == 'o') ADVANCE(1391); + if (lookahead == 'u') ADVANCE(1543); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1375: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'w') ADVANCE(1284); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'a') ADVANCE(1460); + if (lookahead == 'o') ADVANCE(1394); + if (lookahead == 'u') ADVANCE(1546); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1376: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'w') ADVANCE(1292); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'a') ADVANCE(1458); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1377: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'w') ADVANCE(1293); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'a') ADVANCE(1573); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1378: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'y') ADVANCE(3240); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'a') ADVANCE(1459); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1379: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'y') ADVANCE(3529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'a') ADVANCE(1574); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1380: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'y') ADVANCE(1324); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'a') ADVANCE(1527); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1381: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1385); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'a') ADVANCE(1528); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1382: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'a') ADVANCE(1462); + if (lookahead == 'o') ADVANCE(1391); + if (lookahead == 'u') ADVANCE(1543); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1383: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2283); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'a') ADVANCE(1554); + if (lookahead == 'o') ADVANCE(1478); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1384: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1388); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'a') ADVANCE(1461); + if (lookahead == 'o') ADVANCE(1394); + if (lookahead == 'u') ADVANCE(1546); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1385: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2300); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'c') ADVANCE(1443); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1386: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1383); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'c') ADVANCE(1444); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1387: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1384); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'c') ADVANCE(1446); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1388: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1389); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'c') ADVANCE(1445); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1389: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2279); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'c') ADVANCE(1408); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1390: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(3515); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'c') ADVANCE(1416); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1391: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3516); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'd') ADVANCE(1566); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1392: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1195); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'd') ADVANCE(1400); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1393: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1204); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'd') ADVANCE(1415); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1394: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1392); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'd') ADVANCE(1568); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1395: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3564); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(1437); + if (lookahead == 'o') ADVANCE(3084); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1396: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1395); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(1571); + if (lookahead == 'o') ADVANCE(1544); + if (lookahead == 'u') ADVANCE(1466); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1579); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1397: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1393); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(1439); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1398: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3514); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(2919); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1399: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1399); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(2044); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1400: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1685); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(3169); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1401: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1905); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(2137); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1402: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1764); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(2159); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1403: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1940); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(1903); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1404: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1906); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(2204); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1405: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1660); - if (lookahead == '_') ADVANCE(1405); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(3202); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1406: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(3184); - if (lookahead == '_') ADVANCE(1661); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3504); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(3077); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1407: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1181); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(2912); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1408: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1407); - if (lookahead == '_') ADVANCE(1661); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3504); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(3152); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1409: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1407); - if (lookahead == '_') ADVANCE(1666); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3451); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(2020); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1410: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(3377); - if (lookahead == '_') ADVANCE(1661); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3504); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(1918); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1411: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(3374); - if (lookahead == '_') ADVANCE(1661); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3504); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(3040); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1412: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(3181); - if (lookahead == '_') ADVANCE(1661); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3504); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(2074); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1413: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1665); - if (lookahead == '_') ADVANCE(1413); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(3099); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1414: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '/') ADVANCE(1912); - if (lookahead == '=') ADVANCE(1172); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3300); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(3071); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1415: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ':') ADVANCE(976); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(1962); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1416: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(1171); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(1982); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1417: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(1172); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(1542); + if (lookahead == 'i') ADVANCE(1531); + if (lookahead == 'o') ADVANCE(1488); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1418: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(1173); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3297); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(1542); + if (lookahead == 'i') ADVANCE(1535); + if (lookahead == 'o') ADVANCE(1488); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1419: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(1173); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(1438); + if (lookahead == 'o') ADVANCE(3084); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1420: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == '>') ADVANCE(926); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(1438); + if (lookahead == 'o') ADVANCE(2032); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1421: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == '>') ADVANCE(928); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(1572); + if (lookahead == 'o') ADVANCE(1544); + if (lookahead == 'u') ADVANCE(1466); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1579); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1422: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == '>') ADVANCE(930); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(1376); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1423: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == '>') ADVANCE(931); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(1516); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1424: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'N') ADVANCE(1635); - if (lookahead == 'f') ADVANCE(3151); - if (lookahead == 'n') ADVANCE(2166); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(1378); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1425: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'N') ADVANCE(1635); - if (lookahead == 'f') ADVANCE(3151); - if (lookahead == 'n') ADVANCE(3114); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(1513); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1426: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'N') ADVANCE(1635); - if (lookahead == 'f') ADVANCE(2097); - if (lookahead == 'n') ADVANCE(2166); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(1551); + if (lookahead == 'i') ADVANCE(1531); + if (lookahead == 'o') ADVANCE(1490); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1427: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == '_') ADVANCE(1427); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(1506); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1428: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'a') ADVANCE(1600); - if (lookahead == 'o') ADVANCE(1537); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(1515); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1429: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'a') ADVANCE(1600); - if (lookahead == 'o') ADVANCE(1543); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(1507); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1430: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'a') ADVANCE(1600); - if (lookahead == 'o') ADVANCE(1545); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(1522); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1431: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'a') ADVANCE(1535); - if (lookahead == 'o') ADVANCE(1561); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(1520); + if (lookahead == 'i') ADVANCE(1469); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1432: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'a') ADVANCE(1535); - if (lookahead == 'o') ADVANCE(1562); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(1520); + if (lookahead == 'i') ADVANCE(1471); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1433: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'a') ADVANCE(1519); - if (lookahead == 'o') ADVANCE(1450); - if (lookahead == 'u') ADVANCE(1602); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(1362); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1434: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'a') ADVANCE(1519); - if (lookahead == 'o') ADVANCE(1453); - if (lookahead == 'u') ADVANCE(1605); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(1518); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1435: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'a') ADVANCE(1517); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(1441); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1436: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'a') ADVANCE(1632); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'e') ADVANCE(1440); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1437: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'a') ADVANCE(1518); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'f') ADVANCE(2894); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1438: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'a') ADVANCE(1633); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'f') ADVANCE(1891); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1439: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'a') ADVANCE(1586); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'g') ADVANCE(1454); + if (lookahead == 't') ADVANCE(1561); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1440: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'a') ADVANCE(1587); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'g') ADVANCE(1457); + if (lookahead == 't') ADVANCE(1561); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1441: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'a') ADVANCE(1521); - if (lookahead == 'o') ADVANCE(1450); - if (lookahead == 'u') ADVANCE(1602); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'g') ADVANCE(1457); + if (lookahead == 't') ADVANCE(1564); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1442: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'a') ADVANCE(1613); - if (lookahead == 'o') ADVANCE(1537); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'h') ADVANCE(1431); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1443: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'a') ADVANCE(1520); - if (lookahead == 'o') ADVANCE(1453); - if (lookahead == 'u') ADVANCE(1605); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'h') ADVANCE(2056); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1444: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'c') ADVANCE(1502); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'h') ADVANCE(3107); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1445: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'c') ADVANCE(1503); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'h') ADVANCE(2062); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1446: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'c') ADVANCE(1505); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'h') ADVANCE(3139); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1447: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'c') ADVANCE(1504); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'h') ADVANCE(1455); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1448: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'c') ADVANCE(1467); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'h') ADVANCE(1432); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1449: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'c') ADVANCE(1475); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'i') ADVANCE(1392); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1450: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'd') ADVANCE(1625); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'i') ADVANCE(1380); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1451: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'd') ADVANCE(1459); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'i') ADVANCE(1483); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1452: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'd') ADVANCE(1474); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'i') ADVANCE(1393); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1453: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'd') ADVANCE(1627); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'i') ADVANCE(1381); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1454: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(1496); - if (lookahead == 'o') ADVANCE(3144); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'i') ADVANCE(1533); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1455: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(1630); - if (lookahead == 'o') ADVANCE(1603); - if (lookahead == 'u') ADVANCE(1525); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1638); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'i') ADVANCE(1471); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1456: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(1498); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'i') ADVANCE(1485); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1457: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(2978); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'i') ADVANCE(1540); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1458: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(2103); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'k') ADVANCE(3034); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1459: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(3231); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'k') ADVANCE(2068); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1460: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(2196); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'k') ADVANCE(1401); + if (lookahead == 't') ADVANCE(1386); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1461: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(2218); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'k') ADVANCE(1401); + if (lookahead == 't') ADVANCE(1388); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1462: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(1962); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'k') ADVANCE(1414); + if (lookahead == 't') ADVANCE(1386); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1463: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(2263); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'l') ADVANCE(2212); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1464: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(3264); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'l') ADVANCE(1450); + if (lookahead == 's') ADVANCE(2086); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1465: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(3137); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'l') ADVANCE(1450); + if (lookahead == 's') ADVANCE(3193); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1466: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(2971); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'l') ADVANCE(1463); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1467: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(3214); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'l') ADVANCE(1377); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1468: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(2079); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'l') ADVANCE(1379); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1469: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(1977); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'l') ADVANCE(1406); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1470: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(3100); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'l') ADVANCE(1407); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1471: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(2133); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'l') ADVANCE(1409); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1472: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(3159); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'l') ADVANCE(1410); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1473: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(3131); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'l') ADVANCE(1530); + if (lookahead == 'r') ADVANCE(1512); + if (lookahead == 'x') ADVANCE(1499); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1474: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(2021); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'l') ADVANCE(1530); + if (lookahead == 'r') ADVANCE(1525); + if (lookahead == 'x') ADVANCE(1500); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1475: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(2041); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'l') ADVANCE(1453); + if (lookahead == 's') ADVANCE(2086); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1476: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(1601); - if (lookahead == 'i') ADVANCE(1590); - if (lookahead == 'o') ADVANCE(1547); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'l') ADVANCE(1534); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1477: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(1601); - if (lookahead == 'i') ADVANCE(1594); - if (lookahead == 'o') ADVANCE(1547); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'l') ADVANCE(1538); + if (lookahead == 'r') ADVANCE(1512); + if (lookahead == 'x') ADVANCE(1499); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1478: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(1497); - if (lookahead == 'o') ADVANCE(3144); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'n') ADVANCE(1532); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1479: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(1497); - if (lookahead == 'o') ADVANCE(2091); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'n') ADVANCE(2905); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1480: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(1631); - if (lookahead == 'o') ADVANCE(1603); - if (lookahead == 'u') ADVANCE(1525); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1638); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'n') ADVANCE(3146); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1481: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(1435); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'n') ADVANCE(1912); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1482: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(1575); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'n') ADVANCE(2080); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1483: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(1437); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'n') ADVANCE(1562); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1484: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(1572); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'n') ADVANCE(1536); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1485: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(1610); - if (lookahead == 'i') ADVANCE(1590); - if (lookahead == 'o') ADVANCE(1549); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'n') ADVANCE(1565); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1486: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(1565); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'n') ADVANCE(1537); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1487: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(1574); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'o') ADVANCE(1558); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1488: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(1566); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'o') ADVANCE(1497); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1489: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(1581); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'o') ADVANCE(1361); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1490: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(1579); - if (lookahead == 'i') ADVANCE(1528); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'o') ADVANCE(1498); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1491: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(1579); - if (lookahead == 'i') ADVANCE(1530); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'o') ADVANCE(1563); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1492: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(1421); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'o') ADVANCE(1504); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1493: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(1577); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'o') ADVANCE(1519); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1494: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(1500); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'o') ADVANCE(1505); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1495: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'e') ADVANCE(1499); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'o') ADVANCE(1521); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1496: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'f') ADVANCE(2953); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'o') ADVANCE(1567); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1497: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'f') ADVANCE(1950); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'p') ADVANCE(3064); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1498: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'g') ADVANCE(1513); - if (lookahead == 't') ADVANCE(1620); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'p') ADVANCE(2014); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1499: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'g') ADVANCE(1516); - if (lookahead == 't') ADVANCE(1620); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'p') ADVANCE(1493); + if (lookahead == 't') ADVANCE(1425); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1500: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'g') ADVANCE(1516); - if (lookahead == 't') ADVANCE(1623); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'p') ADVANCE(1495); + if (lookahead == 't') ADVANCE(1428); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1501: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'h') ADVANCE(1490); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'r') ADVANCE(1559); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1502: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'h') ADVANCE(2115); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'r') ADVANCE(3046); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1503: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'h') ADVANCE(3167); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'r') ADVANCE(2008); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1504: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'h') ADVANCE(2121); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'r') ADVANCE(2941); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1505: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'h') ADVANCE(3201); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'r') ADVANCE(2026); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1506: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'h') ADVANCE(1514); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'r') ADVANCE(3162); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1507: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'h') ADVANCE(1491); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'r') ADVANCE(2002); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1508: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'i') ADVANCE(1451); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'r') ADVANCE(1130); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1509: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'i') ADVANCE(1439); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'r') ADVANCE(1422); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1510: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'i') ADVANCE(1542); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'r') ADVANCE(1560); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1511: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'i') ADVANCE(1452); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'r') ADVANCE(1389); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1512: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'i') ADVANCE(1440); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'r') ADVANCE(1492); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1513: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'i') ADVANCE(1592); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'r') ADVANCE(1479); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1514: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'i') ADVANCE(1530); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'r') ADVANCE(1480); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1515: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'i') ADVANCE(1544); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'r') ADVANCE(1481); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1516: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'i') ADVANCE(1599); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'r') ADVANCE(1467); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1517: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'k') ADVANCE(3094); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'r') ADVANCE(1482); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1518: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'k') ADVANCE(2127); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'r') ADVANCE(1468); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1519: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'k') ADVANCE(1460); - if (lookahead == 't') ADVANCE(1445); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'r') ADVANCE(1549); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1520: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'k') ADVANCE(1460); - if (lookahead == 't') ADVANCE(1447); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'r') ADVANCE(1405); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1521: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'k') ADVANCE(1473); - if (lookahead == 't') ADVANCE(1445); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'r') ADVANCE(1552); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1522: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'l') ADVANCE(2271); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'r') ADVANCE(1526); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1523: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'l') ADVANCE(1509); - if (lookahead == 's') ADVANCE(2145); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'r') ADVANCE(1424); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1524: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'l') ADVANCE(1509); - if (lookahead == 's') ADVANCE(3255); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'r') ADVANCE(1390); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1525: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'l') ADVANCE(1522); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'r') ADVANCE(1494); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1526: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'l') ADVANCE(1436); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'r') ADVANCE(1364); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1527: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'l') ADVANCE(1438); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 's') ADVANCE(1080); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1528: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'l') ADVANCE(1465); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 's') ADVANCE(1897); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1529: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'l') ADVANCE(1466); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 's') ADVANCE(1398); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1530: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'l') ADVANCE(1468); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 's') ADVANCE(1399); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1531: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'l') ADVANCE(1469); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 's') ADVANCE(1545); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1532: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'l') ADVANCE(1589); - if (lookahead == 'r') ADVANCE(1571); - if (lookahead == 'x') ADVANCE(1558); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 's') ADVANCE(1547); + if (lookahead == 't') ADVANCE(1451); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1533: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'l') ADVANCE(1589); - if (lookahead == 'r') ADVANCE(1584); - if (lookahead == 'x') ADVANCE(1559); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 's') ADVANCE(1556); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1534: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'l') ADVANCE(1512); - if (lookahead == 's') ADVANCE(2145); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 's') ADVANCE(1404); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1535: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'l') ADVANCE(1593); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 's') ADVANCE(1550); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1536: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'l') ADVANCE(1597); - if (lookahead == 'r') ADVANCE(1571); - if (lookahead == 'x') ADVANCE(1558); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 's') ADVANCE(1548); + if (lookahead == 't') ADVANCE(1451); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1537: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'n') ADVANCE(1591); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 's') ADVANCE(1548); + if (lookahead == 't') ADVANCE(1456); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1538: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'n') ADVANCE(2964); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 's') ADVANCE(1413); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1539: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'n') ADVANCE(3208); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 's') ADVANCE(1403); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1540: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'n') ADVANCE(1971); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 's') ADVANCE(1557); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1541: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'n') ADVANCE(2139); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 't') ADVANCE(1385); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1542: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'n') ADVANCE(1621); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 't') ADVANCE(1091); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1543: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'n') ADVANCE(1595); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 't') ADVANCE(1101); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1544: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'n') ADVANCE(1624); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 't') ADVANCE(1583); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1545: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'n') ADVANCE(1596); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 't') ADVANCE(2125); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1546: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'o') ADVANCE(1617); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 't') ADVANCE(1944); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1547: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'o') ADVANCE(1556); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 't') ADVANCE(1108); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1548: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'o') ADVANCE(1420); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 't') ADVANCE(1950); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1549: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'o') ADVANCE(1557); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 't') ADVANCE(1073); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1550: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'o') ADVANCE(1622); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 't') ADVANCE(2953); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1551: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'o') ADVANCE(1563); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 't') ADVANCE(1930); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1552: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'o') ADVANCE(1578); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 't') ADVANCE(2149); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1553: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'o') ADVANCE(1564); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 't') ADVANCE(1133); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1554: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'o') ADVANCE(1580); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 't') ADVANCE(1387); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1555: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'o') ADVANCE(1626); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 't') ADVANCE(1363); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1556: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'p') ADVANCE(3124); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 't') ADVANCE(1427); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1557: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'p') ADVANCE(2073); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 't') ADVANCE(1429); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1558: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'p') ADVANCE(1552); - if (lookahead == 't') ADVANCE(1484); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'u') ADVANCE(1511); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1559: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'p') ADVANCE(1554); - if (lookahead == 't') ADVANCE(1487); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'u') ADVANCE(1402); + if (lookahead == 'y') ADVANCE(3132); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1560: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'r') ADVANCE(1618); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'u') ADVANCE(1402); + if (lookahead == 'y') ADVANCE(2050); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1561: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'r') ADVANCE(3106); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'u') ADVANCE(1514); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1562: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'r') ADVANCE(2067); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'u') ADVANCE(1411); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1563: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'r') ADVANCE(3001); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'u') ADVANCE(1555); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1564: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'r') ADVANCE(2085); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'u') ADVANCE(1517); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1565: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'r') ADVANCE(3224); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'u') ADVANCE(1412); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1566: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'r') ADVANCE(2061); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'u') ADVANCE(1470); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1567: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'r') ADVANCE(1189); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'u') ADVANCE(1524); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1568: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'r') ADVANCE(1481); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'u') ADVANCE(1472); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1569: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'r') ADVANCE(1619); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'v') ADVANCE(1423); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1570: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'r') ADVANCE(1448); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'v') ADVANCE(1434); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1571: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'r') ADVANCE(1551); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'w') ADVANCE(2131); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1572: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'r') ADVANCE(1538); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'w') ADVANCE(3186); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1573: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'r') ADVANCE(1539); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'y') ADVANCE(3179); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1574: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'r') ADVANCE(1540); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'y') ADVANCE(1996); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1575: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'r') ADVANCE(1526); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1579); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1576: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'r') ADVANCE(1541); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2222); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1577: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'r') ADVANCE(1527); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1581); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1578: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'r') ADVANCE(1608); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1576); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1579: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'r') ADVANCE(1464); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2241); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1580: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'r') ADVANCE(1611); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1577); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1581: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'r') ADVANCE(1585); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1582); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1582: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'r') ADVANCE(1483); + if (lookahead == '=') ADVANCE(3635); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2220); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1583: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'r') ADVANCE(1449); + if (lookahead == '=') ADVANCE(3635); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3231); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1584: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'r') ADVANCE(1553); + if (lookahead == '=') ADVANCE(3635); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + lookahead == '@') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1584); END_STATE(); case 1585: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'r') ADVANCE(1423); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == '=') ADVANCE(875); + if (lookahead == '~') ADVANCE(1851); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1586: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 's') ADVANCE(1140); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == '>') ADVANCE(3667); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1587: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 's') ADVANCE(1956); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == '>') ADVANCE(3663); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1588: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 's') ADVANCE(1457); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == '>') ADVANCE(3655); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1589: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 's') ADVANCE(1458); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == '>') ADVANCE(3659); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1590: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 's') ADVANCE(1604); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + ADVANCE_MAP( + 'I', 1866, + '_', 1613, + 'i', 1866, + 'l', 1803, + 'r', 1790, + 'x', 1761, + '+', 1613, + '-', 1613, + 'B', 3462, + 'b', 3462, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1591: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 's') ADVANCE(1606); - if (lookahead == 't') ADVANCE(1510); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == 'I') ADVANCE(1866); + if (lookahead == '_') ADVANCE(1613); + if (lookahead == 'i') ADVANCE(1630); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1613); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1592: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 's') ADVANCE(1615); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + ADVANCE_MAP( + 'I', 1866, + 'a', 1718, + 'i', 1739, + 'o', 1645, + 's', 3467, + 'u', 1808, + 'B', 3462, + 'b', 3462, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1593: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 's') ADVANCE(1463); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == 'I') ADVANCE(1866); + if (lookahead == 'i') ADVANCE(1866); + if (lookahead == 'l') ADVANCE(1803); + if (lookahead == 'r') ADVANCE(1790); + if (lookahead == 'x') ADVANCE(1761); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1594: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 's') ADVANCE(1609); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == 'I') ADVANCE(1866); + if (lookahead == 'i') ADVANCE(1866); + if (lookahead == 'r') ADVANCE(1831); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1595: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 's') ADVANCE(1607); - if (lookahead == 't') ADVANCE(1510); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == 'I') ADVANCE(1866); + if (lookahead == 'i') ADVANCE(1866); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1596: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 's') ADVANCE(1607); - if (lookahead == 't') ADVANCE(1515); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == 'I') ADVANCE(1866); + if (lookahead == 'i') ADVANCE(1630); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1597: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 's') ADVANCE(1472); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == 'N') ADVANCE(1867); + if (lookahead == 'f') ADVANCE(2039); + if (lookahead == 'n') ADVANCE(2108); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1598: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 's') ADVANCE(1462); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == 'N') ADVANCE(1867); + if (lookahead == 'f') ADVANCE(3092); + if (lookahead == 'n') ADVANCE(3055); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1599: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 's') ADVANCE(1616); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == 'N') ADVANCE(1867); + if (lookahead == 'f') ADVANCE(3092); + if (lookahead == 'n') ADVANCE(3053); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1600: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 't') ADVANCE(1444); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == 'N') ADVANCE(1867); + if (lookahead == 'f') ADVANCE(3092); + if (lookahead == 'n') ADVANCE(2108); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1601: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 't') ADVANCE(1150); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == '_') ADVANCE(1601); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3451); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1602: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 't') ADVANCE(1160); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == '_') ADVANCE(1602); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3442); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1603: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 't') ADVANCE(1642); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == '_') ADVANCE(1604); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1604); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1604: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 't') ADVANCE(2184); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == '_') ADVANCE(1604); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1605: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 't') ADVANCE(2003); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == '_') ADVANCE(1605); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1606: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 't') ADVANCE(1167); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == '_') ADVANCE(1606); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1607: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 't') ADVANCE(2009); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == '_') ADVANCE(1607); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3389); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1608: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 't') ADVANCE(1133); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == '_') ADVANCE(1609); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1609); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1609: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 't') ADVANCE(3013); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == '_') ADVANCE(1609); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1610: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 't') ADVANCE(1989); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == '_') ADVANCE(1610); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1611: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 't') ADVANCE(2208); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == '_') ADVANCE(1613); + if (lookahead == 'l') ADVANCE(1798); + if (lookahead == 'r') ADVANCE(1789); + if (lookahead == 'x') ADVANCE(1760); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1613); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1612: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 't') ADVANCE(1192); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == '_') ADVANCE(1613); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1613); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1613: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 't') ADVANCE(1446); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == '_') ADVANCE(1613); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1614: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 't') ADVANCE(1422); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == 'a') ADVANCE(1811); + if (lookahead == 'o') ADVANCE(1736); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1615: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 't') ADVANCE(1486); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == 'a') ADVANCE(1732); + if (lookahead == 'o') ADVANCE(1767); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1616: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 't') ADVANCE(1488); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == 'a') ADVANCE(1732); + if (lookahead == 'o') ADVANCE(1762); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1617: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'u') ADVANCE(1570); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == 'a') ADVANCE(1717); + if (lookahead == 'o') ADVANCE(1639); + if (lookahead == 'u') ADVANCE(1813); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1618: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'u') ADVANCE(1461); - if (lookahead == 'y') ADVANCE(3194); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == 'a') ADVANCE(1717); + if (lookahead == 'o') ADVANCE(1638); + if (lookahead == 'u') ADVANCE(1813); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1619: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'u') ADVANCE(1461); - if (lookahead == 'y') ADVANCE(2109); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == 'a') ADVANCE(1716); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1620: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'u') ADVANCE(1573); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == 'a') ADVANCE(1849); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1621: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'u') ADVANCE(1470); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == 'a') ADVANCE(1715); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1622: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'u') ADVANCE(1614); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == 'a') ADVANCE(1848); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1623: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'u') ADVANCE(1576); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == 'a') ADVANCE(1792); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1624: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'u') ADVANCE(1471); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == 'a') ADVANCE(1850); + if (lookahead == 'e') ADVANCE(1686); + if (lookahead == 'o') ADVANCE(2033); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1625: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'u') ADVANCE(1529); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == 'a') ADVANCE(1791); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1626: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'u') ADVANCE(1583); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == 'a') ADVANCE(1743); + if (lookahead == 'o') ADVANCE(1780); + if (lookahead == 's') ADVANCE(1694); + if (lookahead == 'x') ADVANCE(1754); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1627: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'u') ADVANCE(1531); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == 'a') ADVANCE(1718); + if (lookahead == 'o') ADVANCE(1645); + if (lookahead == 'u') ADVANCE(1808); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1628: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'v') ADVANCE(1482); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == 'a') ADVANCE(1783); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1629: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'v') ADVANCE(1493); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == 'a') ADVANCE(1826); + if (lookahead == 'o') ADVANCE(1742); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1630: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'w') ADVANCE(2190); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1631: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'w') ADVANCE(3248); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == 'c') ADVANCE(3467); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1632: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'y') ADVANCE(3241); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == 'c') ADVANCE(1692); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1633: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'y') ADVANCE(2055); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == 'c') ADVANCE(1693); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1634: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1638); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == 'c') ADVANCE(1690); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1635: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2281); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == 'c') ADVANCE(1691); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1636: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1640); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == 'c') ADVANCE(1664); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1637: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1635); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == 'c') ADVANCE(1667); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1638: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2300); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == 'd') ADVANCE(1838); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1639: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1636); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == 'd') ADVANCE(1839); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1640: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1641); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == 'd') ADVANCE(1795); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1641: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2279); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == 'd') ADVANCE(1855); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1642: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3293); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == 'd') ADVANCE(1660); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1643: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3697); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1643); + if (lookahead == 'd') ADVANCE(1859); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1644: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(936); - if (lookahead == '~') ADVANCE(1910); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'd') ADVANCE(1666); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1645: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(3736); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'd') ADVANCE(1841); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1646: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(3731); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'e') ADVANCE(1904); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1647: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(3721); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'e') ADVANCE(2045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1648: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(3726); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'e') ADVANCE(2138); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1649: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - 'I', 1925, - '_', 1672, - 'i', 1925, - 'l', 1862, - 'r', 1849, - 'x', 1820, - '+', 1672, - '-', 1672, - 'B', 3524, - 'b', 3524, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'e') ADVANCE(2021); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1650: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(1925); - if (lookahead == '_') ADVANCE(1672); - if (lookahead == 'i') ADVANCE(1689); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1672); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'e') ADVANCE(1919); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1651: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - 'I', 1925, - 'a', 1777, - 'i', 1798, - 'o', 1704, - 's', 3529, - 'u', 1867, - 'B', 3524, - 'b', 3524, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'e') ADVANCE(2075); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1652: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(1925); - if (lookahead == 'i') ADVANCE(1925); - if (lookahead == 'l') ADVANCE(1862); - if (lookahead == 'r') ADVANCE(1849); - if (lookahead == 'x') ADVANCE(1820); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'e') ADVANCE(2159); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1653: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(1925); - if (lookahead == 'i') ADVANCE(1925); - if (lookahead == 'r') ADVANCE(1890); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'e') ADVANCE(2204); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1654: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(1925); - if (lookahead == 'i') ADVANCE(1925); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'e') ADVANCE(1687); + if (lookahead == 'o') ADVANCE(3085); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1655: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(1925); - if (lookahead == 'i') ADVANCE(1689); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'e') ADVANCE(1845); + if (lookahead == 'o') ADVANCE(1822); + if (lookahead == 'u') ADVANCE(1722); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1869); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1656: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(1926); - if (lookahead == 'f') ADVANCE(2098); - if (lookahead == 'n') ADVANCE(2167); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'e') ADVANCE(1845); + if (lookahead == 'u') ADVANCE(1722); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1869); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1657: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(1926); - if (lookahead == 'f') ADVANCE(3152); - if (lookahead == 'n') ADVANCE(3115); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'e') ADVANCE(1688); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1658: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(1926); - if (lookahead == 'f') ADVANCE(3152); - if (lookahead == 'n') ADVANCE(3113); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'e') ADVANCE(2920); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1659: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(1926); - if (lookahead == 'f') ADVANCE(3152); - if (lookahead == 'n') ADVANCE(2167); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'e') ADVANCE(3101); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1660: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1660); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3513); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'e') ADVANCE(3170); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1661: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1661); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3504); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'e') ADVANCE(3072); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1662: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1663); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1663); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'e') ADVANCE(3078); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1663: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1663); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'e') ADVANCE(2913); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1664: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1664); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'e') ADVANCE(3153); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1665: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1665); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3461); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'e') ADVANCE(3041); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1666: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1666); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3451); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'e') ADVANCE(1963); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1667: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1668); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1668); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'e') ADVANCE(1983); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1668: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1668); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'e') ADVANCE(1812); + if (lookahead == 'i') ADVANCE(1797); + if (lookahead == 'o') ADVANCE(1748); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1669: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1669); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'e') ADVANCE(1686); + if (lookahead == 'o') ADVANCE(2033); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1670: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1672); - if (lookahead == 'l') ADVANCE(1857); - if (lookahead == 'r') ADVANCE(1848); - if (lookahead == 'x') ADVANCE(1819); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1672); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'e') ADVANCE(1619); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1671: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1672); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1672); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'e') ADVANCE(1587); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1672: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1672); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'e') ADVANCE(1844); + if (lookahead == 'o') ADVANCE(1819); + if (lookahead == 'u') ADVANCE(1722); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1869); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1673: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1870); - if (lookahead == 'o') ADVANCE(1795); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'e') ADVANCE(1844); + if (lookahead == 's') ADVANCE(3467); + if (lookahead == 'u') ADVANCE(1722); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1869); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1674: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1791); - if (lookahead == 'o') ADVANCE(1826); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'e') ADVANCE(1844); + if (lookahead == 'u') ADVANCE(1722); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1869); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1675: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1791); - if (lookahead == 'o') ADVANCE(1821); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'e') ADVANCE(1631); + if (lookahead == 'o') ADVANCE(1840); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1676: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1776); - if (lookahead == 'o') ADVANCE(1698); - if (lookahead == 'u') ADVANCE(1872); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'e') ADVANCE(1776); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1677: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1776); - if (lookahead == 'o') ADVANCE(1697); - if (lookahead == 'u') ADVANCE(1872); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'e') ADVANCE(1621); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1678: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1775); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'e') ADVANCE(1773); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1679: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1908); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'e') ADVANCE(1785); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1680: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1774); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'e') ADVANCE(1818); + if (lookahead == 'i') ADVANCE(1804); + if (lookahead == 'o') ADVANCE(1749); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1681: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1907); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'e') ADVANCE(1769); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1682: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1851); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'e') ADVANCE(1779); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1683: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1909); - if (lookahead == 'e') ADVANCE(1745); - if (lookahead == 'o') ADVANCE(2092); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'e') ADVANCE(1764); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1684: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1850); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'e') ADVANCE(1777); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1685: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1802); - if (lookahead == 'o') ADVANCE(1839); - if (lookahead == 's') ADVANCE(1753); - if (lookahead == 'x') ADVANCE(1813); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'e') ADVANCE(1689); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1686: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1777); - if (lookahead == 'o') ADVANCE(1704); - if (lookahead == 'u') ADVANCE(1867); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'f') ADVANCE(1892); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1687: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1842); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'f') ADVANCE(2895); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1688: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1885); - if (lookahead == 'o') ADVANCE(1801); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'g') ADVANCE(1710); + if (lookahead == 't') ADVANCE(1833); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1689: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'g') ADVANCE(1714); + if (lookahead == 't') ADVANCE(1836); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1690: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(3529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'h') ADVANCE(2057); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1691: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1751); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'h') ADVANCE(2063); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1692: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1752); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'h') ADVANCE(3141); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1693: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1749); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'h') ADVANCE(3108); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1694: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1750); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'h') ADVANCE(1725); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1695: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1723); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'h') ADVANCE(1703); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1696: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1726); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'h') ADVANCE(1863); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1697: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(1897); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'h') ADVANCE(1864); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1698: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(1898); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'h') ADVANCE(1712); + if (lookahead == 'k') ADVANCE(3467); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1699: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(1854); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'h') ADVANCE(1712); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1700: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(1914); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'i') ADVANCE(1642); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1701: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(1719); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'i') ADVANCE(1623); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1702: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(1918); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'i') ADVANCE(1740); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1703: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(1725); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'i') ADVANCE(1726); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1704: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(1900); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'i') ADVANCE(1821); + if (lookahead == 'r') ADVANCE(1670); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1705: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1963); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'i') ADVANCE(1741); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1706: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2104); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'i') ADVANCE(1824); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1707: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2197); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'i') ADVANCE(1644); + if (lookahead == 'r') ADVANCE(3467); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1708: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2080); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'i') ADVANCE(1644); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1709: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1978); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'i') ADVANCE(1625); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1710: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2134); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'i') ADVANCE(1801); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1711: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2218); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'i') ADVANCE(1825); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1712: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2263); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'i') ADVANCE(1728); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1713: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1746); - if (lookahead == 'o') ADVANCE(3145); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'i') ADVANCE(1744); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1714: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1904); - if (lookahead == 'o') ADVANCE(1881); - if (lookahead == 'u') ADVANCE(1781); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1928); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'i') ADVANCE(1806); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1715: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1904); - if (lookahead == 'u') ADVANCE(1781); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1928); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'k') ADVANCE(2069); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1716: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1747); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'k') ADVANCE(3035); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1717: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2979); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'k') ADVANCE(1661); + if (lookahead == 't') ADVANCE(1633); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1718: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3161); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'k') ADVANCE(1648); + if (lookahead == 't') ADVANCE(1635); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1719: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3232); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'l') ADVANCE(2212); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1720: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3132); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'l') ADVANCE(1701); + if (lookahead == 'n') ADVANCE(1641); + if (lookahead == 's') ADVANCE(3196); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1721: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3138); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'l') ADVANCE(1701); + if (lookahead == 's') ADVANCE(3196); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1722: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2972); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'l') ADVANCE(1719); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1723: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3215); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'l') ADVANCE(1620); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1724: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3101); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'l') ADVANCE(1622); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1725: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2022); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'l') ADVANCE(1860); + if (lookahead == 'r') ADVANCE(1861); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1726: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2042); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'l') ADVANCE(1662); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1727: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1871); - if (lookahead == 'i') ADVANCE(1856); - if (lookahead == 'o') ADVANCE(1807); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'l') ADVANCE(1663); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1728: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1745); - if (lookahead == 'o') ADVANCE(2092); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'l') ADVANCE(1649); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1729: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1678); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'l') ADVANCE(1650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1730: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'l') ADVANCE(1798); + if (lookahead == 'r') ADVANCE(1789); + if (lookahead == 'x') ADVANCE(1760); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1731: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1903); - if (lookahead == 'o') ADVANCE(1878); - if (lookahead == 'u') ADVANCE(1781); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1928); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'l') ADVANCE(1709); + if (lookahead == 's') ADVANCE(2087); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1732: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1903); - if (lookahead == 's') ADVANCE(3529); - if (lookahead == 'u') ADVANCE(1781); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1928); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'l') ADVANCE(1800); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1733: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1903); - if (lookahead == 'u') ADVANCE(1781); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1928); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'l') ADVANCE(1803); + if (lookahead == 'r') ADVANCE(1790); + if (lookahead == 'x') ADVANCE(1761); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1734: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1690); - if (lookahead == 'o') ADVANCE(1899); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'n') ADVANCE(1913); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1735: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1835); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'n') ADVANCE(2081); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1736: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1680); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'n') ADVANCE(1799); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1737: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1832); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'n') ADVANCE(2906); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1738: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1844); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'n') ADVANCE(3147); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1739: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1877); - if (lookahead == 'i') ADVANCE(1863); - if (lookahead == 'o') ADVANCE(1808); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'n') ADVANCE(3467); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1740: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1828); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'n') ADVANCE(1835); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1741: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1838); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'n') ADVANCE(1858); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1742: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1823); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'n') ADVANCE(1805); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1743: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1836); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'n') ADVANCE(1643); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1744: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1748); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'n') ADVANCE(1837); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1745: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'f') ADVANCE(1951); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'o') ADVANCE(1830); + if (lookahead == 't') ADVANCE(1628); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1746: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'f') ADVANCE(2954); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'o') ADVANCE(1830); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1747: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'g') ADVANCE(1769); - if (lookahead == 't') ADVANCE(1892); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'o') ADVANCE(1586); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1748: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'g') ADVANCE(1773); - if (lookahead == 't') ADVANCE(1895); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'o') ADVANCE(1759); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1749: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2116); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'o') ADVANCE(1758); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1750: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2122); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'o') ADVANCE(1834); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1751: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(3203); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'o') ADVANCE(1778); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1752: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(3168); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'o') ADVANCE(1768); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1753: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1784); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'o') ADVANCE(1782); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1754: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1762); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'o') ADVANCE(1784); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1755: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1922); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'o') ADVANCE(1763); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1756: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1923); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'o') ADVANCE(1786); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1757: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1771); - if (lookahead == 'k') ADVANCE(3529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'o') ADVANCE(1840); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1758: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1771); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'p') ADVANCE(2015); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1759: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1701); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'p') ADVANCE(3065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1760: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1682); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'p') ADVANCE(1753); + if (lookahead == 't') ADVANCE(1678); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1761: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1799); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'p') ADVANCE(1756); + if (lookahead == 't') ADVANCE(1682); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1762: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1785); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'r') ADVANCE(2009); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1763: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1880); - if (lookahead == 'r') ADVANCE(1729); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'r') ADVANCE(2027); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1764: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1800); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'r') ADVANCE(2003); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1765: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1883); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'r') ADVANCE(1832); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1766: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1703); - if (lookahead == 'r') ADVANCE(3529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'r') ADVANCE(1131); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1767: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1703); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'r') ADVANCE(3047); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1768: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1684); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'r') ADVANCE(2943); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1769: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1860); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'r') ADVANCE(3163); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1770: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1884); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'r') ADVANCE(1670); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1771: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1787); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'r') ADVANCE(1831); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1772: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1803); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'r') ADVANCE(1636); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1773: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1865); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'r') ADVANCE(1737); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1774: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(2128); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'r') ADVANCE(1738); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1775: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(3095); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'r') ADVANCE(1589); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1776: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(1720); - if (lookahead == 't') ADVANCE(1692); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'r') ADVANCE(1723); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1777: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(1707); - if (lookahead == 't') ADVANCE(1694); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'r') ADVANCE(1724); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1778: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2271); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'r') ADVANCE(1856); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1779: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1760); - if (lookahead == 'n') ADVANCE(1700); - if (lookahead == 's') ADVANCE(3258); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'r') ADVANCE(1734); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1780: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1760); - if (lookahead == 's') ADVANCE(3258); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'r') ADVANCE(1857); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1781: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1778); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'r') ADVANCE(1735); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1782: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1679); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'r') ADVANCE(1817); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1783: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'r') ADVANCE(1829); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1784: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1919); - if (lookahead == 'r') ADVANCE(1920); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'r') ADVANCE(1862); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1785: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1721); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'r') ADVANCE(1775); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1786: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1722); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'r') ADVANCE(1820); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1787: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1708); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'r') ADVANCE(1677); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1788: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1709); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'r') ADVANCE(1637); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1789: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1857); - if (lookahead == 'r') ADVANCE(1848); - if (lookahead == 'x') ADVANCE(1819); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'r') ADVANCE(1752); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1790: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1768); - if (lookahead == 's') ADVANCE(2146); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'r') ADVANCE(1755); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1791: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1859); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 's') ADVANCE(1898); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1792: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1862); - if (lookahead == 'r') ADVANCE(1849); - if (lookahead == 'x') ADVANCE(1820); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 's') ADVANCE(1081); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1793: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1972); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 's') ADVANCE(3467); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1794: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2140); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 's') ADVANCE(3469); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1795: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1858); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 's') ADVANCE(1342); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1796: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2965); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 's') ADVANCE(1658); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1797: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(3209); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 's') ADVANCE(1815); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1798: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(3529); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 's') ADVANCE(1659); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1799: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1894); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 's') ADVANCE(1816); + if (lookahead == 't') ADVANCE(1702); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1800: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1917); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 's') ADVANCE(1653); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1801: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1864); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 's') ADVANCE(1827); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1802: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1702); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 's') ADVANCE(1646); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1803: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1896); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 's') ADVANCE(1647); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1804: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1889); - if (lookahead == 't') ADVANCE(1687); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 's') ADVANCE(1809); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1805: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1889); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 's') ADVANCE(1810); + if (lookahead == 't') ADVANCE(1713); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1806: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1645); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 's') ADVANCE(1828); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1807: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1818); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 's') ADVANCE(1345); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1808: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1817); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 't') ADVANCE(1945); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1809: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1893); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 't') ADVANCE(2126); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1810: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1837); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 't') ADVANCE(1951); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1811: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1827); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 't') ADVANCE(1632); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1812: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1841); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 't') ADVANCE(1092); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1813: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1843); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 't') ADVANCE(1102); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1814: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1822); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 't') ADVANCE(1132); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1815: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1845); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 't') ADVANCE(2955); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1816: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1899); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 't') ADVANCE(1109); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1817: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(2074); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 't') ADVANCE(1074); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1818: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(3125); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 't') ADVANCE(1931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1819: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1812); - if (lookahead == 't') ADVANCE(1737); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 't') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1820: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1815); - if (lookahead == 't') ADVANCE(1741); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 't') ADVANCE(2150); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1821: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2068); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 't') ADVANCE(1341); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1822: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2086); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 't') ADVANCE(1343); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1823: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2062); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 't') ADVANCE(1588); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1824: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1891); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 't') ADVANCE(1696); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1825: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1190); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 't') ADVANCE(1697); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1826: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(3107); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 't') ADVANCE(1634); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1827: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(3003); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 't') ADVANCE(1681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1828: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(3225); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 't') ADVANCE(1683); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1829: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1729); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 't') ADVANCE(1807); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1830: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1890); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'u') ADVANCE(1772); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1831: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1695); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'u') ADVANCE(1652); + if (lookahead == 'y') ADVANCE(2051); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1832: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1796); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'u') ADVANCE(1652); + if (lookahead == 'y') ADVANCE(3133); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1833: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1797); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'u') ADVANCE(1774); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1834: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1648); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'u') ADVANCE(1823); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1835: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1782); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'u') ADVANCE(1665); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1836: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1783); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'u') ADVANCE(1781); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1837: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1915); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'u') ADVANCE(1651); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1838: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1793); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'u') ADVANCE(1727); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3240); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1839: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1916); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'u') ADVANCE(1727); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1840: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1794); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'u') ADVANCE(1788); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1841: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1876); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'u') ADVANCE(1729); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1842: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1888); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'v') ADVANCE(1676); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1843: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1921); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'v') ADVANCE(1684); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1844: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1834); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'w') ADVANCE(2132); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1845: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1879); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'w') ADVANCE(3187); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1846: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1736); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'w') ADVANCE(1706); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1847: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1696); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'w') ADVANCE(1711); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1848: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1811); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'y') ADVANCE(1997); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1849: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1814); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'y') ADVANCE(3180); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1850: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1957); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'y') ADVANCE(3467); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1851: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1141); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3253); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1852: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(3529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3234); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1853: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(3531); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3242); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1854: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1401); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3265); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1855: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1717); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3261); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1856: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1874); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3263); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1857: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1718); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3259); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1858: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1875); - if (lookahead == 't') ADVANCE(1761); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3269); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1859: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1712); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3255); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1860: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1886); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3247); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1861: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1705); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3249); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1862: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1706); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3257); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1863: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1868); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3273); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1864: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1869); - if (lookahead == 't') ADVANCE(1772); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3271); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1865: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1887); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1869); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1866: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1404); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1867: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2004); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2223); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1868: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2185); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1872); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1869: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2010); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2241); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1870: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1691); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1867); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1871: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1151); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1868); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1872: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1161); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1873); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1873: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1191); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2220); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1874: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(3015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(3453); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1875: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1168); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3231); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1876: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1134); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(3454); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1877: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1990); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1344); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1878: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1934); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1356); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1879: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2209); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1877); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1880: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1400); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1881: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1402); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1882: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1647); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1878); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); case 1883: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1755); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1884: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1756); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1885: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1693); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1886: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1740); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1887: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1742); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1888: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1889: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1831); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1890: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1711); - if (lookahead == 'y') ADVANCE(2110); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1891: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1711); - if (lookahead == 'y') ADVANCE(3195); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1892: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1833); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1893: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1882); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1894: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1724); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1895: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1840); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1896: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1710); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1897: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1786); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3302); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1898: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1786); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1899: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1847); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1900: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1788); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1901: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'v') ADVANCE(1735); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1902: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'v') ADVANCE(1743); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1903: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'w') ADVANCE(2191); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1904: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'w') ADVANCE(3249); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1905: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'w') ADVANCE(1765); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1906: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'w') ADVANCE(1770); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1907: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(2056); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1908: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(3242); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1909: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(3529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1910: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3315); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1911: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3296); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1912: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3304); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1913: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3327); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1914: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3323); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1915: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3325); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1916: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3321); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1917: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3331); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1918: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3317); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1919: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3309); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1920: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3311); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1921: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3319); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1922: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3335); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1923: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3333); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1924: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1928); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1925: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1926: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2282); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1927: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1931); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1928: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2300); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1929: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1926); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1930: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1927); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1931: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1932); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1932: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2279); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1933: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(3515); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1934: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3293); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1935: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3516); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1936: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1403); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1937: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1415); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1938: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1936); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1939: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3565); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1940: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1939); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1941: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1937); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); - END_STATE(); - case 1942: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3514); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3452); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); - case 1943: + case 1884: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1884); END_STATE(); - case 1944: + case 1885: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ',') ADVANCE(1951); + if (lookahead == ',') ADVANCE(1892); if (lookahead == '-' || - lookahead == '@') ADVANCE(1946); + lookahead == '@') ADVANCE(1887); if (lookahead == '.' || - lookahead == '?') ADVANCE(1949); + lookahead == '?') ADVANCE(1890); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1944); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1945); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1885); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1886); END_STATE(); - case 1945: + case 1886: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ',') ADVANCE(1951); + if (lookahead == ',') ADVANCE(1892); if (lookahead == '-' || - lookahead == '@') ADVANCE(1946); + lookahead == '@') ADVANCE(1887); if (lookahead == '.' || - lookahead == '?') ADVANCE(1949); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1945); + lookahead == '?') ADVANCE(1890); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1886); END_STATE(); - case 1946: + case 1887: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ',') ADVANCE(1951); + if (lookahead == ',') ADVANCE(1892); if (lookahead == '.' || - lookahead == '?') ADVANCE(1949); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1946); + lookahead == '?') ADVANCE(1890); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1887); END_STATE(); - case 1947: + case 1888: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ',') ADVANCE(1951); + if (lookahead == ',') ADVANCE(1892); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(1949); + lookahead == '@') ADVANCE(1890); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1947); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1948); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1888); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1889); END_STATE(); - case 1948: + case 1889: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ',') ADVANCE(1951); + if (lookahead == ',') ADVANCE(1892); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(1949); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1948); + lookahead == '@') ADVANCE(1890); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1889); END_STATE(); - case 1949: + case 1890: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ',') ADVANCE(1951); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1949); + if (lookahead == ',') ADVANCE(1892); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1890); END_STATE(); - case 1950: + case 1891: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1951); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1950); + lookahead == '@') ADVANCE(1892); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1891); END_STATE(); - case 1951: + case 1892: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1892); END_STATE(); - case 1952: + case 1893: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if (lookahead == ',') ADVANCE(1957); + if (lookahead == ',') ADVANCE(1898); if (lookahead == '-' || - lookahead == '@') ADVANCE(1953); + lookahead == '@') ADVANCE(1894); if (lookahead == '.' || - lookahead == '?') ADVANCE(1955); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1952); + lookahead == '?') ADVANCE(1896); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1893); END_STATE(); - case 1953: + case 1894: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if (lookahead == ',') ADVANCE(1957); + if (lookahead == ',') ADVANCE(1898); if (lookahead == '.' || - lookahead == '?') ADVANCE(1955); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1953); + lookahead == '?') ADVANCE(1896); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1894); END_STATE(); - case 1954: + case 1895: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if (lookahead == ',') ADVANCE(1957); + if (lookahead == ',') ADVANCE(1898); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(1955); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1954); + lookahead == '@') ADVANCE(1896); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1895); END_STATE(); - case 1955: + case 1896: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if (lookahead == ',') ADVANCE(1957); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1955); + if (lookahead == ',') ADVANCE(1898); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1896); END_STATE(); - case 1956: + case 1897: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1957); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1956); + lookahead == '@') ADVANCE(1898); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1897); END_STATE(); - case 1957: + case 1898: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1957); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1898); END_STATE(); - case 1958: + case 1899: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if (lookahead == ',') ADVANCE(1963); + if (lookahead == ',') ADVANCE(1904); if (lookahead == '-' || - lookahead == '@') ADVANCE(1959); + lookahead == '@') ADVANCE(1900); if (lookahead == '.' || - lookahead == '?') ADVANCE(1961); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1958); + lookahead == '?') ADVANCE(1902); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1899); END_STATE(); - case 1959: + case 1900: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if (lookahead == ',') ADVANCE(1963); + if (lookahead == ',') ADVANCE(1904); if (lookahead == '.' || - lookahead == '?') ADVANCE(1961); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1959); + lookahead == '?') ADVANCE(1902); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1900); END_STATE(); - case 1960: + case 1901: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if (lookahead == ',') ADVANCE(1963); + if (lookahead == ',') ADVANCE(1904); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(1961); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1960); + lookahead == '@') ADVANCE(1902); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1901); END_STATE(); - case 1961: + case 1902: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if (lookahead == ',') ADVANCE(1963); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1961); + if (lookahead == ',') ADVANCE(1904); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1902); END_STATE(); - case 1962: + case 1903: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1963); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1962); + lookahead == '@') ADVANCE(1904); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1903); END_STATE(); - case 1963: + case 1904: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1963); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1904); END_STATE(); - case 1964: + case 1905: ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); - if (lookahead == ',') ADVANCE(1966); + if (lookahead == ',') ADVANCE(1907); if (lookahead == '.' || - lookahead == '?') ADVANCE(1965); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1964); + lookahead == '?') ADVANCE(1906); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1905); END_STATE(); - case 1965: + case 1906: ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); - if (lookahead == ',') ADVANCE(1966); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1965); + if (lookahead == ',') ADVANCE(1907); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1906); END_STATE(); - case 1966: + case 1907: ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1966); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1907); END_STATE(); - case 1967: + case 1908: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == ',') ADVANCE(1972); + if (lookahead == ',') ADVANCE(1913); if (lookahead == '-' || - lookahead == '@') ADVANCE(1968); + lookahead == '@') ADVANCE(1909); if (lookahead == '.' || - lookahead == '?') ADVANCE(1970); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1967); + lookahead == '?') ADVANCE(1911); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1908); END_STATE(); - case 1968: + case 1909: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == ',') ADVANCE(1972); + if (lookahead == ',') ADVANCE(1913); if (lookahead == '.' || - lookahead == '?') ADVANCE(1970); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1968); + lookahead == '?') ADVANCE(1911); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1909); END_STATE(); - case 1969: + case 1910: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == ',') ADVANCE(1972); + if (lookahead == ',') ADVANCE(1913); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(1970); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1969); + lookahead == '@') ADVANCE(1911); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1910); END_STATE(); - case 1970: + case 1911: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == ',') ADVANCE(1972); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1970); + if (lookahead == ',') ADVANCE(1913); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1911); END_STATE(); - case 1971: + case 1912: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1972); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1971); + lookahead == '@') ADVANCE(1913); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1912); END_STATE(); - case 1972: + case 1913: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1972); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1913); END_STATE(); - case 1973: + case 1914: ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); - if (lookahead == ',') ADVANCE(1978); + if (lookahead == ',') ADVANCE(1919); if (lookahead == '-' || - lookahead == '@') ADVANCE(1974); + lookahead == '@') ADVANCE(1915); if (lookahead == '.' || - lookahead == '?') ADVANCE(1976); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1973); + lookahead == '?') ADVANCE(1917); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1914); END_STATE(); - case 1974: + case 1915: ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); - if (lookahead == ',') ADVANCE(1978); + if (lookahead == ',') ADVANCE(1919); if (lookahead == '.' || - lookahead == '?') ADVANCE(1976); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1974); + lookahead == '?') ADVANCE(1917); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1915); END_STATE(); - case 1975: + case 1916: ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); - if (lookahead == ',') ADVANCE(1978); + if (lookahead == ',') ADVANCE(1919); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(1976); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1975); + lookahead == '@') ADVANCE(1917); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1916); END_STATE(); - case 1976: + case 1917: ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); - if (lookahead == ',') ADVANCE(1978); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1976); + if (lookahead == ',') ADVANCE(1919); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1917); END_STATE(); - case 1977: + case 1918: ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1978); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1977); + lookahead == '@') ADVANCE(1919); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1918); END_STATE(); - case 1978: + case 1919: ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1978); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1919); END_STATE(); - case 1979: + case 1920: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(1998); - if (lookahead == 'e') ADVANCE(1981); + if (lookahead == ',') ADVANCE(1939); + if (lookahead == 'e') ADVANCE(1922); if (lookahead == '.' || - lookahead == '?') ADVANCE(1988); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1986); + lookahead == '?') ADVANCE(1929); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1927); END_STATE(); - case 1980: + case 1921: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(1998); - if (lookahead == 'e') ADVANCE(1982); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1988); + if (lookahead == ',') ADVANCE(1939); + if (lookahead == 'e') ADVANCE(1923); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1929); END_STATE(); - case 1981: + case 1922: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(1998); - if (lookahead == 'n') ADVANCE(1983); + if (lookahead == ',') ADVANCE(1939); + if (lookahead == 'n') ADVANCE(1924); if (lookahead == '.' || - lookahead == '?') ADVANCE(1988); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1986); + lookahead == '?') ADVANCE(1929); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1927); END_STATE(); - case 1982: + case 1923: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(1998); - if (lookahead == 'n') ADVANCE(1984); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1988); + if (lookahead == ',') ADVANCE(1939); + if (lookahead == 'n') ADVANCE(1925); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1929); END_STATE(); - case 1983: + case 1924: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(1998); - if (lookahead == 'v') ADVANCE(1152); + if (lookahead == ',') ADVANCE(1939); + if (lookahead == 'v') ADVANCE(1093); if (lookahead == '.' || - lookahead == '?') ADVANCE(1988); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1986); + lookahead == '?') ADVANCE(1929); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1927); END_STATE(); - case 1984: + case 1925: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(1998); - if (lookahead == 'v') ADVANCE(1154); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1988); + if (lookahead == ',') ADVANCE(1939); + if (lookahead == 'v') ADVANCE(1095); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1929); END_STATE(); - case 1985: + case 1926: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(1998); + if (lookahead == ',') ADVANCE(1939); if (lookahead == '-' || - lookahead == '@') ADVANCE(1986); + lookahead == '@') ADVANCE(1927); if (lookahead == '.' || - lookahead == '?') ADVANCE(1988); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1985); + lookahead == '?') ADVANCE(1929); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1926); END_STATE(); - case 1986: + case 1927: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(1998); + if (lookahead == ',') ADVANCE(1939); if (lookahead == '.' || - lookahead == '?') ADVANCE(1988); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1986); + lookahead == '?') ADVANCE(1929); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1927); END_STATE(); - case 1987: + case 1928: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(1998); + if (lookahead == ',') ADVANCE(1939); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(1988); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1987); + lookahead == '@') ADVANCE(1929); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1928); END_STATE(); - case 1988: + case 1929: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(1998); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1988); + if (lookahead == ',') ADVANCE(1939); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1929); END_STATE(); - case 1989: + case 1930: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == '-') ADVANCE(1992); + if (lookahead == '-') ADVANCE(1933); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1998); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1997); + lookahead == '@') ADVANCE(1939); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1938); END_STATE(); - case 1990: + case 1931: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == '-') ADVANCE(1992); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1998); + if (lookahead == '-') ADVANCE(1933); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1939); END_STATE(); - case 1991: + case 1932: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'e') ADVANCE(1993); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1998); + if (lookahead == 'e') ADVANCE(1934); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1939); END_STATE(); - case 1992: + case 1933: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'e') ADVANCE(1994); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1998); + if (lookahead == 'e') ADVANCE(1935); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1939); END_STATE(); - case 1993: + case 1934: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'n') ADVANCE(1996); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1998); + if (lookahead == 'n') ADVANCE(1937); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1939); END_STATE(); - case 1994: + case 1935: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'n') ADVANCE(1995); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1998); + if (lookahead == 'n') ADVANCE(1936); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1939); END_STATE(); - case 1995: + case 1936: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'v') ADVANCE(1998); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1998); + if (lookahead == 'v') ADVANCE(1939); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1939); END_STATE(); - case 1996: + case 1937: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'v') ADVANCE(1155); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1998); + if (lookahead == 'v') ADVANCE(1096); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1939); END_STATE(); - case 1997: + case 1938: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1998); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1997); + lookahead == '@') ADVANCE(1939); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1938); END_STATE(); - case 1998: + case 1939: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1939); END_STATE(); - case 1999: + case 1940: ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); - if (lookahead == ',') ADVANCE(2004); + if (lookahead == ',') ADVANCE(1945); if (lookahead == '-' || - lookahead == '@') ADVANCE(2000); + lookahead == '@') ADVANCE(1941); if (lookahead == '.' || - lookahead == '?') ADVANCE(2002); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1999); + lookahead == '?') ADVANCE(1943); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1940); END_STATE(); - case 2000: + case 1941: ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); - if (lookahead == ',') ADVANCE(2004); + if (lookahead == ',') ADVANCE(1945); if (lookahead == '.' || - lookahead == '?') ADVANCE(2002); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2000); + lookahead == '?') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1941); END_STATE(); - case 2001: + case 1942: ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); - if (lookahead == ',') ADVANCE(2004); + if (lookahead == ',') ADVANCE(1945); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2002); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2001); + lookahead == '@') ADVANCE(1943); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1942); END_STATE(); - case 2002: + case 1943: ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); - if (lookahead == ',') ADVANCE(2004); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2002); + if (lookahead == ',') ADVANCE(1945); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1943); END_STATE(); - case 2003: + case 1944: ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2004); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2003); + lookahead == '@') ADVANCE(1945); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1944); END_STATE(); - case 2004: + case 1945: ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2004); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1945); END_STATE(); - case 2005: + case 1946: ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); - if (lookahead == ',') ADVANCE(2010); + if (lookahead == ',') ADVANCE(1951); if (lookahead == '-' || - lookahead == '@') ADVANCE(2006); + lookahead == '@') ADVANCE(1947); if (lookahead == '.' || - lookahead == '?') ADVANCE(2008); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2005); + lookahead == '?') ADVANCE(1949); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1946); END_STATE(); - case 2006: + case 1947: ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); - if (lookahead == ',') ADVANCE(2010); + if (lookahead == ',') ADVANCE(1951); if (lookahead == '.' || - lookahead == '?') ADVANCE(2008); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2006); + lookahead == '?') ADVANCE(1949); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2007: + case 1948: ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); - if (lookahead == ',') ADVANCE(2010); + if (lookahead == ',') ADVANCE(1951); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2008); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2007); + lookahead == '@') ADVANCE(1949); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1948); END_STATE(); - case 2008: + case 1949: ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); - if (lookahead == ',') ADVANCE(2010); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2008); + if (lookahead == ',') ADVANCE(1951); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1949); END_STATE(); - case 2009: + case 1950: ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2010); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2009); + lookahead == '@') ADVANCE(1951); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1950); END_STATE(); - case 2010: + case 1951: ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2010); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); END_STATE(); - case 2011: + case 1952: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(2030); - if (lookahead == 'e') ADVANCE(2013); + if (lookahead == ',') ADVANCE(1971); + if (lookahead == 'e') ADVANCE(1954); if (lookahead == '.' || - lookahead == '?') ADVANCE(2020); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2018); + lookahead == '?') ADVANCE(1961); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1959); END_STATE(); - case 2012: + case 1953: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(2030); - if (lookahead == 'e') ADVANCE(2014); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2020); + if (lookahead == ',') ADVANCE(1971); + if (lookahead == 'e') ADVANCE(1955); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1961); END_STATE(); - case 2013: + case 1954: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(2030); - if (lookahead == 'n') ADVANCE(2015); + if (lookahead == ',') ADVANCE(1971); + if (lookahead == 'n') ADVANCE(1956); if (lookahead == '.' || - lookahead == '?') ADVANCE(2020); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2018); + lookahead == '?') ADVANCE(1961); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1959); END_STATE(); - case 2014: + case 1955: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(2030); - if (lookahead == 'n') ADVANCE(2016); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2020); + if (lookahead == ',') ADVANCE(1971); + if (lookahead == 'n') ADVANCE(1957); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1961); END_STATE(); - case 2015: + case 1956: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(2030); - if (lookahead == 'v') ADVANCE(3233); + if (lookahead == ',') ADVANCE(1971); + if (lookahead == 'v') ADVANCE(3171); if (lookahead == '.' || - lookahead == '?') ADVANCE(2020); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2018); + lookahead == '?') ADVANCE(1961); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1959); END_STATE(); - case 2016: + case 1957: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(2030); - if (lookahead == 'v') ADVANCE(3235); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2020); + if (lookahead == ',') ADVANCE(1971); + if (lookahead == 'v') ADVANCE(3173); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1961); END_STATE(); - case 2017: + case 1958: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(2030); + if (lookahead == ',') ADVANCE(1971); if (lookahead == '-' || - lookahead == '@') ADVANCE(2018); + lookahead == '@') ADVANCE(1959); if (lookahead == '.' || - lookahead == '?') ADVANCE(2020); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2017); + lookahead == '?') ADVANCE(1961); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1958); END_STATE(); - case 2018: + case 1959: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(2030); + if (lookahead == ',') ADVANCE(1971); if (lookahead == '.' || - lookahead == '?') ADVANCE(2020); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2018); + lookahead == '?') ADVANCE(1961); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1959); END_STATE(); - case 2019: + case 1960: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(2030); + if (lookahead == ',') ADVANCE(1971); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2020); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2019); + lookahead == '@') ADVANCE(1961); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1960); END_STATE(); - case 2020: + case 1961: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(2030); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2020); + if (lookahead == ',') ADVANCE(1971); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1961); END_STATE(); - case 2021: + case 1962: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == '-') ADVANCE(2024); + if (lookahead == '-') ADVANCE(1965); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2030); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2029); + lookahead == '@') ADVANCE(1971); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1970); END_STATE(); - case 2022: + case 1963: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == '-') ADVANCE(2024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2030); + if (lookahead == '-') ADVANCE(1965); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1971); END_STATE(); - case 2023: + case 1964: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'e') ADVANCE(2025); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2030); + if (lookahead == 'e') ADVANCE(1966); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1971); END_STATE(); - case 2024: + case 1965: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'e') ADVANCE(2026); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2030); + if (lookahead == 'e') ADVANCE(1967); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1971); END_STATE(); - case 2025: + case 1966: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'n') ADVANCE(2028); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2030); + if (lookahead == 'n') ADVANCE(1969); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1971); END_STATE(); - case 2026: + case 1967: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'n') ADVANCE(2027); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2030); + if (lookahead == 'n') ADVANCE(1968); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1971); END_STATE(); - case 2027: + case 1968: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'v') ADVANCE(2030); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2030); + if (lookahead == 'v') ADVANCE(1971); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1971); END_STATE(); - case 2028: + case 1969: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'v') ADVANCE(3236); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2030); + if (lookahead == 'v') ADVANCE(3174); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1971); END_STATE(); - case 2029: + case 1970: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2030); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2029); + lookahead == '@') ADVANCE(1971); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1970); END_STATE(); - case 2030: + case 1971: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2030); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1971); END_STATE(); - case 2031: + case 1972: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(2050); - if (lookahead == 'e') ADVANCE(2033); + if (lookahead == ',') ADVANCE(1991); + if (lookahead == 'e') ADVANCE(1974); if (lookahead == '.' || - lookahead == '?') ADVANCE(2040); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2038); + lookahead == '?') ADVANCE(1981); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1979); END_STATE(); - case 2032: + case 1973: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(2050); - if (lookahead == 'e') ADVANCE(2034); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2040); + if (lookahead == ',') ADVANCE(1991); + if (lookahead == 'e') ADVANCE(1975); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1981); END_STATE(); - case 2033: + case 1974: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(2050); - if (lookahead == 'n') ADVANCE(2035); + if (lookahead == ',') ADVANCE(1991); + if (lookahead == 'n') ADVANCE(1976); if (lookahead == '.' || - lookahead == '?') ADVANCE(2040); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2038); + lookahead == '?') ADVANCE(1981); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1979); END_STATE(); - case 2034: + case 1975: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(2050); - if (lookahead == 'n') ADVANCE(2036); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2040); + if (lookahead == ',') ADVANCE(1991); + if (lookahead == 'n') ADVANCE(1977); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1981); END_STATE(); - case 2035: + case 1976: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(2050); - if (lookahead == 'v') ADVANCE(3216); + if (lookahead == ',') ADVANCE(1991); + if (lookahead == 'v') ADVANCE(3154); if (lookahead == '.' || - lookahead == '?') ADVANCE(2040); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2038); + lookahead == '?') ADVANCE(1981); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1979); END_STATE(); - case 2036: + case 1977: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(2050); - if (lookahead == 'v') ADVANCE(3218); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2040); + if (lookahead == ',') ADVANCE(1991); + if (lookahead == 'v') ADVANCE(3156); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1981); END_STATE(); - case 2037: + case 1978: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(2050); + if (lookahead == ',') ADVANCE(1991); if (lookahead == '-' || - lookahead == '@') ADVANCE(2038); + lookahead == '@') ADVANCE(1979); if (lookahead == '.' || - lookahead == '?') ADVANCE(2040); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); + lookahead == '?') ADVANCE(1981); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1978); END_STATE(); - case 2038: + case 1979: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(2050); + if (lookahead == ',') ADVANCE(1991); if (lookahead == '.' || - lookahead == '?') ADVANCE(2040); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2038); + lookahead == '?') ADVANCE(1981); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1979); END_STATE(); - case 2039: + case 1980: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(2050); + if (lookahead == ',') ADVANCE(1991); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2040); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2039); + lookahead == '@') ADVANCE(1981); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1980); END_STATE(); - case 2040: + case 1981: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(2050); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2040); + if (lookahead == ',') ADVANCE(1991); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1981); END_STATE(); - case 2041: + case 1982: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == '-') ADVANCE(2044); + if (lookahead == '-') ADVANCE(1985); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2050); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2049); + lookahead == '@') ADVANCE(1991); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1990); END_STATE(); - case 2042: + case 1983: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == '-') ADVANCE(2044); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2050); + if (lookahead == '-') ADVANCE(1985); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1991); END_STATE(); - case 2043: + case 1984: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'e') ADVANCE(2045); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2050); + if (lookahead == 'e') ADVANCE(1986); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1991); END_STATE(); - case 2044: + case 1985: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'e') ADVANCE(2046); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2050); + if (lookahead == 'e') ADVANCE(1987); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1991); END_STATE(); - case 2045: + case 1986: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'n') ADVANCE(2048); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2050); + if (lookahead == 'n') ADVANCE(1989); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1991); END_STATE(); - case 2046: + case 1987: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'n') ADVANCE(2047); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2050); + if (lookahead == 'n') ADVANCE(1988); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1991); END_STATE(); - case 2047: + case 1988: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'v') ADVANCE(2050); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2050); + if (lookahead == 'v') ADVANCE(1991); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1991); END_STATE(); - case 2048: + case 1989: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'v') ADVANCE(3219); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2050); + if (lookahead == 'v') ADVANCE(3157); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1991); END_STATE(); - case 2049: + case 1990: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2050); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2049); + lookahead == '@') ADVANCE(1991); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1990); END_STATE(); - case 2050: + case 1991: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2050); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1991); END_STATE(); - case 2051: + case 1992: ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); - if (lookahead == ',') ADVANCE(2056); + if (lookahead == ',') ADVANCE(1997); if (lookahead == '-' || - lookahead == '@') ADVANCE(2052); + lookahead == '@') ADVANCE(1993); if (lookahead == '.' || - lookahead == '?') ADVANCE(2054); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2051); + lookahead == '?') ADVANCE(1995); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1992); END_STATE(); - case 2052: + case 1993: ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); - if (lookahead == ',') ADVANCE(2056); + if (lookahead == ',') ADVANCE(1997); if (lookahead == '.' || - lookahead == '?') ADVANCE(2054); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); + lookahead == '?') ADVANCE(1995); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1993); END_STATE(); - case 2053: + case 1994: ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); - if (lookahead == ',') ADVANCE(2056); + if (lookahead == ',') ADVANCE(1997); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2054); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2053); + lookahead == '@') ADVANCE(1995); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1994); END_STATE(); - case 2054: + case 1995: ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); - if (lookahead == ',') ADVANCE(2056); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2054); + if (lookahead == ',') ADVANCE(1997); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1995); END_STATE(); - case 2055: + case 1996: ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2056); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2055); + lookahead == '@') ADVANCE(1997); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1996); END_STATE(); - case 2056: + case 1997: ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2056); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1997); END_STATE(); - case 2057: + case 1998: ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); - if (lookahead == ',') ADVANCE(2062); + if (lookahead == ',') ADVANCE(2003); if (lookahead == '-' || - lookahead == '@') ADVANCE(2058); + lookahead == '@') ADVANCE(1999); if (lookahead == '.' || - lookahead == '?') ADVANCE(2060); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2057); + lookahead == '?') ADVANCE(2001); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1998); END_STATE(); - case 2058: + case 1999: ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); - if (lookahead == ',') ADVANCE(2062); + if (lookahead == ',') ADVANCE(2003); if (lookahead == '.' || - lookahead == '?') ADVANCE(2060); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2058); + lookahead == '?') ADVANCE(2001); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1999); END_STATE(); - case 2059: + case 2000: ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); - if (lookahead == ',') ADVANCE(2062); + if (lookahead == ',') ADVANCE(2003); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2060); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2059); + lookahead == '@') ADVANCE(2001); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2000); END_STATE(); - case 2060: + case 2001: ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); - if (lookahead == ',') ADVANCE(2062); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2060); + if (lookahead == ',') ADVANCE(2003); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2001); END_STATE(); - case 2061: + case 2002: ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2062); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2061); + lookahead == '@') ADVANCE(2003); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2002); END_STATE(); - case 2062: + case 2003: ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2062); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2003); END_STATE(); - case 2063: + case 2004: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if (lookahead == ',') ADVANCE(2068); + if (lookahead == ',') ADVANCE(2009); if (lookahead == '-' || - lookahead == '@') ADVANCE(2064); + lookahead == '@') ADVANCE(2005); if (lookahead == '.' || - lookahead == '?') ADVANCE(2066); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2063); + lookahead == '?') ADVANCE(2007); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2004); END_STATE(); - case 2064: + case 2005: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if (lookahead == ',') ADVANCE(2068); + if (lookahead == ',') ADVANCE(2009); if (lookahead == '.' || - lookahead == '?') ADVANCE(2066); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2064); + lookahead == '?') ADVANCE(2007); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2005); END_STATE(); - case 2065: + case 2006: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if (lookahead == ',') ADVANCE(2068); + if (lookahead == ',') ADVANCE(2009); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2066); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2065); + lookahead == '@') ADVANCE(2007); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2006); END_STATE(); - case 2066: + case 2007: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if (lookahead == ',') ADVANCE(2068); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2066); + if (lookahead == ',') ADVANCE(2009); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2007); END_STATE(); - case 2067: + case 2008: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2068); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2067); + lookahead == '@') ADVANCE(2009); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2008); END_STATE(); - case 2068: + case 2009: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2068); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2009); END_STATE(); - case 2069: + case 2010: ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); - if (lookahead == ',') ADVANCE(2074); + if (lookahead == ',') ADVANCE(2015); if (lookahead == '-' || - lookahead == '@') ADVANCE(2070); + lookahead == '@') ADVANCE(2011); if (lookahead == '.' || - lookahead == '?') ADVANCE(2072); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2069); + lookahead == '?') ADVANCE(2013); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2010); END_STATE(); - case 2070: + case 2011: ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); - if (lookahead == ',') ADVANCE(2074); + if (lookahead == ',') ADVANCE(2015); if (lookahead == '.' || - lookahead == '?') ADVANCE(2072); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2070); + lookahead == '?') ADVANCE(2013); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2011); END_STATE(); - case 2071: + case 2012: ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); - if (lookahead == ',') ADVANCE(2074); + if (lookahead == ',') ADVANCE(2015); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2072); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2071); + lookahead == '@') ADVANCE(2013); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2012); END_STATE(); - case 2072: + case 2013: ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); - if (lookahead == ',') ADVANCE(2074); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2072); + if (lookahead == ',') ADVANCE(2015); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2013); END_STATE(); - case 2073: + case 2014: ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2074); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2073); + lookahead == '@') ADVANCE(2015); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2014); END_STATE(); - case 2074: + case 2015: ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2074); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2015); END_STATE(); - case 2075: + case 2016: ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); - if (lookahead == ',') ADVANCE(2080); + if (lookahead == ',') ADVANCE(2021); if (lookahead == '-' || - lookahead == '@') ADVANCE(2076); + lookahead == '@') ADVANCE(2017); if (lookahead == '.' || - lookahead == '?') ADVANCE(2078); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2075); + lookahead == '?') ADVANCE(2019); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2016); END_STATE(); - case 2076: + case 2017: ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); - if (lookahead == ',') ADVANCE(2080); + if (lookahead == ',') ADVANCE(2021); if (lookahead == '.' || - lookahead == '?') ADVANCE(2078); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2076); + lookahead == '?') ADVANCE(2019); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2017); END_STATE(); - case 2077: + case 2018: ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); - if (lookahead == ',') ADVANCE(2080); + if (lookahead == ',') ADVANCE(2021); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2078); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2077); + lookahead == '@') ADVANCE(2019); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2018); END_STATE(); - case 2078: + case 2019: ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); - if (lookahead == ',') ADVANCE(2080); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2078); + if (lookahead == ',') ADVANCE(2021); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2019); END_STATE(); - case 2079: + case 2020: ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2080); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2079); + lookahead == '@') ADVANCE(2021); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2020); END_STATE(); - case 2080: + case 2021: ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2080); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2021); END_STATE(); - case 2081: + case 2022: ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); - if (lookahead == ',') ADVANCE(2086); + if (lookahead == ',') ADVANCE(2027); if (lookahead == '-' || - lookahead == '@') ADVANCE(2082); + lookahead == '@') ADVANCE(2023); if (lookahead == '.' || - lookahead == '?') ADVANCE(2084); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2081); + lookahead == '?') ADVANCE(2025); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2022); END_STATE(); - case 2082: + case 2023: ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); - if (lookahead == ',') ADVANCE(2086); + if (lookahead == ',') ADVANCE(2027); if (lookahead == '.' || - lookahead == '?') ADVANCE(2084); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2082); + lookahead == '?') ADVANCE(2025); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2023); END_STATE(); - case 2083: + case 2024: ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); - if (lookahead == ',') ADVANCE(2086); + if (lookahead == ',') ADVANCE(2027); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2084); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2083); + lookahead == '@') ADVANCE(2025); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2024); END_STATE(); - case 2084: + case 2025: ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); - if (lookahead == ',') ADVANCE(2086); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2084); + if (lookahead == ',') ADVANCE(2027); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2025); END_STATE(); - case 2085: + case 2026: ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2086); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2085); + lookahead == '@') ADVANCE(2027); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2026); END_STATE(); - case 2086: + case 2027: ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2086); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2027); END_STATE(); - case 2087: + case 2028: ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); - if (lookahead == ',') ADVANCE(2092); + if (lookahead == ',') ADVANCE(2033); if (lookahead == '-' || - lookahead == '@') ADVANCE(2088); + lookahead == '@') ADVANCE(2029); if (lookahead == '.' || - lookahead == '?') ADVANCE(2090); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2087); + lookahead == '?') ADVANCE(2031); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2028); END_STATE(); - case 2088: + case 2029: ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); - if (lookahead == ',') ADVANCE(2092); + if (lookahead == ',') ADVANCE(2033); if (lookahead == '.' || - lookahead == '?') ADVANCE(2090); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2088); + lookahead == '?') ADVANCE(2031); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2029); END_STATE(); - case 2089: + case 2030: ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); - if (lookahead == ',') ADVANCE(2092); + if (lookahead == ',') ADVANCE(2033); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2090); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2089); + lookahead == '@') ADVANCE(2031); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2030); END_STATE(); - case 2090: + case 2031: ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); - if (lookahead == ',') ADVANCE(2092); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2090); + if (lookahead == ',') ADVANCE(2033); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2031); END_STATE(); - case 2091: + case 2032: ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2092); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2091); + lookahead == '@') ADVANCE(2033); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2092: + case 2033: ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2092); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2033); END_STATE(); - case 2093: + case 2034: ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); - if (lookahead == ',') ADVANCE(2098); + if (lookahead == ',') ADVANCE(2039); if (lookahead == '-' || - lookahead == '@') ADVANCE(2094); + lookahead == '@') ADVANCE(2035); if (lookahead == '.' || - lookahead == '?') ADVANCE(2096); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2093); + lookahead == '?') ADVANCE(2037); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2034); END_STATE(); - case 2094: + case 2035: ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); - if (lookahead == ',') ADVANCE(2098); + if (lookahead == ',') ADVANCE(2039); if (lookahead == '.' || - lookahead == '?') ADVANCE(2096); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2094); + lookahead == '?') ADVANCE(2037); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2035); END_STATE(); - case 2095: + case 2036: ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); - if (lookahead == ',') ADVANCE(2098); + if (lookahead == ',') ADVANCE(2039); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2096); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2095); + lookahead == '@') ADVANCE(2037); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); END_STATE(); - case 2096: + case 2037: ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); - if (lookahead == ',') ADVANCE(2098); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2096); + if (lookahead == ',') ADVANCE(2039); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2037); END_STATE(); - case 2097: + case 2038: ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2098); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2097); + lookahead == '@') ADVANCE(2039); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2038); END_STATE(); - case 2098: + case 2039: ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2098); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2039); END_STATE(); - case 2099: + case 2040: ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); - if (lookahead == ',') ADVANCE(2104); + if (lookahead == ',') ADVANCE(2045); if (lookahead == '-' || - lookahead == '@') ADVANCE(2100); + lookahead == '@') ADVANCE(2041); if (lookahead == '.' || - lookahead == '?') ADVANCE(2102); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2099); + lookahead == '?') ADVANCE(2043); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2040); END_STATE(); - case 2100: + case 2041: ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); - if (lookahead == ',') ADVANCE(2104); + if (lookahead == ',') ADVANCE(2045); if (lookahead == '.' || - lookahead == '?') ADVANCE(2102); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2100); + lookahead == '?') ADVANCE(2043); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2041); END_STATE(); - case 2101: + case 2042: ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); - if (lookahead == ',') ADVANCE(2104); + if (lookahead == ',') ADVANCE(2045); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2102); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2101); + lookahead == '@') ADVANCE(2043); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2042); END_STATE(); - case 2102: + case 2043: ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); - if (lookahead == ',') ADVANCE(2104); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2102); + if (lookahead == ',') ADVANCE(2045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); - case 2103: + case 2044: ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2104); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2103); + lookahead == '@') ADVANCE(2045); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2044); END_STATE(); - case 2104: + case 2045: ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2104); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2045); END_STATE(); - case 2105: + case 2046: ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); - if (lookahead == ',') ADVANCE(2110); + if (lookahead == ',') ADVANCE(2051); if (lookahead == '-' || - lookahead == '@') ADVANCE(2106); + lookahead == '@') ADVANCE(2047); if (lookahead == '.' || - lookahead == '?') ADVANCE(2108); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2105); + lookahead == '?') ADVANCE(2049); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2046); END_STATE(); - case 2106: + case 2047: ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); - if (lookahead == ',') ADVANCE(2110); + if (lookahead == ',') ADVANCE(2051); if (lookahead == '.' || - lookahead == '?') ADVANCE(2108); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2106); + lookahead == '?') ADVANCE(2049); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2047); END_STATE(); - case 2107: + case 2048: ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); - if (lookahead == ',') ADVANCE(2110); + if (lookahead == ',') ADVANCE(2051); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2108); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2107); + lookahead == '@') ADVANCE(2049); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2048); END_STATE(); - case 2108: + case 2049: ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); - if (lookahead == ',') ADVANCE(2110); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2108); + if (lookahead == ',') ADVANCE(2051); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2049); END_STATE(); - case 2109: + case 2050: ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2110); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2109); + lookahead == '@') ADVANCE(2051); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2050); END_STATE(); - case 2110: + case 2051: ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2110); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2051); END_STATE(); - case 2111: + case 2052: ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); - if (lookahead == ',') ADVANCE(2116); + if (lookahead == ',') ADVANCE(2057); if (lookahead == '-' || - lookahead == '@') ADVANCE(2112); + lookahead == '@') ADVANCE(2053); if (lookahead == '.' || - lookahead == '?') ADVANCE(2114); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2111); + lookahead == '?') ADVANCE(2055); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2052); END_STATE(); - case 2112: + case 2053: ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); - if (lookahead == ',') ADVANCE(2116); + if (lookahead == ',') ADVANCE(2057); if (lookahead == '.' || - lookahead == '?') ADVANCE(2114); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2112); + lookahead == '?') ADVANCE(2055); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2053); END_STATE(); - case 2113: + case 2054: ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); - if (lookahead == ',') ADVANCE(2116); + if (lookahead == ',') ADVANCE(2057); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2114); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2113); + lookahead == '@') ADVANCE(2055); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2054); END_STATE(); - case 2114: + case 2055: ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); - if (lookahead == ',') ADVANCE(2116); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2114); + if (lookahead == ',') ADVANCE(2057); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2055); END_STATE(); - case 2115: + case 2056: ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2116); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2115); + lookahead == '@') ADVANCE(2057); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2056); END_STATE(); - case 2116: + case 2057: ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2116); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2057); END_STATE(); - case 2117: + case 2058: ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); - if (lookahead == ',') ADVANCE(2122); + if (lookahead == ',') ADVANCE(2063); if (lookahead == '-' || - lookahead == '@') ADVANCE(2118); + lookahead == '@') ADVANCE(2059); if (lookahead == '.' || - lookahead == '?') ADVANCE(2120); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2117); + lookahead == '?') ADVANCE(2061); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2058); END_STATE(); - case 2118: + case 2059: ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); - if (lookahead == ',') ADVANCE(2122); + if (lookahead == ',') ADVANCE(2063); if (lookahead == '.' || - lookahead == '?') ADVANCE(2120); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2118); + lookahead == '?') ADVANCE(2061); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2059); END_STATE(); - case 2119: + case 2060: ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); - if (lookahead == ',') ADVANCE(2122); + if (lookahead == ',') ADVANCE(2063); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2120); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2119); + lookahead == '@') ADVANCE(2061); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2060); END_STATE(); - case 2120: + case 2061: ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); - if (lookahead == ',') ADVANCE(2122); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2120); + if (lookahead == ',') ADVANCE(2063); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2061); END_STATE(); - case 2121: + case 2062: ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2122); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2121); + lookahead == '@') ADVANCE(2063); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2062); END_STATE(); - case 2122: + case 2063: ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2122); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2063); END_STATE(); - case 2123: + case 2064: ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); - if (lookahead == ',') ADVANCE(2128); + if (lookahead == ',') ADVANCE(2069); if (lookahead == '-' || - lookahead == '@') ADVANCE(2124); + lookahead == '@') ADVANCE(2065); if (lookahead == '.' || - lookahead == '?') ADVANCE(2126); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2123); + lookahead == '?') ADVANCE(2067); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2064); END_STATE(); - case 2124: + case 2065: ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); - if (lookahead == ',') ADVANCE(2128); + if (lookahead == ',') ADVANCE(2069); if (lookahead == '.' || - lookahead == '?') ADVANCE(2126); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2124); + lookahead == '?') ADVANCE(2067); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2065); END_STATE(); - case 2125: + case 2066: ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); - if (lookahead == ',') ADVANCE(2128); + if (lookahead == ',') ADVANCE(2069); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2126); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2125); + lookahead == '@') ADVANCE(2067); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2066); END_STATE(); - case 2126: + case 2067: ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); - if (lookahead == ',') ADVANCE(2128); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2126); + if (lookahead == ',') ADVANCE(2069); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2067); END_STATE(); - case 2127: + case 2068: ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2128); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2127); + lookahead == '@') ADVANCE(2069); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2068); END_STATE(); - case 2128: + case 2069: ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2128); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2069); END_STATE(); - case 2129: + case 2070: ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); - if (lookahead == ',') ADVANCE(2134); + if (lookahead == ',') ADVANCE(2075); if (lookahead == '-' || - lookahead == '@') ADVANCE(2130); + lookahead == '@') ADVANCE(2071); if (lookahead == '.' || - lookahead == '?') ADVANCE(2132); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2129); + lookahead == '?') ADVANCE(2073); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2070); END_STATE(); - case 2130: + case 2071: ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); - if (lookahead == ',') ADVANCE(2134); + if (lookahead == ',') ADVANCE(2075); if (lookahead == '.' || - lookahead == '?') ADVANCE(2132); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2130); + lookahead == '?') ADVANCE(2073); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2071); END_STATE(); - case 2131: + case 2072: ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); - if (lookahead == ',') ADVANCE(2134); + if (lookahead == ',') ADVANCE(2075); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2132); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2131); + lookahead == '@') ADVANCE(2073); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2072); END_STATE(); - case 2132: + case 2073: ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); - if (lookahead == ',') ADVANCE(2134); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2132); + if (lookahead == ',') ADVANCE(2075); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2073); END_STATE(); - case 2133: + case 2074: ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2134); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2133); + lookahead == '@') ADVANCE(2075); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2074); END_STATE(); - case 2134: + case 2075: ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2134); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2075); END_STATE(); - case 2135: + case 2076: ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); - if (lookahead == ',') ADVANCE(2140); + if (lookahead == ',') ADVANCE(2081); if (lookahead == '-' || - lookahead == '@') ADVANCE(2136); + lookahead == '@') ADVANCE(2077); if (lookahead == '.' || - lookahead == '?') ADVANCE(2138); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2135); + lookahead == '?') ADVANCE(2079); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2076); END_STATE(); - case 2136: + case 2077: ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); - if (lookahead == ',') ADVANCE(2140); + if (lookahead == ',') ADVANCE(2081); if (lookahead == '.' || - lookahead == '?') ADVANCE(2138); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2136); + lookahead == '?') ADVANCE(2079); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); END_STATE(); - case 2137: + case 2078: ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); - if (lookahead == ',') ADVANCE(2140); + if (lookahead == ',') ADVANCE(2081); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2138); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2137); + lookahead == '@') ADVANCE(2079); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2078); END_STATE(); - case 2138: + case 2079: ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); - if (lookahead == ',') ADVANCE(2140); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2138); + if (lookahead == ',') ADVANCE(2081); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2079); END_STATE(); - case 2139: + case 2080: ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2140); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2139); + lookahead == '@') ADVANCE(2081); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2080); END_STATE(); - case 2140: + case 2081: ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2140); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2081); END_STATE(); - case 2141: + case 2082: ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); - if (lookahead == ',') ADVANCE(2146); + if (lookahead == ',') ADVANCE(2087); if (lookahead == '-' || - lookahead == '@') ADVANCE(2142); + lookahead == '@') ADVANCE(2083); if (lookahead == '.' || - lookahead == '?') ADVANCE(2144); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2141); + lookahead == '?') ADVANCE(2085); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2082); END_STATE(); - case 2142: + case 2083: ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); - if (lookahead == ',') ADVANCE(2146); + if (lookahead == ',') ADVANCE(2087); if (lookahead == '.' || - lookahead == '?') ADVANCE(2144); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2142); + lookahead == '?') ADVANCE(2085); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2083); END_STATE(); - case 2143: + case 2084: ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); - if (lookahead == ',') ADVANCE(2146); + if (lookahead == ',') ADVANCE(2087); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2144); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2143); + lookahead == '@') ADVANCE(2085); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2084); END_STATE(); - case 2144: + case 2085: ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); - if (lookahead == ',') ADVANCE(2146); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2144); + if (lookahead == ',') ADVANCE(2087); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2085); END_STATE(); - case 2145: + case 2086: ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2146); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2145); + lookahead == '@') ADVANCE(2087); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2086); END_STATE(); - case 2146: + case 2087: ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2146); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2087); END_STATE(); - case 2147: + case 2088: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2179); + if (lookahead == ',') ADVANCE(2120); if (lookahead == '-' || - lookahead == '@') ADVANCE(2153); + lookahead == '@') ADVANCE(2094); if (lookahead == '.' || - lookahead == '?') ADVANCE(2165); + lookahead == '?') ADVANCE(2106); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2149); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2152); + lookahead == 'i') ADVANCE(2090); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2093); END_STATE(); - case 2148: + case 2089: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2179); + if (lookahead == ',') ADVANCE(2120); if (lookahead == '-' || - lookahead == '@') ADVANCE(2153); + lookahead == '@') ADVANCE(2094); if (lookahead == '.' || - lookahead == '?') ADVANCE(2165); + lookahead == '?') ADVANCE(2106); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2150); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2152); + lookahead == 'i') ADVANCE(2091); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2093); END_STATE(); - case 2149: + case 2090: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2179); + if (lookahead == ',') ADVANCE(2120); if (lookahead == '-' || - lookahead == '@') ADVANCE(2153); + lookahead == '@') ADVANCE(2094); if (lookahead == '.' || - lookahead == '?') ADVANCE(2165); + lookahead == '?') ADVANCE(2106); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2148); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2152); + lookahead == 'n') ADVANCE(2089); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2093); END_STATE(); - case 2150: + case 2091: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2179); + if (lookahead == ',') ADVANCE(2120); if (lookahead == '-' || - lookahead == '@') ADVANCE(2153); + lookahead == '@') ADVANCE(2094); if (lookahead == '.' || - lookahead == '?') ADVANCE(2165); + lookahead == '?') ADVANCE(2106); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2151); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2152); + lookahead == 't') ADVANCE(2092); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2093); END_STATE(); - case 2151: + case 2092: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2179); + if (lookahead == ',') ADVANCE(2120); if (lookahead == '-' || - lookahead == '@') ADVANCE(2153); + lookahead == '@') ADVANCE(2094); if (lookahead == '.' || - lookahead == '?') ADVANCE(2165); + lookahead == '?') ADVANCE(2106); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2152); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2152); + lookahead == 'y') ADVANCE(2093); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2093); END_STATE(); - case 2152: + case 2093: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2179); + if (lookahead == ',') ADVANCE(2120); if (lookahead == '-' || - lookahead == '@') ADVANCE(2153); + lookahead == '@') ADVANCE(2094); if (lookahead == '.' || - lookahead == '?') ADVANCE(2165); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2152); + lookahead == '?') ADVANCE(2106); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2093); END_STATE(); - case 2153: + case 2094: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2179); + if (lookahead == ',') ADVANCE(2120); if (lookahead == '.' || - lookahead == '?') ADVANCE(2165); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2153); + lookahead == '?') ADVANCE(2106); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2094); END_STATE(); - case 2154: + case 2095: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2179); + if (lookahead == ',') ADVANCE(2120); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2158); + lookahead == 'i') ADVANCE(2099); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2165); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2164); + lookahead == '@') ADVANCE(2106); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2105); END_STATE(); - case 2155: + case 2096: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2179); + if (lookahead == ',') ADVANCE(2120); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2160); + lookahead == 'i') ADVANCE(2101); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2165); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2164); + lookahead == '@') ADVANCE(2106); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2105); END_STATE(); - case 2156: + case 2097: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2179); + if (lookahead == ',') ADVANCE(2120); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2159); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2165); + lookahead == 'i') ADVANCE(2100); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2106); END_STATE(); - case 2157: + case 2098: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2179); + if (lookahead == ',') ADVANCE(2120); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2161); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2165); + lookahead == 'i') ADVANCE(2102); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2106); END_STATE(); - case 2158: + case 2099: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2179); + if (lookahead == ',') ADVANCE(2120); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2155); + lookahead == 'n') ADVANCE(2096); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2165); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2164); + lookahead == '@') ADVANCE(2106); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2105); END_STATE(); - case 2159: + case 2100: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2179); + if (lookahead == ',') ADVANCE(2120); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2157); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2165); + lookahead == 'n') ADVANCE(2098); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2106); END_STATE(); - case 2160: + case 2101: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2179); + if (lookahead == ',') ADVANCE(2120); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2163); + lookahead == 't') ADVANCE(2104); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2165); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2164); + lookahead == '@') ADVANCE(2106); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2105); END_STATE(); - case 2161: + case 2102: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2179); + if (lookahead == ',') ADVANCE(2120); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2162); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2165); + lookahead == 't') ADVANCE(2103); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2106); END_STATE(); - case 2162: + case 2103: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2179); + if (lookahead == ',') ADVANCE(2120); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2165); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2165); + lookahead == 'y') ADVANCE(2106); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2106); END_STATE(); - case 2163: + case 2104: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2179); + if (lookahead == ',') ADVANCE(2120); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2164); + lookahead == 'y') ADVANCE(2105); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2165); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2164); + lookahead == '@') ADVANCE(2106); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2105); END_STATE(); - case 2164: + case 2105: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2179); + if (lookahead == ',') ADVANCE(2120); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2165); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2164); + lookahead == '@') ADVANCE(2106); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2105); END_STATE(); - case 2165: + case 2106: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2179); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2165); + if (lookahead == ',') ADVANCE(2120); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2106); END_STATE(); - case 2166: + case 2107: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2168); + lookahead == 'f') ADVANCE(2109); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2179); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2178); + lookahead == '@') ADVANCE(2120); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2119); END_STATE(); - case 2167: + case 2108: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2170); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2179); + lookahead == 'f') ADVANCE(2111); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2120); END_STATE(); - case 2168: + case 2109: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2172); + lookahead == 'i') ADVANCE(2113); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2179); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2178); + lookahead == '@') ADVANCE(2120); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2119); END_STATE(); - case 2169: + case 2110: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2174); + lookahead == 'i') ADVANCE(2115); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2179); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2178); + lookahead == '@') ADVANCE(2120); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2119); END_STATE(); - case 2170: + case 2111: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2173); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2179); + lookahead == 'i') ADVANCE(2114); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2120); END_STATE(); - case 2171: + case 2112: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2175); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2179); + lookahead == 'i') ADVANCE(2116); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2120); END_STATE(); - case 2172: + case 2113: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2169); + lookahead == 'n') ADVANCE(2110); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2179); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2178); + lookahead == '@') ADVANCE(2120); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2119); END_STATE(); - case 2173: + case 2114: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2171); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2179); + lookahead == 'n') ADVANCE(2112); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2120); END_STATE(); - case 2174: + case 2115: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2177); + lookahead == 't') ADVANCE(2118); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2179); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2178); + lookahead == '@') ADVANCE(2120); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2119); END_STATE(); - case 2175: + case 2116: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2176); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2179); + lookahead == 't') ADVANCE(2117); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2120); END_STATE(); - case 2176: + case 2117: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2179); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2179); + lookahead == 'y') ADVANCE(2120); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2120); END_STATE(); - case 2177: + case 2118: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2178); + lookahead == 'y') ADVANCE(2119); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2179); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2178); + lookahead == '@') ADVANCE(2120); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2119); END_STATE(); - case 2178: + case 2119: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2179); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2178); + lookahead == '@') ADVANCE(2120); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2119); END_STATE(); - case 2179: + case 2120: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2179); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2120); END_STATE(); - case 2180: + case 2121: ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); - if (lookahead == ',') ADVANCE(2185); + if (lookahead == ',') ADVANCE(2126); if (lookahead == '-' || - lookahead == '@') ADVANCE(2181); + lookahead == '@') ADVANCE(2122); if (lookahead == '.' || - lookahead == '?') ADVANCE(2183); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2180); + lookahead == '?') ADVANCE(2124); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2121); END_STATE(); - case 2181: + case 2122: ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); - if (lookahead == ',') ADVANCE(2185); + if (lookahead == ',') ADVANCE(2126); if (lookahead == '.' || - lookahead == '?') ADVANCE(2183); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2181); + lookahead == '?') ADVANCE(2124); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2122); END_STATE(); - case 2182: + case 2123: ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); - if (lookahead == ',') ADVANCE(2185); + if (lookahead == ',') ADVANCE(2126); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2183); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2182); + lookahead == '@') ADVANCE(2124); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2123); END_STATE(); - case 2183: + case 2124: ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); - if (lookahead == ',') ADVANCE(2185); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2183); + if (lookahead == ',') ADVANCE(2126); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2124); END_STATE(); - case 2184: + case 2125: ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2185); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2184); + lookahead == '@') ADVANCE(2126); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2125); END_STATE(); - case 2185: + case 2126: ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2185); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2126); END_STATE(); - case 2186: + case 2127: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == ',') ADVANCE(2191); + if (lookahead == ',') ADVANCE(2132); if (lookahead == '-' || - lookahead == '@') ADVANCE(2187); + lookahead == '@') ADVANCE(2128); if (lookahead == '.' || - lookahead == '?') ADVANCE(2189); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2186); + lookahead == '?') ADVANCE(2130); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2127); END_STATE(); - case 2187: + case 2128: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == ',') ADVANCE(2191); + if (lookahead == ',') ADVANCE(2132); if (lookahead == '.' || - lookahead == '?') ADVANCE(2189); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2187); + lookahead == '?') ADVANCE(2130); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2128); END_STATE(); - case 2188: + case 2129: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == ',') ADVANCE(2191); + if (lookahead == ',') ADVANCE(2132); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2189); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2188); + lookahead == '@') ADVANCE(2130); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2129); END_STATE(); - case 2189: + case 2130: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == ',') ADVANCE(2191); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2189); + if (lookahead == ',') ADVANCE(2132); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2130); END_STATE(); - case 2190: + case 2131: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2191); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2190); + lookahead == '@') ADVANCE(2132); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2131); END_STATE(); - case 2191: + case 2132: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2191); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2132); END_STATE(); - case 2192: + case 2133: ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); - if (lookahead == ',') ADVANCE(2197); + if (lookahead == ',') ADVANCE(2138); if (lookahead == '-' || - lookahead == '@') ADVANCE(2193); + lookahead == '@') ADVANCE(2134); if (lookahead == '.' || - lookahead == '?') ADVANCE(2195); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2192); + lookahead == '?') ADVANCE(2136); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2133); END_STATE(); - case 2193: + case 2134: ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); - if (lookahead == ',') ADVANCE(2197); + if (lookahead == ',') ADVANCE(2138); if (lookahead == '.' || - lookahead == '?') ADVANCE(2195); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2193); + lookahead == '?') ADVANCE(2136); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2134); END_STATE(); - case 2194: + case 2135: ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); - if (lookahead == ',') ADVANCE(2197); + if (lookahead == ',') ADVANCE(2138); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2195); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2194); + lookahead == '@') ADVANCE(2136); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2135); END_STATE(); - case 2195: + case 2136: ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); - if (lookahead == ',') ADVANCE(2197); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2195); + if (lookahead == ',') ADVANCE(2138); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2136); END_STATE(); - case 2196: + case 2137: ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2197); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2196); + lookahead == '@') ADVANCE(2138); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2137); END_STATE(); - case 2197: + case 2138: ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2197); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2138); END_STATE(); - case 2198: + case 2139: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == ',') ADVANCE(2217); - if (lookahead == 'e') ADVANCE(2200); + if (lookahead == ',') ADVANCE(2158); + if (lookahead == 'e') ADVANCE(2141); if (lookahead == '.' || - lookahead == '?') ADVANCE(2207); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2205); + lookahead == '?') ADVANCE(2148); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2146); END_STATE(); - case 2199: + case 2140: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == ',') ADVANCE(2217); - if (lookahead == 'e') ADVANCE(2201); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2207); + if (lookahead == ',') ADVANCE(2158); + if (lookahead == 'e') ADVANCE(2142); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2148); END_STATE(); - case 2200: + case 2141: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == ',') ADVANCE(2217); - if (lookahead == 'n') ADVANCE(2202); + if (lookahead == ',') ADVANCE(2158); + if (lookahead == 'n') ADVANCE(2143); if (lookahead == '.' || - lookahead == '?') ADVANCE(2207); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2205); + lookahead == '?') ADVANCE(2148); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2146); END_STATE(); - case 2201: + case 2142: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == ',') ADVANCE(2217); - if (lookahead == 'n') ADVANCE(2203); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2207); + if (lookahead == ',') ADVANCE(2158); + if (lookahead == 'n') ADVANCE(2144); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2148); END_STATE(); - case 2202: + case 2143: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == ',') ADVANCE(2217); - if (lookahead == 'v') ADVANCE(2955); + if (lookahead == ',') ADVANCE(2158); + if (lookahead == 'v') ADVANCE(2896); if (lookahead == '.' || - lookahead == '?') ADVANCE(2207); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2205); + lookahead == '?') ADVANCE(2148); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2146); END_STATE(); - case 2203: + case 2144: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == ',') ADVANCE(2217); - if (lookahead == 'v') ADVANCE(2957); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2207); + if (lookahead == ',') ADVANCE(2158); + if (lookahead == 'v') ADVANCE(2898); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2148); END_STATE(); - case 2204: + case 2145: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == ',') ADVANCE(2217); + if (lookahead == ',') ADVANCE(2158); if (lookahead == '-' || - lookahead == '@') ADVANCE(2205); + lookahead == '@') ADVANCE(2146); if (lookahead == '.' || - lookahead == '?') ADVANCE(2207); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2204); + lookahead == '?') ADVANCE(2148); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2145); END_STATE(); - case 2205: + case 2146: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == ',') ADVANCE(2217); + if (lookahead == ',') ADVANCE(2158); if (lookahead == '.' || - lookahead == '?') ADVANCE(2207); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2205); + lookahead == '?') ADVANCE(2148); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2146); END_STATE(); - case 2206: + case 2147: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == ',') ADVANCE(2217); + if (lookahead == ',') ADVANCE(2158); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2207); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2206); + lookahead == '@') ADVANCE(2148); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2147); END_STATE(); - case 2207: + case 2148: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == ',') ADVANCE(2217); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2207); + if (lookahead == ',') ADVANCE(2158); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2148); END_STATE(); - case 2208: + case 2149: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == '-') ADVANCE(2211); + if (lookahead == '-') ADVANCE(2152); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2217); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2216); + lookahead == '@') ADVANCE(2158); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2157); END_STATE(); - case 2209: + case 2150: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == '-') ADVANCE(2211); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2217); + if (lookahead == '-') ADVANCE(2152); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2158); END_STATE(); - case 2210: + case 2151: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == 'e') ADVANCE(2212); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2217); + if (lookahead == 'e') ADVANCE(2153); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2158); END_STATE(); - case 2211: + case 2152: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == 'e') ADVANCE(2213); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2217); + if (lookahead == 'e') ADVANCE(2154); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2158); END_STATE(); - case 2212: + case 2153: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == 'n') ADVANCE(2215); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2217); + if (lookahead == 'n') ADVANCE(2156); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2158); END_STATE(); - case 2213: + case 2154: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == 'n') ADVANCE(2214); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2217); + if (lookahead == 'n') ADVANCE(2155); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2158); END_STATE(); - case 2214: + case 2155: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == 'v') ADVANCE(1966); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2217); + if (lookahead == 'v') ADVANCE(1907); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2158); END_STATE(); - case 2215: + case 2156: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == 'v') ADVANCE(2958); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2217); + if (lookahead == 'v') ADVANCE(2899); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2158); END_STATE(); - case 2216: + case 2157: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2217); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2216); + lookahead == '@') ADVANCE(2158); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2157); END_STATE(); - case 2217: + case 2158: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2217); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2158); END_STATE(); - case 2218: + case 2159: ACCEPT_TOKEN(anon_sym_true); END_STATE(); - case 2219: + case 2160: ACCEPT_TOKEN(anon_sym_true); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 2220: + case 2161: ACCEPT_TOKEN(anon_sym_true); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); - case 2221: + case 2162: ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); - case 2222: + case 2163: ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 2223: + case 2164: ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 2224: + case 2165: ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); - case 2225: + case 2166: ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 2226: + case 2167: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '+') ADVANCE(2246); - if (lookahead == '>') ADVANCE(3711); - if (lookahead == 'r') ADVANCE(2250); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + if (lookahead == '+') ADVANCE(2187); + if (lookahead == '>') ADVANCE(3647); + if (lookahead == 'r') ADVANCE(2191); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); - case 2227: + case 2168: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '+') ADVANCE(2243); - if (lookahead == '>') ADVANCE(3716); - if (lookahead == 'u') ADVANCE(2256); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + if (lookahead == '+') ADVANCE(2184); + if (lookahead == '>') ADVANCE(3651); + if (lookahead == 'u') ADVANCE(2197); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); - case 2228: + case 2169: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '+') ADVANCE(2247); - if (lookahead == '>') ADVANCE(3701); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + if (lookahead == '+') ADVANCE(2188); + if (lookahead == '>') ADVANCE(3639); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); - case 2229: + case 2170: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '+') ADVANCE(2242); - if (lookahead == '>') ADVANCE(3706); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + if (lookahead == '+') ADVANCE(2183); + if (lookahead == '>') ADVANCE(3643); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); - case 2230: + case 2171: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '+') ADVANCE(2248); - if (lookahead == '>') ADVANCE(924); - if (lookahead == 'r') ADVANCE(2252); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + if (lookahead == '+') ADVANCE(2189); + if (lookahead == '>') ADVANCE(863); + if (lookahead == 'r') ADVANCE(2193); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); - case 2231: + case 2172: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '+') ADVANCE(2244); - if (lookahead == '>') ADVANCE(925); - if (lookahead == 'u') ADVANCE(2258); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + if (lookahead == '+') ADVANCE(2185); + if (lookahead == '>') ADVANCE(864); + if (lookahead == 'u') ADVANCE(2199); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); - case 2232: + case 2173: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '+') ADVANCE(2249); - if (lookahead == '>') ADVANCE(927); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + if (lookahead == '+') ADVANCE(2190); + if (lookahead == '>') ADVANCE(866); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); - case 2233: + case 2174: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '+') ADVANCE(2245); - if (lookahead == '>') ADVANCE(929); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + if (lookahead == '+') ADVANCE(2186); + if (lookahead == '>') ADVANCE(868); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); - case 2234: + case 2175: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '>') ADVANCE(3736); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + if (lookahead == '>') ADVANCE(3667); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); - case 2235: + case 2176: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '>') ADVANCE(3731); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + if (lookahead == '>') ADVANCE(3663); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); - case 2236: + case 2177: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '>') ADVANCE(3721); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + if (lookahead == '>') ADVANCE(3655); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); - case 2237: + case 2178: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '>') ADVANCE(3726); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + if (lookahead == '>') ADVANCE(3659); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); - case 2238: + case 2179: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '>') ADVANCE(926); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + if (lookahead == '>') ADVANCE(865); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); - case 2239: + case 2180: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '>') ADVANCE(928); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + if (lookahead == '>') ADVANCE(867); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); - case 2240: + case 2181: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '>') ADVANCE(930); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + if (lookahead == '>') ADVANCE(869); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); - case 2241: + case 2182: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '>') ADVANCE(931); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + if (lookahead == '>') ADVANCE(870); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); - case 2242: + case 2183: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'e') ADVANCE(2251); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + if (lookahead == 'e') ADVANCE(2192); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); - case 2243: + case 2184: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'e') ADVANCE(2235); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + if (lookahead == 'e') ADVANCE(2176); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); - case 2244: + case 2185: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'e') ADVANCE(2239); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + if (lookahead == 'e') ADVANCE(2180); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); - case 2245: + case 2186: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'e') ADVANCE(2255); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + if (lookahead == 'e') ADVANCE(2196); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); - case 2246: + case 2187: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'o') ADVANCE(2234); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + if (lookahead == 'o') ADVANCE(2175); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); - case 2247: + case 2188: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'o') ADVANCE(2260); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + if (lookahead == 'o') ADVANCE(2201); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); - case 2248: + case 2189: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'o') ADVANCE(2238); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + if (lookahead == 'o') ADVANCE(2179); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); - case 2249: + case 2190: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'o') ADVANCE(2261); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + if (lookahead == 'o') ADVANCE(2202); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); - case 2250: + case 2191: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'r') ADVANCE(2228); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + if (lookahead == 'r') ADVANCE(2169); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); - case 2251: + case 2192: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'r') ADVANCE(2253); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + if (lookahead == 'r') ADVANCE(2194); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); - case 2252: + case 2193: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'r') ADVANCE(2232); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + if (lookahead == 'r') ADVANCE(2173); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); - case 2253: + case 2194: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'r') ADVANCE(2237); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + if (lookahead == 'r') ADVANCE(2178); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); - case 2254: + case 2195: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'r') ADVANCE(2241); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + if (lookahead == 'r') ADVANCE(2182); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); - case 2255: + case 2196: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'r') ADVANCE(2254); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + if (lookahead == 'r') ADVANCE(2195); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); - case 2256: + case 2197: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 't') ADVANCE(2229); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + if (lookahead == 't') ADVANCE(2170); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); - case 2257: + case 2198: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 't') ADVANCE(2236); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + if (lookahead == 't') ADVANCE(2177); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); - case 2258: + case 2199: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 't') ADVANCE(2233); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + if (lookahead == 't') ADVANCE(2174); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); - case 2259: + case 2200: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 't') ADVANCE(2240); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + if (lookahead == 't') ADVANCE(2181); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); - case 2260: + case 2201: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'u') ADVANCE(2257); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + if (lookahead == 'u') ADVANCE(2198); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); - case 2261: + case 2202: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'u') ADVANCE(2259); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + if (lookahead == 'u') ADVANCE(2200); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); - case 2262: + case 2203: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); - case 2263: + case 2204: ACCEPT_TOKEN(anon_sym_false); END_STATE(); - case 2264: + case 2205: ACCEPT_TOKEN(anon_sym_false); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 2265: + case 2206: ACCEPT_TOKEN(anon_sym_false); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); - case 2266: + case 2207: ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); - case 2267: + case 2208: ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 2268: + case 2209: ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 2269: + case 2210: ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); - case 2270: + case 2211: ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 2271: + case 2212: ACCEPT_TOKEN(anon_sym_null); END_STATE(); - case 2272: + case 2213: ACCEPT_TOKEN(anon_sym_null); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 2273: + case 2214: ACCEPT_TOKEN(anon_sym_null); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); - case 2274: + case 2215: ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); - case 2275: + case 2216: ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 2276: + case 2217: ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 2277: + case 2218: ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); - case 2278: + case 2219: ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 2279: + case 2220: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); END_STATE(); - case 2280: + case 2221: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2709); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + lookahead == 'i') ADVANCE(2650); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 2281: + case 2222: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1639); + lookahead == 'i') ADVANCE(1580); END_STATE(); - case 2282: + case 2223: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1930); + lookahead == 'i') ADVANCE(1871); END_STATE(); - case 2283: + case 2224: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1387); + lookahead == 'i') ADVANCE(1328); END_STATE(); - case 2284: + case 2225: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4022); + lookahead == 'i') ADVANCE(3861); END_STATE(); - case 2285: + case 2226: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4528); + lookahead == 'i') ADVANCE(4326); END_STATE(); - case 2286: + case 2227: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4196); + lookahead == 'i') ADVANCE(4587); END_STATE(); - case 2287: + case 2228: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4789); + lookahead == 'i') ADVANCE(4013); END_STATE(); - case 2288: + case 2229: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4634); + lookahead == 'i') ADVANCE(4432); END_STATE(); - case 2289: + case 2230: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(967); + lookahead == 'i') ADVANCE(906); END_STATE(); - case 2290: + case 2231: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 2291: + case 2232: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); END_STATE(); - case 2292: + case 2233: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3691); + lookahead == 'i') ADVANCE(3629); END_STATE(); - case 2293: + case 2234: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4478); + lookahead == 'i') ADVANCE(4276); END_STATE(); - case 2294: + case 2235: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(965); + lookahead == 'i') ADVANCE(904); END_STATE(); - case 2295: + case 2236: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4832); + lookahead == 'i') ADVANCE(4630); END_STATE(); - case 2296: + case 2237: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4530); + lookahead == 'i') ADVANCE(4328); END_STATE(); - case 2297: + case 2238: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4198); + lookahead == 'i') ADVANCE(4589); END_STATE(); - case 2298: + case 2239: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4791); + lookahead == 'i') ADVANCE(4015); END_STATE(); - case 2299: + case 2240: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4636); + lookahead == 'i') ADVANCE(4434); END_STATE(); - case 2300: + case 2241: ACCEPT_TOKEN(aux_sym_cmd_identifier_token40); END_STATE(); - case 2301: + case 2242: ACCEPT_TOKEN(aux_sym_cmd_identifier_token40); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 2302: + case 2243: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '+', 2330, - '-', 2332, - '>', 3711, - 'I', 2363, - '_', 2332, - 'i', 2363, - 'r', 2349, - 'B', 3524, - 'b', 3524, + '+', 2271, + '-', 2273, + '>', 3647, + 'I', 2304, + '_', 2273, + 'i', 2304, + 'r', 2290, + 'B', 3462, + 'b', 3462, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2303: + case 2244: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(2345); - if (lookahead == '>') ADVANCE(3701); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == '+') ADVANCE(2286); + if (lookahead == '>') ADVANCE(3639); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2304: + case 2245: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(2338); - if (lookahead == '>') ADVANCE(3716); - if (lookahead == 'u') ADVANCE(2356); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == '+') ADVANCE(2279); + if (lookahead == '>') ADVANCE(3651); + if (lookahead == 'u') ADVANCE(2297); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2305: + case 2246: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(2344); - if (lookahead == '>') ADVANCE(3711); - if (lookahead == 'I') ADVANCE(2363); - if (lookahead == 'i') ADVANCE(2363); - if (lookahead == 'r') ADVANCE(2349); + if (lookahead == '+') ADVANCE(2285); + if (lookahead == '>') ADVANCE(3647); + if (lookahead == 'I') ADVANCE(2304); + if (lookahead == 'i') ADVANCE(2304); + if (lookahead == 'r') ADVANCE(2290); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2306: + case 2247: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(2344); - if (lookahead == '>') ADVANCE(3711); - if (lookahead == 'r') ADVANCE(2349); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == '+') ADVANCE(2285); + if (lookahead == '>') ADVANCE(3647); + if (lookahead == 'r') ADVANCE(2290); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2307: + case 2248: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(2339); - if (lookahead == '>') ADVANCE(3706); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == '+') ADVANCE(2280); + if (lookahead == '>') ADVANCE(3643); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2308: + case 2249: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(2346); - if (lookahead == '>') ADVANCE(924); - if (lookahead == 'I') ADVANCE(2363); - if (lookahead == 'i') ADVANCE(2363); - if (lookahead == 'r') ADVANCE(2350); + if (lookahead == '+') ADVANCE(2287); + if (lookahead == '>') ADVANCE(863); + if (lookahead == 'I') ADVANCE(2304); + if (lookahead == 'i') ADVANCE(2304); + if (lookahead == 'r') ADVANCE(2291); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2309: + case 2250: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(2346); - if (lookahead == '>') ADVANCE(924); - if (lookahead == 'r') ADVANCE(2350); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == '+') ADVANCE(2287); + if (lookahead == '>') ADVANCE(863); + if (lookahead == 'r') ADVANCE(2291); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2310: + case 2251: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '+', 2331, - '-', 2332, - '>', 924, - 'I', 2363, - '_', 2332, - 'i', 2363, - 'r', 2350, - 'B', 3524, - 'b', 3524, + '+', 2272, + '-', 2273, + '>', 863, + 'I', 2304, + '_', 2273, + 'i', 2304, + 'r', 2291, + 'B', 3462, + 'b', 3462, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2311: + case 2252: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(2340); - if (lookahead == '>') ADVANCE(925); - if (lookahead == 'u') ADVANCE(2358); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == '+') ADVANCE(2281); + if (lookahead == '>') ADVANCE(864); + if (lookahead == 'u') ADVANCE(2299); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2312: + case 2253: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(2341); - if (lookahead == '>') ADVANCE(929); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == '+') ADVANCE(2282); + if (lookahead == '>') ADVANCE(868); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2313: + case 2254: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(2347); - if (lookahead == '>') ADVANCE(927); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == '+') ADVANCE(2288); + if (lookahead == '>') ADVANCE(866); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2314: + case 2255: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == ',') ADVANCE(2364); - if (lookahead == ':') ADVANCE(4073); - if (lookahead == '_') ADVANCE(2314); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4063); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3461); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2315); + if (lookahead == ',') ADVANCE(2305); + if (lookahead == ':') ADVANCE(3906); + if (lookahead == '_') ADVANCE(2255); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3896); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2256); END_STATE(); - case 2315: + case 2256: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == ',') ADVANCE(2364); - if (lookahead == ':') ADVANCE(4073); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4063); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2315); + if (lookahead == ',') ADVANCE(2305); + if (lookahead == ':') ADVANCE(3906); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3896); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2256); END_STATE(); - case 2316: + case 2257: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '.') ADVANCE(3377); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == '.') ADVANCE(3315); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2317: + case 2258: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(3736); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == '>') ADVANCE(3667); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2318: + case 2259: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(3731); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == '>') ADVANCE(3663); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2319: + case 2260: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(3721); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == '>') ADVANCE(3655); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2320: + case 2261: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(3726); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == '>') ADVANCE(3659); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2321: + case 2262: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(926); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == '>') ADVANCE(865); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2322: + case 2263: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(928); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == '>') ADVANCE(867); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2323: + case 2264: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(930); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == '>') ADVANCE(869); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2324: + case 2265: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(931); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == '>') ADVANCE(870); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2325: + case 2266: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(2363); - if (lookahead == '_') ADVANCE(2332); - if (lookahead == 'i') ADVANCE(2363); + if (lookahead == 'I') ADVANCE(2304); + if (lookahead == '_') ADVANCE(2273); + if (lookahead == 'i') ADVANCE(2304); if (lookahead == '+' || - lookahead == '-') ADVANCE(2332); + lookahead == '-') ADVANCE(2273); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + lookahead == 'b') ADVANCE(3462); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2326: + case 2267: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(2363); - if (lookahead == '_') ADVANCE(2332); - if (lookahead == 'i') ADVANCE(2335); + if (lookahead == 'I') ADVANCE(2304); + if (lookahead == '_') ADVANCE(2273); + if (lookahead == 'i') ADVANCE(2276); if (lookahead == '+' || - lookahead == '-') ADVANCE(2332); + lookahead == '-') ADVANCE(2273); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + lookahead == 'b') ADVANCE(3462); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2327: + case 2268: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(2363); - if (lookahead == 'i') ADVANCE(2363); + if (lookahead == 'I') ADVANCE(2304); + if (lookahead == 'i') ADVANCE(2304); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2328: + case 2269: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(2363); - if (lookahead == 'i') ADVANCE(2335); + if (lookahead == 'I') ADVANCE(2304); + if (lookahead == 'i') ADVANCE(2276); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2329: + case 2270: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(2363); - if (lookahead == 'i') ADVANCE(2343); - if (lookahead == 's') ADVANCE(3529); + if (lookahead == 'I') ADVANCE(2304); + if (lookahead == 'i') ADVANCE(2284); + if (lookahead == 's') ADVANCE(3467); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2330: + case 2271: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '_') ADVANCE(2332); - if (lookahead == 'o') ADVANCE(2317); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == '_') ADVANCE(2273); + if (lookahead == 'o') ADVANCE(2258); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2331: + case 2272: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '_') ADVANCE(2332); - if (lookahead == 'o') ADVANCE(2321); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == '_') ADVANCE(2273); + if (lookahead == 'o') ADVANCE(2262); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2332: + case 2273: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '_') ADVANCE(2332); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == '_') ADVANCE(2273); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2333: + case 2274: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '_') ADVANCE(2333); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == '_') ADVANCE(2274); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2334: + case 2275: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'a') ADVANCE(2362); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == 'a') ADVANCE(2303); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2335: + case 2276: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2336: + case 2277: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'c') ADVANCE(3529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == 'c') ADVANCE(3467); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2337: + case 2278: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(2336); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == 'e') ADVANCE(2277); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2338: + case 2279: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(2318); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == 'e') ADVANCE(2259); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2339: + case 2280: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(2351); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == 'e') ADVANCE(2292); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2340: + case 2281: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(2322); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == 'e') ADVANCE(2263); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2341: + case 2282: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(2354); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == 'e') ADVANCE(2295); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2342: + case 2283: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'k') ADVANCE(3529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == 'k') ADVANCE(3467); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2343: + case 2284: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(3529); + if (lookahead == 'n') ADVANCE(3467); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2344: + case 2285: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(2317); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == 'o') ADVANCE(2258); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2345: + case 2286: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(2360); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == 'o') ADVANCE(2301); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2346: + case 2287: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(2321); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == 'o') ADVANCE(2262); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2347: + case 2288: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(2361); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == 'o') ADVANCE(2302); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2348: + case 2289: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == 'r') ADVANCE(3467); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2349: + case 2290: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(2303); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == 'r') ADVANCE(2244); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2350: + case 2291: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(2313); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == 'r') ADVANCE(2254); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2351: + case 2292: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(2352); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == 'r') ADVANCE(2293); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2352: + case 2293: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(2320); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == 'r') ADVANCE(2261); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2353: + case 2294: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(2324); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == 'r') ADVANCE(2265); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2354: + case 2295: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(2353); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == 'r') ADVANCE(2294); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2355: + case 2296: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 's') ADVANCE(3529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == 's') ADVANCE(3467); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2356: + case 2297: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(2307); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == 't') ADVANCE(2248); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2357: + case 2298: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(2319); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == 't') ADVANCE(2260); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2358: + case 2299: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(2312); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == 't') ADVANCE(2253); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2359: + case 2300: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(2323); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == 't') ADVANCE(2264); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2360: + case 2301: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'u') ADVANCE(2357); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == 'u') ADVANCE(2298); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2361: + case 2302: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'u') ADVANCE(2359); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == 'u') ADVANCE(2300); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2362: + case 2303: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'y') ADVANCE(3529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if (lookahead == 'y') ADVANCE(3467); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2363: + case 2304: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2364: + case 2305: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4218); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2364); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4035); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2305); END_STATE(); - case 2365: + case 2306: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2365); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2306); END_STATE(); - case 2366: + case 2307: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(3347); + if (lookahead == '\n') ADVANCE(3285); if (lookahead == '\r') ADVANCE(5); - if (lookahead == '/') ADVANCE(2367); - if (lookahead == '=') ADVANCE(1172); + if (lookahead == '/') ADVANCE(2308); + if (lookahead == '=') ADVANCE(1113); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3299); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2720); + lookahead == ' ') ADVANCE(3237); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2661); END_STATE(); - case 2367: + case 2308: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(3349); + if (lookahead == '\n') ADVANCE(3287); if (lookahead == '\r') ADVANCE(9); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3303); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + lookahead == ' ') ADVANCE(3241); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 2368: + case 2309: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(3348); + if (lookahead == '\n') ADVANCE(3286); if (lookahead == '\r') ADVANCE(15); - if (lookahead == 'u') ADVANCE(2548); + if (lookahead == 'u') ADVANCE(2489); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3301); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + lookahead == ' ') ADVANCE(3239); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 2369: + case 2310: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2420); - if (lookahead == '-') ADVANCE(4111); - if (lookahead == 'I') ADVANCE(2704); - if (lookahead == '_') ADVANCE(2420); - if (lookahead == 'i') ADVANCE(2704); + if (lookahead == '+') ADVANCE(2361); + if (lookahead == '-') ADVANCE(4390); + if (lookahead == 'I') ADVANCE(2645); + if (lookahead == '_') ADVANCE(2361); + if (lookahead == 'i') ADVANCE(2645); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3528); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3446); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + lookahead == 'b') ADVANCE(3466); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3384); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 2370: + case 2311: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2420); - if (lookahead == '-') ADVANCE(4111); - if (lookahead == 'I') ADVANCE(2704); - if (lookahead == '_') ADVANCE(2420); - if (lookahead == 'i') ADVANCE(2451); + if (lookahead == '+') ADVANCE(2361); + if (lookahead == '-') ADVANCE(4390); + if (lookahead == 'I') ADVANCE(2645); + if (lookahead == '_') ADVANCE(2361); + if (lookahead == 'i') ADVANCE(2392); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3528); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3446); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + lookahead == 'b') ADVANCE(3466); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3384); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 2371: + case 2312: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2420); - if (lookahead == '-') ADVANCE(4593); - if (lookahead == 'I') ADVANCE(2704); - if (lookahead == '_') ADVANCE(2420); - if (lookahead == 'i') ADVANCE(2704); + if (lookahead == '+') ADVANCE(2361); + if (lookahead == '-') ADVANCE(4390); + if (lookahead == '_') ADVANCE(2361); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3384); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2313: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '+') ADVANCE(2361); + if (lookahead == '-') ADVANCE(3944); + if (lookahead == 'I') ADVANCE(2645); + if (lookahead == '_') ADVANCE(2361); + if (lookahead == 'i') ADVANCE(2645); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3528); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3446); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + lookahead == 'b') ADVANCE(3466); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3384); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 2372: + case 2314: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2420); - if (lookahead == '-') ADVANCE(4593); - if (lookahead == 'I') ADVANCE(2704); - if (lookahead == '_') ADVANCE(2420); - if (lookahead == 'i') ADVANCE(2451); + if (lookahead == '+') ADVANCE(2361); + if (lookahead == '-') ADVANCE(3944); + if (lookahead == 'I') ADVANCE(2645); + if (lookahead == '_') ADVANCE(2361); + if (lookahead == 'i') ADVANCE(2392); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3528); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3446); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + lookahead == 'b') ADVANCE(3466); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3384); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2315: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '+') ADVANCE(2432); + if (lookahead == '>') ADVANCE(3651); + if (lookahead == 'n') ADVANCE(2437); + if (lookahead == 'r') ADVANCE(3213); + if (lookahead == 'u') ADVANCE(2598); + if (lookahead == 'v') ADVANCE(2447); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2316: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '+') ADVANCE(2512); + if (lookahead == '>') ADVANCE(3647); + if (lookahead == 'l') ADVANCE(2585); + if (lookahead == 'n') ADVANCE(2406); + if (lookahead == 'r') ADVANCE(2570); + if (lookahead == 'x') ADVANCE(2533); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2317: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '+') ADVANCE(2515); + if (lookahead == '>') ADVANCE(3639); + if (lookahead == 'o') ADVANCE(2542); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2318: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '+') ADVANCE(2515); + if (lookahead == '>') ADVANCE(3639); + if (lookahead == 'o') ADVANCE(2543); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2319: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '+') ADVANCE(2517); + if (lookahead == '>') ADVANCE(863); + if (lookahead == 'l') ADVANCE(2589); + if (lookahead == 'r') ADVANCE(2548); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2320: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '+') ADVANCE(2436); + if (lookahead == '>') ADVANCE(864); + if (lookahead == 'n') ADVANCE(2441); + if (lookahead == 'r') ADVANCE(3214); + if (lookahead == 'u') ADVANCE(2611); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2321: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '+') ADVANCE(2522); + if (lookahead == '>') ADVANCE(866); + if (lookahead == 'o') ADVANCE(2546); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2322: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '+') ADVANCE(2443); + if (lookahead == '>') ADVANCE(3643); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2323: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '+') ADVANCE(2448); + if (lookahead == '>') ADVANCE(868); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2324: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(3588); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3231); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2325: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(3596); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2326: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(3613); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2327: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(3598); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2328: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(3578); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2329: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(1169); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2330: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(1226); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3231); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2331: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(1256); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2332: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(1316); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2333: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(1335); + if (lookahead == '_') ADVANCE(2370); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2374); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2334: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(1263); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2335: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(1181); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2336: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(768); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2337: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(651); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2338: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(748); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2339: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(922); + if (lookahead == '_') ADVANCE(2370); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2340: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(3614); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2341: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(3601); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2342: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(1317); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2343: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(1267); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2344: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(771); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2345: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(3615); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2346: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(1318); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2347: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(854); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2348: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '>') ADVANCE(3667); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2349: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '>') ADVANCE(3663); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2350: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '>') ADVANCE(3655); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2351: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '>') ADVANCE(3659); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2352: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '>') ADVANCE(865); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2353: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '>') ADVANCE(867); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2354: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '>') ADVANCE(869); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2355: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '>') ADVANCE(870); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2356: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'I') ADVANCE(2645); + if (lookahead == 'i') ADVANCE(2645); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3466); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2357: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'I') ADVANCE(2645); + if (lookahead == 'i') ADVANCE(2392); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3466); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2358: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'I') ADVANCE(2645); + if (lookahead == 'i') ADVANCE(2501); + if (lookahead == 's') ADVANCE(3471); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3466); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2359: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N') ADVANCE(2646); + if (lookahead == 'f') ADVANCE(3089); + if (lookahead == 'm') ADVANCE(2534); + if (lookahead == 'n') ADVANCE(3049); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2360: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '_') ADVANCE(2361); + if (lookahead == 'o') ADVANCE(2348); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3384); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2361: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '_') ADVANCE(2361); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3384); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2362: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '_') ADVANCE(2653); + if (lookahead == '0' || + lookahead == '1') ADVANCE(2362); + if (('2' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2363: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '_') ADVANCE(2363); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3360); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2364: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '_') ADVANCE(2370); + if (lookahead == 'b') ADVANCE(3455); + if (lookahead == 'o') ADVANCE(3472); + if (lookahead == 'x') ADVANCE(3478); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2369); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2365: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '_') ADVANCE(2370); + if (lookahead == 'b') ADVANCE(2653); + if (lookahead == 'o') ADVANCE(2655); + if (lookahead == 'x') ADVANCE(2660); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2366: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '_') ADVANCE(2370); + if (lookahead == 'b') ADVANCE(3456); + if (lookahead == 'o') ADVANCE(3472); + if (lookahead == 'x') ADVANCE(3478); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2371); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2367: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '_') ADVANCE(2370); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2333); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2368: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '_') ADVANCE(2370); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2339); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2369: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '_') ADVANCE(2370); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2367); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2370: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '_') ADVANCE(2370); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2371: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '_') ADVANCE(2370); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2368); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); + END_STATE(); + case 2372: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '_') ADVANCE(2370); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2369); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2373: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2420); - if (lookahead == '-') ADVANCE(4593); - if (lookahead == '_') ADVANCE(2420); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3446); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == '_') ADVANCE(2370); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2371); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2374: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2491); - if (lookahead == '>') ADVANCE(3716); - if (lookahead == 'n') ADVANCE(2496); - if (lookahead == 'r') ADVANCE(3275); - if (lookahead == 'u') ADVANCE(2657); - if (lookahead == 'v') ADVANCE(2506); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == '_') ADVANCE(2370); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2374); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2375: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2571); - if (lookahead == '>') ADVANCE(3711); - if (lookahead == 'l') ADVANCE(2644); - if (lookahead == 'n') ADVANCE(2465); - if (lookahead == 'r') ADVANCE(2629); - if (lookahead == 'x') ADVANCE(2592); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'a') ADVANCE(2471); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2376: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2574); - if (lookahead == '>') ADVANCE(3701); - if (lookahead == 'o') ADVANCE(2601); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'a') ADVANCE(2641); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2377: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2574); - if (lookahead == '>') ADVANCE(3701); - if (lookahead == 'o') ADVANCE(2602); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'a') ADVANCE(2491); + if (lookahead == 'o') ADVANCE(2540); + if (lookahead == 'u') ADVANCE(2494); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('b' <= lookahead && lookahead <= 'f')) ADVANCE(2656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2378: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2576); - if (lookahead == '>') ADVANCE(924); - if (lookahead == 'l') ADVANCE(2648); - if (lookahead == 'r') ADVANCE(2607); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'a') ADVANCE(2472); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2379: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2495); - if (lookahead == '>') ADVANCE(925); - if (lookahead == 'n') ADVANCE(2500); - if (lookahead == 'r') ADVANCE(3276); - if (lookahead == 'u') ADVANCE(2670); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'a') ADVANCE(2642); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2380: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2581); - if (lookahead == '>') ADVANCE(927); - if (lookahead == 'o') ADVANCE(2605); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'a') ADVANCE(2640); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2381: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2502); - if (lookahead == '>') ADVANCE(3706); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'a') ADVANCE(2577); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2382: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2507); - if (lookahead == '>') ADVANCE(929); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'a') ADVANCE(2578); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2383: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(3650); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3293); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'a') ADVANCE(2492); + if (lookahead == 'u') ADVANCE(2496); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2384: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(3658); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'a') ADVANCE(2492); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2385: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(3675); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'a') ADVANCE(2558); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2386: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(3660); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'a') ADVANCE(2557); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2387: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(3640); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'a') ADVANCE(2616); + if (lookahead == 'e') ADVANCE(2495); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2388: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1228); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'a') ADVANCE(2559); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2389: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1285); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3293); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'a') ADVANCE(2474); + if (lookahead == 'o') ADVANCE(2403); + if (lookahead == 'u') ADVANCE(2601); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2390: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1315); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'a') ADVANCE(2563); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2391: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1375); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'a') ADVANCE(2615); + if (lookahead == 'e') ADVANCE(2493); + if (lookahead == 'o') ADVANCE(2510); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('b' <= lookahead && lookahead <= 'f')) ADVANCE(2656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2392: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1394); - if (lookahead == '_') ADVANCE(2429); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2433); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'b') ADVANCE(3466); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2393: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1322); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'c') ADVANCE(3471); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2394: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1240); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'c') ADVANCE(2455); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2395: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(829); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'c') ADVANCE(2456); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2396: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(712); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'c') ADVANCE(2457); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2397: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(809); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'c') ADVANCE(2458); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2398: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(983); - if (lookahead == '_') ADVANCE(2429); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2429); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'c') ADVANCE(2459); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2399: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(3676); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'c') ADVANCE(2423); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2400: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(3663); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'c') ADVANCE(2426); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2401: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1376); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'd') ADVANCE(3206); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2402: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1326); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'd') ADVANCE(3205); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2403: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(832); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'd') ADVANCE(2309); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2404: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(3677); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'd') ADVANCE(2634); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2405: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1377); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'd') ADVANCE(2590); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2406: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(915); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'd') ADVANCE(2591); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2407: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '>') ADVANCE(3736); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'd') ADVANCE(2412); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2408: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '>') ADVANCE(3731); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'd') ADVANCE(2420); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2409: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '>') ADVANCE(3721); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(2393); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2410: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '>') ADVANCE(3726); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(2325); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2411: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '>') ADVANCE(926); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(3095); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2412: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '>') ADVANCE(928); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(3165); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2413: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '>') ADVANCE(930); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(3067); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2414: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '>') ADVANCE(931); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(2164); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2415: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(2704); - if (lookahead == 'i') ADVANCE(2704); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3528); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(2917); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2416: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(2704); - if (lookahead == 'i') ADVANCE(2451); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3528); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(2209); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2417: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(2704); - if (lookahead == 'i') ADVANCE(2560); - if (lookahead == 's') ADVANCE(3533); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3528); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(3203); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2418: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(2705); - if (lookahead == 'f') ADVANCE(3149); - if (lookahead == 'm') ADVANCE(2593); - if (lookahead == 'n') ADVANCE(3109); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(3073); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2419: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2420); - if (lookahead == 'o') ADVANCE(2407); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3446); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(3097); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2420: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2420); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3446); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(3166); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2421: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2712); - if (lookahead == '0' || - lookahead == '1') ADVANCE(2421); - if (('2' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(3069); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2422: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2422); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3422); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(2908); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2423: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2429); - if (lookahead == 'b') ADVANCE(3517); - if (lookahead == 'o') ADVANCE(3534); - if (lookahead == 'x') ADVANCE(3540); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2428); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(3148); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2424: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2429); - if (lookahead == 'b') ADVANCE(2712); - if (lookahead == 'o') ADVANCE(2714); - if (lookahead == 'x') ADVANCE(2719); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2429); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(3075); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2425: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2429); - if (lookahead == 'b') ADVANCE(3518); - if (lookahead == 'o') ADVANCE(3534); - if (lookahead == 'x') ADVANCE(3540); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2430); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(2910); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2426: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2429); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2392); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(3149); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2427: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2429); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2398); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(3036); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2428: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2429); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2426); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(3038); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2429: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2429); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2429); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(3100); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2430: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2429); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2427); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(2452); + if (lookahead == 'o') ADVANCE(3082); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2431: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2429); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2428); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(2638); + if (lookahead == 'o') ADVANCE(2610); + if (lookahead == 'u') ADVANCE(2477); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2649); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2432: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2429); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2430); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(2349); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2433: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2429); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2433); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(2375); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2434: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2530); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(2378); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2435: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2700); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(2555); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2436: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2550); - if (lookahead == 'o') ADVANCE(2599); - if (lookahead == 'u') ADVANCE(2553); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('b' <= lookahead && lookahead <= 'f')) ADVANCE(2715); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(2353); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2437: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2531); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(2331); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2438: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2701); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(2600); + if (lookahead == 'i') ADVANCE(2584); + if (lookahead == 'o') ADVANCE(2514); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2439: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2699); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(2560); + if (lookahead == 'i') ADVANCE(2486); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2440: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2636); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(2560); + if (lookahead == 'i') ADVANCE(2488); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2441: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2637); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(2338); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2442: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2551); - if (lookahead == 'u') ADVANCE(2555); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(2550); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2443: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2551); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(2565); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2444: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2617); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(2554); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2445: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2616); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(2544); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2446: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2675); - if (lookahead == 'e') ADVANCE(2554); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(2545); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2447: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2618); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(2572); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2448: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2533); - if (lookahead == 'o') ADVANCE(2462); - if (lookahead == 'u') ADVANCE(2660); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(2568); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2449: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2622); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(2454); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2450: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2674); - if (lookahead == 'e') ADVANCE(2552); - if (lookahead == 'o') ADVANCE(2569); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('b' <= lookahead && lookahead <= 'f')) ADVANCE(2715); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(2495); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2451: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(3528); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'f') ADVANCE(2890); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(2656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2452: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(3533); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'f') ADVANCE(2892); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(2656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2453: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(2514); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'g') ADVANCE(2466); + if (lookahead == 't') ADVANCE(2628); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2454: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(2515); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'g') ADVANCE(2469); + if (lookahead == 't') ADVANCE(2630); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2455: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(2516); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'h') ADVANCE(3135); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2456: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(2517); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'h') ADVANCE(3103); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2457: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(2518); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'h') ADVANCE(3137); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2458: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(2482); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'h') ADVANCE(3105); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2459: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(2485); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'h') ADVANCE(3140); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2460: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(3268); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'h') ADVANCE(2440); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2461: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(3267); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'i') ADVANCE(2508); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2462: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(2368); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'i') ADVANCE(2381); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2463: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(2693); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'i') ADVANCE(2613); + if (lookahead == 'r') ADVANCE(2434); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2464: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(2649); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'i') ADVANCE(2382); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2465: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(2650); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'i') ADVANCE(2408); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2466: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(2471); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'i') ADVANCE(2586); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2467: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(2479); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'i') ADVANCE(2588); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2468: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2452); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'i') ADVANCE(2511); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2469: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2384); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'i') ADVANCE(2592); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2470: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3155); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'k') ADVANCE(3471); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2471: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3227); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'k') ADVANCE(3030); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2472: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3127); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'k') ADVANCE(3032); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2473: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2223); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'k') ADVANCE(2413); + if (lookahead == 't') ADVANCE(2395); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2474: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2976); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'k') ADVANCE(2421); + if (lookahead == 't') ADVANCE(2397); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2475: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2268); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'l') ADVANCE(2217); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2476: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3265); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'l') ADVANCE(2478); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2477: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3133); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'l') ADVANCE(2475); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2478: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3157); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'l') ADVANCE(2327); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2479: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3228); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'l') ADVANCE(2328); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2480: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3129); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'l') ADVANCE(2376); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2481: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2967); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'l') ADVANCE(2379); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2482: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3210); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'l') ADVANCE(2334); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2483: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3135); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'l') ADVANCE(2335); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2484: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2969); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'l') ADVANCE(2336); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2485: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3211); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'l') ADVANCE(2337); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2486: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3096); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'l') ADVANCE(2418); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2487: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3098); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'l') ADVANCE(2422); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2488: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3160); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'l') ADVANCE(2424); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2489: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2511); - if (lookahead == 'o') ADVANCE(3142); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'l') ADVANCE(2425); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2490: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2697); - if (lookahead == 'o') ADVANCE(2669); - if (lookahead == 'u') ADVANCE(2536); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2708); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'l') ADVANCE(2479); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2491: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2408); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'l') ADVANCE(2583); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2492: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2434); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'l') ADVANCE(2583); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2493: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2437); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'l') ADVANCE(2482); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2494: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2614); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'l') ADVANCE(2483); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2495: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2412); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'l') ADVANCE(2484); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2496: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2390); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'l') ADVANCE(2485); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2497: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2659); - if (lookahead == 'i') ADVANCE(2643); - if (lookahead == 'o') ADVANCE(2573); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'l') ADVANCE(2464); + if (lookahead == 'n') ADVANCE(2402); + if (lookahead == 's') ADVANCE(3191); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2498: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2619); - if (lookahead == 'i') ADVANCE(2545); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'm') ADVANCE(2535); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2646); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2499: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2619); - if (lookahead == 'i') ADVANCE(2547); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'm') ADVANCE(2535); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2500: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2397); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'n') ADVANCE(2401); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2501: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2609); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'n') ADVANCE(3471); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3466); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2502: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2624); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'n') ADVANCE(2581); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2503: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2613); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'n') ADVANCE(2901); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2504: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2603); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'n') ADVANCE(3142); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2505: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2604); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'n') ADVANCE(2903); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2506: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2631); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'n') ADVANCE(3144); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2507: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2627); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'n') ADVANCE(3058); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2508: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2513); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'n') ADVANCE(2631); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2509: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2554); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'n') ADVANCE(2441); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2510: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'f') ADVANCE(2949); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(2715); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'n') ADVANCE(2587); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2511: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'f') ADVANCE(2951); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(2715); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'n') ADVANCE(2632); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2512: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'g') ADVANCE(2525); - if (lookahead == 't') ADVANCE(2687); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'o') ADVANCE(2348); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2513: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'g') ADVANCE(2528); - if (lookahead == 't') ADVANCE(2689); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'o') ADVANCE(2529); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2514: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(3197); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'o') ADVANCE(2530); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2515: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(3163); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'o') ADVANCE(2629); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2516: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(3199); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'o') ADVANCE(2539); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2517: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(3165); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'o') ADVANCE(2352); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2518: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(3202); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'o') ADVANCE(2541); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2519: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(2499); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'o') ADVANCE(2607); + if (lookahead == 'u') ADVANCE(2477); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2649); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2520: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(2567); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'o') ADVANCE(2607); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2649); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2521: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(2440); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'o') ADVANCE(2546); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2522: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(2672); - if (lookahead == 'r') ADVANCE(2493); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'o') ADVANCE(2633); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2523: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(2441); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'o') ADVANCE(2561); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2524: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(2467); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'o') ADVANCE(2562); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2525: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(2645); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'o') ADVANCE(2564); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2526: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(2647); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'o') ADVANCE(2566); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2527: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(2570); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'o') ADVANCE(2567); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2528: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(2651); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'o') ADVANCE(2635); + if (lookahead == 't') ADVANCE(2390); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2529: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(3533); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'p') ADVANCE(3060); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2530: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(3090); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'p') ADVANCE(3062); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2531: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(3092); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'p') ADVANCE(2523); + if (lookahead == 't') ADVANCE(2442); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2532: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(2472); - if (lookahead == 't') ADVANCE(2454); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'p') ADVANCE(2524); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2533: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(2480); - if (lookahead == 't') ADVANCE(2456); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'p') ADVANCE(2525); + if (lookahead == 't') ADVANCE(2444); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2534: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2276); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'p') ADVANCE(2526); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2535: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2537); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'p') ADVANCE(2527); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2536: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2534); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'r') ADVANCE(3471); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2537: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2386); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'r') ADVANCE(2317); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2538: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2387); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'r') ADVANCE(3042); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2539: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2435); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'r') ADVANCE(3210); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2540: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2438); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'r') ADVANCE(3044); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2541: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2393); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'r') ADVANCE(3209); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2542: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2394); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'r') ADVANCE(2937); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2543: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2395); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'r') ADVANCE(2939); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2544: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2396); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'r') ADVANCE(3158); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2545: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2477); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'r') ADVANCE(3160); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2546: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2481); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'r') ADVANCE(2942); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2547: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2483); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'r') ADVANCE(2626); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2548: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2484); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'r') ADVANCE(2321); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2549: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2538); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'r') ADVANCE(2326); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2550: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2642); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'r') ADVANCE(2503); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2551: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2642); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'r') ADVANCE(2399); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2552: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2541); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'r') ADVANCE(2504); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2553: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2542); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'r') ADVANCE(2351); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2554: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2543); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'r') ADVANCE(2505); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2555: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2544); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'r') ADVANCE(2480); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2556: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2523); - if (lookahead == 'n') ADVANCE(2461); - if (lookahead == 's') ADVANCE(3253); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'r') ADVANCE(2506); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2557: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(2594); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2705); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'r') ADVANCE(2332); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2558: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(2594); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'r') ADVANCE(2622); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2559: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(2460); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'r') ADVANCE(2347); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2560: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(3533); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3528); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'r') ADVANCE(2417); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2561: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(2640); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'r') ADVANCE(2604); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2562: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(2960); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'r') ADVANCE(2619); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2563: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(3204); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'r') ADVANCE(2623); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2564: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(2962); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'r') ADVANCE(2606); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2565: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(3206); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'r') ADVANCE(2553); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2566: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(3118); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'r') ADVANCE(2620); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2567: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(2690); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'r') ADVANCE(2621); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2568: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(2500); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'r') ADVANCE(2573); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2569: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(2646); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'r') ADVANCE(2575); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2570: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(2691); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'r') ADVANCE(2318); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2571: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2407); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'r') ADVANCE(2400); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2572: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2588); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'r') ADVANCE(2481); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2573: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2589); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'r') ADVANCE(2355); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2574: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2688); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'r') ADVANCE(2627); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2575: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2598); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'r') ADVANCE(2521); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2576: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2411); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 's') ADVANCE(3471); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2577: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2600); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 's') ADVANCE(1076); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2578: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2666); - if (lookahead == 'u') ADVANCE(2536); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2708); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 's') ADVANCE(1078); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2579: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2666); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2708); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 's') ADVANCE(2599); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2580: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2605); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 's') ADVANCE(2411); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2581: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2692); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 's') ADVANCE(2602); + if (lookahead == 't') ADVANCE(2461); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2582: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2620); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 's') ADVANCE(2415); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2583: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2621); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 's') ADVANCE(2416); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2584: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2623); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 's') ADVANCE(2603); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2585: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2625); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 's') ADVANCE(2419); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2586: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2626); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 's') ADVANCE(2617); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2587: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2694); - if (lookahead == 't') ADVANCE(2449); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 's') ADVANCE(2605); + if (lookahead == 't') ADVANCE(2468); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2588: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(3120); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 's') ADVANCE(2608); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2589: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(3122); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 's') ADVANCE(2429); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2590: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(2582); - if (lookahead == 't') ADVANCE(2501); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 's') ADVANCE(2340); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2591: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(2583); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 's') ADVANCE(2342); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2592: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(2584); - if (lookahead == 't') ADVANCE(2503); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 's') ADVANCE(2618); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2593: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(2585); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 's') ADVANCE(2345); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2594: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(2586); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 's') ADVANCE(2346); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2595: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3533); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 't') ADVANCE(1087); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2596: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2376); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 't') ADVANCE(1097); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2597: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3102); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 't') ADVANCE(2324); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2598: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3272); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 't') ADVANCE(2322); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2599: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3104); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 't') ADVANCE(2949); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2600: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3271); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 't') ADVANCE(1088); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2601: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2997); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 't') ADVANCE(1099); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2602: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2999); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 't') ADVANCE(1104); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2603: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3220); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 't') ADVANCE(2951); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2604: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3222); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 't') ADVANCE(1069); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2605: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3002); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 't') ADVANCE(1106); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2606: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2685); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 't') ADVANCE(1070); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2607: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2380); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 't') ADVANCE(2654); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2608: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2385); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 't') ADVANCE(2954); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2609: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2562); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 't') ADVANCE(2394); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2610: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2458); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 't') ADVANCE(2330); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2611: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2563); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 't') ADVANCE(2323); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2612: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2410); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 't') ADVANCE(2350); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2613: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2564); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 't') ADVANCE(2329); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2614: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2539); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 't') ADVANCE(2354); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2615: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2565); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 't') ADVANCE(2396); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2616: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2391); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 't') ADVANCE(2398); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2617: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2681); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 't') ADVANCE(2445); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2618: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2406); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 't') ADVANCE(2446); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2619: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2476); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 't') ADVANCE(2341); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2620: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2663); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 't') ADVANCE(2343); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2621: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2678); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 't') ADVANCE(2344); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2622: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2682); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 't') ADVANCE(2593); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2623: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2665); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 't') ADVANCE(2594); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2624: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2612); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'u') ADVANCE(2551); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2625: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2679); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'u') ADVANCE(2414); + if (lookahead == 'y') ADVANCE(3128); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2626: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2680); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'u') ADVANCE(2414); + if (lookahead == 'y') ADVANCE(3130); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2627: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2632); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'u') ADVANCE(2414); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2628: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2634); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'u') ADVANCE(2552); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2629: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2377); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'u') ADVANCE(2612); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2630: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2459); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'u') ADVANCE(2556); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2631: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2540); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'u') ADVANCE(2427); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2632: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2414); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'u') ADVANCE(2428); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2633: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2686); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'u') ADVANCE(2614); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2634: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2580); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'u') ADVANCE(2487); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2635: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(3533); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'u') ADVANCE(2571); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2636: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(1136); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'u') ADVANCE(2496); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2637: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(1138); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'w') ADVANCE(3182); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2638: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2658); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'w') ADVANCE(3184); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2639: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2470); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'y') ADVANCE(3471); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2640: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2661); - if (lookahead == 't') ADVANCE(2520); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'y') ADVANCE(3471); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2641: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2474); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'y') ADVANCE(3175); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2642: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2475); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'y') ADVANCE(3177); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2643: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2662); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == '{') ADVANCE(927); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2659); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2644: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2478); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2649); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2645: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2676); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3466); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2646: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2664); - if (lookahead == 't') ADVANCE(2527); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2221); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2647: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2667); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2651); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2648: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2488); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2646); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2649: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2399); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2242); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2650: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2401); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2647); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2651: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2677); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2652); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2652: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2404); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2231); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2653: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2405); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(2653); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2654: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1146); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3231); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2655: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1156); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(2655); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2656: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2383); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2657: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2381); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3533); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2658: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(3009); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2657); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2659: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1147); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2658); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2660: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1158); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2660); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2661: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1163); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2662: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(3011); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(3834); + if (lookahead == '>') ADVANCE(3647); + if (lookahead == 'r') ADVANCE(2763); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2663: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1129); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(3827); + if (lookahead == '>') ADVANCE(3651); + if (lookahead == 'u') ADVANCE(2787); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2664: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1165); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(3835); + if (lookahead == '>') ADVANCE(3639); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2665: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1130); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(3828); + if (lookahead == '>') ADVANCE(3643); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2666: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2713); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(682); + if (lookahead == '>') ADVANCE(864); + if (lookahead == 'u') ADVANCE(2789); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2667: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(3014); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(750); + if (lookahead == '>') ADVANCE(863); + if (lookahead == 'r') ADVANCE(2766); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2668: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2453); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(752); + if (lookahead == '>') ADVANCE(866); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2669: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2389); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(681); + if (lookahead == '>') ADVANCE(868); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2670: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2382); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '-') ADVANCE(2830); + if (lookahead == '_') ADVANCE(2685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2685); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2671: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2409); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '-') ADVANCE(2709); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2852); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1939); END_STATE(); case 2672: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2388); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '-') ADVANCE(2711); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2861); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1971); END_STATE(); case 2673: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2413); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '-') ADVANCE(2714); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2867); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2158); END_STATE(); case 2674: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2455); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '-') ADVANCE(2716); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2869); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1991); END_STATE(); case 2675: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2457); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '-') ADVANCE(2832); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2676: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2504); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '-') ADVANCE(2836); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2677: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2505); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '-') ADVANCE(2838); + if (lookahead == '_') ADVANCE(2685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2685); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2678: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2400); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == ':') ADVANCE(915); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2679: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2402); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == ':') ADVANCE(3878); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2680: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2403); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'N') ADVANCE(2810); + if (lookahead == 'f') ADVANCE(2843); + if (lookahead == 'n') ADVANCE(2811); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2681: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2652); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'T') ADVANCE(2833); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2682: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2653); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'T') ADVANCE(2834); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2683: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2610); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '_') ADVANCE(2685); + if (lookahead == 'b') ADVANCE(3458); + if (lookahead == 'o') ADVANCE(3474); + if (lookahead == 'x') ADVANCE(3480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2684: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2473); - if (lookahead == 'y') ADVANCE(3190); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '_') ADVANCE(2685); + if (lookahead == 'b') ADVANCE(3458); + if (lookahead == 'o') ADVANCE(3474); + if (lookahead == 'x') ADVANCE(3480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2685: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2473); - if (lookahead == 'y') ADVANCE(3192); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '_') ADVANCE(2685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2685); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2686: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2473); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '_') ADVANCE(2685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2670); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2687: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2611); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '_') ADVANCE(2685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2686); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2688: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2671); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '_') ADVANCE(2685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2689: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2615); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '_') ADVANCE(2685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2677); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2690: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2486); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '_') ADVANCE(2685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2689); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2691: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2487); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '_') ADVANCE(2685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2692: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2673); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'a') ADVANCE(2738); + if (lookahead == 'o') ADVANCE(2772); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2693: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2546); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'a') ADVANCE(2738); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2694: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2630); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'a') ADVANCE(2737); + if (lookahead == 'o') ADVANCE(2702); + if (lookahead == 'u') ADVANCE(2790); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2695: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2555); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'a') ADVANCE(2736); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2696: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'w') ADVANCE(3244); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'a') ADVANCE(2807); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2697: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'w') ADVANCE(3246); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'a') ADVANCE(2784); + if (lookahead == 'o') ADVANCE(2746); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2698: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(3533); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'a') ADVANCE(2780); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2699: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(3533); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'c') ADVANCE(2729); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2700: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(3237); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'c') ADVANCE(2715); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2701: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(3239); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'c') ADVANCE(2730); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2702: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '{') ADVANCE(988); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2718); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'd') ADVANCE(2800); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2703: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2708); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'd') ADVANCE(2710); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2704: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3528); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2162); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2705: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2280); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2207); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2706: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2710); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2726); + if (lookahead == 'o') ADVANCE(2842); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2707: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2705); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2806); + if (lookahead == 'u') ADVANCE(2741); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2816); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2708: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2301); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2727); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2709: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2706); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2747); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2852); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1939); END_STATE(); case 2710: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2711); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2672); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2711: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2290); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2749); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2861); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1971); END_STATE(); case 2712: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(2712); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2695); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2713: - ACCEPT_TOKEN(sym_identifier); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3293); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2785); + if (lookahead == 'i') ADVANCE(2781); + if (lookahead == 'o') ADVANCE(2755); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2714: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2714); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2750); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2867); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2158); END_STATE(); case 2715: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2674); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2716: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3595); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2751); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2869); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1991); END_STATE(); case 2717: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2716); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2770); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2718: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2717); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2850); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2719: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2719); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2768); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2720: - ACCEPT_TOKEN(sym_identifier); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2851); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2721: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(3950); - if (lookahead == '>') ADVANCE(3711); - if (lookahead == 'r') ADVANCE(2822); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'e') ADVANCE(2855); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2722: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(3930); - if (lookahead == '>') ADVANCE(3716); - if (lookahead == 'u') ADVANCE(2846); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'e') ADVANCE(2863); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2723: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(3951); - if (lookahead == '>') ADVANCE(3701); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'e') ADVANCE(2865); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2724: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(3931); - if (lookahead == '>') ADVANCE(3706); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'e') ADVANCE(2870); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2725: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(743); - if (lookahead == '>') ADVANCE(925); - if (lookahead == 'u') ADVANCE(2848); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'e') ADVANCE(2774); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2726: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(811); - if (lookahead == '>') ADVANCE(924); - if (lookahead == 'r') ADVANCE(2825); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'f') ADVANCE(2844); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2727: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(813); - if (lookahead == '>') ADVANCE(927); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'g') ADVANCE(2735); + if (lookahead == 't') ADVANCE(2798); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2728: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(742); - if (lookahead == '>') ADVANCE(929); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'h') ADVANCE(2734); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2729: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2889); - if (lookahead == '_') ADVANCE(2744); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2744); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'h') ADVANCE(2858); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2730: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2768); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2911); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1998); + if (lookahead == 'h') ADVANCE(2862); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2731: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2770); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2920); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2030); + if (lookahead == 'i') ADVANCE(2703); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2732: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2773); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2926); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2217); + if (lookahead == 'i') ADVANCE(2698); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2733: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2775); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2928); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2050); + if (lookahead == 'i') ADVANCE(2754); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2734: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2891); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'i') ADVANCE(2744); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2735: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2895); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'i') ADVANCE(2778); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2736: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2897); - if (lookahead == '_') ADVANCE(2744); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2744); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'k') ADVANCE(2857); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2737: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == ':') ADVANCE(976); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'k') ADVANCE(2721); + if (lookahead == 't') ADVANCE(2701); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2738: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == ':') ADVANCE(4039); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'l') ADVANCE(2777); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2739: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N') ADVANCE(2869); - if (lookahead == 'f') ADVANCE(2902); - if (lookahead == 'n') ADVANCE(2870); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'l') ADVANCE(2215); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2740: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T') ADVANCE(2892); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'l') ADVANCE(2732); + if (lookahead == 's') ADVANCE(2841); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2741: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T') ADVANCE(2893); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'l') ADVANCE(2739); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2742: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2744); - if (lookahead == 'b') ADVANCE(3522); - if (lookahead == 'o') ADVANCE(3538); - if (lookahead == 'x') ADVANCE(3544); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2746); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'l') ADVANCE(2696); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2743: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2744); - if (lookahead == 'b') ADVANCE(3522); - if (lookahead == 'o') ADVANCE(3538); - if (lookahead == 'x') ADVANCE(3544); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2749); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'l') ADVANCE(2782); + if (lookahead == 'r') ADVANCE(2767); + if (lookahead == 'x') ADVANCE(2761); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2744: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2744); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2744); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'l') ADVANCE(2722); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2745: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2744); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2729); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'l') ADVANCE(2723); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2746: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2744); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2745); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'n') ADVANCE(2783); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2747: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2744); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2746); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'n') ADVANCE(2802); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2852); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1939); END_STATE(); case 2748: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2744); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2736); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'n') ADVANCE(3056); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2749: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2744); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2748); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'n') ADVANCE(2803); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2861); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1971); END_STATE(); case 2750: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2744); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2749); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'n') ADVANCE(2805); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2867); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2158); END_STATE(); case 2751: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2797); - if (lookahead == 'o') ADVANCE(2831); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'n') ADVANCE(2804); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2869); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1991); END_STATE(); case 2752: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2797); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'n') ADVANCE(2864); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2753: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2796); - if (lookahead == 'o') ADVANCE(2761); - if (lookahead == 'u') ADVANCE(2849); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'n') ADVANCE(2866); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2754: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2795); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'n') ADVANCE(2799); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2755: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2866); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'o') ADVANCE(2760); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2756: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2843); - if (lookahead == 'o') ADVANCE(2805); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'o') ADVANCE(2797); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2757: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2839); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'o') ADVANCE(2786); + if (lookahead == 'u') ADVANCE(2741); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2816); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2758: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(2788); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'o') ADVANCE(2773); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2759: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(2774); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'o') ADVANCE(2771); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2760: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(2789); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'p') ADVANCE(2854); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2761: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'd') ADVANCE(2859); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'p') ADVANCE(2759); + if (lookahead == 't') ADVANCE(2719); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2762: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'd') ADVANCE(2769); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'r') ADVANCE(2795); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2763: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2221); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'r') ADVANCE(2664); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2764: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2266); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'r') ADVANCE(2794); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2765: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2785); - if (lookahead == 'o') ADVANCE(2901); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'r') ADVANCE(2700); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2766: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2865); - if (lookahead == 'u') ADVANCE(2800); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2875); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'r') ADVANCE(2668); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2767: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2786); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'r') ADVANCE(2758); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2768: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2806); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2911); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1998); + if (lookahead == 'r') ADVANCE(2752); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2769: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2731); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'r') ADVANCE(2712); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2770: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2808); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2920); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2030); + if (lookahead == 'r') ADVANCE(2742); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2771: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2754); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'r') ADVANCE(2788); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2772: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2844); - if (lookahead == 'i') ADVANCE(2840); - if (lookahead == 'o') ADVANCE(2814); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'r') ADVANCE(2845); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2773: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2809); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2926); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2217); + if (lookahead == 'r') ADVANCE(2860); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2774: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2733); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'r') ADVANCE(2871); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2775: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2810); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2928); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2050); + if (lookahead == 'r') ADVANCE(2753); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2776: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2829); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 's') ADVANCE(3194); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2777: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2909); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 's') ADVANCE(2705); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2778: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2827); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 's') ADVANCE(2793); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2779: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2910); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 's') ADVANCE(2718); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2780: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2914); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 's') ADVANCE(2856); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2781: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2922); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 's') ADVANCE(2791); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2782: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2924); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 's') ADVANCE(2720); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2783: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2929); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 's') ADVANCE(2792); + if (lookahead == 't') ADVANCE(2733); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2784: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2833); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 't') ADVANCE(2699); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2785: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'f') ADVANCE(2903); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 't') ADVANCE(2671); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2786: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'g') ADVANCE(2794); - if (lookahead == 't') ADVANCE(2857); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 't') ADVANCE(2825); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2787: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(2793); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 't') ADVANCE(2665); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2788: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(2917); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 't') ADVANCE(2673); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2789: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(2921); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 't') ADVANCE(2669); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2790: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(2762); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 't') ADVANCE(2847); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2791: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(2757); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 't') ADVANCE(2853); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2792: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(2813); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 't') ADVANCE(2859); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2793: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(2803); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 't') ADVANCE(2725); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2794: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(2837); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'u') ADVANCE(2704); + if (lookahead == 'y') ADVANCE(2849); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2795: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'k') ADVANCE(2916); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'u') ADVANCE(2704); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2796: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'k') ADVANCE(2780); - if (lookahead == 't') ADVANCE(2760); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'u') ADVANCE(2741); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2816); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2797: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2836); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'u') ADVANCE(2765); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2798: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2274); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'u') ADVANCE(2775); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2799: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2791); - if (lookahead == 's') ADVANCE(2900); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'u') ADVANCE(2724); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2800: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2798); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'u') ADVANCE(2745); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2801: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2755); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'v') ADVANCE(2717); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2802: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2841); - if (lookahead == 'r') ADVANCE(2826); - if (lookahead == 'x') ADVANCE(2820); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'v') ADVANCE(2852); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2852); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1939); END_STATE(); case 2803: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2781); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'v') ADVANCE(2861); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2861); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1971); END_STATE(); case 2804: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2782); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'v') ADVANCE(2869); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2869); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1991); END_STATE(); case 2805: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2842); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'v') ADVANCE(2872); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2867); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2158); END_STATE(); case 2806: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2861); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2911); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1998); + if (lookahead == 'w') ADVANCE(2848); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2807: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(3116); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'y') ADVANCE(2868); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2808: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2862); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2920); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2030); + if (lookahead == '-' || + lookahead == '?') ADVANCE(2840); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2808); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); case 2809: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2864); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2926); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2217); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2816); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2810: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2863); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2928); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2050); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2815); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2811: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2923); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2813); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2846); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2120); END_STATE(); case 2812: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2925); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2820); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2813: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2858); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2819); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2846); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2120); END_STATE(); case 2814: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(2819); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2821); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2846); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2120); END_STATE(); case 2815: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(2856); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2818); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2816: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(2845); - if (lookahead == 'u') ADVANCE(2800); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2875); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2840); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2817: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(2832); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2810); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2818: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(2830); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2812); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2819: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(2913); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2814); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2846); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2120); END_STATE(); case 2820: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(2818); - if (lookahead == 't') ADVANCE(2778); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2822); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2821: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2854); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2823); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2846); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2120); END_STATE(); case 2822: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2723); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2840); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2823: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2853); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2846); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2846); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2120); END_STATE(); case 2824: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2759); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(2824); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2825: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2727); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3231); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2826: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2817); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(2826); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2827: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2811); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2675); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2828: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2771); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2681); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2829: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2801); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2679); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2830: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2847); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2827); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2831: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2904); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2678); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2832: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2919); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2828); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2833: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2930); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2829); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2834: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2812); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2831); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2835: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(3256); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2682); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2836: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2764); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2835); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2837: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2852); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2676); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2838: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2777); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2837); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2839: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2915); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2839); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2840: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2850); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); case 2841: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2779); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2841); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2087); END_STATE(); case 2842: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2851); - if (lookahead == 't') ADVANCE(2792); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2842); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2033); END_STATE(); case 2843: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2758); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2843); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2039); END_STATE(); case 2844: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2730); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2844); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1892); END_STATE(); case 2845: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2884); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2845); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2009); END_STATE(); case 2846: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2724); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2846); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2120); END_STATE(); case 2847: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2732); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2847); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1945); END_STATE(); case 2848: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2728); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2848); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2132); END_STATE(); case 2849: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2906); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2849); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2051); END_STATE(); case 2850: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2912); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2850); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1904); END_STATE(); case 2851: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2918); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2851); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2045); END_STATE(); case 2852: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2784); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2852); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1939); END_STATE(); case 2853: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2763); - if (lookahead == 'y') ADVANCE(2908); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2853); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2126); END_STATE(); case 2854: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2763); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2854); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2015); END_STATE(); case 2855: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2800); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2875); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2855); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2138); END_STATE(); case 2856: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2824); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2856); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1898); END_STATE(); case 2857: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2834); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2857); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2858: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2783); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2858); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2057); END_STATE(); case 2859: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2804); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2859); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); END_STATE(); case 2860: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(2776); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2860); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2027); END_STATE(); case 2861: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(2911); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2911); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1998); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2861); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1971); END_STATE(); case 2862: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(2920); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2920); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2030); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2862); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2063); END_STATE(); case 2863: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(2928); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2928); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2050); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2863); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2021); END_STATE(); case 2864: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(2931); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2926); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2217); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2864); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1913); END_STATE(); case 2865: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'w') ADVANCE(2907); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2865); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1919); END_STATE(); case 2866: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'y') ADVANCE(2927); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2866); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2081); END_STATE(); case 2867: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-' || - lookahead == '?') ADVANCE(2899); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2867); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2158); END_STATE(); case 2868: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2875); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2868); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1997); END_STATE(); case 2869: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2874); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2869); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1991); END_STATE(); case 2870: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2872); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2905); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2179); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2870); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2871: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2879); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2871); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2003); END_STATE(); case 2872: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2878); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2905); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2179); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2872); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1907); END_STATE(); case 2873: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2880); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2905); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2179); - END_STATE(); - case 2874: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2877); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); - END_STATE(); - case 2875: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2899); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); - END_STATE(); - case 2876: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2869); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); - END_STATE(); - case 2877: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2871); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); - END_STATE(); - case 2878: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2873); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2905); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2179); - END_STATE(); - case 2879: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2881); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); - END_STATE(); - case 2880: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2882); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2905); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2179); - END_STATE(); - case 2881: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2899); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); - END_STATE(); - case 2882: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2905); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2905); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2179); - END_STATE(); - case 2883: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(2883); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); - END_STATE(); - case 2884: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3293); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); - END_STATE(); - case 2885: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2885); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); - END_STATE(); - case 2886: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2734); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); - END_STATE(); - case 2887: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2740); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); - END_STATE(); - case 2888: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2738); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); - END_STATE(); - case 2889: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2886); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); - END_STATE(); - case 2890: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2737); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); - END_STATE(); - case 2891: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2887); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); - END_STATE(); - case 2892: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2888); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); - END_STATE(); - case 2893: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2890); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); - END_STATE(); - case 2894: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2741); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); - END_STATE(); - case 2895: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2894); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); - END_STATE(); - case 2896: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2735); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); - END_STATE(); - case 2897: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2896); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); - END_STATE(); - case 2898: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2898); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); - END_STATE(); - case 2899: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); - END_STATE(); - case 2900: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2900); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2146); - END_STATE(); - case 2901: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2901); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2092); - END_STATE(); - case 2902: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2902); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2098); - END_STATE(); - case 2903: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2903); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); - END_STATE(); - case 2904: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2904); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2068); - END_STATE(); - case 2905: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2905); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2179); - END_STATE(); - case 2906: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2906); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2004); - END_STATE(); - case 2907: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2907); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2191); - END_STATE(); - case 2908: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2908); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2110); - END_STATE(); - case 2909: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2909); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1963); - END_STATE(); - case 2910: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2910); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2104); - END_STATE(); - case 2911: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2911); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1998); - END_STATE(); - case 2912: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2912); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2185); - END_STATE(); - case 2913: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2913); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2074); - END_STATE(); - case 2914: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2914); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2197); - END_STATE(); - case 2915: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2915); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1957); - END_STATE(); - case 2916: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2916); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2128); - END_STATE(); - case 2917: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2917); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2116); - END_STATE(); - case 2918: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2918); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2010); - END_STATE(); - case 2919: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2919); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2086); - END_STATE(); - case 2920: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2920); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2030); - END_STATE(); - case 2921: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2921); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2122); - END_STATE(); - case 2922: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2922); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2080); - END_STATE(); - case 2923: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2923); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1972); - END_STATE(); - case 2924: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2924); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1978); - END_STATE(); - case 2925: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2925); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2140); - END_STATE(); - case 2926: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2926); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2217); - END_STATE(); - case 2927: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2927); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2056); - END_STATE(); - case 2928: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2928); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2050); - END_STATE(); - case 2929: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2929); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2134); - END_STATE(); - case 2930: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2930); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2062); - END_STATE(); - case 2931: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2931); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1966); - END_STATE(); - case 2932: ACCEPT_TOKEN(sym__newline); END_STATE(); - case 2933: + case 2874: ACCEPT_TOKEN(sym__newline); ADVANCE_MAP( '\r', 3, - '!', 662, - '*', 586, - '+', 225, - '/', 228, - ':', 3615, - '=', 668, - 'a', 791, - 'b', 765, - 'e', 797, - 'i', 801, - 'm', 824, - 'n', 814, - 'o', 845, - 's', 871, - 'x', 823, - 0x0b, 649, - '\f', 649, - '\t', 226, - '\n', 226, - ' ', 226, + '!', 599, + '*', 526, + '+', 165, + '/', 168, + ':', 3553, + '=', 605, + 'a', 730, + 'b', 704, + 'e', 736, + 'i', 740, + 'm', 763, + 'n', 753, + 'o', 784, + 's', 810, + 'x', 762, + 0x0b, 586, + '\f', 586, + '\t', 166, + '\n', 166, + ' ', 166, ); END_STATE(); - case 2934: + case 2875: ACCEPT_TOKEN(sym__newline); ADVANCE_MAP( - '\r', 214, - '!', 662, - '*', 250, - '+', 224, - '-', 253, - '/', 228, - '<', 254, - '=', 668, - '>', 255, - 'a', 791, - 'b', 765, - 'e', 797, - 'i', 801, - 'm', 824, - 'n', 814, - 'o', 845, - 's', 871, - 'x', 823, - '\t', 248, - '\n', 248, - ' ', 248, + '\r', 154, + '!', 599, + '*', 190, + '+', 164, + '-', 193, + '/', 168, + '<', 194, + '=', 605, + '>', 195, + 'a', 730, + 'b', 704, + 'e', 736, + 'i', 740, + 'm', 763, + 'n', 753, + 'o', 784, + 's', 810, + 'x', 762, + '\t', 188, + '\n', 188, + ' ', 188, ); END_STATE(); - case 2935: + case 2876: ACCEPT_TOKEN(sym__newline); - if (lookahead == ':') ADVANCE(3615); + if (lookahead == ':') ADVANCE(3553); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(649); + lookahead == ' ') ADVANCE(586); END_STATE(); - case 2936: + case 2877: ACCEPT_TOKEN(sym__space); - if (lookahead == '\n') ADVANCE(2935); - if (lookahead == '\r') ADVANCE(172); - if (lookahead == ':') ADVANCE(3615); + if (lookahead == '\n') ADVANCE(2876); + if (lookahead == '\r') ADVANCE(112); + if (lookahead == ':') ADVANCE(3553); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2936); + lookahead == ' ') ADVANCE(2877); if (lookahead == 0x0b || - lookahead == '\f') ADVANCE(649); + lookahead == '\f') ADVANCE(586); END_STATE(); - case 2937: + case 2878: ACCEPT_TOKEN(sym__space); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2937); + lookahead == ' ') ADVANCE(2878); END_STATE(); - case 2938: + case 2879: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 2939: + case 2880: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 2940: + case 2881: ACCEPT_TOKEN(anon_sym_err_GT_PIPE); END_STATE(); - case 2941: + case 2882: ACCEPT_TOKEN(anon_sym_out_GT_PIPE); END_STATE(); - case 2942: + case 2883: ACCEPT_TOKEN(anon_sym_e_GT_PIPE); END_STATE(); - case 2943: + case 2884: ACCEPT_TOKEN(anon_sym_o_GT_PIPE); END_STATE(); - case 2944: + case 2885: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_PIPE); END_STATE(); - case 2945: + case 2886: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_PIPE); END_STATE(); - case 2946: + case 2887: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_PIPE); END_STATE(); - case 2947: + case 2888: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_PIPE); END_STATE(); - case 2948: + case 2889: ACCEPT_TOKEN(anon_sym_def); END_STATE(); - case 2949: + case 2890: ACCEPT_TOKEN(anon_sym_def); - if (lookahead == ',') ADVANCE(1951); + if (lookahead == ',') ADVANCE(1892); if (lookahead == '-' || - lookahead == '@') ADVANCE(1946); + lookahead == '@') ADVANCE(1887); if (lookahead == '.' || - lookahead == '?') ADVANCE(1949); + lookahead == '?') ADVANCE(1890); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1944); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1945); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1885); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1886); END_STATE(); - case 2950: + case 2891: ACCEPT_TOKEN(anon_sym_def); - if (lookahead == ',') ADVANCE(1951); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4854); + if (lookahead == ',') ADVANCE(1892); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4652); END_STATE(); - case 2951: + case 2892: ACCEPT_TOKEN(anon_sym_def); - if (lookahead == ',') ADVANCE(1951); + if (lookahead == ',') ADVANCE(1892); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(1949); + lookahead == '@') ADVANCE(1890); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1947); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1948); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1888); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1889); END_STATE(); - case 2952: + case 2893: ACCEPT_TOKEN(anon_sym_def); - if (lookahead == ',') ADVANCE(1951); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1949); + if (lookahead == ',') ADVANCE(1892); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1890); END_STATE(); - case 2953: + case 2894: ACCEPT_TOKEN(anon_sym_def); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1951); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1950); + lookahead == '@') ADVANCE(1892); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1891); END_STATE(); - case 2954: + case 2895: ACCEPT_TOKEN(anon_sym_def); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1892); END_STATE(); - case 2955: + case 2896: ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (lookahead == ',') ADVANCE(1966); + if (lookahead == ',') ADVANCE(1907); if (lookahead == '.' || - lookahead == '?') ADVANCE(1965); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1964); + lookahead == '?') ADVANCE(1906); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1905); END_STATE(); - case 2956: + case 2897: ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (lookahead == ',') ADVANCE(1966); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4893); + if (lookahead == ',') ADVANCE(1907); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4691); END_STATE(); - case 2957: + case 2898: ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (lookahead == ',') ADVANCE(1966); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1965); + if (lookahead == ',') ADVANCE(1907); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1906); END_STATE(); - case 2958: + case 2899: ACCEPT_TOKEN(anon_sym_export_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1966); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1907); END_STATE(); - case 2959: + case 2900: ACCEPT_TOKEN(anon_sym_extern); END_STATE(); - case 2960: + case 2901: ACCEPT_TOKEN(anon_sym_extern); - if (lookahead == ',') ADVANCE(1972); + if (lookahead == ',') ADVANCE(1913); if (lookahead == '-' || - lookahead == '@') ADVANCE(1968); + lookahead == '@') ADVANCE(1909); if (lookahead == '.' || - lookahead == '?') ADVANCE(1970); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1967); + lookahead == '?') ADVANCE(1911); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1908); END_STATE(); - case 2961: + case 2902: ACCEPT_TOKEN(anon_sym_extern); - if (lookahead == ',') ADVANCE(1972); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4883); + if (lookahead == ',') ADVANCE(1913); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4681); END_STATE(); - case 2962: + case 2903: ACCEPT_TOKEN(anon_sym_extern); - if (lookahead == ',') ADVANCE(1972); + if (lookahead == ',') ADVANCE(1913); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(1970); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1969); + lookahead == '@') ADVANCE(1911); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1910); END_STATE(); - case 2963: + case 2904: ACCEPT_TOKEN(anon_sym_extern); - if (lookahead == ',') ADVANCE(1972); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1970); + if (lookahead == ',') ADVANCE(1913); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1911); END_STATE(); - case 2964: + case 2905: ACCEPT_TOKEN(anon_sym_extern); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1972); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1971); + lookahead == '@') ADVANCE(1913); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1912); END_STATE(); - case 2965: + case 2906: ACCEPT_TOKEN(anon_sym_extern); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1972); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1913); END_STATE(); - case 2966: + case 2907: ACCEPT_TOKEN(anon_sym_module); END_STATE(); - case 2967: + case 2908: ACCEPT_TOKEN(anon_sym_module); - if (lookahead == ',') ADVANCE(1978); + if (lookahead == ',') ADVANCE(1919); if (lookahead == '-' || - lookahead == '@') ADVANCE(1974); + lookahead == '@') ADVANCE(1915); if (lookahead == '.' || - lookahead == '?') ADVANCE(1976); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1973); + lookahead == '?') ADVANCE(1917); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1914); END_STATE(); - case 2968: + case 2909: ACCEPT_TOKEN(anon_sym_module); - if (lookahead == ',') ADVANCE(1978); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4884); + if (lookahead == ',') ADVANCE(1919); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4682); END_STATE(); - case 2969: + case 2910: ACCEPT_TOKEN(anon_sym_module); - if (lookahead == ',') ADVANCE(1978); + if (lookahead == ',') ADVANCE(1919); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(1976); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1975); + lookahead == '@') ADVANCE(1917); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1916); END_STATE(); - case 2970: + case 2911: ACCEPT_TOKEN(anon_sym_module); - if (lookahead == ',') ADVANCE(1978); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1976); + if (lookahead == ',') ADVANCE(1919); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1917); END_STATE(); - case 2971: + case 2912: ACCEPT_TOKEN(anon_sym_module); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1978); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1977); + lookahead == '@') ADVANCE(1919); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1918); END_STATE(); - case 2972: + case 2913: ACCEPT_TOKEN(anon_sym_module); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1978); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1919); END_STATE(); - case 2973: + case 2914: ACCEPT_TOKEN(anon_sym_use); END_STATE(); - case 2974: + case 2915: ACCEPT_TOKEN(anon_sym_use); - if (lookahead == ',') ADVANCE(1963); + if (lookahead == ',') ADVANCE(1904); if (lookahead == '-' || - lookahead == '@') ADVANCE(1959); + lookahead == '@') ADVANCE(1900); if (lookahead == '.' || - lookahead == '?') ADVANCE(1961); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1958); + lookahead == '?') ADVANCE(1902); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1899); END_STATE(); - case 2975: + case 2916: ACCEPT_TOKEN(anon_sym_use); - if (lookahead == ',') ADVANCE(1963); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4863); + if (lookahead == ',') ADVANCE(1904); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4661); END_STATE(); - case 2976: + case 2917: ACCEPT_TOKEN(anon_sym_use); - if (lookahead == ',') ADVANCE(1963); + if (lookahead == ',') ADVANCE(1904); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(1961); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1960); + lookahead == '@') ADVANCE(1902); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1901); END_STATE(); - case 2977: + case 2918: ACCEPT_TOKEN(anon_sym_use); - if (lookahead == ',') ADVANCE(1963); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1961); + if (lookahead == ',') ADVANCE(1904); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1902); END_STATE(); - case 2978: + case 2919: ACCEPT_TOKEN(anon_sym_use); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1963); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1962); + lookahead == '@') ADVANCE(1904); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1903); END_STATE(); - case 2979: + case 2920: ACCEPT_TOKEN(anon_sym_use); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1963); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1904); END_STATE(); - case 2980: + case 2921: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 2981: + case 2922: ACCEPT_TOKEN(anon_sym_COLON); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); - case 2982: + case 2923: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 2983: + case 2924: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 2984: + case 2925: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 2985: + case 2926: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 2986: + case 2927: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 2987: - ACCEPT_TOKEN(anon_sym_COMMA); - END_STATE(); - case 2988: + case 2928: ACCEPT_TOKEN(anon_sym_COMMA); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); END_STATE(); - case 2989: + case 2929: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 2990: + case 2930: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(3604); - if (lookahead == '\'') ADVANCE(3600); + if (lookahead == '"') ADVANCE(3542); + if (lookahead == '\'') ADVANCE(3538); END_STATE(); - case 2991: + case 2931: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(3604); - if (lookahead == '\'') ADVANCE(3600); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (lookahead == '"') ADVANCE(3542); + if (lookahead == '\'') ADVANCE(3538); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 2992: + case 2932: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(3605); - if (lookahead == '\'') ADVANCE(3601); + if (lookahead == '"') ADVANCE(3543); + if (lookahead == '\'') ADVANCE(3539); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3838); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3768); END_STATE(); - case 2993: + case 2933: ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4815); END_STATE(); - case 2994: + case 2934: ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); - case 2995: + case 2935: ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 2996: + case 2936: ACCEPT_TOKEN(anon_sym_cell_DASHpath); END_STATE(); - case 2997: + case 2937: ACCEPT_TOKEN(anon_sym_error); - if (lookahead == ',') ADVANCE(2086); + if (lookahead == ',') ADVANCE(2027); if (lookahead == '-' || - lookahead == '@') ADVANCE(2082); + lookahead == '@') ADVANCE(2023); if (lookahead == '.' || - lookahead == '?') ADVANCE(2084); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2081); + lookahead == '?') ADVANCE(2025); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2022); END_STATE(); - case 2998: + case 2938: ACCEPT_TOKEN(anon_sym_error); - if (lookahead == ',') ADVANCE(2086); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4876); + if (lookahead == ',') ADVANCE(2027); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4674); END_STATE(); - case 2999: + case 2939: ACCEPT_TOKEN(anon_sym_error); - if (lookahead == ',') ADVANCE(2086); + if (lookahead == ',') ADVANCE(2027); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2084); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2083); + lookahead == '@') ADVANCE(2025); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2024); END_STATE(); - case 3000: + case 2940: ACCEPT_TOKEN(anon_sym_error); - if (lookahead == ',') ADVANCE(2086); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2084); + if (lookahead == ',') ADVANCE(2027); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2025); END_STATE(); - case 3001: + case 2941: ACCEPT_TOKEN(anon_sym_error); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2086); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2085); + lookahead == '@') ADVANCE(2027); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2026); END_STATE(); - case 3002: + case 2942: ACCEPT_TOKEN(anon_sym_error); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3003: + case 2943: ACCEPT_TOKEN(anon_sym_error); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2086); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2027); END_STATE(); - case 3004: + case 2944: ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); END_STATE(); - case 3005: + case 2945: ACCEPT_TOKEN(anon_sym_import_DASHpattern); END_STATE(); - case 3006: + case 2946: ACCEPT_TOKEN(anon_sym_one_DASHof); END_STATE(); - case 3007: + case 2947: ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); END_STATE(); - case 3008: + case 2948: ACCEPT_TOKEN(anon_sym_list); END_STATE(); - case 3009: + case 2949: ACCEPT_TOKEN(anon_sym_list); - if (lookahead == ',') ADVANCE(2185); + if (lookahead == ',') ADVANCE(2126); if (lookahead == '-' || - lookahead == '@') ADVANCE(2181); + lookahead == '@') ADVANCE(2122); if (lookahead == '.' || - lookahead == '?') ADVANCE(2183); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2180); + lookahead == '?') ADVANCE(2124); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2121); END_STATE(); - case 3010: + case 2950: ACCEPT_TOKEN(anon_sym_list); - if (lookahead == ',') ADVANCE(2185); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4869); + if (lookahead == ',') ADVANCE(2126); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4667); END_STATE(); - case 3011: + case 2951: ACCEPT_TOKEN(anon_sym_list); - if (lookahead == ',') ADVANCE(2185); + if (lookahead == ',') ADVANCE(2126); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2183); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2182); + lookahead == '@') ADVANCE(2124); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2123); END_STATE(); - case 3012: + case 2952: ACCEPT_TOKEN(anon_sym_list); - if (lookahead == ',') ADVANCE(2185); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2183); + if (lookahead == ',') ADVANCE(2126); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2124); END_STATE(); - case 3013: + case 2953: ACCEPT_TOKEN(anon_sym_list); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2185); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2184); + lookahead == '@') ADVANCE(2126); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2125); END_STATE(); - case 3014: + case 2954: ACCEPT_TOKEN(anon_sym_list); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3015: + case 2955: ACCEPT_TOKEN(anon_sym_list); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2185); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2126); END_STATE(); - case 3016: + case 2956: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 3017: + case 2957: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(3288); + if (lookahead == '=') ADVANCE(3226); END_STATE(); - case 3018: + case 2958: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 3019: + case 2959: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(3289); + if (lookahead == '=') ADVANCE(3227); END_STATE(); - case 3020: + case 2960: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 3021: + case 2961: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); - case 3022: + case 2962: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); - if (lookahead == '$') ADVANCE(3463); - if (lookahead == '(') ADVANCE(3372); - if (lookahead == '{') ADVANCE(3609); + if (lookahead == '$') ADVANCE(3401); + if (lookahead == '(') ADVANCE(3310); + if (lookahead == '{') ADVANCE(3547); END_STATE(); - case 3023: + case 2963: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); - case 3024: + case 2964: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 3025: + case 2965: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 3026: + case 2966: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3027: + case 2967: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); - case 3028: + case 2968: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 3029: + case 2969: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 3030: + case 2970: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(3025); + if (lookahead == '-') ADVANCE(2965); END_STATE(); - case 3031: + case 2971: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(3025); - if (lookahead == '.') ADVANCE(2314); - if (lookahead == '=') ADVANCE(1170); - if (lookahead == '_') ADVANCE(3686); + if (lookahead == '-') ADVANCE(2965); + if (lookahead == '.') ADVANCE(2255); + if (lookahead == '=') ADVANCE(1111); + if (lookahead == '_') ADVANCE(3624); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3690); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); + lookahead == 'i') ADVANCE(3628); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); END_STATE(); - case 3032: + case 2972: ACCEPT_TOKEN(anon_sym_DASH); ADVANCE_MAP( - '-', 3025, - '.', 4474, - '=', 1170, - '_', 4464, - '\t', 3307, - ' ', 3307, - 'I', 4477, - 'i', 4477, + '-', 2965, + '.', 4272, + '=', 1111, + '_', 4262, + '\t', 3245, + ' ', 3245, + 'I', 4275, + 'i', 4275, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); END_STATE(); - case 3033: + case 2973: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(3025); - if (lookahead == '.') ADVANCE(682); - if (lookahead == '_') ADVANCE(636); + if (lookahead == '-') ADVANCE(2965); + if (lookahead == '.') ADVANCE(621); + if (lookahead == '_') ADVANCE(574); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); + lookahead == 'i') ADVANCE(902); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); END_STATE(); - case 3034: + case 2974: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(3025); - if (lookahead == '.') ADVANCE(4105); - if (lookahead == '_') ADVANCE(4079); + if (lookahead == '-') ADVANCE(2965); + if (lookahead == '.') ADVANCE(622); + if (lookahead == '_') ADVANCE(579); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4197); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); + lookahead == 'i') ADVANCE(902); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); END_STATE(); - case 3035: + case 2975: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(3025); - if (lookahead == '.') ADVANCE(683); - if (lookahead == '_') ADVANCE(642); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); + if (lookahead == '-') ADVANCE(2965); + if (lookahead == '.') ADVANCE(622); + if (lookahead == '_') ADVANCE(579); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); END_STATE(); - case 3036: + case 2976: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(3025); - if (lookahead == '.') ADVANCE(683); - if (lookahead == '_') ADVANCE(642); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); + if (lookahead == '-') ADVANCE(2965); + if (lookahead == '.') ADVANCE(3934); + if (lookahead == '_') ADVANCE(3913); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4014); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); END_STATE(); - case 3037: + case 2977: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(3025); - if (lookahead == '.') ADVANCE(4584); - if (lookahead == '_') ADVANCE(4566); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); + if (lookahead == '-') ADVANCE(2965); + if (lookahead == '.') ADVANCE(4382); + if (lookahead == '_') ADVANCE(4364); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); END_STATE(); - case 3038: + case 2978: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(3025); - if (lookahead == '.') ADVANCE(4116); - if (lookahead == '_') ADVANCE(4082); + if (lookahead == '-') ADVANCE(2965); + if (lookahead == '.') ADVANCE(3939); + if (lookahead == '_') ADVANCE(3914); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4197); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); + lookahead == 'i') ADVANCE(4014); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); END_STATE(); - case 3039: + case 2979: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(3025); + if (lookahead == '-') ADVANCE(2965); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3307); + lookahead == ' ') ADVANCE(3245); END_STATE(); - case 3040: + case 2980: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(3026); - if (lookahead == '.') ADVANCE(682); - if (lookahead == '_') ADVANCE(3777); + if (lookahead == '-') ADVANCE(2966); + if (lookahead == '.') ADVANCE(621); + if (lookahead == '_') ADVANCE(3707); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3814); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3784); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + lookahead == 'i') ADVANCE(3744); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3714); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3041: + case 2981: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(3026); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == '-') ADVANCE(2966); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3042: + case 2982: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(3028); - if (lookahead == '.') ADVANCE(4280); - if (lookahead == '_') ADVANCE(4249); + if (lookahead == '-') ADVANCE(2968); + if (lookahead == '.') ADVANCE(4079); + if (lookahead == '_') ADVANCE(4058); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4426); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4280); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + lookahead == 'i') ADVANCE(4224); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4079); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 3043: + case 2983: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(3028); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (lookahead == '-') ADVANCE(2968); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 3044: + case 2984: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(3027); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); + if (lookahead == '-') ADVANCE(2967); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); - case 3045: + case 2985: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(682); - if (lookahead == '=') ADVANCE(1170); - if (lookahead == '_') ADVANCE(636); + if (lookahead == '.') ADVANCE(621); + if (lookahead == '=') ADVANCE(1111); + if (lookahead == '_') ADVANCE(574); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3307); + lookahead == ' ') ADVANCE(3245); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); + lookahead == 'i') ADVANCE(902); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); END_STATE(); - case 3046: + case 2986: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(682); - if (lookahead == '=') ADVANCE(1170); - if (lookahead == '_') ADVANCE(636); + if (lookahead == '.') ADVANCE(621); + if (lookahead == '=') ADVANCE(1111); + if (lookahead == '_') ADVANCE(574); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); + lookahead == 'i') ADVANCE(902); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); END_STATE(); - case 3047: + case 2987: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(682); - if (lookahead == '_') ADVANCE(636); + if (lookahead == '.') ADVANCE(621); + if (lookahead == '_') ADVANCE(574); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); + lookahead == 'i') ADVANCE(902); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); END_STATE(); - case 3048: + case 2988: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(682); - if (lookahead == '_') ADVANCE(3777); + if (lookahead == '.') ADVANCE(621); + if (lookahead == '_') ADVANCE(3707); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3814); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3784); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + lookahead == 'i') ADVANCE(3744); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3714); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3049: + case 2989: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(4811); - if (lookahead == '_') ADVANCE(4803); + if (lookahead == '.') ADVANCE(4609); + if (lookahead == '_') ADVANCE(4601); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4831); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); + lookahead == 'i') ADVANCE(4629); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); END_STATE(); - case 3050: + case 2990: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(4902); - if (lookahead == '_') ADVANCE(4895); + if (lookahead == '.') ADVANCE(4700); + if (lookahead == '_') ADVANCE(4693); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5006); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4902); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5017); + lookahead == 'i') ADVANCE(4804); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4700); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4815); END_STATE(); - case 3051: + case 2991: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(4105); - if (lookahead == '_') ADVANCE(4079); + if (lookahead == '.') ADVANCE(4079); + if (lookahead == '_') ADVANCE(4058); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4197); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); + lookahead == 'i') ADVANCE(4224); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4079); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 3052: + case 2992: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(683); - if (lookahead == '_') ADVANCE(642); + if (lookahead == '.') ADVANCE(622); + if (lookahead == '_') ADVANCE(579); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); + lookahead == 'i') ADVANCE(902); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); END_STATE(); - case 3053: + case 2993: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(4812); - if (lookahead == '_') ADVANCE(4805); + if (lookahead == '.') ADVANCE(4610); + if (lookahead == '_') ADVANCE(4603); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4831); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); + lookahead == 'i') ADVANCE(4629); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); END_STATE(); - case 3054: + case 2994: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(4280); - if (lookahead == '_') ADVANCE(4249); + if (lookahead == '.') ADVANCE(3939); + if (lookahead == '_') ADVANCE(3914); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4426); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4280); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + lookahead == 'i') ADVANCE(4014); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); END_STATE(); - case 3055: + case 2995: ACCEPT_TOKEN(sym_param_short_flag_identifier); END_STATE(); - case 3056: + case 2996: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == '+') ADVANCE(2420); - if (lookahead == '-') ADVANCE(3636); - if (lookahead == 'I') ADVANCE(2704); - if (lookahead == '_') ADVANCE(2420); - if (lookahead == 'i') ADVANCE(2451); + if (lookahead == '+') ADVANCE(2361); + if (lookahead == '-') ADVANCE(3574); + if (lookahead == 'I') ADVANCE(2645); + if (lookahead == '_') ADVANCE(2361); + if (lookahead == 'i') ADVANCE(2392); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3527); + lookahead == 'b') ADVANCE(3465); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3445); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3383); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3057: + case 2997: ACCEPT_TOKEN(sym_param_short_flag_identifier); ADVANCE_MAP( - '+', 2419, - '-', 3636, - '>', 3711, - 'I', 2704, - '_', 2420, - 'i', 2704, - 'l', 2639, - 'n', 2464, - 'r', 2596, - 'x', 2590, - 'B', 3527, - 'b', 3527, + '+', 2360, + '-', 3574, + '>', 3647, + 'I', 2645, + '_', 2361, + 'i', 2645, + 'l', 2580, + 'n', 2405, + 'r', 2537, + 'x', 2531, + 'B', 3465, + 'b', 3465, ); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3445); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3383); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3058: + case 2998: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == '+') ADVANCE(2491); - if (lookahead == '>') ADVANCE(3716); - if (lookahead == 'n') ADVANCE(2469); - if (lookahead == 'r') ADVANCE(3276); - if (lookahead == 'u') ADVANCE(2657); - if (lookahead == 'v') ADVANCE(2494); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == '+') ADVANCE(2432); + if (lookahead == '>') ADVANCE(3651); + if (lookahead == 'n') ADVANCE(2410); + if (lookahead == 'r') ADVANCE(3214); + if (lookahead == 'u') ADVANCE(2598); + if (lookahead == 'v') ADVANCE(2435); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3059: + case 2999: ACCEPT_TOKEN(sym_param_short_flag_identifier); ADVANCE_MAP( - ',', 3594, - ':', 3594, - '=', 3594, - 'u', 2702, - 'x', 2717, - '-', 3594, - '@', 3594, - '.', 3594, - '?', 3594, - '<', 3594, - '>', 3594, - '"', 3594, - '\'', 3594, - '`', 3594, + ',', 3532, + ':', 3532, + '=', 3532, + 'u', 2643, + 'x', 2658, + '-', 3532, + '@', 3532, + '.', 3532, + '?', 3532, + '<', 3532, + '>', 3532, + '"', 3532, + '\'', 3532, + '`', 3532, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || @@ -48773,88 +46372,88 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ';' || lookahead == '[' || lookahead == ']' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(3594); - if (lookahead != 0) ADVANCE(3595); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(3532); + if (lookahead != 0) ADVANCE(3533); END_STATE(); - case 3060: + case 3000: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == '=') ADVANCE(3285); - if (lookahead == '~') ADVANCE(3291); + if (lookahead == '=') ADVANCE(3223); + if (lookahead == '~') ADVANCE(3229); END_STATE(); - case 3061: + case 3001: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == '=') ADVANCE(1172); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2720); + if (lookahead == '=') ADVANCE(1113); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2661); END_STATE(); - case 3062: + case 3002: ACCEPT_TOKEN(sym_param_short_flag_identifier); ADVANCE_MAP( - 'I', 2704, - 'a', 2532, - 'i', 2560, - 'o', 2463, - 's', 3533, - 'u', 2655, - 'B', 3528, - 'b', 3528, + 'I', 2645, + 'a', 2473, + 'i', 2501, + 'o', 2404, + 's', 3471, + 'u', 2596, + 'B', 3466, + 'b', 3466, ); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3063: + case 3003: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'I') ADVANCE(2704); - if (lookahead == 'i') ADVANCE(2704); - if (lookahead == 'r') ADVANCE(2684); + if (lookahead == 'I') ADVANCE(2645); + if (lookahead == 'i') ADVANCE(2645); + if (lookahead == 'r') ADVANCE(2625); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3528); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + lookahead == 'b') ADVANCE(3466); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3064: + case 3004: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'I') ADVANCE(2704); - if (lookahead == 'i') ADVANCE(2704); + if (lookahead == 'I') ADVANCE(2645); + if (lookahead == 'i') ADVANCE(2645); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3528); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + lookahead == 'b') ADVANCE(3466); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3065: + case 3005: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'I') ADVANCE(2704); - if (lookahead == 'i') ADVANCE(2451); + if (lookahead == 'I') ADVANCE(2645); + if (lookahead == 'i') ADVANCE(2392); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3528); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + lookahead == 'b') ADVANCE(3466); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3066: + case 3006: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'N') ADVANCE(2705); - if (lookahead == 'f') ADVANCE(3147); - if (lookahead == 'm') ADVANCE(2591); - if (lookahead == 'n') ADVANCE(3110); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'N') ADVANCE(2646); + if (lookahead == 'f') ADVANCE(3087); + if (lookahead == 'm') ADVANCE(2532); + if (lookahead == 'n') ADVANCE(3050); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3067: + case 3007: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == '_') ADVANCE(3422); - if (lookahead == 'b') ADVANCE(3517); - if (lookahead == 'o') ADVANCE(3534); - if (lookahead == 'x') ADVANCE(3540); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3424); + if (lookahead == '_') ADVANCE(3360); + if (lookahead == 'b') ADVANCE(3455); + if (lookahead == 'o') ADVANCE(3472); + if (lookahead == 'x') ADVANCE(3478); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3362); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3068: + case 3008: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == '_') ADVANCE(3422); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3424); + if (lookahead == '_') ADVANCE(3360); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3362); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3069: + case 3009: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == '`') ADVANCE(3592); + if (lookahead == '`') ADVANCE(3530); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || @@ -48866,3076 +46465,3063 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?' || lookahead == '[' || lookahead == ']' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(695); - if (lookahead != 0) ADVANCE(3687); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(634); + if (lookahead != 0) ADVANCE(3625); END_STATE(); - case 3070: + case 3010: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'a') ADVANCE(2668); - if (lookahead == 'e') ADVANCE(2535); - if (lookahead == 'o') ADVANCE(2561); + if (lookahead == 'a') ADVANCE(2609); + if (lookahead == 'e') ADVANCE(2476); + if (lookahead == 'o') ADVANCE(2502); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('b' <= lookahead && lookahead <= 'f')) ADVANCE(2715); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ('b' <= lookahead && lookahead <= 'f')) ADVANCE(2656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3071: + case 3011: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'a') ADVANCE(2698); - if (lookahead == 'e') ADVANCE(2510); - if (lookahead == 'o') ADVANCE(3140); + if (lookahead == 'a') ADVANCE(2639); + if (lookahead == 'e') ADVANCE(2451); + if (lookahead == 'o') ADVANCE(3080); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('b' <= lookahead && lookahead <= 'f')) ADVANCE(2715); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ('b' <= lookahead && lookahead <= 'f')) ADVANCE(2656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3072: + case 3012: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'a') ADVANCE(2550); - if (lookahead == 'o') ADVANCE(2597); - if (lookahead == 'u') ADVANCE(2549); + if (lookahead == 'a') ADVANCE(2491); + if (lookahead == 'o') ADVANCE(2538); + if (lookahead == 'u') ADVANCE(2490); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('b' <= lookahead && lookahead <= 'f')) ADVANCE(2715); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ('b' <= lookahead && lookahead <= 'f')) ADVANCE(2656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3073: + case 3013: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'a') ADVANCE(2608); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'a') ADVANCE(2549); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3074: + case 3014: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'e') ADVANCE(2654); - if (lookahead == 'i') ADVANCE(2638); - if (lookahead == 'o') ADVANCE(2572); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(2595); + if (lookahead == 'i') ADVANCE(2579); + if (lookahead == 'o') ADVANCE(2513); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3075: + case 3015: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'e') ADVANCE(2696); - if (lookahead == 'o') ADVANCE(2656); - if (lookahead == 's') ADVANCE(3533); - if (lookahead == 'u') ADVANCE(2536); + if (lookahead == 'e') ADVANCE(2637); + if (lookahead == 'o') ADVANCE(2597); + if (lookahead == 's') ADVANCE(3471); + if (lookahead == 'u') ADVANCE(2477); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2708); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + lookahead == 'a') ADVANCE(2649); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3076: + case 3016: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'e') ADVANCE(2512); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(2453); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3077: + case 3017: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'e') ADVANCE(2452); - if (lookahead == 'o') ADVANCE(2683); - if (lookahead == 't') ADVANCE(2444); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(2393); + if (lookahead == 'o') ADVANCE(2624); + if (lookahead == 't') ADVANCE(2385); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3078: + case 3018: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'h') ADVANCE(2498); - if (lookahead == 'k') ADVANCE(3533); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'h') ADVANCE(2439); + if (lookahead == 'k') ADVANCE(3471); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3079: + case 3019: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'i') ADVANCE(2466); - if (lookahead == 'r') ADVANCE(3533); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'i') ADVANCE(2407); + if (lookahead == 'r') ADVANCE(3471); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3080: + case 3020: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'l') ADVANCE(2521); - if (lookahead == 'n') ADVANCE(2460); - if (lookahead == 's') ADVANCE(3251); + if (lookahead == 'l') ADVANCE(2462); + if (lookahead == 'n') ADVANCE(2401); + if (lookahead == 's') ADVANCE(3189); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3081: + case 3021: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'o') ADVANCE(2598); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'o') ADVANCE(2539); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3082: + case 3022: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'r') ADVANCE(2492); + if (lookahead == 'r') ADVANCE(2433); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3083: + case 3023: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 's') ADVANCE(3533); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 's') ADVANCE(3471); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3084: + case 3024: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 's') ADVANCE(3530); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 's') ADVANCE(3468); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3085: + case 3025: ACCEPT_TOKEN(sym_param_short_flag_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2708); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + lookahead == 'a') ADVANCE(2649); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3086: + case 3026: ACCEPT_TOKEN(sym_param_short_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2705); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + lookahead == 'n') ADVANCE(2646); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3087: + case 3027: ACCEPT_TOKEN(sym_param_short_flag_identifier); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3169); + lookahead == ' ') ADVANCE(3109); END_STATE(); - case 3088: + case 3028: ACCEPT_TOKEN(sym_param_short_flag_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3089: + case 3029: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3090: + case 3030: ACCEPT_TOKEN(anon_sym_break); - if (lookahead == ',') ADVANCE(2128); + if (lookahead == ',') ADVANCE(2069); if (lookahead == '-' || - lookahead == '@') ADVANCE(2124); + lookahead == '@') ADVANCE(2065); if (lookahead == '.' || - lookahead == '?') ADVANCE(2126); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2123); + lookahead == '?') ADVANCE(2067); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2064); END_STATE(); - case 3091: + case 3031: ACCEPT_TOKEN(anon_sym_break); - if (lookahead == ',') ADVANCE(2128); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4873); + if (lookahead == ',') ADVANCE(2069); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4671); END_STATE(); - case 3092: + case 3032: ACCEPT_TOKEN(anon_sym_break); - if (lookahead == ',') ADVANCE(2128); + if (lookahead == ',') ADVANCE(2069); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2126); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2125); + lookahead == '@') ADVANCE(2067); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2066); END_STATE(); - case 3093: + case 3033: ACCEPT_TOKEN(anon_sym_break); - if (lookahead == ',') ADVANCE(2128); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2126); + if (lookahead == ',') ADVANCE(2069); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2067); END_STATE(); - case 3094: + case 3034: ACCEPT_TOKEN(anon_sym_break); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2128); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2127); + lookahead == '@') ADVANCE(2069); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2068); END_STATE(); - case 3095: + case 3035: ACCEPT_TOKEN(anon_sym_break); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2128); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2069); END_STATE(); - case 3096: + case 3036: ACCEPT_TOKEN(anon_sym_continue); - if (lookahead == ',') ADVANCE(2134); + if (lookahead == ',') ADVANCE(2075); if (lookahead == '-' || - lookahead == '@') ADVANCE(2130); + lookahead == '@') ADVANCE(2071); if (lookahead == '.' || - lookahead == '?') ADVANCE(2132); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2129); + lookahead == '?') ADVANCE(2073); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2070); END_STATE(); - case 3097: + case 3037: ACCEPT_TOKEN(anon_sym_continue); - if (lookahead == ',') ADVANCE(2134); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4891); + if (lookahead == ',') ADVANCE(2075); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4689); END_STATE(); - case 3098: + case 3038: ACCEPT_TOKEN(anon_sym_continue); - if (lookahead == ',') ADVANCE(2134); + if (lookahead == ',') ADVANCE(2075); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2132); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2131); + lookahead == '@') ADVANCE(2073); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2072); END_STATE(); - case 3099: + case 3039: ACCEPT_TOKEN(anon_sym_continue); - if (lookahead == ',') ADVANCE(2134); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2132); + if (lookahead == ',') ADVANCE(2075); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2073); END_STATE(); - case 3100: + case 3040: ACCEPT_TOKEN(anon_sym_continue); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2134); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2133); + lookahead == '@') ADVANCE(2075); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2074); END_STATE(); - case 3101: + case 3041: ACCEPT_TOKEN(anon_sym_continue); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2134); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2075); END_STATE(); - case 3102: + case 3042: ACCEPT_TOKEN(anon_sym_for); - if (lookahead == ',') ADVANCE(2068); + if (lookahead == ',') ADVANCE(2009); if (lookahead == '-' || - lookahead == '@') ADVANCE(2064); + lookahead == '@') ADVANCE(2005); if (lookahead == '.' || - lookahead == '?') ADVANCE(2066); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2063); + lookahead == '?') ADVANCE(2007); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2004); END_STATE(); - case 3103: + case 3043: ACCEPT_TOKEN(anon_sym_for); - if (lookahead == ',') ADVANCE(2068); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4855); + if (lookahead == ',') ADVANCE(2009); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4653); END_STATE(); - case 3104: + case 3044: ACCEPT_TOKEN(anon_sym_for); - if (lookahead == ',') ADVANCE(2068); + if (lookahead == ',') ADVANCE(2009); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2066); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2065); + lookahead == '@') ADVANCE(2007); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2006); END_STATE(); - case 3105: + case 3045: ACCEPT_TOKEN(anon_sym_for); - if (lookahead == ',') ADVANCE(2068); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2066); + if (lookahead == ',') ADVANCE(2009); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2007); END_STATE(); - case 3106: + case 3046: ACCEPT_TOKEN(anon_sym_for); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2068); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2067); + lookahead == '@') ADVANCE(2009); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2008); END_STATE(); - case 3107: + case 3047: ACCEPT_TOKEN(anon_sym_for); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2068); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2009); END_STATE(); - case 3108: + case 3048: ACCEPT_TOKEN(anon_sym_in); END_STATE(); - case 3109: + case 3049: ACCEPT_TOKEN(anon_sym_in); ADVANCE_MAP( - '\n', 3362, + '\n', 3300, '\r', 12, - ',', 2179, - '\t', 3328, - ' ', 3328, - 'F', 2154, - 'f', 2154, - '-', 2165, - '.', 2165, - '?', 2165, - '@', 2165, + ',', 2120, + '\t', 3266, + ' ', 3266, + 'F', 2095, + 'f', 2095, + '-', 2106, + '.', 2106, + '?', 2106, + '@', 2106, ); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2164); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2105); END_STATE(); - case 3110: + case 3050: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == ',') ADVANCE(2179); + if (lookahead == ',') ADVANCE(2120); if (lookahead == '-' || - lookahead == '@') ADVANCE(2153); + lookahead == '@') ADVANCE(2094); if (lookahead == '.' || - lookahead == '?') ADVANCE(2165); + lookahead == '?') ADVANCE(2106); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2147); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2152); + lookahead == 'f') ADVANCE(2088); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2093); END_STATE(); - case 3111: + case 3051: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == ',') ADVANCE(2179); + if (lookahead == ',') ADVANCE(2120); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2156); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2165); + lookahead == 'f') ADVANCE(2097); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2106); END_STATE(); - case 3112: + case 3052: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == ',') ADVANCE(2179); + if (lookahead == ',') ADVANCE(2120); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4848); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4853); + lookahead == 'f') ADVANCE(4646); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4651); END_STATE(); - case 3113: + case 3053: ACCEPT_TOKEN(anon_sym_in); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3329); + lookahead == ' ') ADVANCE(3267); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2170); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2179); + lookahead == 'f') ADVANCE(2111); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2120); END_STATE(); - case 3114: + case 3054: ACCEPT_TOKEN(anon_sym_in); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2168); + lookahead == 'f') ADVANCE(2109); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2179); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2178); + lookahead == '@') ADVANCE(2120); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2119); END_STATE(); - case 3115: + case 3055: ACCEPT_TOKEN(anon_sym_in); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2170); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2179); + lookahead == 'f') ADVANCE(2111); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2120); END_STATE(); - case 3116: + case 3056: ACCEPT_TOKEN(anon_sym_in); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); - case 3117: + case 3057: ACCEPT_TOKEN(anon_sym_in); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3118: + case 3058: ACCEPT_TOKEN(anon_sym_in); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3119: + case 3059: ACCEPT_TOKEN(anon_sym_in); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 3120: + case 3060: ACCEPT_TOKEN(anon_sym_loop); - if (lookahead == ',') ADVANCE(2074); + if (lookahead == ',') ADVANCE(2015); if (lookahead == '-' || - lookahead == '@') ADVANCE(2070); + lookahead == '@') ADVANCE(2011); if (lookahead == '.' || - lookahead == '?') ADVANCE(2072); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2069); + lookahead == '?') ADVANCE(2013); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2010); END_STATE(); - case 3121: + case 3061: ACCEPT_TOKEN(anon_sym_loop); - if (lookahead == ',') ADVANCE(2074); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4870); + if (lookahead == ',') ADVANCE(2015); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4668); END_STATE(); - case 3122: + case 3062: ACCEPT_TOKEN(anon_sym_loop); - if (lookahead == ',') ADVANCE(2074); + if (lookahead == ',') ADVANCE(2015); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2072); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2071); + lookahead == '@') ADVANCE(2013); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2012); END_STATE(); - case 3123: + case 3063: ACCEPT_TOKEN(anon_sym_loop); - if (lookahead == ',') ADVANCE(2074); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2072); + if (lookahead == ',') ADVANCE(2015); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2013); END_STATE(); - case 3124: + case 3064: ACCEPT_TOKEN(anon_sym_loop); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2074); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2073); + lookahead == '@') ADVANCE(2015); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2014); END_STATE(); - case 3125: + case 3065: ACCEPT_TOKEN(anon_sym_loop); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2074); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2015); END_STATE(); - case 3126: + case 3066: ACCEPT_TOKEN(anon_sym_make); END_STATE(); - case 3127: + case 3067: ACCEPT_TOKEN(anon_sym_make); - if (lookahead == ',') ADVANCE(2197); + if (lookahead == ',') ADVANCE(2138); if (lookahead == '-' || - lookahead == '@') ADVANCE(2193); + lookahead == '@') ADVANCE(2134); if (lookahead == '.' || - lookahead == '?') ADVANCE(2195); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2192); + lookahead == '?') ADVANCE(2136); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2133); END_STATE(); - case 3128: + case 3068: ACCEPT_TOKEN(anon_sym_make); - if (lookahead == ',') ADVANCE(2197); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4871); + if (lookahead == ',') ADVANCE(2138); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4669); END_STATE(); - case 3129: + case 3069: ACCEPT_TOKEN(anon_sym_make); - if (lookahead == ',') ADVANCE(2197); + if (lookahead == ',') ADVANCE(2138); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2195); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2194); + lookahead == '@') ADVANCE(2136); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2135); END_STATE(); - case 3130: + case 3070: ACCEPT_TOKEN(anon_sym_make); - if (lookahead == ',') ADVANCE(2197); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2195); + if (lookahead == ',') ADVANCE(2138); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2136); END_STATE(); - case 3131: + case 3071: ACCEPT_TOKEN(anon_sym_make); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2197); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2196); + lookahead == '@') ADVANCE(2138); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2137); END_STATE(); - case 3132: + case 3072: ACCEPT_TOKEN(anon_sym_make); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2197); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2138); END_STATE(); - case 3133: + case 3073: ACCEPT_TOKEN(anon_sym_while); - if (lookahead == ',') ADVANCE(2080); + if (lookahead == ',') ADVANCE(2021); if (lookahead == '-' || - lookahead == '@') ADVANCE(2076); + lookahead == '@') ADVANCE(2017); if (lookahead == '.' || - lookahead == '?') ADVANCE(2078); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2075); + lookahead == '?') ADVANCE(2019); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2016); END_STATE(); - case 3134: + case 3074: ACCEPT_TOKEN(anon_sym_while); - if (lookahead == ',') ADVANCE(2080); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4878); + if (lookahead == ',') ADVANCE(2021); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4676); END_STATE(); - case 3135: + case 3075: ACCEPT_TOKEN(anon_sym_while); - if (lookahead == ',') ADVANCE(2080); + if (lookahead == ',') ADVANCE(2021); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2078); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2077); + lookahead == '@') ADVANCE(2019); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2018); END_STATE(); - case 3136: + case 3076: ACCEPT_TOKEN(anon_sym_while); - if (lookahead == ',') ADVANCE(2080); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2078); + if (lookahead == ',') ADVANCE(2021); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2019); END_STATE(); - case 3137: + case 3077: ACCEPT_TOKEN(anon_sym_while); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2080); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2079); + lookahead == '@') ADVANCE(2021); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2020); END_STATE(); - case 3138: + case 3078: ACCEPT_TOKEN(anon_sym_while); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2080); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2021); END_STATE(); - case 3139: + case 3079: ACCEPT_TOKEN(anon_sym_do); END_STATE(); - case 3140: + case 3080: ACCEPT_TOKEN(anon_sym_do); - if (lookahead == ',') ADVANCE(2092); + if (lookahead == ',') ADVANCE(2033); if (lookahead == '-' || - lookahead == '@') ADVANCE(2088); + lookahead == '@') ADVANCE(2029); if (lookahead == '.' || - lookahead == '?') ADVANCE(2090); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2087); + lookahead == '?') ADVANCE(2031); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2028); END_STATE(); - case 3141: + case 3081: ACCEPT_TOKEN(anon_sym_do); - if (lookahead == ',') ADVANCE(2092); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4846); + if (lookahead == ',') ADVANCE(2033); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4644); END_STATE(); - case 3142: + case 3082: ACCEPT_TOKEN(anon_sym_do); - if (lookahead == ',') ADVANCE(2092); + if (lookahead == ',') ADVANCE(2033); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2090); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2089); + lookahead == '@') ADVANCE(2031); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2030); END_STATE(); - case 3143: + case 3083: ACCEPT_TOKEN(anon_sym_do); - if (lookahead == ',') ADVANCE(2092); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2090); + if (lookahead == ',') ADVANCE(2033); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2031); END_STATE(); - case 3144: + case 3084: ACCEPT_TOKEN(anon_sym_do); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2092); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2091); + lookahead == '@') ADVANCE(2033); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 3145: + case 3085: ACCEPT_TOKEN(anon_sym_do); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2092); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2033); END_STATE(); - case 3146: + case 3086: ACCEPT_TOKEN(anon_sym_if); END_STATE(); - case 3147: + case 3087: ACCEPT_TOKEN(anon_sym_if); - if (lookahead == ',') ADVANCE(2098); + if (lookahead == ',') ADVANCE(2039); if (lookahead == '-' || - lookahead == '@') ADVANCE(2094); + lookahead == '@') ADVANCE(2035); if (lookahead == '.' || - lookahead == '?') ADVANCE(2096); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2093); + lookahead == '?') ADVANCE(2037); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2034); END_STATE(); - case 3148: + case 3088: ACCEPT_TOKEN(anon_sym_if); - if (lookahead == ',') ADVANCE(2098); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4847); + if (lookahead == ',') ADVANCE(2039); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4645); END_STATE(); - case 3149: + case 3089: ACCEPT_TOKEN(anon_sym_if); - if (lookahead == ',') ADVANCE(2098); + if (lookahead == ',') ADVANCE(2039); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2096); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2095); + lookahead == '@') ADVANCE(2037); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); END_STATE(); - case 3150: + case 3090: ACCEPT_TOKEN(anon_sym_if); - if (lookahead == ',') ADVANCE(2098); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2096); + if (lookahead == ',') ADVANCE(2039); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2037); END_STATE(); - case 3151: + case 3091: ACCEPT_TOKEN(anon_sym_if); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2098); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2097); + lookahead == '@') ADVANCE(2039); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2038); END_STATE(); - case 3152: + case 3092: ACCEPT_TOKEN(anon_sym_if); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2098); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2039); END_STATE(); - case 3153: + case 3093: ACCEPT_TOKEN(anon_sym_if); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 3154: + case 3094: ACCEPT_TOKEN(anon_sym_else); END_STATE(); - case 3155: + case 3095: ACCEPT_TOKEN(anon_sym_else); - if (lookahead == ',') ADVANCE(2104); + if (lookahead == ',') ADVANCE(2045); if (lookahead == '-' || - lookahead == '@') ADVANCE(2100); + lookahead == '@') ADVANCE(2041); if (lookahead == '.' || - lookahead == '?') ADVANCE(2102); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2099); + lookahead == '?') ADVANCE(2043); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2040); END_STATE(); - case 3156: + case 3096: ACCEPT_TOKEN(anon_sym_else); - if (lookahead == ',') ADVANCE(2104); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4864); + if (lookahead == ',') ADVANCE(2045); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4662); END_STATE(); - case 3157: + case 3097: ACCEPT_TOKEN(anon_sym_else); - if (lookahead == ',') ADVANCE(2104); + if (lookahead == ',') ADVANCE(2045); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2102); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2101); + lookahead == '@') ADVANCE(2043); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2042); END_STATE(); - case 3158: + case 3098: ACCEPT_TOKEN(anon_sym_else); - if (lookahead == ',') ADVANCE(2104); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2102); + if (lookahead == ',') ADVANCE(2045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); - case 3159: + case 3099: ACCEPT_TOKEN(anon_sym_else); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2104); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2103); + lookahead == '@') ADVANCE(2045); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2044); END_STATE(); - case 3160: + case 3100: ACCEPT_TOKEN(anon_sym_else); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3161: + case 3101: ACCEPT_TOKEN(anon_sym_else); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2104); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2045); END_STATE(); - case 3162: + case 3102: ACCEPT_TOKEN(anon_sym_match); END_STATE(); - case 3163: + case 3103: ACCEPT_TOKEN(anon_sym_match); - if (lookahead == ',') ADVANCE(2122); + if (lookahead == ',') ADVANCE(2063); if (lookahead == '-' || - lookahead == '@') ADVANCE(2118); + lookahead == '@') ADVANCE(2059); if (lookahead == '.' || - lookahead == '?') ADVANCE(2120); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2117); + lookahead == '?') ADVANCE(2061); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2058); END_STATE(); - case 3164: + case 3104: ACCEPT_TOKEN(anon_sym_match); - if (lookahead == ',') ADVANCE(2122); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4877); + if (lookahead == ',') ADVANCE(2063); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4675); END_STATE(); - case 3165: + case 3105: ACCEPT_TOKEN(anon_sym_match); - if (lookahead == ',') ADVANCE(2122); + if (lookahead == ',') ADVANCE(2063); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2120); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2119); + lookahead == '@') ADVANCE(2061); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2060); END_STATE(); - case 3166: + case 3106: ACCEPT_TOKEN(anon_sym_match); - if (lookahead == ',') ADVANCE(2122); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2120); + if (lookahead == ',') ADVANCE(2063); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2061); END_STATE(); - case 3167: + case 3107: ACCEPT_TOKEN(anon_sym_match); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2122); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2121); + lookahead == '@') ADVANCE(2063); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2062); END_STATE(); - case 3168: + case 3108: ACCEPT_TOKEN(anon_sym_match); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2122); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2063); END_STATE(); - case 3169: + case 3109: ACCEPT_TOKEN(aux_sym_ctrl_match_token1); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3169); + lookahead == ' ') ADVANCE(3109); END_STATE(); - case 3170: + case 3110: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 3171: + case 3111: ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); - case 3172: + case 3112: ACCEPT_TOKEN(anon_sym_EQ_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); - END_STATE(); - case 3173: - ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(3903); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); - END_STATE(); - case 3174: - ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(2422); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3422); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 3175: + case 3113: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(2429); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2429); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); END_STATE(); - case 3176: + case 3114: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(4112); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if (lookahead == '_') ADVANCE(3811); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); END_STATE(); - case 3177: + case 3115: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(3912); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if (lookahead == '_') ADVANCE(2363); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3360); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3178: + case 3116: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(4115); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if (lookahead == '_') ADVANCE(2370); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2370); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3179: + case 3117: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(4280); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4280); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (lookahead == '_') ADVANCE(630); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); END_STATE(); - case 3180: + case 3118: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(3022); - if (lookahead == '<') ADVANCE(3412); - if (lookahead == '=') ADVANCE(3409); + if (lookahead == '.') ADVANCE(2962); + if (lookahead == '<') ADVANCE(3350); + if (lookahead == '=') ADVANCE(3347); END_STATE(); - case 3181: + case 3119: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(1181); - if (lookahead == '<') ADVANCE(3412); - if (lookahead == '=') ADVANCE(3409); + if (lookahead == '.') ADVANCE(1122); + if (lookahead == '<') ADVANCE(3350); + if (lookahead == '=') ADVANCE(3347); END_STATE(); - case 3182: + case 3120: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(3841); - if (lookahead == '<') ADVANCE(3412); - if (lookahead == '=') ADVANCE(3409); + if (lookahead == '.') ADVANCE(3771); + if (lookahead == '<') ADVANCE(3350); + if (lookahead == '=') ADVANCE(3347); END_STATE(); - case 3183: + case 3121: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(4457); - if (lookahead == '<') ADVANCE(3412); - if (lookahead == '=') ADVANCE(3409); + if (lookahead == '.') ADVANCE(4255); + if (lookahead == '<') ADVANCE(3350); + if (lookahead == '=') ADVANCE(3347); END_STATE(); - case 3184: + case 3122: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(3412); - if (lookahead == '=') ADVANCE(3409); + if (lookahead == '<') ADVANCE(3350); + if (lookahead == '=') ADVANCE(3347); END_STATE(); - case 3185: + case 3123: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(3414); - if (lookahead == '=') ADVANCE(3411); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (lookahead == '<') ADVANCE(3352); + if (lookahead == '=') ADVANCE(3349); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 3186: + case 3124: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(3413); - if (lookahead == '=') ADVANCE(3410); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); + if (lookahead == '<') ADVANCE(3351); + if (lookahead == '=') ADVANCE(3348); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); - case 3187: + case 3125: ACCEPT_TOKEN(anon_sym_DOLLAR2); END_STATE(); - case 3188: + case 3126: ACCEPT_TOKEN(anon_sym_DOLLAR2); - if (lookahead == '"') ADVANCE(3604); - if (lookahead == '\'') ADVANCE(3600); + if (lookahead == '"') ADVANCE(3542); + if (lookahead == '\'') ADVANCE(3538); END_STATE(); - case 3189: + case 3127: ACCEPT_TOKEN(anon_sym_try); END_STATE(); - case 3190: + case 3128: ACCEPT_TOKEN(anon_sym_try); - if (lookahead == ',') ADVANCE(2110); + if (lookahead == ',') ADVANCE(2051); if (lookahead == '-' || - lookahead == '@') ADVANCE(2106); + lookahead == '@') ADVANCE(2047); if (lookahead == '.' || - lookahead == '?') ADVANCE(2108); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2105); + lookahead == '?') ADVANCE(2049); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2046); END_STATE(); - case 3191: + case 3129: ACCEPT_TOKEN(anon_sym_try); - if (lookahead == ',') ADVANCE(2110); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4862); + if (lookahead == ',') ADVANCE(2051); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4660); END_STATE(); - case 3192: + case 3130: ACCEPT_TOKEN(anon_sym_try); - if (lookahead == ',') ADVANCE(2110); + if (lookahead == ',') ADVANCE(2051); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2108); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2107); + lookahead == '@') ADVANCE(2049); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2048); END_STATE(); - case 3193: + case 3131: ACCEPT_TOKEN(anon_sym_try); - if (lookahead == ',') ADVANCE(2110); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2108); + if (lookahead == ',') ADVANCE(2051); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2049); END_STATE(); - case 3194: + case 3132: ACCEPT_TOKEN(anon_sym_try); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2110); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2109); + lookahead == '@') ADVANCE(2051); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2050); END_STATE(); - case 3195: + case 3133: ACCEPT_TOKEN(anon_sym_try); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2110); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2051); END_STATE(); - case 3196: + case 3134: ACCEPT_TOKEN(anon_sym_catch); END_STATE(); - case 3197: + case 3135: ACCEPT_TOKEN(anon_sym_catch); - if (lookahead == ',') ADVANCE(2116); + if (lookahead == ',') ADVANCE(2057); if (lookahead == '-' || - lookahead == '@') ADVANCE(2112); + lookahead == '@') ADVANCE(2053); if (lookahead == '.' || - lookahead == '?') ADVANCE(2114); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2111); + lookahead == '?') ADVANCE(2055); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2052); END_STATE(); - case 3198: + case 3136: ACCEPT_TOKEN(anon_sym_catch); - if (lookahead == ',') ADVANCE(2116); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4874); + if (lookahead == ',') ADVANCE(2057); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4672); END_STATE(); - case 3199: + case 3137: ACCEPT_TOKEN(anon_sym_catch); - if (lookahead == ',') ADVANCE(2116); + if (lookahead == ',') ADVANCE(2057); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2114); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2113); + lookahead == '@') ADVANCE(2055); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2054); END_STATE(); - case 3200: + case 3138: ACCEPT_TOKEN(anon_sym_catch); - if (lookahead == ',') ADVANCE(2116); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2114); + if (lookahead == ',') ADVANCE(2057); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2055); END_STATE(); - case 3201: + case 3139: ACCEPT_TOKEN(anon_sym_catch); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2116); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2115); + lookahead == '@') ADVANCE(2057); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2056); END_STATE(); - case 3202: + case 3140: ACCEPT_TOKEN(anon_sym_catch); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3203: + case 3141: ACCEPT_TOKEN(anon_sym_catch); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2116); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2057); END_STATE(); - case 3204: + case 3142: ACCEPT_TOKEN(anon_sym_return); - if (lookahead == ',') ADVANCE(2140); + if (lookahead == ',') ADVANCE(2081); if (lookahead == '-' || - lookahead == '@') ADVANCE(2136); + lookahead == '@') ADVANCE(2077); if (lookahead == '.' || - lookahead == '?') ADVANCE(2138); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2135); + lookahead == '?') ADVANCE(2079); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2076); END_STATE(); - case 3205: + case 3143: ACCEPT_TOKEN(anon_sym_return); - if (lookahead == ',') ADVANCE(2140); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4885); + if (lookahead == ',') ADVANCE(2081); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4683); END_STATE(); - case 3206: + case 3144: ACCEPT_TOKEN(anon_sym_return); - if (lookahead == ',') ADVANCE(2140); + if (lookahead == ',') ADVANCE(2081); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2138); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2137); + lookahead == '@') ADVANCE(2079); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2078); END_STATE(); - case 3207: + case 3145: ACCEPT_TOKEN(anon_sym_return); - if (lookahead == ',') ADVANCE(2140); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2138); + if (lookahead == ',') ADVANCE(2081); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2079); END_STATE(); - case 3208: + case 3146: ACCEPT_TOKEN(anon_sym_return); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2140); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2139); + lookahead == '@') ADVANCE(2081); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2080); END_STATE(); - case 3209: + case 3147: ACCEPT_TOKEN(anon_sym_return); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2140); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2081); END_STATE(); - case 3210: + case 3148: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == ',') ADVANCE(2050); - if (lookahead == '-') ADVANCE(2031); - if (lookahead == '@') ADVANCE(2038); + if (lookahead == ',') ADVANCE(1991); + if (lookahead == '-') ADVANCE(1972); + if (lookahead == '@') ADVANCE(1979); if (lookahead == '.' || - lookahead == '?') ADVANCE(2040); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); + lookahead == '?') ADVANCE(1981); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1978); END_STATE(); - case 3211: + case 3149: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == ',') ADVANCE(2050); - if (lookahead == '-') ADVANCE(2032); + if (lookahead == ',') ADVANCE(1991); + if (lookahead == '-') ADVANCE(1973); if (lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2040); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2039); + lookahead == '@') ADVANCE(1981); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1980); END_STATE(); - case 3212: + case 3150: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == ',') ADVANCE(2050); - if (lookahead == '-') ADVANCE(2032); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2040); + if (lookahead == ',') ADVANCE(1991); + if (lookahead == '-') ADVANCE(1973); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1981); END_STATE(); - case 3213: + case 3151: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == ',') ADVANCE(2050); - if (lookahead == '-') ADVANCE(4886); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4889); + if (lookahead == ',') ADVANCE(1991); + if (lookahead == '-') ADVANCE(4684); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4687); END_STATE(); - case 3214: + case 3152: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == '-') ADVANCE(2043); + if (lookahead == '-') ADVANCE(1984); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2050); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2049); + lookahead == '@') ADVANCE(1991); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1990); END_STATE(); - case 3215: + case 3153: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == '-') ADVANCE(2043); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2050); + if (lookahead == '-') ADVANCE(1984); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1991); END_STATE(); - case 3216: + case 3154: ACCEPT_TOKEN(anon_sym_source_DASHenv); - if (lookahead == ',') ADVANCE(2050); + if (lookahead == ',') ADVANCE(1991); if (lookahead == '.' || - lookahead == '?') ADVANCE(2040); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2038); + lookahead == '?') ADVANCE(1981); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1979); END_STATE(); - case 3217: + case 3155: ACCEPT_TOKEN(anon_sym_source_DASHenv); - if (lookahead == ',') ADVANCE(2050); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4889); + if (lookahead == ',') ADVANCE(1991); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4687); END_STATE(); - case 3218: + case 3156: ACCEPT_TOKEN(anon_sym_source_DASHenv); - if (lookahead == ',') ADVANCE(2050); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2040); + if (lookahead == ',') ADVANCE(1991); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1981); END_STATE(); - case 3219: + case 3157: ACCEPT_TOKEN(anon_sym_source_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2050); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1991); END_STATE(); - case 3220: + case 3158: ACCEPT_TOKEN(anon_sym_register); - if (lookahead == ',') ADVANCE(2062); + if (lookahead == ',') ADVANCE(2003); if (lookahead == '-' || - lookahead == '@') ADVANCE(2058); + lookahead == '@') ADVANCE(1999); if (lookahead == '.' || - lookahead == '?') ADVANCE(2060); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2057); + lookahead == '?') ADVANCE(2001); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1998); END_STATE(); - case 3221: + case 3159: ACCEPT_TOKEN(anon_sym_register); - if (lookahead == ',') ADVANCE(2062); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4892); + if (lookahead == ',') ADVANCE(2003); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4690); END_STATE(); - case 3222: + case 3160: ACCEPT_TOKEN(anon_sym_register); - if (lookahead == ',') ADVANCE(2062); + if (lookahead == ',') ADVANCE(2003); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2060); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2059); + lookahead == '@') ADVANCE(2001); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2000); END_STATE(); - case 3223: + case 3161: ACCEPT_TOKEN(anon_sym_register); - if (lookahead == ',') ADVANCE(2062); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2060); + if (lookahead == ',') ADVANCE(2003); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2001); END_STATE(); - case 3224: + case 3162: ACCEPT_TOKEN(anon_sym_register); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2062); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2061); + lookahead == '@') ADVANCE(2003); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2002); END_STATE(); - case 3225: + case 3163: ACCEPT_TOKEN(anon_sym_register); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2062); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2003); END_STATE(); - case 3226: + case 3164: ACCEPT_TOKEN(anon_sym_hide); END_STATE(); - case 3227: + case 3165: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == ',') ADVANCE(2030); - if (lookahead == '-') ADVANCE(2011); - if (lookahead == '@') ADVANCE(2018); + if (lookahead == ',') ADVANCE(1971); + if (lookahead == '-') ADVANCE(1952); + if (lookahead == '@') ADVANCE(1959); if (lookahead == '.' || - lookahead == '?') ADVANCE(2020); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2017); + lookahead == '?') ADVANCE(1961); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1958); END_STATE(); - case 3228: + case 3166: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == ',') ADVANCE(2030); - if (lookahead == '-') ADVANCE(2012); + if (lookahead == ',') ADVANCE(1971); + if (lookahead == '-') ADVANCE(1953); if (lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2020); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2019); + lookahead == '@') ADVANCE(1961); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1960); END_STATE(); - case 3229: + case 3167: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == ',') ADVANCE(2030); - if (lookahead == '-') ADVANCE(2012); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2020); + if (lookahead == ',') ADVANCE(1971); + if (lookahead == '-') ADVANCE(1953); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1961); END_STATE(); - case 3230: + case 3168: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == ',') ADVANCE(2030); - if (lookahead == '-') ADVANCE(4865); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4868); + if (lookahead == ',') ADVANCE(1971); + if (lookahead == '-') ADVANCE(4663); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4666); END_STATE(); - case 3231: + case 3169: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == '-') ADVANCE(2023); + if (lookahead == '-') ADVANCE(1964); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2030); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2029); + lookahead == '@') ADVANCE(1971); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1970); END_STATE(); - case 3232: + case 3170: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == '-') ADVANCE(2023); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2030); + if (lookahead == '-') ADVANCE(1964); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1971); END_STATE(); - case 3233: + case 3171: ACCEPT_TOKEN(anon_sym_hide_DASHenv); - if (lookahead == ',') ADVANCE(2030); + if (lookahead == ',') ADVANCE(1971); if (lookahead == '.' || - lookahead == '?') ADVANCE(2020); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2018); + lookahead == '?') ADVANCE(1961); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1959); END_STATE(); - case 3234: + case 3172: ACCEPT_TOKEN(anon_sym_hide_DASHenv); - if (lookahead == ',') ADVANCE(2030); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4868); + if (lookahead == ',') ADVANCE(1971); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4666); END_STATE(); - case 3235: + case 3173: ACCEPT_TOKEN(anon_sym_hide_DASHenv); - if (lookahead == ',') ADVANCE(2030); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2020); + if (lookahead == ',') ADVANCE(1971); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1961); END_STATE(); - case 3236: + case 3174: ACCEPT_TOKEN(anon_sym_hide_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2030); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1971); END_STATE(); - case 3237: + case 3175: ACCEPT_TOKEN(anon_sym_overlay); - if (lookahead == ',') ADVANCE(2056); + if (lookahead == ',') ADVANCE(1997); if (lookahead == '-' || - lookahead == '@') ADVANCE(2052); + lookahead == '@') ADVANCE(1993); if (lookahead == '.' || - lookahead == '?') ADVANCE(2054); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2051); + lookahead == '?') ADVANCE(1995); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1992); END_STATE(); - case 3238: + case 3176: ACCEPT_TOKEN(anon_sym_overlay); - if (lookahead == ',') ADVANCE(2056); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4890); + if (lookahead == ',') ADVANCE(1997); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4688); END_STATE(); - case 3239: + case 3177: ACCEPT_TOKEN(anon_sym_overlay); - if (lookahead == ',') ADVANCE(2056); + if (lookahead == ',') ADVANCE(1997); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2054); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2053); + lookahead == '@') ADVANCE(1995); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1994); END_STATE(); - case 3240: + case 3178: ACCEPT_TOKEN(anon_sym_overlay); - if (lookahead == ',') ADVANCE(2056); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2054); + if (lookahead == ',') ADVANCE(1997); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1995); END_STATE(); - case 3241: + case 3179: ACCEPT_TOKEN(anon_sym_overlay); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2056); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2055); + lookahead == '@') ADVANCE(1997); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1996); END_STATE(); - case 3242: + case 3180: ACCEPT_TOKEN(anon_sym_overlay); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2056); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1997); END_STATE(); - case 3243: + case 3181: ACCEPT_TOKEN(anon_sym_new); END_STATE(); - case 3244: + case 3182: ACCEPT_TOKEN(anon_sym_new); - if (lookahead == ',') ADVANCE(2191); + if (lookahead == ',') ADVANCE(2132); if (lookahead == '-' || - lookahead == '@') ADVANCE(2187); + lookahead == '@') ADVANCE(2128); if (lookahead == '.' || - lookahead == '?') ADVANCE(2189); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2186); + lookahead == '?') ADVANCE(2130); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2127); END_STATE(); - case 3245: + case 3183: ACCEPT_TOKEN(anon_sym_new); - if (lookahead == ',') ADVANCE(2191); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4861); + if (lookahead == ',') ADVANCE(2132); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4659); END_STATE(); - case 3246: + case 3184: ACCEPT_TOKEN(anon_sym_new); - if (lookahead == ',') ADVANCE(2191); + if (lookahead == ',') ADVANCE(2132); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2189); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2188); + lookahead == '@') ADVANCE(2130); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2129); END_STATE(); - case 3247: + case 3185: ACCEPT_TOKEN(anon_sym_new); - if (lookahead == ',') ADVANCE(2191); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2189); + if (lookahead == ',') ADVANCE(2132); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2130); END_STATE(); - case 3248: + case 3186: ACCEPT_TOKEN(anon_sym_new); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2191); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2190); + lookahead == '@') ADVANCE(2132); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2131); END_STATE(); - case 3249: + case 3187: ACCEPT_TOKEN(anon_sym_new); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2191); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2132); END_STATE(); - case 3250: + case 3188: ACCEPT_TOKEN(anon_sym_as); END_STATE(); - case 3251: + case 3189: ACCEPT_TOKEN(anon_sym_as); - if (lookahead == ',') ADVANCE(2146); + if (lookahead == ',') ADVANCE(2087); if (lookahead == '-' || - lookahead == '@') ADVANCE(2142); + lookahead == '@') ADVANCE(2083); if (lookahead == '.' || - lookahead == '?') ADVANCE(2144); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2141); + lookahead == '?') ADVANCE(2085); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2082); END_STATE(); - case 3252: + case 3190: ACCEPT_TOKEN(anon_sym_as); - if (lookahead == ',') ADVANCE(2146); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4845); + if (lookahead == ',') ADVANCE(2087); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4643); END_STATE(); - case 3253: + case 3191: ACCEPT_TOKEN(anon_sym_as); - if (lookahead == ',') ADVANCE(2146); + if (lookahead == ',') ADVANCE(2087); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(2144); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2143); + lookahead == '@') ADVANCE(2085); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2084); END_STATE(); - case 3254: + case 3192: ACCEPT_TOKEN(anon_sym_as); - if (lookahead == ',') ADVANCE(2146); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2144); + if (lookahead == ',') ADVANCE(2087); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2085); END_STATE(); - case 3255: + case 3193: ACCEPT_TOKEN(anon_sym_as); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2146); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2145); + lookahead == '@') ADVANCE(2087); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2086); END_STATE(); - case 3256: + case 3194: ACCEPT_TOKEN(anon_sym_as); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); - case 3257: + case 3195: ACCEPT_TOKEN(anon_sym_as); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3258: + case 3196: ACCEPT_TOKEN(anon_sym_as); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2146); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2087); END_STATE(); - case 3259: + case 3197: ACCEPT_TOKEN(anon_sym_as); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 3260: + case 3198: ACCEPT_TOKEN(sym_wild_card); END_STATE(); - case 3261: + case 3199: ACCEPT_TOKEN(sym_wild_card); - if (lookahead == '*') ADVANCE(1174); - if (lookahead == '=') ADVANCE(1171); + if (lookahead == '*') ADVANCE(1115); + if (lookahead == '=') ADVANCE(1112); END_STATE(); - case 3262: + case 3200: ACCEPT_TOKEN(sym_wild_card); - if (lookahead == '=') ADVANCE(1171); + if (lookahead == '=') ADVANCE(1112); END_STATE(); - case 3263: + case 3201: ACCEPT_TOKEN(anon_sym_QMARK2); END_STATE(); - case 3264: + case 3202: ACCEPT_TOKEN(anon_sym_where); END_STATE(); - case 3265: + case 3203: ACCEPT_TOKEN(anon_sym_where); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3266: + case 3204: ACCEPT_TOKEN(anon_sym_and); END_STATE(); - case 3267: + case 3205: ACCEPT_TOKEN(anon_sym_and); - if (lookahead == '\n') ADVANCE(3359); + if (lookahead == '\n') ADVANCE(3297); if (lookahead == '\r') ADVANCE(14); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3322); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + lookahead == ' ') ADVANCE(3260); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3268: + case 3206: ACCEPT_TOKEN(anon_sym_and); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3269: + case 3207: ACCEPT_TOKEN(anon_sym_and); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 3270: + case 3208: ACCEPT_TOKEN(anon_sym_xor); END_STATE(); - case 3271: + case 3209: ACCEPT_TOKEN(anon_sym_xor); - if (lookahead == '\n') ADVANCE(3360); + if (lookahead == '\n') ADVANCE(3298); if (lookahead == '\r') ADVANCE(16); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3324); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + lookahead == ' ') ADVANCE(3262); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3272: + case 3210: ACCEPT_TOKEN(anon_sym_xor); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3273: + case 3211: ACCEPT_TOKEN(anon_sym_xor); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 3274: + case 3212: ACCEPT_TOKEN(anon_sym_or); END_STATE(); - case 3275: + case 3213: ACCEPT_TOKEN(anon_sym_or); - if (lookahead == '\n') ADVANCE(3361); + if (lookahead == '\n') ADVANCE(3299); if (lookahead == '\r') ADVANCE(13); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3326); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + lookahead == ' ') ADVANCE(3264); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3276: + case 3214: ACCEPT_TOKEN(anon_sym_or); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3277: + case 3215: ACCEPT_TOKEN(anon_sym_or); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 3278: + case 3216: ACCEPT_TOKEN(anon_sym_not_DASHin); END_STATE(); - case 3279: + case 3217: ACCEPT_TOKEN(anon_sym_not_DASHin); - if (lookahead == '\n') ADVANCE(3363); + if (lookahead == '\n') ADVANCE(3301); if (lookahead == '\r') ADVANCE(18); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3330); + lookahead == ' ') ADVANCE(3268); END_STATE(); - case 3280: + case 3218: ACCEPT_TOKEN(anon_sym_starts_DASHwith); END_STATE(); - case 3281: + case 3219: ACCEPT_TOKEN(anon_sym_starts_DASHwith); - if (lookahead == '\n') ADVANCE(3364); + if (lookahead == '\n') ADVANCE(3302); if (lookahead == '\r') ADVANCE(24); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3332); + lookahead == ' ') ADVANCE(3270); END_STATE(); - case 3282: + case 3220: ACCEPT_TOKEN(anon_sym_ends_DASHwith); END_STATE(); - case 3283: + case 3221: ACCEPT_TOKEN(anon_sym_ends_DASHwith); - if (lookahead == '\n') ADVANCE(3365); + if (lookahead == '\n') ADVANCE(3303); if (lookahead == '\r') ADVANCE(23); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3334); + lookahead == ' ') ADVANCE(3272); END_STATE(); - case 3284: + case 3222: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 3285: + case 3223: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 3286: + case 3224: ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '\n') ADVANCE(3367); + if (lookahead == '\n') ADVANCE(3305); if (lookahead == '\r') ADVANCE(6); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3338); + lookahead == ' ') ADVANCE(3276); END_STATE(); - case 3287: + case 3225: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(3288); + if (lookahead == '=') ADVANCE(3226); END_STATE(); - case 3288: + case 3226: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 3289: + case 3227: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 3290: + case 3228: ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); - case 3291: + case 3229: ACCEPT_TOKEN(anon_sym_BANG_TILDE); END_STATE(); - case 3292: + case 3230: ACCEPT_TOKEN(anon_sym_BANG_TILDE); - if (lookahead == '\n') ADVANCE(3355); + if (lookahead == '\n') ADVANCE(3293); if (lookahead == '\r') ADVANCE(7); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3314); + lookahead == ' ') ADVANCE(3252); END_STATE(); - case 3293: + case 3231: ACCEPT_TOKEN(aux_sym_expr_unary_token1); END_STATE(); - case 3294: + case 3232: ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); - case 3295: + case 3233: ACCEPT_TOKEN(aux_sym_expr_binary_token1); - if (lookahead == '\n') ADVANCE(3344); + if (lookahead == '\n') ADVANCE(3282); if (lookahead == '\r') ADVANCE(8); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3295); + lookahead == ' ') ADVANCE(3233); END_STATE(); - case 3296: + case 3234: ACCEPT_TOKEN(aux_sym_expr_binary_token1); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3296); + lookahead == ' ') ADVANCE(3234); END_STATE(); - case 3297: + case 3235: ACCEPT_TOKEN(aux_sym_expr_binary_token2); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3297); + lookahead == ' ') ADVANCE(3235); END_STATE(); - case 3298: + case 3236: ACCEPT_TOKEN(aux_sym_expr_binary_token3); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3298); + lookahead == ' ') ADVANCE(3236); END_STATE(); - case 3299: + case 3237: ACCEPT_TOKEN(aux_sym_expr_binary_token4); - if (lookahead == '\n') ADVANCE(3347); + if (lookahead == '\n') ADVANCE(3285); if (lookahead == '\r') ADVANCE(5); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3299); + lookahead == ' ') ADVANCE(3237); END_STATE(); - case 3300: + case 3238: ACCEPT_TOKEN(aux_sym_expr_binary_token4); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3300); + lookahead == ' ') ADVANCE(3238); END_STATE(); - case 3301: + case 3239: ACCEPT_TOKEN(aux_sym_expr_binary_token5); - if (lookahead == '\n') ADVANCE(3348); + if (lookahead == '\n') ADVANCE(3286); if (lookahead == '\r') ADVANCE(15); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3301); + lookahead == ' ') ADVANCE(3239); END_STATE(); - case 3302: + case 3240: ACCEPT_TOKEN(aux_sym_expr_binary_token5); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3302); + lookahead == ' ') ADVANCE(3240); END_STATE(); - case 3303: + case 3241: ACCEPT_TOKEN(aux_sym_expr_binary_token6); - if (lookahead == '\n') ADVANCE(3349); + if (lookahead == '\n') ADVANCE(3287); if (lookahead == '\r') ADVANCE(9); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3303); + lookahead == ' ') ADVANCE(3241); END_STATE(); - case 3304: + case 3242: ACCEPT_TOKEN(aux_sym_expr_binary_token6); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3304); + lookahead == ' ') ADVANCE(3242); END_STATE(); - case 3305: + case 3243: ACCEPT_TOKEN(aux_sym_expr_binary_token7); - if (lookahead == '\n') ADVANCE(3350); + if (lookahead == '\n') ADVANCE(3288); if (lookahead == '\r') ADVANCE(4); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3305); + lookahead == ' ') ADVANCE(3243); END_STATE(); - case 3306: + case 3244: ACCEPT_TOKEN(aux_sym_expr_binary_token7); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3306); + lookahead == ' ') ADVANCE(3244); END_STATE(); - case 3307: + case 3245: ACCEPT_TOKEN(aux_sym_expr_binary_token8); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3307); + lookahead == ' ') ADVANCE(3245); END_STATE(); - case 3308: + case 3246: ACCEPT_TOKEN(aux_sym_expr_binary_token9); - if (lookahead == '\n') ADVANCE(3352); + if (lookahead == '\n') ADVANCE(3290); if (lookahead == '\r') ADVANCE(20); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3308); + lookahead == ' ') ADVANCE(3246); END_STATE(); - case 3309: + case 3247: ACCEPT_TOKEN(aux_sym_expr_binary_token9); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3309); + lookahead == ' ') ADVANCE(3247); END_STATE(); - case 3310: + case 3248: ACCEPT_TOKEN(aux_sym_expr_binary_token10); - if (lookahead == '\n') ADVANCE(3353); + if (lookahead == '\n') ADVANCE(3291); if (lookahead == '\r') ADVANCE(21); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3310); + lookahead == ' ') ADVANCE(3248); END_STATE(); - case 3311: + case 3249: ACCEPT_TOKEN(aux_sym_expr_binary_token10); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3311); + lookahead == ' ') ADVANCE(3249); END_STATE(); - case 3312: + case 3250: ACCEPT_TOKEN(aux_sym_expr_binary_token11); - if (lookahead == '\n') ADVANCE(3354); + if (lookahead == '\n') ADVANCE(3292); if (lookahead == '\r') ADVANCE(11); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3312); + lookahead == ' ') ADVANCE(3250); END_STATE(); - case 3313: + case 3251: ACCEPT_TOKEN(aux_sym_expr_binary_token11); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3313); + lookahead == ' ') ADVANCE(3251); END_STATE(); - case 3314: + case 3252: ACCEPT_TOKEN(aux_sym_expr_binary_token12); - if (lookahead == '\n') ADVANCE(3355); + if (lookahead == '\n') ADVANCE(3293); if (lookahead == '\r') ADVANCE(7); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3314); + lookahead == ' ') ADVANCE(3252); END_STATE(); - case 3315: + case 3253: ACCEPT_TOKEN(aux_sym_expr_binary_token12); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3315); + lookahead == ' ') ADVANCE(3253); END_STATE(); - case 3316: + case 3254: ACCEPT_TOKEN(aux_sym_expr_binary_token13); - if (lookahead == '\n') ADVANCE(3356); + if (lookahead == '\n') ADVANCE(3294); if (lookahead == '\r') ADVANCE(19); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3316); + lookahead == ' ') ADVANCE(3254); END_STATE(); - case 3317: + case 3255: ACCEPT_TOKEN(aux_sym_expr_binary_token13); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3317); + lookahead == ' ') ADVANCE(3255); END_STATE(); - case 3318: + case 3256: ACCEPT_TOKEN(aux_sym_expr_binary_token14); - if (lookahead == '\n') ADVANCE(3357); + if (lookahead == '\n') ADVANCE(3295); if (lookahead == '\r') ADVANCE(22); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3318); + lookahead == ' ') ADVANCE(3256); END_STATE(); - case 3319: + case 3257: ACCEPT_TOKEN(aux_sym_expr_binary_token14); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3319); + lookahead == ' ') ADVANCE(3257); END_STATE(); - case 3320: + case 3258: ACCEPT_TOKEN(aux_sym_expr_binary_token15); - if (lookahead == '\n') ADVANCE(3358); + if (lookahead == '\n') ADVANCE(3296); if (lookahead == '\r') ADVANCE(17); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3320); + lookahead == ' ') ADVANCE(3258); END_STATE(); - case 3321: + case 3259: ACCEPT_TOKEN(aux_sym_expr_binary_token15); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3321); + lookahead == ' ') ADVANCE(3259); END_STATE(); - case 3322: + case 3260: ACCEPT_TOKEN(aux_sym_expr_binary_token16); - if (lookahead == '\n') ADVANCE(3359); + if (lookahead == '\n') ADVANCE(3297); if (lookahead == '\r') ADVANCE(14); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3322); + lookahead == ' ') ADVANCE(3260); END_STATE(); - case 3323: + case 3261: ACCEPT_TOKEN(aux_sym_expr_binary_token16); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3323); + lookahead == ' ') ADVANCE(3261); END_STATE(); - case 3324: + case 3262: ACCEPT_TOKEN(aux_sym_expr_binary_token17); - if (lookahead == '\n') ADVANCE(3360); + if (lookahead == '\n') ADVANCE(3298); if (lookahead == '\r') ADVANCE(16); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3324); + lookahead == ' ') ADVANCE(3262); END_STATE(); - case 3325: + case 3263: ACCEPT_TOKEN(aux_sym_expr_binary_token17); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3325); + lookahead == ' ') ADVANCE(3263); END_STATE(); - case 3326: + case 3264: ACCEPT_TOKEN(aux_sym_expr_binary_token18); - if (lookahead == '\n') ADVANCE(3361); + if (lookahead == '\n') ADVANCE(3299); if (lookahead == '\r') ADVANCE(13); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3326); + lookahead == ' ') ADVANCE(3264); END_STATE(); - case 3327: + case 3265: ACCEPT_TOKEN(aux_sym_expr_binary_token18); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3327); + lookahead == ' ') ADVANCE(3265); END_STATE(); - case 3328: + case 3266: ACCEPT_TOKEN(aux_sym_expr_binary_token19); - if (lookahead == '\n') ADVANCE(3362); + if (lookahead == '\n') ADVANCE(3300); if (lookahead == '\r') ADVANCE(12); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3328); + lookahead == ' ') ADVANCE(3266); END_STATE(); - case 3329: + case 3267: ACCEPT_TOKEN(aux_sym_expr_binary_token19); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3329); + lookahead == ' ') ADVANCE(3267); END_STATE(); - case 3330: + case 3268: ACCEPT_TOKEN(aux_sym_expr_binary_token20); - if (lookahead == '\n') ADVANCE(3363); + if (lookahead == '\n') ADVANCE(3301); if (lookahead == '\r') ADVANCE(18); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3330); + lookahead == ' ') ADVANCE(3268); END_STATE(); - case 3331: + case 3269: ACCEPT_TOKEN(aux_sym_expr_binary_token20); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3331); + lookahead == ' ') ADVANCE(3269); END_STATE(); - case 3332: + case 3270: ACCEPT_TOKEN(aux_sym_expr_binary_token21); - if (lookahead == '\n') ADVANCE(3364); + if (lookahead == '\n') ADVANCE(3302); if (lookahead == '\r') ADVANCE(24); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3332); + lookahead == ' ') ADVANCE(3270); END_STATE(); - case 3333: + case 3271: ACCEPT_TOKEN(aux_sym_expr_binary_token21); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3333); + lookahead == ' ') ADVANCE(3271); END_STATE(); - case 3334: + case 3272: ACCEPT_TOKEN(aux_sym_expr_binary_token22); - if (lookahead == '\n') ADVANCE(3365); + if (lookahead == '\n') ADVANCE(3303); if (lookahead == '\r') ADVANCE(23); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3334); + lookahead == ' ') ADVANCE(3272); END_STATE(); - case 3335: + case 3273: ACCEPT_TOKEN(aux_sym_expr_binary_token22); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3335); + lookahead == ' ') ADVANCE(3273); END_STATE(); - case 3336: + case 3274: ACCEPT_TOKEN(aux_sym_expr_binary_token23); - if (lookahead == '\n') ADVANCE(3366); + if (lookahead == '\n') ADVANCE(3304); if (lookahead == '\r') ADVANCE(10); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3336); + lookahead == ' ') ADVANCE(3274); END_STATE(); - case 3337: + case 3275: ACCEPT_TOKEN(aux_sym_expr_binary_token23); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3337); + lookahead == ' ') ADVANCE(3275); END_STATE(); - case 3338: + case 3276: ACCEPT_TOKEN(aux_sym_expr_binary_token24); - if (lookahead == '\n') ADVANCE(3367); + if (lookahead == '\n') ADVANCE(3305); if (lookahead == '\r') ADVANCE(6); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3338); + lookahead == ' ') ADVANCE(3276); END_STATE(); - case 3339: + case 3277: ACCEPT_TOKEN(aux_sym_expr_binary_token24); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3339); + lookahead == ' ') ADVANCE(3277); END_STATE(); - case 3340: + case 3278: ACCEPT_TOKEN(aux_sym_expr_binary_token25); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3340); + lookahead == ' ') ADVANCE(3278); END_STATE(); - case 3341: + case 3279: ACCEPT_TOKEN(aux_sym_expr_binary_token26); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3341); + lookahead == ' ') ADVANCE(3279); END_STATE(); - case 3342: + case 3280: ACCEPT_TOKEN(aux_sym_expr_binary_token27); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3342); + lookahead == ' ') ADVANCE(3280); END_STATE(); - case 3343: + case 3281: ACCEPT_TOKEN(aux_sym_expr_binary_token28); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3343); + lookahead == ' ') ADVANCE(3281); END_STATE(); - case 3344: + case 3282: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token1); if (lookahead == '\r') ADVANCE(8); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3344); + lookahead == ' ') ADVANCE(3282); END_STATE(); - case 3345: + case 3283: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token2); - if (lookahead == '\r') ADVANCE(219); + if (lookahead == '\r') ADVANCE(159); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3345); + lookahead == ' ') ADVANCE(3283); END_STATE(); - case 3346: + case 3284: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token3); - if (lookahead == '\r') ADVANCE(215); + if (lookahead == '\r') ADVANCE(155); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3346); + lookahead == ' ') ADVANCE(3284); END_STATE(); - case 3347: + case 3285: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token4); if (lookahead == '\r') ADVANCE(5); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3347); + lookahead == ' ') ADVANCE(3285); END_STATE(); - case 3348: + case 3286: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token5); if (lookahead == '\r') ADVANCE(15); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3348); + lookahead == ' ') ADVANCE(3286); END_STATE(); - case 3349: + case 3287: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token6); if (lookahead == '\r') ADVANCE(9); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3349); + lookahead == ' ') ADVANCE(3287); END_STATE(); - case 3350: + case 3288: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token7); if (lookahead == '\r') ADVANCE(4); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3350); + lookahead == ' ') ADVANCE(3288); END_STATE(); - case 3351: + case 3289: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token8); - if (lookahead == '\r') ADVANCE(216); + if (lookahead == '\r') ADVANCE(156); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3351); + lookahead == ' ') ADVANCE(3289); END_STATE(); - case 3352: + case 3290: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token9); if (lookahead == '\r') ADVANCE(20); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3352); + lookahead == ' ') ADVANCE(3290); END_STATE(); - case 3353: + case 3291: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token10); if (lookahead == '\r') ADVANCE(21); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3353); + lookahead == ' ') ADVANCE(3291); END_STATE(); - case 3354: + case 3292: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token11); if (lookahead == '\r') ADVANCE(11); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3354); + lookahead == ' ') ADVANCE(3292); END_STATE(); - case 3355: + case 3293: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token12); if (lookahead == '\r') ADVANCE(7); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3355); + lookahead == ' ') ADVANCE(3293); END_STATE(); - case 3356: + case 3294: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token13); if (lookahead == '\r') ADVANCE(19); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3356); + lookahead == ' ') ADVANCE(3294); END_STATE(); - case 3357: + case 3295: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token14); if (lookahead == '\r') ADVANCE(22); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3357); + lookahead == ' ') ADVANCE(3295); END_STATE(); - case 3358: + case 3296: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token15); if (lookahead == '\r') ADVANCE(17); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3358); + lookahead == ' ') ADVANCE(3296); END_STATE(); - case 3359: + case 3297: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token16); if (lookahead == '\r') ADVANCE(14); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3359); + lookahead == ' ') ADVANCE(3297); END_STATE(); - case 3360: + case 3298: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token17); if (lookahead == '\r') ADVANCE(16); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3360); + lookahead == ' ') ADVANCE(3298); END_STATE(); - case 3361: + case 3299: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token18); if (lookahead == '\r') ADVANCE(13); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3361); + lookahead == ' ') ADVANCE(3299); END_STATE(); - case 3362: + case 3300: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token19); if (lookahead == '\r') ADVANCE(12); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3362); + lookahead == ' ') ADVANCE(3300); END_STATE(); - case 3363: + case 3301: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token20); if (lookahead == '\r') ADVANCE(18); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3363); + lookahead == ' ') ADVANCE(3301); END_STATE(); - case 3364: + case 3302: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token21); if (lookahead == '\r') ADVANCE(24); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3364); + lookahead == ' ') ADVANCE(3302); END_STATE(); - case 3365: + case 3303: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token22); if (lookahead == '\r') ADVANCE(23); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3365); + lookahead == ' ') ADVANCE(3303); END_STATE(); - case 3366: + case 3304: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token23); if (lookahead == '\r') ADVANCE(10); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3366); + lookahead == ' ') ADVANCE(3304); END_STATE(); - case 3367: + case 3305: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token24); if (lookahead == '\r') ADVANCE(6); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3367); + lookahead == ' ') ADVANCE(3305); END_STATE(); - case 3368: + case 3306: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token25); - if (lookahead == '\r') ADVANCE(217); + if (lookahead == '\r') ADVANCE(157); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3368); + lookahead == ' ') ADVANCE(3306); END_STATE(); - case 3369: + case 3307: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token26); - if (lookahead == '\r') ADVANCE(220); + if (lookahead == '\r') ADVANCE(160); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3369); + lookahead == ' ') ADVANCE(3307); END_STATE(); - case 3370: + case 3308: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token27); - if (lookahead == '\r') ADVANCE(218); + if (lookahead == '\r') ADVANCE(158); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3370); + lookahead == ' ') ADVANCE(3308); END_STATE(); - case 3371: + case 3309: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token28); - if (lookahead == '\r') ADVANCE(221); + if (lookahead == '\r') ADVANCE(161); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3371); + lookahead == ' ') ADVANCE(3309); END_STATE(); - case 3372: + case 3310: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LPAREN); END_STATE(); - case 3373: + case 3311: ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(3022); - if (lookahead == '<') ADVANCE(3416); - if (lookahead == '=') ADVANCE(3415); + if (lookahead == '.') ADVANCE(2962); + if (lookahead == '<') ADVANCE(3354); + if (lookahead == '=') ADVANCE(3353); END_STATE(); - case 3374: + case 3312: ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(1181); - if (lookahead == '<') ADVANCE(3416); - if (lookahead == '=') ADVANCE(3415); + if (lookahead == '.') ADVANCE(1122); + if (lookahead == '<') ADVANCE(3354); + if (lookahead == '=') ADVANCE(3353); END_STATE(); - case 3375: + case 3313: ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(1180); - if (lookahead == '<') ADVANCE(3416); - if (lookahead == '=') ADVANCE(3415); + if (lookahead == '.') ADVANCE(1121); + if (lookahead == '<') ADVANCE(3354); + if (lookahead == '=') ADVANCE(3353); END_STATE(); - case 3376: + case 3314: ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(3021); - if (lookahead == '<') ADVANCE(3416); - if (lookahead == '=') ADVANCE(3415); + if (lookahead == '.') ADVANCE(2961); + if (lookahead == '<') ADVANCE(3354); + if (lookahead == '=') ADVANCE(3353); END_STATE(); - case 3377: + case 3315: ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '<') ADVANCE(3416); - if (lookahead == '=') ADVANCE(3415); + if (lookahead == '<') ADVANCE(3354); + if (lookahead == '=') ADVANCE(3353); END_STATE(); - case 3378: + case 3316: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 3379: + case 3317: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3373); - if (lookahead == '_') ADVANCE(1216); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3449); + if (lookahead == '.') ADVANCE(3311); + if (lookahead == '_') ADVANCE(1157); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3387); END_STATE(); - case 3380: + case 3318: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3184); - if (lookahead == '_') ADVANCE(4106); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3509); + if (lookahead == '.') ADVANCE(3122); + if (lookahead == '_') ADVANCE(623); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); END_STATE(); - case 3381: + case 3319: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3184); - if (lookahead == '_') ADVANCE(684); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3510); + if (lookahead == '.') ADVANCE(3122); + if (lookahead == '_') ADVANCE(3813); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3445); END_STATE(); - case 3382: + case 3320: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3184); - if (lookahead == '_') ADVANCE(3905); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3507); + if (lookahead == '.') ADVANCE(3122); + if (lookahead == '_') ADVANCE(4288); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3446); END_STATE(); - case 3383: + case 3321: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3184); - if (lookahead == '_') ADVANCE(4490); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3508); + if (lookahead == '.') ADVANCE(3122); + if (lookahead == '_') ADVANCE(3935); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3390); END_STATE(); - case 3384: + case 3322: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3184); - if (lookahead == '_') ADVANCE(4585); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3455); + if (lookahead == '.') ADVANCE(3122); + if (lookahead == '_') ADVANCE(4383); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3393); END_STATE(); - case 3385: + case 3323: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3184); - if (lookahead == '_') ADVANCE(4495); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3456); + if (lookahead == '.') ADVANCE(3122); + if (lookahead == '_') ADVANCE(3817); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3391); END_STATE(); - case 3386: + case 3324: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3184); - if (lookahead == '_') ADVANCE(4590); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3512); + if (lookahead == '.') ADVANCE(3122); + if (lookahead == '_') ADVANCE(4387); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); END_STATE(); - case 3387: + case 3325: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3184); - if (lookahead == '_') ADVANCE(3914); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3453); + if (lookahead == '.') ADVANCE(3122); + if (lookahead == '_') ADVANCE(4293); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3394); END_STATE(); - case 3388: + case 3326: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3184); - if (lookahead == '_') ADVANCE(4117); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3452); + if (lookahead == '.') ADVANCE(3122); + if (lookahead == '_') ADVANCE(3940); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3449); END_STATE(); - case 3389: + case 3327: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1407); - if (lookahead == '_') ADVANCE(1661); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3504); + if (lookahead == '.') ADVANCE(1348); + if (lookahead == '_') ADVANCE(1602); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3442); END_STATE(); - case 3390: + case 3328: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1201); - if (lookahead == '_') ADVANCE(1216); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3449); + if (lookahead == '.') ADVANCE(1142); + if (lookahead == '_') ADVANCE(1157); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3387); END_STATE(); - case 3391: + case 3329: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1201); - if (lookahead == '_') ADVANCE(1221); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3506); + if (lookahead == '.') ADVANCE(1142); + if (lookahead == '_') ADVANCE(1162); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3444); END_STATE(); - case 3392: + case 3330: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3377); + if (lookahead == '.') ADVANCE(3315); END_STATE(); - case 3393: + case 3331: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3377); - if (lookahead == '_') ADVANCE(1661); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3504); + if (lookahead == '.') ADVANCE(3315); + if (lookahead == '_') ADVANCE(1602); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3442); END_STATE(); - case 3394: + case 3332: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3377); - if (lookahead == '_') ADVANCE(4106); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3509); + if (lookahead == '.') ADVANCE(3315); + if (lookahead == '_') ADVANCE(3813); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3445); END_STATE(); - case 3395: + case 3333: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3377); - if (lookahead == '_') ADVANCE(3905); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3507); + if (lookahead == '.') ADVANCE(3315); + if (lookahead == '_') ADVANCE(4288); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3446); END_STATE(); - case 3396: + case 3334: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3377); - if (lookahead == '_') ADVANCE(4490); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3508); + if (lookahead == '.') ADVANCE(3315); + if (lookahead == '_') ADVANCE(4387); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); END_STATE(); - case 3397: + case 3335: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3377); - if (lookahead == '_') ADVANCE(4590); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3512); + if (lookahead == '.') ADVANCE(3315); + if (lookahead == '_') ADVANCE(3940); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3449); END_STATE(); - case 3398: + case 3336: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(4564); + if (lookahead == '.') ADVANCE(4362); END_STATE(); - case 3399: + case 3337: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(4564); - if (lookahead == '_') ADVANCE(4585); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3455); + if (lookahead == '.') ADVANCE(4362); + if (lookahead == '_') ADVANCE(4383); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3393); END_STATE(); - case 3400: + case 3338: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3374); - if (lookahead == '_') ADVANCE(1661); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3504); + if (lookahead == '.') ADVANCE(3312); + if (lookahead == '_') ADVANCE(1602); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3442); END_STATE(); - case 3401: + case 3339: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(640); + if (lookahead == '.') ADVANCE(578); END_STATE(); - case 3402: + case 3340: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3375); - if (lookahead == '_') ADVANCE(1221); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3506); + if (lookahead == '.') ADVANCE(3313); + if (lookahead == '_') ADVANCE(1162); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3444); END_STATE(); - case 3403: + case 3341: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3376); + if (lookahead == '.') ADVANCE(3314); END_STATE(); - case 3404: + case 3342: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(1661); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3504); + if (lookahead == '_') ADVANCE(1602); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3442); END_STATE(); - case 3405: + case 3343: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(4585); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3455); + if (lookahead == '_') ADVANCE(3935); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3390); END_STATE(); - case 3406: + case 3344: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(4814); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3457); + if (lookahead == '_') ADVANCE(4383); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3393); END_STATE(); - case 3407: + case 3345: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(692); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3454); + if (lookahead == '_') ADVANCE(4612); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3395); END_STATE(); - case 3408: + case 3346: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(4117); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3452); + if (lookahead == '_') ADVANCE(631); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3392); END_STATE(); - case 3409: + case 3347: ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); END_STATE(); - case 3410: + case 3348: ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); - case 3411: + case 3349: ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 3412: + case 3350: ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); END_STATE(); - case 3413: + case 3351: ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); - case 3414: + case 3352: ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 3415: + case 3353: ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ2); END_STATE(); - case 3416: + case 3354: ACCEPT_TOKEN(anon_sym_DOT_DOT_LT2); END_STATE(); - case 3417: + case 3355: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(3682); - if (lookahead == '_') ADVANCE(3422); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3425); + if (lookahead == '-') ADVANCE(3620); + if (lookahead == '_') ADVANCE(3360); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3363); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3418: + case 3356: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(4030); - if (lookahead == '_') ADVANCE(3432); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if (lookahead == '-') ADVANCE(3869); + if (lookahead == '_') ADVANCE(3370); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); END_STATE(); - case 3419: + case 3357: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(4539); - if (lookahead == '_') ADVANCE(3432); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if (lookahead == '-') ADVANCE(4337); + if (lookahead == '_') ADVANCE(3370); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); END_STATE(); - case 3420: + case 3358: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(4208); - if (lookahead == '_') ADVANCE(3432); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if (lookahead == '-') ADVANCE(4025); + if (lookahead == '_') ADVANCE(3370); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); END_STATE(); - case 3421: + case 3359: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(4645); - if (lookahead == '_') ADVANCE(3432); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if (lookahead == '-') ADVANCE(4443); + if (lookahead == '_') ADVANCE(3370); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); END_STATE(); - case 3422: + case 3360: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3422); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3422); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == '_') ADVANCE(3360); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3360); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3423: + case 3361: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3422); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3417); + if (lookahead == '_') ADVANCE(3360); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3424: + case 3362: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3422); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3423); + if (lookahead == '_') ADVANCE(3360); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3361); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3425: + case 3363: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3422); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3425); + if (lookahead == '_') ADVANCE(3360); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3363); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3426: + case 3364: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3432); - if (lookahead == 'b') ADVANCE(3519); - if (lookahead == 'o') ADVANCE(3535); - if (lookahead == 'x') ADVANCE(3541); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3434); + if (lookahead == '_') ADVANCE(3370); + if (lookahead == 'b') ADVANCE(3457); + if (lookahead == 'o') ADVANCE(3473); + if (lookahead == 'x') ADVANCE(3479); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3372); END_STATE(); - case 3427: + case 3365: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3432); - if (lookahead == 'b') ADVANCE(3519); - if (lookahead == 'o') ADVANCE(3535); - if (lookahead == 'x') ADVANCE(3541); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3436); + if (lookahead == '_') ADVANCE(3370); + if (lookahead == 'b') ADVANCE(3457); + if (lookahead == 'o') ADVANCE(3473); + if (lookahead == 'x') ADVANCE(3479); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3374); END_STATE(); - case 3428: + case 3366: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3432); - if (lookahead == 'b') ADVANCE(3519); - if (lookahead == 'o') ADVANCE(3535); - if (lookahead == 'x') ADVANCE(3541); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3438); + if (lookahead == '_') ADVANCE(3370); + if (lookahead == 'b') ADVANCE(3457); + if (lookahead == 'o') ADVANCE(3473); + if (lookahead == 'x') ADVANCE(3479); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3376); END_STATE(); - case 3429: + case 3367: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3432); - if (lookahead == 'b') ADVANCE(3519); - if (lookahead == 'o') ADVANCE(3535); - if (lookahead == 'x') ADVANCE(3541); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if (lookahead == '_') ADVANCE(3370); + if (lookahead == 'b') ADVANCE(3457); + if (lookahead == 'o') ADVANCE(3473); + if (lookahead == 'x') ADVANCE(3479); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3378); END_STATE(); - case 3430: + case 3368: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3432); - if (lookahead == 'b') ADVANCE(1933); - if (lookahead == 'o') ADVANCE(1935); - if (lookahead == 'x') ADVANCE(1942); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if (lookahead == '_') ADVANCE(3370); + if (lookahead == 'b') ADVANCE(1874); + if (lookahead == 'o') ADVANCE(1876); + if (lookahead == 'x') ADVANCE(1883); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); END_STATE(); - case 3431: + case 3369: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3432); - if (lookahead == 'b') ADVANCE(1390); - if (lookahead == 'o') ADVANCE(1391); - if (lookahead == 'x') ADVANCE(1398); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if (lookahead == '_') ADVANCE(3370); + if (lookahead == 'b') ADVANCE(1331); + if (lookahead == 'o') ADVANCE(1332); + if (lookahead == 'x') ADVANCE(1339); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); END_STATE(); - case 3432: + case 3370: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3432); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); + if (lookahead == '_') ADVANCE(3370); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); END_STATE(); - case 3433: + case 3371: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3432); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3420); + if (lookahead == '_') ADVANCE(3370); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3358); END_STATE(); - case 3434: + case 3372: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3432); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3433); + if (lookahead == '_') ADVANCE(3370); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3371); END_STATE(); - case 3435: + case 3373: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3432); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3418); + if (lookahead == '_') ADVANCE(3370); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3356); END_STATE(); - case 3436: + case 3374: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3432); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3435); + if (lookahead == '_') ADVANCE(3370); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3373); END_STATE(); - case 3437: + case 3375: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3432); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3421); + if (lookahead == '_') ADVANCE(3370); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3359); END_STATE(); - case 3438: + case 3376: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3432); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3437); + if (lookahead == '_') ADVANCE(3370); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3375); END_STATE(); - case 3439: + case 3377: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3432); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3419); + if (lookahead == '_') ADVANCE(3370); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3357); END_STATE(); - case 3440: + case 3378: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3432); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3439); + if (lookahead == '_') ADVANCE(3370); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3377); END_STATE(); - case 3441: + case 3379: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3432); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3434); + if (lookahead == '_') ADVANCE(3370); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3372); END_STATE(); - case 3442: + case 3380: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3432); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3436); + if (lookahead == '_') ADVANCE(3370); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3374); END_STATE(); - case 3443: + case 3381: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3432); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3438); + if (lookahead == '_') ADVANCE(3370); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3376); END_STATE(); - case 3444: + case 3382: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3432); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if (lookahead == '_') ADVANCE(3370); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3378); END_STATE(); - case 3445: + case 3383: ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); - if (lookahead == '_') ADVANCE(3446); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3445); + if (lookahead == '_') ADVANCE(3384); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3383); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3446: + case 3384: ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); - if (lookahead == '_') ADVANCE(3446); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3446); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == '_') ADVANCE(3384); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3384); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3447: + case 3385: ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); - if (lookahead == '_') ADVANCE(3447); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if (lookahead == '_') ADVANCE(3385); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); END_STATE(); - case 3448: + case 3386: ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); - if (lookahead == '_') ADVANCE(3448); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); + if (lookahead == '_') ADVANCE(3386); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); END_STATE(); - case 3449: + case 3387: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3449); + if (lookahead == '_') ADVANCE(3387); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1217); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3449); + lookahead == 'e') ADVANCE(1158); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3387); END_STATE(); - case 3450: + case 3388: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3450); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); + if (lookahead == '_') ADVANCE(3388); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); END_STATE(); - case 3451: + case 3389: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3451); + if (lookahead == '_') ADVANCE(3389); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3451); + lookahead == 'e') ADVANCE(1608); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3389); END_STATE(); - case 3452: + case 3390: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3452); + if (lookahead == '_') ADVANCE(3390); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4118); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3452); + lookahead == 'e') ADVANCE(3936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3390); END_STATE(); - case 3453: + case 3391: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3453); + if (lookahead == '_') ADVANCE(3391); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3915); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3453); + lookahead == 'e') ADVANCE(3818); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3391); END_STATE(); - case 3454: + case 3392: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3454); + if (lookahead == '_') ADVANCE(3392); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(693); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3454); + lookahead == 'e') ADVANCE(632); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3392); END_STATE(); - case 3455: + case 3393: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3455); + if (lookahead == '_') ADVANCE(3393); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4586); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3455); + lookahead == 'e') ADVANCE(4384); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3393); END_STATE(); - case 3456: + case 3394: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3456); + if (lookahead == '_') ADVANCE(3394); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4496); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3456); + lookahead == 'e') ADVANCE(4294); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3394); END_STATE(); - case 3457: + case 3395: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3457); + if (lookahead == '_') ADVANCE(3395); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4815); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3457); + lookahead == 'e') ADVANCE(4613); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3395); END_STATE(); - case 3458: + case 3396: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3458); + if (lookahead == '_') ADVANCE(3396); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4662); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3458); + lookahead == 'e') ADVANCE(4460); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3396); END_STATE(); - case 3459: + case 3397: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3459); + if (lookahead == '_') ADVANCE(3397); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4841); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3459); + lookahead == 'e') ADVANCE(4042); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3397); END_STATE(); - case 3460: + case 3398: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3460); + if (lookahead == '_') ADVANCE(3398); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4225); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3460); + lookahead == 'e') ADVANCE(4639); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3398); END_STATE(); - case 3461: + case 3399: ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); - if (lookahead == '_') ADVANCE(3461); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3461); + if (lookahead == '_') ADVANCE(3399); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); END_STATE(); - case 3462: + case 3400: ACCEPT_TOKEN(anon_sym_RPAREN2); END_STATE(); - case 3463: + case 3401: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); END_STATE(); - case 3464: + case 3402: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 3465: + case 3403: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(1938); - if (lookahead == '_') ADVANCE(3502); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if (lookahead == '-') ADVANCE(1879); + if (lookahead == '_') ADVANCE(3440); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); END_STATE(); - case 3466: + case 3404: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(4030); - if (lookahead == '_') ADVANCE(3502); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if (lookahead == '-') ADVANCE(3869); + if (lookahead == '_') ADVANCE(3440); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); END_STATE(); - case 3467: + case 3405: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(4539); - if (lookahead == '_') ADVANCE(3502); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if (lookahead == '-') ADVANCE(4337); + if (lookahead == '_') ADVANCE(3440); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); END_STATE(); - case 3468: + case 3406: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(4208); - if (lookahead == '_') ADVANCE(3502); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if (lookahead == '-') ADVANCE(4596); + if (lookahead == '_') ADVANCE(3440); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); END_STATE(); - case 3469: + case 3407: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(4798); - if (lookahead == '_') ADVANCE(3502); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if (lookahead == '-') ADVANCE(4025); + if (lookahead == '_') ADVANCE(3440); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); END_STATE(); - case 3470: + case 3408: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(4645); - if (lookahead == '_') ADVANCE(3502); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if (lookahead == '-') ADVANCE(4443); + if (lookahead == '_') ADVANCE(3440); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); END_STATE(); - case 3471: + case 3409: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(983); - if (lookahead == '_') ADVANCE(3502); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if (lookahead == '-') ADVANCE(922); + if (lookahead == '_') ADVANCE(3440); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); END_STATE(); - case 3472: + case 3410: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3502); - if (lookahead == 'b') ADVANCE(3519); - if (lookahead == 'o') ADVANCE(3535); - if (lookahead == 'x') ADVANCE(3541); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3482); + if (lookahead == '_') ADVANCE(3440); + if (lookahead == 'b') ADVANCE(3457); + if (lookahead == 'o') ADVANCE(3473); + if (lookahead == 'x') ADVANCE(3479); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3420); END_STATE(); - case 3473: + case 3411: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3502); - if (lookahead == 'b') ADVANCE(3519); - if (lookahead == 'o') ADVANCE(3535); - if (lookahead == 'x') ADVANCE(3541); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3484); + if (lookahead == '_') ADVANCE(3440); + if (lookahead == 'b') ADVANCE(3457); + if (lookahead == 'o') ADVANCE(3473); + if (lookahead == 'x') ADVANCE(3479); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3422); END_STATE(); - case 3474: + case 3412: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3502); - if (lookahead == 'b') ADVANCE(3519); - if (lookahead == 'o') ADVANCE(3535); - if (lookahead == 'x') ADVANCE(3541); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3486); + if (lookahead == '_') ADVANCE(3440); + if (lookahead == 'b') ADVANCE(3457); + if (lookahead == 'o') ADVANCE(3473); + if (lookahead == 'x') ADVANCE(3479); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3424); END_STATE(); - case 3475: + case 3413: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3502); - if (lookahead == 'b') ADVANCE(3519); - if (lookahead == 'o') ADVANCE(3535); - if (lookahead == 'x') ADVANCE(3541); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3488); + if (lookahead == '_') ADVANCE(3440); + if (lookahead == 'b') ADVANCE(3457); + if (lookahead == 'o') ADVANCE(3473); + if (lookahead == 'x') ADVANCE(3479); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3426); END_STATE(); - case 3476: + case 3414: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3502); - if (lookahead == 'b') ADVANCE(3519); - if (lookahead == 'o') ADVANCE(3535); - if (lookahead == 'x') ADVANCE(3541); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3490); + if (lookahead == '_') ADVANCE(3440); + if (lookahead == 'b') ADVANCE(3457); + if (lookahead == 'o') ADVANCE(3473); + if (lookahead == 'x') ADVANCE(3479); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3428); END_STATE(); - case 3477: + case 3415: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3502); - if (lookahead == 'b') ADVANCE(3519); - if (lookahead == 'o') ADVANCE(3535); - if (lookahead == 'x') ADVANCE(3541); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3492); + if (lookahead == '_') ADVANCE(3440); + if (lookahead == 'b') ADVANCE(3457); + if (lookahead == 'o') ADVANCE(3473); + if (lookahead == 'x') ADVANCE(3479); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3430); END_STATE(); - case 3478: + case 3416: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3502); - if (lookahead == 'b') ADVANCE(3519); - if (lookahead == 'o') ADVANCE(3535); - if (lookahead == 'x') ADVANCE(3541); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3494); + if (lookahead == '_') ADVANCE(3440); + if (lookahead == 'b') ADVANCE(3457); + if (lookahead == 'o') ADVANCE(3473); + if (lookahead == 'x') ADVANCE(3479); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); END_STATE(); - case 3479: + case 3417: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3502); - if (lookahead == 'b') ADVANCE(1933); - if (lookahead == 'o') ADVANCE(1935); - if (lookahead == 'x') ADVANCE(1942); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if (lookahead == '_') ADVANCE(3440); + if (lookahead == 'b') ADVANCE(1874); + if (lookahead == 'o') ADVANCE(1876); + if (lookahead == 'x') ADVANCE(1883); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); END_STATE(); - case 3480: + case 3418: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3502); - if (lookahead == 'b') ADVANCE(1390); - if (lookahead == 'o') ADVANCE(1391); - if (lookahead == 'x') ADVANCE(1398); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if (lookahead == '_') ADVANCE(3440); + if (lookahead == 'b') ADVANCE(1331); + if (lookahead == 'o') ADVANCE(1332); + if (lookahead == 'x') ADVANCE(1339); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); END_STATE(); - case 3481: + case 3419: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3502); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3465); + if (lookahead == '_') ADVANCE(3440); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3403); END_STATE(); - case 3482: + case 3420: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3502); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3481); + if (lookahead == '_') ADVANCE(3440); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3419); END_STATE(); - case 3483: + case 3421: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3502); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3466); + if (lookahead == '_') ADVANCE(3440); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3404); END_STATE(); - case 3484: + case 3422: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3502); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3483); + if (lookahead == '_') ADVANCE(3440); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3421); END_STATE(); - case 3485: + case 3423: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3502); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3467); + if (lookahead == '_') ADVANCE(3440); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3405); END_STATE(); - case 3486: + case 3424: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3502); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3485); + if (lookahead == '_') ADVANCE(3440); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3423); END_STATE(); - case 3487: + case 3425: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3502); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3468); + if (lookahead == '_') ADVANCE(3440); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3409); END_STATE(); - case 3488: + case 3426: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3502); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3487); + if (lookahead == '_') ADVANCE(3440); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3425); END_STATE(); - case 3489: + case 3427: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3502); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3471); + if (lookahead == '_') ADVANCE(3440); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3406); END_STATE(); - case 3490: + case 3428: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3502); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3489); + if (lookahead == '_') ADVANCE(3440); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3427); END_STATE(); - case 3491: + case 3429: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3502); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3469); + if (lookahead == '_') ADVANCE(3440); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); END_STATE(); - case 3492: + case 3430: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3502); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3491); + if (lookahead == '_') ADVANCE(3440); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3429); END_STATE(); - case 3493: + case 3431: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3502); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3470); + if (lookahead == '_') ADVANCE(3440); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); END_STATE(); - case 3494: + case 3432: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3502); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3493); + if (lookahead == '_') ADVANCE(3440); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3431); END_STATE(); - case 3495: + case 3433: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3502); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3482); + if (lookahead == '_') ADVANCE(3440); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3420); END_STATE(); - case 3496: + case 3434: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3502); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3484); + if (lookahead == '_') ADVANCE(3440); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3422); END_STATE(); - case 3497: + case 3435: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3502); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3486); + if (lookahead == '_') ADVANCE(3440); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3424); END_STATE(); - case 3498: + case 3436: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3502); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3488); + if (lookahead == '_') ADVANCE(3440); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3426); END_STATE(); - case 3499: + case 3437: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3502); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3490); + if (lookahead == '_') ADVANCE(3440); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3428); END_STATE(); - case 3500: + case 3438: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3502); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3492); + if (lookahead == '_') ADVANCE(3440); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3430); END_STATE(); - case 3501: + case 3439: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3502); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3494); + if (lookahead == '_') ADVANCE(3440); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); END_STATE(); - case 3502: + case 3440: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3502); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if (lookahead == '_') ADVANCE(3440); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); END_STATE(); - case 3503: + case 3441: ACCEPT_TOKEN(aux_sym__val_number_decimal_token2); - if (lookahead == '_') ADVANCE(3503); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); + if (lookahead == '_') ADVANCE(3441); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); END_STATE(); - case 3504: + case 3442: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3504); + if (lookahead == '_') ADVANCE(3442); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1662); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3504); + lookahead == 'e') ADVANCE(1603); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3442); END_STATE(); - case 3505: + case 3443: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3505); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3505); + if (lookahead == '_') ADVANCE(3443); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); END_STATE(); - case 3506: + case 3444: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3506); + if (lookahead == '_') ADVANCE(3444); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1222); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3506); + lookahead == 'e') ADVANCE(1163); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3444); END_STATE(); - case 3507: + case 3445: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3507); + if (lookahead == '_') ADVANCE(3445); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3906); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3507); + lookahead == 'e') ADVANCE(3814); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3445); END_STATE(); - case 3508: + case 3446: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3508); + if (lookahead == '_') ADVANCE(3446); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4491); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3508); + lookahead == 'e') ADVANCE(4289); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3446); END_STATE(); - case 3509: + case 3447: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3509); + if (lookahead == '_') ADVANCE(3447); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4113); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3509); + lookahead == 'e') ADVANCE(624); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); END_STATE(); - case 3510: + case 3448: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3510); + if (lookahead == '_') ADVANCE(3448); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(685); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3510); + lookahead == 'e') ADVANCE(4558); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); END_STATE(); - case 3511: + case 3449: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3511); + if (lookahead == '_') ADVANCE(3449); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4760); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3511); + lookahead == 'e') ADVANCE(3945); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3449); END_STATE(); - case 3512: + case 3450: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3512); + if (lookahead == '_') ADVANCE(3450); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4594); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3512); + lookahead == 'e') ADVANCE(4391); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); END_STATE(); - case 3513: + case 3451: ACCEPT_TOKEN(aux_sym__val_number_decimal_token4); - if (lookahead == '_') ADVANCE(3513); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3513); + if (lookahead == '_') ADVANCE(3451); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3451); END_STATE(); - case 3514: + case 3452: ACCEPT_TOKEN(aux_sym__val_number_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3514); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3452); END_STATE(); - case 3515: + case 3453: ACCEPT_TOKEN(aux_sym__val_number_token2); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(3515); + lookahead == '_') ADVANCE(3453); END_STATE(); - case 3516: + case 3454: ACCEPT_TOKEN(aux_sym__val_number_token3); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3516); + lookahead == '_') ADVANCE(3454); END_STATE(); - case 3517: + case 3455: ACCEPT_TOKEN(anon_sym_0b); - if (lookahead == '_') ADVANCE(2712); + if (lookahead == '_') ADVANCE(2653); if (lookahead == '0' || - lookahead == '1') ADVANCE(2421); + lookahead == '1') ADVANCE(2362); if (('2' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3518: + case 3456: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(2712); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + lookahead == '_') ADVANCE(2653); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3519: + case 3457: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(3515); + lookahead == '_') ADVANCE(3453); END_STATE(); - case 3520: + case 3458: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(4435); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + lookahead == '_') ADVANCE(2824); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); - case 3521: + case 3459: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(3819); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + lookahead == '_') ADVANCE(3749); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3522: + case 3460: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(2883); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + lookahead == '_') ADVANCE(4233); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 3523: + case 3461: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(4724); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); + lookahead == '_') ADVANCE(4522); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); - case 3524: + case 3462: ACCEPT_TOKEN(sym_filesize_unit); END_STATE(); - case 3525: + case 3463: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'r') ADVANCE(1266); + if (lookahead == 'r') ADVANCE(1207); END_STATE(); - case 3526: + case 3464: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'r') ADVANCE(1736); + if (lookahead == 'r') ADVANCE(1677); END_STATE(); - case 3527: + case 3465: ACCEPT_TOKEN(sym_filesize_unit); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2715); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3528: + case 3466: ACCEPT_TOKEN(sym_filesize_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3529: + case 3467: ACCEPT_TOKEN(sym_duration_unit); END_STATE(); - case 3530: + case 3468: ACCEPT_TOKEN(sym_duration_unit); - if (lookahead == 'e') ADVANCE(2974); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if (lookahead == 'e') ADVANCE(2915); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3531: + case 3469: ACCEPT_TOKEN(sym_duration_unit); - if (lookahead == 'e') ADVANCE(1963); + if (lookahead == 'e') ADVANCE(1904); END_STATE(); - case 3532: + case 3470: ACCEPT_TOKEN(sym_duration_unit); - if (lookahead == 'e') ADVANCE(2977); + if (lookahead == 'e') ADVANCE(2918); END_STATE(); - case 3533: + case 3471: ACCEPT_TOKEN(sym_duration_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3534: + case 3472: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2714); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + lookahead == '_') ADVANCE(2655); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3535: + case 3473: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3516); + lookahead == '_') ADVANCE(3454); END_STATE(); - case 3536: + case 3474: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4441); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + lookahead == '_') ADVANCE(2826); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); - case 3537: + case 3475: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3821); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + lookahead == '_') ADVANCE(3751); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3538: + case 3476: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2885); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + lookahead == '_') ADVANCE(4239); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 3539: + case 3477: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4728); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); + lookahead == '_') ADVANCE(4526); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); - case 3540: + case 3478: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2719); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2660); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3541: + case 3479: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3514); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3452); END_STATE(); - case 3542: + case 3480: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4455); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2839); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); END_STATE(); - case 3543: + case 3481: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3834); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3764); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3544: + case 3482: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2898); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2899); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4253); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 3545: + case 3483: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4742); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4540); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); - case 3546: + case 3484: ACCEPT_TOKEN(anon_sym_LBRACK2); END_STATE(); - case 3547: + case 3485: ACCEPT_TOKEN(sym_hex_digit); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3547); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3485); END_STATE(); - case 3548: + case 3486: ACCEPT_TOKEN(sym_val_date); END_STATE(); - case 3549: + case 3487: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(4068); + if (lookahead == '.') ADVANCE(3901); if (lookahead == '+' || - lookahead == '-') ADVANCE(4062); + lookahead == '-') ADVANCE(3895); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3548); + lookahead == 'z') ADVANCE(3486); END_STATE(); - case 3550: + case 3488: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(3866); + if (lookahead == '.') ADVANCE(3789); if (lookahead == '+' || - lookahead == '-') ADVANCE(3858); + lookahead == '-') ADVANCE(3781); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3548); + lookahead == 'z') ADVANCE(3486); END_STATE(); - case 3551: + case 3489: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(978); + if (lookahead == '.') ADVANCE(917); if (lookahead == '+' || - lookahead == '-') ADVANCE(647); + lookahead == '-') ADVANCE(584); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3548); + lookahead == 'z') ADVANCE(3486); END_STATE(); - case 3552: + case 3490: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(4034); + if (lookahead == '.') ADVANCE(3873); if (lookahead == '+' || - lookahead == '-') ADVANCE(3882); + lookahead == '-') ADVANCE(3800); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3548); + lookahead == 'z') ADVANCE(3486); END_STATE(); - case 3553: + case 3491: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(4544); + if (lookahead == '.') ADVANCE(4342); if (lookahead == '+' || - lookahead == '-') ADVANCE(4473); + lookahead == '-') ADVANCE(4271); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3548); + lookahead == 'z') ADVANCE(3486); END_STATE(); - case 3554: + case 3492: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(4214); + if (lookahead == '.') ADVANCE(4030); if (lookahead == '+' || - lookahead == '-') ADVANCE(4083); + lookahead == '-') ADVANCE(3915); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3548); + lookahead == 'z') ADVANCE(3486); END_STATE(); - case 3555: + case 3493: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(4650); + if (lookahead == '.') ADVANCE(4448); if (lookahead == '+' || - lookahead == '-') ADVANCE(4570); + lookahead == '-') ADVANCE(4368); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3548); + lookahead == 'z') ADVANCE(3486); END_STATE(); - case 3556: + case 3494: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(3579); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4067); + if (lookahead == ':') ADVANCE(3517); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3900); END_STATE(); - case 3557: + case 3495: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(3580); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3862); + if (lookahead == ':') ADVANCE(3518); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3785); END_STATE(); - case 3558: + case 3496: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(3581); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(974); + if (lookahead == ':') ADVANCE(3519); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(913); END_STATE(); - case 3559: + case 3497: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(3582); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4027); + if (lookahead == ':') ADVANCE(3520); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3866); END_STATE(); - case 3560: + case 3498: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(3583); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4536); + if (lookahead == ':') ADVANCE(3521); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4334); END_STATE(); - case 3561: + case 3499: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(3584); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4205); + if (lookahead == ':') ADVANCE(3522); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4022); END_STATE(); - case 3562: + case 3500: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(3585); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4642); + if (lookahead == ':') ADVANCE(3523); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4440); END_STATE(); - case 3563: + case 3501: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(3684); + if (lookahead == 'T') ADVANCE(3622); END_STATE(); - case 3564: + case 3502: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(1397); + if (lookahead == 'T') ADVANCE(1338); END_STATE(); - case 3565: + case 3503: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(1941); + if (lookahead == 'T') ADVANCE(1882); END_STATE(); - case 3566: + case 3504: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(4036); + if (lookahead == 'T') ADVANCE(3875); END_STATE(); - case 3567: + case 3505: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(4541); + if (lookahead == 'T') ADVANCE(4339); END_STATE(); - case 3568: + case 3506: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(4210); + if (lookahead == 'T') ADVANCE(4598); END_STATE(); - case 3569: + case 3507: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(4800); + if (lookahead == 'T') ADVANCE(4027); END_STATE(); - case 3570: + case 3508: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(4647); + if (lookahead == 'T') ADVANCE(4445); END_STATE(); - case 3571: + case 3509: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(986); + if (lookahead == 'T') ADVANCE(925); END_STATE(); - case 3572: + case 3510: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(4062); + lookahead == '-') ADVANCE(3895); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3548); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3572); + lookahead == 'z') ADVANCE(3486); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3510); END_STATE(); - case 3573: + case 3511: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(3858); + lookahead == '-') ADVANCE(3781); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3548); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3573); + lookahead == 'z') ADVANCE(3486); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3511); END_STATE(); - case 3574: + case 3512: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(647); + lookahead == '-') ADVANCE(584); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3548); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3574); + lookahead == 'z') ADVANCE(3486); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3512); END_STATE(); - case 3575: + case 3513: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(3882); + lookahead == '-') ADVANCE(3800); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3548); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3575); + lookahead == 'z') ADVANCE(3486); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3513); END_STATE(); - case 3576: + case 3514: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(4473); + lookahead == '-') ADVANCE(4271); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3548); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3576); + lookahead == 'z') ADVANCE(3486); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3514); END_STATE(); - case 3577: + case 3515: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(4083); + lookahead == '-') ADVANCE(3915); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3548); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3577); + lookahead == 'z') ADVANCE(3486); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3515); END_STATE(); - case 3578: + case 3516: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(4570); + lookahead == '-') ADVANCE(4368); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3548); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3578); + lookahead == 'z') ADVANCE(3486); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3516); END_STATE(); - case 3579: + case 3517: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4067); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3900); END_STATE(); - case 3580: + case 3518: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3862); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3785); END_STATE(); - case 3581: + case 3519: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(974); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(913); END_STATE(); - case 3582: + case 3520: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4027); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3866); END_STATE(); - case 3583: + case 3521: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4536); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4334); END_STATE(); - case 3584: + case 3522: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4205); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4022); END_STATE(); - case 3585: + case 3523: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4642); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4440); END_STATE(); - case 3586: + case 3524: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 3587: + case 3525: ACCEPT_TOKEN(anon_sym_DQUOTE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -51943,28 +49529,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3838); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3768); END_STATE(); - case 3588: + case 3526: ACCEPT_TOKEN(sym__escaped_str_content); - if (lookahead == '#') ADVANCE(3589); + if (lookahead == '#') ADVANCE(3527); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3588); + lookahead == ' ') ADVANCE(3526); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && - lookahead != '\\') ADVANCE(3589); + lookahead != '\\') ADVANCE(3527); END_STATE(); - case 3589: + case 3527: ACCEPT_TOKEN(sym__escaped_str_content); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(3589); + lookahead != '\\') ADVANCE(3527); END_STATE(); - case 3590: + case 3528: ACCEPT_TOKEN(sym__str_single_quotes); END_STATE(); - case 3591: + case 3529: ACCEPT_TOKEN(sym__str_single_quotes); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -51972,12 +49558,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3838); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3768); END_STATE(); - case 3592: + case 3530: ACCEPT_TOKEN(sym__str_back_ticks); END_STATE(); - case 3593: + case 3531: ACCEPT_TOKEN(sym__str_back_ticks); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -51985,52 +49571,52 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3838); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3768); END_STATE(); - case 3594: + case 3532: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 3595: + case 3533: ACCEPT_TOKEN(sym_escape_sequence); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3596: + case 3534: ACCEPT_TOKEN(sym_escaped_interpolated_content); - if (lookahead == '#') ADVANCE(3597); + if (lookahead == '#') ADVANCE(3535); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3596); + lookahead == ' ') ADVANCE(3534); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && lookahead != '(' && - lookahead != '\\') ADVANCE(3597); + lookahead != '\\') ADVANCE(3535); END_STATE(); - case 3597: + case 3535: ACCEPT_TOKEN(sym_escaped_interpolated_content); if (lookahead != 0 && lookahead != '"' && lookahead != '(' && - lookahead != '\\') ADVANCE(3597); + lookahead != '\\') ADVANCE(3535); END_STATE(); - case 3598: + case 3536: ACCEPT_TOKEN(sym_unescaped_interpolated_content); - if (lookahead == '#') ADVANCE(3599); + if (lookahead == '#') ADVANCE(3537); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3598); + lookahead == ' ') ADVANCE(3536); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(3599); + lookahead != '(') ADVANCE(3537); END_STATE(); - case 3599: + case 3537: ACCEPT_TOKEN(sym_unescaped_interpolated_content); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(3599); + lookahead != '(') ADVANCE(3537); END_STATE(); - case 3600: + case 3538: ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); END_STATE(); - case 3601: + case 3539: ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -52038,14 +49624,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3838); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3768); END_STATE(); - case 3602: + case 3540: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 3603: + case 3541: ACCEPT_TOKEN(anon_sym_SQUOTE); - if (lookahead == '\'') ADVANCE(3590); + if (lookahead == '\'') ADVANCE(3528); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || @@ -52057,13 +49643,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?' || lookahead == '[' || lookahead == ']' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(585); - if (lookahead != 0) ADVANCE(3628); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(525); + if (lookahead != 0) ADVANCE(3566); END_STATE(); - case 3604: + case 3542: ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); END_STATE(); - case 3605: + case 3543: ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -52071,140 +49657,140 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3838); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3768); END_STATE(); - case 3606: + case 3544: ACCEPT_TOKEN(anon_sym_DQUOTE2); END_STATE(); - case 3607: + case 3545: ACCEPT_TOKEN(sym_inter_escape_sequence); END_STATE(); - case 3608: + case 3546: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACK); END_STATE(); - case 3609: + case 3547: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACE); END_STATE(); - case 3610: + case 3548: ACCEPT_TOKEN(sym__entry_separator); END_STATE(); - case 3611: + case 3549: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(3610); + if (lookahead == ',') ADVANCE(3548); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3611); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3610); + lookahead == ' ') ADVANCE(3549); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3548); END_STATE(); - case 3612: + case 3550: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(3610); + if (lookahead == ',') ADVANCE(3548); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3612); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3613); + lookahead == ' ') ADVANCE(3550); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3551); END_STATE(); - case 3613: + case 3551: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ';') ADVANCE(3627); + if (lookahead == ';') ADVANCE(3565); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(652); + lookahead == ' ') ADVANCE(589); END_STATE(); - case 3614: + case 3552: ACCEPT_TOKEN(sym__entry_separator); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3614); + lookahead == ' ') ADVANCE(3552); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3610); + lookahead == ',') ADVANCE(3548); END_STATE(); - case 3615: + case 3553: ACCEPT_TOKEN(aux_sym_record_entry_token1); END_STATE(); - case 3616: + case 3554: ACCEPT_TOKEN(anon_sym_PLUS); ADVANCE_MAP( - '\n', 3350, + '\n', 3288, '\r', 4, - '+', 1205, - '.', 1215, - '=', 1169, - '_', 1197, - '\t', 3305, - ' ', 3305, + '+', 1146, + '.', 1156, + '=', 1110, + '_', 1138, + '\t', 3243, + ' ', 3243, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); END_STATE(); - case 3617: + case 3555: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(3635); - if (lookahead == '.') ADVANCE(1215); - if (lookahead == '=') ADVANCE(1169); - if (lookahead == '_') ADVANCE(3633); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); + if (lookahead == '+') ADVANCE(3573); + if (lookahead == '.') ADVANCE(1156); + if (lookahead == '=') ADVANCE(1110); + if (lookahead == '_') ADVANCE(3571); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); END_STATE(); - case 3618: + case 3556: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(1418); - if (lookahead == '.') ADVANCE(1660); - if (lookahead == '=') ADVANCE(1169); - if (lookahead == '_') ADVANCE(1405); + if (lookahead == '+') ADVANCE(1359); + if (lookahead == '.') ADVANCE(1601); + if (lookahead == '=') ADVANCE(1110); + if (lookahead == '_') ADVANCE(1346); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3306); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); + lookahead == ' ') ADVANCE(3244); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); END_STATE(); - case 3619: + case 3557: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(1419); - if (lookahead == '.') ADVANCE(1660); - if (lookahead == '=') ADVANCE(1169); - if (lookahead == '_') ADVANCE(1405); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); + if (lookahead == '+') ADVANCE(1360); + if (lookahead == '.') ADVANCE(1601); + if (lookahead == '=') ADVANCE(1110); + if (lookahead == '_') ADVANCE(1346); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); END_STATE(); - case 3620: + case 3558: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(1215); - if (lookahead == '_') ADVANCE(1197); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); + if (lookahead == '.') ADVANCE(1156); + if (lookahead == '_') ADVANCE(1138); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); END_STATE(); - case 3621: + case 3559: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(1660); - if (lookahead == '_') ADVANCE(1405); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); + if (lookahead == '.') ADVANCE(1601); + if (lookahead == '_') ADVANCE(1346); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); END_STATE(); - case 3622: + case 3560: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(4901); - if (lookahead == '_') ADVANCE(4894); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4901); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == '.') ADVANCE(4699); + if (lookahead == '_') ADVANCE(4692); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4699); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 3623: + case 3561: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(1220); - if (lookahead == '_') ADVANCE(1203); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); + if (lookahead == '.') ADVANCE(1161); + if (lookahead == '_') ADVANCE(1144); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); END_STATE(); - case 3624: + case 3562: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(1665); - if (lookahead == '_') ADVANCE(1413); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); + if (lookahead == '.') ADVANCE(1606); + if (lookahead == '_') ADVANCE(1354); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); END_STATE(); - case 3625: + case 3563: ACCEPT_TOKEN(aux_sym__record_key_token1); - if (lookahead == '#') ADVANCE(5029); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3626); + if (lookahead == '#') ADVANCE(4827); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3564); END_STATE(); - case 3626: + case 3564: ACCEPT_TOKEN(aux_sym__record_key_token1); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3626); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3564); END_STATE(); - case 3627: + case 3565: ACCEPT_TOKEN(sym__table_head_separator); END_STATE(); - case 3628: + case 3566: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '\'') ADVANCE(3590); + if (lookahead == '\'') ADVANCE(3528); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || @@ -52216,711 +49802,711 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?' || lookahead == '[' || lookahead == ']' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(585); - if (lookahead != 0) ADVANCE(3628); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(525); + if (lookahead != 0) ADVANCE(3566); END_STATE(); - case 3629: + case 3567: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == '-') ADVANCE(3659); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == '-') ADVANCE(3597); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3630: + case 3568: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == '-') ADVANCE(3667); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == '-') ADVANCE(3605); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3631: + case 3569: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == '-') ADVANCE(3683); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == '-') ADVANCE(3621); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3632: + case 3570: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == '-') ADVANCE(3664); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == '-') ADVANCE(3602); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3633: + case 3571: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == '.') ADVANCE(1215); - if (lookahead == '?') ADVANCE(1399); - if (lookahead == '_') ADVANCE(3633); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == '.') ADVANCE(1156); + if (lookahead == '?') ADVANCE(1340); + if (lookahead == '_') ADVANCE(3571); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3634: + case 3572: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == ':') ADVANCE(4071); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == ':') ADVANCE(3904); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3635: + case 3573: ACCEPT_TOKEN(aux_sym_path_token1); ADVANCE_MAP( - ',', 1943, - '=', 1173, - '.', 1399, - '?', 1399, - '<', 3695, - '>', 3695, - '"', 3696, - '\'', 3696, - '`', 3696, + ',', 1884, + '=', 1114, + '.', 1340, + '?', 1340, + '<', 3633, + '>', 3633, + '"', 3634, + '\'', 3634, + '`', 3634, ); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3636: + case 3574: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == '_') ADVANCE(3636); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == '_') ADVANCE(3574); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3637: + case 3575: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'a') ADVANCE(3670); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'a') ADVANCE(3608); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3638: + case 3576: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'a') ADVANCE(3669); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'a') ADVANCE(3607); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3639: + case 3577: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'a') ADVANCE(3674); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'a') ADVANCE(3612); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3640: + case 3578: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'c') ADVANCE(3641); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'c') ADVANCE(3579); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3641: + case 3579: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'e') ADVANCE(3654); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'e') ADVANCE(3592); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3642: + case 3580: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'e') ADVANCE(3665); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'e') ADVANCE(3603); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3643: + case 3581: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'e') ADVANCE(3007); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'e') ADVANCE(2947); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3644: + case 3582: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'f') ADVANCE(3006); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'f') ADVANCE(2946); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3645: + case 3583: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'h') ADVANCE(2996); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'h') ADVANCE(2936); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3646: + case 3584: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'h') ADVANCE(3282); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'h') ADVANCE(3220); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3647: + case 3585: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'h') ADVANCE(3280); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'h') ADVANCE(3218); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3648: + case 3586: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'h') ADVANCE(3004); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'h') ADVANCE(2944); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3649: + case 3587: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'h') ADVANCE(3629); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'h') ADVANCE(3567); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3650: + case 3588: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'i') ADVANCE(3656); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'i') ADVANCE(3594); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3651: + case 3589: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'i') ADVANCE(3666); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'i') ADVANCE(3604); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3652: + case 3590: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'i') ADVANCE(3671); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'i') ADVANCE(3609); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3653: + case 3591: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'i') ADVANCE(3673); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'i') ADVANCE(3611); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3654: + case 3592: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'l') ADVANCE(3655); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'l') ADVANCE(3593); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3655: + case 3593: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'l') ADVANCE(3632); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'l') ADVANCE(3570); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3656: + case 3594: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'n') ADVANCE(3278); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'n') ADVANCE(3216); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3657: + case 3595: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'n') ADVANCE(3005); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'n') ADVANCE(2945); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3658: + case 3596: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'o') ADVANCE(3644); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'o') ADVANCE(3582); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3659: + case 3597: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'o') ADVANCE(3662); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'o') ADVANCE(3600); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3660: + case 3598: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'p') ADVANCE(3638); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'p') ADVANCE(3576); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3661: + case 3599: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'p') ADVANCE(3643); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'p') ADVANCE(3581); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3662: + case 3600: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'p') ADVANCE(3672); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'p') ADVANCE(3610); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3663: + case 3601: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'p') ADVANCE(3637); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'p') ADVANCE(3575); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3664: + case 3602: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'p') ADVANCE(3639); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'p') ADVANCE(3577); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3665: + case 3603: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'r') ADVANCE(3657); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'r') ADVANCE(3595); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3666: + case 3604: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 't') ADVANCE(3649); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 't') ADVANCE(3587); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3667: + case 3605: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 't') ADVANCE(3678); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 't') ADVANCE(3616); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3668: + case 3606: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 't') ADVANCE(3642); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 't') ADVANCE(3580); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3669: + case 3607: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 't') ADVANCE(3645); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 't') ADVANCE(3583); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3670: + case 3608: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 't') ADVANCE(3668); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 't') ADVANCE(3606); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3671: + case 3609: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 't') ADVANCE(3646); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 't') ADVANCE(3584); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3672: + case 3610: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 't') ADVANCE(3630); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 't') ADVANCE(3568); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3673: + case 3611: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 't') ADVANCE(3647); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 't') ADVANCE(3585); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3674: + case 3612: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 't') ADVANCE(3648); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 't') ADVANCE(3586); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3675: + case 3613: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'w') ADVANCE(3651); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'w') ADVANCE(3589); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3676: + case 3614: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'w') ADVANCE(3652); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'w') ADVANCE(3590); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3677: + case 3615: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'w') ADVANCE(3653); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'w') ADVANCE(3591); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3678: + case 3616: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); - if (lookahead == 'y') ADVANCE(3661); + if (lookahead == ',') ADVANCE(1884); + if (lookahead == 'y') ADVANCE(3599); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3679: + case 3617: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); + if (lookahead == ',') ADVANCE(1884); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3631); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3569); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3680: + case 3618: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); + if (lookahead == ',') ADVANCE(1884); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3563); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3501); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3681: + case 3619: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); + if (lookahead == ',') ADVANCE(1884); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3634); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3572); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3682: + case 3620: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); + if (lookahead == ',') ADVANCE(1884); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3679); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3617); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3683: + case 3621: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); + if (lookahead == ',') ADVANCE(1884); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3680); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3618); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3684: + case 3622: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); + if (lookahead == ',') ADVANCE(1884); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3681); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3619); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3685: + case 3623: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1943); + if (lookahead == ',') ADVANCE(1884); if (lookahead == '.' || - lookahead == '?') ADVANCE(1399); + lookahead == '?') ADVANCE(1340); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3685); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3623); END_STATE(); - case 3686: + case 3624: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '.') ADVANCE(2314); - if (lookahead == '_') ADVANCE(3686); + if (lookahead == '.') ADVANCE(2255); + if (lookahead == '_') ADVANCE(3624); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3694); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3632); END_STATE(); - case 3687: + case 3625: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '`') ADVANCE(3592); + if (lookahead == '`') ADVANCE(3530); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || @@ -52932,823 +50518,783 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?' || lookahead == '[' || lookahead == ']' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(695); - if (lookahead != 0) ADVANCE(3687); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(634); + if (lookahead != 0) ADVANCE(3625); END_STATE(); - case 3688: + case 3626: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2292); + lookahead == 'f') ADVANCE(2233); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3694); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3632); END_STATE(); - case 3689: + case 3627: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3692); + lookahead == 'i') ADVANCE(3630); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3694); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3632); END_STATE(); - case 3690: + case 3628: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3688); + lookahead == 'n') ADVANCE(3626); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3694); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3632); END_STATE(); - case 3691: + case 3629: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3689); + lookahead == 'n') ADVANCE(3627); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3694); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3632); END_STATE(); - case 3692: + case 3630: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3693); + lookahead == 't') ADVANCE(3631); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3694); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3632); END_STATE(); - case 3693: + case 3631: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2291); + lookahead == 'y') ADVANCE(2232); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3694); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3632); END_STATE(); - case 3694: + case 3632: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3695); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3694); + lookahead == '`') ADVANCE(3634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3632); END_STATE(); - case 3695: + case 3633: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3696); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3695); + lookahead == '`') ADVANCE(3634); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3633); END_STATE(); - case 3696: + case 3634: ACCEPT_TOKEN(aux_sym_path_token1); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3696); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3634); END_STATE(); - case 3697: + case 3635: ACCEPT_TOKEN(aux_sym_env_var_token1); END_STATE(); - case 3698: + case 3636: ACCEPT_TOKEN(aux_sym_env_var_token2); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3698); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3636); END_STATE(); - case 3699: + case 3637: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 3700: - ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(3740); - END_STATE(); - case 3701: + case 3638: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(3740); - if (lookahead == '|') ADVANCE(2940); + if (lookahead == '>') ADVANCE(3670); END_STATE(); - case 3702: + case 3639: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(3742); - if (lookahead == '|') ADVANCE(2940); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (lookahead == '>') ADVANCE(3670); + if (lookahead == '|') ADVANCE(2881); END_STATE(); - case 3703: + case 3640: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(3742); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (lookahead == '>') ADVANCE(3672); + if (lookahead == '|') ADVANCE(2881); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 3704: + case 3641: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(3741); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 3705: - ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(3743); + if (lookahead == '>') ADVANCE(3671); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); - case 3706: + case 3642: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(3743); - if (lookahead == '|') ADVANCE(2941); + if (lookahead == '>') ADVANCE(3673); END_STATE(); - case 3707: + case 3643: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(3745); - if (lookahead == '|') ADVANCE(2941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (lookahead == '>') ADVANCE(3673); + if (lookahead == '|') ADVANCE(2882); END_STATE(); - case 3708: + case 3644: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(3745); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (lookahead == '>') ADVANCE(3675); + if (lookahead == '|') ADVANCE(2882); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 3709: + case 3645: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(3744); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 3710: - ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(3746); + if (lookahead == '>') ADVANCE(3674); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); - case 3711: + case 3646: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(3746); - if (lookahead == '|') ADVANCE(2942); + if (lookahead == '>') ADVANCE(3676); END_STATE(); - case 3712: + case 3647: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(3748); - if (lookahead == '|') ADVANCE(2942); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (lookahead == '>') ADVANCE(3676); + if (lookahead == '|') ADVANCE(2883); END_STATE(); - case 3713: + case 3648: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(3748); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (lookahead == '>') ADVANCE(3678); + if (lookahead == '|') ADVANCE(2883); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 3714: + case 3649: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(3747); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 3715: - ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(3749); + if (lookahead == '>') ADVANCE(3677); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); - case 3716: + case 3650: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(3749); - if (lookahead == '|') ADVANCE(2943); + if (lookahead == '>') ADVANCE(3679); END_STATE(); - case 3717: + case 3651: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(3751); - if (lookahead == '|') ADVANCE(2943); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (lookahead == '>') ADVANCE(3679); + if (lookahead == '|') ADVANCE(2884); END_STATE(); - case 3718: + case 3652: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(3751); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (lookahead == '>') ADVANCE(3681); + if (lookahead == '|') ADVANCE(2884); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 3719: + case 3653: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(3750); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); + if (lookahead == '>') ADVANCE(3680); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); - case 3720: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(3752); - END_STATE(); - case 3721: + case 3654: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(3752); - if (lookahead == '|') ADVANCE(2944); + if (lookahead == '>') ADVANCE(3682); END_STATE(); - case 3722: + case 3655: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(3754); - if (lookahead == '|') ADVANCE(2944); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (lookahead == '>') ADVANCE(3682); + if (lookahead == '|') ADVANCE(2885); END_STATE(); - case 3723: + case 3656: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(3754); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (lookahead == '>') ADVANCE(3684); + if (lookahead == '|') ADVANCE(2885); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 3724: + case 3657: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(3753); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 3725: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(3755); + if (lookahead == '>') ADVANCE(3683); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); - case 3726: + case 3658: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(3755); - if (lookahead == '|') ADVANCE(2945); + if (lookahead == '>') ADVANCE(3685); END_STATE(); - case 3727: + case 3659: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(3757); - if (lookahead == '|') ADVANCE(2945); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (lookahead == '>') ADVANCE(3685); + if (lookahead == '|') ADVANCE(2886); END_STATE(); - case 3728: + case 3660: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(3757); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (lookahead == '>') ADVANCE(3687); + if (lookahead == '|') ADVANCE(2886); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 3729: + case 3661: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(3756); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 3730: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(3758); + if (lookahead == '>') ADVANCE(3686); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); - case 3731: + case 3662: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(3758); - if (lookahead == '|') ADVANCE(2946); + if (lookahead == '>') ADVANCE(3688); END_STATE(); - case 3732: + case 3663: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(3760); - if (lookahead == '|') ADVANCE(2946); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (lookahead == '>') ADVANCE(3688); + if (lookahead == '|') ADVANCE(2887); END_STATE(); - case 3733: + case 3664: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(3760); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (lookahead == '>') ADVANCE(3690); + if (lookahead == '|') ADVANCE(2887); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 3734: + case 3665: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(3759); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 3735: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(3761); + if (lookahead == '>') ADVANCE(3689); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); - case 3736: + case 3666: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(3761); - if (lookahead == '|') ADVANCE(2947); + if (lookahead == '>') ADVANCE(3691); END_STATE(); - case 3737: + case 3667: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(3763); - if (lookahead == '|') ADVANCE(2947); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (lookahead == '>') ADVANCE(3691); + if (lookahead == '|') ADVANCE(2888); END_STATE(); - case 3738: + case 3668: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(3763); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (lookahead == '>') ADVANCE(3693); + if (lookahead == '|') ADVANCE(2888); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 3739: + case 3669: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(3762); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); + if (lookahead == '>') ADVANCE(3692); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); - case 3740: + case 3670: ACCEPT_TOKEN(anon_sym_err_GT_GT); END_STATE(); - case 3741: + case 3671: ACCEPT_TOKEN(anon_sym_err_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); - case 3742: + case 3672: ACCEPT_TOKEN(anon_sym_err_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 3743: + case 3673: ACCEPT_TOKEN(anon_sym_out_GT_GT); END_STATE(); - case 3744: + case 3674: ACCEPT_TOKEN(anon_sym_out_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); - case 3745: + case 3675: ACCEPT_TOKEN(anon_sym_out_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 3746: + case 3676: ACCEPT_TOKEN(anon_sym_e_GT_GT); END_STATE(); - case 3747: + case 3677: ACCEPT_TOKEN(anon_sym_e_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); - case 3748: + case 3678: ACCEPT_TOKEN(anon_sym_e_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 3749: + case 3679: ACCEPT_TOKEN(anon_sym_o_GT_GT); END_STATE(); - case 3750: + case 3680: ACCEPT_TOKEN(anon_sym_o_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); - case 3751: + case 3681: ACCEPT_TOKEN(anon_sym_o_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 3752: + case 3682: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); END_STATE(); - case 3753: + case 3683: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); - case 3754: + case 3684: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 3755: + case 3685: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); END_STATE(); - case 3756: + case 3686: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); - case 3757: + case 3687: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 3758: + case 3688: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); END_STATE(); - case 3759: + case 3689: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); - case 3760: + case 3690: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 3761: + case 3691: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); END_STATE(); - case 3762: + case 3692: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); - case 3763: + case 3693: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 3764: + case 3694: ACCEPT_TOKEN(anon_sym_EQ2); END_STATE(); - case 3765: + case 3695: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(3950); - if (lookahead == '>') ADVANCE(3711); - if (lookahead == 'r') ADVANCE(3800); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == '+') ADVANCE(3834); + if (lookahead == '>') ADVANCE(3647); + if (lookahead == 'r') ADVANCE(3730); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3766: + case 3696: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(3930); - if (lookahead == '>') ADVANCE(3716); - if (lookahead == 'u') ADVANCE(3805); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == '+') ADVANCE(3827); + if (lookahead == '>') ADVANCE(3651); + if (lookahead == 'u') ADVANCE(3735); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3767: + case 3697: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(3951); - if (lookahead == '>') ADVANCE(3701); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == '+') ADVANCE(3835); + if (lookahead == '>') ADVANCE(3639); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3768: + case 3698: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(3931); - if (lookahead == '>') ADVANCE(3706); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == '+') ADVANCE(3828); + if (lookahead == '>') ADVANCE(3643); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3769: + case 3699: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(743); - if (lookahead == '>') ADVANCE(925); - if (lookahead == 'u') ADVANCE(3806); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == '+') ADVANCE(682); + if (lookahead == '>') ADVANCE(864); + if (lookahead == 'u') ADVANCE(3736); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3770: + case 3700: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(811); - if (lookahead == '>') ADVANCE(924); - if (lookahead == 'r') ADVANCE(3801); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == '+') ADVANCE(750); + if (lookahead == '>') ADVANCE(863); + if (lookahead == 'r') ADVANCE(3731); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3771: + case 3701: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(813); - if (lookahead == '>') ADVANCE(927); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == '+') ADVANCE(752); + if (lookahead == '>') ADVANCE(866); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3772: + case 3702: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(742); - if (lookahead == '>') ADVANCE(929); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == '+') ADVANCE(681); + if (lookahead == '>') ADVANCE(868); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3773: + case 3703: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-') ADVANCE(3825); - if (lookahead == '_') ADVANCE(3784); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3784); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == '-') ADVANCE(3755); + if (lookahead == '_') ADVANCE(3714); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3714); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3774: + case 3704: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-') ADVANCE(3827); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == '-') ADVANCE(3757); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3775: + case 3705: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-') ADVANCE(3831); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == '-') ADVANCE(3761); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3776: + case 3706: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-') ADVANCE(3833); - if (lookahead == '_') ADVANCE(3784); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3784); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == '-') ADVANCE(3763); + if (lookahead == '_') ADVANCE(3714); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3714); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3777: + case 3707: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '.') ADVANCE(682); - if (lookahead == '_') ADVANCE(3777); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3784); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == '.') ADVANCE(621); + if (lookahead == '_') ADVANCE(3707); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3714); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3778: + case 3708: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == ':') ADVANCE(976); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == ':') ADVANCE(915); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3779: + case 3709: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == ':') ADVANCE(4039); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == ':') ADVANCE(3878); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3780: + case 3710: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'T') ADVANCE(3828); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == 'T') ADVANCE(3758); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3781: + case 3711: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'T') ADVANCE(3829); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == 'T') ADVANCE(3759); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3782: + case 3712: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(3784); - if (lookahead == 'b') ADVANCE(3521); - if (lookahead == 'o') ADVANCE(3537); - if (lookahead == 'x') ADVANCE(3543); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3786); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == '_') ADVANCE(3714); + if (lookahead == 'b') ADVANCE(3459); + if (lookahead == 'o') ADVANCE(3475); + if (lookahead == 'x') ADVANCE(3481); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3716); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3783: + case 3713: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(3784); - if (lookahead == 'b') ADVANCE(3521); - if (lookahead == 'o') ADVANCE(3537); - if (lookahead == 'x') ADVANCE(3543); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3789); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == '_') ADVANCE(3714); + if (lookahead == 'b') ADVANCE(3459); + if (lookahead == 'o') ADVANCE(3475); + if (lookahead == 'x') ADVANCE(3481); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3719); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3784: + case 3714: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(3784); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3784); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == '_') ADVANCE(3714); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3714); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3785: + case 3715: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(3784); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3773); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == '_') ADVANCE(3714); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3703); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3786: + case 3716: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(3784); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3785); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == '_') ADVANCE(3714); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3715); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3787: + case 3717: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(3784); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3786); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == '_') ADVANCE(3714); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3716); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3788: + case 3718: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(3784); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3776); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == '_') ADVANCE(3714); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3706); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3789: + case 3719: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(3784); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3788); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == '_') ADVANCE(3714); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3718); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3790: + case 3720: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(3784); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3789); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == '_') ADVANCE(3714); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3719); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3791: + case 3721: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'a') ADVANCE(3794); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == 'a') ADVANCE(3724); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3792: + case 3722: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'e') ADVANCE(2222); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == 'e') ADVANCE(2163); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3793: + case 3723: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'e') ADVANCE(2267); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == 'e') ADVANCE(2208); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3794: + case 3724: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'l') ADVANCE(3803); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == 'l') ADVANCE(3733); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3795: + case 3725: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'l') ADVANCE(2275); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == 'l') ADVANCE(2216); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3796: + case 3726: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'l') ADVANCE(3795); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == 'l') ADVANCE(3725); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3797: + case 3727: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'n') ADVANCE(3117); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == 'n') ADVANCE(3057); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3798: + case 3728: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'o') ADVANCE(3804); - if (lookahead == 'u') ADVANCE(3796); + if (lookahead == 'o') ADVANCE(3734); + if (lookahead == 'u') ADVANCE(3726); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3813); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + lookahead == 'a') ADVANCE(3743); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3799: + case 3729: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(3807); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == 'r') ADVANCE(3737); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3800: + case 3730: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(3767); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == 'r') ADVANCE(3697); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3801: + case 3731: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(3771); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == 'r') ADVANCE(3701); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3802: + case 3732: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 's') ADVANCE(3257); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == 's') ADVANCE(3195); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3803: + case 3733: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 's') ADVANCE(3793); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == 's') ADVANCE(3723); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3804: + case 3734: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(3820); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == 't') ADVANCE(3750); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3805: + case 3735: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(3768); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == 't') ADVANCE(3698); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3806: + case 3736: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(3772); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == 't') ADVANCE(3702); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3807: + case 3737: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'u') ADVANCE(3792); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (lookahead == 'u') ADVANCE(3722); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3808: + case 3738: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'u') ADVANCE(3796); + if (lookahead == 'u') ADVANCE(3726); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3813); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + lookahead == 'a') ADVANCE(3743); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3809: + case 3739: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3813); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + lookahead == 'a') ADVANCE(3743); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3810: + case 3740: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3812); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + lookahead == 'f') ADVANCE(3742); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3811: + case 3741: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3816); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + lookahead == 'i') ADVANCE(3746); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3812: + case 3742: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3815); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + lookahead == 'i') ADVANCE(3745); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3813: + case 3743: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3835); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + lookahead == 'n') ADVANCE(3765); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3814: + case 3744: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3810); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + lookahead == 'n') ADVANCE(3740); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3815: + case 3745: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3811); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + lookahead == 'n') ADVANCE(3741); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3816: + case 3746: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3817); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + lookahead == 't') ADVANCE(3747); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3817: + case 3747: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3835); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + lookahead == 'y') ADVANCE(3765); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3818: + case 3748: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == '-' || lookahead == '?' || - lookahead == '@') ADVANCE(3835); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3818); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2720); + lookahead == '@') ADVANCE(3765); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3748); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2661); END_STATE(); - case 3819: + case 3749: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(3819); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + lookahead == '_') ADVANCE(3749); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3820: + case 3750: ACCEPT_TOKEN(sym_short_flag_identifier); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3293); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + lookahead == ' ') ADVANCE(3231); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3821: + case 3751: ACCEPT_TOKEN(sym_short_flag_identifier); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3821); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + lookahead == '_') ADVANCE(3751); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3822: + case 3752: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3774); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3704); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3823: + case 3753: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3780); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3710); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3824: + case 3754: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3779); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3709); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3825: + case 3755: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3822); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3752); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3826: + case 3756: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3778); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3708); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3827: + case 3757: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3823); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3753); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3828: + case 3758: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3824); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3754); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3829: + case 3759: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3826); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3756); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3830: + case 3760: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3781); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3711); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3831: + case 3761: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3830); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3760); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3832: + case 3762: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3775); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3705); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3833: + case 3763: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3832); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3762); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3834: + case 3764: ACCEPT_TOKEN(sym_short_flag_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3834); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3764); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3835: + case 3765: ACCEPT_TOKEN(sym_short_flag_identifier); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3835); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3765); END_STATE(); - case 3836: + case 3766: ACCEPT_TOKEN(sym__unquoted_naive); - if (lookahead == '\'') ADVANCE(3591); + if (lookahead == '\'') ADVANCE(3529); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || lookahead == ')' || lookahead == ';' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(585); - if (lookahead != 0) ADVANCE(3836); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(525); + if (lookahead != 0) ADVANCE(3766); END_STATE(); - case 3837: + case 3767: ACCEPT_TOKEN(sym__unquoted_naive); - if (lookahead == '`') ADVANCE(3593); + if (lookahead == '`') ADVANCE(3531); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || lookahead == ')' || lookahead == ';' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(695); - if (lookahead != 0) ADVANCE(3837); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(634); + if (lookahead != 0) ADVANCE(3767); END_STATE(); - case 3838: + case 3768: ACCEPT_TOKEN(sym__unquoted_naive); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -53756,7283 +51302,6480 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3838); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3768); END_STATE(); - case 3839: + case 3769: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '\n') ADVANCE(3366); + if (lookahead == '\n') ADVANCE(3304); if (lookahead == '\r') ADVANCE(10); - if (lookahead == ',') ADVANCE(4040); - if (lookahead == ':') ADVANCE(3869); + if (lookahead == ',') ADVANCE(3879); + if (lookahead == ':') ADVANCE(3792); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3336); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3859); + lookahead == ' ') ADVANCE(3274); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3782); END_STATE(); - case 3840: + case 3770: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '\n') ADVANCE(3354); + if (lookahead == '\n') ADVANCE(3292); if (lookahead == '\r') ADVANCE(11); - if (lookahead == ',') ADVANCE(4040); - if (lookahead == ':') ADVANCE(3869); + if (lookahead == ',') ADVANCE(3879); + if (lookahead == ':') ADVANCE(3792); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3312); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3859); + lookahead == ' ') ADVANCE(3250); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3782); + END_STATE(); + case 3771: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '$') ADVANCE(3401); + if (lookahead == '(') ADVANCE(3310); + if (lookahead == '[') ADVANCE(3546); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3772: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3834); + if (lookahead == '>') ADVANCE(3647); + if (lookahead == 'r') ADVANCE(3840); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3773: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3827); + if (lookahead == '>') ADVANCE(3651); + if (lookahead == 'u') ADVANCE(3848); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3774: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3821); + if (lookahead == '-') ADVANCE(3823); + if (lookahead == '>') ADVANCE(3647); + if (lookahead == '_') ADVANCE(3823); + if (lookahead == 'r') ADVANCE(3840); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3775: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3835); + if (lookahead == '>') ADVANCE(3639); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3776: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3828); + if (lookahead == '>') ADVANCE(3643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3777: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3837); + if (lookahead == '>') ADVANCE(3646); + if (lookahead == 'r') ADVANCE(3841); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3778: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3829); + if (lookahead == '>') ADVANCE(3650); + if (lookahead == 'u') ADVANCE(3850); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3779: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3838); + if (lookahead == '>') ADVANCE(3638); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3780: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3830); + if (lookahead == '>') ADVANCE(3642); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3781: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ',') ADVANCE(3879); + if (lookahead == '2') ADVANCE(3784); + if (lookahead == '0' || + lookahead == '1') ADVANCE(3790); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3792); + END_STATE(); + case 3782: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ',') ADVANCE(3879); + if (lookahead == ':') ADVANCE(3792); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3782); + END_STATE(); + case 3783: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ',') ADVANCE(3879); + if (lookahead == ':') ADVANCE(3791); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3792); + END_STATE(); + case 3784: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ',') ADVANCE(3879); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3495); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3792); + END_STATE(); + case 3785: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ',') ADVANCE(3879); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3486); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3792); + END_STATE(); + case 3786: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ',') ADVANCE(3879); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3783); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3792); + END_STATE(); + case 3787: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ',') ADVANCE(3879); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3786); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3792); + END_STATE(); + case 3788: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ',') ADVANCE(3879); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3488); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3792); + END_STATE(); + case 3789: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ',') ADVANCE(3879); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3511); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3792); + END_STATE(); + case 3790: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ',') ADVANCE(3879); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3495); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3792); + END_STATE(); + case 3791: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ',') ADVANCE(3879); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3788); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3792); + END_STATE(); + case 3792: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ',') ADVANCE(3879); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3792); + END_STATE(); + case 3793: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '-') ADVANCE(3870); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3794: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '.') ADVANCE(3122); + if (lookahead == '_') ADVANCE(3813); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3445); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3795: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '.') ADVANCE(3122); + if (lookahead == '_') ADVANCE(3817); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3391); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3796: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '.') ADVANCE(3315); + if (lookahead == '_') ADVANCE(3813); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3445); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3797: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '.') ADVANCE(3812); + if (lookahead == '_') ADVANCE(3797); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3798: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '.') ADVANCE(3120); + if (lookahead == '_') ADVANCE(3813); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3445); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3799: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '.') ADVANCE(3816); + if (lookahead == '_') ADVANCE(3799); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3800: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '2') ADVANCE(3864); + if (lookahead == '0' || + lookahead == '1') ADVANCE(3874); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3801: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ':') ADVANCE(3876); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3802: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == ':') ADVANCE(3878); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3803: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '>') ADVANCE(3667); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3804: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '>') ADVANCE(3663); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3805: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '>') ADVANCE(3655); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3806: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '>') ADVANCE(3659); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3807: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '>') ADVANCE(3666); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3808: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '>') ADVANCE(3662); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3809: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '>') ADVANCE(3654); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3810: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '>') ADVANCE(3658); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3811: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(3811); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3812: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(3812); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3451); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3813: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(3813); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3445); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3814: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(3815); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3815); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3815: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(3815); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3816: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(3816); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3817: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(3817); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3391); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3818: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(3819); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3819); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3819: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(3819); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3820: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(3820); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3821: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(3823); + if (lookahead == 'o') ADVANCE(3803); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3822: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(3823); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3823); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3823: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '_') ADVANCE(3823); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3824: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'a') ADVANCE(3832); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3825: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'e') ADVANCE(2159); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3826: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'e') ADVANCE(2204); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3827: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'e') ADVANCE(3804); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3828: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'e') ADVANCE(3842); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3829: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'e') ADVANCE(3808); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3830: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'e') ADVANCE(3845); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3831: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'l') ADVANCE(2212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3832: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'l') ADVANCE(3846); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3833: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'l') ADVANCE(3831); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3834: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'o') ADVANCE(3803); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3835: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'o') ADVANCE(3854); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3836: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'o') ADVANCE(3847); + if (lookahead == 'u') ADVANCE(3833); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3859); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3837: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'o') ADVANCE(3807); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3838: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'o') ADVANCE(3855); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3839: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'r') ADVANCE(3853); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); + END_STATE(); + case 3840: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'r') ADVANCE(3775); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); END_STATE(); case 3841: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '$') ADVANCE(3463); - if (lookahead == '(') ADVANCE(3372); - if (lookahead == '[') ADVANCE(3608); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4040); + if (lookahead == 'r') ADVANCE(3779); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); END_STATE(); case 3842: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '*') ADVANCE(3997); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3298); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + if (lookahead == 'r') ADVANCE(3843); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); END_STATE(); case 3843: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3950); - if (lookahead == '>') ADVANCE(3711); - if (lookahead == 'r') ADVANCE(3961); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + if (lookahead == 'r') ADVANCE(3806); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); END_STATE(); case 3844: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3930); - if (lookahead == '>') ADVANCE(3716); - if (lookahead == 'u') ADVANCE(3978); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + if (lookahead == 'r') ADVANCE(3810); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); END_STATE(); case 3845: ACCEPT_TOKEN(aux_sym_unquoted_token1); - ADVANCE_MAP( - '+', 3909, - '-', 3911, - '>', 3710, - 'I', 4017, - '_', 3911, - 'i', 4017, - 'r', 3962, - 'B', 3524, - 'b', 3524, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + if (lookahead == 'r') ADVANCE(3844); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); END_STATE(); case 3846: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3909); - if (lookahead == '-') ADVANCE(3911); - if (lookahead == '>') ADVANCE(3710); - if (lookahead == '_') ADVANCE(3911); - if (lookahead == 'r') ADVANCE(3962); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + if (lookahead == 's') ADVANCE(3826); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); END_STATE(); case 3847: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3951); - if (lookahead == '>') ADVANCE(3701); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + if (lookahead == 't') ADVANCE(3865); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); END_STATE(); case 3848: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3908); - if (lookahead == '-') ADVANCE(3911); - if (lookahead == '>') ADVANCE(3711); - if (lookahead == '_') ADVANCE(3911); - if (lookahead == 'r') ADVANCE(3961); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + if (lookahead == 't') ADVANCE(3776); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); END_STATE(); case 3849: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3931); - if (lookahead == '>') ADVANCE(3706); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + if (lookahead == 't') ADVANCE(3805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); END_STATE(); case 3850: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3994); - if (lookahead == '.') ADVANCE(3904); - if (lookahead == '_') ADVANCE(3878); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3306); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + if (lookahead == 't') ADVANCE(3780); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); END_STATE(); case 3851: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3953); - if (lookahead == '>') ADVANCE(3710); - if (lookahead == 'I') ADVANCE(4017); - if (lookahead == 'i') ADVANCE(4017); - if (lookahead == 'r') ADVANCE(3962); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + if (lookahead == 't') ADVANCE(3809); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); END_STATE(); case 3852: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3953); - if (lookahead == '>') ADVANCE(3710); - if (lookahead == 'n') ADVANCE(3923); - if (lookahead == 'r') ADVANCE(3962); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + if (lookahead == 'u') ADVANCE(3833); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3859); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); END_STATE(); case 3853: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3953); - if (lookahead == '>') ADVANCE(3710); - if (lookahead == 'r') ADVANCE(3962); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + if (lookahead == 'u') ADVANCE(3825); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); END_STATE(); case 3854: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3932); - if (lookahead == '>') ADVANCE(3715); - if (lookahead == 'r') ADVANCE(4004); - if (lookahead == 'u') ADVANCE(3983); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + if (lookahead == 'u') ADVANCE(3849); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); END_STATE(); case 3855: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3932); - if (lookahead == '>') ADVANCE(3715); - if (lookahead == 'u') ADVANCE(3983); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + if (lookahead == 'u') ADVANCE(3851); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); END_STATE(); case 3856: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3957); - if (lookahead == '>') ADVANCE(3700); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3859); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); END_STATE(); case 3857: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3933); - if (lookahead == '>') ADVANCE(3705); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2225); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); END_STATE(); case 3858: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(4040); - if (lookahead == '2') ADVANCE(3861); - if (lookahead == '0' || - lookahead == '1') ADVANCE(3867); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3869); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3862); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); END_STATE(); case 3859: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(4040); - if (lookahead == ':') ADVANCE(3869); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3859); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2241); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); END_STATE(); case 3860: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(4040); - if (lookahead == ':') ADVANCE(3868); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3869); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3857); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); END_STATE(); case 3861: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(4040); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3869); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3858); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); END_STATE(); case 3862: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(4040); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3548); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3869); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3863); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); END_STATE(); case 3863: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(4040); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3860); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3869); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2220); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); END_STATE(); case 3864: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(4040); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3863); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3869); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3497); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); END_STATE(); case 3865: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(4040); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3550); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3869); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3231); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); END_STATE(); case 3866: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(4040); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3573); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3869); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3486); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); END_STATE(); case 3867: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(4040); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3869); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3793); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); END_STATE(); case 3868: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(4040); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3865); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3869); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3802); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); END_STATE(); case 3869: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(4040); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3869); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3867); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); END_STATE(); case 3870: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(3920); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3871); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); END_STATE(); case 3871: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(3991); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3504); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); END_STATE(); case 3872: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(3937); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3490); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); END_STATE(); case 3873: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(4031); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3513); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); END_STATE(); case 3874: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(3992); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3497); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); END_STATE(); case 3875: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3184); - if (lookahead == '_') ADVANCE(3905); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3507); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3868); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); END_STATE(); case 3876: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3184); - if (lookahead == '_') ADVANCE(3914); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3453); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3872); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); END_STATE(); case 3877: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3377); - if (lookahead == '_') ADVANCE(3905); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3507); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3801); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); END_STATE(); case 3878: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3904); - if (lookahead == '_') ADVANCE(3878); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3877); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); END_STATE(); case 3879: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3182); - if (lookahead == '_') ADVANCE(3905); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3507); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3879); END_STATE(); case 3880: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3913); - if (lookahead == '_') ADVANCE(3880); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(3967); + if (lookahead == '>') ADVANCE(3647); + if (lookahead == 'I') ADVANCE(4006); + if (lookahead == 'i') ADVANCE(4006); + if (lookahead == 'r') ADVANCE(3977); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3881: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '/') ADVANCE(3998); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3300); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(3967); + if (lookahead == '>') ADVANCE(3647); + if (lookahead == 'r') ADVANCE(3977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3882: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '2') ADVANCE(4025); - if (lookahead == '0' || - lookahead == '1') ADVANCE(4035); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(3955); + if (lookahead == '>') ADVANCE(3651); + if (lookahead == 'u') ADVANCE(3988); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3883: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(4037); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + ADVANCE_MAP( + '+', 3941, + '-', 3944, + '>', 3647, + 'I', 4006, + '_', 3944, + 'i', 4006, + 'r', 3977, + 'B', 3462, + 'b', 3462, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3884: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(4039); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(3941); + if (lookahead == '-') ADVANCE(3944); + if (lookahead == '>') ADVANCE(3647); + if (lookahead == '_') ADVANCE(3944); + if (lookahead == 'r') ADVANCE(3977); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3885: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '=') ADVANCE(3995); - if (lookahead == '~') ADVANCE(3996); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(3968); + if (lookahead == '>') ADVANCE(3639); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3886: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '=') ADVANCE(3999); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3340); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + ADVANCE_MAP( + '+', 3942, + '-', 3944, + '>', 3997, + 'I', 4006, + '_', 3944, + 'i', 4006, + 'r', 3978, + 'B', 3462, + 'b', 3462, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3887: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '=') ADVANCE(4000); - if (lookahead == '~') ADVANCE(4001); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(3942); + if (lookahead == '-') ADVANCE(3944); + if (lookahead == '>') ADVANCE(3997); + if (lookahead == '_') ADVANCE(3944); + if (lookahead == 'r') ADVANCE(3978); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3888: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '=') ADVANCE(4002); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3342); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(3956); + if (lookahead == '>') ADVANCE(3643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3889: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(3736); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(3971); + if (lookahead == '>') ADVANCE(3997); + if (lookahead == 'I') ADVANCE(4006); + if (lookahead == 'i') ADVANCE(4006); + if (lookahead == 'r') ADVANCE(3978); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3890: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(3731); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(3971); + if (lookahead == '>') ADVANCE(3997); + if (lookahead == 'r') ADVANCE(3978); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3891: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(3721); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(3957); + if (lookahead == '>') ADVANCE(3998); + if (lookahead == 'r') ADVANCE(3212); + if (lookahead == 'u') ADVANCE(3990); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3892: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(3726); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(3957); + if (lookahead == '>') ADVANCE(3998); + if (lookahead == 'u') ADVANCE(3990); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3893: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(3735); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(3973); + if (lookahead == '>') ADVANCE(4000); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3894: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(3730); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(3958); + if (lookahead == '>') ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3895: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(3720); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == ',') ADVANCE(4035); + if (lookahead == '2') ADVANCE(3898); + if (lookahead == '0' || + lookahead == '1') ADVANCE(3902); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3906); END_STATE(); case 3896: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(3725); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == ',') ADVANCE(4035); + if (lookahead == ':') ADVANCE(3906); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3896); END_STATE(); case 3897: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I') ADVANCE(4017); - if (lookahead == '_') ADVANCE(3911); - if (lookahead == 'i') ADVANCE(3921); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3911); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == ',') ADVANCE(4035); + if (lookahead == ':') ADVANCE(3905); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3906); END_STATE(); case 3898: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I') ADVANCE(4017); - if (lookahead == 'i') ADVANCE(4017); - if (lookahead == 'r') ADVANCE(3988); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == ',') ADVANCE(4035); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3494); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3906); END_STATE(); case 3899: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I') ADVANCE(4017); - if (lookahead == 'i') ADVANCE(4017); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == ',') ADVANCE(4035); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3487); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3906); END_STATE(); case 3900: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I') ADVANCE(4017); - if (lookahead == 'i') ADVANCE(3921); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == ',') ADVANCE(4035); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3486); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3906); END_STATE(); case 3901: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I') ADVANCE(4017); - if (lookahead == 'i') ADVANCE(3946); - if (lookahead == 's') ADVANCE(3529); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == ',') ADVANCE(4035); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3510); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3906); END_STATE(); case 3902: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N') ADVANCE(4018); - if (lookahead == 'n') ADVANCE(4003); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == ',') ADVANCE(4035); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3494); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3906); END_STATE(); case 3903: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3903); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == ',') ADVANCE(4035); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3897); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3906); END_STATE(); case 3904: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3904); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3513); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == ',') ADVANCE(4035); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3903); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3906); END_STATE(); case 3905: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3905); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3507); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == ',') ADVANCE(4035); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3899); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3906); END_STATE(); case 3906: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3907); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3907); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == ',') ADVANCE(4035); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3906); END_STATE(); case 3907: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3907); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '-') ADVANCE(2965); + if (lookahead == '.') ADVANCE(3939); + if (lookahead == '_') ADVANCE(3914); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4014); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3908: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3911); - if (lookahead == 'o') ADVANCE(3889); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '-') ADVANCE(4026); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3909: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3911); - if (lookahead == 'o') ADVANCE(3893); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '.') ADVANCE(3122); + if (lookahead == '_') ADVANCE(3935); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3390); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3910: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3911); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3911); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '.') ADVANCE(3122); + if (lookahead == '_') ADVANCE(3940); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3449); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3911: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3911); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '.') ADVANCE(3315); + if (lookahead == '_') ADVANCE(3940); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3449); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3912: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3912); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '.') ADVANCE(3315); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3913: - ACCEPT_TOKEN(aux_sym_unquoted_token1); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '.') ADVANCE(3934); if (lookahead == '_') ADVANCE(3913); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3461); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3914: - ACCEPT_TOKEN(aux_sym_unquoted_token1); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '.') ADVANCE(3939); if (lookahead == '_') ADVANCE(3914); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3453); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3915: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3916); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3916); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '2') ADVANCE(4020); + if (lookahead == '0' || + lookahead == '1') ADVANCE(4031); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3916: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3916); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == ':') ADVANCE(4028); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3917: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'a') ADVANCE(3943); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == ':') ADVANCE(4034); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3918: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'a') ADVANCE(3993); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '>') ADVANCE(3667); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3919: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'a') ADVANCE(3965); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '>') ADVANCE(3663); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3920: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'a') ADVANCE(3949); - if (lookahead == 'o') ADVANCE(3968); - if (lookahead == 's') ADVANCE(3934); - if (lookahead == 'x') ADVANCE(3958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '>') ADVANCE(3655); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3921: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '>') ADVANCE(3659); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3922: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'c') ADVANCE(3529); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '>') ADVANCE(3111); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3923: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'd') ADVANCE(3974); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '>') ADVANCE(3999); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3924: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'd') ADVANCE(4005); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '>') ADVANCE(4001); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3925: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'd') ADVANCE(4006); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '>') ADVANCE(4003); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3926: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'd') ADVANCE(4010); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '>') ADVANCE(4004); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3927: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2218); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'I') ADVANCE(4006); + if (lookahead == '_') ADVANCE(3944); + if (lookahead == 'i') ADVANCE(4006); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3944); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3928: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2263); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'I') ADVANCE(4006); + if (lookahead == '_') ADVANCE(3944); + if (lookahead == 'i') ADVANCE(3949); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3944); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3929: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(3922); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'I') ADVANCE(4006); + if (lookahead == 'i') ADVANCE(4006); + if (lookahead == 'r') ADVANCE(3993); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3930: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(3890); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'I') ADVANCE(4006); + if (lookahead == 'i') ADVANCE(4006); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3931: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(3963); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'I') ADVANCE(4006); + if (lookahead == 'i') ADVANCE(3949); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3932: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(3894); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'I') ADVANCE(4006); + if (lookahead == 'i') ADVANCE(3964); + if (lookahead == 's') ADVANCE(3467); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3933: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(3970); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(3933); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3934: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'h') ADVANCE(3945); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(3934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3935: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'h') ADVANCE(4014); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(3935); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3390); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3936: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'h') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(3937); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3937); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3937: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'i') ADVANCE(3948); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(3937); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3938: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'i') ADVANCE(3979); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(3938); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3939: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'i') ADVANCE(3980); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(3939); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3451); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3940: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'i') ADVANCE(3985); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(3940); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3449); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3941: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'k') ADVANCE(3529); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(3944); + if (lookahead == 'o') ADVANCE(3918); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3942: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(2271); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(3944); + if (lookahead == 'o') ADVANCE(3923); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3943: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(3973); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(3944); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3944); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3944: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(3942); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(3944); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3945: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(4011); - if (lookahead == 'r') ADVANCE(4012); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(3946); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3946); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3946: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'n') ADVANCE(3529); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(3946); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3947: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'n') ADVANCE(3924); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'a') ADVANCE(3962); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3948: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'n') ADVANCE(4009); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'a') ADVANCE(3996); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3949: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'n') ADVANCE(3926); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3950: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(3889); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'c') ADVANCE(3467); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3951: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(3989); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'd') ADVANCE(3204); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3952: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(3982); - if (lookahead == 'u') ADVANCE(3944); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4020); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'e') ADVANCE(2159); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3953: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(3893); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'e') ADVANCE(2204); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3954: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(3967); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'e') ADVANCE(3950); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3955: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(3976); - if (lookahead == 'u') ADVANCE(3944); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4020); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'e') ADVANCE(3919); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3956: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(3925); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'e') ADVANCE(3979); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3957: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(3990); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'e') ADVANCE(3924); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3958: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(3969); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'e') ADVANCE(3981); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3959: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(3529); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'f') ADVANCE(3086); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3960: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(3988); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'k') ADVANCE(3467); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3961: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(3847); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'l') ADVANCE(2212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3962: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(3856); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'l') ADVANCE(3986); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3963: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(3964); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'l') ADVANCE(3961); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3964: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(3892); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'n') ADVANCE(3467); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3965: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(3986); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'n') ADVANCE(3048); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3966: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(3896); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'n') ADVANCE(3951); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3967: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(4007); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'o') ADVANCE(3918); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3968: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(4008); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'o') ADVANCE(3994); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3969: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(4013); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'o') ADVANCE(3987); + if (lookahead == 's') ADVANCE(3467); + if (lookahead == 'u') ADVANCE(3963); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4011); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3970: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(3966); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'o') ADVANCE(3987); + if (lookahead == 'u') ADVANCE(3963); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4011); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3971: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(3529); - if (lookahead == 'u') ADVANCE(3944); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4020); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'o') ADVANCE(3923); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3972: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(3529); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'o') ADVANCE(3975); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3973: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(3928); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'o') ADVANCE(3995); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3974: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(3871); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'r') ADVANCE(3467); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3975: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(3874); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'r') ADVANCE(3208); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3976: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(4026); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'r') ADVANCE(3993); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3977: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(3919); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'r') ADVANCE(3885); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3978: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(3849); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'r') ADVANCE(3893); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3979: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(3870); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'r') ADVANCE(3980); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3980: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(3935); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'r') ADVANCE(3921); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3981: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(3891); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'r') ADVANCE(3982); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3982: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(3872); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'r') ADVANCE(3926); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3983: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(3857); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 's') ADVANCE(3467); + if (lookahead == 'u') ADVANCE(3963); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4011); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3984: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(3895); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 's') ADVANCE(3467); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3985: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(3936); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 's') ADVANCE(3188); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3986: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(3975); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 's') ADVANCE(3953); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3987: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(3944); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4020); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 't') ADVANCE(4021); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3988: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(3927); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 't') ADVANCE(3888); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3989: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(3981); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 't') ADVANCE(3920); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3990: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 't') ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3991: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'w') ADVANCE(3939); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 't') ADVANCE(3925); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3992: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'w') ADVANCE(3940); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'u') ADVANCE(3963); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4011); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3993: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'y') ADVANCE(3529); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'u') ADVANCE(3952); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3994: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3297); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'u') ADVANCE(3989); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3995: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3339); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'u') ADVANCE(3991); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3996: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3315); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'y') ADVANCE(3467); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3997: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3296); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '|') ADVANCE(2883); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3998: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3304); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '|') ADVANCE(2884); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 3999: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3341); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '|') ADVANCE(2888); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 4000: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '|') ADVANCE(2881); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 4001: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3313); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '|') ADVANCE(2887); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 4002: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3343); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '|') ADVANCE(2882); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 4003: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3329); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2284); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '|') ADVANCE(2885); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 4004: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3327); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '|') ADVANCE(2886); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 4005: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3323); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4011); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 4006: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3302); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 4007: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3325); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2239); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 4008: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3321); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2228); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 4009: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3331); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 4010: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3317); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4017); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 4011: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3309); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2241); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 4012: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3311); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4008); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 4013: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3319); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4009); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 4014: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3335); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4007); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 4015: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3333); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4010); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 4016: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4020); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4019); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 4017: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4018); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 4018: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2284); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2232); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 4019: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4023); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2220); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 4020: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2300); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3499); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 4021: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4018); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3231); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 4022: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4019); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3486); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 4023: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3908); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 4024: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2279); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3917); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 4025: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3559); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4023); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 4026: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3293); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4032); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 4027: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3548); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4024); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 4028: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3873); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4029); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 4029: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3884); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3492); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 4030: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4028); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3515); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 4031: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4032); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3499); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 4032: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3566); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3507); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 4033: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3552); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3916); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 4034: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3575); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4033); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 4035: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3559); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4035); END_STATE(); case 4036: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4029); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '$') ADVANCE(2929); + if (lookahead == '(') ADVANCE(3232); + if (lookahead == '.') ADVANCE(4039); + if (lookahead == '_') ADVANCE(4040); + if (lookahead == '\t' || + lookahead == ' ') SKIP(408); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4038); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4044); END_STATE(); case 4037: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4033); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '.') ADVANCE(4039); + if (lookahead == '_') ADVANCE(4040); + if (lookahead == '\t' || + lookahead == ' ') SKIP(483); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4038); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4044); END_STATE(); case 4038: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3883); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '.') ADVANCE(4041); + if (lookahead == '_') ADVANCE(4038); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4044); END_STATE(); case 4039: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4038); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '_') ADVANCE(4039); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3397); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4044); END_STATE(); case 4040: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4040); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '_') ADVANCE(4040); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4044); END_STATE(); case 4041: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - ADVANCE_MAP( - '+', 4107, - '-', 4111, - '>', 3710, - 'I', 4189, - '_', 4111, - 'i', 4189, - 'r', 4153, - 'B', 3524, - 'b', 3524, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '_') ADVANCE(4041); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4044); END_STATE(); case 4042: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4143); - if (lookahead == '>') ADVANCE(3700); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '_') ADVANCE(4043); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4043); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4044); END_STATE(); case 4043: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4128); - if (lookahead == '>') ADVANCE(3715); - if (lookahead == 'u') ADVANCE(4168); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '_') ADVANCE(4043); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4044); END_STATE(); case 4044: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4142); - if (lookahead == '>') ADVANCE(3710); - if (lookahead == 'I') ADVANCE(4189); - if (lookahead == 'i') ADVANCE(4189); - if (lookahead == 'r') ADVANCE(4153); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4044); END_STATE(); case 4045: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4142); - if (lookahead == '>') ADVANCE(3710); - if (lookahead == 'r') ADVANCE(4153); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4148); + if (lookahead == '>') ADVANCE(3648); + if (lookahead == 'r') ADVANCE(4161); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4046: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4146); - if (lookahead == '>') ADVANCE(3711); - if (lookahead == 'I') ADVANCE(4189); - if (lookahead == 'i') ADVANCE(4189); - if (lookahead == 'r') ADVANCE(4155); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4110); + if (lookahead == '>') ADVANCE(3652); + if (lookahead == 'u') ADVANCE(4188); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4047: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4146); - if (lookahead == '>') ADVANCE(3711); - if (lookahead == 'r') ADVANCE(4155); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4151); + if (lookahead == '>') ADVANCE(3640); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4048: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4129); - if (lookahead == '>') ADVANCE(3705); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4113); + if (lookahead == '>') ADVANCE(3644); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4049: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - ADVANCE_MAP( - '+', 4108, - '-', 4111, - '>', 3711, - 'I', 4189, - '_', 4111, - 'i', 4189, - 'r', 4155, - 'B', 3524, - 'b', 3524, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4154); + if (lookahead == '>') ADVANCE(4206); + if (lookahead == 'r') ADVANCE(4168); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4050: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4108); - if (lookahead == '-') ADVANCE(4111); - if (lookahead == '>') ADVANCE(3711); - if (lookahead == '_') ADVANCE(4111); - if (lookahead == 'r') ADVANCE(4155); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4117); + if (lookahead == '>') ADVANCE(4207); + if (lookahead == 'r') ADVANCE(3215); + if (lookahead == 'u') ADVANCE(4190); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4051: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4130); - if (lookahead == '>') ADVANCE(3716); - if (lookahead == 'u') ADVANCE(4170); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4117); + if (lookahead == '>') ADVANCE(4207); + if (lookahead == 'u') ADVANCE(4190); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4052: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4148); - if (lookahead == '>') ADVANCE(4180); - if (lookahead == 'I') ADVANCE(4189); - if (lookahead == 'i') ADVANCE(4189); - if (lookahead == 'r') ADVANCE(4158); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4157); + if (lookahead == '>') ADVANCE(4209); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4053: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4148); - if (lookahead == '>') ADVANCE(4180); - if (lookahead == 'r') ADVANCE(4158); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4119); + if (lookahead == '>') ADVANCE(4211); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4054: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - ADVANCE_MAP( - '+', 4109, - '-', 4111, - '>', 4180, - 'I', 4189, - '_', 4111, - 'i', 4189, - 'r', 4158, - 'B', 3524, - 'b', 3524, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '-') ADVANCE(2968); + if (lookahead == '.') ADVANCE(4079); + if (lookahead == '_') ADVANCE(4058); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4224); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4079); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4055: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4109); - if (lookahead == '-') ADVANCE(4111); - if (lookahead == '>') ADVANCE(4180); - if (lookahead == '_') ADVANCE(4111); - if (lookahead == 'r') ADVANCE(4158); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '-') ADVANCE(4247); + if (lookahead == '_') ADVANCE(4079); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4079); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4056: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4131); - if (lookahead == '>') ADVANCE(4181); - if (lookahead == 'r') ADVANCE(3274); - if (lookahead == 'u') ADVANCE(4171); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '-') ADVANCE(4115); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4057: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4131); - if (lookahead == '>') ADVANCE(4181); - if (lookahead == 'u') ADVANCE(4171); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '-') ADVANCE(4248); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4058: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4149); - if (lookahead == '>') ADVANCE(3701); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '.') ADVANCE(4079); + if (lookahead == '_') ADVANCE(4058); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4079); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4059: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4132); - if (lookahead == '>') ADVANCE(3706); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '.') ADVANCE(3123); + if (lookahead == '_') ADVANCE(4086); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4083); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4060: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4150); - if (lookahead == '>') ADVANCE(4183); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '.') ADVANCE(4088); + if (lookahead == '_') ADVANCE(4060); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4088); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4061: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4133); - if (lookahead == '>') ADVANCE(4185); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '.') ADVANCE(4245); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4062); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4062: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(4218); - if (lookahead == '2') ADVANCE(4065); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '2') ADVANCE(4235); if (lookahead == '0' || - lookahead == '1') ADVANCE(4069); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4073); + lookahead == '1') ADVANCE(4246); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4063: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(4218); - if (lookahead == ':') ADVANCE(4073); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4063); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == ':') ADVANCE(4237); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4240); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4064: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(4218); - if (lookahead == ':') ADVANCE(4072); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4073); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == ':') ADVANCE(4250); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4065: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(4218); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3556); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4073); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == ':') ADVANCE(4252); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4066: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(4218); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3549); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4073); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '>') ADVANCE(3668); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4067: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(4218); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3548); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4073); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '>') ADVANCE(3664); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4068: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(4218); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3572); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4073); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '>') ADVANCE(3656); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4069: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(4218); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3556); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4073); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '>') ADVANCE(3660); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4070: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(4218); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4064); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4073); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '>') ADVANCE(3112); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4071: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(4218); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4070); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4073); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '>') ADVANCE(4208); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4072: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(4218); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4066); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4073); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '>') ADVANCE(4210); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4073: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(4218); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4073); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '>') ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4074: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(3025); - if (lookahead == '.') ADVANCE(4105); - if (lookahead == '_') ADVANCE(4079); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4197); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '>') ADVANCE(4213); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4075: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(4209); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'N') ADVANCE(4218); + if (lookahead == 'f') ADVANCE(4234); + if (lookahead == 'n') ADVANCE(4218); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4076: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3184); - if (lookahead == '_') ADVANCE(4106); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3509); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'T') ADVANCE(4249); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4077: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3184); - if (lookahead == '_') ADVANCE(4117); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3452); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '_') ADVANCE(4079); + if (lookahead == 'b') ADVANCE(3460); + if (lookahead == 'o') ADVANCE(3476); + if (lookahead == 'x') ADVANCE(3482); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4081); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4078: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(4105); + ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == '_') ADVANCE(4079); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4197); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4079); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4079); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4079: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(4105); + ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == '_') ADVANCE(4079); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4079); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4080: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3377); - if (lookahead == '_') ADVANCE(4106); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3509); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '_') ADVANCE(4079); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4055); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4081: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3377); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '_') ADVANCE(4079); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4082: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(4116); - if (lookahead == '_') ADVANCE(4082); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '_') ADVANCE(4079); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4081); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4083: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '2') ADVANCE(4203); - if (lookahead == '0' || - lookahead == '1') ADVANCE(4215); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '_') ADVANCE(4083); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4078); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4083); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4084: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ':') ADVANCE(4211); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '_') ADVANCE(4084); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4085); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4085: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ':') ADVANCE(4217); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '_') ADVANCE(4085); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4087); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4085); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4086: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3736); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '_') ADVANCE(4086); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4083); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4087: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3731); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '_') ADVANCE(4088); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4088); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4088); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4088: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3721); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '_') ADVANCE(4088); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4088); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4089: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3726); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'a') ADVANCE(4132); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4090: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3171); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'a') ADVANCE(4185); + if (lookahead == 'o') ADVANCE(4143); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4091: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3735); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'a') ADVANCE(4141); + if (lookahead == 'o') ADVANCE(4162); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4092: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3730); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'a') ADVANCE(4131); + if (lookahead == 'o') ADVANCE(4099); + if (lookahead == 'u') ADVANCE(4184); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4093: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3720); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'a') ADVANCE(4130); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4094: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3725); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'a') ADVANCE(4205); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4095: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4182); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'a') ADVANCE(4176); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4096: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4184); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'c') ADVANCE(4123); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4097: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4186); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'c') ADVANCE(4107); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4098: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4187); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'd') ADVANCE(3207); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4099: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4189); - if (lookahead == '_') ADVANCE(4111); - if (lookahead == 'i') ADVANCE(4189); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4111); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'd') ADVANCE(4197); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4100: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4189); - if (lookahead == '_') ADVANCE(4111); - if (lookahead == 'i') ADVANCE(4122); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4111); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'd') ADVANCE(4107); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4101: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4189); - if (lookahead == 'i') ADVANCE(4189); - if (lookahead == 'r') ADVANCE(4176); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(2166); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4102: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4189); - if (lookahead == 'i') ADVANCE(4189); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(2211); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4103: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4189); - if (lookahead == 'i') ADVANCE(4122); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(4234); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4104: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4189); - if (lookahead == 'i') ADVANCE(4139); - if (lookahead == 's') ADVANCE(3529); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(4120); + if (lookahead == 'o') ADVANCE(4234); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4105: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4105); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3513); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(4204); + if (lookahead == 'u') ADVANCE(4138); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4225); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4106: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4106); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3509); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(4122); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4107: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4111); - if (lookahead == 'o') ADVANCE(4091); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(4056); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4108: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4111); - if (lookahead == 'o') ADVANCE(4086); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(2161); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4109: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4111); - if (lookahead == 'o') ADVANCE(4095); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(2206); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4110: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4111); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4111); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(4067); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4111: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4111); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(4186); + if (lookahead == 'i') ADVANCE(4180); + if (lookahead == 'o') ADVANCE(4150); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4112: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4112); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(4093); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4113: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4114); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4114); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(4171); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4114: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4114); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(4162); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4115: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4115); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(4146); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4116: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4116); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3461); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(4173); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4117: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4117); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3452); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(4072); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4118: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4119); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4119); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(4170); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4119: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4119); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(4174); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4120: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(4179); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'f') ADVANCE(4234); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4121: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(4137); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'f') ADVANCE(3093); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4122: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'g') ADVANCE(4129); + if (lookahead == 't') ADVANCE(4200); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4123: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'c') ADVANCE(3529); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'h') ADVANCE(4234); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4124: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'd') ADVANCE(3266); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'h') ADVANCE(4128); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4125: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(2218); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'i') ADVANCE(4100); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4126: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(2263); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'i') ADVANCE(4095); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4127: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(4123); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'i') ADVANCE(4147); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4128: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(4092); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'i') ADVANCE(4140); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4129: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(4156); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'i') ADVANCE(4182); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4130: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(4087); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'k') ADVANCE(4234); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4131: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(4096); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'k') ADVANCE(4103); + if (lookahead == 't') ADVANCE(4096); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4132: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(4161); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'l') ADVANCE(4178); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4133: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(4162); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'l') ADVANCE(2219); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4134: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'f') ADVANCE(3146); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'l') ADVANCE(4181); + if (lookahead == 'r') ADVANCE(4169); + if (lookahead == 'x') ADVANCE(4159); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4135: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'k') ADVANCE(3529); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'l') ADVANCE(2214); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4136: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(2271); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'l') ADVANCE(4126); + if (lookahead == 's') ADVANCE(4234); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4137: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(4166); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'l') ADVANCE(4133); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4138: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(4136); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'l') ADVANCE(4135); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4139: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(3529); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'l') ADVANCE(4094); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4140: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(3108); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'l') ADVANCE(4103); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4141: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(4124); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'l') ADVANCE(4183); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4142: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4091); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'n') ADVANCE(4234); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4143: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4175); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'n') ADVANCE(4179); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4144: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4167); - if (lookahead == 's') ADVANCE(3529); - if (lookahead == 'u') ADVANCE(4138); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4194); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'n') ADVANCE(4098); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4145: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4167); - if (lookahead == 'u') ADVANCE(4138); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4194); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'n') ADVANCE(3059); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4146: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4086); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'n') ADVANCE(4202); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4147: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4154); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'n') ADVANCE(4196); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4148: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4095); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'o') ADVANCE(4066); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4149: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4177); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'o') ADVANCE(4198); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4150: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4178); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'o') ADVANCE(4158); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4151: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3529); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'o') ADVANCE(4195); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4152: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4176); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'o') ADVANCE(4187); + if (lookahead == 'u') ADVANCE(4137); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4223); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4153: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4042); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'o') ADVANCE(4162); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4154: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3270); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'o') ADVANCE(4071); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4155: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4058); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'o') ADVANCE(4164); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4156: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4157); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'o') ADVANCE(4166); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4157: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4094); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'o') ADVANCE(4201); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4158: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4060); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'p') ADVANCE(4234); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4159: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4089); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'p') ADVANCE(4156); + if (lookahead == 't') ADVANCE(4118); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4160: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4098); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(4194); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4161: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4159); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(4047); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4162: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4160); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(4234); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4163: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(3529); - if (lookahead == 'u') ADVANCE(4138); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4194); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(4199); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4164: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(3529); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(3211); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4165: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(3250); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(4112); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4166: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(4126); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(4186); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4167: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4204); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(4097); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4168: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4048); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(4052); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4169: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4093); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(4153); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4170: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4059); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(4142); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4171: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4061); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(4172); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4172: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4088); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(4069); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4173: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4097); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(4139); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4174: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(4138); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4194); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(4175); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4175: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(4169); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(4074); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4176: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(4125); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 's') ADVANCE(4234); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4177: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(4172); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 's') ADVANCE(3197); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4178: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(4173); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 's') ADVANCE(4102); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4179: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'y') ADVANCE(3529); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 's') ADVANCE(4184); + if (lookahead == 't') ADVANCE(4127); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4180: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2942); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 's') ADVANCE(4184); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4181: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2943); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 's') ADVANCE(4103); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4182: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2947); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 's') ADVANCE(4192); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4183: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2940); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 's') ADVANCE(4109); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4184: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2946); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 't') ADVANCE(4234); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4185: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 't') ADVANCE(4096); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4186: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2944); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 't') ADVANCE(4056); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4187: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2945); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 't') ADVANCE(4236); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4188: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4194); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 't') ADVANCE(4048); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4189: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 't') ADVANCE(4068); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4190: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2297); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 't') ADVANCE(4053); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4191: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2286); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 't') ADVANCE(4073); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4192: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4199); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 't') ADVANCE(4114); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4193: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4200); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'u') ADVANCE(4137); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4223); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4194: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2300); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'u') ADVANCE(4101); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4195: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4191); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'u') ADVANCE(4189); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4196: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4192); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'u') ADVANCE(4103); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4197: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4190); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'u') ADVANCE(4140); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4198: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4193); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'u') ADVANCE(4167); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4199: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4202); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'u') ADVANCE(4108); + if (lookahead == 'y') ADVANCE(4234); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4200: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4201); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'u') ADVANCE(4170); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4201: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2291); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'u') ADVANCE(4191); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4202: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2279); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'v') ADVANCE(4234); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4203: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3561); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'v') ADVANCE(4116); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4204: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3293); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'w') ADVANCE(4234); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4205: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3548); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'y') ADVANCE(4234); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4206: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4075); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '|') ADVANCE(2883); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4207: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4085); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '|') ADVANCE(2884); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4208: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4206); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '|') ADVANCE(2888); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4209: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '|') ADVANCE(2881); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4210: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4207); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '|') ADVANCE(2887); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4211: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4213); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '|') ADVANCE(2882); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4212: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3568); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '|') ADVANCE(2885); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4213: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3554); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '|') ADVANCE(2886); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4214: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3577); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4062); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(4254); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4214); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4215: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3561); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4223); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4216: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4084); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4225); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4217: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4216); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4218: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4218); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4222); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4219: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '$') ADVANCE(2989); - if (lookahead == '(') ADVANCE(3294); - if (lookahead == '.') ADVANCE(4222); - if (lookahead == '_') ADVANCE(4223); - if (lookahead == '\t' || - lookahead == ' ') SKIP(468); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4221); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 11, lookahead))) ADVANCE(4227); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4229); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4220: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '.') ADVANCE(4222); - if (lookahead == '_') ADVANCE(4223); - if (lookahead == '\t' || - lookahead == ' ') SKIP(542); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4221); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4227); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4230); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4221: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '.') ADVANCE(4224); - if (lookahead == '_') ADVANCE(4221); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4227); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4227); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4222: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(4222); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3460); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4227); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4228); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4223: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(4223); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4227); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4224: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(4224); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3461); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4227); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4217); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4225: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(4226); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4226); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4227); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4234); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4226: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(4226); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4227); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4218); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4227: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4227); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4219); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4228: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4342); - if (lookahead == '>') ADVANCE(3713); - if (lookahead == 'r') ADVANCE(4357); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4220); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4229: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4302); - if (lookahead == '>') ADVANCE(3718); - if (lookahead == 'u') ADVANCE(4387); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4231); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4230: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4345); - if (lookahead == '>') ADVANCE(3703); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4232); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4231: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4305); - if (lookahead == '>') ADVANCE(3708); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4232: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4348); - if (lookahead == '>') ADVANCE(3712); - if (lookahead == 'r') ADVANCE(4364); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4234); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4233: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4309); - if (lookahead == '>') ADVANCE(3717); - if (lookahead == 'u') ADVANCE(4389); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(4233); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4234: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4351); - if (lookahead == '>') ADVANCE(4408); - if (lookahead == 'r') ADVANCE(4369); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4234); END_STATE(); case 4235: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4311); - if (lookahead == '>') ADVANCE(4409); - if (lookahead == 'r') ADVANCE(3277); - if (lookahead == 'u') ADVANCE(4390); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4063); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4236: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4311); - if (lookahead == '>') ADVANCE(4409); - if (lookahead == 'u') ADVANCE(4390); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3231); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4237: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4352); - if (lookahead == '>') ADVANCE(3702); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4240); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4238: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4312); - if (lookahead == '>') ADVANCE(3707); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '@')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4238); END_STATE(); case 4239: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4353); - if (lookahead == '>') ADVANCE(4411); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(4239); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4240: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4313); - if (lookahead == '>') ADVANCE(4413); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4241: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(4449); - if (lookahead == '_') ADVANCE(4280); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4280); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4057); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4242: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(3028); - if (lookahead == '.') ADVANCE(4280); - if (lookahead == '_') ADVANCE(4249); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4426); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4280); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4076); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4243: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(4307); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4065); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4244: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(4450); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4061); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4245: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(3185); - if (lookahead == '_') ADVANCE(4272); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4269); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4214); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4246: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(4274); - if (lookahead == '_') ADVANCE(4246); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4274); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4063); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4247: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(4447); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4250); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4241); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4248: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(4280); - if (lookahead == '_') ADVANCE(4249); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4426); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4280); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4242); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4249: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(4280); - if (lookahead == '_') ADVANCE(4249); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4280); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4243); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4250: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '2') ADVANCE(4437); - if (lookahead == '0' || - lookahead == '1') ADVANCE(4448); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4244); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4251: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == ':') ADVANCE(4439); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4442); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4064); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4252: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == ':') ADVANCE(4452); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4251); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4253: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == ':') ADVANCE(4454); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4253); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4254: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(3738); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); case 4255: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(3733); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '$') ADVANCE(3401); + if (lookahead == '(') ADVANCE(3310); + if (lookahead == '[') ADVANCE(3546); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4256: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(3723); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '+') ADVANCE(4307); + if (lookahead == '>') ADVANCE(3646); + if (lookahead == 'r') ADVANCE(4310); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4257: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(3728); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '+') ADVANCE(4302); + if (lookahead == '>') ADVANCE(3650); + if (lookahead == 'u') ADVANCE(4314); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4258: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(3737); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '+') ADVANCE(4296); + if (lookahead == '-') ADVANCE(4298); + if (lookahead == '>') ADVANCE(3646); + if (lookahead == '_') ADVANCE(4298); + if (lookahead == 'r') ADVANCE(4310); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4259: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(3732); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '+') ADVANCE(4308); + if (lookahead == '>') ADVANCE(3638); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4260: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(3722); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '+') ADVANCE(4303); + if (lookahead == '>') ADVANCE(3642); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4261: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(3727); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '-') ADVANCE(4338); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4262: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(3172); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '.') ADVANCE(4272); + if (lookahead == ':') ADVANCE(4347); + if (lookahead == '_') ADVANCE(4262); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4279); END_STATE(); case 4263: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4410); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '.') ADVANCE(3122); + if (lookahead == '_') ADVANCE(4288); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3446); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4264: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4412); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '.') ADVANCE(3122); + if (lookahead == '_') ADVANCE(4293); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3394); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4265: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4414); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '.') ADVANCE(3315); + if (lookahead == '_') ADVANCE(4288); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3446); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4266: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4415); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '.') ADVANCE(4287); + if (lookahead == '_') ADVANCE(4267); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4327); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4267: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N') ADVANCE(4420); - if (lookahead == 'f') ADVANCE(4436); - if (lookahead == 'n') ADVANCE(4420); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '.') ADVANCE(4287); + if (lookahead == '_') ADVANCE(4267); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4268: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'T') ADVANCE(4451); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '.') ADVANCE(3121); + if (lookahead == '_') ADVANCE(4288); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3446); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4269: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4269); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4276); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4269); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '.') ADVANCE(4292); + if (lookahead == '_') ADVANCE(4270); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4327); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4270: - ACCEPT_TOKEN(aux_sym_unquoted_token4); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '.') ADVANCE(4292); if (lookahead == '_') ADVANCE(4270); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4271); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4271: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4271); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4273); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4271); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '2') ADVANCE(4333); + if (lookahead == '0' || + lookahead == '1') ADVANCE(4343); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4272: - ACCEPT_TOKEN(aux_sym_unquoted_token4); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == ':') ADVANCE(4347); if (lookahead == '_') ADVANCE(4272); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4269); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4279); END_STATE(); case 4273: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4274); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4274); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4274); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == ':') ADVANCE(4347); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2234); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4279); END_STATE(); case 4274: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4274); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4274); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == ':') ADVANCE(4347); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4277); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4279); END_STATE(); case 4275: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4280); - if (lookahead == 'b') ADVANCE(3520); - if (lookahead == 'o') ADVANCE(3536); - if (lookahead == 'x') ADVANCE(3542); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4278); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == ':') ADVANCE(4347); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4273); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4279); END_STATE(); case 4276: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4280); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4280); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4280); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == ':') ADVANCE(4347); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4274); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4279); END_STATE(); case 4277: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4280); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4241); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == ':') ADVANCE(4347); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4278); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4279); END_STATE(); case 4278: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4280); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4277); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == ':') ADVANCE(4347); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2232); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4279); END_STATE(); case 4279: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4280); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4278); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == ':') ADVANCE(4347); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4279); END_STATE(); case 4280: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4280); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4280); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == ':') ADVANCE(4344); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4281: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4326); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == ':') ADVANCE(4346); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4282: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4384); - if (lookahead == 'o') ADVANCE(4337); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '>') ADVANCE(3666); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4283: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4335); - if (lookahead == 'o') ADVANCE(4358); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '>') ADVANCE(3662); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4284: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4325); - if (lookahead == 'o') ADVANCE(4291); - if (lookahead == 'u') ADVANCE(4383); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '>') ADVANCE(3654); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4285: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4324); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '>') ADVANCE(3658); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4286: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4407); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '_') ADVANCE(4286); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4287: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4375); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '_') ADVANCE(4287); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3451); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4288: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'c') ADVANCE(4317); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '_') ADVANCE(4288); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3446); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4289: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'c') ADVANCE(4299); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '_') ADVANCE(4290); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4290); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4290: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(3269); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '_') ADVANCE(4290); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4291: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(4398); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '_') ADVANCE(4291); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4292: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(4299); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '_') ADVANCE(4292); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4293: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(2225); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '_') ADVANCE(4293); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3394); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4294: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(2270); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '_') ADVANCE(4295); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4295); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4295: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4436); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '_') ADVANCE(4295); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4296: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4314); - if (lookahead == 'o') ADVANCE(4436); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '_') ADVANCE(4298); + if (lookahead == 'o') ADVANCE(4282); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4297: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4406); - if (lookahead == 'u') ADVANCE(4332); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4427); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '_') ADVANCE(4298); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4298); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4298: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4316); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '_') ADVANCE(4298); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4299: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4243); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'a') ADVANCE(4305); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4300: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(2220); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'e') ADVANCE(2159); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4301: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(2265); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'e') ADVANCE(2204); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4302: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4255); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'e') ADVANCE(4283); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4303: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4385); - if (lookahead == 'i') ADVANCE(4379); - if (lookahead == 'o') ADVANCE(4344); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'e') ADVANCE(4311); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4304: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4285); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'l') ADVANCE(2212); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4305: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4367); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'l') ADVANCE(4313); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4306: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4358); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'l') ADVANCE(4304); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4307: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4340); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'o') ADVANCE(4282); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4308: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4370); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'o') ADVANCE(4318); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4309: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4259); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'r') ADVANCE(4317); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4310: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4366); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'r') ADVANCE(4259); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4311: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4264); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'r') ADVANCE(4312); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4312: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4373); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'r') ADVANCE(4285); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4313: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4374); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 's') ADVANCE(4301); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4314: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'f') ADVANCE(4436); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 't') ADVANCE(4260); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4315: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'f') ADVANCE(3153); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 't') ADVANCE(4284); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4316: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'g') ADVANCE(4323); - if (lookahead == 't') ADVANCE(4401); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'u') ADVANCE(4306); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4324); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4317: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(4436); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'u') ADVANCE(4300); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4318: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(4322); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'u') ADVANCE(4315); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4319: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4292); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4324); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4320: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4287); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2237); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4321: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4341); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2226); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4322: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4334); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4329); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4323: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4381); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4330); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4324: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'k') ADVANCE(4436); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2241); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4325: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'k') ADVANCE(4295); - if (lookahead == 't') ADVANCE(4288); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4321); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4326: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4377); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4322); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4327: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(2278); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4320); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4328: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4380); - if (lookahead == 'r') ADVANCE(4365); - if (lookahead == 'x') ADVANCE(4355); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4323); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4329: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(2273); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4332); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4330: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4320); - if (lookahead == 's') ADVANCE(4436); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4331); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4331: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4327); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2232); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4332: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4329); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2220); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4333: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4286); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3498); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4334: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4295); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3486); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4335: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4382); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4261); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4336: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4436); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4281); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4337: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4378); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4335); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4338: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4290); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4340); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4339: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(3119); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4336); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4340: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4404); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4341: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4397); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3491); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4342: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3514); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4343: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4399); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3498); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4344: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4354); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4341); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4345: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4396); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4280); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4346: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4386); - if (lookahead == 'u') ADVANCE(4331); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4425); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4345); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4347: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4358); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4347); END_STATE(); case 4348: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4258); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '+') ADVANCE(4408); + if (lookahead == '>') ADVANCE(3646); + if (lookahead == 'I') ADVANCE(4425); + if (lookahead == 'i') ADVANCE(4425); + if (lookahead == 'r') ADVANCE(4412); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4349: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4360); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '+') ADVANCE(4408); + if (lookahead == '>') ADVANCE(3646); + if (lookahead == 'r') ADVANCE(4412); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4350: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4362); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '+') ADVANCE(4401); + if (lookahead == '>') ADVANCE(3650); + if (lookahead == 'u') ADVANCE(4418); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4351: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4263); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + ADVANCE_MAP( + '+', 4388, + '-', 4390, + '>', 3646, + 'I', 4425, + '_', 4390, + 'i', 4425, + 'r', 4412, + 'B', 3462, + 'b', 3462, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4352: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4402); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '+') ADVANCE(4388); + if (lookahead == '-') ADVANCE(4390); + if (lookahead == '>') ADVANCE(3646); + if (lookahead == '_') ADVANCE(4390); + if (lookahead == 'r') ADVANCE(4412); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4353: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4403); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '+') ADVANCE(4409); + if (lookahead == '>') ADVANCE(3638); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4354: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'p') ADVANCE(4436); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '+') ADVANCE(4402); + if (lookahead == '>') ADVANCE(3642); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4355: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'p') ADVANCE(4350); - if (lookahead == 't') ADVANCE(4310); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '-') ADVANCE(4444); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4356: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4395); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(3122); + if (lookahead == '_') ADVANCE(4383); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3393); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4357: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4230); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(3122); + if (lookahead == '_') ADVANCE(4387); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4358: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4436); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(3315); + if (lookahead == '_') ADVANCE(4387); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4359: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4400); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(3315); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4360: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3273); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(4362); + if (lookahead == '_') ADVANCE(4383); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3393); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4361: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4304); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(4362); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4362: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4385); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(2961); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4363: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4289); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(4382); + if (lookahead == '_') ADVANCE(4364); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4433); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4364: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4237); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(4382); + if (lookahead == '_') ADVANCE(4364); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4365: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4347); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(3314); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4366: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4336); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(4386); + if (lookahead == '_') ADVANCE(4367); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4433); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4367: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4368); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(4386); + if (lookahead == '_') ADVANCE(4367); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4368: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4257); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '2') ADVANCE(4439); + if (lookahead == '0' || + lookahead == '1') ADVANCE(4449); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4369: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4239); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == ':') ADVANCE(4446); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4370: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4333); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == ':') ADVANCE(4452); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4371: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4261); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '>') ADVANCE(3666); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4372: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4266); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '>') ADVANCE(3662); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4373: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4371); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '>') ADVANCE(3654); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4374: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4372); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '>') ADVANCE(3658); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4375: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4436); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'I') ADVANCE(4425); + if (lookahead == '_') ADVANCE(4390); + if (lookahead == 'i') ADVANCE(4425); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4390); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4376: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(3259); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'I') ADVANCE(4425); + if (lookahead == '_') ADVANCE(4390); + if (lookahead == 'i') ADVANCE(4396); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4390); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4377: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4294); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'I') ADVANCE(4425); + if (lookahead == 'i') ADVANCE(4425); + if (lookahead == 'r') ADVANCE(4421); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4378: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4383); - if (lookahead == 't') ADVANCE(4321); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'I') ADVANCE(4425); + if (lookahead == 'i') ADVANCE(4425); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4379: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4383); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'I') ADVANCE(4425); + if (lookahead == 'i') ADVANCE(4396); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4380: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4295); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'I') ADVANCE(4425); + if (lookahead == 'i') ADVANCE(4407); + if (lookahead == 's') ADVANCE(3467); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4381: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4393); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '_') ADVANCE(4381); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4382: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4301); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '_') ADVANCE(4382); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4383: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4436); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '_') ADVANCE(4383); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3393); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4384: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4288); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '_') ADVANCE(4385); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4385); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4385: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4243); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '_') ADVANCE(4385); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4386: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4438); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '_') ADVANCE(4386); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3451); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4387: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4231); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '_') ADVANCE(4387); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4388: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4256); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '_') ADVANCE(4390); + if (lookahead == 'o') ADVANCE(4371); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4389: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4238); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '_') ADVANCE(4390); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4390); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4390: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4240); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '_') ADVANCE(4390); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4391: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4260); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '_') ADVANCE(4392); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4392); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4392: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4265); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '_') ADVANCE(4392); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4393: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4306); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '_') ADVANCE(4393); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4394: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4331); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4425); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'a') ADVANCE(4405); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4395: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4293); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'a') ADVANCE(4423); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4396: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4388); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4397: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4295); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'c') ADVANCE(3467); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4398: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4334); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'e') ADVANCE(2159); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4399: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4363); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'e') ADVANCE(2204); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4400: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4300); - if (lookahead == 'y') ADVANCE(4436); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'e') ADVANCE(4397); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4401: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4366); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'e') ADVANCE(4372); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4402: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4391); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'e') ADVANCE(4413); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4403: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4392); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'k') ADVANCE(3467); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4404: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'v') ADVANCE(4436); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'l') ADVANCE(2212); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4405: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'v') ADVANCE(4308); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'l') ADVANCE(4417); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4406: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'w') ADVANCE(4436); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'l') ADVANCE(4404); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4407: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'y') ADVANCE(4436); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'n') ADVANCE(3467); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4408: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2942); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'o') ADVANCE(4371); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4409: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2943); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'o') ADVANCE(4422); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4410: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2947); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'r') ADVANCE(3467); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4411: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2940); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'r') ADVANCE(4421); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4412: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2946); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'r') ADVANCE(4353); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4413: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'r') ADVANCE(4414); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4414: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2944); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'r') ADVANCE(4374); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4415: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2945); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 's') ADVANCE(3467); + if (lookahead == 'u') ADVANCE(4406); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4430); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4416: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4250); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4456); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4416); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 's') ADVANCE(3467); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4417: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4425); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 's') ADVANCE(4399); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4418: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4427); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 't') ADVANCE(4354); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4419: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4423); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 't') ADVANCE(4373); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4420: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4424); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'u') ADVANCE(4406); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4430); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4421: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4431); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'u') ADVANCE(4398); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4422: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4432); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'u') ADVANCE(4419); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4423: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4429); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'y') ADVANCE(3467); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4424: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4430); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4430); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4425: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4426: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4419); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2240); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4427: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4436); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2229); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4428: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4420); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4435); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4429: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4421); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4436); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4430: - ACCEPT_TOKEN(aux_sym_unquoted_token4); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4422); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + lookahead == 'n') ADVANCE(2241); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4431: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4433); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4427); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4432: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4434); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4428); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4433: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4426); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4434: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4436); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4429); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4435: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(4435); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4438); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4436: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4436); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4437); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4437: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4251); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2232); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4438: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3293); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2220); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4439: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4442); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3500); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4440: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4440); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3486); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4441: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4441); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4355); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4442: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4370); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4443: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4244); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4441); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4444: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4268); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4450); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4445: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4253); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4442); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4446: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4247); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4447); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4447: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4416); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3493); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4448: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4251); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3516); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4449: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4443); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3500); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4450: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4444); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3508); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4451: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4445); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4369); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4452: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4446); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4451); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4453: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4252); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4453); END_STATE(); case 4454: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4453); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '$') ADVANCE(2929); + if (lookahead == '(') ADVANCE(3232); + if (lookahead == '.') ADVANCE(4457); + if (lookahead == '_') ADVANCE(4458); + if (lookahead == '\t' || + lookahead == ' ') SKIP(408); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4456); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4462); END_STATE(); case 4455: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4455); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '$') ADVANCE(3125); + if (lookahead == '(') ADVANCE(3232); + if (lookahead == '.') ADVANCE(4457); + if (lookahead == ']') ADVANCE(2925); + if (lookahead == '_') ADVANCE(4458); + if (lookahead == '\t' || + lookahead == ' ') SKIP(406); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4456); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4462); END_STATE(); case 4456: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '.') ADVANCE(4459); + if (lookahead == '_') ADVANCE(4456); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4462); END_STATE(); case 4457: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '$') ADVANCE(3463); - if (lookahead == '(') ADVANCE(3372); - if (lookahead == '[') ADVANCE(3608); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '_') ADVANCE(4457); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3396); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4462); END_STATE(); case 4458: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(4509); - if (lookahead == '>') ADVANCE(3710); - if (lookahead == 'r') ADVANCE(4512); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '_') ADVANCE(4458); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4462); END_STATE(); case 4459: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(4504); - if (lookahead == '>') ADVANCE(3715); - if (lookahead == 'u') ADVANCE(4516); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '_') ADVANCE(4459); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4462); END_STATE(); case 4460: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(4498); - if (lookahead == '-') ADVANCE(4500); - if (lookahead == '>') ADVANCE(3710); - if (lookahead == '_') ADVANCE(4500); - if (lookahead == 'r') ADVANCE(4512); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '_') ADVANCE(4461); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4461); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4462); END_STATE(); case 4461: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(4510); - if (lookahead == '>') ADVANCE(3700); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '_') ADVANCE(4461); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4462); END_STATE(); case 4462: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(4505); - if (lookahead == '>') ADVANCE(3705); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4462); END_STATE(); case 4463: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '-') ADVANCE(4540); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '+') ADVANCE(4500); + if (lookahead == '>') ADVANCE(3649); + if (lookahead == 'r') ADVANCE(4503); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4464: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(4474); - if (lookahead == ':') ADVANCE(4549); - if (lookahead == '_') ADVANCE(4464); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4481); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '+') ADVANCE(4495); + if (lookahead == '>') ADVANCE(3653); + if (lookahead == 'u') ADVANCE(4507); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4465: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3184); - if (lookahead == '_') ADVANCE(4490); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3508); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '+') ADVANCE(4501); + if (lookahead == '>') ADVANCE(3641); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4466: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3184); - if (lookahead == '_') ADVANCE(4495); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3456); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '+') ADVANCE(4496); + if (lookahead == '>') ADVANCE(3645); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4467: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3377); - if (lookahead == '_') ADVANCE(4490); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3508); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '-') ADVANCE(4534); + if (lookahead == '_') ADVANCE(4486); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4486); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4468: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(4489); - if (lookahead == '_') ADVANCE(4469); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4529); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '-') ADVANCE(4535); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4469: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(4489); - if (lookahead == '_') ADVANCE(4469); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '.') ADVANCE(4486); + if (lookahead == '_') ADVANCE(4470); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4518); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4486); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4470: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3183); - if (lookahead == '_') ADVANCE(4490); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3508); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '.') ADVANCE(4486); + if (lookahead == '_') ADVANCE(4470); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4486); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4471: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(4494); - if (lookahead == '_') ADVANCE(4472); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4529); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '.') ADVANCE(3124); + if (lookahead == '_') ADVANCE(4491); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4490); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4472: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(4494); - if (lookahead == '_') ADVANCE(4472); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '.') ADVANCE(2963); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4473: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '2') ADVANCE(4535); - if (lookahead == '0' || - lookahead == '1') ADVANCE(4545); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '.') ADVANCE(4472); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4474: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4549); - if (lookahead == '_') ADVANCE(4474); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3461); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4481); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '.') ADVANCE(4532); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4475); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(4541); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4475: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4549); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2293); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4481); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '2') ADVANCE(4523); + if (lookahead == '0' || + lookahead == '1') ADVANCE(4533); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4476: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4549); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4479); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4481); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == ':') ADVANCE(4524); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4527); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4477: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4549); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4475); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4481); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == ':') ADVANCE(4537); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4478: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4549); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4476); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4481); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == ':') ADVANCE(4539); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4479: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4549); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4480); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4481); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '>') ADVANCE(3669); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4480: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4549); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2291); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4481); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '>') ADVANCE(3665); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4481: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4549); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4481); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '>') ADVANCE(3657); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4482: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4546); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '>') ADVANCE(3661); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4483: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4548); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'T') ADVANCE(4536); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4484: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(3735); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '_') ADVANCE(4486); + if (lookahead == 'b') ADVANCE(3461); + if (lookahead == 'o') ADVANCE(3477); + if (lookahead == 'x') ADVANCE(3483); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4488); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4485: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(3730); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '_') ADVANCE(4486); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4486); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4486); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4486: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(3720); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '_') ADVANCE(4486); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4486); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4487: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(3725); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '_') ADVANCE(4486); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4467); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4488: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4488); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '_') ADVANCE(4486); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4487); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4489: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4489); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3513); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '_') ADVANCE(4486); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4488); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4490: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == '_') ADVANCE(4490); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3508); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4485); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4490); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4491: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4492); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4492); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '_') ADVANCE(4491); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4490); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4492: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4492); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'a') ADVANCE(4497); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4493: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4493); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'e') ADVANCE(2165); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4494: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4494); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3461); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'e') ADVANCE(2210); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4495: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4495); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3456); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'e') ADVANCE(4480); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4496: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4497); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4497); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'e') ADVANCE(4504); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4497: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4497); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'l') ADVANCE(4506); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4498: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4500); - if (lookahead == 'o') ADVANCE(4484); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'l') ADVANCE(2218); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4499: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4500); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4500); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'l') ADVANCE(4498); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4500: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4500); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'o') ADVANCE(4479); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4501: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'a') ADVANCE(4507); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'o') ADVANCE(4511); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4502: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(2218); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'r') ADVANCE(4510); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4503: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(2263); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'r') ADVANCE(4465); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4504: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(4485); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'r') ADVANCE(4505); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4505: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(4513); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'r') ADVANCE(4482); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4506: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(2271); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 's') ADVANCE(4494); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4507: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(4515); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 't') ADVANCE(4466); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4508: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(4506); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 't') ADVANCE(4481); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4509: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'o') ADVANCE(4484); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'u') ADVANCE(4499); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4517); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4510: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'o') ADVANCE(4520); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'u') ADVANCE(4493); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4511: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(4519); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'u') ADVANCE(4508); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4512: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(4461); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4475); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(4541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4513: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(4514); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4517); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4514: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(4487); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4516); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4515: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 's') ADVANCE(4503); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4520); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4516: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 't') ADVANCE(4462); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4519); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4517: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 't') ADVANCE(4486); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4541); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4518: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(4508); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4526); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4514); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4519: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(4502); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4515); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4520: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(4517); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4521); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4521: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4526); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4541); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4522: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2296); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(4522); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4523: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2285); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4476); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4524: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4531); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4527); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4525: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4532); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '-' || + lookahead == '.' || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '@')) ADVANCE(4541); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4525); END_STATE(); case 4526: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2300); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(4526); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4527: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4523); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4541); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4528: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4524); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4468); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4529: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4522); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4483); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4530: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4525); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4478); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4531: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4534); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4474); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4532: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4533); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4533: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2291); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4476); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4534: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2279); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4528); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4535: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3560); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4529); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4536: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3548); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4530); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4537: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4463); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4531); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4538: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4483); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4477); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4539: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4537); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4538); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4540: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4542); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4540); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4541: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4538); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); case 4542: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3567); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '+') ADVANCE(4568); + if (lookahead == '>') ADVANCE(3646); + if (lookahead == 'r') ADVANCE(4571); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4543: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3553); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '+') ADVANCE(4563); + if (lookahead == '>') ADVANCE(3650); + if (lookahead == 'u') ADVANCE(4575); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4544: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3576); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '+') ADVANCE(4569); + if (lookahead == '>') ADVANCE(3638); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4545: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3560); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '+') ADVANCE(4564); + if (lookahead == '>') ADVANCE(3642); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4546: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4543); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '-') ADVANCE(4597); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4547: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4482); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '.') ADVANCE(3122); + if (lookahead == '_') ADVANCE(4557); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4548: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4547); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '.') ADVANCE(4556); + if (lookahead == '_') ADVANCE(4549); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4588); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4549: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4549); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '.') ADVANCE(4556); + if (lookahead == '_') ADVANCE(4549); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4550: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(4610); - if (lookahead == '>') ADVANCE(3710); - if (lookahead == 'I') ADVANCE(4627); - if (lookahead == 'i') ADVANCE(4627); - if (lookahead == 'r') ADVANCE(4614); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == ':') ADVANCE(915); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4551: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(4610); - if (lookahead == '>') ADVANCE(3710); - if (lookahead == 'r') ADVANCE(4614); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '>') ADVANCE(3666); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4552: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(4603); - if (lookahead == '>') ADVANCE(3715); - if (lookahead == 'u') ADVANCE(4620); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '>') ADVANCE(3662); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4553: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - ADVANCE_MAP( - '+', 4591, - '-', 4593, - '>', 3710, - 'I', 4627, - '_', 4593, - 'i', 4627, - 'r', 4614, - 'B', 3524, - 'b', 3524, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '>') ADVANCE(3654); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4554: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(4591); - if (lookahead == '-') ADVANCE(4593); - if (lookahead == '>') ADVANCE(3710); - if (lookahead == '_') ADVANCE(4593); - if (lookahead == 'r') ADVANCE(4614); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '>') ADVANCE(3658); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4555: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(4611); - if (lookahead == '>') ADVANCE(3700); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '_') ADVANCE(4555); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4556: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(4604); - if (lookahead == '>') ADVANCE(3705); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '_') ADVANCE(4556); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3451); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4557: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '-') ADVANCE(4646); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '_') ADVANCE(4557); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4558: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3184); - if (lookahead == '_') ADVANCE(4585); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3455); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '_') ADVANCE(4559); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4559); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4559: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3184); - if (lookahead == '_') ADVANCE(4590); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3512); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '_') ADVANCE(4559); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4560: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3377); - if (lookahead == '_') ADVANCE(4590); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3512); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'a') ADVANCE(4566); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4561: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3377); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'e') ADVANCE(2159); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4562: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(4564); - if (lookahead == '_') ADVANCE(4585); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3455); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'e') ADVANCE(2204); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4563: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(4564); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'e') ADVANCE(4552); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4564: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3021); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'e') ADVANCE(4572); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4565: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(4584); - if (lookahead == '_') ADVANCE(4566); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4635); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'l') ADVANCE(2212); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4566: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(4584); - if (lookahead == '_') ADVANCE(4566); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'l') ADVANCE(4574); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4567: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3376); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'l') ADVANCE(4565); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4568: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(4589); - if (lookahead == '_') ADVANCE(4569); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4635); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'o') ADVANCE(4551); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4569: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(4589); - if (lookahead == '_') ADVANCE(4569); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'o') ADVANCE(4579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4570: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '2') ADVANCE(4641); - if (lookahead == '0' || - lookahead == '1') ADVANCE(4651); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'r') ADVANCE(4578); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4571: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == ':') ADVANCE(4648); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'r') ADVANCE(4544); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4572: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == ':') ADVANCE(4654); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'r') ADVANCE(4573); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4573: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '>') ADVANCE(3735); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'r') ADVANCE(4554); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4574: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '>') ADVANCE(3730); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 's') ADVANCE(4562); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4575: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '>') ADVANCE(3720); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 't') ADVANCE(4545); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4576: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '>') ADVANCE(3725); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 't') ADVANCE(4553); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4577: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(4627); - if (lookahead == '_') ADVANCE(4593); - if (lookahead == 'i') ADVANCE(4627); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4593); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'u') ADVANCE(4567); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4585); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4578: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(4627); - if (lookahead == '_') ADVANCE(4593); - if (lookahead == 'i') ADVANCE(4598); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4593); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'u') ADVANCE(4561); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4579: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(4627); - if (lookahead == 'i') ADVANCE(4627); - if (lookahead == 'r') ADVANCE(4623); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'u') ADVANCE(4576); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4580: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(4627); - if (lookahead == 'i') ADVANCE(4627); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4585); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4581: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(4627); - if (lookahead == 'i') ADVANCE(4598); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2238); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4582: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(4627); - if (lookahead == 'i') ADVANCE(4609); - if (lookahead == 's') ADVANCE(3529); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2227); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4583: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4583); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4590); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4584: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4584); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3461); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4591); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4585: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4585); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3455); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2241); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4586: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4587); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4587); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4582); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4587: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4587); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4583); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4588: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4588); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4581); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4589: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4589); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3513); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4584); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4590: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4590); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3512); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4593); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4591: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4593); - if (lookahead == 'o') ADVANCE(4573); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4592); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4592: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4593); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4593); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2232); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4593: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4593); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2220); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4594: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4595); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4595); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4546); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4595: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4595); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4550); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4596: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'a') ADVANCE(4607); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4594); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4597: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'a') ADVANCE(4625); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4599); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4598: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4595); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4599: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'c') ADVANCE(3529); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3506); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4600: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(2218); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); END_STATE(); case 4601: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(2263); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '.') ADVANCE(4609); + if (lookahead == '_') ADVANCE(4601); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3441); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); case 4602: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(4599); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '.') ADVANCE(3315); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); case 4603: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(4574); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '.') ADVANCE(4610); + if (lookahead == '_') ADVANCE(4603); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); case 4604: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(4615); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'I') ADVANCE(4626); + if (lookahead == '_') ADVANCE(4616); + if (lookahead == 'i') ADVANCE(4626); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4616); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); case 4605: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'k') ADVANCE(3529); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'I') ADVANCE(4626); + if (lookahead == '_') ADVANCE(4616); + if (lookahead == 'i') ADVANCE(4618); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4616); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); case 4606: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'l') ADVANCE(2271); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'I') ADVANCE(4626); + if (lookahead == 'i') ADVANCE(4626); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); case 4607: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'l') ADVANCE(4619); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'I') ADVANCE(4626); + if (lookahead == 'i') ADVANCE(4618); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); case 4608: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'l') ADVANCE(4606); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'I') ADVANCE(4626); + if (lookahead == 'i') ADVANCE(4622); + if (lookahead == 's') ADVANCE(3467); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); case 4609: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'n') ADVANCE(3529); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(4609); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3451); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); case 4610: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'o') ADVANCE(4573); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(4610); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); case 4611: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'o') ADVANCE(4624); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(4611); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); case 4612: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(3529); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(4612); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3395); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); case 4613: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(4623); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(4614); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4614); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); case 4614: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(4555); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(4614); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); case 4615: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(4616); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(4616); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4616); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); case 4616: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(4576); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(4616); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); case 4617: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 's') ADVANCE(3529); - if (lookahead == 'u') ADVANCE(4608); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4632); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'a') ADVANCE(4625); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); case 4618: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 's') ADVANCE(3529); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); case 4619: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 's') ADVANCE(4601); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'c') ADVANCE(3467); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); case 4620: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 't') ADVANCE(4556); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'e') ADVANCE(4619); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); case 4621: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 't') ADVANCE(4575); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'k') ADVANCE(3467); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); case 4622: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'u') ADVANCE(4608); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4632); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'n') ADVANCE(3467); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); case 4623: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'u') ADVANCE(4600); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'r') ADVANCE(3467); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); case 4624: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'u') ADVANCE(4621); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 's') ADVANCE(3467); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); case 4625: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'y') ADVANCE(3529); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'y') ADVANCE(3467); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); case 4626: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4632); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3462); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); case 4627: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2236); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); case 4628: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2299); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4631); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); case 4629: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2288); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4627); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); case 4630: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4637); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); - END_STATE(); - case 4631: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4638); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); - END_STATE(); - case 4632: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2300); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); - END_STATE(); - case 4633: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4629); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); - END_STATE(); - case 4634: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4630); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); - END_STATE(); - case 4635: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4628); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); - END_STATE(); - case 4636: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4631); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); - END_STATE(); - case 4637: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4640); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); - END_STATE(); - case 4638: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4639); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); - END_STATE(); - case 4639: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2291); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); - END_STATE(); - case 4640: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2279); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); - END_STATE(); - case 4641: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3562); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); - END_STATE(); - case 4642: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3548); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); - END_STATE(); - case 4643: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); - END_STATE(); - case 4644: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4572); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); - END_STATE(); - case 4645: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4643); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); - END_STATE(); - case 4646: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4652); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); - END_STATE(); - case 4647: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4644); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); - END_STATE(); - case 4648: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4649); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); - END_STATE(); - case 4649: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3555); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); - END_STATE(); - case 4650: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3578); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); - END_STATE(); - case 4651: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3562); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); - END_STATE(); - case 4652: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3570); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); - END_STATE(); - case 4653: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4571); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); - END_STATE(); - case 4654: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4653); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); - END_STATE(); - case 4655: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4655); - END_STATE(); - case 4656: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '$') ADVANCE(2989); - if (lookahead == '(') ADVANCE(3294); - if (lookahead == '.') ADVANCE(4659); - if (lookahead == '_') ADVANCE(4660); - if (lookahead == '\t' || - lookahead == ' ') SKIP(468); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4658); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4664); - END_STATE(); - case 4657: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '$') ADVANCE(3187); - if (lookahead == '(') ADVANCE(3294); - if (lookahead == '.') ADVANCE(4659); - if (lookahead == ']') ADVANCE(2984); - if (lookahead == '_') ADVANCE(4660); - if (lookahead == '\t' || - lookahead == ' ') SKIP(466); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4658); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4664); - END_STATE(); - case 4658: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '.') ADVANCE(4661); - if (lookahead == '_') ADVANCE(4658); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4664); - END_STATE(); - case 4659: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(4659); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3458); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4664); - END_STATE(); - case 4660: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(4660); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4664); - END_STATE(); - case 4661: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(4661); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3461); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4664); - END_STATE(); - case 4662: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(4663); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4663); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4664); - END_STATE(); - case 4663: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(4663); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4664); - END_STATE(); - case 4664: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4664); - END_STATE(); - case 4665: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(4702); - if (lookahead == '>') ADVANCE(3714); - if (lookahead == 'r') ADVANCE(4705); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4666: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(4697); - if (lookahead == '>') ADVANCE(3719); - if (lookahead == 'u') ADVANCE(4709); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4667: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(4703); - if (lookahead == '>') ADVANCE(3704); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4668: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(4698); - if (lookahead == '>') ADVANCE(3709); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4669: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '-') ADVANCE(4736); - if (lookahead == '_') ADVANCE(4688); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4688); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4670: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '-') ADVANCE(4737); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4671: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(4688); - if (lookahead == '_') ADVANCE(4672); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4720); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4688); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4672: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(4688); - if (lookahead == '_') ADVANCE(4672); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4688); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4673: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(3186); - if (lookahead == '_') ADVANCE(4693); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4692); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4674: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(3023); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4675: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(4674); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4676: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(4734); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4677); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4743); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4677: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '2') ADVANCE(4725); - if (lookahead == '0' || - lookahead == '1') ADVANCE(4735); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4678: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == ':') ADVANCE(4726); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4729); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4679: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == ':') ADVANCE(4739); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4680: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == ':') ADVANCE(4741); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4681: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '>') ADVANCE(3739); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4682: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '>') ADVANCE(3734); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4683: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '>') ADVANCE(3724); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4684: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '>') ADVANCE(3729); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4685: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'T') ADVANCE(4738); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4686: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(4688); - if (lookahead == 'b') ADVANCE(3523); - if (lookahead == 'o') ADVANCE(3539); - if (lookahead == 'x') ADVANCE(3545); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4690); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4687: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(4688); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4688); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4688); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4688: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(4688); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4688); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4689: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(4688); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4669); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4690: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(4688); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4689); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4691: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(4688); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4690); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4692: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(4692); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4687); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4692); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4693: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(4693); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4692); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4694: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'a') ADVANCE(4699); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4695: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'e') ADVANCE(2224); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4696: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'e') ADVANCE(2269); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4697: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'e') ADVANCE(4682); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4698: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'e') ADVANCE(4706); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4699: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'l') ADVANCE(4708); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4700: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'l') ADVANCE(2277); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4701: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'l') ADVANCE(4700); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4702: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'o') ADVANCE(4681); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4703: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'o') ADVANCE(4713); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4704: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(4712); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4705: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(4667); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4706: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(4707); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4707: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(4684); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4708: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 's') ADVANCE(4696); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4709: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 't') ADVANCE(4668); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4710: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 't') ADVANCE(4683); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4711: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'u') ADVANCE(4701); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4719); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4712: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'u') ADVANCE(4695); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4713: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'u') ADVANCE(4710); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4714: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4677); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4743); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4714); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4715: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4719); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4716: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4718); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4717: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4722); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4718: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4721); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4719: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4743); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4720: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4716); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4721: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4717); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4722: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4723); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4723: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4743); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4724: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(4724); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4725: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4678); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4726: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4729); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4727: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '-' || - lookahead == '.' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@')) ADVANCE(4743); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4727); - END_STATE(); - case 4728: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4728); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4729: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4743); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4730: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4670); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4731: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4685); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4732: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4680); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4733: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4676); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4734: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4714); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4735: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4678); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4736: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4730); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4737: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4731); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4738: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4732); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4739: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4733); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4740: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4679); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4741: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4740); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4742: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4742); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4743: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); - END_STATE(); - case 4744: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(4770); - if (lookahead == '>') ADVANCE(3710); - if (lookahead == 'r') ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4745: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(4765); - if (lookahead == '>') ADVANCE(3715); - if (lookahead == 'u') ADVANCE(4777); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4746: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(4771); - if (lookahead == '>') ADVANCE(3700); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4747: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(4766); - if (lookahead == '>') ADVANCE(3705); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4748: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '-') ADVANCE(4799); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4749: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(3184); - if (lookahead == '_') ADVANCE(4759); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3511); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4750: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(4758); - if (lookahead == '_') ADVANCE(4751); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4790); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4751: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(4758); - if (lookahead == '_') ADVANCE(4751); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4752: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == ':') ADVANCE(976); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4753: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(3735); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4754: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(3730); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4755: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(3720); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4756: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(3725); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4757: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(4757); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4758: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(4758); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3513); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4759: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(4759); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3511); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4760: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(4761); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4761); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4761: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(4761); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3505); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4762: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'a') ADVANCE(4768); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4763: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(2218); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4764: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(2263); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4765: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(4754); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4766: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(4774); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4767: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(2271); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4768: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(4776); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4769: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(4767); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4770: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'o') ADVANCE(4753); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4771: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'o') ADVANCE(4781); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4772: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(4780); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4773: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(4746); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4774: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(4775); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4775: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(4756); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4776: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 's') ADVANCE(4764); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4777: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 't') ADVANCE(4747); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4778: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 't') ADVANCE(4755); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4779: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(4769); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4787); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4780: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(4763); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4781: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(4778); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4782: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4787); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4783: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2298); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4784: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2287); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4785: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4792); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4786: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4793); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4787: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2300); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4788: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4784); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4789: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4785); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4790: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4783); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4791: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4786); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4792: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4795); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4793: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4794); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4794: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2291); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4795: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2279); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4796: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4748); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4797: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4752); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4798: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4796); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4799: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4801); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4800: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4797); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4801: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3569); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4802: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4802); - END_STATE(); - case 4803: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(4811); - if (lookahead == '_') ADVANCE(4803); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3503); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); - END_STATE(); - case 4804: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(3377); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); - END_STATE(); - case 4805: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(4812); - if (lookahead == '_') ADVANCE(4805); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); - END_STATE(); - case 4806: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(4828); - if (lookahead == '_') ADVANCE(4818); - if (lookahead == 'i') ADVANCE(4828); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4818); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); - END_STATE(); - case 4807: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(4828); - if (lookahead == '_') ADVANCE(4818); - if (lookahead == 'i') ADVANCE(4820); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4818); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); - END_STATE(); - case 4808: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(4828); - if (lookahead == 'i') ADVANCE(4828); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); - END_STATE(); - case 4809: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(4828); - if (lookahead == 'i') ADVANCE(4820); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); - END_STATE(); - case 4810: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(4828); - if (lookahead == 'i') ADVANCE(4824); - if (lookahead == 's') ADVANCE(3529); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); - END_STATE(); - case 4811: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(4811); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3513); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); - END_STATE(); - case 4812: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(4812); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3461); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); - END_STATE(); - case 4813: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(4813); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); - END_STATE(); - case 4814: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(4814); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3457); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); - END_STATE(); - case 4815: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(4816); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4816); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); - END_STATE(); - case 4816: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(4816); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); - END_STATE(); - case 4817: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(4818); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4818); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); - END_STATE(); - case 4818: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(4818); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); - END_STATE(); - case 4819: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'a') ADVANCE(4827); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); - END_STATE(); - case 4820: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); - END_STATE(); - case 4821: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'c') ADVANCE(3529); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); - END_STATE(); - case 4822: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'e') ADVANCE(4821); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); - END_STATE(); - case 4823: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'k') ADVANCE(3529); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); - END_STATE(); - case 4824: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'n') ADVANCE(3529); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); - END_STATE(); - case 4825: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'r') ADVANCE(3529); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); - END_STATE(); - case 4826: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 's') ADVANCE(3529); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); - END_STATE(); - case 4827: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'y') ADVANCE(3529); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); - END_STATE(); - case 4828: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3524); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); - END_STATE(); - case 4829: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2295); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); - END_STATE(); - case 4830: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4833); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); - END_STATE(); - case 4831: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4829); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); - END_STATE(); - case 4832: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4830); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + lookahead == 'n') ADVANCE(4628); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); - case 4833: + case 4631: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); if (lookahead == 'T' || - lookahead == 't') ADVANCE(4834); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + lookahead == 't') ADVANCE(4632); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); - case 4834: + case 4632: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2291); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + lookahead == 'y') ADVANCE(2232); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); - case 4835: + case 4633: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4835); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); - case 4836: + case 4634: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '#') ADVANCE(5024); - if (lookahead == '$') ADVANCE(2989); - if (lookahead == '(') ADVANCE(3294); - if (lookahead == '.') ADVANCE(4838); - if (lookahead == '_') ADVANCE(4839); + if (lookahead == '#') ADVANCE(4822); + if (lookahead == '$') ADVANCE(2929); + if (lookahead == '(') ADVANCE(3232); + if (lookahead == '.') ADVANCE(4636); + if (lookahead == '_') ADVANCE(4637); if (lookahead == '\t' || - lookahead == ' ') SKIP(468); + lookahead == ' ') SKIP(408); if (lookahead == '+' || - lookahead == '-') ADVANCE(4837); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4843); + lookahead == '-') ADVANCE(4635); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4641); END_STATE(); - case 4837: + case 4635: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '.') ADVANCE(4840); - if (lookahead == '_') ADVANCE(4837); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4843); + if (lookahead == '.') ADVANCE(4638); + if (lookahead == '_') ADVANCE(4635); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4641); END_STATE(); - case 4838: + case 4636: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(4838); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3459); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4843); + if (lookahead == '_') ADVANCE(4636); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3398); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4641); END_STATE(); - case 4839: + case 4637: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(4839); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3432); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4843); + if (lookahead == '_') ADVANCE(4637); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4641); END_STATE(); - case 4840: + case 4638: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(4840); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3461); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4843); + if (lookahead == '_') ADVANCE(4638); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4641); END_STATE(); - case 4841: + case 4639: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(4842); + if (lookahead == '_') ADVANCE(4640); if (lookahead == '+' || - lookahead == '-') ADVANCE(4842); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4843); + lookahead == '-') ADVANCE(4640); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4641); END_STATE(); - case 4842: + case 4640: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(4842); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4843); + if (lookahead == '_') ADVANCE(4640); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4641); END_STATE(); - case 4843: + case 4641: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4843); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4641); END_STATE(); - case 4844: + case 4642: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '$') ADVANCE(3464); - if (lookahead == '(') ADVANCE(3372); - if (lookahead == '{') ADVANCE(3609); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == '$') ADVANCE(3402); + if (lookahead == '(') ADVANCE(3310); + if (lookahead == '{') ADVANCE(3547); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4814); END_STATE(); - case 4845: + case 4643: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2146); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4845); + if (lookahead == ',') ADVANCE(2087); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4643); END_STATE(); - case 4846: + case 4644: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2092); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4846); + if (lookahead == ',') ADVANCE(2033); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4644); END_STATE(); - case 4847: + case 4645: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2098); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4847); + if (lookahead == ',') ADVANCE(2039); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4645); END_STATE(); - case 4848: + case 4646: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2179); + if (lookahead == ',') ADVANCE(2120); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4850); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4853); + lookahead == 'i') ADVANCE(4648); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4651); END_STATE(); - case 4849: + case 4647: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2179); + if (lookahead == ',') ADVANCE(2120); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4851); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4853); + lookahead == 'i') ADVANCE(4649); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4651); END_STATE(); - case 4850: + case 4648: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2179); + if (lookahead == ',') ADVANCE(2120); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4849); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4853); + lookahead == 'n') ADVANCE(4647); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4651); END_STATE(); - case 4851: + case 4649: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2179); + if (lookahead == ',') ADVANCE(2120); if (lookahead == 'T' || - lookahead == 't') ADVANCE(4852); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4853); + lookahead == 't') ADVANCE(4650); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4651); END_STATE(); - case 4852: + case 4650: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2179); + if (lookahead == ',') ADVANCE(2120); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4853); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4853); + lookahead == 'y') ADVANCE(4651); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4651); END_STATE(); - case 4853: + case 4651: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2179); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4853); + if (lookahead == ',') ADVANCE(2120); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4651); END_STATE(); - case 4854: + case 4652: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1951); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4854); + if (lookahead == ',') ADVANCE(1892); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4652); END_STATE(); - case 4855: + case 4653: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2068); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4855); + if (lookahead == ',') ADVANCE(2009); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4653); END_STATE(); - case 4856: + case 4654: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1998); - if (lookahead == 'e') ADVANCE(4857); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4859); + if (lookahead == ',') ADVANCE(1939); + if (lookahead == 'e') ADVANCE(4655); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4657); END_STATE(); - case 4857: + case 4655: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1998); - if (lookahead == 'n') ADVANCE(4858); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4859); + if (lookahead == ',') ADVANCE(1939); + if (lookahead == 'n') ADVANCE(4656); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4657); END_STATE(); - case 4858: + case 4656: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1998); - if (lookahead == 'v') ADVANCE(1153); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4859); + if (lookahead == ',') ADVANCE(1939); + if (lookahead == 'v') ADVANCE(1094); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4657); END_STATE(); - case 4859: + case 4657: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1998); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4859); + if (lookahead == ',') ADVANCE(1939); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4657); END_STATE(); - case 4860: + case 4658: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2004); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4860); + if (lookahead == ',') ADVANCE(1945); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4658); END_STATE(); - case 4861: + case 4659: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2191); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4861); + if (lookahead == ',') ADVANCE(2132); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4659); END_STATE(); - case 4862: + case 4660: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2110); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4862); + if (lookahead == ',') ADVANCE(2051); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4660); END_STATE(); - case 4863: + case 4661: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1963); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4863); + if (lookahead == ',') ADVANCE(1904); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4661); END_STATE(); - case 4864: + case 4662: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2104); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4864); + if (lookahead == ',') ADVANCE(2045); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4662); END_STATE(); - case 4865: + case 4663: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2030); - if (lookahead == 'e') ADVANCE(4866); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4868); + if (lookahead == ',') ADVANCE(1971); + if (lookahead == 'e') ADVANCE(4664); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4666); END_STATE(); - case 4866: + case 4664: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2030); - if (lookahead == 'n') ADVANCE(4867); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4868); + if (lookahead == ',') ADVANCE(1971); + if (lookahead == 'n') ADVANCE(4665); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4666); END_STATE(); - case 4867: + case 4665: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2030); - if (lookahead == 'v') ADVANCE(3234); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4868); + if (lookahead == ',') ADVANCE(1971); + if (lookahead == 'v') ADVANCE(3172); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4666); END_STATE(); - case 4868: + case 4666: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2030); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4868); + if (lookahead == ',') ADVANCE(1971); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4666); END_STATE(); - case 4869: + case 4667: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2185); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4869); + if (lookahead == ',') ADVANCE(2126); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4667); END_STATE(); - case 4870: + case 4668: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2074); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4870); + if (lookahead == ',') ADVANCE(2015); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4668); END_STATE(); - case 4871: + case 4669: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2197); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4871); + if (lookahead == ',') ADVANCE(2138); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4669); END_STATE(); - case 4872: + case 4670: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1957); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4872); + if (lookahead == ',') ADVANCE(1898); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4670); END_STATE(); - case 4873: + case 4671: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2128); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4873); + if (lookahead == ',') ADVANCE(2069); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4671); END_STATE(); - case 4874: + case 4672: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2116); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4874); + if (lookahead == ',') ADVANCE(2057); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4672); END_STATE(); - case 4875: + case 4673: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2010); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4875); + if (lookahead == ',') ADVANCE(1951); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4673); END_STATE(); - case 4876: + case 4674: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2086); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4876); + if (lookahead == ',') ADVANCE(2027); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4674); END_STATE(); - case 4877: + case 4675: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2122); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4877); + if (lookahead == ',') ADVANCE(2063); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4675); END_STATE(); - case 4878: + case 4676: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2080); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4878); + if (lookahead == ',') ADVANCE(2021); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4676); END_STATE(); - case 4879: + case 4677: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2217); - if (lookahead == 'e') ADVANCE(4880); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4882); + if (lookahead == ',') ADVANCE(2158); + if (lookahead == 'e') ADVANCE(4678); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4680); END_STATE(); - case 4880: + case 4678: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2217); - if (lookahead == 'n') ADVANCE(4881); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4882); + if (lookahead == ',') ADVANCE(2158); + if (lookahead == 'n') ADVANCE(4679); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4680); END_STATE(); - case 4881: + case 4679: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2217); - if (lookahead == 'v') ADVANCE(2956); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4882); + if (lookahead == ',') ADVANCE(2158); + if (lookahead == 'v') ADVANCE(2897); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4680); END_STATE(); - case 4882: + case 4680: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2217); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4882); + if (lookahead == ',') ADVANCE(2158); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4680); END_STATE(); - case 4883: + case 4681: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1972); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4883); + if (lookahead == ',') ADVANCE(1913); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4681); END_STATE(); - case 4884: + case 4682: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1978); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4884); + if (lookahead == ',') ADVANCE(1919); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4682); END_STATE(); - case 4885: + case 4683: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2140); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4885); + if (lookahead == ',') ADVANCE(2081); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4683); END_STATE(); - case 4886: + case 4684: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2050); - if (lookahead == 'e') ADVANCE(4887); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4889); + if (lookahead == ',') ADVANCE(1991); + if (lookahead == 'e') ADVANCE(4685); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4687); END_STATE(); - case 4887: + case 4685: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2050); - if (lookahead == 'n') ADVANCE(4888); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4889); + if (lookahead == ',') ADVANCE(1991); + if (lookahead == 'n') ADVANCE(4686); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4687); END_STATE(); - case 4888: + case 4686: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2050); - if (lookahead == 'v') ADVANCE(3217); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4889); + if (lookahead == ',') ADVANCE(1991); + if (lookahead == 'v') ADVANCE(3155); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4687); END_STATE(); - case 4889: + case 4687: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2050); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4889); + if (lookahead == ',') ADVANCE(1991); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4687); END_STATE(); - case 4890: + case 4688: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2056); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4890); + if (lookahead == ',') ADVANCE(1997); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4688); END_STATE(); - case 4891: + case 4689: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2134); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4891); + if (lookahead == ',') ADVANCE(2075); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4689); END_STATE(); - case 4892: + case 4690: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2062); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4892); + if (lookahead == ',') ADVANCE(2003); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4690); END_STATE(); - case 4893: + case 4691: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1966); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4893); + if (lookahead == ',') ADVANCE(1907); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4691); END_STATE(); - case 4894: + case 4692: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(4901); - if (lookahead == '_') ADVANCE(4894); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4901); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == '.') ADVANCE(4699); + if (lookahead == '_') ADVANCE(4692); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4699); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4895: + case 4693: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(4902); - if (lookahead == '_') ADVANCE(4895); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4902); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5017); + if (lookahead == '.') ADVANCE(4700); + if (lookahead == '_') ADVANCE(4693); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4700); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4815); END_STATE(); - case 4896: + case 4694: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(4897); - if (lookahead == '_') ADVANCE(4904); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4903); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == '.') ADVANCE(4695); + if (lookahead == '_') ADVANCE(4702); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4701); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4897: + case 4695: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(4844); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == '.') ADVANCE(4642); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4898: + case 4696: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'N') ADVANCE(4998); - if (lookahead == 'f') ADVANCE(3148); - if (lookahead == 'n') ADVANCE(3112); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'N') ADVANCE(4796); + if (lookahead == 'f') ADVANCE(3088); + if (lookahead == 'n') ADVANCE(3052); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4899: + case 4697: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(4901); - if (lookahead == 'b') ADVANCE(5013); - if (lookahead == 'o') ADVANCE(5014); - if (lookahead == 'x') ADVANCE(5015); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4901); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); - END_STATE(); - case 4900: + if (lookahead == '_') ADVANCE(4699); + if (lookahead == 'b') ADVANCE(4811); + if (lookahead == 'o') ADVANCE(4812); + if (lookahead == 'x') ADVANCE(4813); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4699); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); + END_STATE(); + case 4698: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(4901); + if (lookahead == '_') ADVANCE(4699); if (lookahead == '+' || - lookahead == '-') ADVANCE(4901); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4901); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + lookahead == '-') ADVANCE(4699); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4699); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4901: + case 4699: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(4901); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4901); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == '_') ADVANCE(4699); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4699); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4902: + case 4700: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(4902); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4902); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5017); + if (lookahead == '_') ADVANCE(4700); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4700); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4815); END_STATE(); - case 4903: + case 4701: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(4903); + if (lookahead == '_') ADVANCE(4701); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4900); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4903); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + lookahead == 'e') ADVANCE(4698); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4701); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4904: + case 4702: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(4904); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4903); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == '_') ADVANCE(4702); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4701); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4905: + case 4703: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(4982); - if (lookahead == 'o') ADVANCE(4954); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'a') ADVANCE(4780); + if (lookahead == 'o') ADVANCE(4752); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4906: + case 4704: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(4953); - if (lookahead == 'o') ADVANCE(4965); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'a') ADVANCE(4751); + if (lookahead == 'o') ADVANCE(4763); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4907: + case 4705: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(4945); - if (lookahead == 'o') ADVANCE(4914); - if (lookahead == 'u') ADVANCE(4984); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'a') ADVANCE(4743); + if (lookahead == 'o') ADVANCE(4712); + if (lookahead == 'u') ADVANCE(4782); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4908: + case 4706: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(4944); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'a') ADVANCE(4742); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4909: + case 4707: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(4996); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'a') ADVANCE(4794); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4910: + case 4708: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(4975); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'a') ADVANCE(4773); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4911: + case 4709: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'c') ADVANCE(4936); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'c') ADVANCE(4734); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4912: + case 4710: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'c') ADVANCE(4937); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'c') ADVANCE(4735); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4913: + case 4711: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'c') ADVANCE(4927); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'c') ADVANCE(4725); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4914: + case 4712: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'd') ADVANCE(4993); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'd') ADVANCE(4791); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4915: + case 4713: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'd') ADVANCE(4921); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'd') ADVANCE(4719); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4916: + case 4714: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(4934); - if (lookahead == 'o') ADVANCE(3141); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'e') ADVANCE(4732); + if (lookahead == 'o') ADVANCE(3081); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4917: + case 4715: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(4995); - if (lookahead == 'u') ADVANCE(4948); + if (lookahead == 'e') ADVANCE(4793); + if (lookahead == 'u') ADVANCE(4746); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5004); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + lookahead == 'a') ADVANCE(4802); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4918: + case 4716: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(4935); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'e') ADVANCE(4733); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4919: + case 4717: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(2975); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'e') ADVANCE(2916); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4920: + case 4718: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3156); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'e') ADVANCE(3096); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4921: + case 4719: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3230); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'e') ADVANCE(3168); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4922: + case 4720: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3128); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'e') ADVANCE(3068); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4923: + case 4721: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(2219); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'e') ADVANCE(2160); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4924: + case 4722: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(2264); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'e') ADVANCE(2205); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4925: + case 4723: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3134); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'e') ADVANCE(3074); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4926: + case 4724: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(2968); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'e') ADVANCE(2909); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4927: + case 4725: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3213); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'e') ADVANCE(3151); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4928: + case 4726: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3097); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'e') ADVANCE(3037); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4929: + case 4727: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(4983); - if (lookahead == 'i') ADVANCE(4977); - if (lookahead == 'o') ADVANCE(4959); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'e') ADVANCE(4781); + if (lookahead == 'i') ADVANCE(4775); + if (lookahead == 'o') ADVANCE(4757); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4930: + case 4728: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(4908); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'e') ADVANCE(4706); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4931: + case 4729: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(4973); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'e') ADVANCE(4771); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4932: + case 4730: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(4971); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'e') ADVANCE(4769); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4933: + case 4731: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(4967); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'e') ADVANCE(4765); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4934: + case 4732: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'f') ADVANCE(2950); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'f') ADVANCE(2891); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4935: + case 4733: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'g') ADVANCE(4943); - if (lookahead == 't') ADVANCE(4991); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'g') ADVANCE(4741); + if (lookahead == 't') ADVANCE(4789); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4936: + case 4734: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'h') ADVANCE(3198); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'h') ADVANCE(3136); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4937: + case 4735: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'h') ADVANCE(3164); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'h') ADVANCE(3104); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4938: + case 4736: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'h') ADVANCE(4942); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'h') ADVANCE(4740); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4939: + case 4737: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(4915); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'i') ADVANCE(4713); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4940: + case 4738: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(4910); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'i') ADVANCE(4708); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4941: + case 4739: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(4957); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'i') ADVANCE(4755); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4942: + case 4740: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(4950); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'i') ADVANCE(4748); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4943: + case 4741: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(4980); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'i') ADVANCE(4778); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4944: + case 4742: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'k') ADVANCE(3091); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'k') ADVANCE(3031); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4945: + case 4743: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'k') ADVANCE(4922); - if (lookahead == 't') ADVANCE(4912); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'k') ADVANCE(4720); + if (lookahead == 't') ADVANCE(4710); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4946: + case 4744: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(2272); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'l') ADVANCE(2213); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4947: + case 4745: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(4940); - if (lookahead == 's') ADVANCE(3252); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'l') ADVANCE(4738); + if (lookahead == 's') ADVANCE(3190); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4948: + case 4746: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(4946); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'l') ADVANCE(4744); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4949: + case 4747: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(4909); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'l') ADVANCE(4707); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4950: + case 4748: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(4925); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'l') ADVANCE(4723); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4951: + case 4749: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(4926); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'l') ADVANCE(4724); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4952: + case 4750: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(4978); - if (lookahead == 'r') ADVANCE(4970); - if (lookahead == 'x') ADVANCE(4963); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'l') ADVANCE(4776); + if (lookahead == 'r') ADVANCE(4768); + if (lookahead == 'x') ADVANCE(4761); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4953: + case 4751: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(4981); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'l') ADVANCE(4779); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4954: + case 4752: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'n') ADVANCE(4979); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'n') ADVANCE(4777); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4955: + case 4753: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'n') ADVANCE(2961); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'n') ADVANCE(2902); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4956: + case 4754: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'n') ADVANCE(3205); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'n') ADVANCE(3143); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4957: + case 4755: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'n') ADVANCE(4992); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'n') ADVANCE(4790); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4958: + case 4756: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'o') ADVANCE(4989); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'o') ADVANCE(4787); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4959: + case 4757: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'o') ADVANCE(4962); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'o') ADVANCE(4760); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4960: + case 4758: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'o') ADVANCE(4966); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'o') ADVANCE(4764); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4961: + case 4759: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'o') ADVANCE(4974); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'o') ADVANCE(4772); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4962: + case 4760: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'p') ADVANCE(3121); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'p') ADVANCE(3061); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4963: + case 4761: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'p') ADVANCE(4961); - if (lookahead == 't') ADVANCE(4932); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'p') ADVANCE(4759); + if (lookahead == 't') ADVANCE(4730); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4964: + case 4762: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4990); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'r') ADVANCE(4788); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4965: + case 4763: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(3103); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'r') ADVANCE(3043); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4966: + case 4764: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(2998); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'r') ADVANCE(2938); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4967: + case 4765: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(3221); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'r') ADVANCE(3159); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4968: + case 4766: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4930); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'r') ADVANCE(4728); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4969: + case 4767: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4913); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'r') ADVANCE(4711); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4970: + case 4768: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4960); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'r') ADVANCE(4758); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4971: + case 4769: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4955); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'r') ADVANCE(4753); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4972: + case 4770: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4956); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'r') ADVANCE(4754); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4973: + case 4771: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4949); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'r') ADVANCE(4747); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4974: + case 4772: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4987); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'r') ADVANCE(4785); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4975: + case 4773: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(1137); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 's') ADVANCE(1077); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4976: + case 4774: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(4919); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 's') ADVANCE(4717); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4977: + case 4775: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(4985); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 's') ADVANCE(4783); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4978: + case 4776: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(4920); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 's') ADVANCE(4718); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4979: + case 4777: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(4986); - if (lookahead == 't') ADVANCE(4941); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 's') ADVANCE(4784); + if (lookahead == 't') ADVANCE(4739); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4980: + case 4778: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(4988); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 's') ADVANCE(4786); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4981: + case 4779: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(4924); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 's') ADVANCE(4722); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4982: + case 4780: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(4911); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 't') ADVANCE(4709); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4983: + case 4781: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(1149); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 't') ADVANCE(1090); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4984: + case 4782: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(1157); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 't') ADVANCE(1098); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4985: + case 4783: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(3010); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 't') ADVANCE(2950); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4986: + case 4784: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(1164); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 't') ADVANCE(1105); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4987: + case 4785: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(1132); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 't') ADVANCE(1072); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4988: + case 4786: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(4933); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 't') ADVANCE(4731); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4989: + case 4787: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(4969); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'u') ADVANCE(4767); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4990: + case 4788: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(4923); - if (lookahead == 'y') ADVANCE(3191); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'u') ADVANCE(4721); + if (lookahead == 'y') ADVANCE(3129); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4991: + case 4789: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(4972); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'u') ADVANCE(4770); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4992: + case 4790: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(4928); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'u') ADVANCE(4726); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4993: + case 4791: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(4951); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'u') ADVANCE(4749); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4994: + case 4792: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'v') ADVANCE(4931); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'v') ADVANCE(4729); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4995: + case 4793: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'w') ADVANCE(3245); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'w') ADVANCE(3183); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4996: + case 4794: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'y') ADVANCE(3238); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (lookahead == 'y') ADVANCE(3176); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4997: + case 4795: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5004); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + lookahead == 'a') ADVANCE(4802); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4998: + case 4796: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(5003); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + lookahead == 'f') ADVANCE(4801); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 4999: + case 4797: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(5002); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5017); + lookahead == 'f') ADVANCE(4800); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4815); END_STATE(); - case 5000: + case 4798: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5009); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + lookahead == 'i') ADVANCE(4807); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 5001: + case 4799: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5010); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5017); + lookahead == 'i') ADVANCE(4808); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4815); END_STATE(); - case 5002: + case 4800: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5008); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5017); + lookahead == 'i') ADVANCE(4806); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4815); END_STATE(); - case 5003: + case 4801: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5007); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + lookahead == 'i') ADVANCE(4805); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 5004: + case 4802: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5016); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + lookahead == 'n') ADVANCE(4814); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 5005: + case 4803: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4998); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + lookahead == 'n') ADVANCE(4796); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 5006: + case 4804: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4999); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5017); + lookahead == 'n') ADVANCE(4797); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4815); END_STATE(); - case 5007: + case 4805: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5000); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + lookahead == 'n') ADVANCE(4798); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 5008: + case 4806: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5001); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5017); + lookahead == 'n') ADVANCE(4799); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4815); END_STATE(); - case 5009: + case 4807: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'T' || - lookahead == 't') ADVANCE(5012); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + lookahead == 't') ADVANCE(4810); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 5010: + case 4808: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'T' || - lookahead == 't') ADVANCE(5011); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5017); + lookahead == 't') ADVANCE(4809); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4815); END_STATE(); - case 5011: + case 4809: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5017); + lookahead == 'y') ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4815); END_STATE(); - case 5012: + case 4810: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(5016); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + lookahead == 'y') ADVANCE(4814); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 5013: + case 4811: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(5013); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + lookahead == '_') ADVANCE(4811); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 5014: + case 4812: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(5014); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + lookahead == '_') ADVANCE(4812); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 5015: + case 4813: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(5015); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4813); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 5016: + case 4814: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5017); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5016); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4814); END_STATE(); - case 5017: + case 4815: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4815); END_STATE(); - case 5018: + case 4816: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); - if (lookahead == '#') ADVANCE(5035); + if (lookahead == '#') ADVANCE(4833); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(5019); + lookahead != '|') ADVANCE(4817); END_STATE(); - case 5019: + case 4817: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -61040,20 +57783,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(5019); + lookahead != '|') ADVANCE(4817); END_STATE(); - case 5020: + case 4818: ACCEPT_TOKEN(aux_sym__unquoted_in_list_with_expr_token1); - if (lookahead == '#') ADVANCE(5033); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(5021); + if (lookahead == '#') ADVANCE(4831); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(4819); END_STATE(); - case 5021: + case 4819: ACCEPT_TOKEN(aux_sym__unquoted_in_list_with_expr_token1); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(5021); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(4819); END_STATE(); - case 5022: + case 4820: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); - if (lookahead == '#') ADVANCE(5032); + if (lookahead == '#') ADVANCE(4830); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -61062,9 +57805,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5023); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4821); END_STATE(); - case 5023: + case 4821: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -61074,42 +57817,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5023); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4821); END_STATE(); - case 5024: + case 4822: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 5025: + case 4823: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '\n') ADVANCE(1126); - if (lookahead == '\r') ADVANCE(1128); - if (lookahead != 0) ADVANCE(1128); + if (lookahead == '\n') ADVANCE(1066); + if (lookahead == '\r') ADVANCE(1068); + if (lookahead != 0) ADVANCE(1068); END_STATE(); - case 5026: + case 4824: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(1125); + if (lookahead == '!') ADVANCE(1065); END_STATE(); - case 5027: + case 4825: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2262); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2203); END_STATE(); - case 5028: + case 4826: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5017); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4815); END_STATE(); - case 5029: + case 4827: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3626); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3564); END_STATE(); - case 5030: + case 4828: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4743); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4541); END_STATE(); - case 5031: + case 4829: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4456); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4254); END_STATE(); - case 5032: + case 4830: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -61119,13 +57862,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5023); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4821); END_STATE(); - case 5033: + case 4831: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(5021); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(4819); END_STATE(); - case 5034: + case 4832: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -61133,9 +57876,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3838); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3768); END_STATE(); - case 5035: + case 4833: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -61143,26 +57886,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(5019); + lookahead != '|') ADVANCE(4817); END_STATE(); - case 5036: + case 4834: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && - lookahead != '\n') ADVANCE(5038); + lookahead != '\n') ADVANCE(4836); END_STATE(); - case 5037: + case 4835: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '#') ADVANCE(5036); + if (lookahead == '#') ADVANCE(4834); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(5037); + lookahead == ' ') ADVANCE(4835); if (lookahead != 0 && lookahead != '\t' && - lookahead != '\n') ADVANCE(5038); + lookahead != '\n') ADVANCE(4836); END_STATE(); - case 5038: + case 4836: ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(5038); + lookahead != '\n') ADVANCE(4836); END_STATE(); default: return false; @@ -61671,8067 +58414,7822 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 999}, - [2] = {.lex_state = 1019}, - [3] = {.lex_state = 1019}, - [4] = {.lex_state = 1019}, - [5] = {.lex_state = 1019}, - [6] = {.lex_state = 1019}, - [7] = {.lex_state = 1019}, - [8] = {.lex_state = 1019}, - [9] = {.lex_state = 1019}, - [10] = {.lex_state = 1019}, - [11] = {.lex_state = 1019}, - [12] = {.lex_state = 1019}, - [13] = {.lex_state = 1019}, - [14] = {.lex_state = 1019}, - [15] = {.lex_state = 1019}, - [16] = {.lex_state = 1019}, - [17] = {.lex_state = 1019}, - [18] = {.lex_state = 1019}, - [19] = {.lex_state = 1019}, - [20] = {.lex_state = 1019}, - [21] = {.lex_state = 1019}, - [22] = {.lex_state = 1019}, - [23] = {.lex_state = 1019}, - [24] = {.lex_state = 1019}, - [25] = {.lex_state = 1019}, - [26] = {.lex_state = 1019}, - [27] = {.lex_state = 1019}, - [28] = {.lex_state = 1017}, - [29] = {.lex_state = 1017}, - [30] = {.lex_state = 1017}, - [31] = {.lex_state = 1017}, - [32] = {.lex_state = 1017}, - [33] = {.lex_state = 36}, - [34] = {.lex_state = 1017}, - [35] = {.lex_state = 1017}, - [36] = {.lex_state = 1017}, - [37] = {.lex_state = 36}, - [38] = {.lex_state = 1017}, - [39] = {.lex_state = 1017}, - [40] = {.lex_state = 36}, - [41] = {.lex_state = 1017}, - [42] = {.lex_state = 1017}, - [43] = {.lex_state = 1017}, - [44] = {.lex_state = 1017}, - [45] = {.lex_state = 36}, - [46] = {.lex_state = 1017}, - [47] = {.lex_state = 1017}, - [48] = {.lex_state = 36}, - [49] = {.lex_state = 1017}, - [50] = {.lex_state = 36}, - [51] = {.lex_state = 1017}, - [52] = {.lex_state = 36}, - [53] = {.lex_state = 1017}, - [54] = {.lex_state = 36}, - [55] = {.lex_state = 1017}, - [56] = {.lex_state = 36}, - [57] = {.lex_state = 1017}, - [58] = {.lex_state = 36}, - [59] = {.lex_state = 1017}, - [60] = {.lex_state = 36}, - [61] = {.lex_state = 1017}, - [62] = {.lex_state = 36}, - [63] = {.lex_state = 1017}, - [64] = {.lex_state = 36}, - [65] = {.lex_state = 1017}, - [66] = {.lex_state = 36}, - [67] = {.lex_state = 1017}, - [68] = {.lex_state = 1017}, - [69] = {.lex_state = 1017}, - [70] = {.lex_state = 1017}, - [71] = {.lex_state = 1017}, - [72] = {.lex_state = 1017}, - [73] = {.lex_state = 1017}, - [74] = {.lex_state = 1017}, - [75] = {.lex_state = 1017}, - [76] = {.lex_state = 36}, - [77] = {.lex_state = 36}, - [78] = {.lex_state = 36}, - [79] = {.lex_state = 36}, - [80] = {.lex_state = 36}, - [81] = {.lex_state = 36}, - [82] = {.lex_state = 36}, - [83] = {.lex_state = 36}, - [84] = {.lex_state = 36}, - [85] = {.lex_state = 36}, - [86] = {.lex_state = 36}, - [87] = {.lex_state = 1017}, - [88] = {.lex_state = 1017}, - [89] = {.lex_state = 1017}, - [90] = {.lex_state = 1017}, - [91] = {.lex_state = 1017}, - [92] = {.lex_state = 1017}, - [93] = {.lex_state = 1017}, - [94] = {.lex_state = 1017}, - [95] = {.lex_state = 1017}, - [96] = {.lex_state = 1017}, - [97] = {.lex_state = 1017}, - [98] = {.lex_state = 1017}, - [99] = {.lex_state = 1017}, - [100] = {.lex_state = 1017}, - [101] = {.lex_state = 1017}, - [102] = {.lex_state = 1017}, - [103] = {.lex_state = 1017}, - [104] = {.lex_state = 1017}, - [105] = {.lex_state = 1017}, - [106] = {.lex_state = 1017}, - [107] = {.lex_state = 1017}, - [108] = {.lex_state = 1017}, - [109] = {.lex_state = 1017}, - [110] = {.lex_state = 1017}, - [111] = {.lex_state = 1017}, - [112] = {.lex_state = 1017}, - [113] = {.lex_state = 1017}, - [114] = {.lex_state = 1017}, - [115] = {.lex_state = 1017}, - [116] = {.lex_state = 1017}, - [117] = {.lex_state = 1017}, - [118] = {.lex_state = 1017}, - [119] = {.lex_state = 1017}, - [120] = {.lex_state = 1017}, - [121] = {.lex_state = 1017}, - [122] = {.lex_state = 1017}, - [123] = {.lex_state = 1017}, - [124] = {.lex_state = 1017}, - [125] = {.lex_state = 1017}, - [126] = {.lex_state = 1017}, - [127] = {.lex_state = 1017}, - [128] = {.lex_state = 1017}, - [129] = {.lex_state = 1017}, - [130] = {.lex_state = 1017}, - [131] = {.lex_state = 1017}, - [132] = {.lex_state = 1017}, - [133] = {.lex_state = 1017}, - [134] = {.lex_state = 1017}, - [135] = {.lex_state = 1017}, - [136] = {.lex_state = 1017}, - [137] = {.lex_state = 1017}, - [138] = {.lex_state = 1017}, - [139] = {.lex_state = 1017}, - [140] = {.lex_state = 1017}, - [141] = {.lex_state = 1017}, - [142] = {.lex_state = 161}, - [143] = {.lex_state = 161}, - [144] = {.lex_state = 161}, - [145] = {.lex_state = 160}, - [146] = {.lex_state = 160}, - [147] = {.lex_state = 160}, - [148] = {.lex_state = 160}, - [149] = {.lex_state = 160}, - [150] = {.lex_state = 161}, - [151] = {.lex_state = 161}, - [152] = {.lex_state = 161}, - [153] = {.lex_state = 162}, - [154] = {.lex_state = 162}, - [155] = {.lex_state = 264}, - [156] = {.lex_state = 264}, - [157] = {.lex_state = 264}, - [158] = {.lex_state = 264}, - [159] = {.lex_state = 264}, - [160] = {.lex_state = 264}, - [161] = {.lex_state = 264}, - [162] = {.lex_state = 264}, - [163] = {.lex_state = 264}, - [164] = {.lex_state = 264}, - [165] = {.lex_state = 264}, - [166] = {.lex_state = 264}, - [167] = {.lex_state = 264}, - [168] = {.lex_state = 264}, - [169] = {.lex_state = 264}, - [170] = {.lex_state = 264}, - [171] = {.lex_state = 264}, - [172] = {.lex_state = 264}, - [173] = {.lex_state = 264}, - [174] = {.lex_state = 264}, - [175] = {.lex_state = 83}, - [176] = {.lex_state = 1019}, - [177] = {.lex_state = 83}, - [178] = {.lex_state = 83}, - [179] = {.lex_state = 83}, - [180] = {.lex_state = 83}, - [181] = {.lex_state = 83}, - [182] = {.lex_state = 83}, - [183] = {.lex_state = 83}, - [184] = {.lex_state = 83}, - [185] = {.lex_state = 83}, - [186] = {.lex_state = 83}, - [187] = {.lex_state = 83}, - [188] = {.lex_state = 83}, - [189] = {.lex_state = 83}, - [190] = {.lex_state = 323}, - [191] = {.lex_state = 323}, - [192] = {.lex_state = 324}, - [193] = {.lex_state = 321}, - [194] = {.lex_state = 300}, - [195] = {.lex_state = 324}, - [196] = {.lex_state = 303}, - [197] = {.lex_state = 322}, - [198] = {.lex_state = 324}, - [199] = {.lex_state = 288}, - [200] = {.lex_state = 291}, - [201] = {.lex_state = 322}, - [202] = {.lex_state = 305}, - [203] = {.lex_state = 305}, - [204] = {.lex_state = 306}, - [205] = {.lex_state = 321}, - [206] = {.lex_state = 324}, - [207] = {.lex_state = 324}, - [208] = {.lex_state = 324}, - [209] = {.lex_state = 294}, - [210] = {.lex_state = 304}, - [211] = {.lex_state = 306}, - [212] = {.lex_state = 322}, - [213] = {.lex_state = 322}, - [214] = {.lex_state = 306}, - [215] = {.lex_state = 322}, - [216] = {.lex_state = 293}, - [217] = {.lex_state = 306}, - [218] = {.lex_state = 306}, - [219] = {.lex_state = 301}, - [220] = {.lex_state = 293}, - [221] = {.lex_state = 333}, - [222] = {.lex_state = 322}, - [223] = {.lex_state = 1017}, - [224] = {.lex_state = 1017}, - [225] = {.lex_state = 1017}, - [226] = {.lex_state = 1017}, - [227] = {.lex_state = 333}, - [228] = {.lex_state = 292}, - [229] = {.lex_state = 294}, - [230] = {.lex_state = 294}, - [231] = {.lex_state = 307}, - [232] = {.lex_state = 1017}, - [233] = {.lex_state = 1017}, - [234] = {.lex_state = 999}, - [235] = {.lex_state = 1017}, - [236] = {.lex_state = 346}, - [237] = {.lex_state = 333}, - [238] = {.lex_state = 346}, - [239] = {.lex_state = 289}, - [240] = {.lex_state = 1017}, - [241] = {.lex_state = 307}, - [242] = {.lex_state = 1017}, - [243] = {.lex_state = 1017}, - [244] = {.lex_state = 333}, - [245] = {.lex_state = 294}, - [246] = {.lex_state = 294}, - [247] = {.lex_state = 1017}, - [248] = {.lex_state = 40}, - [249] = {.lex_state = 1017}, - [250] = {.lex_state = 332}, - [251] = {.lex_state = 308}, - [252] = {.lex_state = 346}, - [253] = {.lex_state = 346}, - [254] = {.lex_state = 1017}, - [255] = {.lex_state = 334}, - [256] = {.lex_state = 334}, - [257] = {.lex_state = 334}, - [258] = {.lex_state = 334}, - [259] = {.lex_state = 334}, - [260] = {.lex_state = 295}, - [261] = {.lex_state = 295}, - [262] = {.lex_state = 308}, - [263] = {.lex_state = 308}, - [264] = {.lex_state = 308}, - [265] = {.lex_state = 308}, - [266] = {.lex_state = 308}, - [267] = {.lex_state = 343}, - [268] = {.lex_state = 335}, - [269] = {.lex_state = 1017}, - [270] = {.lex_state = 1017}, - [271] = {.lex_state = 40}, - [272] = {.lex_state = 40}, - [273] = {.lex_state = 40}, - [274] = {.lex_state = 40}, - [275] = {.lex_state = 40}, - [276] = {.lex_state = 40}, - [277] = {.lex_state = 40}, - [278] = {.lex_state = 40}, - [279] = {.lex_state = 40}, - [280] = {.lex_state = 40}, - [281] = {.lex_state = 40}, - [282] = {.lex_state = 40}, - [283] = {.lex_state = 40}, - [284] = {.lex_state = 40}, - [285] = {.lex_state = 40}, - [286] = {.lex_state = 40}, - [287] = {.lex_state = 40}, - [288] = {.lex_state = 40}, - [289] = {.lex_state = 40}, - [290] = {.lex_state = 40}, - [291] = {.lex_state = 40}, - [292] = {.lex_state = 40}, - [293] = {.lex_state = 40}, - [294] = {.lex_state = 1017}, - [295] = {.lex_state = 340}, - [296] = {.lex_state = 340}, - [297] = {.lex_state = 344}, + [1] = {.lex_state = 938}, + [2] = {.lex_state = 959}, + [3] = {.lex_state = 959}, + [4] = {.lex_state = 959}, + [5] = {.lex_state = 959}, + [6] = {.lex_state = 959}, + [7] = {.lex_state = 959}, + [8] = {.lex_state = 959}, + [9] = {.lex_state = 959}, + [10] = {.lex_state = 959}, + [11] = {.lex_state = 959}, + [12] = {.lex_state = 959}, + [13] = {.lex_state = 959}, + [14] = {.lex_state = 959}, + [15] = {.lex_state = 959}, + [16] = {.lex_state = 959}, + [17] = {.lex_state = 959}, + [18] = {.lex_state = 959}, + [19] = {.lex_state = 959}, + [20] = {.lex_state = 959}, + [21] = {.lex_state = 959}, + [22] = {.lex_state = 959}, + [23] = {.lex_state = 959}, + [24] = {.lex_state = 959}, + [25] = {.lex_state = 959}, + [26] = {.lex_state = 956}, + [27] = {.lex_state = 956}, + [28] = {.lex_state = 956}, + [29] = {.lex_state = 956}, + [30] = {.lex_state = 956}, + [31] = {.lex_state = 956}, + [32] = {.lex_state = 956}, + [33] = {.lex_state = 956}, + [34] = {.lex_state = 956}, + [35] = {.lex_state = 956}, + [36] = {.lex_state = 956}, + [37] = {.lex_state = 956}, + [38] = {.lex_state = 956}, + [39] = {.lex_state = 956}, + [40] = {.lex_state = 956}, + [41] = {.lex_state = 956}, + [42] = {.lex_state = 956}, + [43] = {.lex_state = 956}, + [44] = {.lex_state = 956}, + [45] = {.lex_state = 956}, + [46] = {.lex_state = 956}, + [47] = {.lex_state = 956}, + [48] = {.lex_state = 956}, + [49] = {.lex_state = 956}, + [50] = {.lex_state = 956}, + [51] = {.lex_state = 956}, + [52] = {.lex_state = 956}, + [53] = {.lex_state = 956}, + [54] = {.lex_state = 31}, + [55] = {.lex_state = 31}, + [56] = {.lex_state = 31}, + [57] = {.lex_state = 31}, + [58] = {.lex_state = 31}, + [59] = {.lex_state = 956}, + [60] = {.lex_state = 31}, + [61] = {.lex_state = 31}, + [62] = {.lex_state = 31}, + [63] = {.lex_state = 31}, + [64] = {.lex_state = 956}, + [65] = {.lex_state = 31}, + [66] = {.lex_state = 31}, + [67] = {.lex_state = 31}, + [68] = {.lex_state = 31}, + [69] = {.lex_state = 31}, + [70] = {.lex_state = 31}, + [71] = {.lex_state = 31}, + [72] = {.lex_state = 31}, + [73] = {.lex_state = 31}, + [74] = {.lex_state = 31}, + [75] = {.lex_state = 31}, + [76] = {.lex_state = 31}, + [77] = {.lex_state = 31}, + [78] = {.lex_state = 31}, + [79] = {.lex_state = 31}, + [80] = {.lex_state = 31}, + [81] = {.lex_state = 31}, + [82] = {.lex_state = 31}, + [83] = {.lex_state = 31}, + [84] = {.lex_state = 31}, + [85] = {.lex_state = 31}, + [86] = {.lex_state = 31}, + [87] = {.lex_state = 31}, + [88] = {.lex_state = 31}, + [89] = {.lex_state = 31}, + [90] = {.lex_state = 31}, + [91] = {.lex_state = 31}, + [92] = {.lex_state = 31}, + [93] = {.lex_state = 31}, + [94] = {.lex_state = 31}, + [95] = {.lex_state = 956}, + [96] = {.lex_state = 956}, + [97] = {.lex_state = 956}, + [98] = {.lex_state = 31}, + [99] = {.lex_state = 956}, + [100] = {.lex_state = 956}, + [101] = {.lex_state = 956}, + [102] = {.lex_state = 956}, + [103] = {.lex_state = 956}, + [104] = {.lex_state = 956}, + [105] = {.lex_state = 956}, + [106] = {.lex_state = 956}, + [107] = {.lex_state = 956}, + [108] = {.lex_state = 956}, + [109] = {.lex_state = 956}, + [110] = {.lex_state = 956}, + [111] = {.lex_state = 956}, + [112] = {.lex_state = 956}, + [113] = {.lex_state = 956}, + [114] = {.lex_state = 956}, + [115] = {.lex_state = 956}, + [116] = {.lex_state = 956}, + [117] = {.lex_state = 956}, + [118] = {.lex_state = 956}, + [119] = {.lex_state = 956}, + [120] = {.lex_state = 956}, + [121] = {.lex_state = 956}, + [122] = {.lex_state = 956}, + [123] = {.lex_state = 956}, + [124] = {.lex_state = 956}, + [125] = {.lex_state = 956}, + [126] = {.lex_state = 956}, + [127] = {.lex_state = 956}, + [128] = {.lex_state = 956}, + [129] = {.lex_state = 956}, + [130] = {.lex_state = 956}, + [131] = {.lex_state = 956}, + [132] = {.lex_state = 956}, + [133] = {.lex_state = 956}, + [134] = {.lex_state = 101}, + [135] = {.lex_state = 101}, + [136] = {.lex_state = 101}, + [137] = {.lex_state = 100}, + [138] = {.lex_state = 100}, + [139] = {.lex_state = 100}, + [140] = {.lex_state = 100}, + [141] = {.lex_state = 100}, + [142] = {.lex_state = 101}, + [143] = {.lex_state = 101}, + [144] = {.lex_state = 101}, + [145] = {.lex_state = 102}, + [146] = {.lex_state = 102}, + [147] = {.lex_state = 204}, + [148] = {.lex_state = 204}, + [149] = {.lex_state = 204}, + [150] = {.lex_state = 204}, + [151] = {.lex_state = 204}, + [152] = {.lex_state = 204}, + [153] = {.lex_state = 204}, + [154] = {.lex_state = 204}, + [155] = {.lex_state = 204}, + [156] = {.lex_state = 204}, + [157] = {.lex_state = 204}, + [158] = {.lex_state = 204}, + [159] = {.lex_state = 204}, + [160] = {.lex_state = 204}, + [161] = {.lex_state = 204}, + [162] = {.lex_state = 204}, + [163] = {.lex_state = 204}, + [164] = {.lex_state = 204}, + [165] = {.lex_state = 204}, + [166] = {.lex_state = 204}, + [167] = {.lex_state = 48}, + [168] = {.lex_state = 48}, + [169] = {.lex_state = 48}, + [170] = {.lex_state = 48}, + [171] = {.lex_state = 48}, + [172] = {.lex_state = 959}, + [173] = {.lex_state = 48}, + [174] = {.lex_state = 48}, + [175] = {.lex_state = 48}, + [176] = {.lex_state = 48}, + [177] = {.lex_state = 48}, + [178] = {.lex_state = 48}, + [179] = {.lex_state = 48}, + [180] = {.lex_state = 48}, + [181] = {.lex_state = 48}, + [182] = {.lex_state = 263}, + [183] = {.lex_state = 240}, + [184] = {.lex_state = 263}, + [185] = {.lex_state = 242}, + [186] = {.lex_state = 261}, + [187] = {.lex_state = 264}, + [188] = {.lex_state = 264}, + [189] = {.lex_state = 264}, + [190] = {.lex_state = 264}, + [191] = {.lex_state = 244}, + [192] = {.lex_state = 228}, + [193] = {.lex_state = 244}, + [194] = {.lex_state = 245}, + [195] = {.lex_state = 262}, + [196] = {.lex_state = 230}, + [197] = {.lex_state = 261}, + [198] = {.lex_state = 262}, + [199] = {.lex_state = 264}, + [200] = {.lex_state = 264}, + [201] = {.lex_state = 245}, + [202] = {.lex_state = 273}, + [203] = {.lex_state = 243}, + [204] = {.lex_state = 245}, + [205] = {.lex_state = 245}, + [206] = {.lex_state = 241}, + [207] = {.lex_state = 273}, + [208] = {.lex_state = 245}, + [209] = {.lex_state = 31}, + [210] = {.lex_state = 31}, + [211] = {.lex_state = 31}, + [212] = {.lex_state = 31}, + [213] = {.lex_state = 233}, + [214] = {.lex_state = 232}, + [215] = {.lex_state = 262}, + [216] = {.lex_state = 273}, + [217] = {.lex_state = 232}, + [218] = {.lex_state = 262}, + [219] = {.lex_state = 262}, + [220] = {.lex_state = 262}, + [221] = {.lex_state = 231}, + [222] = {.lex_state = 246}, + [223] = {.lex_state = 956}, + [224] = {.lex_state = 286}, + [225] = {.lex_state = 273}, + [226] = {.lex_state = 233}, + [227] = {.lex_state = 273}, + [228] = {.lex_state = 938}, + [229] = {.lex_state = 31}, + [230] = {.lex_state = 286}, + [231] = {.lex_state = 229}, + [232] = {.lex_state = 246}, + [233] = {.lex_state = 956}, + [234] = {.lex_state = 956}, + [235] = {.lex_state = 233}, + [236] = {.lex_state = 233}, + [237] = {.lex_state = 233}, + [238] = {.lex_state = 956}, + [239] = {.lex_state = 956}, + [240] = {.lex_state = 956}, + [241] = {.lex_state = 286}, + [242] = {.lex_state = 37}, + [243] = {.lex_state = 274}, + [244] = {.lex_state = 274}, + [245] = {.lex_state = 274}, + [246] = {.lex_state = 274}, + [247] = {.lex_state = 234}, + [248] = {.lex_state = 234}, + [249] = {.lex_state = 37}, + [250] = {.lex_state = 247}, + [251] = {.lex_state = 247}, + [252] = {.lex_state = 247}, + [253] = {.lex_state = 247}, + [254] = {.lex_state = 283}, + [255] = {.lex_state = 275}, + [256] = {.lex_state = 37}, + [257] = {.lex_state = 956}, + [258] = {.lex_state = 37}, + [259] = {.lex_state = 37}, + [260] = {.lex_state = 37}, + [261] = {.lex_state = 37}, + [262] = {.lex_state = 274}, + [263] = {.lex_state = 37}, + [264] = {.lex_state = 37}, + [265] = {.lex_state = 37}, + [266] = {.lex_state = 37}, + [267] = {.lex_state = 272}, + [268] = {.lex_state = 37}, + [269] = {.lex_state = 37}, + [270] = {.lex_state = 37}, + [271] = {.lex_state = 37}, + [272] = {.lex_state = 37}, + [273] = {.lex_state = 37}, + [274] = {.lex_state = 37}, + [275] = {.lex_state = 37}, + [276] = {.lex_state = 37}, + [277] = {.lex_state = 37}, + [278] = {.lex_state = 37}, + [279] = {.lex_state = 37}, + [280] = {.lex_state = 31}, + [281] = {.lex_state = 956}, + [282] = {.lex_state = 956}, + [283] = {.lex_state = 31}, + [284] = {.lex_state = 956}, + [285] = {.lex_state = 247}, + [286] = {.lex_state = 247}, + [287] = {.lex_state = 286}, + [288] = {.lex_state = 286}, + [289] = {.lex_state = 37}, + [290] = {.lex_state = 235}, + [291] = {.lex_state = 281}, + [292] = {.lex_state = 273}, + [293] = {.lex_state = 281}, + [294] = {.lex_state = 285}, + [295] = {.lex_state = 248}, + [296] = {.lex_state = 956}, + [297] = {.lex_state = 235}, [298] = {.lex_state = 296}, - [299] = {.lex_state = 344}, - [300] = {.lex_state = 344}, - [301] = {.lex_state = 1017}, - [302] = {.lex_state = 340}, - [303] = {.lex_state = 297}, - [304] = {.lex_state = 340}, - [305] = {.lex_state = 340}, - [306] = {.lex_state = 340}, - [307] = {.lex_state = 341}, - [308] = {.lex_state = 340}, - [309] = {.lex_state = 341}, - [310] = {.lex_state = 345}, - [311] = {.lex_state = 302}, - [312] = {.lex_state = 340}, - [313] = {.lex_state = 1017}, - [314] = {.lex_state = 1017}, - [315] = {.lex_state = 1017}, - [316] = {.lex_state = 1017}, - [317] = {.lex_state = 340}, - [318] = {.lex_state = 344}, - [319] = {.lex_state = 1017}, - [320] = {.lex_state = 344}, - [321] = {.lex_state = 340}, - [322] = {.lex_state = 340}, - [323] = {.lex_state = 332}, - [324] = {.lex_state = 340}, - [325] = {.lex_state = 340}, - [326] = {.lex_state = 340}, - [327] = {.lex_state = 333}, - [328] = {.lex_state = 340}, - [329] = {.lex_state = 340}, - [330] = {.lex_state = 333}, - [331] = {.lex_state = 340}, - [332] = {.lex_state = 333}, - [333] = {.lex_state = 296}, - [334] = {.lex_state = 296}, - [335] = {.lex_state = 296}, - [336] = {.lex_state = 340}, - [337] = {.lex_state = 296}, - [338] = {.lex_state = 296}, - [339] = {.lex_state = 332}, - [340] = {.lex_state = 340}, - [341] = {.lex_state = 340}, - [342] = {.lex_state = 340}, - [343] = {.lex_state = 1017}, - [344] = {.lex_state = 340}, - [345] = {.lex_state = 340}, - [346] = {.lex_state = 340}, - [347] = {.lex_state = 340}, - [348] = {.lex_state = 356}, - [349] = {.lex_state = 340}, - [350] = {.lex_state = 340}, - [351] = {.lex_state = 340}, - [352] = {.lex_state = 342}, - [353] = {.lex_state = 353}, - [354] = {.lex_state = 342}, - [355] = {.lex_state = 353}, - [356] = {.lex_state = 353}, - [357] = {.lex_state = 353}, - [358] = {.lex_state = 353}, - [359] = {.lex_state = 353}, - [360] = {.lex_state = 353}, - [361] = {.lex_state = 353}, - [362] = {.lex_state = 353}, - [363] = {.lex_state = 265}, - [364] = {.lex_state = 342}, - [365] = {.lex_state = 353}, - [366] = {.lex_state = 285}, - [367] = {.lex_state = 353}, - [368] = {.lex_state = 353}, - [369] = {.lex_state = 40}, - [370] = {.lex_state = 353}, - [371] = {.lex_state = 331}, - [372] = {.lex_state = 353}, - [373] = {.lex_state = 342}, - [374] = {.lex_state = 353}, - [375] = {.lex_state = 353}, - [376] = {.lex_state = 353}, - [377] = {.lex_state = 354}, - [378] = {.lex_state = 342}, - [379] = {.lex_state = 354}, - [380] = {.lex_state = 342}, - [381] = {.lex_state = 1017}, - [382] = {.lex_state = 353}, - [383] = {.lex_state = 353}, - [384] = {.lex_state = 342}, - [385] = {.lex_state = 353}, - [386] = {.lex_state = 340}, - [387] = {.lex_state = 340}, - [388] = {.lex_state = 342}, - [389] = {.lex_state = 353}, - [390] = {.lex_state = 342}, - [391] = {.lex_state = 353}, - [392] = {.lex_state = 353}, - [393] = {.lex_state = 353}, - [394] = {.lex_state = 298}, - [395] = {.lex_state = 353}, - [396] = {.lex_state = 346}, - [397] = {.lex_state = 353}, - [398] = {.lex_state = 331}, - [399] = {.lex_state = 331}, - [400] = {.lex_state = 342}, - [401] = {.lex_state = 298}, - [402] = {.lex_state = 331}, - [403] = {.lex_state = 342}, - [404] = {.lex_state = 331}, - [405] = {.lex_state = 342}, - [406] = {.lex_state = 346}, - [407] = {.lex_state = 265}, - [408] = {.lex_state = 265}, - [409] = {.lex_state = 40}, - [410] = {.lex_state = 1020}, - [411] = {.lex_state = 346}, - [412] = {.lex_state = 342}, - [413] = {.lex_state = 342}, - [414] = {.lex_state = 353}, - [415] = {.lex_state = 290}, - [416] = {.lex_state = 353}, - [417] = {.lex_state = 342}, - [418] = {.lex_state = 338}, - [419] = {.lex_state = 1020}, - [420] = {.lex_state = 332}, - [421] = {.lex_state = 299}, - [422] = {.lex_state = 332}, - [423] = {.lex_state = 332}, - [424] = {.lex_state = 353}, - [425] = {.lex_state = 353}, - [426] = {.lex_state = 355}, - [427] = {.lex_state = 423}, - [428] = {.lex_state = 299}, - [429] = {.lex_state = 423}, - [430] = {.lex_state = 423}, - [431] = {.lex_state = 423}, - [432] = {.lex_state = 338}, - [433] = {.lex_state = 338}, - [434] = {.lex_state = 299}, - [435] = {.lex_state = 355}, - [436] = {.lex_state = 299}, - [437] = {.lex_state = 299}, - [438] = {.lex_state = 338}, - [439] = {.lex_state = 338}, - [440] = {.lex_state = 355}, - [441] = {.lex_state = 423}, - [442] = {.lex_state = 286}, - [443] = {.lex_state = 286}, - [444] = {.lex_state = 355}, - [445] = {.lex_state = 355}, - [446] = {.lex_state = 355}, - [447] = {.lex_state = 355}, - [448] = {.lex_state = 355}, - [449] = {.lex_state = 299}, - [450] = {.lex_state = 299}, - [451] = {.lex_state = 299}, - [452] = {.lex_state = 299}, - [453] = {.lex_state = 337}, - [454] = {.lex_state = 339}, - [455] = {.lex_state = 355}, - [456] = {.lex_state = 1020}, - [457] = {.lex_state = 299}, - [458] = {.lex_state = 299}, - [459] = {.lex_state = 299}, - [460] = {.lex_state = 299}, - [461] = {.lex_state = 299}, - [462] = {.lex_state = 299}, - [463] = {.lex_state = 355}, - [464] = {.lex_state = 355}, - [465] = {.lex_state = 355}, - [466] = {.lex_state = 355}, - [467] = {.lex_state = 355}, - [468] = {.lex_state = 355}, - [469] = {.lex_state = 422}, - [470] = {.lex_state = 422}, - [471] = {.lex_state = 287}, - [472] = {.lex_state = 340}, - [473] = {.lex_state = 422}, - [474] = {.lex_state = 350}, - [475] = {.lex_state = 386}, - [476] = {.lex_state = 386}, - [477] = {.lex_state = 386}, - [478] = {.lex_state = 351}, - [479] = {.lex_state = 351}, - [480] = {.lex_state = 351}, - [481] = {.lex_state = 340}, - [482] = {.lex_state = 336}, - [483] = {.lex_state = 340}, - [484] = {.lex_state = 336}, - [485] = {.lex_state = 352}, - [486] = {.lex_state = 386}, - [487] = {.lex_state = 330}, - [488] = {.lex_state = 386}, - [489] = {.lex_state = 386}, - [490] = {.lex_state = 287}, - [491] = {.lex_state = 386}, - [492] = {.lex_state = 386}, - [493] = {.lex_state = 422}, - [494] = {.lex_state = 299}, - [495] = {.lex_state = 422}, - [496] = {.lex_state = 386}, - [497] = {.lex_state = 287}, - [498] = {.lex_state = 386}, - [499] = {.lex_state = 386}, - [500] = {.lex_state = 330}, - [501] = {.lex_state = 299}, - [502] = {.lex_state = 386}, - [503] = {.lex_state = 351}, - [504] = {.lex_state = 386}, - [505] = {.lex_state = 386}, - [506] = {.lex_state = 287}, - [507] = {.lex_state = 386}, - [508] = {.lex_state = 287}, - [509] = {.lex_state = 287}, - [510] = {.lex_state = 287}, - [511] = {.lex_state = 287}, - [512] = {.lex_state = 386}, - [513] = {.lex_state = 287}, - [514] = {.lex_state = 351}, - [515] = {.lex_state = 287}, - [516] = {.lex_state = 386}, - [517] = {.lex_state = 386}, - [518] = {.lex_state = 287}, - [519] = {.lex_state = 386}, - [520] = {.lex_state = 287}, - [521] = {.lex_state = 287}, - [522] = {.lex_state = 386}, - [523] = {.lex_state = 386}, - [524] = {.lex_state = 287}, - [525] = {.lex_state = 386}, - [526] = {.lex_state = 287}, - [527] = {.lex_state = 386}, - [528] = {.lex_state = 386}, - [529] = {.lex_state = 386}, - [530] = {.lex_state = 348}, - [531] = {.lex_state = 348}, - [532] = {.lex_state = 353}, - [533] = {.lex_state = 386}, - [534] = {.lex_state = 386}, - [535] = {.lex_state = 386}, - [536] = {.lex_state = 386}, - [537] = {.lex_state = 386}, - [538] = {.lex_state = 386}, - [539] = {.lex_state = 386}, - [540] = {.lex_state = 386}, - [541] = {.lex_state = 386}, - [542] = {.lex_state = 83}, - [543] = {.lex_state = 386}, - [544] = {.lex_state = 386}, - [545] = {.lex_state = 386}, - [546] = {.lex_state = 386}, - [547] = {.lex_state = 386}, - [548] = {.lex_state = 386}, - [549] = {.lex_state = 386}, - [550] = {.lex_state = 386}, - [551] = {.lex_state = 386}, - [552] = {.lex_state = 386}, - [553] = {.lex_state = 386}, - [554] = {.lex_state = 386}, - [555] = {.lex_state = 386}, - [556] = {.lex_state = 386}, - [557] = {.lex_state = 386}, - [558] = {.lex_state = 386}, - [559] = {.lex_state = 386}, - [560] = {.lex_state = 83}, - [561] = {.lex_state = 386}, - [562] = {.lex_state = 287}, - [563] = {.lex_state = 386}, - [564] = {.lex_state = 386}, - [565] = {.lex_state = 386}, - [566] = {.lex_state = 386}, - [567] = {.lex_state = 386}, - [568] = {.lex_state = 386}, - [569] = {.lex_state = 386}, - [570] = {.lex_state = 386}, - [571] = {.lex_state = 386}, - [572] = {.lex_state = 386}, - [573] = {.lex_state = 386}, - [574] = {.lex_state = 386}, - [575] = {.lex_state = 386}, - [576] = {.lex_state = 386}, - [577] = {.lex_state = 386}, - [578] = {.lex_state = 386}, - [579] = {.lex_state = 386}, - [580] = {.lex_state = 386}, - [581] = {.lex_state = 386}, - [582] = {.lex_state = 386}, - [583] = {.lex_state = 386}, - [584] = {.lex_state = 386}, - [585] = {.lex_state = 386}, - [586] = {.lex_state = 353}, - [587] = {.lex_state = 353}, - [588] = {.lex_state = 386}, - [589] = {.lex_state = 83}, - [590] = {.lex_state = 386}, - [591] = {.lex_state = 386}, - [592] = {.lex_state = 287}, - [593] = {.lex_state = 386}, - [594] = {.lex_state = 386}, - [595] = {.lex_state = 83}, - [596] = {.lex_state = 83}, - [597] = {.lex_state = 83}, - [598] = {.lex_state = 83}, - [599] = {.lex_state = 83}, - [600] = {.lex_state = 83}, - [601] = {.lex_state = 83}, - [602] = {.lex_state = 83}, - [603] = {.lex_state = 83}, - [604] = {.lex_state = 83}, - [605] = {.lex_state = 83}, - [606] = {.lex_state = 83}, - [607] = {.lex_state = 83}, - [608] = {.lex_state = 83}, - [609] = {.lex_state = 83}, - [610] = {.lex_state = 83}, - [611] = {.lex_state = 83}, - [612] = {.lex_state = 83}, - [613] = {.lex_state = 83}, - [614] = {.lex_state = 83}, - [615] = {.lex_state = 83}, - [616] = {.lex_state = 83}, - [617] = {.lex_state = 83}, - [618] = {.lex_state = 83}, - [619] = {.lex_state = 83}, - [620] = {.lex_state = 83}, - [621] = {.lex_state = 83}, - [622] = {.lex_state = 83}, - [623] = {.lex_state = 83}, - [624] = {.lex_state = 83}, - [625] = {.lex_state = 83}, - [626] = {.lex_state = 83}, - [627] = {.lex_state = 83}, - [628] = {.lex_state = 83}, - [629] = {.lex_state = 83}, - [630] = {.lex_state = 83}, - [631] = {.lex_state = 83}, - [632] = {.lex_state = 83}, - [633] = {.lex_state = 83}, - [634] = {.lex_state = 83}, - [635] = {.lex_state = 83}, - [636] = {.lex_state = 83}, - [637] = {.lex_state = 83}, - [638] = {.lex_state = 83}, - [639] = {.lex_state = 83}, - [640] = {.lex_state = 83}, - [641] = {.lex_state = 83}, - [642] = {.lex_state = 83}, - [643] = {.lex_state = 83}, - [644] = {.lex_state = 83}, - [645] = {.lex_state = 83}, - [646] = {.lex_state = 83}, - [647] = {.lex_state = 83}, - [648] = {.lex_state = 83}, - [649] = {.lex_state = 83}, - [650] = {.lex_state = 83}, - [651] = {.lex_state = 83}, - [652] = {.lex_state = 83}, - [653] = {.lex_state = 83}, - [654] = {.lex_state = 83}, - [655] = {.lex_state = 83}, - [656] = {.lex_state = 83}, - [657] = {.lex_state = 83}, - [658] = {.lex_state = 83}, - [659] = {.lex_state = 83}, - [660] = {.lex_state = 83}, - [661] = {.lex_state = 83}, - [662] = {.lex_state = 83}, - [663] = {.lex_state = 83}, - [664] = {.lex_state = 83}, - [665] = {.lex_state = 83}, - [666] = {.lex_state = 83}, - [667] = {.lex_state = 83}, - [668] = {.lex_state = 1026}, - [669] = {.lex_state = 1026}, - [670] = {.lex_state = 1026}, - [671] = {.lex_state = 1026}, - [672] = {.lex_state = 1026}, - [673] = {.lex_state = 1026}, - [674] = {.lex_state = 1026}, - [675] = {.lex_state = 1026}, - [676] = {.lex_state = 1026}, - [677] = {.lex_state = 1026}, - [678] = {.lex_state = 1026}, - [679] = {.lex_state = 1026}, - [680] = {.lex_state = 45}, - [681] = {.lex_state = 1026}, - [682] = {.lex_state = 1026}, - [683] = {.lex_state = 1026}, - [684] = {.lex_state = 45}, - [685] = {.lex_state = 39}, - [686] = {.lex_state = 39}, - [687] = {.lex_state = 39}, - [688] = {.lex_state = 39}, - [689] = {.lex_state = 39}, - [690] = {.lex_state = 39}, - [691] = {.lex_state = 39}, - [692] = {.lex_state = 39}, - [693] = {.lex_state = 39}, - [694] = {.lex_state = 48}, - [695] = {.lex_state = 51}, - [696] = {.lex_state = 45}, - [697] = {.lex_state = 45}, - [698] = {.lex_state = 45}, - [699] = {.lex_state = 50}, - [700] = {.lex_state = 45}, - [701] = {.lex_state = 45}, - [702] = {.lex_state = 49}, - [703] = {.lex_state = 45}, - [704] = {.lex_state = 45}, - [705] = {.lex_state = 45}, - [706] = {.lex_state = 45}, - [707] = {.lex_state = 45}, - [708] = {.lex_state = 45}, - [709] = {.lex_state = 45}, - [710] = {.lex_state = 45}, - [711] = {.lex_state = 45}, - [712] = {.lex_state = 45}, - [713] = {.lex_state = 45}, - [714] = {.lex_state = 45}, - [715] = {.lex_state = 45}, - [716] = {.lex_state = 49}, - [717] = {.lex_state = 45}, - [718] = {.lex_state = 45}, - [719] = {.lex_state = 45}, - [720] = {.lex_state = 45}, - [721] = {.lex_state = 45}, - [722] = {.lex_state = 45}, - [723] = {.lex_state = 45}, - [724] = {.lex_state = 45}, - [725] = {.lex_state = 57}, - [726] = {.lex_state = 50}, - [727] = {.lex_state = 50}, - [728] = {.lex_state = 34}, - [729] = {.lex_state = 69}, - [730] = {.lex_state = 50}, - [731] = {.lex_state = 73}, - [732] = {.lex_state = 50}, - [733] = {.lex_state = 57}, - [734] = {.lex_state = 45}, - [735] = {.lex_state = 45}, - [736] = {.lex_state = 45}, - [737] = {.lex_state = 45}, - [738] = {.lex_state = 34}, - [739] = {.lex_state = 45}, - [740] = {.lex_state = 57}, - [741] = {.lex_state = 64}, - [742] = {.lex_state = 64}, - [743] = {.lex_state = 45}, - [744] = {.lex_state = 45}, - [745] = {.lex_state = 45}, - [746] = {.lex_state = 45}, - [747] = {.lex_state = 45}, - [748] = {.lex_state = 45}, - [749] = {.lex_state = 45}, - [750] = {.lex_state = 45}, - [751] = {.lex_state = 45}, - [752] = {.lex_state = 45}, - [753] = {.lex_state = 45}, - [754] = {.lex_state = 45}, - [755] = {.lex_state = 45}, - [756] = {.lex_state = 45}, - [757] = {.lex_state = 45}, - [758] = {.lex_state = 45}, - [759] = {.lex_state = 45}, - [760] = {.lex_state = 45}, - [761] = {.lex_state = 57}, - [762] = {.lex_state = 65}, - [763] = {.lex_state = 71}, - [764] = {.lex_state = 71}, - [765] = {.lex_state = 65}, - [766] = {.lex_state = 65}, - [767] = {.lex_state = 65}, - [768] = {.lex_state = 65}, - [769] = {.lex_state = 71}, - [770] = {.lex_state = 71}, - [771] = {.lex_state = 71}, - [772] = {.lex_state = 79}, - [773] = {.lex_state = 45}, - [774] = {.lex_state = 79}, - [775] = {.lex_state = 79}, - [776] = {.lex_state = 79}, - [777] = {.lex_state = 79}, - [778] = {.lex_state = 79}, - [779] = {.lex_state = 45}, - [780] = {.lex_state = 79}, - [781] = {.lex_state = 57}, - [782] = {.lex_state = 57}, - [783] = {.lex_state = 79}, - [784] = {.lex_state = 57}, - [785] = {.lex_state = 79}, - [786] = {.lex_state = 79}, - [787] = {.lex_state = 79}, - [788] = {.lex_state = 79}, - [789] = {.lex_state = 79}, - [790] = {.lex_state = 79}, - [791] = {.lex_state = 79}, - [792] = {.lex_state = 79}, - [793] = {.lex_state = 79}, - [794] = {.lex_state = 79}, - [795] = {.lex_state = 79}, - [796] = {.lex_state = 79}, - [797] = {.lex_state = 45}, - [798] = {.lex_state = 79}, - [799] = {.lex_state = 79}, - [800] = {.lex_state = 79}, - [801] = {.lex_state = 79}, - [802] = {.lex_state = 79}, - [803] = {.lex_state = 43}, - [804] = {.lex_state = 43}, - [805] = {.lex_state = 43}, - [806] = {.lex_state = 79}, - [807] = {.lex_state = 79}, - [808] = {.lex_state = 43}, - [809] = {.lex_state = 43}, - [810] = {.lex_state = 43}, - [811] = {.lex_state = 43}, - [812] = {.lex_state = 43}, - [813] = {.lex_state = 43}, - [814] = {.lex_state = 43}, - [815] = {.lex_state = 43}, - [816] = {.lex_state = 67}, - [817] = {.lex_state = 43}, - [818] = {.lex_state = 43}, - [819] = {.lex_state = 43}, - [820] = {.lex_state = 43}, - [821] = {.lex_state = 43}, - [822] = {.lex_state = 43}, - [823] = {.lex_state = 43}, - [824] = {.lex_state = 43}, - [825] = {.lex_state = 44}, - [826] = {.lex_state = 43}, - [827] = {.lex_state = 43}, - [828] = {.lex_state = 67}, - [829] = {.lex_state = 43}, - [830] = {.lex_state = 43}, - [831] = {.lex_state = 43}, - [832] = {.lex_state = 43}, - [833] = {.lex_state = 43}, - [834] = {.lex_state = 43}, - [835] = {.lex_state = 43}, - [836] = {.lex_state = 43}, - [837] = {.lex_state = 43}, - [838] = {.lex_state = 43}, - [839] = {.lex_state = 43}, - [840] = {.lex_state = 43}, - [841] = {.lex_state = 43}, - [842] = {.lex_state = 43}, - [843] = {.lex_state = 43}, - [844] = {.lex_state = 43}, - [845] = {.lex_state = 43}, - [846] = {.lex_state = 43}, - [847] = {.lex_state = 43}, - [848] = {.lex_state = 43}, - [849] = {.lex_state = 43}, - [850] = {.lex_state = 43}, - [851] = {.lex_state = 43}, - [852] = {.lex_state = 43}, - [853] = {.lex_state = 43}, - [854] = {.lex_state = 43}, - [855] = {.lex_state = 43}, - [856] = {.lex_state = 43}, - [857] = {.lex_state = 43}, - [858] = {.lex_state = 43}, - [859] = {.lex_state = 43}, - [860] = {.lex_state = 43}, - [861] = {.lex_state = 43}, - [862] = {.lex_state = 43}, - [863] = {.lex_state = 43}, - [864] = {.lex_state = 43}, - [865] = {.lex_state = 43}, - [866] = {.lex_state = 43}, - [867] = {.lex_state = 43}, - [868] = {.lex_state = 43}, - [869] = {.lex_state = 43}, - [870] = {.lex_state = 43}, - [871] = {.lex_state = 43}, - [872] = {.lex_state = 43}, - [873] = {.lex_state = 43}, - [874] = {.lex_state = 43}, - [875] = {.lex_state = 43}, - [876] = {.lex_state = 43}, - [877] = {.lex_state = 43}, - [878] = {.lex_state = 43}, - [879] = {.lex_state = 43}, - [880] = {.lex_state = 43}, - [881] = {.lex_state = 43}, - [882] = {.lex_state = 43}, - [883] = {.lex_state = 43}, - [884] = {.lex_state = 43}, - [885] = {.lex_state = 43}, - [886] = {.lex_state = 43}, - [887] = {.lex_state = 43}, - [888] = {.lex_state = 43}, - [889] = {.lex_state = 43}, - [890] = {.lex_state = 43}, - [891] = {.lex_state = 43}, - [892] = {.lex_state = 43}, - [893] = {.lex_state = 43}, - [894] = {.lex_state = 43}, - [895] = {.lex_state = 43}, - [896] = {.lex_state = 43}, - [897] = {.lex_state = 43}, - [898] = {.lex_state = 43}, - [899] = {.lex_state = 43}, - [900] = {.lex_state = 43}, - [901] = {.lex_state = 43}, - [902] = {.lex_state = 43}, - [903] = {.lex_state = 43}, - [904] = {.lex_state = 43}, - [905] = {.lex_state = 43}, - [906] = {.lex_state = 43}, - [907] = {.lex_state = 43}, - [908] = {.lex_state = 43}, - [909] = {.lex_state = 43}, - [910] = {.lex_state = 43}, - [911] = {.lex_state = 43}, - [912] = {.lex_state = 43}, - [913] = {.lex_state = 43}, - [914] = {.lex_state = 43}, - [915] = {.lex_state = 43}, - [916] = {.lex_state = 43}, - [917] = {.lex_state = 43}, - [918] = {.lex_state = 43}, - [919] = {.lex_state = 43}, - [920] = {.lex_state = 43}, - [921] = {.lex_state = 43}, - [922] = {.lex_state = 43}, - [923] = {.lex_state = 43}, - [924] = {.lex_state = 43}, - [925] = {.lex_state = 43}, - [926] = {.lex_state = 43}, - [927] = {.lex_state = 43}, - [928] = {.lex_state = 43}, - [929] = {.lex_state = 43}, - [930] = {.lex_state = 43}, - [931] = {.lex_state = 43}, - [932] = {.lex_state = 43}, - [933] = {.lex_state = 43}, - [934] = {.lex_state = 43}, - [935] = {.lex_state = 43}, - [936] = {.lex_state = 43}, - [937] = {.lex_state = 43}, - [938] = {.lex_state = 43}, - [939] = {.lex_state = 43}, - [940] = {.lex_state = 43}, - [941] = {.lex_state = 67}, - [942] = {.lex_state = 43}, - [943] = {.lex_state = 43}, - [944] = {.lex_state = 43}, - [945] = {.lex_state = 43}, - [946] = {.lex_state = 43}, - [947] = {.lex_state = 43}, - [948] = {.lex_state = 43}, - [949] = {.lex_state = 43}, - [950] = {.lex_state = 43}, - [951] = {.lex_state = 43}, - [952] = {.lex_state = 43}, - [953] = {.lex_state = 43}, - [954] = {.lex_state = 43}, - [955] = {.lex_state = 43}, - [956] = {.lex_state = 43}, - [957] = {.lex_state = 43}, - [958] = {.lex_state = 43}, - [959] = {.lex_state = 43}, - [960] = {.lex_state = 43}, - [961] = {.lex_state = 43}, - [962] = {.lex_state = 43}, - [963] = {.lex_state = 67}, - [964] = {.lex_state = 43}, - [965] = {.lex_state = 43}, - [966] = {.lex_state = 47}, - [967] = {.lex_state = 76}, - [968] = {.lex_state = 47}, - [969] = {.lex_state = 86}, - [970] = {.lex_state = 86}, - [971] = {.lex_state = 47}, - [972] = {.lex_state = 76}, - [973] = {.lex_state = 270}, - [974] = {.lex_state = 159}, - [975] = {.lex_state = 47}, - [976] = {.lex_state = 86}, - [977] = {.lex_state = 47}, - [978] = {.lex_state = 47}, - [979] = {.lex_state = 47}, - [980] = {.lex_state = 47}, - [981] = {.lex_state = 47}, - [982] = {.lex_state = 47}, - [983] = {.lex_state = 47}, - [984] = {.lex_state = 47}, - [985] = {.lex_state = 76}, - [986] = {.lex_state = 47}, - [987] = {.lex_state = 76}, - [988] = {.lex_state = 47}, - [989] = {.lex_state = 86}, - [990] = {.lex_state = 86}, - [991] = {.lex_state = 76}, - [992] = {.lex_state = 47}, - [993] = {.lex_state = 159}, - [994] = {.lex_state = 47}, - [995] = {.lex_state = 270}, - [996] = {.lex_state = 1018}, - [997] = {.lex_state = 47}, - [998] = {.lex_state = 43}, - [999] = {.lex_state = 43}, - [1000] = {.lex_state = 43}, - [1001] = {.lex_state = 43}, - [1002] = {.lex_state = 43}, - [1003] = {.lex_state = 43}, - [1004] = {.lex_state = 43}, - [1005] = {.lex_state = 43}, - [1006] = {.lex_state = 43}, - [1007] = {.lex_state = 43}, - [1008] = {.lex_state = 43}, - [1009] = {.lex_state = 43}, - [1010] = {.lex_state = 82}, - [1011] = {.lex_state = 43}, - [1012] = {.lex_state = 43}, - [1013] = {.lex_state = 43}, - [1014] = {.lex_state = 79}, - [1015] = {.lex_state = 79}, - [1016] = {.lex_state = 79}, - [1017] = {.lex_state = 43}, - [1018] = {.lex_state = 43}, - [1019] = {.lex_state = 43}, - [1020] = {.lex_state = 43}, - [1021] = {.lex_state = 43}, - [1022] = {.lex_state = 43}, - [1023] = {.lex_state = 43}, - [1024] = {.lex_state = 43}, - [1025] = {.lex_state = 43}, - [1026] = {.lex_state = 43}, - [1027] = {.lex_state = 43}, - [1028] = {.lex_state = 1018}, - [1029] = {.lex_state = 43}, - [1030] = {.lex_state = 43}, - [1031] = {.lex_state = 43}, - [1032] = {.lex_state = 43}, - [1033] = {.lex_state = 43}, - [1034] = {.lex_state = 43}, - [1035] = {.lex_state = 43}, - [1036] = {.lex_state = 43}, - [1037] = {.lex_state = 43}, - [1038] = {.lex_state = 43}, - [1039] = {.lex_state = 43}, - [1040] = {.lex_state = 43}, - [1041] = {.lex_state = 43}, - [1042] = {.lex_state = 43}, - [1043] = {.lex_state = 43}, - [1044] = {.lex_state = 43}, - [1045] = {.lex_state = 43}, - [1046] = {.lex_state = 43}, - [1047] = {.lex_state = 43}, - [1048] = {.lex_state = 43}, - [1049] = {.lex_state = 43}, - [1050] = {.lex_state = 43}, - [1051] = {.lex_state = 43}, - [1052] = {.lex_state = 43}, - [1053] = {.lex_state = 43}, - [1054] = {.lex_state = 43}, - [1055] = {.lex_state = 43}, - [1056] = {.lex_state = 43}, - [1057] = {.lex_state = 43}, - [1058] = {.lex_state = 43}, - [1059] = {.lex_state = 43}, - [1060] = {.lex_state = 43}, - [1061] = {.lex_state = 43}, - [1062] = {.lex_state = 47}, - [1063] = {.lex_state = 43}, - [1064] = {.lex_state = 43}, - [1065] = {.lex_state = 43}, - [1066] = {.lex_state = 43}, - [1067] = {.lex_state = 43}, - [1068] = {.lex_state = 43}, - [1069] = {.lex_state = 60}, - [1070] = {.lex_state = 43}, - [1071] = {.lex_state = 43}, - [1072] = {.lex_state = 43}, - [1073] = {.lex_state = 43}, - [1074] = {.lex_state = 43}, - [1075] = {.lex_state = 43}, - [1076] = {.lex_state = 43}, - [1077] = {.lex_state = 43}, - [1078] = {.lex_state = 43}, - [1079] = {.lex_state = 43}, - [1080] = {.lex_state = 43}, - [1081] = {.lex_state = 43}, - [1082] = {.lex_state = 43}, - [1083] = {.lex_state = 43}, - [1084] = {.lex_state = 43}, - [1085] = {.lex_state = 43}, - [1086] = {.lex_state = 43}, - [1087] = {.lex_state = 43}, - [1088] = {.lex_state = 43}, - [1089] = {.lex_state = 43}, - [1090] = {.lex_state = 43}, - [1091] = {.lex_state = 43}, - [1092] = {.lex_state = 43}, - [1093] = {.lex_state = 43}, - [1094] = {.lex_state = 43}, - [1095] = {.lex_state = 43}, - [1096] = {.lex_state = 43}, - [1097] = {.lex_state = 43}, - [1098] = {.lex_state = 43}, - [1099] = {.lex_state = 43}, - [1100] = {.lex_state = 43}, - [1101] = {.lex_state = 43}, - [1102] = {.lex_state = 43}, - [1103] = {.lex_state = 43}, - [1104] = {.lex_state = 43}, - [1105] = {.lex_state = 43}, - [1106] = {.lex_state = 43}, - [1107] = {.lex_state = 43}, - [1108] = {.lex_state = 43}, - [1109] = {.lex_state = 43}, - [1110] = {.lex_state = 43}, - [1111] = {.lex_state = 43}, - [1112] = {.lex_state = 43}, - [1113] = {.lex_state = 43}, - [1114] = {.lex_state = 43}, - [1115] = {.lex_state = 43}, - [1116] = {.lex_state = 43}, - [1117] = {.lex_state = 43}, - [1118] = {.lex_state = 43}, - [1119] = {.lex_state = 43}, - [1120] = {.lex_state = 43}, - [1121] = {.lex_state = 43}, - [1122] = {.lex_state = 43}, - [1123] = {.lex_state = 47}, - [1124] = {.lex_state = 43}, - [1125] = {.lex_state = 61}, - [1126] = {.lex_state = 61}, - [1127] = {.lex_state = 43}, - [1128] = {.lex_state = 43}, - [1129] = {.lex_state = 43}, - [1130] = {.lex_state = 61}, - [1131] = {.lex_state = 61}, - [1132] = {.lex_state = 61}, - [1133] = {.lex_state = 61}, - [1134] = {.lex_state = 43}, - [1135] = {.lex_state = 61}, - [1136] = {.lex_state = 43}, - [1137] = {.lex_state = 61}, - [1138] = {.lex_state = 61}, - [1139] = {.lex_state = 61}, - [1140] = {.lex_state = 61}, - [1141] = {.lex_state = 61}, - [1142] = {.lex_state = 61}, - [1143] = {.lex_state = 61}, - [1144] = {.lex_state = 61}, - [1145] = {.lex_state = 61}, - [1146] = {.lex_state = 61}, - [1147] = {.lex_state = 61}, - [1148] = {.lex_state = 61}, - [1149] = {.lex_state = 61}, - [1150] = {.lex_state = 61}, - [1151] = {.lex_state = 61}, - [1152] = {.lex_state = 61}, - [1153] = {.lex_state = 61}, - [1154] = {.lex_state = 61}, - [1155] = {.lex_state = 61}, - [1156] = {.lex_state = 61}, - [1157] = {.lex_state = 61}, - [1158] = {.lex_state = 61}, - [1159] = {.lex_state = 61}, - [1160] = {.lex_state = 61}, - [1161] = {.lex_state = 61}, - [1162] = {.lex_state = 61}, - [1163] = {.lex_state = 61}, - [1164] = {.lex_state = 61}, - [1165] = {.lex_state = 61}, - [1166] = {.lex_state = 61}, - [1167] = {.lex_state = 61}, - [1168] = {.lex_state = 61}, - [1169] = {.lex_state = 61}, - [1170] = {.lex_state = 61}, - [1171] = {.lex_state = 61}, - [1172] = {.lex_state = 61}, - [1173] = {.lex_state = 43}, - [1174] = {.lex_state = 61}, - [1175] = {.lex_state = 61}, - [1176] = {.lex_state = 61}, - [1177] = {.lex_state = 61}, - [1178] = {.lex_state = 61}, - [1179] = {.lex_state = 61}, - [1180] = {.lex_state = 61}, - [1181] = {.lex_state = 61}, - [1182] = {.lex_state = 61}, - [1183] = {.lex_state = 61}, - [1184] = {.lex_state = 61}, - [1185] = {.lex_state = 61}, - [1186] = {.lex_state = 61}, - [1187] = {.lex_state = 61}, - [1188] = {.lex_state = 61}, - [1189] = {.lex_state = 61}, - [1190] = {.lex_state = 61}, - [1191] = {.lex_state = 61}, - [1192] = {.lex_state = 61}, - [1193] = {.lex_state = 61}, - [1194] = {.lex_state = 61}, - [1195] = {.lex_state = 61}, - [1196] = {.lex_state = 61}, - [1197] = {.lex_state = 61}, - [1198] = {.lex_state = 61}, - [1199] = {.lex_state = 61}, - [1200] = {.lex_state = 61}, - [1201] = {.lex_state = 61}, - [1202] = {.lex_state = 61}, - [1203] = {.lex_state = 61}, - [1204] = {.lex_state = 61}, - [1205] = {.lex_state = 61}, - [1206] = {.lex_state = 61}, - [1207] = {.lex_state = 61}, - [1208] = {.lex_state = 81}, - [1209] = {.lex_state = 81}, - [1210] = {.lex_state = 46}, - [1211] = {.lex_state = 81}, - [1212] = {.lex_state = 81}, - [1213] = {.lex_state = 46}, - [1214] = {.lex_state = 81}, - [1215] = {.lex_state = 46}, - [1216] = {.lex_state = 46}, - [1217] = {.lex_state = 81}, - [1218] = {.lex_state = 46}, - [1219] = {.lex_state = 46}, - [1220] = {.lex_state = 46}, - [1221] = {.lex_state = 46}, - [1222] = {.lex_state = 81}, - [1223] = {.lex_state = 81}, - [1224] = {.lex_state = 81}, - [1225] = {.lex_state = 279}, - [1226] = {.lex_state = 279}, - [1227] = {.lex_state = 38}, - [1228] = {.lex_state = 279}, - [1229] = {.lex_state = 279}, - [1230] = {.lex_state = 279}, - [1231] = {.lex_state = 279}, - [1232] = {.lex_state = 38}, - [1233] = {.lex_state = 81}, - [1234] = {.lex_state = 265}, - [1235] = {.lex_state = 38}, - [1236] = {.lex_state = 46}, - [1237] = {.lex_state = 81}, - [1238] = {.lex_state = 81}, - [1239] = {.lex_state = 1014}, - [1240] = {.lex_state = 81}, - [1241] = {.lex_state = 1059}, - [1242] = {.lex_state = 265}, - [1243] = {.lex_state = 163}, - [1244] = {.lex_state = 46}, - [1245] = {.lex_state = 81}, - [1246] = {.lex_state = 81}, - [1247] = {.lex_state = 81}, - [1248] = {.lex_state = 81}, - [1249] = {.lex_state = 38}, - [1250] = {.lex_state = 40}, - [1251] = {.lex_state = 38}, - [1252] = {.lex_state = 81}, - [1253] = {.lex_state = 40}, - [1254] = {.lex_state = 1014}, - [1255] = {.lex_state = 1059}, - [1256] = {.lex_state = 163}, - [1257] = {.lex_state = 1001}, - [1258] = {.lex_state = 1013}, - [1259] = {.lex_state = 163}, - [1260] = {.lex_state = 1059}, - [1261] = {.lex_state = 182}, - [1262] = {.lex_state = 1016}, - [1263] = {.lex_state = 1013}, - [1264] = {.lex_state = 38}, - [1265] = {.lex_state = 1010}, - [1266] = {.lex_state = 1059}, - [1267] = {.lex_state = 163}, - [1268] = {.lex_state = 1016}, - [1269] = {.lex_state = 1059}, - [1270] = {.lex_state = 1059}, - [1271] = {.lex_state = 182}, - [1272] = {.lex_state = 1003}, - [1273] = {.lex_state = 163}, - [1274] = {.lex_state = 1059}, - [1275] = {.lex_state = 1004}, - [1276] = {.lex_state = 1013}, - [1277] = {.lex_state = 163}, - [1278] = {.lex_state = 163}, - [1279] = {.lex_state = 1003}, - [1280] = {.lex_state = 1059}, - [1281] = {.lex_state = 1042}, - [1282] = {.lex_state = 1015}, - [1283] = {.lex_state = 1015}, - [1284] = {.lex_state = 1015}, - [1285] = {.lex_state = 1015}, - [1286] = {.lex_state = 1013}, - [1287] = {.lex_state = 1010}, - [1288] = {.lex_state = 182}, - [1289] = {.lex_state = 163}, + [299] = {.lex_state = 280}, + [300] = {.lex_state = 280}, + [301] = {.lex_state = 280}, + [302] = {.lex_state = 280}, + [303] = {.lex_state = 280}, + [304] = {.lex_state = 280}, + [305] = {.lex_state = 280}, + [306] = {.lex_state = 273}, + [307] = {.lex_state = 280}, + [308] = {.lex_state = 235}, + [309] = {.lex_state = 280}, + [310] = {.lex_state = 280}, + [311] = {.lex_state = 280}, + [312] = {.lex_state = 235}, + [313] = {.lex_state = 280}, + [314] = {.lex_state = 280}, + [315] = {.lex_state = 272}, + [316] = {.lex_state = 956}, + [317] = {.lex_state = 272}, + [318] = {.lex_state = 280}, + [319] = {.lex_state = 284}, + [320] = {.lex_state = 956}, + [321] = {.lex_state = 284}, + [322] = {.lex_state = 284}, + [323] = {.lex_state = 280}, + [324] = {.lex_state = 956}, + [325] = {.lex_state = 280}, + [326] = {.lex_state = 280}, + [327] = {.lex_state = 280}, + [328] = {.lex_state = 280}, + [329] = {.lex_state = 280}, + [330] = {.lex_state = 235}, + [331] = {.lex_state = 956}, + [332] = {.lex_state = 235}, + [333] = {.lex_state = 280}, + [334] = {.lex_state = 237}, + [335] = {.lex_state = 280}, + [336] = {.lex_state = 280}, + [337] = {.lex_state = 280}, + [338] = {.lex_state = 284}, + [339] = {.lex_state = 284}, + [340] = {.lex_state = 273}, + [341] = {.lex_state = 956}, + [342] = {.lex_state = 280}, + [343] = {.lex_state = 280}, + [344] = {.lex_state = 280}, + [345] = {.lex_state = 280}, + [346] = {.lex_state = 293}, + [347] = {.lex_state = 238}, + [348] = {.lex_state = 282}, + [349] = {.lex_state = 205}, + [350] = {.lex_state = 293}, + [351] = {.lex_state = 293}, + [352] = {.lex_state = 293}, + [353] = {.lex_state = 293}, + [354] = {.lex_state = 282}, + [355] = {.lex_state = 37}, + [356] = {.lex_state = 293}, + [357] = {.lex_state = 293}, + [358] = {.lex_state = 293}, + [359] = {.lex_state = 293}, + [360] = {.lex_state = 271}, + [361] = {.lex_state = 282}, + [362] = {.lex_state = 282}, + [363] = {.lex_state = 37}, + [364] = {.lex_state = 282}, + [365] = {.lex_state = 282}, + [366] = {.lex_state = 293}, + [367] = {.lex_state = 293}, + [368] = {.lex_state = 293}, + [369] = {.lex_state = 225}, + [370] = {.lex_state = 294}, + [371] = {.lex_state = 293}, + [372] = {.lex_state = 956}, + [373] = {.lex_state = 236}, + [374] = {.lex_state = 293}, + [375] = {.lex_state = 293}, + [376] = {.lex_state = 271}, + [377] = {.lex_state = 293}, + [378] = {.lex_state = 293}, + [379] = {.lex_state = 293}, + [380] = {.lex_state = 293}, + [381] = {.lex_state = 280}, + [382] = {.lex_state = 282}, + [383] = {.lex_state = 282}, + [384] = {.lex_state = 282}, + [385] = {.lex_state = 282}, + [386] = {.lex_state = 271}, + [387] = {.lex_state = 293}, + [388] = {.lex_state = 286}, + [389] = {.lex_state = 294}, + [390] = {.lex_state = 293}, + [391] = {.lex_state = 282}, + [392] = {.lex_state = 271}, + [393] = {.lex_state = 238}, + [394] = {.lex_state = 286}, + [395] = {.lex_state = 286}, + [396] = {.lex_state = 271}, + [397] = {.lex_state = 293}, + [398] = {.lex_state = 282}, + [399] = {.lex_state = 205}, + [400] = {.lex_state = 293}, + [401] = {.lex_state = 293}, + [402] = {.lex_state = 282}, + [403] = {.lex_state = 293}, + [404] = {.lex_state = 960}, + [405] = {.lex_state = 282}, + [406] = {.lex_state = 205}, + [407] = {.lex_state = 282}, + [408] = {.lex_state = 293}, + [409] = {.lex_state = 282}, + [410] = {.lex_state = 293}, + [411] = {.lex_state = 293}, + [412] = {.lex_state = 280}, + [413] = {.lex_state = 239}, + [414] = {.lex_state = 295}, + [415] = {.lex_state = 295}, + [416] = {.lex_state = 295}, + [417] = {.lex_state = 295}, + [418] = {.lex_state = 239}, + [419] = {.lex_state = 239}, + [420] = {.lex_state = 960}, + [421] = {.lex_state = 239}, + [422] = {.lex_state = 239}, + [423] = {.lex_state = 239}, + [424] = {.lex_state = 295}, + [425] = {.lex_state = 295}, + [426] = {.lex_state = 295}, + [427] = {.lex_state = 295}, + [428] = {.lex_state = 295}, + [429] = {.lex_state = 239}, + [430] = {.lex_state = 295}, + [431] = {.lex_state = 272}, + [432] = {.lex_state = 272}, + [433] = {.lex_state = 272}, + [434] = {.lex_state = 293}, + [435] = {.lex_state = 293}, + [436] = {.lex_state = 362}, + [437] = {.lex_state = 295}, + [438] = {.lex_state = 362}, + [439] = {.lex_state = 362}, + [440] = {.lex_state = 278}, + [441] = {.lex_state = 278}, + [442] = {.lex_state = 278}, + [443] = {.lex_state = 278}, + [444] = {.lex_state = 278}, + [445] = {.lex_state = 362}, + [446] = {.lex_state = 239}, + [447] = {.lex_state = 239}, + [448] = {.lex_state = 226}, + [449] = {.lex_state = 226}, + [450] = {.lex_state = 295}, + [451] = {.lex_state = 295}, + [452] = {.lex_state = 295}, + [453] = {.lex_state = 295}, + [454] = {.lex_state = 239}, + [455] = {.lex_state = 239}, + [456] = {.lex_state = 960}, + [457] = {.lex_state = 239}, + [458] = {.lex_state = 239}, + [459] = {.lex_state = 239}, + [460] = {.lex_state = 239}, + [461] = {.lex_state = 277}, + [462] = {.lex_state = 279}, + [463] = {.lex_state = 295}, + [464] = {.lex_state = 362}, + [465] = {.lex_state = 291}, + [466] = {.lex_state = 327}, + [467] = {.lex_state = 270}, + [468] = {.lex_state = 239}, + [469] = {.lex_state = 327}, + [470] = {.lex_state = 327}, + [471] = {.lex_state = 327}, + [472] = {.lex_state = 361}, + [473] = {.lex_state = 291}, + [474] = {.lex_state = 227}, + [475] = {.lex_state = 291}, + [476] = {.lex_state = 291}, + [477] = {.lex_state = 291}, + [478] = {.lex_state = 361}, + [479] = {.lex_state = 361}, + [480] = {.lex_state = 361}, + [481] = {.lex_state = 270}, + [482] = {.lex_state = 280}, + [483] = {.lex_state = 239}, + [484] = {.lex_state = 280}, + [485] = {.lex_state = 327}, + [486] = {.lex_state = 327}, + [487] = {.lex_state = 361}, + [488] = {.lex_state = 227}, + [489] = {.lex_state = 227}, + [490] = {.lex_state = 227}, + [491] = {.lex_state = 227}, + [492] = {.lex_state = 227}, + [493] = {.lex_state = 227}, + [494] = {.lex_state = 227}, + [495] = {.lex_state = 327}, + [496] = {.lex_state = 290}, + [497] = {.lex_state = 227}, + [498] = {.lex_state = 327}, + [499] = {.lex_state = 327}, + [500] = {.lex_state = 276}, + [501] = {.lex_state = 276}, + [502] = {.lex_state = 292}, + [503] = {.lex_state = 327}, + [504] = {.lex_state = 327}, + [505] = {.lex_state = 227}, + [506] = {.lex_state = 227}, + [507] = {.lex_state = 227}, + [508] = {.lex_state = 227}, + [509] = {.lex_state = 227}, + [510] = {.lex_state = 227}, + [511] = {.lex_state = 327}, + [512] = {.lex_state = 280}, + [513] = {.lex_state = 48}, + [514] = {.lex_state = 327}, + [515] = {.lex_state = 327}, + [516] = {.lex_state = 327}, + [517] = {.lex_state = 327}, + [518] = {.lex_state = 327}, + [519] = {.lex_state = 327}, + [520] = {.lex_state = 327}, + [521] = {.lex_state = 327}, + [522] = {.lex_state = 327}, + [523] = {.lex_state = 327}, + [524] = {.lex_state = 327}, + [525] = {.lex_state = 327}, + [526] = {.lex_state = 327}, + [527] = {.lex_state = 327}, + [528] = {.lex_state = 327}, + [529] = {.lex_state = 327}, + [530] = {.lex_state = 327}, + [531] = {.lex_state = 327}, + [532] = {.lex_state = 327}, + [533] = {.lex_state = 327}, + [534] = {.lex_state = 327}, + [535] = {.lex_state = 327}, + [536] = {.lex_state = 327}, + [537] = {.lex_state = 327}, + [538] = {.lex_state = 327}, + [539] = {.lex_state = 327}, + [540] = {.lex_state = 327}, + [541] = {.lex_state = 327}, + [542] = {.lex_state = 327}, + [543] = {.lex_state = 327}, + [544] = {.lex_state = 327}, + [545] = {.lex_state = 327}, + [546] = {.lex_state = 327}, + [547] = {.lex_state = 327}, + [548] = {.lex_state = 327}, + [549] = {.lex_state = 327}, + [550] = {.lex_state = 293}, + [551] = {.lex_state = 48}, + [552] = {.lex_state = 293}, + [553] = {.lex_state = 327}, + [554] = {.lex_state = 48}, + [555] = {.lex_state = 327}, + [556] = {.lex_state = 327}, + [557] = {.lex_state = 327}, + [558] = {.lex_state = 327}, + [559] = {.lex_state = 327}, + [560] = {.lex_state = 327}, + [561] = {.lex_state = 327}, + [562] = {.lex_state = 327}, + [563] = {.lex_state = 327}, + [564] = {.lex_state = 327}, + [565] = {.lex_state = 327}, + [566] = {.lex_state = 327}, + [567] = {.lex_state = 327}, + [568] = {.lex_state = 327}, + [569] = {.lex_state = 327}, + [570] = {.lex_state = 327}, + [571] = {.lex_state = 327}, + [572] = {.lex_state = 327}, + [573] = {.lex_state = 327}, + [574] = {.lex_state = 327}, + [575] = {.lex_state = 327}, + [576] = {.lex_state = 327}, + [577] = {.lex_state = 288}, + [578] = {.lex_state = 327}, + [579] = {.lex_state = 288}, + [580] = {.lex_state = 327}, + [581] = {.lex_state = 327}, + [582] = {.lex_state = 327}, + [583] = {.lex_state = 327}, + [584] = {.lex_state = 327}, + [585] = {.lex_state = 327}, + [586] = {.lex_state = 327}, + [587] = {.lex_state = 227}, + [588] = {.lex_state = 227}, + [589] = {.lex_state = 327}, + [590] = {.lex_state = 293}, + [591] = {.lex_state = 48}, + [592] = {.lex_state = 48}, + [593] = {.lex_state = 48}, + [594] = {.lex_state = 48}, + [595] = {.lex_state = 48}, + [596] = {.lex_state = 48}, + [597] = {.lex_state = 48}, + [598] = {.lex_state = 48}, + [599] = {.lex_state = 48}, + [600] = {.lex_state = 48}, + [601] = {.lex_state = 48}, + [602] = {.lex_state = 48}, + [603] = {.lex_state = 48}, + [604] = {.lex_state = 48}, + [605] = {.lex_state = 48}, + [606] = {.lex_state = 48}, + [607] = {.lex_state = 48}, + [608] = {.lex_state = 48}, + [609] = {.lex_state = 48}, + [610] = {.lex_state = 48}, + [611] = {.lex_state = 48}, + [612] = {.lex_state = 48}, + [613] = {.lex_state = 48}, + [614] = {.lex_state = 48}, + [615] = {.lex_state = 48}, + [616] = {.lex_state = 48}, + [617] = {.lex_state = 48}, + [618] = {.lex_state = 48}, + [619] = {.lex_state = 48}, + [620] = {.lex_state = 48}, + [621] = {.lex_state = 48}, + [622] = {.lex_state = 48}, + [623] = {.lex_state = 48}, + [624] = {.lex_state = 48}, + [625] = {.lex_state = 48}, + [626] = {.lex_state = 48}, + [627] = {.lex_state = 48}, + [628] = {.lex_state = 48}, + [629] = {.lex_state = 48}, + [630] = {.lex_state = 48}, + [631] = {.lex_state = 48}, + [632] = {.lex_state = 48}, + [633] = {.lex_state = 48}, + [634] = {.lex_state = 48}, + [635] = {.lex_state = 48}, + [636] = {.lex_state = 48}, + [637] = {.lex_state = 48}, + [638] = {.lex_state = 48}, + [639] = {.lex_state = 48}, + [640] = {.lex_state = 48}, + [641] = {.lex_state = 48}, + [642] = {.lex_state = 48}, + [643] = {.lex_state = 48}, + [644] = {.lex_state = 48}, + [645] = {.lex_state = 48}, + [646] = {.lex_state = 48}, + [647] = {.lex_state = 48}, + [648] = {.lex_state = 48}, + [649] = {.lex_state = 48}, + [650] = {.lex_state = 48}, + [651] = {.lex_state = 48}, + [652] = {.lex_state = 48}, + [653] = {.lex_state = 48}, + [654] = {.lex_state = 48}, + [655] = {.lex_state = 48}, + [656] = {.lex_state = 48}, + [657] = {.lex_state = 48}, + [658] = {.lex_state = 48}, + [659] = {.lex_state = 48}, + [660] = {.lex_state = 48}, + [661] = {.lex_state = 48}, + [662] = {.lex_state = 48}, + [663] = {.lex_state = 48}, + [664] = {.lex_state = 966}, + [665] = {.lex_state = 966}, + [666] = {.lex_state = 966}, + [667] = {.lex_state = 966}, + [668] = {.lex_state = 966}, + [669] = {.lex_state = 966}, + [670] = {.lex_state = 966}, + [671] = {.lex_state = 966}, + [672] = {.lex_state = 966}, + [673] = {.lex_state = 966}, + [674] = {.lex_state = 966}, + [675] = {.lex_state = 43}, + [676] = {.lex_state = 966}, + [677] = {.lex_state = 966}, + [678] = {.lex_state = 966}, + [679] = {.lex_state = 43}, + [680] = {.lex_state = 966}, + [681] = {.lex_state = 36}, + [682] = {.lex_state = 36}, + [683] = {.lex_state = 36}, + [684] = {.lex_state = 36}, + [685] = {.lex_state = 36}, + [686] = {.lex_state = 36}, + [687] = {.lex_state = 36}, + [688] = {.lex_state = 36}, + [689] = {.lex_state = 36}, + [690] = {.lex_state = 33}, + [691] = {.lex_state = 43}, + [692] = {.lex_state = 43}, + [693] = {.lex_state = 33}, + [694] = {.lex_state = 43}, + [695] = {.lex_state = 43}, + [696] = {.lex_state = 43}, + [697] = {.lex_state = 43}, + [698] = {.lex_state = 43}, + [699] = {.lex_state = 43}, + [700] = {.lex_state = 43}, + [701] = {.lex_state = 43}, + [702] = {.lex_state = 43}, + [703] = {.lex_state = 43}, + [704] = {.lex_state = 43}, + [705] = {.lex_state = 43}, + [706] = {.lex_state = 43}, + [707] = {.lex_state = 43}, + [708] = {.lex_state = 43}, + [709] = {.lex_state = 43}, + [710] = {.lex_state = 43}, + [711] = {.lex_state = 43}, + [712] = {.lex_state = 43}, + [713] = {.lex_state = 43}, + [714] = {.lex_state = 43}, + [715] = {.lex_state = 43}, + [716] = {.lex_state = 43}, + [717] = {.lex_state = 43}, + [718] = {.lex_state = 43}, + [719] = {.lex_state = 43}, + [720] = {.lex_state = 43}, + [721] = {.lex_state = 43}, + [722] = {.lex_state = 43}, + [723] = {.lex_state = 43}, + [724] = {.lex_state = 43}, + [725] = {.lex_state = 43}, + [726] = {.lex_state = 43}, + [727] = {.lex_state = 43}, + [728] = {.lex_state = 43}, + [729] = {.lex_state = 43}, + [730] = {.lex_state = 43}, + [731] = {.lex_state = 43}, + [732] = {.lex_state = 43}, + [733] = {.lex_state = 43}, + [734] = {.lex_state = 43}, + [735] = {.lex_state = 43}, + [736] = {.lex_state = 43}, + [737] = {.lex_state = 43}, + [738] = {.lex_state = 43}, + [739] = {.lex_state = 43}, + [740] = {.lex_state = 43}, + [741] = {.lex_state = 43}, + [742] = {.lex_state = 43}, + [743] = {.lex_state = 43}, + [744] = {.lex_state = 40}, + [745] = {.lex_state = 40}, + [746] = {.lex_state = 40}, + [747] = {.lex_state = 40}, + [748] = {.lex_state = 40}, + [749] = {.lex_state = 40}, + [750] = {.lex_state = 40}, + [751] = {.lex_state = 40}, + [752] = {.lex_state = 40}, + [753] = {.lex_state = 40}, + [754] = {.lex_state = 40}, + [755] = {.lex_state = 40}, + [756] = {.lex_state = 40}, + [757] = {.lex_state = 40}, + [758] = {.lex_state = 40}, + [759] = {.lex_state = 40}, + [760] = {.lex_state = 40}, + [761] = {.lex_state = 40}, + [762] = {.lex_state = 40}, + [763] = {.lex_state = 40}, + [764] = {.lex_state = 40}, + [765] = {.lex_state = 40}, + [766] = {.lex_state = 40}, + [767] = {.lex_state = 40}, + [768] = {.lex_state = 40}, + [769] = {.lex_state = 40}, + [770] = {.lex_state = 40}, + [771] = {.lex_state = 40}, + [772] = {.lex_state = 40}, + [773] = {.lex_state = 40}, + [774] = {.lex_state = 40}, + [775] = {.lex_state = 40}, + [776] = {.lex_state = 40}, + [777] = {.lex_state = 40}, + [778] = {.lex_state = 40}, + [779] = {.lex_state = 40}, + [780] = {.lex_state = 40}, + [781] = {.lex_state = 40}, + [782] = {.lex_state = 40}, + [783] = {.lex_state = 40}, + [784] = {.lex_state = 40}, + [785] = {.lex_state = 40}, + [786] = {.lex_state = 40}, + [787] = {.lex_state = 40}, + [788] = {.lex_state = 40}, + [789] = {.lex_state = 40}, + [790] = {.lex_state = 40}, + [791] = {.lex_state = 40}, + [792] = {.lex_state = 40}, + [793] = {.lex_state = 40}, + [794] = {.lex_state = 40}, + [795] = {.lex_state = 40}, + [796] = {.lex_state = 40}, + [797] = {.lex_state = 40}, + [798] = {.lex_state = 40}, + [799] = {.lex_state = 40}, + [800] = {.lex_state = 40}, + [801] = {.lex_state = 40}, + [802] = {.lex_state = 40}, + [803] = {.lex_state = 40}, + [804] = {.lex_state = 40}, + [805] = {.lex_state = 40}, + [806] = {.lex_state = 40}, + [807] = {.lex_state = 40}, + [808] = {.lex_state = 40}, + [809] = {.lex_state = 40}, + [810] = {.lex_state = 40}, + [811] = {.lex_state = 40}, + [812] = {.lex_state = 40}, + [813] = {.lex_state = 40}, + [814] = {.lex_state = 40}, + [815] = {.lex_state = 40}, + [816] = {.lex_state = 40}, + [817] = {.lex_state = 40}, + [818] = {.lex_state = 40}, + [819] = {.lex_state = 40}, + [820] = {.lex_state = 40}, + [821] = {.lex_state = 40}, + [822] = {.lex_state = 40}, + [823] = {.lex_state = 40}, + [824] = {.lex_state = 40}, + [825] = {.lex_state = 40}, + [826] = {.lex_state = 40}, + [827] = {.lex_state = 40}, + [828] = {.lex_state = 40}, + [829] = {.lex_state = 40}, + [830] = {.lex_state = 40}, + [831] = {.lex_state = 40}, + [832] = {.lex_state = 40}, + [833] = {.lex_state = 40}, + [834] = {.lex_state = 40}, + [835] = {.lex_state = 40}, + [836] = {.lex_state = 40}, + [837] = {.lex_state = 40}, + [838] = {.lex_state = 40}, + [839] = {.lex_state = 40}, + [840] = {.lex_state = 40}, + [841] = {.lex_state = 40}, + [842] = {.lex_state = 40}, + [843] = {.lex_state = 40}, + [844] = {.lex_state = 40}, + [845] = {.lex_state = 40}, + [846] = {.lex_state = 40}, + [847] = {.lex_state = 40}, + [848] = {.lex_state = 40}, + [849] = {.lex_state = 40}, + [850] = {.lex_state = 40}, + [851] = {.lex_state = 40}, + [852] = {.lex_state = 40}, + [853] = {.lex_state = 40}, + [854] = {.lex_state = 40}, + [855] = {.lex_state = 40}, + [856] = {.lex_state = 40}, + [857] = {.lex_state = 40}, + [858] = {.lex_state = 40}, + [859] = {.lex_state = 40}, + [860] = {.lex_state = 40}, + [861] = {.lex_state = 40}, + [862] = {.lex_state = 40}, + [863] = {.lex_state = 40}, + [864] = {.lex_state = 40}, + [865] = {.lex_state = 40}, + [866] = {.lex_state = 40}, + [867] = {.lex_state = 40}, + [868] = {.lex_state = 40}, + [869] = {.lex_state = 40}, + [870] = {.lex_state = 40}, + [871] = {.lex_state = 40}, + [872] = {.lex_state = 40}, + [873] = {.lex_state = 40}, + [874] = {.lex_state = 40}, + [875] = {.lex_state = 40}, + [876] = {.lex_state = 40}, + [877] = {.lex_state = 40}, + [878] = {.lex_state = 40}, + [879] = {.lex_state = 40}, + [880] = {.lex_state = 40}, + [881] = {.lex_state = 40}, + [882] = {.lex_state = 40}, + [883] = {.lex_state = 40}, + [884] = {.lex_state = 41}, + [885] = {.lex_state = 40}, + [886] = {.lex_state = 40}, + [887] = {.lex_state = 40}, + [888] = {.lex_state = 40}, + [889] = {.lex_state = 40}, + [890] = {.lex_state = 40}, + [891] = {.lex_state = 40}, + [892] = {.lex_state = 40}, + [893] = {.lex_state = 40}, + [894] = {.lex_state = 40}, + [895] = {.lex_state = 40}, + [896] = {.lex_state = 40}, + [897] = {.lex_state = 40}, + [898] = {.lex_state = 40}, + [899] = {.lex_state = 40}, + [900] = {.lex_state = 40}, + [901] = {.lex_state = 99}, + [902] = {.lex_state = 99}, + [903] = {.lex_state = 958}, + [904] = {.lex_state = 40}, + [905] = {.lex_state = 40}, + [906] = {.lex_state = 40}, + [907] = {.lex_state = 40}, + [908] = {.lex_state = 40}, + [909] = {.lex_state = 40}, + [910] = {.lex_state = 40}, + [911] = {.lex_state = 40}, + [912] = {.lex_state = 40}, + [913] = {.lex_state = 40}, + [914] = {.lex_state = 40}, + [915] = {.lex_state = 40}, + [916] = {.lex_state = 40}, + [917] = {.lex_state = 40}, + [918] = {.lex_state = 40}, + [919] = {.lex_state = 40}, + [920] = {.lex_state = 40}, + [921] = {.lex_state = 40}, + [922] = {.lex_state = 40}, + [923] = {.lex_state = 40}, + [924] = {.lex_state = 40}, + [925] = {.lex_state = 40}, + [926] = {.lex_state = 40}, + [927] = {.lex_state = 40}, + [928] = {.lex_state = 40}, + [929] = {.lex_state = 40}, + [930] = {.lex_state = 40}, + [931] = {.lex_state = 40}, + [932] = {.lex_state = 40}, + [933] = {.lex_state = 40}, + [934] = {.lex_state = 40}, + [935] = {.lex_state = 40}, + [936] = {.lex_state = 40}, + [937] = {.lex_state = 40}, + [938] = {.lex_state = 40}, + [939] = {.lex_state = 40}, + [940] = {.lex_state = 40}, + [941] = {.lex_state = 40}, + [942] = {.lex_state = 40}, + [943] = {.lex_state = 40}, + [944] = {.lex_state = 40}, + [945] = {.lex_state = 958}, + [946] = {.lex_state = 40}, + [947] = {.lex_state = 40}, + [948] = {.lex_state = 40}, + [949] = {.lex_state = 40}, + [950] = {.lex_state = 40}, + [951] = {.lex_state = 40}, + [952] = {.lex_state = 40}, + [953] = {.lex_state = 40}, + [954] = {.lex_state = 40}, + [955] = {.lex_state = 40}, + [956] = {.lex_state = 40}, + [957] = {.lex_state = 40}, + [958] = {.lex_state = 40}, + [959] = {.lex_state = 40}, + [960] = {.lex_state = 40}, + [961] = {.lex_state = 40}, + [962] = {.lex_state = 40}, + [963] = {.lex_state = 40}, + [964] = {.lex_state = 40}, + [965] = {.lex_state = 40}, + [966] = {.lex_state = 40}, + [967] = {.lex_state = 40}, + [968] = {.lex_state = 40}, + [969] = {.lex_state = 40}, + [970] = {.lex_state = 40}, + [971] = {.lex_state = 40}, + [972] = {.lex_state = 40}, + [973] = {.lex_state = 40}, + [974] = {.lex_state = 40}, + [975] = {.lex_state = 40}, + [976] = {.lex_state = 40}, + [977] = {.lex_state = 40}, + [978] = {.lex_state = 40}, + [979] = {.lex_state = 40}, + [980] = {.lex_state = 40}, + [981] = {.lex_state = 40}, + [982] = {.lex_state = 40}, + [983] = {.lex_state = 40}, + [984] = {.lex_state = 40}, + [985] = {.lex_state = 40}, + [986] = {.lex_state = 40}, + [987] = {.lex_state = 40}, + [988] = {.lex_state = 40}, + [989] = {.lex_state = 40}, + [990] = {.lex_state = 40}, + [991] = {.lex_state = 40}, + [992] = {.lex_state = 40}, + [993] = {.lex_state = 40}, + [994] = {.lex_state = 40}, + [995] = {.lex_state = 40}, + [996] = {.lex_state = 40}, + [997] = {.lex_state = 40}, + [998] = {.lex_state = 40}, + [999] = {.lex_state = 40}, + [1000] = {.lex_state = 40}, + [1001] = {.lex_state = 40}, + [1002] = {.lex_state = 47}, + [1003] = {.lex_state = 47}, + [1004] = {.lex_state = 47}, + [1005] = {.lex_state = 47}, + [1006] = {.lex_state = 42}, + [1007] = {.lex_state = 42}, + [1008] = {.lex_state = 42}, + [1009] = {.lex_state = 42}, + [1010] = {.lex_state = 47}, + [1011] = {.lex_state = 35}, + [1012] = {.lex_state = 47}, + [1013] = {.lex_state = 214}, + [1014] = {.lex_state = 47}, + [1015] = {.lex_state = 214}, + [1016] = {.lex_state = 47}, + [1017] = {.lex_state = 214}, + [1018] = {.lex_state = 35}, + [1019] = {.lex_state = 214}, + [1020] = {.lex_state = 214}, + [1021] = {.lex_state = 214}, + [1022] = {.lex_state = 37}, + [1023] = {.lex_state = 210}, + [1024] = {.lex_state = 210}, + [1025] = {.lex_state = 941}, + [1026] = {.lex_state = 42}, + [1027] = {.lex_state = 42}, + [1028] = {.lex_state = 103}, + [1029] = {.lex_state = 35}, + [1030] = {.lex_state = 205}, + [1031] = {.lex_state = 35}, + [1032] = {.lex_state = 205}, + [1033] = {.lex_state = 35}, + [1034] = {.lex_state = 41}, + [1035] = {.lex_state = 941}, + [1036] = {.lex_state = 47}, + [1037] = {.lex_state = 47}, + [1038] = {.lex_state = 47}, + [1039] = {.lex_state = 47}, + [1040] = {.lex_state = 37}, + [1041] = {.lex_state = 955}, + [1042] = {.lex_state = 47}, + [1043] = {.lex_state = 999}, + [1044] = {.lex_state = 47}, + [1045] = {.lex_state = 940}, + [1046] = {.lex_state = 41}, + [1047] = {.lex_state = 122}, + [1048] = {.lex_state = 940}, + [1049] = {.lex_state = 103}, + [1050] = {.lex_state = 47}, + [1051] = {.lex_state = 35}, + [1052] = {.lex_state = 951}, + [1053] = {.lex_state = 103}, + [1054] = {.lex_state = 942}, + [1055] = {.lex_state = 47}, + [1056] = {.lex_state = 47}, + [1057] = {.lex_state = 103}, + [1058] = {.lex_state = 122}, + [1059] = {.lex_state = 103}, + [1060] = {.lex_state = 945}, + [1061] = {.lex_state = 954}, + [1062] = {.lex_state = 954}, + [1063] = {.lex_state = 940}, + [1064] = {.lex_state = 978}, + [1065] = {.lex_state = 122}, + [1066] = {.lex_state = 954}, + [1067] = {.lex_state = 999}, + [1068] = {.lex_state = 944}, + [1069] = {.lex_state = 103}, + [1070] = {.lex_state = 999}, + [1071] = {.lex_state = 942}, + [1072] = {.lex_state = 982}, + [1073] = {.lex_state = 103}, + [1074] = {.lex_state = 999}, + [1075] = {.lex_state = 955}, + [1076] = {.lex_state = 951}, + [1077] = {.lex_state = 944}, + [1078] = {.lex_state = 954}, + [1079] = {.lex_state = 103}, + [1080] = {.lex_state = 940}, + [1081] = {.lex_state = 41}, + [1082] = {.lex_state = 954}, + [1083] = {.lex_state = 944}, + [1084] = {.lex_state = 944}, + [1085] = {.lex_state = 999}, + [1086] = {.lex_state = 999}, + [1087] = {.lex_state = 999}, + [1088] = {.lex_state = 122}, + [1089] = {.lex_state = 122}, + [1090] = {.lex_state = 954}, + [1091] = {.lex_state = 973}, + [1092] = {.lex_state = 973}, + [1093] = {.lex_state = 41}, + [1094] = {.lex_state = 41}, + [1095] = {.lex_state = 41}, + [1096] = {.lex_state = 954}, + [1097] = {.lex_state = 954}, + [1098] = {.lex_state = 41}, + [1099] = {.lex_state = 41}, + [1100] = {.lex_state = 943}, + [1101] = {.lex_state = 42}, + [1102] = {.lex_state = 945}, + [1103] = {.lex_state = 945}, + [1104] = {.lex_state = 41}, + [1105] = {.lex_state = 999}, + [1106] = {.lex_state = 41}, + [1107] = {.lex_state = 945}, + [1108] = {.lex_state = 945}, + [1109] = {.lex_state = 41}, + [1110] = {.lex_state = 41}, + [1111] = {.lex_state = 973}, + [1112] = {.lex_state = 952}, + [1113] = {.lex_state = 41}, + [1114] = {.lex_state = 982}, + [1115] = {.lex_state = 978}, + [1116] = {.lex_state = 103}, + [1117] = {.lex_state = 41}, + [1118] = {.lex_state = 41}, + [1119] = {.lex_state = 41}, + [1120] = {.lex_state = 41}, + [1121] = {.lex_state = 41}, + [1122] = {.lex_state = 41}, + [1123] = {.lex_state = 41}, + [1124] = {.lex_state = 41}, + [1125] = {.lex_state = 41}, + [1126] = {.lex_state = 41}, + [1127] = {.lex_state = 41}, + [1128] = {.lex_state = 41}, + [1129] = {.lex_state = 41}, + [1130] = {.lex_state = 41}, + [1131] = {.lex_state = 41}, + [1132] = {.lex_state = 41}, + [1133] = {.lex_state = 41}, + [1134] = {.lex_state = 41}, + [1135] = {.lex_state = 41}, + [1136] = {.lex_state = 41}, + [1137] = {.lex_state = 41}, + [1138] = {.lex_state = 41}, + [1139] = {.lex_state = 41}, + [1140] = {.lex_state = 945}, + [1141] = {.lex_state = 41}, + [1142] = {.lex_state = 41}, + [1143] = {.lex_state = 41}, + [1144] = {.lex_state = 41}, + [1145] = {.lex_state = 41}, + [1146] = {.lex_state = 999}, + [1147] = {.lex_state = 41}, + [1148] = {.lex_state = 41}, + [1149] = {.lex_state = 41}, + [1150] = {.lex_state = 41}, + [1151] = {.lex_state = 103}, + [1152] = {.lex_state = 103}, + [1153] = {.lex_state = 41}, + [1154] = {.lex_state = 41}, + [1155] = {.lex_state = 41}, + [1156] = {.lex_state = 41}, + [1157] = {.lex_state = 41}, + [1158] = {.lex_state = 41}, + [1159] = {.lex_state = 41}, + [1160] = {.lex_state = 41}, + [1161] = {.lex_state = 41}, + [1162] = {.lex_state = 41}, + [1163] = {.lex_state = 41}, + [1164] = {.lex_state = 41}, + [1165] = {.lex_state = 41}, + [1166] = {.lex_state = 42}, + [1167] = {.lex_state = 41}, + [1168] = {.lex_state = 979}, + [1169] = {.lex_state = 979}, + [1170] = {.lex_state = 122}, + [1171] = {.lex_state = 122}, + [1172] = {.lex_state = 122}, + [1173] = {.lex_state = 999}, + [1174] = {.lex_state = 999}, + [1175] = {.lex_state = 41}, + [1176] = {.lex_state = 945}, + [1177] = {.lex_state = 999}, + [1178] = {.lex_state = 945}, + [1179] = {.lex_state = 999}, + [1180] = {.lex_state = 999}, + [1181] = {.lex_state = 999}, + [1182] = {.lex_state = 122}, + [1183] = {.lex_state = 999}, + [1184] = {.lex_state = 973}, + [1185] = {.lex_state = 973}, + [1186] = {.lex_state = 999}, + [1187] = {.lex_state = 979}, + [1188] = {.lex_state = 946}, + [1189] = {.lex_state = 979}, + [1190] = {.lex_state = 122}, + [1191] = {.lex_state = 945}, + [1192] = {.lex_state = 946}, + [1193] = {.lex_state = 973}, + [1194] = {.lex_state = 973}, + [1195] = {.lex_state = 980}, + [1196] = {.lex_state = 943}, + [1197] = {.lex_state = 980}, + [1198] = {.lex_state = 973}, + [1199] = {.lex_state = 980}, + [1200] = {.lex_state = 945}, + [1201] = {.lex_state = 980}, + [1202] = {.lex_state = 42}, + [1203] = {.lex_state = 980}, + [1204] = {.lex_state = 103}, + [1205] = {.lex_state = 999}, + [1206] = {.lex_state = 122}, + [1207] = {.lex_state = 952}, + [1208] = {.lex_state = 999}, + [1209] = {.lex_state = 946}, + [1210] = {.lex_state = 971}, + [1211] = {.lex_state = 972}, + [1212] = {.lex_state = 971}, + [1213] = {.lex_state = 973}, + [1214] = {.lex_state = 947}, + [1215] = {.lex_state = 970}, + [1216] = {.lex_state = 947}, + [1217] = {.lex_state = 1007}, + [1218] = {.lex_state = 947}, + [1219] = {.lex_state = 41}, + [1220] = {.lex_state = 999}, + [1221] = {.lex_state = 999}, + [1222] = {.lex_state = 971}, + [1223] = {.lex_state = 947}, + [1224] = {.lex_state = 122}, + [1225] = {.lex_state = 999}, + [1226] = {.lex_state = 106}, + [1227] = {.lex_state = 973}, + [1228] = {.lex_state = 980}, + [1229] = {.lex_state = 103}, + [1230] = {.lex_state = 1001}, + [1231] = {.lex_state = 980}, + [1232] = {.lex_state = 980}, + [1233] = {.lex_state = 971}, + [1234] = {.lex_state = 999}, + [1235] = {.lex_state = 971}, + [1236] = {.lex_state = 107}, + [1237] = {.lex_state = 980}, + [1238] = {.lex_state = 999}, + [1239] = {.lex_state = 947}, + [1240] = {.lex_state = 999}, + [1241] = {.lex_state = 946}, + [1242] = {.lex_state = 947}, + [1243] = {.lex_state = 980}, + [1244] = {.lex_state = 970}, + [1245] = {.lex_state = 103}, + [1246] = {.lex_state = 947}, + [1247] = {.lex_state = 948}, + [1248] = {.lex_state = 1011}, + [1249] = {.lex_state = 1011}, + [1250] = {.lex_state = 947}, + [1251] = {.lex_state = 1042}, + [1252] = {.lex_state = 973}, + [1253] = {.lex_state = 108}, + [1254] = {.lex_state = 973}, + [1255] = {.lex_state = 973}, + [1256] = {.lex_state = 953}, + [1257] = {.lex_state = 976}, + [1258] = {.lex_state = 976}, + [1259] = {.lex_state = 968}, + [1260] = {.lex_state = 1044}, + [1261] = {.lex_state = 103}, + [1262] = {.lex_state = 976}, + [1263] = {.lex_state = 976}, + [1264] = {.lex_state = 976}, + [1265] = {.lex_state = 976}, + [1266] = {.lex_state = 976}, + [1267] = {.lex_state = 122}, + [1268] = {.lex_state = 968}, + [1269] = {.lex_state = 976}, + [1270] = {.lex_state = 1015}, + [1271] = {.lex_state = 999}, + [1272] = {.lex_state = 947}, + [1273] = {.lex_state = 976}, + [1274] = {.lex_state = 971}, + [1275] = {.lex_state = 976}, + [1276] = {.lex_state = 976}, + [1277] = {.lex_state = 976}, + [1278] = {.lex_state = 972}, + [1279] = {.lex_state = 971}, + [1280] = {.lex_state = 976}, + [1281] = {.lex_state = 976}, + [1282] = {.lex_state = 108}, + [1283] = {.lex_state = 971}, + [1284] = {.lex_state = 976}, + [1285] = {.lex_state = 976}, + [1286] = {.lex_state = 976}, + [1287] = {.lex_state = 976}, + [1288] = {.lex_state = 976}, + [1289] = {.lex_state = 976}, [1290] = {.lex_state = 1001}, - [1291] = {.lex_state = 1038}, - [1292] = {.lex_state = 1059}, - [1293] = {.lex_state = 44}, - [1294] = {.lex_state = 1015}, - [1295] = {.lex_state = 44}, - [1296] = {.lex_state = 44}, - [1297] = {.lex_state = 1059}, - [1298] = {.lex_state = 44}, - [1299] = {.lex_state = 163}, - [1300] = {.lex_state = 44}, - [1301] = {.lex_state = 1002}, - [1302] = {.lex_state = 163}, - [1303] = {.lex_state = 163}, - [1304] = {.lex_state = 1015}, - [1305] = {.lex_state = 1004}, - [1306] = {.lex_state = 46}, - [1307] = {.lex_state = 1015}, - [1308] = {.lex_state = 1003}, - [1309] = {.lex_state = 44}, - [1310] = {.lex_state = 1003}, - [1311] = {.lex_state = 44}, - [1312] = {.lex_state = 1015}, - [1313] = {.lex_state = 44}, - [1314] = {.lex_state = 1039}, - [1315] = {.lex_state = 44}, - [1316] = {.lex_state = 44}, - [1317] = {.lex_state = 46}, - [1318] = {.lex_state = 1039}, - [1319] = {.lex_state = 182}, - [1320] = {.lex_state = 44}, - [1321] = {.lex_state = 182}, - [1322] = {.lex_state = 182}, - [1323] = {.lex_state = 44}, - [1324] = {.lex_state = 44}, - [1325] = {.lex_state = 1059}, - [1326] = {.lex_state = 44}, - [1327] = {.lex_state = 1004}, - [1328] = {.lex_state = 1059}, - [1329] = {.lex_state = 1004}, - [1330] = {.lex_state = 1004}, - [1331] = {.lex_state = 1004}, - [1332] = {.lex_state = 44}, - [1333] = {.lex_state = 44}, - [1334] = {.lex_state = 44}, - [1335] = {.lex_state = 44}, - [1336] = {.lex_state = 1059}, - [1337] = {.lex_state = 1059}, - [1338] = {.lex_state = 44}, - [1339] = {.lex_state = 44}, - [1340] = {.lex_state = 44}, - [1341] = {.lex_state = 44}, - [1342] = {.lex_state = 1033}, - [1343] = {.lex_state = 1011}, - [1344] = {.lex_state = 44}, - [1345] = {.lex_state = 44}, - [1346] = {.lex_state = 44}, - [1347] = {.lex_state = 44}, - [1348] = {.lex_state = 1042}, - [1349] = {.lex_state = 44}, - [1350] = {.lex_state = 44}, - [1351] = {.lex_state = 44}, - [1352] = {.lex_state = 44}, - [1353] = {.lex_state = 44}, - [1354] = {.lex_state = 44}, - [1355] = {.lex_state = 44}, - [1356] = {.lex_state = 44}, - [1357] = {.lex_state = 44}, - [1358] = {.lex_state = 44}, - [1359] = {.lex_state = 44}, - [1360] = {.lex_state = 44}, - [1361] = {.lex_state = 44}, - [1362] = {.lex_state = 44}, - [1363] = {.lex_state = 44}, - [1364] = {.lex_state = 44}, - [1365] = {.lex_state = 44}, - [1366] = {.lex_state = 44}, - [1367] = {.lex_state = 44}, - [1368] = {.lex_state = 44}, - [1369] = {.lex_state = 44}, - [1370] = {.lex_state = 44}, - [1371] = {.lex_state = 44}, - [1372] = {.lex_state = 44}, - [1373] = {.lex_state = 44}, - [1374] = {.lex_state = 44}, - [1375] = {.lex_state = 44}, - [1376] = {.lex_state = 44}, - [1377] = {.lex_state = 44}, - [1378] = {.lex_state = 44}, - [1379] = {.lex_state = 1038}, - [1380] = {.lex_state = 182}, - [1381] = {.lex_state = 182}, - [1382] = {.lex_state = 1033}, - [1383] = {.lex_state = 44}, - [1384] = {.lex_state = 44}, - [1385] = {.lex_state = 1059}, - [1386] = {.lex_state = 1002}, - [1387] = {.lex_state = 1040}, - [1388] = {.lex_state = 1040}, - [1389] = {.lex_state = 1040}, - [1390] = {.lex_state = 1040}, - [1391] = {.lex_state = 1011}, - [1392] = {.lex_state = 1059}, - [1393] = {.lex_state = 1033}, - [1394] = {.lex_state = 1059}, - [1395] = {.lex_state = 46}, - [1396] = {.lex_state = 1005}, - [1397] = {.lex_state = 1004}, - [1398] = {.lex_state = 1033}, - [1399] = {.lex_state = 182}, - [1400] = {.lex_state = 1033}, - [1401] = {.lex_state = 1059}, - [1402] = {.lex_state = 1059}, - [1403] = {.lex_state = 1059}, - [1404] = {.lex_state = 1005}, - [1405] = {.lex_state = 1039}, - [1406] = {.lex_state = 1033}, - [1407] = {.lex_state = 1040}, - [1408] = {.lex_state = 1004}, - [1409] = {.lex_state = 163}, - [1410] = {.lex_state = 1004}, - [1411] = {.lex_state = 1004}, - [1412] = {.lex_state = 1039}, - [1413] = {.lex_state = 182}, - [1414] = {.lex_state = 182}, - [1415] = {.lex_state = 1006}, - [1416] = {.lex_state = 1032}, - [1417] = {.lex_state = 1061}, - [1418] = {.lex_state = 1067}, - [1419] = {.lex_state = 1040}, - [1420] = {.lex_state = 182}, - [1421] = {.lex_state = 1040}, - [1422] = {.lex_state = 1006}, - [1423] = {.lex_state = 1059}, - [1424] = {.lex_state = 1059}, - [1425] = {.lex_state = 1006}, - [1426] = {.lex_state = 1059}, - [1427] = {.lex_state = 1006}, - [1428] = {.lex_state = 163}, - [1429] = {.lex_state = 1059}, - [1430] = {.lex_state = 44}, - [1431] = {.lex_state = 1006}, - [1432] = {.lex_state = 1031}, - [1433] = {.lex_state = 1040}, - [1434] = {.lex_state = 1031}, - [1435] = {.lex_state = 1005}, - [1436] = {.lex_state = 166}, - [1437] = {.lex_state = 1040}, - [1438] = {.lex_state = 1040}, - [1439] = {.lex_state = 1005}, - [1440] = {.lex_state = 1033}, - [1441] = {.lex_state = 1033}, - [1442] = {.lex_state = 1031}, - [1443] = {.lex_state = 1006}, - [1444] = {.lex_state = 1030}, - [1445] = {.lex_state = 1031}, - [1446] = {.lex_state = 1059}, - [1447] = {.lex_state = 167}, - [1448] = {.lex_state = 1031}, - [1449] = {.lex_state = 1036}, - [1450] = {.lex_state = 182}, - [1451] = {.lex_state = 1031}, - [1452] = {.lex_state = 1031}, - [1453] = {.lex_state = 185}, - [1454] = {.lex_state = 1007}, - [1455] = {.lex_state = 1036}, - [1456] = {.lex_state = 1071}, - [1457] = {.lex_state = 1006}, - [1458] = {.lex_state = 1036}, - [1459] = {.lex_state = 1071}, - [1460] = {.lex_state = 1036}, - [1461] = {.lex_state = 1006}, - [1462] = {.lex_state = 1102}, + [1291] = {.lex_state = 976}, + [1292] = {.lex_state = 947}, + [1293] = {.lex_state = 1007}, + [1294] = {.lex_state = 138}, + [1295] = {.lex_state = 971}, + [1296] = {.lex_state = 971}, + [1297] = {.lex_state = 976}, + [1298] = {.lex_state = 136}, + [1299] = {.lex_state = 947}, + [1300] = {.lex_state = 123}, + [1301] = {.lex_state = 947}, + [1302] = {.lex_state = 125}, + [1303] = {.lex_state = 976}, + [1304] = {.lex_state = 1042}, + [1305] = {.lex_state = 969}, + [1306] = {.lex_state = 969}, + [1307] = {.lex_state = 969}, + [1308] = {.lex_state = 104}, + [1309] = {.lex_state = 976}, + [1310] = {.lex_state = 129}, + [1311] = {.lex_state = 969}, + [1312] = {.lex_state = 109}, + [1313] = {.lex_state = 104}, + [1314] = {.lex_state = 1046}, + [1315] = {.lex_state = 976}, + [1316] = {.lex_state = 976}, + [1317] = {.lex_state = 949}, + [1318] = {.lex_state = 999}, + [1319] = {.lex_state = 969}, + [1320] = {.lex_state = 999}, + [1321] = {.lex_state = 122}, + [1322] = {.lex_state = 976}, + [1323] = {.lex_state = 948}, + [1324] = {.lex_state = 969}, + [1325] = {.lex_state = 140}, + [1326] = {.lex_state = 953}, + [1327] = {.lex_state = 140}, + [1328] = {.lex_state = 1044}, + [1329] = {.lex_state = 109}, + [1330] = {.lex_state = 1015}, + [1331] = {.lex_state = 122}, + [1332] = {.lex_state = 969}, + [1333] = {.lex_state = 976}, + [1334] = {.lex_state = 1011}, + [1335] = {.lex_state = 1015}, + [1336] = {.lex_state = 1046}, + [1337] = {.lex_state = 949}, + [1338] = {.lex_state = 976}, + [1339] = {.lex_state = 1015}, + [1340] = {.lex_state = 969}, + [1341] = {.lex_state = 973}, + [1342] = {.lex_state = 976}, + [1343] = {.lex_state = 109}, + [1344] = {.lex_state = 976}, + [1345] = {.lex_state = 976}, + [1346] = {.lex_state = 976}, + [1347] = {.lex_state = 1015}, + [1348] = {.lex_state = 973}, + [1349] = {.lex_state = 973}, + [1350] = {.lex_state = 976}, + [1351] = {.lex_state = 968}, + [1352] = {.lex_state = 976}, + [1353] = {.lex_state = 969}, + [1354] = {.lex_state = 1011}, + [1355] = {.lex_state = 976}, + [1356] = {.lex_state = 968}, + [1357] = {.lex_state = 969}, + [1358] = {.lex_state = 976}, + [1359] = {.lex_state = 969}, + [1360] = {.lex_state = 976}, + [1361] = {.lex_state = 976}, + [1362] = {.lex_state = 127}, + [1363] = {.lex_state = 976}, + [1364] = {.lex_state = 109}, + [1365] = {.lex_state = 976}, + [1366] = {.lex_state = 976}, + [1367] = {.lex_state = 976}, + [1368] = {.lex_state = 969}, + [1369] = {.lex_state = 969}, + [1370] = {.lex_state = 976}, + [1371] = {.lex_state = 969}, + [1372] = {.lex_state = 976}, + [1373] = {.lex_state = 976}, + [1374] = {.lex_state = 976}, + [1375] = {.lex_state = 969}, + [1376] = {.lex_state = 976}, + [1377] = {.lex_state = 127}, + [1378] = {.lex_state = 1015}, + [1379] = {.lex_state = 961}, + [1380] = {.lex_state = 74}, + [1381] = {.lex_state = 1048}, + [1382] = {.lex_state = 142}, + [1383] = {.lex_state = 950}, + [1384] = {.lex_state = 969}, + [1385] = {.lex_state = 74}, + [1386] = {.lex_state = 74}, + [1387] = {.lex_state = 74}, + [1388] = {.lex_state = 74}, + [1389] = {.lex_state = 105}, + [1390] = {.lex_state = 1046}, + [1391] = {.lex_state = 74}, + [1392] = {.lex_state = 74}, + [1393] = {.lex_state = 74}, + [1394] = {.lex_state = 74}, + [1395] = {.lex_state = 129}, + [1396] = {.lex_state = 950}, + [1397] = {.lex_state = 74}, + [1398] = {.lex_state = 74}, + [1399] = {.lex_state = 74}, + [1400] = {.lex_state = 977}, + [1401] = {.lex_state = 949}, + [1402] = {.lex_state = 969}, + [1403] = {.lex_state = 969}, + [1404] = {.lex_state = 950}, + [1405] = {.lex_state = 989}, + [1406] = {.lex_state = 969}, + [1407] = {.lex_state = 1015}, + [1408] = {.lex_state = 969}, + [1409] = {.lex_state = 939}, + [1410] = {.lex_state = 105}, + [1411] = {.lex_state = 1046}, + [1412] = {.lex_state = 1048}, + [1413] = {.lex_state = 142}, + [1414] = {.lex_state = 1015}, + [1415] = {.lex_state = 969}, + [1416] = {.lex_state = 974}, + [1417] = {.lex_state = 939}, + [1418] = {.lex_state = 989}, + [1419] = {.lex_state = 950}, + [1420] = {.lex_state = 950}, + [1421] = {.lex_state = 974}, + [1422] = {.lex_state = 142}, + [1423] = {.lex_state = 974}, + [1424] = {.lex_state = 1015}, + [1425] = {.lex_state = 949}, + [1426] = {.lex_state = 142}, + [1427] = {.lex_state = 989}, + [1428] = {.lex_state = 950}, + [1429] = {.lex_state = 1048}, + [1430] = {.lex_state = 969}, + [1431] = {.lex_state = 974}, + [1432] = {.lex_state = 975}, + [1433] = {.lex_state = 74}, + [1434] = {.lex_state = 74}, + [1435] = {.lex_state = 969}, + [1436] = {.lex_state = 969}, + [1437] = {.lex_state = 976}, + [1438] = {.lex_state = 989}, + [1439] = {.lex_state = 989}, + [1440] = {.lex_state = 950}, + [1441] = {.lex_state = 74}, + [1442] = {.lex_state = 1048}, + [1443] = {.lex_state = 969}, + [1444] = {.lex_state = 939}, + [1445] = {.lex_state = 109}, + [1446] = {.lex_state = 976}, + [1447] = {.lex_state = 74}, + [1448] = {.lex_state = 969}, + [1449] = {.lex_state = 969}, + [1450] = {.lex_state = 969}, + [1451] = {.lex_state = 1015}, + [1452] = {.lex_state = 969}, + [1453] = {.lex_state = 950}, + [1454] = {.lex_state = 974}, + [1455] = {.lex_state = 129}, + [1456] = {.lex_state = 105}, + [1457] = {.lex_state = 999}, + [1458] = {.lex_state = 74}, + [1459] = {.lex_state = 999}, + [1460] = {.lex_state = 950}, + [1461] = {.lex_state = 74}, + [1462] = {.lex_state = 1036}, [1463] = {.lex_state = 1036}, - [1464] = {.lex_state = 1036}, - [1465] = {.lex_state = 1033}, - [1466] = {.lex_state = 1036}, - [1467] = {.lex_state = 1036}, - [1468] = {.lex_state = 1104}, - [1469] = {.lex_state = 1036}, - [1470] = {.lex_state = 1033}, - [1471] = {.lex_state = 1033}, - [1472] = {.lex_state = 1012}, - [1473] = {.lex_state = 1036}, - [1474] = {.lex_state = 163}, - [1475] = {.lex_state = 1059}, - [1476] = {.lex_state = 1036}, - [1477] = {.lex_state = 1006}, - [1478] = {.lex_state = 1030}, - [1479] = {.lex_state = 1036}, - [1480] = {.lex_state = 1036}, - [1481] = {.lex_state = 1036}, - [1482] = {.lex_state = 1061}, - [1483] = {.lex_state = 1036}, - [1484] = {.lex_state = 1006}, - [1485] = {.lex_state = 1006}, - [1486] = {.lex_state = 168}, - [1487] = {.lex_state = 1036}, - [1488] = {.lex_state = 168}, - [1489] = {.lex_state = 1075}, - [1490] = {.lex_state = 1036}, - [1491] = {.lex_state = 1006}, - [1492] = {.lex_state = 183}, - [1493] = {.lex_state = 1036}, - [1494] = {.lex_state = 1028}, - [1495] = {.lex_state = 1059}, - [1496] = {.lex_state = 1036}, - [1497] = {.lex_state = 1067}, - [1498] = {.lex_state = 1036}, - [1499] = {.lex_state = 198}, - [1500] = {.lex_state = 196}, - [1501] = {.lex_state = 1028}, - [1502] = {.lex_state = 1031}, - [1503] = {.lex_state = 1036}, - [1504] = {.lex_state = 1031}, - [1505] = {.lex_state = 1036}, - [1506] = {.lex_state = 1032}, - [1507] = {.lex_state = 1031}, - [1508] = {.lex_state = 1036}, - [1509] = {.lex_state = 1036}, - [1510] = {.lex_state = 1028}, - [1511] = {.lex_state = 1008}, - [1512] = {.lex_state = 1029}, - [1513] = {.lex_state = 1036}, - [1514] = {.lex_state = 1029}, - [1515] = {.lex_state = 1036}, - [1516] = {.lex_state = 126}, - [1517] = {.lex_state = 1036}, - [1518] = {.lex_state = 1007}, - [1519] = {.lex_state = 200}, - [1520] = {.lex_state = 1029}, - [1521] = {.lex_state = 1075}, - [1522] = {.lex_state = 1036}, - [1523] = {.lex_state = 1036}, - [1524] = {.lex_state = 1028}, - [1525] = {.lex_state = 1036}, - [1526] = {.lex_state = 1106}, - [1527] = {.lex_state = 1075}, - [1528] = {.lex_state = 164}, - [1529] = {.lex_state = 1036}, + [1464] = {.lex_state = 967}, + [1465] = {.lex_state = 969}, + [1466] = {.lex_state = 939}, + [1467] = {.lex_state = 129}, + [1468] = {.lex_state = 969}, + [1469] = {.lex_state = 1048}, + [1470] = {.lex_state = 969}, + [1471] = {.lex_state = 129}, + [1472] = {.lex_state = 939}, + [1473] = {.lex_state = 74}, + [1474] = {.lex_state = 981}, + [1475] = {.lex_state = 950}, + [1476] = {.lex_state = 984}, + [1477] = {.lex_state = 950}, + [1478] = {.lex_state = 939}, + [1479] = {.lex_state = 975}, + [1480] = {.lex_state = 939}, + [1481] = {.lex_state = 939}, + [1482] = {.lex_state = 965}, + [1483] = {.lex_state = 974}, + [1484] = {.lex_state = 121}, + [1485] = {.lex_state = 989}, + [1486] = {.lex_state = 989}, + [1487] = {.lex_state = 974}, + [1488] = {.lex_state = 976}, + [1489] = {.lex_state = 38}, + [1490] = {.lex_state = 990}, + [1491] = {.lex_state = 38}, + [1492] = {.lex_state = 990}, + [1493] = {.lex_state = 74}, + [1494] = {.lex_state = 939}, + [1495] = {.lex_state = 1036}, + [1496] = {.lex_state = 939}, + [1497] = {.lex_state = 1048}, + [1498] = {.lex_state = 962}, + [1499] = {.lex_state = 950}, + [1500] = {.lex_state = 1036}, + [1501] = {.lex_state = 939}, + [1502] = {.lex_state = 1048}, + [1503] = {.lex_state = 974}, + [1504] = {.lex_state = 1048}, + [1505] = {.lex_state = 939}, + [1506] = {.lex_state = 977}, + [1507] = {.lex_state = 981}, + [1508] = {.lex_state = 950}, + [1509] = {.lex_state = 962}, + [1510] = {.lex_state = 950}, + [1511] = {.lex_state = 989}, + [1512] = {.lex_state = 142}, + [1513] = {.lex_state = 1048}, + [1514] = {.lex_state = 74}, + [1515] = {.lex_state = 950}, + [1516] = {.lex_state = 974}, + [1517] = {.lex_state = 984}, + [1518] = {.lex_state = 984}, + [1519] = {.lex_state = 990}, + [1520] = {.lex_state = 74}, + [1521] = {.lex_state = 990}, + [1522] = {.lex_state = 989}, + [1523] = {.lex_state = 964}, + [1524] = {.lex_state = 38}, + [1525] = {.lex_state = 964}, + [1526] = {.lex_state = 974}, + [1527] = {.lex_state = 950}, + [1528] = {.lex_state = 961}, + [1529] = {.lex_state = 939}, [1530] = {.lex_state = 1036}, - [1531] = {.lex_state = 1029}, - [1532] = {.lex_state = 126}, - [1533] = {.lex_state = 1075}, - [1534] = {.lex_state = 1036}, - [1535] = {.lex_state = 126}, - [1536] = {.lex_state = 126}, - [1537] = {.lex_state = 126}, - [1538] = {.lex_state = 1036}, - [1539] = {.lex_state = 1029}, - [1540] = {.lex_state = 126}, - [1541] = {.lex_state = 126}, - [1542] = {.lex_state = 1029}, - [1543] = {.lex_state = 1029}, - [1544] = {.lex_state = 1036}, - [1545] = {.lex_state = 126}, - [1546] = {.lex_state = 126}, - [1547] = {.lex_state = 1036}, - [1548] = {.lex_state = 1092}, - [1549] = {.lex_state = 1036}, - [1550] = {.lex_state = 1008}, - [1551] = {.lex_state = 1036}, - [1552] = {.lex_state = 1071}, - [1553] = {.lex_state = 182}, - [1554] = {.lex_state = 169}, - [1555] = {.lex_state = 189}, - [1556] = {.lex_state = 1106}, - [1557] = {.lex_state = 1036}, - [1558] = {.lex_state = 1104}, - [1559] = {.lex_state = 1029}, - [1560] = {.lex_state = 1092}, - [1561] = {.lex_state = 187}, - [1562] = {.lex_state = 1029}, - [1563] = {.lex_state = 126}, - [1564] = {.lex_state = 1029}, - [1565] = {.lex_state = 1102}, - [1566] = {.lex_state = 187}, - [1567] = {.lex_state = 126}, - [1568] = {.lex_state = 126}, - [1569] = {.lex_state = 1036}, - [1570] = {.lex_state = 1036}, - [1571] = {.lex_state = 126}, - [1572] = {.lex_state = 1029}, - [1573] = {.lex_state = 126}, - [1574] = {.lex_state = 1033}, - [1575] = {.lex_state = 1036}, - [1576] = {.lex_state = 1036}, - [1577] = {.lex_state = 1036}, - [1578] = {.lex_state = 200}, - [1579] = {.lex_state = 1036}, - [1580] = {.lex_state = 1029}, - [1581] = {.lex_state = 1033}, - [1582] = {.lex_state = 126}, - [1583] = {.lex_state = 1029}, - [1584] = {.lex_state = 169}, - [1585] = {.lex_state = 1012}, - [1586] = {.lex_state = 1036}, - [1587] = {.lex_state = 1036}, - [1588] = {.lex_state = 126}, - [1589] = {.lex_state = 1071}, - [1590] = {.lex_state = 1075}, - [1591] = {.lex_state = 1036}, - [1592] = {.lex_state = 1029}, - [1593] = {.lex_state = 169}, - [1594] = {.lex_state = 1075}, - [1595] = {.lex_state = 126}, - [1596] = {.lex_state = 126}, - [1597] = {.lex_state = 1033}, - [1598] = {.lex_state = 169}, - [1599] = {.lex_state = 126}, - [1600] = {.lex_state = 1029}, - [1601] = {.lex_state = 1029}, - [1602] = {.lex_state = 165}, - [1603] = {.lex_state = 1009}, - [1604] = {.lex_state = 1029}, - [1605] = {.lex_state = 1029}, - [1606] = {.lex_state = 169}, - [1607] = {.lex_state = 1037}, - [1608] = {.lex_state = 202}, - [1609] = {.lex_state = 165}, - [1610] = {.lex_state = 1009}, - [1611] = {.lex_state = 1009}, - [1612] = {.lex_state = 1009}, - [1613] = {.lex_state = 1009}, - [1614] = {.lex_state = 1059}, - [1615] = {.lex_state = 1075}, - [1616] = {.lex_state = 1021}, - [1617] = {.lex_state = 1034}, - [1618] = {.lex_state = 1049}, - [1619] = {.lex_state = 1000}, - [1620] = {.lex_state = 1034}, - [1621] = {.lex_state = 1075}, - [1622] = {.lex_state = 1034}, - [1623] = {.lex_state = 1034}, - [1624] = {.lex_state = 1034}, - [1625] = {.lex_state = 1092}, - [1626] = {.lex_state = 1000}, - [1627] = {.lex_state = 1029}, - [1628] = {.lex_state = 1000}, - [1629] = {.lex_state = 1075}, - [1630] = {.lex_state = 1029}, - [1631] = {.lex_state = 1106}, - [1632] = {.lex_state = 1000}, - [1633] = {.lex_state = 1108}, - [1634] = {.lex_state = 1029}, - [1635] = {.lex_state = 1075}, - [1636] = {.lex_state = 1092}, - [1637] = {.lex_state = 1092}, - [1638] = {.lex_state = 1009}, - [1639] = {.lex_state = 126}, - [1640] = {.lex_state = 189}, - [1641] = {.lex_state = 1009}, - [1642] = {.lex_state = 1009}, - [1643] = {.lex_state = 1009}, - [1644] = {.lex_state = 126}, - [1645] = {.lex_state = 1008}, - [1646] = {.lex_state = 1029}, - [1647] = {.lex_state = 1106}, - [1648] = {.lex_state = 1108}, - [1649] = {.lex_state = 1049}, - [1650] = {.lex_state = 1029}, - [1651] = {.lex_state = 1036}, - [1652] = {.lex_state = 1027}, - [1653] = {.lex_state = 1049}, - [1654] = {.lex_state = 1049}, - [1655] = {.lex_state = 1108}, - [1656] = {.lex_state = 1029}, - [1657] = {.lex_state = 1008}, - [1658] = {.lex_state = 1036}, - [1659] = {.lex_state = 1108}, - [1660] = {.lex_state = 1029}, - [1661] = {.lex_state = 1035}, - [1662] = {.lex_state = 202}, - [1663] = {.lex_state = 1029}, - [1664] = {.lex_state = 1029}, - [1665] = {.lex_state = 126}, - [1666] = {.lex_state = 1108}, - [1667] = {.lex_state = 189}, - [1668] = {.lex_state = 165}, - [1669] = {.lex_state = 202}, - [1670] = {.lex_state = 1000}, - [1671] = {.lex_state = 1029}, - [1672] = {.lex_state = 1029}, - [1673] = {.lex_state = 1029}, - [1674] = {.lex_state = 189}, - [1675] = {.lex_state = 202}, - [1676] = {.lex_state = 189}, - [1677] = {.lex_state = 1049}, - [1678] = {.lex_state = 126}, - [1679] = {.lex_state = 126}, - [1680] = {.lex_state = 1108}, - [1681] = {.lex_state = 1009}, - [1682] = {.lex_state = 126}, - [1683] = {.lex_state = 126}, - [1684] = {.lex_state = 1022}, - [1685] = {.lex_state = 41}, - [1686] = {.lex_state = 126}, - [1687] = {.lex_state = 1000}, - [1688] = {.lex_state = 126}, - [1689] = {.lex_state = 1009}, - [1690] = {.lex_state = 126}, - [1691] = {.lex_state = 1000}, - [1692] = {.lex_state = 1034}, - [1693] = {.lex_state = 202}, - [1694] = {.lex_state = 1000}, - [1695] = {.lex_state = 1041}, - [1696] = {.lex_state = 1009}, - [1697] = {.lex_state = 1044}, - [1698] = {.lex_state = 1022}, - [1699] = {.lex_state = 1108}, - [1700] = {.lex_state = 1050}, - [1701] = {.lex_state = 1044}, - [1702] = {.lex_state = 1000}, - [1703] = {.lex_state = 1000}, - [1704] = {.lex_state = 1009}, - [1705] = {.lex_state = 126}, - [1706] = {.lex_state = 1000}, - [1707] = {.lex_state = 1035}, - [1708] = {.lex_state = 1024}, - [1709] = {.lex_state = 126}, - [1710] = {.lex_state = 1024}, - [1711] = {.lex_state = 1050}, - [1712] = {.lex_state = 1050}, - [1713] = {.lex_state = 1050}, - [1714] = {.lex_state = 1044}, - [1715] = {.lex_state = 1036}, - [1716] = {.lex_state = 126}, - [1717] = {.lex_state = 1009}, - [1718] = {.lex_state = 1009}, - [1719] = {.lex_state = 1025}, - [1720] = {.lex_state = 1050}, - [1721] = {.lex_state = 126}, - [1722] = {.lex_state = 1009}, - [1723] = {.lex_state = 1034}, - [1724] = {.lex_state = 1034}, - [1725] = {.lex_state = 1049}, - [1726] = {.lex_state = 1036}, - [1727] = {.lex_state = 1036}, - [1728] = {.lex_state = 1049}, - [1729] = {.lex_state = 41}, - [1730] = {.lex_state = 126}, - [1731] = {.lex_state = 1108}, - [1732] = {.lex_state = 1000}, - [1733] = {.lex_state = 1049}, - [1734] = {.lex_state = 126}, - [1735] = {.lex_state = 1049}, - [1736] = {.lex_state = 1009}, - [1737] = {.lex_state = 126}, - [1738] = {.lex_state = 1108}, - [1739] = {.lex_state = 1000}, - [1740] = {.lex_state = 126}, - [1741] = {.lex_state = 1009}, - [1742] = {.lex_state = 1108}, - [1743] = {.lex_state = 126}, - [1744] = {.lex_state = 126}, - [1745] = {.lex_state = 126}, - [1746] = {.lex_state = 41}, - [1747] = {.lex_state = 126}, - [1748] = {.lex_state = 126}, - [1749] = {.lex_state = 126}, - [1750] = {.lex_state = 126}, - [1751] = {.lex_state = 1092}, - [1752] = {.lex_state = 1092}, - [1753] = {.lex_state = 1092}, - [1754] = {.lex_state = 1092}, - [1755] = {.lex_state = 1092}, - [1756] = {.lex_state = 1092}, - [1757] = {.lex_state = 1092}, - [1758] = {.lex_state = 1092}, - [1759] = {.lex_state = 1092}, - [1760] = {.lex_state = 1092}, - [1761] = {.lex_state = 1092}, - [1762] = {.lex_state = 1092}, - [1763] = {.lex_state = 1092}, - [1764] = {.lex_state = 1092}, - [1765] = {.lex_state = 1092}, - [1766] = {.lex_state = 1092}, - [1767] = {.lex_state = 1092}, - [1768] = {.lex_state = 1092}, - [1769] = {.lex_state = 1092}, - [1770] = {.lex_state = 1092}, - [1771] = {.lex_state = 1092}, - [1772] = {.lex_state = 126}, - [1773] = {.lex_state = 126}, - [1774] = {.lex_state = 1037}, - [1775] = {.lex_state = 1049}, - [1776] = {.lex_state = 1000}, - [1777] = {.lex_state = 126}, - [1778] = {.lex_state = 1034}, - [1779] = {.lex_state = 126}, - [1780] = {.lex_state = 181}, - [1781] = {.lex_state = 126}, - [1782] = {.lex_state = 126}, - [1783] = {.lex_state = 126}, - [1784] = {.lex_state = 126}, - [1785] = {.lex_state = 126}, - [1786] = {.lex_state = 126}, - [1787] = {.lex_state = 126}, - [1788] = {.lex_state = 126}, - [1789] = {.lex_state = 126}, - [1790] = {.lex_state = 126}, - [1791] = {.lex_state = 126}, - [1792] = {.lex_state = 126}, - [1793] = {.lex_state = 126}, - [1794] = {.lex_state = 126}, - [1795] = {.lex_state = 126}, - [1796] = {.lex_state = 126}, - [1797] = {.lex_state = 126}, - [1798] = {.lex_state = 126}, - [1799] = {.lex_state = 126}, - [1800] = {.lex_state = 126}, - [1801] = {.lex_state = 126}, - [1802] = {.lex_state = 126}, - [1803] = {.lex_state = 126}, - [1804] = {.lex_state = 1041}, - [1805] = {.lex_state = 126}, - [1806] = {.lex_state = 126}, - [1807] = {.lex_state = 1021}, - [1808] = {.lex_state = 126}, - [1809] = {.lex_state = 1027}, - [1810] = {.lex_state = 1034}, - [1811] = {.lex_state = 126}, - [1812] = {.lex_state = 126}, - [1813] = {.lex_state = 1092}, - [1814] = {.lex_state = 1026}, - [1815] = {.lex_state = 204}, - [1816] = {.lex_state = 1044}, - [1817] = {.lex_state = 269}, - [1818] = {.lex_state = 1041}, - [1819] = {.lex_state = 1026}, - [1820] = {.lex_state = 1044}, - [1821] = {.lex_state = 1026}, - [1822] = {.lex_state = 1092}, - [1823] = {.lex_state = 204}, - [1824] = {.lex_state = 1026}, - [1825] = {.lex_state = 1050}, - [1826] = {.lex_state = 1026}, - [1827] = {.lex_state = 1000}, - [1828] = {.lex_state = 1044}, - [1829] = {.lex_state = 204}, - [1830] = {.lex_state = 269}, - [1831] = {.lex_state = 1059}, - [1832] = {.lex_state = 1026}, - [1833] = {.lex_state = 1026}, - [1834] = {.lex_state = 1026}, - [1835] = {.lex_state = 1092}, - [1836] = {.lex_state = 1050}, - [1837] = {.lex_state = 204}, - [1838] = {.lex_state = 1050}, - [1839] = {.lex_state = 1050}, - [1840] = {.lex_state = 1026}, - [1841] = {.lex_state = 1026}, - [1842] = {.lex_state = 1026}, - [1843] = {.lex_state = 1026}, - [1844] = {.lex_state = 1026}, - [1845] = {.lex_state = 1026}, - [1846] = {.lex_state = 1026}, - [1847] = {.lex_state = 1026}, - [1848] = {.lex_state = 1050}, - [1849] = {.lex_state = 1026}, - [1850] = {.lex_state = 1026}, - [1851] = {.lex_state = 204}, - [1852] = {.lex_state = 1041}, - [1853] = {.lex_state = 1026}, - [1854] = {.lex_state = 1026}, - [1855] = {.lex_state = 1026}, - [1856] = {.lex_state = 1092}, - [1857] = {.lex_state = 1026}, - [1858] = {.lex_state = 1026}, - [1859] = {.lex_state = 1026}, - [1860] = {.lex_state = 1026}, - [1861] = {.lex_state = 1026}, - [1862] = {.lex_state = 1026}, - [1863] = {.lex_state = 1026}, - [1864] = {.lex_state = 204}, - [1865] = {.lex_state = 204}, - [1866] = {.lex_state = 204}, - [1867] = {.lex_state = 1026}, + [1531] = {.lex_state = 1048}, + [1532] = {.lex_state = 976}, + [1533] = {.lex_state = 121}, + [1534] = {.lex_state = 990}, + [1535] = {.lex_state = 950}, + [1536] = {.lex_state = 967}, + [1537] = {.lex_state = 939}, + [1538] = {.lex_state = 976}, + [1539] = {.lex_state = 950}, + [1540] = {.lex_state = 989}, + [1541] = {.lex_state = 1036}, + [1542] = {.lex_state = 966}, + [1543] = {.lex_state = 966}, + [1544] = {.lex_state = 966}, + [1545] = {.lex_state = 966}, + [1546] = {.lex_state = 966}, + [1547] = {.lex_state = 966}, + [1548] = {.lex_state = 966}, + [1549] = {.lex_state = 966}, + [1550] = {.lex_state = 966}, + [1551] = {.lex_state = 966}, + [1552] = {.lex_state = 966}, + [1553] = {.lex_state = 966}, + [1554] = {.lex_state = 966}, + [1555] = {.lex_state = 966}, + [1556] = {.lex_state = 966}, + [1557] = {.lex_state = 966}, + [1558] = {.lex_state = 966}, + [1559] = {.lex_state = 966}, + [1560] = {.lex_state = 966}, + [1561] = {.lex_state = 966}, + [1562] = {.lex_state = 966}, + [1563] = {.lex_state = 966}, + [1564] = {.lex_state = 966}, + [1565] = {.lex_state = 966}, + [1566] = {.lex_state = 966}, + [1567] = {.lex_state = 966}, + [1568] = {.lex_state = 966}, + [1569] = {.lex_state = 966}, + [1570] = {.lex_state = 144}, + [1571] = {.lex_state = 966}, + [1572] = {.lex_state = 144}, + [1573] = {.lex_state = 966}, + [1574] = {.lex_state = 966}, + [1575] = {.lex_state = 966}, + [1576] = {.lex_state = 966}, + [1577] = {.lex_state = 966}, + [1578] = {.lex_state = 966}, + [1579] = {.lex_state = 966}, + [1580] = {.lex_state = 966}, + [1581] = {.lex_state = 966}, + [1582] = {.lex_state = 966}, + [1583] = {.lex_state = 966}, + [1584] = {.lex_state = 966}, + [1585] = {.lex_state = 966}, + [1586] = {.lex_state = 966}, + [1587] = {.lex_state = 966}, + [1588] = {.lex_state = 966}, + [1589] = {.lex_state = 966}, + [1590] = {.lex_state = 966}, + [1591] = {.lex_state = 966}, + [1592] = {.lex_state = 966}, + [1593] = {.lex_state = 966}, + [1594] = {.lex_state = 966}, + [1595] = {.lex_state = 966}, + [1596] = {.lex_state = 966}, + [1597] = {.lex_state = 966}, + [1598] = {.lex_state = 144}, + [1599] = {.lex_state = 976}, + [1600] = {.lex_state = 976}, + [1601] = {.lex_state = 976}, + [1602] = {.lex_state = 964}, + [1603] = {.lex_state = 964}, + [1604] = {.lex_state = 966}, + [1605] = {.lex_state = 966}, + [1606] = {.lex_state = 74}, + [1607] = {.lex_state = 984}, + [1608] = {.lex_state = 966}, + [1609] = {.lex_state = 966}, + [1610] = {.lex_state = 981}, + [1611] = {.lex_state = 966}, + [1612] = {.lex_state = 966}, + [1613] = {.lex_state = 990}, + [1614] = {.lex_state = 74}, + [1615] = {.lex_state = 74}, + [1616] = {.lex_state = 74}, + [1617] = {.lex_state = 74}, + [1618] = {.lex_state = 74}, + [1619] = {.lex_state = 74}, + [1620] = {.lex_state = 74}, + [1621] = {.lex_state = 990}, + [1622] = {.lex_state = 74}, + [1623] = {.lex_state = 74}, + [1624] = {.lex_state = 990}, + [1625] = {.lex_state = 990}, + [1626] = {.lex_state = 74}, + [1627] = {.lex_state = 74}, + [1628] = {.lex_state = 74}, + [1629] = {.lex_state = 74}, + [1630] = {.lex_state = 74}, + [1631] = {.lex_state = 74}, + [1632] = {.lex_state = 966}, + [1633] = {.lex_state = 990}, + [1634] = {.lex_state = 209}, + [1635] = {.lex_state = 209}, + [1636] = {.lex_state = 1036}, + [1637] = {.lex_state = 1036}, + [1638] = {.lex_state = 984}, + [1639] = {.lex_state = 209}, + [1640] = {.lex_state = 966}, + [1641] = {.lex_state = 966}, + [1642] = {.lex_state = 966}, + [1643] = {.lex_state = 966}, + [1644] = {.lex_state = 74}, + [1645] = {.lex_state = 74}, + [1646] = {.lex_state = 939}, + [1647] = {.lex_state = 144}, + [1648] = {.lex_state = 144}, + [1649] = {.lex_state = 74}, + [1650] = {.lex_state = 984}, + [1651] = {.lex_state = 939}, + [1652] = {.lex_state = 144}, + [1653] = {.lex_state = 962}, + [1654] = {.lex_state = 144}, + [1655] = {.lex_state = 144}, + [1656] = {.lex_state = 74}, + [1657] = {.lex_state = 966}, + [1658] = {.lex_state = 144}, + [1659] = {.lex_state = 144}, + [1660] = {.lex_state = 144}, + [1661] = {.lex_state = 144}, + [1662] = {.lex_state = 144}, + [1663] = {.lex_state = 144}, + [1664] = {.lex_state = 144}, + [1665] = {.lex_state = 144}, + [1666] = {.lex_state = 144}, + [1667] = {.lex_state = 144}, + [1668] = {.lex_state = 144}, + [1669] = {.lex_state = 144}, + [1670] = {.lex_state = 144}, + [1671] = {.lex_state = 144}, + [1672] = {.lex_state = 144}, + [1673] = {.lex_state = 144}, + [1674] = {.lex_state = 104}, + [1675] = {.lex_state = 74}, + [1676] = {.lex_state = 104}, + [1677] = {.lex_state = 74}, + [1678] = {.lex_state = 962}, + [1679] = {.lex_state = 966}, + [1680] = {.lex_state = 74}, + [1681] = {.lex_state = 74}, + [1682] = {.lex_state = 74}, + [1683] = {.lex_state = 74}, + [1684] = {.lex_state = 74}, + [1685] = {.lex_state = 74}, + [1686] = {.lex_state = 74}, + [1687] = {.lex_state = 74}, + [1688] = {.lex_state = 74}, + [1689] = {.lex_state = 74}, + [1690] = {.lex_state = 74}, + [1691] = {.lex_state = 74}, + [1692] = {.lex_state = 74}, + [1693] = {.lex_state = 74}, + [1694] = {.lex_state = 74}, + [1695] = {.lex_state = 74}, + [1696] = {.lex_state = 74}, + [1697] = {.lex_state = 74}, + [1698] = {.lex_state = 74}, + [1699] = {.lex_state = 74}, + [1700] = {.lex_state = 74}, + [1701] = {.lex_state = 74}, + [1702] = {.lex_state = 74}, + [1703] = {.lex_state = 74}, + [1704] = {.lex_state = 74}, + [1705] = {.lex_state = 74}, + [1706] = {.lex_state = 965}, + [1707] = {.lex_state = 144}, + [1708] = {.lex_state = 74}, + [1709] = {.lex_state = 74}, + [1710] = {.lex_state = 144}, + [1711] = {.lex_state = 74}, + [1712] = {.lex_state = 74}, + [1713] = {.lex_state = 144}, + [1714] = {.lex_state = 74}, + [1715] = {.lex_state = 74}, + [1716] = {.lex_state = 981}, + [1717] = {.lex_state = 1036}, + [1718] = {.lex_state = 966}, + [1719] = {.lex_state = 966}, + [1720] = {.lex_state = 966}, + [1721] = {.lex_state = 966}, + [1722] = {.lex_state = 966}, + [1723] = {.lex_state = 966}, + [1724] = {.lex_state = 1036}, + [1725] = {.lex_state = 209}, + [1726] = {.lex_state = 966}, + [1727] = {.lex_state = 966}, + [1728] = {.lex_state = 966}, + [1729] = {.lex_state = 966}, + [1730] = {.lex_state = 209}, + [1731] = {.lex_state = 209}, + [1732] = {.lex_state = 209}, + [1733] = {.lex_state = 209}, + [1734] = {.lex_state = 1036}, + [1735] = {.lex_state = 1036}, + [1736] = {.lex_state = 1036}, + [1737] = {.lex_state = 1036}, + [1738] = {.lex_state = 1036}, + [1739] = {.lex_state = 1036}, + [1740] = {.lex_state = 1036}, + [1741] = {.lex_state = 1036}, + [1742] = {.lex_state = 1036}, + [1743] = {.lex_state = 1036}, + [1744] = {.lex_state = 1036}, + [1745] = {.lex_state = 1036}, + [1746] = {.lex_state = 1036}, + [1747] = {.lex_state = 1036}, + [1748] = {.lex_state = 1036}, + [1749] = {.lex_state = 1036}, + [1750] = {.lex_state = 1036}, + [1751] = {.lex_state = 1036}, + [1752] = {.lex_state = 1036}, + [1753] = {.lex_state = 1036}, + [1754] = {.lex_state = 1036}, + [1755] = {.lex_state = 966}, + [1756] = {.lex_state = 144}, + [1757] = {.lex_state = 966}, + [1758] = {.lex_state = 122}, + [1759] = {.lex_state = 1036}, + [1760] = {.lex_state = 122}, + [1761] = {.lex_state = 122}, + [1762] = {.lex_state = 122}, + [1763] = {.lex_state = 122}, + [1764] = {.lex_state = 122}, + [1765] = {.lex_state = 122}, + [1766] = {.lex_state = 122}, + [1767] = {.lex_state = 122}, + [1768] = {.lex_state = 966}, + [1769] = {.lex_state = 122}, + [1770] = {.lex_state = 966}, + [1771] = {.lex_state = 122}, + [1772] = {.lex_state = 121}, + [1773] = {.lex_state = 1036}, + [1774] = {.lex_state = 103}, + [1775] = {.lex_state = 122}, + [1776] = {.lex_state = 966}, + [1777] = {.lex_state = 122}, + [1778] = {.lex_state = 966}, + [1779] = {.lex_state = 1036}, + [1780] = {.lex_state = 1036}, + [1781] = {.lex_state = 1036}, + [1782] = {.lex_state = 121}, + [1783] = {.lex_state = 122}, + [1784] = {.lex_state = 966}, + [1785] = {.lex_state = 966}, + [1786] = {.lex_state = 966}, + [1787] = {.lex_state = 966}, + [1788] = {.lex_state = 966}, + [1789] = {.lex_state = 966}, + [1790] = {.lex_state = 966}, + [1791] = {.lex_state = 122}, + [1792] = {.lex_state = 1036}, + [1793] = {.lex_state = 966}, + [1794] = {.lex_state = 966}, + [1795] = {.lex_state = 1036}, + [1796] = {.lex_state = 1036}, + [1797] = {.lex_state = 122}, + [1798] = {.lex_state = 966}, + [1799] = {.lex_state = 966}, + [1800] = {.lex_state = 122}, + [1801] = {.lex_state = 1036}, + [1802] = {.lex_state = 1036}, + [1803] = {.lex_state = 1036}, + [1804] = {.lex_state = 1036}, + [1805] = {.lex_state = 1036}, + [1806] = {.lex_state = 1036}, + [1807] = {.lex_state = 966}, + [1808] = {.lex_state = 966}, + [1809] = {.lex_state = 1036}, + [1810] = {.lex_state = 1036}, + [1811] = {.lex_state = 966}, + [1812] = {.lex_state = 966}, + [1813] = {.lex_state = 122}, + [1814] = {.lex_state = 966}, + [1815] = {.lex_state = 966}, + [1816] = {.lex_state = 966}, + [1817] = {.lex_state = 122}, + [1818] = {.lex_state = 966}, + [1819] = {.lex_state = 966}, + [1820] = {.lex_state = 966}, + [1821] = {.lex_state = 122}, + [1822] = {.lex_state = 966}, + [1823] = {.lex_state = 966}, + [1824] = {.lex_state = 966}, + [1825] = {.lex_state = 122}, + [1826] = {.lex_state = 966}, + [1827] = {.lex_state = 966}, + [1828] = {.lex_state = 966}, + [1829] = {.lex_state = 122}, + [1830] = {.lex_state = 122}, + [1831] = {.lex_state = 966}, + [1832] = {.lex_state = 966}, + [1833] = {.lex_state = 966}, + [1834] = {.lex_state = 1036}, + [1835] = {.lex_state = 1036}, + [1836] = {.lex_state = 1036}, + [1837] = {.lex_state = 1036}, + [1838] = {.lex_state = 122}, + [1839] = {.lex_state = 966}, + [1840] = {.lex_state = 966}, + [1841] = {.lex_state = 966}, + [1842] = {.lex_state = 122}, + [1843] = {.lex_state = 966}, + [1844] = {.lex_state = 966}, + [1845] = {.lex_state = 122}, + [1846] = {.lex_state = 966}, + [1847] = {.lex_state = 966}, + [1848] = {.lex_state = 966}, + [1849] = {.lex_state = 122}, + [1850] = {.lex_state = 966}, + [1851] = {.lex_state = 966}, + [1852] = {.lex_state = 966}, + [1853] = {.lex_state = 966}, + [1854] = {.lex_state = 122}, + [1855] = {.lex_state = 966}, + [1856] = {.lex_state = 966}, + [1857] = {.lex_state = 966}, + [1858] = {.lex_state = 966}, + [1859] = {.lex_state = 966}, + [1860] = {.lex_state = 966}, + [1861] = {.lex_state = 966}, + [1862] = {.lex_state = 966}, + [1863] = {.lex_state = 966}, + [1864] = {.lex_state = 122}, + [1865] = {.lex_state = 966}, + [1866] = {.lex_state = 966}, + [1867] = {.lex_state = 122}, [1868] = {.lex_state = 1036}, - [1869] = {.lex_state = 1000}, - [1870] = {.lex_state = 1026}, - [1871] = {.lex_state = 1026}, - [1872] = {.lex_state = 204}, - [1873] = {.lex_state = 1026}, - [1874] = {.lex_state = 1026}, - [1875] = {.lex_state = 204}, - [1876] = {.lex_state = 204}, - [1877] = {.lex_state = 204}, - [1878] = {.lex_state = 1022}, - [1879] = {.lex_state = 204}, - [1880] = {.lex_state = 1026}, - [1881] = {.lex_state = 204}, - [1882] = {.lex_state = 204}, - [1883] = {.lex_state = 1026}, - [1884] = {.lex_state = 1026}, - [1885] = {.lex_state = 204}, - [1886] = {.lex_state = 204}, - [1887] = {.lex_state = 1026}, - [1888] = {.lex_state = 204}, - [1889] = {.lex_state = 204}, - [1890] = {.lex_state = 204}, - [1891] = {.lex_state = 1026}, - [1892] = {.lex_state = 1026}, - [1893] = {.lex_state = 204}, - [1894] = {.lex_state = 204}, - [1895] = {.lex_state = 204}, - [1896] = {.lex_state = 1026}, - [1897] = {.lex_state = 1026}, - [1898] = {.lex_state = 204}, - [1899] = {.lex_state = 1026}, - [1900] = {.lex_state = 1036}, - [1901] = {.lex_state = 204}, - [1902] = {.lex_state = 164}, - [1903] = {.lex_state = 1036}, - [1904] = {.lex_state = 1026}, - [1905] = {.lex_state = 1026}, - [1906] = {.lex_state = 1026}, - [1907] = {.lex_state = 164}, - [1908] = {.lex_state = 1026}, - [1909] = {.lex_state = 1026}, - [1910] = {.lex_state = 1026}, - [1911] = {.lex_state = 1022}, - [1912] = {.lex_state = 1026}, - [1913] = {.lex_state = 1026}, - [1914] = {.lex_state = 1026}, - [1915] = {.lex_state = 1026}, - [1916] = {.lex_state = 1026}, - [1917] = {.lex_state = 204}, - [1918] = {.lex_state = 1024}, - [1919] = {.lex_state = 269}, - [1920] = {.lex_state = 269}, - [1921] = {.lex_state = 269}, - [1922] = {.lex_state = 269}, - [1923] = {.lex_state = 1026}, - [1924] = {.lex_state = 1026}, - [1925] = {.lex_state = 1026}, - [1926] = {.lex_state = 1026}, - [1927] = {.lex_state = 1026}, - [1928] = {.lex_state = 1026}, - [1929] = {.lex_state = 1026}, - [1930] = {.lex_state = 1026}, - [1931] = {.lex_state = 1026}, - [1932] = {.lex_state = 1026}, - [1933] = {.lex_state = 1092}, - [1934] = {.lex_state = 1092}, - [1935] = {.lex_state = 1026}, - [1936] = {.lex_state = 1026}, - [1937] = {.lex_state = 1026}, - [1938] = {.lex_state = 1026}, - [1939] = {.lex_state = 1026}, - [1940] = {.lex_state = 1026}, - [1941] = {.lex_state = 1026}, - [1942] = {.lex_state = 1026}, - [1943] = {.lex_state = 1026}, - [1944] = {.lex_state = 1026}, - [1945] = {.lex_state = 1026}, - [1946] = {.lex_state = 1026}, - [1947] = {.lex_state = 1026}, - [1948] = {.lex_state = 1026}, - [1949] = {.lex_state = 269}, - [1950] = {.lex_state = 1025}, - [1951] = {.lex_state = 204}, - [1952] = {.lex_state = 269}, - [1953] = {.lex_state = 1024}, - [1954] = {.lex_state = 1026}, - [1955] = {.lex_state = 1026}, - [1956] = {.lex_state = 1026}, - [1957] = {.lex_state = 1026}, - [1958] = {.lex_state = 182}, - [1959] = {.lex_state = 1092}, - [1960] = {.lex_state = 1026}, - [1961] = {.lex_state = 1026}, - [1962] = {.lex_state = 182}, - [1963] = {.lex_state = 182}, - [1964] = {.lex_state = 182}, - [1965] = {.lex_state = 1026}, - [1966] = {.lex_state = 1092}, - [1967] = {.lex_state = 1026}, - [1968] = {.lex_state = 1092}, - [1969] = {.lex_state = 1092}, - [1970] = {.lex_state = 1026}, - [1971] = {.lex_state = 182}, - [1972] = {.lex_state = 1092}, - [1973] = {.lex_state = 1026}, - [1974] = {.lex_state = 182}, - [1975] = {.lex_state = 1026}, - [1976] = {.lex_state = 182}, - [1977] = {.lex_state = 182}, - [1978] = {.lex_state = 182}, - [1979] = {.lex_state = 1026}, - [1980] = {.lex_state = 182}, - [1981] = {.lex_state = 1026}, - [1982] = {.lex_state = 1026}, - [1983] = {.lex_state = 1026}, - [1984] = {.lex_state = 1026}, - [1985] = {.lex_state = 182}, - [1986] = {.lex_state = 1026}, - [1987] = {.lex_state = 182}, - [1988] = {.lex_state = 1026}, - [1989] = {.lex_state = 181}, - [1990] = {.lex_state = 1026}, - [1991] = {.lex_state = 181}, - [1992] = {.lex_state = 182}, - [1993] = {.lex_state = 1026}, - [1994] = {.lex_state = 163}, - [1995] = {.lex_state = 182}, - [1996] = {.lex_state = 1026}, - [1997] = {.lex_state = 1026}, - [1998] = {.lex_state = 1092}, - [1999] = {.lex_state = 1092}, - [2000] = {.lex_state = 1092}, - [2001] = {.lex_state = 1026}, - [2002] = {.lex_state = 181}, - [2003] = {.lex_state = 1026}, - [2004] = {.lex_state = 182}, - [2005] = {.lex_state = 204}, - [2006] = {.lex_state = 182}, - [2007] = {.lex_state = 1026}, - [2008] = {.lex_state = 182}, - [2009] = {.lex_state = 182}, - [2010] = {.lex_state = 1026}, - [2011] = {.lex_state = 1026}, - [2012] = {.lex_state = 1026}, - [2013] = {.lex_state = 182}, - [2014] = {.lex_state = 1026}, - [2015] = {.lex_state = 182}, - [2016] = {.lex_state = 182}, - [2017] = {.lex_state = 1026}, - [2018] = {.lex_state = 1026}, - [2019] = {.lex_state = 182}, - [2020] = {.lex_state = 1026}, - [2021] = {.lex_state = 1026}, - [2022] = {.lex_state = 182}, - [2023] = {.lex_state = 1026}, - [2024] = {.lex_state = 1026}, - [2025] = {.lex_state = 1026}, - [2026] = {.lex_state = 1092}, - [2027] = {.lex_state = 1026}, - [2028] = {.lex_state = 1026}, - [2029] = {.lex_state = 1092}, - [2030] = {.lex_state = 1092}, - [2031] = {.lex_state = 182}, - [2032] = {.lex_state = 1026}, - [2033] = {.lex_state = 182}, - [2034] = {.lex_state = 1026}, - [2035] = {.lex_state = 182}, - [2036] = {.lex_state = 1026}, - [2037] = {.lex_state = 1026}, - [2038] = {.lex_state = 182}, - [2039] = {.lex_state = 1026}, - [2040] = {.lex_state = 1026}, - [2041] = {.lex_state = 1026}, - [2042] = {.lex_state = 1026}, - [2043] = {.lex_state = 1026}, - [2044] = {.lex_state = 1026}, - [2045] = {.lex_state = 182}, - [2046] = {.lex_state = 182}, - [2047] = {.lex_state = 1026}, - [2048] = {.lex_state = 1026}, - [2049] = {.lex_state = 163}, - [2050] = {.lex_state = 182}, - [2051] = {.lex_state = 182}, - [2052] = {.lex_state = 182}, - [2053] = {.lex_state = 1026}, - [2054] = {.lex_state = 182}, - [2055] = {.lex_state = 1026}, - [2056] = {.lex_state = 1092}, - [2057] = {.lex_state = 1026}, - [2058] = {.lex_state = 182}, - [2059] = {.lex_state = 182}, - [2060] = {.lex_state = 1026}, - [2061] = {.lex_state = 1026}, - [2062] = {.lex_state = 1026}, - [2063] = {.lex_state = 182}, - [2064] = {.lex_state = 1026}, - [2065] = {.lex_state = 1026}, - [2066] = {.lex_state = 182}, - [2067] = {.lex_state = 1026}, - [2068] = {.lex_state = 182}, - [2069] = {.lex_state = 1026}, - [2070] = {.lex_state = 1092}, - [2071] = {.lex_state = 1026}, - [2072] = {.lex_state = 182}, - [2073] = {.lex_state = 1026}, - [2074] = {.lex_state = 1026}, - [2075] = {.lex_state = 1026}, - [2076] = {.lex_state = 182}, - [2077] = {.lex_state = 1026}, - [2078] = {.lex_state = 1026}, - [2079] = {.lex_state = 1026}, - [2080] = {.lex_state = 1026}, - [2081] = {.lex_state = 182}, - [2082] = {.lex_state = 182}, - [2083] = {.lex_state = 1026}, - [2084] = {.lex_state = 1026}, - [2085] = {.lex_state = 1026}, - [2086] = {.lex_state = 1026}, - [2087] = {.lex_state = 1026}, - [2088] = {.lex_state = 1026}, - [2089] = {.lex_state = 1026}, - [2090] = {.lex_state = 1026}, - [2091] = {.lex_state = 1092}, - [2092] = {.lex_state = 182}, - [2093] = {.lex_state = 1092}, - [2094] = {.lex_state = 1026}, - [2095] = {.lex_state = 182}, - [2096] = {.lex_state = 1092}, - [2097] = {.lex_state = 1092}, - [2098] = {.lex_state = 182}, - [2099] = {.lex_state = 1092}, - [2100] = {.lex_state = 1092}, - [2101] = {.lex_state = 1026}, - [2102] = {.lex_state = 1026}, - [2103] = {.lex_state = 1092}, - [2104] = {.lex_state = 1092}, - [2105] = {.lex_state = 182}, - [2106] = {.lex_state = 1092}, - [2107] = {.lex_state = 182}, - [2108] = {.lex_state = 182}, - [2109] = {.lex_state = 182}, - [2110] = {.lex_state = 182}, - [2111] = {.lex_state = 1092}, - [2112] = {.lex_state = 1026}, - [2113] = {.lex_state = 1092}, - [2114] = {.lex_state = 1026}, - [2115] = {.lex_state = 1026}, - [2116] = {.lex_state = 1092}, - [2117] = {.lex_state = 1092}, - [2118] = {.lex_state = 1026}, - [2119] = {.lex_state = 182}, - [2120] = {.lex_state = 204}, - [2121] = {.lex_state = 1092}, - [2122] = {.lex_state = 182}, - [2123] = {.lex_state = 1092}, - [2124] = {.lex_state = 181}, - [2125] = {.lex_state = 1044}, - [2126] = {.lex_state = 181}, - [2127] = {.lex_state = 181}, - [2128] = {.lex_state = 181}, - [2129] = {.lex_state = 181}, - [2130] = {.lex_state = 1044}, - [2131] = {.lex_state = 181}, - [2132] = {.lex_state = 1044}, - [2133] = {.lex_state = 181}, - [2134] = {.lex_state = 1044}, - [2135] = {.lex_state = 181}, - [2136] = {.lex_state = 181}, - [2137] = {.lex_state = 181}, - [2138] = {.lex_state = 181}, - [2139] = {.lex_state = 182}, - [2140] = {.lex_state = 1092}, - [2141] = {.lex_state = 204}, - [2142] = {.lex_state = 1044}, - [2143] = {.lex_state = 182}, - [2144] = {.lex_state = 1092}, - [2145] = {.lex_state = 181}, - [2146] = {.lex_state = 1092}, - [2147] = {.lex_state = 181}, - [2148] = {.lex_state = 1044}, - [2149] = {.lex_state = 182}, - [2150] = {.lex_state = 181}, - [2151] = {.lex_state = 1092}, - [2152] = {.lex_state = 1118}, - [2153] = {.lex_state = 182}, - [2154] = {.lex_state = 182}, - [2155] = {.lex_state = 1044}, - [2156] = {.lex_state = 181}, - [2157] = {.lex_state = 204}, - [2158] = {.lex_state = 1044}, - [2159] = {.lex_state = 1059}, - [2160] = {.lex_state = 1046}, - [2161] = {.lex_state = 1118}, - [2162] = {.lex_state = 1118}, - [2163] = {.lex_state = 43}, - [2164] = {.lex_state = 181}, - [2165] = {.lex_state = 1118}, - [2166] = {.lex_state = 181}, - [2167] = {.lex_state = 181}, - [2168] = {.lex_state = 1092}, - [2169] = {.lex_state = 181}, - [2170] = {.lex_state = 181}, - [2171] = {.lex_state = 181}, - [2172] = {.lex_state = 181}, - [2173] = {.lex_state = 181}, - [2174] = {.lex_state = 43}, - [2175] = {.lex_state = 1059}, - [2176] = {.lex_state = 1046}, - [2177] = {.lex_state = 182}, - [2178] = {.lex_state = 1118}, - [2179] = {.lex_state = 1059}, - [2180] = {.lex_state = 1114}, - [2181] = {.lex_state = 182}, - [2182] = {.lex_state = 182}, - [2183] = {.lex_state = 182}, - [2184] = {.lex_state = 182}, - [2185] = {.lex_state = 182}, - [2186] = {.lex_state = 182}, - [2187] = {.lex_state = 182}, - [2188] = {.lex_state = 182}, - [2189] = {.lex_state = 182}, - [2190] = {.lex_state = 43}, - [2191] = {.lex_state = 43}, - [2192] = {.lex_state = 182}, - [2193] = {.lex_state = 209}, - [2194] = {.lex_state = 209}, - [2195] = {.lex_state = 209}, - [2196] = {.lex_state = 209}, - [2197] = {.lex_state = 204}, - [2198] = {.lex_state = 204}, - [2199] = {.lex_state = 204}, - [2200] = {.lex_state = 182}, - [2201] = {.lex_state = 182}, - [2202] = {.lex_state = 182}, - [2203] = {.lex_state = 1118}, - [2204] = {.lex_state = 182}, - [2205] = {.lex_state = 182}, - [2206] = {.lex_state = 182}, - [2207] = {.lex_state = 182}, - [2208] = {.lex_state = 182}, - [2209] = {.lex_state = 182}, - [2210] = {.lex_state = 182}, - [2211] = {.lex_state = 182}, - [2212] = {.lex_state = 182}, - [2213] = {.lex_state = 182}, - [2214] = {.lex_state = 182}, - [2215] = {.lex_state = 182}, - [2216] = {.lex_state = 182}, - [2217] = {.lex_state = 182}, - [2218] = {.lex_state = 182}, - [2219] = {.lex_state = 182}, - [2220] = {.lex_state = 182}, - [2221] = {.lex_state = 182}, - [2222] = {.lex_state = 182}, - [2223] = {.lex_state = 182}, - [2224] = {.lex_state = 182}, - [2225] = {.lex_state = 182}, - [2226] = {.lex_state = 182}, - [2227] = {.lex_state = 182}, - [2228] = {.lex_state = 1059}, - [2229] = {.lex_state = 182}, - [2230] = {.lex_state = 182}, - [2231] = {.lex_state = 182}, - [2232] = {.lex_state = 182}, - [2233] = {.lex_state = 182}, - [2234] = {.lex_state = 182}, - [2235] = {.lex_state = 1059}, - [2236] = {.lex_state = 182}, - [2237] = {.lex_state = 182}, - [2238] = {.lex_state = 182}, - [2239] = {.lex_state = 182}, - [2240] = {.lex_state = 182}, - [2241] = {.lex_state = 182}, - [2242] = {.lex_state = 1059}, - [2243] = {.lex_state = 182}, - [2244] = {.lex_state = 182}, - [2245] = {.lex_state = 182}, - [2246] = {.lex_state = 1059}, - [2247] = {.lex_state = 1059}, - [2248] = {.lex_state = 417}, - [2249] = {.lex_state = 43}, - [2250] = {.lex_state = 43}, - [2251] = {.lex_state = 415}, - [2252] = {.lex_state = 1059}, - [2253] = {.lex_state = 1059}, - [2254] = {.lex_state = 1059}, - [2255] = {.lex_state = 1059}, - [2256] = {.lex_state = 209}, - [2257] = {.lex_state = 1059}, - [2258] = {.lex_state = 1059}, - [2259] = {.lex_state = 182}, - [2260] = {.lex_state = 182}, - [2261] = {.lex_state = 182}, - [2262] = {.lex_state = 182}, - [2263] = {.lex_state = 182}, - [2264] = {.lex_state = 182}, - [2265] = {.lex_state = 182}, - [2266] = {.lex_state = 182}, - [2267] = {.lex_state = 182}, - [2268] = {.lex_state = 182}, - [2269] = {.lex_state = 182}, - [2270] = {.lex_state = 182}, - [2271] = {.lex_state = 182}, - [2272] = {.lex_state = 182}, - [2273] = {.lex_state = 1059}, - [2274] = {.lex_state = 1059}, - [2275] = {.lex_state = 1046}, - [2276] = {.lex_state = 1046}, - [2277] = {.lex_state = 1059}, - [2278] = {.lex_state = 1059}, - [2279] = {.lex_state = 85}, - [2280] = {.lex_state = 85}, - [2281] = {.lex_state = 1046}, - [2282] = {.lex_state = 182}, - [2283] = {.lex_state = 182}, - [2284] = {.lex_state = 182}, - [2285] = {.lex_state = 182}, - [2286] = {.lex_state = 182}, - [2287] = {.lex_state = 182}, - [2288] = {.lex_state = 182}, - [2289] = {.lex_state = 182}, - [2290] = {.lex_state = 182}, - [2291] = {.lex_state = 182}, - [2292] = {.lex_state = 182}, - [2293] = {.lex_state = 182}, - [2294] = {.lex_state = 182}, - [2295] = {.lex_state = 182}, - [2296] = {.lex_state = 41}, - [2297] = {.lex_state = 1092}, - [2298] = {.lex_state = 171}, - [2299] = {.lex_state = 1046}, - [2300] = {.lex_state = 41}, - [2301] = {.lex_state = 1122}, - [2302] = {.lex_state = 1122}, - [2303] = {.lex_state = 1113}, - [2304] = {.lex_state = 1113}, - [2305] = {.lex_state = 1059}, - [2306] = {.lex_state = 1059}, - [2307] = {.lex_state = 1059}, - [2308] = {.lex_state = 1059}, - [2309] = {.lex_state = 1092}, - [2310] = {.lex_state = 1092}, - [2311] = {.lex_state = 409}, - [2312] = {.lex_state = 1122}, - [2313] = {.lex_state = 182}, - [2314] = {.lex_state = 182}, - [2315] = {.lex_state = 182}, - [2316] = {.lex_state = 182}, - [2317] = {.lex_state = 182}, - [2318] = {.lex_state = 182}, - [2319] = {.lex_state = 182}, - [2320] = {.lex_state = 182}, - [2321] = {.lex_state = 182}, - [2322] = {.lex_state = 270}, - [2323] = {.lex_state = 182}, - [2324] = {.lex_state = 182}, - [2325] = {.lex_state = 182}, - [2326] = {.lex_state = 182}, - [2327] = {.lex_state = 270}, - [2328] = {.lex_state = 182}, - [2329] = {.lex_state = 182}, - [2330] = {.lex_state = 409}, - [2331] = {.lex_state = 270}, - [2332] = {.lex_state = 270}, - [2333] = {.lex_state = 182}, - [2334] = {.lex_state = 182}, - [2335] = {.lex_state = 182}, - [2336] = {.lex_state = 182}, - [2337] = {.lex_state = 1118}, - [2338] = {.lex_state = 1118}, - [2339] = {.lex_state = 182}, - [2340] = {.lex_state = 182}, - [2341] = {.lex_state = 182}, - [2342] = {.lex_state = 182}, - [2343] = {.lex_state = 182}, - [2344] = {.lex_state = 182}, - [2345] = {.lex_state = 182}, - [2346] = {.lex_state = 1118}, - [2347] = {.lex_state = 1118}, - [2348] = {.lex_state = 182}, - [2349] = {.lex_state = 182}, - [2350] = {.lex_state = 182}, - [2351] = {.lex_state = 182}, - [2352] = {.lex_state = 182}, - [2353] = {.lex_state = 182}, - [2354] = {.lex_state = 182}, - [2355] = {.lex_state = 161}, - [2356] = {.lex_state = 182}, - [2357] = {.lex_state = 206}, - [2358] = {.lex_state = 182}, - [2359] = {.lex_state = 182}, - [2360] = {.lex_state = 182}, - [2361] = {.lex_state = 182}, - [2362] = {.lex_state = 182}, - [2363] = {.lex_state = 182}, - [2364] = {.lex_state = 182}, - [2365] = {.lex_state = 182}, - [2366] = {.lex_state = 182}, - [2367] = {.lex_state = 182}, - [2368] = {.lex_state = 182}, - [2369] = {.lex_state = 182}, - [2370] = {.lex_state = 182}, - [2371] = {.lex_state = 182}, - [2372] = {.lex_state = 1122}, - [2373] = {.lex_state = 182}, - [2374] = {.lex_state = 182}, - [2375] = {.lex_state = 182}, - [2376] = {.lex_state = 182}, - [2377] = {.lex_state = 1045}, - [2378] = {.lex_state = 1045}, - [2379] = {.lex_state = 182}, - [2380] = {.lex_state = 212}, - [2381] = {.lex_state = 212}, - [2382] = {.lex_state = 212}, - [2383] = {.lex_state = 182}, - [2384] = {.lex_state = 182}, - [2385] = {.lex_state = 41}, - [2386] = {.lex_state = 182}, - [2387] = {.lex_state = 41}, - [2388] = {.lex_state = 205}, - [2389] = {.lex_state = 205}, - [2390] = {.lex_state = 41}, - [2391] = {.lex_state = 182}, - [2392] = {.lex_state = 182}, - [2393] = {.lex_state = 182}, - [2394] = {.lex_state = 182}, - [2395] = {.lex_state = 182}, - [2396] = {.lex_state = 182}, - [2397] = {.lex_state = 182}, - [2398] = {.lex_state = 182}, - [2399] = {.lex_state = 1059}, - [2400] = {.lex_state = 182}, - [2401] = {.lex_state = 182}, - [2402] = {.lex_state = 182}, - [2403] = {.lex_state = 182}, - [2404] = {.lex_state = 182}, - [2405] = {.lex_state = 1045}, - [2406] = {.lex_state = 1122}, - [2407] = {.lex_state = 1045}, - [2408] = {.lex_state = 182}, - [2409] = {.lex_state = 1045}, - [2410] = {.lex_state = 182}, - [2411] = {.lex_state = 182}, - [2412] = {.lex_state = 182}, - [2413] = {.lex_state = 1113}, - [2414] = {.lex_state = 1113}, - [2415] = {.lex_state = 182}, - [2416] = {.lex_state = 182}, - [2417] = {.lex_state = 1122}, - [2418] = {.lex_state = 182}, - [2419] = {.lex_state = 182}, - [2420] = {.lex_state = 182}, - [2421] = {.lex_state = 182}, - [2422] = {.lex_state = 182}, - [2423] = {.lex_state = 182}, - [2424] = {.lex_state = 41}, - [2425] = {.lex_state = 182}, - [2426] = {.lex_state = 182}, - [2427] = {.lex_state = 43}, - [2428] = {.lex_state = 182}, - [2429] = {.lex_state = 1122}, - [2430] = {.lex_state = 1122}, - [2431] = {.lex_state = 182}, - [2432] = {.lex_state = 182}, - [2433] = {.lex_state = 1113}, - [2434] = {.lex_state = 1113}, - [2435] = {.lex_state = 182}, - [2436] = {.lex_state = 182}, - [2437] = {.lex_state = 182}, - [2438] = {.lex_state = 182}, - [2439] = {.lex_state = 1059}, - [2440] = {.lex_state = 1059}, - [2441] = {.lex_state = 1059}, - [2442] = {.lex_state = 1059}, - [2443] = {.lex_state = 1059}, - [2444] = {.lex_state = 1059}, - [2445] = {.lex_state = 1059}, - [2446] = {.lex_state = 1059}, - [2447] = {.lex_state = 1059}, - [2448] = {.lex_state = 1059}, - [2449] = {.lex_state = 1059}, - [2450] = {.lex_state = 1059}, - [2451] = {.lex_state = 182}, - [2452] = {.lex_state = 41}, - [2453] = {.lex_state = 182}, - [2454] = {.lex_state = 182}, - [2455] = {.lex_state = 182}, - [2456] = {.lex_state = 182}, - [2457] = {.lex_state = 182}, - [2458] = {.lex_state = 182}, - [2459] = {.lex_state = 182}, - [2460] = {.lex_state = 182}, - [2461] = {.lex_state = 43}, - [2462] = {.lex_state = 182}, - [2463] = {.lex_state = 43}, - [2464] = {.lex_state = 43}, - [2465] = {.lex_state = 182}, - [2466] = {.lex_state = 182}, - [2467] = {.lex_state = 1114}, - [2468] = {.lex_state = 182}, - [2469] = {.lex_state = 182}, - [2470] = {.lex_state = 53}, - [2471] = {.lex_state = 182}, - [2472] = {.lex_state = 182}, - [2473] = {.lex_state = 182}, - [2474] = {.lex_state = 182}, - [2475] = {.lex_state = 182}, - [2476] = {.lex_state = 182}, - [2477] = {.lex_state = 182}, - [2478] = {.lex_state = 182}, - [2479] = {.lex_state = 182}, - [2480] = {.lex_state = 182}, - [2481] = {.lex_state = 182}, - [2482] = {.lex_state = 182}, - [2483] = {.lex_state = 182}, - [2484] = {.lex_state = 182}, - [2485] = {.lex_state = 182}, - [2486] = {.lex_state = 182}, - [2487] = {.lex_state = 182}, - [2488] = {.lex_state = 182}, - [2489] = {.lex_state = 182}, - [2490] = {.lex_state = 182}, - [2491] = {.lex_state = 43}, - [2492] = {.lex_state = 182}, - [2493] = {.lex_state = 43}, - [2494] = {.lex_state = 182}, - [2495] = {.lex_state = 182}, - [2496] = {.lex_state = 182}, - [2497] = {.lex_state = 43}, - [2498] = {.lex_state = 43}, - [2499] = {.lex_state = 182}, - [2500] = {.lex_state = 161}, - [2501] = {.lex_state = 41}, - [2502] = {.lex_state = 43}, - [2503] = {.lex_state = 182}, - [2504] = {.lex_state = 43}, - [2505] = {.lex_state = 43}, - [2506] = {.lex_state = 43}, - [2507] = {.lex_state = 182}, - [2508] = {.lex_state = 182}, - [2509] = {.lex_state = 284}, - [2510] = {.lex_state = 182}, - [2511] = {.lex_state = 1059}, - [2512] = {.lex_state = 182}, - [2513] = {.lex_state = 414}, - [2514] = {.lex_state = 182}, - [2515] = {.lex_state = 182}, - [2516] = {.lex_state = 182}, - [2517] = {.lex_state = 182}, - [2518] = {.lex_state = 182}, - [2519] = {.lex_state = 182}, - [2520] = {.lex_state = 182}, - [2521] = {.lex_state = 1059}, - [2522] = {.lex_state = 182}, - [2523] = {.lex_state = 1046}, - [2524] = {.lex_state = 182}, - [2525] = {.lex_state = 53}, - [2526] = {.lex_state = 182}, - [2527] = {.lex_state = 182}, - [2528] = {.lex_state = 414}, - [2529] = {.lex_state = 182}, - [2530] = {.lex_state = 41}, - [2531] = {.lex_state = 41}, - [2532] = {.lex_state = 41}, - [2533] = {.lex_state = 41}, - [2534] = {.lex_state = 1046}, - [2535] = {.lex_state = 182}, - [2536] = {.lex_state = 182}, - [2537] = {.lex_state = 43}, - [2538] = {.lex_state = 182}, - [2539] = {.lex_state = 1059}, - [2540] = {.lex_state = 1059}, - [2541] = {.lex_state = 1059}, - [2542] = {.lex_state = 1059}, - [2543] = {.lex_state = 1045}, - [2544] = {.lex_state = 1059}, - [2545] = {.lex_state = 1059}, - [2546] = {.lex_state = 1045}, - [2547] = {.lex_state = 1059}, - [2548] = {.lex_state = 1059}, - [2549] = {.lex_state = 1059}, - [2550] = {.lex_state = 1059}, - [2551] = {.lex_state = 1059}, - [2552] = {.lex_state = 1059}, - [2553] = {.lex_state = 328}, - [2554] = {.lex_state = 1059}, - [2555] = {.lex_state = 1059}, - [2556] = {.lex_state = 1059}, - [2557] = {.lex_state = 1059}, - [2558] = {.lex_state = 1059}, - [2559] = {.lex_state = 52}, - [2560] = {.lex_state = 1059}, - [2561] = {.lex_state = 1059}, - [2562] = {.lex_state = 1059}, - [2563] = {.lex_state = 1059}, - [2564] = {.lex_state = 1059}, - [2565] = {.lex_state = 1059}, - [2566] = {.lex_state = 1059}, - [2567] = {.lex_state = 1059}, - [2568] = {.lex_state = 1046}, - [2569] = {.lex_state = 1059}, - [2570] = {.lex_state = 52}, - [2571] = {.lex_state = 1059}, - [2572] = {.lex_state = 1059}, - [2573] = {.lex_state = 1059}, - [2574] = {.lex_state = 1059}, - [2575] = {.lex_state = 1046}, - [2576] = {.lex_state = 1046}, - [2577] = {.lex_state = 1059}, - [2578] = {.lex_state = 1059}, - [2579] = {.lex_state = 1059}, - [2580] = {.lex_state = 1059}, - [2581] = {.lex_state = 1059}, - [2582] = {.lex_state = 318}, - [2583] = {.lex_state = 1059}, - [2584] = {.lex_state = 309}, - [2585] = {.lex_state = 1059}, - [2586] = {.lex_state = 1059}, - [2587] = {.lex_state = 1059}, - [2588] = {.lex_state = 1059}, - [2589] = {.lex_state = 1059}, - [2590] = {.lex_state = 1059}, - [2591] = {.lex_state = 1059}, - [2592] = {.lex_state = 52}, - [2593] = {.lex_state = 1059}, - [2594] = {.lex_state = 1059}, - [2595] = {.lex_state = 283}, - [2596] = {.lex_state = 1059}, - [2597] = {.lex_state = 416}, - [2598] = {.lex_state = 416}, - [2599] = {.lex_state = 1059}, - [2600] = {.lex_state = 1059}, - [2601] = {.lex_state = 283}, - [2602] = {.lex_state = 1059}, - [2603] = {.lex_state = 1059}, - [2604] = {.lex_state = 1059}, - [2605] = {.lex_state = 282}, - [2606] = {.lex_state = 1059}, - [2607] = {.lex_state = 1059}, - [2608] = {.lex_state = 1059}, - [2609] = {.lex_state = 416}, - [2610] = {.lex_state = 1059}, - [2611] = {.lex_state = 1059}, - [2612] = {.lex_state = 1059}, - [2613] = {.lex_state = 1059}, - [2614] = {.lex_state = 1059}, - [2615] = {.lex_state = 52}, - [2616] = {.lex_state = 1059}, - [2617] = {.lex_state = 1059}, - [2618] = {.lex_state = 416}, - [2619] = {.lex_state = 1059}, - [2620] = {.lex_state = 1059}, - [2621] = {.lex_state = 1059}, - [2622] = {.lex_state = 1045}, - [2623] = {.lex_state = 1045}, - [2624] = {.lex_state = 1045}, - [2625] = {.lex_state = 52}, - [2626] = {.lex_state = 1059}, - [2627] = {.lex_state = 1059}, - [2628] = {.lex_state = 1059}, - [2629] = {.lex_state = 1059}, - [2630] = {.lex_state = 416}, - [2631] = {.lex_state = 52}, - [2632] = {.lex_state = 41}, - [2633] = {.lex_state = 41}, - [2634] = {.lex_state = 409}, - [2635] = {.lex_state = 281}, - [2636] = {.lex_state = 409}, - [2637] = {.lex_state = 409}, - [2638] = {.lex_state = 281}, - [2639] = {.lex_state = 327}, - [2640] = {.lex_state = 1044}, - [2641] = {.lex_state = 327}, - [2642] = {.lex_state = 327}, - [2643] = {.lex_state = 1044}, - [2644] = {.lex_state = 1044}, - [2645] = {.lex_state = 1046}, - [2646] = {.lex_state = 409}, - [2647] = {.lex_state = 41}, - [2648] = {.lex_state = 409}, - [2649] = {.lex_state = 1044}, - [2650] = {.lex_state = 1046}, - [2651] = {.lex_state = 1044}, - [2652] = {.lex_state = 1044}, - [2653] = {.lex_state = 1044}, - [2654] = {.lex_state = 1044}, - [2655] = {.lex_state = 409}, - [2656] = {.lex_state = 41}, - [2657] = {.lex_state = 1044}, - [2658] = {.lex_state = 1046}, - [2659] = {.lex_state = 409}, - [2660] = {.lex_state = 409}, - [2661] = {.lex_state = 41}, - [2662] = {.lex_state = 1044}, - [2663] = {.lex_state = 1044}, - [2664] = {.lex_state = 312}, + [1869] = {.lex_state = 122}, + [1870] = {.lex_state = 966}, + [1871] = {.lex_state = 122}, + [1872] = {.lex_state = 122}, + [1873] = {.lex_state = 1036}, + [1874] = {.lex_state = 966}, + [1875] = {.lex_state = 122}, + [1876] = {.lex_state = 966}, + [1877] = {.lex_state = 1036}, + [1878] = {.lex_state = 966}, + [1879] = {.lex_state = 122}, + [1880] = {.lex_state = 122}, + [1881] = {.lex_state = 122}, + [1882] = {.lex_state = 122}, + [1883] = {.lex_state = 966}, + [1884] = {.lex_state = 122}, + [1885] = {.lex_state = 122}, + [1886] = {.lex_state = 122}, + [1887] = {.lex_state = 122}, + [1888] = {.lex_state = 122}, + [1889] = {.lex_state = 966}, + [1890] = {.lex_state = 122}, + [1891] = {.lex_state = 122}, + [1892] = {.lex_state = 966}, + [1893] = {.lex_state = 1036}, + [1894] = {.lex_state = 1036}, + [1895] = {.lex_state = 103}, + [1896] = {.lex_state = 966}, + [1897] = {.lex_state = 122}, + [1898] = {.lex_state = 121}, + [1899] = {.lex_state = 966}, + [1900] = {.lex_state = 966}, + [1901] = {.lex_state = 122}, + [1902] = {.lex_state = 122}, + [1903] = {.lex_state = 122}, + [1904] = {.lex_state = 999}, + [1905] = {.lex_state = 122}, + [1906] = {.lex_state = 999}, + [1907] = {.lex_state = 122}, + [1908] = {.lex_state = 1036}, + [1909] = {.lex_state = 1036}, + [1910] = {.lex_state = 966}, + [1911] = {.lex_state = 966}, + [1912] = {.lex_state = 966}, + [1913] = {.lex_state = 966}, + [1914] = {.lex_state = 966}, + [1915] = {.lex_state = 966}, + [1916] = {.lex_state = 966}, + [1917] = {.lex_state = 144}, + [1918] = {.lex_state = 966}, + [1919] = {.lex_state = 966}, + [1920] = {.lex_state = 966}, + [1921] = {.lex_state = 966}, + [1922] = {.lex_state = 966}, + [1923] = {.lex_state = 144}, + [1924] = {.lex_state = 966}, + [1925] = {.lex_state = 966}, + [1926] = {.lex_state = 1036}, + [1927] = {.lex_state = 122}, + [1928] = {.lex_state = 984}, + [1929] = {.lex_state = 984}, + [1930] = {.lex_state = 984}, + [1931] = {.lex_state = 1058}, + [1932] = {.lex_state = 1058}, + [1933] = {.lex_state = 1036}, + [1934] = {.lex_state = 122}, + [1935] = {.lex_state = 121}, + [1936] = {.lex_state = 1058}, + [1937] = {.lex_state = 121}, + [1938] = {.lex_state = 999}, + [1939] = {.lex_state = 121}, + [1940] = {.lex_state = 986}, + [1941] = {.lex_state = 122}, + [1942] = {.lex_state = 122}, + [1943] = {.lex_state = 122}, + [1944] = {.lex_state = 122}, + [1945] = {.lex_state = 121}, + [1946] = {.lex_state = 1036}, + [1947] = {.lex_state = 1036}, + [1948] = {.lex_state = 1036}, + [1949] = {.lex_state = 984}, + [1950] = {.lex_state = 121}, + [1951] = {.lex_state = 121}, + [1952] = {.lex_state = 121}, + [1953] = {.lex_state = 999}, + [1954] = {.lex_state = 121}, + [1955] = {.lex_state = 121}, + [1956] = {.lex_state = 1058}, + [1957] = {.lex_state = 40}, + [1958] = {.lex_state = 121}, + [1959] = {.lex_state = 121}, + [1960] = {.lex_state = 1036}, + [1961] = {.lex_state = 122}, + [1962] = {.lex_state = 984}, + [1963] = {.lex_state = 121}, + [1964] = {.lex_state = 121}, + [1965] = {.lex_state = 1036}, + [1966] = {.lex_state = 121}, + [1967] = {.lex_state = 1036}, + [1968] = {.lex_state = 121}, + [1969] = {.lex_state = 121}, + [1970] = {.lex_state = 1058}, + [1971] = {.lex_state = 999}, + [1972] = {.lex_state = 984}, + [1973] = {.lex_state = 121}, + [1974] = {.lex_state = 984}, + [1975] = {.lex_state = 121}, + [1976] = {.lex_state = 121}, + [1977] = {.lex_state = 121}, + [1978] = {.lex_state = 121}, + [1979] = {.lex_state = 984}, + [1980] = {.lex_state = 121}, + [1981] = {.lex_state = 40}, + [1982] = {.lex_state = 999}, + [1983] = {.lex_state = 986}, + [1984] = {.lex_state = 1036}, + [1985] = {.lex_state = 986}, + [1986] = {.lex_state = 144}, + [1987] = {.lex_state = 144}, + [1988] = {.lex_state = 121}, + [1989] = {.lex_state = 122}, + [1990] = {.lex_state = 122}, + [1991] = {.lex_state = 122}, + [1992] = {.lex_state = 122}, + [1993] = {.lex_state = 986}, + [1994] = {.lex_state = 122}, + [1995] = {.lex_state = 1054}, + [1996] = {.lex_state = 1054}, + [1997] = {.lex_state = 122}, + [1998] = {.lex_state = 1053}, + [1999] = {.lex_state = 122}, + [2000] = {.lex_state = 122}, + [2001] = {.lex_state = 122}, + [2002] = {.lex_state = 122}, + [2003] = {.lex_state = 1036}, + [2004] = {.lex_state = 122}, + [2005] = {.lex_state = 122}, + [2006] = {.lex_state = 122}, + [2007] = {.lex_state = 122}, + [2008] = {.lex_state = 122}, + [2009] = {.lex_state = 122}, + [2010] = {.lex_state = 1036}, + [2011] = {.lex_state = 122}, + [2012] = {.lex_state = 122}, + [2013] = {.lex_state = 122}, + [2014] = {.lex_state = 122}, + [2015] = {.lex_state = 122}, + [2016] = {.lex_state = 122}, + [2017] = {.lex_state = 122}, + [2018] = {.lex_state = 122}, + [2019] = {.lex_state = 122}, + [2020] = {.lex_state = 122}, + [2021] = {.lex_state = 122}, + [2022] = {.lex_state = 122}, + [2023] = {.lex_state = 354}, + [2024] = {.lex_state = 122}, + [2025] = {.lex_state = 122}, + [2026] = {.lex_state = 122}, + [2027] = {.lex_state = 122}, + [2028] = {.lex_state = 122}, + [2029] = {.lex_state = 122}, + [2030] = {.lex_state = 122}, + [2031] = {.lex_state = 122}, + [2032] = {.lex_state = 122}, + [2033] = {.lex_state = 122}, + [2034] = {.lex_state = 999}, + [2035] = {.lex_state = 999}, + [2036] = {.lex_state = 122}, + [2037] = {.lex_state = 122}, + [2038] = {.lex_state = 122}, + [2039] = {.lex_state = 122}, + [2040] = {.lex_state = 122}, + [2041] = {.lex_state = 122}, + [2042] = {.lex_state = 122}, + [2043] = {.lex_state = 122}, + [2044] = {.lex_state = 122}, + [2045] = {.lex_state = 122}, + [2046] = {.lex_state = 122}, + [2047] = {.lex_state = 122}, + [2048] = {.lex_state = 999}, + [2049] = {.lex_state = 999}, + [2050] = {.lex_state = 122}, + [2051] = {.lex_state = 122}, + [2052] = {.lex_state = 122}, + [2053] = {.lex_state = 122}, + [2054] = {.lex_state = 122}, + [2055] = {.lex_state = 122}, + [2056] = {.lex_state = 999}, + [2057] = {.lex_state = 1058}, + [2058] = {.lex_state = 122}, + [2059] = {.lex_state = 122}, + [2060] = {.lex_state = 1058}, + [2061] = {.lex_state = 38}, + [2062] = {.lex_state = 122}, + [2063] = {.lex_state = 122}, + [2064] = {.lex_state = 122}, + [2065] = {.lex_state = 122}, + [2066] = {.lex_state = 122}, + [2067] = {.lex_state = 122}, + [2068] = {.lex_state = 986}, + [2069] = {.lex_state = 122}, + [2070] = {.lex_state = 111}, + [2071] = {.lex_state = 122}, + [2072] = {.lex_state = 986}, + [2073] = {.lex_state = 348}, + [2074] = {.lex_state = 122}, + [2075] = {.lex_state = 122}, + [2076] = {.lex_state = 122}, + [2077] = {.lex_state = 122}, + [2078] = {.lex_state = 149}, + [2079] = {.lex_state = 122}, + [2080] = {.lex_state = 149}, + [2081] = {.lex_state = 1058}, + [2082] = {.lex_state = 149}, + [2083] = {.lex_state = 122}, + [2084] = {.lex_state = 122}, + [2085] = {.lex_state = 122}, + [2086] = {.lex_state = 122}, + [2087] = {.lex_state = 122}, + [2088] = {.lex_state = 122}, + [2089] = {.lex_state = 149}, + [2090] = {.lex_state = 149}, + [2091] = {.lex_state = 999}, + [2092] = {.lex_state = 1058}, + [2093] = {.lex_state = 1058}, + [2094] = {.lex_state = 122}, + [2095] = {.lex_state = 999}, + [2096] = {.lex_state = 999}, + [2097] = {.lex_state = 348}, + [2098] = {.lex_state = 99}, + [2099] = {.lex_state = 99}, + [2100] = {.lex_state = 122}, + [2101] = {.lex_state = 122}, + [2102] = {.lex_state = 999}, + [2103] = {.lex_state = 122}, + [2104] = {.lex_state = 51}, + [2105] = {.lex_state = 356}, + [2106] = {.lex_state = 999}, + [2107] = {.lex_state = 986}, + [2108] = {.lex_state = 999}, + [2109] = {.lex_state = 122}, + [2110] = {.lex_state = 122}, + [2111] = {.lex_state = 122}, + [2112] = {.lex_state = 122}, + [2113] = {.lex_state = 122}, + [2114] = {.lex_state = 122}, + [2115] = {.lex_state = 122}, + [2116] = {.lex_state = 122}, + [2117] = {.lex_state = 122}, + [2118] = {.lex_state = 38}, + [2119] = {.lex_state = 1062}, + [2120] = {.lex_state = 122}, + [2121] = {.lex_state = 999}, + [2122] = {.lex_state = 122}, + [2123] = {.lex_state = 999}, + [2124] = {.lex_state = 986}, + [2125] = {.lex_state = 122}, + [2126] = {.lex_state = 1036}, + [2127] = {.lex_state = 99}, + [2128] = {.lex_state = 99}, + [2129] = {.lex_state = 122}, + [2130] = {.lex_state = 122}, + [2131] = {.lex_state = 999}, + [2132] = {.lex_state = 999}, + [2133] = {.lex_state = 122}, + [2134] = {.lex_state = 122}, + [2135] = {.lex_state = 122}, + [2136] = {.lex_state = 122}, + [2137] = {.lex_state = 122}, + [2138] = {.lex_state = 122}, + [2139] = {.lex_state = 122}, + [2140] = {.lex_state = 122}, + [2141] = {.lex_state = 144}, + [2142] = {.lex_state = 1062}, + [2143] = {.lex_state = 1062}, + [2144] = {.lex_state = 122}, + [2145] = {.lex_state = 122}, + [2146] = {.lex_state = 122}, + [2147] = {.lex_state = 122}, + [2148] = {.lex_state = 122}, + [2149] = {.lex_state = 122}, + [2150] = {.lex_state = 122}, + [2151] = {.lex_state = 122}, + [2152] = {.lex_state = 122}, + [2153] = {.lex_state = 144}, + [2154] = {.lex_state = 144}, + [2155] = {.lex_state = 999}, + [2156] = {.lex_state = 999}, + [2157] = {.lex_state = 51}, + [2158] = {.lex_state = 122}, + [2159] = {.lex_state = 1054}, + [2160] = {.lex_state = 985}, + [2161] = {.lex_state = 101}, + [2162] = {.lex_state = 38}, + [2163] = {.lex_state = 1062}, + [2164] = {.lex_state = 122}, + [2165] = {.lex_state = 353}, + [2166] = {.lex_state = 1062}, + [2167] = {.lex_state = 1062}, + [2168] = {.lex_state = 122}, + [2169] = {.lex_state = 122}, + [2170] = {.lex_state = 122}, + [2171] = {.lex_state = 122}, + [2172] = {.lex_state = 122}, + [2173] = {.lex_state = 122}, + [2174] = {.lex_state = 122}, + [2175] = {.lex_state = 122}, + [2176] = {.lex_state = 122}, + [2177] = {.lex_state = 122}, + [2178] = {.lex_state = 122}, + [2179] = {.lex_state = 1062}, + [2180] = {.lex_state = 1054}, + [2181] = {.lex_state = 122}, + [2182] = {.lex_state = 122}, + [2183] = {.lex_state = 122}, + [2184] = {.lex_state = 122}, + [2185] = {.lex_state = 122}, + [2186] = {.lex_state = 122}, + [2187] = {.lex_state = 999}, + [2188] = {.lex_state = 999}, + [2189] = {.lex_state = 999}, + [2190] = {.lex_state = 999}, + [2191] = {.lex_state = 999}, + [2192] = {.lex_state = 999}, + [2193] = {.lex_state = 999}, + [2194] = {.lex_state = 999}, + [2195] = {.lex_state = 999}, + [2196] = {.lex_state = 999}, + [2197] = {.lex_state = 999}, + [2198] = {.lex_state = 999}, + [2199] = {.lex_state = 122}, + [2200] = {.lex_state = 122}, + [2201] = {.lex_state = 122}, + [2202] = {.lex_state = 122}, + [2203] = {.lex_state = 122}, + [2204] = {.lex_state = 122}, + [2205] = {.lex_state = 122}, + [2206] = {.lex_state = 122}, + [2207] = {.lex_state = 122}, + [2208] = {.lex_state = 122}, + [2209] = {.lex_state = 122}, + [2210] = {.lex_state = 122}, + [2211] = {.lex_state = 122}, + [2212] = {.lex_state = 353}, + [2213] = {.lex_state = 38}, + [2214] = {.lex_state = 122}, + [2215] = {.lex_state = 38}, + [2216] = {.lex_state = 122}, + [2217] = {.lex_state = 152}, + [2218] = {.lex_state = 122}, + [2219] = {.lex_state = 122}, + [2220] = {.lex_state = 999}, + [2221] = {.lex_state = 152}, + [2222] = {.lex_state = 1053}, + [2223] = {.lex_state = 122}, + [2224] = {.lex_state = 122}, + [2225] = {.lex_state = 152}, + [2226] = {.lex_state = 985}, + [2227] = {.lex_state = 985}, + [2228] = {.lex_state = 122}, + [2229] = {.lex_state = 122}, + [2230] = {.lex_state = 122}, + [2231] = {.lex_state = 122}, + [2232] = {.lex_state = 122}, + [2233] = {.lex_state = 122}, + [2234] = {.lex_state = 38}, + [2235] = {.lex_state = 224}, + [2236] = {.lex_state = 122}, + [2237] = {.lex_state = 122}, + [2238] = {.lex_state = 122}, + [2239] = {.lex_state = 122}, + [2240] = {.lex_state = 122}, + [2241] = {.lex_state = 122}, + [2242] = {.lex_state = 999}, + [2243] = {.lex_state = 122}, + [2244] = {.lex_state = 122}, + [2245] = {.lex_state = 122}, + [2246] = {.lex_state = 122}, + [2247] = {.lex_state = 122}, + [2248] = {.lex_state = 122}, + [2249] = {.lex_state = 122}, + [2250] = {.lex_state = 999}, + [2251] = {.lex_state = 986}, + [2252] = {.lex_state = 122}, + [2253] = {.lex_state = 122}, + [2254] = {.lex_state = 122}, + [2255] = {.lex_state = 122}, + [2256] = {.lex_state = 122}, + [2257] = {.lex_state = 122}, + [2258] = {.lex_state = 122}, + [2259] = {.lex_state = 122}, + [2260] = {.lex_state = 122}, + [2261] = {.lex_state = 122}, + [2262] = {.lex_state = 122}, + [2263] = {.lex_state = 986}, + [2264] = {.lex_state = 999}, + [2265] = {.lex_state = 122}, + [2266] = {.lex_state = 999}, + [2267] = {.lex_state = 122}, + [2268] = {.lex_state = 122}, + [2269] = {.lex_state = 122}, + [2270] = {.lex_state = 122}, + [2271] = {.lex_state = 122}, + [2272] = {.lex_state = 122}, + [2273] = {.lex_state = 122}, + [2274] = {.lex_state = 146}, + [2275] = {.lex_state = 146}, + [2276] = {.lex_state = 122}, + [2277] = {.lex_state = 40}, + [2278] = {.lex_state = 122}, + [2279] = {.lex_state = 122}, + [2280] = {.lex_state = 122}, + [2281] = {.lex_state = 122}, + [2282] = {.lex_state = 122}, + [2283] = {.lex_state = 122}, + [2284] = {.lex_state = 122}, + [2285] = {.lex_state = 122}, + [2286] = {.lex_state = 122}, + [2287] = {.lex_state = 122}, + [2288] = {.lex_state = 122}, + [2289] = {.lex_state = 122}, + [2290] = {.lex_state = 122}, + [2291] = {.lex_state = 122}, + [2292] = {.lex_state = 122}, + [2293] = {.lex_state = 122}, + [2294] = {.lex_state = 122}, + [2295] = {.lex_state = 122}, + [2296] = {.lex_state = 122}, + [2297] = {.lex_state = 40}, + [2298] = {.lex_state = 122}, + [2299] = {.lex_state = 122}, + [2300] = {.lex_state = 122}, + [2301] = {.lex_state = 40}, + [2302] = {.lex_state = 122}, + [2303] = {.lex_state = 122}, + [2304] = {.lex_state = 122}, + [2305] = {.lex_state = 122}, + [2306] = {.lex_state = 145}, + [2307] = {.lex_state = 122}, + [2308] = {.lex_state = 122}, + [2309] = {.lex_state = 122}, + [2310] = {.lex_state = 122}, + [2311] = {.lex_state = 122}, + [2312] = {.lex_state = 122}, + [2313] = {.lex_state = 122}, + [2314] = {.lex_state = 122}, + [2315] = {.lex_state = 122}, + [2316] = {.lex_state = 122}, + [2317] = {.lex_state = 122}, + [2318] = {.lex_state = 122}, + [2319] = {.lex_state = 122}, + [2320] = {.lex_state = 40}, + [2321] = {.lex_state = 40}, + [2322] = {.lex_state = 1054}, + [2323] = {.lex_state = 1054}, + [2324] = {.lex_state = 40}, + [2325] = {.lex_state = 40}, + [2326] = {.lex_state = 40}, + [2327] = {.lex_state = 101}, + [2328] = {.lex_state = 38}, + [2329] = {.lex_state = 40}, + [2330] = {.lex_state = 40}, + [2331] = {.lex_state = 40}, + [2332] = {.lex_state = 40}, + [2333] = {.lex_state = 1062}, + [2334] = {.lex_state = 122}, + [2335] = {.lex_state = 38}, + [2336] = {.lex_state = 40}, + [2337] = {.lex_state = 38}, + [2338] = {.lex_state = 38}, + [2339] = {.lex_state = 38}, + [2340] = {.lex_state = 38}, + [2341] = {.lex_state = 985}, + [2342] = {.lex_state = 985}, + [2343] = {.lex_state = 999}, + [2344] = {.lex_state = 249}, + [2345] = {.lex_state = 999}, + [2346] = {.lex_state = 999}, + [2347] = {.lex_state = 999}, + [2348] = {.lex_state = 999}, + [2349] = {.lex_state = 999}, + [2350] = {.lex_state = 985}, + [2351] = {.lex_state = 999}, + [2352] = {.lex_state = 999}, + [2353] = {.lex_state = 999}, + [2354] = {.lex_state = 999}, + [2355] = {.lex_state = 999}, + [2356] = {.lex_state = 999}, + [2357] = {.lex_state = 999}, + [2358] = {.lex_state = 355}, + [2359] = {.lex_state = 985}, + [2360] = {.lex_state = 999}, + [2361] = {.lex_state = 986}, + [2362] = {.lex_state = 999}, + [2363] = {.lex_state = 986}, + [2364] = {.lex_state = 999}, + [2365] = {.lex_state = 999}, + [2366] = {.lex_state = 999}, + [2367] = {.lex_state = 999}, + [2368] = {.lex_state = 999}, + [2369] = {.lex_state = 999}, + [2370] = {.lex_state = 999}, + [2371] = {.lex_state = 999}, + [2372] = {.lex_state = 999}, + [2373] = {.lex_state = 985}, + [2374] = {.lex_state = 223}, + [2375] = {.lex_state = 999}, + [2376] = {.lex_state = 999}, + [2377] = {.lex_state = 999}, + [2378] = {.lex_state = 999}, + [2379] = {.lex_state = 268}, + [2380] = {.lex_state = 999}, + [2381] = {.lex_state = 999}, + [2382] = {.lex_state = 999}, + [2383] = {.lex_state = 999}, + [2384] = {.lex_state = 999}, + [2385] = {.lex_state = 999}, + [2386] = {.lex_state = 222}, + [2387] = {.lex_state = 999}, + [2388] = {.lex_state = 999}, + [2389] = {.lex_state = 355}, + [2390] = {.lex_state = 999}, + [2391] = {.lex_state = 999}, + [2392] = {.lex_state = 999}, + [2393] = {.lex_state = 999}, + [2394] = {.lex_state = 999}, + [2395] = {.lex_state = 355}, + [2396] = {.lex_state = 999}, + [2397] = {.lex_state = 999}, + [2398] = {.lex_state = 999}, + [2399] = {.lex_state = 999}, + [2400] = {.lex_state = 258}, + [2401] = {.lex_state = 999}, + [2402] = {.lex_state = 999}, + [2403] = {.lex_state = 999}, + [2404] = {.lex_state = 999}, + [2405] = {.lex_state = 999}, + [2406] = {.lex_state = 999}, + [2407] = {.lex_state = 999}, + [2408] = {.lex_state = 999}, + [2409] = {.lex_state = 999}, + [2410] = {.lex_state = 999}, + [2411] = {.lex_state = 999}, + [2412] = {.lex_state = 223}, + [2413] = {.lex_state = 999}, + [2414] = {.lex_state = 999}, + [2415] = {.lex_state = 999}, + [2416] = {.lex_state = 985}, + [2417] = {.lex_state = 999}, + [2418] = {.lex_state = 985}, + [2419] = {.lex_state = 999}, + [2420] = {.lex_state = 355}, + [2421] = {.lex_state = 999}, + [2422] = {.lex_state = 355}, + [2423] = {.lex_state = 999}, + [2424] = {.lex_state = 999}, + [2425] = {.lex_state = 986}, + [2426] = {.lex_state = 999}, + [2427] = {.lex_state = 999}, + [2428] = {.lex_state = 999}, + [2429] = {.lex_state = 999}, + [2430] = {.lex_state = 984}, + [2431] = {.lex_state = 348}, + [2432] = {.lex_state = 984}, + [2433] = {.lex_state = 221}, + [2434] = {.lex_state = 251}, + [2435] = {.lex_state = 267}, + [2436] = {.lex_state = 984}, + [2437] = {.lex_state = 984}, + [2438] = {.lex_state = 984}, + [2439] = {.lex_state = 348}, + [2440] = {.lex_state = 348}, + [2441] = {.lex_state = 348}, + [2442] = {.lex_state = 348}, + [2443] = {.lex_state = 984}, + [2444] = {.lex_state = 984}, + [2445] = {.lex_state = 984}, + [2446] = {.lex_state = 984}, + [2447] = {.lex_state = 38}, + [2448] = {.lex_state = 267}, + [2449] = {.lex_state = 984}, + [2450] = {.lex_state = 38}, + [2451] = {.lex_state = 38}, + [2452] = {.lex_state = 348}, + [2453] = {.lex_state = 267}, + [2454] = {.lex_state = 986}, + [2455] = {.lex_state = 986}, + [2456] = {.lex_state = 38}, + [2457] = {.lex_state = 348}, + [2458] = {.lex_state = 221}, + [2459] = {.lex_state = 251}, + [2460] = {.lex_state = 984}, + [2461] = {.lex_state = 984}, + [2462] = {.lex_state = 986}, + [2463] = {.lex_state = 984}, + [2464] = {.lex_state = 984}, + [2465] = {.lex_state = 266}, + [2466] = {.lex_state = 984}, + [2467] = {.lex_state = 38}, + [2468] = {.lex_state = 252}, + [2469] = {.lex_state = 348}, + [2470] = {.lex_state = 984}, + [2471] = {.lex_state = 267}, + [2472] = {.lex_state = 38}, + [2473] = {.lex_state = 38}, + [2474] = {.lex_state = 38}, + [2475] = {.lex_state = 38}, + [2476] = {.lex_state = 38}, + [2477] = {.lex_state = 984}, + [2478] = {.lex_state = 984}, + [2479] = {.lex_state = 38}, + [2480] = {.lex_state = 984}, + [2481] = {.lex_state = 38}, + [2482] = {.lex_state = 38}, + [2483] = {.lex_state = 38}, + [2484] = {.lex_state = 984}, + [2485] = {.lex_state = 984}, + [2486] = {.lex_state = 252}, + [2487] = {.lex_state = 252}, + [2488] = {.lex_state = 38}, + [2489] = {.lex_state = 252}, + [2490] = {.lex_state = 984}, + [2491] = {.lex_state = 252}, + [2492] = {.lex_state = 38}, + [2493] = {.lex_state = 38}, + [2494] = {.lex_state = 259}, + [2495] = {.lex_state = 38}, + [2496] = {.lex_state = 38}, + [2497] = {.lex_state = 38}, + [2498] = {.lex_state = 984}, + [2499] = {.lex_state = 38}, + [2500] = {.lex_state = 984}, + [2501] = {.lex_state = 984}, + [2502] = {.lex_state = 322}, + [2503] = {.lex_state = 984}, + [2504] = {.lex_state = 38}, + [2505] = {.lex_state = 38}, + [2506] = {.lex_state = 38}, + [2507] = {.lex_state = 347}, + [2508] = {.lex_state = 347}, + [2509] = {.lex_state = 984}, + [2510] = {.lex_state = 347}, + [2511] = {.lex_state = 347}, + [2512] = {.lex_state = 38}, + [2513] = {.lex_state = 38}, + [2514] = {.lex_state = 265}, + [2515] = {.lex_state = 347}, + [2516] = {.lex_state = 347}, + [2517] = {.lex_state = 347}, + [2518] = {.lex_state = 347}, + [2519] = {.lex_state = 347}, + [2520] = {.lex_state = 347}, + [2521] = {.lex_state = 347}, + [2522] = {.lex_state = 347}, + [2523] = {.lex_state = 347}, + [2524] = {.lex_state = 347}, + [2525] = {.lex_state = 347}, + [2526] = {.lex_state = 347}, + [2527] = {.lex_state = 347}, + [2528] = {.lex_state = 347}, + [2529] = {.lex_state = 347}, + [2530] = {.lex_state = 347}, + [2531] = {.lex_state = 347}, + [2532] = {.lex_state = 337}, + [2533] = {.lex_state = 347}, + [2534] = {.lex_state = 38}, + [2535] = {.lex_state = 38}, + [2536] = {.lex_state = 328}, + [2537] = {.lex_state = 38}, + [2538] = {.lex_state = 38}, + [2539] = {.lex_state = 322}, + [2540] = {.lex_state = 322}, + [2541] = {.lex_state = 984}, + [2542] = {.lex_state = 38}, + [2543] = {.lex_state = 38}, + [2544] = {.lex_state = 38}, + [2545] = {.lex_state = 38}, + [2546] = {.lex_state = 38}, + [2547] = {.lex_state = 38}, + [2548] = {.lex_state = 265}, + [2549] = {.lex_state = 250}, + [2550] = {.lex_state = 265}, + [2551] = {.lex_state = 265}, + [2552] = {.lex_state = 347}, + [2553] = {.lex_state = 934}, + [2554] = {.lex_state = 253}, + [2555] = {.lex_state = 322}, + [2556] = {.lex_state = 347}, + [2557] = {.lex_state = 330}, + [2558] = {.lex_state = 213}, + [2559] = {.lex_state = 253}, + [2560] = {.lex_state = 309}, + [2561] = {.lex_state = 322}, + [2562] = {.lex_state = 309}, + [2563] = {.lex_state = 309}, + [2564] = {.lex_state = 347}, + [2565] = {.lex_state = 934}, + [2566] = {.lex_state = 330}, + [2567] = {.lex_state = 254}, + [2568] = {.lex_state = 213}, + [2569] = {.lex_state = 213}, + [2570] = {.lex_state = 320}, + [2571] = {.lex_state = 309}, + [2572] = {.lex_state = 38}, + [2573] = {.lex_state = 320}, + [2574] = {.lex_state = 345}, + [2575] = {.lex_state = 320}, + [2576] = {.lex_state = 321}, + [2577] = {.lex_state = 345}, + [2578] = {.lex_state = 345}, + [2579] = {.lex_state = 345}, + [2580] = {.lex_state = 346}, + [2581] = {.lex_state = 345}, + [2582] = {.lex_state = 346}, + [2583] = {.lex_state = 349}, + [2584] = {.lex_state = 254}, + [2585] = {.lex_state = 346}, + [2586] = {.lex_state = 43}, + [2587] = {.lex_state = 345}, + [2588] = {.lex_state = 319}, + [2589] = {.lex_state = 213}, + [2590] = {.lex_state = 934}, + [2591] = {.lex_state = 329}, + [2592] = {.lex_state = 213}, + [2593] = {.lex_state = 345}, + [2594] = {.lex_state = 345}, + [2595] = {.lex_state = 323}, + [2596] = {.lex_state = 320}, + [2597] = {.lex_state = 320}, + [2598] = {.lex_state = 254}, + [2599] = {.lex_state = 254}, + [2600] = {.lex_state = 934}, + [2601] = {.lex_state = 346}, + [2602] = {.lex_state = 331}, + [2603] = {.lex_state = 345}, + [2604] = {.lex_state = 346}, + [2605] = {.lex_state = 309}, + [2606] = {.lex_state = 331}, + [2607] = {.lex_state = 331}, + [2608] = {.lex_state = 213}, + [2609] = {.lex_state = 934}, + [2610] = {.lex_state = 934}, + [2611] = {.lex_state = 331}, + [2612] = {.lex_state = 254}, + [2613] = {.lex_state = 331}, + [2614] = {.lex_state = 338}, + [2615] = {.lex_state = 254}, + [2616] = {.lex_state = 934}, + [2617] = {.lex_state = 326}, + [2618] = {.lex_state = 364}, + [2619] = {.lex_state = 255}, + [2620] = {.lex_state = 38}, + [2621] = {.lex_state = 38}, + [2622] = {.lex_state = 260}, + [2623] = {.lex_state = 310}, + [2624] = {.lex_state = 317}, + [2625] = {.lex_state = 213}, + [2626] = {.lex_state = 317}, + [2627] = {.lex_state = 934}, + [2628] = {.lex_state = 364}, + [2629] = {.lex_state = 364}, + [2630] = {.lex_state = 345}, + [2631] = {.lex_state = 308}, + [2632] = {.lex_state = 364}, + [2633] = {.lex_state = 364}, + [2634] = {.lex_state = 326}, + [2635] = {.lex_state = 307}, + [2636] = {.lex_state = 345}, + [2637] = {.lex_state = 307}, + [2638] = {.lex_state = 38}, + [2639] = {.lex_state = 322}, + [2640] = {.lex_state = 306}, + [2641] = {.lex_state = 307}, + [2642] = {.lex_state = 307}, + [2643] = {.lex_state = 934}, + [2644] = {.lex_state = 966}, + [2645] = {.lex_state = 326}, + [2646] = {.lex_state = 934}, + [2647] = {.lex_state = 322}, + [2648] = {.lex_state = 322}, + [2649] = {.lex_state = 347}, + [2650] = {.lex_state = 326}, + [2651] = {.lex_state = 326}, + [2652] = {.lex_state = 307}, + [2653] = {.lex_state = 326}, + [2654] = {.lex_state = 348}, + [2655] = {.lex_state = 326}, + [2656] = {.lex_state = 38}, + [2657] = {.lex_state = 326}, + [2658] = {.lex_state = 352}, + [2659] = {.lex_state = 211}, + [2660] = {.lex_state = 348}, + [2661] = {.lex_state = 347}, + [2662] = {.lex_state = 43}, + [2663] = {.lex_state = 966}, + [2664] = {.lex_state = 966}, [2665] = {.lex_state = 326}, - [2666] = {.lex_state = 1044}, - [2667] = {.lex_state = 311}, - [2668] = {.lex_state = 327}, - [2669] = {.lex_state = 75}, - [2670] = {.lex_state = 1044}, - [2671] = {.lex_state = 311}, - [2672] = {.lex_state = 1044}, - [2673] = {.lex_state = 1044}, - [2674] = {.lex_state = 408}, - [2675] = {.lex_state = 1044}, - [2676] = {.lex_state = 1044}, - [2677] = {.lex_state = 41}, - [2678] = {.lex_state = 381}, - [2679] = {.lex_state = 41}, - [2680] = {.lex_state = 41}, - [2681] = {.lex_state = 41}, - [2682] = {.lex_state = 408}, - [2683] = {.lex_state = 41}, - [2684] = {.lex_state = 381}, - [2685] = {.lex_state = 396}, - [2686] = {.lex_state = 41}, - [2687] = {.lex_state = 387}, - [2688] = {.lex_state = 408}, - [2689] = {.lex_state = 41}, - [2690] = {.lex_state = 310}, - [2691] = {.lex_state = 1044}, - [2692] = {.lex_state = 408}, - [2693] = {.lex_state = 408}, - [2694] = {.lex_state = 408}, - [2695] = {.lex_state = 408}, - [2696] = {.lex_state = 312}, - [2697] = {.lex_state = 312}, - [2698] = {.lex_state = 312}, - [2699] = {.lex_state = 312}, - [2700] = {.lex_state = 41}, - [2701] = {.lex_state = 319}, - [2702] = {.lex_state = 75}, - [2703] = {.lex_state = 75}, - [2704] = {.lex_state = 41}, - [2705] = {.lex_state = 41}, - [2706] = {.lex_state = 41}, - [2707] = {.lex_state = 41}, - [2708] = {.lex_state = 408}, - [2709] = {.lex_state = 1044}, - [2710] = {.lex_state = 408}, - [2711] = {.lex_state = 41}, - [2712] = {.lex_state = 1044}, - [2713] = {.lex_state = 408}, - [2714] = {.lex_state = 41}, - [2715] = {.lex_state = 41}, - [2716] = {.lex_state = 1044}, - [2717] = {.lex_state = 1044}, - [2718] = {.lex_state = 41}, - [2719] = {.lex_state = 408}, - [2720] = {.lex_state = 408}, - [2721] = {.lex_state = 995}, - [2722] = {.lex_state = 41}, - [2723] = {.lex_state = 995}, - [2724] = {.lex_state = 408}, - [2725] = {.lex_state = 408}, - [2726] = {.lex_state = 41}, - [2727] = {.lex_state = 408}, - [2728] = {.lex_state = 408}, - [2729] = {.lex_state = 408}, - [2730] = {.lex_state = 41}, - [2731] = {.lex_state = 408}, - [2732] = {.lex_state = 408}, - [2733] = {.lex_state = 41}, - [2734] = {.lex_state = 408}, - [2735] = {.lex_state = 41}, - [2736] = {.lex_state = 41}, - [2737] = {.lex_state = 41}, - [2738] = {.lex_state = 41}, - [2739] = {.lex_state = 41}, - [2740] = {.lex_state = 41}, - [2741] = {.lex_state = 1044}, - [2742] = {.lex_state = 1044}, - [2743] = {.lex_state = 41}, - [2744] = {.lex_state = 325}, - [2745] = {.lex_state = 41}, - [2746] = {.lex_state = 41}, - [2747] = {.lex_state = 1044}, - [2748] = {.lex_state = 1044}, - [2749] = {.lex_state = 325}, - [2750] = {.lex_state = 408}, - [2751] = {.lex_state = 325}, - [2752] = {.lex_state = 325}, - [2753] = {.lex_state = 41}, - [2754] = {.lex_state = 408}, - [2755] = {.lex_state = 41}, - [2756] = {.lex_state = 408}, - [2757] = {.lex_state = 389}, - [2758] = {.lex_state = 408}, - [2759] = {.lex_state = 313}, - [2760] = {.lex_state = 995}, - [2761] = {.lex_state = 995}, - [2762] = {.lex_state = 313}, - [2763] = {.lex_state = 72}, - [2764] = {.lex_state = 381}, - [2765] = {.lex_state = 381}, - [2766] = {.lex_state = 995}, - [2767] = {.lex_state = 995}, - [2768] = {.lex_state = 995}, - [2769] = {.lex_state = 70}, - [2770] = {.lex_state = 72}, - [2771] = {.lex_state = 368}, - [2772] = {.lex_state = 389}, - [2773] = {.lex_state = 408}, - [2774] = {.lex_state = 72}, - [2775] = {.lex_state = 72}, - [2776] = {.lex_state = 72}, - [2777] = {.lex_state = 45}, - [2778] = {.lex_state = 74}, - [2779] = {.lex_state = 368}, - [2780] = {.lex_state = 378}, - [2781] = {.lex_state = 368}, - [2782] = {.lex_state = 406}, - [2783] = {.lex_state = 406}, - [2784] = {.lex_state = 406}, - [2785] = {.lex_state = 406}, - [2786] = {.lex_state = 407}, - [2787] = {.lex_state = 368}, - [2788] = {.lex_state = 407}, - [2789] = {.lex_state = 397}, - [2790] = {.lex_state = 66}, - [2791] = {.lex_state = 407}, - [2792] = {.lex_state = 314}, - [2793] = {.lex_state = 406}, - [2794] = {.lex_state = 66}, - [2795] = {.lex_state = 273}, - [2796] = {.lex_state = 406}, - [2797] = {.lex_state = 390}, - [2798] = {.lex_state = 406}, - [2799] = {.lex_state = 273}, - [2800] = {.lex_state = 390}, - [2801] = {.lex_state = 407}, - [2802] = {.lex_state = 995}, - [2803] = {.lex_state = 314}, - [2804] = {.lex_state = 314}, - [2805] = {.lex_state = 388}, - [2806] = {.lex_state = 390}, - [2807] = {.lex_state = 379}, - [2808] = {.lex_state = 995}, - [2809] = {.lex_state = 379}, - [2810] = {.lex_state = 80}, - [2811] = {.lex_state = 41}, - [2812] = {.lex_state = 75}, - [2813] = {.lex_state = 407}, - [2814] = {.lex_state = 314}, - [2815] = {.lex_state = 314}, - [2816] = {.lex_state = 995}, - [2817] = {.lex_state = 390}, - [2818] = {.lex_state = 75}, - [2819] = {.lex_state = 410}, - [2820] = {.lex_state = 273}, - [2821] = {.lex_state = 273}, - [2822] = {.lex_state = 273}, - [2823] = {.lex_state = 379}, - [2824] = {.lex_state = 75}, - [2825] = {.lex_state = 379}, - [2826] = {.lex_state = 390}, - [2827] = {.lex_state = 406}, - [2828] = {.lex_state = 406}, - [2829] = {.lex_state = 314}, - [2830] = {.lex_state = 380}, - [2831] = {.lex_state = 382}, - [2832] = {.lex_state = 45}, - [2833] = {.lex_state = 379}, - [2834] = {.lex_state = 273}, - [2835] = {.lex_state = 366}, - [2836] = {.lex_state = 366}, - [2837] = {.lex_state = 315}, - [2838] = {.lex_state = 406}, - [2839] = {.lex_state = 68}, - [2840] = {.lex_state = 381}, - [2841] = {.lex_state = 408}, + [2666] = {.lex_state = 347}, + [2667] = {.lex_state = 211}, + [2668] = {.lex_state = 326}, + [2669] = {.lex_state = 211}, + [2670] = {.lex_state = 326}, + [2671] = {.lex_state = 326}, + [2672] = {.lex_state = 326}, + [2673] = {.lex_state = 211}, + [2674] = {.lex_state = 326}, + [2675] = {.lex_state = 38}, + [2676] = {.lex_state = 326}, + [2677] = {.lex_state = 326}, + [2678] = {.lex_state = 326}, + [2679] = {.lex_state = 326}, + [2680] = {.lex_state = 38}, + [2681] = {.lex_state = 38}, + [2682] = {.lex_state = 332}, + [2683] = {.lex_state = 332}, + [2684] = {.lex_state = 326}, + [2685] = {.lex_state = 326}, + [2686] = {.lex_state = 38}, + [2687] = {.lex_state = 38}, + [2688] = {.lex_state = 38}, + [2689] = {.lex_state = 38}, + [2690] = {.lex_state = 38}, + [2691] = {.lex_state = 38}, + [2692] = {.lex_state = 38}, + [2693] = {.lex_state = 310}, + [2694] = {.lex_state = 310}, + [2695] = {.lex_state = 212}, + [2696] = {.lex_state = 309}, + [2697] = {.lex_state = 38}, + [2698] = {.lex_state = 318}, + [2699] = {.lex_state = 38}, + [2700] = {.lex_state = 38}, + [2701] = {.lex_state = 310}, + [2702] = {.lex_state = 38}, + [2703] = {.lex_state = 38}, + [2704] = {.lex_state = 212}, + [2705] = {.lex_state = 212}, + [2706] = {.lex_state = 38}, + [2707] = {.lex_state = 38}, + [2708] = {.lex_state = 38}, + [2709] = {.lex_state = 304}, + [2710] = {.lex_state = 318}, + [2711] = {.lex_state = 38}, + [2712] = {.lex_state = 38}, + [2713] = {.lex_state = 318}, + [2714] = {.lex_state = 38}, + [2715] = {.lex_state = 38}, + [2716] = {.lex_state = 318}, + [2717] = {.lex_state = 38}, + [2718] = {.lex_state = 38}, + [2719] = {.lex_state = 38}, + [2720] = {.lex_state = 38}, + [2721] = {.lex_state = 38}, + [2722] = {.lex_state = 38}, + [2723] = {.lex_state = 38}, + [2724] = {.lex_state = 38}, + [2725] = {.lex_state = 38}, + [2726] = {.lex_state = 38}, + [2727] = {.lex_state = 318}, + [2728] = {.lex_state = 318}, + [2729] = {.lex_state = 212}, + [2730] = {.lex_state = 318}, + [2731] = {.lex_state = 318}, + [2732] = {.lex_state = 310}, + [2733] = {.lex_state = 310}, + [2734] = {.lex_state = 41}, + [2735] = {.lex_state = 38}, + [2736] = {.lex_state = 38}, + [2737] = {.lex_state = 40}, + [2738] = {.lex_state = 310}, + [2739] = {.lex_state = 318}, + [2740] = {.lex_state = 318}, + [2741] = {.lex_state = 38}, + [2742] = {.lex_state = 333}, + [2743] = {.lex_state = 38}, + [2744] = {.lex_state = 256}, + [2745] = {.lex_state = 310}, + [2746] = {.lex_state = 310}, + [2747] = {.lex_state = 318}, + [2748] = {.lex_state = 310}, + [2749] = {.lex_state = 38}, + [2750] = {.lex_state = 310}, + [2751] = {.lex_state = 318}, + [2752] = {.lex_state = 212}, + [2753] = {.lex_state = 333}, + [2754] = {.lex_state = 309}, + [2755] = {.lex_state = 310}, + [2756] = {.lex_state = 318}, + [2757] = {.lex_state = 309}, + [2758] = {.lex_state = 310}, + [2759] = {.lex_state = 256}, + [2760] = {.lex_state = 310}, + [2761] = {.lex_state = 310}, + [2762] = {.lex_state = 326}, + [2763] = {.lex_state = 38}, + [2764] = {.lex_state = 38}, + [2765] = {.lex_state = 38}, + [2766] = {.lex_state = 38}, + [2767] = {.lex_state = 1003}, + [2768] = {.lex_state = 38}, + [2769] = {.lex_state = 38}, + [2770] = {.lex_state = 310}, + [2771] = {.lex_state = 310}, + [2772] = {.lex_state = 310}, + [2773] = {.lex_state = 310}, + [2774] = {.lex_state = 333}, + [2775] = {.lex_state = 318}, + [2776] = {.lex_state = 318}, + [2777] = {.lex_state = 38}, + [2778] = {.lex_state = 304}, + [2779] = {.lex_state = 1009}, + [2780] = {.lex_state = 310}, + [2781] = {.lex_state = 333}, + [2782] = {.lex_state = 333}, + [2783] = {.lex_state = 333}, + [2784] = {.lex_state = 310}, + [2785] = {.lex_state = 310}, + [2786] = {.lex_state = 212}, + [2787] = {.lex_state = 38}, + [2788] = {.lex_state = 326}, + [2789] = {.lex_state = 305}, + [2790] = {.lex_state = 257}, + [2791] = {.lex_state = 324}, + [2792] = {.lex_state = 305}, + [2793] = {.lex_state = 257}, + [2794] = {.lex_state = 305}, + [2795] = {.lex_state = 1009}, + [2796] = {.lex_state = 297}, + [2797] = {.lex_state = 297}, + [2798] = {.lex_state = 365}, + [2799] = {.lex_state = 297}, + [2800] = {.lex_state = 310}, + [2801] = {.lex_state = 297}, + [2802] = {.lex_state = 334}, + [2803] = {.lex_state = 305}, + [2804] = {.lex_state = 41}, + [2805] = {.lex_state = 310}, + [2806] = {.lex_state = 324}, + [2807] = {.lex_state = 324}, + [2808] = {.lex_state = 325}, + [2809] = {.lex_state = 257}, + [2810] = {.lex_state = 257}, + [2811] = {.lex_state = 305}, + [2812] = {.lex_state = 124}, + [2813] = {.lex_state = 40}, + [2814] = {.lex_state = 297}, + [2815] = {.lex_state = 316}, + [2816] = {.lex_state = 305}, + [2817] = {.lex_state = 305}, + [2818] = {.lex_state = 297}, + [2819] = {.lex_state = 257}, + [2820] = {.lex_state = 324}, + [2821] = {.lex_state = 314}, + [2822] = {.lex_state = 305}, + [2823] = {.lex_state = 305}, + [2824] = {.lex_state = 365}, + [2825] = {.lex_state = 297}, + [2826] = {.lex_state = 365}, + [2827] = {.lex_state = 305}, + [2828] = {.lex_state = 297}, + [2829] = {.lex_state = 305}, + [2830] = {.lex_state = 257}, + [2831] = {.lex_state = 305}, + [2832] = {.lex_state = 257}, + [2833] = {.lex_state = 324}, + [2834] = {.lex_state = 126}, + [2835] = {.lex_state = 1017}, + [2836] = {.lex_state = 297}, + [2837] = {.lex_state = 74}, + [2838] = {.lex_state = 305}, + [2839] = {.lex_state = 339}, + [2840] = {.lex_state = 297}, + [2841] = {.lex_state = 305}, [2842] = {.lex_state = 365}, - [2843] = {.lex_state = 41}, - [2844] = {.lex_state = 406}, - [2845] = {.lex_state = 381}, - [2846] = {.lex_state = 381}, - [2847] = {.lex_state = 68}, - [2848] = {.lex_state = 425}, - [2849] = {.lex_state = 385}, - [2850] = {.lex_state = 68}, - [2851] = {.lex_state = 68}, - [2852] = {.lex_state = 68}, - [2853] = {.lex_state = 425}, - [2854] = {.lex_state = 68}, - [2855] = {.lex_state = 68}, - [2856] = {.lex_state = 41}, - [2857] = {.lex_state = 41}, - [2858] = {.lex_state = 425}, - [2859] = {.lex_state = 41}, - [2860] = {.lex_state = 273}, - [2861] = {.lex_state = 271}, - [2862] = {.lex_state = 385}, - [2863] = {.lex_state = 425}, - [2864] = {.lex_state = 409}, - [2865] = {.lex_state = 408}, - [2866] = {.lex_state = 409}, - [2867] = {.lex_state = 425}, - [2868] = {.lex_state = 385}, - [2869] = {.lex_state = 385}, - [2870] = {.lex_state = 385}, - [2871] = {.lex_state = 385}, - [2872] = {.lex_state = 385}, - [2873] = {.lex_state = 391}, - [2874] = {.lex_state = 369}, - [2875] = {.lex_state = 385}, - [2876] = {.lex_state = 385}, - [2877] = {.lex_state = 320}, - [2878] = {.lex_state = 367}, - [2879] = {.lex_state = 385}, - [2880] = {.lex_state = 385}, - [2881] = {.lex_state = 385}, - [2882] = {.lex_state = 385}, - [2883] = {.lex_state = 271}, - [2884] = {.lex_state = 385}, - [2885] = {.lex_state = 68}, - [2886] = {.lex_state = 385}, - [2887] = {.lex_state = 271}, - [2888] = {.lex_state = 385}, - [2889] = {.lex_state = 385}, - [2890] = {.lex_state = 385}, - [2891] = {.lex_state = 385}, - [2892] = {.lex_state = 41}, - [2893] = {.lex_state = 408}, - [2894] = {.lex_state = 41}, - [2895] = {.lex_state = 413}, - [2896] = {.lex_state = 391}, - [2897] = {.lex_state = 68}, - [2898] = {.lex_state = 68}, - [2899] = {.lex_state = 41}, - [2900] = {.lex_state = 271}, - [2901] = {.lex_state = 68}, - [2902] = {.lex_state = 68}, - [2903] = {.lex_state = 376}, - [2904] = {.lex_state = 80}, - [2905] = {.lex_state = 68}, - [2906] = {.lex_state = 366}, - [2907] = {.lex_state = 366}, - [2908] = {.lex_state = 80}, - [2909] = {.lex_state = 366}, - [2910] = {.lex_state = 376}, - [2911] = {.lex_state = 385}, - [2912] = {.lex_state = 272}, - [2913] = {.lex_state = 41}, - [2914] = {.lex_state = 369}, - [2915] = {.lex_state = 316}, - [2916] = {.lex_state = 41}, - [2917] = {.lex_state = 41}, - [2918] = {.lex_state = 41}, - [2919] = {.lex_state = 41}, - [2920] = {.lex_state = 377}, - [2921] = {.lex_state = 41}, - [2922] = {.lex_state = 41}, - [2923] = {.lex_state = 41}, - [2924] = {.lex_state = 41}, - [2925] = {.lex_state = 272}, - [2926] = {.lex_state = 63}, - [2927] = {.lex_state = 41}, - [2928] = {.lex_state = 41}, - [2929] = {.lex_state = 41}, - [2930] = {.lex_state = 272}, - [2931] = {.lex_state = 272}, - [2932] = {.lex_state = 377}, - [2933] = {.lex_state = 1063}, - [2934] = {.lex_state = 272}, - [2935] = {.lex_state = 272}, - [2936] = {.lex_state = 41}, - [2937] = {.lex_state = 377}, - [2938] = {.lex_state = 363}, - [2939] = {.lex_state = 41}, - [2940] = {.lex_state = 78}, - [2941] = {.lex_state = 126}, - [2942] = {.lex_state = 369}, - [2943] = {.lex_state = 392}, - [2944] = {.lex_state = 41}, - [2945] = {.lex_state = 377}, - [2946] = {.lex_state = 392}, - [2947] = {.lex_state = 377}, - [2948] = {.lex_state = 377}, - [2949] = {.lex_state = 369}, - [2950] = {.lex_state = 377}, - [2951] = {.lex_state = 369}, - [2952] = {.lex_state = 369}, - [2953] = {.lex_state = 369}, - [2954] = {.lex_state = 316}, - [2955] = {.lex_state = 369}, - [2956] = {.lex_state = 1069}, - [2957] = {.lex_state = 369}, - [2958] = {.lex_state = 368}, - [2959] = {.lex_state = 369}, - [2960] = {.lex_state = 369}, - [2961] = {.lex_state = 369}, - [2962] = {.lex_state = 369}, - [2963] = {.lex_state = 369}, - [2964] = {.lex_state = 369}, - [2965] = {.lex_state = 369}, - [2966] = {.lex_state = 369}, - [2967] = {.lex_state = 369}, - [2968] = {.lex_state = 41}, - [2969] = {.lex_state = 369}, - [2970] = {.lex_state = 41}, - [2971] = {.lex_state = 363}, - [2972] = {.lex_state = 369}, - [2973] = {.lex_state = 41}, - [2974] = {.lex_state = 385}, - [2975] = {.lex_state = 43}, - [2976] = {.lex_state = 377}, - [2977] = {.lex_state = 377}, - [2978] = {.lex_state = 385}, - [2979] = {.lex_state = 41}, - [2980] = {.lex_state = 392}, - [2981] = {.lex_state = 41}, - [2982] = {.lex_state = 41}, - [2983] = {.lex_state = 77}, - [2984] = {.lex_state = 41}, - [2985] = {.lex_state = 41}, - [2986] = {.lex_state = 41}, - [2987] = {.lex_state = 77}, - [2988] = {.lex_state = 41}, - [2989] = {.lex_state = 392}, - [2990] = {.lex_state = 392}, - [2991] = {.lex_state = 392}, - [2992] = {.lex_state = 41}, - [2993] = {.lex_state = 41}, - [2994] = {.lex_state = 369}, - [2995] = {.lex_state = 41}, - [2996] = {.lex_state = 377}, - [2997] = {.lex_state = 41}, - [2998] = {.lex_state = 41}, - [2999] = {.lex_state = 44}, - [3000] = {.lex_state = 41}, - [3001] = {.lex_state = 368}, - [3002] = {.lex_state = 41}, - [3003] = {.lex_state = 41}, - [3004] = {.lex_state = 41}, - [3005] = {.lex_state = 41}, - [3006] = {.lex_state = 41}, - [3007] = {.lex_state = 377}, - [3008] = {.lex_state = 377}, - [3009] = {.lex_state = 41}, - [3010] = {.lex_state = 77}, - [3011] = {.lex_state = 77}, - [3012] = {.lex_state = 41}, - [3013] = {.lex_state = 41}, - [3014] = {.lex_state = 41}, - [3015] = {.lex_state = 41}, - [3016] = {.lex_state = 377}, - [3017] = {.lex_state = 377}, - [3018] = {.lex_state = 368}, - [3019] = {.lex_state = 77}, - [3020] = {.lex_state = 41}, - [3021] = {.lex_state = 369}, - [3022] = {.lex_state = 364}, - [3023] = {.lex_state = 1077}, - [3024] = {.lex_state = 364}, - [3025] = {.lex_state = 317}, - [3026] = {.lex_state = 1073}, - [3027] = {.lex_state = 80}, - [3028] = {.lex_state = 80}, - [3029] = {.lex_state = 383}, - [3030] = {.lex_state = 383}, - [3031] = {.lex_state = 369}, - [3032] = {.lex_state = 375}, - [3033] = {.lex_state = 364}, - [3034] = {.lex_state = 364}, - [3035] = {.lex_state = 1063}, - [3036] = {.lex_state = 317}, - [3037] = {.lex_state = 364}, - [3038] = {.lex_state = 364}, - [3039] = {.lex_state = 364}, - [3040] = {.lex_state = 364}, - [3041] = {.lex_state = 184}, - [3042] = {.lex_state = 186}, - [3043] = {.lex_state = 317}, - [3044] = {.lex_state = 369}, - [3045] = {.lex_state = 43}, - [3046] = {.lex_state = 317}, - [3047] = {.lex_state = 426}, - [3048] = {.lex_state = 44}, - [3049] = {.lex_state = 317}, - [3050] = {.lex_state = 80}, - [3051] = {.lex_state = 426}, - [3052] = {.lex_state = 384}, - [3053] = {.lex_state = 59}, - [3054] = {.lex_state = 373}, - [3055] = {.lex_state = 1073}, - [3056] = {.lex_state = 426}, - [3057] = {.lex_state = 364}, - [3058] = {.lex_state = 59}, - [3059] = {.lex_state = 398}, - [3060] = {.lex_state = 364}, - [3061] = {.lex_state = 364}, - [3062] = {.lex_state = 317}, - [3063] = {.lex_state = 317}, - [3064] = {.lex_state = 426}, - [3065] = {.lex_state = 317}, - [3066] = {.lex_state = 317}, - [3067] = {.lex_state = 383}, - [3068] = {.lex_state = 383}, - [3069] = {.lex_state = 383}, - [3070] = {.lex_state = 364}, - [3071] = {.lex_state = 1069}, - [3072] = {.lex_state = 1105}, - [3073] = {.lex_state = 364}, - [3074] = {.lex_state = 393}, - [3075] = {.lex_state = 1103}, - [3076] = {.lex_state = 280}, - [3077] = {.lex_state = 364}, - [3078] = {.lex_state = 426}, - [3079] = {.lex_state = 62}, - [3080] = {.lex_state = 374}, - [3081] = {.lex_state = 62}, - [3082] = {.lex_state = 374}, - [3083] = {.lex_state = 374}, - [3084] = {.lex_state = 374}, - [3085] = {.lex_state = 374}, - [3086] = {.lex_state = 374}, - [3087] = {.lex_state = 62}, - [3088] = {.lex_state = 62}, - [3089] = {.lex_state = 62}, - [3090] = {.lex_state = 374}, - [3091] = {.lex_state = 62}, - [3092] = {.lex_state = 62}, - [3093] = {.lex_state = 374}, - [3094] = {.lex_state = 62}, - [3095] = {.lex_state = 62}, - [3096] = {.lex_state = 188}, - [3097] = {.lex_state = 374}, - [3098] = {.lex_state = 374}, - [3099] = {.lex_state = 370}, - [3100] = {.lex_state = 372}, - [3101] = {.lex_state = 46}, - [3102] = {.lex_state = 370}, - [3103] = {.lex_state = 394}, - [3104] = {.lex_state = 188}, - [3105] = {.lex_state = 1073}, - [3106] = {.lex_state = 374}, - [3107] = {.lex_state = 62}, - [3108] = {.lex_state = 81}, - [3109] = {.lex_state = 374}, - [3110] = {.lex_state = 62}, - [3111] = {.lex_state = 374}, - [3112] = {.lex_state = 62}, - [3113] = {.lex_state = 374}, - [3114] = {.lex_state = 374}, - [3115] = {.lex_state = 62}, - [3116] = {.lex_state = 372}, - [3117] = {.lex_state = 62}, - [3118] = {.lex_state = 62}, - [3119] = {.lex_state = 62}, - [3120] = {.lex_state = 374}, - [3121] = {.lex_state = 374}, - [3122] = {.lex_state = 374}, - [3123] = {.lex_state = 1077}, - [3124] = {.lex_state = 374}, - [3125] = {.lex_state = 1077}, - [3126] = {.lex_state = 62}, - [3127] = {.lex_state = 374}, - [3128] = {.lex_state = 62}, - [3129] = {.lex_state = 370}, - [3130] = {.lex_state = 62}, - [3131] = {.lex_state = 374}, - [3132] = {.lex_state = 1073}, - [3133] = {.lex_state = 385}, - [3134] = {.lex_state = 385}, - [3135] = {.lex_state = 62}, - [3136] = {.lex_state = 62}, - [3137] = {.lex_state = 280}, - [3138] = {.lex_state = 385}, - [3139] = {.lex_state = 374}, - [3140] = {.lex_state = 62}, - [3141] = {.lex_state = 374}, - [3142] = {.lex_state = 374}, - [3143] = {.lex_state = 374}, - [3144] = {.lex_state = 374}, - [3145] = {.lex_state = 374}, - [3146] = {.lex_state = 1103}, - [3147] = {.lex_state = 394}, - [3148] = {.lex_state = 374}, - [3149] = {.lex_state = 399}, - [3150] = {.lex_state = 62}, - [3151] = {.lex_state = 62}, - [3152] = {.lex_state = 62}, - [3153] = {.lex_state = 374}, - [3154] = {.lex_state = 374}, - [3155] = {.lex_state = 1105}, - [3156] = {.lex_state = 374}, - [3157] = {.lex_state = 1107}, - [3158] = {.lex_state = 197}, - [3159] = {.lex_state = 374}, - [3160] = {.lex_state = 371}, - [3161] = {.lex_state = 374}, - [3162] = {.lex_state = 62}, - [3163] = {.lex_state = 62}, - [3164] = {.lex_state = 190}, - [3165] = {.lex_state = 374}, - [3166] = {.lex_state = 374}, - [3167] = {.lex_state = 374}, - [3168] = {.lex_state = 1077}, - [3169] = {.lex_state = 374}, - [3170] = {.lex_state = 62}, - [3171] = {.lex_state = 374}, - [3172] = {.lex_state = 62}, - [3173] = {.lex_state = 1077}, - [3174] = {.lex_state = 362}, - [3175] = {.lex_state = 62}, - [3176] = {.lex_state = 1107}, - [3177] = {.lex_state = 1077}, - [3178] = {.lex_state = 370}, - [3179] = {.lex_state = 62}, - [3180] = {.lex_state = 280}, - [3181] = {.lex_state = 62}, - [3182] = {.lex_state = 370}, - [3183] = {.lex_state = 199}, - [3184] = {.lex_state = 427}, - [3185] = {.lex_state = 46}, - [3186] = {.lex_state = 81}, - [3187] = {.lex_state = 81}, - [3188] = {.lex_state = 374}, - [3189] = {.lex_state = 81}, - [3190] = {.lex_state = 81}, - [3191] = {.lex_state = 374}, - [3192] = {.lex_state = 374}, - [3193] = {.lex_state = 395}, - [3194] = {.lex_state = 374}, - [3195] = {.lex_state = 1077}, - [3196] = {.lex_state = 427}, - [3197] = {.lex_state = 1077}, - [3198] = {.lex_state = 427}, - [3199] = {.lex_state = 1077}, - [3200] = {.lex_state = 1077}, - [3201] = {.lex_state = 427}, - [3202] = {.lex_state = 395}, - [3203] = {.lex_state = 395}, - [3204] = {.lex_state = 395}, - [3205] = {.lex_state = 395}, - [3206] = {.lex_state = 369}, - [3207] = {.lex_state = 369}, - [3208] = {.lex_state = 369}, - [3209] = {.lex_state = 1107}, - [3210] = {.lex_state = 1107}, - [3211] = {.lex_state = 201}, - [3212] = {.lex_state = 360}, - [3213] = {.lex_state = 427}, - [3214] = {.lex_state = 201}, - [3215] = {.lex_state = 359}, - [3216] = {.lex_state = 374}, - [3217] = {.lex_state = 374}, - [3218] = {.lex_state = 374}, - [3219] = {.lex_state = 1109}, - [3220] = {.lex_state = 1109}, - [3221] = {.lex_state = 1109}, - [3222] = {.lex_state = 1109}, - [3223] = {.lex_state = 374}, - [3224] = {.lex_state = 1109}, - [3225] = {.lex_state = 374}, - [3226] = {.lex_state = 374}, - [3227] = {.lex_state = 374}, - [3228] = {.lex_state = 81}, - [3229] = {.lex_state = 190}, - [3230] = {.lex_state = 190}, - [3231] = {.lex_state = 190}, - [3232] = {.lex_state = 190}, - [3233] = {.lex_state = 81}, - [3234] = {.lex_state = 395}, - [3235] = {.lex_state = 374}, - [3236] = {.lex_state = 395}, - [3237] = {.lex_state = 395}, - [3238] = {.lex_state = 374}, - [3239] = {.lex_state = 395}, - [3240] = {.lex_state = 395}, - [3241] = {.lex_state = 359}, - [3242] = {.lex_state = 361}, - [3243] = {.lex_state = 361}, - [3244] = {.lex_state = 361}, - [3245] = {.lex_state = 361}, - [3246] = {.lex_state = 126}, - [3247] = {.lex_state = 361}, - [3248] = {.lex_state = 361}, - [3249] = {.lex_state = 361}, - [3250] = {.lex_state = 361}, - [3251] = {.lex_state = 361}, - [3252] = {.lex_state = 361}, - [3253] = {.lex_state = 361}, - [3254] = {.lex_state = 361}, - [3255] = {.lex_state = 361}, - [3256] = {.lex_state = 361}, - [3257] = {.lex_state = 361}, - [3258] = {.lex_state = 361}, - [3259] = {.lex_state = 361}, - [3260] = {.lex_state = 361}, - [3261] = {.lex_state = 1109}, - [3262] = {.lex_state = 1109}, - [3263] = {.lex_state = 361}, - [3264] = {.lex_state = 361}, - [3265] = {.lex_state = 1109}, - [3266] = {.lex_state = 1109}, - [3267] = {.lex_state = 361}, - [3268] = {.lex_state = 361}, - [3269] = {.lex_state = 203}, - [3270] = {.lex_state = 361}, - [3271] = {.lex_state = 361}, - [3272] = {.lex_state = 203}, - [3273] = {.lex_state = 361}, - [3274] = {.lex_state = 361}, - [3275] = {.lex_state = 361}, - [3276] = {.lex_state = 203}, - [3277] = {.lex_state = 361}, - [3278] = {.lex_state = 361}, - [3279] = {.lex_state = 361}, - [3280] = {.lex_state = 361}, - [3281] = {.lex_state = 361}, - [3282] = {.lex_state = 361}, - [3283] = {.lex_state = 203}, - [3284] = {.lex_state = 361}, - [3285] = {.lex_state = 361}, - [3286] = {.lex_state = 361}, - [3287] = {.lex_state = 361}, - [3288] = {.lex_state = 361}, - [3289] = {.lex_state = 361}, - [3290] = {.lex_state = 361}, - [3291] = {.lex_state = 361}, - [3292] = {.lex_state = 361}, - [3293] = {.lex_state = 361}, - [3294] = {.lex_state = 361}, - [3295] = {.lex_state = 361}, - [3296] = {.lex_state = 361}, - [3297] = {.lex_state = 361}, - [3298] = {.lex_state = 361}, - [3299] = {.lex_state = 361}, - [3300] = {.lex_state = 361}, - [3301] = {.lex_state = 361}, - [3302] = {.lex_state = 361}, - [3303] = {.lex_state = 361}, - [3304] = {.lex_state = 361}, - [3305] = {.lex_state = 361}, - [3306] = {.lex_state = 361}, - [3307] = {.lex_state = 361}, - [3308] = {.lex_state = 1051}, - [3309] = {.lex_state = 361}, - [3310] = {.lex_state = 126}, - [3311] = {.lex_state = 361}, - [3312] = {.lex_state = 361}, - [3313] = {.lex_state = 1092}, - [3314] = {.lex_state = 126}, - [3315] = {.lex_state = 361}, - [3316] = {.lex_state = 1109}, - [3317] = {.lex_state = 203}, - [3318] = {.lex_state = 361}, - [3319] = {.lex_state = 1051}, - [3320] = {.lex_state = 135}, - [3321] = {.lex_state = 135}, - [3322] = {.lex_state = 135}, - [3323] = {.lex_state = 135}, - [3324] = {.lex_state = 135}, - [3325] = {.lex_state = 135}, - [3326] = {.lex_state = 135}, - [3327] = {.lex_state = 135}, - [3328] = {.lex_state = 135}, - [3329] = {.lex_state = 135}, - [3330] = {.lex_state = 135}, - [3331] = {.lex_state = 1059}, - [3332] = {.lex_state = 46}, - [3333] = {.lex_state = 1051}, - [3334] = {.lex_state = 1051}, - [3335] = {.lex_state = 1051}, - [3336] = {.lex_state = 135}, - [3337] = {.lex_state = 135}, - [3338] = {.lex_state = 135}, - [3339] = {.lex_state = 135}, - [3340] = {.lex_state = 135}, - [3341] = {.lex_state = 1092}, - [3342] = {.lex_state = 997}, - [3343] = {.lex_state = 204}, - [3344] = {.lex_state = 997}, - [3345] = {.lex_state = 118}, - [3346] = {.lex_state = 1120}, - [3347] = {.lex_state = 1120}, - [3348] = {.lex_state = 997}, - [3349] = {.lex_state = 997}, - [3350] = {.lex_state = 1120}, - [3351] = {.lex_state = 1051}, - [3352] = {.lex_state = 995}, - [3353] = {.lex_state = 1120}, - [3354] = {.lex_state = 997}, - [3355] = {.lex_state = 997}, - [3356] = {.lex_state = 997}, - [3357] = {.lex_state = 997}, - [3358] = {.lex_state = 997}, - [3359] = {.lex_state = 997}, - [3360] = {.lex_state = 1120}, - [3361] = {.lex_state = 1120}, - [3362] = {.lex_state = 1123}, - [3363] = {.lex_state = 1123}, - [3364] = {.lex_state = 210}, - [3365] = {.lex_state = 997}, - [3366] = {.lex_state = 997}, - [3367] = {.lex_state = 997}, - [3368] = {.lex_state = 1116}, - [3369] = {.lex_state = 1051}, - [3370] = {.lex_state = 1123}, - [3371] = {.lex_state = 1120}, - [3372] = {.lex_state = 210}, - [3373] = {.lex_state = 1115}, - [3374] = {.lex_state = 210}, - [3375] = {.lex_state = 210}, - [3376] = {.lex_state = 1051}, - [3377] = {.lex_state = 135}, - [3378] = {.lex_state = 997}, - [3379] = {.lex_state = 1120}, - [3380] = {.lex_state = 135}, - [3381] = {.lex_state = 1115}, - [3382] = {.lex_state = 210}, - [3383] = {.lex_state = 997}, - [3384] = {.lex_state = 1120}, - [3385] = {.lex_state = 1120}, - [3386] = {.lex_state = 182}, - [3387] = {.lex_state = 135}, - [3388] = {.lex_state = 135}, - [3389] = {.lex_state = 997}, - [3390] = {.lex_state = 1116}, - [3391] = {.lex_state = 997}, - [3392] = {.lex_state = 1059}, - [3393] = {.lex_state = 1123}, - [3394] = {.lex_state = 135}, - [3395] = {.lex_state = 135}, - [3396] = {.lex_state = 1059}, - [3397] = {.lex_state = 1059}, - [3398] = {.lex_state = 1059}, - [3399] = {.lex_state = 1059}, - [3400] = {.lex_state = 1059}, - [3401] = {.lex_state = 1059}, - [3402] = {.lex_state = 1059}, - [3403] = {.lex_state = 1059}, - [3404] = {.lex_state = 1059}, - [3405] = {.lex_state = 1059}, - [3406] = {.lex_state = 1059}, - [3407] = {.lex_state = 1059}, - [3408] = {.lex_state = 135}, - [3409] = {.lex_state = 208}, - [3410] = {.lex_state = 135}, - [3411] = {.lex_state = 182}, - [3412] = {.lex_state = 997}, - [3413] = {.lex_state = 182}, - [3414] = {.lex_state = 182}, - [3415] = {.lex_state = 182}, - [3416] = {.lex_state = 997}, - [3417] = {.lex_state = 182}, - [3418] = {.lex_state = 182}, - [3419] = {.lex_state = 182}, - [3420] = {.lex_state = 182}, - [3421] = {.lex_state = 182}, - [3422] = {.lex_state = 182}, - [3423] = {.lex_state = 213}, - [3424] = {.lex_state = 182}, - [3425] = {.lex_state = 182}, - [3426] = {.lex_state = 135}, - [3427] = {.lex_state = 182}, - [3428] = {.lex_state = 182}, - [3429] = {.lex_state = 182}, - [3430] = {.lex_state = 182}, - [3431] = {.lex_state = 182}, - [3432] = {.lex_state = 182}, - [3433] = {.lex_state = 182}, - [3434] = {.lex_state = 182}, - [3435] = {.lex_state = 182}, - [3436] = {.lex_state = 182}, - [3437] = {.lex_state = 182}, - [3438] = {.lex_state = 182}, - [3439] = {.lex_state = 182}, - [3440] = {.lex_state = 182}, - [3441] = {.lex_state = 182}, - [3442] = {.lex_state = 182}, - [3443] = {.lex_state = 182}, - [3444] = {.lex_state = 182}, - [3445] = {.lex_state = 182}, - [3446] = {.lex_state = 182}, - [3447] = {.lex_state = 182}, - [3448] = {.lex_state = 182}, - [3449] = {.lex_state = 182}, - [3450] = {.lex_state = 182}, - [3451] = {.lex_state = 182}, - [3452] = {.lex_state = 182}, - [3453] = {.lex_state = 182}, - [3454] = {.lex_state = 182}, - [3455] = {.lex_state = 182}, - [3456] = {.lex_state = 182}, - [3457] = {.lex_state = 182}, - [3458] = {.lex_state = 182}, - [3459] = {.lex_state = 182}, - [3460] = {.lex_state = 182}, - [3461] = {.lex_state = 1123}, - [3462] = {.lex_state = 182}, - [3463] = {.lex_state = 1123}, - [3464] = {.lex_state = 182}, - [3465] = {.lex_state = 182}, - [3466] = {.lex_state = 182}, - [3467] = {.lex_state = 182}, - [3468] = {.lex_state = 182}, - [3469] = {.lex_state = 182}, - [3470] = {.lex_state = 182}, - [3471] = {.lex_state = 182}, - [3472] = {.lex_state = 182}, - [3473] = {.lex_state = 182}, - [3474] = {.lex_state = 182}, - [3475] = {.lex_state = 182}, - [3476] = {.lex_state = 182}, - [3477] = {.lex_state = 182}, - [3478] = {.lex_state = 135}, - [3479] = {.lex_state = 182}, - [3480] = {.lex_state = 182}, - [3481] = {.lex_state = 182}, - [3482] = {.lex_state = 182}, - [3483] = {.lex_state = 182}, - [3484] = {.lex_state = 182}, - [3485] = {.lex_state = 182}, - [3486] = {.lex_state = 182}, - [3487] = {.lex_state = 182}, - [3488] = {.lex_state = 182}, - [3489] = {.lex_state = 182}, - [3490] = {.lex_state = 182}, - [3491] = {.lex_state = 182}, - [3492] = {.lex_state = 182}, - [3493] = {.lex_state = 182}, - [3494] = {.lex_state = 182}, - [3495] = {.lex_state = 182}, - [3496] = {.lex_state = 182}, - [3497] = {.lex_state = 182}, - [3498] = {.lex_state = 182}, - [3499] = {.lex_state = 182}, - [3500] = {.lex_state = 182}, - [3501] = {.lex_state = 182}, - [3502] = {.lex_state = 182}, - [3503] = {.lex_state = 182}, - [3504] = {.lex_state = 182}, - [3505] = {.lex_state = 182}, - [3506] = {.lex_state = 182}, - [3507] = {.lex_state = 182}, - [3508] = {.lex_state = 182}, - [3509] = {.lex_state = 182}, - [3510] = {.lex_state = 182}, - [3511] = {.lex_state = 182}, - [3512] = {.lex_state = 182}, - [3513] = {.lex_state = 1115}, - [3514] = {.lex_state = 1115}, - [3515] = {.lex_state = 997}, - [3516] = {.lex_state = 997}, - [3517] = {.lex_state = 213}, - [3518] = {.lex_state = 213}, - [3519] = {.lex_state = 135}, - [3520] = {.lex_state = 207}, - [3521] = {.lex_state = 207}, - [3522] = {.lex_state = 135}, - [3523] = {.lex_state = 135}, - [3524] = {.lex_state = 135}, - [3525] = {.lex_state = 1059}, - [3526] = {.lex_state = 1059}, - [3527] = {.lex_state = 1059}, - [3528] = {.lex_state = 1059}, - [3529] = {.lex_state = 1059}, - [3530] = {.lex_state = 1059}, - [3531] = {.lex_state = 1059}, - [3532] = {.lex_state = 1059}, - [3533] = {.lex_state = 1059}, - [3534] = {.lex_state = 1059}, - [3535] = {.lex_state = 1059}, - [3536] = {.lex_state = 1059}, - [3537] = {.lex_state = 995}, - [3538] = {.lex_state = 473}, - [3539] = {.lex_state = 1059}, - [3540] = {.lex_state = 1059}, - [3541] = {.lex_state = 127}, - [3542] = {.lex_state = 1059}, - [3543] = {.lex_state = 128}, - [3544] = {.lex_state = 182}, - [3545] = {.lex_state = 472}, - [3546] = {.lex_state = 1059}, - [3547] = {.lex_state = 135}, - [3548] = {.lex_state = 997}, - [3549] = {.lex_state = 192}, - [3550] = {.lex_state = 482}, - [3551] = {.lex_state = 274}, - [3552] = {.lex_state = 474}, - [3553] = {.lex_state = 126}, - [3554] = {.lex_state = 130}, - [3555] = {.lex_state = 126}, - [3556] = {.lex_state = 271}, - [3557] = {.lex_state = 129}, - [3558] = {.lex_state = 997}, - [3559] = {.lex_state = 129}, - [3560] = {.lex_state = 997}, - [3561] = {.lex_state = 475}, - [3562] = {.lex_state = 271}, - [3563] = {.lex_state = 997}, - [3564] = {.lex_state = 476}, - [3565] = {.lex_state = 191}, - [3566] = {.lex_state = 278}, - [3567] = {.lex_state = 474}, - [3568] = {.lex_state = 135}, - [3569] = {.lex_state = 995}, - [3570] = {.lex_state = 995}, - [3571] = {.lex_state = 275}, - [3572] = {.lex_state = 272}, - [3573] = {.lex_state = 126}, - [3574] = {.lex_state = 475}, - [3575] = {.lex_state = 126}, - [3576] = {.lex_state = 477}, - [3577] = {.lex_state = 272}, - [3578] = {.lex_state = 135}, - [3579] = {.lex_state = 995}, - [3580] = {.lex_state = 135}, - [3581] = {.lex_state = 995}, - [3582] = {.lex_state = 130}, - [3583] = {.lex_state = 194}, - [3584] = {.lex_state = 995}, - [3585] = {.lex_state = 995}, - [3586] = {.lex_state = 995}, - [3587] = {.lex_state = 995}, - [3588] = {.lex_state = 193}, - [3589] = {.lex_state = 995}, - [3590] = {.lex_state = 995}, - [3591] = {.lex_state = 995}, - [3592] = {.lex_state = 130}, - [3593] = {.lex_state = 135}, - [3594] = {.lex_state = 130}, - [3595] = {.lex_state = 475}, - [3596] = {.lex_state = 475}, - [3597] = {.lex_state = 135}, - [3598] = {.lex_state = 275}, - [3599] = {.lex_state = 130}, - [3600] = {.lex_state = 483}, - [3601] = {.lex_state = 1051}, - [3602] = {.lex_state = 135}, - [3603] = {.lex_state = 1051}, - [3604] = {.lex_state = 995}, - [3605] = {.lex_state = 193}, - [3606] = {.lex_state = 485}, - [3607] = {.lex_state = 483}, - [3608] = {.lex_state = 475}, - [3609] = {.lex_state = 995}, - [3610] = {.lex_state = 995}, - [3611] = {.lex_state = 995}, - [3612] = {.lex_state = 1051}, - [3613] = {.lex_state = 194}, - [3614] = {.lex_state = 194}, - [3615] = {.lex_state = 276}, - [3616] = {.lex_state = 484}, - [3617] = {.lex_state = 484}, - [3618] = {.lex_state = 276}, - [3619] = {.lex_state = 194}, - [3620] = {.lex_state = 1051}, - [3621] = {.lex_state = 559}, - [3622] = {.lex_state = 559}, - [3623] = {.lex_state = 194}, - [3624] = {.lex_state = 486}, - [3625] = {.lex_state = 126}, - [3626] = {.lex_state = 126}, - [3627] = {.lex_state = 484}, - [3628] = {.lex_state = 276}, - [3629] = {.lex_state = 276}, - [3630] = {.lex_state = 126}, - [3631] = {.lex_state = 486}, - [3632] = {.lex_state = 126}, - [3633] = {.lex_state = 559}, - [3634] = {.lex_state = 559}, - [3635] = {.lex_state = 1051}, - [3636] = {.lex_state = 484}, - [3637] = {.lex_state = 1051}, - [3638] = {.lex_state = 1051}, - [3639] = {.lex_state = 1051}, - [3640] = {.lex_state = 559}, - [3641] = {.lex_state = 276}, - [3642] = {.lex_state = 484}, - [3643] = {.lex_state = 487}, - [3644] = {.lex_state = 126}, - [3645] = {.lex_state = 1092}, - [3646] = {.lex_state = 997}, - [3647] = {.lex_state = 126}, - [3648] = {.lex_state = 487}, - [3649] = {.lex_state = 126}, - [3650] = {.lex_state = 487}, - [3651] = {.lex_state = 997}, - [3652] = {.lex_state = 487}, - [3653] = {.lex_state = 487}, - [3654] = {.lex_state = 1092}, - [3655] = {.lex_state = 997}, - [3656] = {.lex_state = 997}, - [3657] = {.lex_state = 559}, - [3658] = {.lex_state = 1092}, - [3659] = {.lex_state = 1092}, - [3660] = {.lex_state = 1092}, - [3661] = {.lex_state = 1092}, - [3662] = {.lex_state = 559}, - [3663] = {.lex_state = 1092}, - [3664] = {.lex_state = 1092}, - [3665] = {.lex_state = 1092}, - [3666] = {.lex_state = 1092}, - [3667] = {.lex_state = 1092}, - [3668] = {.lex_state = 1092}, - [3669] = {.lex_state = 1092}, - [3670] = {.lex_state = 1092}, - [3671] = {.lex_state = 1092}, - [3672] = {.lex_state = 1092}, - [3673] = {.lex_state = 1092}, - [3674] = {.lex_state = 1092}, - [3675] = {.lex_state = 1092}, - [3676] = {.lex_state = 1092}, - [3677] = {.lex_state = 1092}, - [3678] = {.lex_state = 1092}, - [3679] = {.lex_state = 1092}, - [3680] = {.lex_state = 1092}, - [3681] = {.lex_state = 126}, - [3682] = {.lex_state = 159}, - [3683] = {.lex_state = 159}, - [3684] = {.lex_state = 159}, - [3685] = {.lex_state = 159}, - [3686] = {.lex_state = 159}, - [3687] = {.lex_state = 159}, - [3688] = {.lex_state = 159}, - [3689] = {.lex_state = 997}, - [3690] = {.lex_state = 159}, - [3691] = {.lex_state = 159}, - [3692] = {.lex_state = 159}, - [3693] = {.lex_state = 1092}, - [3694] = {.lex_state = 1092}, - [3695] = {.lex_state = 159}, - [3696] = {.lex_state = 159}, - [3697] = {.lex_state = 487}, - [3698] = {.lex_state = 126}, - [3699] = {.lex_state = 182}, - [3700] = {.lex_state = 159}, - [3701] = {.lex_state = 159}, - [3702] = {.lex_state = 159}, - [3703] = {.lex_state = 1092}, - [3704] = {.lex_state = 159}, - [3705] = {.lex_state = 159}, - [3706] = {.lex_state = 159}, - [3707] = {.lex_state = 159}, - [3708] = {.lex_state = 159}, - [3709] = {.lex_state = 997}, - [3710] = {.lex_state = 1092}, - [3711] = {.lex_state = 159}, - [3712] = {.lex_state = 995}, - [3713] = {.lex_state = 995}, - [3714] = {.lex_state = 159}, - [3715] = {.lex_state = 159}, - [3716] = {.lex_state = 995}, - [3717] = {.lex_state = 159}, - [3718] = {.lex_state = 997}, - [3719] = {.lex_state = 997}, - [3720] = {.lex_state = 159}, - [3721] = {.lex_state = 997}, - [3722] = {.lex_state = 997}, - [3723] = {.lex_state = 995}, - [3724] = {.lex_state = 997}, - [3725] = {.lex_state = 995}, - [3726] = {.lex_state = 995}, - [3727] = {.lex_state = 995}, - [3728] = {.lex_state = 166}, - [3729] = {.lex_state = 997}, - [3730] = {.lex_state = 1059}, - [3731] = {.lex_state = 995}, - [3732] = {.lex_state = 263}, - [3733] = {.lex_state = 1092}, - [3734] = {.lex_state = 268}, - [3735] = {.lex_state = 159}, - [3736] = {.lex_state = 146}, - [3737] = {.lex_state = 146}, - [3738] = {.lex_state = 146}, - [3739] = {.lex_state = 995}, - [3740] = {.lex_state = 182}, - [3741] = {.lex_state = 159}, - [3742] = {.lex_state = 159}, - [3743] = {.lex_state = 575}, - [3744] = {.lex_state = 575}, - [3745] = {.lex_state = 575}, - [3746] = {.lex_state = 182}, - [3747] = {.lex_state = 995}, - [3748] = {.lex_state = 575}, - [3749] = {.lex_state = 159}, - [3750] = {.lex_state = 159}, - [3751] = {.lex_state = 575}, - [3752] = {.lex_state = 146}, - [3753] = {.lex_state = 995}, - [3754] = {.lex_state = 146}, - [3755] = {.lex_state = 166}, - [3756] = {.lex_state = 995}, - [3757] = {.lex_state = 115}, - [3758] = {.lex_state = 1059}, - [3759] = {.lex_state = 211}, - [3760] = {.lex_state = 424}, - [3761] = {.lex_state = 1059}, - [3762] = {.lex_state = 517}, - [3763] = {.lex_state = 995}, - [3764] = {.lex_state = 137}, - [3765] = {.lex_state = 159}, - [3766] = {.lex_state = 211}, - [3767] = {.lex_state = 424}, - [3768] = {.lex_state = 995}, - [3769] = {.lex_state = 159}, - [3770] = {.lex_state = 995}, - [3771] = {.lex_state = 115}, - [3772] = {.lex_state = 424}, - [3773] = {.lex_state = 576}, - [3774] = {.lex_state = 576}, - [3775] = {.lex_state = 995}, - [3776] = {.lex_state = 995}, - [3777] = {.lex_state = 159}, - [3778] = {.lex_state = 576}, - [3779] = {.lex_state = 159}, - [3780] = {.lex_state = 424}, - [3781] = {.lex_state = 166}, - [3782] = {.lex_state = 266}, - [3783] = {.lex_state = 576}, - [3784] = {.lex_state = 211}, - [3785] = {.lex_state = 277}, - [3786] = {.lex_state = 424}, - [3787] = {.lex_state = 211}, - [3788] = {.lex_state = 211}, - [3789] = {.lex_state = 159}, - [3790] = {.lex_state = 1059}, - [3791] = {.lex_state = 182}, - [3792] = {.lex_state = 182}, - [3793] = {.lex_state = 182}, - [3794] = {.lex_state = 182}, - [3795] = {.lex_state = 182}, - [3796] = {.lex_state = 182}, - [3797] = {.lex_state = 182}, - [3798] = {.lex_state = 182}, - [3799] = {.lex_state = 182}, - [3800] = {.lex_state = 182}, - [3801] = {.lex_state = 182}, - [3802] = {.lex_state = 182}, - [3803] = {.lex_state = 182}, - [3804] = {.lex_state = 182}, - [3805] = {.lex_state = 182}, - [3806] = {.lex_state = 182}, - [3807] = {.lex_state = 182}, - [3808] = {.lex_state = 182}, - [3809] = {.lex_state = 182}, - [3810] = {.lex_state = 182}, - [3811] = {.lex_state = 182}, - [3812] = {.lex_state = 182}, - [3813] = {.lex_state = 182}, - [3814] = {.lex_state = 182}, - [3815] = {.lex_state = 182}, - [3816] = {.lex_state = 182}, - [3817] = {.lex_state = 182}, - [3818] = {.lex_state = 182}, - [3819] = {.lex_state = 182}, - [3820] = {.lex_state = 182}, - [3821] = {.lex_state = 182}, - [3822] = {.lex_state = 182}, - [3823] = {.lex_state = 182}, - [3824] = {.lex_state = 182}, - [3825] = {.lex_state = 182}, - [3826] = {.lex_state = 182}, - [3827] = {.lex_state = 182}, - [3828] = {.lex_state = 182}, - [3829] = {.lex_state = 182}, - [3830] = {.lex_state = 182}, - [3831] = {.lex_state = 182}, - [3832] = {.lex_state = 182}, - [3833] = {.lex_state = 182}, - [3834] = {.lex_state = 182}, - [3835] = {.lex_state = 182}, - [3836] = {.lex_state = 182}, - [3837] = {.lex_state = 182}, - [3838] = {.lex_state = 182}, - [3839] = {.lex_state = 182}, - [3840] = {.lex_state = 182}, - [3841] = {.lex_state = 182}, - [3842] = {.lex_state = 182}, - [3843] = {.lex_state = 182}, - [3844] = {.lex_state = 182}, - [3845] = {.lex_state = 182}, - [3846] = {.lex_state = 182}, - [3847] = {.lex_state = 182}, - [3848] = {.lex_state = 182}, - [3849] = {.lex_state = 182}, - [3850] = {.lex_state = 182}, - [3851] = {.lex_state = 182}, - [3852] = {.lex_state = 182}, - [3853] = {.lex_state = 182}, - [3854] = {.lex_state = 182}, - [3855] = {.lex_state = 182}, - [3856] = {.lex_state = 182}, - [3857] = {.lex_state = 182}, - [3858] = {.lex_state = 182}, - [3859] = {.lex_state = 182}, - [3860] = {.lex_state = 182}, - [3861] = {.lex_state = 182}, - [3862] = {.lex_state = 182}, - [3863] = {.lex_state = 182}, - [3864] = {.lex_state = 182}, - [3865] = {.lex_state = 182}, - [3866] = {.lex_state = 182}, - [3867] = {.lex_state = 182}, - [3868] = {.lex_state = 182}, - [3869] = {.lex_state = 182}, - [3870] = {.lex_state = 182}, - [3871] = {.lex_state = 182}, - [3872] = {.lex_state = 182}, - [3873] = {.lex_state = 182}, - [3874] = {.lex_state = 182}, - [3875] = {.lex_state = 43}, - [3876] = {.lex_state = 43}, - [3877] = {.lex_state = 43}, - [3878] = {.lex_state = 43}, - [3879] = {.lex_state = 997}, - [3880] = {.lex_state = 43}, - [3881] = {.lex_state = 195}, - [3882] = {.lex_state = 43}, - [3883] = {.lex_state = 995}, - [3884] = {.lex_state = 995}, - [3885] = {.lex_state = 43}, - [3886] = {.lex_state = 43}, - [3887] = {.lex_state = 995}, - [3888] = {.lex_state = 43}, - [3889] = {.lex_state = 43}, - [3890] = {.lex_state = 1059}, - [3891] = {.lex_state = 43}, - [3892] = {.lex_state = 576}, - [3893] = {.lex_state = 995}, - [3894] = {.lex_state = 43}, - [3895] = {.lex_state = 43}, - [3896] = {.lex_state = 43}, - [3897] = {.lex_state = 43}, - [3898] = {.lex_state = 1059}, - [3899] = {.lex_state = 43}, - [3900] = {.lex_state = 43}, - [3901] = {.lex_state = 43}, - [3902] = {.lex_state = 43}, - [3903] = {.lex_state = 43}, - [3904] = {.lex_state = 43}, - [3905] = {.lex_state = 43}, - [3906] = {.lex_state = 43}, - [3907] = {.lex_state = 43}, - [3908] = {.lex_state = 43}, - [3909] = {.lex_state = 43}, - [3910] = {.lex_state = 43}, - [3911] = {.lex_state = 43}, - [3912] = {.lex_state = 577}, - [3913] = {.lex_state = 43}, - [3914] = {.lex_state = 43}, - [3915] = {.lex_state = 43}, - [3916] = {.lex_state = 577}, - [3917] = {.lex_state = 43}, - [3918] = {.lex_state = 43}, - [3919] = {.lex_state = 43}, - [3920] = {.lex_state = 43}, - [3921] = {.lex_state = 126}, - [3922] = {.lex_state = 126}, - [3923] = {.lex_state = 126}, - [3924] = {.lex_state = 126}, - [3925] = {.lex_state = 126}, - [3926] = {.lex_state = 126}, - [3927] = {.lex_state = 126}, - [3928] = {.lex_state = 126}, - [3929] = {.lex_state = 126}, - [3930] = {.lex_state = 126}, - [3931] = {.lex_state = 126}, - [3932] = {.lex_state = 126}, - [3933] = {.lex_state = 43}, - [3934] = {.lex_state = 43}, - [3935] = {.lex_state = 48}, - [3936] = {.lex_state = 48}, - [3937] = {.lex_state = 48}, - [3938] = {.lex_state = 48}, - [3939] = {.lex_state = 48}, - [3940] = {.lex_state = 48}, - [3941] = {.lex_state = 48}, - [3942] = {.lex_state = 48}, - [3943] = {.lex_state = 48}, - [3944] = {.lex_state = 48}, - [3945] = {.lex_state = 48}, - [3946] = {.lex_state = 48}, - [3947] = {.lex_state = 43}, - [3948] = {.lex_state = 1059}, - [3949] = {.lex_state = 43}, - [3950] = {.lex_state = 43}, - [3951] = {.lex_state = 43}, - [3952] = {.lex_state = 182}, - [3953] = {.lex_state = 182}, - [3954] = {.lex_state = 182}, - [3955] = {.lex_state = 182}, - [3956] = {.lex_state = 182}, - [3957] = {.lex_state = 182}, - [3958] = {.lex_state = 182}, - [3959] = {.lex_state = 182}, - [3960] = {.lex_state = 182}, - [3961] = {.lex_state = 182}, - [3962] = {.lex_state = 182}, - [3963] = {.lex_state = 43}, - [3964] = {.lex_state = 43}, - [3965] = {.lex_state = 182}, - [3966] = {.lex_state = 43}, - [3967] = {.lex_state = 43}, - [3968] = {.lex_state = 1059}, - [3969] = {.lex_state = 43}, - [3970] = {.lex_state = 43}, - [3971] = {.lex_state = 43}, - [3972] = {.lex_state = 577}, - [3973] = {.lex_state = 577}, - [3974] = {.lex_state = 1059}, - [3975] = {.lex_state = 577}, - [3976] = {.lex_state = 115}, - [3977] = {.lex_state = 115}, - [3978] = {.lex_state = 564}, - [3979] = {.lex_state = 115}, - [3980] = {.lex_state = 115}, - [3981] = {.lex_state = 182}, - [3982] = {.lex_state = 182}, - [3983] = {.lex_state = 1026}, - [3984] = {.lex_state = 115}, - [3985] = {.lex_state = 182}, - [3986] = {.lex_state = 557}, - [3987] = {.lex_state = 115}, - [3988] = {.lex_state = 115}, - [3989] = {.lex_state = 115}, - [3990] = {.lex_state = 115}, - [3991] = {.lex_state = 115}, - [3992] = {.lex_state = 115}, - [3993] = {.lex_state = 115}, - [3994] = {.lex_state = 115}, - [3995] = {.lex_state = 115}, - [3996] = {.lex_state = 182}, - [3997] = {.lex_state = 115}, - [3998] = {.lex_state = 115}, - [3999] = {.lex_state = 115}, - [4000] = {.lex_state = 115}, - [4001] = {.lex_state = 115}, - [4002] = {.lex_state = 115}, - [4003] = {.lex_state = 1026}, - [4004] = {.lex_state = 115}, - [4005] = {.lex_state = 997}, - [4006] = {.lex_state = 115}, - [4007] = {.lex_state = 182}, - [4008] = {.lex_state = 115}, - [4009] = {.lex_state = 182}, - [4010] = {.lex_state = 115}, - [4011] = {.lex_state = 115}, - [4012] = {.lex_state = 182}, - [4013] = {.lex_state = 564}, - [4014] = {.lex_state = 182}, - [4015] = {.lex_state = 182}, - [4016] = {.lex_state = 115}, - [4017] = {.lex_state = 166}, - [4018] = {.lex_state = 161}, - [4019] = {.lex_state = 161}, - [4020] = {.lex_state = 166}, - [4021] = {.lex_state = 166}, - [4022] = {.lex_state = 166}, - [4023] = {.lex_state = 166}, - [4024] = {.lex_state = 166}, - [4025] = {.lex_state = 166}, - [4026] = {.lex_state = 166}, - [4027] = {.lex_state = 166}, - [4028] = {.lex_state = 166}, - [4029] = {.lex_state = 166}, - [4030] = {.lex_state = 166}, - [4031] = {.lex_state = 161}, - [4032] = {.lex_state = 161}, - [4033] = {.lex_state = 1026}, - [4034] = {.lex_state = 161}, - [4035] = {.lex_state = 1026}, - [4036] = {.lex_state = 161}, - [4037] = {.lex_state = 161}, - [4038] = {.lex_state = 1026}, - [4039] = {.lex_state = 161}, - [4040] = {.lex_state = 1026}, - [4041] = {.lex_state = 1026}, - [4042] = {.lex_state = 161}, - [4043] = {.lex_state = 161}, - [4044] = {.lex_state = 161}, - [4045] = {.lex_state = 161}, - [4046] = {.lex_state = 115}, - [4047] = {.lex_state = 995}, - [4048] = {.lex_state = 161}, - [4049] = {.lex_state = 1026}, - [4050] = {.lex_state = 161}, - [4051] = {.lex_state = 1026}, - [4052] = {.lex_state = 1026}, - [4053] = {.lex_state = 115}, - [4054] = {.lex_state = 115}, - [4055] = {.lex_state = 161}, - [4056] = {.lex_state = 161}, - [4057] = {.lex_state = 115}, - [4058] = {.lex_state = 1026}, - [4059] = {.lex_state = 115}, - [4060] = {.lex_state = 115}, - [4061] = {.lex_state = 115}, - [4062] = {.lex_state = 1026}, - [4063] = {.lex_state = 115}, - [4064] = {.lex_state = 115}, - [4065] = {.lex_state = 161}, - [4066] = {.lex_state = 161}, - [4067] = {.lex_state = 161}, - [4068] = {.lex_state = 115}, - [4069] = {.lex_state = 161}, - [4070] = {.lex_state = 1026}, - [4071] = {.lex_state = 115}, - [4072] = {.lex_state = 115}, - [4073] = {.lex_state = 161}, - [4074] = {.lex_state = 995}, - [4075] = {.lex_state = 1053}, - [4076] = {.lex_state = 1053}, - [4077] = {.lex_state = 1054}, - [4078] = {.lex_state = 1054}, - [4079] = {.lex_state = 1054}, - [4080] = {.lex_state = 1060}, - [4081] = {.lex_state = 1051}, - [4082] = {.lex_state = 1054}, - [4083] = {.lex_state = 1052}, - [4084] = {.lex_state = 1066}, - [4085] = {.lex_state = 995}, - [4086] = {.lex_state = 995}, - [4087] = {.lex_state = 1055}, - [4088] = {.lex_state = 1066}, - [4089] = {.lex_state = 1051}, - [4090] = {.lex_state = 995}, - [4091] = {.lex_state = 995}, - [4092] = {.lex_state = 1070}, - [4093] = {.lex_state = 1052}, - [4094] = {.lex_state = 995}, - [4095] = {.lex_state = 1070}, - [4096] = {.lex_state = 995}, - [4097] = {.lex_state = 1055}, - [4098] = {.lex_state = 995}, - [4099] = {.lex_state = 1060}, - [4100] = {.lex_state = 995}, - [4101] = {.lex_state = 995}, - [4102] = {.lex_state = 1052}, - [4103] = {.lex_state = 995}, - [4104] = {.lex_state = 995}, - [4105] = {.lex_state = 1051}, - [4106] = {.lex_state = 995}, - [4107] = {.lex_state = 995}, - [4108] = {.lex_state = 1051}, - [4109] = {.lex_state = 1051}, - [4110] = {.lex_state = 1074}, - [4111] = {.lex_state = 995}, - [4112] = {.lex_state = 995}, - [4113] = {.lex_state = 995}, - [4114] = {.lex_state = 995}, - [4115] = {.lex_state = 995}, - [4116] = {.lex_state = 995}, - [4117] = {.lex_state = 995}, - [4118] = {.lex_state = 995}, - [4119] = {.lex_state = 995}, - [4120] = {.lex_state = 1064}, - [4121] = {.lex_state = 997}, - [4122] = {.lex_state = 1078}, - [4123] = {.lex_state = 1074}, - [4124] = {.lex_state = 1068}, - [4125] = {.lex_state = 1055}, - [4126] = {.lex_state = 1070}, - [4127] = {.lex_state = 1074}, - [4128] = {.lex_state = 1055}, - [4129] = {.lex_state = 1074}, - [4130] = {.lex_state = 1052}, - [4131] = {.lex_state = 1052}, - [4132] = {.lex_state = 1070}, - [4133] = {.lex_state = 1074}, - [4134] = {.lex_state = 1052}, - [4135] = {.lex_state = 1052}, - [4136] = {.lex_state = 1074}, - [4137] = {.lex_state = 1062}, - [4138] = {.lex_state = 1052}, - [4139] = {.lex_state = 995}, - [4140] = {.lex_state = 995}, - [4141] = {.lex_state = 997}, - [4142] = {.lex_state = 1052}, - [4143] = {.lex_state = 995}, - [4144] = {.lex_state = 995}, - [4145] = {.lex_state = 995}, - [4146] = {.lex_state = 995}, - [4147] = {.lex_state = 995}, - [4148] = {.lex_state = 995}, - [4149] = {.lex_state = 1074}, - [4150] = {.lex_state = 995}, - [4151] = {.lex_state = 995}, - [4152] = {.lex_state = 1052}, - [4153] = {.lex_state = 995}, - [4154] = {.lex_state = 995}, - [4155] = {.lex_state = 995}, - [4156] = {.lex_state = 995}, - [4157] = {.lex_state = 1078}, - [4158] = {.lex_state = 1064}, - [4159] = {.lex_state = 995}, - [4160] = {.lex_state = 1072}, - [4161] = {.lex_state = 1076}, - [4162] = {.lex_state = 995}, - [4163] = {.lex_state = 995}, - [4164] = {.lex_state = 1062}, - [4165] = {.lex_state = 995}, - [4166] = {.lex_state = 995}, - [4167] = {.lex_state = 995}, - [4168] = {.lex_state = 1068}, - [4169] = {.lex_state = 997}, - [4170] = {.lex_state = 1072}, - [4171] = {.lex_state = 995}, - [4172] = {.lex_state = 995}, - [4173] = {.lex_state = 1080}, - [4174] = {.lex_state = 1052}, - [4175] = {.lex_state = 1074}, - [4176] = {.lex_state = 1074}, - [4177] = {.lex_state = 1074}, - [4178] = {.lex_state = 1080}, - [4179] = {.lex_state = 1052}, - [4180] = {.lex_state = 995}, - [4181] = {.lex_state = 1082}, - [4182] = {.lex_state = 1072}, - [4183] = {.lex_state = 1076}, - [4184] = {.lex_state = 89}, - [4185] = {.lex_state = 997}, - [4186] = {.lex_state = 1082}, - [4187] = {.lex_state = 1076}, - [4188] = {.lex_state = 1080}, - [4189] = {.lex_state = 1065}, - [4190] = {.lex_state = 1080}, - [4191] = {.lex_state = 1079}, - [4192] = {.lex_state = 1076}, - [4193] = {.lex_state = 1072}, - [4194] = {.lex_state = 995}, - [4195] = {.lex_state = 1076}, - [4196] = {.lex_state = 995}, - [4197] = {.lex_state = 995}, - [4198] = {.lex_state = 1082}, - [4199] = {.lex_state = 1076}, - [4200] = {.lex_state = 1082}, - [4201] = {.lex_state = 1082}, - [4202] = {.lex_state = 997}, - [4203] = {.lex_state = 1062}, - [4204] = {.lex_state = 997}, - [4205] = {.lex_state = 1082}, - [4206] = {.lex_state = 1062}, - [4207] = {.lex_state = 995}, - [4208] = {.lex_state = 115}, - [4209] = {.lex_state = 995}, - [4210] = {.lex_state = 1076}, - [4211] = {.lex_state = 995}, - [4212] = {.lex_state = 995}, - [4213] = {.lex_state = 1076}, - [4214] = {.lex_state = 995}, - [4215] = {.lex_state = 995}, - [4216] = {.lex_state = 1081}, - [4217] = {.lex_state = 995}, - [4218] = {.lex_state = 995}, - [4219] = {.lex_state = 1082}, - [4220] = {.lex_state = 995}, - [4221] = {.lex_state = 90}, - [4222] = {.lex_state = 997}, - [4223] = {.lex_state = 997}, - [4224] = {.lex_state = 997}, - [4225] = {.lex_state = 1076}, - [4226] = {.lex_state = 1062}, - [4227] = {.lex_state = 1081}, - [4228] = {.lex_state = 1082}, - [4229] = {.lex_state = 1082}, - [4230] = {.lex_state = 1082}, - [4231] = {.lex_state = 1082}, - [4232] = {.lex_state = 1062}, - [4233] = {.lex_state = 89}, - [4234] = {.lex_state = 1062}, - [4235] = {.lex_state = 995}, - [4236] = {.lex_state = 1086}, - [4237] = {.lex_state = 1062}, - [4238] = {.lex_state = 997}, - [4239] = {.lex_state = 997}, - [4240] = {.lex_state = 87}, - [4241] = {.lex_state = 1079}, - [4242] = {.lex_state = 995}, - [4243] = {.lex_state = 1076}, - [4244] = {.lex_state = 995}, - [4245] = {.lex_state = 995}, - [4246] = {.lex_state = 995}, - [4247] = {.lex_state = 1065}, - [4248] = {.lex_state = 1084}, - [4249] = {.lex_state = 1082}, - [4250] = {.lex_state = 995}, - [4251] = {.lex_state = 995}, - [4252] = {.lex_state = 995}, - [4253] = {.lex_state = 87}, - [4254] = {.lex_state = 995}, - [4255] = {.lex_state = 91}, - [4256] = {.lex_state = 95}, - [4257] = {.lex_state = 995}, - [4258] = {.lex_state = 995}, - [4259] = {.lex_state = 995}, - [4260] = {.lex_state = 1076}, - [4261] = {.lex_state = 995}, - [4262] = {.lex_state = 995}, - [4263] = {.lex_state = 995}, - [4264] = {.lex_state = 995}, - [4265] = {.lex_state = 995}, - [4266] = {.lex_state = 995}, - [4267] = {.lex_state = 995}, - [4268] = {.lex_state = 995}, - [4269] = {.lex_state = 995}, - [4270] = {.lex_state = 995}, - [4271] = {.lex_state = 995}, - [4272] = {.lex_state = 995}, - [4273] = {.lex_state = 995}, - [4274] = {.lex_state = 1057}, - [4275] = {.lex_state = 93}, - [4276] = {.lex_state = 89}, - [4277] = {.lex_state = 1083}, - [4278] = {.lex_state = 1062}, - [4279] = {.lex_state = 1062}, - [4280] = {.lex_state = 89}, - [4281] = {.lex_state = 88}, - [4282] = {.lex_state = 101}, - [4283] = {.lex_state = 1083}, - [4284] = {.lex_state = 1086}, - [4285] = {.lex_state = 995}, - [4286] = {.lex_state = 1057}, - [4287] = {.lex_state = 1081}, - [4288] = {.lex_state = 1088}, - [4289] = {.lex_state = 997}, - [4290] = {.lex_state = 995}, - [4291] = {.lex_state = 997}, - [4292] = {.lex_state = 1083}, - [4293] = {.lex_state = 1088}, - [4294] = {.lex_state = 1083}, - [4295] = {.lex_state = 997}, - [4296] = {.lex_state = 997}, - [4297] = {.lex_state = 97}, - [4298] = {.lex_state = 1084}, - [4299] = {.lex_state = 89}, - [4300] = {.lex_state = 997}, - [4301] = {.lex_state = 1076}, - [4302] = {.lex_state = 995}, - [4303] = {.lex_state = 1081}, - [4304] = {.lex_state = 997}, - [4305] = {.lex_state = 115}, - [4306] = {.lex_state = 88}, - [4307] = {.lex_state = 1083}, - [4308] = {.lex_state = 1083}, - [4309] = {.lex_state = 96}, - [4310] = {.lex_state = 96}, - [4311] = {.lex_state = 1057}, - [4312] = {.lex_state = 1057}, - [4313] = {.lex_state = 1057}, - [4314] = {.lex_state = 89}, - [4315] = {.lex_state = 997}, - [4316] = {.lex_state = 995}, - [4317] = {.lex_state = 995}, - [4318] = {.lex_state = 995}, - [4319] = {.lex_state = 1088}, - [4320] = {.lex_state = 1062}, - [4321] = {.lex_state = 1090}, - [4322] = {.lex_state = 995}, - [4323] = {.lex_state = 1085}, - [4324] = {.lex_state = 997}, - [4325] = {.lex_state = 1090}, - [4326] = {.lex_state = 1088}, - [4327] = {.lex_state = 1062}, - [4328] = {.lex_state = 1062}, - [4329] = {.lex_state = 1085}, - [4330] = {.lex_state = 1117}, - [4331] = {.lex_state = 995}, - [4332] = {.lex_state = 1083}, - [4333] = {.lex_state = 1085}, - [4334] = {.lex_state = 1090}, - [4335] = {.lex_state = 1085}, - [4336] = {.lex_state = 1090}, - [4337] = {.lex_state = 1117}, - [4338] = {.lex_state = 995}, - [4339] = {.lex_state = 995}, - [4340] = {.lex_state = 1090}, - [4341] = {.lex_state = 1085}, - [4342] = {.lex_state = 995}, - [4343] = {.lex_state = 995}, - [4344] = {.lex_state = 995}, - [4345] = {.lex_state = 995}, - [4346] = {.lex_state = 1085}, - [4347] = {.lex_state = 102}, - [4348] = {.lex_state = 1090}, - [4349] = {.lex_state = 995}, - [4350] = {.lex_state = 1085}, - [4351] = {.lex_state = 1090}, - [4352] = {.lex_state = 995}, - [4353] = {.lex_state = 995}, - [4354] = {.lex_state = 1085}, - [4355] = {.lex_state = 1085}, - [4356] = {.lex_state = 995}, - [4357] = {.lex_state = 995}, - [4358] = {.lex_state = 995}, - [4359] = {.lex_state = 995}, - [4360] = {.lex_state = 995}, - [4361] = {.lex_state = 1057}, - [4362] = {.lex_state = 997}, - [4363] = {.lex_state = 1083}, - [4364] = {.lex_state = 1057}, - [4365] = {.lex_state = 995}, - [4366] = {.lex_state = 995}, - [4367] = {.lex_state = 995}, - [4368] = {.lex_state = 1117}, - [4369] = {.lex_state = 1085}, - [4370] = {.lex_state = 54}, - [4371] = {.lex_state = 995}, - [4372] = {.lex_state = 1085}, - [4373] = {.lex_state = 1117}, - [4374] = {.lex_state = 98}, - [4375] = {.lex_state = 1085}, - [4376] = {.lex_state = 1117}, - [4377] = {.lex_state = 1085}, - [4378] = {.lex_state = 1083}, - [4379] = {.lex_state = 995}, - [4380] = {.lex_state = 1085}, - [4381] = {.lex_state = 995}, - [4382] = {.lex_state = 1085}, - [4383] = {.lex_state = 1085}, + [2843] = {.lex_state = 1045}, + [2844] = {.lex_state = 1013}, + [2845] = {.lex_state = 365}, + [2846] = {.lex_state = 297}, + [2847] = {.lex_state = 257}, + [2848] = {.lex_state = 1003}, + [2849] = {.lex_state = 1043}, + [2850] = {.lex_state = 257}, + [2851] = {.lex_state = 297}, + [2852] = {.lex_state = 220}, + [2853] = {.lex_state = 305}, + [2854] = {.lex_state = 1013}, + [2855] = {.lex_state = 1017}, + [2856] = {.lex_state = 1047}, + [2857] = {.lex_state = 303}, + [2858] = {.lex_state = 315}, + [2859] = {.lex_state = 315}, + [2860] = {.lex_state = 42}, + [2861] = {.lex_state = 340}, + [2862] = {.lex_state = 315}, + [2863] = {.lex_state = 315}, + [2864] = {.lex_state = 335}, + [2865] = {.lex_state = 297}, + [2866] = {.lex_state = 315}, + [2867] = {.lex_state = 315}, + [2868] = {.lex_state = 315}, + [2869] = {.lex_state = 315}, + [2870] = {.lex_state = 313}, + [2871] = {.lex_state = 1013}, + [2872] = {.lex_state = 220}, + [2873] = {.lex_state = 315}, + [2874] = {.lex_state = 315}, + [2875] = {.lex_state = 315}, + [2876] = {.lex_state = 315}, + [2877] = {.lex_state = 315}, + [2878] = {.lex_state = 315}, + [2879] = {.lex_state = 1043}, + [2880] = {.lex_state = 220}, + [2881] = {.lex_state = 315}, + [2882] = {.lex_state = 315}, + [2883] = {.lex_state = 1045}, + [2884] = {.lex_state = 315}, + [2885] = {.lex_state = 1013}, + [2886] = {.lex_state = 315}, + [2887] = {.lex_state = 315}, + [2888] = {.lex_state = 1017}, + [2889] = {.lex_state = 313}, + [2890] = {.lex_state = 315}, + [2891] = {.lex_state = 315}, + [2892] = {.lex_state = 137}, + [2893] = {.lex_state = 311}, + [2894] = {.lex_state = 128}, + [2895] = {.lex_state = 139}, + [2896] = {.lex_state = 1047}, + [2897] = {.lex_state = 315}, + [2898] = {.lex_state = 315}, + [2899] = {.lex_state = 1017}, + [2900] = {.lex_state = 315}, + [2901] = {.lex_state = 315}, + [2902] = {.lex_state = 311}, + [2903] = {.lex_state = 335}, + [2904] = {.lex_state = 326}, + [2905] = {.lex_state = 326}, + [2906] = {.lex_state = 315}, + [2907] = {.lex_state = 315}, + [2908] = {.lex_state = 315}, + [2909] = {.lex_state = 312}, + [2910] = {.lex_state = 311}, + [2911] = {.lex_state = 128}, + [2912] = {.lex_state = 1017}, + [2913] = {.lex_state = 315}, + [2914] = {.lex_state = 311}, + [2915] = {.lex_state = 315}, + [2916] = {.lex_state = 315}, + [2917] = {.lex_state = 130}, + [2918] = {.lex_state = 315}, + [2919] = {.lex_state = 315}, + [2920] = {.lex_state = 1017}, + [2921] = {.lex_state = 315}, + [2922] = {.lex_state = 311}, + [2923] = {.lex_state = 315}, + [2924] = {.lex_state = 326}, + [2925] = {.lex_state = 315}, + [2926] = {.lex_state = 315}, + [2927] = {.lex_state = 315}, + [2928] = {.lex_state = 366}, + [2929] = {.lex_state = 1049}, + [2930] = {.lex_state = 130}, + [2931] = {.lex_state = 315}, + [2932] = {.lex_state = 366}, + [2933] = {.lex_state = 300}, + [2934] = {.lex_state = 1049}, + [2935] = {.lex_state = 310}, + [2936] = {.lex_state = 310}, + [2937] = {.lex_state = 297}, + [2938] = {.lex_state = 1017}, + [2939] = {.lex_state = 1049}, + [2940] = {.lex_state = 130}, + [2941] = {.lex_state = 315}, + [2942] = {.lex_state = 1047}, + [2943] = {.lex_state = 315}, + [2944] = {.lex_state = 315}, + [2945] = {.lex_state = 336}, + [2946] = {.lex_state = 336}, + [2947] = {.lex_state = 366}, + [2948] = {.lex_state = 42}, + [2949] = {.lex_state = 1017}, + [2950] = {.lex_state = 47}, + [2951] = {.lex_state = 336}, + [2952] = {.lex_state = 336}, + [2953] = {.lex_state = 315}, + [2954] = {.lex_state = 130}, + [2955] = {.lex_state = 315}, + [2956] = {.lex_state = 336}, + [2957] = {.lex_state = 315}, + [2958] = {.lex_state = 315}, + [2959] = {.lex_state = 336}, + [2960] = {.lex_state = 1017}, + [2961] = {.lex_state = 310}, + [2962] = {.lex_state = 1017}, + [2963] = {.lex_state = 1049}, + [2964] = {.lex_state = 336}, + [2965] = {.lex_state = 336}, + [2966] = {.lex_state = 141}, + [2967] = {.lex_state = 315}, + [2968] = {.lex_state = 300}, + [2969] = {.lex_state = 297}, + [2970] = {.lex_state = 315}, + [2971] = {.lex_state = 315}, + [2972] = {.lex_state = 315}, + [2973] = {.lex_state = 315}, + [2974] = {.lex_state = 366}, + [2975] = {.lex_state = 130}, + [2976] = {.lex_state = 366}, + [2977] = {.lex_state = 301}, + [2978] = {.lex_state = 1049}, + [2979] = {.lex_state = 336}, + [2980] = {.lex_state = 1047}, + [2981] = {.lex_state = 336}, + [2982] = {.lex_state = 141}, + [2983] = {.lex_state = 42}, + [2984] = {.lex_state = 42}, + [2985] = {.lex_state = 42}, + [2986] = {.lex_state = 42}, + [2987] = {.lex_state = 42}, + [2988] = {.lex_state = 42}, + [2989] = {.lex_state = 42}, + [2990] = {.lex_state = 42}, + [2991] = {.lex_state = 42}, + [2992] = {.lex_state = 42}, + [2993] = {.lex_state = 42}, + [2994] = {.lex_state = 42}, + [2995] = {.lex_state = 42}, + [2996] = {.lex_state = 42}, + [2997] = {.lex_state = 42}, + [2998] = {.lex_state = 42}, + [2999] = {.lex_state = 42}, + [3000] = {.lex_state = 42}, + [3001] = {.lex_state = 42}, + [3002] = {.lex_state = 42}, + [3003] = {.lex_state = 42}, + [3004] = {.lex_state = 42}, + [3005] = {.lex_state = 42}, + [3006] = {.lex_state = 1049}, + [3007] = {.lex_state = 42}, + [3008] = {.lex_state = 42}, + [3009] = {.lex_state = 42}, + [3010] = {.lex_state = 42}, + [3011] = {.lex_state = 42}, + [3012] = {.lex_state = 143}, + [3013] = {.lex_state = 42}, + [3014] = {.lex_state = 42}, + [3015] = {.lex_state = 42}, + [3016] = {.lex_state = 42}, + [3017] = {.lex_state = 42}, + [3018] = {.lex_state = 42}, + [3019] = {.lex_state = 42}, + [3020] = {.lex_state = 42}, + [3021] = {.lex_state = 42}, + [3022] = {.lex_state = 42}, + [3023] = {.lex_state = 42}, + [3024] = {.lex_state = 42}, + [3025] = {.lex_state = 42}, + [3026] = {.lex_state = 42}, + [3027] = {.lex_state = 42}, + [3028] = {.lex_state = 42}, + [3029] = {.lex_state = 42}, + [3030] = {.lex_state = 42}, + [3031] = {.lex_state = 42}, + [3032] = {.lex_state = 1049}, + [3033] = {.lex_state = 1049}, + [3034] = {.lex_state = 1049}, + [3035] = {.lex_state = 1049}, + [3036] = {.lex_state = 143}, + [3037] = {.lex_state = 42}, + [3038] = {.lex_state = 42}, + [3039] = {.lex_state = 143}, + [3040] = {.lex_state = 42}, + [3041] = {.lex_state = 143}, + [3042] = {.lex_state = 42}, + [3043] = {.lex_state = 143}, + [3044] = {.lex_state = 42}, + [3045] = {.lex_state = 42}, + [3046] = {.lex_state = 42}, + [3047] = {.lex_state = 42}, + [3048] = {.lex_state = 42}, + [3049] = {.lex_state = 42}, + [3050] = {.lex_state = 42}, + [3051] = {.lex_state = 47}, + [3052] = {.lex_state = 42}, + [3053] = {.lex_state = 42}, + [3054] = {.lex_state = 42}, + [3055] = {.lex_state = 42}, + [3056] = {.lex_state = 79}, + [3057] = {.lex_state = 79}, + [3058] = {.lex_state = 1036}, + [3059] = {.lex_state = 74}, + [3060] = {.lex_state = 42}, + [3061] = {.lex_state = 74}, + [3062] = {.lex_state = 79}, + [3063] = {.lex_state = 79}, + [3064] = {.lex_state = 999}, + [3065] = {.lex_state = 79}, + [3066] = {.lex_state = 79}, + [3067] = {.lex_state = 79}, + [3068] = {.lex_state = 79}, + [3069] = {.lex_state = 79}, + [3070] = {.lex_state = 79}, + [3071] = {.lex_state = 991}, + [3072] = {.lex_state = 79}, + [3073] = {.lex_state = 79}, + [3074] = {.lex_state = 79}, + [3075] = {.lex_state = 79}, + [3076] = {.lex_state = 79}, + [3077] = {.lex_state = 79}, + [3078] = {.lex_state = 74}, + [3079] = {.lex_state = 991}, + [3080] = {.lex_state = 144}, + [3081] = {.lex_state = 1036}, + [3082] = {.lex_state = 991}, + [3083] = {.lex_state = 991}, + [3084] = {.lex_state = 991}, + [3085] = {.lex_state = 1060}, + [3086] = {.lex_state = 936}, + [3087] = {.lex_state = 79}, + [3088] = {.lex_state = 1060}, + [3089] = {.lex_state = 1060}, + [3090] = {.lex_state = 936}, + [3091] = {.lex_state = 72}, + [3092] = {.lex_state = 1060}, + [3093] = {.lex_state = 1060}, + [3094] = {.lex_state = 79}, + [3095] = {.lex_state = 936}, + [3096] = {.lex_state = 936}, + [3097] = {.lex_state = 936}, + [3098] = {.lex_state = 1060}, + [3099] = {.lex_state = 1063}, + [3100] = {.lex_state = 1063}, + [3101] = {.lex_state = 150}, + [3102] = {.lex_state = 150}, + [3103] = {.lex_state = 150}, + [3104] = {.lex_state = 1055}, + [3105] = {.lex_state = 991}, + [3106] = {.lex_state = 1060}, + [3107] = {.lex_state = 934}, + [3108] = {.lex_state = 936}, + [3109] = {.lex_state = 1060}, + [3110] = {.lex_state = 150}, + [3111] = {.lex_state = 1060}, + [3112] = {.lex_state = 936}, + [3113] = {.lex_state = 936}, + [3114] = {.lex_state = 936}, + [3115] = {.lex_state = 150}, + [3116] = {.lex_state = 1063}, + [3117] = {.lex_state = 1056}, + [3118] = {.lex_state = 1056}, + [3119] = {.lex_state = 1060}, + [3120] = {.lex_state = 936}, + [3121] = {.lex_state = 153}, + [3122] = {.lex_state = 936}, + [3123] = {.lex_state = 936}, + [3124] = {.lex_state = 936}, + [3125] = {.lex_state = 147}, + [3126] = {.lex_state = 153}, + [3127] = {.lex_state = 991}, + [3128] = {.lex_state = 148}, + [3129] = {.lex_state = 148}, + [3130] = {.lex_state = 1063}, + [3131] = {.lex_state = 936}, + [3132] = {.lex_state = 153}, + [3133] = {.lex_state = 79}, + [3134] = {.lex_state = 79}, + [3135] = {.lex_state = 999}, + [3136] = {.lex_state = 79}, + [3137] = {.lex_state = 79}, + [3138] = {.lex_state = 936}, + [3139] = {.lex_state = 999}, + [3140] = {.lex_state = 999}, + [3141] = {.lex_state = 999}, + [3142] = {.lex_state = 999}, + [3143] = {.lex_state = 999}, + [3144] = {.lex_state = 999}, + [3145] = {.lex_state = 999}, + [3146] = {.lex_state = 999}, + [3147] = {.lex_state = 999}, + [3148] = {.lex_state = 999}, + [3149] = {.lex_state = 999}, + [3150] = {.lex_state = 999}, + [3151] = {.lex_state = 122}, + [3152] = {.lex_state = 122}, + [3153] = {.lex_state = 122}, + [3154] = {.lex_state = 122}, + [3155] = {.lex_state = 122}, + [3156] = {.lex_state = 122}, + [3157] = {.lex_state = 122}, + [3158] = {.lex_state = 122}, + [3159] = {.lex_state = 122}, + [3160] = {.lex_state = 122}, + [3161] = {.lex_state = 122}, + [3162] = {.lex_state = 122}, + [3163] = {.lex_state = 79}, + [3164] = {.lex_state = 122}, + [3165] = {.lex_state = 122}, + [3166] = {.lex_state = 122}, + [3167] = {.lex_state = 122}, + [3168] = {.lex_state = 122}, + [3169] = {.lex_state = 122}, + [3170] = {.lex_state = 122}, + [3171] = {.lex_state = 122}, + [3172] = {.lex_state = 122}, + [3173] = {.lex_state = 122}, + [3174] = {.lex_state = 122}, + [3175] = {.lex_state = 122}, + [3176] = {.lex_state = 122}, + [3177] = {.lex_state = 122}, + [3178] = {.lex_state = 122}, + [3179] = {.lex_state = 122}, + [3180] = {.lex_state = 122}, + [3181] = {.lex_state = 122}, + [3182] = {.lex_state = 122}, + [3183] = {.lex_state = 122}, + [3184] = {.lex_state = 122}, + [3185] = {.lex_state = 122}, + [3186] = {.lex_state = 122}, + [3187] = {.lex_state = 122}, + [3188] = {.lex_state = 122}, + [3189] = {.lex_state = 122}, + [3190] = {.lex_state = 122}, + [3191] = {.lex_state = 122}, + [3192] = {.lex_state = 122}, + [3193] = {.lex_state = 122}, + [3194] = {.lex_state = 122}, + [3195] = {.lex_state = 122}, + [3196] = {.lex_state = 122}, + [3197] = {.lex_state = 1055}, + [3198] = {.lex_state = 122}, + [3199] = {.lex_state = 122}, + [3200] = {.lex_state = 122}, + [3201] = {.lex_state = 122}, + [3202] = {.lex_state = 122}, + [3203] = {.lex_state = 122}, + [3204] = {.lex_state = 122}, + [3205] = {.lex_state = 122}, + [3206] = {.lex_state = 122}, + [3207] = {.lex_state = 122}, + [3208] = {.lex_state = 122}, + [3209] = {.lex_state = 122}, + [3210] = {.lex_state = 122}, + [3211] = {.lex_state = 122}, + [3212] = {.lex_state = 122}, + [3213] = {.lex_state = 122}, + [3214] = {.lex_state = 122}, + [3215] = {.lex_state = 122}, + [3216] = {.lex_state = 122}, + [3217] = {.lex_state = 122}, + [3218] = {.lex_state = 122}, + [3219] = {.lex_state = 122}, + [3220] = {.lex_state = 122}, + [3221] = {.lex_state = 122}, + [3222] = {.lex_state = 122}, + [3223] = {.lex_state = 122}, + [3224] = {.lex_state = 122}, + [3225] = {.lex_state = 122}, + [3226] = {.lex_state = 122}, + [3227] = {.lex_state = 122}, + [3228] = {.lex_state = 122}, + [3229] = {.lex_state = 122}, + [3230] = {.lex_state = 122}, + [3231] = {.lex_state = 122}, + [3232] = {.lex_state = 122}, + [3233] = {.lex_state = 122}, + [3234] = {.lex_state = 122}, + [3235] = {.lex_state = 122}, + [3236] = {.lex_state = 122}, + [3237] = {.lex_state = 122}, + [3238] = {.lex_state = 122}, + [3239] = {.lex_state = 122}, + [3240] = {.lex_state = 122}, + [3241] = {.lex_state = 122}, + [3242] = {.lex_state = 122}, + [3243] = {.lex_state = 122}, + [3244] = {.lex_state = 122}, + [3245] = {.lex_state = 122}, + [3246] = {.lex_state = 122}, + [3247] = {.lex_state = 122}, + [3248] = {.lex_state = 991}, + [3249] = {.lex_state = 79}, + [3250] = {.lex_state = 1063}, + [3251] = {.lex_state = 1063}, + [3252] = {.lex_state = 79}, + [3253] = {.lex_state = 79}, + [3254] = {.lex_state = 1056}, + [3255] = {.lex_state = 1056}, + [3256] = {.lex_state = 79}, + [3257] = {.lex_state = 79}, + [3258] = {.lex_state = 122}, + [3259] = {.lex_state = 936}, + [3260] = {.lex_state = 79}, + [3261] = {.lex_state = 936}, + [3262] = {.lex_state = 936}, + [3263] = {.lex_state = 412}, + [3264] = {.lex_state = 999}, + [3265] = {.lex_state = 413}, + [3266] = {.lex_state = 79}, + [3267] = {.lex_state = 999}, + [3268] = {.lex_state = 999}, + [3269] = {.lex_state = 79}, + [3270] = {.lex_state = 999}, + [3271] = {.lex_state = 122}, + [3272] = {.lex_state = 936}, + [3273] = {.lex_state = 936}, + [3274] = {.lex_state = 79}, + [3275] = {.lex_state = 79}, + [3276] = {.lex_state = 79}, + [3277] = {.lex_state = 999}, + [3278] = {.lex_state = 999}, + [3279] = {.lex_state = 999}, + [3280] = {.lex_state = 999}, + [3281] = {.lex_state = 999}, + [3282] = {.lex_state = 999}, + [3283] = {.lex_state = 79}, + [3284] = {.lex_state = 999}, + [3285] = {.lex_state = 999}, + [3286] = {.lex_state = 79}, + [3287] = {.lex_state = 999}, + [3288] = {.lex_state = 999}, + [3289] = {.lex_state = 79}, + [3290] = {.lex_state = 999}, + [3291] = {.lex_state = 999}, + [3292] = {.lex_state = 79}, + [3293] = {.lex_state = 936}, + [3294] = {.lex_state = 79}, + [3295] = {.lex_state = 211}, + [3296] = {.lex_state = 219}, + [3297] = {.lex_state = 215}, + [3298] = {.lex_state = 934}, + [3299] = {.lex_state = 416}, + [3300] = {.lex_state = 415}, + [3301] = {.lex_state = 422}, + [3302] = {.lex_state = 211}, + [3303] = {.lex_state = 104}, + [3304] = {.lex_state = 131}, + [3305] = {.lex_state = 414}, + [3306] = {.lex_state = 132}, + [3307] = {.lex_state = 414}, + [3308] = {.lex_state = 104}, + [3309] = {.lex_state = 104}, + [3310] = {.lex_state = 936}, + [3311] = {.lex_state = 991}, + [3312] = {.lex_state = 423}, + [3313] = {.lex_state = 216}, + [3314] = {.lex_state = 134}, + [3315] = {.lex_state = 415}, + [3316] = {.lex_state = 423}, + [3317] = {.lex_state = 79}, + [3318] = {.lex_state = 79}, + [3319] = {.lex_state = 936}, + [3320] = {.lex_state = 104}, + [3321] = {.lex_state = 104}, + [3322] = {.lex_state = 417}, + [3323] = {.lex_state = 216}, + [3324] = {.lex_state = 133}, + [3325] = {.lex_state = 415}, + [3326] = {.lex_state = 133}, + [3327] = {.lex_state = 425}, + [3328] = {.lex_state = 212}, + [3329] = {.lex_state = 212}, + [3330] = {.lex_state = 991}, + [3331] = {.lex_state = 936}, + [3332] = {.lex_state = 936}, + [3333] = {.lex_state = 415}, + [3334] = {.lex_state = 415}, + [3335] = {.lex_state = 79}, + [3336] = {.lex_state = 79}, + [3337] = {.lex_state = 424}, + [3338] = {.lex_state = 217}, + [3339] = {.lex_state = 499}, + [3340] = {.lex_state = 134}, + [3341] = {.lex_state = 217}, + [3342] = {.lex_state = 134}, + [3343] = {.lex_state = 134}, + [3344] = {.lex_state = 934}, + [3345] = {.lex_state = 217}, + [3346] = {.lex_state = 104}, + [3347] = {.lex_state = 104}, + [3348] = {.lex_state = 104}, + [3349] = {.lex_state = 424}, + [3350] = {.lex_state = 104}, + [3351] = {.lex_state = 104}, + [3352] = {.lex_state = 217}, + [3353] = {.lex_state = 499}, + [3354] = {.lex_state = 934}, + [3355] = {.lex_state = 934}, + [3356] = {.lex_state = 934}, + [3357] = {.lex_state = 499}, + [3358] = {.lex_state = 934}, + [3359] = {.lex_state = 934}, + [3360] = {.lex_state = 934}, + [3361] = {.lex_state = 991}, + [3362] = {.lex_state = 991}, + [3363] = {.lex_state = 991}, + [3364] = {.lex_state = 991}, + [3365] = {.lex_state = 424}, + [3366] = {.lex_state = 934}, + [3367] = {.lex_state = 934}, + [3368] = {.lex_state = 424}, + [3369] = {.lex_state = 934}, + [3370] = {.lex_state = 217}, + [3371] = {.lex_state = 426}, + [3372] = {.lex_state = 499}, + [3373] = {.lex_state = 991}, + [3374] = {.lex_state = 499}, + [3375] = {.lex_state = 427}, + [3376] = {.lex_state = 426}, + [3377] = {.lex_state = 991}, + [3378] = {.lex_state = 424}, + [3379] = {.lex_state = 934}, + [3380] = {.lex_state = 934}, + [3381] = {.lex_state = 934}, + [3382] = {.lex_state = 134}, + [3383] = {.lex_state = 934}, + [3384] = {.lex_state = 934}, + [3385] = {.lex_state = 105}, + [3386] = {.lex_state = 104}, + [3387] = {.lex_state = 104}, + [3388] = {.lex_state = 105}, + [3389] = {.lex_state = 427}, + [3390] = {.lex_state = 105}, + [3391] = {.lex_state = 105}, + [3392] = {.lex_state = 105}, + [3393] = {.lex_state = 499}, + [3394] = {.lex_state = 105}, + [3395] = {.lex_state = 105}, + [3396] = {.lex_state = 427}, + [3397] = {.lex_state = 105}, + [3398] = {.lex_state = 105}, + [3399] = {.lex_state = 105}, + [3400] = {.lex_state = 105}, + [3401] = {.lex_state = 427}, + [3402] = {.lex_state = 105}, + [3403] = {.lex_state = 105}, + [3404] = {.lex_state = 105}, + [3405] = {.lex_state = 936}, + [3406] = {.lex_state = 105}, + [3407] = {.lex_state = 936}, + [3408] = {.lex_state = 105}, + [3409] = {.lex_state = 499}, + [3410] = {.lex_state = 105}, + [3411] = {.lex_state = 105}, + [3412] = {.lex_state = 105}, + [3413] = {.lex_state = 427}, + [3414] = {.lex_state = 105}, + [3415] = {.lex_state = 105}, + [3416] = {.lex_state = 105}, + [3417] = {.lex_state = 105}, + [3418] = {.lex_state = 104}, + [3419] = {.lex_state = 105}, + [3420] = {.lex_state = 105}, + [3421] = {.lex_state = 936}, + [3422] = {.lex_state = 122}, + [3423] = {.lex_state = 99}, + [3424] = {.lex_state = 99}, + [3425] = {.lex_state = 99}, + [3426] = {.lex_state = 936}, + [3427] = {.lex_state = 934}, + [3428] = {.lex_state = 99}, + [3429] = {.lex_state = 99}, + [3430] = {.lex_state = 99}, + [3431] = {.lex_state = 99}, + [3432] = {.lex_state = 99}, + [3433] = {.lex_state = 936}, + [3434] = {.lex_state = 99}, + [3435] = {.lex_state = 99}, + [3436] = {.lex_state = 99}, + [3437] = {.lex_state = 934}, + [3438] = {.lex_state = 936}, + [3439] = {.lex_state = 99}, + [3440] = {.lex_state = 104}, + [3441] = {.lex_state = 99}, + [3442] = {.lex_state = 105}, + [3443] = {.lex_state = 99}, + [3444] = {.lex_state = 99}, + [3445] = {.lex_state = 99}, + [3446] = {.lex_state = 99}, + [3447] = {.lex_state = 105}, + [3448] = {.lex_state = 99}, + [3449] = {.lex_state = 99}, + [3450] = {.lex_state = 99}, + [3451] = {.lex_state = 99}, + [3452] = {.lex_state = 99}, + [3453] = {.lex_state = 99}, + [3454] = {.lex_state = 106}, + [3455] = {.lex_state = 99}, + [3456] = {.lex_state = 99}, + [3457] = {.lex_state = 936}, + [3458] = {.lex_state = 936}, + [3459] = {.lex_state = 936}, + [3460] = {.lex_state = 936}, + [3461] = {.lex_state = 936}, + [3462] = {.lex_state = 936}, + [3463] = {.lex_state = 203}, + [3464] = {.lex_state = 103}, + [3465] = {.lex_state = 122}, + [3466] = {.lex_state = 934}, + [3467] = {.lex_state = 515}, + [3468] = {.lex_state = 515}, + [3469] = {.lex_state = 515}, + [3470] = {.lex_state = 515}, + [3471] = {.lex_state = 99}, + [3472] = {.lex_state = 99}, + [3473] = {.lex_state = 99}, + [3474] = {.lex_state = 934}, + [3475] = {.lex_state = 515}, + [3476] = {.lex_state = 99}, + [3477] = {.lex_state = 99}, + [3478] = {.lex_state = 105}, + [3479] = {.lex_state = 934}, + [3480] = {.lex_state = 934}, + [3481] = {.lex_state = 122}, + [3482] = {.lex_state = 208}, + [3483] = {.lex_state = 934}, + [3484] = {.lex_state = 934}, + [3485] = {.lex_state = 934}, + [3486] = {.lex_state = 934}, + [3487] = {.lex_state = 934}, + [3488] = {.lex_state = 934}, + [3489] = {.lex_state = 457}, + [3490] = {.lex_state = 363}, + [3491] = {.lex_state = 99}, + [3492] = {.lex_state = 99}, + [3493] = {.lex_state = 363}, + [3494] = {.lex_state = 516}, + [3495] = {.lex_state = 151}, + [3496] = {.lex_state = 151}, + [3497] = {.lex_state = 151}, + [3498] = {.lex_state = 363}, + [3499] = {.lex_state = 66}, + [3500] = {.lex_state = 516}, + [3501] = {.lex_state = 151}, + [3502] = {.lex_state = 516}, + [3503] = {.lex_state = 516}, + [3504] = {.lex_state = 99}, + [3505] = {.lex_state = 103}, + [3506] = {.lex_state = 934}, + [3507] = {.lex_state = 934}, + [3508] = {.lex_state = 206}, + [3509] = {.lex_state = 934}, + [3510] = {.lex_state = 934}, + [3511] = {.lex_state = 934}, + [3512] = {.lex_state = 103}, + [3513] = {.lex_state = 363}, + [3514] = {.lex_state = 218}, + [3515] = {.lex_state = 363}, + [3516] = {.lex_state = 934}, + [3517] = {.lex_state = 66}, + [3518] = {.lex_state = 106}, + [3519] = {.lex_state = 106}, + [3520] = {.lex_state = 151}, + [3521] = {.lex_state = 99}, + [3522] = {.lex_state = 99}, + [3523] = {.lex_state = 122}, + [3524] = {.lex_state = 517}, + [3525] = {.lex_state = 40}, + [3526] = {.lex_state = 40}, + [3527] = {.lex_state = 517}, + [3528] = {.lex_state = 934}, + [3529] = {.lex_state = 999}, + [3530] = {.lex_state = 999}, + [3531] = {.lex_state = 40}, + [3532] = {.lex_state = 40}, + [3533] = {.lex_state = 40}, + [3534] = {.lex_state = 40}, + [3535] = {.lex_state = 40}, + [3536] = {.lex_state = 999}, + [3537] = {.lex_state = 999}, + [3538] = {.lex_state = 999}, + [3539] = {.lex_state = 999}, + [3540] = {.lex_state = 40}, + [3541] = {.lex_state = 936}, + [3542] = {.lex_state = 40}, + [3543] = {.lex_state = 936}, + [3544] = {.lex_state = 40}, + [3545] = {.lex_state = 40}, + [3546] = {.lex_state = 934}, + [3547] = {.lex_state = 517}, + [3548] = {.lex_state = 517}, + [3549] = {.lex_state = 122}, + [3550] = {.lex_state = 122}, + [3551] = {.lex_state = 122}, + [3552] = {.lex_state = 122}, + [3553] = {.lex_state = 122}, + [3554] = {.lex_state = 122}, + [3555] = {.lex_state = 122}, + [3556] = {.lex_state = 122}, + [3557] = {.lex_state = 122}, + [3558] = {.lex_state = 122}, + [3559] = {.lex_state = 122}, + [3560] = {.lex_state = 122}, + [3561] = {.lex_state = 40}, + [3562] = {.lex_state = 122}, + [3563] = {.lex_state = 122}, + [3564] = {.lex_state = 122}, + [3565] = {.lex_state = 122}, + [3566] = {.lex_state = 122}, + [3567] = {.lex_state = 122}, + [3568] = {.lex_state = 122}, + [3569] = {.lex_state = 122}, + [3570] = {.lex_state = 122}, + [3571] = {.lex_state = 122}, + [3572] = {.lex_state = 122}, + [3573] = {.lex_state = 122}, + [3574] = {.lex_state = 122}, + [3575] = {.lex_state = 122}, + [3576] = {.lex_state = 122}, + [3577] = {.lex_state = 122}, + [3578] = {.lex_state = 122}, + [3579] = {.lex_state = 122}, + [3580] = {.lex_state = 122}, + [3581] = {.lex_state = 122}, + [3582] = {.lex_state = 122}, + [3583] = {.lex_state = 122}, + [3584] = {.lex_state = 122}, + [3585] = {.lex_state = 122}, + [3586] = {.lex_state = 122}, + [3587] = {.lex_state = 122}, + [3588] = {.lex_state = 122}, + [3589] = {.lex_state = 122}, + [3590] = {.lex_state = 122}, + [3591] = {.lex_state = 122}, + [3592] = {.lex_state = 122}, + [3593] = {.lex_state = 122}, + [3594] = {.lex_state = 122}, + [3595] = {.lex_state = 122}, + [3596] = {.lex_state = 122}, + [3597] = {.lex_state = 122}, + [3598] = {.lex_state = 122}, + [3599] = {.lex_state = 122}, + [3600] = {.lex_state = 122}, + [3601] = {.lex_state = 122}, + [3602] = {.lex_state = 122}, + [3603] = {.lex_state = 122}, + [3604] = {.lex_state = 122}, + [3605] = {.lex_state = 122}, + [3606] = {.lex_state = 122}, + [3607] = {.lex_state = 122}, + [3608] = {.lex_state = 122}, + [3609] = {.lex_state = 122}, + [3610] = {.lex_state = 122}, + [3611] = {.lex_state = 122}, + [3612] = {.lex_state = 122}, + [3613] = {.lex_state = 122}, + [3614] = {.lex_state = 122}, + [3615] = {.lex_state = 122}, + [3616] = {.lex_state = 516}, + [3617] = {.lex_state = 122}, + [3618] = {.lex_state = 122}, + [3619] = {.lex_state = 122}, + [3620] = {.lex_state = 122}, + [3621] = {.lex_state = 122}, + [3622] = {.lex_state = 122}, + [3623] = {.lex_state = 122}, + [3624] = {.lex_state = 122}, + [3625] = {.lex_state = 122}, + [3626] = {.lex_state = 122}, + [3627] = {.lex_state = 122}, + [3628] = {.lex_state = 122}, + [3629] = {.lex_state = 122}, + [3630] = {.lex_state = 40}, + [3631] = {.lex_state = 122}, + [3632] = {.lex_state = 122}, + [3633] = {.lex_state = 122}, + [3634] = {.lex_state = 122}, + [3635] = {.lex_state = 122}, + [3636] = {.lex_state = 122}, + [3637] = {.lex_state = 122}, + [3638] = {.lex_state = 122}, + [3639] = {.lex_state = 122}, + [3640] = {.lex_state = 122}, + [3641] = {.lex_state = 122}, + [3642] = {.lex_state = 122}, + [3643] = {.lex_state = 122}, + [3644] = {.lex_state = 122}, + [3645] = {.lex_state = 122}, + [3646] = {.lex_state = 40}, + [3647] = {.lex_state = 934}, + [3648] = {.lex_state = 40}, + [3649] = {.lex_state = 40}, + [3650] = {.lex_state = 40}, + [3651] = {.lex_state = 40}, + [3652] = {.lex_state = 40}, + [3653] = {.lex_state = 40}, + [3654] = {.lex_state = 40}, + [3655] = {.lex_state = 40}, + [3656] = {.lex_state = 40}, + [3657] = {.lex_state = 40}, + [3658] = {.lex_state = 40}, + [3659] = {.lex_state = 40}, + [3660] = {.lex_state = 40}, + [3661] = {.lex_state = 40}, + [3662] = {.lex_state = 40}, + [3663] = {.lex_state = 40}, + [3664] = {.lex_state = 40}, + [3665] = {.lex_state = 40}, + [3666] = {.lex_state = 40}, + [3667] = {.lex_state = 40}, + [3668] = {.lex_state = 40}, + [3669] = {.lex_state = 40}, + [3670] = {.lex_state = 40}, + [3671] = {.lex_state = 40}, + [3672] = {.lex_state = 40}, + [3673] = {.lex_state = 40}, + [3674] = {.lex_state = 40}, + [3675] = {.lex_state = 40}, + [3676] = {.lex_state = 104}, + [3677] = {.lex_state = 104}, + [3678] = {.lex_state = 104}, + [3679] = {.lex_state = 104}, + [3680] = {.lex_state = 104}, + [3681] = {.lex_state = 104}, + [3682] = {.lex_state = 104}, + [3683] = {.lex_state = 104}, + [3684] = {.lex_state = 104}, + [3685] = {.lex_state = 104}, + [3686] = {.lex_state = 104}, + [3687] = {.lex_state = 104}, + [3688] = {.lex_state = 40}, + [3689] = {.lex_state = 40}, + [3690] = {.lex_state = 40}, + [3691] = {.lex_state = 934}, + [3692] = {.lex_state = 934}, + [3693] = {.lex_state = 40}, + [3694] = {.lex_state = 135}, + [3695] = {.lex_state = 40}, + [3696] = {.lex_state = 40}, + [3697] = {.lex_state = 517}, + [3698] = {.lex_state = 122}, + [3699] = {.lex_state = 66}, + [3700] = {.lex_state = 66}, + [3701] = {.lex_state = 66}, + [3702] = {.lex_state = 66}, + [3703] = {.lex_state = 66}, + [3704] = {.lex_state = 66}, + [3705] = {.lex_state = 122}, + [3706] = {.lex_state = 66}, + [3707] = {.lex_state = 122}, + [3708] = {.lex_state = 66}, + [3709] = {.lex_state = 66}, + [3710] = {.lex_state = 66}, + [3711] = {.lex_state = 66}, + [3712] = {.lex_state = 66}, + [3713] = {.lex_state = 66}, + [3714] = {.lex_state = 66}, + [3715] = {.lex_state = 122}, + [3716] = {.lex_state = 497}, + [3717] = {.lex_state = 66}, + [3718] = {.lex_state = 66}, + [3719] = {.lex_state = 66}, + [3720] = {.lex_state = 66}, + [3721] = {.lex_state = 66}, + [3722] = {.lex_state = 66}, + [3723] = {.lex_state = 66}, + [3724] = {.lex_state = 66}, + [3725] = {.lex_state = 966}, + [3726] = {.lex_state = 936}, + [3727] = {.lex_state = 66}, + [3728] = {.lex_state = 122}, + [3729] = {.lex_state = 966}, + [3730] = {.lex_state = 504}, + [3731] = {.lex_state = 122}, + [3732] = {.lex_state = 66}, + [3733] = {.lex_state = 122}, + [3734] = {.lex_state = 122}, + [3735] = {.lex_state = 122}, + [3736] = {.lex_state = 122}, + [3737] = {.lex_state = 936}, + [3738] = {.lex_state = 66}, + [3739] = {.lex_state = 66}, + [3740] = {.lex_state = 106}, + [3741] = {.lex_state = 106}, + [3742] = {.lex_state = 106}, + [3743] = {.lex_state = 106}, + [3744] = {.lex_state = 966}, + [3745] = {.lex_state = 101}, + [3746] = {.lex_state = 101}, + [3747] = {.lex_state = 101}, + [3748] = {.lex_state = 966}, + [3749] = {.lex_state = 101}, + [3750] = {.lex_state = 101}, + [3751] = {.lex_state = 101}, + [3752] = {.lex_state = 101}, + [3753] = {.lex_state = 966}, + [3754] = {.lex_state = 101}, + [3755] = {.lex_state = 106}, + [3756] = {.lex_state = 101}, + [3757] = {.lex_state = 106}, + [3758] = {.lex_state = 106}, + [3759] = {.lex_state = 106}, + [3760] = {.lex_state = 966}, + [3761] = {.lex_state = 101}, + [3762] = {.lex_state = 106}, + [3763] = {.lex_state = 106}, + [3764] = {.lex_state = 106}, + [3765] = {.lex_state = 106}, + [3766] = {.lex_state = 966}, + [3767] = {.lex_state = 101}, + [3768] = {.lex_state = 101}, + [3769] = {.lex_state = 66}, + [3770] = {.lex_state = 66}, + [3771] = {.lex_state = 966}, + [3772] = {.lex_state = 966}, + [3773] = {.lex_state = 966}, + [3774] = {.lex_state = 101}, + [3775] = {.lex_state = 966}, + [3776] = {.lex_state = 101}, + [3777] = {.lex_state = 934}, + [3778] = {.lex_state = 66}, + [3779] = {.lex_state = 66}, + [3780] = {.lex_state = 66}, + [3781] = {.lex_state = 101}, + [3782] = {.lex_state = 66}, + [3783] = {.lex_state = 66}, + [3784] = {.lex_state = 101}, + [3785] = {.lex_state = 101}, + [3786] = {.lex_state = 101}, + [3787] = {.lex_state = 966}, + [3788] = {.lex_state = 101}, + [3789] = {.lex_state = 66}, + [3790] = {.lex_state = 66}, + [3791] = {.lex_state = 66}, + [3792] = {.lex_state = 966}, + [3793] = {.lex_state = 66}, + [3794] = {.lex_state = 66}, + [3795] = {.lex_state = 995}, + [3796] = {.lex_state = 934}, + [3797] = {.lex_state = 992}, + [3798] = {.lex_state = 995}, + [3799] = {.lex_state = 992}, + [3800] = {.lex_state = 992}, + [3801] = {.lex_state = 994}, + [3802] = {.lex_state = 1006}, + [3803] = {.lex_state = 992}, + [3804] = {.lex_state = 991}, + [3805] = {.lex_state = 1000}, + [3806] = {.lex_state = 1006}, + [3807] = {.lex_state = 991}, + [3808] = {.lex_state = 991}, + [3809] = {.lex_state = 1000}, + [3810] = {.lex_state = 1010}, + [3811] = {.lex_state = 1010}, + [3812] = {.lex_state = 991}, + [3813] = {.lex_state = 934}, + [3814] = {.lex_state = 934}, + [3815] = {.lex_state = 934}, + [3816] = {.lex_state = 934}, + [3817] = {.lex_state = 991}, + [3818] = {.lex_state = 994}, + [3819] = {.lex_state = 934}, + [3820] = {.lex_state = 934}, + [3821] = {.lex_state = 934}, + [3822] = {.lex_state = 934}, + [3823] = {.lex_state = 934}, + [3824] = {.lex_state = 934}, + [3825] = {.lex_state = 934}, + [3826] = {.lex_state = 934}, + [3827] = {.lex_state = 934}, + [3828] = {.lex_state = 934}, + [3829] = {.lex_state = 934}, + [3830] = {.lex_state = 934}, + [3831] = {.lex_state = 934}, + [3832] = {.lex_state = 934}, + [3833] = {.lex_state = 934}, + [3834] = {.lex_state = 993}, + [3835] = {.lex_state = 934}, + [3836] = {.lex_state = 993}, + [3837] = {.lex_state = 1014}, + [3838] = {.lex_state = 994}, + [3839] = {.lex_state = 934}, + [3840] = {.lex_state = 934}, + [3841] = {.lex_state = 994}, + [3842] = {.lex_state = 994}, + [3843] = {.lex_state = 993}, + [3844] = {.lex_state = 994}, + [3845] = {.lex_state = 1014}, + [3846] = {.lex_state = 1014}, + [3847] = {.lex_state = 994}, + [3848] = {.lex_state = 1004}, + [3849] = {.lex_state = 1014}, + [3850] = {.lex_state = 1002}, + [3851] = {.lex_state = 1010}, + [3852] = {.lex_state = 993}, + [3853] = {.lex_state = 1014}, + [3854] = {.lex_state = 994}, + [3855] = {.lex_state = 1018}, + [3856] = {.lex_state = 1010}, + [3857] = {.lex_state = 1008}, + [3858] = {.lex_state = 936}, + [3859] = {.lex_state = 936}, + [3860] = {.lex_state = 1014}, + [3861] = {.lex_state = 934}, + [3862] = {.lex_state = 53}, + [3863] = {.lex_state = 1014}, + [3864] = {.lex_state = 934}, + [3865] = {.lex_state = 1020}, + [3866] = {.lex_state = 994}, + [3867] = {.lex_state = 1014}, + [3868] = {.lex_state = 936}, + [3869] = {.lex_state = 1016}, + [3870] = {.lex_state = 934}, + [3871] = {.lex_state = 934}, + [3872] = {.lex_state = 994}, + [3873] = {.lex_state = 1014}, + [3874] = {.lex_state = 1012}, + [3875] = {.lex_state = 936}, + [3876] = {.lex_state = 1008}, + [3877] = {.lex_state = 1002}, + [3878] = {.lex_state = 934}, + [3879] = {.lex_state = 934}, + [3880] = {.lex_state = 934}, + [3881] = {.lex_state = 934}, + [3882] = {.lex_state = 934}, + [3883] = {.lex_state = 994}, + [3884] = {.lex_state = 934}, + [3885] = {.lex_state = 934}, + [3886] = {.lex_state = 934}, + [3887] = {.lex_state = 934}, + [3888] = {.lex_state = 1018}, + [3889] = {.lex_state = 934}, + [3890] = {.lex_state = 934}, + [3891] = {.lex_state = 934}, + [3892] = {.lex_state = 1012}, + [3893] = {.lex_state = 934}, + [3894] = {.lex_state = 934}, + [3895] = {.lex_state = 934}, + [3896] = {.lex_state = 934}, + [3897] = {.lex_state = 934}, + [3898] = {.lex_state = 1004}, + [3899] = {.lex_state = 934}, + [3900] = {.lex_state = 1014}, + [3901] = {.lex_state = 934}, + [3902] = {.lex_state = 936}, + [3903] = {.lex_state = 994}, + [3904] = {.lex_state = 1020}, + [3905] = {.lex_state = 1016}, + [3906] = {.lex_state = 1020}, + [3907] = {.lex_state = 56}, + [3908] = {.lex_state = 1012}, + [3909] = {.lex_state = 1022}, + [3910] = {.lex_state = 1002}, + [3911] = {.lex_state = 934}, + [3912] = {.lex_state = 1019}, + [3913] = {.lex_state = 52}, + [3914] = {.lex_state = 934}, + [3915] = {.lex_state = 1022}, + [3916] = {.lex_state = 936}, + [3917] = {.lex_state = 936}, + [3918] = {.lex_state = 1016}, + [3919] = {.lex_state = 1005}, + [3920] = {.lex_state = 936}, + [3921] = {.lex_state = 1002}, + [3922] = {.lex_state = 1022}, + [3923] = {.lex_state = 53}, + [3924] = {.lex_state = 1022}, + [3925] = {.lex_state = 1012}, + [3926] = {.lex_state = 1002}, + [3927] = {.lex_state = 934}, + [3928] = {.lex_state = 1016}, + [3929] = {.lex_state = 1022}, + [3930] = {.lex_state = 1022}, + [3931] = {.lex_state = 1020}, + [3932] = {.lex_state = 54}, + [3933] = {.lex_state = 1016}, + [3934] = {.lex_state = 52}, + [3935] = {.lex_state = 1016}, + [3936] = {.lex_state = 936}, + [3937] = {.lex_state = 1002}, + [3938] = {.lex_state = 934}, + [3939] = {.lex_state = 934}, + [3940] = {.lex_state = 934}, + [3941] = {.lex_state = 57}, + [3942] = {.lex_state = 1026}, + [3943] = {.lex_state = 1019}, + [3944] = {.lex_state = 934}, + [3945] = {.lex_state = 934}, + [3946] = {.lex_state = 934}, + [3947] = {.lex_state = 1022}, + [3948] = {.lex_state = 1002}, + [3949] = {.lex_state = 936}, + [3950] = {.lex_state = 936}, + [3951] = {.lex_state = 936}, + [3952] = {.lex_state = 934}, + [3953] = {.lex_state = 934}, + [3954] = {.lex_state = 934}, + [3955] = {.lex_state = 934}, + [3956] = {.lex_state = 934}, + [3957] = {.lex_state = 66}, + [3958] = {.lex_state = 1024}, + [3959] = {.lex_state = 934}, + [3960] = {.lex_state = 1022}, + [3961] = {.lex_state = 1016}, + [3962] = {.lex_state = 936}, + [3963] = {.lex_state = 934}, + [3964] = {.lex_state = 1021}, + [3965] = {.lex_state = 934}, + [3966] = {.lex_state = 934}, + [3967] = {.lex_state = 934}, + [3968] = {.lex_state = 934}, + [3969] = {.lex_state = 53}, + [3970] = {.lex_state = 934}, + [3971] = {.lex_state = 934}, + [3972] = {.lex_state = 1016}, + [3973] = {.lex_state = 1016}, + [3974] = {.lex_state = 934}, + [3975] = {.lex_state = 934}, + [3976] = {.lex_state = 934}, + [3977] = {.lex_state = 934}, + [3978] = {.lex_state = 934}, + [3979] = {.lex_state = 934}, + [3980] = {.lex_state = 934}, + [3981] = {.lex_state = 53}, + [3982] = {.lex_state = 53}, + [3983] = {.lex_state = 934}, + [3984] = {.lex_state = 53}, + [3985] = {.lex_state = 934}, + [3986] = {.lex_state = 934}, + [3987] = {.lex_state = 1016}, + [3988] = {.lex_state = 934}, + [3989] = {.lex_state = 934}, + [3990] = {.lex_state = 1016}, + [3991] = {.lex_state = 934}, + [3992] = {.lex_state = 1022}, + [3993] = {.lex_state = 1022}, + [3994] = {.lex_state = 1002}, + [3995] = {.lex_state = 1021}, + [3996] = {.lex_state = 1002}, + [3997] = {.lex_state = 1005}, + [3998] = {.lex_state = 1002}, + [3999] = {.lex_state = 57}, + [4000] = {.lex_state = 1022}, + [4001] = {.lex_state = 934}, + [4002] = {.lex_state = 1022}, + [4003] = {.lex_state = 58}, + [4004] = {.lex_state = 934}, + [4005] = {.lex_state = 936}, + [4006] = {.lex_state = 934}, + [4007] = {.lex_state = 59}, + [4008] = {.lex_state = 1026}, + [4009] = {.lex_state = 58}, + [4010] = {.lex_state = 1023}, + [4011] = {.lex_state = 44}, + [4012] = {.lex_state = 66}, + [4013] = {.lex_state = 1023}, + [4014] = {.lex_state = 936}, + [4015] = {.lex_state = 1016}, + [4016] = {.lex_state = 58}, + [4017] = {.lex_state = 934}, + [4018] = {.lex_state = 1023}, + [4019] = {.lex_state = 936}, + [4020] = {.lex_state = 1023}, + [4021] = {.lex_state = 997}, + [4022] = {.lex_state = 936}, + [4023] = {.lex_state = 1002}, + [4024] = {.lex_state = 1028}, + [4025] = {.lex_state = 55}, + [4026] = {.lex_state = 1002}, + [4027] = {.lex_state = 58}, + [4028] = {.lex_state = 1024}, + [4029] = {.lex_state = 44}, + [4030] = {.lex_state = 44}, + [4031] = {.lex_state = 936}, + [4032] = {.lex_state = 997}, + [4033] = {.lex_state = 1021}, + [4034] = {.lex_state = 1023}, + [4035] = {.lex_state = 58}, + [4036] = {.lex_state = 934}, + [4037] = {.lex_state = 997}, + [4038] = {.lex_state = 1028}, + [4039] = {.lex_state = 44}, + [4040] = {.lex_state = 1023}, + [4041] = {.lex_state = 936}, + [4042] = {.lex_state = 997}, + [4043] = {.lex_state = 936}, + [4044] = {.lex_state = 1021}, + [4045] = {.lex_state = 997}, + [4046] = {.lex_state = 1025}, + [4047] = {.lex_state = 1025}, + [4048] = {.lex_state = 1025}, + [4049] = {.lex_state = 1025}, + [4050] = {.lex_state = 1023}, + [4051] = {.lex_state = 997}, + [4052] = {.lex_state = 997}, + [4053] = {.lex_state = 997}, + [4054] = {.lex_state = 1025}, + [4055] = {.lex_state = 1028}, + [4056] = {.lex_state = 1023}, + [4057] = {.lex_state = 1025}, + [4058] = {.lex_state = 1023}, + [4059] = {.lex_state = 1002}, + [4060] = {.lex_state = 934}, + [4061] = {.lex_state = 934}, + [4062] = {.lex_state = 1002}, + [4063] = {.lex_state = 1023}, + [4064] = {.lex_state = 934}, + [4065] = {.lex_state = 934}, + [4066] = {.lex_state = 60}, + [4067] = {.lex_state = 1057}, + [4068] = {.lex_state = 936}, + [4069] = {.lex_state = 60}, + [4070] = {.lex_state = 1023}, + [4071] = {.lex_state = 1025}, + [4072] = {.lex_state = 1025}, + [4073] = {.lex_state = 997}, + [4074] = {.lex_state = 1030}, + [4075] = {.lex_state = 934}, + [4076] = {.lex_state = 997}, + [4077] = {.lex_state = 1030}, + [4078] = {.lex_state = 44}, + [4079] = {.lex_state = 44}, + [4080] = {.lex_state = 934}, + [4081] = {.lex_state = 934}, + [4082] = {.lex_state = 1028}, + [4083] = {.lex_state = 1030}, + [4084] = {.lex_state = 1057}, + [4085] = {.lex_state = 1025}, + [4086] = {.lex_state = 1025}, + [4087] = {.lex_state = 1023}, + [4088] = {.lex_state = 934}, + [4089] = {.lex_state = 936}, + [4090] = {.lex_state = 934}, + [4091] = {.lex_state = 936}, + [4092] = {.lex_state = 936}, + [4093] = {.lex_state = 1030}, + [4094] = {.lex_state = 934}, + [4095] = {.lex_state = 934}, + [4096] = {.lex_state = 1002}, + [4097] = {.lex_state = 934}, + [4098] = {.lex_state = 1057}, + [4099] = {.lex_state = 1057}, + [4100] = {.lex_state = 1057}, + [4101] = {.lex_state = 934}, + [4102] = {.lex_state = 934}, + [4103] = {.lex_state = 934}, + [4104] = {.lex_state = 934}, + [4105] = {.lex_state = 934}, + [4106] = {.lex_state = 1025}, + [4107] = {.lex_state = 934}, + [4108] = {.lex_state = 934}, + [4109] = {.lex_state = 1030}, + [4110] = {.lex_state = 934}, + [4111] = {.lex_state = 934}, + [4112] = {.lex_state = 934}, + [4113] = {.lex_state = 934}, + [4114] = {.lex_state = 934}, + [4115] = {.lex_state = 934}, + [4116] = {.lex_state = 934}, + [4117] = {.lex_state = 934}, + [4118] = {.lex_state = 934}, + [4119] = {.lex_state = 936}, + [4120] = {.lex_state = 934}, + [4121] = {.lex_state = 934}, + [4122] = {.lex_state = 934}, + [4123] = {.lex_state = 934}, + [4124] = {.lex_state = 1025}, + [4125] = {.lex_state = 934}, + [4126] = {.lex_state = 934}, + [4127] = {.lex_state = 934}, + [4128] = {.lex_state = 934}, + [4129] = {.lex_state = 1025}, + [4130] = {.lex_state = 934}, + [4131] = {.lex_state = 1025}, + [4132] = {.lex_state = 1027}, + [4133] = {.lex_state = 934}, + [4134] = {.lex_state = 1030}, + [4135] = {.lex_state = 1030}, + [4136] = {.lex_state = 1025}, + [4137] = {.lex_state = 936}, + [4138] = {.lex_state = 936}, + [4139] = {.lex_state = 936}, + [4140] = {.lex_state = 936}, + [4141] = {.lex_state = 1030}, + [4142] = {.lex_state = 1025}, + [4143] = {.lex_state = 1025}, + [4144] = {.lex_state = 1030}, + [4145] = {.lex_state = 1025}, + [4146] = {.lex_state = 1025}, + [4147] = {.lex_state = 1025}, + [4148] = {.lex_state = 1025}, + [4149] = {.lex_state = 1025}, + [4150] = {.lex_state = 1025}, + [4151] = {.lex_state = 1025}, + [4152] = {.lex_state = 1025}, + [4153] = {.lex_state = 1025}, + [4154] = {.lex_state = 1025}, + [4155] = {.lex_state = 934}, + [4156] = {.lex_state = 934}, + [4157] = {.lex_state = 1025}, + [4158] = {.lex_state = 1025}, + [4159] = {.lex_state = 934}, + [4160] = {.lex_state = 934}, + [4161] = {.lex_state = 1025}, + [4162] = {.lex_state = 1025}, + [4163] = {.lex_state = 934}, + [4164] = {.lex_state = 1002}, + [4165] = {.lex_state = 1025}, + [4166] = {.lex_state = 1030}, + [4167] = {.lex_state = 1025}, + [4168] = {.lex_state = 1002}, + [4169] = {.lex_state = 1057}, + [4170] = {.lex_state = 1030}, + [4171] = {.lex_state = 1030}, + [4172] = {.lex_state = 1025}, + [4173] = {.lex_state = 934}, + [4174] = {.lex_state = 1002}, + [4175] = {.lex_state = 1025}, + [4176] = {.lex_state = 1025}, + [4177] = {.lex_state = 1030}, + [4178] = {.lex_state = 1025}, + [4179] = {.lex_state = 44}, + [4180] = {.lex_state = 44}, + [4181] = {.lex_state = 44}, + [4182] = {.lex_state = 44}, + [4183] = {.lex_state = 44}, + [4184] = {.lex_state = 1030}, + [4185] = {.lex_state = 1025}, + [4186] = {.lex_state = 1030}, + [4187] = {.lex_state = 1057}, + [4188] = {.lex_state = 1030}, + [4189] = {.lex_state = 1025}, + [4190] = {.lex_state = 1057}, + [4191] = {.lex_state = 934}, + [4192] = {.lex_state = 1030}, + [4193] = {.lex_state = 1057}, + [4194] = {.lex_state = 1025}, + [4195] = {.lex_state = 1002}, + [4196] = {.lex_state = 61}, + [4197] = {.lex_state = 934}, + [4198] = {.lex_state = 1025}, + [4199] = {.lex_state = 1025}, + [4200] = {.lex_state = 44}, + [4201] = {.lex_state = 1057}, + [4202] = {.lex_state = 1025}, + [4203] = {.lex_state = 934}, + [4204] = {.lex_state = 1002}, + [4205] = {.lex_state = 44}, + [4206] = {.lex_state = 44}, + [4207] = {.lex_state = 1025}, + [4208] = {.lex_state = 1025}, + [4209] = {.lex_state = 934}, + [4210] = {.lex_state = 1025}, + [4211] = {.lex_state = 1002}, + [4212] = {.lex_state = 1027}, + [4213] = {.lex_state = 1025}, + [4214] = {.lex_state = 1025}, + [4215] = {.lex_state = 1025}, + [4216] = {.lex_state = 1025}, + [4217] = {.lex_state = 1030}, + [4218] = {.lex_state = 61}, + [4219] = {.lex_state = 1025}, + [4220] = {.lex_state = 1025}, + [4221] = {.lex_state = 1025}, + [4222] = {.lex_state = 1025}, + [4223] = {.lex_state = 1002}, + [4224] = {.lex_state = 44}, + [4225] = {.lex_state = 1029}, + [4226] = {.lex_state = 1025}, + [4227] = {.lex_state = 61}, + [4228] = {.lex_state = 1002}, + [4229] = {.lex_state = 1029}, + [4230] = {.lex_state = 1002}, + [4231] = {.lex_state = 1002}, + [4232] = {.lex_state = 1025}, + [4233] = {.lex_state = 1025}, + [4234] = {.lex_state = 1025}, + [4235] = {.lex_state = 1025}, + [4236] = {.lex_state = 1030}, + [4237] = {.lex_state = 1025}, + [4238] = {.lex_state = 1025}, + [4239] = {.lex_state = 61}, + [4240] = {.lex_state = 934}, + [4241] = {.lex_state = 934}, + [4242] = {.lex_state = 44}, + [4243] = {.lex_state = 61}, + [4244] = {.lex_state = 1025}, + [4245] = {.lex_state = 934}, + [4246] = {.lex_state = 934}, + [4247] = {.lex_state = 1025}, + [4248] = {.lex_state = 1002}, + [4249] = {.lex_state = 1002}, + [4250] = {.lex_state = 1025}, + [4251] = {.lex_state = 61}, + [4252] = {.lex_state = 1002}, + [4253] = {.lex_state = 1002}, + [4254] = {.lex_state = 68}, + [4255] = {.lex_state = 958}, + [4256] = {.lex_state = 994}, + [4257] = {.lex_state = 958}, + [4258] = {.lex_state = 68}, + [4259] = {.lex_state = 958}, + [4260] = {.lex_state = 958}, + [4261] = {.lex_state = 958}, + [4262] = {.lex_state = 68}, + [4263] = {.lex_state = 958}, + [4264] = {.lex_state = 958}, + [4265] = {.lex_state = 958}, + [4266] = {.lex_state = 958}, + [4267] = {.lex_state = 958}, + [4268] = {.lex_state = 68}, + [4269] = {.lex_state = 958}, + [4270] = {.lex_state = 958}, + [4271] = {.lex_state = 994}, + [4272] = {.lex_state = 958}, + [4273] = {.lex_state = 958}, + [4274] = {.lex_state = 958}, + [4275] = {.lex_state = 958}, + [4276] = {.lex_state = 1002}, + [4277] = {.lex_state = 1002}, + [4278] = {.lex_state = 958}, + [4279] = {.lex_state = 1050}, + [4280] = {.lex_state = 1050}, + [4281] = {.lex_state = 1029}, + [4282] = {.lex_state = 958}, + [4283] = {.lex_state = 958}, + [4284] = {.lex_state = 958}, + [4285] = {.lex_state = 958}, + [4286] = {.lex_state = 958}, + [4287] = {.lex_state = 958}, + [4288] = {.lex_state = 958}, + [4289] = {.lex_state = 958}, + [4290] = {.lex_state = 994}, + [4291] = {.lex_state = 68}, + [4292] = {.lex_state = 1031}, + [4293] = {.lex_state = 958}, + [4294] = {.lex_state = 1030}, + [4295] = {.lex_state = 958}, + [4296] = {.lex_state = 1025}, + [4297] = {.lex_state = 958}, + [4298] = {.lex_state = 958}, + [4299] = {.lex_state = 958}, + [4300] = {.lex_state = 958}, + [4301] = {.lex_state = 958}, + [4302] = {.lex_state = 958}, + [4303] = {.lex_state = 958}, + [4304] = {.lex_state = 958}, + [4305] = {.lex_state = 958}, + [4306] = {.lex_state = 65}, + [4307] = {.lex_state = 958}, + [4308] = {.lex_state = 958}, + [4309] = {.lex_state = 958}, + [4310] = {.lex_state = 958}, + [4311] = {.lex_state = 958}, + [4312] = {.lex_state = 958}, + [4313] = {.lex_state = 1031}, + [4314] = {.lex_state = 958}, + [4315] = {.lex_state = 958}, + [4316] = {.lex_state = 1002}, + [4317] = {.lex_state = 958}, + [4318] = {.lex_state = 958}, + [4319] = {.lex_state = 958}, + [4320] = {.lex_state = 958}, + [4321] = {.lex_state = 1050}, + [4322] = {.lex_state = 958}, + [4323] = {.lex_state = 68}, + [4324] = {.lex_state = 1025}, + [4325] = {.lex_state = 994}, + [4326] = {.lex_state = 1002}, + [4327] = {.lex_state = 934}, + [4328] = {.lex_state = 68}, + [4329] = {.lex_state = 958}, + [4330] = {.lex_state = 958}, + [4331] = {.lex_state = 958}, + [4332] = {.lex_state = 958}, + [4333] = {.lex_state = 1002}, + [4334] = {.lex_state = 958}, + [4335] = {.lex_state = 958}, + [4336] = {.lex_state = 958}, + [4337] = {.lex_state = 958}, + [4338] = {.lex_state = 958}, + [4339] = {.lex_state = 958}, + [4340] = {.lex_state = 958}, + [4341] = {.lex_state = 958}, + [4342] = {.lex_state = 958}, + [4343] = {.lex_state = 958}, + [4344] = {.lex_state = 958}, + [4345] = {.lex_state = 958}, + [4346] = {.lex_state = 62}, + [4347] = {.lex_state = 68}, + [4348] = {.lex_state = 1025}, + [4349] = {.lex_state = 1050}, + [4350] = {.lex_state = 958}, + [4351] = {.lex_state = 958}, + [4352] = {.lex_state = 958}, + [4353] = {.lex_state = 958}, + [4354] = {.lex_state = 958}, + [4355] = {.lex_state = 958}, + [4356] = {.lex_state = 958}, + [4357] = {.lex_state = 958}, + [4358] = {.lex_state = 68}, + [4359] = {.lex_state = 958}, + [4360] = {.lex_state = 958}, + [4361] = {.lex_state = 68}, + [4362] = {.lex_state = 68}, + [4363] = {.lex_state = 958}, + [4364] = {.lex_state = 958}, + [4365] = {.lex_state = 68}, + [4366] = {.lex_state = 958}, + [4367] = {.lex_state = 958}, + [4368] = {.lex_state = 958}, + [4369] = {.lex_state = 958}, + [4370] = {.lex_state = 958}, + [4371] = {.lex_state = 958}, + [4372] = {.lex_state = 68}, + [4373] = {.lex_state = 958}, + [4374] = {.lex_state = 958}, + [4375] = {.lex_state = 958}, + [4376] = {.lex_state = 958}, + [4377] = {.lex_state = 1059}, + [4378] = {.lex_state = 1002}, + [4379] = {.lex_state = 1051}, + [4380] = {.lex_state = 1059}, + [4381] = {.lex_state = 44}, + [4382] = {.lex_state = 1059}, + [4383] = {.lex_state = 44}, [4384] = {.lex_state = 997}, - [4385] = {.lex_state = 103}, - [4386] = {.lex_state = 995}, - [4387] = {.lex_state = 995}, - [4388] = {.lex_state = 1085}, - [4389] = {.lex_state = 995}, - [4390] = {.lex_state = 1085}, - [4391] = {.lex_state = 1085}, - [4392] = {.lex_state = 1057}, - [4393] = {.lex_state = 995}, - [4394] = {.lex_state = 995}, - [4395] = {.lex_state = 54}, - [4396] = {.lex_state = 1083}, - [4397] = {.lex_state = 995}, - [4398] = {.lex_state = 995}, - [4399] = {.lex_state = 995}, - [4400] = {.lex_state = 995}, - [4401] = {.lex_state = 1085}, - [4402] = {.lex_state = 995}, - [4403] = {.lex_state = 1085}, - [4404] = {.lex_state = 97}, - [4405] = {.lex_state = 997}, - [4406] = {.lex_state = 995}, - [4407] = {.lex_state = 1057}, - [4408] = {.lex_state = 97}, - [4409] = {.lex_state = 995}, - [4410] = {.lex_state = 1083}, - [4411] = {.lex_state = 97}, - [4412] = {.lex_state = 1085}, - [4413] = {.lex_state = 1057}, - [4414] = {.lex_state = 1085}, - [4415] = {.lex_state = 97}, - [4416] = {.lex_state = 1087}, - [4417] = {.lex_state = 995}, - [4418] = {.lex_state = 997}, - [4419] = {.lex_state = 997}, - [4420] = {.lex_state = 997}, - [4421] = {.lex_state = 997}, - [4422] = {.lex_state = 995}, - [4423] = {.lex_state = 995}, - [4424] = {.lex_state = 995}, - [4425] = {.lex_state = 1085}, - [4426] = {.lex_state = 1085}, - [4427] = {.lex_state = 102}, - [4428] = {.lex_state = 1090}, - [4429] = {.lex_state = 92}, - [4430] = {.lex_state = 1083}, - [4431] = {.lex_state = 997}, - [4432] = {.lex_state = 1085}, - [4433] = {.lex_state = 1085}, - [4434] = {.lex_state = 1085}, - [4435] = {.lex_state = 995}, - [4436] = {.lex_state = 1090}, - [4437] = {.lex_state = 1085}, - [4438] = {.lex_state = 1085}, - [4439] = {.lex_state = 995}, - [4440] = {.lex_state = 1085}, - [4441] = {.lex_state = 1068}, - [4442] = {.lex_state = 1090}, - [4443] = {.lex_state = 1087}, - [4444] = {.lex_state = 1090}, - [4445] = {.lex_state = 1085}, - [4446] = {.lex_state = 94}, - [4447] = {.lex_state = 1090}, - [4448] = {.lex_state = 1090}, - [4449] = {.lex_state = 1090}, - [4450] = {.lex_state = 1117}, - [4451] = {.lex_state = 1068}, - [4452] = {.lex_state = 1090}, - [4453] = {.lex_state = 1085}, - [4454] = {.lex_state = 995}, - [4455] = {.lex_state = 54}, - [4456] = {.lex_state = 995}, - [4457] = {.lex_state = 54}, - [4458] = {.lex_state = 1085}, - [4459] = {.lex_state = 1085}, - [4460] = {.lex_state = 1068}, - [4461] = {.lex_state = 1085}, - [4462] = {.lex_state = 1085}, - [4463] = {.lex_state = 1068}, - [4464] = {.lex_state = 1085}, - [4465] = {.lex_state = 1068}, - [4466] = {.lex_state = 1085}, - [4467] = {.lex_state = 103}, - [4468] = {.lex_state = 1085}, - [4469] = {.lex_state = 1085}, - [4470] = {.lex_state = 99}, - [4471] = {.lex_state = 1085}, - [4472] = {.lex_state = 99}, - [4473] = {.lex_state = 1068}, - [4474] = {.lex_state = 1068}, - [4475] = {.lex_state = 103}, - [4476] = {.lex_state = 1085}, - [4477] = {.lex_state = 104}, - [4478] = {.lex_state = 1085}, - [4479] = {.lex_state = 103}, - [4480] = {.lex_state = 1085}, - [4481] = {.lex_state = 995}, - [4482] = {.lex_state = 995}, - [4483] = {.lex_state = 995}, - [4484] = {.lex_state = 1085}, - [4485] = {.lex_state = 1117}, - [4486] = {.lex_state = 103}, - [4487] = {.lex_state = 995}, - [4488] = {.lex_state = 1085}, - [4489] = {.lex_state = 1085}, - [4490] = {.lex_state = 995}, - [4491] = {.lex_state = 1085}, - [4492] = {.lex_state = 1085}, - [4493] = {.lex_state = 1085}, - [4494] = {.lex_state = 995}, - [4495] = {.lex_state = 1085}, - [4496] = {.lex_state = 1085}, - [4497] = {.lex_state = 1085}, - [4498] = {.lex_state = 1117}, - [4499] = {.lex_state = 1117}, - [4500] = {.lex_state = 1085}, - [4501] = {.lex_state = 1090}, - [4502] = {.lex_state = 1085}, - [4503] = {.lex_state = 1085}, - [4504] = {.lex_state = 54}, - [4505] = {.lex_state = 1089}, - [4506] = {.lex_state = 1085}, - [4507] = {.lex_state = 1062}, - [4508] = {.lex_state = 1085}, - [4509] = {.lex_state = 54}, - [4510] = {.lex_state = 54}, - [4511] = {.lex_state = 1085}, - [4512] = {.lex_state = 1062}, - [4513] = {.lex_state = 1062}, - [4514] = {.lex_state = 995}, - [4515] = {.lex_state = 1117}, - [4516] = {.lex_state = 1090}, - [4517] = {.lex_state = 1068}, - [4518] = {.lex_state = 1089}, - [4519] = {.lex_state = 1090}, - [4520] = {.lex_state = 1085}, - [4521] = {.lex_state = 1068}, - [4522] = {.lex_state = 1085}, - [4523] = {.lex_state = 1068}, - [4524] = {.lex_state = 1090}, - [4525] = {.lex_state = 1018}, - [4526] = {.lex_state = 1018}, - [4527] = {.lex_state = 1018}, - [4528] = {.lex_state = 1018}, - [4529] = {.lex_state = 1085}, - [4530] = {.lex_state = 1018}, - [4531] = {.lex_state = 1018}, - [4532] = {.lex_state = 1018}, - [4533] = {.lex_state = 1018}, - [4534] = {.lex_state = 1018}, - [4535] = {.lex_state = 1018}, - [4536] = {.lex_state = 1018}, - [4537] = {.lex_state = 1018}, - [4538] = {.lex_state = 1018}, - [4539] = {.lex_state = 1018}, - [4540] = {.lex_state = 1018}, - [4541] = {.lex_state = 1018}, - [4542] = {.lex_state = 1018}, - [4543] = {.lex_state = 1018}, - [4544] = {.lex_state = 1018}, - [4545] = {.lex_state = 1018}, - [4546] = {.lex_state = 1018}, - [4547] = {.lex_state = 1018}, - [4548] = {.lex_state = 1018}, - [4549] = {.lex_state = 54}, - [4550] = {.lex_state = 1018}, - [4551] = {.lex_state = 1018}, - [4552] = {.lex_state = 1018}, - [4553] = {.lex_state = 1018}, - [4554] = {.lex_state = 54}, - [4555] = {.lex_state = 1018}, - [4556] = {.lex_state = 54}, - [4557] = {.lex_state = 1052}, - [4558] = {.lex_state = 1018}, - [4559] = {.lex_state = 100}, - [4560] = {.lex_state = 995}, - [4561] = {.lex_state = 1018}, - [4562] = {.lex_state = 1111}, - [4563] = {.lex_state = 1018}, - [4564] = {.lex_state = 1018}, - [4565] = {.lex_state = 1018}, - [4566] = {.lex_state = 105}, - [4567] = {.lex_state = 100}, - [4568] = {.lex_state = 1018}, - [4569] = {.lex_state = 1018}, - [4570] = {.lex_state = 1018}, - [4571] = {.lex_state = 100}, - [4572] = {.lex_state = 1018}, - [4573] = {.lex_state = 1018}, - [4574] = {.lex_state = 100}, - [4575] = {.lex_state = 100}, - [4576] = {.lex_state = 1018}, - [4577] = {.lex_state = 1018}, - [4578] = {.lex_state = 1068}, - [4579] = {.lex_state = 1018}, - [4580] = {.lex_state = 995}, - [4581] = {.lex_state = 995}, - [4582] = {.lex_state = 1090}, - [4583] = {.lex_state = 1068}, - [4584] = {.lex_state = 1018}, - [4585] = {.lex_state = 1018}, - [4586] = {.lex_state = 1018}, - [4587] = {.lex_state = 1018}, - [4588] = {.lex_state = 1018}, - [4589] = {.lex_state = 1018}, - [4590] = {.lex_state = 1018}, - [4591] = {.lex_state = 1018}, - [4592] = {.lex_state = 1018}, - [4593] = {.lex_state = 1068}, - [4594] = {.lex_state = 1018}, - [4595] = {.lex_state = 105}, - [4596] = {.lex_state = 1018}, - [4597] = {.lex_state = 1018}, - [4598] = {.lex_state = 1018}, - [4599] = {.lex_state = 1119}, - [4600] = {.lex_state = 1018}, - [4601] = {.lex_state = 1018}, - [4602] = {.lex_state = 1018}, - [4603] = {.lex_state = 1018}, - [4604] = {.lex_state = 1018}, - [4605] = {.lex_state = 1018}, - [4606] = {.lex_state = 1018}, - [4607] = {.lex_state = 1018}, - [4608] = {.lex_state = 1018}, - [4609] = {.lex_state = 1018}, - [4610] = {.lex_state = 1018}, - [4611] = {.lex_state = 1018}, - [4612] = {.lex_state = 1018}, - [4613] = {.lex_state = 1018}, - [4614] = {.lex_state = 1091}, - [4615] = {.lex_state = 1018}, - [4616] = {.lex_state = 1018}, - [4617] = {.lex_state = 1018}, - [4618] = {.lex_state = 1018}, - [4619] = {.lex_state = 1018}, - [4620] = {.lex_state = 1018}, - [4621] = {.lex_state = 1018}, - [4622] = {.lex_state = 1018}, - [4623] = {.lex_state = 1085}, - [4624] = {.lex_state = 1018}, - [4625] = {.lex_state = 1018}, - [4626] = {.lex_state = 1018}, - [4627] = {.lex_state = 1018}, - [4628] = {.lex_state = 1018}, - [4629] = {.lex_state = 1018}, - [4630] = {.lex_state = 1018}, - [4631] = {.lex_state = 1018}, - [4632] = {.lex_state = 1018}, - [4633] = {.lex_state = 1018}, - [4634] = {.lex_state = 1018}, - [4635] = {.lex_state = 1018}, - [4636] = {.lex_state = 1018}, - [4637] = {.lex_state = 1119}, - [4638] = {.lex_state = 1068}, - [4639] = {.lex_state = 1091}, - [4640] = {.lex_state = 1018}, - [4641] = {.lex_state = 1091}, - [4642] = {.lex_state = 1018}, - [4643] = {.lex_state = 1018}, - [4644] = {.lex_state = 1018}, - [4645] = {.lex_state = 1018}, - [4646] = {.lex_state = 1018}, - [4647] = {.lex_state = 1091}, - [4648] = {.lex_state = 1091}, - [4649] = {.lex_state = 1018}, - [4650] = {.lex_state = 1018}, - [4651] = {.lex_state = 1052}, - [4652] = {.lex_state = 1052}, - [4653] = {.lex_state = 1091}, - [4654] = {.lex_state = 1018}, - [4655] = {.lex_state = 1018}, - [4656] = {.lex_state = 1052}, - [4657] = {.lex_state = 1052}, - [4658] = {.lex_state = 1018}, - [4659] = {.lex_state = 1018}, - [4660] = {.lex_state = 1110}, - [4661] = {.lex_state = 1018}, - [4662] = {.lex_state = 1110}, - [4663] = {.lex_state = 54}, - [4664] = {.lex_state = 54}, - [4665] = {.lex_state = 1018}, - [4666] = {.lex_state = 100}, - [4667] = {.lex_state = 1119}, - [4668] = {.lex_state = 1018}, - [4669] = {.lex_state = 1119}, - [4670] = {.lex_state = 1018}, - [4671] = {.lex_state = 1091}, - [4672] = {.lex_state = 1018}, - [4673] = {.lex_state = 1018}, - [4674] = {.lex_state = 1018}, - [4675] = {.lex_state = 1068}, - [4676] = {.lex_state = 1018}, - [4677] = {.lex_state = 1068}, - [4678] = {.lex_state = 1018}, - [4679] = {.lex_state = 1119}, - [4680] = {.lex_state = 1018}, - [4681] = {.lex_state = 1085}, - [4682] = {.lex_state = 1089}, - [4683] = {.lex_state = 1018}, - [4684] = {.lex_state = 1018}, - [4685] = {.lex_state = 1091}, - [4686] = {.lex_state = 1018}, - [4687] = {.lex_state = 1018}, - [4688] = {.lex_state = 1110}, - [4689] = {.lex_state = 1110}, - [4690] = {.lex_state = 1018}, - [4691] = {.lex_state = 1068}, - [4692] = {.lex_state = 1018}, - [4693] = {.lex_state = 995}, - [4694] = {.lex_state = 1018}, - [4695] = {.lex_state = 1091}, - [4696] = {.lex_state = 1018}, - [4697] = {.lex_state = 1110}, - [4698] = {.lex_state = 1018}, - [4699] = {.lex_state = 1068}, - [4700] = {.lex_state = 1068}, - [4701] = {.lex_state = 1068}, - [4702] = {.lex_state = 1018}, - [4703] = {.lex_state = 1018}, - [4704] = {.lex_state = 1089}, - [4705] = {.lex_state = 1018}, - [4706] = {.lex_state = 1018}, - [4707] = {.lex_state = 1018}, - [4708] = {.lex_state = 1018}, - [4709] = {.lex_state = 1018}, - [4710] = {.lex_state = 1018}, - [4711] = {.lex_state = 1057}, - [4712] = {.lex_state = 1018}, - [4713] = {.lex_state = 119}, - [4714] = {.lex_state = 1026}, - [4715] = {.lex_state = 119}, - [4716] = {.lex_state = 119}, - [4717] = {.lex_state = 119}, - [4718] = {.lex_state = 1091}, - [4719] = {.lex_state = 1018}, - [4720] = {.lex_state = 54}, - [4721] = {.lex_state = 54}, - [4722] = {.lex_state = 1018}, - [4723] = {.lex_state = 119}, - [4724] = {.lex_state = 1018}, - [4725] = {.lex_state = 1018}, - [4726] = {.lex_state = 1018}, - [4727] = {.lex_state = 1018}, - [4728] = {.lex_state = 1018}, - [4729] = {.lex_state = 1018}, - [4730] = {.lex_state = 1018}, - [4731] = {.lex_state = 1018}, - [4732] = {.lex_state = 1018}, - [4733] = {.lex_state = 1018}, - [4734] = {.lex_state = 1018}, - [4735] = {.lex_state = 1018}, - [4736] = {.lex_state = 119}, - [4737] = {.lex_state = 1018}, - [4738] = {.lex_state = 119}, - [4739] = {.lex_state = 1018}, - [4740] = {.lex_state = 1018}, - [4741] = {.lex_state = 1018}, - [4742] = {.lex_state = 1018}, - [4743] = {.lex_state = 1018}, - [4744] = {.lex_state = 119}, - [4745] = {.lex_state = 429}, - [4746] = {.lex_state = 54}, - [4747] = {.lex_state = 54}, - [4748] = {.lex_state = 119}, - [4749] = {.lex_state = 995}, - [4750] = {.lex_state = 995}, - [4751] = {.lex_state = 1091}, - [4752] = {.lex_state = 1091}, - [4753] = {.lex_state = 1018}, - [4754] = {.lex_state = 1018}, - [4755] = {.lex_state = 1110}, - [4756] = {.lex_state = 1020}, - [4757] = {.lex_state = 1018}, - [4758] = {.lex_state = 1057}, - [4759] = {.lex_state = 1119}, - [4760] = {.lex_state = 1093}, - [4761] = {.lex_state = 1091}, - [4762] = {.lex_state = 1018}, - [4763] = {.lex_state = 1094}, - [4764] = {.lex_state = 1052}, - [4765] = {.lex_state = 1052}, - [4766] = {.lex_state = 429}, - [4767] = {.lex_state = 1020}, - [4768] = {.lex_state = 429}, - [4769] = {.lex_state = 54}, - [4770] = {.lex_state = 1111}, - [4771] = {.lex_state = 1018}, - [4772] = {.lex_state = 1018}, - [4773] = {.lex_state = 113}, - [4774] = {.lex_state = 1091}, - [4775] = {.lex_state = 119}, - [4776] = {.lex_state = 1018}, - [4777] = {.lex_state = 1110}, - [4778] = {.lex_state = 1091}, - [4779] = {.lex_state = 1052}, - [4780] = {.lex_state = 54}, - [4781] = {.lex_state = 119}, - [4782] = {.lex_state = 54}, - [4783] = {.lex_state = 1110}, - [4784] = {.lex_state = 1110}, - [4785] = {.lex_state = 119}, - [4786] = {.lex_state = 54}, - [4787] = {.lex_state = 54}, - [4788] = {.lex_state = 1091}, - [4789] = {.lex_state = 54}, - [4790] = {.lex_state = 1091}, - [4791] = {.lex_state = 106}, - [4792] = {.lex_state = 1085}, - [4793] = {.lex_state = 119}, - [4794] = {.lex_state = 107}, - [4795] = {.lex_state = 119}, - [4796] = {.lex_state = 429}, - [4797] = {.lex_state = 1018}, - [4798] = {.lex_state = 54}, - [4799] = {.lex_state = 54}, - [4800] = {.lex_state = 54}, - [4801] = {.lex_state = 1119}, - [4802] = {.lex_state = 1018}, - [4803] = {.lex_state = 1119}, - [4804] = {.lex_state = 1020}, - [4805] = {.lex_state = 1018}, - [4806] = {.lex_state = 1052}, - [4807] = {.lex_state = 106}, - [4808] = {.lex_state = 1018}, - [4809] = {.lex_state = 1018}, - [4810] = {.lex_state = 1119}, - [4811] = {.lex_state = 1119}, - [4812] = {.lex_state = 119}, - [4813] = {.lex_state = 106}, - [4814] = {.lex_state = 1018}, - [4815] = {.lex_state = 1085}, - [4816] = {.lex_state = 1018}, - [4817] = {.lex_state = 1091}, - [4818] = {.lex_state = 119}, - [4819] = {.lex_state = 1052}, - [4820] = {.lex_state = 106}, - [4821] = {.lex_state = 1026}, - [4822] = {.lex_state = 1020}, - [4823] = {.lex_state = 106}, - [4824] = {.lex_state = 1018}, - [4825] = {.lex_state = 1020}, - [4826] = {.lex_state = 54}, - [4827] = {.lex_state = 119}, - [4828] = {.lex_state = 54}, - [4829] = {.lex_state = 1052}, - [4830] = {.lex_state = 995}, - [4831] = {.lex_state = 54}, - [4832] = {.lex_state = 54}, - [4833] = {.lex_state = 119}, - [4834] = {.lex_state = 170}, - [4835] = {.lex_state = 119}, - [4836] = {.lex_state = 119}, - [4837] = {.lex_state = 54}, - [4838] = {.lex_state = 54}, - [4839] = {.lex_state = 1018}, - [4840] = {.lex_state = 119}, - [4841] = {.lex_state = 1052}, - [4842] = {.lex_state = 1057}, - [4843] = {.lex_state = 1057}, - [4844] = {.lex_state = 106}, - [4845] = {.lex_state = 1018}, - [4846] = {.lex_state = 1085}, - [4847] = {.lex_state = 1085}, - [4848] = {.lex_state = 1110}, - [4849] = {.lex_state = 1018}, - [4850] = {.lex_state = 1018}, - [4851] = {.lex_state = 1052}, - [4852] = {.lex_state = 1018}, - [4853] = {.lex_state = 1091}, - [4854] = {.lex_state = 1018}, - [4855] = {.lex_state = 1018}, - [4856] = {.lex_state = 119}, - [4857] = {.lex_state = 170}, - [4858] = {.lex_state = 119}, - [4859] = {.lex_state = 54}, - [4860] = {.lex_state = 1020}, - [4861] = {.lex_state = 1026}, - [4862] = {.lex_state = 1020}, - [4863] = {.lex_state = 402}, - [4864] = {.lex_state = 1020}, - [4865] = {.lex_state = 1057}, - [4866] = {.lex_state = 1020}, - [4867] = {.lex_state = 1018}, - [4868] = {.lex_state = 402}, - [4869] = {.lex_state = 1018}, - [4870] = {.lex_state = 1091}, - [4871] = {.lex_state = 402}, - [4872] = {.lex_state = 1018}, - [4873] = {.lex_state = 1020}, - [4874] = {.lex_state = 108}, - [4875] = {.lex_state = 1020}, - [4876] = {.lex_state = 1020}, - [4877] = {.lex_state = 1020}, - [4878] = {.lex_state = 1020}, - [4879] = {.lex_state = 1085}, - [4880] = {.lex_state = 1020}, - [4881] = {.lex_state = 1020}, - [4882] = {.lex_state = 1018}, - [4883] = {.lex_state = 1018}, - [4884] = {.lex_state = 1018}, - [4885] = {.lex_state = 1020}, - [4886] = {.lex_state = 1018}, - [4887] = {.lex_state = 1085}, - [4888] = {.lex_state = 1020}, - [4889] = {.lex_state = 1020}, - [4890] = {.lex_state = 1020}, - [4891] = {.lex_state = 1052}, - [4892] = {.lex_state = 108}, - [4893] = {.lex_state = 1020}, - [4894] = {.lex_state = 1020}, - [4895] = {.lex_state = 1020}, - [4896] = {.lex_state = 1026}, - [4897] = {.lex_state = 1020}, - [4898] = {.lex_state = 1020}, - [4899] = {.lex_state = 1020}, - [4900] = {.lex_state = 1095}, - [4901] = {.lex_state = 1018}, - [4902] = {.lex_state = 1020}, - [4903] = {.lex_state = 1020}, - [4904] = {.lex_state = 1018}, - [4905] = {.lex_state = 431}, - [4906] = {.lex_state = 54}, - [4907] = {.lex_state = 1020}, - [4908] = {.lex_state = 1020}, - [4909] = {.lex_state = 1020}, - [4910] = {.lex_state = 1052}, - [4911] = {.lex_state = 1018}, - [4912] = {.lex_state = 1020}, - [4913] = {.lex_state = 1020}, - [4914] = {.lex_state = 1020}, - [4915] = {.lex_state = 1020}, - [4916] = {.lex_state = 1018}, - [4917] = {.lex_state = 1057}, - [4918] = {.lex_state = 1095}, - [4919] = {.lex_state = 119}, - [4920] = {.lex_state = 119}, - [4921] = {.lex_state = 119}, - [4922] = {.lex_state = 1020}, - [4923] = {.lex_state = 119}, - [4924] = {.lex_state = 1020}, - [4925] = {.lex_state = 1020}, - [4926] = {.lex_state = 1018}, - [4927] = {.lex_state = 1020}, - [4928] = {.lex_state = 1020}, - [4929] = {.lex_state = 995}, - [4930] = {.lex_state = 119}, - [4931] = {.lex_state = 54}, - [4932] = {.lex_state = 1020}, - [4933] = {.lex_state = 1020}, - [4934] = {.lex_state = 1020}, - [4935] = {.lex_state = 1018}, - [4936] = {.lex_state = 1085}, - [4937] = {.lex_state = 1020}, - [4938] = {.lex_state = 54}, - [4939] = {.lex_state = 54}, - [4940] = {.lex_state = 1020}, - [4941] = {.lex_state = 1020}, - [4942] = {.lex_state = 1052}, - [4943] = {.lex_state = 1026}, - [4944] = {.lex_state = 114}, - [4945] = {.lex_state = 1020}, - [4946] = {.lex_state = 1020}, - [4947] = {.lex_state = 1020}, - [4948] = {.lex_state = 1020}, - [4949] = {.lex_state = 1020}, - [4950] = {.lex_state = 1020}, - [4951] = {.lex_state = 1020}, - [4952] = {.lex_state = 1026}, - [4953] = {.lex_state = 1020}, - [4954] = {.lex_state = 995}, - [4955] = {.lex_state = 54}, - [4956] = {.lex_state = 1020}, - [4957] = {.lex_state = 1020}, - [4958] = {.lex_state = 1020}, - [4959] = {.lex_state = 995}, - [4960] = {.lex_state = 1020}, - [4961] = {.lex_state = 995}, - [4962] = {.lex_state = 1020}, - [4963] = {.lex_state = 1020}, - [4964] = {.lex_state = 1020}, - [4965] = {.lex_state = 170}, - [4966] = {.lex_state = 1018}, - [4967] = {.lex_state = 1057}, - [4968] = {.lex_state = 1018}, - [4969] = {.lex_state = 54}, - [4970] = {.lex_state = 1093}, - [4971] = {.lex_state = 1020}, - [4972] = {.lex_state = 1020}, - [4973] = {.lex_state = 1020}, - [4974] = {.lex_state = 170}, - [4975] = {.lex_state = 1018}, - [4976] = {.lex_state = 1020}, - [4977] = {.lex_state = 1018}, - [4978] = {.lex_state = 1018}, - [4979] = {.lex_state = 1020}, - [4980] = {.lex_state = 1020}, - [4981] = {.lex_state = 1020}, - [4982] = {.lex_state = 1020}, - [4983] = {.lex_state = 1020}, - [4984] = {.lex_state = 54}, - [4985] = {.lex_state = 1020}, - [4986] = {.lex_state = 1018}, - [4987] = {.lex_state = 1020}, - [4988] = {.lex_state = 1020}, - [4989] = {.lex_state = 1057}, - [4990] = {.lex_state = 1020}, - [4991] = {.lex_state = 1020}, - [4992] = {.lex_state = 1020}, - [4993] = {.lex_state = 1020}, - [4994] = {.lex_state = 1020}, - [4995] = {.lex_state = 54}, - [4996] = {.lex_state = 1020}, - [4997] = {.lex_state = 110}, - [4998] = {.lex_state = 1020}, - [4999] = {.lex_state = 1020}, - [5000] = {.lex_state = 1020}, - [5001] = {.lex_state = 1020}, - [5002] = {.lex_state = 1020}, - [5003] = {.lex_state = 1018}, - [5004] = {.lex_state = 1018}, - [5005] = {.lex_state = 170}, - [5006] = {.lex_state = 1018}, - [5007] = {.lex_state = 54}, - [5008] = {.lex_state = 54}, - [5009] = {.lex_state = 1094}, - [5010] = {.lex_state = 1020}, - [5011] = {.lex_state = 1020}, - [5012] = {.lex_state = 54}, - [5013] = {.lex_state = 54}, - [5014] = {.lex_state = 1020}, - [5015] = {.lex_state = 1020}, - [5016] = {.lex_state = 1020}, - [5017] = {.lex_state = 1020}, - [5018] = {.lex_state = 1020}, - [5019] = {.lex_state = 1020}, - [5020] = {.lex_state = 436}, - [5021] = {.lex_state = 54}, - [5022] = {.lex_state = 1020}, - [5023] = {.lex_state = 1020}, - [5024] = {.lex_state = 54}, - [5025] = {.lex_state = 1020}, - [5026] = {.lex_state = 1020}, - [5027] = {.lex_state = 1020}, - [5028] = {.lex_state = 54}, - [5029] = {.lex_state = 1020}, - [5030] = {.lex_state = 54}, - [5031] = {.lex_state = 1095}, - [5032] = {.lex_state = 1020}, - [5033] = {.lex_state = 148}, - [5034] = {.lex_state = 1020}, - [5035] = {.lex_state = 1020}, - [5036] = {.lex_state = 1020}, - [5037] = {.lex_state = 438}, - [5038] = {.lex_state = 438}, - [5039] = {.lex_state = 109}, - [5040] = {.lex_state = 54}, - [5041] = {.lex_state = 1020}, - [5042] = {.lex_state = 1026}, - [5043] = {.lex_state = 109}, - [5044] = {.lex_state = 1026}, - [5045] = {.lex_state = 54}, - [5046] = {.lex_state = 109}, - [5047] = {.lex_state = 54}, - [5048] = {.lex_state = 54}, - [5049] = {.lex_state = 54}, - [5050] = {.lex_state = 109}, - [5051] = {.lex_state = 54}, - [5052] = {.lex_state = 1020}, - [5053] = {.lex_state = 1026}, - [5054] = {.lex_state = 1096}, - [5055] = {.lex_state = 148}, - [5056] = {.lex_state = 1026}, - [5057] = {.lex_state = 1020}, - [5058] = {.lex_state = 109}, - [5059] = {.lex_state = 148}, - [5060] = {.lex_state = 109}, - [5061] = {.lex_state = 1020}, - [5062] = {.lex_state = 1096}, - [5063] = {.lex_state = 1020}, - [5064] = {.lex_state = 1026}, - [5065] = {.lex_state = 1026}, - [5066] = {.lex_state = 1020}, - [5067] = {.lex_state = 1020}, - [5068] = {.lex_state = 54}, - [5069] = {.lex_state = 1018}, - [5070] = {.lex_state = 1020}, - [5071] = {.lex_state = 1020}, - [5072] = {.lex_state = 54}, - [5073] = {.lex_state = 148}, - [5074] = {.lex_state = 1026}, - [5075] = {.lex_state = 1020}, - [5076] = {.lex_state = 148}, - [5077] = {.lex_state = 109}, - [5078] = {.lex_state = 1020}, - [5079] = {.lex_state = 1020}, - [5080] = {.lex_state = 1020}, - [5081] = {.lex_state = 1096}, - [5082] = {.lex_state = 1026}, - [5083] = {.lex_state = 1026}, - [5084] = {.lex_state = 1026}, - [5085] = {.lex_state = 1020}, - [5086] = {.lex_state = 54}, - [5087] = {.lex_state = 1020}, - [5088] = {.lex_state = 432}, - [5089] = {.lex_state = 1096}, - [5090] = {.lex_state = 54}, - [5091] = {.lex_state = 1020}, - [5092] = {.lex_state = 109}, - [5093] = {.lex_state = 1020}, - [5094] = {.lex_state = 1026}, - [5095] = {.lex_state = 1026}, - [5096] = {.lex_state = 1026}, - [5097] = {.lex_state = 119}, - [5098] = {.lex_state = 119}, - [5099] = {.lex_state = 54}, - [5100] = {.lex_state = 1026}, - [5101] = {.lex_state = 1020}, - [5102] = {.lex_state = 1018}, - [5103] = {.lex_state = 1020}, - [5104] = {.lex_state = 1020}, - [5105] = {.lex_state = 1020}, - [5106] = {.lex_state = 161}, - [5107] = {.lex_state = 1020}, - [5108] = {.lex_state = 1020}, - [5109] = {.lex_state = 161}, - [5110] = {.lex_state = 1020}, - [5111] = {.lex_state = 1020}, - [5112] = {.lex_state = 1020}, - [5113] = {.lex_state = 1020}, - [5114] = {.lex_state = 1026}, - [5115] = {.lex_state = 1026}, - [5116] = {.lex_state = 1020}, - [5117] = {.lex_state = 1020}, - [5118] = {.lex_state = 1020}, - [5119] = {.lex_state = 1020}, - [5120] = {.lex_state = 1026}, - [5121] = {.lex_state = 1020}, - [5122] = {.lex_state = 1020}, - [5123] = {.lex_state = 1020}, - [5124] = {.lex_state = 1020}, - [5125] = {.lex_state = 1020}, - [5126] = {.lex_state = 1026}, - [5127] = {.lex_state = 1020}, - [5128] = {.lex_state = 1020}, - [5129] = {.lex_state = 1020}, - [5130] = {.lex_state = 1020}, - [5131] = {.lex_state = 1020}, - [5132] = {.lex_state = 1020}, - [5133] = {.lex_state = 1020}, - [5134] = {.lex_state = 1020}, - [5135] = {.lex_state = 1026}, - [5136] = {.lex_state = 1020}, - [5137] = {.lex_state = 1020}, - [5138] = {.lex_state = 54}, - [5139] = {.lex_state = 100}, - [5140] = {.lex_state = 403}, - [5141] = {.lex_state = 1020}, - [5142] = {.lex_state = 1026}, - [5143] = {.lex_state = 1020}, - [5144] = {.lex_state = 120}, - [5145] = {.lex_state = 1020}, - [5146] = {.lex_state = 100}, - [5147] = {.lex_state = 100}, - [5148] = {.lex_state = 1026}, - [5149] = {.lex_state = 1095}, - [5150] = {.lex_state = 1020}, - [5151] = {.lex_state = 111}, - [5152] = {.lex_state = 161}, - [5153] = {.lex_state = 161}, - [5154] = {.lex_state = 54}, - [5155] = {.lex_state = 403}, - [5156] = {.lex_state = 111}, - [5157] = {.lex_state = 1026}, - [5158] = {.lex_state = 1020}, - [5159] = {.lex_state = 54}, - [5160] = {.lex_state = 1020}, - [5161] = {.lex_state = 54}, - [5162] = {.lex_state = 54}, - [5163] = {.lex_state = 113}, - [5164] = {.lex_state = 54}, - [5165] = {.lex_state = 1051}, - [5166] = {.lex_state = 54}, - [5167] = {.lex_state = 54}, - [5168] = {.lex_state = 54}, - [5169] = {.lex_state = 1020}, - [5170] = {.lex_state = 100}, - [5171] = {.lex_state = 100}, - [5172] = {.lex_state = 54}, - [5173] = {.lex_state = 1096}, - [5174] = {.lex_state = 1020}, - [5175] = {.lex_state = 100}, - [5176] = {.lex_state = 436}, - [5177] = {.lex_state = 1020}, - [5178] = {.lex_state = 54}, - [5179] = {.lex_state = 1020}, - [5180] = {.lex_state = 109}, - [5181] = {.lex_state = 1020}, - [5182] = {.lex_state = 1020}, - [5183] = {.lex_state = 437}, - [5184] = {.lex_state = 54}, - [5185] = {.lex_state = 1020}, - [5186] = {.lex_state = 1020}, - [5187] = {.lex_state = 1020}, - [5188] = {.lex_state = 1020}, - [5189] = {.lex_state = 1020}, - [5190] = {.lex_state = 1026}, - [5191] = {.lex_state = 1020}, - [5192] = {.lex_state = 100}, - [5193] = {.lex_state = 1026}, - [5194] = {.lex_state = 1026}, - [5195] = {.lex_state = 1020}, - [5196] = {.lex_state = 1020}, + [4385] = {.lex_state = 1050}, + [4386] = {.lex_state = 1031}, + [4387] = {.lex_state = 958}, + [4388] = {.lex_state = 958}, + [4389] = {.lex_state = 1031}, + [4390] = {.lex_state = 1002}, + [4391] = {.lex_state = 934}, + [4392] = {.lex_state = 958}, + [4393] = {.lex_state = 958}, + [4394] = {.lex_state = 958}, + [4395] = {.lex_state = 958}, + [4396] = {.lex_state = 1059}, + [4397] = {.lex_state = 958}, + [4398] = {.lex_state = 1031}, + [4399] = {.lex_state = 68}, + [4400] = {.lex_state = 68}, + [4401] = {.lex_state = 44}, + [4402] = {.lex_state = 44}, + [4403] = {.lex_state = 44}, + [4404] = {.lex_state = 958}, + [4405] = {.lex_state = 1002}, + [4406] = {.lex_state = 68}, + [4407] = {.lex_state = 958}, + [4408] = {.lex_state = 958}, + [4409] = {.lex_state = 1031}, + [4410] = {.lex_state = 958}, + [4411] = {.lex_state = 1031}, + [4412] = {.lex_state = 1059}, + [4413] = {.lex_state = 68}, + [4414] = {.lex_state = 1002}, + [4415] = {.lex_state = 958}, + [4416] = {.lex_state = 1002}, + [4417] = {.lex_state = 1002}, + [4418] = {.lex_state = 958}, + [4419] = {.lex_state = 68}, + [4420] = {.lex_state = 958}, + [4421] = {.lex_state = 958}, + [4422] = {.lex_state = 958}, + [4423] = {.lex_state = 1031}, + [4424] = {.lex_state = 1031}, + [4425] = {.lex_state = 68}, + [4426] = {.lex_state = 958}, + [4427] = {.lex_state = 958}, + [4428] = {.lex_state = 958}, + [4429] = {.lex_state = 68}, + [4430] = {.lex_state = 958}, + [4431] = {.lex_state = 68}, + [4432] = {.lex_state = 958}, + [4433] = {.lex_state = 958}, + [4434] = {.lex_state = 958}, + [4435] = {.lex_state = 44}, + [4436] = {.lex_state = 958}, + [4437] = {.lex_state = 1029}, + [4438] = {.lex_state = 44}, + [4439] = {.lex_state = 934}, + [4440] = {.lex_state = 958}, + [4441] = {.lex_state = 958}, + [4442] = {.lex_state = 68}, + [4443] = {.lex_state = 958}, + [4444] = {.lex_state = 958}, + [4445] = {.lex_state = 958}, + [4446] = {.lex_state = 958}, + [4447] = {.lex_state = 958}, + [4448] = {.lex_state = 934}, + [4449] = {.lex_state = 958}, + [4450] = {.lex_state = 958}, + [4451] = {.lex_state = 68}, + [4452] = {.lex_state = 958}, + [4453] = {.lex_state = 958}, + [4454] = {.lex_state = 958}, + [4455] = {.lex_state = 958}, + [4456] = {.lex_state = 994}, + [4457] = {.lex_state = 958}, + [4458] = {.lex_state = 958}, + [4459] = {.lex_state = 958}, + [4460] = {.lex_state = 958}, + [4461] = {.lex_state = 958}, + [4462] = {.lex_state = 1050}, + [4463] = {.lex_state = 44}, + [4464] = {.lex_state = 958}, + [4465] = {.lex_state = 994}, + [4466] = {.lex_state = 44}, + [4467] = {.lex_state = 44}, + [4468] = {.lex_state = 44}, + [4469] = {.lex_state = 1031}, + [4470] = {.lex_state = 1031}, + [4471] = {.lex_state = 1032}, + [4472] = {.lex_state = 1051}, + [4473] = {.lex_state = 958}, + [4474] = {.lex_state = 44}, + [4475] = {.lex_state = 1031}, + [4476] = {.lex_state = 958}, + [4477] = {.lex_state = 44}, + [4478] = {.lex_state = 1025}, + [4479] = {.lex_state = 960}, + [4480] = {.lex_state = 958}, + [4481] = {.lex_state = 63}, + [4482] = {.lex_state = 958}, + [4483] = {.lex_state = 958}, + [4484] = {.lex_state = 958}, + [4485] = {.lex_state = 1025}, + [4486] = {.lex_state = 1025}, + [4487] = {.lex_state = 958}, + [4488] = {.lex_state = 960}, + [4489] = {.lex_state = 368}, + [4490] = {.lex_state = 958}, + [4491] = {.lex_state = 1031}, + [4492] = {.lex_state = 1031}, + [4493] = {.lex_state = 958}, + [4494] = {.lex_state = 958}, + [4495] = {.lex_state = 958}, + [4496] = {.lex_state = 958}, + [4497] = {.lex_state = 958}, + [4498] = {.lex_state = 1031}, + [4499] = {.lex_state = 1050}, + [4500] = {.lex_state = 994}, + [4501] = {.lex_state = 994}, + [4502] = {.lex_state = 958}, + [4503] = {.lex_state = 44}, + [4504] = {.lex_state = 44}, + [4505] = {.lex_state = 63}, + [4506] = {.lex_state = 994}, + [4507] = {.lex_state = 994}, + [4508] = {.lex_state = 368}, + [4509] = {.lex_state = 958}, + [4510] = {.lex_state = 958}, + [4511] = {.lex_state = 958}, + [4512] = {.lex_state = 958}, + [4513] = {.lex_state = 958}, + [4514] = {.lex_state = 958}, + [4515] = {.lex_state = 958}, + [4516] = {.lex_state = 1059}, + [4517] = {.lex_state = 960}, + [4518] = {.lex_state = 44}, + [4519] = {.lex_state = 44}, + [4520] = {.lex_state = 1031}, + [4521] = {.lex_state = 368}, + [4522] = {.lex_state = 958}, + [4523] = {.lex_state = 958}, + [4524] = {.lex_state = 958}, + [4525] = {.lex_state = 958}, + [4526] = {.lex_state = 966}, + [4527] = {.lex_state = 934}, + [4528] = {.lex_state = 1050}, + [4529] = {.lex_state = 958}, + [4530] = {.lex_state = 1050}, + [4531] = {.lex_state = 44}, + [4532] = {.lex_state = 958}, + [4533] = {.lex_state = 994}, + [4534] = {.lex_state = 994}, + [4535] = {.lex_state = 1050}, + [4536] = {.lex_state = 958}, + [4537] = {.lex_state = 958}, + [4538] = {.lex_state = 44}, + [4539] = {.lex_state = 110}, + [4540] = {.lex_state = 960}, + [4541] = {.lex_state = 934}, + [4542] = {.lex_state = 44}, + [4543] = {.lex_state = 1031}, + [4544] = {.lex_state = 1025}, + [4545] = {.lex_state = 958}, + [4546] = {.lex_state = 958}, + [4547] = {.lex_state = 44}, + [4548] = {.lex_state = 44}, + [4549] = {.lex_state = 44}, + [4550] = {.lex_state = 958}, + [4551] = {.lex_state = 44}, + [4552] = {.lex_state = 958}, + [4553] = {.lex_state = 44}, + [4554] = {.lex_state = 68}, + [4555] = {.lex_state = 1031}, + [4556] = {.lex_state = 958}, + [4557] = {.lex_state = 68}, + [4558] = {.lex_state = 960}, + [4559] = {.lex_state = 44}, + [4560] = {.lex_state = 958}, + [4561] = {.lex_state = 966}, + [4562] = {.lex_state = 1059}, + [4563] = {.lex_state = 1059}, + [4564] = {.lex_state = 997}, + [4565] = {.lex_state = 1033}, + [4566] = {.lex_state = 958}, + [4567] = {.lex_state = 110}, + [4568] = {.lex_state = 994}, + [4569] = {.lex_state = 44}, + [4570] = {.lex_state = 934}, + [4571] = {.lex_state = 958}, + [4572] = {.lex_state = 368}, + [4573] = {.lex_state = 1031}, + [4574] = {.lex_state = 997}, + [4575] = {.lex_state = 997}, + [4576] = {.lex_state = 44}, + [4577] = {.lex_state = 44}, + [4578] = {.lex_state = 958}, + [4579] = {.lex_state = 44}, + [4580] = {.lex_state = 1059}, + [4581] = {.lex_state = 1059}, + [4582] = {.lex_state = 44}, + [4583] = {.lex_state = 958}, + [4584] = {.lex_state = 958}, + [4585] = {.lex_state = 958}, + [4586] = {.lex_state = 960}, + [4587] = {.lex_state = 958}, + [4588] = {.lex_state = 61}, + [4589] = {.lex_state = 966}, + [4590] = {.lex_state = 68}, + [4591] = {.lex_state = 61}, + [4592] = {.lex_state = 44}, + [4593] = {.lex_state = 960}, + [4594] = {.lex_state = 64}, + [4595] = {.lex_state = 958}, + [4596] = {.lex_state = 64}, + [4597] = {.lex_state = 1034}, + [4598] = {.lex_state = 44}, + [4599] = {.lex_state = 44}, + [4600] = {.lex_state = 64}, + [4601] = {.lex_state = 960}, + [4602] = {.lex_state = 44}, + [4603] = {.lex_state = 61}, + [4604] = {.lex_state = 64}, + [4605] = {.lex_state = 994}, + [4606] = {.lex_state = 958}, + [4607] = {.lex_state = 960}, + [4608] = {.lex_state = 1025}, + [4609] = {.lex_state = 958}, + [4610] = {.lex_state = 374}, + [4611] = {.lex_state = 960}, + [4612] = {.lex_state = 958}, + [4613] = {.lex_state = 958}, + [4614] = {.lex_state = 960}, + [4615] = {.lex_state = 64}, + [4616] = {.lex_state = 958}, + [4617] = {.lex_state = 64}, + [4618] = {.lex_state = 960}, + [4619] = {.lex_state = 960}, + [4620] = {.lex_state = 960}, + [4621] = {.lex_state = 960}, + [4622] = {.lex_state = 90}, + [4623] = {.lex_state = 64}, + [4624] = {.lex_state = 49}, + [4625] = {.lex_state = 90}, + [4626] = {.lex_state = 65}, + [4627] = {.lex_state = 960}, + [4628] = {.lex_state = 64}, + [4629] = {.lex_state = 110}, + [4630] = {.lex_state = 960}, + [4631] = {.lex_state = 960}, + [4632] = {.lex_state = 90}, + [4633] = {.lex_state = 960}, + [4634] = {.lex_state = 960}, + [4635] = {.lex_state = 966}, + [4636] = {.lex_state = 958}, + [4637] = {.lex_state = 960}, + [4638] = {.lex_state = 960}, + [4639] = {.lex_state = 960}, + [4640] = {.lex_state = 934}, + [4641] = {.lex_state = 960}, + [4642] = {.lex_state = 960}, + [4643] = {.lex_state = 960}, + [4644] = {.lex_state = 960}, + [4645] = {.lex_state = 960}, + [4646] = {.lex_state = 960}, + [4647] = {.lex_state = 958}, + [4648] = {.lex_state = 960}, + [4649] = {.lex_state = 960}, + [4650] = {.lex_state = 64}, + [4651] = {.lex_state = 960}, + [4652] = {.lex_state = 958}, + [4653] = {.lex_state = 960}, + [4654] = {.lex_state = 49}, + [4655] = {.lex_state = 960}, + [4656] = {.lex_state = 960}, + [4657] = {.lex_state = 934}, + [4658] = {.lex_state = 960}, + [4659] = {.lex_state = 44}, + [4660] = {.lex_state = 960}, + [4661] = {.lex_state = 958}, + [4662] = {.lex_state = 960}, + [4663] = {.lex_state = 960}, + [4664] = {.lex_state = 44}, + [4665] = {.lex_state = 960}, + [4666] = {.lex_state = 960}, + [4667] = {.lex_state = 61}, + [4668] = {.lex_state = 960}, + [4669] = {.lex_state = 960}, + [4670] = {.lex_state = 110}, + [4671] = {.lex_state = 960}, + [4672] = {.lex_state = 960}, + [4673] = {.lex_state = 960}, + [4674] = {.lex_state = 1025}, + [4675] = {.lex_state = 1025}, + [4676] = {.lex_state = 960}, + [4677] = {.lex_state = 68}, + [4678] = {.lex_state = 68}, + [4679] = {.lex_state = 966}, + [4680] = {.lex_state = 960}, + [4681] = {.lex_state = 960}, + [4682] = {.lex_state = 958}, + [4683] = {.lex_state = 960}, + [4684] = {.lex_state = 61}, + [4685] = {.lex_state = 934}, + [4686] = {.lex_state = 68}, + [4687] = {.lex_state = 960}, + [4688] = {.lex_state = 960}, + [4689] = {.lex_state = 994}, + [4690] = {.lex_state = 68}, + [4691] = {.lex_state = 966}, + [4692] = {.lex_state = 960}, + [4693] = {.lex_state = 61}, + [4694] = {.lex_state = 958}, + [4695] = {.lex_state = 90}, + [4696] = {.lex_state = 960}, + [4697] = {.lex_state = 90}, + [4698] = {.lex_state = 960}, + [4699] = {.lex_state = 934}, + [4700] = {.lex_state = 1031}, + [4701] = {.lex_state = 960}, + [4702] = {.lex_state = 958}, + [4703] = {.lex_state = 44}, + [4704] = {.lex_state = 49}, + [4705] = {.lex_state = 960}, + [4706] = {.lex_state = 958}, + [4707] = {.lex_state = 997}, + [4708] = {.lex_state = 994}, + [4709] = {.lex_state = 960}, + [4710] = {.lex_state = 960}, + [4711] = {.lex_state = 960}, + [4712] = {.lex_state = 958}, + [4713] = {.lex_state = 960}, + [4714] = {.lex_state = 960}, + [4715] = {.lex_state = 960}, + [4716] = {.lex_state = 960}, + [4717] = {.lex_state = 960}, + [4718] = {.lex_state = 958}, + [4719] = {.lex_state = 960}, + [4720] = {.lex_state = 960}, + [4721] = {.lex_state = 110}, + [4722] = {.lex_state = 960}, + [4723] = {.lex_state = 958}, + [4724] = {.lex_state = 960}, + [4725] = {.lex_state = 960}, + [4726] = {.lex_state = 960}, + [4727] = {.lex_state = 960}, + [4728] = {.lex_state = 958}, + [4729] = {.lex_state = 960}, + [4730] = {.lex_state = 958}, + [4731] = {.lex_state = 958}, + [4732] = {.lex_state = 61}, + [4733] = {.lex_state = 1034}, + [4734] = {.lex_state = 960}, + [4735] = {.lex_state = 960}, + [4736] = {.lex_state = 1032}, + [4737] = {.lex_state = 960}, + [4738] = {.lex_state = 960}, + [4739] = {.lex_state = 997}, + [4740] = {.lex_state = 960}, + [4741] = {.lex_state = 960}, + [4742] = {.lex_state = 1033}, + [4743] = {.lex_state = 960}, + [4744] = {.lex_state = 960}, + [4745] = {.lex_state = 997}, + [4746] = {.lex_state = 960}, + [4747] = {.lex_state = 960}, + [4748] = {.lex_state = 960}, + [4749] = {.lex_state = 997}, + [4750] = {.lex_state = 960}, + [4751] = {.lex_state = 960}, + [4752] = {.lex_state = 960}, + [4753] = {.lex_state = 960}, + [4754] = {.lex_state = 960}, + [4755] = {.lex_state = 960}, + [4756] = {.lex_state = 958}, + [4757] = {.lex_state = 960}, + [4758] = {.lex_state = 44}, + [4759] = {.lex_state = 101}, + [4760] = {.lex_state = 960}, + [4761] = {.lex_state = 44}, + [4762] = {.lex_state = 61}, + [4763] = {.lex_state = 379}, + [4764] = {.lex_state = 960}, + [4765] = {.lex_state = 966}, + [4766] = {.lex_state = 371}, + [4767] = {.lex_state = 68}, + [4768] = {.lex_state = 960}, + [4769] = {.lex_state = 44}, + [4770] = {.lex_state = 44}, + [4771] = {.lex_state = 379}, + [4772] = {.lex_state = 44}, + [4773] = {.lex_state = 966}, + [4774] = {.lex_state = 960}, + [4775] = {.lex_state = 960}, + [4776] = {.lex_state = 960}, + [4777] = {.lex_state = 44}, + [4778] = {.lex_state = 960}, + [4779] = {.lex_state = 966}, + [4780] = {.lex_state = 966}, + [4781] = {.lex_state = 44}, + [4782] = {.lex_state = 960}, + [4783] = {.lex_state = 44}, + [4784] = {.lex_state = 44}, + [4785] = {.lex_state = 44}, + [4786] = {.lex_state = 44}, + [4787] = {.lex_state = 966}, + [4788] = {.lex_state = 960}, + [4789] = {.lex_state = 960}, + [4790] = {.lex_state = 960}, + [4791] = {.lex_state = 44}, + [4792] = {.lex_state = 44}, + [4793] = {.lex_state = 966}, + [4794] = {.lex_state = 960}, + [4795] = {.lex_state = 1035}, + [4796] = {.lex_state = 966}, + [4797] = {.lex_state = 44}, + [4798] = {.lex_state = 44}, + [4799] = {.lex_state = 966}, + [4800] = {.lex_state = 960}, + [4801] = {.lex_state = 68}, + [4802] = {.lex_state = 958}, + [4803] = {.lex_state = 44}, + [4804] = {.lex_state = 966}, + [4805] = {.lex_state = 960}, + [4806] = {.lex_state = 68}, + [4807] = {.lex_state = 44}, + [4808] = {.lex_state = 44}, + [4809] = {.lex_state = 960}, + [4810] = {.lex_state = 960}, + [4811] = {.lex_state = 960}, + [4812] = {.lex_state = 960}, + [4813] = {.lex_state = 960}, + [4814] = {.lex_state = 960}, + [4815] = {.lex_state = 960}, + [4816] = {.lex_state = 966}, + [4817] = {.lex_state = 44}, + [4818] = {.lex_state = 966}, + [4819] = {.lex_state = 960}, + [4820] = {.lex_state = 960}, + [4821] = {.lex_state = 960}, + [4822] = {.lex_state = 960}, + [4823] = {.lex_state = 44}, + [4824] = {.lex_state = 44}, + [4825] = {.lex_state = 44}, + [4826] = {.lex_state = 44}, + [4827] = {.lex_state = 44}, + [4828] = {.lex_state = 966}, + [4829] = {.lex_state = 960}, + [4830] = {.lex_state = 101}, + [4831] = {.lex_state = 101}, + [4832] = {.lex_state = 44}, + [4833] = {.lex_state = 343}, + [4834] = {.lex_state = 960}, + [4835] = {.lex_state = 960}, + [4836] = {.lex_state = 1035}, + [4837] = {.lex_state = 960}, + [4838] = {.lex_state = 960}, + [4839] = {.lex_state = 966}, + [4840] = {.lex_state = 960}, + [4841] = {.lex_state = 101}, + [4842] = {.lex_state = 960}, + [4843] = {.lex_state = 960}, + [4844] = {.lex_state = 370}, + [4845] = {.lex_state = 44}, + [4846] = {.lex_state = 960}, + [4847] = {.lex_state = 966}, + [4848] = {.lex_state = 1035}, + [4849] = {.lex_state = 960}, + [4850] = {.lex_state = 966}, + [4851] = {.lex_state = 44}, + [4852] = {.lex_state = 1035}, + [4853] = {.lex_state = 960}, + [4854] = {.lex_state = 1035}, + [4855] = {.lex_state = 966}, + [4856] = {.lex_state = 371}, + [4857] = {.lex_state = 960}, + [4858] = {.lex_state = 960}, + [4859] = {.lex_state = 966}, + [4860] = {.lex_state = 44}, + [4861] = {.lex_state = 44}, + [4862] = {.lex_state = 44}, + [4863] = {.lex_state = 966}, + [4864] = {.lex_state = 960}, + [4865] = {.lex_state = 960}, + [4866] = {.lex_state = 44}, + [4867] = {.lex_state = 960}, + [4868] = {.lex_state = 991}, + [4869] = {.lex_state = 44}, + [4870] = {.lex_state = 960}, + [4871] = {.lex_state = 958}, + [4872] = {.lex_state = 960}, + [4873] = {.lex_state = 960}, + [4874] = {.lex_state = 966}, + [4875] = {.lex_state = 370}, + [4876] = {.lex_state = 966}, + [4877] = {.lex_state = 966}, + [4878] = {.lex_state = 69}, + [4879] = {.lex_state = 44}, + [4880] = {.lex_state = 960}, + [4881] = {.lex_state = 960}, + [4882] = {.lex_state = 960}, + [4883] = {.lex_state = 960}, + [4884] = {.lex_state = 960}, + [4885] = {.lex_state = 44}, + [4886] = {.lex_state = 44}, + [4887] = {.lex_state = 64}, + [4888] = {.lex_state = 960}, + [4889] = {.lex_state = 44}, + [4890] = {.lex_state = 960}, + [4891] = {.lex_state = 966}, + [4892] = {.lex_state = 960}, + [4893] = {.lex_state = 960}, + [4894] = {.lex_state = 960}, + [4895] = {.lex_state = 44}, + [4896] = {.lex_state = 960}, + [4897] = {.lex_state = 380}, + [4898] = {.lex_state = 966}, + [4899] = {.lex_state = 960}, + [4900] = {.lex_state = 960}, + [4901] = {.lex_state = 960}, + [4902] = {.lex_state = 960}, + [4903] = {.lex_state = 966}, + [4904] = {.lex_state = 966}, + [4905] = {.lex_state = 44}, + [4906] = {.lex_state = 44}, + [4907] = {.lex_state = 44}, + [4908] = {.lex_state = 44}, + [4909] = {.lex_state = 44}, + [4910] = {.lex_state = 44}, + [4911] = {.lex_state = 44}, + [4912] = {.lex_state = 960}, + [4913] = {.lex_state = 960}, + [4914] = {.lex_state = 1034}, + [4915] = {.lex_state = 44}, + [4916] = {.lex_state = 966}, + [4917] = {.lex_state = 960}, + [4918] = {.lex_state = 960}, + [4919] = {.lex_state = 960}, + [4920] = {.lex_state = 960}, + [4921] = {.lex_state = 375}, + [4922] = {.lex_state = 960}, + [4923] = {.lex_state = 44}, + [4924] = {.lex_state = 44}, + [4925] = {.lex_state = 44}, + [4926] = {.lex_state = 44}, + [4927] = {.lex_state = 61}, + [4928] = {.lex_state = 960}, + [4929] = {.lex_state = 960}, + [4930] = {.lex_state = 966}, + [4931] = {.lex_state = 343}, + [4932] = {.lex_state = 1034}, + [4933] = {.lex_state = 960}, + [4934] = {.lex_state = 960}, + [4935] = {.lex_state = 960}, + [4936] = {.lex_state = 44}, + [4937] = {.lex_state = 960}, + [4938] = {.lex_state = 960}, + [4939] = {.lex_state = 966}, + [4940] = {.lex_state = 44}, + [4941] = {.lex_state = 44}, + [4942] = {.lex_state = 960}, + [4943] = {.lex_state = 960}, + [4944] = {.lex_state = 966}, + [4945] = {.lex_state = 960}, + [4946] = {.lex_state = 960}, + [4947] = {.lex_state = 44}, + [4948] = {.lex_state = 934}, + [4949] = {.lex_state = 966}, + [4950] = {.lex_state = 44}, + [4951] = {.lex_state = 44}, + [4952] = {.lex_state = 44}, + [4953] = {.lex_state = 44}, + [4954] = {.lex_state = 44}, + [4955] = {.lex_state = 44}, + [4956] = {.lex_state = 966}, + [4957] = {.lex_state = 966}, + [4958] = {.lex_state = 966}, + [4959] = {.lex_state = 966}, + [4960] = {.lex_state = 966}, + [4961] = {.lex_state = 966}, + [4962] = {.lex_state = 966}, + [4963] = {.lex_state = 966}, + [4964] = {.lex_state = 966}, + [4965] = {.lex_state = 966}, + [4966] = {.lex_state = 966}, + [4967] = {.lex_state = 377}, + [4968] = {.lex_state = 966}, + [4969] = {.lex_state = 966}, + [4970] = {.lex_state = 966}, + [4971] = {.lex_state = 966}, + [4972] = {.lex_state = 966}, + [4973] = {.lex_state = 966}, + [4974] = {.lex_state = 418}, + [4975] = {.lex_state = 966}, + [4976] = {.lex_state = 966}, + [4977] = {.lex_state = 966}, + [4978] = {.lex_state = 966}, + [4979] = {.lex_state = 437}, + [4980] = {.lex_state = 379}, + [4981] = {.lex_state = 44}, + [4982] = {.lex_state = 372}, + [4983] = {.lex_state = 966}, + [4984] = {.lex_state = 966}, + [4985] = {.lex_state = 966}, + [4986] = {.lex_state = 966}, + [4987] = {.lex_state = 966}, + [4988] = {.lex_state = 966}, + [4989] = {.lex_state = 966}, + [4990] = {.lex_state = 966}, + [4991] = {.lex_state = 966}, + [4992] = {.lex_state = 966}, + [4993] = {.lex_state = 966}, + [4994] = {.lex_state = 966}, + [4995] = {.lex_state = 966}, + [4996] = {.lex_state = 966}, + [4997] = {.lex_state = 1035}, + [4998] = {.lex_state = 372}, + [4999] = {.lex_state = 966}, + [5000] = {.lex_state = 1035}, + [5001] = {.lex_state = 966}, + [5002] = {.lex_state = 966}, + [5003] = {.lex_state = 966}, + [5004] = {.lex_state = 1035}, + [5005] = {.lex_state = 966}, + [5006] = {.lex_state = 966}, + [5007] = {.lex_state = 966}, + [5008] = {.lex_state = 966}, + [5009] = {.lex_state = 1035}, + [5010] = {.lex_state = 966}, + [5011] = {.lex_state = 966}, + [5012] = {.lex_state = 966}, + [5013] = {.lex_state = 966}, + [5014] = {.lex_state = 966}, + [5015] = {.lex_state = 966}, + [5016] = {.lex_state = 966}, + [5017] = {.lex_state = 966}, + [5018] = {.lex_state = 966}, + [5019] = {.lex_state = 966}, + [5020] = {.lex_state = 966}, + [5021] = {.lex_state = 934}, + [5022] = {.lex_state = 370}, + [5023] = {.lex_state = 378}, + [5024] = {.lex_state = 377}, + [5025] = {.lex_state = 934}, + [5026] = {.lex_state = 934}, + [5027] = {.lex_state = 934}, + [5028] = {.lex_state = 370}, + [5029] = {.lex_state = 378}, + [5030] = {.lex_state = 379}, + [5031] = {.lex_state = 966}, + [5032] = {.lex_state = 966}, + [5033] = {.lex_state = 4455}, + [5034] = {.lex_state = 966}, + [5035] = {.lex_state = 966}, + [5036] = {.lex_state = 4455}, + [5037] = {.lex_state = 966}, + [5038] = {.lex_state = 44}, + [5039] = {.lex_state = 44}, + [5040] = {.lex_state = 4455}, + [5041] = {.lex_state = 966}, + [5042] = {.lex_state = 44}, + [5043] = {.lex_state = 44}, + [5044] = {.lex_state = 4455}, + [5045] = {.lex_state = 370}, + [5046] = {.lex_state = 370}, + [5047] = {.lex_state = 370}, + [5048] = {.lex_state = 370}, + [5049] = {.lex_state = 966}, + [5050] = {.lex_state = 966}, + [5051] = {.lex_state = 44}, + [5052] = {.lex_state = 966}, + [5053] = {.lex_state = 966}, + [5054] = {.lex_state = 966}, + [5055] = {.lex_state = 966}, + [5056] = {.lex_state = 966}, + [5057] = {.lex_state = 383}, + [5058] = {.lex_state = 376}, + [5059] = {.lex_state = 44}, + [5060] = {.lex_state = 44}, + [5061] = {.lex_state = 44}, + [5062] = {.lex_state = 44}, + [5063] = {.lex_state = 385}, + [5064] = {.lex_state = 966}, + [5065] = {.lex_state = 44}, + [5066] = {.lex_state = 44}, + [5067] = {.lex_state = 44}, + [5068] = {.lex_state = 966}, + [5069] = {.lex_state = 379}, + [5070] = {.lex_state = 379}, + [5071] = {.lex_state = 379}, + [5072] = {.lex_state = 44}, + [5073] = {.lex_state = 44}, + [5074] = {.lex_state = 44}, + [5075] = {.lex_state = 44}, + [5076] = {.lex_state = 44}, + [5077] = {.lex_state = 44}, + [5078] = {.lex_state = 44}, + [5079] = {.lex_state = 44}, + [5080] = {.lex_state = 44}, + [5081] = {.lex_state = 966}, + [5082] = {.lex_state = 44}, + [5083] = {.lex_state = 44}, + [5084] = {.lex_state = 966}, + [5085] = {.lex_state = 44}, + [5086] = {.lex_state = 44}, + [5087] = {.lex_state = 44}, + [5088] = {.lex_state = 44}, + [5089] = {.lex_state = 44}, + [5090] = {.lex_state = 44}, + [5091] = {.lex_state = 44}, + [5092] = {.lex_state = 44}, + [5093] = {.lex_state = 934}, + [5094] = {.lex_state = 966}, + [5095] = {.lex_state = 934}, + [5096] = {.lex_state = 966}, + [5097] = {.lex_state = 934}, + [5098] = {.lex_state = 384}, + [5099] = {.lex_state = 934}, + [5100] = {.lex_state = 389}, + [5101] = {.lex_state = 121}, + [5102] = {.lex_state = 991}, + [5103] = {.lex_state = 121}, + [5104] = {.lex_state = 121}, + [5105] = {.lex_state = 121}, + [5106] = {.lex_state = 934}, + [5107] = {.lex_state = 991}, + [5108] = {.lex_state = 966}, + [5109] = {.lex_state = 966}, + [5110] = {.lex_state = 4455}, + [5111] = {.lex_state = 1035}, + [5112] = {.lex_state = 966}, + [5113] = {.lex_state = 373}, + [5114] = {.lex_state = 934}, + [5115] = {.lex_state = 44}, + [5116] = {.lex_state = 44}, + [5117] = {.lex_state = 44}, + [5118] = {.lex_state = 44}, + [5119] = {.lex_state = 343}, + [5120] = {.lex_state = 381}, + [5121] = {.lex_state = 357}, + [5122] = {.lex_state = 357}, + [5123] = {.lex_state = 381}, + [5124] = {.lex_state = 386}, + [5125] = {.lex_state = 379}, + [5126] = {.lex_state = 934}, + [5127] = {.lex_state = 934}, + [5128] = {.lex_state = 373}, + [5129] = {.lex_state = 934}, + [5130] = {.lex_state = 386}, + [5131] = {.lex_state = 438}, + [5132] = {.lex_state = 44}, + [5133] = {.lex_state = 463}, + [5134] = {.lex_state = 460}, + [5135] = {.lex_state = 991}, + [5136] = {.lex_state = 438}, + [5137] = {.lex_state = 381}, + [5138] = {.lex_state = 379}, + [5139] = {.lex_state = 453}, + [5140] = {.lex_state = 934}, + [5141] = {.lex_state = 419}, + [5142] = {.lex_state = 381}, + [5143] = {.lex_state = 431}, + [5144] = {.lex_state = 44}, + [5145] = {.lex_state = 44}, + [5146] = {.lex_state = 381}, + [5147] = {.lex_state = 343}, + [5148] = {.lex_state = 390}, + [5149] = {.lex_state = 991}, + [5150] = {.lex_state = 455}, + [5151] = {.lex_state = 390}, + [5152] = {.lex_state = 463}, + [5153] = {.lex_state = 463}, + [5154] = {.lex_state = 381}, + [5155] = {.lex_state = 381}, + [5156] = {.lex_state = 991}, + [5157] = {.lex_state = 991}, + [5158] = {.lex_state = 991}, + [5159] = {.lex_state = 991}, + [5160] = {.lex_state = 991}, + [5161] = {.lex_state = 991}, + [5162] = {.lex_state = 991}, + [5163] = {.lex_state = 465}, + [5164] = {.lex_state = 388}, + [5165] = {.lex_state = 121}, + [5166] = {.lex_state = 4454}, + [5167] = {.lex_state = 4036}, + [5168] = {.lex_state = 4036}, + [5169] = {.lex_state = 4036}, + [5170] = {.lex_state = 4036}, + [5171] = {.lex_state = 4036}, + [5172] = {.lex_state = 4036}, + [5173] = {.lex_state = 439}, + [5174] = {.lex_state = 439}, + [5175] = {.lex_state = 463}, + [5176] = {.lex_state = 121}, + [5177] = {.lex_state = 121}, + [5178] = {.lex_state = 4634}, + [5179] = {.lex_state = 4634}, + [5180] = {.lex_state = 121}, + [5181] = {.lex_state = 387}, + [5182] = {.lex_state = 934}, + [5183] = {.lex_state = 4634}, + [5184] = {.lex_state = 4634}, + [5185] = {.lex_state = 82}, + [5186] = {.lex_state = 343}, + [5187] = {.lex_state = 4454}, + [5188] = {.lex_state = 387}, + [5189] = {.lex_state = 463}, + [5190] = {.lex_state = 387}, + [5191] = {.lex_state = 439}, + [5192] = {.lex_state = 387}, + [5193] = {.lex_state = 4454}, + [5194] = {.lex_state = 121}, + [5195] = {.lex_state = 387}, + [5196] = {.lex_state = 357}, [5197] = {.lex_state = 439}, - [5198] = {.lex_state = 1026}, - [5199] = {.lex_state = 54}, - [5200] = {.lex_state = 1026}, - [5201] = {.lex_state = 1026}, - [5202] = {.lex_state = 54}, - [5203] = {.lex_state = 54}, - [5204] = {.lex_state = 119}, - [5205] = {.lex_state = 1026}, - [5206] = {.lex_state = 149}, - [5207] = {.lex_state = 149}, - [5208] = {.lex_state = 1096}, - [5209] = {.lex_state = 1026}, - [5210] = {.lex_state = 54}, - [5211] = {.lex_state = 54}, - [5212] = {.lex_state = 54}, - [5213] = {.lex_state = 1026}, - [5214] = {.lex_state = 54}, - [5215] = {.lex_state = 54}, - [5216] = {.lex_state = 54}, - [5217] = {.lex_state = 1026}, - [5218] = {.lex_state = 1026}, - [5219] = {.lex_state = 1026}, - [5220] = {.lex_state = 54}, - [5221] = {.lex_state = 54}, - [5222] = {.lex_state = 1026}, - [5223] = {.lex_state = 1026}, - [5224] = {.lex_state = 54}, - [5225] = {.lex_state = 1026}, - [5226] = {.lex_state = 1026}, - [5227] = {.lex_state = 54}, - [5228] = {.lex_state = 1026}, - [5229] = {.lex_state = 443}, - [5230] = {.lex_state = 4657}, - [5231] = {.lex_state = 4657}, - [5232] = {.lex_state = 1026}, - [5233] = {.lex_state = 54}, - [5234] = {.lex_state = 1026}, - [5235] = {.lex_state = 119}, - [5236] = {.lex_state = 1096}, - [5237] = {.lex_state = 1026}, - [5238] = {.lex_state = 54}, - [5239] = {.lex_state = 119}, - [5240] = {.lex_state = 1026}, - [5241] = {.lex_state = 995}, - [5242] = {.lex_state = 109}, - [5243] = {.lex_state = 4657}, - [5244] = {.lex_state = 1026}, - [5245] = {.lex_state = 54}, - [5246] = {.lex_state = 1096}, - [5247] = {.lex_state = 54}, - [5248] = {.lex_state = 54}, - [5249] = {.lex_state = 995}, - [5250] = {.lex_state = 1026}, - [5251] = {.lex_state = 444}, - [5252] = {.lex_state = 433}, - [5253] = {.lex_state = 54}, - [5254] = {.lex_state = 1026}, - [5255] = {.lex_state = 1026}, - [5256] = {.lex_state = 1026}, - [5257] = {.lex_state = 1026}, - [5258] = {.lex_state = 100}, - [5259] = {.lex_state = 54}, - [5260] = {.lex_state = 1026}, - [5261] = {.lex_state = 1026}, - [5262] = {.lex_state = 112}, - [5263] = {.lex_state = 54}, - [5264] = {.lex_state = 435}, - [5265] = {.lex_state = 1026}, - [5266] = {.lex_state = 445}, - [5267] = {.lex_state = 54}, - [5268] = {.lex_state = 54}, - [5269] = {.lex_state = 54}, - [5270] = {.lex_state = 54}, - [5271] = {.lex_state = 1026}, - [5272] = {.lex_state = 995}, - [5273] = {.lex_state = 54}, - [5274] = {.lex_state = 54}, - [5275] = {.lex_state = 54}, - [5276] = {.lex_state = 1026}, - [5277] = {.lex_state = 449}, - [5278] = {.lex_state = 1026}, - [5279] = {.lex_state = 54}, - [5280] = {.lex_state = 54}, - [5281] = {.lex_state = 112}, - [5282] = {.lex_state = 54}, - [5283] = {.lex_state = 1026}, - [5284] = {.lex_state = 54}, - [5285] = {.lex_state = 1026}, - [5286] = {.lex_state = 54}, - [5287] = {.lex_state = 54}, - [5288] = {.lex_state = 149}, - [5289] = {.lex_state = 1026}, - [5290] = {.lex_state = 54}, - [5291] = {.lex_state = 1026}, - [5292] = {.lex_state = 54}, - [5293] = {.lex_state = 54}, - [5294] = {.lex_state = 54}, - [5295] = {.lex_state = 54}, - [5296] = {.lex_state = 112}, - [5297] = {.lex_state = 436}, - [5298] = {.lex_state = 1026}, - [5299] = {.lex_state = 54}, - [5300] = {.lex_state = 54}, - [5301] = {.lex_state = 54}, - [5302] = {.lex_state = 54}, - [5303] = {.lex_state = 1026}, - [5304] = {.lex_state = 995}, - [5305] = {.lex_state = 1026}, - [5306] = {.lex_state = 1026}, - [5307] = {.lex_state = 995}, - [5308] = {.lex_state = 4657}, - [5309] = {.lex_state = 54}, - [5310] = {.lex_state = 1026}, - [5311] = {.lex_state = 54}, - [5312] = {.lex_state = 54}, - [5313] = {.lex_state = 1026}, - [5314] = {.lex_state = 181}, - [5315] = {.lex_state = 1051}, - [5316] = {.lex_state = 181}, - [5317] = {.lex_state = 181}, - [5318] = {.lex_state = 181}, - [5319] = {.lex_state = 1026}, - [5320] = {.lex_state = 54}, - [5321] = {.lex_state = 1051}, - [5322] = {.lex_state = 1026}, - [5323] = {.lex_state = 1026}, - [5324] = {.lex_state = 995}, - [5325] = {.lex_state = 1026}, - [5326] = {.lex_state = 1026}, - [5327] = {.lex_state = 54}, - [5328] = {.lex_state = 112}, - [5329] = {.lex_state = 1026}, - [5330] = {.lex_state = 112}, - [5331] = {.lex_state = 995}, - [5332] = {.lex_state = 1026}, - [5333] = {.lex_state = 54}, - [5334] = {.lex_state = 54}, - [5335] = {.lex_state = 54}, - [5336] = {.lex_state = 1026}, - [5337] = {.lex_state = 1026}, - [5338] = {.lex_state = 1026}, - [5339] = {.lex_state = 112}, - [5340] = {.lex_state = 995}, - [5341] = {.lex_state = 54}, - [5342] = {.lex_state = 54}, - [5343] = {.lex_state = 1026}, - [5344] = {.lex_state = 1026}, - [5345] = {.lex_state = 1026}, - [5346] = {.lex_state = 436}, - [5347] = {.lex_state = 1026}, - [5348] = {.lex_state = 436}, - [5349] = {.lex_state = 436}, - [5350] = {.lex_state = 995}, - [5351] = {.lex_state = 4657}, - [5352] = {.lex_state = 112}, - [5353] = {.lex_state = 1026}, - [5354] = {.lex_state = 1026}, - [5355] = {.lex_state = 100}, - [5356] = {.lex_state = 435}, - [5357] = {.lex_state = 1026}, - [5358] = {.lex_state = 54}, - [5359] = {.lex_state = 54}, - [5360] = {.lex_state = 54}, - [5361] = {.lex_state = 1026}, - [5362] = {.lex_state = 1026}, - [5363] = {.lex_state = 54}, - [5364] = {.lex_state = 112}, - [5365] = {.lex_state = 1026}, - [5366] = {.lex_state = 1026}, - [5367] = {.lex_state = 54}, - [5368] = {.lex_state = 112}, - [5369] = {.lex_state = 54}, - [5370] = {.lex_state = 1026}, - [5371] = {.lex_state = 54}, - [5372] = {.lex_state = 434}, - [5373] = {.lex_state = 1026}, - [5374] = {.lex_state = 1026}, - [5375] = {.lex_state = 1026}, - [5376] = {.lex_state = 1026}, - [5377] = {.lex_state = 434}, - [5378] = {.lex_state = 149}, - [5379] = {.lex_state = 54}, - [5380] = {.lex_state = 1096}, - [5381] = {.lex_state = 995}, - [5382] = {.lex_state = 54}, - [5383] = {.lex_state = 1026}, - [5384] = {.lex_state = 54}, - [5385] = {.lex_state = 149}, - [5386] = {.lex_state = 1026}, - [5387] = {.lex_state = 1026}, - [5388] = {.lex_state = 1026}, - [5389] = {.lex_state = 54}, - [5390] = {.lex_state = 1096}, - [5391] = {.lex_state = 1026}, - [5392] = {.lex_state = 54}, - [5393] = {.lex_state = 439}, - [5394] = {.lex_state = 1026}, - [5395] = {.lex_state = 54}, - [5396] = {.lex_state = 441}, - [5397] = {.lex_state = 446}, - [5398] = {.lex_state = 497}, - [5399] = {.lex_state = 54}, - [5400] = {.lex_state = 441}, - [5401] = {.lex_state = 525}, - [5402] = {.lex_state = 1051}, - [5403] = {.lex_state = 441}, - [5404] = {.lex_state = 54}, - [5405] = {.lex_state = 54}, - [5406] = {.lex_state = 478}, - [5407] = {.lex_state = 441}, - [5408] = {.lex_state = 54}, - [5409] = {.lex_state = 54}, - [5410] = {.lex_state = 513}, - [5411] = {.lex_state = 54}, - [5412] = {.lex_state = 403}, - [5413] = {.lex_state = 54}, - [5414] = {.lex_state = 54}, - [5415] = {.lex_state = 54}, - [5416] = {.lex_state = 54}, - [5417] = {.lex_state = 491}, - [5418] = {.lex_state = 1026}, - [5419] = {.lex_state = 441}, - [5420] = {.lex_state = 54}, - [5421] = {.lex_state = 54}, - [5422] = {.lex_state = 520}, - [5423] = {.lex_state = 54}, - [5424] = {.lex_state = 441}, - [5425] = {.lex_state = 54}, - [5426] = {.lex_state = 54}, - [5427] = {.lex_state = 995}, - [5428] = {.lex_state = 54}, - [5429] = {.lex_state = 54}, - [5430] = {.lex_state = 54}, - [5431] = {.lex_state = 54}, - [5432] = {.lex_state = 54}, - [5433] = {.lex_state = 54}, - [5434] = {.lex_state = 54}, - [5435] = {.lex_state = 54}, - [5436] = {.lex_state = 54}, - [5437] = {.lex_state = 440}, - [5438] = {.lex_state = 54}, - [5439] = {.lex_state = 54}, - [5440] = {.lex_state = 54}, - [5441] = {.lex_state = 54}, - [5442] = {.lex_state = 54}, - [5443] = {.lex_state = 54}, - [5444] = {.lex_state = 995}, - [5445] = {.lex_state = 1051}, - [5446] = {.lex_state = 450}, - [5447] = {.lex_state = 54}, - [5448] = {.lex_state = 54}, - [5449] = {.lex_state = 479}, - [5450] = {.lex_state = 441}, - [5451] = {.lex_state = 54}, - [5452] = {.lex_state = 54}, - [5453] = {.lex_state = 54}, - [5454] = {.lex_state = 418}, - [5455] = {.lex_state = 450}, - [5456] = {.lex_state = 54}, - [5457] = {.lex_state = 418}, - [5458] = {.lex_state = 1051}, - [5459] = {.lex_state = 1051}, - [5460] = {.lex_state = 1051}, - [5461] = {.lex_state = 1051}, - [5462] = {.lex_state = 1051}, - [5463] = {.lex_state = 1051}, - [5464] = {.lex_state = 54}, - [5465] = {.lex_state = 515}, - [5466] = {.lex_state = 995}, - [5467] = {.lex_state = 441}, - [5468] = {.lex_state = 403}, - [5469] = {.lex_state = 54}, - [5470] = {.lex_state = 54}, - [5471] = {.lex_state = 54}, - [5472] = {.lex_state = 1051}, - [5473] = {.lex_state = 440}, - [5474] = {.lex_state = 995}, - [5475] = {.lex_state = 112}, - [5476] = {.lex_state = 446}, - [5477] = {.lex_state = 54}, - [5478] = {.lex_state = 54}, - [5479] = {.lex_state = 54}, - [5480] = {.lex_state = 441}, - [5481] = {.lex_state = 54}, - [5482] = {.lex_state = 54}, - [5483] = {.lex_state = 54}, - [5484] = {.lex_state = 995}, - [5485] = {.lex_state = 4836}, - [5486] = {.lex_state = 4656}, - [5487] = {.lex_state = 4656}, - [5488] = {.lex_state = 460}, - [5489] = {.lex_state = 499}, - [5490] = {.lex_state = 462}, - [5491] = {.lex_state = 54}, - [5492] = {.lex_state = 181}, - [5493] = {.lex_state = 4219}, - [5494] = {.lex_state = 4219}, - [5495] = {.lex_state = 478}, - [5496] = {.lex_state = 4656}, - [5497] = {.lex_state = 418}, - [5498] = {.lex_state = 447}, - [5499] = {.lex_state = 4656}, - [5500] = {.lex_state = 447}, - [5501] = {.lex_state = 54}, - [5502] = {.lex_state = 447}, - [5503] = {.lex_state = 4656}, - [5504] = {.lex_state = 4656}, - [5505] = {.lex_state = 4219}, - [5506] = {.lex_state = 4219}, - [5507] = {.lex_state = 181}, - [5508] = {.lex_state = 447}, - [5509] = {.lex_state = 447}, - [5510] = {.lex_state = 4219}, - [5511] = {.lex_state = 4219}, - [5512] = {.lex_state = 995}, - [5513] = {.lex_state = 526}, - [5514] = {.lex_state = 526}, - [5515] = {.lex_state = 498}, - [5516] = {.lex_state = 4836}, - [5517] = {.lex_state = 4836}, - [5518] = {.lex_state = 995}, - [5519] = {.lex_state = 492}, - [5520] = {.lex_state = 492}, - [5521] = {.lex_state = 478}, - [5522] = {.lex_state = 418}, - [5523] = {.lex_state = 181}, - [5524] = {.lex_state = 418}, - [5525] = {.lex_state = 402}, - [5526] = {.lex_state = 4836}, - [5527] = {.lex_state = 500}, - [5528] = {.lex_state = 498}, - [5529] = {.lex_state = 54}, - [5530] = {.lex_state = 493}, - [5531] = {.lex_state = 448}, - [5532] = {.lex_state = 126}, - [5533] = {.lex_state = 418}, - [5534] = {.lex_state = 126}, - [5535] = {.lex_state = 4656}, - [5536] = {.lex_state = 4656}, - [5537] = {.lex_state = 4219}, - [5538] = {.lex_state = 4219}, - [5539] = {.lex_state = 448}, - [5540] = {.lex_state = 448}, - [5541] = {.lex_state = 4219}, - [5542] = {.lex_state = 4219}, - [5543] = {.lex_state = 181}, - [5544] = {.lex_state = 181}, - [5545] = {.lex_state = 181}, - [5546] = {.lex_state = 448}, - [5547] = {.lex_state = 448}, - [5548] = {.lex_state = 4836}, - [5549] = {.lex_state = 4836}, - [5550] = {.lex_state = 995}, - [5551] = {.lex_state = 995}, - [5552] = {.lex_state = 4219}, - [5553] = {.lex_state = 4219}, - [5554] = {.lex_state = 995}, + [5198] = {.lex_state = 466}, + [5199] = {.lex_state = 4454}, + [5200] = {.lex_state = 121}, + [5201] = {.lex_state = 357}, + [5202] = {.lex_state = 466}, + [5203] = {.lex_state = 400}, + [5204] = {.lex_state = 4634}, + [5205] = {.lex_state = 4036}, + [5206] = {.lex_state = 4036}, + [5207] = {.lex_state = 4634}, + [5208] = {.lex_state = 357}, + [5209] = {.lex_state = 433}, + [5210] = {.lex_state = 420}, + [5211] = {.lex_state = 49}, + [5212] = {.lex_state = 463}, + [5213] = {.lex_state = 44}, + [5214] = {.lex_state = 44}, + [5215] = {.lex_state = 432}, + [5216] = {.lex_state = 934}, + [5217] = {.lex_state = 357}, + [5218] = {.lex_state = 4036}, + [5219] = {.lex_state = 4036}, + [5220] = {.lex_state = 4036}, + [5221] = {.lex_state = 4036}, + [5222] = {.lex_state = 432}, + [5223] = {.lex_state = 44}, + [5224] = {.lex_state = 44}, + [5225] = {.lex_state = 463}, + [5226] = {.lex_state = 402}, + [5227] = {.lex_state = 388}, + [5228] = {.lex_state = 4454}, + [5229] = {.lex_state = 934}, + [5230] = {.lex_state = 934}, + [5231] = {.lex_state = 44}, + [5232] = {.lex_state = 343}, + [5233] = {.lex_state = 934}, + [5234] = {.lex_state = 357}, + [5235] = {.lex_state = 357}, + [5236] = {.lex_state = 439}, + [5237] = {.lex_state = 4454}, + [5238] = {.lex_state = 388}, + [5239] = {.lex_state = 4454}, + [5240] = {.lex_state = 44}, + [5241] = {.lex_state = 388}, + [5242] = {.lex_state = 121}, + [5243] = {.lex_state = 121}, + [5244] = {.lex_state = 4036}, + [5245] = {.lex_state = 4036}, + [5246] = {.lex_state = 4036}, + [5247] = {.lex_state = 456}, + [5248] = {.lex_state = 4036}, + [5249] = {.lex_state = 388}, + [5250] = {.lex_state = 49}, + [5251] = {.lex_state = 4036}, + [5252] = {.lex_state = 4036}, + [5253] = {.lex_state = 440}, + [5254] = {.lex_state = 81}, + [5255] = {.lex_state = 357}, + [5256] = {.lex_state = 104}, + [5257] = {.lex_state = 104}, + [5258] = {.lex_state = 104}, + [5259] = {.lex_state = 456}, + [5260] = {.lex_state = 467}, + [5261] = {.lex_state = 121}, + [5262] = {.lex_state = 121}, + [5263] = {.lex_state = 121}, + [5264] = {.lex_state = 461}, + [5265] = {.lex_state = 1041}, + [5266] = {.lex_state = 464}, + [5267] = {.lex_state = 441}, + [5268] = {.lex_state = 433}, + [5269] = {.lex_state = 121}, + [5270] = {.lex_state = 121}, + [5271] = {.lex_state = 474}, + [5272] = {.lex_state = 83}, + [5273] = {.lex_state = 121}, + [5274] = {.lex_state = 463}, + [5275] = {.lex_state = 121}, + [5276] = {.lex_state = 433}, + [5277] = {.lex_state = 44}, + [5278] = {.lex_state = 463}, + [5279] = {.lex_state = 121}, + [5280] = {.lex_state = 433}, + [5281] = {.lex_state = 121}, + [5282] = {.lex_state = 454}, + [5283] = {.lex_state = 121}, + [5284] = {.lex_state = 121}, + [5285] = {.lex_state = 121}, + [5286] = {.lex_state = 121}, + [5287] = {.lex_state = 121}, + [5288] = {.lex_state = 121}, + [5289] = {.lex_state = 467}, + [5290] = {.lex_state = 44}, + [5291] = {.lex_state = 121}, + [5292] = {.lex_state = 121}, + [5293] = {.lex_state = 121}, + [5294] = {.lex_state = 121}, + [5295] = {.lex_state = 467}, + [5296] = {.lex_state = 454}, + [5297] = {.lex_state = 121}, + [5298] = {.lex_state = 121}, + [5299] = {.lex_state = 421}, + [5300] = {.lex_state = 121}, + [5301] = {.lex_state = 463}, + [5302] = {.lex_state = 121}, + [5303] = {.lex_state = 121}, + [5304] = {.lex_state = 121}, + [5305] = {.lex_state = 121}, + [5306] = {.lex_state = 441}, + [5307] = {.lex_state = 121}, + [5308] = {.lex_state = 467}, + [5309] = {.lex_state = 76}, + [5310] = {.lex_state = 463}, + [5311] = {.lex_state = 121}, + [5312] = {.lex_state = 1037}, + [5313] = {.lex_state = 121}, + [5314] = {.lex_state = 72}, + [5315] = {.lex_state = 121}, + [5316] = {.lex_state = 468}, + [5317] = {.lex_state = 454}, + [5318] = {.lex_state = 463}, + [5319] = {.lex_state = 72}, + [5320] = {.lex_state = 403}, + [5321] = {.lex_state = 434}, + [5322] = {.lex_state = 121}, + [5323] = {.lex_state = 121}, + [5324] = {.lex_state = 454}, + [5325] = {.lex_state = 121}, + [5326] = {.lex_state = 121}, + [5327] = {.lex_state = 467}, + [5328] = {.lex_state = 121}, + [5329] = {.lex_state = 121}, + [5330] = {.lex_state = 44}, + [5331] = {.lex_state = 49}, + [5332] = {.lex_state = 121}, + [5333] = {.lex_state = 49}, + [5334] = {.lex_state = 121}, + [5335] = {.lex_state = 121}, + [5336] = {.lex_state = 121}, + [5337] = {.lex_state = 121}, + [5338] = {.lex_state = 75}, + [5339] = {.lex_state = 121}, + [5340] = {.lex_state = 121}, + [5341] = {.lex_state = 121}, + [5342] = {.lex_state = 403}, + [5343] = {.lex_state = 121}, + [5344] = {.lex_state = 121}, + [5345] = {.lex_state = 463}, + [5346] = {.lex_state = 121}, + [5347] = {.lex_state = 121}, + [5348] = {.lex_state = 83}, + [5349] = {.lex_state = 463}, + [5350] = {.lex_state = 454}, + [5351] = {.lex_state = 121}, + [5352] = {.lex_state = 433}, + [5353] = {.lex_state = 121}, + [5354] = {.lex_state = 121}, + [5355] = {.lex_state = 121}, + [5356] = {.lex_state = 121}, + [5357] = {.lex_state = 121}, + [5358] = {.lex_state = 463}, + [5359] = {.lex_state = 49}, + [5360] = {.lex_state = 49}, + [5361] = {.lex_state = 44}, + [5362] = {.lex_state = 470}, + [5363] = {.lex_state = 49}, + [5364] = {.lex_state = 401}, + [5365] = {.lex_state = 997}, + [5366] = {.lex_state = 105}, + [5367] = {.lex_state = 105}, + [5368] = {.lex_state = 105}, + [5369] = {.lex_state = 105}, + [5370] = {.lex_state = 105}, + [5371] = {.lex_state = 105}, + [5372] = {.lex_state = 105}, + [5373] = {.lex_state = 105}, + [5374] = {.lex_state = 105}, + [5375] = {.lex_state = 105}, + [5376] = {.lex_state = 105}, + [5377] = {.lex_state = 105}, + [5378] = {.lex_state = 105}, + [5379] = {.lex_state = 105}, + [5380] = {.lex_state = 105}, + [5381] = {.lex_state = 105}, + [5382] = {.lex_state = 105}, + [5383] = {.lex_state = 105}, + [5384] = {.lex_state = 1036}, + [5385] = {.lex_state = 1037}, + [5386] = {.lex_state = 1036}, + [5387] = {.lex_state = 103}, + [5388] = {.lex_state = 934}, + [5389] = {.lex_state = 934}, + [5390] = {.lex_state = 934}, + [5391] = {.lex_state = 934}, + [5392] = {.lex_state = 934}, + [5393] = {.lex_state = 934}, + [5394] = {.lex_state = 934}, + [5395] = {.lex_state = 934}, + [5396] = {.lex_state = 934}, + [5397] = {.lex_state = 934}, + [5398] = {.lex_state = 934}, + [5399] = {.lex_state = 934}, + [5400] = {.lex_state = 934}, + [5401] = {.lex_state = 934}, + [5402] = {.lex_state = 934}, + [5403] = {.lex_state = 934}, + [5404] = {.lex_state = 934}, + [5405] = {.lex_state = 934}, + [5406] = {.lex_state = 934}, + [5407] = {.lex_state = 934}, + [5408] = {.lex_state = 934}, + [5409] = {.lex_state = 934}, + [5410] = {.lex_state = 401}, + [5411] = {.lex_state = 442}, + [5412] = {.lex_state = 49}, + [5413] = {.lex_state = 49}, + [5414] = {.lex_state = 49}, + [5415] = {.lex_state = 49}, + [5416] = {.lex_state = 84}, + [5417] = {.lex_state = 49}, + [5418] = {.lex_state = 49}, + [5419] = {.lex_state = 49}, + [5420] = {.lex_state = 934}, + [5421] = {.lex_state = 934}, + [5422] = {.lex_state = 934}, + [5423] = {.lex_state = 442}, + [5424] = {.lex_state = 463}, + [5425] = {.lex_state = 463}, + [5426] = {.lex_state = 84}, + [5427] = {.lex_state = 934}, + [5428] = {.lex_state = 44}, + [5429] = {.lex_state = 77}, + [5430] = {.lex_state = 475}, + [5431] = {.lex_state = 84}, + [5432] = {.lex_state = 934}, + [5433] = {.lex_state = 84}, + [5434] = {.lex_state = 480}, + [5435] = {.lex_state = 1041}, + [5436] = {.lex_state = 49}, + [5437] = {.lex_state = 1036}, + [5438] = {.lex_state = 435}, + [5439] = {.lex_state = 49}, + [5440] = {.lex_state = 1061}, + [5441] = {.lex_state = 462}, + [5442] = {.lex_state = 44}, + [5443] = {.lex_state = 44}, + [5444] = {.lex_state = 480}, + [5445] = {.lex_state = 435}, + [5446] = {.lex_state = 463}, + [5447] = {.lex_state = 463}, + [5448] = {.lex_state = 49}, + [5449] = {.lex_state = 480}, + [5450] = {.lex_state = 49}, + [5451] = {.lex_state = 442}, + [5452] = {.lex_state = 934}, + [5453] = {.lex_state = 934}, + [5454] = {.lex_state = 934}, + [5455] = {.lex_state = 463}, + [5456] = {.lex_state = 77}, + [5457] = {.lex_state = 49}, + [5458] = {.lex_state = 1036}, + [5459] = {.lex_state = 49}, + [5460] = {.lex_state = 49}, + [5461] = {.lex_state = 44}, + [5462] = {.lex_state = 44}, + [5463] = {.lex_state = 44}, + [5464] = {.lex_state = 44}, + [5465] = {.lex_state = 49}, + [5466] = {.lex_state = 469}, + [5467] = {.lex_state = 49}, + [5468] = {.lex_state = 463}, + [5469] = {.lex_state = 1061}, + [5470] = {.lex_state = 84}, + [5471] = {.lex_state = 463}, + [5472] = {.lex_state = 463}, + [5473] = {.lex_state = 44}, + [5474] = {.lex_state = 480}, + [5475] = {.lex_state = 463}, + [5476] = {.lex_state = 1038}, + [5477] = {.lex_state = 49}, + [5478] = {.lex_state = 934}, + [5479] = {.lex_state = 934}, + [5480] = {.lex_state = 1038}, + [5481] = {.lex_state = 49}, + [5482] = {.lex_state = 442}, + [5483] = {.lex_state = 103}, + [5484] = {.lex_state = 49}, + [5485] = {.lex_state = 103}, + [5486] = {.lex_state = 401}, + [5487] = {.lex_state = 49}, + [5488] = {.lex_state = 424}, + [5489] = {.lex_state = 1061}, + [5490] = {.lex_state = 475}, + [5491] = {.lex_state = 44}, + [5492] = {.lex_state = 470}, + [5493] = {.lex_state = 401}, + [5494] = {.lex_state = 1061}, + [5495] = {.lex_state = 1061}, + [5496] = {.lex_state = 44}, + [5497] = {.lex_state = 49}, + [5498] = {.lex_state = 1039}, + [5499] = {.lex_state = 49}, + [5500] = {.lex_state = 49}, + [5501] = {.lex_state = 401}, + [5502] = {.lex_state = 44}, + [5503] = {.lex_state = 471}, + [5504] = {.lex_state = 934}, + [5505] = {.lex_state = 79}, + [5506] = {.lex_state = 1061}, + [5507] = {.lex_state = 480}, + [5508] = {.lex_state = 480}, + [5509] = {.lex_state = 471}, + [5510] = {.lex_state = 934}, + [5511] = {.lex_state = 471}, + [5512] = {.lex_state = 480}, + [5513] = {.lex_state = 78}, + [5514] = {.lex_state = 480}, + [5515] = {.lex_state = 134}, + [5516] = {.lex_state = 436}, + [5517] = {.lex_state = 476}, + [5518] = {.lex_state = 463}, + [5519] = {.lex_state = 78}, + [5520] = {.lex_state = 476}, + [5521] = {.lex_state = 480}, + [5522] = {.lex_state = 934}, + [5523] = {.lex_state = 934}, + [5524] = {.lex_state = 476}, + [5525] = {.lex_state = 44}, + [5526] = {.lex_state = 997}, + [5527] = {.lex_state = 1061}, + [5528] = {.lex_state = 480}, + [5529] = {.lex_state = 1061}, + [5530] = {.lex_state = 134}, + [5531] = {.lex_state = 934}, + [5532] = {.lex_state = 934}, + [5533] = {.lex_state = 472}, + [5534] = {.lex_state = 463}, + [5535] = {.lex_state = 480}, + [5536] = {.lex_state = 78}, + [5537] = {.lex_state = 480}, + [5538] = {.lex_state = 934}, + [5539] = {.lex_state = 44}, + [5540] = {.lex_state = 480}, + [5541] = {.lex_state = 480}, + [5542] = {.lex_state = 480}, + [5543] = {.lex_state = 99}, + [5544] = {.lex_state = 480}, + [5545] = {.lex_state = 480}, + [5546] = {.lex_state = 480}, + [5547] = {.lex_state = 1038}, + [5548] = {.lex_state = 44}, + [5549] = {.lex_state = 480}, + [5550] = {.lex_state = 472}, + [5551] = {.lex_state = 480}, + [5552] = {.lex_state = 480}, + [5553] = {.lex_state = 105}, + [5554] = {.lex_state = 480}, [5555] = {.lex_state = 480}, - [5556] = {.lex_state = 54}, - [5557] = {.lex_state = 4656}, - [5558] = {.lex_state = 4219}, - [5559] = {.lex_state = 4219}, - [5560] = {.lex_state = 4219}, - [5561] = {.lex_state = 4219}, - [5562] = {.lex_state = 4219}, - [5563] = {.lex_state = 4219}, - [5564] = {.lex_state = 403}, - [5565] = {.lex_state = 516}, - [5566] = {.lex_state = 418}, - [5567] = {.lex_state = 516}, - [5568] = {.lex_state = 138}, - [5569] = {.lex_state = 139}, - [5570] = {.lex_state = 403}, - [5571] = {.lex_state = 181}, - [5572] = {.lex_state = 181}, - [5573] = {.lex_state = 418}, - [5574] = {.lex_state = 418}, - [5575] = {.lex_state = 402}, - [5576] = {.lex_state = 181}, - [5577] = {.lex_state = 499}, - [5578] = {.lex_state = 181}, - [5579] = {.lex_state = 463}, - [5580] = {.lex_state = 181}, - [5581] = {.lex_state = 181}, - [5582] = {.lex_state = 181}, - [5583] = {.lex_state = 481}, - [5584] = {.lex_state = 527}, - [5585] = {.lex_state = 181}, - [5586] = {.lex_state = 528}, - [5587] = {.lex_state = 499}, - [5588] = {.lex_state = 181}, - [5589] = {.lex_state = 181}, - [5590] = {.lex_state = 54}, - [5591] = {.lex_state = 54}, - [5592] = {.lex_state = 494}, - [5593] = {.lex_state = 402}, - [5594] = {.lex_state = 54}, - [5595] = {.lex_state = 402}, - [5596] = {.lex_state = 181}, - [5597] = {.lex_state = 54}, - [5598] = {.lex_state = 118}, - [5599] = {.lex_state = 181}, - [5600] = {.lex_state = 181}, - [5601] = {.lex_state = 54}, - [5602] = {.lex_state = 54}, - [5603] = {.lex_state = 54}, - [5604] = {.lex_state = 54}, - [5605] = {.lex_state = 54}, - [5606] = {.lex_state = 54}, - [5607] = {.lex_state = 501}, - [5608] = {.lex_state = 54}, - [5609] = {.lex_state = 499}, - [5610] = {.lex_state = 54}, - [5611] = {.lex_state = 181}, - [5612] = {.lex_state = 54}, - [5613] = {.lex_state = 181}, - [5614] = {.lex_state = 54}, - [5615] = {.lex_state = 181}, - [5616] = {.lex_state = 54}, - [5617] = {.lex_state = 54}, - [5618] = {.lex_state = 54}, - [5619] = {.lex_state = 118}, - [5620] = {.lex_state = 181}, - [5621] = {.lex_state = 54}, - [5622] = {.lex_state = 527}, - [5623] = {.lex_state = 54}, - [5624] = {.lex_state = 54}, - [5625] = {.lex_state = 181}, - [5626] = {.lex_state = 54}, - [5627] = {.lex_state = 181}, - [5628] = {.lex_state = 132}, - [5629] = {.lex_state = 181}, - [5630] = {.lex_state = 181}, - [5631] = {.lex_state = 54}, - [5632] = {.lex_state = 524}, - [5633] = {.lex_state = 54}, - [5634] = {.lex_state = 534}, - [5635] = {.lex_state = 181}, - [5636] = {.lex_state = 527}, - [5637] = {.lex_state = 181}, - [5638] = {.lex_state = 181}, - [5639] = {.lex_state = 54}, - [5640] = {.lex_state = 54}, - [5641] = {.lex_state = 527}, - [5642] = {.lex_state = 181}, - [5643] = {.lex_state = 181}, - [5644] = {.lex_state = 181}, - [5645] = {.lex_state = 527}, - [5646] = {.lex_state = 181}, - [5647] = {.lex_state = 1101}, - [5648] = {.lex_state = 478}, - [5649] = {.lex_state = 181}, - [5650] = {.lex_state = 499}, - [5651] = {.lex_state = 514}, - [5652] = {.lex_state = 181}, - [5653] = {.lex_state = 181}, - [5654] = {.lex_state = 54}, - [5655] = {.lex_state = 181}, - [5656] = {.lex_state = 181}, - [5657] = {.lex_state = 181}, - [5658] = {.lex_state = 181}, - [5659] = {.lex_state = 181}, - [5660] = {.lex_state = 181}, - [5661] = {.lex_state = 514}, - [5662] = {.lex_state = 54}, - [5663] = {.lex_state = 181}, - [5664] = {.lex_state = 181}, - [5665] = {.lex_state = 463}, - [5666] = {.lex_state = 181}, - [5667] = {.lex_state = 181}, - [5668] = {.lex_state = 514}, - [5669] = {.lex_state = 181}, - [5670] = {.lex_state = 181}, - [5671] = {.lex_state = 493}, - [5672] = {.lex_state = 514}, - [5673] = {.lex_state = 181}, - [5674] = {.lex_state = 514}, - [5675] = {.lex_state = 131}, - [5676] = {.lex_state = 140}, - [5677] = {.lex_state = 521}, - [5678] = {.lex_state = 140}, - [5679] = {.lex_state = 1097}, - [5680] = {.lex_state = 493}, - [5681] = {.lex_state = 54}, - [5682] = {.lex_state = 54}, - [5683] = {.lex_state = 54}, - [5684] = {.lex_state = 54}, - [5685] = {.lex_state = 478}, - [5686] = {.lex_state = 54}, - [5687] = {.lex_state = 493}, - [5688] = {.lex_state = 54}, - [5689] = {.lex_state = 54}, - [5690] = {.lex_state = 54}, - [5691] = {.lex_state = 54}, - [5692] = {.lex_state = 54}, - [5693] = {.lex_state = 54}, - [5694] = {.lex_state = 54}, - [5695] = {.lex_state = 181}, - [5696] = {.lex_state = 181}, - [5697] = {.lex_state = 181}, - [5698] = {.lex_state = 181}, - [5699] = {.lex_state = 181}, - [5700] = {.lex_state = 181}, - [5701] = {.lex_state = 493}, - [5702] = {.lex_state = 501}, - [5703] = {.lex_state = 181}, - [5704] = {.lex_state = 181}, - [5705] = {.lex_state = 181}, - [5706] = {.lex_state = 181}, - [5707] = {.lex_state = 535}, - [5708] = {.lex_state = 995}, - [5709] = {.lex_state = 54}, - [5710] = {.lex_state = 54}, - [5711] = {.lex_state = 402}, - [5712] = {.lex_state = 402}, - [5713] = {.lex_state = 995}, - [5714] = {.lex_state = 995}, - [5715] = {.lex_state = 402}, - [5716] = {.lex_state = 1092}, - [5717] = {.lex_state = 502}, - [5718] = {.lex_state = 523}, - [5719] = {.lex_state = 133}, - [5720] = {.lex_state = 530}, - [5721] = {.lex_state = 141}, - [5722] = {.lex_state = 1092}, - [5723] = {.lex_state = 1092}, - [5724] = {.lex_state = 1092}, - [5725] = {.lex_state = 1092}, - [5726] = {.lex_state = 1092}, - [5727] = {.lex_state = 1092}, - [5728] = {.lex_state = 1092}, - [5729] = {.lex_state = 1092}, - [5730] = {.lex_state = 1092}, - [5731] = {.lex_state = 1092}, - [5732] = {.lex_state = 1092}, - [5733] = {.lex_state = 1092}, - [5734] = {.lex_state = 1092}, - [5735] = {.lex_state = 1092}, - [5736] = {.lex_state = 1092}, - [5737] = {.lex_state = 1092}, - [5738] = {.lex_state = 1092}, - [5739] = {.lex_state = 1092}, - [5740] = {.lex_state = 1092}, - [5741] = {.lex_state = 461}, - [5742] = {.lex_state = 1092}, - [5743] = {.lex_state = 1059}, - [5744] = {.lex_state = 995}, - [5745] = {.lex_state = 995}, - [5746] = {.lex_state = 995}, - [5747] = {.lex_state = 995}, - [5748] = {.lex_state = 995}, - [5749] = {.lex_state = 995}, - [5750] = {.lex_state = 995}, - [5751] = {.lex_state = 995}, - [5752] = {.lex_state = 995}, - [5753] = {.lex_state = 995}, - [5754] = {.lex_state = 995}, - [5755] = {.lex_state = 995}, - [5756] = {.lex_state = 995}, - [5757] = {.lex_state = 995}, - [5758] = {.lex_state = 995}, - [5759] = {.lex_state = 995}, - [5760] = {.lex_state = 995}, - [5761] = {.lex_state = 995}, - [5762] = {.lex_state = 995}, - [5763] = {.lex_state = 995}, - [5764] = {.lex_state = 995}, - [5765] = {.lex_state = 995}, - [5766] = {.lex_state = 495}, - [5767] = {.lex_state = 522}, - [5768] = {.lex_state = 502}, - [5769] = {.lex_state = 523}, - [5770] = {.lex_state = 995}, - [5771] = {.lex_state = 523}, - [5772] = {.lex_state = 995}, - [5773] = {.lex_state = 461}, - [5774] = {.lex_state = 402}, - [5775] = {.lex_state = 402}, - [5776] = {.lex_state = 495}, - [5777] = {.lex_state = 502}, - [5778] = {.lex_state = 530}, - [5779] = {.lex_state = 523}, - [5780] = {.lex_state = 1101}, - [5781] = {.lex_state = 402}, - [5782] = {.lex_state = 54}, - [5783] = {.lex_state = 1099}, - [5784] = {.lex_state = 461}, - [5785] = {.lex_state = 995}, - [5786] = {.lex_state = 54}, - [5787] = {.lex_state = 535}, - [5788] = {.lex_state = 402}, - [5789] = {.lex_state = 54}, - [5790] = {.lex_state = 1121}, - [5791] = {.lex_state = 1097}, - [5792] = {.lex_state = 402}, - [5793] = {.lex_state = 461}, - [5794] = {.lex_state = 995}, - [5795] = {.lex_state = 995}, - [5796] = {.lex_state = 1057}, - [5797] = {.lex_state = 461}, - [5798] = {.lex_state = 402}, - [5799] = {.lex_state = 402}, - [5800] = {.lex_state = 133}, - [5801] = {.lex_state = 523}, - [5802] = {.lex_state = 484}, - [5803] = {.lex_state = 141}, - [5804] = {.lex_state = 1121}, - [5805] = {.lex_state = 54}, - [5806] = {.lex_state = 141}, - [5807] = {.lex_state = 1121}, - [5808] = {.lex_state = 1121}, - [5809] = {.lex_state = 54}, - [5810] = {.lex_state = 141}, - [5811] = {.lex_state = 141}, - [5812] = {.lex_state = 402}, - [5813] = {.lex_state = 402}, - [5814] = {.lex_state = 54}, - [5815] = {.lex_state = 402}, - [5816] = {.lex_state = 402}, - [5817] = {.lex_state = 1098}, - [5818] = {.lex_state = 402}, - [5819] = {.lex_state = 402}, - [5820] = {.lex_state = 1098}, - [5821] = {.lex_state = 995}, - [5822] = {.lex_state = 995}, - [5823] = {.lex_state = 402}, - [5824] = {.lex_state = 402}, - [5825] = {.lex_state = 402}, - [5826] = {.lex_state = 402}, - [5827] = {.lex_state = 402}, - [5828] = {.lex_state = 402}, - [5829] = {.lex_state = 402}, - [5830] = {.lex_state = 502}, - [5831] = {.lex_state = 1121}, - [5832] = {.lex_state = 529}, - [5833] = {.lex_state = 402}, - [5834] = {.lex_state = 54}, - [5835] = {.lex_state = 402}, - [5836] = {.lex_state = 402}, - [5837] = {.lex_state = 54}, - [5838] = {.lex_state = 1121}, - [5839] = {.lex_state = 488}, - [5840] = {.lex_state = 1057}, - [5841] = {.lex_state = 488}, - [5842] = {.lex_state = 194}, - [5843] = {.lex_state = 496}, - [5844] = {.lex_state = 995}, - [5845] = {.lex_state = 478}, - [5846] = {.lex_state = 134}, - [5847] = {.lex_state = 54}, - [5848] = {.lex_state = 1098}, - [5849] = {.lex_state = 478}, - [5850] = {.lex_state = 995}, - [5851] = {.lex_state = 478}, - [5852] = {.lex_state = 488}, - [5853] = {.lex_state = 502}, - [5854] = {.lex_state = 995}, - [5855] = {.lex_state = 488}, - [5856] = {.lex_state = 488}, - [5857] = {.lex_state = 995}, - [5858] = {.lex_state = 995}, - [5859] = {.lex_state = 531}, - [5860] = {.lex_state = 995}, - [5861] = {.lex_state = 995}, - [5862] = {.lex_state = 403}, - [5863] = {.lex_state = 496}, - [5864] = {.lex_state = 1121}, - [5865] = {.lex_state = 995}, - [5866] = {.lex_state = 488}, - [5867] = {.lex_state = 995}, - [5868] = {.lex_state = 496}, - [5869] = {.lex_state = 1121}, - [5870] = {.lex_state = 1121}, - [5871] = {.lex_state = 134}, - [5872] = {.lex_state = 488}, - [5873] = {.lex_state = 531}, - [5874] = {.lex_state = 488}, - [5875] = {.lex_state = 488}, - [5876] = {.lex_state = 1092}, - [5877] = {.lex_state = 512}, - [5878] = {.lex_state = 1099}, - [5879] = {.lex_state = 512}, - [5880] = {.lex_state = 531}, - [5881] = {.lex_state = 496}, - [5882] = {.lex_state = 54}, - [5883] = {.lex_state = 995}, - [5884] = {.lex_state = 159}, - [5885] = {.lex_state = 531}, - [5886] = {.lex_state = 159}, - [5887] = {.lex_state = 536}, - [5888] = {.lex_state = 54}, - [5889] = {.lex_state = 488}, - [5890] = {.lex_state = 995}, - [5891] = {.lex_state = 488}, - [5892] = {.lex_state = 54}, - [5893] = {.lex_state = 134}, - [5894] = {.lex_state = 995}, - [5895] = {.lex_state = 995}, - [5896] = {.lex_state = 488}, - [5897] = {.lex_state = 488}, - [5898] = {.lex_state = 1092}, - [5899] = {.lex_state = 1092}, - [5900] = {.lex_state = 995}, - [5901] = {.lex_state = 488}, - [5902] = {.lex_state = 531}, - [5903] = {.lex_state = 536}, - [5904] = {.lex_state = 54}, - [5905] = {.lex_state = 995}, - [5906] = {.lex_state = 134}, - [5907] = {.lex_state = 536}, - [5908] = {.lex_state = 54}, - [5909] = {.lex_state = 1121}, - [5910] = {.lex_state = 1092}, - [5911] = {.lex_state = 1059}, - [5912] = {.lex_state = 1059}, - [5913] = {.lex_state = 1098}, - [5914] = {.lex_state = 496}, - [5915] = {.lex_state = 541}, - [5916] = {.lex_state = 54}, - [5917] = {.lex_state = 1092}, - [5918] = {.lex_state = 536}, - [5919] = {.lex_state = 995}, - [5920] = {.lex_state = 488}, - [5921] = {.lex_state = 488}, - [5922] = {.lex_state = 488}, - [5923] = {.lex_state = 488}, - [5924] = {.lex_state = 541}, - [5925] = {.lex_state = 532}, - [5926] = {.lex_state = 488}, - [5927] = {.lex_state = 403}, - [5928] = {.lex_state = 488}, - [5929] = {.lex_state = 536}, - [5930] = {.lex_state = 531}, - [5931] = {.lex_state = 496}, - [5932] = {.lex_state = 502}, - [5933] = {.lex_state = 488}, - [5934] = {.lex_state = 532}, - [5935] = {.lex_state = 403}, - [5936] = {.lex_state = 995}, - [5937] = {.lex_state = 995}, - [5938] = {.lex_state = 995}, - [5939] = {.lex_state = 488}, - [5940] = {.lex_state = 488}, - [5941] = {.lex_state = 488}, - [5942] = {.lex_state = 488}, - [5943] = {.lex_state = 488}, - [5944] = {.lex_state = 54}, - [5945] = {.lex_state = 1019}, - [5946] = {.lex_state = 421}, - [5947] = {.lex_state = 159}, - [5948] = {.lex_state = 543}, - [5949] = {.lex_state = 1019}, - [5950] = {.lex_state = 1019}, - [5951] = {.lex_state = 1019}, - [5952] = {.lex_state = 1019}, - [5953] = {.lex_state = 430}, - [5954] = {.lex_state = 4220}, - [5955] = {.lex_state = 4220}, - [5956] = {.lex_state = 430}, - [5957] = {.lex_state = 1019}, - [5958] = {.lex_state = 1019}, - [5959] = {.lex_state = 1019}, - [5960] = {.lex_state = 1019}, - [5961] = {.lex_state = 1019}, - [5962] = {.lex_state = 421}, - [5963] = {.lex_state = 159}, - [5964] = {.lex_state = 4220}, - [5965] = {.lex_state = 459}, - [5966] = {.lex_state = 488}, - [5967] = {.lex_state = 430}, - [5968] = {.lex_state = 4220}, - [5969] = {.lex_state = 4220}, - [5970] = {.lex_state = 430}, - [5971] = {.lex_state = 1019}, - [5972] = {.lex_state = 1019}, - [5973] = {.lex_state = 1019}, - [5974] = {.lex_state = 995}, - [5975] = {.lex_state = 1019}, - [5976] = {.lex_state = 421}, - [5977] = {.lex_state = 506}, - [5978] = {.lex_state = 430}, - [5979] = {.lex_state = 995}, - [5980] = {.lex_state = 4220}, - [5981] = {.lex_state = 4220}, - [5982] = {.lex_state = 430}, - [5983] = {.lex_state = 488}, - [5984] = {.lex_state = 497}, - [5985] = {.lex_state = 1019}, - [5986] = {.lex_state = 421}, - [5987] = {.lex_state = 1019}, - [5988] = {.lex_state = 1019}, - [5989] = {.lex_state = 430}, - [5990] = {.lex_state = 4220}, - [5991] = {.lex_state = 4220}, - [5992] = {.lex_state = 430}, - [5993] = {.lex_state = 421}, - [5994] = {.lex_state = 1019}, - [5995] = {.lex_state = 995}, - [5996] = {.lex_state = 1019}, - [5997] = {.lex_state = 421}, - [5998] = {.lex_state = 537}, - [5999] = {.lex_state = 1019}, - [6000] = {.lex_state = 573}, - [6001] = {.lex_state = 430}, - [6002] = {.lex_state = 4220}, - [6003] = {.lex_state = 4220}, - [6004] = {.lex_state = 430}, - [6005] = {.lex_state = 1019}, - [6006] = {.lex_state = 995}, - [6007] = {.lex_state = 126}, - [6008] = {.lex_state = 4220}, - [6009] = {.lex_state = 1019}, - [6010] = {.lex_state = 421}, - [6011] = {.lex_state = 126}, - [6012] = {.lex_state = 4220}, - [6013] = {.lex_state = 430}, - [6014] = {.lex_state = 4220}, - [6015] = {.lex_state = 4220}, - [6016] = {.lex_state = 1019}, - [6017] = {.lex_state = 430}, - [6018] = {.lex_state = 1019}, - [6019] = {.lex_state = 4220}, - [6020] = {.lex_state = 1019}, - [6021] = {.lex_state = 421}, - [6022] = {.lex_state = 553}, - [6023] = {.lex_state = 4220}, - [6024] = {.lex_state = 497}, - [6025] = {.lex_state = 54}, - [6026] = {.lex_state = 430}, - [6027] = {.lex_state = 488}, - [6028] = {.lex_state = 430}, - [6029] = {.lex_state = 194}, - [6030] = {.lex_state = 1019}, - [6031] = {.lex_state = 54}, - [6032] = {.lex_state = 430}, - [6033] = {.lex_state = 4220}, - [6034] = {.lex_state = 1019}, - [6035] = {.lex_state = 4220}, - [6036] = {.lex_state = 421}, - [6037] = {.lex_state = 4220}, - [6038] = {.lex_state = 488}, - [6039] = {.lex_state = 995}, - [6040] = {.lex_state = 430}, - [6041] = {.lex_state = 430}, - [6042] = {.lex_state = 1019}, - [6043] = {.lex_state = 1019}, - [6044] = {.lex_state = 995}, - [6045] = {.lex_state = 1019}, - [6046] = {.lex_state = 421}, - [6047] = {.lex_state = 1019}, - [6048] = {.lex_state = 573}, - [6049] = {.lex_state = 430}, - [6050] = {.lex_state = 430}, - [6051] = {.lex_state = 1019}, - [6052] = {.lex_state = 995}, - [6053] = {.lex_state = 1019}, - [6054] = {.lex_state = 421}, - [6055] = {.lex_state = 490}, - [6056] = {.lex_state = 995}, - [6057] = {.lex_state = 430}, - [6058] = {.lex_state = 1019}, - [6059] = {.lex_state = 430}, - [6060] = {.lex_state = 1019}, - [6061] = {.lex_state = 1019}, - [6062] = {.lex_state = 421}, - [6063] = {.lex_state = 403}, - [6064] = {.lex_state = 430}, - [6065] = {.lex_state = 430}, - [6066] = {.lex_state = 1019}, - [6067] = {.lex_state = 1019}, - [6068] = {.lex_state = 421}, - [6069] = {.lex_state = 403}, - [6070] = {.lex_state = 430}, - [6071] = {.lex_state = 430}, - [6072] = {.lex_state = 1019}, - [6073] = {.lex_state = 1019}, - [6074] = {.lex_state = 421}, - [6075] = {.lex_state = 1019}, - [6076] = {.lex_state = 497}, - [6077] = {.lex_state = 512}, - [6078] = {.lex_state = 1019}, - [6079] = {.lex_state = 1019}, - [6080] = {.lex_state = 421}, - [6081] = {.lex_state = 1019}, - [6082] = {.lex_state = 1019}, - [6083] = {.lex_state = 1019}, - [6084] = {.lex_state = 421}, - [6085] = {.lex_state = 430}, - [6086] = {.lex_state = 1019}, - [6087] = {.lex_state = 1019}, - [6088] = {.lex_state = 421}, - [6089] = {.lex_state = 1019}, - [6090] = {.lex_state = 1019}, - [6091] = {.lex_state = 421}, - [6092] = {.lex_state = 421}, - [6093] = {.lex_state = 995}, - [6094] = {.lex_state = 421}, - [6095] = {.lex_state = 421}, - [6096] = {.lex_state = 421}, - [6097] = {.lex_state = 421}, - [6098] = {.lex_state = 421}, - [6099] = {.lex_state = 421}, - [6100] = {.lex_state = 421}, - [6101] = {.lex_state = 421}, - [6102] = {.lex_state = 421}, - [6103] = {.lex_state = 421}, - [6104] = {.lex_state = 421}, - [6105] = {.lex_state = 421}, - [6106] = {.lex_state = 421}, - [6107] = {.lex_state = 421}, - [6108] = {.lex_state = 421}, - [6109] = {.lex_state = 421}, - [6110] = {.lex_state = 421}, - [6111] = {.lex_state = 421}, - [6112] = {.lex_state = 421}, - [6113] = {.lex_state = 421}, - [6114] = {.lex_state = 421}, - [6115] = {.lex_state = 421}, - [6116] = {.lex_state = 421}, - [6117] = {.lex_state = 421}, - [6118] = {.lex_state = 421}, - [6119] = {.lex_state = 430}, - [6120] = {.lex_state = 1019}, - [6121] = {.lex_state = 1057}, - [6122] = {.lex_state = 533}, - [6123] = {.lex_state = 403}, - [6124] = {.lex_state = 403}, - [6125] = {.lex_state = 403}, - [6126] = {.lex_state = 403}, - [6127] = {.lex_state = 1019}, - [6128] = {.lex_state = 995}, - [6129] = {.lex_state = 512}, - [6130] = {.lex_state = 430}, - [6131] = {.lex_state = 544}, - [6132] = {.lex_state = 1019}, - [6133] = {.lex_state = 452}, - [6134] = {.lex_state = 421}, - [6135] = {.lex_state = 497}, - [6136] = {.lex_state = 573}, - [6137] = {.lex_state = 573}, - [6138] = {.lex_state = 135}, - [6139] = {.lex_state = 458}, - [6140] = {.lex_state = 543}, - [6141] = {.lex_state = 538}, - [6142] = {.lex_state = 4220}, - [6143] = {.lex_state = 543}, - [6144] = {.lex_state = 4220}, - [6145] = {.lex_state = 451}, - [6146] = {.lex_state = 503}, - [6147] = {.lex_state = 488}, - [6148] = {.lex_state = 194}, - [6149] = {.lex_state = 430}, - [6150] = {.lex_state = 421}, - [6151] = {.lex_state = 4220}, - [6152] = {.lex_state = 4220}, - [6153] = {.lex_state = 430}, - [6154] = {.lex_state = 497}, - [6155] = {.lex_state = 4220}, - [6156] = {.lex_state = 4220}, - [6157] = {.lex_state = 1019}, - [6158] = {.lex_state = 430}, - [6159] = {.lex_state = 1019}, - [6160] = {.lex_state = 1019}, - [6161] = {.lex_state = 995}, - [6162] = {.lex_state = 159}, - [6163] = {.lex_state = 4220}, - [6164] = {.lex_state = 1019}, - [6165] = {.lex_state = 1019}, - [6166] = {.lex_state = 4220}, - [6167] = {.lex_state = 533}, - [6168] = {.lex_state = 573}, - [6169] = {.lex_state = 1019}, - [6170] = {.lex_state = 543}, - [6171] = {.lex_state = 1019}, - [6172] = {.lex_state = 421}, - [6173] = {.lex_state = 533}, - [6174] = {.lex_state = 488}, - [6175] = {.lex_state = 497}, - [6176] = {.lex_state = 488}, - [6177] = {.lex_state = 430}, - [6178] = {.lex_state = 533}, - [6179] = {.lex_state = 995}, - [6180] = {.lex_state = 1019}, - [6181] = {.lex_state = 497}, - [6182] = {.lex_state = 497}, - [6183] = {.lex_state = 1019}, - [6184] = {.lex_state = 430}, - [6185] = {.lex_state = 533}, - [6186] = {.lex_state = 533}, - [6187] = {.lex_state = 995}, - [6188] = {.lex_state = 995}, - [6189] = {.lex_state = 126}, - [6190] = {.lex_state = 4220}, - [6191] = {.lex_state = 4220}, - [6192] = {.lex_state = 497}, - [6193] = {.lex_state = 126}, - [6194] = {.lex_state = 126}, - [6195] = {.lex_state = 126}, - [6196] = {.lex_state = 430}, - [6197] = {.lex_state = 430}, - [6198] = {.lex_state = 1019}, - [6199] = {.lex_state = 421}, - [6200] = {.lex_state = 1019}, - [6201] = {.lex_state = 1019}, - [6202] = {.lex_state = 1019}, - [6203] = {.lex_state = 1019}, - [6204] = {.lex_state = 1059}, - [6205] = {.lex_state = 165}, - [6206] = {.lex_state = 1019}, - [6207] = {.lex_state = 134}, - [6208] = {.lex_state = 54}, - [6209] = {.lex_state = 54}, - [6210] = {.lex_state = 584}, - [6211] = {.lex_state = 584}, - [6212] = {.lex_state = 181}, - [6213] = {.lex_state = 584}, - [6214] = {.lex_state = 1019}, - [6215] = {.lex_state = 584}, - [6216] = {.lex_state = 134}, - [6217] = {.lex_state = 54}, - [6218] = {.lex_state = 584}, - [6219] = {.lex_state = 134}, - [6220] = {.lex_state = 1019}, - [6221] = {.lex_state = 1019}, - [6222] = {.lex_state = 584}, - [6223] = {.lex_state = 507}, - [6224] = {.lex_state = 584}, - [6225] = {.lex_state = 584}, - [6226] = {.lex_state = 165}, - [6227] = {.lex_state = 584}, - [6228] = {.lex_state = 584}, - [6229] = {.lex_state = 584}, - [6230] = {.lex_state = 584}, - [6231] = {.lex_state = 489}, - [6232] = {.lex_state = 512}, - [6233] = {.lex_state = 555}, - [6234] = {.lex_state = 584}, - [6235] = {.lex_state = 584}, - [6236] = {.lex_state = 584}, - [6237] = {.lex_state = 1020}, - [6238] = {.lex_state = 54}, - [6239] = {.lex_state = 1019}, - [6240] = {.lex_state = 1019}, - [6241] = {.lex_state = 584}, - [6242] = {.lex_state = 584}, - [6243] = {.lex_state = 584}, - [6244] = {.lex_state = 1019}, - [6245] = {.lex_state = 54}, - [6246] = {.lex_state = 584}, - [6247] = {.lex_state = 584}, - [6248] = {.lex_state = 159}, - [6249] = {.lex_state = 497}, - [6250] = {.lex_state = 54}, - [6251] = {.lex_state = 584}, - [6252] = {.lex_state = 584}, - [6253] = {.lex_state = 54}, - [6254] = {.lex_state = 454}, - [6255] = {.lex_state = 540}, - [6256] = {.lex_state = 584}, - [6257] = {.lex_state = 54}, - [6258] = {.lex_state = 584}, - [6259] = {.lex_state = 540}, - [6260] = {.lex_state = 54}, - [6261] = {.lex_state = 584}, - [6262] = {.lex_state = 54}, - [6263] = {.lex_state = 584}, - [6264] = {.lex_state = 488}, - [6265] = {.lex_state = 54}, - [6266] = {.lex_state = 584}, - [6267] = {.lex_state = 584}, - [6268] = {.lex_state = 54}, - [6269] = {.lex_state = 1019}, - [6270] = {.lex_state = 584}, - [6271] = {.lex_state = 584}, - [6272] = {.lex_state = 54}, - [6273] = {.lex_state = 497}, - [6274] = {.lex_state = 54}, - [6275] = {.lex_state = 54}, - [6276] = {.lex_state = 512}, - [6277] = {.lex_state = 555}, - [6278] = {.lex_state = 504}, - [6279] = {.lex_state = 545}, - [6280] = {.lex_state = 539}, - [6281] = {.lex_state = 54}, - [6282] = {.lex_state = 54}, - [6283] = {.lex_state = 1019}, - [6284] = {.lex_state = 1019}, - [6285] = {.lex_state = 1019}, - [6286] = {.lex_state = 54}, - [6287] = {.lex_state = 134}, - [6288] = {.lex_state = 1020}, - [6289] = {.lex_state = 54}, - [6290] = {.lex_state = 159}, - [6291] = {.lex_state = 54}, - [6292] = {.lex_state = 54}, - [6293] = {.lex_state = 512}, - [6294] = {.lex_state = 512}, - [6295] = {.lex_state = 403}, - [6296] = {.lex_state = 54}, - [6297] = {.lex_state = 1019}, - [6298] = {.lex_state = 1092}, - [6299] = {.lex_state = 1019}, - [6300] = {.lex_state = 456}, - [6301] = {.lex_state = 540}, - [6302] = {.lex_state = 403}, - [6303] = {.lex_state = 402}, - [6304] = {.lex_state = 402}, - [6305] = {.lex_state = 459}, - [6306] = {.lex_state = 509}, - [6307] = {.lex_state = 584}, - [6308] = {.lex_state = 54}, - [6309] = {.lex_state = 540}, - [6310] = {.lex_state = 54}, - [6311] = {.lex_state = 540}, - [6312] = {.lex_state = 181}, - [6313] = {.lex_state = 584}, - [6314] = {.lex_state = 1092}, - [6315] = {.lex_state = 1092}, - [6316] = {.lex_state = 54}, - [6317] = {.lex_state = 497}, - [6318] = {.lex_state = 1018}, - [6319] = {.lex_state = 1019}, - [6320] = {.lex_state = 1092}, - [6321] = {.lex_state = 403}, - [6322] = {.lex_state = 1019}, - [6323] = {.lex_state = 1019}, - [6324] = {.lex_state = 452}, - [6325] = {.lex_state = 403}, - [6326] = {.lex_state = 1019}, - [6327] = {.lex_state = 1019}, - [6328] = {.lex_state = 584}, - [6329] = {.lex_state = 1019}, - [6330] = {.lex_state = 1019}, - [6331] = {.lex_state = 1019}, - [6332] = {.lex_state = 1019}, - [6333] = {.lex_state = 1020}, - [6334] = {.lex_state = 1019}, - [6335] = {.lex_state = 1019}, - [6336] = {.lex_state = 1019}, - [6337] = {.lex_state = 1019}, - [6338] = {.lex_state = 54}, - [6339] = {.lex_state = 1019}, - [6340] = {.lex_state = 1019}, - [6341] = {.lex_state = 54}, - [6342] = {.lex_state = 1019}, - [6343] = {.lex_state = 1019}, - [6344] = {.lex_state = 1019}, - [6345] = {.lex_state = 1019}, - [6346] = {.lex_state = 545}, - [6347] = {.lex_state = 1019}, - [6348] = {.lex_state = 1019}, - [6349] = {.lex_state = 509}, - [6350] = {.lex_state = 1019}, - [6351] = {.lex_state = 1019}, - [6352] = {.lex_state = 504}, - [6353] = {.lex_state = 1019}, - [6354] = {.lex_state = 1019}, - [6355] = {.lex_state = 1019}, - [6356] = {.lex_state = 1019}, - [6357] = {.lex_state = 1019}, - [6358] = {.lex_state = 1019}, - [6359] = {.lex_state = 1019}, - [6360] = {.lex_state = 1019}, - [6361] = {.lex_state = 1019}, - [6362] = {.lex_state = 1019}, - [6363] = {.lex_state = 1019}, - [6364] = {.lex_state = 1019}, - [6365] = {.lex_state = 1019}, - [6366] = {.lex_state = 1019}, - [6367] = {.lex_state = 1019}, - [6368] = {.lex_state = 1019}, - [6369] = {.lex_state = 1019}, - [6370] = {.lex_state = 1019}, - [6371] = {.lex_state = 584}, - [6372] = {.lex_state = 54}, - [6373] = {.lex_state = 54}, - [6374] = {.lex_state = 584}, - [6375] = {.lex_state = 1059}, - [6376] = {.lex_state = 1059}, - [6377] = {.lex_state = 1059}, - [6378] = {.lex_state = 1059}, - [6379] = {.lex_state = 1059}, - [6380] = {.lex_state = 512}, - [6381] = {.lex_state = 1019}, - [6382] = {.lex_state = 554}, - [6383] = {.lex_state = 54}, - [6384] = {.lex_state = 1092}, - [6385] = {.lex_state = 556}, - [6386] = {.lex_state = 142}, - [6387] = {.lex_state = 518}, - [6388] = {.lex_state = 323}, - [6389] = {.lex_state = 54}, - [6390] = {.lex_state = 582}, - [6391] = {.lex_state = 135}, - [6392] = {.lex_state = 323}, - [6393] = {.lex_state = 323}, - [6394] = {.lex_state = 323}, - [6395] = {.lex_state = 323}, - [6396] = {.lex_state = 323}, - [6397] = {.lex_state = 323}, - [6398] = {.lex_state = 323}, - [6399] = {.lex_state = 323}, - [6400] = {.lex_state = 1019}, - [6401] = {.lex_state = 1019}, - [6402] = {.lex_state = 1019}, - [6403] = {.lex_state = 428}, - [6404] = {.lex_state = 562}, - [6405] = {.lex_state = 323}, - [6406] = {.lex_state = 428}, - [6407] = {.lex_state = 323}, - [6408] = {.lex_state = 323}, - [6409] = {.lex_state = 1019}, - [6410] = {.lex_state = 428}, - [6411] = {.lex_state = 1019}, - [6412] = {.lex_state = 323}, - [6413] = {.lex_state = 578}, - [6414] = {.lex_state = 1019}, - [6415] = {.lex_state = 582}, - [6416] = {.lex_state = 1019}, - [6417] = {.lex_state = 159}, - [6418] = {.lex_state = 556}, - [6419] = {.lex_state = 1019}, - [6420] = {.lex_state = 323}, - [6421] = {.lex_state = 323}, - [6422] = {.lex_state = 323}, - [6423] = {.lex_state = 323}, - [6424] = {.lex_state = 323}, - [6425] = {.lex_state = 323}, - [6426] = {.lex_state = 323}, - [6427] = {.lex_state = 323}, - [6428] = {.lex_state = 1019}, - [6429] = {.lex_state = 578}, - [6430] = {.lex_state = 578}, - [6431] = {.lex_state = 562}, - [6432] = {.lex_state = 1019}, - [6433] = {.lex_state = 428}, - [6434] = {.lex_state = 323}, - [6435] = {.lex_state = 1019}, - [6436] = {.lex_state = 1019}, - [6437] = {.lex_state = 428}, - [6438] = {.lex_state = 1019}, - [6439] = {.lex_state = 165}, - [6440] = {.lex_state = 165}, - [6441] = {.lex_state = 323}, - [6442] = {.lex_state = 428}, - [6443] = {.lex_state = 1019}, - [6444] = {.lex_state = 323}, - [6445] = {.lex_state = 323}, - [6446] = {.lex_state = 323}, - [6447] = {.lex_state = 323}, - [6448] = {.lex_state = 323}, - [6449] = {.lex_state = 323}, - [6450] = {.lex_state = 323}, - [6451] = {.lex_state = 323}, - [6452] = {.lex_state = 1019}, - [6453] = {.lex_state = 323}, - [6454] = {.lex_state = 1019}, - [6455] = {.lex_state = 562}, - [6456] = {.lex_state = 428}, - [6457] = {.lex_state = 323}, - [6458] = {.lex_state = 323}, - [6459] = {.lex_state = 428}, - [6460] = {.lex_state = 323}, - [6461] = {.lex_state = 579}, - [6462] = {.lex_state = 1019}, - [6463] = {.lex_state = 571}, - [6464] = {.lex_state = 1092}, - [6465] = {.lex_state = 323}, - [6466] = {.lex_state = 323}, - [6467] = {.lex_state = 323}, - [6468] = {.lex_state = 323}, - [6469] = {.lex_state = 323}, - [6470] = {.lex_state = 323}, - [6471] = {.lex_state = 323}, - [6472] = {.lex_state = 323}, - [6473] = {.lex_state = 323}, - [6474] = {.lex_state = 1019}, - [6475] = {.lex_state = 323}, - [6476] = {.lex_state = 562}, - [6477] = {.lex_state = 428}, - [6478] = {.lex_state = 323}, - [6479] = {.lex_state = 323}, - [6480] = {.lex_state = 556}, - [6481] = {.lex_state = 428}, - [6482] = {.lex_state = 323}, - [6483] = {.lex_state = 1019}, - [6484] = {.lex_state = 1019}, - [6485] = {.lex_state = 323}, - [6486] = {.lex_state = 323}, - [6487] = {.lex_state = 323}, - [6488] = {.lex_state = 323}, - [6489] = {.lex_state = 323}, - [6490] = {.lex_state = 323}, - [6491] = {.lex_state = 323}, - [6492] = {.lex_state = 323}, - [6493] = {.lex_state = 323}, - [6494] = {.lex_state = 571}, - [6495] = {.lex_state = 1019}, - [6496] = {.lex_state = 562}, - [6497] = {.lex_state = 428}, - [6498] = {.lex_state = 323}, - [6499] = {.lex_state = 1019}, - [6500] = {.lex_state = 428}, - [6501] = {.lex_state = 1019}, - [6502] = {.lex_state = 1019}, - [6503] = {.lex_state = 323}, - [6504] = {.lex_state = 1019}, - [6505] = {.lex_state = 323}, - [6506] = {.lex_state = 323}, - [6507] = {.lex_state = 323}, - [6508] = {.lex_state = 323}, - [6509] = {.lex_state = 323}, - [6510] = {.lex_state = 323}, - [6511] = {.lex_state = 323}, - [6512] = {.lex_state = 323}, - [6513] = {.lex_state = 323}, - [6514] = {.lex_state = 562}, - [6515] = {.lex_state = 1019}, - [6516] = {.lex_state = 428}, - [6517] = {.lex_state = 143}, - [6518] = {.lex_state = 579}, - [6519] = {.lex_state = 512}, - [6520] = {.lex_state = 428}, - [6521] = {.lex_state = 323}, - [6522] = {.lex_state = 579}, - [6523] = {.lex_state = 562}, - [6524] = {.lex_state = 428}, - [6525] = {.lex_state = 323}, - [6526] = {.lex_state = 323}, - [6527] = {.lex_state = 323}, - [6528] = {.lex_state = 323}, - [6529] = {.lex_state = 323}, - [6530] = {.lex_state = 323}, - [6531] = {.lex_state = 323}, - [6532] = {.lex_state = 323}, - [6533] = {.lex_state = 582}, - [6534] = {.lex_state = 323}, - [6535] = {.lex_state = 562}, - [6536] = {.lex_state = 323}, - [6537] = {.lex_state = 428}, - [6538] = {.lex_state = 323}, - [6539] = {.lex_state = 428}, - [6540] = {.lex_state = 1019}, - [6541] = {.lex_state = 556}, - [6542] = {.lex_state = 323}, - [6543] = {.lex_state = 323}, - [6544] = {.lex_state = 323}, - [6545] = {.lex_state = 323}, - [6546] = {.lex_state = 323}, - [6547] = {.lex_state = 323}, - [6548] = {.lex_state = 323}, - [6549] = {.lex_state = 323}, - [6550] = {.lex_state = 1019}, - [6551] = {.lex_state = 323}, - [6552] = {.lex_state = 562}, - [6553] = {.lex_state = 428}, - [6554] = {.lex_state = 1019}, - [6555] = {.lex_state = 428}, - [6556] = {.lex_state = 1019}, - [6557] = {.lex_state = 323}, - [6558] = {.lex_state = 323}, - [6559] = {.lex_state = 323}, - [6560] = {.lex_state = 323}, - [6561] = {.lex_state = 323}, - [6562] = {.lex_state = 323}, - [6563] = {.lex_state = 323}, - [6564] = {.lex_state = 323}, - [6565] = {.lex_state = 323}, - [6566] = {.lex_state = 323}, - [6567] = {.lex_state = 323}, - [6568] = {.lex_state = 562}, - [6569] = {.lex_state = 428}, - [6570] = {.lex_state = 428}, - [6571] = {.lex_state = 323}, - [6572] = {.lex_state = 556}, - [6573] = {.lex_state = 323}, - [6574] = {.lex_state = 323}, - [6575] = {.lex_state = 323}, - [6576] = {.lex_state = 323}, - [6577] = {.lex_state = 323}, - [6578] = {.lex_state = 323}, - [6579] = {.lex_state = 323}, - [6580] = {.lex_state = 323}, - [6581] = {.lex_state = 1019}, - [6582] = {.lex_state = 562}, - [6583] = {.lex_state = 428}, - [6584] = {.lex_state = 428}, - [6585] = {.lex_state = 1019}, - [6586] = {.lex_state = 1019}, - [6587] = {.lex_state = 323}, - [6588] = {.lex_state = 323}, - [6589] = {.lex_state = 323}, - [6590] = {.lex_state = 323}, - [6591] = {.lex_state = 323}, - [6592] = {.lex_state = 323}, - [6593] = {.lex_state = 323}, - [6594] = {.lex_state = 323}, - [6595] = {.lex_state = 1019}, - [6596] = {.lex_state = 562}, - [6597] = {.lex_state = 428}, - [6598] = {.lex_state = 428}, - [6599] = {.lex_state = 1019}, - [6600] = {.lex_state = 562}, - [6601] = {.lex_state = 428}, - [6602] = {.lex_state = 1019}, - [6603] = {.lex_state = 428}, - [6604] = {.lex_state = 1019}, - [6605] = {.lex_state = 562}, - [6606] = {.lex_state = 428}, - [6607] = {.lex_state = 428}, - [6608] = {.lex_state = 1019}, - [6609] = {.lex_state = 562}, - [6610] = {.lex_state = 428}, - [6611] = {.lex_state = 428}, - [6612] = {.lex_state = 1019}, - [6613] = {.lex_state = 562}, - [6614] = {.lex_state = 428}, - [6615] = {.lex_state = 428}, - [6616] = {.lex_state = 1019}, - [6617] = {.lex_state = 562}, - [6618] = {.lex_state = 428}, - [6619] = {.lex_state = 428}, - [6620] = {.lex_state = 1019}, - [6621] = {.lex_state = 562}, - [6622] = {.lex_state = 428}, - [6623] = {.lex_state = 428}, - [6624] = {.lex_state = 505}, - [6625] = {.lex_state = 562}, - [6626] = {.lex_state = 428}, - [6627] = {.lex_state = 428}, - [6628] = {.lex_state = 323}, - [6629] = {.lex_state = 562}, - [6630] = {.lex_state = 428}, - [6631] = {.lex_state = 428}, - [6632] = {.lex_state = 1019}, - [6633] = {.lex_state = 562}, - [6634] = {.lex_state = 428}, - [6635] = {.lex_state = 428}, - [6636] = {.lex_state = 546}, - [6637] = {.lex_state = 562}, - [6638] = {.lex_state = 428}, - [6639] = {.lex_state = 428}, - [6640] = {.lex_state = 1019}, - [6641] = {.lex_state = 562}, - [6642] = {.lex_state = 428}, - [6643] = {.lex_state = 428}, - [6644] = {.lex_state = 1019}, - [6645] = {.lex_state = 562}, - [6646] = {.lex_state = 428}, - [6647] = {.lex_state = 428}, - [6648] = {.lex_state = 428}, - [6649] = {.lex_state = 562}, - [6650] = {.lex_state = 428}, - [6651] = {.lex_state = 428}, - [6652] = {.lex_state = 510}, - [6653] = {.lex_state = 562}, - [6654] = {.lex_state = 428}, - [6655] = {.lex_state = 428}, - [6656] = {.lex_state = 1019}, - [6657] = {.lex_state = 562}, - [6658] = {.lex_state = 428}, - [6659] = {.lex_state = 428}, - [6660] = {.lex_state = 505}, - [6661] = {.lex_state = 562}, - [6662] = {.lex_state = 428}, - [6663] = {.lex_state = 428}, - [6664] = {.lex_state = 323}, - [6665] = {.lex_state = 562}, - [6666] = {.lex_state = 428}, - [6667] = {.lex_state = 428}, - [6668] = {.lex_state = 323}, - [6669] = {.lex_state = 562}, - [6670] = {.lex_state = 428}, - [6671] = {.lex_state = 428}, - [6672] = {.lex_state = 323}, - [6673] = {.lex_state = 562}, - [6674] = {.lex_state = 428}, - [6675] = {.lex_state = 428}, - [6676] = {.lex_state = 546}, - [6677] = {.lex_state = 562}, - [6678] = {.lex_state = 428}, - [6679] = {.lex_state = 428}, - [6680] = {.lex_state = 323}, - [6681] = {.lex_state = 562}, - [6682] = {.lex_state = 428}, - [6683] = {.lex_state = 428}, - [6684] = {.lex_state = 134}, - [6685] = {.lex_state = 562}, - [6686] = {.lex_state = 428}, - [6687] = {.lex_state = 428}, - [6688] = {.lex_state = 1019}, - [6689] = {.lex_state = 562}, - [6690] = {.lex_state = 428}, - [6691] = {.lex_state = 428}, - [6692] = {.lex_state = 1019}, - [6693] = {.lex_state = 562}, - [6694] = {.lex_state = 428}, - [6695] = {.lex_state = 428}, - [6696] = {.lex_state = 323}, - [6697] = {.lex_state = 562}, - [6698] = {.lex_state = 428}, - [6699] = {.lex_state = 428}, - [6700] = {.lex_state = 323}, - [6701] = {.lex_state = 323}, - [6702] = {.lex_state = 428}, - [6703] = {.lex_state = 428}, - [6704] = {.lex_state = 562}, - [6705] = {.lex_state = 428}, - [6706] = {.lex_state = 428}, - [6707] = {.lex_state = 562}, - [6708] = {.lex_state = 428}, - [6709] = {.lex_state = 428}, - [6710] = {.lex_state = 562}, - [6711] = {.lex_state = 428}, - [6712] = {.lex_state = 428}, - [6713] = {.lex_state = 428}, - [6714] = {.lex_state = 428}, - [6715] = {.lex_state = 428}, - [6716] = {.lex_state = 428}, - [6717] = {.lex_state = 428}, - [6718] = {.lex_state = 428}, - [6719] = {.lex_state = 428}, - [6720] = {.lex_state = 428}, - [6721] = {.lex_state = 546}, - [6722] = {.lex_state = 1019}, - [6723] = {.lex_state = 1019}, - [6724] = {.lex_state = 488}, - [6725] = {.lex_state = 510}, - [6726] = {.lex_state = 1059}, - [6727] = {.lex_state = 488}, - [6728] = {.lex_state = 1019}, - [6729] = {.lex_state = 546}, - [6730] = {.lex_state = 323}, - [6731] = {.lex_state = 430}, - [6732] = {.lex_state = 1019}, - [6733] = {.lex_state = 323}, - [6734] = {.lex_state = 1019}, - [6735] = {.lex_state = 1019}, - [6736] = {.lex_state = 1019}, - [6737] = {.lex_state = 1019}, - [6738] = {.lex_state = 323}, - [6739] = {.lex_state = 1019}, - [6740] = {.lex_state = 1019}, - [6741] = {.lex_state = 323}, - [6742] = {.lex_state = 1059}, - [6743] = {.lex_state = 323}, - [6744] = {.lex_state = 323}, - [6745] = {.lex_state = 1019}, - [6746] = {.lex_state = 1019}, - [6747] = {.lex_state = 323}, - [6748] = {.lex_state = 323}, - [6749] = {.lex_state = 323}, - [6750] = {.lex_state = 1019}, - [6751] = {.lex_state = 1019}, - [6752] = {.lex_state = 1019}, - [6753] = {.lex_state = 1019}, - [6754] = {.lex_state = 1019}, - [6755] = {.lex_state = 1019}, - [6756] = {.lex_state = 562}, - [6757] = {.lex_state = 1019}, - [6758] = {.lex_state = 1019}, - [6759] = {.lex_state = 323}, - [6760] = {.lex_state = 562}, - [6761] = {.lex_state = 562}, - [6762] = {.lex_state = 428}, - [6763] = {.lex_state = 578}, - [6764] = {.lex_state = 1019}, - [6765] = {.lex_state = 1019}, - [6766] = {.lex_state = 505}, - [6767] = {.lex_state = 1019}, - [6768] = {.lex_state = 1019}, - [6769] = {.lex_state = 508}, - [6770] = {.lex_state = 510}, - [6771] = {.lex_state = 428}, - [6772] = {.lex_state = 159}, - [6773] = {.lex_state = 562}, - [6774] = {.lex_state = 1019}, - [6775] = {.lex_state = 1019}, - [6776] = {.lex_state = 428}, - [6777] = {.lex_state = 428}, - [6778] = {.lex_state = 1019}, - [6779] = {.lex_state = 1019}, - [6780] = {.lex_state = 505}, - [6781] = {.lex_state = 578}, - [6782] = {.lex_state = 1019}, - [6783] = {.lex_state = 1019}, - [6784] = {.lex_state = 1019}, - [6785] = {.lex_state = 579}, - [6786] = {.lex_state = 512}, - [6787] = {.lex_state = 512}, - [6788] = {.lex_state = 428}, - [6789] = {.lex_state = 556}, - [6790] = {.lex_state = 428}, - [6791] = {.lex_state = 508}, - [6792] = {.lex_state = 488}, - [6793] = {.lex_state = 323}, - [6794] = {.lex_state = 1019}, - [6795] = {.lex_state = 323}, - [6796] = {.lex_state = 505}, - [6797] = {.lex_state = 1019}, - [6798] = {.lex_state = 323}, - [6799] = {.lex_state = 323}, - [6800] = {.lex_state = 323}, - [6801] = {.lex_state = 323}, - [6802] = {.lex_state = 134}, - [6803] = {.lex_state = 323}, - [6804] = {.lex_state = 1059}, - [6805] = {.lex_state = 1059}, - [6806] = {.lex_state = 582}, - [6807] = {.lex_state = 1059}, - [6808] = {.lex_state = 323}, - [6809] = {.lex_state = 323}, - [6810] = {.lex_state = 505}, - [6811] = {.lex_state = 1019}, - [6812] = {.lex_state = 1019}, - [6813] = {.lex_state = 1019}, - [6814] = {.lex_state = 1019}, - [6815] = {.lex_state = 323}, - [6816] = {.lex_state = 323}, - [6817] = {.lex_state = 323}, - [6818] = {.lex_state = 323}, - [6819] = {.lex_state = 323}, - [6820] = {.lex_state = 323}, - [6821] = {.lex_state = 323}, - [6822] = {.lex_state = 323}, - [6823] = {.lex_state = 323}, - [6824] = {.lex_state = 323}, - [6825] = {.lex_state = 562}, - [6826] = {.lex_state = 562}, - [6827] = {.lex_state = 1019}, - [6828] = {.lex_state = 1019}, - [6829] = {.lex_state = 1019}, - [6830] = {.lex_state = 1019}, - [6831] = {.lex_state = 323}, - [6832] = {.lex_state = 505}, - [6833] = {.lex_state = 1019}, - [6834] = {.lex_state = 562}, - [6835] = {.lex_state = 1019}, - [6836] = {.lex_state = 1019}, - [6837] = {.lex_state = 1019}, - [6838] = {.lex_state = 1019}, - [6839] = {.lex_state = 323}, - [6840] = {.lex_state = 323}, - [6841] = {.lex_state = 403}, - [6842] = {.lex_state = 428}, - [6843] = {.lex_state = 1019}, - [6844] = {.lex_state = 403}, - [6845] = {.lex_state = 323}, - [6846] = {.lex_state = 323}, - [6847] = {.lex_state = 323}, - [6848] = {.lex_state = 579}, - [6849] = {.lex_state = 1019}, - [6850] = {.lex_state = 428}, - [6851] = {.lex_state = 323}, - [6852] = {.lex_state = 510}, - [6853] = {.lex_state = 1019}, - [6854] = {.lex_state = 1019}, - [6855] = {.lex_state = 1019}, - [6856] = {.lex_state = 556}, - [6857] = {.lex_state = 428}, - [6858] = {.lex_state = 1019}, - [6859] = {.lex_state = 1019}, - [6860] = {.lex_state = 1019}, - [6861] = {.lex_state = 428}, - [6862] = {.lex_state = 510}, - [6863] = {.lex_state = 556}, - [6864] = {.lex_state = 571}, - [6865] = {.lex_state = 1019}, - [6866] = {.lex_state = 571}, - [6867] = {.lex_state = 323}, - [6868] = {.lex_state = 510}, - [6869] = {.lex_state = 323}, - [6870] = {.lex_state = 323}, - [6871] = {.lex_state = 323}, - [6872] = {.lex_state = 428}, - [6873] = {.lex_state = 510}, - [6874] = {.lex_state = 323}, - [6875] = {.lex_state = 323}, - [6876] = {.lex_state = 546}, - [6877] = {.lex_state = 323}, - [6878] = {.lex_state = 323}, - [6879] = {.lex_state = 556}, - [6880] = {.lex_state = 323}, - [6881] = {.lex_state = 556}, - [6882] = {.lex_state = 428}, - [6883] = {.lex_state = 562}, - [6884] = {.lex_state = 1059}, - [6885] = {.lex_state = 428}, - [6886] = {.lex_state = 1019}, - [6887] = {.lex_state = 510}, - [6888] = {.lex_state = 505}, - [6889] = {.lex_state = 505}, - [6890] = {.lex_state = 323}, - [6891] = {.lex_state = 1019}, - [6892] = {.lex_state = 428}, - [6893] = {.lex_state = 1019}, - [6894] = {.lex_state = 562}, - [6895] = {.lex_state = 1019}, - [6896] = {.lex_state = 430}, - [6897] = {.lex_state = 1019}, - [6898] = {.lex_state = 1019}, - [6899] = {.lex_state = 428}, - [6900] = {.lex_state = 323}, - [6901] = {.lex_state = 323}, - [6902] = {.lex_state = 323}, - [6903] = {.lex_state = 323}, - [6904] = {.lex_state = 323}, - [6905] = {.lex_state = 562}, - [6906] = {.lex_state = 1019}, - [6907] = {.lex_state = 1019}, - [6908] = {.lex_state = 571}, - [6909] = {.lex_state = 428}, - [6910] = {.lex_state = 1019}, - [6911] = {.lex_state = 323}, - [6912] = {.lex_state = 1019}, - [6913] = {.lex_state = 166}, - [6914] = {.lex_state = 166}, - [6915] = {.lex_state = 1019}, - [6916] = {.lex_state = 1019}, - [6917] = {.lex_state = 1019}, - [6918] = {.lex_state = 323}, - [6919] = {.lex_state = 323}, - [6920] = {.lex_state = 428}, - [6921] = {.lex_state = 1019}, - [6922] = {.lex_state = 1019}, - [6923] = {.lex_state = 323}, - [6924] = {.lex_state = 1019}, - [6925] = {.lex_state = 323}, - [6926] = {.lex_state = 562}, - [6927] = {.lex_state = 1019}, - [6928] = {.lex_state = 428}, - [6929] = {.lex_state = 562}, - [6930] = {.lex_state = 510}, - [6931] = {.lex_state = 558}, - [6932] = {.lex_state = 469}, - [6933] = {.lex_state = 1019}, - [6934] = {.lex_state = 1019}, - [6935] = {.lex_state = 1019}, - [6936] = {.lex_state = 1019}, - [6937] = {.lex_state = 430}, - [6938] = {.lex_state = 1019}, - [6939] = {.lex_state = 1019}, - [6940] = {.lex_state = 1019}, - [6941] = {.lex_state = 452}, - [6942] = {.lex_state = 558}, - [6943] = {.lex_state = 428}, - [6944] = {.lex_state = 582}, - [6945] = {.lex_state = 54}, - [6946] = {.lex_state = 562}, - [6947] = {.lex_state = 382}, - [6948] = {.lex_state = 323}, - [6949] = {.lex_state = 1019}, - [6950] = {.lex_state = 1018}, - [6951] = {.lex_state = 1019}, - [6952] = {.lex_state = 1019}, - [6953] = {.lex_state = 1019}, - [6954] = {.lex_state = 511}, - [6955] = {.lex_state = 511}, - [6956] = {.lex_state = 1019}, - [6957] = {.lex_state = 1018}, - [6958] = {.lex_state = 1018}, - [6959] = {.lex_state = 211}, - [6960] = {.lex_state = 511}, - [6961] = {.lex_state = 1019}, - [6962] = {.lex_state = 323}, - [6963] = {.lex_state = 557}, - [6964] = {.lex_state = 323}, - [6965] = {.lex_state = 323}, - [6966] = {.lex_state = 323}, - [6967] = {.lex_state = 323}, - [6968] = {.lex_state = 323}, - [6969] = {.lex_state = 323}, - [6970] = {.lex_state = 557}, - [6971] = {.lex_state = 511}, - [6972] = {.lex_state = 323}, - [6973] = {.lex_state = 147}, - [6974] = {.lex_state = 511}, - [6975] = {.lex_state = 1018}, - [6976] = {.lex_state = 323}, - [6977] = {.lex_state = 323}, - [6978] = {.lex_state = 1018}, - [6979] = {.lex_state = 999}, - [6980] = {.lex_state = 323}, - [6981] = {.lex_state = 1019}, - [6982] = {.lex_state = 511}, - [6983] = {.lex_state = 211}, - [6984] = {.lex_state = 211}, - [6985] = {.lex_state = 511}, - [6986] = {.lex_state = 323}, - [6987] = {.lex_state = 1019}, - [6988] = {.lex_state = 1019}, - [6989] = {.lex_state = 323}, - [6990] = {.lex_state = 323}, - [6991] = {.lex_state = 323}, - [6992] = {.lex_state = 511}, - [6993] = {.lex_state = 323}, - [6994] = {.lex_state = 1019}, - [6995] = {.lex_state = 511}, - [6996] = {.lex_state = 323}, - [6997] = {.lex_state = 323}, - [6998] = {.lex_state = 323}, - [6999] = {.lex_state = 323}, - [7000] = {.lex_state = 1019}, - [7001] = {.lex_state = 1019}, - [7002] = {.lex_state = 1019}, - [7003] = {.lex_state = 1019}, - [7004] = {.lex_state = 1019}, - [7005] = {.lex_state = 1019}, - [7006] = {.lex_state = 1018}, - [7007] = {.lex_state = 1019}, - [7008] = {.lex_state = 576}, - [7009] = {.lex_state = 1019}, - [7010] = {.lex_state = 511}, - [7011] = {.lex_state = 147}, - [7012] = {.lex_state = 1019}, - [7013] = {.lex_state = 1019}, - [7014] = {.lex_state = 382}, - [7015] = {.lex_state = 323}, - [7016] = {.lex_state = 511}, - [7017] = {.lex_state = 34}, - [7018] = {.lex_state = 572}, - [7019] = {.lex_state = 323}, - [7020] = {.lex_state = 323}, - [7021] = {.lex_state = 323}, - [7022] = {.lex_state = 323}, - [7023] = {.lex_state = 323}, - [7024] = {.lex_state = 557}, - [7025] = {.lex_state = 323}, - [7026] = {.lex_state = 323}, - [7027] = {.lex_state = 323}, - [7028] = {.lex_state = 470}, - [7029] = {.lex_state = 1019}, - [7030] = {.lex_state = 1019}, - [7031] = {.lex_state = 557}, - [7032] = {.lex_state = 1019}, - [7033] = {.lex_state = 403}, - [7034] = {.lex_state = 511}, - [7035] = {.lex_state = 323}, - [7036] = {.lex_state = 323}, - [7037] = {.lex_state = 511}, - [7038] = {.lex_state = 323}, - [7039] = {.lex_state = 323}, - [7040] = {.lex_state = 323}, - [7041] = {.lex_state = 323}, - [7042] = {.lex_state = 323}, - [7043] = {.lex_state = 323}, - [7044] = {.lex_state = 323}, - [7045] = {.lex_state = 323}, - [7046] = {.lex_state = 1019}, - [7047] = {.lex_state = 323}, + [5556] = {.lex_state = 480}, + [5557] = {.lex_state = 480}, + [5558] = {.lex_state = 480}, + [5559] = {.lex_state = 452}, + [5560] = {.lex_state = 1061}, + [5561] = {.lex_state = 480}, + [5562] = {.lex_state = 480}, + [5563] = {.lex_state = 480}, + [5564] = {.lex_state = 480}, + [5565] = {.lex_state = 480}, + [5566] = {.lex_state = 99}, + [5567] = {.lex_state = 1061}, + [5568] = {.lex_state = 480}, + [5569] = {.lex_state = 934}, + [5570] = {.lex_state = 480}, + [5571] = {.lex_state = 480}, + [5572] = {.lex_state = 480}, + [5573] = {.lex_state = 44}, + [5574] = {.lex_state = 934}, + [5575] = {.lex_state = 463}, + [5576] = {.lex_state = 471}, + [5577] = {.lex_state = 463}, + [5578] = {.lex_state = 343}, + [5579] = {.lex_state = 934}, + [5580] = {.lex_state = 463}, + [5581] = {.lex_state = 78}, + [5582] = {.lex_state = 436}, + [5583] = {.lex_state = 480}, + [5584] = {.lex_state = 480}, + [5585] = {.lex_state = 934}, + [5586] = {.lex_state = 463}, + [5587] = {.lex_state = 482}, + [5588] = {.lex_state = 105}, + [5589] = {.lex_state = 105}, + [5590] = {.lex_state = 480}, + [5591] = {.lex_state = 436}, + [5592] = {.lex_state = 480}, + [5593] = {.lex_state = 343}, + [5594] = {.lex_state = 480}, + [5595] = {.lex_state = 442}, + [5596] = {.lex_state = 476}, + [5597] = {.lex_state = 934}, + [5598] = {.lex_state = 934}, + [5599] = {.lex_state = 934}, + [5600] = {.lex_state = 1039}, + [5601] = {.lex_state = 105}, + [5602] = {.lex_state = 103}, + [5603] = {.lex_state = 103}, + [5604] = {.lex_state = 480}, + [5605] = {.lex_state = 44}, + [5606] = {.lex_state = 343}, + [5607] = {.lex_state = 934}, + [5608] = {.lex_state = 480}, + [5609] = {.lex_state = 934}, + [5610] = {.lex_state = 934}, + [5611] = {.lex_state = 934}, + [5612] = {.lex_state = 1038}, + [5613] = {.lex_state = 480}, + [5614] = {.lex_state = 471}, + [5615] = {.lex_state = 482}, + [5616] = {.lex_state = 436}, + [5617] = {.lex_state = 436}, + [5618] = {.lex_state = 476}, + [5619] = {.lex_state = 480}, + [5620] = {.lex_state = 480}, + [5621] = {.lex_state = 44}, + [5622] = {.lex_state = 480}, + [5623] = {.lex_state = 44}, + [5624] = {.lex_state = 480}, + [5625] = {.lex_state = 463}, + [5626] = {.lex_state = 436}, + [5627] = {.lex_state = 442}, + [5628] = {.lex_state = 418}, + [5629] = {.lex_state = 471}, + [5630] = {.lex_state = 105}, + [5631] = {.lex_state = 452}, + [5632] = {.lex_state = 934}, + [5633] = {.lex_state = 959}, + [5634] = {.lex_state = 369}, + [5635] = {.lex_state = 360}, + [5636] = {.lex_state = 4037}, + [5637] = {.lex_state = 4037}, + [5638] = {.lex_state = 369}, + [5639] = {.lex_state = 4037}, + [5640] = {.lex_state = 4037}, + [5641] = {.lex_state = 480}, + [5642] = {.lex_state = 369}, + [5643] = {.lex_state = 959}, + [5644] = {.lex_state = 959}, + [5645] = {.lex_state = 959}, + [5646] = {.lex_state = 959}, + [5647] = {.lex_state = 959}, + [5648] = {.lex_state = 959}, + [5649] = {.lex_state = 959}, + [5650] = {.lex_state = 360}, + [5651] = {.lex_state = 480}, + [5652] = {.lex_state = 959}, + [5653] = {.lex_state = 959}, + [5654] = {.lex_state = 369}, + [5655] = {.lex_state = 360}, + [5656] = {.lex_state = 4037}, + [5657] = {.lex_state = 4037}, + [5658] = {.lex_state = 934}, + [5659] = {.lex_state = 369}, + [5660] = {.lex_state = 463}, + [5661] = {.lex_state = 959}, + [5662] = {.lex_state = 343}, + [5663] = {.lex_state = 959}, + [5664] = {.lex_state = 360}, + [5665] = {.lex_state = 480}, + [5666] = {.lex_state = 480}, + [5667] = {.lex_state = 369}, + [5668] = {.lex_state = 4037}, + [5669] = {.lex_state = 4037}, + [5670] = {.lex_state = 478}, + [5671] = {.lex_state = 369}, + [5672] = {.lex_state = 959}, + [5673] = {.lex_state = 934}, + [5674] = {.lex_state = 4037}, + [5675] = {.lex_state = 4037}, + [5676] = {.lex_state = 959}, + [5677] = {.lex_state = 360}, + [5678] = {.lex_state = 959}, + [5679] = {.lex_state = 343}, + [5680] = {.lex_state = 369}, + [5681] = {.lex_state = 959}, + [5682] = {.lex_state = 4037}, + [5683] = {.lex_state = 4037}, + [5684] = {.lex_state = 369}, + [5685] = {.lex_state = 959}, + [5686] = {.lex_state = 473}, + [5687] = {.lex_state = 418}, + [5688] = {.lex_state = 959}, + [5689] = {.lex_state = 360}, + [5690] = {.lex_state = 959}, + [5691] = {.lex_state = 480}, + [5692] = {.lex_state = 369}, + [5693] = {.lex_state = 4037}, + [5694] = {.lex_state = 4037}, + [5695] = {.lex_state = 369}, + [5696] = {.lex_state = 959}, + [5697] = {.lex_state = 959}, + [5698] = {.lex_state = 959}, + [5699] = {.lex_state = 360}, + [5700] = {.lex_state = 343}, + [5701] = {.lex_state = 369}, + [5702] = {.lex_state = 360}, + [5703] = {.lex_state = 369}, + [5704] = {.lex_state = 480}, + [5705] = {.lex_state = 369}, + [5706] = {.lex_state = 480}, + [5707] = {.lex_state = 959}, + [5708] = {.lex_state = 369}, + [5709] = {.lex_state = 959}, + [5710] = {.lex_state = 959}, + [5711] = {.lex_state = 959}, + [5712] = {.lex_state = 360}, + [5713] = {.lex_state = 104}, + [5714] = {.lex_state = 959}, + [5715] = {.lex_state = 369}, + [5716] = {.lex_state = 360}, + [5717] = {.lex_state = 369}, + [5718] = {.lex_state = 959}, + [5719] = {.lex_state = 934}, + [5720] = {.lex_state = 473}, + [5721] = {.lex_state = 959}, + [5722] = {.lex_state = 934}, + [5723] = {.lex_state = 360}, + [5724] = {.lex_state = 959}, + [5725] = {.lex_state = 959}, + [5726] = {.lex_state = 493}, + [5727] = {.lex_state = 369}, + [5728] = {.lex_state = 369}, + [5729] = {.lex_state = 959}, + [5730] = {.lex_state = 959}, + [5731] = {.lex_state = 360}, + [5732] = {.lex_state = 369}, + [5733] = {.lex_state = 369}, + [5734] = {.lex_state = 959}, + [5735] = {.lex_state = 959}, + [5736] = {.lex_state = 360}, + [5737] = {.lex_state = 398}, + [5738] = {.lex_state = 473}, + [5739] = {.lex_state = 369}, + [5740] = {.lex_state = 369}, + [5741] = {.lex_state = 959}, + [5742] = {.lex_state = 959}, + [5743] = {.lex_state = 360}, + [5744] = {.lex_state = 369}, + [5745] = {.lex_state = 369}, + [5746] = {.lex_state = 959}, + [5747] = {.lex_state = 959}, + [5748] = {.lex_state = 360}, + [5749] = {.lex_state = 959}, + [5750] = {.lex_state = 959}, + [5751] = {.lex_state = 360}, + [5752] = {.lex_state = 934}, + [5753] = {.lex_state = 934}, + [5754] = {.lex_state = 104}, + [5755] = {.lex_state = 959}, + [5756] = {.lex_state = 959}, + [5757] = {.lex_state = 360}, + [5758] = {.lex_state = 480}, + [5759] = {.lex_state = 428}, + [5760] = {.lex_state = 959}, + [5761] = {.lex_state = 959}, + [5762] = {.lex_state = 360}, + [5763] = {.lex_state = 959}, + [5764] = {.lex_state = 959}, + [5765] = {.lex_state = 360}, + [5766] = {.lex_state = 443}, + [5767] = {.lex_state = 360}, + [5768] = {.lex_state = 959}, + [5769] = {.lex_state = 360}, + [5770] = {.lex_state = 360}, + [5771] = {.lex_state = 360}, + [5772] = {.lex_state = 360}, + [5773] = {.lex_state = 360}, + [5774] = {.lex_state = 360}, + [5775] = {.lex_state = 360}, + [5776] = {.lex_state = 360}, + [5777] = {.lex_state = 360}, + [5778] = {.lex_state = 360}, + [5779] = {.lex_state = 360}, + [5780] = {.lex_state = 360}, + [5781] = {.lex_state = 959}, + [5782] = {.lex_state = 360}, + [5783] = {.lex_state = 360}, + [5784] = {.lex_state = 360}, + [5785] = {.lex_state = 360}, + [5786] = {.lex_state = 360}, + [5787] = {.lex_state = 360}, + [5788] = {.lex_state = 360}, + [5789] = {.lex_state = 360}, + [5790] = {.lex_state = 360}, + [5791] = {.lex_state = 959}, + [5792] = {.lex_state = 418}, + [5793] = {.lex_state = 430}, + [5794] = {.lex_state = 463}, + [5795] = {.lex_state = 934}, + [5796] = {.lex_state = 418}, + [5797] = {.lex_state = 343}, + [5798] = {.lex_state = 343}, + [5799] = {.lex_state = 343}, + [5800] = {.lex_state = 473}, + [5801] = {.lex_state = 480}, + [5802] = {.lex_state = 447}, + [5803] = {.lex_state = 481}, + [5804] = {.lex_state = 513}, + [5805] = {.lex_state = 4037}, + [5806] = {.lex_state = 513}, + [5807] = {.lex_state = 4037}, + [5808] = {.lex_state = 418}, + [5809] = {.lex_state = 959}, + [5810] = {.lex_state = 369}, + [5811] = {.lex_state = 99}, + [5812] = {.lex_state = 4037}, + [5813] = {.lex_state = 4037}, + [5814] = {.lex_state = 369}, + [5815] = {.lex_state = 452}, + [5816] = {.lex_state = 473}, + [5817] = {.lex_state = 391}, + [5818] = {.lex_state = 392}, + [5819] = {.lex_state = 463}, + [5820] = {.lex_state = 418}, + [5821] = {.lex_state = 959}, + [5822] = {.lex_state = 959}, + [5823] = {.lex_state = 463}, + [5824] = {.lex_state = 463}, + [5825] = {.lex_state = 463}, + [5826] = {.lex_state = 463}, + [5827] = {.lex_state = 934}, + [5828] = {.lex_state = 463}, + [5829] = {.lex_state = 513}, + [5830] = {.lex_state = 513}, + [5831] = {.lex_state = 959}, + [5832] = {.lex_state = 959}, + [5833] = {.lex_state = 934}, + [5834] = {.lex_state = 99}, + [5835] = {.lex_state = 360}, + [5836] = {.lex_state = 959}, + [5837] = {.lex_state = 44}, + [5838] = {.lex_state = 369}, + [5839] = {.lex_state = 959}, + [5840] = {.lex_state = 4037}, + [5841] = {.lex_state = 4037}, + [5842] = {.lex_state = 959}, + [5843] = {.lex_state = 4037}, + [5844] = {.lex_state = 4037}, + [5845] = {.lex_state = 399}, + [5846] = {.lex_state = 4037}, + [5847] = {.lex_state = 134}, + [5848] = {.lex_state = 463}, + [5849] = {.lex_state = 99}, + [5850] = {.lex_state = 4037}, + [5851] = {.lex_state = 44}, + [5852] = {.lex_state = 463}, + [5853] = {.lex_state = 934}, + [5854] = {.lex_state = 481}, + [5855] = {.lex_state = 513}, + [5856] = {.lex_state = 481}, + [5857] = {.lex_state = 134}, + [5858] = {.lex_state = 369}, + [5859] = {.lex_state = 452}, + [5860] = {.lex_state = 360}, + [5861] = {.lex_state = 369}, + [5862] = {.lex_state = 934}, + [5863] = {.lex_state = 463}, + [5864] = {.lex_state = 959}, + [5865] = {.lex_state = 4037}, + [5866] = {.lex_state = 4037}, + [5867] = {.lex_state = 959}, + [5868] = {.lex_state = 959}, + [5869] = {.lex_state = 369}, + [5870] = {.lex_state = 959}, + [5871] = {.lex_state = 481}, + [5872] = {.lex_state = 934}, + [5873] = {.lex_state = 934}, + [5874] = {.lex_state = 104}, + [5875] = {.lex_state = 959}, + [5876] = {.lex_state = 484}, + [5877] = {.lex_state = 369}, + [5878] = {.lex_state = 104}, + [5879] = {.lex_state = 104}, + [5880] = {.lex_state = 104}, + [5881] = {.lex_state = 959}, + [5882] = {.lex_state = 473}, + [5883] = {.lex_state = 959}, + [5884] = {.lex_state = 360}, + [5885] = {.lex_state = 959}, + [5886] = {.lex_state = 369}, + [5887] = {.lex_state = 4037}, + [5888] = {.lex_state = 4037}, + [5889] = {.lex_state = 369}, + [5890] = {.lex_state = 959}, + [5891] = {.lex_state = 997}, + [5892] = {.lex_state = 369}, + [5893] = {.lex_state = 477}, + [5894] = {.lex_state = 418}, + [5895] = {.lex_state = 934}, + [5896] = {.lex_state = 463}, + [5897] = {.lex_state = 360}, + [5898] = {.lex_state = 959}, + [5899] = {.lex_state = 960}, + [5900] = {.lex_state = 44}, + [5901] = {.lex_state = 297}, + [5902] = {.lex_state = 297}, + [5903] = {.lex_state = 959}, + [5904] = {.lex_state = 959}, + [5905] = {.lex_state = 959}, + [5906] = {.lex_state = 959}, + [5907] = {.lex_state = 44}, + [5908] = {.lex_state = 959}, + [5909] = {.lex_state = 105}, + [5910] = {.lex_state = 105}, + [5911] = {.lex_state = 959}, + [5912] = {.lex_state = 105}, + [5913] = {.lex_state = 105}, + [5914] = {.lex_state = 44}, + [5915] = {.lex_state = 297}, + [5916] = {.lex_state = 44}, + [5917] = {.lex_state = 44}, + [5918] = {.lex_state = 105}, + [5919] = {.lex_state = 480}, + [5920] = {.lex_state = 44}, + [5921] = {.lex_state = 44}, + [5922] = {.lex_state = 44}, + [5923] = {.lex_state = 44}, + [5924] = {.lex_state = 495}, + [5925] = {.lex_state = 480}, + [5926] = {.lex_state = 44}, + [5927] = {.lex_state = 524}, + [5928] = {.lex_state = 44}, + [5929] = {.lex_state = 524}, + [5930] = {.lex_state = 524}, + [5931] = {.lex_state = 485}, + [5932] = {.lex_state = 495}, + [5933] = {.lex_state = 959}, + [5934] = {.lex_state = 78}, + [5935] = {.lex_state = 479}, + [5936] = {.lex_state = 121}, + [5937] = {.lex_state = 44}, + [5938] = {.lex_state = 44}, + [5939] = {.lex_state = 444}, + [5940] = {.lex_state = 44}, + [5941] = {.lex_state = 959}, + [5942] = {.lex_state = 297}, + [5943] = {.lex_state = 44}, + [5944] = {.lex_state = 958}, + [5945] = {.lex_state = 959}, + [5946] = {.lex_state = 44}, + [5947] = {.lex_state = 44}, + [5948] = {.lex_state = 44}, + [5949] = {.lex_state = 449}, + [5950] = {.lex_state = 78}, + [5951] = {.lex_state = 446}, + [5952] = {.lex_state = 297}, + [5953] = {.lex_state = 343}, + [5954] = {.lex_state = 343}, + [5955] = {.lex_state = 44}, + [5956] = {.lex_state = 524}, + [5957] = {.lex_state = 44}, + [5958] = {.lex_state = 959}, + [5959] = {.lex_state = 44}, + [5960] = {.lex_state = 524}, + [5961] = {.lex_state = 44}, + [5962] = {.lex_state = 449}, + [5963] = {.lex_state = 418}, + [5964] = {.lex_state = 524}, + [5965] = {.lex_state = 44}, + [5966] = {.lex_state = 44}, + [5967] = {.lex_state = 959}, + [5968] = {.lex_state = 524}, + [5969] = {.lex_state = 524}, + [5970] = {.lex_state = 960}, + [5971] = {.lex_state = 524}, + [5972] = {.lex_state = 524}, + [5973] = {.lex_state = 524}, + [5974] = {.lex_state = 444}, + [5975] = {.lex_state = 524}, + [5976] = {.lex_state = 524}, + [5977] = {.lex_state = 429}, + [5978] = {.lex_state = 480}, + [5979] = {.lex_state = 524}, + [5980] = {.lex_state = 524}, + [5981] = {.lex_state = 44}, + [5982] = {.lex_state = 524}, + [5983] = {.lex_state = 959}, + [5984] = {.lex_state = 524}, + [5985] = {.lex_state = 524}, + [5986] = {.lex_state = 960}, + [5987] = {.lex_state = 524}, + [5988] = {.lex_state = 44}, + [5989] = {.lex_state = 44}, + [5990] = {.lex_state = 524}, + [5991] = {.lex_state = 524}, + [5992] = {.lex_state = 959}, + [5993] = {.lex_state = 524}, + [5994] = {.lex_state = 524}, + [5995] = {.lex_state = 418}, + [5996] = {.lex_state = 524}, + [5997] = {.lex_state = 959}, + [5998] = {.lex_state = 524}, + [5999] = {.lex_state = 297}, + [6000] = {.lex_state = 524}, + [6001] = {.lex_state = 524}, + [6002] = {.lex_state = 297}, + [6003] = {.lex_state = 524}, + [6004] = {.lex_state = 452}, + [6005] = {.lex_state = 524}, + [6006] = {.lex_state = 297}, + [6007] = {.lex_state = 524}, + [6008] = {.lex_state = 480}, + [6009] = {.lex_state = 480}, + [6010] = {.lex_state = 524}, + [6011] = {.lex_state = 524}, + [6012] = {.lex_state = 105}, + [6013] = {.lex_state = 418}, + [6014] = {.lex_state = 396}, + [6015] = {.lex_state = 452}, + [6016] = {.lex_state = 105}, + [6017] = {.lex_state = 959}, + [6018] = {.lex_state = 297}, + [6019] = {.lex_state = 452}, + [6020] = {.lex_state = 297}, + [6021] = {.lex_state = 297}, + [6022] = {.lex_state = 99}, + [6023] = {.lex_state = 297}, + [6024] = {.lex_state = 343}, + [6025] = {.lex_state = 959}, + [6026] = {.lex_state = 959}, + [6027] = {.lex_state = 343}, + [6028] = {.lex_state = 399}, + [6029] = {.lex_state = 44}, + [6030] = {.lex_state = 494}, + [6031] = {.lex_state = 485}, + [6032] = {.lex_state = 418}, + [6033] = {.lex_state = 394}, + [6034] = {.lex_state = 44}, + [6035] = {.lex_state = 105}, + [6036] = {.lex_state = 418}, + [6037] = {.lex_state = 343}, + [6038] = {.lex_state = 959}, + [6039] = {.lex_state = 959}, + [6040] = {.lex_state = 392}, + [6041] = {.lex_state = 343}, + [6042] = {.lex_state = 959}, + [6043] = {.lex_state = 959}, + [6044] = {.lex_state = 959}, + [6045] = {.lex_state = 959}, + [6046] = {.lex_state = 959}, + [6047] = {.lex_state = 959}, + [6048] = {.lex_state = 44}, + [6049] = {.lex_state = 959}, + [6050] = {.lex_state = 959}, + [6051] = {.lex_state = 959}, + [6052] = {.lex_state = 959}, + [6053] = {.lex_state = 959}, + [6054] = {.lex_state = 959}, + [6055] = {.lex_state = 959}, + [6056] = {.lex_state = 959}, + [6057] = {.lex_state = 959}, + [6058] = {.lex_state = 959}, + [6059] = {.lex_state = 78}, + [6060] = {.lex_state = 959}, + [6061] = {.lex_state = 959}, + [6062] = {.lex_state = 959}, + [6063] = {.lex_state = 959}, + [6064] = {.lex_state = 959}, + [6065] = {.lex_state = 959}, + [6066] = {.lex_state = 959}, + [6067] = {.lex_state = 959}, + [6068] = {.lex_state = 959}, + [6069] = {.lex_state = 959}, + [6070] = {.lex_state = 959}, + [6071] = {.lex_state = 959}, + [6072] = {.lex_state = 959}, + [6073] = {.lex_state = 959}, + [6074] = {.lex_state = 959}, + [6075] = {.lex_state = 959}, + [6076] = {.lex_state = 959}, + [6077] = {.lex_state = 959}, + [6078] = {.lex_state = 959}, + [6079] = {.lex_state = 959}, + [6080] = {.lex_state = 959}, + [6081] = {.lex_state = 452}, + [6082] = {.lex_state = 524}, + [6083] = {.lex_state = 452}, + [6084] = {.lex_state = 121}, + [6085] = {.lex_state = 78}, + [6086] = {.lex_state = 999}, + [6087] = {.lex_state = 999}, + [6088] = {.lex_state = 999}, + [6089] = {.lex_state = 999}, + [6090] = {.lex_state = 999}, + [6091] = {.lex_state = 999}, + [6092] = {.lex_state = 99}, + [6093] = {.lex_state = 524}, + [6094] = {.lex_state = 959}, + [6095] = {.lex_state = 524}, + [6096] = {.lex_state = 959}, + [6097] = {.lex_state = 103}, + [6098] = {.lex_state = 450}, + [6099] = {.lex_state = 263}, + [6100] = {.lex_state = 959}, + [6101] = {.lex_state = 263}, + [6102] = {.lex_state = 263}, + [6103] = {.lex_state = 263}, + [6104] = {.lex_state = 263}, + [6105] = {.lex_state = 263}, + [6106] = {.lex_state = 263}, + [6107] = {.lex_state = 263}, + [6108] = {.lex_state = 959}, + [6109] = {.lex_state = 450}, + [6110] = {.lex_state = 99}, + [6111] = {.lex_state = 959}, + [6112] = {.lex_state = 450}, + [6113] = {.lex_state = 959}, + [6114] = {.lex_state = 367}, + [6115] = {.lex_state = 85}, + [6116] = {.lex_state = 959}, + [6117] = {.lex_state = 959}, + [6118] = {.lex_state = 450}, + [6119] = {.lex_state = 343}, + [6120] = {.lex_state = 519}, + [6121] = {.lex_state = 959}, + [6122] = {.lex_state = 959}, + [6123] = {.lex_state = 502}, + [6124] = {.lex_state = 86}, + [6125] = {.lex_state = 959}, + [6126] = {.lex_state = 297}, + [6127] = {.lex_state = 959}, + [6128] = {.lex_state = 367}, + [6129] = {.lex_state = 496}, + [6130] = {.lex_state = 519}, + [6131] = {.lex_state = 458}, + [6132] = {.lex_state = 959}, + [6133] = {.lex_state = 367}, + [6134] = {.lex_state = 502}, + [6135] = {.lex_state = 959}, + [6136] = {.lex_state = 343}, + [6137] = {.lex_state = 959}, + [6138] = {.lex_state = 959}, + [6139] = {.lex_state = 263}, + [6140] = {.lex_state = 263}, + [6141] = {.lex_state = 263}, + [6142] = {.lex_state = 263}, + [6143] = {.lex_state = 263}, + [6144] = {.lex_state = 263}, + [6145] = {.lex_state = 263}, + [6146] = {.lex_state = 263}, + [6147] = {.lex_state = 502}, + [6148] = {.lex_state = 367}, + [6149] = {.lex_state = 105}, + [6150] = {.lex_state = 959}, + [6151] = {.lex_state = 959}, + [6152] = {.lex_state = 367}, + [6153] = {.lex_state = 263}, + [6154] = {.lex_state = 959}, + [6155] = {.lex_state = 959}, + [6156] = {.lex_state = 959}, + [6157] = {.lex_state = 263}, + [6158] = {.lex_state = 263}, + [6159] = {.lex_state = 263}, + [6160] = {.lex_state = 263}, + [6161] = {.lex_state = 263}, + [6162] = {.lex_state = 263}, + [6163] = {.lex_state = 263}, + [6164] = {.lex_state = 263}, + [6165] = {.lex_state = 959}, + [6166] = {.lex_state = 502}, + [6167] = {.lex_state = 959}, + [6168] = {.lex_state = 367}, + [6169] = {.lex_state = 367}, + [6170] = {.lex_state = 959}, + [6171] = {.lex_state = 263}, + [6172] = {.lex_state = 367}, + [6173] = {.lex_state = 959}, + [6174] = {.lex_state = 367}, + [6175] = {.lex_state = 959}, + [6176] = {.lex_state = 445}, + [6177] = {.lex_state = 959}, + [6178] = {.lex_state = 263}, + [6179] = {.lex_state = 263}, + [6180] = {.lex_state = 263}, + [6181] = {.lex_state = 263}, + [6182] = {.lex_state = 263}, + [6183] = {.lex_state = 263}, + [6184] = {.lex_state = 263}, + [6185] = {.lex_state = 263}, + [6186] = {.lex_state = 959}, + [6187] = {.lex_state = 959}, + [6188] = {.lex_state = 959}, + [6189] = {.lex_state = 502}, + [6190] = {.lex_state = 367}, + [6191] = {.lex_state = 511}, + [6192] = {.lex_state = 448}, + [6193] = {.lex_state = 486}, + [6194] = {.lex_state = 103}, + [6195] = {.lex_state = 367}, + [6196] = {.lex_state = 263}, + [6197] = {.lex_state = 367}, + [6198] = {.lex_state = 450}, + [6199] = {.lex_state = 959}, + [6200] = {.lex_state = 959}, + [6201] = {.lex_state = 959}, + [6202] = {.lex_state = 959}, + [6203] = {.lex_state = 263}, + [6204] = {.lex_state = 263}, + [6205] = {.lex_state = 263}, + [6206] = {.lex_state = 263}, + [6207] = {.lex_state = 263}, + [6208] = {.lex_state = 263}, + [6209] = {.lex_state = 263}, + [6210] = {.lex_state = 263}, + [6211] = {.lex_state = 103}, + [6212] = {.lex_state = 959}, + [6213] = {.lex_state = 502}, + [6214] = {.lex_state = 959}, + [6215] = {.lex_state = 367}, + [6216] = {.lex_state = 263}, + [6217] = {.lex_state = 263}, + [6218] = {.lex_state = 367}, + [6219] = {.lex_state = 263}, + [6220] = {.lex_state = 263}, + [6221] = {.lex_state = 263}, + [6222] = {.lex_state = 263}, + [6223] = {.lex_state = 263}, + [6224] = {.lex_state = 263}, + [6225] = {.lex_state = 263}, + [6226] = {.lex_state = 263}, + [6227] = {.lex_state = 263}, + [6228] = {.lex_state = 959}, + [6229] = {.lex_state = 486}, + [6230] = {.lex_state = 502}, + [6231] = {.lex_state = 367}, + [6232] = {.lex_state = 263}, + [6233] = {.lex_state = 445}, + [6234] = {.lex_state = 496}, + [6235] = {.lex_state = 496}, + [6236] = {.lex_state = 367}, + [6237] = {.lex_state = 263}, + [6238] = {.lex_state = 959}, + [6239] = {.lex_state = 959}, + [6240] = {.lex_state = 486}, + [6241] = {.lex_state = 959}, + [6242] = {.lex_state = 450}, + [6243] = {.lex_state = 959}, + [6244] = {.lex_state = 263}, + [6245] = {.lex_state = 263}, + [6246] = {.lex_state = 263}, + [6247] = {.lex_state = 263}, + [6248] = {.lex_state = 263}, + [6249] = {.lex_state = 263}, + [6250] = {.lex_state = 263}, + [6251] = {.lex_state = 263}, + [6252] = {.lex_state = 959}, + [6253] = {.lex_state = 502}, + [6254] = {.lex_state = 959}, + [6255] = {.lex_state = 367}, + [6256] = {.lex_state = 263}, + [6257] = {.lex_state = 959}, + [6258] = {.lex_state = 367}, + [6259] = {.lex_state = 263}, + [6260] = {.lex_state = 959}, + [6261] = {.lex_state = 959}, + [6262] = {.lex_state = 263}, + [6263] = {.lex_state = 263}, + [6264] = {.lex_state = 263}, + [6265] = {.lex_state = 263}, + [6266] = {.lex_state = 263}, + [6267] = {.lex_state = 263}, + [6268] = {.lex_state = 263}, + [6269] = {.lex_state = 263}, + [6270] = {.lex_state = 496}, + [6271] = {.lex_state = 959}, + [6272] = {.lex_state = 959}, + [6273] = {.lex_state = 502}, + [6274] = {.lex_state = 367}, + [6275] = {.lex_state = 297}, + [6276] = {.lex_state = 367}, + [6277] = {.lex_state = 496}, + [6278] = {.lex_state = 297}, + [6279] = {.lex_state = 959}, + [6280] = {.lex_state = 522}, + [6281] = {.lex_state = 959}, + [6282] = {.lex_state = 263}, + [6283] = {.lex_state = 263}, + [6284] = {.lex_state = 263}, + [6285] = {.lex_state = 263}, + [6286] = {.lex_state = 263}, + [6287] = {.lex_state = 263}, + [6288] = {.lex_state = 263}, + [6289] = {.lex_state = 263}, + [6290] = {.lex_state = 502}, + [6291] = {.lex_state = 518}, + [6292] = {.lex_state = 367}, + [6293] = {.lex_state = 959}, + [6294] = {.lex_state = 959}, + [6295] = {.lex_state = 367}, + [6296] = {.lex_state = 496}, + [6297] = {.lex_state = 297}, + [6298] = {.lex_state = 522}, + [6299] = {.lex_state = 263}, + [6300] = {.lex_state = 263}, + [6301] = {.lex_state = 263}, + [6302] = {.lex_state = 263}, + [6303] = {.lex_state = 263}, + [6304] = {.lex_state = 263}, + [6305] = {.lex_state = 263}, + [6306] = {.lex_state = 263}, + [6307] = {.lex_state = 959}, + [6308] = {.lex_state = 959}, + [6309] = {.lex_state = 502}, + [6310] = {.lex_state = 367}, + [6311] = {.lex_state = 496}, + [6312] = {.lex_state = 959}, + [6313] = {.lex_state = 367}, + [6314] = {.lex_state = 959}, + [6315] = {.lex_state = 959}, + [6316] = {.lex_state = 959}, + [6317] = {.lex_state = 263}, + [6318] = {.lex_state = 263}, + [6319] = {.lex_state = 263}, + [6320] = {.lex_state = 263}, + [6321] = {.lex_state = 263}, + [6322] = {.lex_state = 263}, + [6323] = {.lex_state = 263}, + [6324] = {.lex_state = 263}, + [6325] = {.lex_state = 959}, + [6326] = {.lex_state = 959}, + [6327] = {.lex_state = 502}, + [6328] = {.lex_state = 959}, + [6329] = {.lex_state = 367}, + [6330] = {.lex_state = 959}, + [6331] = {.lex_state = 959}, + [6332] = {.lex_state = 367}, + [6333] = {.lex_state = 959}, + [6334] = {.lex_state = 518}, + [6335] = {.lex_state = 959}, + [6336] = {.lex_state = 263}, + [6337] = {.lex_state = 263}, + [6338] = {.lex_state = 263}, + [6339] = {.lex_state = 263}, + [6340] = {.lex_state = 263}, + [6341] = {.lex_state = 263}, + [6342] = {.lex_state = 263}, + [6343] = {.lex_state = 263}, + [6344] = {.lex_state = 959}, + [6345] = {.lex_state = 502}, + [6346] = {.lex_state = 367}, + [6347] = {.lex_state = 959}, + [6348] = {.lex_state = 959}, + [6349] = {.lex_state = 367}, + [6350] = {.lex_state = 297}, + [6351] = {.lex_state = 959}, + [6352] = {.lex_state = 959}, + [6353] = {.lex_state = 263}, + [6354] = {.lex_state = 263}, + [6355] = {.lex_state = 263}, + [6356] = {.lex_state = 263}, + [6357] = {.lex_state = 263}, + [6358] = {.lex_state = 263}, + [6359] = {.lex_state = 263}, + [6360] = {.lex_state = 263}, + [6361] = {.lex_state = 959}, + [6362] = {.lex_state = 502}, + [6363] = {.lex_state = 959}, + [6364] = {.lex_state = 367}, + [6365] = {.lex_state = 959}, + [6366] = {.lex_state = 367}, + [6367] = {.lex_state = 959}, + [6368] = {.lex_state = 297}, + [6369] = {.lex_state = 263}, + [6370] = {.lex_state = 263}, + [6371] = {.lex_state = 263}, + [6372] = {.lex_state = 263}, + [6373] = {.lex_state = 263}, + [6374] = {.lex_state = 263}, + [6375] = {.lex_state = 263}, + [6376] = {.lex_state = 263}, + [6377] = {.lex_state = 959}, + [6378] = {.lex_state = 502}, + [6379] = {.lex_state = 959}, + [6380] = {.lex_state = 367}, + [6381] = {.lex_state = 263}, + [6382] = {.lex_state = 367}, + [6383] = {.lex_state = 263}, + [6384] = {.lex_state = 263}, + [6385] = {.lex_state = 263}, + [6386] = {.lex_state = 263}, + [6387] = {.lex_state = 263}, + [6388] = {.lex_state = 263}, + [6389] = {.lex_state = 263}, + [6390] = {.lex_state = 263}, + [6391] = {.lex_state = 502}, + [6392] = {.lex_state = 367}, + [6393] = {.lex_state = 367}, + [6394] = {.lex_state = 263}, + [6395] = {.lex_state = 263}, + [6396] = {.lex_state = 263}, + [6397] = {.lex_state = 263}, + [6398] = {.lex_state = 263}, + [6399] = {.lex_state = 263}, + [6400] = {.lex_state = 263}, + [6401] = {.lex_state = 263}, + [6402] = {.lex_state = 263}, + [6403] = {.lex_state = 502}, + [6404] = {.lex_state = 367}, + [6405] = {.lex_state = 367}, + [6406] = {.lex_state = 959}, + [6407] = {.lex_state = 263}, + [6408] = {.lex_state = 263}, + [6409] = {.lex_state = 263}, + [6410] = {.lex_state = 263}, + [6411] = {.lex_state = 263}, + [6412] = {.lex_state = 959}, + [6413] = {.lex_state = 263}, + [6414] = {.lex_state = 263}, + [6415] = {.lex_state = 959}, + [6416] = {.lex_state = 502}, + [6417] = {.lex_state = 367}, + [6418] = {.lex_state = 367}, + [6419] = {.lex_state = 445}, + [6420] = {.lex_state = 263}, + [6421] = {.lex_state = 263}, + [6422] = {.lex_state = 263}, + [6423] = {.lex_state = 263}, + [6424] = {.lex_state = 263}, + [6425] = {.lex_state = 263}, + [6426] = {.lex_state = 263}, + [6427] = {.lex_state = 263}, + [6428] = {.lex_state = 959}, + [6429] = {.lex_state = 502}, + [6430] = {.lex_state = 367}, + [6431] = {.lex_state = 367}, + [6432] = {.lex_state = 502}, + [6433] = {.lex_state = 367}, + [6434] = {.lex_state = 367}, + [6435] = {.lex_state = 502}, + [6436] = {.lex_state = 367}, + [6437] = {.lex_state = 367}, + [6438] = {.lex_state = 502}, + [6439] = {.lex_state = 367}, + [6440] = {.lex_state = 367}, + [6441] = {.lex_state = 502}, + [6442] = {.lex_state = 367}, + [6443] = {.lex_state = 367}, + [6444] = {.lex_state = 502}, + [6445] = {.lex_state = 367}, + [6446] = {.lex_state = 367}, + [6447] = {.lex_state = 502}, + [6448] = {.lex_state = 367}, + [6449] = {.lex_state = 367}, + [6450] = {.lex_state = 502}, + [6451] = {.lex_state = 367}, + [6452] = {.lex_state = 367}, + [6453] = {.lex_state = 78}, + [6454] = {.lex_state = 502}, + [6455] = {.lex_state = 367}, + [6456] = {.lex_state = 367}, + [6457] = {.lex_state = 959}, + [6458] = {.lex_state = 502}, + [6459] = {.lex_state = 367}, + [6460] = {.lex_state = 367}, + [6461] = {.lex_state = 502}, + [6462] = {.lex_state = 367}, + [6463] = {.lex_state = 367}, + [6464] = {.lex_state = 959}, + [6465] = {.lex_state = 502}, + [6466] = {.lex_state = 367}, + [6467] = {.lex_state = 367}, + [6468] = {.lex_state = 502}, + [6469] = {.lex_state = 367}, + [6470] = {.lex_state = 367}, + [6471] = {.lex_state = 502}, + [6472] = {.lex_state = 367}, + [6473] = {.lex_state = 367}, + [6474] = {.lex_state = 502}, + [6475] = {.lex_state = 367}, + [6476] = {.lex_state = 367}, + [6477] = {.lex_state = 959}, + [6478] = {.lex_state = 502}, + [6479] = {.lex_state = 367}, + [6480] = {.lex_state = 367}, + [6481] = {.lex_state = 502}, + [6482] = {.lex_state = 367}, + [6483] = {.lex_state = 367}, + [6484] = {.lex_state = 502}, + [6485] = {.lex_state = 367}, + [6486] = {.lex_state = 367}, + [6487] = {.lex_state = 263}, + [6488] = {.lex_state = 502}, + [6489] = {.lex_state = 367}, + [6490] = {.lex_state = 367}, + [6491] = {.lex_state = 511}, + [6492] = {.lex_state = 502}, + [6493] = {.lex_state = 367}, + [6494] = {.lex_state = 367}, + [6495] = {.lex_state = 502}, + [6496] = {.lex_state = 367}, + [6497] = {.lex_state = 367}, + [6498] = {.lex_state = 502}, + [6499] = {.lex_state = 367}, + [6500] = {.lex_state = 367}, + [6501] = {.lex_state = 502}, + [6502] = {.lex_state = 367}, + [6503] = {.lex_state = 367}, + [6504] = {.lex_state = 502}, + [6505] = {.lex_state = 367}, + [6506] = {.lex_state = 367}, + [6507] = {.lex_state = 502}, + [6508] = {.lex_state = 367}, + [6509] = {.lex_state = 367}, + [6510] = {.lex_state = 367}, + [6511] = {.lex_state = 367}, + [6512] = {.lex_state = 367}, + [6513] = {.lex_state = 367}, + [6514] = {.lex_state = 367}, + [6515] = {.lex_state = 367}, + [6516] = {.lex_state = 367}, + [6517] = {.lex_state = 367}, + [6518] = {.lex_state = 367}, + [6519] = {.lex_state = 367}, + [6520] = {.lex_state = 959}, + [6521] = {.lex_state = 959}, + [6522] = {.lex_state = 959}, + [6523] = {.lex_state = 959}, + [6524] = {.lex_state = 959}, + [6525] = {.lex_state = 103}, + [6526] = {.lex_state = 263}, + [6527] = {.lex_state = 959}, + [6528] = {.lex_state = 959}, + [6529] = {.lex_state = 445}, + [6530] = {.lex_state = 959}, + [6531] = {.lex_state = 496}, + [6532] = {.lex_state = 959}, + [6533] = {.lex_state = 959}, + [6534] = {.lex_state = 369}, + [6535] = {.lex_state = 959}, + [6536] = {.lex_state = 518}, + [6537] = {.lex_state = 367}, + [6538] = {.lex_state = 519}, + [6539] = {.lex_state = 297}, + [6540] = {.lex_state = 297}, + [6541] = {.lex_state = 297}, + [6542] = {.lex_state = 519}, + [6543] = {.lex_state = 518}, + [6544] = {.lex_state = 518}, + [6545] = {.lex_state = 418}, + [6546] = {.lex_state = 498}, + [6547] = {.lex_state = 959}, + [6548] = {.lex_state = 452}, + [6549] = {.lex_state = 263}, + [6550] = {.lex_state = 959}, + [6551] = {.lex_state = 959}, + [6552] = {.lex_state = 959}, + [6553] = {.lex_state = 959}, + [6554] = {.lex_state = 959}, + [6555] = {.lex_state = 959}, + [6556] = {.lex_state = 263}, + [6557] = {.lex_state = 959}, + [6558] = {.lex_state = 959}, + [6559] = {.lex_state = 263}, + [6560] = {.lex_state = 959}, + [6561] = {.lex_state = 392}, + [6562] = {.lex_state = 486}, + [6563] = {.lex_state = 959}, + [6564] = {.lex_state = 959}, + [6565] = {.lex_state = 522}, + [6566] = {.lex_state = 343}, + [6567] = {.lex_state = 343}, + [6568] = {.lex_state = 959}, + [6569] = {.lex_state = 1036}, + [6570] = {.lex_state = 409}, + [6571] = {.lex_state = 297}, + [6572] = {.lex_state = 263}, + [6573] = {.lex_state = 959}, + [6574] = {.lex_state = 448}, + [6575] = {.lex_state = 498}, + [6576] = {.lex_state = 263}, + [6577] = {.lex_state = 263}, + [6578] = {.lex_state = 263}, + [6579] = {.lex_state = 263}, + [6580] = {.lex_state = 263}, + [6581] = {.lex_state = 263}, + [6582] = {.lex_state = 263}, + [6583] = {.lex_state = 263}, + [6584] = {.lex_state = 502}, + [6585] = {.lex_state = 502}, + [6586] = {.lex_state = 263}, + [6587] = {.lex_state = 263}, + [6588] = {.lex_state = 103}, + [6589] = {.lex_state = 511}, + [6590] = {.lex_state = 445}, + [6591] = {.lex_state = 450}, + [6592] = {.lex_state = 367}, + [6593] = {.lex_state = 343}, + [6594] = {.lex_state = 445}, + [6595] = {.lex_state = 519}, + [6596] = {.lex_state = 343}, + [6597] = {.lex_state = 103}, + [6598] = {.lex_state = 486}, + [6599] = {.lex_state = 103}, + [6600] = {.lex_state = 452}, + [6601] = {.lex_state = 369}, + [6602] = {.lex_state = 959}, + [6603] = {.lex_state = 959}, + [6604] = {.lex_state = 959}, + [6605] = {.lex_state = 522}, + [6606] = {.lex_state = 297}, + [6607] = {.lex_state = 522}, + [6608] = {.lex_state = 502}, + [6609] = {.lex_state = 297}, + [6610] = {.lex_state = 959}, + [6611] = {.lex_state = 959}, + [6612] = {.lex_state = 263}, + [6613] = {.lex_state = 263}, + [6614] = {.lex_state = 263}, + [6615] = {.lex_state = 959}, + [6616] = {.lex_state = 370}, + [6617] = {.lex_state = 959}, + [6618] = {.lex_state = 959}, + [6619] = {.lex_state = 959}, + [6620] = {.lex_state = 452}, + [6621] = {.lex_state = 959}, + [6622] = {.lex_state = 959}, + [6623] = {.lex_state = 959}, + [6624] = {.lex_state = 959}, + [6625] = {.lex_state = 959}, + [6626] = {.lex_state = 263}, + [6627] = {.lex_state = 445}, + [6628] = {.lex_state = 959}, + [6629] = {.lex_state = 959}, + [6630] = {.lex_state = 959}, + [6631] = {.lex_state = 263}, + [6632] = {.lex_state = 450}, + [6633] = {.lex_state = 79}, + [6634] = {.lex_state = 367}, + [6635] = {.lex_state = 78}, + [6636] = {.lex_state = 959}, + [6637] = {.lex_state = 445}, + [6638] = {.lex_state = 263}, + [6639] = {.lex_state = 959}, + [6640] = {.lex_state = 99}, + [6641] = {.lex_state = 450}, + [6642] = {.lex_state = 959}, + [6643] = {.lex_state = 106}, + [6644] = {.lex_state = 106}, + [6645] = {.lex_state = 445}, + [6646] = {.lex_state = 502}, + [6647] = {.lex_state = 511}, + [6648] = {.lex_state = 44}, + [6649] = {.lex_state = 367}, + [6650] = {.lex_state = 511}, + [6651] = {.lex_state = 496}, + [6652] = {.lex_state = 263}, + [6653] = {.lex_state = 263}, + [6654] = {.lex_state = 496}, + [6655] = {.lex_state = 367}, + [6656] = {.lex_state = 103}, + [6657] = {.lex_state = 263}, + [6658] = {.lex_state = 105}, + [6659] = {.lex_state = 369}, + [6660] = {.lex_state = 502}, + [6661] = {.lex_state = 44}, + [6662] = {.lex_state = 263}, + [6663] = {.lex_state = 323}, + [6664] = {.lex_state = 263}, + [6665] = {.lex_state = 263}, + [6666] = {.lex_state = 263}, + [6667] = {.lex_state = 263}, + [6668] = {.lex_state = 263}, + [6669] = {.lex_state = 263}, + [6670] = {.lex_state = 263}, + [6671] = {.lex_state = 151}, + [6672] = {.lex_state = 959}, + [6673] = {.lex_state = 263}, + [6674] = {.lex_state = 451}, + [6675] = {.lex_state = 135}, + [6676] = {.lex_state = 959}, + [6677] = {.lex_state = 451}, + [6678] = {.lex_state = 263}, + [6679] = {.lex_state = 263}, + [6680] = {.lex_state = 959}, + [6681] = {.lex_state = 151}, + [6682] = {.lex_state = 451}, + [6683] = {.lex_state = 297}, + [6684] = {.lex_state = 263}, + [6685] = {.lex_state = 263}, + [6686] = {.lex_state = 263}, + [6687] = {.lex_state = 263}, + [6688] = {.lex_state = 263}, + [6689] = {.lex_state = 263}, + [6690] = {.lex_state = 297}, + [6691] = {.lex_state = 263}, + [6692] = {.lex_state = 263}, + [6693] = {.lex_state = 263}, + [6694] = {.lex_state = 959}, + [6695] = {.lex_state = 959}, + [6696] = {.lex_state = 151}, + [6697] = {.lex_state = 88}, + [6698] = {.lex_state = 959}, + [6699] = {.lex_state = 445}, + [6700] = {.lex_state = 959}, + [6701] = {.lex_state = 451}, + [6702] = {.lex_state = 959}, + [6703] = {.lex_state = 959}, + [6704] = {.lex_state = 151}, + [6705] = {.lex_state = 451}, + [6706] = {.lex_state = 263}, + [6707] = {.lex_state = 959}, + [6708] = {.lex_state = 263}, + [6709] = {.lex_state = 263}, + [6710] = {.lex_state = 263}, + [6711] = {.lex_state = 297}, + [6712] = {.lex_state = 263}, + [6713] = {.lex_state = 343}, + [6714] = {.lex_state = 263}, + [6715] = {.lex_state = 263}, + [6716] = {.lex_state = 297}, + [6717] = {.lex_state = 959}, + [6718] = {.lex_state = 263}, + [6719] = {.lex_state = 959}, + [6720] = {.lex_state = 959}, + [6721] = {.lex_state = 343}, + [6722] = {.lex_state = 959}, + [6723] = {.lex_state = 959}, + [6724] = {.lex_state = 263}, + [6725] = {.lex_state = 959}, + [6726] = {.lex_state = 451}, + [6727] = {.lex_state = 959}, + [6728] = {.lex_state = 959}, + [6729] = {.lex_state = 959}, + [6730] = {.lex_state = 451}, + [6731] = {.lex_state = 489}, + [6732] = {.lex_state = 959}, + [6733] = {.lex_state = 263}, + [6734] = {.lex_state = 959}, + [6735] = {.lex_state = 959}, + [6736] = {.lex_state = 497}, + [6737] = {.lex_state = 263}, + [6738] = {.lex_state = 263}, + [6739] = {.lex_state = 263}, + [6740] = {.lex_state = 33}, + [6741] = {.lex_state = 263}, + [6742] = {.lex_state = 263}, + [6743] = {.lex_state = 263}, + [6744] = {.lex_state = 263}, + [6745] = {.lex_state = 263}, + [6746] = {.lex_state = 263}, + [6747] = {.lex_state = 959}, + [6748] = {.lex_state = 263}, + [6749] = {.lex_state = 959}, + [6750] = {.lex_state = 959}, + [6751] = {.lex_state = 959}, + [6752] = {.lex_state = 263}, + [6753] = {.lex_state = 959}, + [6754] = {.lex_state = 451}, + [6755] = {.lex_state = 33}, + [6756] = {.lex_state = 497}, + [6757] = {.lex_state = 297}, + [6758] = {.lex_state = 451}, + [6759] = {.lex_state = 959}, + [6760] = {.lex_state = 959}, + [6761] = {.lex_state = 263}, + [6762] = {.lex_state = 151}, + [6763] = {.lex_state = 488}, + [6764] = {.lex_state = 938}, + [6765] = {.lex_state = 263}, + [6766] = {.lex_state = 263}, + [6767] = {.lex_state = 263}, + [6768] = {.lex_state = 959}, + [6769] = {.lex_state = 263}, + [6770] = {.lex_state = 959}, + [6771] = {.lex_state = 263}, + [6772] = {.lex_state = 263}, + [6773] = {.lex_state = 343}, + [6774] = {.lex_state = 343}, + [6775] = {.lex_state = 263}, + [6776] = {.lex_state = 959}, + [6777] = {.lex_state = 959}, + [6778] = {.lex_state = 959}, + [6779] = {.lex_state = 297}, + [6780] = {.lex_state = 263}, + [6781] = {.lex_state = 297}, + [6782] = {.lex_state = 451}, + [6783] = {.lex_state = 959}, + [6784] = {.lex_state = 959}, + [6785] = {.lex_state = 297}, + [6786] = {.lex_state = 959}, + [6787] = {.lex_state = 451}, + [6788] = {.lex_state = 959}, + [6789] = {.lex_state = 263}, + [6790] = {.lex_state = 297}, + [6791] = {.lex_state = 959}, + [6792] = {.lex_state = 263}, + [6793] = {.lex_state = 263}, + [6794] = {.lex_state = 263}, + [6795] = {.lex_state = 959}, + [6796] = {.lex_state = 263}, + [6797] = {.lex_state = 959}, + [6798] = {.lex_state = 263}, + [6799] = {.lex_state = 263}, + [6800] = {.lex_state = 263}, + [6801] = {.lex_state = 263}, + [6802] = {.lex_state = 33}, + [6803] = {.lex_state = 959}, + [6804] = {.lex_state = 959}, + [6805] = {.lex_state = 297}, + [6806] = {.lex_state = 451}, + [6807] = {.lex_state = 959}, + [6808] = {.lex_state = 959}, + [6809] = {.lex_state = 451}, + [6810] = {.lex_state = 451}, + [6811] = {.lex_state = 263}, + [6812] = {.lex_state = 959}, + [6813] = {.lex_state = 263}, + [6814] = {.lex_state = 263}, + [6815] = {.lex_state = 263}, + [6816] = {.lex_state = 297}, + [6817] = {.lex_state = 263}, + [6818] = {.lex_state = 33}, + [6819] = {.lex_state = 263}, + [6820] = {.lex_state = 263}, + [6821] = {.lex_state = 297}, + [6822] = {.lex_state = 263}, + [6823] = {.lex_state = 263}, + [6824] = {.lex_state = 297}, + [6825] = {.lex_state = 297}, + [6826] = {.lex_state = 263}, + [6827] = {.lex_state = 263}, + [6828] = {.lex_state = 297}, + [6829] = {.lex_state = 297}, + [6830] = {.lex_state = 958}, + [6831] = {.lex_state = 297}, + [6832] = {.lex_state = 451}, + [6833] = {.lex_state = 959}, + [6834] = {.lex_state = 343}, + [6835] = {.lex_state = 451}, + [6836] = {.lex_state = 297}, + [6837] = {.lex_state = 263}, + [6838] = {.lex_state = 297}, + [6839] = {.lex_state = 959}, + [6840] = {.lex_state = 263}, + [6841] = {.lex_state = 263}, + [6842] = {.lex_state = 263}, + [6843] = {.lex_state = 958}, + [6844] = {.lex_state = 263}, + [6845] = {.lex_state = 297}, + [6846] = {.lex_state = 297}, + [6847] = {.lex_state = 263}, + [6848] = {.lex_state = 263}, + [6849] = {.lex_state = 263}, + [6850] = {.lex_state = 297}, + [6851] = {.lex_state = 297}, + [6852] = {.lex_state = 959}, + [6853] = {.lex_state = 959}, + [6854] = {.lex_state = 516}, + [6855] = {.lex_state = 297}, + [6856] = {.lex_state = 297}, + [6857] = {.lex_state = 958}, + [6858] = {.lex_state = 263}, + [6859] = {.lex_state = 451}, + [6860] = {.lex_state = 263}, + [6861] = {.lex_state = 958}, + [6862] = {.lex_state = 958}, + [6863] = {.lex_state = 297}, + [6864] = {.lex_state = 451}, + [6865] = {.lex_state = 263}, + [6866] = {.lex_state = 263}, + [6867] = {.lex_state = 263}, + [6868] = {.lex_state = 263}, + [6869] = {.lex_state = 297}, + [6870] = {.lex_state = 263}, + [6871] = {.lex_state = 959}, + [6872] = {.lex_state = 35}, + [6873] = {.lex_state = 263}, + [6874] = {.lex_state = 263}, + [6875] = {.lex_state = 263}, + [6876] = {.lex_state = 263}, + [6877] = {.lex_state = 514}, + [6878] = {.lex_state = 297}, + [6879] = {.lex_state = 263}, + [6880] = {.lex_state = 273}, + [6881] = {.lex_state = 273}, + [6882] = {.lex_state = 297}, + [6883] = {.lex_state = 451}, + [6884] = {.lex_state = 263}, + [6885] = {.lex_state = 959}, + [6886] = {.lex_state = 451}, + [6887] = {.lex_state = 263}, + [6888] = {.lex_state = 958}, + [6889] = {.lex_state = 263}, + [6890] = {.lex_state = 263}, + [6891] = {.lex_state = 263}, + [6892] = {.lex_state = 263}, + [6893] = {.lex_state = 297}, + [6894] = {.lex_state = 33}, + [6895] = {.lex_state = 263}, + [6896] = {.lex_state = 263}, + [6897] = {.lex_state = 959}, + [6898] = {.lex_state = 959}, + [6899] = {.lex_state = 263}, + [6900] = {.lex_state = 959}, + [6901] = {.lex_state = 343}, + [6902] = {.lex_state = 959}, + [6903] = {.lex_state = 343}, + [6904] = {.lex_state = 959}, + [6905] = {.lex_state = 451}, + [6906] = {.lex_state = 343}, + [6907] = {.lex_state = 451}, + [6908] = {.lex_state = 263}, + [6909] = {.lex_state = 959}, + [6910] = {.lex_state = 263}, + [6911] = {.lex_state = 263}, + [6912] = {.lex_state = 263}, + [6913] = {.lex_state = 959}, + [6914] = {.lex_state = 263}, + [6915] = {.lex_state = 958}, + [6916] = {.lex_state = 89}, + [6917] = {.lex_state = 263}, + [6918] = {.lex_state = 263}, + [6919] = {.lex_state = 958}, + [6920] = {.lex_state = 263}, + [6921] = {.lex_state = 959}, + [6922] = {.lex_state = 263}, + [6923] = {.lex_state = 297}, + [6924] = {.lex_state = 263}, + [6925] = {.lex_state = 263}, + [6926] = {.lex_state = 263}, + [6927] = {.lex_state = 263}, + [6928] = {.lex_state = 263}, + [6929] = {.lex_state = 263}, + [6930] = {.lex_state = 263}, + [6931] = {.lex_state = 959}, + [6932] = {.lex_state = 263}, + [6933] = {.lex_state = 263}, + [6934] = {.lex_state = 960}, + [6935] = {.lex_state = 263}, + [6936] = {.lex_state = 263}, + [6937] = {.lex_state = 959}, + [6938] = {.lex_state = 323}, + [6939] = {.lex_state = 263}, + [6940] = {.lex_state = 33}, + [6941] = {.lex_state = 263}, + [6942] = {.lex_state = 263}, + [6943] = {.lex_state = 263}, + [6944] = {.lex_state = 263}, + [6945] = {.lex_state = 959}, + [6946] = {.lex_state = 263}, + [6947] = {.lex_state = 135}, + [6948] = {.lex_state = 297}, + [6949] = {.lex_state = 263}, + [6950] = {.lex_state = 263}, + [6951] = {.lex_state = 263}, + [6952] = {.lex_state = 959}, + [6953] = {.lex_state = 486}, + [6954] = {.lex_state = 497}, + [6955] = {.lex_state = 959}, + [6956] = {.lex_state = 959}, + [6957] = {.lex_state = 959}, + [6958] = {.lex_state = 263}, + [6959] = {.lex_state = 263}, + [6960] = {.lex_state = 263}, + [6961] = {.lex_state = 263}, + [6962] = {.lex_state = 486}, + [6963] = {.lex_state = 263}, + [6964] = {.lex_state = 263}, + [6965] = {.lex_state = 263}, + [6966] = {.lex_state = 958}, + [6967] = {.lex_state = 263}, + [6968] = {.lex_state = 959}, + [6969] = {.lex_state = 263}, + [6970] = {.lex_state = 959}, + [6971] = {.lex_state = 450}, + [6972] = {.lex_state = 263}, + [6973] = {.lex_state = 263}, + [6974] = {.lex_state = 263}, + [6975] = {.lex_state = 451}, + [6976] = {.lex_state = 263}, + [6977] = {.lex_state = 263}, + [6978] = {.lex_state = 263}, + [6979] = {.lex_state = 263}, + [6980] = {.lex_state = 263}, + [6981] = {.lex_state = 101}, + [6982] = {.lex_state = 959}, + [6983] = {.lex_state = 959}, + [6984] = {.lex_state = 391}, + [6985] = {.lex_state = 151}, + [6986] = {.lex_state = 451}, + [6987] = {.lex_state = 959}, + [6988] = {.lex_state = 263}, + [6989] = {.lex_state = 958}, + [6990] = {.lex_state = 297}, + [6991] = {.lex_state = 263}, + [6992] = {.lex_state = 263}, + [6993] = {.lex_state = 263}, + [6994] = {.lex_state = 263}, + [6995] = {.lex_state = 523}, + [6996] = {.lex_state = 263}, + [6997] = {.lex_state = 33}, + [6998] = {.lex_state = 263}, + [6999] = {.lex_state = 263}, + [7000] = {.lex_state = 263}, + [7001] = {.lex_state = 959}, + [7002] = {.lex_state = 959}, + [7003] = {.lex_state = 959}, + [7004] = {.lex_state = 959}, + [7005] = {.lex_state = 959}, + [7006] = {.lex_state = 958}, + [7007] = {.lex_state = 323}, + [7008] = {.lex_state = 263}, + [7009] = {.lex_state = 263}, + [7010] = {.lex_state = 959}, + [7011] = {.lex_state = 297}, + [7012] = {.lex_state = 956}, + [7013] = {.lex_state = 512}, + [7014] = {.lex_state = 263}, + [7015] = {.lex_state = 263}, + [7016] = {.lex_state = 486}, + [7017] = {.lex_state = 297}, + [7018] = {.lex_state = 263}, + [7019] = {.lex_state = 263}, + [7020] = {.lex_state = 959}, + [7021] = {.lex_state = 959}, + [7022] = {.lex_state = 486}, + [7023] = {.lex_state = 263}, + [7024] = {.lex_state = 959}, + [7025] = {.lex_state = 263}, + [7026] = {.lex_state = 410}, + [7027] = {.lex_state = 451}, + [7028] = {.lex_state = 297}, + [7029] = {.lex_state = 959}, + [7030] = {.lex_state = 89}, + [7031] = {.lex_state = 323}, + [7032] = {.lex_state = 959}, + [7033] = {.lex_state = 263}, + [7034] = {.lex_state = 297}, + [7035] = {.lex_state = 486}, + [7036] = {.lex_state = 101}, + [7037] = {.lex_state = 959}, + [7038] = {.lex_state = 959}, + [7039] = {.lex_state = 956}, + [7040] = {.lex_state = 101}, + [7041] = {.lex_state = 959}, + [7042] = {.lex_state = 959}, + [7043] = {.lex_state = 959}, + [7044] = {.lex_state = 101}, + [7045] = {.lex_state = 512}, + [7046] = {.lex_state = 151}, + [7047] = {.lex_state = 263}, [7048] = {.lex_state = 323}, - [7049] = {.lex_state = 323}, - [7050] = {.lex_state = 323}, + [7049] = {.lex_state = 451}, + [7050] = {.lex_state = 451}, [7051] = {.lex_state = 323}, - [7052] = {.lex_state = 323}, - [7053] = {.lex_state = 999}, - [7054] = {.lex_state = 557}, - [7055] = {.lex_state = 323}, - [7056] = {.lex_state = 382}, - [7057] = {.lex_state = 1019}, - [7058] = {.lex_state = 1019}, - [7059] = {.lex_state = 323}, - [7060] = {.lex_state = 1019}, - [7061] = {.lex_state = 557}, - [7062] = {.lex_state = 511}, - [7063] = {.lex_state = 451}, - [7064] = {.lex_state = 511}, - [7065] = {.lex_state = 1018}, - [7066] = {.lex_state = 323}, - [7067] = {.lex_state = 147}, - [7068] = {.lex_state = 323}, - [7069] = {.lex_state = 323}, - [7070] = {.lex_state = 323}, - [7071] = {.lex_state = 323}, - [7072] = {.lex_state = 1019}, - [7073] = {.lex_state = 1019}, - [7074] = {.lex_state = 323}, - [7075] = {.lex_state = 323}, - [7076] = {.lex_state = 1019}, - [7077] = {.lex_state = 1019}, - [7078] = {.lex_state = 323}, - [7079] = {.lex_state = 1019}, - [7080] = {.lex_state = 147}, - [7081] = {.lex_state = 147}, - [7082] = {.lex_state = 1019}, - [7083] = {.lex_state = 1018}, - [7084] = {.lex_state = 511}, - [7085] = {.lex_state = 195}, - [7086] = {.lex_state = 511}, - [7087] = {.lex_state = 323}, - [7088] = {.lex_state = 1019}, - [7089] = {.lex_state = 323}, - [7090] = {.lex_state = 323}, - [7091] = {.lex_state = 323}, - [7092] = {.lex_state = 1019}, - [7093] = {.lex_state = 323}, - [7094] = {.lex_state = 428}, - [7095] = {.lex_state = 323}, - [7096] = {.lex_state = 323}, - [7097] = {.lex_state = 550}, - [7098] = {.lex_state = 323}, - [7099] = {.lex_state = 1019}, - [7100] = {.lex_state = 34}, - [7101] = {.lex_state = 511}, - [7102] = {.lex_state = 323}, - [7103] = {.lex_state = 1019}, - [7104] = {.lex_state = 511}, - [7105] = {.lex_state = 323}, - [7106] = {.lex_state = 323}, - [7107] = {.lex_state = 323}, - [7108] = {.lex_state = 323}, - [7109] = {.lex_state = 323}, - [7110] = {.lex_state = 323}, - [7111] = {.lex_state = 323}, - [7112] = {.lex_state = 546}, - [7113] = {.lex_state = 1019}, - [7114] = {.lex_state = 323}, - [7115] = {.lex_state = 323}, - [7116] = {.lex_state = 323}, - [7117] = {.lex_state = 1019}, - [7118] = {.lex_state = 1019}, - [7119] = {.lex_state = 1018}, - [7120] = {.lex_state = 1018}, - [7121] = {.lex_state = 549}, - [7122] = {.lex_state = 38}, - [7123] = {.lex_state = 511}, - [7124] = {.lex_state = 1018}, - [7125] = {.lex_state = 1019}, - [7126] = {.lex_state = 1018}, - [7127] = {.lex_state = 511}, - [7128] = {.lex_state = 323}, - [7129] = {.lex_state = 1019}, - [7130] = {.lex_state = 323}, - [7131] = {.lex_state = 323}, - [7132] = {.lex_state = 323}, - [7133] = {.lex_state = 195}, + [7052] = {.lex_state = 959}, + [7053] = {.lex_state = 89}, + [7054] = {.lex_state = 959}, + [7055] = {.lex_state = 367}, + [7056] = {.lex_state = 263}, + [7057] = {.lex_state = 959}, + [7058] = {.lex_state = 497}, + [7059] = {.lex_state = 263}, + [7060] = {.lex_state = 959}, + [7061] = {.lex_state = 959}, + [7062] = {.lex_state = 959}, + [7063] = {.lex_state = 524}, + [7064] = {.lex_state = 263}, + [7065] = {.lex_state = 263}, + [7066] = {.lex_state = 959}, + [7067] = {.lex_state = 451}, + [7068] = {.lex_state = 263}, + [7069] = {.lex_state = 35}, + [7070] = {.lex_state = 497}, + [7071] = {.lex_state = 89}, + [7072] = {.lex_state = 263}, + [7073] = {.lex_state = 263}, + [7074] = {.lex_state = 263}, + [7075] = {.lex_state = 959}, + [7076] = {.lex_state = 263}, + [7077] = {.lex_state = 451}, + [7078] = {.lex_state = 263}, + [7079] = {.lex_state = 263}, + [7080] = {.lex_state = 263}, + [7081] = {.lex_state = 297}, + [7082] = {.lex_state = 297}, + [7083] = {.lex_state = 297}, + [7084] = {.lex_state = 263}, + [7085] = {.lex_state = 263}, + [7086] = {.lex_state = 297}, + [7087] = {.lex_state = 263}, + [7088] = {.lex_state = 263}, + [7089] = {.lex_state = 959}, + [7090] = {.lex_state = 523}, + [7091] = {.lex_state = 490}, + [7092] = {.lex_state = 959}, + [7093] = {.lex_state = 959}, + [7094] = {.lex_state = 959}, + [7095] = {.lex_state = 514}, + [7096] = {.lex_state = 497}, + [7097] = {.lex_state = 514}, + [7098] = {.lex_state = 101}, + [7099] = {.lex_state = 959}, + [7100] = {.lex_state = 89}, + [7101] = {.lex_state = 959}, + [7102] = {.lex_state = 297}, + [7103] = {.lex_state = 297}, + [7104] = {.lex_state = 486}, + [7105] = {.lex_state = 101}, + [7106] = {.lex_state = 959}, + [7107] = {.lex_state = 959}, + [7108] = {.lex_state = 959}, + [7109] = {.lex_state = 135}, + [7110] = {.lex_state = 959}, + [7111] = {.lex_state = 263}, + [7112] = {.lex_state = 263}, + [7113] = {.lex_state = 263}, + [7114] = {.lex_state = 263}, + [7115] = {.lex_state = 263}, + [7116] = {.lex_state = 263}, + [7117] = {.lex_state = 263}, + [7118] = {.lex_state = 959}, + [7119] = {.lex_state = 451}, + [7120] = {.lex_state = 263}, + [7121] = {.lex_state = 297}, + [7122] = {.lex_state = 959}, + [7123] = {.lex_state = 323}, + [7124] = {.lex_state = 89}, + [7125] = {.lex_state = 89}, + [7126] = {.lex_state = 323}, + [7127] = {.lex_state = 297}, + [7128] = {.lex_state = 959}, + [7129] = {.lex_state = 959}, + [7130] = {.lex_state = 959}, + [7131] = {.lex_state = 959}, + [7132] = {.lex_state = 959}, + [7133] = {.lex_state = 497}, [7134] = {.lex_state = 323}, - [7135] = {.lex_state = 548}, + [7135] = {.lex_state = 151}, [7136] = {.lex_state = 323}, - [7137] = {.lex_state = 323}, - [7138] = {.lex_state = 323}, - [7139] = {.lex_state = 583}, - [7140] = {.lex_state = 1019}, - [7141] = {.lex_state = 1017}, - [7142] = {.lex_state = 511}, - [7143] = {.lex_state = 1019}, - [7144] = {.lex_state = 1019}, - [7145] = {.lex_state = 1018}, - [7146] = {.lex_state = 511}, - [7147] = {.lex_state = 323}, - [7148] = {.lex_state = 1019}, - [7149] = {.lex_state = 323}, + [7137] = {.lex_state = 959}, + [7138] = {.lex_state = 959}, + [7139] = {.lex_state = 451}, + [7140] = {.lex_state = 959}, + [7141] = {.lex_state = 959}, + [7142] = {.lex_state = 959}, + [7143] = {.lex_state = 323}, + [7144] = {.lex_state = 297}, + [7145] = {.lex_state = 323}, + [7146] = {.lex_state = 959}, + [7147] = {.lex_state = 959}, + [7148] = {.lex_state = 959}, + [7149] = {.lex_state = 959}, [7150] = {.lex_state = 323}, - [7151] = {.lex_state = 323}, - [7152] = {.lex_state = 1019}, - [7153] = {.lex_state = 323}, - [7154] = {.lex_state = 323}, - [7155] = {.lex_state = 323}, - [7156] = {.lex_state = 323}, - [7157] = {.lex_state = 1019}, + [7151] = {.lex_state = 451}, + [7152] = {.lex_state = 323}, + [7153] = {.lex_state = 263}, + [7154] = {.lex_state = 959}, + [7155] = {.lex_state = 959}, + [7156] = {.lex_state = 959}, + [7157] = {.lex_state = 959}, [7158] = {.lex_state = 323}, - [7159] = {.lex_state = 1019}, - [7160] = {.lex_state = 161}, - [7161] = {.lex_state = 1019}, - [7162] = {.lex_state = 511}, - [7163] = {.lex_state = 584}, - [7164] = {.lex_state = 323}, + [7159] = {.lex_state = 297}, + [7160] = {.lex_state = 323}, + [7161] = {.lex_state = 959}, + [7162] = {.lex_state = 959}, + [7163] = {.lex_state = 959}, + [7164] = {.lex_state = 959}, [7165] = {.lex_state = 323}, - [7166] = {.lex_state = 323}, + [7166] = {.lex_state = 524}, [7167] = {.lex_state = 323}, - [7168] = {.lex_state = 34}, - [7169] = {.lex_state = 323}, - [7170] = {.lex_state = 1019}, - [7171] = {.lex_state = 323}, - [7172] = {.lex_state = 323}, - [7173] = {.lex_state = 323}, + [7168] = {.lex_state = 451}, + [7169] = {.lex_state = 959}, + [7170] = {.lex_state = 959}, + [7171] = {.lex_state = 263}, + [7172] = {.lex_state = 959}, + [7173] = {.lex_state = 959}, [7174] = {.lex_state = 323}, - [7175] = {.lex_state = 1019}, + [7175] = {.lex_state = 263}, [7176] = {.lex_state = 323}, - [7177] = {.lex_state = 1019}, - [7178] = {.lex_state = 1019}, - [7179] = {.lex_state = 323}, - [7180] = {.lex_state = 323}, - [7181] = {.lex_state = 323}, - [7182] = {.lex_state = 1019}, + [7177] = {.lex_state = 263}, + [7178] = {.lex_state = 959}, + [7179] = {.lex_state = 959}, + [7180] = {.lex_state = 959}, + [7181] = {.lex_state = 959}, + [7182] = {.lex_state = 323}, [7183] = {.lex_state = 323}, - [7184] = {.lex_state = 323}, - [7185] = {.lex_state = 323}, - [7186] = {.lex_state = 323}, - [7187] = {.lex_state = 38}, - [7188] = {.lex_state = 323}, - [7189] = {.lex_state = 323}, - [7190] = {.lex_state = 1019}, + [7184] = {.lex_state = 959}, + [7185] = {.lex_state = 959}, + [7186] = {.lex_state = 959}, + [7187] = {.lex_state = 263}, + [7188] = {.lex_state = 959}, + [7189] = {.lex_state = 959}, + [7190] = {.lex_state = 323}, [7191] = {.lex_state = 323}, - [7192] = {.lex_state = 1019}, - [7193] = {.lex_state = 1019}, - [7194] = {.lex_state = 511}, - [7195] = {.lex_state = 48}, - [7196] = {.lex_state = 48}, - [7197] = {.lex_state = 323}, - [7198] = {.lex_state = 1019}, - [7199] = {.lex_state = 34}, - [7200] = {.lex_state = 323}, - [7201] = {.lex_state = 323}, - [7202] = {.lex_state = 323}, - [7203] = {.lex_state = 323}, - [7204] = {.lex_state = 48}, - [7205] = {.lex_state = 1019}, + [7192] = {.lex_state = 959}, + [7193] = {.lex_state = 959}, + [7194] = {.lex_state = 959}, + [7195] = {.lex_state = 959}, + [7196] = {.lex_state = 323}, + [7197] = {.lex_state = 263}, + [7198] = {.lex_state = 323}, + [7199] = {.lex_state = 263}, + [7200] = {.lex_state = 959}, + [7201] = {.lex_state = 959}, + [7202] = {.lex_state = 959}, + [7203] = {.lex_state = 959}, + [7204] = {.lex_state = 323}, + [7205] = {.lex_state = 263}, [7206] = {.lex_state = 323}, - [7207] = {.lex_state = 323}, - [7208] = {.lex_state = 323}, - [7209] = {.lex_state = 1019}, - [7210] = {.lex_state = 323}, - [7211] = {.lex_state = 1019}, - [7212] = {.lex_state = 1019}, - [7213] = {.lex_state = 48}, - [7214] = {.lex_state = 546}, - [7215] = {.lex_state = 323}, + [7207] = {.lex_state = 263}, + [7208] = {.lex_state = 959}, + [7209] = {.lex_state = 959}, + [7210] = {.lex_state = 959}, + [7211] = {.lex_state = 959}, + [7212] = {.lex_state = 323}, + [7213] = {.lex_state = 323}, + [7214] = {.lex_state = 959}, + [7215] = {.lex_state = 959}, [7216] = {.lex_state = 323}, - [7217] = {.lex_state = 323}, - [7218] = {.lex_state = 323}, - [7219] = {.lex_state = 510}, - [7220] = {.lex_state = 323}, + [7217] = {.lex_state = 959}, + [7218] = {.lex_state = 959}, + [7219] = {.lex_state = 323}, + [7220] = {.lex_state = 497}, [7221] = {.lex_state = 323}, - [7222] = {.lex_state = 323}, - [7223] = {.lex_state = 1019}, - [7224] = {.lex_state = 323}, - [7225] = {.lex_state = 511}, - [7226] = {.lex_state = 584}, - [7227] = {.lex_state = 1020}, - [7228] = {.lex_state = 1019}, - [7229] = {.lex_state = 1019}, - [7230] = {.lex_state = 1019}, - [7231] = {.lex_state = 211}, - [7232] = {.lex_state = 511}, - [7233] = {.lex_state = 583}, - [7234] = {.lex_state = 323}, - [7235] = {.lex_state = 323}, - [7236] = {.lex_state = 323}, - [7237] = {.lex_state = 1019}, - [7238] = {.lex_state = 323}, + [7222] = {.lex_state = 959}, + [7223] = {.lex_state = 959}, + [7224] = {.lex_state = 959}, + [7225] = {.lex_state = 959}, + [7226] = {.lex_state = 323}, + [7227] = {.lex_state = 297}, + [7228] = {.lex_state = 959}, + [7229] = {.lex_state = 959}, + [7230] = {.lex_state = 959}, + [7231] = {.lex_state = 959}, + [7232] = {.lex_state = 323}, + [7233] = {.lex_state = 323}, + [7234] = {.lex_state = 959}, + [7235] = {.lex_state = 959}, + [7236] = {.lex_state = 959}, + [7237] = {.lex_state = 959}, + [7238] = {.lex_state = 959}, [7239] = {.lex_state = 323}, [7240] = {.lex_state = 323}, - [7241] = {.lex_state = 145}, - [7242] = {.lex_state = 323}, - [7243] = {.lex_state = 323}, - [7244] = {.lex_state = 323}, + [7241] = {.lex_state = 959}, + [7242] = {.lex_state = 959}, + [7243] = {.lex_state = 959}, + [7244] = {.lex_state = 959}, [7245] = {.lex_state = 323}, - [7246] = {.lex_state = 584}, - [7247] = {.lex_state = 557}, - [7248] = {.lex_state = 1019}, - [7249] = {.lex_state = 1019}, - [7250] = {.lex_state = 1019}, - [7251] = {.lex_state = 323}, - [7252] = {.lex_state = 1019}, - [7253] = {.lex_state = 1019}, - [7254] = {.lex_state = 1019}, - [7255] = {.lex_state = 147}, - [7256] = {.lex_state = 1019}, - [7257] = {.lex_state = 323}, - [7258] = {.lex_state = 1019}, - [7259] = {.lex_state = 1019}, - [7260] = {.lex_state = 1019}, - [7261] = {.lex_state = 1019}, - [7262] = {.lex_state = 1019}, - [7263] = {.lex_state = 546}, - [7264] = {.lex_state = 574}, + [7246] = {.lex_state = 323}, + [7247] = {.lex_state = 959}, + [7248] = {.lex_state = 959}, + [7249] = {.lex_state = 486}, + [7250] = {.lex_state = 959}, + [7251] = {.lex_state = 959}, + [7252] = {.lex_state = 323}, + [7253] = {.lex_state = 323}, + [7254] = {.lex_state = 959}, + [7255] = {.lex_state = 959}, + [7256] = {.lex_state = 959}, + [7257] = {.lex_state = 959}, + [7258] = {.lex_state = 323}, + [7259] = {.lex_state = 323}, + [7260] = {.lex_state = 959}, + [7261] = {.lex_state = 959}, + [7262] = {.lex_state = 959}, + [7263] = {.lex_state = 959}, + [7264] = {.lex_state = 959}, [7265] = {.lex_state = 323}, - [7266] = {.lex_state = 511}, - [7267] = {.lex_state = 1019}, - [7268] = {.lex_state = 323}, - [7269] = {.lex_state = 211}, - [7270] = {.lex_state = 511}, - [7271] = {.lex_state = 323}, - [7272] = {.lex_state = 1019}, - [7273] = {.lex_state = 323}, - [7274] = {.lex_state = 323}, - [7275] = {.lex_state = 1019}, - [7276] = {.lex_state = 1019}, - [7277] = {.lex_state = 1017}, - [7278] = {.lex_state = 1019}, - [7279] = {.lex_state = 1019}, - [7280] = {.lex_state = 323}, - [7281] = {.lex_state = 1019}, - [7282] = {.lex_state = 382}, - [7283] = {.lex_state = 1019}, - [7284] = {.lex_state = 323}, - [7285] = {.lex_state = 574}, - [7286] = {.lex_state = 165}, - [7287] = {.lex_state = 161}, - [7288] = {.lex_state = 323}, - [7289] = {.lex_state = 1019}, - [7290] = {.lex_state = 323}, - [7291] = {.lex_state = 165}, - [7292] = {.lex_state = 323}, - [7293] = {.lex_state = 323}, - [7294] = {.lex_state = 161}, - [7295] = {.lex_state = 161}, - [7296] = {.lex_state = 195}, - [7297] = {.lex_state = 1019}, - [7298] = {.lex_state = 1019}, - [7299] = {.lex_state = 323}, - [7300] = {.lex_state = 1019}, - [7301] = {.lex_state = 382}, - [7302] = {.lex_state = 1019}, - [7303] = {.lex_state = 323}, - [7304] = {.lex_state = 147}, - [7305] = {.lex_state = 333}, - [7306] = {.lex_state = 333}, - [7307] = {.lex_state = 1019}, - [7308] = {.lex_state = 211}, - [7309] = {.lex_state = 323}, - [7310] = {.lex_state = 1019}, - [7311] = {.lex_state = 1019}, - [7312] = {.lex_state = 1019}, - [7313] = {.lex_state = 1019}, - [7314] = {.lex_state = 1019}, - [7315] = {.lex_state = 572}, - [7316] = {.lex_state = 323}, - [7317] = {.lex_state = 1019}, - [7318] = {.lex_state = 546}, - [7319] = {.lex_state = 511}, - [7320] = {.lex_state = 1019}, - [7321] = {.lex_state = 1019}, - [7322] = {.lex_state = 1019}, - [7323] = {.lex_state = 1019}, - [7324] = {.lex_state = 1019}, - [7325] = {.lex_state = 1019}, - [7326] = {.lex_state = 1019}, - [7327] = {.lex_state = 1019}, - [7328] = {.lex_state = 323}, - [7329] = {.lex_state = 161}, - [7330] = {.lex_state = 1019}, - [7331] = {.lex_state = 1019}, - [7332] = {.lex_state = 211}, - [7333] = {.lex_state = 511}, - [7334] = {.lex_state = 323}, - [7335] = {.lex_state = 1019}, - [7336] = {.lex_state = 511}, - [7337] = {.lex_state = 505}, - [7338] = {.lex_state = 1019}, - [7339] = {.lex_state = 323}, - [7340] = {.lex_state = 323}, - [7341] = {.lex_state = 1019}, - [7342] = {.lex_state = 323}, - [7343] = {.lex_state = 323}, - [7344] = {.lex_state = 323}, - [7345] = {.lex_state = 323}, - [7346] = {.lex_state = 323}, - [7347] = {.lex_state = 323}, - [7348] = {.lex_state = 323}, - [7349] = {.lex_state = 323}, - [7350] = {.lex_state = 323}, - [7351] = {.lex_state = 323}, - [7352] = {.lex_state = 323}, - [7353] = {.lex_state = 323}, - [7354] = {.lex_state = 323}, - [7355] = {.lex_state = 574}, - [7356] = {.lex_state = 1019}, - [7357] = {.lex_state = 574}, - [7358] = {.lex_state = 382}, - [7359] = {.lex_state = 1019}, - [7360] = {.lex_state = 1019}, - [7361] = {.lex_state = 382}, - [7362] = {.lex_state = 323}, - [7363] = {.lex_state = 1019}, - [7364] = {.lex_state = 323}, - [7365] = {.lex_state = 1019}, - [7366] = {.lex_state = 1019}, - [7367] = {.lex_state = 1019}, - [7368] = {.lex_state = 1019}, - [7369] = {.lex_state = 1019}, - [7370] = {.lex_state = 161}, - [7371] = {.lex_state = 382}, - [7372] = {.lex_state = 323}, - [7373] = {.lex_state = 382}, - [7374] = {.lex_state = 1019}, - [7375] = {.lex_state = 382}, - [7376] = {.lex_state = 1019}, - [7377] = {.lex_state = 1019}, - [7378] = {.lex_state = 1019}, - [7379] = {.lex_state = 1019}, - [7380] = {.lex_state = 382}, - [7381] = {.lex_state = 546}, - [7382] = {.lex_state = 382}, - [7383] = {.lex_state = 1019}, - [7384] = {.lex_state = 1019}, - [7385] = {.lex_state = 1019}, - [7386] = {.lex_state = 1019}, - [7387] = {.lex_state = 1019}, - [7388] = {.lex_state = 382}, - [7389] = {.lex_state = 382}, - [7390] = {.lex_state = 1019}, - [7391] = {.lex_state = 1019}, - [7392] = {.lex_state = 1019}, - [7393] = {.lex_state = 1019}, - [7394] = {.lex_state = 1019}, - [7395] = {.lex_state = 511}, - [7396] = {.lex_state = 382}, - [7397] = {.lex_state = 1019}, - [7398] = {.lex_state = 382}, - [7399] = {.lex_state = 1019}, - [7400] = {.lex_state = 1019}, - [7401] = {.lex_state = 1019}, - [7402] = {.lex_state = 1019}, - [7403] = {.lex_state = 1019}, - [7404] = {.lex_state = 382}, - [7405] = {.lex_state = 382}, - [7406] = {.lex_state = 1019}, - [7407] = {.lex_state = 1019}, - [7408] = {.lex_state = 1019}, - [7409] = {.lex_state = 1019}, - [7410] = {.lex_state = 1019}, - [7411] = {.lex_state = 382}, - [7412] = {.lex_state = 323}, - [7413] = {.lex_state = 382}, - [7414] = {.lex_state = 211}, - [7415] = {.lex_state = 1019}, - [7416] = {.lex_state = 1019}, - [7417] = {.lex_state = 1019}, - [7418] = {.lex_state = 1019}, - [7419] = {.lex_state = 382}, - [7420] = {.lex_state = 511}, - [7421] = {.lex_state = 382}, - [7422] = {.lex_state = 1019}, - [7423] = {.lex_state = 1019}, - [7424] = {.lex_state = 1019}, - [7425] = {.lex_state = 1019}, - [7426] = {.lex_state = 382}, - [7427] = {.lex_state = 323}, - [7428] = {.lex_state = 382}, - [7429] = {.lex_state = 1019}, - [7430] = {.lex_state = 1019}, - [7431] = {.lex_state = 1019}, - [7432] = {.lex_state = 1019}, - [7433] = {.lex_state = 1019}, - [7434] = {.lex_state = 382}, - [7435] = {.lex_state = 382}, - [7436] = {.lex_state = 323}, - [7437] = {.lex_state = 1019}, - [7438] = {.lex_state = 1019}, - [7439] = {.lex_state = 323}, - [7440] = {.lex_state = 1019}, - [7441] = {.lex_state = 1019}, - [7442] = {.lex_state = 323}, - [7443] = {.lex_state = 382}, - [7444] = {.lex_state = 323}, - [7445] = {.lex_state = 382}, - [7446] = {.lex_state = 1019}, - [7447] = {.lex_state = 1019}, - [7448] = {.lex_state = 1019}, - [7449] = {.lex_state = 1019}, - [7450] = {.lex_state = 382}, - [7451] = {.lex_state = 382}, - [7452] = {.lex_state = 323}, - [7453] = {.lex_state = 1019}, - [7454] = {.lex_state = 1019}, - [7455] = {.lex_state = 1019}, - [7456] = {.lex_state = 1019}, - [7457] = {.lex_state = 1019}, - [7458] = {.lex_state = 323}, - [7459] = {.lex_state = 382}, - [7460] = {.lex_state = 323}, - [7461] = {.lex_state = 1019}, - [7462] = {.lex_state = 1019}, - [7463] = {.lex_state = 1019}, - [7464] = {.lex_state = 1019}, - [7465] = {.lex_state = 382}, - [7466] = {.lex_state = 382}, - [7467] = {.lex_state = 1019}, - [7468] = {.lex_state = 1019}, - [7469] = {.lex_state = 323}, - [7470] = {.lex_state = 1019}, - [7471] = {.lex_state = 1019}, - [7472] = {.lex_state = 382}, - [7473] = {.lex_state = 382}, - [7474] = {.lex_state = 211}, - [7475] = {.lex_state = 1019}, - [7476] = {.lex_state = 1019}, - [7477] = {.lex_state = 195}, - [7478] = {.lex_state = 1019}, - [7479] = {.lex_state = 1019}, - [7480] = {.lex_state = 382}, - [7481] = {.lex_state = 382}, - [7482] = {.lex_state = 546}, - [7483] = {.lex_state = 1019}, - [7484] = {.lex_state = 1019}, - [7485] = {.lex_state = 1018}, - [7486] = {.lex_state = 1019}, - [7487] = {.lex_state = 1019}, - [7488] = {.lex_state = 382}, - [7489] = {.lex_state = 382}, - [7490] = {.lex_state = 1019}, - [7491] = {.lex_state = 1019}, - [7492] = {.lex_state = 1019}, - [7493] = {.lex_state = 1019}, - [7494] = {.lex_state = 1019}, - [7495] = {.lex_state = 382}, - [7496] = {.lex_state = 382}, - [7497] = {.lex_state = 1019}, - [7498] = {.lex_state = 1019}, - [7499] = {.lex_state = 1019}, - [7500] = {.lex_state = 1019}, - [7501] = {.lex_state = 382}, - [7502] = {.lex_state = 382}, - [7503] = {.lex_state = 1019}, - [7504] = {.lex_state = 1019}, - [7505] = {.lex_state = 1019}, - [7506] = {.lex_state = 1019}, - [7507] = {.lex_state = 1019}, - [7508] = {.lex_state = 382}, - [7509] = {.lex_state = 382}, - [7510] = {.lex_state = 1019}, - [7511] = {.lex_state = 1019}, - [7512] = {.lex_state = 1019}, - [7513] = {.lex_state = 1019}, - [7514] = {.lex_state = 1019}, - [7515] = {.lex_state = 323}, - [7516] = {.lex_state = 1019}, - [7517] = {.lex_state = 511}, - [7518] = {.lex_state = 323}, - [7519] = {.lex_state = 1018}, - [7520] = {.lex_state = 382}, - [7521] = {.lex_state = 1019}, - [7522] = {.lex_state = 1019}, - [7523] = {.lex_state = 211}, - [7524] = {.lex_state = 511}, - [7525] = {.lex_state = 1019}, - [7526] = {.lex_state = 323}, - [7527] = {.lex_state = 546}, - [7528] = {.lex_state = 557}, - [7529] = {.lex_state = 323}, - [7530] = {.lex_state = 323}, - [7531] = {.lex_state = 323}, - [7532] = {.lex_state = 574}, - [7533] = {.lex_state = 323}, - [7534] = {.lex_state = 323}, - [7535] = {.lex_state = 557}, - [7536] = {.lex_state = 323}, - [7537] = {.lex_state = 557}, - [7538] = {.lex_state = 323}, - [7539] = {.lex_state = 323}, - [7540] = {.lex_state = 403}, - [7541] = {.lex_state = 321}, - [7542] = {.lex_state = 1019}, - [7543] = {.lex_state = 1019}, - [7544] = {.lex_state = 36}, - [7545] = {.lex_state = 580}, - [7546] = {.lex_state = 1019}, - [7547] = {.lex_state = 3625}, - [7548] = {.lex_state = 323}, - [7549] = {.lex_state = 5020}, - [7550] = {.lex_state = 1020}, - [7551] = {.lex_state = 1019}, - [7552] = {.lex_state = 1019}, - [7553] = {.lex_state = 1019}, - [7554] = {.lex_state = 1019}, - [7555] = {.lex_state = 1019}, - [7556] = {.lex_state = 1019}, - [7557] = {.lex_state = 5020}, - [7558] = {.lex_state = 1019}, - [7559] = {.lex_state = 1019}, - [7560] = {.lex_state = 580}, - [7561] = {.lex_state = 5018}, - [7562] = {.lex_state = 5018}, - [7563] = {.lex_state = 1017}, - [7564] = {.lex_state = 5018}, - [7565] = {.lex_state = 321}, - [7566] = {.lex_state = 159}, - [7567] = {.lex_state = 5018}, - [7568] = {.lex_state = 1019}, - [7569] = {.lex_state = 195}, - [7570] = {.lex_state = 999}, - [7571] = {.lex_state = 1020}, - [7572] = {.lex_state = 1019}, - [7573] = {.lex_state = 159}, - [7574] = {.lex_state = 1019}, - [7575] = {.lex_state = 195}, - [7576] = {.lex_state = 5022}, - [7577] = {.lex_state = 1019}, - [7578] = {.lex_state = 5022}, - [7579] = {.lex_state = 5020}, - [7580] = {.lex_state = 165}, - [7581] = {.lex_state = 165}, - [7582] = {.lex_state = 323}, - [7583] = {.lex_state = 5018}, - [7584] = {.lex_state = 36}, - [7585] = {.lex_state = 5018}, - [7586] = {.lex_state = 5018}, - [7587] = {.lex_state = 321}, - [7588] = {.lex_state = 323}, - [7589] = {.lex_state = 1019}, - [7590] = {.lex_state = 5018}, - [7591] = {.lex_state = 323}, - [7592] = {.lex_state = 321}, - [7593] = {.lex_state = 323}, - [7594] = {.lex_state = 5018}, - [7595] = {.lex_state = 323}, - [7596] = {.lex_state = 321}, - [7597] = {.lex_state = 5018}, - [7598] = {.lex_state = 5018}, - [7599] = {.lex_state = 5022}, - [7600] = {.lex_state = 5018}, - [7601] = {.lex_state = 1019}, - [7602] = {.lex_state = 321}, - [7603] = {.lex_state = 5022}, - [7604] = {.lex_state = 1019}, - [7605] = {.lex_state = 323}, - [7606] = {.lex_state = 1019}, - [7607] = {.lex_state = 580}, - [7608] = {.lex_state = 560}, - [7609] = {.lex_state = 5018}, - [7610] = {.lex_state = 1019}, - [7611] = {.lex_state = 5018}, - [7612] = {.lex_state = 5018}, - [7613] = {.lex_state = 5018}, - [7614] = {.lex_state = 5020}, - [7615] = {.lex_state = 5018}, - [7616] = {.lex_state = 5018}, - [7617] = {.lex_state = 195}, - [7618] = {.lex_state = 1019}, - [7619] = {.lex_state = 5018}, - [7620] = {.lex_state = 5018}, - [7621] = {.lex_state = 5018}, - [7622] = {.lex_state = 323}, - [7623] = {.lex_state = 441}, - [7624] = {.lex_state = 323}, - [7625] = {.lex_state = 5022}, - [7626] = {.lex_state = 5018}, - [7627] = {.lex_state = 1019}, - [7628] = {.lex_state = 5022}, - [7629] = {.lex_state = 323}, - [7630] = {.lex_state = 5018}, - [7631] = {.lex_state = 1020}, - [7632] = {.lex_state = 511}, - [7633] = {.lex_state = 1019}, - [7634] = {.lex_state = 5018}, - [7635] = {.lex_state = 1019}, - [7636] = {.lex_state = 195}, - [7637] = {.lex_state = 323}, - [7638] = {.lex_state = 323}, - [7639] = {.lex_state = 1019}, - [7640] = {.lex_state = 5020}, - [7641] = {.lex_state = 1019}, - [7642] = {.lex_state = 5018}, - [7643] = {.lex_state = 323}, - [7644] = {.lex_state = 321}, - [7645] = {.lex_state = 195}, - [7646] = {.lex_state = 54}, - [7647] = {.lex_state = 195}, - [7648] = {.lex_state = 1019}, - [7649] = {.lex_state = 321}, - [7650] = {.lex_state = 5020}, - [7651] = {.lex_state = 195}, - [7652] = {.lex_state = 321}, - [7653] = {.lex_state = 321}, - [7654] = {.lex_state = 321}, - [7655] = {.lex_state = 321}, - [7656] = {.lex_state = 5018}, - [7657] = {.lex_state = 195}, - [7658] = {.lex_state = 1019}, - [7659] = {.lex_state = 323}, - [7660] = {.lex_state = 321}, - [7661] = {.lex_state = 5020}, - [7662] = {.lex_state = 1019}, - [7663] = {.lex_state = 1019}, - [7664] = {.lex_state = 1019}, - [7665] = {.lex_state = 321}, - [7666] = {.lex_state = 1019}, - [7667] = {.lex_state = 583}, - [7668] = {.lex_state = 580}, - [7669] = {.lex_state = 321}, - [7670] = {.lex_state = 580}, - [7671] = {.lex_state = 1019}, - [7672] = {.lex_state = 321}, - [7673] = {.lex_state = 323}, - [7674] = {.lex_state = 211}, - [7675] = {.lex_state = 5020}, - [7676] = {.lex_state = 1019}, - [7677] = {.lex_state = 5018}, - [7678] = {.lex_state = 5018}, - [7679] = {.lex_state = 1019}, - [7680] = {.lex_state = 323}, - [7681] = {.lex_state = 441}, - [7682] = {.lex_state = 5018}, - [7683] = {.lex_state = 5018}, - [7684] = {.lex_state = 572}, - [7685] = {.lex_state = 5020}, - [7686] = {.lex_state = 441}, - [7687] = {.lex_state = 1019}, - [7688] = {.lex_state = 1019}, - [7689] = {.lex_state = 159}, - [7690] = {.lex_state = 1019}, - [7691] = {.lex_state = 323}, - [7692] = {.lex_state = 1019}, - [7693] = {.lex_state = 1019}, - [7694] = {.lex_state = 1019}, - [7695] = {.lex_state = 323}, - [7696] = {.lex_state = 581}, - [7697] = {.lex_state = 165}, - [7698] = {.lex_state = 323}, - [7699] = {.lex_state = 5018}, - [7700] = {.lex_state = 5018}, - [7701] = {.lex_state = 1019}, - [7702] = {.lex_state = 323}, - [7703] = {.lex_state = 5018}, - [7704] = {.lex_state = 5018}, - [7705] = {.lex_state = 5018}, - [7706] = {.lex_state = 321}, - [7707] = {.lex_state = 1019}, - [7708] = {.lex_state = 5018}, - [7709] = {.lex_state = 5022}, - [7710] = {.lex_state = 1019}, - [7711] = {.lex_state = 5018}, - [7712] = {.lex_state = 1020}, - [7713] = {.lex_state = 1019}, - [7714] = {.lex_state = 1019}, - [7715] = {.lex_state = 323}, - [7716] = {.lex_state = 323}, - [7717] = {.lex_state = 323}, - [7718] = {.lex_state = 1019}, - [7719] = {.lex_state = 5018}, - [7720] = {.lex_state = 5018}, - [7721] = {.lex_state = 5018}, - [7722] = {.lex_state = 5018}, - [7723] = {.lex_state = 323}, - [7724] = {.lex_state = 195}, - [7725] = {.lex_state = 5022}, - [7726] = {.lex_state = 5022}, - [7727] = {.lex_state = 1019}, - [7728] = {.lex_state = 1019}, - [7729] = {.lex_state = 195}, - [7730] = {.lex_state = 1019}, - [7731] = {.lex_state = 36}, - [7732] = {.lex_state = 995}, - [7733] = {.lex_state = 1019}, - [7734] = {.lex_state = 1019}, - [7735] = {.lex_state = 211}, - [7736] = {.lex_state = 1019}, - [7737] = {.lex_state = 1019}, - [7738] = {.lex_state = 211}, - [7739] = {.lex_state = 1019}, - [7740] = {.lex_state = 1019}, - [7741] = {.lex_state = 211}, - [7742] = {.lex_state = 1019}, - [7743] = {.lex_state = 1019}, - [7744] = {.lex_state = 1019}, - [7745] = {.lex_state = 1017}, - [7746] = {.lex_state = 1019}, - [7747] = {.lex_state = 54}, - [7748] = {.lex_state = 1019}, - [7749] = {.lex_state = 36}, - [7750] = {.lex_state = 1019}, - [7751] = {.lex_state = 1019}, - [7752] = {.lex_state = 1019}, - [7753] = {.lex_state = 195}, - [7754] = {.lex_state = 1019}, - [7755] = {.lex_state = 1019}, - [7756] = {.lex_state = 1019}, - [7757] = {.lex_state = 1019}, - [7758] = {.lex_state = 1019}, - [7759] = {.lex_state = 1019}, - [7760] = {.lex_state = 1019}, - [7761] = {.lex_state = 195}, - [7762] = {.lex_state = 1019}, - [7763] = {.lex_state = 1019}, - [7764] = {.lex_state = 161}, - [7765] = {.lex_state = 211}, - [7766] = {.lex_state = 1019}, - [7767] = {.lex_state = 1019}, - [7768] = {.lex_state = 1127}, - [7769] = {.lex_state = 1019}, - [7770] = {.lex_state = 570}, - [7771] = {.lex_state = 1019}, - [7772] = {.lex_state = 1019}, - [7773] = {.lex_state = 1019}, - [7774] = {.lex_state = 161}, - [7775] = {.lex_state = 1019}, - [7776] = {.lex_state = 195}, - [7777] = {.lex_state = 1019}, - [7778] = {.lex_state = 161}, - [7779] = {.lex_state = 1019}, - [7780] = {.lex_state = 1019}, - [7781] = {.lex_state = 1019}, - [7782] = {.lex_state = 1019}, - [7783] = {.lex_state = 1019}, - [7784] = {.lex_state = 1019}, - [7785] = {.lex_state = 1019}, - [7786] = {.lex_state = 1019}, - [7787] = {.lex_state = 568}, - [7788] = {.lex_state = 570}, - [7789] = {.lex_state = 36}, - [7790] = {.lex_state = 995}, - [7791] = {.lex_state = 567}, - [7792] = {.lex_state = 1019}, - [7793] = {.lex_state = 1019}, - [7794] = {.lex_state = 1019}, - [7795] = {.lex_state = 161}, - [7796] = {.lex_state = 1019}, - [7797] = {.lex_state = 36}, - [7798] = {.lex_state = 1019}, - [7799] = {.lex_state = 54}, - [7800] = {.lex_state = 1019}, - [7801] = {.lex_state = 1019}, - [7802] = {.lex_state = 583}, - [7803] = {.lex_state = 569}, - [7804] = {.lex_state = 159}, - [7805] = {.lex_state = 1019}, - [7806] = {.lex_state = 1019}, - [7807] = {.lex_state = 451}, - [7808] = {.lex_state = 1019}, - [7809] = {.lex_state = 1019}, - [7810] = {.lex_state = 36}, - [7811] = {.lex_state = 1019}, - [7812] = {.lex_state = 161}, - [7813] = {.lex_state = 581}, - [7814] = {.lex_state = 1019}, - [7815] = {.lex_state = 1019}, - [7816] = {.lex_state = 195}, - [7817] = {.lex_state = 1017}, - [7818] = {.lex_state = 1019}, - [7819] = {.lex_state = 161}, - [7820] = {.lex_state = 1019}, - [7821] = {.lex_state = 1019}, - [7822] = {.lex_state = 1019}, - [7823] = {.lex_state = 1019}, - [7824] = {.lex_state = 1019}, - [7825] = {.lex_state = 211}, - [7826] = {.lex_state = 161}, - [7827] = {.lex_state = 1019}, - [7828] = {.lex_state = 1019}, - [7829] = {.lex_state = 1019}, - [7830] = {.lex_state = 1019}, - [7831] = {.lex_state = 1019}, - [7832] = {.lex_state = 581}, - [7833] = {.lex_state = 1019}, - [7834] = {.lex_state = 1019}, - [7835] = {.lex_state = 54}, - [7836] = {.lex_state = 1019}, - [7837] = {.lex_state = 54}, - [7838] = {.lex_state = 1019}, - [7839] = {.lex_state = 195}, - [7840] = {.lex_state = 161}, - [7841] = {.lex_state = 1019}, - [7842] = {.lex_state = 1019}, - [7843] = {.lex_state = 211}, - [7844] = {.lex_state = 1019}, - [7845] = {.lex_state = 1019}, - [7846] = {.lex_state = 57}, - [7847] = {.lex_state = 1019}, - [7848] = {.lex_state = 161}, - [7849] = {.lex_state = 1017}, - [7850] = {.lex_state = 211}, - [7851] = {.lex_state = 1019}, - [7852] = {.lex_state = 161}, - [7853] = {.lex_state = 1019}, - [7854] = {.lex_state = 1019}, - [7855] = {.lex_state = 1019}, - [7856] = {.lex_state = 1019}, - [7857] = {.lex_state = 1019}, - [7858] = {.lex_state = 568}, - [7859] = {.lex_state = 1019}, - [7860] = {.lex_state = 1019}, - [7861] = {.lex_state = 1019}, - [7862] = {.lex_state = 57}, - [7863] = {.lex_state = 1019}, - [7864] = {.lex_state = 161}, - [7865] = {.lex_state = 195}, - [7866] = {.lex_state = 1019}, - [7867] = {.lex_state = 1019}, - [7868] = {.lex_state = 1019}, - [7869] = {.lex_state = 1019}, - [7870] = {.lex_state = 1019}, - [7871] = {.lex_state = 1019}, - [7872] = {.lex_state = 36}, - [7873] = {.lex_state = 1019}, - [7874] = {.lex_state = 321}, - [7875] = {.lex_state = 1019}, - [7876] = {.lex_state = 161}, - [7877] = {.lex_state = 1019}, - [7878] = {.lex_state = 1019}, - [7879] = {.lex_state = 1019}, - [7880] = {.lex_state = 1019}, - [7881] = {.lex_state = 161}, - [7882] = {.lex_state = 570}, - [7883] = {.lex_state = 5020}, - [7884] = {.lex_state = 1019}, - [7885] = {.lex_state = 36}, - [7886] = {.lex_state = 264}, - [7887] = {.lex_state = 5018}, - [7888] = {.lex_state = 161}, - [7889] = {.lex_state = 54}, - [7890] = {.lex_state = 195}, - [7891] = {.lex_state = 569}, - [7892] = {.lex_state = 1019}, - [7893] = {.lex_state = 1019}, - [7894] = {.lex_state = 195}, - [7895] = {.lex_state = 1019}, - [7896] = {.lex_state = 1019}, - [7897] = {.lex_state = 1019}, - [7898] = {.lex_state = 1019}, - [7899] = {.lex_state = 161}, - [7900] = {.lex_state = 1019}, - [7901] = {.lex_state = 1020}, - [7902] = {.lex_state = 1019}, - [7903] = {.lex_state = 1019}, - [7904] = {.lex_state = 1019}, - [7905] = {.lex_state = 566}, - [7906] = {.lex_state = 1019}, - [7907] = {.lex_state = 1019}, - [7908] = {.lex_state = 1019}, - [7909] = {.lex_state = 5037}, - [7910] = {.lex_state = 161}, - [7911] = {.lex_state = 195}, - [7912] = {.lex_state = 581}, - [7913] = {.lex_state = 1019}, - [7914] = {.lex_state = 1019}, - [7915] = {.lex_state = 195}, - [7916] = {.lex_state = 195}, - [7917] = {.lex_state = 1019}, - [7918] = {.lex_state = 264}, - [7919] = {.lex_state = 211}, - [7920] = {.lex_state = 5022}, - [7921] = {.lex_state = 161}, - [7922] = {.lex_state = 1019}, - [7923] = {.lex_state = 1019}, - [7924] = {.lex_state = 1019}, - [7925] = {.lex_state = 1019}, - [7926] = {.lex_state = 264}, - [7927] = {.lex_state = 211}, - [7928] = {.lex_state = 195}, - [7929] = {.lex_state = 54}, - [7930] = {.lex_state = 211}, - [7931] = {.lex_state = 1019}, - [7932] = {.lex_state = 161}, - [7933] = {.lex_state = 1020}, - [7934] = {.lex_state = 54}, - [7935] = {.lex_state = 1019}, - [7936] = {.lex_state = 1019}, - [7937] = {.lex_state = 1019}, - [7938] = {.lex_state = 1019}, - [7939] = {.lex_state = 161}, - [7940] = {.lex_state = 1019}, - [7941] = {.lex_state = 1019}, - [7942] = {.lex_state = 161}, - [7943] = {.lex_state = 1019}, - [7944] = {.lex_state = 1019}, - [7945] = {.lex_state = 54}, - [7946] = {.lex_state = 1019}, - [7947] = {.lex_state = 1019}, - [7948] = {.lex_state = 1019}, - [7949] = {.lex_state = 1019}, - [7950] = {.lex_state = 5022}, - [7951] = {.lex_state = 161}, - [7952] = {.lex_state = 1019}, - [7953] = {.lex_state = 568}, - [7954] = {.lex_state = 1019}, - [7955] = {.lex_state = 1019}, - [7956] = {.lex_state = 1019}, - [7957] = {.lex_state = 195}, - [7958] = {.lex_state = 1019}, - [7959] = {.lex_state = 1019}, - [7960] = {.lex_state = 1019}, - [7961] = {.lex_state = 1019}, - [7962] = {.lex_state = 1019}, - [7963] = {.lex_state = 1019}, - [7964] = {.lex_state = 1019}, - [7965] = {.lex_state = 568}, - [7966] = {.lex_state = 1019}, - [7967] = {.lex_state = 1019}, - [7968] = {.lex_state = 36}, - [7969] = {.lex_state = 1019}, - [7970] = {.lex_state = 5020}, - [7971] = {.lex_state = 581}, - [7972] = {.lex_state = 5018}, - [7973] = {.lex_state = 1019}, - [7974] = {.lex_state = 36}, - [7975] = {.lex_state = 1019}, - [7976] = {.lex_state = 581}, - [7977] = {.lex_state = 568}, - [7978] = {.lex_state = 1019}, - [7979] = {.lex_state = 1019}, - [7980] = {.lex_state = 1019}, - [7981] = {.lex_state = 195}, - [7982] = {.lex_state = 1019}, - [7983] = {.lex_state = 1019}, - [7984] = {.lex_state = 159}, - [7985] = {.lex_state = 1019}, - [7986] = {.lex_state = 211}, - [7987] = {.lex_state = 1019}, - [7988] = {.lex_state = 1019}, - [7989] = {.lex_state = 1019}, - [7990] = {.lex_state = 1019}, - [7991] = {.lex_state = 1019}, - [7992] = {.lex_state = 1019}, - [7993] = {.lex_state = 1019}, - [7994] = {.lex_state = 5018}, - [7995] = {.lex_state = 1019}, - [7996] = {.lex_state = 5022}, - [7997] = {.lex_state = 1019}, - [7998] = {.lex_state = 1019}, - [7999] = {.lex_state = 1019}, - [8000] = {.lex_state = 195}, - [8001] = {.lex_state = 321}, - [8002] = {.lex_state = 1019}, - [8003] = {.lex_state = 1017}, - [8004] = {.lex_state = 195}, - [8005] = {.lex_state = 211}, - [8006] = {.lex_state = 1019}, - [8007] = {.lex_state = 1019}, - [8008] = {.lex_state = 1019}, - [8009] = {.lex_state = 995}, - [8010] = {.lex_state = 1019}, - [8011] = {.lex_state = 995}, - [8012] = {.lex_state = 1019}, - [8013] = {.lex_state = 195}, - [8014] = {.lex_state = 1019}, - [8015] = {.lex_state = 568}, - [8016] = {.lex_state = 1019}, - [8017] = {.lex_state = 1019}, - [8018] = {.lex_state = 1019}, - [8019] = {.lex_state = 1019}, - [8020] = {.lex_state = 1127}, - [8021] = {.lex_state = 1019}, - [8022] = {.lex_state = 1019}, - [8023] = {.lex_state = 1019}, - [8024] = {.lex_state = 211}, - [8025] = {.lex_state = 1019}, - [8026] = {.lex_state = 161}, - [8027] = {.lex_state = 1019}, - [8028] = {.lex_state = 5020}, - [8029] = {.lex_state = 36}, - [8030] = {.lex_state = 581}, - [8031] = {.lex_state = 568}, - [8032] = {.lex_state = 195}, - [8033] = {.lex_state = 1019}, - [8034] = {.lex_state = 321}, - [8035] = {.lex_state = 1019}, - [8036] = {.lex_state = 321}, - [8037] = {.lex_state = 1019}, - [8038] = {.lex_state = 321}, - [8039] = {.lex_state = 1019}, - [8040] = {.lex_state = 321}, - [8041] = {.lex_state = 1019}, - [8042] = {.lex_state = 1019}, - [8043] = {.lex_state = 1019}, - [8044] = {.lex_state = 1019}, - [8045] = {.lex_state = 1019}, - [8046] = {.lex_state = 1019}, - [8047] = {.lex_state = 1019}, - [8048] = {.lex_state = 1019}, - [8049] = {.lex_state = 195}, - [8050] = {.lex_state = 1019}, - [8051] = {.lex_state = 195}, - [8052] = {.lex_state = 1019}, - [8053] = {.lex_state = 161}, - [8054] = {.lex_state = 264}, - [8055] = {.lex_state = 1019}, - [8056] = {.lex_state = 1019}, - [8057] = {.lex_state = 1019}, - [8058] = {.lex_state = 3625}, - [8059] = {.lex_state = 211}, - [8060] = {.lex_state = 581}, - [8061] = {(TSStateId)(-1)}, + [7266] = {.lex_state = 323}, + [7267] = {.lex_state = 959}, + [7268] = {.lex_state = 959}, + [7269] = {.lex_state = 959}, + [7270] = {.lex_state = 959}, + [7271] = {.lex_state = 514}, + [7272] = {.lex_state = 514}, + [7273] = {.lex_state = 524}, + [7274] = {.lex_state = 958}, + [7275] = {.lex_state = 451}, + [7276] = {.lex_state = 451}, + [7277] = {.lex_state = 263}, + [7278] = {.lex_state = 497}, + [7279] = {.lex_state = 297}, + [7280] = {.lex_state = 135}, + [7281] = {.lex_state = 151}, + [7282] = {.lex_state = 451}, + [7283] = {.lex_state = 959}, + [7284] = {.lex_state = 297}, + [7285] = {.lex_state = 958}, + [7286] = {.lex_state = 263}, + [7287] = {.lex_state = 263}, + [7288] = {.lex_state = 958}, + [7289] = {.lex_state = 938}, + [7290] = {.lex_state = 959}, + [7291] = {.lex_state = 263}, + [7292] = {.lex_state = 263}, + [7293] = {.lex_state = 497}, + [7294] = {.lex_state = 381}, + [7295] = {.lex_state = 956}, + [7296] = {.lex_state = 959}, + [7297] = {.lex_state = 99}, + [7298] = {.lex_state = 959}, + [7299] = {.lex_state = 261}, + [7300] = {.lex_state = 960}, + [7301] = {.lex_state = 4820}, + [7302] = {.lex_state = 99}, + [7303] = {.lex_state = 263}, + [7304] = {.lex_state = 4820}, + [7305] = {.lex_state = 4820}, + [7306] = {.lex_state = 520}, + [7307] = {.lex_state = 4820}, + [7308] = {.lex_state = 4820}, + [7309] = {.lex_state = 959}, + [7310] = {.lex_state = 959}, + [7311] = {.lex_state = 31}, + [7312] = {.lex_state = 959}, + [7313] = {.lex_state = 3563}, + [7314] = {.lex_state = 263}, + [7315] = {.lex_state = 261}, + [7316] = {.lex_state = 135}, + [7317] = {.lex_state = 4816}, + [7318] = {.lex_state = 4816}, + [7319] = {.lex_state = 959}, + [7320] = {.lex_state = 263}, + [7321] = {.lex_state = 99}, + [7322] = {.lex_state = 263}, + [7323] = {.lex_state = 4820}, + [7324] = {.lex_state = 263}, + [7325] = {.lex_state = 263}, + [7326] = {.lex_state = 261}, + [7327] = {.lex_state = 263}, + [7328] = {.lex_state = 959}, + [7329] = {.lex_state = 261}, + [7330] = {.lex_state = 959}, + [7331] = {.lex_state = 263}, + [7332] = {.lex_state = 4816}, + [7333] = {.lex_state = 4818}, + [7334] = {.lex_state = 263}, + [7335] = {.lex_state = 263}, + [7336] = {.lex_state = 381}, + [7337] = {.lex_state = 261}, + [7338] = {.lex_state = 4816}, + [7339] = {.lex_state = 4816}, + [7340] = {.lex_state = 4820}, + [7341] = {.lex_state = 512}, + [7342] = {.lex_state = 4816}, + [7343] = {.lex_state = 4820}, + [7344] = {.lex_state = 263}, + [7345] = {.lex_state = 4816}, + [7346] = {.lex_state = 4816}, + [7347] = {.lex_state = 959}, + [7348] = {.lex_state = 959}, + [7349] = {.lex_state = 263}, + [7350] = {.lex_state = 263}, + [7351] = {.lex_state = 4816}, + [7352] = {.lex_state = 4816}, + [7353] = {.lex_state = 4816}, + [7354] = {.lex_state = 959}, + [7355] = {.lex_state = 959}, + [7356] = {.lex_state = 938}, + [7357] = {.lex_state = 4818}, + [7358] = {.lex_state = 263}, + [7359] = {.lex_state = 959}, + [7360] = {.lex_state = 263}, + [7361] = {.lex_state = 263}, + [7362] = {.lex_state = 959}, + [7363] = {.lex_state = 959}, + [7364] = {.lex_state = 959}, + [7365] = {.lex_state = 520}, + [7366] = {.lex_state = 959}, + [7367] = {.lex_state = 959}, + [7368] = {.lex_state = 520}, + [7369] = {.lex_state = 520}, + [7370] = {.lex_state = 959}, + [7371] = {.lex_state = 4816}, + [7372] = {.lex_state = 959}, + [7373] = {.lex_state = 959}, + [7374] = {.lex_state = 959}, + [7375] = {.lex_state = 263}, + [7376] = {.lex_state = 4816}, + [7377] = {.lex_state = 959}, + [7378] = {.lex_state = 4818}, + [7379] = {.lex_state = 451}, + [7380] = {.lex_state = 959}, + [7381] = {.lex_state = 263}, + [7382] = {.lex_state = 520}, + [7383] = {.lex_state = 261}, + [7384] = {.lex_state = 4816}, + [7385] = {.lex_state = 4818}, + [7386] = {.lex_state = 500}, + [7387] = {.lex_state = 959}, + [7388] = {.lex_state = 263}, + [7389] = {.lex_state = 135}, + [7390] = {.lex_state = 4816}, + [7391] = {.lex_state = 261}, + [7392] = {.lex_state = 4820}, + [7393] = {.lex_state = 4816}, + [7394] = {.lex_state = 135}, + [7395] = {.lex_state = 4816}, + [7396] = {.lex_state = 4818}, + [7397] = {.lex_state = 261}, + [7398] = {.lex_state = 4818}, + [7399] = {.lex_state = 960}, + [7400] = {.lex_state = 135}, + [7401] = {.lex_state = 959}, + [7402] = {.lex_state = 261}, + [7403] = {.lex_state = 4816}, + [7404] = {.lex_state = 959}, + [7405] = {.lex_state = 4816}, + [7406] = {.lex_state = 261}, + [7407] = {.lex_state = 44}, + [7408] = {.lex_state = 4816}, + [7409] = {.lex_state = 263}, + [7410] = {.lex_state = 261}, + [7411] = {.lex_state = 4816}, + [7412] = {.lex_state = 135}, + [7413] = {.lex_state = 4816}, + [7414] = {.lex_state = 4818}, + [7415] = {.lex_state = 263}, + [7416] = {.lex_state = 261}, + [7417] = {.lex_state = 4816}, + [7418] = {.lex_state = 4816}, + [7419] = {.lex_state = 261}, + [7420] = {.lex_state = 4816}, + [7421] = {.lex_state = 4816}, + [7422] = {.lex_state = 959}, + [7423] = {.lex_state = 263}, + [7424] = {.lex_state = 151}, + [7425] = {.lex_state = 4816}, + [7426] = {.lex_state = 959}, + [7427] = {.lex_state = 4816}, + [7428] = {.lex_state = 4816}, + [7429] = {.lex_state = 959}, + [7430] = {.lex_state = 261}, + [7431] = {.lex_state = 4816}, + [7432] = {.lex_state = 959}, + [7433] = {.lex_state = 135}, + [7434] = {.lex_state = 261}, + [7435] = {.lex_state = 959}, + [7436] = {.lex_state = 4818}, + [7437] = {.lex_state = 523}, + [7438] = {.lex_state = 521}, + [7439] = {.lex_state = 959}, + [7440] = {.lex_state = 959}, + [7441] = {.lex_state = 263}, + [7442] = {.lex_state = 31}, + [7443] = {.lex_state = 959}, + [7444] = {.lex_state = 959}, + [7445] = {.lex_state = 960}, + [7446] = {.lex_state = 135}, + [7447] = {.lex_state = 135}, + [7448] = {.lex_state = 959}, + [7449] = {.lex_state = 4818}, + [7450] = {.lex_state = 263}, + [7451] = {.lex_state = 959}, + [7452] = {.lex_state = 959}, + [7453] = {.lex_state = 4816}, + [7454] = {.lex_state = 4816}, + [7455] = {.lex_state = 959}, + [7456] = {.lex_state = 135}, + [7457] = {.lex_state = 959}, + [7458] = {.lex_state = 959}, + [7459] = {.lex_state = 263}, + [7460] = {.lex_state = 4816}, + [7461] = {.lex_state = 4816}, + [7462] = {.lex_state = 960}, + [7463] = {.lex_state = 4816}, + [7464] = {.lex_state = 4816}, + [7465] = {.lex_state = 381}, + [7466] = {.lex_state = 959}, + [7467] = {.lex_state = 959}, + [7468] = {.lex_state = 135}, + [7469] = {.lex_state = 4816}, + [7470] = {.lex_state = 261}, + [7471] = {.lex_state = 959}, + [7472] = {.lex_state = 959}, + [7473] = {.lex_state = 959}, + [7474] = {.lex_state = 959}, + [7475] = {.lex_state = 44}, + [7476] = {.lex_state = 507}, + [7477] = {.lex_state = 151}, + [7478] = {.lex_state = 135}, + [7479] = {.lex_state = 508}, + [7480] = {.lex_state = 959}, + [7481] = {.lex_state = 959}, + [7482] = {.lex_state = 959}, + [7483] = {.lex_state = 959}, + [7484] = {.lex_state = 44}, + [7485] = {.lex_state = 959}, + [7486] = {.lex_state = 135}, + [7487] = {.lex_state = 44}, + [7488] = {.lex_state = 151}, + [7489] = {.lex_state = 959}, + [7490] = {.lex_state = 959}, + [7491] = {.lex_state = 959}, + [7492] = {.lex_state = 135}, + [7493] = {.lex_state = 934}, + [7494] = {.lex_state = 959}, + [7495] = {.lex_state = 959}, + [7496] = {.lex_state = 959}, + [7497] = {.lex_state = 959}, + [7498] = {.lex_state = 959}, + [7499] = {.lex_state = 959}, + [7500] = {.lex_state = 99}, + [7501] = {.lex_state = 101}, + [7502] = {.lex_state = 151}, + [7503] = {.lex_state = 510}, + [7504] = {.lex_state = 959}, + [7505] = {.lex_state = 959}, + [7506] = {.lex_state = 959}, + [7507] = {.lex_state = 101}, + [7508] = {.lex_state = 47}, + [7509] = {.lex_state = 959}, + [7510] = {.lex_state = 959}, + [7511] = {.lex_state = 959}, + [7512] = {.lex_state = 959}, + [7513] = {.lex_state = 959}, + [7514] = {.lex_state = 508}, + [7515] = {.lex_state = 521}, + [7516] = {.lex_state = 959}, + [7517] = {.lex_state = 135}, + [7518] = {.lex_state = 959}, + [7519] = {.lex_state = 959}, + [7520] = {.lex_state = 959}, + [7521] = {.lex_state = 47}, + [7522] = {.lex_state = 521}, + [7523] = {.lex_state = 959}, + [7524] = {.lex_state = 959}, + [7525] = {.lex_state = 959}, + [7526] = {.lex_state = 959}, + [7527] = {.lex_state = 959}, + [7528] = {.lex_state = 959}, + [7529] = {.lex_state = 959}, + [7530] = {.lex_state = 959}, + [7531] = {.lex_state = 151}, + [7532] = {.lex_state = 959}, + [7533] = {.lex_state = 959}, + [7534] = {.lex_state = 959}, + [7535] = {.lex_state = 959}, + [7536] = {.lex_state = 959}, + [7537] = {.lex_state = 959}, + [7538] = {.lex_state = 959}, + [7539] = {.lex_state = 959}, + [7540] = {.lex_state = 959}, + [7541] = {.lex_state = 261}, + [7542] = {.lex_state = 4818}, + [7543] = {.lex_state = 959}, + [7544] = {.lex_state = 959}, + [7545] = {.lex_state = 959}, + [7546] = {.lex_state = 521}, + [7547] = {.lex_state = 959}, + [7548] = {.lex_state = 508}, + [7549] = {.lex_state = 101}, + [7550] = {.lex_state = 959}, + [7551] = {.lex_state = 135}, + [7552] = {.lex_state = 959}, + [7553] = {.lex_state = 101}, + [7554] = {.lex_state = 959}, + [7555] = {.lex_state = 959}, + [7556] = {.lex_state = 101}, + [7557] = {.lex_state = 99}, + [7558] = {.lex_state = 959}, + [7559] = {.lex_state = 959}, + [7560] = {.lex_state = 959}, + [7561] = {.lex_state = 959}, + [7562] = {.lex_state = 959}, + [7563] = {.lex_state = 959}, + [7564] = {.lex_state = 959}, + [7565] = {.lex_state = 959}, + [7566] = {.lex_state = 135}, + [7567] = {.lex_state = 959}, + [7568] = {.lex_state = 101}, + [7569] = {.lex_state = 101}, + [7570] = {.lex_state = 4816}, + [7571] = {.lex_state = 959}, + [7572] = {.lex_state = 959}, + [7573] = {.lex_state = 959}, + [7574] = {.lex_state = 959}, + [7575] = {.lex_state = 959}, + [7576] = {.lex_state = 959}, + [7577] = {.lex_state = 959}, + [7578] = {.lex_state = 959}, + [7579] = {.lex_state = 101}, + [7580] = {.lex_state = 959}, + [7581] = {.lex_state = 959}, + [7582] = {.lex_state = 101}, + [7583] = {.lex_state = 959}, + [7584] = {.lex_state = 959}, + [7585] = {.lex_state = 959}, + [7586] = {.lex_state = 959}, + [7587] = {.lex_state = 4820}, + [7588] = {.lex_state = 956}, + [7589] = {.lex_state = 959}, + [7590] = {.lex_state = 934}, + [7591] = {.lex_state = 959}, + [7592] = {.lex_state = 135}, + [7593] = {.lex_state = 959}, + [7594] = {.lex_state = 101}, + [7595] = {.lex_state = 959}, + [7596] = {.lex_state = 44}, + [7597] = {.lex_state = 959}, + [7598] = {.lex_state = 44}, + [7599] = {.lex_state = 959}, + [7600] = {.lex_state = 510}, + [7601] = {.lex_state = 509}, + [7602] = {.lex_state = 959}, + [7603] = {.lex_state = 959}, + [7604] = {.lex_state = 44}, + [7605] = {.lex_state = 101}, + [7606] = {.lex_state = 959}, + [7607] = {.lex_state = 521}, + [7608] = {.lex_state = 959}, + [7609] = {.lex_state = 959}, + [7610] = {.lex_state = 959}, + [7611] = {.lex_state = 959}, + [7612] = {.lex_state = 959}, + [7613] = {.lex_state = 959}, + [7614] = {.lex_state = 959}, + [7615] = {.lex_state = 959}, + [7616] = {.lex_state = 101}, + [7617] = {.lex_state = 959}, + [7618] = {.lex_state = 959}, + [7619] = {.lex_state = 959}, + [7620] = {.lex_state = 4818}, + [7621] = {.lex_state = 959}, + [7622] = {.lex_state = 959}, + [7623] = {.lex_state = 959}, + [7624] = {.lex_state = 959}, + [7625] = {.lex_state = 959}, + [7626] = {.lex_state = 151}, + [7627] = {.lex_state = 101}, + [7628] = {.lex_state = 959}, + [7629] = {.lex_state = 959}, + [7630] = {.lex_state = 959}, + [7631] = {.lex_state = 956}, + [7632] = {.lex_state = 391}, + [7633] = {.lex_state = 135}, + [7634] = {.lex_state = 959}, + [7635] = {.lex_state = 959}, + [7636] = {.lex_state = 959}, + [7637] = {.lex_state = 959}, + [7638] = {.lex_state = 101}, + [7639] = {.lex_state = 959}, + [7640] = {.lex_state = 956}, + [7641] = {.lex_state = 959}, + [7642] = {.lex_state = 959}, + [7643] = {.lex_state = 959}, + [7644] = {.lex_state = 959}, + [7645] = {.lex_state = 506}, + [7646] = {.lex_state = 959}, + [7647] = {.lex_state = 101}, + [7648] = {.lex_state = 101}, + [7649] = {.lex_state = 4816}, + [7650] = {.lex_state = 959}, + [7651] = {.lex_state = 204}, + [7652] = {.lex_state = 4816}, + [7653] = {.lex_state = 135}, + [7654] = {.lex_state = 959}, + [7655] = {.lex_state = 959}, + [7656] = {.lex_state = 959}, + [7657] = {.lex_state = 959}, + [7658] = {.lex_state = 101}, + [7659] = {.lex_state = 523}, + [7660] = {.lex_state = 960}, + [7661] = {.lex_state = 959}, + [7662] = {.lex_state = 959}, + [7663] = {.lex_state = 959}, + [7664] = {.lex_state = 508}, + [7665] = {.lex_state = 521}, + [7666] = {.lex_state = 956}, + [7667] = {.lex_state = 101}, + [7668] = {.lex_state = 959}, + [7669] = {.lex_state = 1067}, + [7670] = {.lex_state = 510}, + [7671] = {.lex_state = 959}, + [7672] = {.lex_state = 135}, + [7673] = {.lex_state = 959}, + [7674] = {.lex_state = 959}, + [7675] = {.lex_state = 959}, + [7676] = {.lex_state = 151}, + [7677] = {.lex_state = 101}, + [7678] = {.lex_state = 151}, + [7679] = {.lex_state = 135}, + [7680] = {.lex_state = 959}, + [7681] = {.lex_state = 959}, + [7682] = {.lex_state = 959}, + [7683] = {.lex_state = 151}, + [7684] = {.lex_state = 509}, + [7685] = {.lex_state = 959}, + [7686] = {.lex_state = 44}, + [7687] = {.lex_state = 101}, + [7688] = {.lex_state = 959}, + [7689] = {.lex_state = 959}, + [7690] = {.lex_state = 959}, + [7691] = {.lex_state = 959}, + [7692] = {.lex_state = 959}, + [7693] = {.lex_state = 959}, + [7694] = {.lex_state = 959}, + [7695] = {.lex_state = 959}, + [7696] = {.lex_state = 959}, + [7697] = {.lex_state = 101}, + [7698] = {.lex_state = 956}, + [7699] = {.lex_state = 4835}, + [7700] = {.lex_state = 101}, + [7701] = {.lex_state = 959}, + [7702] = {.lex_state = 956}, + [7703] = {.lex_state = 151}, + [7704] = {.lex_state = 959}, + [7705] = {.lex_state = 959}, + [7706] = {.lex_state = 101}, + [7707] = {.lex_state = 959}, + [7708] = {.lex_state = 959}, + [7709] = {.lex_state = 135}, + [7710] = {.lex_state = 959}, + [7711] = {.lex_state = 959}, + [7712] = {.lex_state = 956}, + [7713] = {.lex_state = 135}, + [7714] = {.lex_state = 135}, + [7715] = {.lex_state = 508}, + [7716] = {.lex_state = 959}, + [7717] = {.lex_state = 959}, + [7718] = {.lex_state = 959}, + [7719] = {.lex_state = 959}, + [7720] = {.lex_state = 956}, + [7721] = {.lex_state = 959}, + [7722] = {.lex_state = 959}, + [7723] = {.lex_state = 959}, + [7724] = {.lex_state = 151}, + [7725] = {.lex_state = 521}, + [7726] = {.lex_state = 959}, + [7727] = {.lex_state = 959}, + [7728] = {.lex_state = 959}, + [7729] = {.lex_state = 959}, + [7730] = {.lex_state = 959}, + [7731] = {.lex_state = 959}, + [7732] = {.lex_state = 959}, + [7733] = {.lex_state = 135}, + [7734] = {.lex_state = 204}, + [7735] = {.lex_state = 508}, + [7736] = {.lex_state = 959}, + [7737] = {.lex_state = 959}, + [7738] = {.lex_state = 959}, + [7739] = {.lex_state = 959}, + [7740] = {.lex_state = 959}, + [7741] = {.lex_state = 151}, + [7742] = {.lex_state = 135}, + [7743] = {.lex_state = 956}, + [7744] = {.lex_state = 959}, + [7745] = {.lex_state = 959}, + [7746] = {.lex_state = 959}, + [7747] = {.lex_state = 956}, + [7748] = {.lex_state = 959}, + [7749] = {.lex_state = 151}, + [7750] = {.lex_state = 959}, + [7751] = {.lex_state = 959}, + [7752] = {.lex_state = 959}, + [7753] = {.lex_state = 135}, + [7754] = {.lex_state = 959}, + [7755] = {.lex_state = 959}, + [7756] = {.lex_state = 261}, + [7757] = {.lex_state = 204}, + [7758] = {.lex_state = 959}, + [7759] = {.lex_state = 959}, + [7760] = {.lex_state = 959}, + [7761] = {.lex_state = 959}, + [7762] = {.lex_state = 959}, + [7763] = {.lex_state = 959}, + [7764] = {.lex_state = 934}, + [7765] = {.lex_state = 956}, + [7766] = {.lex_state = 934}, + [7767] = {.lex_state = 959}, + [7768] = {.lex_state = 959}, + [7769] = {.lex_state = 1067}, + [7770] = {.lex_state = 959}, + [7771] = {.lex_state = 151}, + [7772] = {.lex_state = 135}, + [7773] = {.lex_state = 508}, + [7774] = {.lex_state = 135}, + [7775] = {.lex_state = 959}, + [7776] = {.lex_state = 959}, + [7777] = {.lex_state = 4820}, + [7778] = {.lex_state = 960}, + [7779] = {.lex_state = 521}, + [7780] = {.lex_state = 959}, + [7781] = {.lex_state = 959}, + [7782] = {.lex_state = 959}, + [7783] = {.lex_state = 956}, + [7784] = {.lex_state = 135}, + [7785] = {.lex_state = 959}, + [7786] = {.lex_state = 959}, + [7787] = {.lex_state = 959}, + [7788] = {.lex_state = 956}, + [7789] = {.lex_state = 44}, + [7790] = {.lex_state = 261}, + [7791] = {.lex_state = 959}, + [7792] = {.lex_state = 261}, + [7793] = {.lex_state = 4818}, + [7794] = {.lex_state = 261}, + [7795] = {.lex_state = 4820}, + [7796] = {.lex_state = 204}, + [7797] = {.lex_state = 959}, + [7798] = {.lex_state = 959}, + [7799] = {.lex_state = 959}, + [7800] = {.lex_state = 959}, + [7801] = {.lex_state = 959}, + [7802] = {.lex_state = 959}, + [7803] = {.lex_state = 959}, + [7804] = {.lex_state = 959}, + [7805] = {.lex_state = 959}, + [7806] = {.lex_state = 3563}, + [7807] = {.lex_state = 956}, + [7808] = {.lex_state = 956}, + [7809] = {.lex_state = 959}, + [7810] = {.lex_state = 959}, + [7811] = {.lex_state = 959}, + [7812] = {.lex_state = 959}, + [7813] = {.lex_state = 959}, + [7814] = {.lex_state = 151}, + [7815] = {.lex_state = 959}, + [7816] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -69959,6 +66457,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__immediate_decimal_token3] = ACTIONS(1), [aux_sym__immediate_decimal_token4] = ACTIONS(1), [aux_sym__immediate_decimal_token5] = ACTIONS(1), + [anon_sym_RPAREN2] = ACTIONS(1), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1), [anon_sym_nu] = ACTIONS(1), [anon_sym_env] = ACTIONS(1), @@ -70017,82 +66516,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [1] = { - [sym_nu_script] = STATE(7893), - [sym_shebang] = STATE(89), - [sym__block_body_statement] = STATE(6656), - [sym__declaration] = STATE(7073), - [sym_decl_alias] = STATE(7076), - [sym_stmt_let] = STATE(7237), - [sym_stmt_mut] = STATE(7237), - [sym_stmt_const] = STATE(7237), - [sym_assignment] = STATE(7237), - [sym__mutable_assignment_pattern] = STATE(7503), - [sym__statement] = STATE(7073), - [sym_pipeline] = STATE(7237), - [sym__block_body] = STATE(7794), - [sym_cmd_identifier] = STATE(4982), - [sym_decl_def] = STATE(7076), - [sym_decl_export] = STATE(7076), - [sym_decl_extern] = STATE(7076), - [sym_decl_module] = STATE(7076), - [sym_decl_use] = STATE(7076), - [sym__ctrl_statement] = STATE(7237), - [sym__ctrl_expression] = STATE(5228), - [sym_ctrl_for] = STATE(7092), - [sym_ctrl_loop] = STATE(7092), - [sym_ctrl_error] = STATE(7092), - [sym_ctrl_while] = STATE(7092), - [sym_ctrl_do] = STATE(5219), - [sym_ctrl_if] = STATE(5219), - [sym_ctrl_match] = STATE(5219), - [sym_ctrl_try] = STATE(5219), - [sym_ctrl_return] = STATE(5219), - [sym_pipe_element] = STATE(4861), - [sym_stmt_source] = STATE(7237), - [sym_stmt_register] = STATE(7237), - [sym__stmt_hide] = STATE(7237), - [sym_hide_mod] = STATE(7267), - [sym_hide_env] = STATE(7267), - [sym__stmt_overlay] = STATE(7237), - [sym_overlay_list] = STATE(7140), - [sym_overlay_hide] = STATE(7140), - [sym_overlay_new] = STATE(7140), - [sym_overlay_use] = STATE(7140), - [sym_where_command] = STATE(5254), - [sym__expression] = STATE(4038), - [sym_expr_unary] = STATE(2604), - [sym__expr_unary_minus] = STATE(2610), - [sym_expr_binary] = STATE(2604), - [sym__expr_binary_expression] = STATE(4069), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(4062), - [sym__value] = STATE(2604), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2547), - [sym_val_variable] = STATE(1495), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(1742), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__str_double_quotes] = STATE(2144), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2607), - [sym__inter_double_quotes] = STATE(2626), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5254), + [sym_nu_script] = STATE(7505), + [sym_shebang] = STATE(101), + [sym__block_body_statement] = STATE(6568), + [sym__declaration] = STATE(7106), + [sym_decl_alias] = STATE(7107), + [sym_stmt_let] = STATE(7142), + [sym_stmt_mut] = STATE(7142), + [sym_stmt_const] = STATE(7142), + [sym_assignment] = STATE(7142), + [sym__mutable_assignment_pattern] = STATE(6897), + [sym__statement] = STATE(7106), + [sym_pipeline] = STATE(7142), + [sym__block_body] = STATE(7654), + [sym_cmd_identifier] = STATE(4711), + [sym_decl_def] = STATE(7107), + [sym_decl_export] = STATE(7107), + [sym_decl_extern] = STATE(7107), + [sym_decl_module] = STATE(7107), + [sym_decl_use] = STATE(7107), + [sym__ctrl_statement] = STATE(7142), + [sym__ctrl_expression] = STATE(5052), + [sym_ctrl_for] = STATE(6753), + [sym_ctrl_loop] = STATE(6753), + [sym_ctrl_error] = STATE(6753), + [sym_ctrl_while] = STATE(6753), + [sym_ctrl_do] = STATE(5084), + [sym_ctrl_if] = STATE(5084), + [sym_ctrl_match] = STATE(5084), + [sym_ctrl_try] = STATE(5084), + [sym_ctrl_return] = STATE(5084), + [sym_pipe_element] = STATE(4679), + [sym_stmt_source] = STATE(7142), + [sym_stmt_register] = STATE(7142), + [sym__stmt_hide] = STATE(7142), + [sym_hide_mod] = STATE(6904), + [sym_hide_env] = STATE(6904), + [sym__stmt_overlay] = STATE(7142), + [sym_overlay_list] = STATE(7001), + [sym_overlay_hide] = STATE(7001), + [sym_overlay_new] = STATE(7001), + [sym_overlay_use] = STATE(7001), + [sym_where_command] = STATE(4956), + [sym__expression] = STATE(3760), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2398), + [sym_expr_binary] = STATE(2381), + [sym__expr_binary_expression] = STATE(3781), + [sym_expr_parenthesized] = STATE(1971), + [sym_val_range] = STATE(3771), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2348), + [sym_val_bool] = STATE(2348), + [sym_val_variable] = STATE(1271), + [sym_val_number] = STATE(2348), + [sym__val_number_decimal] = STATE(1497), + [sym__val_number] = STATE(2401), + [sym_val_duration] = STATE(2348), + [sym_val_filesize] = STATE(2348), + [sym_val_binary] = STATE(2348), + [sym_val_string] = STATE(2348), + [sym__str_double_quotes] = STATE(1984), + [sym_val_interpolated] = STATE(2348), + [sym__inter_single_quotes] = STATE(2404), + [sym__inter_double_quotes] = STATE(2407), + [sym_val_list] = STATE(2348), + [sym_val_record] = STATE(2348), + [sym_val_table] = STATE(2348), + [sym_val_closure] = STATE(2348), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4956), [sym_comment] = STATE(1), - [aux_sym_shebang_repeat1] = STATE(6979), - [aux_sym_pipeline_repeat1] = STATE(174), - [aux_sym__block_body_repeat1] = STATE(124), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(407), + [aux_sym_shebang_repeat1] = STATE(6764), + [aux_sym_pipeline_repeat1] = STATE(163), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(406), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_POUND_BANG] = ACTIONS(7), [anon_sym_export] = ACTIONS(9), @@ -70198,90 +66697,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [2] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7815), - [sym_cmd_identifier] = STATE(4834), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym_parameter_pipes] = STATE(111), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym__match_pattern_record_variable] = STATE(620), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(2049), - [sym__spread_parenthesized] = STATE(564), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym__spread_variable] = STATE(552), - [sym_val_variable] = STATE(153), - [sym_val_number] = STATE(2500), - [sym__val_number_decimal] = STATE(1606), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(2500), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym__spread_record] = STATE(564), - [sym_record_body] = STATE(7828), - [sym_record_entry] = STATE(505), - [sym__record_key] = STATE(7778), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7691), + [sym_cmd_identifier] = STATE(4567), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym_parameter_pipes] = STATE(104), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym__match_pattern_record_variable] = STATE(593), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1895), + [sym__spread_parenthesized] = STATE(584), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym__spread_variable] = STATE(586), + [sym_val_variable] = STATE(146), + [sym_val_number] = STATE(2327), + [sym__val_number_decimal] = STATE(1445), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(2327), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym__spread_record] = STATE(584), + [sym_record_body] = STATE(7694), + [sym_record_entry] = STATE(495), + [sym__record_key] = STATE(7553), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(2), - [aux_sym_shebang_repeat1] = STATE(181), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym__match_pattern_record_repeat1] = STATE(183), - [aux_sym_pipe_element_repeat2] = STATE(408), - [aux_sym_record_body_repeat1] = STATE(188), + [aux_sym_shebang_repeat1] = STATE(173), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym__match_pattern_record_repeat1] = STATE(178), + [aux_sym_pipe_element_repeat2] = STATE(399), + [aux_sym_record_body_repeat1] = STATE(179), [anon_sym_export] = ACTIONS(123), [anon_sym_alias] = ACTIONS(125), [anon_sym_let] = ACTIONS(127), @@ -70398,88 +66897,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [3] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7902), - [sym_cmd_identifier] = STATE(4857), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym_parameter_pipes] = STATE(128), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1994), - [sym__spread_parenthesized] = STATE(564), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym__spread_variable] = STATE(552), - [sym_val_variable] = STATE(1428), - [sym_val_number] = STATE(2355), - [sym__val_number_decimal] = STATE(1606), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(2355), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym__spread_record] = STATE(564), - [sym_record_body] = STATE(7855), - [sym_record_entry] = STATE(7309), - [sym__record_key] = STATE(8053), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7538), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym_parameter_pipes] = STATE(114), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1774), + [sym__spread_parenthesized] = STATE(584), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym__spread_variable] = STATE(586), + [sym_val_variable] = STATE(1229), + [sym_val_number] = STATE(2161), + [sym__val_number_decimal] = STATE(1445), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(2161), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym__spread_record] = STATE(584), + [sym_record_body] = STATE(7762), + [sym_record_entry] = STATE(6685), + [sym__record_key] = STATE(7700), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(3), - [aux_sym_shebang_repeat1] = STATE(181), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [aux_sym_record_body_repeat1] = STATE(188), + [aux_sym_shebang_repeat1] = STATE(173), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [aux_sym_record_body_repeat1] = STATE(179), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -70596,88 +67095,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [4] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7938), - [sym_cmd_identifier] = STATE(4857), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym_parameter_pipes] = STATE(115), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1994), - [sym__spread_parenthesized] = STATE(564), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym__spread_variable] = STATE(552), - [sym_val_variable] = STATE(1428), - [sym_val_number] = STATE(2355), - [sym__val_number_decimal] = STATE(1606), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(2355), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym__spread_record] = STATE(564), - [sym_record_body] = STATE(7752), - [sym_record_entry] = STATE(7309), - [sym__record_key] = STATE(8053), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7797), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym_parameter_pipes] = STATE(109), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1774), + [sym__spread_parenthesized] = STATE(584), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym__spread_variable] = STATE(586), + [sym_val_variable] = STATE(1229), + [sym_val_number] = STATE(2161), + [sym__val_number_decimal] = STATE(1445), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(2161), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym__spread_record] = STATE(584), + [sym_record_body] = STATE(7717), + [sym_record_entry] = STATE(6685), + [sym__record_key] = STATE(7700), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(4), - [aux_sym_shebang_repeat1] = STATE(181), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [aux_sym_record_body_repeat1] = STATE(188), + [aux_sym_shebang_repeat1] = STATE(173), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [aux_sym_record_body_repeat1] = STATE(179), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -70794,88 +67293,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [5] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7985), - [sym_cmd_identifier] = STATE(4857), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym_parameter_pipes] = STATE(128), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1994), - [sym__spread_parenthesized] = STATE(564), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym__spread_variable] = STATE(552), - [sym_val_variable] = STATE(1428), - [sym_val_number] = STATE(2355), - [sym__val_number_decimal] = STATE(1606), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(2355), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym__spread_record] = STATE(564), - [sym_record_body] = STATE(7855), - [sym_record_entry] = STATE(7309), - [sym__record_key] = STATE(8053), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7691), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym_parameter_pipes] = STATE(104), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1774), + [sym__spread_parenthesized] = STATE(584), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym__spread_variable] = STATE(586), + [sym_val_variable] = STATE(1229), + [sym_val_number] = STATE(2161), + [sym__val_number_decimal] = STATE(1445), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(2161), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym__spread_record] = STATE(584), + [sym_record_body] = STATE(7694), + [sym_record_entry] = STATE(6685), + [sym__record_key] = STATE(7700), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(5), - [aux_sym_shebang_repeat1] = STATE(181), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [aux_sym_record_body_repeat1] = STATE(188), + [aux_sym_shebang_repeat1] = STATE(173), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [aux_sym_record_body_repeat1] = STATE(179), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -70992,88 +67491,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [6] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7961), - [sym_cmd_identifier] = STATE(4857), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym_parameter_pipes] = STATE(113), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1994), - [sym__spread_parenthesized] = STATE(564), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym__spread_variable] = STATE(552), - [sym_val_variable] = STATE(1428), - [sym_val_number] = STATE(2355), - [sym__val_number_decimal] = STATE(1606), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(2355), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym__spread_record] = STATE(564), - [sym_record_body] = STATE(7760), - [sym_record_entry] = STATE(7309), - [sym__record_key] = STATE(8053), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7727), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym_parameter_pipes] = STATE(103), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1774), + [sym__spread_parenthesized] = STATE(584), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym__spread_variable] = STATE(586), + [sym_val_variable] = STATE(1229), + [sym_val_number] = STATE(2161), + [sym__val_number_decimal] = STATE(1445), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(2161), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym__spread_record] = STATE(584), + [sym_record_body] = STATE(7559), + [sym_record_entry] = STATE(6685), + [sym__record_key] = STATE(7700), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(6), - [aux_sym_shebang_repeat1] = STATE(181), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [aux_sym_record_body_repeat1] = STATE(188), + [aux_sym_shebang_repeat1] = STATE(173), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [aux_sym_record_body_repeat1] = STATE(179), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -71190,88 +67689,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [7] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7815), - [sym_cmd_identifier] = STATE(4857), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym_parameter_pipes] = STATE(111), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1994), - [sym__spread_parenthesized] = STATE(564), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym__spread_variable] = STATE(552), - [sym_val_variable] = STATE(1428), - [sym_val_number] = STATE(2355), - [sym__val_number_decimal] = STATE(1606), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(2355), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym__spread_record] = STATE(564), - [sym_record_body] = STATE(7828), - [sym_record_entry] = STATE(7309), - [sym__record_key] = STATE(8053), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7547), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym_parameter_pipes] = STATE(103), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1774), + [sym__spread_parenthesized] = STATE(584), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym__spread_variable] = STATE(586), + [sym_val_variable] = STATE(1229), + [sym_val_number] = STATE(2161), + [sym__val_number_decimal] = STATE(1445), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(2161), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym__spread_record] = STATE(584), + [sym_record_body] = STATE(7559), + [sym_record_entry] = STATE(6685), + [sym__record_key] = STATE(7700), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(7), - [aux_sym_shebang_repeat1] = STATE(181), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [aux_sym_record_body_repeat1] = STATE(188), + [aux_sym_shebang_repeat1] = STATE(173), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [aux_sym_record_body_repeat1] = STATE(179), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -71388,88 +67887,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [8] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7754), - [sym_cmd_identifier] = STATE(4857), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym_parameter_pipes] = STATE(113), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1994), - [sym__spread_parenthesized] = STATE(564), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym__spread_variable] = STATE(552), - [sym_val_variable] = STATE(1428), - [sym_val_number] = STATE(2355), - [sym__val_number_decimal] = STATE(1606), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(2355), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym__spread_record] = STATE(564), - [sym_record_body] = STATE(7760), - [sym_record_entry] = STATE(7309), - [sym__record_key] = STATE(8053), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7572), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym_parameter_pipes] = STATE(104), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1774), + [sym__spread_parenthesized] = STATE(584), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym__spread_variable] = STATE(586), + [sym_val_variable] = STATE(1229), + [sym_val_number] = STATE(2161), + [sym__val_number_decimal] = STATE(1445), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(2161), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym__spread_record] = STATE(584), + [sym_record_body] = STATE(7694), + [sym_record_entry] = STATE(6685), + [sym__record_key] = STATE(7700), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(8), - [aux_sym_shebang_repeat1] = STATE(181), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [aux_sym_record_body_repeat1] = STATE(188), + [aux_sym_shebang_repeat1] = STATE(173), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [aux_sym_record_body_repeat1] = STATE(179), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -71586,88 +68085,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [9] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7838), - [sym_cmd_identifier] = STATE(4857), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym_parameter_pipes] = STATE(115), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1994), - [sym__spread_parenthesized] = STATE(564), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym__spread_variable] = STATE(552), - [sym_val_variable] = STATE(1428), - [sym_val_number] = STATE(2355), - [sym__val_number_decimal] = STATE(1606), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(2355), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym__spread_record] = STATE(564), - [sym_record_body] = STATE(7752), - [sym_record_entry] = STATE(7309), - [sym__record_key] = STATE(8053), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7693), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym_parameter_pipes] = STATE(111), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1774), + [sym__spread_parenthesized] = STATE(584), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym__spread_variable] = STATE(586), + [sym_val_variable] = STATE(1229), + [sym_val_number] = STATE(2161), + [sym__val_number_decimal] = STATE(1445), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(2161), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym__spread_record] = STATE(584), + [sym_record_body] = STATE(7695), + [sym_record_entry] = STATE(6685), + [sym__record_key] = STATE(7700), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(9), - [aux_sym_shebang_repeat1] = STATE(181), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [aux_sym_record_body_repeat1] = STATE(188), + [aux_sym_shebang_repeat1] = STATE(173), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [aux_sym_record_body_repeat1] = STATE(179), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -71784,88 +68283,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [10] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7938), - [sym_cmd_identifier] = STATE(4857), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym_parameter_pipes] = STATE(115), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1994), - [sym__spread_parenthesized] = STATE(564), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym__spread_variable] = STATE(552), - [sym_val_variable] = STATE(1428), - [sym_val_number] = STATE(2355), - [sym__val_number_decimal] = STATE(1606), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(2355), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym__spread_record] = STATE(564), - [sym_record_body] = STATE(7940), - [sym_record_entry] = STATE(7309), - [sym__record_key] = STATE(8053), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7562), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym_parameter_pipes] = STATE(111), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1774), + [sym__spread_parenthesized] = STATE(584), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym__spread_variable] = STATE(586), + [sym_val_variable] = STATE(1229), + [sym_val_number] = STATE(2161), + [sym__val_number_decimal] = STATE(1445), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(2161), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym__spread_record] = STATE(584), + [sym_record_body] = STATE(7528), + [sym_record_entry] = STATE(6685), + [sym__record_key] = STATE(7700), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(10), - [aux_sym_shebang_repeat1] = STATE(181), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [aux_sym_record_body_repeat1] = STATE(188), + [aux_sym_shebang_repeat1] = STATE(173), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [aux_sym_record_body_repeat1] = STATE(179), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -71982,88 +68481,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [11] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7838), - [sym_cmd_identifier] = STATE(4857), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym_parameter_pipes] = STATE(129), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1994), - [sym__spread_parenthesized] = STATE(564), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym__spread_variable] = STATE(552), - [sym_val_variable] = STATE(1428), - [sym_val_number] = STATE(2355), - [sym__val_number_decimal] = STATE(1606), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(2355), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym__spread_record] = STATE(564), - [sym_record_body] = STATE(7775), - [sym_record_entry] = STATE(7309), - [sym__record_key] = STATE(8053), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7547), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym_parameter_pipes] = STATE(103), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1774), + [sym__spread_parenthesized] = STATE(584), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym__spread_variable] = STATE(586), + [sym_val_variable] = STATE(1229), + [sym_val_number] = STATE(2161), + [sym__val_number_decimal] = STATE(1445), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(2161), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym__spread_record] = STATE(584), + [sym_record_body] = STATE(7483), + [sym_record_entry] = STATE(6685), + [sym__record_key] = STATE(7700), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(11), - [aux_sym_shebang_repeat1] = STATE(181), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [aux_sym_record_body_repeat1] = STATE(188), + [aux_sym_shebang_repeat1] = STATE(173), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [aux_sym_record_body_repeat1] = STATE(179), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -72180,88 +68679,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [12] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7759), - [sym_cmd_identifier] = STATE(4857), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym_parameter_pipes] = STATE(117), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1994), - [sym__spread_parenthesized] = STATE(564), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym__spread_variable] = STATE(552), - [sym_val_variable] = STATE(1428), - [sym_val_number] = STATE(2355), - [sym__val_number_decimal] = STATE(1606), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(2355), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym__spread_record] = STATE(564), - [sym_record_body] = STATE(7763), - [sym_record_entry] = STATE(7309), - [sym__record_key] = STATE(8053), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7482), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym_parameter_pipes] = STATE(113), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1774), + [sym__spread_parenthesized] = STATE(584), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym__spread_variable] = STATE(586), + [sym_val_variable] = STATE(1229), + [sym_val_number] = STATE(2161), + [sym__val_number_decimal] = STATE(1445), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(2161), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym__spread_record] = STATE(584), + [sym_record_body] = STATE(7539), + [sym_record_entry] = STATE(6685), + [sym__record_key] = STATE(7700), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(12), - [aux_sym_shebang_repeat1] = STATE(181), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [aux_sym_record_body_repeat1] = STATE(188), + [aux_sym_shebang_repeat1] = STATE(173), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [aux_sym_record_body_repeat1] = STATE(179), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -72378,88 +68877,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [13] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7992), - [sym_cmd_identifier] = STATE(4857), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym_parameter_pipes] = STATE(121), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1994), - [sym__spread_parenthesized] = STATE(564), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym__spread_variable] = STATE(552), - [sym_val_variable] = STATE(1428), - [sym_val_number] = STATE(2355), - [sym__val_number_decimal] = STATE(1606), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(2355), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym__spread_record] = STATE(564), - [sym_record_body] = STATE(7995), - [sym_record_entry] = STATE(7309), - [sym__record_key] = STATE(8053), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7761), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym_parameter_pipes] = STATE(115), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1774), + [sym__spread_parenthesized] = STATE(584), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym__spread_variable] = STATE(586), + [sym_val_variable] = STATE(1229), + [sym_val_number] = STATE(2161), + [sym__val_number_decimal] = STATE(1445), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(2161), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym__spread_record] = STATE(584), + [sym_record_body] = STATE(7729), + [sym_record_entry] = STATE(6685), + [sym__record_key] = STATE(7700), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(13), - [aux_sym_shebang_repeat1] = STATE(181), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [aux_sym_record_body_repeat1] = STATE(188), + [aux_sym_shebang_repeat1] = STATE(173), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [aux_sym_record_body_repeat1] = STATE(179), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -72576,88 +69075,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [14] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7830), - [sym_cmd_identifier] = STATE(4857), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym_parameter_pipes] = STATE(122), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1994), - [sym__spread_parenthesized] = STATE(564), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym__spread_variable] = STATE(552), - [sym_val_variable] = STATE(1428), - [sym_val_number] = STATE(2355), - [sym__val_number_decimal] = STATE(1606), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(2355), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym__spread_record] = STATE(564), - [sym_record_body] = STATE(7833), - [sym_record_entry] = STATE(7309), - [sym__record_key] = STATE(8053), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7810), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym_parameter_pipes] = STATE(109), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1774), + [sym__spread_parenthesized] = STATE(584), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym__spread_variable] = STATE(586), + [sym_val_variable] = STATE(1229), + [sym_val_number] = STATE(2161), + [sym__val_number_decimal] = STATE(1445), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(2161), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym__spread_record] = STATE(584), + [sym_record_body] = STATE(7717), + [sym_record_entry] = STATE(6685), + [sym__record_key] = STATE(7700), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(14), - [aux_sym_shebang_repeat1] = STATE(181), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [aux_sym_record_body_repeat1] = STATE(188), + [aux_sym_shebang_repeat1] = STATE(173), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [aux_sym_record_body_repeat1] = STATE(179), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -72774,88 +69273,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [15] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(8010), - [sym_cmd_identifier] = STATE(4857), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym_parameter_pipes] = STATE(123), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1994), - [sym__spread_parenthesized] = STATE(564), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym__spread_variable] = STATE(552), - [sym_val_variable] = STATE(1428), - [sym_val_number] = STATE(2355), - [sym__val_number_decimal] = STATE(1606), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(2355), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym__spread_record] = STATE(564), - [sym_record_body] = STATE(7740), - [sym_record_entry] = STATE(7309), - [sym__record_key] = STATE(8053), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7680), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym_parameter_pipes] = STATE(117), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1774), + [sym__spread_parenthesized] = STATE(584), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym__spread_variable] = STATE(586), + [sym_val_variable] = STATE(1229), + [sym_val_number] = STATE(2161), + [sym__val_number_decimal] = STATE(1445), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(2161), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym__spread_record] = STATE(584), + [sym_record_body] = STATE(7812), + [sym_record_entry] = STATE(6685), + [sym__record_key] = STATE(7700), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(15), - [aux_sym_shebang_repeat1] = STATE(181), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [aux_sym_record_body_repeat1] = STATE(188), + [aux_sym_shebang_repeat1] = STATE(173), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [aux_sym_record_body_repeat1] = STATE(179), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -72972,88 +69471,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [16] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(8033), - [sym_cmd_identifier] = STATE(4857), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym_parameter_pipes] = STATE(125), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1994), - [sym__spread_parenthesized] = STATE(564), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym__spread_variable] = STATE(552), - [sym_val_variable] = STATE(1428), - [sym_val_number] = STATE(2355), - [sym__val_number_decimal] = STATE(1606), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(2355), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym__spread_record] = STATE(564), - [sym_record_body] = STATE(7962), - [sym_record_entry] = STATE(7309), - [sym__record_key] = STATE(8053), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7680), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym_parameter_pipes] = STATE(117), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1774), + [sym__spread_parenthesized] = STATE(584), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym__spread_variable] = STATE(586), + [sym_val_variable] = STATE(1229), + [sym_val_number] = STATE(2161), + [sym__val_number_decimal] = STATE(1445), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(2161), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym__spread_record] = STATE(584), + [sym_record_body] = STATE(7504), + [sym_record_entry] = STATE(6685), + [sym__record_key] = STATE(7700), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(16), - [aux_sym_shebang_repeat1] = STATE(181), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [aux_sym_record_body_repeat1] = STATE(188), + [aux_sym_shebang_repeat1] = STATE(173), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [aux_sym_record_body_repeat1] = STATE(179), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -73170,88 +69669,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [17] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(8033), - [sym_cmd_identifier] = STATE(4857), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym_parameter_pipes] = STATE(125), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1994), - [sym__spread_parenthesized] = STATE(564), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym__spread_variable] = STATE(552), - [sym_val_variable] = STATE(1428), - [sym_val_number] = STATE(2355), - [sym__val_number_decimal] = STATE(1606), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(2355), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym__spread_record] = STATE(564), - [sym_record_body] = STATE(7859), - [sym_record_entry] = STATE(7309), - [sym__record_key] = STATE(8053), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7641), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym_parameter_pipes] = STATE(102), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1774), + [sym__spread_parenthesized] = STATE(584), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym__spread_variable] = STATE(586), + [sym_val_variable] = STATE(1229), + [sym_val_number] = STATE(2161), + [sym__val_number_decimal] = STATE(1445), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(2161), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym__spread_record] = STATE(584), + [sym_record_body] = STATE(7639), + [sym_record_entry] = STATE(6685), + [sym__record_key] = STATE(7700), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(17), - [aux_sym_shebang_repeat1] = STATE(181), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [aux_sym_record_body_repeat1] = STATE(188), + [aux_sym_shebang_repeat1] = STATE(173), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [aux_sym_record_body_repeat1] = STATE(179), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -73368,88 +69867,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [18] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7960), - [sym_cmd_identifier] = STATE(4857), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym_parameter_pipes] = STATE(119), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1994), - [sym__spread_parenthesized] = STATE(564), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym__spread_variable] = STATE(552), - [sym_val_variable] = STATE(1428), - [sym_val_number] = STATE(2355), - [sym__val_number_decimal] = STATE(1606), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(2355), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym__spread_record] = STATE(564), - [sym_record_body] = STATE(7737), - [sym_record_entry] = STATE(7309), - [sym__record_key] = STATE(8053), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7804), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym_parameter_pipes] = STATE(118), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1774), + [sym__spread_parenthesized] = STATE(584), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym__spread_variable] = STATE(586), + [sym_val_variable] = STATE(1229), + [sym_val_number] = STATE(2161), + [sym__val_number_decimal] = STATE(1445), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(2161), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym__spread_record] = STATE(584), + [sym_record_body] = STATE(7768), + [sym_record_entry] = STATE(6685), + [sym__record_key] = STATE(7700), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(18), - [aux_sym_shebang_repeat1] = STATE(181), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [aux_sym_record_body_repeat1] = STATE(188), + [aux_sym_shebang_repeat1] = STATE(173), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [aux_sym_record_body_repeat1] = STATE(179), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -73566,88 +70065,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [19] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7856), - [sym_cmd_identifier] = STATE(4857), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym_parameter_pipes] = STATE(126), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1994), - [sym__spread_parenthesized] = STATE(564), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym__spread_variable] = STATE(552), - [sym_val_variable] = STATE(1428), - [sym_val_number] = STATE(2355), - [sym__val_number_decimal] = STATE(1606), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(2355), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym__spread_record] = STATE(564), - [sym_record_body] = STATE(7786), - [sym_record_entry] = STATE(7309), - [sym__record_key] = STATE(8053), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7499), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym_parameter_pipes] = STATE(119), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1774), + [sym__spread_parenthesized] = STATE(584), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym__spread_variable] = STATE(586), + [sym_val_variable] = STATE(1229), + [sym_val_number] = STATE(2161), + [sym__val_number_decimal] = STATE(1445), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(2161), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym__spread_record] = STATE(584), + [sym_record_body] = STATE(7530), + [sym_record_entry] = STATE(6685), + [sym__record_key] = STATE(7700), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(19), - [aux_sym_shebang_repeat1] = STATE(181), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [aux_sym_record_body_repeat1] = STATE(188), + [aux_sym_shebang_repeat1] = STATE(173), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [aux_sym_record_body_repeat1] = STATE(179), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -73764,88 +70263,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [20] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7734), - [sym_cmd_identifier] = STATE(4857), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym_parameter_pipes] = STATE(127), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1994), - [sym__spread_parenthesized] = STATE(564), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym__spread_variable] = STATE(552), - [sym_val_variable] = STATE(1428), - [sym_val_number] = STATE(2355), - [sym__val_number_decimal] = STATE(1606), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(2355), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym__spread_record] = STATE(564), - [sym_record_body] = STATE(7898), - [sym_record_entry] = STATE(7309), - [sym__record_key] = STATE(8053), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7680), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym_parameter_pipes] = STATE(117), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1774), + [sym__spread_parenthesized] = STATE(584), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym__spread_variable] = STATE(586), + [sym_val_variable] = STATE(1229), + [sym_val_number] = STATE(2161), + [sym__val_number_decimal] = STATE(1445), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(2161), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym__spread_record] = STATE(584), + [sym_record_body] = STATE(7775), + [sym_record_entry] = STATE(6685), + [sym__record_key] = STATE(7700), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(20), - [aux_sym_shebang_repeat1] = STATE(181), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [aux_sym_record_body_repeat1] = STATE(188), + [aux_sym_shebang_repeat1] = STATE(173), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [aux_sym_record_body_repeat1] = STATE(179), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -73962,88 +70461,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [21] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7754), - [sym_cmd_identifier] = STATE(4857), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym_parameter_pipes] = STATE(113), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1994), - [sym__spread_parenthesized] = STATE(564), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym__spread_variable] = STATE(552), - [sym_val_variable] = STATE(1428), - [sym_val_number] = STATE(2355), - [sym__val_number_decimal] = STATE(1606), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(2355), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym__spread_record] = STATE(564), - [sym_record_body] = STATE(8046), - [sym_record_entry] = STATE(7309), - [sym__record_key] = STATE(8053), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7637), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym_parameter_pipes] = STATE(120), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1774), + [sym__spread_parenthesized] = STATE(584), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym__spread_variable] = STATE(586), + [sym_val_variable] = STATE(1229), + [sym_val_number] = STATE(2161), + [sym__val_number_decimal] = STATE(1445), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(2161), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym__spread_record] = STATE(584), + [sym_record_body] = STATE(7518), + [sym_record_entry] = STATE(6685), + [sym__record_key] = STATE(7700), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(21), - [aux_sym_shebang_repeat1] = STATE(181), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [aux_sym_record_body_repeat1] = STATE(188), + [aux_sym_shebang_repeat1] = STATE(173), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [aux_sym_record_body_repeat1] = STATE(179), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -74160,88 +70659,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [22] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(8033), - [sym_cmd_identifier] = STATE(4857), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym_parameter_pipes] = STATE(125), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1994), - [sym__spread_parenthesized] = STATE(564), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym__spread_variable] = STATE(552), - [sym_val_variable] = STATE(1428), - [sym_val_number] = STATE(2355), - [sym__val_number_decimal] = STATE(1606), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(2355), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym__spread_record] = STATE(564), - [sym_record_body] = STATE(7758), - [sym_record_entry] = STATE(7309), - [sym__record_key] = STATE(8053), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7767), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym_parameter_pipes] = STATE(121), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1774), + [sym__spread_parenthesized] = STATE(584), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym__spread_variable] = STATE(586), + [sym_val_variable] = STATE(1229), + [sym_val_number] = STATE(2161), + [sym__val_number_decimal] = STATE(1445), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(2161), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym__spread_record] = STATE(584), + [sym_record_body] = STATE(7578), + [sym_record_entry] = STATE(6685), + [sym__record_key] = STATE(7700), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(22), - [aux_sym_shebang_repeat1] = STATE(181), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [aux_sym_record_body_repeat1] = STATE(188), + [aux_sym_shebang_repeat1] = STATE(173), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [aux_sym_record_body_repeat1] = STATE(179), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -74358,88 +70857,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [23] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7785), - [sym_cmd_identifier] = STATE(4857), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym_parameter_pipes] = STATE(108), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1994), - [sym__spread_parenthesized] = STATE(564), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym__spread_variable] = STATE(552), - [sym_val_variable] = STATE(1428), - [sym_val_number] = STATE(2355), - [sym__val_number_decimal] = STATE(1606), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(2355), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym__spread_record] = STATE(564), - [sym_record_body] = STATE(8021), - [sym_record_entry] = STATE(7309), - [sym__record_key] = STATE(8053), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7691), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym_parameter_pipes] = STATE(122), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1774), + [sym__spread_parenthesized] = STATE(584), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym__spread_variable] = STATE(586), + [sym_val_variable] = STATE(1229), + [sym_val_number] = STATE(2161), + [sym__val_number_decimal] = STATE(1445), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(2161), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym__spread_record] = STATE(584), + [sym_record_body] = STATE(7621), + [sym_record_entry] = STATE(6685), + [sym__record_key] = STATE(7700), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(23), - [aux_sym_shebang_repeat1] = STATE(181), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [aux_sym_record_body_repeat1] = STATE(188), + [aux_sym_shebang_repeat1] = STATE(173), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [aux_sym_record_body_repeat1] = STATE(179), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -74556,88 +71055,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [24] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7897), - [sym_cmd_identifier] = STATE(4857), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym_parameter_pipes] = STATE(109), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1994), - [sym__spread_parenthesized] = STATE(564), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym__spread_variable] = STATE(552), - [sym_val_variable] = STATE(1428), - [sym_val_number] = STATE(2355), - [sym__val_number_decimal] = STATE(1606), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(2355), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym__spread_record] = STATE(564), - [sym_record_body] = STATE(7823), - [sym_record_entry] = STATE(7309), - [sym__record_key] = STATE(8053), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7693), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym_parameter_pipes] = STATE(111), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1774), + [sym__spread_parenthesized] = STATE(584), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym__spread_variable] = STATE(586), + [sym_val_variable] = STATE(1229), + [sym_val_number] = STATE(2161), + [sym__val_number_decimal] = STATE(1445), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(2161), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym__spread_record] = STATE(584), + [sym_record_body] = STATE(7528), + [sym_record_entry] = STATE(6685), + [sym__record_key] = STATE(7700), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(24), - [aux_sym_shebang_repeat1] = STATE(181), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [aux_sym_record_body_repeat1] = STATE(188), + [aux_sym_shebang_repeat1] = STATE(173), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [aux_sym_record_body_repeat1] = STATE(179), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -74754,88 +71253,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [25] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(8043), - [sym_cmd_identifier] = STATE(4857), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym_parameter_pipes] = STATE(129), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1994), - [sym__spread_parenthesized] = STATE(564), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym__spread_variable] = STATE(552), - [sym_val_variable] = STATE(1428), - [sym_val_number] = STATE(2355), - [sym__val_number_decimal] = STATE(1606), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(2355), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym__spread_record] = STATE(564), - [sym_record_body] = STATE(7775), - [sym_record_entry] = STATE(7309), - [sym__record_key] = STATE(8053), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7707), + [sym_cmd_identifier] = STATE(4539), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym_parameter_pipes] = STATE(116), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1774), + [sym__spread_parenthesized] = STATE(584), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym__spread_variable] = STATE(586), + [sym_val_variable] = STATE(1229), + [sym_val_number] = STATE(2161), + [sym__val_number_decimal] = STATE(1445), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(2161), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym__spread_record] = STATE(584), + [sym_record_body] = STATE(7642), + [sym_record_entry] = STATE(6685), + [sym__record_key] = STATE(7700), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(25), - [aux_sym_shebang_repeat1] = STATE(181), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [aux_sym_record_body_repeat1] = STATE(188), + [aux_sym_shebang_repeat1] = STATE(173), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [aux_sym_record_body_repeat1] = STATE(179), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -74952,574 +71451,536 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [26] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7815), - [sym_cmd_identifier] = STATE(4857), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7565), + [sym_cmd_identifier] = STATE(4558), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), [sym_parameter_pipes] = STATE(111), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1994), - [sym__spread_parenthesized] = STATE(564), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym__spread_variable] = STATE(552), - [sym_val_variable] = STATE(1428), - [sym_val_number] = STATE(2355), - [sym__val_number_decimal] = STATE(1606), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(2355), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym__spread_record] = STATE(564), - [sym_record_body] = STATE(7870), - [sym_record_entry] = STATE(7309), - [sym__record_key] = STATE(8053), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1234), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1442), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(26), - [aux_sym_shebang_repeat1] = STATE(181), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [aux_sym_record_body_repeat1] = STATE(188), - [anon_sym_export] = ACTIONS(249), - [anon_sym_alias] = ACTIONS(251), - [anon_sym_let] = ACTIONS(253), - [anon_sym_let_DASHenv] = ACTIONS(253), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(257), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_use] = ACTIONS(267), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(283), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(407), + [anon_sym_if] = ACTIONS(409), + [anon_sym_match] = ACTIONS(411), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(357), + [anon_sym_RBRACE] = ACTIONS(413), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(293), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(295), - [anon_sym_source] = ACTIONS(297), - [anon_sym_source_DASHenv] = ACTIONS(297), - [anon_sym_register] = ACTIONS(299), - [anon_sym_hide] = ACTIONS(301), - [anon_sym_hide_DASHenv] = ACTIONS(303), - [anon_sym_overlay] = ACTIONS(305), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), + [anon_sym_try] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [27] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(8037), - [sym_cmd_identifier] = STATE(4857), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym_parameter_pipes] = STATE(115), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1994), - [sym__spread_parenthesized] = STATE(564), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym__spread_variable] = STATE(552), - [sym_val_variable] = STATE(1428), - [sym_val_number] = STATE(2355), - [sym__val_number_decimal] = STATE(1606), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(2355), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym__spread_record] = STATE(564), - [sym_record_body] = STATE(7752), - [sym_record_entry] = STATE(7309), - [sym__record_key] = STATE(8053), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7657), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(27), - [aux_sym_shebang_repeat1] = STATE(181), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [aux_sym_record_body_repeat1] = STATE(188), - [anon_sym_export] = ACTIONS(249), - [anon_sym_alias] = ACTIONS(251), - [anon_sym_let] = ACTIONS(253), - [anon_sym_let_DASHenv] = ACTIONS(253), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(257), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_use] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(283), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(289), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(323), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(467), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(293), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(295), - [anon_sym_source] = ACTIONS(297), - [anon_sym_source_DASHenv] = ACTIONS(297), - [anon_sym_register] = ACTIONS(299), - [anon_sym_hide] = ACTIONS(301), - [anon_sym_hide_DASHenv] = ACTIONS(303), - [anon_sym_overlay] = ACTIONS(305), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_RPAREN2] = ACTIONS(489), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [28] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7730), - [sym_cmd_identifier] = STATE(4804), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym_parameter_pipes] = STATE(128), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1423), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7736), + [sym_cmd_identifier] = STATE(4558), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym_parameter_pipes] = STATE(113), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1234), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1442), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(28), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [aux_sym_cmd_identifier_token38] = ACTIONS(377), - [aux_sym_cmd_identifier_token39] = ACTIONS(379), - [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(407), + [anon_sym_if] = ACTIONS(409), + [anon_sym_match] = ACTIONS(411), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(415), + [anon_sym_RBRACE] = ACTIONS(517), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), + [anon_sym_try] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), @@ -75527,10761 +71988,12914 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [29] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7841), - [sym_cmd_identifier] = STATE(4804), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym_parameter_pipes] = STATE(119), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1423), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7636), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(29), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [aux_sym_cmd_identifier_token38] = ACTIONS(377), - [aux_sym_cmd_identifier_token39] = ACTIONS(379), - [aux_sym_cmd_identifier_token40] = ACTIONS(379), - [sym__newline] = ACTIONS(145), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(445), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(519), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_RPAREN2] = ACTIONS(521), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [30] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7730), - [sym_cmd_identifier] = STATE(4804), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym_parameter_pipes] = STATE(117), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1423), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7481), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(30), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [aux_sym_cmd_identifier_token38] = ACTIONS(377), - [aux_sym_cmd_identifier_token39] = ACTIONS(379), - [aux_sym_cmd_identifier_token40] = ACTIONS(379), - [sym__newline] = ACTIONS(145), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(415), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_RPAREN2] = ACTIONS(525), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [31] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7841), - [sym_cmd_identifier] = STATE(4804), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym_parameter_pipes] = STATE(115), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1423), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7690), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(31), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [aux_sym_cmd_identifier_token38] = ACTIONS(377), - [aux_sym_cmd_identifier_token39] = ACTIONS(379), - [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(527), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [anon_sym_RPAREN2] = ACTIONS(525), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(515), + [anon_sym_POUND] = ACTIONS(247), + }, + [32] = { + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7565), + [sym_cmd_identifier] = STATE(4558), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym_parameter_pipes] = STATE(102), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1234), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1442), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), + [sym_comment] = STATE(32), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(407), + [anon_sym_if] = ACTIONS(409), + [anon_sym_match] = ACTIONS(411), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(447), + [anon_sym_RBRACE] = ACTIONS(529), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), + [anon_sym_try] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [32] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7980), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), - [sym_comment] = STATE(32), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_RPAREN] = ACTIONS(473), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), - }, [33] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7824), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7495), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(33), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(531), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(521), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_RPAREN2] = ACTIONS(525), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [34] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7766), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7736), + [sym_cmd_identifier] = STATE(4558), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym_parameter_pipes] = STATE(109), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1234), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1442), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(34), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_RPAREN] = ACTIONS(523), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(407), + [anon_sym_if] = ACTIONS(409), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(517), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [35] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7983), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7726), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(35), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_RPAREN] = ACTIONS(525), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(533), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_RPAREN2] = ACTIONS(521), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [36] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7938), - [sym_cmd_identifier] = STATE(4804), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym_parameter_pipes] = STATE(115), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1423), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7595), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(36), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [aux_sym_cmd_identifier_token38] = ACTIONS(377), - [aux_sym_cmd_identifier_token39] = ACTIONS(379), - [aux_sym_cmd_identifier_token40] = ACTIONS(379), - [sym__newline] = ACTIONS(145), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(535), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_RPAREN2] = ACTIONS(525), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [37] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7937), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7732), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(37), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(537), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(527), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_RPAREN2] = ACTIONS(539), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [38] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7880), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7689), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(38), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_RPAREN] = ACTIONS(529), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(541), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_RPAREN2] = ACTIONS(521), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [39] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7904), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7516), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(39), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_RPAREN] = ACTIONS(531), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(543), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_RPAREN2] = ACTIONS(525), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [40] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7756), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7763), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(40), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(545), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(533), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_RPAREN2] = ACTIONS(547), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [41] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7767), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7739), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(41), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_RPAREN] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(549), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_RPAREN2] = ACTIONS(551), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [42] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7956), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7511), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(42), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_RPAREN] = ACTIONS(537), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(553), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_RPAREN2] = ACTIONS(555), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [43] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7967), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7745), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(43), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_RPAREN] = ACTIONS(539), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(557), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_RPAREN2] = ACTIONS(559), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [44] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7902), - [sym_cmd_identifier] = STATE(4804), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym_parameter_pipes] = STATE(128), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1423), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7619), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(44), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [aux_sym_cmd_identifier_token38] = ACTIONS(377), - [aux_sym_cmd_identifier_token39] = ACTIONS(379), - [aux_sym_cmd_identifier_token40] = ACTIONS(379), - [sym__newline] = ACTIONS(145), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(561), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_RPAREN2] = ACTIONS(563), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [45] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7757), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7751), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(45), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(541), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_RPAREN2] = ACTIONS(567), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [46] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7801), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7716), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(46), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_RPAREN] = ACTIONS(543), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_RPAREN2] = ACTIONS(571), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [47] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7860), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7760), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(47), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_RPAREN] = ACTIONS(545), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_RPAREN2] = ACTIONS(575), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [48] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7822), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7770), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(48), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(547), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_RPAREN2] = ACTIONS(555), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [49] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(8057), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7511), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(49), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_RPAREN] = ACTIONS(549), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(553), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_RPAREN2] = ACTIONS(579), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [50] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7868), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7787), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(50), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(551), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_RPAREN2] = ACTIONS(583), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [51] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7877), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7803), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(51), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_RPAREN] = ACTIONS(553), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(585), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_RPAREN2] = ACTIONS(587), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [52] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7952), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7527), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(52), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(589), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(555), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_RPAREN2] = ACTIONS(521), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [53] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(8023), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7536), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(53), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_RPAREN] = ACTIONS(557), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(591), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [anon_sym_RPAREN2] = ACTIONS(571), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [54] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7959), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7512), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(54), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(559), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [55] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7863), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7534), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(55), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_RPAREN] = ACTIONS(561), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [56] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7847), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7536), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(56), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(563), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [57] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7800), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7622), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(57), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_RPAREN] = ACTIONS(565), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(599), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [58] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7969), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7540), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(58), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(567), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [59] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7914), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7693), + [sym_cmd_identifier] = STATE(4558), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym_parameter_pipes] = STATE(111), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1234), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1442), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(59), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_RPAREN] = ACTIONS(569), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(407), + [anon_sym_if] = ACTIONS(409), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [60] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7975), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7758), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(60), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(603), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(571), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [61] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7836), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7674), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(61), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_RPAREN] = ACTIONS(573), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(605), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [62] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7987), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7791), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(62), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(607), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(575), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [63] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7814), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7496), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(63), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_RPAREN] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(609), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [64] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7993), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7810), + [sym_cmd_identifier] = STATE(4558), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym_parameter_pipes] = STATE(109), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1234), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1442), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(64), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_PIPE] = ACTIONS(147), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(407), + [anon_sym_if] = ACTIONS(409), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(579), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [65] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7925), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7704), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(65), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_RPAREN] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [66] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(8027), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7719), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(66), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(613), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(583), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [67] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7845), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7738), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(67), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_RPAREN] = ACTIONS(585), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(615), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [68] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7783), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7630), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(68), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_RPAREN] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [69] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(8052), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7524), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(69), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_RPAREN] = ACTIONS(589), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [70] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7780), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7782), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(70), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_RPAREN] = ACTIONS(591), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(621), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [71] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7834), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7575), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(71), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_RPAREN] = ACTIONS(593), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(623), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [72] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7875), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7498), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(72), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_RPAREN] = ACTIONS(595), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(625), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [73] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7913), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7785), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(73), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_RPAREN] = ACTIONS(597), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(627), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [74] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7947), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7636), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(74), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_RPAREN] = ACTIONS(599), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(629), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [75] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7955), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7744), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(75), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_RPAREN] = ACTIONS(601), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [76] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7989), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7750), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(76), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(633), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(563), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [77] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7982), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7614), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(77), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(635), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(521), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [78] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7781), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7495), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(78), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(637), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(527), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [79] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7963), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7692), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(79), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(639), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(533), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [80] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(8016), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7516), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(80), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(575), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [81] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7943), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7597), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(81), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(643), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(527), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [82] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7908), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7577), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(82), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(645), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(533), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [83] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(8042), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7544), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(83), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(647), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(533), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [84] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(8018), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7815), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(84), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(649), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(533), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [85] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7999), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7586), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(85), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(651), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(533), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [86] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7964), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7584), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(86), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(653), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(603), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [87] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(8055), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7809), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(87), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(655), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, [88] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(8047), - [sym_cmd_identifier] = STATE(4804), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1423), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7533), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(88), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [aux_sym_cmd_identifier_token38] = ACTIONS(377), - [aux_sym_cmd_identifier_token39] = ACTIONS(379), - [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(657), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(515), + [anon_sym_POUND] = ACTIONS(247), + }, + [89] = { + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7583), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), + [sym_comment] = STATE(89), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(659), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(515), + [anon_sym_POUND] = ACTIONS(247), + }, + [90] = { + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7625), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), + [sym_comment] = STATE(90), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(661), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(515), + [anon_sym_POUND] = ACTIONS(247), + }, + [91] = { + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7662), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), + [sym_comment] = STATE(91), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(663), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(515), + [anon_sym_POUND] = ACTIONS(247), + }, + [92] = { + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7696), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), + [sym_comment] = STATE(92), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(665), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(515), + [anon_sym_POUND] = ACTIONS(247), + }, + [93] = { + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7615), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), + [sym_comment] = STATE(93), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(667), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(515), + [anon_sym_POUND] = ACTIONS(247), + }, + [94] = { + [sym__block_body_statement] = STATE(5997), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym_cmd_identifier] = STATE(4558), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1234), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1442), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), + [sym_comment] = STATE(94), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(210), + [aux_sym__block_body_repeat2] = STATE(129), + [aux_sym_pipe_element_repeat2] = STATE(399), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_RPAREN] = ACTIONS(669), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(407), + [anon_sym_if] = ACTIONS(409), + [anon_sym_match] = ACTIONS(411), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(415), + [anon_sym_RBRACE] = ACTIONS(669), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), + [anon_sym_try] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [89] = { - [sym__block_body_statement] = STATE(6656), - [sym__declaration] = STATE(7073), - [sym_decl_alias] = STATE(7076), - [sym_stmt_let] = STATE(7237), - [sym_stmt_mut] = STATE(7237), - [sym_stmt_const] = STATE(7237), - [sym_assignment] = STATE(7237), - [sym__mutable_assignment_pattern] = STATE(7503), - [sym__statement] = STATE(7073), - [sym_pipeline] = STATE(7237), - [sym__block_body] = STATE(7742), - [sym_cmd_identifier] = STATE(4982), - [sym_decl_def] = STATE(7076), - [sym_decl_export] = STATE(7076), - [sym_decl_extern] = STATE(7076), - [sym_decl_module] = STATE(7076), - [sym_decl_use] = STATE(7076), - [sym__ctrl_statement] = STATE(7237), - [sym__ctrl_expression] = STATE(5228), - [sym_ctrl_for] = STATE(7092), - [sym_ctrl_loop] = STATE(7092), - [sym_ctrl_error] = STATE(7092), - [sym_ctrl_while] = STATE(7092), - [sym_ctrl_do] = STATE(5219), - [sym_ctrl_if] = STATE(5219), - [sym_ctrl_match] = STATE(5219), - [sym_ctrl_try] = STATE(5219), - [sym_ctrl_return] = STATE(5219), - [sym_pipe_element] = STATE(4861), - [sym_stmt_source] = STATE(7237), - [sym_stmt_register] = STATE(7237), - [sym__stmt_hide] = STATE(7237), - [sym_hide_mod] = STATE(7267), - [sym_hide_env] = STATE(7267), - [sym__stmt_overlay] = STATE(7237), - [sym_overlay_list] = STATE(7140), - [sym_overlay_hide] = STATE(7140), - [sym_overlay_new] = STATE(7140), - [sym_overlay_use] = STATE(7140), - [sym_where_command] = STATE(5254), - [sym__expression] = STATE(4038), - [sym_expr_unary] = STATE(2604), - [sym__expr_unary_minus] = STATE(2610), - [sym_expr_binary] = STATE(2604), - [sym__expr_binary_expression] = STATE(4069), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(4062), - [sym__value] = STATE(2604), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2547), - [sym_val_variable] = STATE(1495), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(1742), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__str_double_quotes] = STATE(2144), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2607), - [sym__inter_double_quotes] = STATE(2626), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5254), - [sym_comment] = STATE(89), - [aux_sym_pipeline_repeat1] = STATE(174), - [aux_sym__block_body_repeat1] = STATE(124), - [aux_sym__block_body_repeat2] = STATE(139), - [aux_sym_pipe_element_repeat2] = STATE(407), - [ts_builtin_sym_end] = ACTIONS(605), + [95] = { + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7603), + [sym_cmd_identifier] = STATE(4558), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1234), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1442), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), + [sym_comment] = STATE(95), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(407), + [anon_sym_if] = ACTIONS(409), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(413), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + }, + [96] = { + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7799), + [sym_cmd_identifier] = STATE(4558), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1234), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1442), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), + [sym_comment] = STATE(96), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(407), + [anon_sym_if] = ACTIONS(409), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(671), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + }, + [97] = { + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7668), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), + [sym_comment] = STATE(97), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(515), + [anon_sym_POUND] = ACTIONS(247), + }, + [98] = { + [sym__block_body_statement_parenthesized] = STATE(5868), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), + [sym_comment] = STATE(98), + [aux_sym_shebang_repeat1] = STATE(128), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(210), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(123), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(515), + [anon_sym_POUND] = ACTIONS(247), + }, + [99] = { + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7799), + [sym_cmd_identifier] = STATE(4558), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1234), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1442), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), + [sym_comment] = STATE(99), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(407), + [anon_sym_if] = ACTIONS(409), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(517), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + }, + [100] = { + [sym__block_body_statement_parenthesized] = STATE(5822), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym__parenthesized_body] = STATE(7759), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), + [sym_comment] = STATE(100), + [aux_sym_shebang_repeat1] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(124), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(461), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(515), + [anon_sym_POUND] = ACTIONS(247), + }, + [101] = { + [sym__block_body_statement] = STATE(6568), + [sym__declaration] = STATE(7106), + [sym_decl_alias] = STATE(7107), + [sym_stmt_let] = STATE(7142), + [sym_stmt_mut] = STATE(7142), + [sym_stmt_const] = STATE(7142), + [sym_assignment] = STATE(7142), + [sym__mutable_assignment_pattern] = STATE(6897), + [sym__statement] = STATE(7106), + [sym_pipeline] = STATE(7142), + [sym__block_body] = STATE(7474), + [sym_cmd_identifier] = STATE(4711), + [sym_decl_def] = STATE(7107), + [sym_decl_export] = STATE(7107), + [sym_decl_extern] = STATE(7107), + [sym_decl_module] = STATE(7107), + [sym_decl_use] = STATE(7107), + [sym__ctrl_statement] = STATE(7142), + [sym__ctrl_expression] = STATE(5052), + [sym_ctrl_for] = STATE(6753), + [sym_ctrl_loop] = STATE(6753), + [sym_ctrl_error] = STATE(6753), + [sym_ctrl_while] = STATE(6753), + [sym_ctrl_do] = STATE(5084), + [sym_ctrl_if] = STATE(5084), + [sym_ctrl_match] = STATE(5084), + [sym_ctrl_try] = STATE(5084), + [sym_ctrl_return] = STATE(5084), + [sym_pipe_element] = STATE(4679), + [sym_stmt_source] = STATE(7142), + [sym_stmt_register] = STATE(7142), + [sym__stmt_hide] = STATE(7142), + [sym_hide_mod] = STATE(6904), + [sym_hide_env] = STATE(6904), + [sym__stmt_overlay] = STATE(7142), + [sym_overlay_list] = STATE(7001), + [sym_overlay_hide] = STATE(7001), + [sym_overlay_new] = STATE(7001), + [sym_overlay_use] = STATE(7001), + [sym_where_command] = STATE(4956), + [sym__expression] = STATE(3760), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2398), + [sym_expr_binary] = STATE(2381), + [sym__expr_binary_expression] = STATE(3781), + [sym_expr_parenthesized] = STATE(1971), + [sym_val_range] = STATE(3771), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2348), + [sym_val_bool] = STATE(2348), + [sym_val_variable] = STATE(1271), + [sym_val_number] = STATE(2348), + [sym__val_number_decimal] = STATE(1497), + [sym__val_number] = STATE(2401), + [sym_val_duration] = STATE(2348), + [sym_val_filesize] = STATE(2348), + [sym_val_binary] = STATE(2348), + [sym_val_string] = STATE(2348), + [sym__str_double_quotes] = STATE(1984), + [sym_val_interpolated] = STATE(2348), + [sym__inter_single_quotes] = STATE(2404), + [sym__inter_double_quotes] = STATE(2407), + [sym_val_list] = STATE(2348), + [sym_val_record] = STATE(2348), + [sym_val_table] = STATE(2348), + [sym_val_closure] = STATE(2348), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4956), + [sym_comment] = STATE(101), + [aux_sym_pipeline_repeat1] = STATE(163), + [aux_sym__block_body_repeat1] = STATE(106), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(406), + [ts_builtin_sym_end] = ACTIONS(675), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -86384,3186 +84998,1056 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(121), [anon_sym_POUND] = ACTIONS(247), }, - [90] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7973), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), - [sym_comment] = STATE(90), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), - }, - [91] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7829), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), - [sym_comment] = STATE(91), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), - }, - [92] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7879), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), - [sym_comment] = STATE(92), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), - }, - [93] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(8047), - [sym_cmd_identifier] = STATE(4804), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1423), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), - [sym_comment] = STATE(93), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [aux_sym_cmd_identifier_token38] = ACTIONS(377), - [aux_sym_cmd_identifier_token39] = ACTIONS(379), - [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [102] = { + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7573), + [sym_cmd_identifier] = STATE(4558), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1234), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1442), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), + [sym_comment] = STATE(102), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(407), + [anon_sym_if] = ACTIONS(409), + [anon_sym_match] = ACTIONS(411), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(607), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), + [anon_sym_try] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [94] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(8008), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), - [sym_comment] = STATE(94), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [103] = { + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7560), + [sym_cmd_identifier] = STATE(4558), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1234), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1442), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), + [sym_comment] = STATE(103), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(407), + [anon_sym_if] = ACTIONS(409), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [95] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7989), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), - [sym_comment] = STATE(95), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [104] = { + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7520), + [sym_cmd_identifier] = STATE(4558), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1234), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1442), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), + [sym_comment] = STATE(104), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(407), + [anon_sym_if] = ACTIONS(409), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [96] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7946), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), - [sym_comment] = STATE(96), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [105] = { + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7558), + [sym_cmd_identifier] = STATE(4558), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1234), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1442), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), + [sym_comment] = STATE(105), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(407), + [anon_sym_if] = ACTIONS(409), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), - }, - [97] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7748), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), - [sym_comment] = STATE(97), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), - }, - [98] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7853), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), - [sym_comment] = STATE(98), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), - }, - [99] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7736), - [sym_cmd_identifier] = STATE(4804), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1423), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), - [sym_comment] = STATE(99), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [aux_sym_cmd_identifier_token38] = ACTIONS(377), - [aux_sym_cmd_identifier_token39] = ACTIONS(379), - [aux_sym_cmd_identifier_token40] = ACTIONS(379), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(447), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - }, - [100] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(8016), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), - [sym_comment] = STATE(100), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), - }, - [101] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7781), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), - [sym_comment] = STATE(101), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), - }, - [102] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7896), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), - [sym_comment] = STATE(102), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), - }, - [103] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(8042), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), - [sym_comment] = STATE(103), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), - }, - [104] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(8018), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), - [sym_comment] = STATE(104), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), - }, - [105] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7772), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), - [sym_comment] = STATE(105), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [106] = { - [sym__block_body_statement_parenthesized] = STATE(6157), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym__parenthesized_body] = STATE(7999), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement] = STATE(6347), + [sym__declaration] = STATE(7106), + [sym_decl_alias] = STATE(7107), + [sym_stmt_let] = STATE(7142), + [sym_stmt_mut] = STATE(7142), + [sym_stmt_const] = STATE(7142), + [sym_assignment] = STATE(7142), + [sym__mutable_assignment_pattern] = STATE(6897), + [sym__statement] = STATE(7106), + [sym_pipeline] = STATE(7142), + [sym_cmd_identifier] = STATE(4711), + [sym_decl_def] = STATE(7107), + [sym_decl_export] = STATE(7107), + [sym_decl_extern] = STATE(7107), + [sym_decl_module] = STATE(7107), + [sym_decl_use] = STATE(7107), + [sym__ctrl_statement] = STATE(7142), + [sym__ctrl_expression] = STATE(5052), + [sym_ctrl_for] = STATE(6753), + [sym_ctrl_loop] = STATE(6753), + [sym_ctrl_error] = STATE(6753), + [sym_ctrl_while] = STATE(6753), + [sym_ctrl_do] = STATE(5084), + [sym_ctrl_if] = STATE(5084), + [sym_ctrl_match] = STATE(5084), + [sym_ctrl_try] = STATE(5084), + [sym_ctrl_return] = STATE(5084), + [sym_pipe_element] = STATE(4679), + [sym_stmt_source] = STATE(7142), + [sym_stmt_register] = STATE(7142), + [sym__stmt_hide] = STATE(7142), + [sym_hide_mod] = STATE(6904), + [sym_hide_env] = STATE(6904), + [sym__stmt_overlay] = STATE(7142), + [sym_overlay_list] = STATE(7001), + [sym_overlay_hide] = STATE(7001), + [sym_overlay_new] = STATE(7001), + [sym_overlay_use] = STATE(7001), + [sym_where_command] = STATE(4956), + [sym__expression] = STATE(3760), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2398), + [sym_expr_binary] = STATE(2381), + [sym__expr_binary_expression] = STATE(3781), + [sym_expr_parenthesized] = STATE(1971), + [sym_val_range] = STATE(3771), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2348), + [sym_val_bool] = STATE(2348), + [sym_val_variable] = STATE(1271), + [sym_val_number] = STATE(2348), + [sym__val_number_decimal] = STATE(1497), + [sym__val_number] = STATE(2401), + [sym_val_duration] = STATE(2348), + [sym_val_filesize] = STATE(2348), + [sym_val_binary] = STATE(2348), + [sym_val_string] = STATE(2348), + [sym__str_double_quotes] = STATE(1984), + [sym_val_interpolated] = STATE(2348), + [sym__inter_single_quotes] = STATE(2404), + [sym__inter_double_quotes] = STATE(2407), + [sym_val_list] = STATE(2348), + [sym_val_record] = STATE(2348), + [sym_val_table] = STATE(2348), + [sym_val_closure] = STATE(2348), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4956), [sym_comment] = STATE(106), - [aux_sym_shebang_repeat1] = STATE(136), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(112), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipeline_repeat1] = STATE(163), + [aux_sym__block_body_repeat1] = STATE(233), + [aux_sym__block_body_repeat2] = STATE(132), + [aux_sym_pipe_element_repeat2] = STATE(406), + [ts_builtin_sym_end] = ACTIONS(669), + [anon_sym_export] = ACTIONS(9), + [anon_sym_alias] = ACTIONS(11), + [anon_sym_let] = ACTIONS(13), + [anon_sym_let_DASHenv] = ACTIONS(13), + [anon_sym_mut] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(19), + [aux_sym_cmd_identifier_token3] = ACTIONS(19), + [aux_sym_cmd_identifier_token4] = ACTIONS(19), + [aux_sym_cmd_identifier_token5] = ACTIONS(19), + [aux_sym_cmd_identifier_token6] = ACTIONS(19), + [aux_sym_cmd_identifier_token7] = ACTIONS(19), + [aux_sym_cmd_identifier_token8] = ACTIONS(19), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(19), + [aux_sym_cmd_identifier_token11] = ACTIONS(19), + [aux_sym_cmd_identifier_token12] = ACTIONS(19), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(19), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(19), + [aux_sym_cmd_identifier_token17] = ACTIONS(19), + [aux_sym_cmd_identifier_token18] = ACTIONS(19), + [aux_sym_cmd_identifier_token19] = ACTIONS(19), + [aux_sym_cmd_identifier_token20] = ACTIONS(19), + [aux_sym_cmd_identifier_token21] = ACTIONS(19), + [aux_sym_cmd_identifier_token22] = ACTIONS(19), + [aux_sym_cmd_identifier_token23] = ACTIONS(19), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(19), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(19), + [aux_sym_cmd_identifier_token28] = ACTIONS(19), + [aux_sym_cmd_identifier_token29] = ACTIONS(19), + [aux_sym_cmd_identifier_token30] = ACTIONS(19), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(21), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(21), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(19), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_null] = ACTIONS(25), + [aux_sym_cmd_identifier_token38] = ACTIONS(27), + [aux_sym_cmd_identifier_token39] = ACTIONS(29), + [aux_sym_cmd_identifier_token40] = ACTIONS(29), + [sym__newline] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_def] = ACTIONS(35), + [anon_sym_export_DASHenv] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_module] = ACTIONS(41), + [anon_sym_use] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [anon_sym_error] = ACTIONS(51), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_loop] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_do] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(73), + [anon_sym_try] = ACTIONS(75), + [anon_sym_return] = ACTIONS(77), + [anon_sym_source] = ACTIONS(79), + [anon_sym_source_DASHenv] = ACTIONS(79), + [anon_sym_register] = ACTIONS(81), + [anon_sym_hide] = ACTIONS(83), + [anon_sym_hide_DASHenv] = ACTIONS(85), + [anon_sym_overlay] = ACTIONS(87), + [anon_sym_where] = ACTIONS(89), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(93), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [aux_sym__val_number_decimal_token1] = ACTIONS(95), + [aux_sym__val_number_decimal_token2] = ACTIONS(97), + [aux_sym__val_number_decimal_token3] = ACTIONS(99), + [aux_sym__val_number_decimal_token4] = ACTIONS(101), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(121), [anon_sym_POUND] = ACTIONS(247), }, [107] = { - [sym__block_body_statement] = STATE(6244), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym_cmd_identifier] = STATE(4804), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1423), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7786), + [sym_cmd_identifier] = STATE(4558), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1234), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1442), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(107), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(226), - [aux_sym__block_body_repeat2] = STATE(137), - [aux_sym_pipe_element_repeat2] = STATE(408), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [aux_sym_cmd_identifier_token38] = ACTIONS(377), - [aux_sym_cmd_identifier_token39] = ACTIONS(379), - [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_RPAREN] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(407), + [anon_sym_if] = ACTIONS(409), + [anon_sym_match] = ACTIONS(411), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(609), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), + [anon_sym_try] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), @@ -89571,175 +86055,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [108] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7808), - [sym_cmd_identifier] = STATE(4804), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1423), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7608), + [sym_cmd_identifier] = STATE(4558), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1234), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1442), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(108), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [aux_sym_cmd_identifier_token38] = ACTIONS(377), - [aux_sym_cmd_identifier_token39] = ACTIONS(379), - [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(407), + [anon_sym_if] = ACTIONS(409), + [anon_sym_match] = ACTIONS(411), [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), + [anon_sym_try] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), @@ -89747,175 +86231,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [109] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7842), - [sym_cmd_identifier] = STATE(4804), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1423), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7671), + [sym_cmd_identifier] = STATE(4558), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1234), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1442), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(109), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [aux_sym_cmd_identifier_token38] = ACTIONS(377), - [aux_sym_cmd_identifier_token39] = ACTIONS(379), - [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(407), + [anon_sym_if] = ACTIONS(409), + [anon_sym_match] = ACTIONS(411), [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), + [anon_sym_try] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), @@ -89923,175 +86407,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [110] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7818), - [sym_cmd_identifier] = STATE(4804), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1423), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7723), + [sym_cmd_identifier] = STATE(4558), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1234), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1442), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(110), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [aux_sym_cmd_identifier_token38] = ACTIONS(377), - [aux_sym_cmd_identifier_token39] = ACTIONS(379), - [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(407), + [anon_sym_if] = ACTIONS(409), + [anon_sym_match] = ACTIONS(411), [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), + [anon_sym_try] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), @@ -90099,175 +86583,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [111] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7941), - [sym_cmd_identifier] = STATE(4804), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1423), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7737), + [sym_cmd_identifier] = STATE(4558), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1234), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1442), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(111), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [aux_sym_cmd_identifier_token38] = ACTIONS(377), - [aux_sym_cmd_identifier_token39] = ACTIONS(379), - [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(407), + [anon_sym_if] = ACTIONS(409), + [anon_sym_match] = ACTIONS(411), [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), + [anon_sym_try] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), @@ -90275,351 +86759,351 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [112] = { - [sym__block_body_statement_parenthesized] = STATE(6016), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7552), + [sym_cmd_identifier] = STATE(4558), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1234), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1442), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(112), - [aux_sym_shebang_repeat1] = STATE(134), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym__block_body_repeat1] = STATE(226), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(131), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(467), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(407), + [anon_sym_if] = ACTIONS(409), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [113] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7798), - [sym_cmd_identifier] = STATE(4804), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1423), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7613), + [sym_cmd_identifier] = STATE(4558), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1234), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1442), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(113), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [aux_sym_cmd_identifier_token38] = ACTIONS(377), - [aux_sym_cmd_identifier_token39] = ACTIONS(379), - [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(407), + [anon_sym_if] = ACTIONS(409), + [anon_sym_match] = ACTIONS(411), [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), + [anon_sym_try] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), @@ -90627,175 +87111,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [114] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7958), - [sym_cmd_identifier] = STATE(4804), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1423), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7471), + [sym_cmd_identifier] = STATE(4558), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1234), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1442), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(114), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [aux_sym_cmd_identifier_token38] = ACTIONS(377), - [aux_sym_cmd_identifier_token39] = ACTIONS(379), - [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(407), + [anon_sym_if] = ACTIONS(409), + [anon_sym_match] = ACTIONS(411), [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), + [anon_sym_try] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), @@ -90803,175 +87287,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [115] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7966), - [sym_cmd_identifier] = STATE(4804), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1423), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7673), + [sym_cmd_identifier] = STATE(4558), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1234), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1442), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(115), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [aux_sym_cmd_identifier_token38] = ACTIONS(377), - [aux_sym_cmd_identifier_token39] = ACTIONS(379), - [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(407), + [anon_sym_if] = ACTIONS(409), + [anon_sym_match] = ACTIONS(411), [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), + [anon_sym_try] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), @@ -90979,175 +87463,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [116] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7805), - [sym_cmd_identifier] = STATE(4804), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1423), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7611), + [sym_cmd_identifier] = STATE(4558), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1234), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1442), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(116), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [aux_sym_cmd_identifier_token38] = ACTIONS(377), - [aux_sym_cmd_identifier_token39] = ACTIONS(379), - [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(407), + [anon_sym_if] = ACTIONS(409), + [anon_sym_match] = ACTIONS(411), [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), + [anon_sym_try] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), @@ -91155,175 +87639,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [117] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7857), - [sym_cmd_identifier] = STATE(4804), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1423), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7682), + [sym_cmd_identifier] = STATE(4558), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1234), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1442), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(117), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [aux_sym_cmd_identifier_token38] = ACTIONS(377), - [aux_sym_cmd_identifier_token39] = ACTIONS(379), - [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(407), + [anon_sym_if] = ACTIONS(409), + [anon_sym_match] = ACTIONS(411), [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), + [anon_sym_try] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), @@ -91331,175 +87815,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [118] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(8025), - [sym_cmd_identifier] = STATE(4804), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1423), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7591), + [sym_cmd_identifier] = STATE(4558), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1234), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1442), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(118), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [aux_sym_cmd_identifier_token38] = ACTIONS(377), - [aux_sym_cmd_identifier_token39] = ACTIONS(379), - [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(407), + [anon_sym_if] = ACTIONS(409), + [anon_sym_match] = ACTIONS(411), [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), + [anon_sym_try] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), @@ -91507,175 +87991,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [119] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(8056), - [sym_cmd_identifier] = STATE(4804), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1423), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7543), + [sym_cmd_identifier] = STATE(4558), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1234), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1442), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(119), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [aux_sym_cmd_identifier_token38] = ACTIONS(377), - [aux_sym_cmd_identifier_token39] = ACTIONS(379), - [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(407), + [anon_sym_if] = ACTIONS(409), + [anon_sym_match] = ACTIONS(411), [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), + [anon_sym_try] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), @@ -91683,175 +88167,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [120] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7866), - [sym_cmd_identifier] = STATE(4804), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1423), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7661), + [sym_cmd_identifier] = STATE(4558), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1234), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1442), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(120), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [aux_sym_cmd_identifier_token38] = ACTIONS(377), - [aux_sym_cmd_identifier_token39] = ACTIONS(379), - [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(407), + [anon_sym_if] = ACTIONS(409), + [anon_sym_match] = ACTIONS(411), [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), + [anon_sym_try] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), @@ -91859,175 +88343,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [121] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7873), - [sym_cmd_identifier] = STATE(4804), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1423), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7811), + [sym_cmd_identifier] = STATE(4558), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1234), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1442), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(121), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [aux_sym_cmd_identifier_token38] = ACTIONS(377), - [aux_sym_cmd_identifier_token39] = ACTIONS(379), - [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(407), + [anon_sym_if] = ACTIONS(409), + [anon_sym_match] = ACTIONS(411), [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), + [anon_sym_try] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), @@ -92035,175 +88519,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [122] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(8022), - [sym_cmd_identifier] = STATE(4804), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1423), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement] = STATE(5933), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym__block_body] = STATE(7580), + [sym_cmd_identifier] = STATE(4558), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1234), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1442), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), [sym_comment] = STATE(122), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [aux_sym_cmd_identifier_token38] = ACTIONS(377), - [aux_sym_cmd_identifier_token39] = ACTIONS(379), - [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat1] = STATE(94), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(399), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), [sym__newline] = ACTIONS(145), [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(407), + [anon_sym_if] = ACTIONS(409), + [anon_sym_match] = ACTIONS(411), [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), + [anon_sym_try] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), @@ -92211,255 +88695,1461 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [123] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7844), - [sym_cmd_identifier] = STATE(4804), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1423), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), + [sym__block_body_statement_parenthesized] = STATE(5714), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), [sym_comment] = STATE(123), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [aux_sym_cmd_identifier_token38] = ACTIONS(377), - [aux_sym_cmd_identifier_token39] = ACTIONS(379), - [aux_sym_cmd_identifier_token40] = ACTIONS(379), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), + [aux_sym_shebang_repeat1] = STATE(126), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(125), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(677), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(515), + [anon_sym_POUND] = ACTIONS(247), + }, + [124] = { + [sym__block_body_statement_parenthesized] = STATE(5868), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), + [sym_comment] = STATE(124), + [aux_sym_shebang_repeat1] = STATE(128), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(125), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(677), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(515), + [anon_sym_POUND] = ACTIONS(247), + }, + [125] = { + [sym__block_body_statement_parenthesized] = STATE(6457), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), + [sym_comment] = STATE(125), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym__parenthesized_body_repeat2] = STATE(125), + [anon_sym_export] = ACTIONS(679), + [anon_sym_alias] = ACTIONS(682), + [anon_sym_let] = ACTIONS(685), + [anon_sym_let_DASHenv] = ACTIONS(685), + [anon_sym_mut] = ACTIONS(688), + [anon_sym_const] = ACTIONS(691), + [aux_sym_cmd_identifier_token1] = ACTIONS(694), + [aux_sym_cmd_identifier_token2] = ACTIONS(694), + [aux_sym_cmd_identifier_token3] = ACTIONS(694), + [aux_sym_cmd_identifier_token4] = ACTIONS(694), + [aux_sym_cmd_identifier_token5] = ACTIONS(694), + [aux_sym_cmd_identifier_token6] = ACTIONS(694), + [aux_sym_cmd_identifier_token7] = ACTIONS(694), + [aux_sym_cmd_identifier_token8] = ACTIONS(694), + [aux_sym_cmd_identifier_token9] = ACTIONS(694), + [aux_sym_cmd_identifier_token10] = ACTIONS(694), + [aux_sym_cmd_identifier_token11] = ACTIONS(694), + [aux_sym_cmd_identifier_token12] = ACTIONS(694), + [aux_sym_cmd_identifier_token13] = ACTIONS(694), + [aux_sym_cmd_identifier_token14] = ACTIONS(694), + [aux_sym_cmd_identifier_token15] = ACTIONS(694), + [aux_sym_cmd_identifier_token16] = ACTIONS(694), + [aux_sym_cmd_identifier_token17] = ACTIONS(694), + [aux_sym_cmd_identifier_token18] = ACTIONS(694), + [aux_sym_cmd_identifier_token19] = ACTIONS(694), + [aux_sym_cmd_identifier_token20] = ACTIONS(694), + [aux_sym_cmd_identifier_token21] = ACTIONS(694), + [aux_sym_cmd_identifier_token22] = ACTIONS(694), + [aux_sym_cmd_identifier_token23] = ACTIONS(694), + [aux_sym_cmd_identifier_token24] = ACTIONS(697), + [aux_sym_cmd_identifier_token25] = ACTIONS(694), + [aux_sym_cmd_identifier_token26] = ACTIONS(697), + [aux_sym_cmd_identifier_token27] = ACTIONS(694), + [aux_sym_cmd_identifier_token28] = ACTIONS(694), + [aux_sym_cmd_identifier_token29] = ACTIONS(694), + [aux_sym_cmd_identifier_token30] = ACTIONS(694), + [aux_sym_cmd_identifier_token31] = ACTIONS(697), + [aux_sym_cmd_identifier_token32] = ACTIONS(697), + [aux_sym_cmd_identifier_token33] = ACTIONS(697), + [aux_sym_cmd_identifier_token34] = ACTIONS(697), + [aux_sym_cmd_identifier_token35] = ACTIONS(697), + [aux_sym_cmd_identifier_token36] = ACTIONS(694), + [anon_sym_true] = ACTIONS(700), + [anon_sym_false] = ACTIONS(700), + [anon_sym_null] = ACTIONS(703), + [aux_sym_cmd_identifier_token38] = ACTIONS(706), + [aux_sym_cmd_identifier_token39] = ACTIONS(709), + [aux_sym_cmd_identifier_token40] = ACTIONS(709), + [sym__newline] = ACTIONS(712), + [anon_sym_def] = ACTIONS(714), + [anon_sym_export_DASHenv] = ACTIONS(717), + [anon_sym_extern] = ACTIONS(720), + [anon_sym_module] = ACTIONS(723), + [anon_sym_use] = ACTIONS(726), + [anon_sym_LBRACK] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(732), + [anon_sym_DOLLAR] = ACTIONS(735), + [anon_sym_error] = ACTIONS(738), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_break] = ACTIONS(744), + [anon_sym_continue] = ACTIONS(747), + [anon_sym_for] = ACTIONS(750), + [anon_sym_loop] = ACTIONS(753), + [anon_sym_while] = ACTIONS(756), + [anon_sym_do] = ACTIONS(759), + [anon_sym_if] = ACTIONS(762), + [anon_sym_match] = ACTIONS(765), + [aux_sym_ctrl_match_token1] = ACTIONS(768), + [anon_sym_DOT_DOT] = ACTIONS(771), + [anon_sym_try] = ACTIONS(774), + [anon_sym_return] = ACTIONS(777), + [anon_sym_source] = ACTIONS(780), + [anon_sym_source_DASHenv] = ACTIONS(780), + [anon_sym_register] = ACTIONS(783), + [anon_sym_hide] = ACTIONS(786), + [anon_sym_hide_DASHenv] = ACTIONS(789), + [anon_sym_overlay] = ACTIONS(792), + [anon_sym_where] = ACTIONS(795), + [aux_sym_expr_unary_token1] = ACTIONS(798), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [aux_sym__val_number_decimal_token1] = ACTIONS(804), + [aux_sym__val_number_decimal_token2] = ACTIONS(807), + [aux_sym__val_number_decimal_token3] = ACTIONS(810), + [aux_sym__val_number_decimal_token4] = ACTIONS(813), + [aux_sym__val_number_token1] = ACTIONS(816), + [aux_sym__val_number_token2] = ACTIONS(816), + [aux_sym__val_number_token3] = ACTIONS(816), + [anon_sym_0b] = ACTIONS(819), + [anon_sym_0o] = ACTIONS(822), + [anon_sym_0x] = ACTIONS(822), + [sym_val_date] = ACTIONS(825), + [anon_sym_DQUOTE] = ACTIONS(828), + [sym__str_single_quotes] = ACTIONS(831), + [sym__str_back_ticks] = ACTIONS(831), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(834), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(837), + [aux_sym_env_var_token1] = ACTIONS(840), + [anon_sym_CARET] = ACTIONS(843), + [anon_sym_POUND] = ACTIONS(247), + }, + [126] = { + [sym__block_body_statement_parenthesized] = STATE(6239), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), + [sym_comment] = STATE(126), + [aux_sym_shebang_repeat1] = STATE(324), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(677), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(515), + [anon_sym_POUND] = ACTIONS(247), + }, + [127] = { + [sym__block_body_statement_parenthesized] = STATE(6617), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), + [sym_comment] = STATE(127), + [aux_sym_shebang_repeat1] = STATE(324), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(677), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(515), + [anon_sym_POUND] = ACTIONS(247), + }, + [128] = { + [sym__block_body_statement_parenthesized] = STATE(6367), + [sym__declaration_parenthesized] = STATE(6956), + [sym_decl_alias_parenthesized] = STATE(6957), + [sym_stmt_let_parenthesized] = STATE(6982), + [sym_stmt_mut_parenthesized] = STATE(6982), + [sym_stmt_const_parenthesized] = STATE(6982), + [sym_assignment_parenthesized] = STATE(6982), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6987), + [sym__statement_parenthesized] = STATE(6956), + [sym_pipeline_parenthesized] = STATE(6982), + [sym_cmd_identifier] = STATE(4634), + [sym_decl_def] = STATE(6957), + [sym_decl_export] = STATE(6957), + [sym_decl_extern] = STATE(6957), + [sym_decl_module] = STATE(6957), + [sym_decl_use] = STATE(6957), + [sym__ctrl_statement] = STATE(6982), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_stmt_source] = STATE(6982), + [sym_stmt_register] = STATE(6982), + [sym__stmt_hide] = STATE(6982), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6982), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1267), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), + [sym_comment] = STATE(128), + [aux_sym_shebang_repeat1] = STATE(324), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [sym__newline] = ACTIONS(677), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(515), + [anon_sym_POUND] = ACTIONS(247), + }, + [129] = { + [sym__block_body_statement] = STATE(5908), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym_cmd_identifier] = STATE(4558), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1234), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1442), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), + [sym_comment] = STATE(129), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat2] = STATE(133), + [aux_sym_pipe_element_repeat2] = STATE(399), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(407), + [anon_sym_if] = ACTIONS(409), + [anon_sym_match] = ACTIONS(411), [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), + [anon_sym_try] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [124] = { - [sym__block_body_statement] = STATE(6462), - [sym__declaration] = STATE(7073), - [sym_decl_alias] = STATE(7076), - [sym_stmt_let] = STATE(7237), - [sym_stmt_mut] = STATE(7237), - [sym_stmt_const] = STATE(7237), - [sym_assignment] = STATE(7237), - [sym__mutable_assignment_pattern] = STATE(7503), - [sym__statement] = STATE(7073), - [sym_pipeline] = STATE(7237), - [sym_cmd_identifier] = STATE(4982), - [sym_decl_def] = STATE(7076), - [sym_decl_export] = STATE(7076), - [sym_decl_extern] = STATE(7076), - [sym_decl_module] = STATE(7076), - [sym_decl_use] = STATE(7076), - [sym__ctrl_statement] = STATE(7237), - [sym__ctrl_expression] = STATE(5228), - [sym_ctrl_for] = STATE(7092), - [sym_ctrl_loop] = STATE(7092), - [sym_ctrl_error] = STATE(7092), - [sym_ctrl_while] = STATE(7092), - [sym_ctrl_do] = STATE(5219), - [sym_ctrl_if] = STATE(5219), - [sym_ctrl_match] = STATE(5219), - [sym_ctrl_try] = STATE(5219), - [sym_ctrl_return] = STATE(5219), - [sym_pipe_element] = STATE(4861), - [sym_stmt_source] = STATE(7237), - [sym_stmt_register] = STATE(7237), - [sym__stmt_hide] = STATE(7237), - [sym_hide_mod] = STATE(7267), - [sym_hide_env] = STATE(7267), - [sym__stmt_overlay] = STATE(7237), - [sym_overlay_list] = STATE(7140), - [sym_overlay_hide] = STATE(7140), - [sym_overlay_new] = STATE(7140), - [sym_overlay_use] = STATE(7140), - [sym_where_command] = STATE(5254), - [sym__expression] = STATE(4038), - [sym_expr_unary] = STATE(2604), - [sym__expr_unary_minus] = STATE(2610), - [sym_expr_binary] = STATE(2604), - [sym__expr_binary_expression] = STATE(4069), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(4062), - [sym__value] = STATE(2604), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2547), - [sym_val_variable] = STATE(1495), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(1742), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__str_double_quotes] = STATE(2144), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2607), - [sym__inter_double_quotes] = STATE(2626), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5254), - [sym_comment] = STATE(124), - [aux_sym_pipeline_repeat1] = STATE(174), - [aux_sym__block_body_repeat1] = STATE(240), - [aux_sym__block_body_repeat2] = STATE(141), - [aux_sym_pipe_element_repeat2] = STATE(407), - [ts_builtin_sym_end] = ACTIONS(609), + [130] = { + [sym__block_body_statement] = STATE(5997), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym_cmd_identifier] = STATE(4558), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1234), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1442), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), + [sym_comment] = STATE(130), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat2] = STATE(133), + [aux_sym_pipe_element_repeat2] = STATE(399), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(367), + [aux_sym_cmd_identifier_token3] = ACTIONS(367), + [aux_sym_cmd_identifier_token4] = ACTIONS(367), + [aux_sym_cmd_identifier_token5] = ACTIONS(367), + [aux_sym_cmd_identifier_token6] = ACTIONS(367), + [aux_sym_cmd_identifier_token7] = ACTIONS(367), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(367), + [aux_sym_cmd_identifier_token11] = ACTIONS(367), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(367), + [aux_sym_cmd_identifier_token17] = ACTIONS(367), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(367), + [aux_sym_cmd_identifier_token20] = ACTIONS(367), + [aux_sym_cmd_identifier_token21] = ACTIONS(367), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [anon_sym_def] = ACTIONS(379), + [anon_sym_export_DASHenv] = ACTIONS(381), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_module] = ACTIONS(385), + [anon_sym_use] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_error] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_for] = ACTIONS(401), + [anon_sym_loop] = ACTIONS(403), + [anon_sym_while] = ACTIONS(405), + [anon_sym_do] = ACTIONS(407), + [anon_sym_if] = ACTIONS(409), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_source] = ACTIONS(419), + [anon_sym_source_DASHenv] = ACTIONS(419), + [anon_sym_register] = ACTIONS(421), + [anon_sym_hide] = ACTIONS(423), + [anon_sym_hide_DASHenv] = ACTIONS(425), + [anon_sym_overlay] = ACTIONS(427), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + }, + [131] = { + [sym__block_body_statement] = STATE(6347), + [sym__declaration] = STATE(7106), + [sym_decl_alias] = STATE(7107), + [sym_stmt_let] = STATE(7142), + [sym_stmt_mut] = STATE(7142), + [sym_stmt_const] = STATE(7142), + [sym_assignment] = STATE(7142), + [sym__mutable_assignment_pattern] = STATE(6897), + [sym__statement] = STATE(7106), + [sym_pipeline] = STATE(7142), + [sym_cmd_identifier] = STATE(4711), + [sym_decl_def] = STATE(7107), + [sym_decl_export] = STATE(7107), + [sym_decl_extern] = STATE(7107), + [sym_decl_module] = STATE(7107), + [sym_decl_use] = STATE(7107), + [sym__ctrl_statement] = STATE(7142), + [sym__ctrl_expression] = STATE(5052), + [sym_ctrl_for] = STATE(6753), + [sym_ctrl_loop] = STATE(6753), + [sym_ctrl_error] = STATE(6753), + [sym_ctrl_while] = STATE(6753), + [sym_ctrl_do] = STATE(5084), + [sym_ctrl_if] = STATE(5084), + [sym_ctrl_match] = STATE(5084), + [sym_ctrl_try] = STATE(5084), + [sym_ctrl_return] = STATE(5084), + [sym_pipe_element] = STATE(4679), + [sym_stmt_source] = STATE(7142), + [sym_stmt_register] = STATE(7142), + [sym__stmt_hide] = STATE(7142), + [sym_hide_mod] = STATE(6904), + [sym_hide_env] = STATE(6904), + [sym__stmt_overlay] = STATE(7142), + [sym_overlay_list] = STATE(7001), + [sym_overlay_hide] = STATE(7001), + [sym_overlay_new] = STATE(7001), + [sym_overlay_use] = STATE(7001), + [sym_where_command] = STATE(4956), + [sym__expression] = STATE(3760), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2398), + [sym_expr_binary] = STATE(2381), + [sym__expr_binary_expression] = STATE(3781), + [sym_expr_parenthesized] = STATE(1971), + [sym_val_range] = STATE(3771), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2348), + [sym_val_bool] = STATE(2348), + [sym_val_variable] = STATE(1271), + [sym_val_number] = STATE(2348), + [sym__val_number_decimal] = STATE(1497), + [sym__val_number] = STATE(2401), + [sym_val_duration] = STATE(2348), + [sym_val_filesize] = STATE(2348), + [sym_val_binary] = STATE(2348), + [sym_val_string] = STATE(2348), + [sym__str_double_quotes] = STATE(1984), + [sym_val_interpolated] = STATE(2348), + [sym__inter_single_quotes] = STATE(2404), + [sym__inter_double_quotes] = STATE(2407), + [sym_val_list] = STATE(2348), + [sym_val_record] = STATE(2348), + [sym_val_table] = STATE(2348), + [sym_val_closure] = STATE(2348), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4956), + [sym_comment] = STATE(131), + [aux_sym_pipeline_repeat1] = STATE(163), + [aux_sym__block_body_repeat2] = STATE(133), + [aux_sym_pipe_element_repeat2] = STATE(406), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -92508,8 +90198,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(27), [aux_sym_cmd_identifier_token39] = ACTIONS(29), [aux_sym_cmd_identifier_token40] = ACTIONS(29), - [sym__newline] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(33), [anon_sym_def] = ACTIONS(35), [anon_sym_export_DASHenv] = ACTIONS(37), [anon_sym_extern] = ACTIONS(39), @@ -92562,2862 +90250,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(121), [anon_sym_POUND] = ACTIONS(247), }, - [125] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7746), - [sym_cmd_identifier] = STATE(4804), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1423), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), - [sym_comment] = STATE(125), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [aux_sym_cmd_identifier_token38] = ACTIONS(377), - [aux_sym_cmd_identifier_token39] = ACTIONS(379), - [aux_sym_cmd_identifier_token40] = ACTIONS(379), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - }, - [126] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7906), - [sym_cmd_identifier] = STATE(4804), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1423), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), - [sym_comment] = STATE(126), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [aux_sym_cmd_identifier_token38] = ACTIONS(377), - [aux_sym_cmd_identifier_token39] = ACTIONS(379), - [aux_sym_cmd_identifier_token40] = ACTIONS(379), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - }, - [127] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7831), - [sym_cmd_identifier] = STATE(4804), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1423), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), - [sym_comment] = STATE(127), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [aux_sym_cmd_identifier_token38] = ACTIONS(377), - [aux_sym_cmd_identifier_token39] = ACTIONS(379), - [aux_sym_cmd_identifier_token40] = ACTIONS(379), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - }, - [128] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7884), - [sym_cmd_identifier] = STATE(4804), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1423), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), - [sym_comment] = STATE(128), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [aux_sym_cmd_identifier_token38] = ACTIONS(377), - [aux_sym_cmd_identifier_token39] = ACTIONS(379), - [aux_sym_cmd_identifier_token40] = ACTIONS(379), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - }, - [129] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7923), - [sym_cmd_identifier] = STATE(4804), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1423), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), - [sym_comment] = STATE(129), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [aux_sym_cmd_identifier_token38] = ACTIONS(377), - [aux_sym_cmd_identifier_token39] = ACTIONS(379), - [aux_sym_cmd_identifier_token40] = ACTIONS(379), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - }, - [130] = { - [sym__block_body_statement] = STATE(6381), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym__block_body] = STATE(7903), - [sym_cmd_identifier] = STATE(4804), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1423), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), - [sym_comment] = STATE(130), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(408), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [aux_sym_cmd_identifier_token38] = ACTIONS(377), - [aux_sym_cmd_identifier_token39] = ACTIONS(379), - [aux_sym_cmd_identifier_token40] = ACTIONS(379), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - }, - [131] = { - [sym__block_body_statement_parenthesized] = STATE(6081), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), - [sym_comment] = STATE(131), - [aux_sym_shebang_repeat1] = STATE(135), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(133), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(611), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), - }, [132] = { - [sym__block_body_statement_parenthesized] = STATE(6016), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), + [sym__block_body_statement] = STATE(6639), + [sym__declaration] = STATE(7106), + [sym_decl_alias] = STATE(7107), + [sym_stmt_let] = STATE(7142), + [sym_stmt_mut] = STATE(7142), + [sym_stmt_const] = STATE(7142), + [sym_assignment] = STATE(7142), + [sym__mutable_assignment_pattern] = STATE(6897), + [sym__statement] = STATE(7106), + [sym_pipeline] = STATE(7142), + [sym_cmd_identifier] = STATE(4711), + [sym_decl_def] = STATE(7107), + [sym_decl_export] = STATE(7107), + [sym_decl_extern] = STATE(7107), + [sym_decl_module] = STATE(7107), + [sym_decl_use] = STATE(7107), + [sym__ctrl_statement] = STATE(7142), + [sym__ctrl_expression] = STATE(5052), + [sym_ctrl_for] = STATE(6753), + [sym_ctrl_loop] = STATE(6753), + [sym_ctrl_error] = STATE(6753), + [sym_ctrl_while] = STATE(6753), + [sym_ctrl_do] = STATE(5084), + [sym_ctrl_if] = STATE(5084), + [sym_ctrl_match] = STATE(5084), + [sym_ctrl_try] = STATE(5084), + [sym_ctrl_return] = STATE(5084), + [sym_pipe_element] = STATE(4679), + [sym_stmt_source] = STATE(7142), + [sym_stmt_register] = STATE(7142), + [sym__stmt_hide] = STATE(7142), + [sym_hide_mod] = STATE(6904), + [sym_hide_env] = STATE(6904), + [sym__stmt_overlay] = STATE(7142), + [sym_overlay_list] = STATE(7001), + [sym_overlay_hide] = STATE(7001), + [sym_overlay_new] = STATE(7001), + [sym_overlay_use] = STATE(7001), + [sym_where_command] = STATE(4956), + [sym__expression] = STATE(3760), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2398), + [sym_expr_binary] = STATE(2381), + [sym__expr_binary_expression] = STATE(3781), + [sym_expr_parenthesized] = STATE(1971), + [sym_val_range] = STATE(3771), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2348), + [sym_val_bool] = STATE(2348), + [sym_val_variable] = STATE(1271), + [sym_val_number] = STATE(2348), + [sym__val_number_decimal] = STATE(1497), + [sym__val_number] = STATE(2401), + [sym_val_duration] = STATE(2348), + [sym_val_filesize] = STATE(2348), + [sym_val_binary] = STATE(2348), + [sym_val_string] = STATE(2348), + [sym__str_double_quotes] = STATE(1984), + [sym_val_interpolated] = STATE(2348), + [sym__inter_single_quotes] = STATE(2404), + [sym__inter_double_quotes] = STATE(2407), + [sym_val_list] = STATE(2348), + [sym_val_record] = STATE(2348), + [sym_val_table] = STATE(2348), + [sym_val_closure] = STATE(2348), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4956), [sym_comment] = STATE(132), - [aux_sym_shebang_repeat1] = STATE(134), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(133), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(611), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), - }, - [133] = { - [sym__block_body_statement_parenthesized] = STATE(6833), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), - [sym_comment] = STATE(133), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym__parenthesized_body_repeat2] = STATE(133), - [anon_sym_export] = ACTIONS(613), - [anon_sym_alias] = ACTIONS(616), - [anon_sym_let] = ACTIONS(619), - [anon_sym_let_DASHenv] = ACTIONS(619), - [anon_sym_mut] = ACTIONS(622), - [anon_sym_const] = ACTIONS(625), - [aux_sym_cmd_identifier_token1] = ACTIONS(628), - [aux_sym_cmd_identifier_token2] = ACTIONS(628), - [aux_sym_cmd_identifier_token3] = ACTIONS(628), - [aux_sym_cmd_identifier_token4] = ACTIONS(628), - [aux_sym_cmd_identifier_token5] = ACTIONS(628), - [aux_sym_cmd_identifier_token6] = ACTIONS(628), - [aux_sym_cmd_identifier_token7] = ACTIONS(628), - [aux_sym_cmd_identifier_token8] = ACTIONS(628), - [aux_sym_cmd_identifier_token9] = ACTIONS(628), - [aux_sym_cmd_identifier_token10] = ACTIONS(628), - [aux_sym_cmd_identifier_token11] = ACTIONS(628), - [aux_sym_cmd_identifier_token12] = ACTIONS(628), - [aux_sym_cmd_identifier_token13] = ACTIONS(628), - [aux_sym_cmd_identifier_token14] = ACTIONS(628), - [aux_sym_cmd_identifier_token15] = ACTIONS(628), - [aux_sym_cmd_identifier_token16] = ACTIONS(628), - [aux_sym_cmd_identifier_token17] = ACTIONS(628), - [aux_sym_cmd_identifier_token18] = ACTIONS(628), - [aux_sym_cmd_identifier_token19] = ACTIONS(628), - [aux_sym_cmd_identifier_token20] = ACTIONS(628), - [aux_sym_cmd_identifier_token21] = ACTIONS(628), - [aux_sym_cmd_identifier_token22] = ACTIONS(628), - [aux_sym_cmd_identifier_token23] = ACTIONS(628), - [aux_sym_cmd_identifier_token24] = ACTIONS(631), - [aux_sym_cmd_identifier_token25] = ACTIONS(628), - [aux_sym_cmd_identifier_token26] = ACTIONS(631), - [aux_sym_cmd_identifier_token27] = ACTIONS(628), - [aux_sym_cmd_identifier_token28] = ACTIONS(628), - [aux_sym_cmd_identifier_token29] = ACTIONS(628), - [aux_sym_cmd_identifier_token30] = ACTIONS(628), - [aux_sym_cmd_identifier_token31] = ACTIONS(631), - [aux_sym_cmd_identifier_token32] = ACTIONS(631), - [aux_sym_cmd_identifier_token33] = ACTIONS(631), - [aux_sym_cmd_identifier_token34] = ACTIONS(631), - [aux_sym_cmd_identifier_token35] = ACTIONS(631), - [aux_sym_cmd_identifier_token36] = ACTIONS(628), - [anon_sym_true] = ACTIONS(634), - [anon_sym_false] = ACTIONS(634), - [anon_sym_null] = ACTIONS(637), - [aux_sym_cmd_identifier_token38] = ACTIONS(640), - [aux_sym_cmd_identifier_token39] = ACTIONS(643), - [aux_sym_cmd_identifier_token40] = ACTIONS(643), - [sym__newline] = ACTIONS(646), - [anon_sym_def] = ACTIONS(648), - [anon_sym_export_DASHenv] = ACTIONS(651), - [anon_sym_extern] = ACTIONS(654), - [anon_sym_module] = ACTIONS(657), - [anon_sym_use] = ACTIONS(660), - [anon_sym_LBRACK] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_DOLLAR] = ACTIONS(669), - [anon_sym_error] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_break] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(681), - [anon_sym_for] = ACTIONS(684), - [anon_sym_loop] = ACTIONS(687), - [anon_sym_while] = ACTIONS(690), - [anon_sym_do] = ACTIONS(693), - [anon_sym_if] = ACTIONS(696), - [anon_sym_match] = ACTIONS(699), - [aux_sym_ctrl_match_token1] = ACTIONS(702), - [anon_sym_DOT_DOT] = ACTIONS(705), - [anon_sym_try] = ACTIONS(708), - [anon_sym_return] = ACTIONS(711), - [anon_sym_source] = ACTIONS(714), - [anon_sym_source_DASHenv] = ACTIONS(714), - [anon_sym_register] = ACTIONS(717), - [anon_sym_hide] = ACTIONS(720), - [anon_sym_hide_DASHenv] = ACTIONS(723), - [anon_sym_overlay] = ACTIONS(726), - [anon_sym_where] = ACTIONS(729), - [aux_sym_expr_unary_token1] = ACTIONS(732), - [anon_sym_DOT_DOT_EQ] = ACTIONS(735), - [anon_sym_DOT_DOT_LT] = ACTIONS(735), - [aux_sym__val_number_decimal_token1] = ACTIONS(738), - [aux_sym__val_number_decimal_token2] = ACTIONS(741), - [aux_sym__val_number_decimal_token3] = ACTIONS(744), - [aux_sym__val_number_decimal_token4] = ACTIONS(747), - [aux_sym__val_number_token1] = ACTIONS(750), - [aux_sym__val_number_token2] = ACTIONS(750), - [aux_sym__val_number_token3] = ACTIONS(750), - [anon_sym_0b] = ACTIONS(753), - [anon_sym_0o] = ACTIONS(756), - [anon_sym_0x] = ACTIONS(756), - [sym_val_date] = ACTIONS(759), - [anon_sym_DQUOTE] = ACTIONS(762), - [sym__str_single_quotes] = ACTIONS(765), - [sym__str_back_ticks] = ACTIONS(765), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(768), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(771), - [aux_sym_env_var_token1] = ACTIONS(774), - [anon_sym_CARET] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(247), - }, - [134] = { - [sym__block_body_statement_parenthesized] = STATE(6859), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), - [sym_comment] = STATE(134), - [aux_sym_shebang_repeat1] = STATE(301), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(611), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), - }, - [135] = { - [sym__block_body_statement_parenthesized] = STATE(6484), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), - [sym_comment] = STATE(135), - [aux_sym_shebang_repeat1] = STATE(301), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(611), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), - }, - [136] = { - [sym__block_body_statement_parenthesized] = STATE(6835), - [sym__declaration_parenthesized] = STATE(7223), - [sym_decl_alias_parenthesized] = STATE(7228), - [sym_stmt_let_parenthesized] = STATE(7262), - [sym_stmt_mut_parenthesized] = STATE(7262), - [sym_stmt_const_parenthesized] = STATE(7262), - [sym_assignment_parenthesized] = STATE(7262), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6956), - [sym__statement_parenthesized] = STATE(7223), - [sym_pipeline_parenthesized] = STATE(7262), - [sym_cmd_identifier] = STATE(4953), - [sym_decl_def] = STATE(7228), - [sym_decl_export] = STATE(7228), - [sym_decl_extern] = STATE(7228), - [sym_decl_module] = STATE(7228), - [sym_decl_use] = STATE(7228), - [sym__ctrl_statement] = STATE(7262), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_stmt_source] = STATE(7262), - [sym_stmt_register] = STATE(7262), - [sym__stmt_hide] = STATE(7262), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(7262), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(1450), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), - [sym_comment] = STATE(136), - [aux_sym_shebang_repeat1] = STATE(301), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(611), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), - }, - [137] = { - [sym__block_body_statement] = STATE(6206), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym_cmd_identifier] = STATE(4804), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1423), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), - [sym_comment] = STATE(137), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat2] = STATE(138), - [aux_sym_pipe_element_repeat2] = STATE(408), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [aux_sym_cmd_identifier_token38] = ACTIONS(377), - [aux_sym_cmd_identifier_token39] = ACTIONS(379), - [aux_sym_cmd_identifier_token40] = ACTIONS(379), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - }, - [138] = { - [sym__block_body_statement] = STATE(7356), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym_cmd_identifier] = STATE(4804), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1423), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), - [sym_comment] = STATE(138), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat2] = STATE(138), - [aux_sym_pipe_element_repeat2] = STATE(408), - [anon_sym_export] = ACTIONS(780), - [anon_sym_alias] = ACTIONS(783), - [anon_sym_let] = ACTIONS(786), - [anon_sym_let_DASHenv] = ACTIONS(786), - [anon_sym_mut] = ACTIONS(789), - [anon_sym_const] = ACTIONS(792), - [aux_sym_cmd_identifier_token1] = ACTIONS(795), - [aux_sym_cmd_identifier_token2] = ACTIONS(795), - [aux_sym_cmd_identifier_token3] = ACTIONS(795), - [aux_sym_cmd_identifier_token4] = ACTIONS(795), - [aux_sym_cmd_identifier_token5] = ACTIONS(795), - [aux_sym_cmd_identifier_token6] = ACTIONS(795), - [aux_sym_cmd_identifier_token7] = ACTIONS(795), - [aux_sym_cmd_identifier_token8] = ACTIONS(795), - [aux_sym_cmd_identifier_token9] = ACTIONS(795), - [aux_sym_cmd_identifier_token10] = ACTIONS(795), - [aux_sym_cmd_identifier_token11] = ACTIONS(795), - [aux_sym_cmd_identifier_token12] = ACTIONS(795), - [aux_sym_cmd_identifier_token13] = ACTIONS(795), - [aux_sym_cmd_identifier_token14] = ACTIONS(795), - [aux_sym_cmd_identifier_token15] = ACTIONS(795), - [aux_sym_cmd_identifier_token16] = ACTIONS(795), - [aux_sym_cmd_identifier_token17] = ACTIONS(795), - [aux_sym_cmd_identifier_token18] = ACTIONS(795), - [aux_sym_cmd_identifier_token19] = ACTIONS(795), - [aux_sym_cmd_identifier_token20] = ACTIONS(795), - [aux_sym_cmd_identifier_token21] = ACTIONS(795), - [aux_sym_cmd_identifier_token22] = ACTIONS(795), - [aux_sym_cmd_identifier_token23] = ACTIONS(795), - [aux_sym_cmd_identifier_token24] = ACTIONS(798), - [aux_sym_cmd_identifier_token25] = ACTIONS(795), - [aux_sym_cmd_identifier_token26] = ACTIONS(798), - [aux_sym_cmd_identifier_token27] = ACTIONS(795), - [aux_sym_cmd_identifier_token28] = ACTIONS(795), - [aux_sym_cmd_identifier_token29] = ACTIONS(795), - [aux_sym_cmd_identifier_token30] = ACTIONS(795), - [aux_sym_cmd_identifier_token31] = ACTIONS(798), - [aux_sym_cmd_identifier_token32] = ACTIONS(798), - [aux_sym_cmd_identifier_token33] = ACTIONS(798), - [aux_sym_cmd_identifier_token34] = ACTIONS(798), - [aux_sym_cmd_identifier_token35] = ACTIONS(798), - [aux_sym_cmd_identifier_token36] = ACTIONS(795), - [anon_sym_true] = ACTIONS(801), - [anon_sym_false] = ACTIONS(801), - [anon_sym_null] = ACTIONS(804), - [aux_sym_cmd_identifier_token38] = ACTIONS(807), - [aux_sym_cmd_identifier_token39] = ACTIONS(810), - [aux_sym_cmd_identifier_token40] = ACTIONS(810), - [anon_sym_def] = ACTIONS(813), - [anon_sym_export_DASHenv] = ACTIONS(816), - [anon_sym_extern] = ACTIONS(819), - [anon_sym_module] = ACTIONS(822), - [anon_sym_use] = ACTIONS(825), - [anon_sym_LBRACK] = ACTIONS(828), - [anon_sym_LPAREN] = ACTIONS(831), - [anon_sym_DOLLAR] = ACTIONS(834), - [anon_sym_error] = ACTIONS(837), - [anon_sym_DASH] = ACTIONS(840), - [anon_sym_break] = ACTIONS(843), - [anon_sym_continue] = ACTIONS(846), - [anon_sym_for] = ACTIONS(849), - [anon_sym_loop] = ACTIONS(852), - [anon_sym_while] = ACTIONS(855), - [anon_sym_do] = ACTIONS(858), - [anon_sym_if] = ACTIONS(861), - [anon_sym_match] = ACTIONS(864), - [aux_sym_ctrl_match_token1] = ACTIONS(867), - [anon_sym_DOT_DOT] = ACTIONS(870), - [anon_sym_try] = ACTIONS(873), - [anon_sym_return] = ACTIONS(876), - [anon_sym_source] = ACTIONS(879), - [anon_sym_source_DASHenv] = ACTIONS(879), - [anon_sym_register] = ACTIONS(882), - [anon_sym_hide] = ACTIONS(885), - [anon_sym_hide_DASHenv] = ACTIONS(888), - [anon_sym_overlay] = ACTIONS(891), - [anon_sym_where] = ACTIONS(894), - [aux_sym_expr_unary_token1] = ACTIONS(897), - [anon_sym_DOT_DOT_EQ] = ACTIONS(900), - [anon_sym_DOT_DOT_LT] = ACTIONS(900), - [aux_sym__val_number_decimal_token1] = ACTIONS(903), - [aux_sym__val_number_decimal_token2] = ACTIONS(906), - [aux_sym__val_number_decimal_token3] = ACTIONS(909), - [aux_sym__val_number_decimal_token4] = ACTIONS(912), - [aux_sym__val_number_token1] = ACTIONS(915), - [aux_sym__val_number_token2] = ACTIONS(915), - [aux_sym__val_number_token3] = ACTIONS(915), - [anon_sym_0b] = ACTIONS(918), - [anon_sym_0o] = ACTIONS(921), - [anon_sym_0x] = ACTIONS(921), - [sym_val_date] = ACTIONS(924), - [anon_sym_DQUOTE] = ACTIONS(927), - [sym__str_single_quotes] = ACTIONS(930), - [sym__str_back_ticks] = ACTIONS(930), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(933), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(936), - [aux_sym_env_var_token1] = ACTIONS(939), - [anon_sym_CARET] = ACTIONS(942), - [anon_sym_POUND] = ACTIONS(247), - }, - [139] = { - [sym__block_body_statement] = STATE(6462), - [sym__declaration] = STATE(7073), - [sym_decl_alias] = STATE(7076), - [sym_stmt_let] = STATE(7237), - [sym_stmt_mut] = STATE(7237), - [sym_stmt_const] = STATE(7237), - [sym_assignment] = STATE(7237), - [sym__mutable_assignment_pattern] = STATE(7503), - [sym__statement] = STATE(7073), - [sym_pipeline] = STATE(7237), - [sym_cmd_identifier] = STATE(4982), - [sym_decl_def] = STATE(7076), - [sym_decl_export] = STATE(7076), - [sym_decl_extern] = STATE(7076), - [sym_decl_module] = STATE(7076), - [sym_decl_use] = STATE(7076), - [sym__ctrl_statement] = STATE(7237), - [sym__ctrl_expression] = STATE(5228), - [sym_ctrl_for] = STATE(7092), - [sym_ctrl_loop] = STATE(7092), - [sym_ctrl_error] = STATE(7092), - [sym_ctrl_while] = STATE(7092), - [sym_ctrl_do] = STATE(5219), - [sym_ctrl_if] = STATE(5219), - [sym_ctrl_match] = STATE(5219), - [sym_ctrl_try] = STATE(5219), - [sym_ctrl_return] = STATE(5219), - [sym_pipe_element] = STATE(4861), - [sym_stmt_source] = STATE(7237), - [sym_stmt_register] = STATE(7237), - [sym__stmt_hide] = STATE(7237), - [sym_hide_mod] = STATE(7267), - [sym_hide_env] = STATE(7267), - [sym__stmt_overlay] = STATE(7237), - [sym_overlay_list] = STATE(7140), - [sym_overlay_hide] = STATE(7140), - [sym_overlay_new] = STATE(7140), - [sym_overlay_use] = STATE(7140), - [sym_where_command] = STATE(5254), - [sym__expression] = STATE(4038), - [sym_expr_unary] = STATE(2604), - [sym__expr_unary_minus] = STATE(2610), - [sym_expr_binary] = STATE(2604), - [sym__expr_binary_expression] = STATE(4069), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(4062), - [sym__value] = STATE(2604), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2547), - [sym_val_variable] = STATE(1495), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(1742), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__str_double_quotes] = STATE(2144), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2607), - [sym__inter_double_quotes] = STATE(2626), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5254), - [sym_comment] = STATE(139), - [aux_sym_pipeline_repeat1] = STATE(174), - [aux_sym__block_body_repeat2] = STATE(138), - [aux_sym_pipe_element_repeat2] = STATE(407), - [anon_sym_export] = ACTIONS(9), - [anon_sym_alias] = ACTIONS(11), - [anon_sym_let] = ACTIONS(13), - [anon_sym_let_DASHenv] = ACTIONS(13), - [anon_sym_mut] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(19), - [aux_sym_cmd_identifier_token3] = ACTIONS(19), - [aux_sym_cmd_identifier_token4] = ACTIONS(19), - [aux_sym_cmd_identifier_token5] = ACTIONS(19), - [aux_sym_cmd_identifier_token6] = ACTIONS(19), - [aux_sym_cmd_identifier_token7] = ACTIONS(19), - [aux_sym_cmd_identifier_token8] = ACTIONS(19), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(19), - [aux_sym_cmd_identifier_token11] = ACTIONS(19), - [aux_sym_cmd_identifier_token12] = ACTIONS(19), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(19), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(19), - [aux_sym_cmd_identifier_token17] = ACTIONS(19), - [aux_sym_cmd_identifier_token18] = ACTIONS(19), - [aux_sym_cmd_identifier_token19] = ACTIONS(19), - [aux_sym_cmd_identifier_token20] = ACTIONS(19), - [aux_sym_cmd_identifier_token21] = ACTIONS(19), - [aux_sym_cmd_identifier_token22] = ACTIONS(19), - [aux_sym_cmd_identifier_token23] = ACTIONS(19), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(19), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(19), - [aux_sym_cmd_identifier_token28] = ACTIONS(19), - [aux_sym_cmd_identifier_token29] = ACTIONS(19), - [aux_sym_cmd_identifier_token30] = ACTIONS(19), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(21), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(21), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(19), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_null] = ACTIONS(25), - [aux_sym_cmd_identifier_token38] = ACTIONS(27), - [aux_sym_cmd_identifier_token39] = ACTIONS(29), - [aux_sym_cmd_identifier_token40] = ACTIONS(29), - [anon_sym_def] = ACTIONS(35), - [anon_sym_export_DASHenv] = ACTIONS(37), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_module] = ACTIONS(41), - [anon_sym_use] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(49), - [anon_sym_error] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_if] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(73), - [anon_sym_try] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_source] = ACTIONS(79), - [anon_sym_source_DASHenv] = ACTIONS(79), - [anon_sym_register] = ACTIONS(81), - [anon_sym_hide] = ACTIONS(83), - [anon_sym_hide_DASHenv] = ACTIONS(85), - [anon_sym_overlay] = ACTIONS(87), - [anon_sym_where] = ACTIONS(89), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(93), - [anon_sym_DOT_DOT_LT] = ACTIONS(93), - [aux_sym__val_number_decimal_token1] = ACTIONS(95), - [aux_sym__val_number_decimal_token2] = ACTIONS(97), - [aux_sym__val_number_decimal_token3] = ACTIONS(99), - [aux_sym__val_number_decimal_token4] = ACTIONS(101), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(109), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(247), - }, - [140] = { - [sym__block_body_statement] = STATE(6244), - [sym__declaration] = STATE(6936), - [sym_decl_alias] = STATE(6938), - [sym_stmt_let] = STATE(6939), - [sym_stmt_mut] = STATE(6939), - [sym_stmt_const] = STATE(6939), - [sym_assignment] = STATE(6939), - [sym__mutable_assignment_pattern] = STATE(6940), - [sym__statement] = STATE(6936), - [sym_pipeline] = STATE(6939), - [sym_cmd_identifier] = STATE(4804), - [sym_decl_def] = STATE(6938), - [sym_decl_export] = STATE(6938), - [sym_decl_extern] = STATE(6938), - [sym_decl_module] = STATE(6938), - [sym_decl_use] = STATE(6938), - [sym__ctrl_statement] = STATE(6939), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_for] = STATE(6688), - [sym_ctrl_loop] = STATE(6688), - [sym_ctrl_error] = STATE(6688), - [sym_ctrl_while] = STATE(6688), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_stmt_source] = STATE(6939), - [sym_stmt_register] = STATE(6939), - [sym__stmt_hide] = STATE(6939), - [sym_hide_mod] = STATE(6454), - [sym_hide_env] = STATE(6454), - [sym__stmt_overlay] = STATE(6939), - [sym_overlay_list] = STATE(6483), - [sym_overlay_hide] = STATE(6483), - [sym_overlay_new] = STATE(6483), - [sym_overlay_use] = STATE(6483), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1423), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), - [sym_comment] = STATE(140), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym__block_body_repeat2] = STATE(138), - [aux_sym_pipe_element_repeat2] = STATE(408), - [anon_sym_export] = ACTIONS(359), - [anon_sym_alias] = ACTIONS(361), - [anon_sym_let] = ACTIONS(363), - [anon_sym_let_DASHenv] = ACTIONS(363), - [anon_sym_mut] = ACTIONS(365), - [anon_sym_const] = ACTIONS(367), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [aux_sym_cmd_identifier_token38] = ACTIONS(377), - [aux_sym_cmd_identifier_token39] = ACTIONS(379), - [aux_sym_cmd_identifier_token40] = ACTIONS(379), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - }, - [141] = { - [sym__block_body_statement] = STATE(6843), - [sym__declaration] = STATE(7073), - [sym_decl_alias] = STATE(7076), - [sym_stmt_let] = STATE(7237), - [sym_stmt_mut] = STATE(7237), - [sym_stmt_const] = STATE(7237), - [sym_assignment] = STATE(7237), - [sym__mutable_assignment_pattern] = STATE(7503), - [sym__statement] = STATE(7073), - [sym_pipeline] = STATE(7237), - [sym_cmd_identifier] = STATE(4982), - [sym_decl_def] = STATE(7076), - [sym_decl_export] = STATE(7076), - [sym_decl_extern] = STATE(7076), - [sym_decl_module] = STATE(7076), - [sym_decl_use] = STATE(7076), - [sym__ctrl_statement] = STATE(7237), - [sym__ctrl_expression] = STATE(5228), - [sym_ctrl_for] = STATE(7092), - [sym_ctrl_loop] = STATE(7092), - [sym_ctrl_error] = STATE(7092), - [sym_ctrl_while] = STATE(7092), - [sym_ctrl_do] = STATE(5219), - [sym_ctrl_if] = STATE(5219), - [sym_ctrl_match] = STATE(5219), - [sym_ctrl_try] = STATE(5219), - [sym_ctrl_return] = STATE(5219), - [sym_pipe_element] = STATE(4861), - [sym_stmt_source] = STATE(7237), - [sym_stmt_register] = STATE(7237), - [sym__stmt_hide] = STATE(7237), - [sym_hide_mod] = STATE(7267), - [sym_hide_env] = STATE(7267), - [sym__stmt_overlay] = STATE(7237), - [sym_overlay_list] = STATE(7140), - [sym_overlay_hide] = STATE(7140), - [sym_overlay_new] = STATE(7140), - [sym_overlay_use] = STATE(7140), - [sym_where_command] = STATE(5254), - [sym__expression] = STATE(4038), - [sym_expr_unary] = STATE(2604), - [sym__expr_unary_minus] = STATE(2610), - [sym_expr_binary] = STATE(2604), - [sym__expr_binary_expression] = STATE(4069), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(4062), - [sym__value] = STATE(2604), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2547), - [sym_val_variable] = STATE(1495), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(1742), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__str_double_quotes] = STATE(2144), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2607), - [sym__inter_double_quotes] = STATE(2626), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5254), - [sym_comment] = STATE(141), - [aux_sym_pipeline_repeat1] = STATE(174), - [aux_sym__block_body_repeat2] = STATE(138), - [aux_sym_pipe_element_repeat2] = STATE(407), + [aux_sym_pipeline_repeat1] = STATE(163), + [aux_sym__block_body_repeat2] = STATE(133), + [aux_sym_pipe_element_repeat2] = STATE(406), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -95518,2011 +90422,519 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(121), [anon_sym_POUND] = ACTIONS(247), }, - [142] = { - [sym_cell_path] = STATE(154), - [sym_path] = STATE(152), - [sym_comment] = STATE(142), - [aux_sym_cell_path_repeat1] = STATE(143), - [anon_sym_export] = ACTIONS(945), - [anon_sym_alias] = ACTIONS(945), - [anon_sym_EQ] = ACTIONS(945), - [anon_sym_let] = ACTIONS(945), - [anon_sym_let_DASHenv] = ACTIONS(945), - [anon_sym_mut] = ACTIONS(945), - [anon_sym_const] = ACTIONS(945), - [anon_sym_PLUS_EQ] = ACTIONS(947), - [anon_sym_DASH_EQ] = ACTIONS(947), - [anon_sym_STAR_EQ] = ACTIONS(947), - [anon_sym_SLASH_EQ] = ACTIONS(947), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(947), - [aux_sym_cmd_identifier_token1] = ACTIONS(945), - [aux_sym_cmd_identifier_token2] = ACTIONS(945), - [aux_sym_cmd_identifier_token3] = ACTIONS(945), - [aux_sym_cmd_identifier_token4] = ACTIONS(945), - [aux_sym_cmd_identifier_token5] = ACTIONS(945), - [aux_sym_cmd_identifier_token6] = ACTIONS(945), - [aux_sym_cmd_identifier_token7] = ACTIONS(945), - [aux_sym_cmd_identifier_token8] = ACTIONS(945), - [aux_sym_cmd_identifier_token9] = ACTIONS(945), - [aux_sym_cmd_identifier_token10] = ACTIONS(945), - [aux_sym_cmd_identifier_token11] = ACTIONS(945), - [aux_sym_cmd_identifier_token12] = ACTIONS(945), - [aux_sym_cmd_identifier_token13] = ACTIONS(945), - [aux_sym_cmd_identifier_token14] = ACTIONS(945), - [aux_sym_cmd_identifier_token15] = ACTIONS(945), - [aux_sym_cmd_identifier_token16] = ACTIONS(945), - [aux_sym_cmd_identifier_token17] = ACTIONS(945), - [aux_sym_cmd_identifier_token18] = ACTIONS(945), - [aux_sym_cmd_identifier_token19] = ACTIONS(945), - [aux_sym_cmd_identifier_token20] = ACTIONS(945), - [aux_sym_cmd_identifier_token21] = ACTIONS(945), - [aux_sym_cmd_identifier_token22] = ACTIONS(945), - [aux_sym_cmd_identifier_token23] = ACTIONS(945), - [aux_sym_cmd_identifier_token24] = ACTIONS(945), - [aux_sym_cmd_identifier_token25] = ACTIONS(945), - [aux_sym_cmd_identifier_token26] = ACTIONS(945), - [aux_sym_cmd_identifier_token27] = ACTIONS(945), - [aux_sym_cmd_identifier_token28] = ACTIONS(945), - [aux_sym_cmd_identifier_token29] = ACTIONS(945), - [aux_sym_cmd_identifier_token30] = ACTIONS(945), - [aux_sym_cmd_identifier_token31] = ACTIONS(945), - [aux_sym_cmd_identifier_token32] = ACTIONS(945), - [aux_sym_cmd_identifier_token33] = ACTIONS(945), - [aux_sym_cmd_identifier_token34] = ACTIONS(945), - [aux_sym_cmd_identifier_token35] = ACTIONS(945), - [aux_sym_cmd_identifier_token36] = ACTIONS(945), - [anon_sym_true] = ACTIONS(947), - [anon_sym_false] = ACTIONS(947), - [anon_sym_null] = ACTIONS(947), - [aux_sym_cmd_identifier_token38] = ACTIONS(945), - [aux_sym_cmd_identifier_token39] = ACTIONS(947), - [aux_sym_cmd_identifier_token40] = ACTIONS(947), - [sym__newline] = ACTIONS(945), - [anon_sym_SEMI] = ACTIONS(947), - [anon_sym_PIPE] = ACTIONS(947), - [anon_sym_err_GT_PIPE] = ACTIONS(947), - [anon_sym_out_GT_PIPE] = ACTIONS(947), - [anon_sym_e_GT_PIPE] = ACTIONS(947), - [anon_sym_o_GT_PIPE] = ACTIONS(947), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(947), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(947), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(947), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(947), - [anon_sym_def] = ACTIONS(945), - [anon_sym_export_DASHenv] = ACTIONS(945), - [anon_sym_extern] = ACTIONS(945), - [anon_sym_module] = ACTIONS(945), - [anon_sym_use] = ACTIONS(945), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_COMMA] = ACTIONS(947), - [anon_sym_DOLLAR] = ACTIONS(947), - [anon_sym_error] = ACTIONS(945), - [anon_sym_list] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_break] = ACTIONS(945), - [anon_sym_continue] = ACTIONS(945), - [anon_sym_for] = ACTIONS(945), - [anon_sym_in] = ACTIONS(945), - [anon_sym_loop] = ACTIONS(945), - [anon_sym_make] = ACTIONS(945), - [anon_sym_while] = ACTIONS(945), - [anon_sym_do] = ACTIONS(945), - [anon_sym_if] = ACTIONS(945), - [anon_sym_else] = ACTIONS(945), - [anon_sym_match] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(947), - [anon_sym_try] = ACTIONS(945), - [anon_sym_catch] = ACTIONS(945), - [anon_sym_return] = ACTIONS(945), + [133] = { + [sym__block_body_statement] = STATE(6885), + [sym__declaration] = STATE(6294), + [sym_decl_alias] = STATE(6308), + [sym_stmt_let] = STATE(6326), + [sym_stmt_mut] = STATE(6326), + [sym_stmt_const] = STATE(6326), + [sym_assignment] = STATE(6326), + [sym__mutable_assignment_pattern] = STATE(6330), + [sym__statement] = STATE(6294), + [sym_pipeline] = STATE(6326), + [sym_cmd_identifier] = STATE(4558), + [sym_decl_def] = STATE(6308), + [sym_decl_export] = STATE(6308), + [sym_decl_extern] = STATE(6308), + [sym_decl_module] = STATE(6308), + [sym_decl_use] = STATE(6308), + [sym__ctrl_statement] = STATE(6326), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_for] = STATE(6333), + [sym_ctrl_loop] = STATE(6333), + [sym_ctrl_error] = STATE(6333), + [sym_ctrl_while] = STATE(6333), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_stmt_source] = STATE(6326), + [sym_stmt_register] = STATE(6326), + [sym__stmt_hide] = STATE(6326), + [sym_hide_mod] = STATE(6363), + [sym_hide_env] = STATE(6363), + [sym__stmt_overlay] = STATE(6326), + [sym_overlay_list] = STATE(6365), + [sym_overlay_hide] = STATE(6365), + [sym_overlay_new] = STATE(6365), + [sym_overlay_use] = STATE(6365), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1234), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1442), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), + [sym_comment] = STATE(133), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym__block_body_repeat2] = STATE(133), + [aux_sym_pipe_element_repeat2] = STATE(399), + [anon_sym_export] = ACTIONS(846), + [anon_sym_alias] = ACTIONS(849), + [anon_sym_let] = ACTIONS(852), + [anon_sym_let_DASHenv] = ACTIONS(852), + [anon_sym_mut] = ACTIONS(855), + [anon_sym_const] = ACTIONS(858), + [aux_sym_cmd_identifier_token1] = ACTIONS(861), + [aux_sym_cmd_identifier_token2] = ACTIONS(861), + [aux_sym_cmd_identifier_token3] = ACTIONS(861), + [aux_sym_cmd_identifier_token4] = ACTIONS(861), + [aux_sym_cmd_identifier_token5] = ACTIONS(861), + [aux_sym_cmd_identifier_token6] = ACTIONS(861), + [aux_sym_cmd_identifier_token7] = ACTIONS(861), + [aux_sym_cmd_identifier_token8] = ACTIONS(861), + [aux_sym_cmd_identifier_token9] = ACTIONS(861), + [aux_sym_cmd_identifier_token10] = ACTIONS(861), + [aux_sym_cmd_identifier_token11] = ACTIONS(861), + [aux_sym_cmd_identifier_token12] = ACTIONS(861), + [aux_sym_cmd_identifier_token13] = ACTIONS(861), + [aux_sym_cmd_identifier_token14] = ACTIONS(861), + [aux_sym_cmd_identifier_token15] = ACTIONS(861), + [aux_sym_cmd_identifier_token16] = ACTIONS(861), + [aux_sym_cmd_identifier_token17] = ACTIONS(861), + [aux_sym_cmd_identifier_token18] = ACTIONS(861), + [aux_sym_cmd_identifier_token19] = ACTIONS(861), + [aux_sym_cmd_identifier_token20] = ACTIONS(861), + [aux_sym_cmd_identifier_token21] = ACTIONS(861), + [aux_sym_cmd_identifier_token22] = ACTIONS(861), + [aux_sym_cmd_identifier_token23] = ACTIONS(861), + [aux_sym_cmd_identifier_token24] = ACTIONS(864), + [aux_sym_cmd_identifier_token25] = ACTIONS(861), + [aux_sym_cmd_identifier_token26] = ACTIONS(864), + [aux_sym_cmd_identifier_token27] = ACTIONS(861), + [aux_sym_cmd_identifier_token28] = ACTIONS(861), + [aux_sym_cmd_identifier_token29] = ACTIONS(861), + [aux_sym_cmd_identifier_token30] = ACTIONS(861), + [aux_sym_cmd_identifier_token31] = ACTIONS(864), + [aux_sym_cmd_identifier_token32] = ACTIONS(864), + [aux_sym_cmd_identifier_token33] = ACTIONS(864), + [aux_sym_cmd_identifier_token34] = ACTIONS(864), + [aux_sym_cmd_identifier_token35] = ACTIONS(864), + [aux_sym_cmd_identifier_token36] = ACTIONS(861), + [anon_sym_true] = ACTIONS(867), + [anon_sym_false] = ACTIONS(867), + [anon_sym_null] = ACTIONS(870), + [aux_sym_cmd_identifier_token38] = ACTIONS(873), + [aux_sym_cmd_identifier_token39] = ACTIONS(876), + [aux_sym_cmd_identifier_token40] = ACTIONS(876), + [anon_sym_def] = ACTIONS(879), + [anon_sym_export_DASHenv] = ACTIONS(882), + [anon_sym_extern] = ACTIONS(885), + [anon_sym_module] = ACTIONS(888), + [anon_sym_use] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(894), + [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_DOLLAR] = ACTIONS(900), + [anon_sym_error] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_break] = ACTIONS(909), + [anon_sym_continue] = ACTIONS(912), + [anon_sym_for] = ACTIONS(915), + [anon_sym_loop] = ACTIONS(918), + [anon_sym_while] = ACTIONS(921), + [anon_sym_do] = ACTIONS(924), + [anon_sym_if] = ACTIONS(927), + [anon_sym_match] = ACTIONS(930), + [aux_sym_ctrl_match_token1] = ACTIONS(933), + [anon_sym_DOT_DOT] = ACTIONS(936), + [anon_sym_try] = ACTIONS(939), + [anon_sym_return] = ACTIONS(942), [anon_sym_source] = ACTIONS(945), [anon_sym_source_DASHenv] = ACTIONS(945), - [anon_sym_register] = ACTIONS(945), - [anon_sym_hide] = ACTIONS(945), - [anon_sym_hide_DASHenv] = ACTIONS(945), - [anon_sym_overlay] = ACTIONS(945), - [anon_sym_new] = ACTIONS(945), - [anon_sym_as] = ACTIONS(945), - [aux_sym_expr_binary_token1] = ACTIONS(947), - [aux_sym_expr_binary_token2] = ACTIONS(947), - [aux_sym_expr_binary_token3] = ACTIONS(947), - [aux_sym_expr_binary_token4] = ACTIONS(947), - [aux_sym_expr_binary_token5] = ACTIONS(947), - [aux_sym_expr_binary_token6] = ACTIONS(947), - [aux_sym_expr_binary_token7] = ACTIONS(947), - [aux_sym_expr_binary_token8] = ACTIONS(947), - [aux_sym_expr_binary_token9] = ACTIONS(947), - [aux_sym_expr_binary_token10] = ACTIONS(947), - [aux_sym_expr_binary_token11] = ACTIONS(947), - [aux_sym_expr_binary_token12] = ACTIONS(947), - [aux_sym_expr_binary_token13] = ACTIONS(947), - [aux_sym_expr_binary_token14] = ACTIONS(947), - [aux_sym_expr_binary_token15] = ACTIONS(947), - [aux_sym_expr_binary_token16] = ACTIONS(947), - [aux_sym_expr_binary_token17] = ACTIONS(947), - [aux_sym_expr_binary_token18] = ACTIONS(947), - [aux_sym_expr_binary_token19] = ACTIONS(947), - [aux_sym_expr_binary_token20] = ACTIONS(947), - [aux_sym_expr_binary_token21] = ACTIONS(947), - [aux_sym_expr_binary_token22] = ACTIONS(947), - [aux_sym_expr_binary_token23] = ACTIONS(947), - [aux_sym_expr_binary_token24] = ACTIONS(947), - [aux_sym_expr_binary_token25] = ACTIONS(947), - [aux_sym_expr_binary_token26] = ACTIONS(947), - [aux_sym_expr_binary_token27] = ACTIONS(947), - [aux_sym_expr_binary_token28] = ACTIONS(947), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(947), - [anon_sym_DOT_DOT2] = ACTIONS(945), - [anon_sym_DOT] = ACTIONS(949), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(947), - [anon_sym_DOT_DOT_LT2] = ACTIONS(947), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(947), - [aux_sym__val_number_decimal_token1] = ACTIONS(945), - [aux_sym__val_number_decimal_token2] = ACTIONS(947), - [aux_sym__val_number_decimal_token3] = ACTIONS(947), - [aux_sym__val_number_decimal_token4] = ACTIONS(947), - [aux_sym__val_number_token1] = ACTIONS(947), - [aux_sym__val_number_token2] = ACTIONS(947), - [aux_sym__val_number_token3] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(947), - [sym__str_single_quotes] = ACTIONS(947), - [sym__str_back_ticks] = ACTIONS(947), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(947), - [aux_sym_record_entry_token1] = ACTIONS(947), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_err_GT] = ACTIONS(945), - [anon_sym_out_GT] = ACTIONS(945), - [anon_sym_e_GT] = ACTIONS(945), - [anon_sym_o_GT] = ACTIONS(945), - [anon_sym_err_PLUSout_GT] = ACTIONS(945), - [anon_sym_out_PLUSerr_GT] = ACTIONS(945), - [anon_sym_o_PLUSe_GT] = ACTIONS(945), - [anon_sym_e_PLUSo_GT] = ACTIONS(945), - [anon_sym_err_GT_GT] = ACTIONS(947), - [anon_sym_out_GT_GT] = ACTIONS(947), - [anon_sym_e_GT_GT] = ACTIONS(947), - [anon_sym_o_GT_GT] = ACTIONS(947), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(947), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(947), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(947), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(947), - [anon_sym_POUND] = ACTIONS(247), - }, - [143] = { - [sym_path] = STATE(152), - [sym_comment] = STATE(143), - [aux_sym_cell_path_repeat1] = STATE(144), - [anon_sym_export] = ACTIONS(951), - [anon_sym_alias] = ACTIONS(951), - [anon_sym_EQ] = ACTIONS(951), - [anon_sym_let] = ACTIONS(951), - [anon_sym_let_DASHenv] = ACTIONS(951), - [anon_sym_mut] = ACTIONS(951), - [anon_sym_const] = ACTIONS(951), - [anon_sym_PLUS_EQ] = ACTIONS(953), - [anon_sym_DASH_EQ] = ACTIONS(953), - [anon_sym_STAR_EQ] = ACTIONS(953), - [anon_sym_SLASH_EQ] = ACTIONS(953), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(953), - [aux_sym_cmd_identifier_token1] = ACTIONS(951), - [aux_sym_cmd_identifier_token2] = ACTIONS(951), - [aux_sym_cmd_identifier_token3] = ACTIONS(951), - [aux_sym_cmd_identifier_token4] = ACTIONS(951), - [aux_sym_cmd_identifier_token5] = ACTIONS(951), - [aux_sym_cmd_identifier_token6] = ACTIONS(951), - [aux_sym_cmd_identifier_token7] = ACTIONS(951), - [aux_sym_cmd_identifier_token8] = ACTIONS(951), - [aux_sym_cmd_identifier_token9] = ACTIONS(951), - [aux_sym_cmd_identifier_token10] = ACTIONS(951), - [aux_sym_cmd_identifier_token11] = ACTIONS(951), - [aux_sym_cmd_identifier_token12] = ACTIONS(951), - [aux_sym_cmd_identifier_token13] = ACTIONS(951), - [aux_sym_cmd_identifier_token14] = ACTIONS(951), - [aux_sym_cmd_identifier_token15] = ACTIONS(951), - [aux_sym_cmd_identifier_token16] = ACTIONS(951), - [aux_sym_cmd_identifier_token17] = ACTIONS(951), - [aux_sym_cmd_identifier_token18] = ACTIONS(951), - [aux_sym_cmd_identifier_token19] = ACTIONS(951), - [aux_sym_cmd_identifier_token20] = ACTIONS(951), - [aux_sym_cmd_identifier_token21] = ACTIONS(951), - [aux_sym_cmd_identifier_token22] = ACTIONS(951), - [aux_sym_cmd_identifier_token23] = ACTIONS(951), - [aux_sym_cmd_identifier_token24] = ACTIONS(951), - [aux_sym_cmd_identifier_token25] = ACTIONS(951), - [aux_sym_cmd_identifier_token26] = ACTIONS(951), - [aux_sym_cmd_identifier_token27] = ACTIONS(951), - [aux_sym_cmd_identifier_token28] = ACTIONS(951), - [aux_sym_cmd_identifier_token29] = ACTIONS(951), - [aux_sym_cmd_identifier_token30] = ACTIONS(951), - [aux_sym_cmd_identifier_token31] = ACTIONS(951), - [aux_sym_cmd_identifier_token32] = ACTIONS(951), - [aux_sym_cmd_identifier_token33] = ACTIONS(951), - [aux_sym_cmd_identifier_token34] = ACTIONS(951), - [aux_sym_cmd_identifier_token35] = ACTIONS(951), - [aux_sym_cmd_identifier_token36] = ACTIONS(951), - [anon_sym_true] = ACTIONS(953), - [anon_sym_false] = ACTIONS(953), - [anon_sym_null] = ACTIONS(953), - [aux_sym_cmd_identifier_token38] = ACTIONS(951), - [aux_sym_cmd_identifier_token39] = ACTIONS(953), - [aux_sym_cmd_identifier_token40] = ACTIONS(953), - [sym__newline] = ACTIONS(951), - [anon_sym_SEMI] = ACTIONS(953), - [anon_sym_PIPE] = ACTIONS(953), - [anon_sym_err_GT_PIPE] = ACTIONS(953), - [anon_sym_out_GT_PIPE] = ACTIONS(953), - [anon_sym_e_GT_PIPE] = ACTIONS(953), - [anon_sym_o_GT_PIPE] = ACTIONS(953), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(953), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(953), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(953), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(953), - [anon_sym_def] = ACTIONS(951), - [anon_sym_export_DASHenv] = ACTIONS(951), - [anon_sym_extern] = ACTIONS(951), - [anon_sym_module] = ACTIONS(951), - [anon_sym_use] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(953), - [anon_sym_DOLLAR] = ACTIONS(953), - [anon_sym_error] = ACTIONS(951), - [anon_sym_list] = ACTIONS(951), - [anon_sym_DASH] = ACTIONS(951), - [anon_sym_break] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(951), - [anon_sym_for] = ACTIONS(951), - [anon_sym_in] = ACTIONS(951), - [anon_sym_loop] = ACTIONS(951), - [anon_sym_make] = ACTIONS(951), - [anon_sym_while] = ACTIONS(951), - [anon_sym_do] = ACTIONS(951), - [anon_sym_if] = ACTIONS(951), - [anon_sym_else] = ACTIONS(951), - [anon_sym_match] = ACTIONS(951), - [anon_sym_RBRACE] = ACTIONS(953), - [anon_sym_try] = ACTIONS(951), - [anon_sym_catch] = ACTIONS(951), - [anon_sym_return] = ACTIONS(951), - [anon_sym_source] = ACTIONS(951), - [anon_sym_source_DASHenv] = ACTIONS(951), - [anon_sym_register] = ACTIONS(951), + [anon_sym_register] = ACTIONS(948), [anon_sym_hide] = ACTIONS(951), - [anon_sym_hide_DASHenv] = ACTIONS(951), - [anon_sym_overlay] = ACTIONS(951), - [anon_sym_new] = ACTIONS(951), - [anon_sym_as] = ACTIONS(951), - [aux_sym_expr_binary_token1] = ACTIONS(953), - [aux_sym_expr_binary_token2] = ACTIONS(953), - [aux_sym_expr_binary_token3] = ACTIONS(953), - [aux_sym_expr_binary_token4] = ACTIONS(953), - [aux_sym_expr_binary_token5] = ACTIONS(953), - [aux_sym_expr_binary_token6] = ACTIONS(953), - [aux_sym_expr_binary_token7] = ACTIONS(953), - [aux_sym_expr_binary_token8] = ACTIONS(953), - [aux_sym_expr_binary_token9] = ACTIONS(953), - [aux_sym_expr_binary_token10] = ACTIONS(953), - [aux_sym_expr_binary_token11] = ACTIONS(953), - [aux_sym_expr_binary_token12] = ACTIONS(953), - [aux_sym_expr_binary_token13] = ACTIONS(953), - [aux_sym_expr_binary_token14] = ACTIONS(953), - [aux_sym_expr_binary_token15] = ACTIONS(953), - [aux_sym_expr_binary_token16] = ACTIONS(953), - [aux_sym_expr_binary_token17] = ACTIONS(953), - [aux_sym_expr_binary_token18] = ACTIONS(953), - [aux_sym_expr_binary_token19] = ACTIONS(953), - [aux_sym_expr_binary_token20] = ACTIONS(953), - [aux_sym_expr_binary_token21] = ACTIONS(953), - [aux_sym_expr_binary_token22] = ACTIONS(953), - [aux_sym_expr_binary_token23] = ACTIONS(953), - [aux_sym_expr_binary_token24] = ACTIONS(953), - [aux_sym_expr_binary_token25] = ACTIONS(953), - [aux_sym_expr_binary_token26] = ACTIONS(953), - [aux_sym_expr_binary_token27] = ACTIONS(953), - [aux_sym_expr_binary_token28] = ACTIONS(953), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(953), - [anon_sym_DOT_DOT2] = ACTIONS(951), - [anon_sym_DOT] = ACTIONS(949), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(953), - [anon_sym_DOT_DOT_LT2] = ACTIONS(953), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(953), - [aux_sym__val_number_decimal_token1] = ACTIONS(951), - [aux_sym__val_number_decimal_token2] = ACTIONS(953), - [aux_sym__val_number_decimal_token3] = ACTIONS(953), - [aux_sym__val_number_decimal_token4] = ACTIONS(953), - [aux_sym__val_number_token1] = ACTIONS(953), - [aux_sym__val_number_token2] = ACTIONS(953), - [aux_sym__val_number_token3] = ACTIONS(953), - [anon_sym_DQUOTE] = ACTIONS(953), - [sym__str_single_quotes] = ACTIONS(953), - [sym__str_back_ticks] = ACTIONS(953), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(953), - [aux_sym_record_entry_token1] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(951), - [anon_sym_err_GT] = ACTIONS(951), - [anon_sym_out_GT] = ACTIONS(951), - [anon_sym_e_GT] = ACTIONS(951), - [anon_sym_o_GT] = ACTIONS(951), - [anon_sym_err_PLUSout_GT] = ACTIONS(951), - [anon_sym_out_PLUSerr_GT] = ACTIONS(951), - [anon_sym_o_PLUSe_GT] = ACTIONS(951), - [anon_sym_e_PLUSo_GT] = ACTIONS(951), - [anon_sym_err_GT_GT] = ACTIONS(953), - [anon_sym_out_GT_GT] = ACTIONS(953), - [anon_sym_e_GT_GT] = ACTIONS(953), - [anon_sym_o_GT_GT] = ACTIONS(953), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(953), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(953), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(953), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(953), - [anon_sym_POUND] = ACTIONS(247), - }, - [144] = { - [sym_path] = STATE(152), - [sym_comment] = STATE(144), - [aux_sym_cell_path_repeat1] = STATE(144), - [anon_sym_export] = ACTIONS(955), - [anon_sym_alias] = ACTIONS(955), - [anon_sym_EQ] = ACTIONS(955), - [anon_sym_let] = ACTIONS(955), - [anon_sym_let_DASHenv] = ACTIONS(955), - [anon_sym_mut] = ACTIONS(955), - [anon_sym_const] = ACTIONS(955), - [anon_sym_PLUS_EQ] = ACTIONS(957), - [anon_sym_DASH_EQ] = ACTIONS(957), - [anon_sym_STAR_EQ] = ACTIONS(957), - [anon_sym_SLASH_EQ] = ACTIONS(957), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(957), - [aux_sym_cmd_identifier_token1] = ACTIONS(955), - [aux_sym_cmd_identifier_token2] = ACTIONS(955), - [aux_sym_cmd_identifier_token3] = ACTIONS(955), - [aux_sym_cmd_identifier_token4] = ACTIONS(955), - [aux_sym_cmd_identifier_token5] = ACTIONS(955), - [aux_sym_cmd_identifier_token6] = ACTIONS(955), - [aux_sym_cmd_identifier_token7] = ACTIONS(955), - [aux_sym_cmd_identifier_token8] = ACTIONS(955), - [aux_sym_cmd_identifier_token9] = ACTIONS(955), - [aux_sym_cmd_identifier_token10] = ACTIONS(955), - [aux_sym_cmd_identifier_token11] = ACTIONS(955), - [aux_sym_cmd_identifier_token12] = ACTIONS(955), - [aux_sym_cmd_identifier_token13] = ACTIONS(955), - [aux_sym_cmd_identifier_token14] = ACTIONS(955), - [aux_sym_cmd_identifier_token15] = ACTIONS(955), - [aux_sym_cmd_identifier_token16] = ACTIONS(955), - [aux_sym_cmd_identifier_token17] = ACTIONS(955), - [aux_sym_cmd_identifier_token18] = ACTIONS(955), - [aux_sym_cmd_identifier_token19] = ACTIONS(955), - [aux_sym_cmd_identifier_token20] = ACTIONS(955), - [aux_sym_cmd_identifier_token21] = ACTIONS(955), - [aux_sym_cmd_identifier_token22] = ACTIONS(955), - [aux_sym_cmd_identifier_token23] = ACTIONS(955), - [aux_sym_cmd_identifier_token24] = ACTIONS(955), - [aux_sym_cmd_identifier_token25] = ACTIONS(955), - [aux_sym_cmd_identifier_token26] = ACTIONS(955), - [aux_sym_cmd_identifier_token27] = ACTIONS(955), - [aux_sym_cmd_identifier_token28] = ACTIONS(955), - [aux_sym_cmd_identifier_token29] = ACTIONS(955), - [aux_sym_cmd_identifier_token30] = ACTIONS(955), - [aux_sym_cmd_identifier_token31] = ACTIONS(955), - [aux_sym_cmd_identifier_token32] = ACTIONS(955), - [aux_sym_cmd_identifier_token33] = ACTIONS(955), - [aux_sym_cmd_identifier_token34] = ACTIONS(955), - [aux_sym_cmd_identifier_token35] = ACTIONS(955), - [aux_sym_cmd_identifier_token36] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_null] = ACTIONS(957), - [aux_sym_cmd_identifier_token38] = ACTIONS(955), - [aux_sym_cmd_identifier_token39] = ACTIONS(957), - [aux_sym_cmd_identifier_token40] = ACTIONS(957), - [sym__newline] = ACTIONS(955), - [anon_sym_SEMI] = ACTIONS(957), - [anon_sym_PIPE] = ACTIONS(957), - [anon_sym_err_GT_PIPE] = ACTIONS(957), - [anon_sym_out_GT_PIPE] = ACTIONS(957), - [anon_sym_e_GT_PIPE] = ACTIONS(957), - [anon_sym_o_GT_PIPE] = ACTIONS(957), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(957), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(957), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(957), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(957), - [anon_sym_def] = ACTIONS(955), - [anon_sym_export_DASHenv] = ACTIONS(955), - [anon_sym_extern] = ACTIONS(955), - [anon_sym_module] = ACTIONS(955), - [anon_sym_use] = ACTIONS(955), - [anon_sym_LPAREN] = ACTIONS(957), - [anon_sym_COMMA] = ACTIONS(957), - [anon_sym_DOLLAR] = ACTIONS(957), - [anon_sym_error] = ACTIONS(955), - [anon_sym_list] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(955), - [anon_sym_break] = ACTIONS(955), - [anon_sym_continue] = ACTIONS(955), - [anon_sym_for] = ACTIONS(955), - [anon_sym_in] = ACTIONS(955), - [anon_sym_loop] = ACTIONS(955), - [anon_sym_make] = ACTIONS(955), - [anon_sym_while] = ACTIONS(955), - [anon_sym_do] = ACTIONS(955), - [anon_sym_if] = ACTIONS(955), - [anon_sym_else] = ACTIONS(955), - [anon_sym_match] = ACTIONS(955), - [anon_sym_RBRACE] = ACTIONS(957), - [anon_sym_try] = ACTIONS(955), - [anon_sym_catch] = ACTIONS(955), - [anon_sym_return] = ACTIONS(955), - [anon_sym_source] = ACTIONS(955), - [anon_sym_source_DASHenv] = ACTIONS(955), - [anon_sym_register] = ACTIONS(955), - [anon_sym_hide] = ACTIONS(955), - [anon_sym_hide_DASHenv] = ACTIONS(955), - [anon_sym_overlay] = ACTIONS(955), - [anon_sym_new] = ACTIONS(955), - [anon_sym_as] = ACTIONS(955), - [aux_sym_expr_binary_token1] = ACTIONS(957), - [aux_sym_expr_binary_token2] = ACTIONS(957), - [aux_sym_expr_binary_token3] = ACTIONS(957), - [aux_sym_expr_binary_token4] = ACTIONS(957), - [aux_sym_expr_binary_token5] = ACTIONS(957), - [aux_sym_expr_binary_token6] = ACTIONS(957), - [aux_sym_expr_binary_token7] = ACTIONS(957), - [aux_sym_expr_binary_token8] = ACTIONS(957), - [aux_sym_expr_binary_token9] = ACTIONS(957), - [aux_sym_expr_binary_token10] = ACTIONS(957), - [aux_sym_expr_binary_token11] = ACTIONS(957), - [aux_sym_expr_binary_token12] = ACTIONS(957), - [aux_sym_expr_binary_token13] = ACTIONS(957), - [aux_sym_expr_binary_token14] = ACTIONS(957), - [aux_sym_expr_binary_token15] = ACTIONS(957), - [aux_sym_expr_binary_token16] = ACTIONS(957), - [aux_sym_expr_binary_token17] = ACTIONS(957), - [aux_sym_expr_binary_token18] = ACTIONS(957), - [aux_sym_expr_binary_token19] = ACTIONS(957), - [aux_sym_expr_binary_token20] = ACTIONS(957), - [aux_sym_expr_binary_token21] = ACTIONS(957), - [aux_sym_expr_binary_token22] = ACTIONS(957), - [aux_sym_expr_binary_token23] = ACTIONS(957), - [aux_sym_expr_binary_token24] = ACTIONS(957), - [aux_sym_expr_binary_token25] = ACTIONS(957), - [aux_sym_expr_binary_token26] = ACTIONS(957), - [aux_sym_expr_binary_token27] = ACTIONS(957), - [aux_sym_expr_binary_token28] = ACTIONS(957), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(957), - [anon_sym_DOT_DOT2] = ACTIONS(955), - [anon_sym_DOT] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(957), - [anon_sym_DOT_DOT_LT2] = ACTIONS(957), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(957), - [aux_sym__val_number_decimal_token1] = ACTIONS(955), - [aux_sym__val_number_decimal_token2] = ACTIONS(957), - [aux_sym__val_number_decimal_token3] = ACTIONS(957), - [aux_sym__val_number_decimal_token4] = ACTIONS(957), - [aux_sym__val_number_token1] = ACTIONS(957), - [aux_sym__val_number_token2] = ACTIONS(957), - [aux_sym__val_number_token3] = ACTIONS(957), - [anon_sym_DQUOTE] = ACTIONS(957), - [sym__str_single_quotes] = ACTIONS(957), - [sym__str_back_ticks] = ACTIONS(957), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(957), - [aux_sym_record_entry_token1] = ACTIONS(957), - [anon_sym_PLUS] = ACTIONS(955), - [anon_sym_err_GT] = ACTIONS(955), - [anon_sym_out_GT] = ACTIONS(955), - [anon_sym_e_GT] = ACTIONS(955), - [anon_sym_o_GT] = ACTIONS(955), - [anon_sym_err_PLUSout_GT] = ACTIONS(955), - [anon_sym_out_PLUSerr_GT] = ACTIONS(955), - [anon_sym_o_PLUSe_GT] = ACTIONS(955), - [anon_sym_e_PLUSo_GT] = ACTIONS(955), - [anon_sym_err_GT_GT] = ACTIONS(957), - [anon_sym_out_GT_GT] = ACTIONS(957), - [anon_sym_e_GT_GT] = ACTIONS(957), - [anon_sym_o_GT_GT] = ACTIONS(957), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(957), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(957), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(957), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(957), - [anon_sym_POUND] = ACTIONS(247), - }, - [145] = { - [sym_comment] = STATE(145), - [anon_sym_export] = ACTIONS(962), - [anon_sym_alias] = ACTIONS(962), - [anon_sym_EQ] = ACTIONS(962), - [anon_sym_let] = ACTIONS(962), - [anon_sym_let_DASHenv] = ACTIONS(962), - [anon_sym_mut] = ACTIONS(962), - [anon_sym_const] = ACTIONS(962), - [anon_sym_PLUS_EQ] = ACTIONS(964), - [anon_sym_DASH_EQ] = ACTIONS(964), - [anon_sym_STAR_EQ] = ACTIONS(964), - [anon_sym_SLASH_EQ] = ACTIONS(964), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(964), - [aux_sym_cmd_identifier_token1] = ACTIONS(962), - [aux_sym_cmd_identifier_token2] = ACTIONS(962), - [aux_sym_cmd_identifier_token3] = ACTIONS(962), - [aux_sym_cmd_identifier_token4] = ACTIONS(962), - [aux_sym_cmd_identifier_token5] = ACTIONS(962), - [aux_sym_cmd_identifier_token6] = ACTIONS(962), - [aux_sym_cmd_identifier_token7] = ACTIONS(962), - [aux_sym_cmd_identifier_token8] = ACTIONS(962), - [aux_sym_cmd_identifier_token9] = ACTIONS(962), - [aux_sym_cmd_identifier_token10] = ACTIONS(962), - [aux_sym_cmd_identifier_token11] = ACTIONS(962), - [aux_sym_cmd_identifier_token12] = ACTIONS(962), - [aux_sym_cmd_identifier_token13] = ACTIONS(962), - [aux_sym_cmd_identifier_token14] = ACTIONS(962), - [aux_sym_cmd_identifier_token15] = ACTIONS(962), - [aux_sym_cmd_identifier_token16] = ACTIONS(962), - [aux_sym_cmd_identifier_token17] = ACTIONS(962), - [aux_sym_cmd_identifier_token18] = ACTIONS(962), - [aux_sym_cmd_identifier_token19] = ACTIONS(962), - [aux_sym_cmd_identifier_token20] = ACTIONS(962), - [aux_sym_cmd_identifier_token21] = ACTIONS(962), - [aux_sym_cmd_identifier_token22] = ACTIONS(962), - [aux_sym_cmd_identifier_token23] = ACTIONS(962), - [aux_sym_cmd_identifier_token24] = ACTIONS(962), - [aux_sym_cmd_identifier_token25] = ACTIONS(962), - [aux_sym_cmd_identifier_token26] = ACTIONS(962), - [aux_sym_cmd_identifier_token27] = ACTIONS(962), - [aux_sym_cmd_identifier_token28] = ACTIONS(962), - [aux_sym_cmd_identifier_token29] = ACTIONS(962), - [aux_sym_cmd_identifier_token30] = ACTIONS(962), - [aux_sym_cmd_identifier_token31] = ACTIONS(962), - [aux_sym_cmd_identifier_token32] = ACTIONS(962), - [aux_sym_cmd_identifier_token33] = ACTIONS(962), - [aux_sym_cmd_identifier_token34] = ACTIONS(962), - [aux_sym_cmd_identifier_token35] = ACTIONS(962), - [aux_sym_cmd_identifier_token36] = ACTIONS(962), - [anon_sym_true] = ACTIONS(964), - [anon_sym_false] = ACTIONS(964), - [anon_sym_null] = ACTIONS(964), - [aux_sym_cmd_identifier_token38] = ACTIONS(962), - [aux_sym_cmd_identifier_token39] = ACTIONS(964), - [aux_sym_cmd_identifier_token40] = ACTIONS(964), - [sym__newline] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_PIPE] = ACTIONS(964), - [anon_sym_err_GT_PIPE] = ACTIONS(964), - [anon_sym_out_GT_PIPE] = ACTIONS(964), - [anon_sym_e_GT_PIPE] = ACTIONS(964), - [anon_sym_o_GT_PIPE] = ACTIONS(964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(964), - [anon_sym_def] = ACTIONS(962), - [anon_sym_export_DASHenv] = ACTIONS(962), - [anon_sym_extern] = ACTIONS(962), - [anon_sym_module] = ACTIONS(962), - [anon_sym_use] = ACTIONS(962), - [anon_sym_LPAREN] = ACTIONS(964), - [anon_sym_COMMA] = ACTIONS(964), - [anon_sym_DOLLAR] = ACTIONS(964), - [anon_sym_error] = ACTIONS(962), - [anon_sym_list] = ACTIONS(962), - [anon_sym_DASH] = ACTIONS(962), - [anon_sym_break] = ACTIONS(962), - [anon_sym_continue] = ACTIONS(962), - [anon_sym_for] = ACTIONS(962), - [anon_sym_in] = ACTIONS(962), - [anon_sym_loop] = ACTIONS(962), - [anon_sym_make] = ACTIONS(962), - [anon_sym_while] = ACTIONS(962), - [anon_sym_do] = ACTIONS(962), - [anon_sym_if] = ACTIONS(962), - [anon_sym_else] = ACTIONS(962), - [anon_sym_match] = ACTIONS(962), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_try] = ACTIONS(962), - [anon_sym_catch] = ACTIONS(962), - [anon_sym_return] = ACTIONS(962), - [anon_sym_source] = ACTIONS(962), - [anon_sym_source_DASHenv] = ACTIONS(962), - [anon_sym_register] = ACTIONS(962), - [anon_sym_hide] = ACTIONS(962), - [anon_sym_hide_DASHenv] = ACTIONS(962), - [anon_sym_overlay] = ACTIONS(962), - [anon_sym_new] = ACTIONS(962), - [anon_sym_as] = ACTIONS(962), - [anon_sym_QMARK2] = ACTIONS(964), - [aux_sym_expr_binary_token1] = ACTIONS(964), - [aux_sym_expr_binary_token2] = ACTIONS(964), - [aux_sym_expr_binary_token3] = ACTIONS(964), - [aux_sym_expr_binary_token4] = ACTIONS(964), - [aux_sym_expr_binary_token5] = ACTIONS(964), - [aux_sym_expr_binary_token6] = ACTIONS(964), - [aux_sym_expr_binary_token7] = ACTIONS(964), - [aux_sym_expr_binary_token8] = ACTIONS(964), - [aux_sym_expr_binary_token9] = ACTIONS(964), - [aux_sym_expr_binary_token10] = ACTIONS(964), - [aux_sym_expr_binary_token11] = ACTIONS(964), - [aux_sym_expr_binary_token12] = ACTIONS(964), - [aux_sym_expr_binary_token13] = ACTIONS(964), - [aux_sym_expr_binary_token14] = ACTIONS(964), - [aux_sym_expr_binary_token15] = ACTIONS(964), - [aux_sym_expr_binary_token16] = ACTIONS(964), - [aux_sym_expr_binary_token17] = ACTIONS(964), - [aux_sym_expr_binary_token18] = ACTIONS(964), - [aux_sym_expr_binary_token19] = ACTIONS(964), - [aux_sym_expr_binary_token20] = ACTIONS(964), - [aux_sym_expr_binary_token21] = ACTIONS(964), - [aux_sym_expr_binary_token22] = ACTIONS(964), - [aux_sym_expr_binary_token23] = ACTIONS(964), - [aux_sym_expr_binary_token24] = ACTIONS(964), - [aux_sym_expr_binary_token25] = ACTIONS(964), - [aux_sym_expr_binary_token26] = ACTIONS(964), - [aux_sym_expr_binary_token27] = ACTIONS(964), - [aux_sym_expr_binary_token28] = ACTIONS(964), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(964), - [anon_sym_DOT_DOT2] = ACTIONS(962), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(964), - [anon_sym_DOT_DOT_LT2] = ACTIONS(964), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(964), - [aux_sym__val_number_decimal_token1] = ACTIONS(962), - [aux_sym__val_number_decimal_token2] = ACTIONS(964), - [aux_sym__val_number_decimal_token3] = ACTIONS(964), - [aux_sym__val_number_decimal_token4] = ACTIONS(964), - [aux_sym__val_number_token1] = ACTIONS(964), - [aux_sym__val_number_token2] = ACTIONS(964), - [aux_sym__val_number_token3] = ACTIONS(964), - [anon_sym_DQUOTE] = ACTIONS(964), - [sym__str_single_quotes] = ACTIONS(964), - [sym__str_back_ticks] = ACTIONS(964), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(964), - [aux_sym_record_entry_token1] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(962), - [anon_sym_err_GT] = ACTIONS(962), - [anon_sym_out_GT] = ACTIONS(962), - [anon_sym_e_GT] = ACTIONS(962), - [anon_sym_o_GT] = ACTIONS(962), - [anon_sym_err_PLUSout_GT] = ACTIONS(962), - [anon_sym_out_PLUSerr_GT] = ACTIONS(962), - [anon_sym_o_PLUSe_GT] = ACTIONS(962), - [anon_sym_e_PLUSo_GT] = ACTIONS(962), - [anon_sym_err_GT_GT] = ACTIONS(964), - [anon_sym_out_GT_GT] = ACTIONS(964), - [anon_sym_e_GT_GT] = ACTIONS(964), - [anon_sym_o_GT_GT] = ACTIONS(964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(964), - [anon_sym_POUND] = ACTIONS(247), - }, - [146] = { - [sym_comment] = STATE(146), - [anon_sym_export] = ACTIONS(966), - [anon_sym_alias] = ACTIONS(966), - [anon_sym_EQ] = ACTIONS(966), - [anon_sym_let] = ACTIONS(966), - [anon_sym_let_DASHenv] = ACTIONS(966), - [anon_sym_mut] = ACTIONS(966), - [anon_sym_const] = ACTIONS(966), - [anon_sym_PLUS_EQ] = ACTIONS(968), - [anon_sym_DASH_EQ] = ACTIONS(968), - [anon_sym_STAR_EQ] = ACTIONS(968), - [anon_sym_SLASH_EQ] = ACTIONS(968), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(968), - [aux_sym_cmd_identifier_token1] = ACTIONS(966), - [aux_sym_cmd_identifier_token2] = ACTIONS(966), - [aux_sym_cmd_identifier_token3] = ACTIONS(966), - [aux_sym_cmd_identifier_token4] = ACTIONS(966), - [aux_sym_cmd_identifier_token5] = ACTIONS(966), - [aux_sym_cmd_identifier_token6] = ACTIONS(966), - [aux_sym_cmd_identifier_token7] = ACTIONS(966), - [aux_sym_cmd_identifier_token8] = ACTIONS(966), - [aux_sym_cmd_identifier_token9] = ACTIONS(966), - [aux_sym_cmd_identifier_token10] = ACTIONS(966), - [aux_sym_cmd_identifier_token11] = ACTIONS(966), - [aux_sym_cmd_identifier_token12] = ACTIONS(966), - [aux_sym_cmd_identifier_token13] = ACTIONS(966), - [aux_sym_cmd_identifier_token14] = ACTIONS(966), - [aux_sym_cmd_identifier_token15] = ACTIONS(966), - [aux_sym_cmd_identifier_token16] = ACTIONS(966), - [aux_sym_cmd_identifier_token17] = ACTIONS(966), - [aux_sym_cmd_identifier_token18] = ACTIONS(966), - [aux_sym_cmd_identifier_token19] = ACTIONS(966), - [aux_sym_cmd_identifier_token20] = ACTIONS(966), - [aux_sym_cmd_identifier_token21] = ACTIONS(966), - [aux_sym_cmd_identifier_token22] = ACTIONS(966), - [aux_sym_cmd_identifier_token23] = ACTIONS(966), - [aux_sym_cmd_identifier_token24] = ACTIONS(966), - [aux_sym_cmd_identifier_token25] = ACTIONS(966), - [aux_sym_cmd_identifier_token26] = ACTIONS(966), - [aux_sym_cmd_identifier_token27] = ACTIONS(966), - [aux_sym_cmd_identifier_token28] = ACTIONS(966), - [aux_sym_cmd_identifier_token29] = ACTIONS(966), - [aux_sym_cmd_identifier_token30] = ACTIONS(966), - [aux_sym_cmd_identifier_token31] = ACTIONS(966), - [aux_sym_cmd_identifier_token32] = ACTIONS(966), - [aux_sym_cmd_identifier_token33] = ACTIONS(966), - [aux_sym_cmd_identifier_token34] = ACTIONS(966), - [aux_sym_cmd_identifier_token35] = ACTIONS(966), - [aux_sym_cmd_identifier_token36] = ACTIONS(966), - [anon_sym_true] = ACTIONS(968), - [anon_sym_false] = ACTIONS(968), - [anon_sym_null] = ACTIONS(968), - [aux_sym_cmd_identifier_token38] = ACTIONS(966), - [aux_sym_cmd_identifier_token39] = ACTIONS(968), - [aux_sym_cmd_identifier_token40] = ACTIONS(968), - [sym__newline] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_def] = ACTIONS(966), - [anon_sym_export_DASHenv] = ACTIONS(966), - [anon_sym_extern] = ACTIONS(966), - [anon_sym_module] = ACTIONS(966), - [anon_sym_use] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_COMMA] = ACTIONS(968), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_error] = ACTIONS(966), - [anon_sym_list] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_break] = ACTIONS(966), - [anon_sym_continue] = ACTIONS(966), - [anon_sym_for] = ACTIONS(966), - [anon_sym_in] = ACTIONS(966), - [anon_sym_loop] = ACTIONS(966), - [anon_sym_make] = ACTIONS(966), - [anon_sym_while] = ACTIONS(966), - [anon_sym_do] = ACTIONS(966), - [anon_sym_if] = ACTIONS(966), - [anon_sym_else] = ACTIONS(966), - [anon_sym_match] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_try] = ACTIONS(966), - [anon_sym_catch] = ACTIONS(966), - [anon_sym_return] = ACTIONS(966), - [anon_sym_source] = ACTIONS(966), - [anon_sym_source_DASHenv] = ACTIONS(966), - [anon_sym_register] = ACTIONS(966), - [anon_sym_hide] = ACTIONS(966), - [anon_sym_hide_DASHenv] = ACTIONS(966), - [anon_sym_overlay] = ACTIONS(966), - [anon_sym_new] = ACTIONS(966), - [anon_sym_as] = ACTIONS(966), - [anon_sym_QMARK2] = ACTIONS(968), - [aux_sym_expr_binary_token1] = ACTIONS(968), - [aux_sym_expr_binary_token2] = ACTIONS(968), - [aux_sym_expr_binary_token3] = ACTIONS(968), - [aux_sym_expr_binary_token4] = ACTIONS(968), - [aux_sym_expr_binary_token5] = ACTIONS(968), - [aux_sym_expr_binary_token6] = ACTIONS(968), - [aux_sym_expr_binary_token7] = ACTIONS(968), - [aux_sym_expr_binary_token8] = ACTIONS(968), - [aux_sym_expr_binary_token9] = ACTIONS(968), - [aux_sym_expr_binary_token10] = ACTIONS(968), - [aux_sym_expr_binary_token11] = ACTIONS(968), - [aux_sym_expr_binary_token12] = ACTIONS(968), - [aux_sym_expr_binary_token13] = ACTIONS(968), - [aux_sym_expr_binary_token14] = ACTIONS(968), - [aux_sym_expr_binary_token15] = ACTIONS(968), - [aux_sym_expr_binary_token16] = ACTIONS(968), - [aux_sym_expr_binary_token17] = ACTIONS(968), - [aux_sym_expr_binary_token18] = ACTIONS(968), - [aux_sym_expr_binary_token19] = ACTIONS(968), - [aux_sym_expr_binary_token20] = ACTIONS(968), - [aux_sym_expr_binary_token21] = ACTIONS(968), - [aux_sym_expr_binary_token22] = ACTIONS(968), - [aux_sym_expr_binary_token23] = ACTIONS(968), - [aux_sym_expr_binary_token24] = ACTIONS(968), - [aux_sym_expr_binary_token25] = ACTIONS(968), - [aux_sym_expr_binary_token26] = ACTIONS(968), - [aux_sym_expr_binary_token27] = ACTIONS(968), - [aux_sym_expr_binary_token28] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(968), - [anon_sym_DOT_DOT2] = ACTIONS(966), - [anon_sym_DOT] = ACTIONS(966), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(968), - [anon_sym_DOT_DOT_LT2] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(968), - [aux_sym__val_number_decimal_token1] = ACTIONS(966), - [aux_sym__val_number_decimal_token2] = ACTIONS(968), - [aux_sym__val_number_decimal_token3] = ACTIONS(968), - [aux_sym__val_number_decimal_token4] = ACTIONS(968), - [aux_sym__val_number_token1] = ACTIONS(968), - [aux_sym__val_number_token2] = ACTIONS(968), - [aux_sym__val_number_token3] = ACTIONS(968), - [anon_sym_DQUOTE] = ACTIONS(968), - [sym__str_single_quotes] = ACTIONS(968), - [sym__str_back_ticks] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(968), - [aux_sym_record_entry_token1] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_err_GT] = ACTIONS(966), - [anon_sym_out_GT] = ACTIONS(966), - [anon_sym_e_GT] = ACTIONS(966), - [anon_sym_o_GT] = ACTIONS(966), - [anon_sym_err_PLUSout_GT] = ACTIONS(966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(966), - [anon_sym_o_PLUSe_GT] = ACTIONS(966), - [anon_sym_e_PLUSo_GT] = ACTIONS(966), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(247), - }, - [147] = { - [sym_comment] = STATE(147), - [anon_sym_export] = ACTIONS(970), - [anon_sym_alias] = ACTIONS(970), - [anon_sym_EQ] = ACTIONS(970), - [anon_sym_let] = ACTIONS(970), - [anon_sym_let_DASHenv] = ACTIONS(970), - [anon_sym_mut] = ACTIONS(970), - [anon_sym_const] = ACTIONS(970), - [anon_sym_PLUS_EQ] = ACTIONS(972), - [anon_sym_DASH_EQ] = ACTIONS(972), - [anon_sym_STAR_EQ] = ACTIONS(972), - [anon_sym_SLASH_EQ] = ACTIONS(972), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(972), - [aux_sym_cmd_identifier_token1] = ACTIONS(970), - [aux_sym_cmd_identifier_token2] = ACTIONS(970), - [aux_sym_cmd_identifier_token3] = ACTIONS(970), - [aux_sym_cmd_identifier_token4] = ACTIONS(970), - [aux_sym_cmd_identifier_token5] = ACTIONS(970), - [aux_sym_cmd_identifier_token6] = ACTIONS(970), - [aux_sym_cmd_identifier_token7] = ACTIONS(970), - [aux_sym_cmd_identifier_token8] = ACTIONS(970), - [aux_sym_cmd_identifier_token9] = ACTIONS(970), - [aux_sym_cmd_identifier_token10] = ACTIONS(970), - [aux_sym_cmd_identifier_token11] = ACTIONS(970), - [aux_sym_cmd_identifier_token12] = ACTIONS(970), - [aux_sym_cmd_identifier_token13] = ACTIONS(970), - [aux_sym_cmd_identifier_token14] = ACTIONS(970), - [aux_sym_cmd_identifier_token15] = ACTIONS(970), - [aux_sym_cmd_identifier_token16] = ACTIONS(970), - [aux_sym_cmd_identifier_token17] = ACTIONS(970), - [aux_sym_cmd_identifier_token18] = ACTIONS(970), - [aux_sym_cmd_identifier_token19] = ACTIONS(970), - [aux_sym_cmd_identifier_token20] = ACTIONS(970), - [aux_sym_cmd_identifier_token21] = ACTIONS(970), - [aux_sym_cmd_identifier_token22] = ACTIONS(970), - [aux_sym_cmd_identifier_token23] = ACTIONS(970), - [aux_sym_cmd_identifier_token24] = ACTIONS(970), - [aux_sym_cmd_identifier_token25] = ACTIONS(970), - [aux_sym_cmd_identifier_token26] = ACTIONS(970), - [aux_sym_cmd_identifier_token27] = ACTIONS(970), - [aux_sym_cmd_identifier_token28] = ACTIONS(970), - [aux_sym_cmd_identifier_token29] = ACTIONS(970), - [aux_sym_cmd_identifier_token30] = ACTIONS(970), - [aux_sym_cmd_identifier_token31] = ACTIONS(970), - [aux_sym_cmd_identifier_token32] = ACTIONS(970), - [aux_sym_cmd_identifier_token33] = ACTIONS(970), - [aux_sym_cmd_identifier_token34] = ACTIONS(970), - [aux_sym_cmd_identifier_token35] = ACTIONS(970), - [aux_sym_cmd_identifier_token36] = ACTIONS(970), - [anon_sym_true] = ACTIONS(972), - [anon_sym_false] = ACTIONS(972), - [anon_sym_null] = ACTIONS(972), - [aux_sym_cmd_identifier_token38] = ACTIONS(970), - [aux_sym_cmd_identifier_token39] = ACTIONS(972), - [aux_sym_cmd_identifier_token40] = ACTIONS(972), - [sym__newline] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_err_GT_PIPE] = ACTIONS(972), - [anon_sym_out_GT_PIPE] = ACTIONS(972), - [anon_sym_e_GT_PIPE] = ACTIONS(972), - [anon_sym_o_GT_PIPE] = ACTIONS(972), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(972), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(972), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(972), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(972), - [anon_sym_def] = ACTIONS(970), - [anon_sym_export_DASHenv] = ACTIONS(970), - [anon_sym_extern] = ACTIONS(970), - [anon_sym_module] = ACTIONS(970), - [anon_sym_use] = ACTIONS(970), - [anon_sym_LPAREN] = ACTIONS(972), - [anon_sym_COMMA] = ACTIONS(972), - [anon_sym_DOLLAR] = ACTIONS(972), - [anon_sym_error] = ACTIONS(970), - [anon_sym_list] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_break] = ACTIONS(970), - [anon_sym_continue] = ACTIONS(970), - [anon_sym_for] = ACTIONS(970), - [anon_sym_in] = ACTIONS(970), - [anon_sym_loop] = ACTIONS(970), - [anon_sym_make] = ACTIONS(970), - [anon_sym_while] = ACTIONS(970), - [anon_sym_do] = ACTIONS(970), - [anon_sym_if] = ACTIONS(970), - [anon_sym_else] = ACTIONS(970), - [anon_sym_match] = ACTIONS(970), - [anon_sym_RBRACE] = ACTIONS(972), - [anon_sym_try] = ACTIONS(970), - [anon_sym_catch] = ACTIONS(970), - [anon_sym_return] = ACTIONS(970), - [anon_sym_source] = ACTIONS(970), - [anon_sym_source_DASHenv] = ACTIONS(970), - [anon_sym_register] = ACTIONS(970), - [anon_sym_hide] = ACTIONS(970), - [anon_sym_hide_DASHenv] = ACTIONS(970), - [anon_sym_overlay] = ACTIONS(970), - [anon_sym_new] = ACTIONS(970), - [anon_sym_as] = ACTIONS(970), - [anon_sym_QMARK2] = ACTIONS(974), - [aux_sym_expr_binary_token1] = ACTIONS(972), - [aux_sym_expr_binary_token2] = ACTIONS(972), - [aux_sym_expr_binary_token3] = ACTIONS(972), - [aux_sym_expr_binary_token4] = ACTIONS(972), - [aux_sym_expr_binary_token5] = ACTIONS(972), - [aux_sym_expr_binary_token6] = ACTIONS(972), - [aux_sym_expr_binary_token7] = ACTIONS(972), - [aux_sym_expr_binary_token8] = ACTIONS(972), - [aux_sym_expr_binary_token9] = ACTIONS(972), - [aux_sym_expr_binary_token10] = ACTIONS(972), - [aux_sym_expr_binary_token11] = ACTIONS(972), - [aux_sym_expr_binary_token12] = ACTIONS(972), - [aux_sym_expr_binary_token13] = ACTIONS(972), - [aux_sym_expr_binary_token14] = ACTIONS(972), - [aux_sym_expr_binary_token15] = ACTIONS(972), - [aux_sym_expr_binary_token16] = ACTIONS(972), - [aux_sym_expr_binary_token17] = ACTIONS(972), - [aux_sym_expr_binary_token18] = ACTIONS(972), - [aux_sym_expr_binary_token19] = ACTIONS(972), - [aux_sym_expr_binary_token20] = ACTIONS(972), - [aux_sym_expr_binary_token21] = ACTIONS(972), - [aux_sym_expr_binary_token22] = ACTIONS(972), - [aux_sym_expr_binary_token23] = ACTIONS(972), - [aux_sym_expr_binary_token24] = ACTIONS(972), - [aux_sym_expr_binary_token25] = ACTIONS(972), - [aux_sym_expr_binary_token26] = ACTIONS(972), - [aux_sym_expr_binary_token27] = ACTIONS(972), - [aux_sym_expr_binary_token28] = ACTIONS(972), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(972), - [anon_sym_DOT_DOT2] = ACTIONS(970), - [anon_sym_DOT] = ACTIONS(970), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(972), - [anon_sym_DOT_DOT_LT2] = ACTIONS(972), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(972), - [aux_sym__val_number_decimal_token1] = ACTIONS(970), + [anon_sym_hide_DASHenv] = ACTIONS(954), + [anon_sym_overlay] = ACTIONS(957), + [anon_sym_where] = ACTIONS(960), + [aux_sym_expr_unary_token1] = ACTIONS(963), + [anon_sym_DOT_DOT_EQ] = ACTIONS(966), + [anon_sym_DOT_DOT_LT] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(969), [aux_sym__val_number_decimal_token2] = ACTIONS(972), - [aux_sym__val_number_decimal_token3] = ACTIONS(972), - [aux_sym__val_number_decimal_token4] = ACTIONS(972), - [aux_sym__val_number_token1] = ACTIONS(972), - [aux_sym__val_number_token2] = ACTIONS(972), - [aux_sym__val_number_token3] = ACTIONS(972), - [anon_sym_DQUOTE] = ACTIONS(972), - [sym__str_single_quotes] = ACTIONS(972), - [sym__str_back_ticks] = ACTIONS(972), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(972), - [aux_sym_record_entry_token1] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(970), - [anon_sym_err_GT] = ACTIONS(970), - [anon_sym_out_GT] = ACTIONS(970), - [anon_sym_e_GT] = ACTIONS(970), - [anon_sym_o_GT] = ACTIONS(970), - [anon_sym_err_PLUSout_GT] = ACTIONS(970), - [anon_sym_out_PLUSerr_GT] = ACTIONS(970), - [anon_sym_o_PLUSe_GT] = ACTIONS(970), - [anon_sym_e_PLUSo_GT] = ACTIONS(970), - [anon_sym_err_GT_GT] = ACTIONS(972), - [anon_sym_out_GT_GT] = ACTIONS(972), - [anon_sym_e_GT_GT] = ACTIONS(972), - [anon_sym_o_GT_GT] = ACTIONS(972), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(972), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(972), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(972), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(972), - [anon_sym_POUND] = ACTIONS(247), - }, - [148] = { - [sym_comment] = STATE(148), - [anon_sym_export] = ACTIONS(976), - [anon_sym_alias] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(976), - [anon_sym_let] = ACTIONS(976), - [anon_sym_let_DASHenv] = ACTIONS(976), - [anon_sym_mut] = ACTIONS(976), - [anon_sym_const] = ACTIONS(976), - [anon_sym_PLUS_EQ] = ACTIONS(978), - [anon_sym_DASH_EQ] = ACTIONS(978), - [anon_sym_STAR_EQ] = ACTIONS(978), - [anon_sym_SLASH_EQ] = ACTIONS(978), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(978), - [aux_sym_cmd_identifier_token1] = ACTIONS(976), - [aux_sym_cmd_identifier_token2] = ACTIONS(976), - [aux_sym_cmd_identifier_token3] = ACTIONS(976), - [aux_sym_cmd_identifier_token4] = ACTIONS(976), - [aux_sym_cmd_identifier_token5] = ACTIONS(976), - [aux_sym_cmd_identifier_token6] = ACTIONS(976), - [aux_sym_cmd_identifier_token7] = ACTIONS(976), - [aux_sym_cmd_identifier_token8] = ACTIONS(976), - [aux_sym_cmd_identifier_token9] = ACTIONS(976), - [aux_sym_cmd_identifier_token10] = ACTIONS(976), - [aux_sym_cmd_identifier_token11] = ACTIONS(976), - [aux_sym_cmd_identifier_token12] = ACTIONS(976), - [aux_sym_cmd_identifier_token13] = ACTIONS(976), - [aux_sym_cmd_identifier_token14] = ACTIONS(976), - [aux_sym_cmd_identifier_token15] = ACTIONS(976), - [aux_sym_cmd_identifier_token16] = ACTIONS(976), - [aux_sym_cmd_identifier_token17] = ACTIONS(976), - [aux_sym_cmd_identifier_token18] = ACTIONS(976), - [aux_sym_cmd_identifier_token19] = ACTIONS(976), - [aux_sym_cmd_identifier_token20] = ACTIONS(976), - [aux_sym_cmd_identifier_token21] = ACTIONS(976), - [aux_sym_cmd_identifier_token22] = ACTIONS(976), - [aux_sym_cmd_identifier_token23] = ACTIONS(976), - [aux_sym_cmd_identifier_token24] = ACTIONS(976), - [aux_sym_cmd_identifier_token25] = ACTIONS(976), - [aux_sym_cmd_identifier_token26] = ACTIONS(976), - [aux_sym_cmd_identifier_token27] = ACTIONS(976), - [aux_sym_cmd_identifier_token28] = ACTIONS(976), - [aux_sym_cmd_identifier_token29] = ACTIONS(976), - [aux_sym_cmd_identifier_token30] = ACTIONS(976), - [aux_sym_cmd_identifier_token31] = ACTIONS(976), - [aux_sym_cmd_identifier_token32] = ACTIONS(976), - [aux_sym_cmd_identifier_token33] = ACTIONS(976), - [aux_sym_cmd_identifier_token34] = ACTIONS(976), - [aux_sym_cmd_identifier_token35] = ACTIONS(976), - [aux_sym_cmd_identifier_token36] = ACTIONS(976), - [anon_sym_true] = ACTIONS(978), - [anon_sym_false] = ACTIONS(978), - [anon_sym_null] = ACTIONS(978), - [aux_sym_cmd_identifier_token38] = ACTIONS(976), - [aux_sym_cmd_identifier_token39] = ACTIONS(978), - [aux_sym_cmd_identifier_token40] = ACTIONS(978), - [sym__newline] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(978), - [anon_sym_PIPE] = ACTIONS(978), - [anon_sym_err_GT_PIPE] = ACTIONS(978), - [anon_sym_out_GT_PIPE] = ACTIONS(978), - [anon_sym_e_GT_PIPE] = ACTIONS(978), - [anon_sym_o_GT_PIPE] = ACTIONS(978), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(978), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(978), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(978), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(978), - [anon_sym_def] = ACTIONS(976), - [anon_sym_export_DASHenv] = ACTIONS(976), - [anon_sym_extern] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_use] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(978), - [anon_sym_COMMA] = ACTIONS(978), - [anon_sym_DOLLAR] = ACTIONS(978), - [anon_sym_error] = ACTIONS(976), - [anon_sym_list] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_break] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_in] = ACTIONS(976), - [anon_sym_loop] = ACTIONS(976), - [anon_sym_make] = ACTIONS(976), - [anon_sym_while] = ACTIONS(976), - [anon_sym_do] = ACTIONS(976), - [anon_sym_if] = ACTIONS(976), - [anon_sym_else] = ACTIONS(976), - [anon_sym_match] = ACTIONS(976), - [anon_sym_RBRACE] = ACTIONS(978), - [anon_sym_try] = ACTIONS(976), - [anon_sym_catch] = ACTIONS(976), - [anon_sym_return] = ACTIONS(976), - [anon_sym_source] = ACTIONS(976), - [anon_sym_source_DASHenv] = ACTIONS(976), - [anon_sym_register] = ACTIONS(976), - [anon_sym_hide] = ACTIONS(976), - [anon_sym_hide_DASHenv] = ACTIONS(976), - [anon_sym_overlay] = ACTIONS(976), - [anon_sym_new] = ACTIONS(976), - [anon_sym_as] = ACTIONS(976), - [anon_sym_QMARK2] = ACTIONS(978), - [aux_sym_expr_binary_token1] = ACTIONS(978), - [aux_sym_expr_binary_token2] = ACTIONS(978), - [aux_sym_expr_binary_token3] = ACTIONS(978), - [aux_sym_expr_binary_token4] = ACTIONS(978), - [aux_sym_expr_binary_token5] = ACTIONS(978), - [aux_sym_expr_binary_token6] = ACTIONS(978), - [aux_sym_expr_binary_token7] = ACTIONS(978), - [aux_sym_expr_binary_token8] = ACTIONS(978), - [aux_sym_expr_binary_token9] = ACTIONS(978), - [aux_sym_expr_binary_token10] = ACTIONS(978), - [aux_sym_expr_binary_token11] = ACTIONS(978), - [aux_sym_expr_binary_token12] = ACTIONS(978), - [aux_sym_expr_binary_token13] = ACTIONS(978), - [aux_sym_expr_binary_token14] = ACTIONS(978), - [aux_sym_expr_binary_token15] = ACTIONS(978), - [aux_sym_expr_binary_token16] = ACTIONS(978), - [aux_sym_expr_binary_token17] = ACTIONS(978), - [aux_sym_expr_binary_token18] = ACTIONS(978), - [aux_sym_expr_binary_token19] = ACTIONS(978), - [aux_sym_expr_binary_token20] = ACTIONS(978), - [aux_sym_expr_binary_token21] = ACTIONS(978), - [aux_sym_expr_binary_token22] = ACTIONS(978), - [aux_sym_expr_binary_token23] = ACTIONS(978), - [aux_sym_expr_binary_token24] = ACTIONS(978), - [aux_sym_expr_binary_token25] = ACTIONS(978), - [aux_sym_expr_binary_token26] = ACTIONS(978), - [aux_sym_expr_binary_token27] = ACTIONS(978), - [aux_sym_expr_binary_token28] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(978), - [anon_sym_DOT_DOT2] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), - [anon_sym_DOT_DOT_LT2] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(978), - [aux_sym__val_number_decimal_token1] = ACTIONS(976), - [aux_sym__val_number_decimal_token2] = ACTIONS(978), - [aux_sym__val_number_decimal_token3] = ACTIONS(978), + [aux_sym__val_number_decimal_token3] = ACTIONS(975), [aux_sym__val_number_decimal_token4] = ACTIONS(978), - [aux_sym__val_number_token1] = ACTIONS(978), - [aux_sym__val_number_token2] = ACTIONS(978), - [aux_sym__val_number_token3] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(978), - [sym__str_single_quotes] = ACTIONS(978), - [sym__str_back_ticks] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(978), - [aux_sym_record_entry_token1] = ACTIONS(978), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_err_GT] = ACTIONS(976), - [anon_sym_out_GT] = ACTIONS(976), - [anon_sym_e_GT] = ACTIONS(976), - [anon_sym_o_GT] = ACTIONS(976), - [anon_sym_err_PLUSout_GT] = ACTIONS(976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(976), - [anon_sym_o_PLUSe_GT] = ACTIONS(976), - [anon_sym_e_PLUSo_GT] = ACTIONS(976), - [anon_sym_err_GT_GT] = ACTIONS(978), - [anon_sym_out_GT_GT] = ACTIONS(978), - [anon_sym_e_GT_GT] = ACTIONS(978), - [anon_sym_o_GT_GT] = ACTIONS(978), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(978), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(978), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(978), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(978), - [anon_sym_POUND] = ACTIONS(247), - }, - [149] = { - [sym_comment] = STATE(149), - [anon_sym_export] = ACTIONS(980), - [anon_sym_alias] = ACTIONS(980), - [anon_sym_EQ] = ACTIONS(980), - [anon_sym_let] = ACTIONS(980), - [anon_sym_let_DASHenv] = ACTIONS(980), - [anon_sym_mut] = ACTIONS(980), - [anon_sym_const] = ACTIONS(980), - [anon_sym_PLUS_EQ] = ACTIONS(982), - [anon_sym_DASH_EQ] = ACTIONS(982), - [anon_sym_STAR_EQ] = ACTIONS(982), - [anon_sym_SLASH_EQ] = ACTIONS(982), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(982), - [aux_sym_cmd_identifier_token1] = ACTIONS(980), - [aux_sym_cmd_identifier_token2] = ACTIONS(980), - [aux_sym_cmd_identifier_token3] = ACTIONS(980), - [aux_sym_cmd_identifier_token4] = ACTIONS(980), - [aux_sym_cmd_identifier_token5] = ACTIONS(980), - [aux_sym_cmd_identifier_token6] = ACTIONS(980), - [aux_sym_cmd_identifier_token7] = ACTIONS(980), - [aux_sym_cmd_identifier_token8] = ACTIONS(980), - [aux_sym_cmd_identifier_token9] = ACTIONS(980), - [aux_sym_cmd_identifier_token10] = ACTIONS(980), - [aux_sym_cmd_identifier_token11] = ACTIONS(980), - [aux_sym_cmd_identifier_token12] = ACTIONS(980), - [aux_sym_cmd_identifier_token13] = ACTIONS(980), - [aux_sym_cmd_identifier_token14] = ACTIONS(980), - [aux_sym_cmd_identifier_token15] = ACTIONS(980), - [aux_sym_cmd_identifier_token16] = ACTIONS(980), - [aux_sym_cmd_identifier_token17] = ACTIONS(980), - [aux_sym_cmd_identifier_token18] = ACTIONS(980), - [aux_sym_cmd_identifier_token19] = ACTIONS(980), - [aux_sym_cmd_identifier_token20] = ACTIONS(980), - [aux_sym_cmd_identifier_token21] = ACTIONS(980), - [aux_sym_cmd_identifier_token22] = ACTIONS(980), - [aux_sym_cmd_identifier_token23] = ACTIONS(980), - [aux_sym_cmd_identifier_token24] = ACTIONS(980), - [aux_sym_cmd_identifier_token25] = ACTIONS(980), - [aux_sym_cmd_identifier_token26] = ACTIONS(980), - [aux_sym_cmd_identifier_token27] = ACTIONS(980), - [aux_sym_cmd_identifier_token28] = ACTIONS(980), - [aux_sym_cmd_identifier_token29] = ACTIONS(980), - [aux_sym_cmd_identifier_token30] = ACTIONS(980), - [aux_sym_cmd_identifier_token31] = ACTIONS(980), - [aux_sym_cmd_identifier_token32] = ACTIONS(980), - [aux_sym_cmd_identifier_token33] = ACTIONS(980), - [aux_sym_cmd_identifier_token34] = ACTIONS(980), - [aux_sym_cmd_identifier_token35] = ACTIONS(980), - [aux_sym_cmd_identifier_token36] = ACTIONS(980), - [anon_sym_true] = ACTIONS(982), - [anon_sym_false] = ACTIONS(982), - [anon_sym_null] = ACTIONS(982), - [aux_sym_cmd_identifier_token38] = ACTIONS(980), - [aux_sym_cmd_identifier_token39] = ACTIONS(982), - [aux_sym_cmd_identifier_token40] = ACTIONS(982), - [sym__newline] = ACTIONS(980), - [anon_sym_SEMI] = ACTIONS(982), - [anon_sym_PIPE] = ACTIONS(982), - [anon_sym_err_GT_PIPE] = ACTIONS(982), - [anon_sym_out_GT_PIPE] = ACTIONS(982), - [anon_sym_e_GT_PIPE] = ACTIONS(982), - [anon_sym_o_GT_PIPE] = ACTIONS(982), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(982), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(982), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(982), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(982), - [anon_sym_def] = ACTIONS(980), - [anon_sym_export_DASHenv] = ACTIONS(980), - [anon_sym_extern] = ACTIONS(980), - [anon_sym_module] = ACTIONS(980), - [anon_sym_use] = ACTIONS(980), - [anon_sym_LPAREN] = ACTIONS(982), - [anon_sym_COMMA] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(982), - [anon_sym_error] = ACTIONS(980), - [anon_sym_list] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_break] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_for] = ACTIONS(980), - [anon_sym_in] = ACTIONS(980), - [anon_sym_loop] = ACTIONS(980), - [anon_sym_make] = ACTIONS(980), - [anon_sym_while] = ACTIONS(980), - [anon_sym_do] = ACTIONS(980), - [anon_sym_if] = ACTIONS(980), - [anon_sym_else] = ACTIONS(980), - [anon_sym_match] = ACTIONS(980), - [anon_sym_RBRACE] = ACTIONS(982), - [anon_sym_try] = ACTIONS(980), - [anon_sym_catch] = ACTIONS(980), - [anon_sym_return] = ACTIONS(980), - [anon_sym_source] = ACTIONS(980), - [anon_sym_source_DASHenv] = ACTIONS(980), - [anon_sym_register] = ACTIONS(980), - [anon_sym_hide] = ACTIONS(980), - [anon_sym_hide_DASHenv] = ACTIONS(980), - [anon_sym_overlay] = ACTIONS(980), - [anon_sym_new] = ACTIONS(980), - [anon_sym_as] = ACTIONS(980), - [anon_sym_QMARK2] = ACTIONS(984), - [aux_sym_expr_binary_token1] = ACTIONS(982), - [aux_sym_expr_binary_token2] = ACTIONS(982), - [aux_sym_expr_binary_token3] = ACTIONS(982), - [aux_sym_expr_binary_token4] = ACTIONS(982), - [aux_sym_expr_binary_token5] = ACTIONS(982), - [aux_sym_expr_binary_token6] = ACTIONS(982), - [aux_sym_expr_binary_token7] = ACTIONS(982), - [aux_sym_expr_binary_token8] = ACTIONS(982), - [aux_sym_expr_binary_token9] = ACTIONS(982), - [aux_sym_expr_binary_token10] = ACTIONS(982), - [aux_sym_expr_binary_token11] = ACTIONS(982), - [aux_sym_expr_binary_token12] = ACTIONS(982), - [aux_sym_expr_binary_token13] = ACTIONS(982), - [aux_sym_expr_binary_token14] = ACTIONS(982), - [aux_sym_expr_binary_token15] = ACTIONS(982), - [aux_sym_expr_binary_token16] = ACTIONS(982), - [aux_sym_expr_binary_token17] = ACTIONS(982), - [aux_sym_expr_binary_token18] = ACTIONS(982), - [aux_sym_expr_binary_token19] = ACTIONS(982), - [aux_sym_expr_binary_token20] = ACTIONS(982), - [aux_sym_expr_binary_token21] = ACTIONS(982), - [aux_sym_expr_binary_token22] = ACTIONS(982), - [aux_sym_expr_binary_token23] = ACTIONS(982), - [aux_sym_expr_binary_token24] = ACTIONS(982), - [aux_sym_expr_binary_token25] = ACTIONS(982), - [aux_sym_expr_binary_token26] = ACTIONS(982), - [aux_sym_expr_binary_token27] = ACTIONS(982), - [aux_sym_expr_binary_token28] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(982), - [anon_sym_DOT_DOT2] = ACTIONS(980), - [anon_sym_DOT] = ACTIONS(980), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(982), - [anon_sym_DOT_DOT_LT2] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(982), - [aux_sym__val_number_decimal_token1] = ACTIONS(980), - [aux_sym__val_number_decimal_token2] = ACTIONS(982), - [aux_sym__val_number_decimal_token3] = ACTIONS(982), - [aux_sym__val_number_decimal_token4] = ACTIONS(982), - [aux_sym__val_number_token1] = ACTIONS(982), - [aux_sym__val_number_token2] = ACTIONS(982), - [aux_sym__val_number_token3] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(982), - [sym__str_single_quotes] = ACTIONS(982), - [sym__str_back_ticks] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(982), - [aux_sym_record_entry_token1] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_err_GT] = ACTIONS(980), - [anon_sym_out_GT] = ACTIONS(980), - [anon_sym_e_GT] = ACTIONS(980), - [anon_sym_o_GT] = ACTIONS(980), - [anon_sym_err_PLUSout_GT] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT] = ACTIONS(980), - [anon_sym_o_PLUSe_GT] = ACTIONS(980), - [anon_sym_e_PLUSo_GT] = ACTIONS(980), - [anon_sym_err_GT_GT] = ACTIONS(982), - [anon_sym_out_GT_GT] = ACTIONS(982), - [anon_sym_e_GT_GT] = ACTIONS(982), - [anon_sym_o_GT_GT] = ACTIONS(982), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(982), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(982), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(982), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(982), - [anon_sym_POUND] = ACTIONS(247), - }, - [150] = { - [sym_comment] = STATE(150), - [anon_sym_export] = ACTIONS(986), - [anon_sym_alias] = ACTIONS(986), - [anon_sym_EQ] = ACTIONS(986), - [anon_sym_let] = ACTIONS(986), - [anon_sym_let_DASHenv] = ACTIONS(986), - [anon_sym_mut] = ACTIONS(986), - [anon_sym_const] = ACTIONS(986), - [anon_sym_PLUS_EQ] = ACTIONS(988), - [anon_sym_DASH_EQ] = ACTIONS(988), - [anon_sym_STAR_EQ] = ACTIONS(988), - [anon_sym_SLASH_EQ] = ACTIONS(988), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(988), - [aux_sym_cmd_identifier_token1] = ACTIONS(986), - [aux_sym_cmd_identifier_token2] = ACTIONS(986), - [aux_sym_cmd_identifier_token3] = ACTIONS(986), - [aux_sym_cmd_identifier_token4] = ACTIONS(986), - [aux_sym_cmd_identifier_token5] = ACTIONS(986), - [aux_sym_cmd_identifier_token6] = ACTIONS(986), - [aux_sym_cmd_identifier_token7] = ACTIONS(986), - [aux_sym_cmd_identifier_token8] = ACTIONS(986), - [aux_sym_cmd_identifier_token9] = ACTIONS(986), - [aux_sym_cmd_identifier_token10] = ACTIONS(986), - [aux_sym_cmd_identifier_token11] = ACTIONS(986), - [aux_sym_cmd_identifier_token12] = ACTIONS(986), - [aux_sym_cmd_identifier_token13] = ACTIONS(986), - [aux_sym_cmd_identifier_token14] = ACTIONS(986), - [aux_sym_cmd_identifier_token15] = ACTIONS(986), - [aux_sym_cmd_identifier_token16] = ACTIONS(986), - [aux_sym_cmd_identifier_token17] = ACTIONS(986), - [aux_sym_cmd_identifier_token18] = ACTIONS(986), - [aux_sym_cmd_identifier_token19] = ACTIONS(986), - [aux_sym_cmd_identifier_token20] = ACTIONS(986), - [aux_sym_cmd_identifier_token21] = ACTIONS(986), - [aux_sym_cmd_identifier_token22] = ACTIONS(986), - [aux_sym_cmd_identifier_token23] = ACTIONS(986), - [aux_sym_cmd_identifier_token24] = ACTIONS(986), - [aux_sym_cmd_identifier_token25] = ACTIONS(986), - [aux_sym_cmd_identifier_token26] = ACTIONS(986), - [aux_sym_cmd_identifier_token27] = ACTIONS(986), - [aux_sym_cmd_identifier_token28] = ACTIONS(986), - [aux_sym_cmd_identifier_token29] = ACTIONS(986), - [aux_sym_cmd_identifier_token30] = ACTIONS(986), - [aux_sym_cmd_identifier_token31] = ACTIONS(986), - [aux_sym_cmd_identifier_token32] = ACTIONS(986), - [aux_sym_cmd_identifier_token33] = ACTIONS(986), - [aux_sym_cmd_identifier_token34] = ACTIONS(986), - [aux_sym_cmd_identifier_token35] = ACTIONS(986), - [aux_sym_cmd_identifier_token36] = ACTIONS(986), - [anon_sym_true] = ACTIONS(988), - [anon_sym_false] = ACTIONS(988), - [anon_sym_null] = ACTIONS(988), - [aux_sym_cmd_identifier_token38] = ACTIONS(986), - [aux_sym_cmd_identifier_token39] = ACTIONS(988), - [aux_sym_cmd_identifier_token40] = ACTIONS(988), - [sym__newline] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_PIPE] = ACTIONS(988), - [anon_sym_err_GT_PIPE] = ACTIONS(988), - [anon_sym_out_GT_PIPE] = ACTIONS(988), - [anon_sym_e_GT_PIPE] = ACTIONS(988), - [anon_sym_o_GT_PIPE] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(988), - [anon_sym_def] = ACTIONS(986), - [anon_sym_export_DASHenv] = ACTIONS(986), - [anon_sym_extern] = ACTIONS(986), - [anon_sym_module] = ACTIONS(986), - [anon_sym_use] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(988), - [anon_sym_COMMA] = ACTIONS(988), - [anon_sym_DOLLAR] = ACTIONS(988), - [anon_sym_error] = ACTIONS(986), - [anon_sym_list] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_break] = ACTIONS(986), - [anon_sym_continue] = ACTIONS(986), - [anon_sym_for] = ACTIONS(986), - [anon_sym_in] = ACTIONS(986), - [anon_sym_loop] = ACTIONS(986), - [anon_sym_make] = ACTIONS(986), - [anon_sym_while] = ACTIONS(986), - [anon_sym_do] = ACTIONS(986), - [anon_sym_if] = ACTIONS(986), - [anon_sym_else] = ACTIONS(986), - [anon_sym_match] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(988), - [anon_sym_try] = ACTIONS(986), - [anon_sym_catch] = ACTIONS(986), - [anon_sym_return] = ACTIONS(986), - [anon_sym_source] = ACTIONS(986), - [anon_sym_source_DASHenv] = ACTIONS(986), - [anon_sym_register] = ACTIONS(986), - [anon_sym_hide] = ACTIONS(986), - [anon_sym_hide_DASHenv] = ACTIONS(986), - [anon_sym_overlay] = ACTIONS(986), - [anon_sym_new] = ACTIONS(986), - [anon_sym_as] = ACTIONS(986), - [aux_sym_expr_binary_token1] = ACTIONS(988), - [aux_sym_expr_binary_token2] = ACTIONS(988), - [aux_sym_expr_binary_token3] = ACTIONS(988), - [aux_sym_expr_binary_token4] = ACTIONS(988), - [aux_sym_expr_binary_token5] = ACTIONS(988), - [aux_sym_expr_binary_token6] = ACTIONS(988), - [aux_sym_expr_binary_token7] = ACTIONS(988), - [aux_sym_expr_binary_token8] = ACTIONS(988), - [aux_sym_expr_binary_token9] = ACTIONS(988), - [aux_sym_expr_binary_token10] = ACTIONS(988), - [aux_sym_expr_binary_token11] = ACTIONS(988), - [aux_sym_expr_binary_token12] = ACTIONS(988), - [aux_sym_expr_binary_token13] = ACTIONS(988), - [aux_sym_expr_binary_token14] = ACTIONS(988), - [aux_sym_expr_binary_token15] = ACTIONS(988), - [aux_sym_expr_binary_token16] = ACTIONS(988), - [aux_sym_expr_binary_token17] = ACTIONS(988), - [aux_sym_expr_binary_token18] = ACTIONS(988), - [aux_sym_expr_binary_token19] = ACTIONS(988), - [aux_sym_expr_binary_token20] = ACTIONS(988), - [aux_sym_expr_binary_token21] = ACTIONS(988), - [aux_sym_expr_binary_token22] = ACTIONS(988), - [aux_sym_expr_binary_token23] = ACTIONS(988), - [aux_sym_expr_binary_token24] = ACTIONS(988), - [aux_sym_expr_binary_token25] = ACTIONS(988), - [aux_sym_expr_binary_token26] = ACTIONS(988), - [aux_sym_expr_binary_token27] = ACTIONS(988), - [aux_sym_expr_binary_token28] = ACTIONS(988), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(988), - [anon_sym_DOT_DOT2] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(986), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), - [anon_sym_DOT_DOT_LT2] = ACTIONS(988), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(988), - [aux_sym__val_number_decimal_token1] = ACTIONS(986), - [aux_sym__val_number_decimal_token2] = ACTIONS(988), - [aux_sym__val_number_decimal_token3] = ACTIONS(988), - [aux_sym__val_number_decimal_token4] = ACTIONS(988), - [aux_sym__val_number_token1] = ACTIONS(988), - [aux_sym__val_number_token2] = ACTIONS(988), - [aux_sym__val_number_token3] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym__str_single_quotes] = ACTIONS(988), - [sym__str_back_ticks] = ACTIONS(988), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(988), - [aux_sym_record_entry_token1] = ACTIONS(988), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_err_GT] = ACTIONS(986), - [anon_sym_out_GT] = ACTIONS(986), - [anon_sym_e_GT] = ACTIONS(986), - [anon_sym_o_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT] = ACTIONS(986), - [anon_sym_err_GT_GT] = ACTIONS(988), - [anon_sym_out_GT_GT] = ACTIONS(988), - [anon_sym_e_GT_GT] = ACTIONS(988), - [anon_sym_o_GT_GT] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), - [anon_sym_POUND] = ACTIONS(247), - }, - [151] = { - [sym_comment] = STATE(151), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_EQ] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(992), - [anon_sym_DASH_EQ] = ACTIONS(992), - [anon_sym_STAR_EQ] = ACTIONS(992), - [anon_sym_SLASH_EQ] = ACTIONS(992), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(992), - [aux_sym_cmd_identifier_token1] = ACTIONS(990), - [aux_sym_cmd_identifier_token2] = ACTIONS(990), - [aux_sym_cmd_identifier_token3] = ACTIONS(990), - [aux_sym_cmd_identifier_token4] = ACTIONS(990), - [aux_sym_cmd_identifier_token5] = ACTIONS(990), - [aux_sym_cmd_identifier_token6] = ACTIONS(990), - [aux_sym_cmd_identifier_token7] = ACTIONS(990), - [aux_sym_cmd_identifier_token8] = ACTIONS(990), - [aux_sym_cmd_identifier_token9] = ACTIONS(990), - [aux_sym_cmd_identifier_token10] = ACTIONS(990), - [aux_sym_cmd_identifier_token11] = ACTIONS(990), - [aux_sym_cmd_identifier_token12] = ACTIONS(990), - [aux_sym_cmd_identifier_token13] = ACTIONS(990), - [aux_sym_cmd_identifier_token14] = ACTIONS(990), - [aux_sym_cmd_identifier_token15] = ACTIONS(990), - [aux_sym_cmd_identifier_token16] = ACTIONS(990), - [aux_sym_cmd_identifier_token17] = ACTIONS(990), - [aux_sym_cmd_identifier_token18] = ACTIONS(990), - [aux_sym_cmd_identifier_token19] = ACTIONS(990), - [aux_sym_cmd_identifier_token20] = ACTIONS(990), - [aux_sym_cmd_identifier_token21] = ACTIONS(990), - [aux_sym_cmd_identifier_token22] = ACTIONS(990), - [aux_sym_cmd_identifier_token23] = ACTIONS(990), - [aux_sym_cmd_identifier_token24] = ACTIONS(990), - [aux_sym_cmd_identifier_token25] = ACTIONS(990), - [aux_sym_cmd_identifier_token26] = ACTIONS(990), - [aux_sym_cmd_identifier_token27] = ACTIONS(990), - [aux_sym_cmd_identifier_token28] = ACTIONS(990), - [aux_sym_cmd_identifier_token29] = ACTIONS(990), - [aux_sym_cmd_identifier_token30] = ACTIONS(990), - [aux_sym_cmd_identifier_token31] = ACTIONS(990), - [aux_sym_cmd_identifier_token32] = ACTIONS(990), - [aux_sym_cmd_identifier_token33] = ACTIONS(990), - [aux_sym_cmd_identifier_token34] = ACTIONS(990), - [aux_sym_cmd_identifier_token35] = ACTIONS(990), - [aux_sym_cmd_identifier_token36] = ACTIONS(990), - [anon_sym_true] = ACTIONS(992), - [anon_sym_false] = ACTIONS(992), - [anon_sym_null] = ACTIONS(992), - [aux_sym_cmd_identifier_token38] = ACTIONS(990), - [aux_sym_cmd_identifier_token39] = ACTIONS(992), - [aux_sym_cmd_identifier_token40] = ACTIONS(992), - [sym__newline] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(992), - [anon_sym_err_GT_PIPE] = ACTIONS(992), - [anon_sym_out_GT_PIPE] = ACTIONS(992), - [anon_sym_e_GT_PIPE] = ACTIONS(992), - [anon_sym_o_GT_PIPE] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_COMMA] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(992), - [anon_sym_error] = ACTIONS(990), - [anon_sym_list] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_in] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_make] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_try] = ACTIONS(990), - [anon_sym_catch] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_new] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [aux_sym_expr_binary_token1] = ACTIONS(992), - [aux_sym_expr_binary_token2] = ACTIONS(992), - [aux_sym_expr_binary_token3] = ACTIONS(992), - [aux_sym_expr_binary_token4] = ACTIONS(992), - [aux_sym_expr_binary_token5] = ACTIONS(992), - [aux_sym_expr_binary_token6] = ACTIONS(992), - [aux_sym_expr_binary_token7] = ACTIONS(992), - [aux_sym_expr_binary_token8] = ACTIONS(992), - [aux_sym_expr_binary_token9] = ACTIONS(992), - [aux_sym_expr_binary_token10] = ACTIONS(992), - [aux_sym_expr_binary_token11] = ACTIONS(992), - [aux_sym_expr_binary_token12] = ACTIONS(992), - [aux_sym_expr_binary_token13] = ACTIONS(992), - [aux_sym_expr_binary_token14] = ACTIONS(992), - [aux_sym_expr_binary_token15] = ACTIONS(992), - [aux_sym_expr_binary_token16] = ACTIONS(992), - [aux_sym_expr_binary_token17] = ACTIONS(992), - [aux_sym_expr_binary_token18] = ACTIONS(992), - [aux_sym_expr_binary_token19] = ACTIONS(992), - [aux_sym_expr_binary_token20] = ACTIONS(992), - [aux_sym_expr_binary_token21] = ACTIONS(992), - [aux_sym_expr_binary_token22] = ACTIONS(992), - [aux_sym_expr_binary_token23] = ACTIONS(992), - [aux_sym_expr_binary_token24] = ACTIONS(992), - [aux_sym_expr_binary_token25] = ACTIONS(992), - [aux_sym_expr_binary_token26] = ACTIONS(992), - [aux_sym_expr_binary_token27] = ACTIONS(992), - [aux_sym_expr_binary_token28] = ACTIONS(992), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(992), - [anon_sym_DOT_DOT2] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), - [anon_sym_DOT_DOT_LT2] = ACTIONS(992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(992), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(992), - [aux_sym__val_number_decimal_token3] = ACTIONS(992), - [aux_sym__val_number_decimal_token4] = ACTIONS(992), - [aux_sym__val_number_token1] = ACTIONS(992), - [aux_sym__val_number_token2] = ACTIONS(992), - [aux_sym__val_number_token3] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(992), - [aux_sym_record_entry_token1] = ACTIONS(992), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_err_GT] = ACTIONS(990), - [anon_sym_out_GT] = ACTIONS(990), - [anon_sym_e_GT] = ACTIONS(990), - [anon_sym_o_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT] = ACTIONS(990), - [anon_sym_err_GT_GT] = ACTIONS(992), - [anon_sym_out_GT_GT] = ACTIONS(992), - [anon_sym_e_GT_GT] = ACTIONS(992), - [anon_sym_o_GT_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(247), - }, - [152] = { - [sym_comment] = STATE(152), - [anon_sym_export] = ACTIONS(994), - [anon_sym_alias] = ACTIONS(994), - [anon_sym_EQ] = ACTIONS(994), - [anon_sym_let] = ACTIONS(994), - [anon_sym_let_DASHenv] = ACTIONS(994), - [anon_sym_mut] = ACTIONS(994), - [anon_sym_const] = ACTIONS(994), - [anon_sym_PLUS_EQ] = ACTIONS(996), - [anon_sym_DASH_EQ] = ACTIONS(996), - [anon_sym_STAR_EQ] = ACTIONS(996), - [anon_sym_SLASH_EQ] = ACTIONS(996), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(996), - [aux_sym_cmd_identifier_token1] = ACTIONS(994), - [aux_sym_cmd_identifier_token2] = ACTIONS(994), - [aux_sym_cmd_identifier_token3] = ACTIONS(994), - [aux_sym_cmd_identifier_token4] = ACTIONS(994), - [aux_sym_cmd_identifier_token5] = ACTIONS(994), - [aux_sym_cmd_identifier_token6] = ACTIONS(994), - [aux_sym_cmd_identifier_token7] = ACTIONS(994), - [aux_sym_cmd_identifier_token8] = ACTIONS(994), - [aux_sym_cmd_identifier_token9] = ACTIONS(994), - [aux_sym_cmd_identifier_token10] = ACTIONS(994), - [aux_sym_cmd_identifier_token11] = ACTIONS(994), - [aux_sym_cmd_identifier_token12] = ACTIONS(994), - [aux_sym_cmd_identifier_token13] = ACTIONS(994), - [aux_sym_cmd_identifier_token14] = ACTIONS(994), - [aux_sym_cmd_identifier_token15] = ACTIONS(994), - [aux_sym_cmd_identifier_token16] = ACTIONS(994), - [aux_sym_cmd_identifier_token17] = ACTIONS(994), - [aux_sym_cmd_identifier_token18] = ACTIONS(994), - [aux_sym_cmd_identifier_token19] = ACTIONS(994), - [aux_sym_cmd_identifier_token20] = ACTIONS(994), - [aux_sym_cmd_identifier_token21] = ACTIONS(994), - [aux_sym_cmd_identifier_token22] = ACTIONS(994), - [aux_sym_cmd_identifier_token23] = ACTIONS(994), - [aux_sym_cmd_identifier_token24] = ACTIONS(994), - [aux_sym_cmd_identifier_token25] = ACTIONS(994), - [aux_sym_cmd_identifier_token26] = ACTIONS(994), - [aux_sym_cmd_identifier_token27] = ACTIONS(994), - [aux_sym_cmd_identifier_token28] = ACTIONS(994), - [aux_sym_cmd_identifier_token29] = ACTIONS(994), - [aux_sym_cmd_identifier_token30] = ACTIONS(994), - [aux_sym_cmd_identifier_token31] = ACTIONS(994), - [aux_sym_cmd_identifier_token32] = ACTIONS(994), - [aux_sym_cmd_identifier_token33] = ACTIONS(994), - [aux_sym_cmd_identifier_token34] = ACTIONS(994), - [aux_sym_cmd_identifier_token35] = ACTIONS(994), - [aux_sym_cmd_identifier_token36] = ACTIONS(994), - [anon_sym_true] = ACTIONS(996), - [anon_sym_false] = ACTIONS(996), - [anon_sym_null] = ACTIONS(996), - [aux_sym_cmd_identifier_token38] = ACTIONS(994), - [aux_sym_cmd_identifier_token39] = ACTIONS(996), - [aux_sym_cmd_identifier_token40] = ACTIONS(996), - [sym__newline] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_def] = ACTIONS(994), - [anon_sym_export_DASHenv] = ACTIONS(994), - [anon_sym_extern] = ACTIONS(994), - [anon_sym_module] = ACTIONS(994), - [anon_sym_use] = ACTIONS(994), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_COMMA] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(996), - [anon_sym_error] = ACTIONS(994), - [anon_sym_list] = ACTIONS(994), - [anon_sym_DASH] = ACTIONS(994), - [anon_sym_break] = ACTIONS(994), - [anon_sym_continue] = ACTIONS(994), - [anon_sym_for] = ACTIONS(994), - [anon_sym_in] = ACTIONS(994), - [anon_sym_loop] = ACTIONS(994), - [anon_sym_make] = ACTIONS(994), - [anon_sym_while] = ACTIONS(994), - [anon_sym_do] = ACTIONS(994), - [anon_sym_if] = ACTIONS(994), - [anon_sym_else] = ACTIONS(994), - [anon_sym_match] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_try] = ACTIONS(994), - [anon_sym_catch] = ACTIONS(994), - [anon_sym_return] = ACTIONS(994), - [anon_sym_source] = ACTIONS(994), - [anon_sym_source_DASHenv] = ACTIONS(994), - [anon_sym_register] = ACTIONS(994), - [anon_sym_hide] = ACTIONS(994), - [anon_sym_hide_DASHenv] = ACTIONS(994), - [anon_sym_overlay] = ACTIONS(994), - [anon_sym_new] = ACTIONS(994), - [anon_sym_as] = ACTIONS(994), - [aux_sym_expr_binary_token1] = ACTIONS(996), - [aux_sym_expr_binary_token2] = ACTIONS(996), - [aux_sym_expr_binary_token3] = ACTIONS(996), - [aux_sym_expr_binary_token4] = ACTIONS(996), - [aux_sym_expr_binary_token5] = ACTIONS(996), - [aux_sym_expr_binary_token6] = ACTIONS(996), - [aux_sym_expr_binary_token7] = ACTIONS(996), - [aux_sym_expr_binary_token8] = ACTIONS(996), - [aux_sym_expr_binary_token9] = ACTIONS(996), - [aux_sym_expr_binary_token10] = ACTIONS(996), - [aux_sym_expr_binary_token11] = ACTIONS(996), - [aux_sym_expr_binary_token12] = ACTIONS(996), - [aux_sym_expr_binary_token13] = ACTIONS(996), - [aux_sym_expr_binary_token14] = ACTIONS(996), - [aux_sym_expr_binary_token15] = ACTIONS(996), - [aux_sym_expr_binary_token16] = ACTIONS(996), - [aux_sym_expr_binary_token17] = ACTIONS(996), - [aux_sym_expr_binary_token18] = ACTIONS(996), - [aux_sym_expr_binary_token19] = ACTIONS(996), - [aux_sym_expr_binary_token20] = ACTIONS(996), - [aux_sym_expr_binary_token21] = ACTIONS(996), - [aux_sym_expr_binary_token22] = ACTIONS(996), - [aux_sym_expr_binary_token23] = ACTIONS(996), - [aux_sym_expr_binary_token24] = ACTIONS(996), - [aux_sym_expr_binary_token25] = ACTIONS(996), - [aux_sym_expr_binary_token26] = ACTIONS(996), - [aux_sym_expr_binary_token27] = ACTIONS(996), - [aux_sym_expr_binary_token28] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(996), - [anon_sym_DOT_DOT2] = ACTIONS(994), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), - [anon_sym_DOT_DOT_LT2] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(996), - [aux_sym__val_number_decimal_token1] = ACTIONS(994), - [aux_sym__val_number_decimal_token2] = ACTIONS(996), - [aux_sym__val_number_decimal_token3] = ACTIONS(996), - [aux_sym__val_number_decimal_token4] = ACTIONS(996), - [aux_sym__val_number_token1] = ACTIONS(996), - [aux_sym__val_number_token2] = ACTIONS(996), - [aux_sym__val_number_token3] = ACTIONS(996), - [anon_sym_DQUOTE] = ACTIONS(996), + [aux_sym__val_number_token1] = ACTIONS(981), + [aux_sym__val_number_token2] = ACTIONS(981), + [aux_sym__val_number_token3] = ACTIONS(981), + [anon_sym_0b] = ACTIONS(984), + [anon_sym_0o] = ACTIONS(987), + [anon_sym_0x] = ACTIONS(987), + [sym_val_date] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(993), [sym__str_single_quotes] = ACTIONS(996), [sym__str_back_ticks] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(996), - [aux_sym_record_entry_token1] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(994), - [anon_sym_err_GT] = ACTIONS(994), - [anon_sym_out_GT] = ACTIONS(994), - [anon_sym_e_GT] = ACTIONS(994), - [anon_sym_o_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT] = ACTIONS(994), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(999), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [aux_sym_env_var_token1] = ACTIONS(1005), + [anon_sym_CARET] = ACTIONS(1008), [anon_sym_POUND] = ACTIONS(247), }, - [153] = { - [sym_comment] = STATE(153), - [anon_sym_export] = ACTIONS(998), - [anon_sym_alias] = ACTIONS(998), - [anon_sym_EQ] = ACTIONS(1000), - [anon_sym_let] = ACTIONS(998), - [anon_sym_let_DASHenv] = ACTIONS(998), - [anon_sym_mut] = ACTIONS(998), - [anon_sym_const] = ACTIONS(998), - [anon_sym_PLUS_EQ] = ACTIONS(1002), - [anon_sym_DASH_EQ] = ACTIONS(1002), - [anon_sym_STAR_EQ] = ACTIONS(1002), - [anon_sym_SLASH_EQ] = ACTIONS(1002), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1002), - [aux_sym_cmd_identifier_token1] = ACTIONS(998), - [aux_sym_cmd_identifier_token2] = ACTIONS(998), - [aux_sym_cmd_identifier_token3] = ACTIONS(998), - [aux_sym_cmd_identifier_token4] = ACTIONS(998), - [aux_sym_cmd_identifier_token5] = ACTIONS(998), - [aux_sym_cmd_identifier_token6] = ACTIONS(998), - [aux_sym_cmd_identifier_token7] = ACTIONS(998), - [aux_sym_cmd_identifier_token8] = ACTIONS(998), - [aux_sym_cmd_identifier_token9] = ACTIONS(998), - [aux_sym_cmd_identifier_token10] = ACTIONS(998), - [aux_sym_cmd_identifier_token11] = ACTIONS(998), - [aux_sym_cmd_identifier_token12] = ACTIONS(998), - [aux_sym_cmd_identifier_token13] = ACTIONS(998), - [aux_sym_cmd_identifier_token14] = ACTIONS(998), - [aux_sym_cmd_identifier_token15] = ACTIONS(998), - [aux_sym_cmd_identifier_token16] = ACTIONS(998), - [aux_sym_cmd_identifier_token17] = ACTIONS(998), - [aux_sym_cmd_identifier_token18] = ACTIONS(998), - [aux_sym_cmd_identifier_token19] = ACTIONS(998), - [aux_sym_cmd_identifier_token20] = ACTIONS(998), - [aux_sym_cmd_identifier_token21] = ACTIONS(998), - [aux_sym_cmd_identifier_token22] = ACTIONS(998), - [aux_sym_cmd_identifier_token23] = ACTIONS(998), - [aux_sym_cmd_identifier_token24] = ACTIONS(998), - [aux_sym_cmd_identifier_token25] = ACTIONS(998), - [aux_sym_cmd_identifier_token26] = ACTIONS(998), - [aux_sym_cmd_identifier_token27] = ACTIONS(998), - [aux_sym_cmd_identifier_token28] = ACTIONS(998), - [aux_sym_cmd_identifier_token29] = ACTIONS(998), - [aux_sym_cmd_identifier_token30] = ACTIONS(998), - [aux_sym_cmd_identifier_token31] = ACTIONS(998), - [aux_sym_cmd_identifier_token32] = ACTIONS(998), - [aux_sym_cmd_identifier_token33] = ACTIONS(998), - [aux_sym_cmd_identifier_token34] = ACTIONS(998), - [aux_sym_cmd_identifier_token35] = ACTIONS(998), - [aux_sym_cmd_identifier_token36] = ACTIONS(998), - [anon_sym_true] = ACTIONS(1004), - [anon_sym_false] = ACTIONS(1004), - [anon_sym_null] = ACTIONS(1004), - [aux_sym_cmd_identifier_token38] = ACTIONS(998), - [aux_sym_cmd_identifier_token39] = ACTIONS(1004), - [aux_sym_cmd_identifier_token40] = ACTIONS(1004), - [sym__newline] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_err_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_GT_PIPE] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), - [anon_sym_def] = ACTIONS(998), - [anon_sym_export_DASHenv] = ACTIONS(998), - [anon_sym_extern] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_use] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1004), - [anon_sym_COMMA] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_error] = ACTIONS(998), - [anon_sym_list] = ACTIONS(998), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_break] = ACTIONS(998), - [anon_sym_continue] = ACTIONS(998), - [anon_sym_for] = ACTIONS(998), - [anon_sym_in] = ACTIONS(998), - [anon_sym_loop] = ACTIONS(998), - [anon_sym_make] = ACTIONS(998), - [anon_sym_while] = ACTIONS(998), - [anon_sym_do] = ACTIONS(998), - [anon_sym_if] = ACTIONS(998), - [anon_sym_else] = ACTIONS(998), - [anon_sym_match] = ACTIONS(998), - [anon_sym_RBRACE] = ACTIONS(1012), - [anon_sym_try] = ACTIONS(998), - [anon_sym_catch] = ACTIONS(998), - [anon_sym_return] = ACTIONS(998), - [anon_sym_source] = ACTIONS(998), - [anon_sym_source_DASHenv] = ACTIONS(998), - [anon_sym_register] = ACTIONS(998), - [anon_sym_hide] = ACTIONS(998), - [anon_sym_hide_DASHenv] = ACTIONS(998), - [anon_sym_overlay] = ACTIONS(998), - [anon_sym_new] = ACTIONS(998), - [anon_sym_as] = ACTIONS(998), - [aux_sym_expr_binary_token1] = ACTIONS(1008), - [aux_sym_expr_binary_token2] = ACTIONS(1008), - [aux_sym_expr_binary_token3] = ACTIONS(1008), - [aux_sym_expr_binary_token4] = ACTIONS(1008), - [aux_sym_expr_binary_token5] = ACTIONS(1008), - [aux_sym_expr_binary_token6] = ACTIONS(1008), - [aux_sym_expr_binary_token7] = ACTIONS(1008), - [aux_sym_expr_binary_token8] = ACTIONS(1008), - [aux_sym_expr_binary_token9] = ACTIONS(1008), - [aux_sym_expr_binary_token10] = ACTIONS(1008), - [aux_sym_expr_binary_token11] = ACTIONS(1008), - [aux_sym_expr_binary_token12] = ACTIONS(1008), - [aux_sym_expr_binary_token13] = ACTIONS(1008), - [aux_sym_expr_binary_token14] = ACTIONS(1008), - [aux_sym_expr_binary_token15] = ACTIONS(1008), - [aux_sym_expr_binary_token16] = ACTIONS(1008), - [aux_sym_expr_binary_token17] = ACTIONS(1008), - [aux_sym_expr_binary_token18] = ACTIONS(1008), - [aux_sym_expr_binary_token19] = ACTIONS(1008), - [aux_sym_expr_binary_token20] = ACTIONS(1008), - [aux_sym_expr_binary_token21] = ACTIONS(1008), - [aux_sym_expr_binary_token22] = ACTIONS(1008), - [aux_sym_expr_binary_token23] = ACTIONS(1008), - [aux_sym_expr_binary_token24] = ACTIONS(1008), - [aux_sym_expr_binary_token25] = ACTIONS(1008), - [aux_sym_expr_binary_token26] = ACTIONS(1008), - [aux_sym_expr_binary_token27] = ACTIONS(1008), - [aux_sym_expr_binary_token28] = ACTIONS(1008), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1004), - [anon_sym_DOT_DOT2] = ACTIONS(1015), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1017), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1004), - [aux_sym__val_number_decimal_token1] = ACTIONS(998), - [aux_sym__val_number_decimal_token2] = ACTIONS(1004), - [aux_sym__val_number_decimal_token3] = ACTIONS(1004), - [aux_sym__val_number_decimal_token4] = ACTIONS(1004), - [aux_sym__val_number_token1] = ACTIONS(1004), - [aux_sym__val_number_token2] = ACTIONS(1004), - [aux_sym__val_number_token3] = ACTIONS(1004), - [anon_sym_DQUOTE] = ACTIONS(1004), - [sym__str_single_quotes] = ACTIONS(1004), - [sym__str_back_ticks] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1004), + [134] = { + [sym_cell_path] = STATE(145), + [sym_path] = STATE(143), + [sym_comment] = STATE(134), + [aux_sym_cell_path_repeat1] = STATE(135), + [anon_sym_export] = ACTIONS(1011), + [anon_sym_alias] = ACTIONS(1011), + [anon_sym_EQ] = ACTIONS(1011), + [anon_sym_let] = ACTIONS(1011), + [anon_sym_let_DASHenv] = ACTIONS(1011), + [anon_sym_mut] = ACTIONS(1011), + [anon_sym_const] = ACTIONS(1011), + [anon_sym_PLUS_EQ] = ACTIONS(1013), + [anon_sym_DASH_EQ] = ACTIONS(1013), + [anon_sym_STAR_EQ] = ACTIONS(1013), + [anon_sym_SLASH_EQ] = ACTIONS(1013), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1013), + [aux_sym_cmd_identifier_token1] = ACTIONS(1011), + [aux_sym_cmd_identifier_token2] = ACTIONS(1011), + [aux_sym_cmd_identifier_token3] = ACTIONS(1011), + [aux_sym_cmd_identifier_token4] = ACTIONS(1011), + [aux_sym_cmd_identifier_token5] = ACTIONS(1011), + [aux_sym_cmd_identifier_token6] = ACTIONS(1011), + [aux_sym_cmd_identifier_token7] = ACTIONS(1011), + [aux_sym_cmd_identifier_token8] = ACTIONS(1011), + [aux_sym_cmd_identifier_token9] = ACTIONS(1011), + [aux_sym_cmd_identifier_token10] = ACTIONS(1011), + [aux_sym_cmd_identifier_token11] = ACTIONS(1011), + [aux_sym_cmd_identifier_token12] = ACTIONS(1011), + [aux_sym_cmd_identifier_token13] = ACTIONS(1011), + [aux_sym_cmd_identifier_token14] = ACTIONS(1011), + [aux_sym_cmd_identifier_token15] = ACTIONS(1011), + [aux_sym_cmd_identifier_token16] = ACTIONS(1011), + [aux_sym_cmd_identifier_token17] = ACTIONS(1011), + [aux_sym_cmd_identifier_token18] = ACTIONS(1011), + [aux_sym_cmd_identifier_token19] = ACTIONS(1011), + [aux_sym_cmd_identifier_token20] = ACTIONS(1011), + [aux_sym_cmd_identifier_token21] = ACTIONS(1011), + [aux_sym_cmd_identifier_token22] = ACTIONS(1011), + [aux_sym_cmd_identifier_token23] = ACTIONS(1011), + [aux_sym_cmd_identifier_token24] = ACTIONS(1011), + [aux_sym_cmd_identifier_token25] = ACTIONS(1011), + [aux_sym_cmd_identifier_token26] = ACTIONS(1011), + [aux_sym_cmd_identifier_token27] = ACTIONS(1011), + [aux_sym_cmd_identifier_token28] = ACTIONS(1011), + [aux_sym_cmd_identifier_token29] = ACTIONS(1011), + [aux_sym_cmd_identifier_token30] = ACTIONS(1011), + [aux_sym_cmd_identifier_token31] = ACTIONS(1011), + [aux_sym_cmd_identifier_token32] = ACTIONS(1011), + [aux_sym_cmd_identifier_token33] = ACTIONS(1011), + [aux_sym_cmd_identifier_token34] = ACTIONS(1011), + [aux_sym_cmd_identifier_token35] = ACTIONS(1011), + [aux_sym_cmd_identifier_token36] = ACTIONS(1011), + [anon_sym_true] = ACTIONS(1013), + [anon_sym_false] = ACTIONS(1013), + [anon_sym_null] = ACTIONS(1013), + [aux_sym_cmd_identifier_token38] = ACTIONS(1011), + [aux_sym_cmd_identifier_token39] = ACTIONS(1013), + [aux_sym_cmd_identifier_token40] = ACTIONS(1013), + [sym__newline] = ACTIONS(1011), + [anon_sym_SEMI] = ACTIONS(1013), + [anon_sym_PIPE] = ACTIONS(1013), + [anon_sym_err_GT_PIPE] = ACTIONS(1013), + [anon_sym_out_GT_PIPE] = ACTIONS(1013), + [anon_sym_e_GT_PIPE] = ACTIONS(1013), + [anon_sym_o_GT_PIPE] = ACTIONS(1013), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1013), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1013), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1013), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1013), + [anon_sym_def] = ACTIONS(1011), + [anon_sym_export_DASHenv] = ACTIONS(1011), + [anon_sym_extern] = ACTIONS(1011), + [anon_sym_module] = ACTIONS(1011), + [anon_sym_use] = ACTIONS(1011), + [anon_sym_LPAREN] = ACTIONS(1013), + [anon_sym_COMMA] = ACTIONS(1013), + [anon_sym_DOLLAR] = ACTIONS(1013), + [anon_sym_error] = ACTIONS(1011), + [anon_sym_list] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_break] = ACTIONS(1011), + [anon_sym_continue] = ACTIONS(1011), + [anon_sym_for] = ACTIONS(1011), + [anon_sym_in] = ACTIONS(1011), + [anon_sym_loop] = ACTIONS(1011), + [anon_sym_make] = ACTIONS(1011), + [anon_sym_while] = ACTIONS(1011), + [anon_sym_do] = ACTIONS(1011), + [anon_sym_if] = ACTIONS(1011), + [anon_sym_else] = ACTIONS(1011), + [anon_sym_match] = ACTIONS(1011), + [anon_sym_RBRACE] = ACTIONS(1013), + [anon_sym_try] = ACTIONS(1011), + [anon_sym_catch] = ACTIONS(1011), + [anon_sym_return] = ACTIONS(1011), + [anon_sym_source] = ACTIONS(1011), + [anon_sym_source_DASHenv] = ACTIONS(1011), + [anon_sym_register] = ACTIONS(1011), + [anon_sym_hide] = ACTIONS(1011), + [anon_sym_hide_DASHenv] = ACTIONS(1011), + [anon_sym_overlay] = ACTIONS(1011), + [anon_sym_new] = ACTIONS(1011), + [anon_sym_as] = ACTIONS(1011), + [aux_sym_expr_binary_token1] = ACTIONS(1013), + [aux_sym_expr_binary_token2] = ACTIONS(1013), + [aux_sym_expr_binary_token3] = ACTIONS(1013), + [aux_sym_expr_binary_token4] = ACTIONS(1013), + [aux_sym_expr_binary_token5] = ACTIONS(1013), + [aux_sym_expr_binary_token6] = ACTIONS(1013), + [aux_sym_expr_binary_token7] = ACTIONS(1013), + [aux_sym_expr_binary_token8] = ACTIONS(1013), + [aux_sym_expr_binary_token9] = ACTIONS(1013), + [aux_sym_expr_binary_token10] = ACTIONS(1013), + [aux_sym_expr_binary_token11] = ACTIONS(1013), + [aux_sym_expr_binary_token12] = ACTIONS(1013), + [aux_sym_expr_binary_token13] = ACTIONS(1013), + [aux_sym_expr_binary_token14] = ACTIONS(1013), + [aux_sym_expr_binary_token15] = ACTIONS(1013), + [aux_sym_expr_binary_token16] = ACTIONS(1013), + [aux_sym_expr_binary_token17] = ACTIONS(1013), + [aux_sym_expr_binary_token18] = ACTIONS(1013), + [aux_sym_expr_binary_token19] = ACTIONS(1013), + [aux_sym_expr_binary_token20] = ACTIONS(1013), + [aux_sym_expr_binary_token21] = ACTIONS(1013), + [aux_sym_expr_binary_token22] = ACTIONS(1013), + [aux_sym_expr_binary_token23] = ACTIONS(1013), + [aux_sym_expr_binary_token24] = ACTIONS(1013), + [aux_sym_expr_binary_token25] = ACTIONS(1013), + [aux_sym_expr_binary_token26] = ACTIONS(1013), + [aux_sym_expr_binary_token27] = ACTIONS(1013), + [aux_sym_expr_binary_token28] = ACTIONS(1013), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1013), + [anon_sym_DOT_DOT2] = ACTIONS(1011), + [anon_sym_DOT] = ACTIONS(1015), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1013), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1013), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1013), + [aux_sym__val_number_decimal_token1] = ACTIONS(1011), + [aux_sym__val_number_decimal_token2] = ACTIONS(1013), + [aux_sym__val_number_decimal_token3] = ACTIONS(1013), + [aux_sym__val_number_decimal_token4] = ACTIONS(1013), + [aux_sym__val_number_token1] = ACTIONS(1013), + [aux_sym__val_number_token2] = ACTIONS(1013), + [aux_sym__val_number_token3] = ACTIONS(1013), + [anon_sym_DQUOTE] = ACTIONS(1013), + [sym__str_single_quotes] = ACTIONS(1013), + [sym__str_back_ticks] = ACTIONS(1013), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1013), + [aux_sym_record_entry_token1] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_err_GT] = ACTIONS(1011), + [anon_sym_out_GT] = ACTIONS(1011), + [anon_sym_e_GT] = ACTIONS(1011), + [anon_sym_o_GT] = ACTIONS(1011), + [anon_sym_err_PLUSout_GT] = ACTIONS(1011), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1011), + [anon_sym_o_PLUSe_GT] = ACTIONS(1011), + [anon_sym_e_PLUSo_GT] = ACTIONS(1011), + [anon_sym_err_GT_GT] = ACTIONS(1013), + [anon_sym_out_GT_GT] = ACTIONS(1013), + [anon_sym_e_GT_GT] = ACTIONS(1013), + [anon_sym_o_GT_GT] = ACTIONS(1013), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1013), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1013), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1013), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1013), + [anon_sym_POUND] = ACTIONS(247), + }, + [135] = { + [sym_path] = STATE(143), + [sym_comment] = STATE(135), + [aux_sym_cell_path_repeat1] = STATE(136), + [anon_sym_export] = ACTIONS(1017), + [anon_sym_alias] = ACTIONS(1017), + [anon_sym_EQ] = ACTIONS(1017), + [anon_sym_let] = ACTIONS(1017), + [anon_sym_let_DASHenv] = ACTIONS(1017), + [anon_sym_mut] = ACTIONS(1017), + [anon_sym_const] = ACTIONS(1017), + [anon_sym_PLUS_EQ] = ACTIONS(1019), + [anon_sym_DASH_EQ] = ACTIONS(1019), + [anon_sym_STAR_EQ] = ACTIONS(1019), + [anon_sym_SLASH_EQ] = ACTIONS(1019), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1019), + [aux_sym_cmd_identifier_token1] = ACTIONS(1017), + [aux_sym_cmd_identifier_token2] = ACTIONS(1017), + [aux_sym_cmd_identifier_token3] = ACTIONS(1017), + [aux_sym_cmd_identifier_token4] = ACTIONS(1017), + [aux_sym_cmd_identifier_token5] = ACTIONS(1017), + [aux_sym_cmd_identifier_token6] = ACTIONS(1017), + [aux_sym_cmd_identifier_token7] = ACTIONS(1017), + [aux_sym_cmd_identifier_token8] = ACTIONS(1017), + [aux_sym_cmd_identifier_token9] = ACTIONS(1017), + [aux_sym_cmd_identifier_token10] = ACTIONS(1017), + [aux_sym_cmd_identifier_token11] = ACTIONS(1017), + [aux_sym_cmd_identifier_token12] = ACTIONS(1017), + [aux_sym_cmd_identifier_token13] = ACTIONS(1017), + [aux_sym_cmd_identifier_token14] = ACTIONS(1017), + [aux_sym_cmd_identifier_token15] = ACTIONS(1017), + [aux_sym_cmd_identifier_token16] = ACTIONS(1017), + [aux_sym_cmd_identifier_token17] = ACTIONS(1017), + [aux_sym_cmd_identifier_token18] = ACTIONS(1017), + [aux_sym_cmd_identifier_token19] = ACTIONS(1017), + [aux_sym_cmd_identifier_token20] = ACTIONS(1017), + [aux_sym_cmd_identifier_token21] = ACTIONS(1017), + [aux_sym_cmd_identifier_token22] = ACTIONS(1017), + [aux_sym_cmd_identifier_token23] = ACTIONS(1017), + [aux_sym_cmd_identifier_token24] = ACTIONS(1017), + [aux_sym_cmd_identifier_token25] = ACTIONS(1017), + [aux_sym_cmd_identifier_token26] = ACTIONS(1017), + [aux_sym_cmd_identifier_token27] = ACTIONS(1017), + [aux_sym_cmd_identifier_token28] = ACTIONS(1017), + [aux_sym_cmd_identifier_token29] = ACTIONS(1017), + [aux_sym_cmd_identifier_token30] = ACTIONS(1017), + [aux_sym_cmd_identifier_token31] = ACTIONS(1017), + [aux_sym_cmd_identifier_token32] = ACTIONS(1017), + [aux_sym_cmd_identifier_token33] = ACTIONS(1017), + [aux_sym_cmd_identifier_token34] = ACTIONS(1017), + [aux_sym_cmd_identifier_token35] = ACTIONS(1017), + [aux_sym_cmd_identifier_token36] = ACTIONS(1017), + [anon_sym_true] = ACTIONS(1019), + [anon_sym_false] = ACTIONS(1019), + [anon_sym_null] = ACTIONS(1019), + [aux_sym_cmd_identifier_token38] = ACTIONS(1017), + [aux_sym_cmd_identifier_token39] = ACTIONS(1019), + [aux_sym_cmd_identifier_token40] = ACTIONS(1019), + [sym__newline] = ACTIONS(1017), + [anon_sym_SEMI] = ACTIONS(1019), + [anon_sym_PIPE] = ACTIONS(1019), + [anon_sym_err_GT_PIPE] = ACTIONS(1019), + [anon_sym_out_GT_PIPE] = ACTIONS(1019), + [anon_sym_e_GT_PIPE] = ACTIONS(1019), + [anon_sym_o_GT_PIPE] = ACTIONS(1019), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1019), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1019), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1019), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1019), + [anon_sym_def] = ACTIONS(1017), + [anon_sym_export_DASHenv] = ACTIONS(1017), + [anon_sym_extern] = ACTIONS(1017), + [anon_sym_module] = ACTIONS(1017), + [anon_sym_use] = ACTIONS(1017), + [anon_sym_LPAREN] = ACTIONS(1019), + [anon_sym_COMMA] = ACTIONS(1019), + [anon_sym_DOLLAR] = ACTIONS(1019), + [anon_sym_error] = ACTIONS(1017), + [anon_sym_list] = ACTIONS(1017), + [anon_sym_DASH] = ACTIONS(1017), + [anon_sym_break] = ACTIONS(1017), + [anon_sym_continue] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(1017), + [anon_sym_in] = ACTIONS(1017), + [anon_sym_loop] = ACTIONS(1017), + [anon_sym_make] = ACTIONS(1017), + [anon_sym_while] = ACTIONS(1017), + [anon_sym_do] = ACTIONS(1017), + [anon_sym_if] = ACTIONS(1017), + [anon_sym_else] = ACTIONS(1017), + [anon_sym_match] = ACTIONS(1017), + [anon_sym_RBRACE] = ACTIONS(1019), + [anon_sym_try] = ACTIONS(1017), + [anon_sym_catch] = ACTIONS(1017), + [anon_sym_return] = ACTIONS(1017), + [anon_sym_source] = ACTIONS(1017), + [anon_sym_source_DASHenv] = ACTIONS(1017), + [anon_sym_register] = ACTIONS(1017), + [anon_sym_hide] = ACTIONS(1017), + [anon_sym_hide_DASHenv] = ACTIONS(1017), + [anon_sym_overlay] = ACTIONS(1017), + [anon_sym_new] = ACTIONS(1017), + [anon_sym_as] = ACTIONS(1017), + [aux_sym_expr_binary_token1] = ACTIONS(1019), + [aux_sym_expr_binary_token2] = ACTIONS(1019), + [aux_sym_expr_binary_token3] = ACTIONS(1019), + [aux_sym_expr_binary_token4] = ACTIONS(1019), + [aux_sym_expr_binary_token5] = ACTIONS(1019), + [aux_sym_expr_binary_token6] = ACTIONS(1019), + [aux_sym_expr_binary_token7] = ACTIONS(1019), + [aux_sym_expr_binary_token8] = ACTIONS(1019), + [aux_sym_expr_binary_token9] = ACTIONS(1019), + [aux_sym_expr_binary_token10] = ACTIONS(1019), + [aux_sym_expr_binary_token11] = ACTIONS(1019), + [aux_sym_expr_binary_token12] = ACTIONS(1019), + [aux_sym_expr_binary_token13] = ACTIONS(1019), + [aux_sym_expr_binary_token14] = ACTIONS(1019), + [aux_sym_expr_binary_token15] = ACTIONS(1019), + [aux_sym_expr_binary_token16] = ACTIONS(1019), + [aux_sym_expr_binary_token17] = ACTIONS(1019), + [aux_sym_expr_binary_token18] = ACTIONS(1019), + [aux_sym_expr_binary_token19] = ACTIONS(1019), + [aux_sym_expr_binary_token20] = ACTIONS(1019), + [aux_sym_expr_binary_token21] = ACTIONS(1019), + [aux_sym_expr_binary_token22] = ACTIONS(1019), + [aux_sym_expr_binary_token23] = ACTIONS(1019), + [aux_sym_expr_binary_token24] = ACTIONS(1019), + [aux_sym_expr_binary_token25] = ACTIONS(1019), + [aux_sym_expr_binary_token26] = ACTIONS(1019), + [aux_sym_expr_binary_token27] = ACTIONS(1019), + [aux_sym_expr_binary_token28] = ACTIONS(1019), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1019), + [anon_sym_DOT_DOT2] = ACTIONS(1017), + [anon_sym_DOT] = ACTIONS(1015), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1019), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1019), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1019), + [aux_sym__val_number_decimal_token1] = ACTIONS(1017), + [aux_sym__val_number_decimal_token2] = ACTIONS(1019), + [aux_sym__val_number_decimal_token3] = ACTIONS(1019), + [aux_sym__val_number_decimal_token4] = ACTIONS(1019), + [aux_sym__val_number_token1] = ACTIONS(1019), + [aux_sym__val_number_token2] = ACTIONS(1019), + [aux_sym__val_number_token3] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1019), + [sym__str_single_quotes] = ACTIONS(1019), + [sym__str_back_ticks] = ACTIONS(1019), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1019), [aux_sym_record_entry_token1] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(998), - [anon_sym_err_GT] = ACTIONS(1006), - [anon_sym_out_GT] = ACTIONS(1006), - [anon_sym_e_GT] = ACTIONS(1006), - [anon_sym_o_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT] = ACTIONS(1006), - [anon_sym_err_GT_GT] = ACTIONS(1008), - [anon_sym_out_GT_GT] = ACTIONS(1008), - [anon_sym_e_GT_GT] = ACTIONS(1008), - [anon_sym_o_GT_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1017), + [anon_sym_err_GT] = ACTIONS(1017), + [anon_sym_out_GT] = ACTIONS(1017), + [anon_sym_e_GT] = ACTIONS(1017), + [anon_sym_o_GT] = ACTIONS(1017), + [anon_sym_err_PLUSout_GT] = ACTIONS(1017), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1017), + [anon_sym_o_PLUSe_GT] = ACTIONS(1017), + [anon_sym_e_PLUSo_GT] = ACTIONS(1017), + [anon_sym_err_GT_GT] = ACTIONS(1019), + [anon_sym_out_GT_GT] = ACTIONS(1019), + [anon_sym_e_GT_GT] = ACTIONS(1019), + [anon_sym_o_GT_GT] = ACTIONS(1019), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1019), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1019), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1019), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1019), [anon_sym_POUND] = ACTIONS(247), }, - [154] = { - [sym_comment] = STATE(154), + [136] = { + [sym_path] = STATE(143), + [sym_comment] = STATE(136), + [aux_sym_cell_path_repeat1] = STATE(136), [anon_sym_export] = ACTIONS(1021), [anon_sym_alias] = ACTIONS(1021), [anon_sym_EQ] = ACTIONS(1021), @@ -97652,6 +91064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_binary_token28] = ACTIONS(1023), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1023), [anon_sym_DOT_DOT2] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(1025), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1023), @@ -97686,169 +91099,1711 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), [anon_sym_POUND] = ACTIONS(247), }, - [155] = { - [sym_pipeline_parenthesized] = STATE(7490), - [sym_cmd_identifier] = STATE(4953), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(2143), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), - [sym_comment] = STATE(155), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [137] = { + [sym_comment] = STATE(137), + [anon_sym_export] = ACTIONS(1028), + [anon_sym_alias] = ACTIONS(1028), + [anon_sym_EQ] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(1028), + [anon_sym_let_DASHenv] = ACTIONS(1028), + [anon_sym_mut] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(1028), + [anon_sym_PLUS_EQ] = ACTIONS(1030), + [anon_sym_DASH_EQ] = ACTIONS(1030), + [anon_sym_STAR_EQ] = ACTIONS(1030), + [anon_sym_SLASH_EQ] = ACTIONS(1030), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1030), + [aux_sym_cmd_identifier_token1] = ACTIONS(1028), + [aux_sym_cmd_identifier_token2] = ACTIONS(1028), + [aux_sym_cmd_identifier_token3] = ACTIONS(1028), + [aux_sym_cmd_identifier_token4] = ACTIONS(1028), + [aux_sym_cmd_identifier_token5] = ACTIONS(1028), + [aux_sym_cmd_identifier_token6] = ACTIONS(1028), + [aux_sym_cmd_identifier_token7] = ACTIONS(1028), + [aux_sym_cmd_identifier_token8] = ACTIONS(1028), + [aux_sym_cmd_identifier_token9] = ACTIONS(1028), + [aux_sym_cmd_identifier_token10] = ACTIONS(1028), + [aux_sym_cmd_identifier_token11] = ACTIONS(1028), + [aux_sym_cmd_identifier_token12] = ACTIONS(1028), + [aux_sym_cmd_identifier_token13] = ACTIONS(1028), + [aux_sym_cmd_identifier_token14] = ACTIONS(1028), + [aux_sym_cmd_identifier_token15] = ACTIONS(1028), + [aux_sym_cmd_identifier_token16] = ACTIONS(1028), + [aux_sym_cmd_identifier_token17] = ACTIONS(1028), + [aux_sym_cmd_identifier_token18] = ACTIONS(1028), + [aux_sym_cmd_identifier_token19] = ACTIONS(1028), + [aux_sym_cmd_identifier_token20] = ACTIONS(1028), + [aux_sym_cmd_identifier_token21] = ACTIONS(1028), + [aux_sym_cmd_identifier_token22] = ACTIONS(1028), + [aux_sym_cmd_identifier_token23] = ACTIONS(1028), + [aux_sym_cmd_identifier_token24] = ACTIONS(1028), + [aux_sym_cmd_identifier_token25] = ACTIONS(1028), + [aux_sym_cmd_identifier_token26] = ACTIONS(1028), + [aux_sym_cmd_identifier_token27] = ACTIONS(1028), + [aux_sym_cmd_identifier_token28] = ACTIONS(1028), + [aux_sym_cmd_identifier_token29] = ACTIONS(1028), + [aux_sym_cmd_identifier_token30] = ACTIONS(1028), + [aux_sym_cmd_identifier_token31] = ACTIONS(1028), + [aux_sym_cmd_identifier_token32] = ACTIONS(1028), + [aux_sym_cmd_identifier_token33] = ACTIONS(1028), + [aux_sym_cmd_identifier_token34] = ACTIONS(1028), + [aux_sym_cmd_identifier_token35] = ACTIONS(1028), + [aux_sym_cmd_identifier_token36] = ACTIONS(1028), + [anon_sym_true] = ACTIONS(1030), + [anon_sym_false] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1030), + [aux_sym_cmd_identifier_token38] = ACTIONS(1028), + [aux_sym_cmd_identifier_token39] = ACTIONS(1030), + [aux_sym_cmd_identifier_token40] = ACTIONS(1030), + [sym__newline] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_err_GT_PIPE] = ACTIONS(1030), + [anon_sym_out_GT_PIPE] = ACTIONS(1030), + [anon_sym_e_GT_PIPE] = ACTIONS(1030), + [anon_sym_o_GT_PIPE] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1030), + [anon_sym_def] = ACTIONS(1028), + [anon_sym_export_DASHenv] = ACTIONS(1028), + [anon_sym_extern] = ACTIONS(1028), + [anon_sym_module] = ACTIONS(1028), + [anon_sym_use] = ACTIONS(1028), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_COMMA] = ACTIONS(1030), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_error] = ACTIONS(1028), + [anon_sym_list] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_in] = ACTIONS(1028), + [anon_sym_loop] = ACTIONS(1028), + [anon_sym_make] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_else] = ACTIONS(1028), + [anon_sym_match] = ACTIONS(1028), + [anon_sym_RBRACE] = ACTIONS(1030), + [anon_sym_try] = ACTIONS(1028), + [anon_sym_catch] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_source] = ACTIONS(1028), + [anon_sym_source_DASHenv] = ACTIONS(1028), + [anon_sym_register] = ACTIONS(1028), + [anon_sym_hide] = ACTIONS(1028), + [anon_sym_hide_DASHenv] = ACTIONS(1028), + [anon_sym_overlay] = ACTIONS(1028), + [anon_sym_new] = ACTIONS(1028), + [anon_sym_as] = ACTIONS(1028), + [anon_sym_QMARK2] = ACTIONS(1032), + [aux_sym_expr_binary_token1] = ACTIONS(1030), + [aux_sym_expr_binary_token2] = ACTIONS(1030), + [aux_sym_expr_binary_token3] = ACTIONS(1030), + [aux_sym_expr_binary_token4] = ACTIONS(1030), + [aux_sym_expr_binary_token5] = ACTIONS(1030), + [aux_sym_expr_binary_token6] = ACTIONS(1030), + [aux_sym_expr_binary_token7] = ACTIONS(1030), + [aux_sym_expr_binary_token8] = ACTIONS(1030), + [aux_sym_expr_binary_token9] = ACTIONS(1030), + [aux_sym_expr_binary_token10] = ACTIONS(1030), + [aux_sym_expr_binary_token11] = ACTIONS(1030), + [aux_sym_expr_binary_token12] = ACTIONS(1030), + [aux_sym_expr_binary_token13] = ACTIONS(1030), + [aux_sym_expr_binary_token14] = ACTIONS(1030), + [aux_sym_expr_binary_token15] = ACTIONS(1030), + [aux_sym_expr_binary_token16] = ACTIONS(1030), + [aux_sym_expr_binary_token17] = ACTIONS(1030), + [aux_sym_expr_binary_token18] = ACTIONS(1030), + [aux_sym_expr_binary_token19] = ACTIONS(1030), + [aux_sym_expr_binary_token20] = ACTIONS(1030), + [aux_sym_expr_binary_token21] = ACTIONS(1030), + [aux_sym_expr_binary_token22] = ACTIONS(1030), + [aux_sym_expr_binary_token23] = ACTIONS(1030), + [aux_sym_expr_binary_token24] = ACTIONS(1030), + [aux_sym_expr_binary_token25] = ACTIONS(1030), + [aux_sym_expr_binary_token26] = ACTIONS(1030), + [aux_sym_expr_binary_token27] = ACTIONS(1030), + [aux_sym_expr_binary_token28] = ACTIONS(1030), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1030), + [anon_sym_DOT_DOT2] = ACTIONS(1028), + [anon_sym_DOT] = ACTIONS(1028), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1030), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1030), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1028), + [aux_sym__val_number_decimal_token2] = ACTIONS(1030), + [aux_sym__val_number_decimal_token3] = ACTIONS(1030), + [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_token1] = ACTIONS(1030), + [aux_sym__val_number_token2] = ACTIONS(1030), + [aux_sym__val_number_token3] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym__str_single_quotes] = ACTIONS(1030), + [sym__str_back_ticks] = ACTIONS(1030), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1030), + [aux_sym_record_entry_token1] = ACTIONS(1030), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_err_GT] = ACTIONS(1028), + [anon_sym_out_GT] = ACTIONS(1028), + [anon_sym_e_GT] = ACTIONS(1028), + [anon_sym_o_GT] = ACTIONS(1028), + [anon_sym_err_PLUSout_GT] = ACTIONS(1028), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1028), + [anon_sym_o_PLUSe_GT] = ACTIONS(1028), + [anon_sym_e_PLUSo_GT] = ACTIONS(1028), + [anon_sym_err_GT_GT] = ACTIONS(1030), + [anon_sym_out_GT_GT] = ACTIONS(1030), + [anon_sym_e_GT_GT] = ACTIONS(1030), + [anon_sym_o_GT_GT] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1030), [anon_sym_POUND] = ACTIONS(247), }, - [156] = { - [sym_pipeline] = STATE(7229), - [sym_cmd_identifier] = STATE(4982), - [sym__ctrl_expression] = STATE(5228), - [sym_ctrl_do] = STATE(5219), - [sym_ctrl_if] = STATE(5219), - [sym_ctrl_match] = STATE(5219), - [sym_ctrl_try] = STATE(5219), - [sym_ctrl_return] = STATE(5219), - [sym_pipe_element] = STATE(4861), - [sym_where_command] = STATE(5254), - [sym__expression] = STATE(4038), - [sym_expr_unary] = STATE(2604), - [sym__expr_unary_minus] = STATE(2610), - [sym_expr_binary] = STATE(2604), - [sym__expr_binary_expression] = STATE(4069), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(4062), - [sym__value] = STATE(2604), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2547), - [sym_val_variable] = STATE(2175), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(1742), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__str_double_quotes] = STATE(2144), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2607), - [sym__inter_double_quotes] = STATE(2626), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5254), - [sym_comment] = STATE(156), - [aux_sym_pipeline_repeat1] = STATE(174), - [aux_sym_pipe_element_repeat2] = STATE(407), + [138] = { + [sym_comment] = STATE(138), + [anon_sym_export] = ACTIONS(1034), + [anon_sym_alias] = ACTIONS(1034), + [anon_sym_EQ] = ACTIONS(1034), + [anon_sym_let] = ACTIONS(1034), + [anon_sym_let_DASHenv] = ACTIONS(1034), + [anon_sym_mut] = ACTIONS(1034), + [anon_sym_const] = ACTIONS(1034), + [anon_sym_PLUS_EQ] = ACTIONS(1036), + [anon_sym_DASH_EQ] = ACTIONS(1036), + [anon_sym_STAR_EQ] = ACTIONS(1036), + [anon_sym_SLASH_EQ] = ACTIONS(1036), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1036), + [aux_sym_cmd_identifier_token1] = ACTIONS(1034), + [aux_sym_cmd_identifier_token2] = ACTIONS(1034), + [aux_sym_cmd_identifier_token3] = ACTIONS(1034), + [aux_sym_cmd_identifier_token4] = ACTIONS(1034), + [aux_sym_cmd_identifier_token5] = ACTIONS(1034), + [aux_sym_cmd_identifier_token6] = ACTIONS(1034), + [aux_sym_cmd_identifier_token7] = ACTIONS(1034), + [aux_sym_cmd_identifier_token8] = ACTIONS(1034), + [aux_sym_cmd_identifier_token9] = ACTIONS(1034), + [aux_sym_cmd_identifier_token10] = ACTIONS(1034), + [aux_sym_cmd_identifier_token11] = ACTIONS(1034), + [aux_sym_cmd_identifier_token12] = ACTIONS(1034), + [aux_sym_cmd_identifier_token13] = ACTIONS(1034), + [aux_sym_cmd_identifier_token14] = ACTIONS(1034), + [aux_sym_cmd_identifier_token15] = ACTIONS(1034), + [aux_sym_cmd_identifier_token16] = ACTIONS(1034), + [aux_sym_cmd_identifier_token17] = ACTIONS(1034), + [aux_sym_cmd_identifier_token18] = ACTIONS(1034), + [aux_sym_cmd_identifier_token19] = ACTIONS(1034), + [aux_sym_cmd_identifier_token20] = ACTIONS(1034), + [aux_sym_cmd_identifier_token21] = ACTIONS(1034), + [aux_sym_cmd_identifier_token22] = ACTIONS(1034), + [aux_sym_cmd_identifier_token23] = ACTIONS(1034), + [aux_sym_cmd_identifier_token24] = ACTIONS(1034), + [aux_sym_cmd_identifier_token25] = ACTIONS(1034), + [aux_sym_cmd_identifier_token26] = ACTIONS(1034), + [aux_sym_cmd_identifier_token27] = ACTIONS(1034), + [aux_sym_cmd_identifier_token28] = ACTIONS(1034), + [aux_sym_cmd_identifier_token29] = ACTIONS(1034), + [aux_sym_cmd_identifier_token30] = ACTIONS(1034), + [aux_sym_cmd_identifier_token31] = ACTIONS(1034), + [aux_sym_cmd_identifier_token32] = ACTIONS(1034), + [aux_sym_cmd_identifier_token33] = ACTIONS(1034), + [aux_sym_cmd_identifier_token34] = ACTIONS(1034), + [aux_sym_cmd_identifier_token35] = ACTIONS(1034), + [aux_sym_cmd_identifier_token36] = ACTIONS(1034), + [anon_sym_true] = ACTIONS(1036), + [anon_sym_false] = ACTIONS(1036), + [anon_sym_null] = ACTIONS(1036), + [aux_sym_cmd_identifier_token38] = ACTIONS(1034), + [aux_sym_cmd_identifier_token39] = ACTIONS(1036), + [aux_sym_cmd_identifier_token40] = ACTIONS(1036), + [sym__newline] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1036), + [anon_sym_PIPE] = ACTIONS(1036), + [anon_sym_err_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_GT_PIPE] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), + [anon_sym_def] = ACTIONS(1034), + [anon_sym_export_DASHenv] = ACTIONS(1034), + [anon_sym_extern] = ACTIONS(1034), + [anon_sym_module] = ACTIONS(1034), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_LPAREN] = ACTIONS(1036), + [anon_sym_COMMA] = ACTIONS(1036), + [anon_sym_DOLLAR] = ACTIONS(1036), + [anon_sym_error] = ACTIONS(1034), + [anon_sym_list] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_break] = ACTIONS(1034), + [anon_sym_continue] = ACTIONS(1034), + [anon_sym_for] = ACTIONS(1034), + [anon_sym_in] = ACTIONS(1034), + [anon_sym_loop] = ACTIONS(1034), + [anon_sym_make] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1034), + [anon_sym_do] = ACTIONS(1034), + [anon_sym_if] = ACTIONS(1034), + [anon_sym_else] = ACTIONS(1034), + [anon_sym_match] = ACTIONS(1034), + [anon_sym_RBRACE] = ACTIONS(1036), + [anon_sym_try] = ACTIONS(1034), + [anon_sym_catch] = ACTIONS(1034), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_source] = ACTIONS(1034), + [anon_sym_source_DASHenv] = ACTIONS(1034), + [anon_sym_register] = ACTIONS(1034), + [anon_sym_hide] = ACTIONS(1034), + [anon_sym_hide_DASHenv] = ACTIONS(1034), + [anon_sym_overlay] = ACTIONS(1034), + [anon_sym_new] = ACTIONS(1034), + [anon_sym_as] = ACTIONS(1034), + [anon_sym_QMARK2] = ACTIONS(1038), + [aux_sym_expr_binary_token1] = ACTIONS(1036), + [aux_sym_expr_binary_token2] = ACTIONS(1036), + [aux_sym_expr_binary_token3] = ACTIONS(1036), + [aux_sym_expr_binary_token4] = ACTIONS(1036), + [aux_sym_expr_binary_token5] = ACTIONS(1036), + [aux_sym_expr_binary_token6] = ACTIONS(1036), + [aux_sym_expr_binary_token7] = ACTIONS(1036), + [aux_sym_expr_binary_token8] = ACTIONS(1036), + [aux_sym_expr_binary_token9] = ACTIONS(1036), + [aux_sym_expr_binary_token10] = ACTIONS(1036), + [aux_sym_expr_binary_token11] = ACTIONS(1036), + [aux_sym_expr_binary_token12] = ACTIONS(1036), + [aux_sym_expr_binary_token13] = ACTIONS(1036), + [aux_sym_expr_binary_token14] = ACTIONS(1036), + [aux_sym_expr_binary_token15] = ACTIONS(1036), + [aux_sym_expr_binary_token16] = ACTIONS(1036), + [aux_sym_expr_binary_token17] = ACTIONS(1036), + [aux_sym_expr_binary_token18] = ACTIONS(1036), + [aux_sym_expr_binary_token19] = ACTIONS(1036), + [aux_sym_expr_binary_token20] = ACTIONS(1036), + [aux_sym_expr_binary_token21] = ACTIONS(1036), + [aux_sym_expr_binary_token22] = ACTIONS(1036), + [aux_sym_expr_binary_token23] = ACTIONS(1036), + [aux_sym_expr_binary_token24] = ACTIONS(1036), + [aux_sym_expr_binary_token25] = ACTIONS(1036), + [aux_sym_expr_binary_token26] = ACTIONS(1036), + [aux_sym_expr_binary_token27] = ACTIONS(1036), + [aux_sym_expr_binary_token28] = ACTIONS(1036), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1036), + [anon_sym_DOT_DOT2] = ACTIONS(1034), + [anon_sym_DOT] = ACTIONS(1034), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1036), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1036), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1036), + [aux_sym__val_number_decimal_token1] = ACTIONS(1034), + [aux_sym__val_number_decimal_token2] = ACTIONS(1036), + [aux_sym__val_number_decimal_token3] = ACTIONS(1036), + [aux_sym__val_number_decimal_token4] = ACTIONS(1036), + [aux_sym__val_number_token1] = ACTIONS(1036), + [aux_sym__val_number_token2] = ACTIONS(1036), + [aux_sym__val_number_token3] = ACTIONS(1036), + [anon_sym_DQUOTE] = ACTIONS(1036), + [sym__str_single_quotes] = ACTIONS(1036), + [sym__str_back_ticks] = ACTIONS(1036), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1036), + [aux_sym_record_entry_token1] = ACTIONS(1036), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_err_GT] = ACTIONS(1034), + [anon_sym_out_GT] = ACTIONS(1034), + [anon_sym_e_GT] = ACTIONS(1034), + [anon_sym_o_GT] = ACTIONS(1034), + [anon_sym_err_PLUSout_GT] = ACTIONS(1034), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), + [anon_sym_o_PLUSe_GT] = ACTIONS(1034), + [anon_sym_e_PLUSo_GT] = ACTIONS(1034), + [anon_sym_err_GT_GT] = ACTIONS(1036), + [anon_sym_out_GT_GT] = ACTIONS(1036), + [anon_sym_e_GT_GT] = ACTIONS(1036), + [anon_sym_o_GT_GT] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), + [anon_sym_POUND] = ACTIONS(247), + }, + [139] = { + [sym_comment] = STATE(139), + [anon_sym_export] = ACTIONS(1040), + [anon_sym_alias] = ACTIONS(1040), + [anon_sym_EQ] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_let_DASHenv] = ACTIONS(1040), + [anon_sym_mut] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(1040), + [anon_sym_PLUS_EQ] = ACTIONS(1042), + [anon_sym_DASH_EQ] = ACTIONS(1042), + [anon_sym_STAR_EQ] = ACTIONS(1042), + [anon_sym_SLASH_EQ] = ACTIONS(1042), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1042), + [aux_sym_cmd_identifier_token1] = ACTIONS(1040), + [aux_sym_cmd_identifier_token2] = ACTIONS(1040), + [aux_sym_cmd_identifier_token3] = ACTIONS(1040), + [aux_sym_cmd_identifier_token4] = ACTIONS(1040), + [aux_sym_cmd_identifier_token5] = ACTIONS(1040), + [aux_sym_cmd_identifier_token6] = ACTIONS(1040), + [aux_sym_cmd_identifier_token7] = ACTIONS(1040), + [aux_sym_cmd_identifier_token8] = ACTIONS(1040), + [aux_sym_cmd_identifier_token9] = ACTIONS(1040), + [aux_sym_cmd_identifier_token10] = ACTIONS(1040), + [aux_sym_cmd_identifier_token11] = ACTIONS(1040), + [aux_sym_cmd_identifier_token12] = ACTIONS(1040), + [aux_sym_cmd_identifier_token13] = ACTIONS(1040), + [aux_sym_cmd_identifier_token14] = ACTIONS(1040), + [aux_sym_cmd_identifier_token15] = ACTIONS(1040), + [aux_sym_cmd_identifier_token16] = ACTIONS(1040), + [aux_sym_cmd_identifier_token17] = ACTIONS(1040), + [aux_sym_cmd_identifier_token18] = ACTIONS(1040), + [aux_sym_cmd_identifier_token19] = ACTIONS(1040), + [aux_sym_cmd_identifier_token20] = ACTIONS(1040), + [aux_sym_cmd_identifier_token21] = ACTIONS(1040), + [aux_sym_cmd_identifier_token22] = ACTIONS(1040), + [aux_sym_cmd_identifier_token23] = ACTIONS(1040), + [aux_sym_cmd_identifier_token24] = ACTIONS(1040), + [aux_sym_cmd_identifier_token25] = ACTIONS(1040), + [aux_sym_cmd_identifier_token26] = ACTIONS(1040), + [aux_sym_cmd_identifier_token27] = ACTIONS(1040), + [aux_sym_cmd_identifier_token28] = ACTIONS(1040), + [aux_sym_cmd_identifier_token29] = ACTIONS(1040), + [aux_sym_cmd_identifier_token30] = ACTIONS(1040), + [aux_sym_cmd_identifier_token31] = ACTIONS(1040), + [aux_sym_cmd_identifier_token32] = ACTIONS(1040), + [aux_sym_cmd_identifier_token33] = ACTIONS(1040), + [aux_sym_cmd_identifier_token34] = ACTIONS(1040), + [aux_sym_cmd_identifier_token35] = ACTIONS(1040), + [aux_sym_cmd_identifier_token36] = ACTIONS(1040), + [anon_sym_true] = ACTIONS(1042), + [anon_sym_false] = ACTIONS(1042), + [anon_sym_null] = ACTIONS(1042), + [aux_sym_cmd_identifier_token38] = ACTIONS(1040), + [aux_sym_cmd_identifier_token39] = ACTIONS(1042), + [aux_sym_cmd_identifier_token40] = ACTIONS(1042), + [sym__newline] = ACTIONS(1040), + [anon_sym_SEMI] = ACTIONS(1042), + [anon_sym_PIPE] = ACTIONS(1042), + [anon_sym_err_GT_PIPE] = ACTIONS(1042), + [anon_sym_out_GT_PIPE] = ACTIONS(1042), + [anon_sym_e_GT_PIPE] = ACTIONS(1042), + [anon_sym_o_GT_PIPE] = ACTIONS(1042), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1042), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1042), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1042), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1042), + [anon_sym_def] = ACTIONS(1040), + [anon_sym_export_DASHenv] = ACTIONS(1040), + [anon_sym_extern] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + [anon_sym_use] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1042), + [anon_sym_COMMA] = ACTIONS(1042), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_error] = ACTIONS(1040), + [anon_sym_list] = ACTIONS(1040), + [anon_sym_DASH] = ACTIONS(1040), + [anon_sym_break] = ACTIONS(1040), + [anon_sym_continue] = ACTIONS(1040), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_loop] = ACTIONS(1040), + [anon_sym_make] = ACTIONS(1040), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_do] = ACTIONS(1040), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(1040), + [anon_sym_match] = ACTIONS(1040), + [anon_sym_RBRACE] = ACTIONS(1042), + [anon_sym_try] = ACTIONS(1040), + [anon_sym_catch] = ACTIONS(1040), + [anon_sym_return] = ACTIONS(1040), + [anon_sym_source] = ACTIONS(1040), + [anon_sym_source_DASHenv] = ACTIONS(1040), + [anon_sym_register] = ACTIONS(1040), + [anon_sym_hide] = ACTIONS(1040), + [anon_sym_hide_DASHenv] = ACTIONS(1040), + [anon_sym_overlay] = ACTIONS(1040), + [anon_sym_new] = ACTIONS(1040), + [anon_sym_as] = ACTIONS(1040), + [anon_sym_QMARK2] = ACTIONS(1042), + [aux_sym_expr_binary_token1] = ACTIONS(1042), + [aux_sym_expr_binary_token2] = ACTIONS(1042), + [aux_sym_expr_binary_token3] = ACTIONS(1042), + [aux_sym_expr_binary_token4] = ACTIONS(1042), + [aux_sym_expr_binary_token5] = ACTIONS(1042), + [aux_sym_expr_binary_token6] = ACTIONS(1042), + [aux_sym_expr_binary_token7] = ACTIONS(1042), + [aux_sym_expr_binary_token8] = ACTIONS(1042), + [aux_sym_expr_binary_token9] = ACTIONS(1042), + [aux_sym_expr_binary_token10] = ACTIONS(1042), + [aux_sym_expr_binary_token11] = ACTIONS(1042), + [aux_sym_expr_binary_token12] = ACTIONS(1042), + [aux_sym_expr_binary_token13] = ACTIONS(1042), + [aux_sym_expr_binary_token14] = ACTIONS(1042), + [aux_sym_expr_binary_token15] = ACTIONS(1042), + [aux_sym_expr_binary_token16] = ACTIONS(1042), + [aux_sym_expr_binary_token17] = ACTIONS(1042), + [aux_sym_expr_binary_token18] = ACTIONS(1042), + [aux_sym_expr_binary_token19] = ACTIONS(1042), + [aux_sym_expr_binary_token20] = ACTIONS(1042), + [aux_sym_expr_binary_token21] = ACTIONS(1042), + [aux_sym_expr_binary_token22] = ACTIONS(1042), + [aux_sym_expr_binary_token23] = ACTIONS(1042), + [aux_sym_expr_binary_token24] = ACTIONS(1042), + [aux_sym_expr_binary_token25] = ACTIONS(1042), + [aux_sym_expr_binary_token26] = ACTIONS(1042), + [aux_sym_expr_binary_token27] = ACTIONS(1042), + [aux_sym_expr_binary_token28] = ACTIONS(1042), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1042), + [anon_sym_DOT_DOT2] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1042), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1042), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1042), + [aux_sym__val_number_decimal_token1] = ACTIONS(1040), + [aux_sym__val_number_decimal_token2] = ACTIONS(1042), + [aux_sym__val_number_decimal_token3] = ACTIONS(1042), + [aux_sym__val_number_decimal_token4] = ACTIONS(1042), + [aux_sym__val_number_token1] = ACTIONS(1042), + [aux_sym__val_number_token2] = ACTIONS(1042), + [aux_sym__val_number_token3] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1042), + [sym__str_single_quotes] = ACTIONS(1042), + [sym__str_back_ticks] = ACTIONS(1042), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1042), + [aux_sym_record_entry_token1] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1040), + [anon_sym_err_GT] = ACTIONS(1040), + [anon_sym_out_GT] = ACTIONS(1040), + [anon_sym_e_GT] = ACTIONS(1040), + [anon_sym_o_GT] = ACTIONS(1040), + [anon_sym_err_PLUSout_GT] = ACTIONS(1040), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1040), + [anon_sym_o_PLUSe_GT] = ACTIONS(1040), + [anon_sym_e_PLUSo_GT] = ACTIONS(1040), + [anon_sym_err_GT_GT] = ACTIONS(1042), + [anon_sym_out_GT_GT] = ACTIONS(1042), + [anon_sym_e_GT_GT] = ACTIONS(1042), + [anon_sym_o_GT_GT] = ACTIONS(1042), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1042), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1042), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1042), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1042), + [anon_sym_POUND] = ACTIONS(247), + }, + [140] = { + [sym_comment] = STATE(140), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_alias] = ACTIONS(1044), + [anon_sym_EQ] = ACTIONS(1044), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_let_DASHenv] = ACTIONS(1044), + [anon_sym_mut] = ACTIONS(1044), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_PLUS_EQ] = ACTIONS(1046), + [anon_sym_DASH_EQ] = ACTIONS(1046), + [anon_sym_STAR_EQ] = ACTIONS(1046), + [anon_sym_SLASH_EQ] = ACTIONS(1046), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1046), + [aux_sym_cmd_identifier_token1] = ACTIONS(1044), + [aux_sym_cmd_identifier_token2] = ACTIONS(1044), + [aux_sym_cmd_identifier_token3] = ACTIONS(1044), + [aux_sym_cmd_identifier_token4] = ACTIONS(1044), + [aux_sym_cmd_identifier_token5] = ACTIONS(1044), + [aux_sym_cmd_identifier_token6] = ACTIONS(1044), + [aux_sym_cmd_identifier_token7] = ACTIONS(1044), + [aux_sym_cmd_identifier_token8] = ACTIONS(1044), + [aux_sym_cmd_identifier_token9] = ACTIONS(1044), + [aux_sym_cmd_identifier_token10] = ACTIONS(1044), + [aux_sym_cmd_identifier_token11] = ACTIONS(1044), + [aux_sym_cmd_identifier_token12] = ACTIONS(1044), + [aux_sym_cmd_identifier_token13] = ACTIONS(1044), + [aux_sym_cmd_identifier_token14] = ACTIONS(1044), + [aux_sym_cmd_identifier_token15] = ACTIONS(1044), + [aux_sym_cmd_identifier_token16] = ACTIONS(1044), + [aux_sym_cmd_identifier_token17] = ACTIONS(1044), + [aux_sym_cmd_identifier_token18] = ACTIONS(1044), + [aux_sym_cmd_identifier_token19] = ACTIONS(1044), + [aux_sym_cmd_identifier_token20] = ACTIONS(1044), + [aux_sym_cmd_identifier_token21] = ACTIONS(1044), + [aux_sym_cmd_identifier_token22] = ACTIONS(1044), + [aux_sym_cmd_identifier_token23] = ACTIONS(1044), + [aux_sym_cmd_identifier_token24] = ACTIONS(1044), + [aux_sym_cmd_identifier_token25] = ACTIONS(1044), + [aux_sym_cmd_identifier_token26] = ACTIONS(1044), + [aux_sym_cmd_identifier_token27] = ACTIONS(1044), + [aux_sym_cmd_identifier_token28] = ACTIONS(1044), + [aux_sym_cmd_identifier_token29] = ACTIONS(1044), + [aux_sym_cmd_identifier_token30] = ACTIONS(1044), + [aux_sym_cmd_identifier_token31] = ACTIONS(1044), + [aux_sym_cmd_identifier_token32] = ACTIONS(1044), + [aux_sym_cmd_identifier_token33] = ACTIONS(1044), + [aux_sym_cmd_identifier_token34] = ACTIONS(1044), + [aux_sym_cmd_identifier_token35] = ACTIONS(1044), + [aux_sym_cmd_identifier_token36] = ACTIONS(1044), + [anon_sym_true] = ACTIONS(1046), + [anon_sym_false] = ACTIONS(1046), + [anon_sym_null] = ACTIONS(1046), + [aux_sym_cmd_identifier_token38] = ACTIONS(1044), + [aux_sym_cmd_identifier_token39] = ACTIONS(1046), + [aux_sym_cmd_identifier_token40] = ACTIONS(1046), + [sym__newline] = ACTIONS(1044), + [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_err_GT_PIPE] = ACTIONS(1046), + [anon_sym_out_GT_PIPE] = ACTIONS(1046), + [anon_sym_e_GT_PIPE] = ACTIONS(1046), + [anon_sym_o_GT_PIPE] = ACTIONS(1046), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1046), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1046), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1046), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1046), + [anon_sym_def] = ACTIONS(1044), + [anon_sym_export_DASHenv] = ACTIONS(1044), + [anon_sym_extern] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_use] = ACTIONS(1044), + [anon_sym_LPAREN] = ACTIONS(1046), + [anon_sym_COMMA] = ACTIONS(1046), + [anon_sym_DOLLAR] = ACTIONS(1046), + [anon_sym_error] = ACTIONS(1044), + [anon_sym_list] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_break] = ACTIONS(1044), + [anon_sym_continue] = ACTIONS(1044), + [anon_sym_for] = ACTIONS(1044), + [anon_sym_in] = ACTIONS(1044), + [anon_sym_loop] = ACTIONS(1044), + [anon_sym_make] = ACTIONS(1044), + [anon_sym_while] = ACTIONS(1044), + [anon_sym_do] = ACTIONS(1044), + [anon_sym_if] = ACTIONS(1044), + [anon_sym_else] = ACTIONS(1044), + [anon_sym_match] = ACTIONS(1044), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_try] = ACTIONS(1044), + [anon_sym_catch] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_source] = ACTIONS(1044), + [anon_sym_source_DASHenv] = ACTIONS(1044), + [anon_sym_register] = ACTIONS(1044), + [anon_sym_hide] = ACTIONS(1044), + [anon_sym_hide_DASHenv] = ACTIONS(1044), + [anon_sym_overlay] = ACTIONS(1044), + [anon_sym_new] = ACTIONS(1044), + [anon_sym_as] = ACTIONS(1044), + [anon_sym_QMARK2] = ACTIONS(1046), + [aux_sym_expr_binary_token1] = ACTIONS(1046), + [aux_sym_expr_binary_token2] = ACTIONS(1046), + [aux_sym_expr_binary_token3] = ACTIONS(1046), + [aux_sym_expr_binary_token4] = ACTIONS(1046), + [aux_sym_expr_binary_token5] = ACTIONS(1046), + [aux_sym_expr_binary_token6] = ACTIONS(1046), + [aux_sym_expr_binary_token7] = ACTIONS(1046), + [aux_sym_expr_binary_token8] = ACTIONS(1046), + [aux_sym_expr_binary_token9] = ACTIONS(1046), + [aux_sym_expr_binary_token10] = ACTIONS(1046), + [aux_sym_expr_binary_token11] = ACTIONS(1046), + [aux_sym_expr_binary_token12] = ACTIONS(1046), + [aux_sym_expr_binary_token13] = ACTIONS(1046), + [aux_sym_expr_binary_token14] = ACTIONS(1046), + [aux_sym_expr_binary_token15] = ACTIONS(1046), + [aux_sym_expr_binary_token16] = ACTIONS(1046), + [aux_sym_expr_binary_token17] = ACTIONS(1046), + [aux_sym_expr_binary_token18] = ACTIONS(1046), + [aux_sym_expr_binary_token19] = ACTIONS(1046), + [aux_sym_expr_binary_token20] = ACTIONS(1046), + [aux_sym_expr_binary_token21] = ACTIONS(1046), + [aux_sym_expr_binary_token22] = ACTIONS(1046), + [aux_sym_expr_binary_token23] = ACTIONS(1046), + [aux_sym_expr_binary_token24] = ACTIONS(1046), + [aux_sym_expr_binary_token25] = ACTIONS(1046), + [aux_sym_expr_binary_token26] = ACTIONS(1046), + [aux_sym_expr_binary_token27] = ACTIONS(1046), + [aux_sym_expr_binary_token28] = ACTIONS(1046), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1046), + [anon_sym_DOT_DOT2] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1044), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1046), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1046), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1046), + [aux_sym__val_number_decimal_token1] = ACTIONS(1044), + [aux_sym__val_number_decimal_token2] = ACTIONS(1046), + [aux_sym__val_number_decimal_token3] = ACTIONS(1046), + [aux_sym__val_number_decimal_token4] = ACTIONS(1046), + [aux_sym__val_number_token1] = ACTIONS(1046), + [aux_sym__val_number_token2] = ACTIONS(1046), + [aux_sym__val_number_token3] = ACTIONS(1046), + [anon_sym_DQUOTE] = ACTIONS(1046), + [sym__str_single_quotes] = ACTIONS(1046), + [sym__str_back_ticks] = ACTIONS(1046), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1046), + [aux_sym_record_entry_token1] = ACTIONS(1046), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_err_GT] = ACTIONS(1044), + [anon_sym_out_GT] = ACTIONS(1044), + [anon_sym_e_GT] = ACTIONS(1044), + [anon_sym_o_GT] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT] = ACTIONS(1044), + [anon_sym_err_GT_GT] = ACTIONS(1046), + [anon_sym_out_GT_GT] = ACTIONS(1046), + [anon_sym_e_GT_GT] = ACTIONS(1046), + [anon_sym_o_GT_GT] = ACTIONS(1046), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1046), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1046), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1046), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1046), + [anon_sym_POUND] = ACTIONS(247), + }, + [141] = { + [sym_comment] = STATE(141), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_alias] = ACTIONS(1048), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_let_DASHenv] = ACTIONS(1048), + [anon_sym_mut] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1048), + [anon_sym_PLUS_EQ] = ACTIONS(1050), + [anon_sym_DASH_EQ] = ACTIONS(1050), + [anon_sym_STAR_EQ] = ACTIONS(1050), + [anon_sym_SLASH_EQ] = ACTIONS(1050), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1050), + [aux_sym_cmd_identifier_token1] = ACTIONS(1048), + [aux_sym_cmd_identifier_token2] = ACTIONS(1048), + [aux_sym_cmd_identifier_token3] = ACTIONS(1048), + [aux_sym_cmd_identifier_token4] = ACTIONS(1048), + [aux_sym_cmd_identifier_token5] = ACTIONS(1048), + [aux_sym_cmd_identifier_token6] = ACTIONS(1048), + [aux_sym_cmd_identifier_token7] = ACTIONS(1048), + [aux_sym_cmd_identifier_token8] = ACTIONS(1048), + [aux_sym_cmd_identifier_token9] = ACTIONS(1048), + [aux_sym_cmd_identifier_token10] = ACTIONS(1048), + [aux_sym_cmd_identifier_token11] = ACTIONS(1048), + [aux_sym_cmd_identifier_token12] = ACTIONS(1048), + [aux_sym_cmd_identifier_token13] = ACTIONS(1048), + [aux_sym_cmd_identifier_token14] = ACTIONS(1048), + [aux_sym_cmd_identifier_token15] = ACTIONS(1048), + [aux_sym_cmd_identifier_token16] = ACTIONS(1048), + [aux_sym_cmd_identifier_token17] = ACTIONS(1048), + [aux_sym_cmd_identifier_token18] = ACTIONS(1048), + [aux_sym_cmd_identifier_token19] = ACTIONS(1048), + [aux_sym_cmd_identifier_token20] = ACTIONS(1048), + [aux_sym_cmd_identifier_token21] = ACTIONS(1048), + [aux_sym_cmd_identifier_token22] = ACTIONS(1048), + [aux_sym_cmd_identifier_token23] = ACTIONS(1048), + [aux_sym_cmd_identifier_token24] = ACTIONS(1048), + [aux_sym_cmd_identifier_token25] = ACTIONS(1048), + [aux_sym_cmd_identifier_token26] = ACTIONS(1048), + [aux_sym_cmd_identifier_token27] = ACTIONS(1048), + [aux_sym_cmd_identifier_token28] = ACTIONS(1048), + [aux_sym_cmd_identifier_token29] = ACTIONS(1048), + [aux_sym_cmd_identifier_token30] = ACTIONS(1048), + [aux_sym_cmd_identifier_token31] = ACTIONS(1048), + [aux_sym_cmd_identifier_token32] = ACTIONS(1048), + [aux_sym_cmd_identifier_token33] = ACTIONS(1048), + [aux_sym_cmd_identifier_token34] = ACTIONS(1048), + [aux_sym_cmd_identifier_token35] = ACTIONS(1048), + [aux_sym_cmd_identifier_token36] = ACTIONS(1048), + [anon_sym_true] = ACTIONS(1050), + [anon_sym_false] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1050), + [aux_sym_cmd_identifier_token38] = ACTIONS(1048), + [aux_sym_cmd_identifier_token39] = ACTIONS(1050), + [aux_sym_cmd_identifier_token40] = ACTIONS(1050), + [sym__newline] = ACTIONS(1048), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_err_GT_PIPE] = ACTIONS(1050), + [anon_sym_out_GT_PIPE] = ACTIONS(1050), + [anon_sym_e_GT_PIPE] = ACTIONS(1050), + [anon_sym_o_GT_PIPE] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1050), + [anon_sym_def] = ACTIONS(1048), + [anon_sym_export_DASHenv] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_use] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_error] = ACTIONS(1048), + [anon_sym_list] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_in] = ACTIONS(1048), + [anon_sym_loop] = ACTIONS(1048), + [anon_sym_make] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_else] = ACTIONS(1048), + [anon_sym_match] = ACTIONS(1048), + [anon_sym_RBRACE] = ACTIONS(1050), + [anon_sym_try] = ACTIONS(1048), + [anon_sym_catch] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_source] = ACTIONS(1048), + [anon_sym_source_DASHenv] = ACTIONS(1048), + [anon_sym_register] = ACTIONS(1048), + [anon_sym_hide] = ACTIONS(1048), + [anon_sym_hide_DASHenv] = ACTIONS(1048), + [anon_sym_overlay] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1048), + [anon_sym_as] = ACTIONS(1048), + [anon_sym_QMARK2] = ACTIONS(1050), + [aux_sym_expr_binary_token1] = ACTIONS(1050), + [aux_sym_expr_binary_token2] = ACTIONS(1050), + [aux_sym_expr_binary_token3] = ACTIONS(1050), + [aux_sym_expr_binary_token4] = ACTIONS(1050), + [aux_sym_expr_binary_token5] = ACTIONS(1050), + [aux_sym_expr_binary_token6] = ACTIONS(1050), + [aux_sym_expr_binary_token7] = ACTIONS(1050), + [aux_sym_expr_binary_token8] = ACTIONS(1050), + [aux_sym_expr_binary_token9] = ACTIONS(1050), + [aux_sym_expr_binary_token10] = ACTIONS(1050), + [aux_sym_expr_binary_token11] = ACTIONS(1050), + [aux_sym_expr_binary_token12] = ACTIONS(1050), + [aux_sym_expr_binary_token13] = ACTIONS(1050), + [aux_sym_expr_binary_token14] = ACTIONS(1050), + [aux_sym_expr_binary_token15] = ACTIONS(1050), + [aux_sym_expr_binary_token16] = ACTIONS(1050), + [aux_sym_expr_binary_token17] = ACTIONS(1050), + [aux_sym_expr_binary_token18] = ACTIONS(1050), + [aux_sym_expr_binary_token19] = ACTIONS(1050), + [aux_sym_expr_binary_token20] = ACTIONS(1050), + [aux_sym_expr_binary_token21] = ACTIONS(1050), + [aux_sym_expr_binary_token22] = ACTIONS(1050), + [aux_sym_expr_binary_token23] = ACTIONS(1050), + [aux_sym_expr_binary_token24] = ACTIONS(1050), + [aux_sym_expr_binary_token25] = ACTIONS(1050), + [aux_sym_expr_binary_token26] = ACTIONS(1050), + [aux_sym_expr_binary_token27] = ACTIONS(1050), + [aux_sym_expr_binary_token28] = ACTIONS(1050), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1050), + [anon_sym_DOT_DOT2] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1050), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1050), + [aux_sym__val_number_decimal_token1] = ACTIONS(1048), + [aux_sym__val_number_decimal_token2] = ACTIONS(1050), + [aux_sym__val_number_decimal_token3] = ACTIONS(1050), + [aux_sym__val_number_decimal_token4] = ACTIONS(1050), + [aux_sym__val_number_token1] = ACTIONS(1050), + [aux_sym__val_number_token2] = ACTIONS(1050), + [aux_sym__val_number_token3] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym__str_single_quotes] = ACTIONS(1050), + [sym__str_back_ticks] = ACTIONS(1050), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1050), + [aux_sym_record_entry_token1] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_err_GT] = ACTIONS(1048), + [anon_sym_out_GT] = ACTIONS(1048), + [anon_sym_e_GT] = ACTIONS(1048), + [anon_sym_o_GT] = ACTIONS(1048), + [anon_sym_err_PLUSout_GT] = ACTIONS(1048), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1048), + [anon_sym_o_PLUSe_GT] = ACTIONS(1048), + [anon_sym_e_PLUSo_GT] = ACTIONS(1048), + [anon_sym_err_GT_GT] = ACTIONS(1050), + [anon_sym_out_GT_GT] = ACTIONS(1050), + [anon_sym_e_GT_GT] = ACTIONS(1050), + [anon_sym_o_GT_GT] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(247), + }, + [142] = { + [sym_comment] = STATE(142), + [anon_sym_export] = ACTIONS(1052), + [anon_sym_alias] = ACTIONS(1052), + [anon_sym_EQ] = ACTIONS(1052), + [anon_sym_let] = ACTIONS(1052), + [anon_sym_let_DASHenv] = ACTIONS(1052), + [anon_sym_mut] = ACTIONS(1052), + [anon_sym_const] = ACTIONS(1052), + [anon_sym_PLUS_EQ] = ACTIONS(1054), + [anon_sym_DASH_EQ] = ACTIONS(1054), + [anon_sym_STAR_EQ] = ACTIONS(1054), + [anon_sym_SLASH_EQ] = ACTIONS(1054), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1054), + [aux_sym_cmd_identifier_token1] = ACTIONS(1052), + [aux_sym_cmd_identifier_token2] = ACTIONS(1052), + [aux_sym_cmd_identifier_token3] = ACTIONS(1052), + [aux_sym_cmd_identifier_token4] = ACTIONS(1052), + [aux_sym_cmd_identifier_token5] = ACTIONS(1052), + [aux_sym_cmd_identifier_token6] = ACTIONS(1052), + [aux_sym_cmd_identifier_token7] = ACTIONS(1052), + [aux_sym_cmd_identifier_token8] = ACTIONS(1052), + [aux_sym_cmd_identifier_token9] = ACTIONS(1052), + [aux_sym_cmd_identifier_token10] = ACTIONS(1052), + [aux_sym_cmd_identifier_token11] = ACTIONS(1052), + [aux_sym_cmd_identifier_token12] = ACTIONS(1052), + [aux_sym_cmd_identifier_token13] = ACTIONS(1052), + [aux_sym_cmd_identifier_token14] = ACTIONS(1052), + [aux_sym_cmd_identifier_token15] = ACTIONS(1052), + [aux_sym_cmd_identifier_token16] = ACTIONS(1052), + [aux_sym_cmd_identifier_token17] = ACTIONS(1052), + [aux_sym_cmd_identifier_token18] = ACTIONS(1052), + [aux_sym_cmd_identifier_token19] = ACTIONS(1052), + [aux_sym_cmd_identifier_token20] = ACTIONS(1052), + [aux_sym_cmd_identifier_token21] = ACTIONS(1052), + [aux_sym_cmd_identifier_token22] = ACTIONS(1052), + [aux_sym_cmd_identifier_token23] = ACTIONS(1052), + [aux_sym_cmd_identifier_token24] = ACTIONS(1052), + [aux_sym_cmd_identifier_token25] = ACTIONS(1052), + [aux_sym_cmd_identifier_token26] = ACTIONS(1052), + [aux_sym_cmd_identifier_token27] = ACTIONS(1052), + [aux_sym_cmd_identifier_token28] = ACTIONS(1052), + [aux_sym_cmd_identifier_token29] = ACTIONS(1052), + [aux_sym_cmd_identifier_token30] = ACTIONS(1052), + [aux_sym_cmd_identifier_token31] = ACTIONS(1052), + [aux_sym_cmd_identifier_token32] = ACTIONS(1052), + [aux_sym_cmd_identifier_token33] = ACTIONS(1052), + [aux_sym_cmd_identifier_token34] = ACTIONS(1052), + [aux_sym_cmd_identifier_token35] = ACTIONS(1052), + [aux_sym_cmd_identifier_token36] = ACTIONS(1052), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_null] = ACTIONS(1054), + [aux_sym_cmd_identifier_token38] = ACTIONS(1052), + [aux_sym_cmd_identifier_token39] = ACTIONS(1054), + [aux_sym_cmd_identifier_token40] = ACTIONS(1054), + [sym__newline] = ACTIONS(1052), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_PIPE] = ACTIONS(1054), + [anon_sym_err_GT_PIPE] = ACTIONS(1054), + [anon_sym_out_GT_PIPE] = ACTIONS(1054), + [anon_sym_e_GT_PIPE] = ACTIONS(1054), + [anon_sym_o_GT_PIPE] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1054), + [anon_sym_def] = ACTIONS(1052), + [anon_sym_export_DASHenv] = ACTIONS(1052), + [anon_sym_extern] = ACTIONS(1052), + [anon_sym_module] = ACTIONS(1052), + [anon_sym_use] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_COMMA] = ACTIONS(1054), + [anon_sym_DOLLAR] = ACTIONS(1054), + [anon_sym_error] = ACTIONS(1052), + [anon_sym_list] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_break] = ACTIONS(1052), + [anon_sym_continue] = ACTIONS(1052), + [anon_sym_for] = ACTIONS(1052), + [anon_sym_in] = ACTIONS(1052), + [anon_sym_loop] = ACTIONS(1052), + [anon_sym_make] = ACTIONS(1052), + [anon_sym_while] = ACTIONS(1052), + [anon_sym_do] = ACTIONS(1052), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_else] = ACTIONS(1052), + [anon_sym_match] = ACTIONS(1052), + [anon_sym_RBRACE] = ACTIONS(1054), + [anon_sym_try] = ACTIONS(1052), + [anon_sym_catch] = ACTIONS(1052), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_source] = ACTIONS(1052), + [anon_sym_source_DASHenv] = ACTIONS(1052), + [anon_sym_register] = ACTIONS(1052), + [anon_sym_hide] = ACTIONS(1052), + [anon_sym_hide_DASHenv] = ACTIONS(1052), + [anon_sym_overlay] = ACTIONS(1052), + [anon_sym_new] = ACTIONS(1052), + [anon_sym_as] = ACTIONS(1052), + [aux_sym_expr_binary_token1] = ACTIONS(1054), + [aux_sym_expr_binary_token2] = ACTIONS(1054), + [aux_sym_expr_binary_token3] = ACTIONS(1054), + [aux_sym_expr_binary_token4] = ACTIONS(1054), + [aux_sym_expr_binary_token5] = ACTIONS(1054), + [aux_sym_expr_binary_token6] = ACTIONS(1054), + [aux_sym_expr_binary_token7] = ACTIONS(1054), + [aux_sym_expr_binary_token8] = ACTIONS(1054), + [aux_sym_expr_binary_token9] = ACTIONS(1054), + [aux_sym_expr_binary_token10] = ACTIONS(1054), + [aux_sym_expr_binary_token11] = ACTIONS(1054), + [aux_sym_expr_binary_token12] = ACTIONS(1054), + [aux_sym_expr_binary_token13] = ACTIONS(1054), + [aux_sym_expr_binary_token14] = ACTIONS(1054), + [aux_sym_expr_binary_token15] = ACTIONS(1054), + [aux_sym_expr_binary_token16] = ACTIONS(1054), + [aux_sym_expr_binary_token17] = ACTIONS(1054), + [aux_sym_expr_binary_token18] = ACTIONS(1054), + [aux_sym_expr_binary_token19] = ACTIONS(1054), + [aux_sym_expr_binary_token20] = ACTIONS(1054), + [aux_sym_expr_binary_token21] = ACTIONS(1054), + [aux_sym_expr_binary_token22] = ACTIONS(1054), + [aux_sym_expr_binary_token23] = ACTIONS(1054), + [aux_sym_expr_binary_token24] = ACTIONS(1054), + [aux_sym_expr_binary_token25] = ACTIONS(1054), + [aux_sym_expr_binary_token26] = ACTIONS(1054), + [aux_sym_expr_binary_token27] = ACTIONS(1054), + [aux_sym_expr_binary_token28] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1054), + [anon_sym_DOT_DOT2] = ACTIONS(1052), + [anon_sym_DOT] = ACTIONS(1052), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1054), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1054), + [aux_sym__val_number_decimal_token1] = ACTIONS(1052), + [aux_sym__val_number_decimal_token2] = ACTIONS(1054), + [aux_sym__val_number_decimal_token3] = ACTIONS(1054), + [aux_sym__val_number_decimal_token4] = ACTIONS(1054), + [aux_sym__val_number_token1] = ACTIONS(1054), + [aux_sym__val_number_token2] = ACTIONS(1054), + [aux_sym__val_number_token3] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym__str_single_quotes] = ACTIONS(1054), + [sym__str_back_ticks] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1054), + [aux_sym_record_entry_token1] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_err_GT] = ACTIONS(1052), + [anon_sym_out_GT] = ACTIONS(1052), + [anon_sym_e_GT] = ACTIONS(1052), + [anon_sym_o_GT] = ACTIONS(1052), + [anon_sym_err_PLUSout_GT] = ACTIONS(1052), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1052), + [anon_sym_o_PLUSe_GT] = ACTIONS(1052), + [anon_sym_e_PLUSo_GT] = ACTIONS(1052), + [anon_sym_err_GT_GT] = ACTIONS(1054), + [anon_sym_out_GT_GT] = ACTIONS(1054), + [anon_sym_e_GT_GT] = ACTIONS(1054), + [anon_sym_o_GT_GT] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1054), + [anon_sym_POUND] = ACTIONS(247), + }, + [143] = { + [sym_comment] = STATE(143), + [anon_sym_export] = ACTIONS(1056), + [anon_sym_alias] = ACTIONS(1056), + [anon_sym_EQ] = ACTIONS(1056), + [anon_sym_let] = ACTIONS(1056), + [anon_sym_let_DASHenv] = ACTIONS(1056), + [anon_sym_mut] = ACTIONS(1056), + [anon_sym_const] = ACTIONS(1056), + [anon_sym_PLUS_EQ] = ACTIONS(1058), + [anon_sym_DASH_EQ] = ACTIONS(1058), + [anon_sym_STAR_EQ] = ACTIONS(1058), + [anon_sym_SLASH_EQ] = ACTIONS(1058), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1058), + [aux_sym_cmd_identifier_token1] = ACTIONS(1056), + [aux_sym_cmd_identifier_token2] = ACTIONS(1056), + [aux_sym_cmd_identifier_token3] = ACTIONS(1056), + [aux_sym_cmd_identifier_token4] = ACTIONS(1056), + [aux_sym_cmd_identifier_token5] = ACTIONS(1056), + [aux_sym_cmd_identifier_token6] = ACTIONS(1056), + [aux_sym_cmd_identifier_token7] = ACTIONS(1056), + [aux_sym_cmd_identifier_token8] = ACTIONS(1056), + [aux_sym_cmd_identifier_token9] = ACTIONS(1056), + [aux_sym_cmd_identifier_token10] = ACTIONS(1056), + [aux_sym_cmd_identifier_token11] = ACTIONS(1056), + [aux_sym_cmd_identifier_token12] = ACTIONS(1056), + [aux_sym_cmd_identifier_token13] = ACTIONS(1056), + [aux_sym_cmd_identifier_token14] = ACTIONS(1056), + [aux_sym_cmd_identifier_token15] = ACTIONS(1056), + [aux_sym_cmd_identifier_token16] = ACTIONS(1056), + [aux_sym_cmd_identifier_token17] = ACTIONS(1056), + [aux_sym_cmd_identifier_token18] = ACTIONS(1056), + [aux_sym_cmd_identifier_token19] = ACTIONS(1056), + [aux_sym_cmd_identifier_token20] = ACTIONS(1056), + [aux_sym_cmd_identifier_token21] = ACTIONS(1056), + [aux_sym_cmd_identifier_token22] = ACTIONS(1056), + [aux_sym_cmd_identifier_token23] = ACTIONS(1056), + [aux_sym_cmd_identifier_token24] = ACTIONS(1056), + [aux_sym_cmd_identifier_token25] = ACTIONS(1056), + [aux_sym_cmd_identifier_token26] = ACTIONS(1056), + [aux_sym_cmd_identifier_token27] = ACTIONS(1056), + [aux_sym_cmd_identifier_token28] = ACTIONS(1056), + [aux_sym_cmd_identifier_token29] = ACTIONS(1056), + [aux_sym_cmd_identifier_token30] = ACTIONS(1056), + [aux_sym_cmd_identifier_token31] = ACTIONS(1056), + [aux_sym_cmd_identifier_token32] = ACTIONS(1056), + [aux_sym_cmd_identifier_token33] = ACTIONS(1056), + [aux_sym_cmd_identifier_token34] = ACTIONS(1056), + [aux_sym_cmd_identifier_token35] = ACTIONS(1056), + [aux_sym_cmd_identifier_token36] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_null] = ACTIONS(1058), + [aux_sym_cmd_identifier_token38] = ACTIONS(1056), + [aux_sym_cmd_identifier_token39] = ACTIONS(1058), + [aux_sym_cmd_identifier_token40] = ACTIONS(1058), + [sym__newline] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1058), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_err_GT_PIPE] = ACTIONS(1058), + [anon_sym_out_GT_PIPE] = ACTIONS(1058), + [anon_sym_e_GT_PIPE] = ACTIONS(1058), + [anon_sym_o_GT_PIPE] = ACTIONS(1058), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1058), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1058), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1058), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1058), + [anon_sym_def] = ACTIONS(1056), + [anon_sym_export_DASHenv] = ACTIONS(1056), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_module] = ACTIONS(1056), + [anon_sym_use] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(1058), + [anon_sym_COMMA] = ACTIONS(1058), + [anon_sym_DOLLAR] = ACTIONS(1058), + [anon_sym_error] = ACTIONS(1056), + [anon_sym_list] = ACTIONS(1056), + [anon_sym_DASH] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1056), + [anon_sym_continue] = ACTIONS(1056), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_in] = ACTIONS(1056), + [anon_sym_loop] = ACTIONS(1056), + [anon_sym_make] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1056), + [anon_sym_do] = ACTIONS(1056), + [anon_sym_if] = ACTIONS(1056), + [anon_sym_else] = ACTIONS(1056), + [anon_sym_match] = ACTIONS(1056), + [anon_sym_RBRACE] = ACTIONS(1058), + [anon_sym_try] = ACTIONS(1056), + [anon_sym_catch] = ACTIONS(1056), + [anon_sym_return] = ACTIONS(1056), + [anon_sym_source] = ACTIONS(1056), + [anon_sym_source_DASHenv] = ACTIONS(1056), + [anon_sym_register] = ACTIONS(1056), + [anon_sym_hide] = ACTIONS(1056), + [anon_sym_hide_DASHenv] = ACTIONS(1056), + [anon_sym_overlay] = ACTIONS(1056), + [anon_sym_new] = ACTIONS(1056), + [anon_sym_as] = ACTIONS(1056), + [aux_sym_expr_binary_token1] = ACTIONS(1058), + [aux_sym_expr_binary_token2] = ACTIONS(1058), + [aux_sym_expr_binary_token3] = ACTIONS(1058), + [aux_sym_expr_binary_token4] = ACTIONS(1058), + [aux_sym_expr_binary_token5] = ACTIONS(1058), + [aux_sym_expr_binary_token6] = ACTIONS(1058), + [aux_sym_expr_binary_token7] = ACTIONS(1058), + [aux_sym_expr_binary_token8] = ACTIONS(1058), + [aux_sym_expr_binary_token9] = ACTIONS(1058), + [aux_sym_expr_binary_token10] = ACTIONS(1058), + [aux_sym_expr_binary_token11] = ACTIONS(1058), + [aux_sym_expr_binary_token12] = ACTIONS(1058), + [aux_sym_expr_binary_token13] = ACTIONS(1058), + [aux_sym_expr_binary_token14] = ACTIONS(1058), + [aux_sym_expr_binary_token15] = ACTIONS(1058), + [aux_sym_expr_binary_token16] = ACTIONS(1058), + [aux_sym_expr_binary_token17] = ACTIONS(1058), + [aux_sym_expr_binary_token18] = ACTIONS(1058), + [aux_sym_expr_binary_token19] = ACTIONS(1058), + [aux_sym_expr_binary_token20] = ACTIONS(1058), + [aux_sym_expr_binary_token21] = ACTIONS(1058), + [aux_sym_expr_binary_token22] = ACTIONS(1058), + [aux_sym_expr_binary_token23] = ACTIONS(1058), + [aux_sym_expr_binary_token24] = ACTIONS(1058), + [aux_sym_expr_binary_token25] = ACTIONS(1058), + [aux_sym_expr_binary_token26] = ACTIONS(1058), + [aux_sym_expr_binary_token27] = ACTIONS(1058), + [aux_sym_expr_binary_token28] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1058), + [anon_sym_DOT_DOT2] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1058), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1058), + [aux_sym__val_number_decimal_token1] = ACTIONS(1056), + [aux_sym__val_number_decimal_token2] = ACTIONS(1058), + [aux_sym__val_number_decimal_token3] = ACTIONS(1058), + [aux_sym__val_number_decimal_token4] = ACTIONS(1058), + [aux_sym__val_number_token1] = ACTIONS(1058), + [aux_sym__val_number_token2] = ACTIONS(1058), + [aux_sym__val_number_token3] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [sym__str_single_quotes] = ACTIONS(1058), + [sym__str_back_ticks] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1058), + [aux_sym_record_entry_token1] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1056), + [anon_sym_err_GT] = ACTIONS(1056), + [anon_sym_out_GT] = ACTIONS(1056), + [anon_sym_e_GT] = ACTIONS(1056), + [anon_sym_o_GT] = ACTIONS(1056), + [anon_sym_err_PLUSout_GT] = ACTIONS(1056), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1056), + [anon_sym_o_PLUSe_GT] = ACTIONS(1056), + [anon_sym_e_PLUSo_GT] = ACTIONS(1056), + [anon_sym_err_GT_GT] = ACTIONS(1058), + [anon_sym_out_GT_GT] = ACTIONS(1058), + [anon_sym_e_GT_GT] = ACTIONS(1058), + [anon_sym_o_GT_GT] = ACTIONS(1058), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1058), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1058), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1058), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1058), + [anon_sym_POUND] = ACTIONS(247), + }, + [144] = { + [sym_comment] = STATE(144), + [anon_sym_export] = ACTIONS(1060), + [anon_sym_alias] = ACTIONS(1060), + [anon_sym_EQ] = ACTIONS(1060), + [anon_sym_let] = ACTIONS(1060), + [anon_sym_let_DASHenv] = ACTIONS(1060), + [anon_sym_mut] = ACTIONS(1060), + [anon_sym_const] = ACTIONS(1060), + [anon_sym_PLUS_EQ] = ACTIONS(1062), + [anon_sym_DASH_EQ] = ACTIONS(1062), + [anon_sym_STAR_EQ] = ACTIONS(1062), + [anon_sym_SLASH_EQ] = ACTIONS(1062), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1062), + [aux_sym_cmd_identifier_token1] = ACTIONS(1060), + [aux_sym_cmd_identifier_token2] = ACTIONS(1060), + [aux_sym_cmd_identifier_token3] = ACTIONS(1060), + [aux_sym_cmd_identifier_token4] = ACTIONS(1060), + [aux_sym_cmd_identifier_token5] = ACTIONS(1060), + [aux_sym_cmd_identifier_token6] = ACTIONS(1060), + [aux_sym_cmd_identifier_token7] = ACTIONS(1060), + [aux_sym_cmd_identifier_token8] = ACTIONS(1060), + [aux_sym_cmd_identifier_token9] = ACTIONS(1060), + [aux_sym_cmd_identifier_token10] = ACTIONS(1060), + [aux_sym_cmd_identifier_token11] = ACTIONS(1060), + [aux_sym_cmd_identifier_token12] = ACTIONS(1060), + [aux_sym_cmd_identifier_token13] = ACTIONS(1060), + [aux_sym_cmd_identifier_token14] = ACTIONS(1060), + [aux_sym_cmd_identifier_token15] = ACTIONS(1060), + [aux_sym_cmd_identifier_token16] = ACTIONS(1060), + [aux_sym_cmd_identifier_token17] = ACTIONS(1060), + [aux_sym_cmd_identifier_token18] = ACTIONS(1060), + [aux_sym_cmd_identifier_token19] = ACTIONS(1060), + [aux_sym_cmd_identifier_token20] = ACTIONS(1060), + [aux_sym_cmd_identifier_token21] = ACTIONS(1060), + [aux_sym_cmd_identifier_token22] = ACTIONS(1060), + [aux_sym_cmd_identifier_token23] = ACTIONS(1060), + [aux_sym_cmd_identifier_token24] = ACTIONS(1060), + [aux_sym_cmd_identifier_token25] = ACTIONS(1060), + [aux_sym_cmd_identifier_token26] = ACTIONS(1060), + [aux_sym_cmd_identifier_token27] = ACTIONS(1060), + [aux_sym_cmd_identifier_token28] = ACTIONS(1060), + [aux_sym_cmd_identifier_token29] = ACTIONS(1060), + [aux_sym_cmd_identifier_token30] = ACTIONS(1060), + [aux_sym_cmd_identifier_token31] = ACTIONS(1060), + [aux_sym_cmd_identifier_token32] = ACTIONS(1060), + [aux_sym_cmd_identifier_token33] = ACTIONS(1060), + [aux_sym_cmd_identifier_token34] = ACTIONS(1060), + [aux_sym_cmd_identifier_token35] = ACTIONS(1060), + [aux_sym_cmd_identifier_token36] = ACTIONS(1060), + [anon_sym_true] = ACTIONS(1062), + [anon_sym_false] = ACTIONS(1062), + [anon_sym_null] = ACTIONS(1062), + [aux_sym_cmd_identifier_token38] = ACTIONS(1060), + [aux_sym_cmd_identifier_token39] = ACTIONS(1062), + [aux_sym_cmd_identifier_token40] = ACTIONS(1062), + [sym__newline] = ACTIONS(1060), + [anon_sym_SEMI] = ACTIONS(1062), + [anon_sym_PIPE] = ACTIONS(1062), + [anon_sym_err_GT_PIPE] = ACTIONS(1062), + [anon_sym_out_GT_PIPE] = ACTIONS(1062), + [anon_sym_e_GT_PIPE] = ACTIONS(1062), + [anon_sym_o_GT_PIPE] = ACTIONS(1062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1062), + [anon_sym_def] = ACTIONS(1060), + [anon_sym_export_DASHenv] = ACTIONS(1060), + [anon_sym_extern] = ACTIONS(1060), + [anon_sym_module] = ACTIONS(1060), + [anon_sym_use] = ACTIONS(1060), + [anon_sym_LPAREN] = ACTIONS(1062), + [anon_sym_COMMA] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_error] = ACTIONS(1060), + [anon_sym_list] = ACTIONS(1060), + [anon_sym_DASH] = ACTIONS(1060), + [anon_sym_break] = ACTIONS(1060), + [anon_sym_continue] = ACTIONS(1060), + [anon_sym_for] = ACTIONS(1060), + [anon_sym_in] = ACTIONS(1060), + [anon_sym_loop] = ACTIONS(1060), + [anon_sym_make] = ACTIONS(1060), + [anon_sym_while] = ACTIONS(1060), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_if] = ACTIONS(1060), + [anon_sym_else] = ACTIONS(1060), + [anon_sym_match] = ACTIONS(1060), + [anon_sym_RBRACE] = ACTIONS(1062), + [anon_sym_try] = ACTIONS(1060), + [anon_sym_catch] = ACTIONS(1060), + [anon_sym_return] = ACTIONS(1060), + [anon_sym_source] = ACTIONS(1060), + [anon_sym_source_DASHenv] = ACTIONS(1060), + [anon_sym_register] = ACTIONS(1060), + [anon_sym_hide] = ACTIONS(1060), + [anon_sym_hide_DASHenv] = ACTIONS(1060), + [anon_sym_overlay] = ACTIONS(1060), + [anon_sym_new] = ACTIONS(1060), + [anon_sym_as] = ACTIONS(1060), + [aux_sym_expr_binary_token1] = ACTIONS(1062), + [aux_sym_expr_binary_token2] = ACTIONS(1062), + [aux_sym_expr_binary_token3] = ACTIONS(1062), + [aux_sym_expr_binary_token4] = ACTIONS(1062), + [aux_sym_expr_binary_token5] = ACTIONS(1062), + [aux_sym_expr_binary_token6] = ACTIONS(1062), + [aux_sym_expr_binary_token7] = ACTIONS(1062), + [aux_sym_expr_binary_token8] = ACTIONS(1062), + [aux_sym_expr_binary_token9] = ACTIONS(1062), + [aux_sym_expr_binary_token10] = ACTIONS(1062), + [aux_sym_expr_binary_token11] = ACTIONS(1062), + [aux_sym_expr_binary_token12] = ACTIONS(1062), + [aux_sym_expr_binary_token13] = ACTIONS(1062), + [aux_sym_expr_binary_token14] = ACTIONS(1062), + [aux_sym_expr_binary_token15] = ACTIONS(1062), + [aux_sym_expr_binary_token16] = ACTIONS(1062), + [aux_sym_expr_binary_token17] = ACTIONS(1062), + [aux_sym_expr_binary_token18] = ACTIONS(1062), + [aux_sym_expr_binary_token19] = ACTIONS(1062), + [aux_sym_expr_binary_token20] = ACTIONS(1062), + [aux_sym_expr_binary_token21] = ACTIONS(1062), + [aux_sym_expr_binary_token22] = ACTIONS(1062), + [aux_sym_expr_binary_token23] = ACTIONS(1062), + [aux_sym_expr_binary_token24] = ACTIONS(1062), + [aux_sym_expr_binary_token25] = ACTIONS(1062), + [aux_sym_expr_binary_token26] = ACTIONS(1062), + [aux_sym_expr_binary_token27] = ACTIONS(1062), + [aux_sym_expr_binary_token28] = ACTIONS(1062), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1062), + [anon_sym_DOT_DOT2] = ACTIONS(1060), + [anon_sym_DOT] = ACTIONS(1060), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1062), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1062), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1062), + [aux_sym__val_number_decimal_token1] = ACTIONS(1060), + [aux_sym__val_number_decimal_token2] = ACTIONS(1062), + [aux_sym__val_number_decimal_token3] = ACTIONS(1062), + [aux_sym__val_number_decimal_token4] = ACTIONS(1062), + [aux_sym__val_number_token1] = ACTIONS(1062), + [aux_sym__val_number_token2] = ACTIONS(1062), + [aux_sym__val_number_token3] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1062), + [sym__str_single_quotes] = ACTIONS(1062), + [sym__str_back_ticks] = ACTIONS(1062), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1062), + [aux_sym_record_entry_token1] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1060), + [anon_sym_err_GT] = ACTIONS(1060), + [anon_sym_out_GT] = ACTIONS(1060), + [anon_sym_e_GT] = ACTIONS(1060), + [anon_sym_o_GT] = ACTIONS(1060), + [anon_sym_err_PLUSout_GT] = ACTIONS(1060), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1060), + [anon_sym_o_PLUSe_GT] = ACTIONS(1060), + [anon_sym_e_PLUSo_GT] = ACTIONS(1060), + [anon_sym_err_GT_GT] = ACTIONS(1062), + [anon_sym_out_GT_GT] = ACTIONS(1062), + [anon_sym_e_GT_GT] = ACTIONS(1062), + [anon_sym_o_GT_GT] = ACTIONS(1062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1062), + [anon_sym_POUND] = ACTIONS(247), + }, + [145] = { + [sym_comment] = STATE(145), + [anon_sym_export] = ACTIONS(1064), + [anon_sym_alias] = ACTIONS(1064), + [anon_sym_EQ] = ACTIONS(1064), + [anon_sym_let] = ACTIONS(1064), + [anon_sym_let_DASHenv] = ACTIONS(1064), + [anon_sym_mut] = ACTIONS(1064), + [anon_sym_const] = ACTIONS(1064), + [anon_sym_PLUS_EQ] = ACTIONS(1066), + [anon_sym_DASH_EQ] = ACTIONS(1066), + [anon_sym_STAR_EQ] = ACTIONS(1066), + [anon_sym_SLASH_EQ] = ACTIONS(1066), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1066), + [aux_sym_cmd_identifier_token1] = ACTIONS(1064), + [aux_sym_cmd_identifier_token2] = ACTIONS(1064), + [aux_sym_cmd_identifier_token3] = ACTIONS(1064), + [aux_sym_cmd_identifier_token4] = ACTIONS(1064), + [aux_sym_cmd_identifier_token5] = ACTIONS(1064), + [aux_sym_cmd_identifier_token6] = ACTIONS(1064), + [aux_sym_cmd_identifier_token7] = ACTIONS(1064), + [aux_sym_cmd_identifier_token8] = ACTIONS(1064), + [aux_sym_cmd_identifier_token9] = ACTIONS(1064), + [aux_sym_cmd_identifier_token10] = ACTIONS(1064), + [aux_sym_cmd_identifier_token11] = ACTIONS(1064), + [aux_sym_cmd_identifier_token12] = ACTIONS(1064), + [aux_sym_cmd_identifier_token13] = ACTIONS(1064), + [aux_sym_cmd_identifier_token14] = ACTIONS(1064), + [aux_sym_cmd_identifier_token15] = ACTIONS(1064), + [aux_sym_cmd_identifier_token16] = ACTIONS(1064), + [aux_sym_cmd_identifier_token17] = ACTIONS(1064), + [aux_sym_cmd_identifier_token18] = ACTIONS(1064), + [aux_sym_cmd_identifier_token19] = ACTIONS(1064), + [aux_sym_cmd_identifier_token20] = ACTIONS(1064), + [aux_sym_cmd_identifier_token21] = ACTIONS(1064), + [aux_sym_cmd_identifier_token22] = ACTIONS(1064), + [aux_sym_cmd_identifier_token23] = ACTIONS(1064), + [aux_sym_cmd_identifier_token24] = ACTIONS(1064), + [aux_sym_cmd_identifier_token25] = ACTIONS(1064), + [aux_sym_cmd_identifier_token26] = ACTIONS(1064), + [aux_sym_cmd_identifier_token27] = ACTIONS(1064), + [aux_sym_cmd_identifier_token28] = ACTIONS(1064), + [aux_sym_cmd_identifier_token29] = ACTIONS(1064), + [aux_sym_cmd_identifier_token30] = ACTIONS(1064), + [aux_sym_cmd_identifier_token31] = ACTIONS(1064), + [aux_sym_cmd_identifier_token32] = ACTIONS(1064), + [aux_sym_cmd_identifier_token33] = ACTIONS(1064), + [aux_sym_cmd_identifier_token34] = ACTIONS(1064), + [aux_sym_cmd_identifier_token35] = ACTIONS(1064), + [aux_sym_cmd_identifier_token36] = ACTIONS(1064), + [anon_sym_true] = ACTIONS(1066), + [anon_sym_false] = ACTIONS(1066), + [anon_sym_null] = ACTIONS(1066), + [aux_sym_cmd_identifier_token38] = ACTIONS(1064), + [aux_sym_cmd_identifier_token39] = ACTIONS(1066), + [aux_sym_cmd_identifier_token40] = ACTIONS(1066), + [sym__newline] = ACTIONS(1064), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1066), + [anon_sym_err_GT_PIPE] = ACTIONS(1066), + [anon_sym_out_GT_PIPE] = ACTIONS(1066), + [anon_sym_e_GT_PIPE] = ACTIONS(1066), + [anon_sym_o_GT_PIPE] = ACTIONS(1066), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1066), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1066), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1066), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1066), + [anon_sym_def] = ACTIONS(1064), + [anon_sym_export_DASHenv] = ACTIONS(1064), + [anon_sym_extern] = ACTIONS(1064), + [anon_sym_module] = ACTIONS(1064), + [anon_sym_use] = ACTIONS(1064), + [anon_sym_LPAREN] = ACTIONS(1066), + [anon_sym_COMMA] = ACTIONS(1066), + [anon_sym_DOLLAR] = ACTIONS(1066), + [anon_sym_error] = ACTIONS(1064), + [anon_sym_list] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1064), + [anon_sym_for] = ACTIONS(1064), + [anon_sym_in] = ACTIONS(1064), + [anon_sym_loop] = ACTIONS(1064), + [anon_sym_make] = ACTIONS(1064), + [anon_sym_while] = ACTIONS(1064), + [anon_sym_do] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1064), + [anon_sym_else] = ACTIONS(1064), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_RBRACE] = ACTIONS(1066), + [anon_sym_try] = ACTIONS(1064), + [anon_sym_catch] = ACTIONS(1064), + [anon_sym_return] = ACTIONS(1064), + [anon_sym_source] = ACTIONS(1064), + [anon_sym_source_DASHenv] = ACTIONS(1064), + [anon_sym_register] = ACTIONS(1064), + [anon_sym_hide] = ACTIONS(1064), + [anon_sym_hide_DASHenv] = ACTIONS(1064), + [anon_sym_overlay] = ACTIONS(1064), + [anon_sym_new] = ACTIONS(1064), + [anon_sym_as] = ACTIONS(1064), + [aux_sym_expr_binary_token1] = ACTIONS(1066), + [aux_sym_expr_binary_token2] = ACTIONS(1066), + [aux_sym_expr_binary_token3] = ACTIONS(1066), + [aux_sym_expr_binary_token4] = ACTIONS(1066), + [aux_sym_expr_binary_token5] = ACTIONS(1066), + [aux_sym_expr_binary_token6] = ACTIONS(1066), + [aux_sym_expr_binary_token7] = ACTIONS(1066), + [aux_sym_expr_binary_token8] = ACTIONS(1066), + [aux_sym_expr_binary_token9] = ACTIONS(1066), + [aux_sym_expr_binary_token10] = ACTIONS(1066), + [aux_sym_expr_binary_token11] = ACTIONS(1066), + [aux_sym_expr_binary_token12] = ACTIONS(1066), + [aux_sym_expr_binary_token13] = ACTIONS(1066), + [aux_sym_expr_binary_token14] = ACTIONS(1066), + [aux_sym_expr_binary_token15] = ACTIONS(1066), + [aux_sym_expr_binary_token16] = ACTIONS(1066), + [aux_sym_expr_binary_token17] = ACTIONS(1066), + [aux_sym_expr_binary_token18] = ACTIONS(1066), + [aux_sym_expr_binary_token19] = ACTIONS(1066), + [aux_sym_expr_binary_token20] = ACTIONS(1066), + [aux_sym_expr_binary_token21] = ACTIONS(1066), + [aux_sym_expr_binary_token22] = ACTIONS(1066), + [aux_sym_expr_binary_token23] = ACTIONS(1066), + [aux_sym_expr_binary_token24] = ACTIONS(1066), + [aux_sym_expr_binary_token25] = ACTIONS(1066), + [aux_sym_expr_binary_token26] = ACTIONS(1066), + [aux_sym_expr_binary_token27] = ACTIONS(1066), + [aux_sym_expr_binary_token28] = ACTIONS(1066), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1066), + [anon_sym_DOT_DOT2] = ACTIONS(1064), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1066), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1066), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1066), + [aux_sym__val_number_decimal_token1] = ACTIONS(1064), + [aux_sym__val_number_decimal_token2] = ACTIONS(1066), + [aux_sym__val_number_decimal_token3] = ACTIONS(1066), + [aux_sym__val_number_decimal_token4] = ACTIONS(1066), + [aux_sym__val_number_token1] = ACTIONS(1066), + [aux_sym__val_number_token2] = ACTIONS(1066), + [aux_sym__val_number_token3] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [sym__str_single_quotes] = ACTIONS(1066), + [sym__str_back_ticks] = ACTIONS(1066), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1066), + [aux_sym_record_entry_token1] = ACTIONS(1066), + [anon_sym_PLUS] = ACTIONS(1064), + [anon_sym_err_GT] = ACTIONS(1064), + [anon_sym_out_GT] = ACTIONS(1064), + [anon_sym_e_GT] = ACTIONS(1064), + [anon_sym_o_GT] = ACTIONS(1064), + [anon_sym_err_PLUSout_GT] = ACTIONS(1064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1064), + [anon_sym_o_PLUSe_GT] = ACTIONS(1064), + [anon_sym_e_PLUSo_GT] = ACTIONS(1064), + [anon_sym_err_GT_GT] = ACTIONS(1066), + [anon_sym_out_GT_GT] = ACTIONS(1066), + [anon_sym_e_GT_GT] = ACTIONS(1066), + [anon_sym_o_GT_GT] = ACTIONS(1066), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1066), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1066), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1066), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1066), + [anon_sym_POUND] = ACTIONS(247), + }, + [146] = { + [sym_comment] = STATE(146), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_alias] = ACTIONS(1068), + [anon_sym_EQ] = ACTIONS(1070), + [anon_sym_let] = ACTIONS(1068), + [anon_sym_let_DASHenv] = ACTIONS(1068), + [anon_sym_mut] = ACTIONS(1068), + [anon_sym_const] = ACTIONS(1068), + [anon_sym_PLUS_EQ] = ACTIONS(1072), + [anon_sym_DASH_EQ] = ACTIONS(1072), + [anon_sym_STAR_EQ] = ACTIONS(1072), + [anon_sym_SLASH_EQ] = ACTIONS(1072), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1072), + [aux_sym_cmd_identifier_token1] = ACTIONS(1068), + [aux_sym_cmd_identifier_token2] = ACTIONS(1068), + [aux_sym_cmd_identifier_token3] = ACTIONS(1068), + [aux_sym_cmd_identifier_token4] = ACTIONS(1068), + [aux_sym_cmd_identifier_token5] = ACTIONS(1068), + [aux_sym_cmd_identifier_token6] = ACTIONS(1068), + [aux_sym_cmd_identifier_token7] = ACTIONS(1068), + [aux_sym_cmd_identifier_token8] = ACTIONS(1068), + [aux_sym_cmd_identifier_token9] = ACTIONS(1068), + [aux_sym_cmd_identifier_token10] = ACTIONS(1068), + [aux_sym_cmd_identifier_token11] = ACTIONS(1068), + [aux_sym_cmd_identifier_token12] = ACTIONS(1068), + [aux_sym_cmd_identifier_token13] = ACTIONS(1068), + [aux_sym_cmd_identifier_token14] = ACTIONS(1068), + [aux_sym_cmd_identifier_token15] = ACTIONS(1068), + [aux_sym_cmd_identifier_token16] = ACTIONS(1068), + [aux_sym_cmd_identifier_token17] = ACTIONS(1068), + [aux_sym_cmd_identifier_token18] = ACTIONS(1068), + [aux_sym_cmd_identifier_token19] = ACTIONS(1068), + [aux_sym_cmd_identifier_token20] = ACTIONS(1068), + [aux_sym_cmd_identifier_token21] = ACTIONS(1068), + [aux_sym_cmd_identifier_token22] = ACTIONS(1068), + [aux_sym_cmd_identifier_token23] = ACTIONS(1068), + [aux_sym_cmd_identifier_token24] = ACTIONS(1068), + [aux_sym_cmd_identifier_token25] = ACTIONS(1068), + [aux_sym_cmd_identifier_token26] = ACTIONS(1068), + [aux_sym_cmd_identifier_token27] = ACTIONS(1068), + [aux_sym_cmd_identifier_token28] = ACTIONS(1068), + [aux_sym_cmd_identifier_token29] = ACTIONS(1068), + [aux_sym_cmd_identifier_token30] = ACTIONS(1068), + [aux_sym_cmd_identifier_token31] = ACTIONS(1068), + [aux_sym_cmd_identifier_token32] = ACTIONS(1068), + [aux_sym_cmd_identifier_token33] = ACTIONS(1068), + [aux_sym_cmd_identifier_token34] = ACTIONS(1068), + [aux_sym_cmd_identifier_token35] = ACTIONS(1068), + [aux_sym_cmd_identifier_token36] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1074), + [anon_sym_false] = ACTIONS(1074), + [anon_sym_null] = ACTIONS(1074), + [aux_sym_cmd_identifier_token38] = ACTIONS(1068), + [aux_sym_cmd_identifier_token39] = ACTIONS(1074), + [aux_sym_cmd_identifier_token40] = ACTIONS(1074), + [sym__newline] = ACTIONS(1076), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_err_GT_PIPE] = ACTIONS(1078), + [anon_sym_out_GT_PIPE] = ACTIONS(1078), + [anon_sym_e_GT_PIPE] = ACTIONS(1078), + [anon_sym_o_GT_PIPE] = ACTIONS(1078), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1078), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1078), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1078), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1078), + [anon_sym_def] = ACTIONS(1068), + [anon_sym_export_DASHenv] = ACTIONS(1068), + [anon_sym_extern] = ACTIONS(1068), + [anon_sym_module] = ACTIONS(1068), + [anon_sym_use] = ACTIONS(1068), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_COMMA] = ACTIONS(1080), + [anon_sym_DOLLAR] = ACTIONS(1074), + [anon_sym_error] = ACTIONS(1068), + [anon_sym_list] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1068), + [anon_sym_continue] = ACTIONS(1068), + [anon_sym_for] = ACTIONS(1068), + [anon_sym_in] = ACTIONS(1068), + [anon_sym_loop] = ACTIONS(1068), + [anon_sym_make] = ACTIONS(1068), + [anon_sym_while] = ACTIONS(1068), + [anon_sym_do] = ACTIONS(1068), + [anon_sym_if] = ACTIONS(1068), + [anon_sym_else] = ACTIONS(1068), + [anon_sym_match] = ACTIONS(1068), + [anon_sym_RBRACE] = ACTIONS(1082), + [anon_sym_try] = ACTIONS(1068), + [anon_sym_catch] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1068), + [anon_sym_source] = ACTIONS(1068), + [anon_sym_source_DASHenv] = ACTIONS(1068), + [anon_sym_register] = ACTIONS(1068), + [anon_sym_hide] = ACTIONS(1068), + [anon_sym_hide_DASHenv] = ACTIONS(1068), + [anon_sym_overlay] = ACTIONS(1068), + [anon_sym_new] = ACTIONS(1068), + [anon_sym_as] = ACTIONS(1068), + [aux_sym_expr_binary_token1] = ACTIONS(1078), + [aux_sym_expr_binary_token2] = ACTIONS(1078), + [aux_sym_expr_binary_token3] = ACTIONS(1078), + [aux_sym_expr_binary_token4] = ACTIONS(1078), + [aux_sym_expr_binary_token5] = ACTIONS(1078), + [aux_sym_expr_binary_token6] = ACTIONS(1078), + [aux_sym_expr_binary_token7] = ACTIONS(1078), + [aux_sym_expr_binary_token8] = ACTIONS(1078), + [aux_sym_expr_binary_token9] = ACTIONS(1078), + [aux_sym_expr_binary_token10] = ACTIONS(1078), + [aux_sym_expr_binary_token11] = ACTIONS(1078), + [aux_sym_expr_binary_token12] = ACTIONS(1078), + [aux_sym_expr_binary_token13] = ACTIONS(1078), + [aux_sym_expr_binary_token14] = ACTIONS(1078), + [aux_sym_expr_binary_token15] = ACTIONS(1078), + [aux_sym_expr_binary_token16] = ACTIONS(1078), + [aux_sym_expr_binary_token17] = ACTIONS(1078), + [aux_sym_expr_binary_token18] = ACTIONS(1078), + [aux_sym_expr_binary_token19] = ACTIONS(1078), + [aux_sym_expr_binary_token20] = ACTIONS(1078), + [aux_sym_expr_binary_token21] = ACTIONS(1078), + [aux_sym_expr_binary_token22] = ACTIONS(1078), + [aux_sym_expr_binary_token23] = ACTIONS(1078), + [aux_sym_expr_binary_token24] = ACTIONS(1078), + [aux_sym_expr_binary_token25] = ACTIONS(1078), + [aux_sym_expr_binary_token26] = ACTIONS(1078), + [aux_sym_expr_binary_token27] = ACTIONS(1078), + [aux_sym_expr_binary_token28] = ACTIONS(1078), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1074), + [anon_sym_DOT_DOT2] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1087), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1087), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1074), + [aux_sym__val_number_decimal_token1] = ACTIONS(1068), + [aux_sym__val_number_decimal_token2] = ACTIONS(1074), + [aux_sym__val_number_decimal_token3] = ACTIONS(1074), + [aux_sym__val_number_decimal_token4] = ACTIONS(1074), + [aux_sym__val_number_token1] = ACTIONS(1074), + [aux_sym__val_number_token2] = ACTIONS(1074), + [aux_sym__val_number_token3] = ACTIONS(1074), + [anon_sym_DQUOTE] = ACTIONS(1074), + [sym__str_single_quotes] = ACTIONS(1074), + [sym__str_back_ticks] = ACTIONS(1074), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1074), + [aux_sym_record_entry_token1] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1068), + [anon_sym_err_GT] = ACTIONS(1076), + [anon_sym_out_GT] = ACTIONS(1076), + [anon_sym_e_GT] = ACTIONS(1076), + [anon_sym_o_GT] = ACTIONS(1076), + [anon_sym_err_PLUSout_GT] = ACTIONS(1076), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1076), + [anon_sym_o_PLUSe_GT] = ACTIONS(1076), + [anon_sym_e_PLUSo_GT] = ACTIONS(1076), + [anon_sym_err_GT_GT] = ACTIONS(1078), + [anon_sym_out_GT_GT] = ACTIONS(1078), + [anon_sym_e_GT_GT] = ACTIONS(1078), + [anon_sym_o_GT_GT] = ACTIONS(1078), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1078), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1078), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1078), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1078), + [anon_sym_POUND] = ACTIONS(247), + }, + [147] = { + [sym_pipeline] = STATE(6955), + [sym_cmd_identifier] = STATE(4711), + [sym__ctrl_expression] = STATE(5052), + [sym_ctrl_do] = STATE(5084), + [sym_ctrl_if] = STATE(5084), + [sym_ctrl_match] = STATE(5084), + [sym_ctrl_try] = STATE(5084), + [sym_ctrl_return] = STATE(5084), + [sym_pipe_element] = STATE(4679), + [sym_where_command] = STATE(4956), + [sym__expression] = STATE(3760), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2398), + [sym_expr_binary] = STATE(2381), + [sym__expr_binary_expression] = STATE(3781), + [sym_expr_parenthesized] = STATE(1971), + [sym_val_range] = STATE(3771), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2348), + [sym_val_bool] = STATE(2348), + [sym_val_variable] = STATE(1938), + [sym_val_number] = STATE(2348), + [sym__val_number_decimal] = STATE(1497), + [sym__val_number] = STATE(2401), + [sym_val_duration] = STATE(2348), + [sym_val_filesize] = STATE(2348), + [sym_val_binary] = STATE(2348), + [sym_val_string] = STATE(2348), + [sym__str_double_quotes] = STATE(1984), + [sym_val_interpolated] = STATE(2348), + [sym__inter_single_quotes] = STATE(2404), + [sym__inter_double_quotes] = STATE(2407), + [sym_val_list] = STATE(2348), + [sym_val_record] = STATE(2348), + [sym_val_table] = STATE(2348), + [sym_val_closure] = STATE(2348), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4956), + [sym_comment] = STATE(147), + [aux_sym_pipeline_repeat1] = STATE(163), + [aux_sym_pipe_element_repeat2] = STATE(406), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -97928,653 +92883,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(121), [anon_sym_POUND] = ACTIONS(247), }, - [157] = { - [sym_pipeline_parenthesized] = STATE(7009), - [sym_cmd_identifier] = STATE(4953), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(2143), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), - [sym_comment] = STATE(157), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), - }, - [158] = { - [sym_pipeline] = STATE(6734), - [sym_cmd_identifier] = STATE(4804), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1541), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), - [sym_comment] = STATE(158), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym_pipe_element_repeat2] = STATE(408), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [aux_sym_cmd_identifier_token38] = ACTIONS(377), - [aux_sym_cmd_identifier_token39] = ACTIONS(379), - [aux_sym_cmd_identifier_token40] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - }, - [159] = { - [sym_pipeline] = STATE(6740), - [sym_cmd_identifier] = STATE(4804), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1541), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), - [sym_comment] = STATE(159), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym_pipe_element_repeat2] = STATE(408), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [aux_sym_cmd_identifier_token38] = ACTIONS(377), - [aux_sym_cmd_identifier_token39] = ACTIONS(379), - [aux_sym_cmd_identifier_token40] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - }, - [160] = { - [sym_pipeline_parenthesized] = STATE(6951), - [sym_cmd_identifier] = STATE(4953), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(2143), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), - [sym_comment] = STATE(160), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), - }, - [161] = { - [sym_pipeline] = STATE(6774), - [sym_cmd_identifier] = STATE(4804), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1541), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), - [sym_comment] = STATE(161), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym_pipe_element_repeat2] = STATE(408), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [aux_sym_cmd_identifier_token38] = ACTIONS(377), - [aux_sym_cmd_identifier_token39] = ACTIONS(379), - [aux_sym_cmd_identifier_token40] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - }, - [162] = { - [sym_pipeline] = STATE(7248), - [sym_cmd_identifier] = STATE(4982), - [sym__ctrl_expression] = STATE(5228), - [sym_ctrl_do] = STATE(5219), - [sym_ctrl_if] = STATE(5219), - [sym_ctrl_match] = STATE(5219), - [sym_ctrl_try] = STATE(5219), - [sym_ctrl_return] = STATE(5219), - [sym_pipe_element] = STATE(4861), - [sym_where_command] = STATE(5254), - [sym__expression] = STATE(4038), - [sym_expr_unary] = STATE(2604), - [sym__expr_unary_minus] = STATE(2610), - [sym_expr_binary] = STATE(2604), - [sym__expr_binary_expression] = STATE(4069), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(4062), - [sym__value] = STATE(2604), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2547), - [sym_val_variable] = STATE(2175), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(1742), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__str_double_quotes] = STATE(2144), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2607), - [sym__inter_double_quotes] = STATE(2626), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5254), - [sym_comment] = STATE(162), - [aux_sym_pipeline_repeat1] = STATE(174), - [aux_sym_pipe_element_repeat2] = STATE(407), + [148] = { + [sym_pipeline] = STATE(6727), + [sym_cmd_identifier] = STATE(4711), + [sym__ctrl_expression] = STATE(5052), + [sym_ctrl_do] = STATE(5084), + [sym_ctrl_if] = STATE(5084), + [sym_ctrl_match] = STATE(5084), + [sym_ctrl_try] = STATE(5084), + [sym_ctrl_return] = STATE(5084), + [sym_pipe_element] = STATE(4679), + [sym_where_command] = STATE(4956), + [sym__expression] = STATE(3760), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2398), + [sym_expr_binary] = STATE(2381), + [sym__expr_binary_expression] = STATE(3781), + [sym_expr_parenthesized] = STATE(1971), + [sym_val_range] = STATE(3771), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2348), + [sym_val_bool] = STATE(2348), + [sym_val_variable] = STATE(1938), + [sym_val_number] = STATE(2348), + [sym__val_number_decimal] = STATE(1497), + [sym__val_number] = STATE(2401), + [sym_val_duration] = STATE(2348), + [sym_val_filesize] = STATE(2348), + [sym_val_binary] = STATE(2348), + [sym_val_string] = STATE(2348), + [sym__str_double_quotes] = STATE(1984), + [sym_val_interpolated] = STATE(2348), + [sym__inter_single_quotes] = STATE(2404), + [sym__inter_double_quotes] = STATE(2407), + [sym_val_list] = STATE(2348), + [sym_val_record] = STATE(2348), + [sym_val_table] = STATE(2348), + [sym_val_closure] = STATE(2348), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4956), + [sym_comment] = STATE(148), + [aux_sym_pipeline_repeat1] = STATE(163), + [aux_sym_pipe_element_repeat2] = STATE(406), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -98654,48 +93004,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(121), [anon_sym_POUND] = ACTIONS(247), }, - [163] = { - [sym_pipeline] = STATE(6988), - [sym_cmd_identifier] = STATE(4982), - [sym__ctrl_expression] = STATE(5228), - [sym_ctrl_do] = STATE(5219), - [sym_ctrl_if] = STATE(5219), - [sym_ctrl_match] = STATE(5219), - [sym_ctrl_try] = STATE(5219), - [sym_ctrl_return] = STATE(5219), - [sym_pipe_element] = STATE(4861), - [sym_where_command] = STATE(5254), - [sym__expression] = STATE(4038), - [sym_expr_unary] = STATE(2604), - [sym__expr_unary_minus] = STATE(2610), - [sym_expr_binary] = STATE(2604), - [sym__expr_binary_expression] = STATE(4069), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(4062), - [sym__value] = STATE(2604), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2547), - [sym_val_variable] = STATE(2175), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(1742), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__str_double_quotes] = STATE(2144), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2607), - [sym__inter_double_quotes] = STATE(2626), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5254), - [sym_comment] = STATE(163), - [aux_sym_pipeline_repeat1] = STATE(174), - [aux_sym_pipe_element_repeat2] = STATE(407), + [149] = { + [sym_pipeline] = STATE(6728), + [sym_cmd_identifier] = STATE(4711), + [sym__ctrl_expression] = STATE(5052), + [sym_ctrl_do] = STATE(5084), + [sym_ctrl_if] = STATE(5084), + [sym_ctrl_match] = STATE(5084), + [sym_ctrl_try] = STATE(5084), + [sym_ctrl_return] = STATE(5084), + [sym_pipe_element] = STATE(4679), + [sym_where_command] = STATE(4956), + [sym__expression] = STATE(3760), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2398), + [sym_expr_binary] = STATE(2381), + [sym__expr_binary_expression] = STATE(3781), + [sym_expr_parenthesized] = STATE(1971), + [sym_val_range] = STATE(3771), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2348), + [sym_val_bool] = STATE(2348), + [sym_val_variable] = STATE(1938), + [sym_val_number] = STATE(2348), + [sym__val_number_decimal] = STATE(1497), + [sym__val_number] = STATE(2401), + [sym_val_duration] = STATE(2348), + [sym_val_filesize] = STATE(2348), + [sym_val_binary] = STATE(2348), + [sym_val_string] = STATE(2348), + [sym__str_double_quotes] = STATE(1984), + [sym_val_interpolated] = STATE(2348), + [sym__inter_single_quotes] = STATE(2404), + [sym__inter_double_quotes] = STATE(2407), + [sym_val_list] = STATE(2348), + [sym_val_record] = STATE(2348), + [sym_val_table] = STATE(2348), + [sym_val_closure] = STATE(2348), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4956), + [sym_comment] = STATE(149), + [aux_sym_pipeline_repeat1] = STATE(163), + [aux_sym_pipe_element_repeat2] = STATE(406), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -98775,411 +93125,532 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(121), [anon_sym_POUND] = ACTIONS(247), }, - [164] = { - [sym_pipeline] = STATE(6778), - [sym_cmd_identifier] = STATE(4804), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1541), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), - [sym_comment] = STATE(164), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym_pipe_element_repeat2] = STATE(408), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [aux_sym_cmd_identifier_token38] = ACTIONS(377), - [aux_sym_cmd_identifier_token39] = ACTIONS(379), - [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [150] = { + [sym_pipeline] = STATE(6530), + [sym_cmd_identifier] = STATE(4558), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1461), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1442), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), + [sym_comment] = STATE(150), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym_pipe_element_repeat2] = STATE(399), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_do] = ACTIONS(407), + [anon_sym_if] = ACTIONS(409), + [anon_sym_match] = ACTIONS(411), [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), + [anon_sym_try] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [165] = { - [sym_pipeline_parenthesized] = STATE(7431), - [sym_cmd_identifier] = STATE(4953), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(2143), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), - [sym_comment] = STATE(165), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [151] = { + [sym_pipeline_parenthesized] = STATE(6723), + [sym_cmd_identifier] = STATE(4634), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1934), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), + [sym_comment] = STATE(151), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, - [166] = { - [sym_pipeline] = STATE(7190), - [sym_cmd_identifier] = STATE(4982), - [sym__ctrl_expression] = STATE(5228), - [sym_ctrl_do] = STATE(5219), - [sym_ctrl_if] = STATE(5219), - [sym_ctrl_match] = STATE(5219), - [sym_ctrl_try] = STATE(5219), - [sym_ctrl_return] = STATE(5219), - [sym_pipe_element] = STATE(4861), - [sym_where_command] = STATE(5254), - [sym__expression] = STATE(4038), - [sym_expr_unary] = STATE(2604), - [sym__expr_unary_minus] = STATE(2610), - [sym_expr_binary] = STATE(2604), - [sym__expr_binary_expression] = STATE(4069), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(4062), - [sym__value] = STATE(2604), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2547), - [sym_val_variable] = STATE(2175), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(1742), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__str_double_quotes] = STATE(2144), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2607), - [sym__inter_double_quotes] = STATE(2626), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5254), - [sym_comment] = STATE(166), - [aux_sym_pipeline_repeat1] = STATE(174), - [aux_sym_pipe_element_repeat2] = STATE(407), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(21), - [aux_sym_cmd_identifier_token3] = ACTIONS(21), - [aux_sym_cmd_identifier_token4] = ACTIONS(21), - [aux_sym_cmd_identifier_token5] = ACTIONS(21), - [aux_sym_cmd_identifier_token6] = ACTIONS(21), - [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(21), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(21), - [aux_sym_cmd_identifier_token11] = ACTIONS(21), - [aux_sym_cmd_identifier_token12] = ACTIONS(21), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(21), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(21), - [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(21), - [aux_sym_cmd_identifier_token19] = ACTIONS(21), - [aux_sym_cmd_identifier_token20] = ACTIONS(21), - [aux_sym_cmd_identifier_token21] = ACTIONS(21), - [aux_sym_cmd_identifier_token22] = ACTIONS(19), - [aux_sym_cmd_identifier_token23] = ACTIONS(19), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(19), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(19), - [aux_sym_cmd_identifier_token28] = ACTIONS(19), - [aux_sym_cmd_identifier_token29] = ACTIONS(19), - [aux_sym_cmd_identifier_token30] = ACTIONS(19), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(21), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(21), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(19), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_null] = ACTIONS(25), - [aux_sym_cmd_identifier_token38] = ACTIONS(27), - [aux_sym_cmd_identifier_token39] = ACTIONS(29), - [aux_sym_cmd_identifier_token40] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_do] = ACTIONS(65), - [anon_sym_if] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(73), - [anon_sym_try] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_where] = ACTIONS(89), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(93), - [anon_sym_DOT_DOT_LT] = ACTIONS(93), - [aux_sym__val_number_decimal_token1] = ACTIONS(95), - [aux_sym__val_number_decimal_token2] = ACTIONS(97), - [aux_sym__val_number_decimal_token3] = ACTIONS(99), - [aux_sym__val_number_decimal_token4] = ACTIONS(101), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(109), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [152] = { + [sym_pipeline_parenthesized] = STATE(6909), + [sym_cmd_identifier] = STATE(4634), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1934), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), + [sym_comment] = STATE(152), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(121), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, - [167] = { - [sym_pipeline] = STATE(7003), - [sym_cmd_identifier] = STATE(4982), - [sym__ctrl_expression] = STATE(5228), - [sym_ctrl_do] = STATE(5219), - [sym_ctrl_if] = STATE(5219), - [sym_ctrl_match] = STATE(5219), - [sym_ctrl_try] = STATE(5219), - [sym_ctrl_return] = STATE(5219), - [sym_pipe_element] = STATE(4861), - [sym_where_command] = STATE(5254), - [sym__expression] = STATE(4038), - [sym_expr_unary] = STATE(2604), - [sym__expr_unary_minus] = STATE(2610), - [sym_expr_binary] = STATE(2604), - [sym__expr_binary_expression] = STATE(4069), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(4062), - [sym__value] = STATE(2604), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2547), - [sym_val_variable] = STATE(2175), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(1742), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__str_double_quotes] = STATE(2144), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2607), - [sym__inter_double_quotes] = STATE(2626), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5254), - [sym_comment] = STATE(167), - [aux_sym_pipeline_repeat1] = STATE(174), - [aux_sym_pipe_element_repeat2] = STATE(407), + [153] = { + [sym_pipeline_parenthesized] = STATE(6913), + [sym_cmd_identifier] = STATE(4634), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1934), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), + [sym_comment] = STATE(153), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(515), + [anon_sym_POUND] = ACTIONS(247), + }, + [154] = { + [sym_pipeline] = STATE(7290), + [sym_cmd_identifier] = STATE(4711), + [sym__ctrl_expression] = STATE(5052), + [sym_ctrl_do] = STATE(5084), + [sym_ctrl_if] = STATE(5084), + [sym_ctrl_match] = STATE(5084), + [sym_ctrl_try] = STATE(5084), + [sym_ctrl_return] = STATE(5084), + [sym_pipe_element] = STATE(4679), + [sym_where_command] = STATE(4956), + [sym__expression] = STATE(3760), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2398), + [sym_expr_binary] = STATE(2381), + [sym__expr_binary_expression] = STATE(3781), + [sym_expr_parenthesized] = STATE(1971), + [sym_val_range] = STATE(3771), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2348), + [sym_val_bool] = STATE(2348), + [sym_val_variable] = STATE(1938), + [sym_val_number] = STATE(2348), + [sym__val_number_decimal] = STATE(1497), + [sym__val_number] = STATE(2401), + [sym_val_duration] = STATE(2348), + [sym_val_filesize] = STATE(2348), + [sym_val_binary] = STATE(2348), + [sym_val_string] = STATE(2348), + [sym__str_double_quotes] = STATE(1984), + [sym_val_interpolated] = STATE(2348), + [sym__inter_single_quotes] = STATE(2404), + [sym__inter_double_quotes] = STATE(2407), + [sym_val_list] = STATE(2348), + [sym_val_record] = STATE(2348), + [sym_val_table] = STATE(2348), + [sym_val_closure] = STATE(2348), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4956), + [sym_comment] = STATE(154), + [aux_sym_pipeline_repeat1] = STATE(163), + [aux_sym_pipe_element_repeat2] = STATE(406), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -99259,769 +93730,774 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(121), [anon_sym_POUND] = ACTIONS(247), }, - [168] = { - [sym_pipeline_parenthesized] = STATE(6949), - [sym_cmd_identifier] = STATE(4953), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4896), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(2143), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), - [sym_comment] = STATE(168), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(173), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [155] = { + [sym_pipeline] = STATE(6602), + [sym_cmd_identifier] = STATE(4558), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1461), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1442), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), + [sym_comment] = STATE(155), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym_pipe_element_repeat2] = STATE(399), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_do] = ACTIONS(407), + [anon_sym_if] = ACTIONS(409), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [169] = { - [sym_pipeline] = STATE(6916), - [sym_cmd_identifier] = STATE(4804), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4821), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1541), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), - [sym_comment] = STATE(169), - [aux_sym_pipeline_repeat1] = STATE(171), - [aux_sym_pipe_element_repeat2] = STATE(408), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [aux_sym_cmd_identifier_token38] = ACTIONS(377), - [aux_sym_cmd_identifier_token39] = ACTIONS(379), - [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [156] = { + [sym_pipeline] = STATE(6618), + [sym_cmd_identifier] = STATE(4558), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1461), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1442), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), + [sym_comment] = STATE(156), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym_pipe_element_repeat2] = STATE(399), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_do] = ACTIONS(407), + [anon_sym_if] = ACTIONS(409), + [anon_sym_match] = ACTIONS(411), [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), + [anon_sym_try] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [170] = { - [sym_cmd_identifier] = STATE(4953), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(5223), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(2143), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), - [sym_comment] = STATE(170), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(170), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(1025), - [aux_sym_cmd_identifier_token2] = ACTIONS(1028), - [aux_sym_cmd_identifier_token3] = ACTIONS(1028), - [aux_sym_cmd_identifier_token4] = ACTIONS(1028), - [aux_sym_cmd_identifier_token5] = ACTIONS(1028), - [aux_sym_cmd_identifier_token6] = ACTIONS(1028), - [aux_sym_cmd_identifier_token7] = ACTIONS(1028), - [aux_sym_cmd_identifier_token8] = ACTIONS(1028), - [aux_sym_cmd_identifier_token9] = ACTIONS(1025), - [aux_sym_cmd_identifier_token10] = ACTIONS(1028), - [aux_sym_cmd_identifier_token11] = ACTIONS(1028), - [aux_sym_cmd_identifier_token12] = ACTIONS(1028), - [aux_sym_cmd_identifier_token13] = ACTIONS(1025), - [aux_sym_cmd_identifier_token14] = ACTIONS(1028), - [aux_sym_cmd_identifier_token15] = ACTIONS(1025), - [aux_sym_cmd_identifier_token16] = ACTIONS(1028), - [aux_sym_cmd_identifier_token17] = ACTIONS(1028), - [aux_sym_cmd_identifier_token18] = ACTIONS(1028), - [aux_sym_cmd_identifier_token19] = ACTIONS(1028), - [aux_sym_cmd_identifier_token20] = ACTIONS(1028), - [aux_sym_cmd_identifier_token21] = ACTIONS(1028), - [aux_sym_cmd_identifier_token22] = ACTIONS(1025), - [aux_sym_cmd_identifier_token23] = ACTIONS(1025), - [aux_sym_cmd_identifier_token24] = ACTIONS(1028), - [aux_sym_cmd_identifier_token25] = ACTIONS(1025), - [aux_sym_cmd_identifier_token26] = ACTIONS(1028), - [aux_sym_cmd_identifier_token27] = ACTIONS(1025), - [aux_sym_cmd_identifier_token28] = ACTIONS(1025), - [aux_sym_cmd_identifier_token29] = ACTIONS(1025), - [aux_sym_cmd_identifier_token30] = ACTIONS(1025), - [aux_sym_cmd_identifier_token31] = ACTIONS(1028), - [aux_sym_cmd_identifier_token32] = ACTIONS(1028), - [aux_sym_cmd_identifier_token33] = ACTIONS(1028), - [aux_sym_cmd_identifier_token34] = ACTIONS(1028), - [aux_sym_cmd_identifier_token35] = ACTIONS(1028), - [aux_sym_cmd_identifier_token36] = ACTIONS(1025), - [anon_sym_true] = ACTIONS(1031), - [anon_sym_false] = ACTIONS(1031), - [anon_sym_null] = ACTIONS(1034), - [aux_sym_cmd_identifier_token38] = ACTIONS(1037), - [aux_sym_cmd_identifier_token39] = ACTIONS(1040), - [aux_sym_cmd_identifier_token40] = ACTIONS(1040), - [anon_sym_LBRACK] = ACTIONS(1043), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_DOLLAR] = ACTIONS(1049), - [anon_sym_DASH] = ACTIONS(1052), - [anon_sym_break] = ACTIONS(1055), - [anon_sym_continue] = ACTIONS(1058), - [anon_sym_do] = ACTIONS(1061), - [anon_sym_if] = ACTIONS(1064), - [anon_sym_match] = ACTIONS(1067), - [aux_sym_ctrl_match_token1] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_try] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1079), - [anon_sym_where] = ACTIONS(1082), - [aux_sym_expr_unary_token1] = ACTIONS(1085), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1088), - [anon_sym_DOT_DOT_LT] = ACTIONS(1088), - [aux_sym__val_number_decimal_token1] = ACTIONS(1091), - [aux_sym__val_number_decimal_token2] = ACTIONS(1094), - [aux_sym__val_number_decimal_token3] = ACTIONS(1097), - [aux_sym__val_number_decimal_token4] = ACTIONS(1100), - [aux_sym__val_number_token1] = ACTIONS(1103), - [aux_sym__val_number_token2] = ACTIONS(1103), - [aux_sym__val_number_token3] = ACTIONS(1103), - [anon_sym_0b] = ACTIONS(1106), - [anon_sym_0o] = ACTIONS(1109), - [anon_sym_0x] = ACTIONS(1109), - [sym_val_date] = ACTIONS(1112), - [anon_sym_DQUOTE] = ACTIONS(1115), - [sym__str_single_quotes] = ACTIONS(1118), - [sym__str_back_ticks] = ACTIONS(1118), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1121), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1124), - [aux_sym_env_var_token1] = ACTIONS(1127), - [anon_sym_CARET] = ACTIONS(1130), + [157] = { + [sym_pipeline_parenthesized] = STATE(6672), + [sym_cmd_identifier] = STATE(4634), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1934), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), + [sym_comment] = STATE(157), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, - [171] = { - [sym_cmd_identifier] = STATE(4804), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(4714), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1541), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), - [sym_comment] = STATE(171), - [aux_sym_pipeline_repeat1] = STATE(172), - [aux_sym_pipe_element_repeat2] = STATE(408), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [aux_sym_cmd_identifier_token38] = ACTIONS(377), - [aux_sym_cmd_identifier_token39] = ACTIONS(379), - [aux_sym_cmd_identifier_token40] = ACTIONS(379), + [158] = { + [sym_pipeline] = STATE(6527), + [sym_cmd_identifier] = STATE(4558), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1461), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1442), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), + [sym_comment] = STATE(158), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym_pipe_element_repeat2] = STATE(399), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_do] = ACTIONS(407), + [anon_sym_if] = ACTIONS(409), + [anon_sym_match] = ACTIONS(411), [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), + [anon_sym_try] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), [anon_sym_where] = ACTIONS(207), [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [172] = { - [sym_cmd_identifier] = STATE(4804), - [sym__ctrl_expression] = STATE(5084), - [sym_ctrl_do] = STATE(5095), - [sym_ctrl_if] = STATE(5095), - [sym_ctrl_match] = STATE(5095), - [sym_ctrl_try] = STATE(5095), - [sym_ctrl_return] = STATE(5095), - [sym_pipe_element] = STATE(5283), - [sym_where_command] = STATE(5064), - [sym__expression] = STATE(3983), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1541), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5064), - [sym_comment] = STATE(172), - [aux_sym_pipeline_repeat1] = STATE(172), - [aux_sym_pipe_element_repeat2] = STATE(408), - [aux_sym_cmd_identifier_token1] = ACTIONS(1133), - [aux_sym_cmd_identifier_token2] = ACTIONS(1136), - [aux_sym_cmd_identifier_token3] = ACTIONS(1136), - [aux_sym_cmd_identifier_token4] = ACTIONS(1136), - [aux_sym_cmd_identifier_token5] = ACTIONS(1136), - [aux_sym_cmd_identifier_token6] = ACTIONS(1136), - [aux_sym_cmd_identifier_token7] = ACTIONS(1136), - [aux_sym_cmd_identifier_token8] = ACTIONS(1136), - [aux_sym_cmd_identifier_token9] = ACTIONS(1133), - [aux_sym_cmd_identifier_token10] = ACTIONS(1136), - [aux_sym_cmd_identifier_token11] = ACTIONS(1136), - [aux_sym_cmd_identifier_token12] = ACTIONS(1136), - [aux_sym_cmd_identifier_token13] = ACTIONS(1133), - [aux_sym_cmd_identifier_token14] = ACTIONS(1136), - [aux_sym_cmd_identifier_token15] = ACTIONS(1133), - [aux_sym_cmd_identifier_token16] = ACTIONS(1136), - [aux_sym_cmd_identifier_token17] = ACTIONS(1136), - [aux_sym_cmd_identifier_token18] = ACTIONS(1136), - [aux_sym_cmd_identifier_token19] = ACTIONS(1136), - [aux_sym_cmd_identifier_token20] = ACTIONS(1136), - [aux_sym_cmd_identifier_token21] = ACTIONS(1136), - [aux_sym_cmd_identifier_token22] = ACTIONS(1133), - [aux_sym_cmd_identifier_token23] = ACTIONS(1133), - [aux_sym_cmd_identifier_token24] = ACTIONS(1136), - [aux_sym_cmd_identifier_token25] = ACTIONS(1133), - [aux_sym_cmd_identifier_token26] = ACTIONS(1136), - [aux_sym_cmd_identifier_token27] = ACTIONS(1133), - [aux_sym_cmd_identifier_token28] = ACTIONS(1133), - [aux_sym_cmd_identifier_token29] = ACTIONS(1133), - [aux_sym_cmd_identifier_token30] = ACTIONS(1133), - [aux_sym_cmd_identifier_token31] = ACTIONS(1136), - [aux_sym_cmd_identifier_token32] = ACTIONS(1136), - [aux_sym_cmd_identifier_token33] = ACTIONS(1136), - [aux_sym_cmd_identifier_token34] = ACTIONS(1136), - [aux_sym_cmd_identifier_token35] = ACTIONS(1136), - [aux_sym_cmd_identifier_token36] = ACTIONS(1133), - [anon_sym_true] = ACTIONS(1139), - [anon_sym_false] = ACTIONS(1139), - [anon_sym_null] = ACTIONS(1142), - [aux_sym_cmd_identifier_token38] = ACTIONS(1145), - [aux_sym_cmd_identifier_token39] = ACTIONS(1148), - [aux_sym_cmd_identifier_token40] = ACTIONS(1148), - [anon_sym_LBRACK] = ACTIONS(1151), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_DOLLAR] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1160), - [anon_sym_break] = ACTIONS(1163), - [anon_sym_continue] = ACTIONS(1166), - [anon_sym_do] = ACTIONS(1169), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_match] = ACTIONS(1175), - [aux_sym_ctrl_match_token1] = ACTIONS(1178), - [anon_sym_DOT_DOT] = ACTIONS(1181), - [anon_sym_try] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1187), - [anon_sym_where] = ACTIONS(1190), - [aux_sym_expr_unary_token1] = ACTIONS(1193), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1196), - [anon_sym_DOT_DOT_LT] = ACTIONS(1196), - [aux_sym__val_number_decimal_token1] = ACTIONS(1199), - [aux_sym__val_number_decimal_token2] = ACTIONS(1202), - [aux_sym__val_number_decimal_token3] = ACTIONS(1205), - [aux_sym__val_number_decimal_token4] = ACTIONS(1208), - [aux_sym__val_number_token1] = ACTIONS(1211), - [aux_sym__val_number_token2] = ACTIONS(1211), - [aux_sym__val_number_token3] = ACTIONS(1211), - [anon_sym_0b] = ACTIONS(1214), - [anon_sym_0o] = ACTIONS(1217), - [anon_sym_0x] = ACTIONS(1217), - [sym_val_date] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(1223), - [sym__str_single_quotes] = ACTIONS(1226), - [sym__str_back_ticks] = ACTIONS(1226), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1229), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1232), - [aux_sym_env_var_token1] = ACTIONS(1235), - [anon_sym_CARET] = ACTIONS(1238), + [159] = { + [sym_pipeline_parenthesized] = STATE(6676), + [sym_cmd_identifier] = STATE(4634), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4635), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1934), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), + [sym_comment] = STATE(159), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(165), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(515), [anon_sym_POUND] = ACTIONS(247), }, - [173] = { - [sym_cmd_identifier] = STATE(4953), - [sym__ctrl_expression_parenthesized] = STATE(5345), - [sym_ctrl_do_parenthesized] = STATE(5366), - [sym_ctrl_if_parenthesized] = STATE(5366), - [sym_ctrl_match] = STATE(5366), - [sym_ctrl_try_parenthesized] = STATE(5366), - [sym_ctrl_return] = STATE(5366), - [sym_pipe_element_parenthesized] = STATE(4943), - [sym_where_command_parenthesized] = STATE(5213), - [sym__expression_parenthesized] = STATE(4035), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(2143), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5319), - [sym_comment] = STATE(173), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(170), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(363), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_do] = ACTIONS(483), - [anon_sym_if] = ACTIONS(485), - [anon_sym_match] = ACTIONS(413), - [aux_sym_ctrl_match_token1] = ACTIONS(487), + [160] = { + [sym_pipeline] = STATE(6619), + [sym_cmd_identifier] = STATE(4558), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4561), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1461), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1442), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), + [sym_comment] = STATE(160), + [aux_sym_pipeline_repeat1] = STATE(166), + [aux_sym_pipe_element_repeat2] = STATE(399), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_do] = ACTIONS(407), + [anon_sym_if] = ACTIONS(409), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(187), [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(489), - [anon_sym_return] = ACTIONS(419), - [anon_sym_where] = ACTIONS(491), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [anon_sym_try] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, - [174] = { - [sym_cmd_identifier] = STATE(4982), - [sym__ctrl_expression] = STATE(5228), - [sym_ctrl_do] = STATE(5219), - [sym_ctrl_if] = STATE(5219), - [sym_ctrl_match] = STATE(5219), - [sym_ctrl_try] = STATE(5219), - [sym_ctrl_return] = STATE(5219), - [sym_pipe_element] = STATE(4952), - [sym_where_command] = STATE(5254), - [sym__expression] = STATE(4038), - [sym_expr_unary] = STATE(2604), - [sym__expr_unary_minus] = STATE(2610), - [sym_expr_binary] = STATE(2604), - [sym__expr_binary_expression] = STATE(4069), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(4062), - [sym__value] = STATE(2604), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2547), - [sym_val_variable] = STATE(2175), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(1742), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__str_double_quotes] = STATE(2144), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2607), - [sym__inter_double_quotes] = STATE(2626), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5254), - [sym_comment] = STATE(174), - [aux_sym_pipeline_repeat1] = STATE(172), - [aux_sym_pipe_element_repeat2] = STATE(407), + [161] = { + [sym_pipeline] = STATE(7060), + [sym_cmd_identifier] = STATE(4711), + [sym__ctrl_expression] = STATE(5052), + [sym_ctrl_do] = STATE(5084), + [sym_ctrl_if] = STATE(5084), + [sym_ctrl_match] = STATE(5084), + [sym_ctrl_try] = STATE(5084), + [sym_ctrl_return] = STATE(5084), + [sym_pipe_element] = STATE(4679), + [sym_where_command] = STATE(4956), + [sym__expression] = STATE(3760), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2398), + [sym_expr_binary] = STATE(2381), + [sym__expr_binary_expression] = STATE(3781), + [sym_expr_parenthesized] = STATE(1971), + [sym_val_range] = STATE(3771), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2348), + [sym_val_bool] = STATE(2348), + [sym_val_variable] = STATE(1938), + [sym_val_number] = STATE(2348), + [sym__val_number_decimal] = STATE(1497), + [sym__val_number] = STATE(2401), + [sym_val_duration] = STATE(2348), + [sym_val_filesize] = STATE(2348), + [sym_val_binary] = STATE(2348), + [sym_val_string] = STATE(2348), + [sym__str_double_quotes] = STATE(1984), + [sym_val_interpolated] = STATE(2348), + [sym__inter_single_quotes] = STATE(2404), + [sym__inter_double_quotes] = STATE(2407), + [sym_val_list] = STATE(2348), + [sym_val_record] = STATE(2348), + [sym_val_table] = STATE(2348), + [sym_val_closure] = STATE(2348), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4956), + [sym_comment] = STATE(161), + [aux_sym_pipeline_repeat1] = STATE(163), + [aux_sym_pipe_element_repeat2] = STATE(406), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -100101,80 +94577,680 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(121), [anon_sym_POUND] = ACTIONS(247), }, - [175] = { - [sym_cmd_identifier] = STATE(8053), - [sym_expr_parenthesized] = STATE(7939), - [sym__spread_parenthesized] = STATE(564), - [sym__spread_variable] = STATE(552), - [sym_val_variable] = STATE(7939), - [sym_val_number] = STATE(7939), - [sym__val_number_decimal] = STATE(6721), - [sym__val_number] = STATE(1907), - [sym_val_string] = STATE(7939), - [sym__str_double_quotes] = STATE(1668), - [sym__spread_record] = STATE(564), - [sym_record_body] = STATE(7978), - [sym_record_entry] = STATE(7309), - [sym__record_key] = STATE(8053), - [sym_comment] = STATE(175), - [aux_sym_shebang_repeat1] = STATE(181), - [aux_sym_record_body_repeat1] = STATE(188), + [162] = { + [sym_cmd_identifier] = STATE(4558), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4989), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1461), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1442), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), + [sym_comment] = STATE(162), + [aux_sym_pipeline_repeat1] = STATE(162), + [aux_sym_pipe_element_repeat2] = STATE(399), + [aux_sym_cmd_identifier_token1] = ACTIONS(1091), + [aux_sym_cmd_identifier_token2] = ACTIONS(1094), + [aux_sym_cmd_identifier_token3] = ACTIONS(1094), + [aux_sym_cmd_identifier_token4] = ACTIONS(1094), + [aux_sym_cmd_identifier_token5] = ACTIONS(1094), + [aux_sym_cmd_identifier_token6] = ACTIONS(1094), + [aux_sym_cmd_identifier_token7] = ACTIONS(1094), + [aux_sym_cmd_identifier_token8] = ACTIONS(1094), + [aux_sym_cmd_identifier_token9] = ACTIONS(1091), + [aux_sym_cmd_identifier_token10] = ACTIONS(1094), + [aux_sym_cmd_identifier_token11] = ACTIONS(1094), + [aux_sym_cmd_identifier_token12] = ACTIONS(1094), + [aux_sym_cmd_identifier_token13] = ACTIONS(1091), + [aux_sym_cmd_identifier_token14] = ACTIONS(1094), + [aux_sym_cmd_identifier_token15] = ACTIONS(1091), + [aux_sym_cmd_identifier_token16] = ACTIONS(1094), + [aux_sym_cmd_identifier_token17] = ACTIONS(1094), + [aux_sym_cmd_identifier_token18] = ACTIONS(1094), + [aux_sym_cmd_identifier_token19] = ACTIONS(1094), + [aux_sym_cmd_identifier_token20] = ACTIONS(1094), + [aux_sym_cmd_identifier_token21] = ACTIONS(1094), + [aux_sym_cmd_identifier_token22] = ACTIONS(1091), + [aux_sym_cmd_identifier_token23] = ACTIONS(1091), + [aux_sym_cmd_identifier_token24] = ACTIONS(1094), + [aux_sym_cmd_identifier_token25] = ACTIONS(1091), + [aux_sym_cmd_identifier_token26] = ACTIONS(1094), + [aux_sym_cmd_identifier_token27] = ACTIONS(1091), + [aux_sym_cmd_identifier_token28] = ACTIONS(1091), + [aux_sym_cmd_identifier_token29] = ACTIONS(1091), + [aux_sym_cmd_identifier_token30] = ACTIONS(1091), + [aux_sym_cmd_identifier_token31] = ACTIONS(1094), + [aux_sym_cmd_identifier_token32] = ACTIONS(1094), + [aux_sym_cmd_identifier_token33] = ACTIONS(1094), + [aux_sym_cmd_identifier_token34] = ACTIONS(1094), + [aux_sym_cmd_identifier_token35] = ACTIONS(1094), + [aux_sym_cmd_identifier_token36] = ACTIONS(1091), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [anon_sym_null] = ACTIONS(1100), + [aux_sym_cmd_identifier_token38] = ACTIONS(1103), + [aux_sym_cmd_identifier_token39] = ACTIONS(1106), + [aux_sym_cmd_identifier_token40] = ACTIONS(1106), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_DOLLAR] = ACTIONS(1115), + [anon_sym_DASH] = ACTIONS(1118), + [anon_sym_break] = ACTIONS(1121), + [anon_sym_continue] = ACTIONS(1124), + [anon_sym_do] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_match] = ACTIONS(1133), + [aux_sym_ctrl_match_token1] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_try] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(1145), + [anon_sym_where] = ACTIONS(1148), + [aux_sym_expr_unary_token1] = ACTIONS(1151), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1154), + [anon_sym_DOT_DOT_LT] = ACTIONS(1154), + [aux_sym__val_number_decimal_token1] = ACTIONS(1157), + [aux_sym__val_number_decimal_token2] = ACTIONS(1160), + [aux_sym__val_number_decimal_token3] = ACTIONS(1163), + [aux_sym__val_number_decimal_token4] = ACTIONS(1166), + [aux_sym__val_number_token1] = ACTIONS(1169), + [aux_sym__val_number_token2] = ACTIONS(1169), + [aux_sym__val_number_token3] = ACTIONS(1169), + [anon_sym_0b] = ACTIONS(1172), + [anon_sym_0o] = ACTIONS(1175), + [anon_sym_0x] = ACTIONS(1175), + [sym_val_date] = ACTIONS(1178), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym__str_single_quotes] = ACTIONS(1184), + [sym__str_back_ticks] = ACTIONS(1184), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1187), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1190), + [aux_sym_env_var_token1] = ACTIONS(1193), + [anon_sym_CARET] = ACTIONS(1196), + [anon_sym_POUND] = ACTIONS(247), + }, + [163] = { + [sym_cmd_identifier] = STATE(4711), + [sym__ctrl_expression] = STATE(5052), + [sym_ctrl_do] = STATE(5084), + [sym_ctrl_if] = STATE(5084), + [sym_ctrl_match] = STATE(5084), + [sym_ctrl_try] = STATE(5084), + [sym_ctrl_return] = STATE(5084), + [sym_pipe_element] = STATE(4691), + [sym_where_command] = STATE(4956), + [sym__expression] = STATE(3760), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2398), + [sym_expr_binary] = STATE(2381), + [sym__expr_binary_expression] = STATE(3781), + [sym_expr_parenthesized] = STATE(1971), + [sym_val_range] = STATE(3771), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2348), + [sym_val_bool] = STATE(2348), + [sym_val_variable] = STATE(1938), + [sym_val_number] = STATE(2348), + [sym__val_number_decimal] = STATE(1497), + [sym__val_number] = STATE(2401), + [sym_val_duration] = STATE(2348), + [sym_val_filesize] = STATE(2348), + [sym_val_binary] = STATE(2348), + [sym_val_string] = STATE(2348), + [sym__str_double_quotes] = STATE(1984), + [sym_val_interpolated] = STATE(2348), + [sym__inter_single_quotes] = STATE(2404), + [sym__inter_double_quotes] = STATE(2407), + [sym_val_list] = STATE(2348), + [sym_val_record] = STATE(2348), + [sym_val_table] = STATE(2348), + [sym_val_closure] = STATE(2348), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4956), + [sym_comment] = STATE(163), + [aux_sym_pipeline_repeat1] = STATE(162), + [aux_sym_pipe_element_repeat2] = STATE(406), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(21), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), + [aux_sym_cmd_identifier_token12] = ACTIONS(21), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(21), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(21), + [aux_sym_cmd_identifier_token19] = ACTIONS(21), + [aux_sym_cmd_identifier_token20] = ACTIONS(21), + [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token22] = ACTIONS(19), + [aux_sym_cmd_identifier_token23] = ACTIONS(19), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(19), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(19), + [aux_sym_cmd_identifier_token28] = ACTIONS(19), + [aux_sym_cmd_identifier_token29] = ACTIONS(19), + [aux_sym_cmd_identifier_token30] = ACTIONS(19), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(21), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(21), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(19), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_null] = ACTIONS(25), + [aux_sym_cmd_identifier_token38] = ACTIONS(27), + [aux_sym_cmd_identifier_token39] = ACTIONS(29), + [aux_sym_cmd_identifier_token40] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_do] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(73), + [anon_sym_try] = ACTIONS(75), + [anon_sym_return] = ACTIONS(77), + [anon_sym_where] = ACTIONS(89), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(93), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [aux_sym__val_number_decimal_token1] = ACTIONS(95), + [aux_sym__val_number_decimal_token2] = ACTIONS(97), + [aux_sym__val_number_decimal_token3] = ACTIONS(99), + [aux_sym__val_number_decimal_token4] = ACTIONS(101), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(247), + }, + [164] = { + [sym_cmd_identifier] = STATE(4634), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(5055), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1934), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), + [sym_comment] = STATE(164), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(164), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym_cmd_identifier_token1] = ACTIONS(1199), + [aux_sym_cmd_identifier_token2] = ACTIONS(1202), + [aux_sym_cmd_identifier_token3] = ACTIONS(1202), + [aux_sym_cmd_identifier_token4] = ACTIONS(1202), + [aux_sym_cmd_identifier_token5] = ACTIONS(1202), + [aux_sym_cmd_identifier_token6] = ACTIONS(1202), + [aux_sym_cmd_identifier_token7] = ACTIONS(1202), + [aux_sym_cmd_identifier_token8] = ACTIONS(1202), + [aux_sym_cmd_identifier_token9] = ACTIONS(1199), + [aux_sym_cmd_identifier_token10] = ACTIONS(1202), + [aux_sym_cmd_identifier_token11] = ACTIONS(1202), + [aux_sym_cmd_identifier_token12] = ACTIONS(1202), + [aux_sym_cmd_identifier_token13] = ACTIONS(1199), + [aux_sym_cmd_identifier_token14] = ACTIONS(1202), + [aux_sym_cmd_identifier_token15] = ACTIONS(1199), + [aux_sym_cmd_identifier_token16] = ACTIONS(1202), + [aux_sym_cmd_identifier_token17] = ACTIONS(1202), + [aux_sym_cmd_identifier_token18] = ACTIONS(1202), + [aux_sym_cmd_identifier_token19] = ACTIONS(1202), + [aux_sym_cmd_identifier_token20] = ACTIONS(1202), + [aux_sym_cmd_identifier_token21] = ACTIONS(1202), + [aux_sym_cmd_identifier_token22] = ACTIONS(1199), + [aux_sym_cmd_identifier_token23] = ACTIONS(1199), + [aux_sym_cmd_identifier_token24] = ACTIONS(1202), + [aux_sym_cmd_identifier_token25] = ACTIONS(1199), + [aux_sym_cmd_identifier_token26] = ACTIONS(1202), + [aux_sym_cmd_identifier_token27] = ACTIONS(1199), + [aux_sym_cmd_identifier_token28] = ACTIONS(1199), + [aux_sym_cmd_identifier_token29] = ACTIONS(1199), + [aux_sym_cmd_identifier_token30] = ACTIONS(1199), + [aux_sym_cmd_identifier_token31] = ACTIONS(1202), + [aux_sym_cmd_identifier_token32] = ACTIONS(1202), + [aux_sym_cmd_identifier_token33] = ACTIONS(1202), + [aux_sym_cmd_identifier_token34] = ACTIONS(1202), + [aux_sym_cmd_identifier_token35] = ACTIONS(1202), + [aux_sym_cmd_identifier_token36] = ACTIONS(1199), + [anon_sym_true] = ACTIONS(1205), + [anon_sym_false] = ACTIONS(1205), + [anon_sym_null] = ACTIONS(1208), + [aux_sym_cmd_identifier_token38] = ACTIONS(1211), + [aux_sym_cmd_identifier_token39] = ACTIONS(1214), + [aux_sym_cmd_identifier_token40] = ACTIONS(1214), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1220), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DASH] = ACTIONS(1226), + [anon_sym_break] = ACTIONS(1229), + [anon_sym_continue] = ACTIONS(1232), + [anon_sym_do] = ACTIONS(1235), + [anon_sym_if] = ACTIONS(1238), + [anon_sym_match] = ACTIONS(1241), + [aux_sym_ctrl_match_token1] = ACTIONS(1244), + [anon_sym_DOT_DOT] = ACTIONS(1247), + [anon_sym_try] = ACTIONS(1250), + [anon_sym_return] = ACTIONS(1253), + [anon_sym_where] = ACTIONS(1256), + [aux_sym_expr_unary_token1] = ACTIONS(1259), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1262), + [anon_sym_DOT_DOT_LT] = ACTIONS(1262), + [aux_sym__val_number_decimal_token1] = ACTIONS(1265), + [aux_sym__val_number_decimal_token2] = ACTIONS(1268), + [aux_sym__val_number_decimal_token3] = ACTIONS(1271), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_token1] = ACTIONS(1277), + [aux_sym__val_number_token2] = ACTIONS(1277), + [aux_sym__val_number_token3] = ACTIONS(1277), + [anon_sym_0b] = ACTIONS(1280), + [anon_sym_0o] = ACTIONS(1283), + [anon_sym_0x] = ACTIONS(1283), + [sym_val_date] = ACTIONS(1286), + [anon_sym_DQUOTE] = ACTIONS(1289), + [sym__str_single_quotes] = ACTIONS(1292), + [sym__str_back_ticks] = ACTIONS(1292), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1295), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1298), + [aux_sym_env_var_token1] = ACTIONS(1301), + [anon_sym_CARET] = ACTIONS(1304), + [anon_sym_POUND] = ACTIONS(247), + }, + [165] = { + [sym_cmd_identifier] = STATE(4634), + [sym__ctrl_expression_parenthesized] = STATE(4969), + [sym_ctrl_do_parenthesized] = STATE(4970), + [sym_ctrl_if_parenthesized] = STATE(4970), + [sym_ctrl_match] = STATE(4970), + [sym_ctrl_try_parenthesized] = STATE(4970), + [sym_ctrl_return] = STATE(4970), + [sym_pipe_element_parenthesized] = STATE(4589), + [sym_where_command_parenthesized] = STATE(4971), + [sym__expression_parenthesized] = STATE(3748), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1934), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(4975), + [sym_comment] = STATE(165), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(164), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(349), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_break] = ACTIONS(473), + [anon_sym_continue] = ACTIONS(475), + [anon_sym_do] = ACTIONS(477), + [anon_sym_if] = ACTIONS(479), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(483), + [anon_sym_return] = ACTIONS(417), + [anon_sym_where] = ACTIONS(485), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(515), + [anon_sym_POUND] = ACTIONS(247), + }, + [166] = { + [sym_cmd_identifier] = STATE(4558), + [sym__ctrl_expression] = STATE(4796), + [sym_ctrl_do] = STATE(4799), + [sym_ctrl_if] = STATE(4799), + [sym_ctrl_match] = STATE(4799), + [sym_ctrl_try] = STATE(4799), + [sym_ctrl_return] = STATE(4799), + [sym_pipe_element] = STATE(4526), + [sym_where_command] = STATE(4804), + [sym__expression] = STATE(3725), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1461), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1442), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4804), + [sym_comment] = STATE(166), + [aux_sym_pipeline_repeat1] = STATE(162), + [aux_sym_pipe_element_repeat2] = STATE(399), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(367), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(367), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(367), + [aux_sym_cmd_identifier_token28] = ACTIONS(367), + [aux_sym_cmd_identifier_token29] = ACTIONS(367), + [aux_sym_cmd_identifier_token30] = ACTIONS(367), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_do] = ACTIONS(407), + [anon_sym_if] = ACTIONS(409), + [anon_sym_match] = ACTIONS(411), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_where] = ACTIONS(207), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + }, + [167] = { + [sym_cmd_identifier] = STATE(7700), + [sym_expr_parenthesized] = STATE(7569), + [sym__spread_parenthesized] = STATE(584), + [sym__spread_variable] = STATE(586), + [sym_val_variable] = STATE(7569), + [sym_val_number] = STATE(7569), + [sym__val_number_decimal] = STATE(6229), + [sym__val_number] = STATE(1676), + [sym_val_string] = STATE(7569), + [sym__str_double_quotes] = STATE(1389), + [sym__spread_record] = STATE(584), + [sym_record_body] = STATE(7717), + [sym_record_entry] = STATE(6685), + [sym__record_key] = STATE(7700), + [sym_comment] = STATE(167), + [aux_sym_shebang_repeat1] = STATE(173), + [aux_sym_record_body_repeat1] = STATE(179), [anon_sym_export] = ACTIONS(273), [anon_sym_alias] = ACTIONS(273), [anon_sym_let] = ACTIONS(273), [anon_sym_let_DASHenv] = ACTIONS(273), [anon_sym_mut] = ACTIONS(273), [anon_sym_const] = ACTIONS(273), - [aux_sym_cmd_identifier_token1] = ACTIONS(1241), - [aux_sym_cmd_identifier_token2] = ACTIONS(1241), - [aux_sym_cmd_identifier_token3] = ACTIONS(1241), - [aux_sym_cmd_identifier_token4] = ACTIONS(1241), - [aux_sym_cmd_identifier_token5] = ACTIONS(1241), - [aux_sym_cmd_identifier_token6] = ACTIONS(1241), - [aux_sym_cmd_identifier_token7] = ACTIONS(1241), - [aux_sym_cmd_identifier_token8] = ACTIONS(1241), - [aux_sym_cmd_identifier_token9] = ACTIONS(1241), - [aux_sym_cmd_identifier_token10] = ACTIONS(1241), - [aux_sym_cmd_identifier_token11] = ACTIONS(1241), - [aux_sym_cmd_identifier_token12] = ACTIONS(1241), - [aux_sym_cmd_identifier_token13] = ACTIONS(1241), - [aux_sym_cmd_identifier_token14] = ACTIONS(1241), - [aux_sym_cmd_identifier_token15] = ACTIONS(1241), - [aux_sym_cmd_identifier_token16] = ACTIONS(1241), - [aux_sym_cmd_identifier_token17] = ACTIONS(1241), - [aux_sym_cmd_identifier_token18] = ACTIONS(1241), - [aux_sym_cmd_identifier_token19] = ACTIONS(1241), - [aux_sym_cmd_identifier_token20] = ACTIONS(1241), - [aux_sym_cmd_identifier_token21] = ACTIONS(1241), - [aux_sym_cmd_identifier_token22] = ACTIONS(1241), - [aux_sym_cmd_identifier_token23] = ACTIONS(1241), - [aux_sym_cmd_identifier_token24] = ACTIONS(1241), - [aux_sym_cmd_identifier_token25] = ACTIONS(1241), - [aux_sym_cmd_identifier_token26] = ACTIONS(1241), - [aux_sym_cmd_identifier_token27] = ACTIONS(1241), - [aux_sym_cmd_identifier_token28] = ACTIONS(1241), - [aux_sym_cmd_identifier_token29] = ACTIONS(1241), - [aux_sym_cmd_identifier_token30] = ACTIONS(1241), - [aux_sym_cmd_identifier_token31] = ACTIONS(1241), - [aux_sym_cmd_identifier_token32] = ACTIONS(1241), - [aux_sym_cmd_identifier_token33] = ACTIONS(1241), - [aux_sym_cmd_identifier_token34] = ACTIONS(1241), - [aux_sym_cmd_identifier_token35] = ACTIONS(1241), - [aux_sym_cmd_identifier_token36] = ACTIONS(1241), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [aux_sym_cmd_identifier_token38] = ACTIONS(1245), - [aux_sym_cmd_identifier_token39] = ACTIONS(1247), - [aux_sym_cmd_identifier_token40] = ACTIONS(1247), - [sym__newline] = ACTIONS(1249), + [aux_sym_cmd_identifier_token1] = ACTIONS(1307), + [aux_sym_cmd_identifier_token2] = ACTIONS(1307), + [aux_sym_cmd_identifier_token3] = ACTIONS(1307), + [aux_sym_cmd_identifier_token4] = ACTIONS(1307), + [aux_sym_cmd_identifier_token5] = ACTIONS(1307), + [aux_sym_cmd_identifier_token6] = ACTIONS(1307), + [aux_sym_cmd_identifier_token7] = ACTIONS(1307), + [aux_sym_cmd_identifier_token8] = ACTIONS(1307), + [aux_sym_cmd_identifier_token9] = ACTIONS(1307), + [aux_sym_cmd_identifier_token10] = ACTIONS(1307), + [aux_sym_cmd_identifier_token11] = ACTIONS(1307), + [aux_sym_cmd_identifier_token12] = ACTIONS(1307), + [aux_sym_cmd_identifier_token13] = ACTIONS(1307), + [aux_sym_cmd_identifier_token14] = ACTIONS(1307), + [aux_sym_cmd_identifier_token15] = ACTIONS(1307), + [aux_sym_cmd_identifier_token16] = ACTIONS(1307), + [aux_sym_cmd_identifier_token17] = ACTIONS(1307), + [aux_sym_cmd_identifier_token18] = ACTIONS(1307), + [aux_sym_cmd_identifier_token19] = ACTIONS(1307), + [aux_sym_cmd_identifier_token20] = ACTIONS(1307), + [aux_sym_cmd_identifier_token21] = ACTIONS(1307), + [aux_sym_cmd_identifier_token22] = ACTIONS(1307), + [aux_sym_cmd_identifier_token23] = ACTIONS(1307), + [aux_sym_cmd_identifier_token24] = ACTIONS(1307), + [aux_sym_cmd_identifier_token25] = ACTIONS(1307), + [aux_sym_cmd_identifier_token26] = ACTIONS(1307), + [aux_sym_cmd_identifier_token27] = ACTIONS(1307), + [aux_sym_cmd_identifier_token28] = ACTIONS(1307), + [aux_sym_cmd_identifier_token29] = ACTIONS(1307), + [aux_sym_cmd_identifier_token30] = ACTIONS(1307), + [aux_sym_cmd_identifier_token31] = ACTIONS(1307), + [aux_sym_cmd_identifier_token32] = ACTIONS(1307), + [aux_sym_cmd_identifier_token33] = ACTIONS(1307), + [aux_sym_cmd_identifier_token34] = ACTIONS(1307), + [aux_sym_cmd_identifier_token35] = ACTIONS(1307), + [aux_sym_cmd_identifier_token36] = ACTIONS(1307), + [anon_sym_true] = ACTIONS(1309), + [anon_sym_false] = ACTIONS(1309), + [anon_sym_null] = ACTIONS(1309), + [aux_sym_cmd_identifier_token38] = ACTIONS(1311), + [aux_sym_cmd_identifier_token39] = ACTIONS(1313), + [aux_sym_cmd_identifier_token40] = ACTIONS(1313), + [sym__newline] = ACTIONS(1315), [anon_sym_def] = ACTIONS(273), [anon_sym_export_DASHenv] = ACTIONS(273), [anon_sym_extern] = ACTIONS(273), [anon_sym_module] = ACTIONS(273), [anon_sym_use] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_DOLLAR] = ACTIONS(1253), + [anon_sym_LPAREN] = ACTIONS(1317), + [anon_sym_DOLLAR] = ACTIONS(1319), [anon_sym_error] = ACTIONS(273), [anon_sym_list] = ACTIONS(273), [anon_sym_DASH] = ACTIONS(243), @@ -100189,7 +95265,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(273), [anon_sym_else] = ACTIONS(273), [anon_sym_match] = ACTIONS(273), - [anon_sym_RBRACE] = ACTIONS(1255), + [anon_sym_RBRACE] = ACTIONS(333), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(273), [anon_sym_return] = ACTIONS(273), @@ -100203,10 +95279,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(273), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(1257), - [aux_sym__val_number_decimal_token2] = ACTIONS(1259), - [aux_sym__val_number_decimal_token3] = ACTIONS(1261), - [aux_sym__val_number_decimal_token4] = ACTIONS(1263), + [aux_sym__val_number_decimal_token1] = ACTIONS(1321), + [aux_sym__val_number_decimal_token2] = ACTIONS(1323), + [aux_sym__val_number_decimal_token3] = ACTIONS(1325), + [aux_sym__val_number_decimal_token4] = ACTIONS(1327), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), @@ -100217,196 +95293,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(243), [anon_sym_POUND] = ACTIONS(247), }, - [176] = { - [sym_comment] = STATE(176), - [anon_sym_export] = ACTIONS(1265), - [anon_sym_alias] = ACTIONS(1265), - [anon_sym_let] = ACTIONS(1265), - [anon_sym_let_DASHenv] = ACTIONS(1265), - [anon_sym_mut] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [aux_sym_cmd_identifier_token1] = ACTIONS(1265), - [aux_sym_cmd_identifier_token2] = ACTIONS(1265), - [aux_sym_cmd_identifier_token3] = ACTIONS(1265), - [aux_sym_cmd_identifier_token4] = ACTIONS(1265), - [aux_sym_cmd_identifier_token5] = ACTIONS(1265), - [aux_sym_cmd_identifier_token6] = ACTIONS(1265), - [aux_sym_cmd_identifier_token7] = ACTIONS(1265), - [aux_sym_cmd_identifier_token8] = ACTIONS(1265), - [aux_sym_cmd_identifier_token9] = ACTIONS(1265), - [aux_sym_cmd_identifier_token10] = ACTIONS(1265), - [aux_sym_cmd_identifier_token11] = ACTIONS(1265), - [aux_sym_cmd_identifier_token12] = ACTIONS(1265), - [aux_sym_cmd_identifier_token13] = ACTIONS(1265), - [aux_sym_cmd_identifier_token14] = ACTIONS(1265), - [aux_sym_cmd_identifier_token15] = ACTIONS(1265), - [aux_sym_cmd_identifier_token16] = ACTIONS(1265), - [aux_sym_cmd_identifier_token17] = ACTIONS(1265), - [aux_sym_cmd_identifier_token18] = ACTIONS(1265), - [aux_sym_cmd_identifier_token19] = ACTIONS(1265), - [aux_sym_cmd_identifier_token20] = ACTIONS(1265), - [aux_sym_cmd_identifier_token21] = ACTIONS(1265), - [aux_sym_cmd_identifier_token22] = ACTIONS(1265), - [aux_sym_cmd_identifier_token23] = ACTIONS(1265), - [aux_sym_cmd_identifier_token24] = ACTIONS(1265), - [aux_sym_cmd_identifier_token25] = ACTIONS(1265), - [aux_sym_cmd_identifier_token26] = ACTIONS(1265), - [aux_sym_cmd_identifier_token27] = ACTIONS(1265), - [aux_sym_cmd_identifier_token28] = ACTIONS(1265), - [aux_sym_cmd_identifier_token29] = ACTIONS(1265), - [aux_sym_cmd_identifier_token30] = ACTIONS(1265), - [aux_sym_cmd_identifier_token31] = ACTIONS(1265), - [aux_sym_cmd_identifier_token32] = ACTIONS(1265), - [aux_sym_cmd_identifier_token33] = ACTIONS(1265), - [aux_sym_cmd_identifier_token34] = ACTIONS(1265), - [aux_sym_cmd_identifier_token35] = ACTIONS(1265), - [aux_sym_cmd_identifier_token36] = ACTIONS(1265), - [anon_sym_true] = ACTIONS(1268), - [anon_sym_false] = ACTIONS(1268), - [anon_sym_null] = ACTIONS(1268), - [aux_sym_cmd_identifier_token38] = ACTIONS(1265), - [aux_sym_cmd_identifier_token39] = ACTIONS(1268), - [aux_sym_cmd_identifier_token40] = ACTIONS(1268), - [sym__newline] = ACTIONS(1268), - [anon_sym_SEMI] = ACTIONS(1271), - [anon_sym_def] = ACTIONS(1265), - [anon_sym_export_DASHenv] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_module] = ACTIONS(1265), - [anon_sym_use] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1271), - [anon_sym_LPAREN] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(1265), - [anon_sym_error] = ACTIONS(1265), - [anon_sym_list] = ACTIONS(1273), - [anon_sym_DASH] = ACTIONS(1265), - [anon_sym_break] = ACTIONS(1265), - [anon_sym_continue] = ACTIONS(1265), - [anon_sym_for] = ACTIONS(1265), - [anon_sym_in] = ACTIONS(1273), - [anon_sym_loop] = ACTIONS(1265), - [anon_sym_make] = ACTIONS(1273), - [anon_sym_while] = ACTIONS(1265), - [anon_sym_do] = ACTIONS(1265), - [anon_sym_if] = ACTIONS(1265), - [anon_sym_else] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1265), - [aux_sym_ctrl_match_token1] = ACTIONS(1271), - [anon_sym_RBRACE] = ACTIONS(1271), - [anon_sym_DOT_DOT] = ACTIONS(1275), - [anon_sym_try] = ACTIONS(1265), - [anon_sym_catch] = ACTIONS(1273), - [anon_sym_return] = ACTIONS(1265), - [anon_sym_source] = ACTIONS(1265), - [anon_sym_source_DASHenv] = ACTIONS(1265), - [anon_sym_register] = ACTIONS(1265), - [anon_sym_hide] = ACTIONS(1265), - [anon_sym_hide_DASHenv] = ACTIONS(1265), - [anon_sym_overlay] = ACTIONS(1265), - [anon_sym_new] = ACTIONS(1273), - [anon_sym_as] = ACTIONS(1273), - [anon_sym_where] = ACTIONS(1271), - [aux_sym_expr_unary_token1] = ACTIONS(1271), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1277), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1271), - [anon_sym_DOT_DOT_LT] = ACTIONS(1271), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1277), - [aux_sym__val_number_decimal_token1] = ACTIONS(1265), - [aux_sym__val_number_decimal_token2] = ACTIONS(1268), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), - [aux_sym__val_number_token1] = ACTIONS(1268), - [aux_sym__val_number_token2] = ACTIONS(1268), - [aux_sym__val_number_token3] = ACTIONS(1268), - [anon_sym_0b] = ACTIONS(1275), - [anon_sym_0o] = ACTIONS(1275), - [anon_sym_0x] = ACTIONS(1275), - [sym_val_date] = ACTIONS(1271), - [anon_sym_DQUOTE] = ACTIONS(1268), - [sym__str_single_quotes] = ACTIONS(1268), - [sym__str_back_ticks] = ACTIONS(1268), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1271), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1271), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1277), - [anon_sym_PLUS] = ACTIONS(1273), - [aux_sym_env_var_token1] = ACTIONS(1275), - [anon_sym_CARET] = ACTIONS(1271), - [anon_sym_POUND] = ACTIONS(247), - }, - [177] = { - [sym_cmd_identifier] = STATE(8053), - [sym_expr_parenthesized] = STATE(7939), - [sym__spread_parenthesized] = STATE(564), - [sym__spread_variable] = STATE(552), - [sym_val_variable] = STATE(7939), - [sym_val_number] = STATE(7939), - [sym__val_number_decimal] = STATE(6721), - [sym__val_number] = STATE(1907), - [sym_val_string] = STATE(7939), - [sym__str_double_quotes] = STATE(1668), - [sym__spread_record] = STATE(564), - [sym_record_body] = STATE(7855), - [sym_record_entry] = STATE(7309), - [sym__record_key] = STATE(8053), - [sym_comment] = STATE(177), - [aux_sym_shebang_repeat1] = STATE(181), - [aux_sym_record_body_repeat1] = STATE(188), + [168] = { + [sym_cmd_identifier] = STATE(7700), + [sym_expr_parenthesized] = STATE(7569), + [sym__spread_parenthesized] = STATE(584), + [sym__spread_variable] = STATE(586), + [sym_val_variable] = STATE(7569), + [sym_val_number] = STATE(7569), + [sym__val_number_decimal] = STATE(6229), + [sym__val_number] = STATE(1676), + [sym_val_string] = STATE(7569), + [sym__str_double_quotes] = STATE(1389), + [sym__spread_record] = STATE(584), + [sym_record_body] = STATE(7485), + [sym_record_entry] = STATE(6685), + [sym__record_key] = STATE(7700), + [sym_comment] = STATE(168), + [aux_sym_shebang_repeat1] = STATE(173), + [aux_sym_record_body_repeat1] = STATE(179), [anon_sym_export] = ACTIONS(273), [anon_sym_alias] = ACTIONS(273), [anon_sym_let] = ACTIONS(273), [anon_sym_let_DASHenv] = ACTIONS(273), [anon_sym_mut] = ACTIONS(273), [anon_sym_const] = ACTIONS(273), - [aux_sym_cmd_identifier_token1] = ACTIONS(1241), - [aux_sym_cmd_identifier_token2] = ACTIONS(1241), - [aux_sym_cmd_identifier_token3] = ACTIONS(1241), - [aux_sym_cmd_identifier_token4] = ACTIONS(1241), - [aux_sym_cmd_identifier_token5] = ACTIONS(1241), - [aux_sym_cmd_identifier_token6] = ACTIONS(1241), - [aux_sym_cmd_identifier_token7] = ACTIONS(1241), - [aux_sym_cmd_identifier_token8] = ACTIONS(1241), - [aux_sym_cmd_identifier_token9] = ACTIONS(1241), - [aux_sym_cmd_identifier_token10] = ACTIONS(1241), - [aux_sym_cmd_identifier_token11] = ACTIONS(1241), - [aux_sym_cmd_identifier_token12] = ACTIONS(1241), - [aux_sym_cmd_identifier_token13] = ACTIONS(1241), - [aux_sym_cmd_identifier_token14] = ACTIONS(1241), - [aux_sym_cmd_identifier_token15] = ACTIONS(1241), - [aux_sym_cmd_identifier_token16] = ACTIONS(1241), - [aux_sym_cmd_identifier_token17] = ACTIONS(1241), - [aux_sym_cmd_identifier_token18] = ACTIONS(1241), - [aux_sym_cmd_identifier_token19] = ACTIONS(1241), - [aux_sym_cmd_identifier_token20] = ACTIONS(1241), - [aux_sym_cmd_identifier_token21] = ACTIONS(1241), - [aux_sym_cmd_identifier_token22] = ACTIONS(1241), - [aux_sym_cmd_identifier_token23] = ACTIONS(1241), - [aux_sym_cmd_identifier_token24] = ACTIONS(1241), - [aux_sym_cmd_identifier_token25] = ACTIONS(1241), - [aux_sym_cmd_identifier_token26] = ACTIONS(1241), - [aux_sym_cmd_identifier_token27] = ACTIONS(1241), - [aux_sym_cmd_identifier_token28] = ACTIONS(1241), - [aux_sym_cmd_identifier_token29] = ACTIONS(1241), - [aux_sym_cmd_identifier_token30] = ACTIONS(1241), - [aux_sym_cmd_identifier_token31] = ACTIONS(1241), - [aux_sym_cmd_identifier_token32] = ACTIONS(1241), - [aux_sym_cmd_identifier_token33] = ACTIONS(1241), - [aux_sym_cmd_identifier_token34] = ACTIONS(1241), - [aux_sym_cmd_identifier_token35] = ACTIONS(1241), - [aux_sym_cmd_identifier_token36] = ACTIONS(1241), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [aux_sym_cmd_identifier_token38] = ACTIONS(1245), - [aux_sym_cmd_identifier_token39] = ACTIONS(1247), - [aux_sym_cmd_identifier_token40] = ACTIONS(1247), - [sym__newline] = ACTIONS(1249), + [aux_sym_cmd_identifier_token1] = ACTIONS(1307), + [aux_sym_cmd_identifier_token2] = ACTIONS(1307), + [aux_sym_cmd_identifier_token3] = ACTIONS(1307), + [aux_sym_cmd_identifier_token4] = ACTIONS(1307), + [aux_sym_cmd_identifier_token5] = ACTIONS(1307), + [aux_sym_cmd_identifier_token6] = ACTIONS(1307), + [aux_sym_cmd_identifier_token7] = ACTIONS(1307), + [aux_sym_cmd_identifier_token8] = ACTIONS(1307), + [aux_sym_cmd_identifier_token9] = ACTIONS(1307), + [aux_sym_cmd_identifier_token10] = ACTIONS(1307), + [aux_sym_cmd_identifier_token11] = ACTIONS(1307), + [aux_sym_cmd_identifier_token12] = ACTIONS(1307), + [aux_sym_cmd_identifier_token13] = ACTIONS(1307), + [aux_sym_cmd_identifier_token14] = ACTIONS(1307), + [aux_sym_cmd_identifier_token15] = ACTIONS(1307), + [aux_sym_cmd_identifier_token16] = ACTIONS(1307), + [aux_sym_cmd_identifier_token17] = ACTIONS(1307), + [aux_sym_cmd_identifier_token18] = ACTIONS(1307), + [aux_sym_cmd_identifier_token19] = ACTIONS(1307), + [aux_sym_cmd_identifier_token20] = ACTIONS(1307), + [aux_sym_cmd_identifier_token21] = ACTIONS(1307), + [aux_sym_cmd_identifier_token22] = ACTIONS(1307), + [aux_sym_cmd_identifier_token23] = ACTIONS(1307), + [aux_sym_cmd_identifier_token24] = ACTIONS(1307), + [aux_sym_cmd_identifier_token25] = ACTIONS(1307), + [aux_sym_cmd_identifier_token26] = ACTIONS(1307), + [aux_sym_cmd_identifier_token27] = ACTIONS(1307), + [aux_sym_cmd_identifier_token28] = ACTIONS(1307), + [aux_sym_cmd_identifier_token29] = ACTIONS(1307), + [aux_sym_cmd_identifier_token30] = ACTIONS(1307), + [aux_sym_cmd_identifier_token31] = ACTIONS(1307), + [aux_sym_cmd_identifier_token32] = ACTIONS(1307), + [aux_sym_cmd_identifier_token33] = ACTIONS(1307), + [aux_sym_cmd_identifier_token34] = ACTIONS(1307), + [aux_sym_cmd_identifier_token35] = ACTIONS(1307), + [aux_sym_cmd_identifier_token36] = ACTIONS(1307), + [anon_sym_true] = ACTIONS(1309), + [anon_sym_false] = ACTIONS(1309), + [anon_sym_null] = ACTIONS(1309), + [aux_sym_cmd_identifier_token38] = ACTIONS(1311), + [aux_sym_cmd_identifier_token39] = ACTIONS(1313), + [aux_sym_cmd_identifier_token40] = ACTIONS(1313), + [sym__newline] = ACTIONS(1315), [anon_sym_def] = ACTIONS(273), [anon_sym_export_DASHenv] = ACTIONS(273), [anon_sym_extern] = ACTIONS(273), [anon_sym_module] = ACTIONS(273), [anon_sym_use] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_DOLLAR] = ACTIONS(1253), + [anon_sym_LPAREN] = ACTIONS(1317), + [anon_sym_DOLLAR] = ACTIONS(1319), [anon_sym_error] = ACTIONS(273), [anon_sym_list] = ACTIONS(273), [anon_sym_DASH] = ACTIONS(243), @@ -100421,7 +95381,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(273), [anon_sym_else] = ACTIONS(273), [anon_sym_match] = ACTIONS(273), - [anon_sym_RBRACE] = ACTIONS(291), + [anon_sym_RBRACE] = ACTIONS(1329), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(273), [anon_sym_return] = ACTIONS(273), @@ -100435,10 +95395,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(273), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(1257), - [aux_sym__val_number_decimal_token2] = ACTIONS(1259), - [aux_sym__val_number_decimal_token3] = ACTIONS(1261), - [aux_sym__val_number_decimal_token4] = ACTIONS(1263), + [aux_sym__val_number_decimal_token1] = ACTIONS(1321), + [aux_sym__val_number_decimal_token2] = ACTIONS(1323), + [aux_sym__val_number_decimal_token3] = ACTIONS(1325), + [aux_sym__val_number_decimal_token4] = ACTIONS(1327), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), @@ -100449,80 +95409,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(243), [anon_sym_POUND] = ACTIONS(247), }, - [178] = { - [sym_cmd_identifier] = STATE(8053), - [sym_expr_parenthesized] = STATE(7939), - [sym__spread_parenthesized] = STATE(564), - [sym__spread_variable] = STATE(552), - [sym_val_variable] = STATE(7939), - [sym_val_number] = STATE(7939), - [sym__val_number_decimal] = STATE(6721), - [sym__val_number] = STATE(1907), - [sym_val_string] = STATE(7939), - [sym__str_double_quotes] = STATE(1668), - [sym__spread_record] = STATE(564), - [sym_record_body] = STATE(8012), - [sym_record_entry] = STATE(7309), - [sym__record_key] = STATE(8053), - [sym_comment] = STATE(178), - [aux_sym_shebang_repeat1] = STATE(181), - [aux_sym_record_body_repeat1] = STATE(188), + [169] = { + [sym_cmd_identifier] = STATE(7700), + [sym_expr_parenthesized] = STATE(7569), + [sym__spread_parenthesized] = STATE(584), + [sym__spread_variable] = STATE(586), + [sym_val_variable] = STATE(7569), + [sym_val_number] = STATE(7569), + [sym__val_number_decimal] = STATE(6229), + [sym__val_number] = STATE(1676), + [sym_val_string] = STATE(7569), + [sym__str_double_quotes] = STATE(1389), + [sym__spread_record] = STATE(584), + [sym_record_body] = STATE(7563), + [sym_record_entry] = STATE(6685), + [sym__record_key] = STATE(7700), + [sym_comment] = STATE(169), + [aux_sym_shebang_repeat1] = STATE(173), + [aux_sym_record_body_repeat1] = STATE(179), [anon_sym_export] = ACTIONS(273), [anon_sym_alias] = ACTIONS(273), [anon_sym_let] = ACTIONS(273), [anon_sym_let_DASHenv] = ACTIONS(273), [anon_sym_mut] = ACTIONS(273), [anon_sym_const] = ACTIONS(273), - [aux_sym_cmd_identifier_token1] = ACTIONS(1241), - [aux_sym_cmd_identifier_token2] = ACTIONS(1241), - [aux_sym_cmd_identifier_token3] = ACTIONS(1241), - [aux_sym_cmd_identifier_token4] = ACTIONS(1241), - [aux_sym_cmd_identifier_token5] = ACTIONS(1241), - [aux_sym_cmd_identifier_token6] = ACTIONS(1241), - [aux_sym_cmd_identifier_token7] = ACTIONS(1241), - [aux_sym_cmd_identifier_token8] = ACTIONS(1241), - [aux_sym_cmd_identifier_token9] = ACTIONS(1241), - [aux_sym_cmd_identifier_token10] = ACTIONS(1241), - [aux_sym_cmd_identifier_token11] = ACTIONS(1241), - [aux_sym_cmd_identifier_token12] = ACTIONS(1241), - [aux_sym_cmd_identifier_token13] = ACTIONS(1241), - [aux_sym_cmd_identifier_token14] = ACTIONS(1241), - [aux_sym_cmd_identifier_token15] = ACTIONS(1241), - [aux_sym_cmd_identifier_token16] = ACTIONS(1241), - [aux_sym_cmd_identifier_token17] = ACTIONS(1241), - [aux_sym_cmd_identifier_token18] = ACTIONS(1241), - [aux_sym_cmd_identifier_token19] = ACTIONS(1241), - [aux_sym_cmd_identifier_token20] = ACTIONS(1241), - [aux_sym_cmd_identifier_token21] = ACTIONS(1241), - [aux_sym_cmd_identifier_token22] = ACTIONS(1241), - [aux_sym_cmd_identifier_token23] = ACTIONS(1241), - [aux_sym_cmd_identifier_token24] = ACTIONS(1241), - [aux_sym_cmd_identifier_token25] = ACTIONS(1241), - [aux_sym_cmd_identifier_token26] = ACTIONS(1241), - [aux_sym_cmd_identifier_token27] = ACTIONS(1241), - [aux_sym_cmd_identifier_token28] = ACTIONS(1241), - [aux_sym_cmd_identifier_token29] = ACTIONS(1241), - [aux_sym_cmd_identifier_token30] = ACTIONS(1241), - [aux_sym_cmd_identifier_token31] = ACTIONS(1241), - [aux_sym_cmd_identifier_token32] = ACTIONS(1241), - [aux_sym_cmd_identifier_token33] = ACTIONS(1241), - [aux_sym_cmd_identifier_token34] = ACTIONS(1241), - [aux_sym_cmd_identifier_token35] = ACTIONS(1241), - [aux_sym_cmd_identifier_token36] = ACTIONS(1241), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [aux_sym_cmd_identifier_token38] = ACTIONS(1245), - [aux_sym_cmd_identifier_token39] = ACTIONS(1247), - [aux_sym_cmd_identifier_token40] = ACTIONS(1247), - [sym__newline] = ACTIONS(1249), + [aux_sym_cmd_identifier_token1] = ACTIONS(1307), + [aux_sym_cmd_identifier_token2] = ACTIONS(1307), + [aux_sym_cmd_identifier_token3] = ACTIONS(1307), + [aux_sym_cmd_identifier_token4] = ACTIONS(1307), + [aux_sym_cmd_identifier_token5] = ACTIONS(1307), + [aux_sym_cmd_identifier_token6] = ACTIONS(1307), + [aux_sym_cmd_identifier_token7] = ACTIONS(1307), + [aux_sym_cmd_identifier_token8] = ACTIONS(1307), + [aux_sym_cmd_identifier_token9] = ACTIONS(1307), + [aux_sym_cmd_identifier_token10] = ACTIONS(1307), + [aux_sym_cmd_identifier_token11] = ACTIONS(1307), + [aux_sym_cmd_identifier_token12] = ACTIONS(1307), + [aux_sym_cmd_identifier_token13] = ACTIONS(1307), + [aux_sym_cmd_identifier_token14] = ACTIONS(1307), + [aux_sym_cmd_identifier_token15] = ACTIONS(1307), + [aux_sym_cmd_identifier_token16] = ACTIONS(1307), + [aux_sym_cmd_identifier_token17] = ACTIONS(1307), + [aux_sym_cmd_identifier_token18] = ACTIONS(1307), + [aux_sym_cmd_identifier_token19] = ACTIONS(1307), + [aux_sym_cmd_identifier_token20] = ACTIONS(1307), + [aux_sym_cmd_identifier_token21] = ACTIONS(1307), + [aux_sym_cmd_identifier_token22] = ACTIONS(1307), + [aux_sym_cmd_identifier_token23] = ACTIONS(1307), + [aux_sym_cmd_identifier_token24] = ACTIONS(1307), + [aux_sym_cmd_identifier_token25] = ACTIONS(1307), + [aux_sym_cmd_identifier_token26] = ACTIONS(1307), + [aux_sym_cmd_identifier_token27] = ACTIONS(1307), + [aux_sym_cmd_identifier_token28] = ACTIONS(1307), + [aux_sym_cmd_identifier_token29] = ACTIONS(1307), + [aux_sym_cmd_identifier_token30] = ACTIONS(1307), + [aux_sym_cmd_identifier_token31] = ACTIONS(1307), + [aux_sym_cmd_identifier_token32] = ACTIONS(1307), + [aux_sym_cmd_identifier_token33] = ACTIONS(1307), + [aux_sym_cmd_identifier_token34] = ACTIONS(1307), + [aux_sym_cmd_identifier_token35] = ACTIONS(1307), + [aux_sym_cmd_identifier_token36] = ACTIONS(1307), + [anon_sym_true] = ACTIONS(1309), + [anon_sym_false] = ACTIONS(1309), + [anon_sym_null] = ACTIONS(1309), + [aux_sym_cmd_identifier_token38] = ACTIONS(1311), + [aux_sym_cmd_identifier_token39] = ACTIONS(1313), + [aux_sym_cmd_identifier_token40] = ACTIONS(1313), + [sym__newline] = ACTIONS(1315), [anon_sym_def] = ACTIONS(273), [anon_sym_export_DASHenv] = ACTIONS(273), [anon_sym_extern] = ACTIONS(273), [anon_sym_module] = ACTIONS(273), [anon_sym_use] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_DOLLAR] = ACTIONS(1253), + [anon_sym_LPAREN] = ACTIONS(1317), + [anon_sym_DOLLAR] = ACTIONS(1319), [anon_sym_error] = ACTIONS(273), [anon_sym_list] = ACTIONS(273), [anon_sym_DASH] = ACTIONS(243), @@ -100537,7 +95497,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(273), [anon_sym_else] = ACTIONS(273), [anon_sym_match] = ACTIONS(273), - [anon_sym_RBRACE] = ACTIONS(1279), + [anon_sym_RBRACE] = ACTIONS(1331), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(273), [anon_sym_return] = ACTIONS(273), @@ -100551,10 +95511,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(273), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(1257), - [aux_sym__val_number_decimal_token2] = ACTIONS(1259), - [aux_sym__val_number_decimal_token3] = ACTIONS(1261), - [aux_sym__val_number_decimal_token4] = ACTIONS(1263), + [aux_sym__val_number_decimal_token1] = ACTIONS(1321), + [aux_sym__val_number_decimal_token2] = ACTIONS(1323), + [aux_sym__val_number_decimal_token3] = ACTIONS(1325), + [aux_sym__val_number_decimal_token4] = ACTIONS(1327), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), @@ -100565,80 +95525,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(243), [anon_sym_POUND] = ACTIONS(247), }, - [179] = { - [sym_cmd_identifier] = STATE(8053), - [sym_expr_parenthesized] = STATE(7939), - [sym__spread_parenthesized] = STATE(564), - [sym__spread_variable] = STATE(552), - [sym_val_variable] = STATE(7939), - [sym_val_number] = STATE(7939), - [sym__val_number_decimal] = STATE(6721), - [sym__val_number] = STATE(1907), - [sym_val_string] = STATE(7939), - [sym__str_double_quotes] = STATE(1668), - [sym__spread_record] = STATE(564), - [sym_record_body] = STATE(7931), - [sym_record_entry] = STATE(7309), - [sym__record_key] = STATE(8053), - [sym_comment] = STATE(179), - [aux_sym_shebang_repeat1] = STATE(181), - [aux_sym_record_body_repeat1] = STATE(188), + [170] = { + [sym_cmd_identifier] = STATE(7700), + [sym_expr_parenthesized] = STATE(7569), + [sym__spread_parenthesized] = STATE(584), + [sym__spread_variable] = STATE(586), + [sym_val_variable] = STATE(7569), + [sym_val_number] = STATE(7569), + [sym__val_number_decimal] = STATE(6229), + [sym__val_number] = STATE(1676), + [sym_val_string] = STATE(7569), + [sym__str_double_quotes] = STATE(1389), + [sym__spread_record] = STATE(584), + [sym_record_body] = STATE(7525), + [sym_record_entry] = STATE(6685), + [sym__record_key] = STATE(7700), + [sym_comment] = STATE(170), + [aux_sym_shebang_repeat1] = STATE(173), + [aux_sym_record_body_repeat1] = STATE(179), [anon_sym_export] = ACTIONS(273), [anon_sym_alias] = ACTIONS(273), [anon_sym_let] = ACTIONS(273), [anon_sym_let_DASHenv] = ACTIONS(273), [anon_sym_mut] = ACTIONS(273), [anon_sym_const] = ACTIONS(273), - [aux_sym_cmd_identifier_token1] = ACTIONS(1241), - [aux_sym_cmd_identifier_token2] = ACTIONS(1241), - [aux_sym_cmd_identifier_token3] = ACTIONS(1241), - [aux_sym_cmd_identifier_token4] = ACTIONS(1241), - [aux_sym_cmd_identifier_token5] = ACTIONS(1241), - [aux_sym_cmd_identifier_token6] = ACTIONS(1241), - [aux_sym_cmd_identifier_token7] = ACTIONS(1241), - [aux_sym_cmd_identifier_token8] = ACTIONS(1241), - [aux_sym_cmd_identifier_token9] = ACTIONS(1241), - [aux_sym_cmd_identifier_token10] = ACTIONS(1241), - [aux_sym_cmd_identifier_token11] = ACTIONS(1241), - [aux_sym_cmd_identifier_token12] = ACTIONS(1241), - [aux_sym_cmd_identifier_token13] = ACTIONS(1241), - [aux_sym_cmd_identifier_token14] = ACTIONS(1241), - [aux_sym_cmd_identifier_token15] = ACTIONS(1241), - [aux_sym_cmd_identifier_token16] = ACTIONS(1241), - [aux_sym_cmd_identifier_token17] = ACTIONS(1241), - [aux_sym_cmd_identifier_token18] = ACTIONS(1241), - [aux_sym_cmd_identifier_token19] = ACTIONS(1241), - [aux_sym_cmd_identifier_token20] = ACTIONS(1241), - [aux_sym_cmd_identifier_token21] = ACTIONS(1241), - [aux_sym_cmd_identifier_token22] = ACTIONS(1241), - [aux_sym_cmd_identifier_token23] = ACTIONS(1241), - [aux_sym_cmd_identifier_token24] = ACTIONS(1241), - [aux_sym_cmd_identifier_token25] = ACTIONS(1241), - [aux_sym_cmd_identifier_token26] = ACTIONS(1241), - [aux_sym_cmd_identifier_token27] = ACTIONS(1241), - [aux_sym_cmd_identifier_token28] = ACTIONS(1241), - [aux_sym_cmd_identifier_token29] = ACTIONS(1241), - [aux_sym_cmd_identifier_token30] = ACTIONS(1241), - [aux_sym_cmd_identifier_token31] = ACTIONS(1241), - [aux_sym_cmd_identifier_token32] = ACTIONS(1241), - [aux_sym_cmd_identifier_token33] = ACTIONS(1241), - [aux_sym_cmd_identifier_token34] = ACTIONS(1241), - [aux_sym_cmd_identifier_token35] = ACTIONS(1241), - [aux_sym_cmd_identifier_token36] = ACTIONS(1241), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [aux_sym_cmd_identifier_token38] = ACTIONS(1245), - [aux_sym_cmd_identifier_token39] = ACTIONS(1247), - [aux_sym_cmd_identifier_token40] = ACTIONS(1247), - [sym__newline] = ACTIONS(1249), + [aux_sym_cmd_identifier_token1] = ACTIONS(1307), + [aux_sym_cmd_identifier_token2] = ACTIONS(1307), + [aux_sym_cmd_identifier_token3] = ACTIONS(1307), + [aux_sym_cmd_identifier_token4] = ACTIONS(1307), + [aux_sym_cmd_identifier_token5] = ACTIONS(1307), + [aux_sym_cmd_identifier_token6] = ACTIONS(1307), + [aux_sym_cmd_identifier_token7] = ACTIONS(1307), + [aux_sym_cmd_identifier_token8] = ACTIONS(1307), + [aux_sym_cmd_identifier_token9] = ACTIONS(1307), + [aux_sym_cmd_identifier_token10] = ACTIONS(1307), + [aux_sym_cmd_identifier_token11] = ACTIONS(1307), + [aux_sym_cmd_identifier_token12] = ACTIONS(1307), + [aux_sym_cmd_identifier_token13] = ACTIONS(1307), + [aux_sym_cmd_identifier_token14] = ACTIONS(1307), + [aux_sym_cmd_identifier_token15] = ACTIONS(1307), + [aux_sym_cmd_identifier_token16] = ACTIONS(1307), + [aux_sym_cmd_identifier_token17] = ACTIONS(1307), + [aux_sym_cmd_identifier_token18] = ACTIONS(1307), + [aux_sym_cmd_identifier_token19] = ACTIONS(1307), + [aux_sym_cmd_identifier_token20] = ACTIONS(1307), + [aux_sym_cmd_identifier_token21] = ACTIONS(1307), + [aux_sym_cmd_identifier_token22] = ACTIONS(1307), + [aux_sym_cmd_identifier_token23] = ACTIONS(1307), + [aux_sym_cmd_identifier_token24] = ACTIONS(1307), + [aux_sym_cmd_identifier_token25] = ACTIONS(1307), + [aux_sym_cmd_identifier_token26] = ACTIONS(1307), + [aux_sym_cmd_identifier_token27] = ACTIONS(1307), + [aux_sym_cmd_identifier_token28] = ACTIONS(1307), + [aux_sym_cmd_identifier_token29] = ACTIONS(1307), + [aux_sym_cmd_identifier_token30] = ACTIONS(1307), + [aux_sym_cmd_identifier_token31] = ACTIONS(1307), + [aux_sym_cmd_identifier_token32] = ACTIONS(1307), + [aux_sym_cmd_identifier_token33] = ACTIONS(1307), + [aux_sym_cmd_identifier_token34] = ACTIONS(1307), + [aux_sym_cmd_identifier_token35] = ACTIONS(1307), + [aux_sym_cmd_identifier_token36] = ACTIONS(1307), + [anon_sym_true] = ACTIONS(1309), + [anon_sym_false] = ACTIONS(1309), + [anon_sym_null] = ACTIONS(1309), + [aux_sym_cmd_identifier_token38] = ACTIONS(1311), + [aux_sym_cmd_identifier_token39] = ACTIONS(1313), + [aux_sym_cmd_identifier_token40] = ACTIONS(1313), + [sym__newline] = ACTIONS(1315), [anon_sym_def] = ACTIONS(273), [anon_sym_export_DASHenv] = ACTIONS(273), [anon_sym_extern] = ACTIONS(273), [anon_sym_module] = ACTIONS(273), [anon_sym_use] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_DOLLAR] = ACTIONS(1253), + [anon_sym_LPAREN] = ACTIONS(1317), + [anon_sym_DOLLAR] = ACTIONS(1319), [anon_sym_error] = ACTIONS(273), [anon_sym_list] = ACTIONS(273), [anon_sym_DASH] = ACTIONS(243), @@ -100653,7 +95613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(273), [anon_sym_else] = ACTIONS(273), [anon_sym_match] = ACTIONS(273), - [anon_sym_RBRACE] = ACTIONS(1281), + [anon_sym_RBRACE] = ACTIONS(1333), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(273), [anon_sym_return] = ACTIONS(273), @@ -100667,10 +95627,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(273), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(1257), - [aux_sym__val_number_decimal_token2] = ACTIONS(1259), - [aux_sym__val_number_decimal_token3] = ACTIONS(1261), - [aux_sym__val_number_decimal_token4] = ACTIONS(1263), + [aux_sym__val_number_decimal_token1] = ACTIONS(1321), + [aux_sym__val_number_decimal_token2] = ACTIONS(1323), + [aux_sym__val_number_decimal_token3] = ACTIONS(1325), + [aux_sym__val_number_decimal_token4] = ACTIONS(1327), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), @@ -100681,80 +95641,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(243), [anon_sym_POUND] = ACTIONS(247), }, - [180] = { - [sym_cmd_identifier] = STATE(8053), - [sym_expr_parenthesized] = STATE(7939), - [sym__spread_parenthesized] = STATE(564), - [sym__spread_variable] = STATE(552), - [sym_val_variable] = STATE(7939), - [sym_val_number] = STATE(7939), - [sym__val_number_decimal] = STATE(6721), - [sym__val_number] = STATE(1907), - [sym_val_string] = STATE(7939), - [sym__str_double_quotes] = STATE(1668), - [sym__spread_record] = STATE(564), - [sym_record_body] = STATE(7762), - [sym_record_entry] = STATE(7309), - [sym__record_key] = STATE(8053), - [sym_comment] = STATE(180), - [aux_sym_shebang_repeat1] = STATE(181), - [aux_sym_record_body_repeat1] = STATE(188), + [171] = { + [sym_cmd_identifier] = STATE(7700), + [sym_expr_parenthesized] = STATE(7569), + [sym__spread_parenthesized] = STATE(584), + [sym__spread_variable] = STATE(586), + [sym_val_variable] = STATE(7569), + [sym_val_number] = STATE(7569), + [sym__val_number_decimal] = STATE(6229), + [sym__val_number] = STATE(1676), + [sym_val_string] = STATE(7569), + [sym__str_double_quotes] = STATE(1389), + [sym__spread_record] = STATE(584), + [sym_record_body] = STATE(7781), + [sym_record_entry] = STATE(6685), + [sym__record_key] = STATE(7700), + [sym_comment] = STATE(171), + [aux_sym_shebang_repeat1] = STATE(173), + [aux_sym_record_body_repeat1] = STATE(179), [anon_sym_export] = ACTIONS(273), [anon_sym_alias] = ACTIONS(273), [anon_sym_let] = ACTIONS(273), [anon_sym_let_DASHenv] = ACTIONS(273), [anon_sym_mut] = ACTIONS(273), [anon_sym_const] = ACTIONS(273), - [aux_sym_cmd_identifier_token1] = ACTIONS(1241), - [aux_sym_cmd_identifier_token2] = ACTIONS(1241), - [aux_sym_cmd_identifier_token3] = ACTIONS(1241), - [aux_sym_cmd_identifier_token4] = ACTIONS(1241), - [aux_sym_cmd_identifier_token5] = ACTIONS(1241), - [aux_sym_cmd_identifier_token6] = ACTIONS(1241), - [aux_sym_cmd_identifier_token7] = ACTIONS(1241), - [aux_sym_cmd_identifier_token8] = ACTIONS(1241), - [aux_sym_cmd_identifier_token9] = ACTIONS(1241), - [aux_sym_cmd_identifier_token10] = ACTIONS(1241), - [aux_sym_cmd_identifier_token11] = ACTIONS(1241), - [aux_sym_cmd_identifier_token12] = ACTIONS(1241), - [aux_sym_cmd_identifier_token13] = ACTIONS(1241), - [aux_sym_cmd_identifier_token14] = ACTIONS(1241), - [aux_sym_cmd_identifier_token15] = ACTIONS(1241), - [aux_sym_cmd_identifier_token16] = ACTIONS(1241), - [aux_sym_cmd_identifier_token17] = ACTIONS(1241), - [aux_sym_cmd_identifier_token18] = ACTIONS(1241), - [aux_sym_cmd_identifier_token19] = ACTIONS(1241), - [aux_sym_cmd_identifier_token20] = ACTIONS(1241), - [aux_sym_cmd_identifier_token21] = ACTIONS(1241), - [aux_sym_cmd_identifier_token22] = ACTIONS(1241), - [aux_sym_cmd_identifier_token23] = ACTIONS(1241), - [aux_sym_cmd_identifier_token24] = ACTIONS(1241), - [aux_sym_cmd_identifier_token25] = ACTIONS(1241), - [aux_sym_cmd_identifier_token26] = ACTIONS(1241), - [aux_sym_cmd_identifier_token27] = ACTIONS(1241), - [aux_sym_cmd_identifier_token28] = ACTIONS(1241), - [aux_sym_cmd_identifier_token29] = ACTIONS(1241), - [aux_sym_cmd_identifier_token30] = ACTIONS(1241), - [aux_sym_cmd_identifier_token31] = ACTIONS(1241), - [aux_sym_cmd_identifier_token32] = ACTIONS(1241), - [aux_sym_cmd_identifier_token33] = ACTIONS(1241), - [aux_sym_cmd_identifier_token34] = ACTIONS(1241), - [aux_sym_cmd_identifier_token35] = ACTIONS(1241), - [aux_sym_cmd_identifier_token36] = ACTIONS(1241), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [aux_sym_cmd_identifier_token38] = ACTIONS(1245), - [aux_sym_cmd_identifier_token39] = ACTIONS(1247), - [aux_sym_cmd_identifier_token40] = ACTIONS(1247), - [sym__newline] = ACTIONS(1249), + [aux_sym_cmd_identifier_token1] = ACTIONS(1307), + [aux_sym_cmd_identifier_token2] = ACTIONS(1307), + [aux_sym_cmd_identifier_token3] = ACTIONS(1307), + [aux_sym_cmd_identifier_token4] = ACTIONS(1307), + [aux_sym_cmd_identifier_token5] = ACTIONS(1307), + [aux_sym_cmd_identifier_token6] = ACTIONS(1307), + [aux_sym_cmd_identifier_token7] = ACTIONS(1307), + [aux_sym_cmd_identifier_token8] = ACTIONS(1307), + [aux_sym_cmd_identifier_token9] = ACTIONS(1307), + [aux_sym_cmd_identifier_token10] = ACTIONS(1307), + [aux_sym_cmd_identifier_token11] = ACTIONS(1307), + [aux_sym_cmd_identifier_token12] = ACTIONS(1307), + [aux_sym_cmd_identifier_token13] = ACTIONS(1307), + [aux_sym_cmd_identifier_token14] = ACTIONS(1307), + [aux_sym_cmd_identifier_token15] = ACTIONS(1307), + [aux_sym_cmd_identifier_token16] = ACTIONS(1307), + [aux_sym_cmd_identifier_token17] = ACTIONS(1307), + [aux_sym_cmd_identifier_token18] = ACTIONS(1307), + [aux_sym_cmd_identifier_token19] = ACTIONS(1307), + [aux_sym_cmd_identifier_token20] = ACTIONS(1307), + [aux_sym_cmd_identifier_token21] = ACTIONS(1307), + [aux_sym_cmd_identifier_token22] = ACTIONS(1307), + [aux_sym_cmd_identifier_token23] = ACTIONS(1307), + [aux_sym_cmd_identifier_token24] = ACTIONS(1307), + [aux_sym_cmd_identifier_token25] = ACTIONS(1307), + [aux_sym_cmd_identifier_token26] = ACTIONS(1307), + [aux_sym_cmd_identifier_token27] = ACTIONS(1307), + [aux_sym_cmd_identifier_token28] = ACTIONS(1307), + [aux_sym_cmd_identifier_token29] = ACTIONS(1307), + [aux_sym_cmd_identifier_token30] = ACTIONS(1307), + [aux_sym_cmd_identifier_token31] = ACTIONS(1307), + [aux_sym_cmd_identifier_token32] = ACTIONS(1307), + [aux_sym_cmd_identifier_token33] = ACTIONS(1307), + [aux_sym_cmd_identifier_token34] = ACTIONS(1307), + [aux_sym_cmd_identifier_token35] = ACTIONS(1307), + [aux_sym_cmd_identifier_token36] = ACTIONS(1307), + [anon_sym_true] = ACTIONS(1309), + [anon_sym_false] = ACTIONS(1309), + [anon_sym_null] = ACTIONS(1309), + [aux_sym_cmd_identifier_token38] = ACTIONS(1311), + [aux_sym_cmd_identifier_token39] = ACTIONS(1313), + [aux_sym_cmd_identifier_token40] = ACTIONS(1313), + [sym__newline] = ACTIONS(1315), [anon_sym_def] = ACTIONS(273), [anon_sym_export_DASHenv] = ACTIONS(273), [anon_sym_extern] = ACTIONS(273), [anon_sym_module] = ACTIONS(273), [anon_sym_use] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_DOLLAR] = ACTIONS(1253), + [anon_sym_LPAREN] = ACTIONS(1317), + [anon_sym_DOLLAR] = ACTIONS(1319), [anon_sym_error] = ACTIONS(273), [anon_sym_list] = ACTIONS(273), [anon_sym_DASH] = ACTIONS(243), @@ -100769,7 +95729,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(273), [anon_sym_else] = ACTIONS(273), [anon_sym_match] = ACTIONS(273), - [anon_sym_RBRACE] = ACTIONS(1283), + [anon_sym_RBRACE] = ACTIONS(1335), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(273), [anon_sym_return] = ACTIONS(273), @@ -100783,10 +95743,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(273), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(1257), - [aux_sym__val_number_decimal_token2] = ACTIONS(1259), - [aux_sym__val_number_decimal_token3] = ACTIONS(1261), - [aux_sym__val_number_decimal_token4] = ACTIONS(1263), + [aux_sym__val_number_decimal_token1] = ACTIONS(1321), + [aux_sym__val_number_decimal_token2] = ACTIONS(1323), + [aux_sym__val_number_decimal_token3] = ACTIONS(1325), + [aux_sym__val_number_decimal_token4] = ACTIONS(1327), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), @@ -100797,79 +95757,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(243), [anon_sym_POUND] = ACTIONS(247), }, - [181] = { - [sym_cmd_identifier] = STATE(8053), - [sym_expr_parenthesized] = STATE(7939), - [sym__spread_parenthesized] = STATE(564), - [sym__spread_variable] = STATE(552), - [sym_val_variable] = STATE(7939), - [sym_val_number] = STATE(7939), - [sym__val_number_decimal] = STATE(6721), - [sym__val_number] = STATE(1907), - [sym_val_string] = STATE(7939), - [sym__str_double_quotes] = STATE(1668), - [sym__spread_record] = STATE(564), - [sym_record_entry] = STATE(6976), - [sym__record_key] = STATE(8053), - [sym_comment] = STATE(181), - [aux_sym_shebang_repeat1] = STATE(542), - [aux_sym_record_body_repeat1] = STATE(187), + [172] = { + [sym_comment] = STATE(172), + [anon_sym_export] = ACTIONS(1337), + [anon_sym_alias] = ACTIONS(1337), + [anon_sym_let] = ACTIONS(1337), + [anon_sym_let_DASHenv] = ACTIONS(1337), + [anon_sym_mut] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1337), + [aux_sym_cmd_identifier_token1] = ACTIONS(1337), + [aux_sym_cmd_identifier_token2] = ACTIONS(1337), + [aux_sym_cmd_identifier_token3] = ACTIONS(1337), + [aux_sym_cmd_identifier_token4] = ACTIONS(1337), + [aux_sym_cmd_identifier_token5] = ACTIONS(1337), + [aux_sym_cmd_identifier_token6] = ACTIONS(1337), + [aux_sym_cmd_identifier_token7] = ACTIONS(1337), + [aux_sym_cmd_identifier_token8] = ACTIONS(1337), + [aux_sym_cmd_identifier_token9] = ACTIONS(1337), + [aux_sym_cmd_identifier_token10] = ACTIONS(1337), + [aux_sym_cmd_identifier_token11] = ACTIONS(1337), + [aux_sym_cmd_identifier_token12] = ACTIONS(1337), + [aux_sym_cmd_identifier_token13] = ACTIONS(1337), + [aux_sym_cmd_identifier_token14] = ACTIONS(1337), + [aux_sym_cmd_identifier_token15] = ACTIONS(1337), + [aux_sym_cmd_identifier_token16] = ACTIONS(1337), + [aux_sym_cmd_identifier_token17] = ACTIONS(1337), + [aux_sym_cmd_identifier_token18] = ACTIONS(1337), + [aux_sym_cmd_identifier_token19] = ACTIONS(1337), + [aux_sym_cmd_identifier_token20] = ACTIONS(1337), + [aux_sym_cmd_identifier_token21] = ACTIONS(1337), + [aux_sym_cmd_identifier_token22] = ACTIONS(1337), + [aux_sym_cmd_identifier_token23] = ACTIONS(1337), + [aux_sym_cmd_identifier_token24] = ACTIONS(1337), + [aux_sym_cmd_identifier_token25] = ACTIONS(1337), + [aux_sym_cmd_identifier_token26] = ACTIONS(1337), + [aux_sym_cmd_identifier_token27] = ACTIONS(1337), + [aux_sym_cmd_identifier_token28] = ACTIONS(1337), + [aux_sym_cmd_identifier_token29] = ACTIONS(1337), + [aux_sym_cmd_identifier_token30] = ACTIONS(1337), + [aux_sym_cmd_identifier_token31] = ACTIONS(1337), + [aux_sym_cmd_identifier_token32] = ACTIONS(1337), + [aux_sym_cmd_identifier_token33] = ACTIONS(1337), + [aux_sym_cmd_identifier_token34] = ACTIONS(1337), + [aux_sym_cmd_identifier_token35] = ACTIONS(1337), + [aux_sym_cmd_identifier_token36] = ACTIONS(1337), + [anon_sym_true] = ACTIONS(1340), + [anon_sym_false] = ACTIONS(1340), + [anon_sym_null] = ACTIONS(1340), + [aux_sym_cmd_identifier_token38] = ACTIONS(1337), + [aux_sym_cmd_identifier_token39] = ACTIONS(1340), + [aux_sym_cmd_identifier_token40] = ACTIONS(1340), + [sym__newline] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1343), + [anon_sym_def] = ACTIONS(1337), + [anon_sym_export_DASHenv] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1337), + [anon_sym_module] = ACTIONS(1337), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_LPAREN] = ACTIONS(1340), + [anon_sym_DOLLAR] = ACTIONS(1337), + [anon_sym_error] = ACTIONS(1337), + [anon_sym_list] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_break] = ACTIONS(1337), + [anon_sym_continue] = ACTIONS(1337), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_in] = ACTIONS(1345), + [anon_sym_loop] = ACTIONS(1337), + [anon_sym_make] = ACTIONS(1345), + [anon_sym_while] = ACTIONS(1337), + [anon_sym_do] = ACTIONS(1337), + [anon_sym_if] = ACTIONS(1337), + [anon_sym_else] = ACTIONS(1345), + [anon_sym_match] = ACTIONS(1337), + [aux_sym_ctrl_match_token1] = ACTIONS(1343), + [anon_sym_RBRACE] = ACTIONS(1343), + [anon_sym_DOT_DOT] = ACTIONS(1347), + [anon_sym_try] = ACTIONS(1337), + [anon_sym_catch] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1337), + [anon_sym_source] = ACTIONS(1337), + [anon_sym_source_DASHenv] = ACTIONS(1337), + [anon_sym_register] = ACTIONS(1337), + [anon_sym_hide] = ACTIONS(1337), + [anon_sym_hide_DASHenv] = ACTIONS(1337), + [anon_sym_overlay] = ACTIONS(1337), + [anon_sym_new] = ACTIONS(1345), + [anon_sym_as] = ACTIONS(1345), + [anon_sym_where] = ACTIONS(1343), + [aux_sym_expr_unary_token1] = ACTIONS(1343), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1349), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1343), + [anon_sym_DOT_DOT_LT] = ACTIONS(1343), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1349), + [aux_sym__val_number_decimal_token1] = ACTIONS(1337), + [aux_sym__val_number_decimal_token2] = ACTIONS(1340), + [aux_sym__val_number_decimal_token3] = ACTIONS(1340), + [aux_sym__val_number_decimal_token4] = ACTIONS(1340), + [aux_sym__val_number_token1] = ACTIONS(1340), + [aux_sym__val_number_token2] = ACTIONS(1340), + [aux_sym__val_number_token3] = ACTIONS(1340), + [anon_sym_0b] = ACTIONS(1347), + [anon_sym_0o] = ACTIONS(1347), + [anon_sym_0x] = ACTIONS(1347), + [sym_val_date] = ACTIONS(1343), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym__str_single_quotes] = ACTIONS(1340), + [sym__str_back_ticks] = ACTIONS(1340), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1343), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1343), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1345), + [aux_sym_env_var_token1] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1343), + [anon_sym_POUND] = ACTIONS(247), + }, + [173] = { + [sym_cmd_identifier] = STATE(7700), + [sym_expr_parenthesized] = STATE(7569), + [sym__spread_parenthesized] = STATE(584), + [sym__spread_variable] = STATE(586), + [sym_val_variable] = STATE(7569), + [sym_val_number] = STATE(7569), + [sym__val_number_decimal] = STATE(6229), + [sym__val_number] = STATE(1676), + [sym_val_string] = STATE(7569), + [sym__str_double_quotes] = STATE(1389), + [sym__spread_record] = STATE(584), + [sym_record_entry] = STATE(6801), + [sym__record_key] = STATE(7700), + [sym_comment] = STATE(173), + [aux_sym_shebang_repeat1] = STATE(551), + [aux_sym_record_body_repeat1] = STATE(181), [anon_sym_export] = ACTIONS(273), [anon_sym_alias] = ACTIONS(273), [anon_sym_let] = ACTIONS(273), [anon_sym_let_DASHenv] = ACTIONS(273), [anon_sym_mut] = ACTIONS(273), [anon_sym_const] = ACTIONS(273), - [aux_sym_cmd_identifier_token1] = ACTIONS(1241), - [aux_sym_cmd_identifier_token2] = ACTIONS(1241), - [aux_sym_cmd_identifier_token3] = ACTIONS(1241), - [aux_sym_cmd_identifier_token4] = ACTIONS(1241), - [aux_sym_cmd_identifier_token5] = ACTIONS(1241), - [aux_sym_cmd_identifier_token6] = ACTIONS(1241), - [aux_sym_cmd_identifier_token7] = ACTIONS(1241), - [aux_sym_cmd_identifier_token8] = ACTIONS(1241), - [aux_sym_cmd_identifier_token9] = ACTIONS(1241), - [aux_sym_cmd_identifier_token10] = ACTIONS(1241), - [aux_sym_cmd_identifier_token11] = ACTIONS(1241), - [aux_sym_cmd_identifier_token12] = ACTIONS(1241), - [aux_sym_cmd_identifier_token13] = ACTIONS(1241), - [aux_sym_cmd_identifier_token14] = ACTIONS(1241), - [aux_sym_cmd_identifier_token15] = ACTIONS(1241), - [aux_sym_cmd_identifier_token16] = ACTIONS(1241), - [aux_sym_cmd_identifier_token17] = ACTIONS(1241), - [aux_sym_cmd_identifier_token18] = ACTIONS(1241), - [aux_sym_cmd_identifier_token19] = ACTIONS(1241), - [aux_sym_cmd_identifier_token20] = ACTIONS(1241), - [aux_sym_cmd_identifier_token21] = ACTIONS(1241), - [aux_sym_cmd_identifier_token22] = ACTIONS(1241), - [aux_sym_cmd_identifier_token23] = ACTIONS(1241), - [aux_sym_cmd_identifier_token24] = ACTIONS(1241), - [aux_sym_cmd_identifier_token25] = ACTIONS(1241), - [aux_sym_cmd_identifier_token26] = ACTIONS(1241), - [aux_sym_cmd_identifier_token27] = ACTIONS(1241), - [aux_sym_cmd_identifier_token28] = ACTIONS(1241), - [aux_sym_cmd_identifier_token29] = ACTIONS(1241), - [aux_sym_cmd_identifier_token30] = ACTIONS(1241), - [aux_sym_cmd_identifier_token31] = ACTIONS(1241), - [aux_sym_cmd_identifier_token32] = ACTIONS(1241), - [aux_sym_cmd_identifier_token33] = ACTIONS(1241), - [aux_sym_cmd_identifier_token34] = ACTIONS(1241), - [aux_sym_cmd_identifier_token35] = ACTIONS(1241), - [aux_sym_cmd_identifier_token36] = ACTIONS(1241), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [aux_sym_cmd_identifier_token38] = ACTIONS(1245), - [aux_sym_cmd_identifier_token39] = ACTIONS(1247), - [aux_sym_cmd_identifier_token40] = ACTIONS(1247), - [sym__newline] = ACTIONS(1249), + [aux_sym_cmd_identifier_token1] = ACTIONS(1307), + [aux_sym_cmd_identifier_token2] = ACTIONS(1307), + [aux_sym_cmd_identifier_token3] = ACTIONS(1307), + [aux_sym_cmd_identifier_token4] = ACTIONS(1307), + [aux_sym_cmd_identifier_token5] = ACTIONS(1307), + [aux_sym_cmd_identifier_token6] = ACTIONS(1307), + [aux_sym_cmd_identifier_token7] = ACTIONS(1307), + [aux_sym_cmd_identifier_token8] = ACTIONS(1307), + [aux_sym_cmd_identifier_token9] = ACTIONS(1307), + [aux_sym_cmd_identifier_token10] = ACTIONS(1307), + [aux_sym_cmd_identifier_token11] = ACTIONS(1307), + [aux_sym_cmd_identifier_token12] = ACTIONS(1307), + [aux_sym_cmd_identifier_token13] = ACTIONS(1307), + [aux_sym_cmd_identifier_token14] = ACTIONS(1307), + [aux_sym_cmd_identifier_token15] = ACTIONS(1307), + [aux_sym_cmd_identifier_token16] = ACTIONS(1307), + [aux_sym_cmd_identifier_token17] = ACTIONS(1307), + [aux_sym_cmd_identifier_token18] = ACTIONS(1307), + [aux_sym_cmd_identifier_token19] = ACTIONS(1307), + [aux_sym_cmd_identifier_token20] = ACTIONS(1307), + [aux_sym_cmd_identifier_token21] = ACTIONS(1307), + [aux_sym_cmd_identifier_token22] = ACTIONS(1307), + [aux_sym_cmd_identifier_token23] = ACTIONS(1307), + [aux_sym_cmd_identifier_token24] = ACTIONS(1307), + [aux_sym_cmd_identifier_token25] = ACTIONS(1307), + [aux_sym_cmd_identifier_token26] = ACTIONS(1307), + [aux_sym_cmd_identifier_token27] = ACTIONS(1307), + [aux_sym_cmd_identifier_token28] = ACTIONS(1307), + [aux_sym_cmd_identifier_token29] = ACTIONS(1307), + [aux_sym_cmd_identifier_token30] = ACTIONS(1307), + [aux_sym_cmd_identifier_token31] = ACTIONS(1307), + [aux_sym_cmd_identifier_token32] = ACTIONS(1307), + [aux_sym_cmd_identifier_token33] = ACTIONS(1307), + [aux_sym_cmd_identifier_token34] = ACTIONS(1307), + [aux_sym_cmd_identifier_token35] = ACTIONS(1307), + [aux_sym_cmd_identifier_token36] = ACTIONS(1307), + [anon_sym_true] = ACTIONS(1309), + [anon_sym_false] = ACTIONS(1309), + [anon_sym_null] = ACTIONS(1309), + [aux_sym_cmd_identifier_token38] = ACTIONS(1311), + [aux_sym_cmd_identifier_token39] = ACTIONS(1313), + [aux_sym_cmd_identifier_token40] = ACTIONS(1313), + [sym__newline] = ACTIONS(1315), [anon_sym_def] = ACTIONS(273), [anon_sym_export_DASHenv] = ACTIONS(273), [anon_sym_extern] = ACTIONS(273), [anon_sym_module] = ACTIONS(273), [anon_sym_use] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_DOLLAR] = ACTIONS(1253), + [anon_sym_LPAREN] = ACTIONS(1317), + [anon_sym_DOLLAR] = ACTIONS(1319), [anon_sym_error] = ACTIONS(273), [anon_sym_list] = ACTIONS(273), [anon_sym_DASH] = ACTIONS(243), @@ -100897,10 +95973,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(273), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(1257), - [aux_sym__val_number_decimal_token2] = ACTIONS(1259), - [aux_sym__val_number_decimal_token3] = ACTIONS(1261), - [aux_sym__val_number_decimal_token4] = ACTIONS(1263), + [aux_sym__val_number_decimal_token1] = ACTIONS(1321), + [aux_sym__val_number_decimal_token2] = ACTIONS(1323), + [aux_sym__val_number_decimal_token3] = ACTIONS(1325), + [aux_sym__val_number_decimal_token4] = ACTIONS(1327), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), @@ -100911,647 +95987,647 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(243), [anon_sym_POUND] = ACTIONS(247), }, - [182] = { - [sym_cmd_identifier] = STATE(7764), - [sym__match_pattern_record_variable] = STATE(620), - [sym_expr_parenthesized] = STATE(7848), - [sym__spread_parenthesized] = STATE(657), - [sym__spread_variable] = STATE(658), - [sym_val_variable] = STATE(500), - [sym_val_number] = STATE(7848), - [sym__val_number_decimal] = STATE(6721), - [sym__val_number] = STATE(1907), - [sym_val_string] = STATE(7848), - [sym__str_double_quotes] = STATE(1668), - [sym__spread_record] = STATE(657), - [sym_record_entry] = STATE(620), - [sym__record_key] = STATE(7764), - [sym_comment] = STATE(182), - [aux_sym__match_pattern_record_repeat1] = STATE(183), - [anon_sym_export] = ACTIONS(1285), - [anon_sym_alias] = ACTIONS(1285), - [anon_sym_let] = ACTIONS(1285), - [anon_sym_let_DASHenv] = ACTIONS(1285), - [anon_sym_mut] = ACTIONS(1285), - [anon_sym_const] = ACTIONS(1285), - [aux_sym_cmd_identifier_token1] = ACTIONS(1241), - [aux_sym_cmd_identifier_token2] = ACTIONS(1241), - [aux_sym_cmd_identifier_token3] = ACTIONS(1241), - [aux_sym_cmd_identifier_token4] = ACTIONS(1241), - [aux_sym_cmd_identifier_token5] = ACTIONS(1241), - [aux_sym_cmd_identifier_token6] = ACTIONS(1241), - [aux_sym_cmd_identifier_token7] = ACTIONS(1241), - [aux_sym_cmd_identifier_token8] = ACTIONS(1241), - [aux_sym_cmd_identifier_token9] = ACTIONS(1241), - [aux_sym_cmd_identifier_token10] = ACTIONS(1241), - [aux_sym_cmd_identifier_token11] = ACTIONS(1241), - [aux_sym_cmd_identifier_token12] = ACTIONS(1241), - [aux_sym_cmd_identifier_token13] = ACTIONS(1241), - [aux_sym_cmd_identifier_token14] = ACTIONS(1241), - [aux_sym_cmd_identifier_token15] = ACTIONS(1241), - [aux_sym_cmd_identifier_token16] = ACTIONS(1241), - [aux_sym_cmd_identifier_token17] = ACTIONS(1241), - [aux_sym_cmd_identifier_token18] = ACTIONS(1241), - [aux_sym_cmd_identifier_token19] = ACTIONS(1241), - [aux_sym_cmd_identifier_token20] = ACTIONS(1241), - [aux_sym_cmd_identifier_token21] = ACTIONS(1241), - [aux_sym_cmd_identifier_token22] = ACTIONS(1241), - [aux_sym_cmd_identifier_token23] = ACTIONS(1241), - [aux_sym_cmd_identifier_token24] = ACTIONS(1241), - [aux_sym_cmd_identifier_token25] = ACTIONS(1241), - [aux_sym_cmd_identifier_token26] = ACTIONS(1241), - [aux_sym_cmd_identifier_token27] = ACTIONS(1241), - [aux_sym_cmd_identifier_token28] = ACTIONS(1241), - [aux_sym_cmd_identifier_token29] = ACTIONS(1241), - [aux_sym_cmd_identifier_token30] = ACTIONS(1241), - [aux_sym_cmd_identifier_token31] = ACTIONS(1241), - [aux_sym_cmd_identifier_token32] = ACTIONS(1241), - [aux_sym_cmd_identifier_token33] = ACTIONS(1241), - [aux_sym_cmd_identifier_token34] = ACTIONS(1241), - [aux_sym_cmd_identifier_token35] = ACTIONS(1241), - [aux_sym_cmd_identifier_token36] = ACTIONS(1241), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [aux_sym_cmd_identifier_token38] = ACTIONS(1245), - [aux_sym_cmd_identifier_token39] = ACTIONS(1247), - [aux_sym_cmd_identifier_token40] = ACTIONS(1247), - [anon_sym_def] = ACTIONS(1285), - [anon_sym_export_DASHenv] = ACTIONS(1285), - [anon_sym_extern] = ACTIONS(1285), - [anon_sym_module] = ACTIONS(1285), - [anon_sym_use] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_DOLLAR] = ACTIONS(1287), - [anon_sym_error] = ACTIONS(1285), - [anon_sym_list] = ACTIONS(1285), + [174] = { + [sym_cmd_identifier] = STATE(7579), + [sym__match_pattern_record_variable] = STATE(593), + [sym_expr_parenthesized] = STATE(7647), + [sym__spread_parenthesized] = STATE(634), + [sym__spread_variable] = STATE(635), + [sym_val_variable] = STATE(481), + [sym_val_number] = STATE(7647), + [sym__val_number_decimal] = STATE(6229), + [sym__val_number] = STATE(1676), + [sym_val_string] = STATE(7647), + [sym__str_double_quotes] = STATE(1389), + [sym__spread_record] = STATE(634), + [sym_record_entry] = STATE(593), + [sym__record_key] = STATE(7579), + [sym_comment] = STATE(174), + [aux_sym__match_pattern_record_repeat1] = STATE(175), + [anon_sym_export] = ACTIONS(1351), + [anon_sym_alias] = ACTIONS(1351), + [anon_sym_let] = ACTIONS(1351), + [anon_sym_let_DASHenv] = ACTIONS(1351), + [anon_sym_mut] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [aux_sym_cmd_identifier_token1] = ACTIONS(1307), + [aux_sym_cmd_identifier_token2] = ACTIONS(1307), + [aux_sym_cmd_identifier_token3] = ACTIONS(1307), + [aux_sym_cmd_identifier_token4] = ACTIONS(1307), + [aux_sym_cmd_identifier_token5] = ACTIONS(1307), + [aux_sym_cmd_identifier_token6] = ACTIONS(1307), + [aux_sym_cmd_identifier_token7] = ACTIONS(1307), + [aux_sym_cmd_identifier_token8] = ACTIONS(1307), + [aux_sym_cmd_identifier_token9] = ACTIONS(1307), + [aux_sym_cmd_identifier_token10] = ACTIONS(1307), + [aux_sym_cmd_identifier_token11] = ACTIONS(1307), + [aux_sym_cmd_identifier_token12] = ACTIONS(1307), + [aux_sym_cmd_identifier_token13] = ACTIONS(1307), + [aux_sym_cmd_identifier_token14] = ACTIONS(1307), + [aux_sym_cmd_identifier_token15] = ACTIONS(1307), + [aux_sym_cmd_identifier_token16] = ACTIONS(1307), + [aux_sym_cmd_identifier_token17] = ACTIONS(1307), + [aux_sym_cmd_identifier_token18] = ACTIONS(1307), + [aux_sym_cmd_identifier_token19] = ACTIONS(1307), + [aux_sym_cmd_identifier_token20] = ACTIONS(1307), + [aux_sym_cmd_identifier_token21] = ACTIONS(1307), + [aux_sym_cmd_identifier_token22] = ACTIONS(1307), + [aux_sym_cmd_identifier_token23] = ACTIONS(1307), + [aux_sym_cmd_identifier_token24] = ACTIONS(1307), + [aux_sym_cmd_identifier_token25] = ACTIONS(1307), + [aux_sym_cmd_identifier_token26] = ACTIONS(1307), + [aux_sym_cmd_identifier_token27] = ACTIONS(1307), + [aux_sym_cmd_identifier_token28] = ACTIONS(1307), + [aux_sym_cmd_identifier_token29] = ACTIONS(1307), + [aux_sym_cmd_identifier_token30] = ACTIONS(1307), + [aux_sym_cmd_identifier_token31] = ACTIONS(1307), + [aux_sym_cmd_identifier_token32] = ACTIONS(1307), + [aux_sym_cmd_identifier_token33] = ACTIONS(1307), + [aux_sym_cmd_identifier_token34] = ACTIONS(1307), + [aux_sym_cmd_identifier_token35] = ACTIONS(1307), + [aux_sym_cmd_identifier_token36] = ACTIONS(1307), + [anon_sym_true] = ACTIONS(1309), + [anon_sym_false] = ACTIONS(1309), + [anon_sym_null] = ACTIONS(1309), + [aux_sym_cmd_identifier_token38] = ACTIONS(1311), + [aux_sym_cmd_identifier_token39] = ACTIONS(1313), + [aux_sym_cmd_identifier_token40] = ACTIONS(1313), + [anon_sym_def] = ACTIONS(1351), + [anon_sym_export_DASHenv] = ACTIONS(1351), + [anon_sym_extern] = ACTIONS(1351), + [anon_sym_module] = ACTIONS(1351), + [anon_sym_use] = ACTIONS(1351), + [anon_sym_LPAREN] = ACTIONS(1317), + [anon_sym_DOLLAR] = ACTIONS(1353), + [anon_sym_error] = ACTIONS(1351), + [anon_sym_list] = ACTIONS(1351), [anon_sym_DASH] = ACTIONS(243), - [anon_sym_break] = ACTIONS(1285), - [anon_sym_continue] = ACTIONS(1285), - [anon_sym_for] = ACTIONS(1285), - [anon_sym_in] = ACTIONS(1285), - [anon_sym_loop] = ACTIONS(1285), - [anon_sym_make] = ACTIONS(1285), - [anon_sym_while] = ACTIONS(1285), - [anon_sym_do] = ACTIONS(1285), - [anon_sym_if] = ACTIONS(1285), - [anon_sym_else] = ACTIONS(1285), - [anon_sym_match] = ACTIONS(1285), - [anon_sym_RBRACE] = ACTIONS(1289), - [anon_sym_try] = ACTIONS(1285), - [anon_sym_catch] = ACTIONS(1285), - [anon_sym_return] = ACTIONS(1285), - [anon_sym_source] = ACTIONS(1285), - [anon_sym_source_DASHenv] = ACTIONS(1285), - [anon_sym_register] = ACTIONS(1285), - [anon_sym_hide] = ACTIONS(1285), - [anon_sym_hide_DASHenv] = ACTIONS(1285), - [anon_sym_overlay] = ACTIONS(1285), - [anon_sym_new] = ACTIONS(1285), - [anon_sym_as] = ACTIONS(1285), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1291), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1293), - [aux_sym__val_number_decimal_token1] = ACTIONS(1257), - [aux_sym__val_number_decimal_token2] = ACTIONS(1259), - [aux_sym__val_number_decimal_token3] = ACTIONS(1261), - [aux_sym__val_number_decimal_token4] = ACTIONS(1263), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_in] = ACTIONS(1351), + [anon_sym_loop] = ACTIONS(1351), + [anon_sym_make] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_do] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_else] = ACTIONS(1351), + [anon_sym_match] = ACTIONS(1351), + [anon_sym_RBRACE] = ACTIONS(1355), + [anon_sym_try] = ACTIONS(1351), + [anon_sym_catch] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_source] = ACTIONS(1351), + [anon_sym_source_DASHenv] = ACTIONS(1351), + [anon_sym_register] = ACTIONS(1351), + [anon_sym_hide] = ACTIONS(1351), + [anon_sym_hide_DASHenv] = ACTIONS(1351), + [anon_sym_overlay] = ACTIONS(1351), + [anon_sym_new] = ACTIONS(1351), + [anon_sym_as] = ACTIONS(1351), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1359), + [aux_sym__val_number_decimal_token1] = ACTIONS(1321), + [aux_sym__val_number_decimal_token2] = ACTIONS(1323), + [aux_sym__val_number_decimal_token3] = ACTIONS(1325), + [aux_sym__val_number_decimal_token4] = ACTIONS(1327), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1295), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1361), [anon_sym_PLUS] = ACTIONS(243), [anon_sym_POUND] = ACTIONS(247), }, - [183] = { - [sym_cmd_identifier] = STATE(7764), - [sym__match_pattern_record_variable] = STATE(620), - [sym_expr_parenthesized] = STATE(7848), - [sym__spread_parenthesized] = STATE(657), - [sym__spread_variable] = STATE(658), - [sym_val_variable] = STATE(500), - [sym_val_number] = STATE(7848), - [sym__val_number_decimal] = STATE(6721), - [sym__val_number] = STATE(1907), - [sym_val_string] = STATE(7848), - [sym__str_double_quotes] = STATE(1668), - [sym__spread_record] = STATE(657), - [sym_record_entry] = STATE(620), - [sym__record_key] = STATE(7764), - [sym_comment] = STATE(183), - [aux_sym__match_pattern_record_repeat1] = STATE(186), - [anon_sym_export] = ACTIONS(1285), - [anon_sym_alias] = ACTIONS(1285), - [anon_sym_let] = ACTIONS(1285), - [anon_sym_let_DASHenv] = ACTIONS(1285), - [anon_sym_mut] = ACTIONS(1285), - [anon_sym_const] = ACTIONS(1285), - [aux_sym_cmd_identifier_token1] = ACTIONS(1241), - [aux_sym_cmd_identifier_token2] = ACTIONS(1241), - [aux_sym_cmd_identifier_token3] = ACTIONS(1241), - [aux_sym_cmd_identifier_token4] = ACTIONS(1241), - [aux_sym_cmd_identifier_token5] = ACTIONS(1241), - [aux_sym_cmd_identifier_token6] = ACTIONS(1241), - [aux_sym_cmd_identifier_token7] = ACTIONS(1241), - [aux_sym_cmd_identifier_token8] = ACTIONS(1241), - [aux_sym_cmd_identifier_token9] = ACTIONS(1241), - [aux_sym_cmd_identifier_token10] = ACTIONS(1241), - [aux_sym_cmd_identifier_token11] = ACTIONS(1241), - [aux_sym_cmd_identifier_token12] = ACTIONS(1241), - [aux_sym_cmd_identifier_token13] = ACTIONS(1241), - [aux_sym_cmd_identifier_token14] = ACTIONS(1241), - [aux_sym_cmd_identifier_token15] = ACTIONS(1241), - [aux_sym_cmd_identifier_token16] = ACTIONS(1241), - [aux_sym_cmd_identifier_token17] = ACTIONS(1241), - [aux_sym_cmd_identifier_token18] = ACTIONS(1241), - [aux_sym_cmd_identifier_token19] = ACTIONS(1241), - [aux_sym_cmd_identifier_token20] = ACTIONS(1241), - [aux_sym_cmd_identifier_token21] = ACTIONS(1241), - [aux_sym_cmd_identifier_token22] = ACTIONS(1241), - [aux_sym_cmd_identifier_token23] = ACTIONS(1241), - [aux_sym_cmd_identifier_token24] = ACTIONS(1241), - [aux_sym_cmd_identifier_token25] = ACTIONS(1241), - [aux_sym_cmd_identifier_token26] = ACTIONS(1241), - [aux_sym_cmd_identifier_token27] = ACTIONS(1241), - [aux_sym_cmd_identifier_token28] = ACTIONS(1241), - [aux_sym_cmd_identifier_token29] = ACTIONS(1241), - [aux_sym_cmd_identifier_token30] = ACTIONS(1241), - [aux_sym_cmd_identifier_token31] = ACTIONS(1241), - [aux_sym_cmd_identifier_token32] = ACTIONS(1241), - [aux_sym_cmd_identifier_token33] = ACTIONS(1241), - [aux_sym_cmd_identifier_token34] = ACTIONS(1241), - [aux_sym_cmd_identifier_token35] = ACTIONS(1241), - [aux_sym_cmd_identifier_token36] = ACTIONS(1241), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [aux_sym_cmd_identifier_token38] = ACTIONS(1245), - [aux_sym_cmd_identifier_token39] = ACTIONS(1247), - [aux_sym_cmd_identifier_token40] = ACTIONS(1247), - [anon_sym_def] = ACTIONS(1285), - [anon_sym_export_DASHenv] = ACTIONS(1285), - [anon_sym_extern] = ACTIONS(1285), - [anon_sym_module] = ACTIONS(1285), - [anon_sym_use] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_DOLLAR] = ACTIONS(1287), - [anon_sym_error] = ACTIONS(1285), - [anon_sym_list] = ACTIONS(1285), + [175] = { + [sym_cmd_identifier] = STATE(7579), + [sym__match_pattern_record_variable] = STATE(593), + [sym_expr_parenthesized] = STATE(7647), + [sym__spread_parenthesized] = STATE(634), + [sym__spread_variable] = STATE(635), + [sym_val_variable] = STATE(481), + [sym_val_number] = STATE(7647), + [sym__val_number_decimal] = STATE(6229), + [sym__val_number] = STATE(1676), + [sym_val_string] = STATE(7647), + [sym__str_double_quotes] = STATE(1389), + [sym__spread_record] = STATE(634), + [sym_record_entry] = STATE(593), + [sym__record_key] = STATE(7579), + [sym_comment] = STATE(175), + [aux_sym__match_pattern_record_repeat1] = STATE(177), + [anon_sym_export] = ACTIONS(1351), + [anon_sym_alias] = ACTIONS(1351), + [anon_sym_let] = ACTIONS(1351), + [anon_sym_let_DASHenv] = ACTIONS(1351), + [anon_sym_mut] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [aux_sym_cmd_identifier_token1] = ACTIONS(1307), + [aux_sym_cmd_identifier_token2] = ACTIONS(1307), + [aux_sym_cmd_identifier_token3] = ACTIONS(1307), + [aux_sym_cmd_identifier_token4] = ACTIONS(1307), + [aux_sym_cmd_identifier_token5] = ACTIONS(1307), + [aux_sym_cmd_identifier_token6] = ACTIONS(1307), + [aux_sym_cmd_identifier_token7] = ACTIONS(1307), + [aux_sym_cmd_identifier_token8] = ACTIONS(1307), + [aux_sym_cmd_identifier_token9] = ACTIONS(1307), + [aux_sym_cmd_identifier_token10] = ACTIONS(1307), + [aux_sym_cmd_identifier_token11] = ACTIONS(1307), + [aux_sym_cmd_identifier_token12] = ACTIONS(1307), + [aux_sym_cmd_identifier_token13] = ACTIONS(1307), + [aux_sym_cmd_identifier_token14] = ACTIONS(1307), + [aux_sym_cmd_identifier_token15] = ACTIONS(1307), + [aux_sym_cmd_identifier_token16] = ACTIONS(1307), + [aux_sym_cmd_identifier_token17] = ACTIONS(1307), + [aux_sym_cmd_identifier_token18] = ACTIONS(1307), + [aux_sym_cmd_identifier_token19] = ACTIONS(1307), + [aux_sym_cmd_identifier_token20] = ACTIONS(1307), + [aux_sym_cmd_identifier_token21] = ACTIONS(1307), + [aux_sym_cmd_identifier_token22] = ACTIONS(1307), + [aux_sym_cmd_identifier_token23] = ACTIONS(1307), + [aux_sym_cmd_identifier_token24] = ACTIONS(1307), + [aux_sym_cmd_identifier_token25] = ACTIONS(1307), + [aux_sym_cmd_identifier_token26] = ACTIONS(1307), + [aux_sym_cmd_identifier_token27] = ACTIONS(1307), + [aux_sym_cmd_identifier_token28] = ACTIONS(1307), + [aux_sym_cmd_identifier_token29] = ACTIONS(1307), + [aux_sym_cmd_identifier_token30] = ACTIONS(1307), + [aux_sym_cmd_identifier_token31] = ACTIONS(1307), + [aux_sym_cmd_identifier_token32] = ACTIONS(1307), + [aux_sym_cmd_identifier_token33] = ACTIONS(1307), + [aux_sym_cmd_identifier_token34] = ACTIONS(1307), + [aux_sym_cmd_identifier_token35] = ACTIONS(1307), + [aux_sym_cmd_identifier_token36] = ACTIONS(1307), + [anon_sym_true] = ACTIONS(1309), + [anon_sym_false] = ACTIONS(1309), + [anon_sym_null] = ACTIONS(1309), + [aux_sym_cmd_identifier_token38] = ACTIONS(1311), + [aux_sym_cmd_identifier_token39] = ACTIONS(1313), + [aux_sym_cmd_identifier_token40] = ACTIONS(1313), + [anon_sym_def] = ACTIONS(1351), + [anon_sym_export_DASHenv] = ACTIONS(1351), + [anon_sym_extern] = ACTIONS(1351), + [anon_sym_module] = ACTIONS(1351), + [anon_sym_use] = ACTIONS(1351), + [anon_sym_LPAREN] = ACTIONS(1317), + [anon_sym_DOLLAR] = ACTIONS(1353), + [anon_sym_error] = ACTIONS(1351), + [anon_sym_list] = ACTIONS(1351), [anon_sym_DASH] = ACTIONS(243), - [anon_sym_break] = ACTIONS(1285), - [anon_sym_continue] = ACTIONS(1285), - [anon_sym_for] = ACTIONS(1285), - [anon_sym_in] = ACTIONS(1285), - [anon_sym_loop] = ACTIONS(1285), - [anon_sym_make] = ACTIONS(1285), - [anon_sym_while] = ACTIONS(1285), - [anon_sym_do] = ACTIONS(1285), - [anon_sym_if] = ACTIONS(1285), - [anon_sym_else] = ACTIONS(1285), - [anon_sym_match] = ACTIONS(1285), - [anon_sym_RBRACE] = ACTIONS(1297), - [anon_sym_try] = ACTIONS(1285), - [anon_sym_catch] = ACTIONS(1285), - [anon_sym_return] = ACTIONS(1285), - [anon_sym_source] = ACTIONS(1285), - [anon_sym_source_DASHenv] = ACTIONS(1285), - [anon_sym_register] = ACTIONS(1285), - [anon_sym_hide] = ACTIONS(1285), - [anon_sym_hide_DASHenv] = ACTIONS(1285), - [anon_sym_overlay] = ACTIONS(1285), - [anon_sym_new] = ACTIONS(1285), - [anon_sym_as] = ACTIONS(1285), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1291), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1293), - [aux_sym__val_number_decimal_token1] = ACTIONS(1257), - [aux_sym__val_number_decimal_token2] = ACTIONS(1259), - [aux_sym__val_number_decimal_token3] = ACTIONS(1261), - [aux_sym__val_number_decimal_token4] = ACTIONS(1263), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_in] = ACTIONS(1351), + [anon_sym_loop] = ACTIONS(1351), + [anon_sym_make] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_do] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_else] = ACTIONS(1351), + [anon_sym_match] = ACTIONS(1351), + [anon_sym_RBRACE] = ACTIONS(1363), + [anon_sym_try] = ACTIONS(1351), + [anon_sym_catch] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_source] = ACTIONS(1351), + [anon_sym_source_DASHenv] = ACTIONS(1351), + [anon_sym_register] = ACTIONS(1351), + [anon_sym_hide] = ACTIONS(1351), + [anon_sym_hide_DASHenv] = ACTIONS(1351), + [anon_sym_overlay] = ACTIONS(1351), + [anon_sym_new] = ACTIONS(1351), + [anon_sym_as] = ACTIONS(1351), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1359), + [aux_sym__val_number_decimal_token1] = ACTIONS(1321), + [aux_sym__val_number_decimal_token2] = ACTIONS(1323), + [aux_sym__val_number_decimal_token3] = ACTIONS(1325), + [aux_sym__val_number_decimal_token4] = ACTIONS(1327), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1295), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1361), [anon_sym_PLUS] = ACTIONS(243), [anon_sym_POUND] = ACTIONS(247), }, - [184] = { - [sym_cmd_identifier] = STATE(7764), - [sym__match_pattern_record_variable] = STATE(620), - [sym_expr_parenthesized] = STATE(7848), - [sym__spread_parenthesized] = STATE(657), - [sym__spread_variable] = STATE(658), - [sym_val_variable] = STATE(500), - [sym_val_number] = STATE(7848), - [sym__val_number_decimal] = STATE(6721), - [sym__val_number] = STATE(1907), - [sym_val_string] = STATE(7848), - [sym__str_double_quotes] = STATE(1668), - [sym__spread_record] = STATE(657), - [sym_record_entry] = STATE(620), - [sym__record_key] = STATE(7764), - [sym_comment] = STATE(184), - [aux_sym__match_pattern_record_repeat1] = STATE(185), - [anon_sym_export] = ACTIONS(1285), - [anon_sym_alias] = ACTIONS(1285), - [anon_sym_let] = ACTIONS(1285), - [anon_sym_let_DASHenv] = ACTIONS(1285), - [anon_sym_mut] = ACTIONS(1285), - [anon_sym_const] = ACTIONS(1285), - [aux_sym_cmd_identifier_token1] = ACTIONS(1241), - [aux_sym_cmd_identifier_token2] = ACTIONS(1241), - [aux_sym_cmd_identifier_token3] = ACTIONS(1241), - [aux_sym_cmd_identifier_token4] = ACTIONS(1241), - [aux_sym_cmd_identifier_token5] = ACTIONS(1241), - [aux_sym_cmd_identifier_token6] = ACTIONS(1241), - [aux_sym_cmd_identifier_token7] = ACTIONS(1241), - [aux_sym_cmd_identifier_token8] = ACTIONS(1241), - [aux_sym_cmd_identifier_token9] = ACTIONS(1241), - [aux_sym_cmd_identifier_token10] = ACTIONS(1241), - [aux_sym_cmd_identifier_token11] = ACTIONS(1241), - [aux_sym_cmd_identifier_token12] = ACTIONS(1241), - [aux_sym_cmd_identifier_token13] = ACTIONS(1241), - [aux_sym_cmd_identifier_token14] = ACTIONS(1241), - [aux_sym_cmd_identifier_token15] = ACTIONS(1241), - [aux_sym_cmd_identifier_token16] = ACTIONS(1241), - [aux_sym_cmd_identifier_token17] = ACTIONS(1241), - [aux_sym_cmd_identifier_token18] = ACTIONS(1241), - [aux_sym_cmd_identifier_token19] = ACTIONS(1241), - [aux_sym_cmd_identifier_token20] = ACTIONS(1241), - [aux_sym_cmd_identifier_token21] = ACTIONS(1241), - [aux_sym_cmd_identifier_token22] = ACTIONS(1241), - [aux_sym_cmd_identifier_token23] = ACTIONS(1241), - [aux_sym_cmd_identifier_token24] = ACTIONS(1241), - [aux_sym_cmd_identifier_token25] = ACTIONS(1241), - [aux_sym_cmd_identifier_token26] = ACTIONS(1241), - [aux_sym_cmd_identifier_token27] = ACTIONS(1241), - [aux_sym_cmd_identifier_token28] = ACTIONS(1241), - [aux_sym_cmd_identifier_token29] = ACTIONS(1241), - [aux_sym_cmd_identifier_token30] = ACTIONS(1241), - [aux_sym_cmd_identifier_token31] = ACTIONS(1241), - [aux_sym_cmd_identifier_token32] = ACTIONS(1241), - [aux_sym_cmd_identifier_token33] = ACTIONS(1241), - [aux_sym_cmd_identifier_token34] = ACTIONS(1241), - [aux_sym_cmd_identifier_token35] = ACTIONS(1241), - [aux_sym_cmd_identifier_token36] = ACTIONS(1241), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [aux_sym_cmd_identifier_token38] = ACTIONS(1245), - [aux_sym_cmd_identifier_token39] = ACTIONS(1247), - [aux_sym_cmd_identifier_token40] = ACTIONS(1247), - [anon_sym_def] = ACTIONS(1285), - [anon_sym_export_DASHenv] = ACTIONS(1285), - [anon_sym_extern] = ACTIONS(1285), - [anon_sym_module] = ACTIONS(1285), - [anon_sym_use] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_DOLLAR] = ACTIONS(1287), - [anon_sym_error] = ACTIONS(1285), - [anon_sym_list] = ACTIONS(1285), + [176] = { + [sym_cmd_identifier] = STATE(7579), + [sym__match_pattern_record_variable] = STATE(593), + [sym_expr_parenthesized] = STATE(7647), + [sym__spread_parenthesized] = STATE(634), + [sym__spread_variable] = STATE(635), + [sym_val_variable] = STATE(481), + [sym_val_number] = STATE(7647), + [sym__val_number_decimal] = STATE(6229), + [sym__val_number] = STATE(1676), + [sym_val_string] = STATE(7647), + [sym__str_double_quotes] = STATE(1389), + [sym__spread_record] = STATE(634), + [sym_record_entry] = STATE(593), + [sym__record_key] = STATE(7579), + [sym_comment] = STATE(176), + [aux_sym__match_pattern_record_repeat1] = STATE(178), + [anon_sym_export] = ACTIONS(1351), + [anon_sym_alias] = ACTIONS(1351), + [anon_sym_let] = ACTIONS(1351), + [anon_sym_let_DASHenv] = ACTIONS(1351), + [anon_sym_mut] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [aux_sym_cmd_identifier_token1] = ACTIONS(1307), + [aux_sym_cmd_identifier_token2] = ACTIONS(1307), + [aux_sym_cmd_identifier_token3] = ACTIONS(1307), + [aux_sym_cmd_identifier_token4] = ACTIONS(1307), + [aux_sym_cmd_identifier_token5] = ACTIONS(1307), + [aux_sym_cmd_identifier_token6] = ACTIONS(1307), + [aux_sym_cmd_identifier_token7] = ACTIONS(1307), + [aux_sym_cmd_identifier_token8] = ACTIONS(1307), + [aux_sym_cmd_identifier_token9] = ACTIONS(1307), + [aux_sym_cmd_identifier_token10] = ACTIONS(1307), + [aux_sym_cmd_identifier_token11] = ACTIONS(1307), + [aux_sym_cmd_identifier_token12] = ACTIONS(1307), + [aux_sym_cmd_identifier_token13] = ACTIONS(1307), + [aux_sym_cmd_identifier_token14] = ACTIONS(1307), + [aux_sym_cmd_identifier_token15] = ACTIONS(1307), + [aux_sym_cmd_identifier_token16] = ACTIONS(1307), + [aux_sym_cmd_identifier_token17] = ACTIONS(1307), + [aux_sym_cmd_identifier_token18] = ACTIONS(1307), + [aux_sym_cmd_identifier_token19] = ACTIONS(1307), + [aux_sym_cmd_identifier_token20] = ACTIONS(1307), + [aux_sym_cmd_identifier_token21] = ACTIONS(1307), + [aux_sym_cmd_identifier_token22] = ACTIONS(1307), + [aux_sym_cmd_identifier_token23] = ACTIONS(1307), + [aux_sym_cmd_identifier_token24] = ACTIONS(1307), + [aux_sym_cmd_identifier_token25] = ACTIONS(1307), + [aux_sym_cmd_identifier_token26] = ACTIONS(1307), + [aux_sym_cmd_identifier_token27] = ACTIONS(1307), + [aux_sym_cmd_identifier_token28] = ACTIONS(1307), + [aux_sym_cmd_identifier_token29] = ACTIONS(1307), + [aux_sym_cmd_identifier_token30] = ACTIONS(1307), + [aux_sym_cmd_identifier_token31] = ACTIONS(1307), + [aux_sym_cmd_identifier_token32] = ACTIONS(1307), + [aux_sym_cmd_identifier_token33] = ACTIONS(1307), + [aux_sym_cmd_identifier_token34] = ACTIONS(1307), + [aux_sym_cmd_identifier_token35] = ACTIONS(1307), + [aux_sym_cmd_identifier_token36] = ACTIONS(1307), + [anon_sym_true] = ACTIONS(1309), + [anon_sym_false] = ACTIONS(1309), + [anon_sym_null] = ACTIONS(1309), + [aux_sym_cmd_identifier_token38] = ACTIONS(1311), + [aux_sym_cmd_identifier_token39] = ACTIONS(1313), + [aux_sym_cmd_identifier_token40] = ACTIONS(1313), + [anon_sym_def] = ACTIONS(1351), + [anon_sym_export_DASHenv] = ACTIONS(1351), + [anon_sym_extern] = ACTIONS(1351), + [anon_sym_module] = ACTIONS(1351), + [anon_sym_use] = ACTIONS(1351), + [anon_sym_LPAREN] = ACTIONS(1317), + [anon_sym_DOLLAR] = ACTIONS(1353), + [anon_sym_error] = ACTIONS(1351), + [anon_sym_list] = ACTIONS(1351), [anon_sym_DASH] = ACTIONS(243), - [anon_sym_break] = ACTIONS(1285), - [anon_sym_continue] = ACTIONS(1285), - [anon_sym_for] = ACTIONS(1285), - [anon_sym_in] = ACTIONS(1285), - [anon_sym_loop] = ACTIONS(1285), - [anon_sym_make] = ACTIONS(1285), - [anon_sym_while] = ACTIONS(1285), - [anon_sym_do] = ACTIONS(1285), - [anon_sym_if] = ACTIONS(1285), - [anon_sym_else] = ACTIONS(1285), - [anon_sym_match] = ACTIONS(1285), - [anon_sym_RBRACE] = ACTIONS(1299), - [anon_sym_try] = ACTIONS(1285), - [anon_sym_catch] = ACTIONS(1285), - [anon_sym_return] = ACTIONS(1285), - [anon_sym_source] = ACTIONS(1285), - [anon_sym_source_DASHenv] = ACTIONS(1285), - [anon_sym_register] = ACTIONS(1285), - [anon_sym_hide] = ACTIONS(1285), - [anon_sym_hide_DASHenv] = ACTIONS(1285), - [anon_sym_overlay] = ACTIONS(1285), - [anon_sym_new] = ACTIONS(1285), - [anon_sym_as] = ACTIONS(1285), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1291), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1293), - [aux_sym__val_number_decimal_token1] = ACTIONS(1257), - [aux_sym__val_number_decimal_token2] = ACTIONS(1259), - [aux_sym__val_number_decimal_token3] = ACTIONS(1261), - [aux_sym__val_number_decimal_token4] = ACTIONS(1263), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_in] = ACTIONS(1351), + [anon_sym_loop] = ACTIONS(1351), + [anon_sym_make] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_do] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_else] = ACTIONS(1351), + [anon_sym_match] = ACTIONS(1351), + [anon_sym_RBRACE] = ACTIONS(1365), + [anon_sym_try] = ACTIONS(1351), + [anon_sym_catch] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_source] = ACTIONS(1351), + [anon_sym_source_DASHenv] = ACTIONS(1351), + [anon_sym_register] = ACTIONS(1351), + [anon_sym_hide] = ACTIONS(1351), + [anon_sym_hide_DASHenv] = ACTIONS(1351), + [anon_sym_overlay] = ACTIONS(1351), + [anon_sym_new] = ACTIONS(1351), + [anon_sym_as] = ACTIONS(1351), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1359), + [aux_sym__val_number_decimal_token1] = ACTIONS(1321), + [aux_sym__val_number_decimal_token2] = ACTIONS(1323), + [aux_sym__val_number_decimal_token3] = ACTIONS(1325), + [aux_sym__val_number_decimal_token4] = ACTIONS(1327), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1295), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1361), [anon_sym_PLUS] = ACTIONS(243), [anon_sym_POUND] = ACTIONS(247), }, - [185] = { - [sym_cmd_identifier] = STATE(7764), - [sym__match_pattern_record_variable] = STATE(620), - [sym_expr_parenthesized] = STATE(7848), - [sym__spread_parenthesized] = STATE(657), - [sym__spread_variable] = STATE(658), - [sym_val_variable] = STATE(500), - [sym_val_number] = STATE(7848), - [sym__val_number_decimal] = STATE(6721), - [sym__val_number] = STATE(1907), - [sym_val_string] = STATE(7848), - [sym__str_double_quotes] = STATE(1668), - [sym__spread_record] = STATE(657), - [sym_record_entry] = STATE(620), - [sym__record_key] = STATE(7764), - [sym_comment] = STATE(185), - [aux_sym__match_pattern_record_repeat1] = STATE(186), - [anon_sym_export] = ACTIONS(1285), - [anon_sym_alias] = ACTIONS(1285), - [anon_sym_let] = ACTIONS(1285), - [anon_sym_let_DASHenv] = ACTIONS(1285), - [anon_sym_mut] = ACTIONS(1285), - [anon_sym_const] = ACTIONS(1285), - [aux_sym_cmd_identifier_token1] = ACTIONS(1241), - [aux_sym_cmd_identifier_token2] = ACTIONS(1241), - [aux_sym_cmd_identifier_token3] = ACTIONS(1241), - [aux_sym_cmd_identifier_token4] = ACTIONS(1241), - [aux_sym_cmd_identifier_token5] = ACTIONS(1241), - [aux_sym_cmd_identifier_token6] = ACTIONS(1241), - [aux_sym_cmd_identifier_token7] = ACTIONS(1241), - [aux_sym_cmd_identifier_token8] = ACTIONS(1241), - [aux_sym_cmd_identifier_token9] = ACTIONS(1241), - [aux_sym_cmd_identifier_token10] = ACTIONS(1241), - [aux_sym_cmd_identifier_token11] = ACTIONS(1241), - [aux_sym_cmd_identifier_token12] = ACTIONS(1241), - [aux_sym_cmd_identifier_token13] = ACTIONS(1241), - [aux_sym_cmd_identifier_token14] = ACTIONS(1241), - [aux_sym_cmd_identifier_token15] = ACTIONS(1241), - [aux_sym_cmd_identifier_token16] = ACTIONS(1241), - [aux_sym_cmd_identifier_token17] = ACTIONS(1241), - [aux_sym_cmd_identifier_token18] = ACTIONS(1241), - [aux_sym_cmd_identifier_token19] = ACTIONS(1241), - [aux_sym_cmd_identifier_token20] = ACTIONS(1241), - [aux_sym_cmd_identifier_token21] = ACTIONS(1241), - [aux_sym_cmd_identifier_token22] = ACTIONS(1241), - [aux_sym_cmd_identifier_token23] = ACTIONS(1241), - [aux_sym_cmd_identifier_token24] = ACTIONS(1241), - [aux_sym_cmd_identifier_token25] = ACTIONS(1241), - [aux_sym_cmd_identifier_token26] = ACTIONS(1241), - [aux_sym_cmd_identifier_token27] = ACTIONS(1241), - [aux_sym_cmd_identifier_token28] = ACTIONS(1241), - [aux_sym_cmd_identifier_token29] = ACTIONS(1241), - [aux_sym_cmd_identifier_token30] = ACTIONS(1241), - [aux_sym_cmd_identifier_token31] = ACTIONS(1241), - [aux_sym_cmd_identifier_token32] = ACTIONS(1241), - [aux_sym_cmd_identifier_token33] = ACTIONS(1241), - [aux_sym_cmd_identifier_token34] = ACTIONS(1241), - [aux_sym_cmd_identifier_token35] = ACTIONS(1241), - [aux_sym_cmd_identifier_token36] = ACTIONS(1241), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [aux_sym_cmd_identifier_token38] = ACTIONS(1245), - [aux_sym_cmd_identifier_token39] = ACTIONS(1247), - [aux_sym_cmd_identifier_token40] = ACTIONS(1247), - [anon_sym_def] = ACTIONS(1285), - [anon_sym_export_DASHenv] = ACTIONS(1285), - [anon_sym_extern] = ACTIONS(1285), - [anon_sym_module] = ACTIONS(1285), - [anon_sym_use] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_DOLLAR] = ACTIONS(1287), - [anon_sym_error] = ACTIONS(1285), - [anon_sym_list] = ACTIONS(1285), + [177] = { + [sym_cmd_identifier] = STATE(7579), + [sym__match_pattern_record_variable] = STATE(593), + [sym_expr_parenthesized] = STATE(7647), + [sym__spread_parenthesized] = STATE(634), + [sym__spread_variable] = STATE(635), + [sym_val_variable] = STATE(481), + [sym_val_number] = STATE(7647), + [sym__val_number_decimal] = STATE(6229), + [sym__val_number] = STATE(1676), + [sym_val_string] = STATE(7647), + [sym__str_double_quotes] = STATE(1389), + [sym__spread_record] = STATE(634), + [sym_record_entry] = STATE(593), + [sym__record_key] = STATE(7579), + [sym_comment] = STATE(177), + [aux_sym__match_pattern_record_repeat1] = STATE(177), + [anon_sym_export] = ACTIONS(1367), + [anon_sym_alias] = ACTIONS(1367), + [anon_sym_let] = ACTIONS(1367), + [anon_sym_let_DASHenv] = ACTIONS(1367), + [anon_sym_mut] = ACTIONS(1367), + [anon_sym_const] = ACTIONS(1367), + [aux_sym_cmd_identifier_token1] = ACTIONS(1370), + [aux_sym_cmd_identifier_token2] = ACTIONS(1370), + [aux_sym_cmd_identifier_token3] = ACTIONS(1370), + [aux_sym_cmd_identifier_token4] = ACTIONS(1370), + [aux_sym_cmd_identifier_token5] = ACTIONS(1370), + [aux_sym_cmd_identifier_token6] = ACTIONS(1370), + [aux_sym_cmd_identifier_token7] = ACTIONS(1370), + [aux_sym_cmd_identifier_token8] = ACTIONS(1370), + [aux_sym_cmd_identifier_token9] = ACTIONS(1370), + [aux_sym_cmd_identifier_token10] = ACTIONS(1370), + [aux_sym_cmd_identifier_token11] = ACTIONS(1370), + [aux_sym_cmd_identifier_token12] = ACTIONS(1370), + [aux_sym_cmd_identifier_token13] = ACTIONS(1370), + [aux_sym_cmd_identifier_token14] = ACTIONS(1370), + [aux_sym_cmd_identifier_token15] = ACTIONS(1370), + [aux_sym_cmd_identifier_token16] = ACTIONS(1370), + [aux_sym_cmd_identifier_token17] = ACTIONS(1370), + [aux_sym_cmd_identifier_token18] = ACTIONS(1370), + [aux_sym_cmd_identifier_token19] = ACTIONS(1370), + [aux_sym_cmd_identifier_token20] = ACTIONS(1370), + [aux_sym_cmd_identifier_token21] = ACTIONS(1370), + [aux_sym_cmd_identifier_token22] = ACTIONS(1370), + [aux_sym_cmd_identifier_token23] = ACTIONS(1370), + [aux_sym_cmd_identifier_token24] = ACTIONS(1370), + [aux_sym_cmd_identifier_token25] = ACTIONS(1370), + [aux_sym_cmd_identifier_token26] = ACTIONS(1370), + [aux_sym_cmd_identifier_token27] = ACTIONS(1370), + [aux_sym_cmd_identifier_token28] = ACTIONS(1370), + [aux_sym_cmd_identifier_token29] = ACTIONS(1370), + [aux_sym_cmd_identifier_token30] = ACTIONS(1370), + [aux_sym_cmd_identifier_token31] = ACTIONS(1370), + [aux_sym_cmd_identifier_token32] = ACTIONS(1370), + [aux_sym_cmd_identifier_token33] = ACTIONS(1370), + [aux_sym_cmd_identifier_token34] = ACTIONS(1370), + [aux_sym_cmd_identifier_token35] = ACTIONS(1370), + [aux_sym_cmd_identifier_token36] = ACTIONS(1370), + [anon_sym_true] = ACTIONS(1373), + [anon_sym_false] = ACTIONS(1373), + [anon_sym_null] = ACTIONS(1373), + [aux_sym_cmd_identifier_token38] = ACTIONS(1376), + [aux_sym_cmd_identifier_token39] = ACTIONS(1379), + [aux_sym_cmd_identifier_token40] = ACTIONS(1379), + [anon_sym_def] = ACTIONS(1367), + [anon_sym_export_DASHenv] = ACTIONS(1367), + [anon_sym_extern] = ACTIONS(1367), + [anon_sym_module] = ACTIONS(1367), + [anon_sym_use] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_DOLLAR] = ACTIONS(1385), + [anon_sym_error] = ACTIONS(1367), + [anon_sym_list] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_break] = ACTIONS(1367), + [anon_sym_continue] = ACTIONS(1367), + [anon_sym_for] = ACTIONS(1367), + [anon_sym_in] = ACTIONS(1367), + [anon_sym_loop] = ACTIONS(1367), + [anon_sym_make] = ACTIONS(1367), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_do] = ACTIONS(1367), + [anon_sym_if] = ACTIONS(1367), + [anon_sym_else] = ACTIONS(1367), + [anon_sym_match] = ACTIONS(1367), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_try] = ACTIONS(1367), + [anon_sym_catch] = ACTIONS(1367), + [anon_sym_return] = ACTIONS(1367), + [anon_sym_source] = ACTIONS(1367), + [anon_sym_source_DASHenv] = ACTIONS(1367), + [anon_sym_register] = ACTIONS(1367), + [anon_sym_hide] = ACTIONS(1367), + [anon_sym_hide_DASHenv] = ACTIONS(1367), + [anon_sym_overlay] = ACTIONS(1367), + [anon_sym_new] = ACTIONS(1367), + [anon_sym_as] = ACTIONS(1367), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1396), + [aux_sym__val_number_decimal_token1] = ACTIONS(1399), + [aux_sym__val_number_decimal_token2] = ACTIONS(1402), + [aux_sym__val_number_decimal_token3] = ACTIONS(1405), + [aux_sym__val_number_decimal_token4] = ACTIONS(1408), + [aux_sym__val_number_token1] = ACTIONS(1411), + [aux_sym__val_number_token2] = ACTIONS(1411), + [aux_sym__val_number_token3] = ACTIONS(1411), + [anon_sym_DQUOTE] = ACTIONS(1414), + [sym__str_single_quotes] = ACTIONS(1417), + [sym__str_back_ticks] = ACTIONS(1417), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1420), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_POUND] = ACTIONS(247), + }, + [178] = { + [sym_cmd_identifier] = STATE(7579), + [sym__match_pattern_record_variable] = STATE(593), + [sym_expr_parenthesized] = STATE(7647), + [sym__spread_parenthesized] = STATE(634), + [sym__spread_variable] = STATE(635), + [sym_val_variable] = STATE(481), + [sym_val_number] = STATE(7647), + [sym__val_number_decimal] = STATE(6229), + [sym__val_number] = STATE(1676), + [sym_val_string] = STATE(7647), + [sym__str_double_quotes] = STATE(1389), + [sym__spread_record] = STATE(634), + [sym_record_entry] = STATE(593), + [sym__record_key] = STATE(7579), + [sym_comment] = STATE(178), + [aux_sym__match_pattern_record_repeat1] = STATE(177), + [anon_sym_export] = ACTIONS(1351), + [anon_sym_alias] = ACTIONS(1351), + [anon_sym_let] = ACTIONS(1351), + [anon_sym_let_DASHenv] = ACTIONS(1351), + [anon_sym_mut] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [aux_sym_cmd_identifier_token1] = ACTIONS(1307), + [aux_sym_cmd_identifier_token2] = ACTIONS(1307), + [aux_sym_cmd_identifier_token3] = ACTIONS(1307), + [aux_sym_cmd_identifier_token4] = ACTIONS(1307), + [aux_sym_cmd_identifier_token5] = ACTIONS(1307), + [aux_sym_cmd_identifier_token6] = ACTIONS(1307), + [aux_sym_cmd_identifier_token7] = ACTIONS(1307), + [aux_sym_cmd_identifier_token8] = ACTIONS(1307), + [aux_sym_cmd_identifier_token9] = ACTIONS(1307), + [aux_sym_cmd_identifier_token10] = ACTIONS(1307), + [aux_sym_cmd_identifier_token11] = ACTIONS(1307), + [aux_sym_cmd_identifier_token12] = ACTIONS(1307), + [aux_sym_cmd_identifier_token13] = ACTIONS(1307), + [aux_sym_cmd_identifier_token14] = ACTIONS(1307), + [aux_sym_cmd_identifier_token15] = ACTIONS(1307), + [aux_sym_cmd_identifier_token16] = ACTIONS(1307), + [aux_sym_cmd_identifier_token17] = ACTIONS(1307), + [aux_sym_cmd_identifier_token18] = ACTIONS(1307), + [aux_sym_cmd_identifier_token19] = ACTIONS(1307), + [aux_sym_cmd_identifier_token20] = ACTIONS(1307), + [aux_sym_cmd_identifier_token21] = ACTIONS(1307), + [aux_sym_cmd_identifier_token22] = ACTIONS(1307), + [aux_sym_cmd_identifier_token23] = ACTIONS(1307), + [aux_sym_cmd_identifier_token24] = ACTIONS(1307), + [aux_sym_cmd_identifier_token25] = ACTIONS(1307), + [aux_sym_cmd_identifier_token26] = ACTIONS(1307), + [aux_sym_cmd_identifier_token27] = ACTIONS(1307), + [aux_sym_cmd_identifier_token28] = ACTIONS(1307), + [aux_sym_cmd_identifier_token29] = ACTIONS(1307), + [aux_sym_cmd_identifier_token30] = ACTIONS(1307), + [aux_sym_cmd_identifier_token31] = ACTIONS(1307), + [aux_sym_cmd_identifier_token32] = ACTIONS(1307), + [aux_sym_cmd_identifier_token33] = ACTIONS(1307), + [aux_sym_cmd_identifier_token34] = ACTIONS(1307), + [aux_sym_cmd_identifier_token35] = ACTIONS(1307), + [aux_sym_cmd_identifier_token36] = ACTIONS(1307), + [anon_sym_true] = ACTIONS(1309), + [anon_sym_false] = ACTIONS(1309), + [anon_sym_null] = ACTIONS(1309), + [aux_sym_cmd_identifier_token38] = ACTIONS(1311), + [aux_sym_cmd_identifier_token39] = ACTIONS(1313), + [aux_sym_cmd_identifier_token40] = ACTIONS(1313), + [anon_sym_def] = ACTIONS(1351), + [anon_sym_export_DASHenv] = ACTIONS(1351), + [anon_sym_extern] = ACTIONS(1351), + [anon_sym_module] = ACTIONS(1351), + [anon_sym_use] = ACTIONS(1351), + [anon_sym_LPAREN] = ACTIONS(1317), + [anon_sym_DOLLAR] = ACTIONS(1353), + [anon_sym_error] = ACTIONS(1351), + [anon_sym_list] = ACTIONS(1351), [anon_sym_DASH] = ACTIONS(243), - [anon_sym_break] = ACTIONS(1285), - [anon_sym_continue] = ACTIONS(1285), - [anon_sym_for] = ACTIONS(1285), - [anon_sym_in] = ACTIONS(1285), - [anon_sym_loop] = ACTIONS(1285), - [anon_sym_make] = ACTIONS(1285), - [anon_sym_while] = ACTIONS(1285), - [anon_sym_do] = ACTIONS(1285), - [anon_sym_if] = ACTIONS(1285), - [anon_sym_else] = ACTIONS(1285), - [anon_sym_match] = ACTIONS(1285), - [anon_sym_RBRACE] = ACTIONS(1301), - [anon_sym_try] = ACTIONS(1285), - [anon_sym_catch] = ACTIONS(1285), - [anon_sym_return] = ACTIONS(1285), - [anon_sym_source] = ACTIONS(1285), - [anon_sym_source_DASHenv] = ACTIONS(1285), - [anon_sym_register] = ACTIONS(1285), - [anon_sym_hide] = ACTIONS(1285), - [anon_sym_hide_DASHenv] = ACTIONS(1285), - [anon_sym_overlay] = ACTIONS(1285), - [anon_sym_new] = ACTIONS(1285), - [anon_sym_as] = ACTIONS(1285), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1291), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1293), - [aux_sym__val_number_decimal_token1] = ACTIONS(1257), - [aux_sym__val_number_decimal_token2] = ACTIONS(1259), - [aux_sym__val_number_decimal_token3] = ACTIONS(1261), - [aux_sym__val_number_decimal_token4] = ACTIONS(1263), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_in] = ACTIONS(1351), + [anon_sym_loop] = ACTIONS(1351), + [anon_sym_make] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_do] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_else] = ACTIONS(1351), + [anon_sym_match] = ACTIONS(1351), + [anon_sym_RBRACE] = ACTIONS(1423), + [anon_sym_try] = ACTIONS(1351), + [anon_sym_catch] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_source] = ACTIONS(1351), + [anon_sym_source_DASHenv] = ACTIONS(1351), + [anon_sym_register] = ACTIONS(1351), + [anon_sym_hide] = ACTIONS(1351), + [anon_sym_hide_DASHenv] = ACTIONS(1351), + [anon_sym_overlay] = ACTIONS(1351), + [anon_sym_new] = ACTIONS(1351), + [anon_sym_as] = ACTIONS(1351), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1359), + [aux_sym__val_number_decimal_token1] = ACTIONS(1321), + [aux_sym__val_number_decimal_token2] = ACTIONS(1323), + [aux_sym__val_number_decimal_token3] = ACTIONS(1325), + [aux_sym__val_number_decimal_token4] = ACTIONS(1327), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1295), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1361), [anon_sym_PLUS] = ACTIONS(243), [anon_sym_POUND] = ACTIONS(247), }, - [186] = { - [sym_cmd_identifier] = STATE(7764), - [sym__match_pattern_record_variable] = STATE(620), - [sym_expr_parenthesized] = STATE(7848), - [sym__spread_parenthesized] = STATE(657), - [sym__spread_variable] = STATE(658), - [sym_val_variable] = STATE(500), - [sym_val_number] = STATE(7848), - [sym__val_number_decimal] = STATE(6721), - [sym__val_number] = STATE(1907), - [sym_val_string] = STATE(7848), - [sym__str_double_quotes] = STATE(1668), - [sym__spread_record] = STATE(657), - [sym_record_entry] = STATE(620), - [sym__record_key] = STATE(7764), - [sym_comment] = STATE(186), - [aux_sym__match_pattern_record_repeat1] = STATE(186), - [anon_sym_export] = ACTIONS(1303), - [anon_sym_alias] = ACTIONS(1303), - [anon_sym_let] = ACTIONS(1303), - [anon_sym_let_DASHenv] = ACTIONS(1303), - [anon_sym_mut] = ACTIONS(1303), - [anon_sym_const] = ACTIONS(1303), - [aux_sym_cmd_identifier_token1] = ACTIONS(1306), - [aux_sym_cmd_identifier_token2] = ACTIONS(1306), - [aux_sym_cmd_identifier_token3] = ACTIONS(1306), - [aux_sym_cmd_identifier_token4] = ACTIONS(1306), - [aux_sym_cmd_identifier_token5] = ACTIONS(1306), - [aux_sym_cmd_identifier_token6] = ACTIONS(1306), - [aux_sym_cmd_identifier_token7] = ACTIONS(1306), - [aux_sym_cmd_identifier_token8] = ACTIONS(1306), - [aux_sym_cmd_identifier_token9] = ACTIONS(1306), - [aux_sym_cmd_identifier_token10] = ACTIONS(1306), - [aux_sym_cmd_identifier_token11] = ACTIONS(1306), - [aux_sym_cmd_identifier_token12] = ACTIONS(1306), - [aux_sym_cmd_identifier_token13] = ACTIONS(1306), - [aux_sym_cmd_identifier_token14] = ACTIONS(1306), - [aux_sym_cmd_identifier_token15] = ACTIONS(1306), - [aux_sym_cmd_identifier_token16] = ACTIONS(1306), - [aux_sym_cmd_identifier_token17] = ACTIONS(1306), - [aux_sym_cmd_identifier_token18] = ACTIONS(1306), - [aux_sym_cmd_identifier_token19] = ACTIONS(1306), - [aux_sym_cmd_identifier_token20] = ACTIONS(1306), - [aux_sym_cmd_identifier_token21] = ACTIONS(1306), - [aux_sym_cmd_identifier_token22] = ACTIONS(1306), - [aux_sym_cmd_identifier_token23] = ACTIONS(1306), - [aux_sym_cmd_identifier_token24] = ACTIONS(1306), - [aux_sym_cmd_identifier_token25] = ACTIONS(1306), - [aux_sym_cmd_identifier_token26] = ACTIONS(1306), - [aux_sym_cmd_identifier_token27] = ACTIONS(1306), - [aux_sym_cmd_identifier_token28] = ACTIONS(1306), - [aux_sym_cmd_identifier_token29] = ACTIONS(1306), - [aux_sym_cmd_identifier_token30] = ACTIONS(1306), - [aux_sym_cmd_identifier_token31] = ACTIONS(1306), - [aux_sym_cmd_identifier_token32] = ACTIONS(1306), - [aux_sym_cmd_identifier_token33] = ACTIONS(1306), - [aux_sym_cmd_identifier_token34] = ACTIONS(1306), - [aux_sym_cmd_identifier_token35] = ACTIONS(1306), - [aux_sym_cmd_identifier_token36] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1309), - [anon_sym_false] = ACTIONS(1309), - [anon_sym_null] = ACTIONS(1309), - [aux_sym_cmd_identifier_token38] = ACTIONS(1312), - [aux_sym_cmd_identifier_token39] = ACTIONS(1315), - [aux_sym_cmd_identifier_token40] = ACTIONS(1315), - [anon_sym_def] = ACTIONS(1303), - [anon_sym_export_DASHenv] = ACTIONS(1303), - [anon_sym_extern] = ACTIONS(1303), - [anon_sym_module] = ACTIONS(1303), - [anon_sym_use] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_DOLLAR] = ACTIONS(1321), - [anon_sym_error] = ACTIONS(1303), - [anon_sym_list] = ACTIONS(1303), - [anon_sym_DASH] = ACTIONS(1324), - [anon_sym_break] = ACTIONS(1303), - [anon_sym_continue] = ACTIONS(1303), - [anon_sym_for] = ACTIONS(1303), - [anon_sym_in] = ACTIONS(1303), - [anon_sym_loop] = ACTIONS(1303), - [anon_sym_make] = ACTIONS(1303), - [anon_sym_while] = ACTIONS(1303), - [anon_sym_do] = ACTIONS(1303), - [anon_sym_if] = ACTIONS(1303), - [anon_sym_else] = ACTIONS(1303), - [anon_sym_match] = ACTIONS(1303), - [anon_sym_RBRACE] = ACTIONS(1327), - [anon_sym_try] = ACTIONS(1303), - [anon_sym_catch] = ACTIONS(1303), - [anon_sym_return] = ACTIONS(1303), - [anon_sym_source] = ACTIONS(1303), - [anon_sym_source_DASHenv] = ACTIONS(1303), - [anon_sym_register] = ACTIONS(1303), - [anon_sym_hide] = ACTIONS(1303), - [anon_sym_hide_DASHenv] = ACTIONS(1303), - [anon_sym_overlay] = ACTIONS(1303), - [anon_sym_new] = ACTIONS(1303), - [anon_sym_as] = ACTIONS(1303), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1329), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1332), - [aux_sym__val_number_decimal_token1] = ACTIONS(1335), - [aux_sym__val_number_decimal_token2] = ACTIONS(1338), - [aux_sym__val_number_decimal_token3] = ACTIONS(1341), - [aux_sym__val_number_decimal_token4] = ACTIONS(1344), - [aux_sym__val_number_token1] = ACTIONS(1347), - [aux_sym__val_number_token2] = ACTIONS(1347), - [aux_sym__val_number_token3] = ACTIONS(1347), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym__str_single_quotes] = ACTIONS(1353), - [sym__str_back_ticks] = ACTIONS(1353), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(247), - }, - [187] = { - [sym_cmd_identifier] = STATE(8053), - [sym_expr_parenthesized] = STATE(7939), - [sym__spread_parenthesized] = STATE(564), - [sym__spread_variable] = STATE(552), - [sym_val_variable] = STATE(7939), - [sym_val_number] = STATE(7939), - [sym__val_number_decimal] = STATE(6721), - [sym__val_number] = STATE(1907), - [sym_val_string] = STATE(7939), - [sym__str_double_quotes] = STATE(1668), - [sym__spread_record] = STATE(564), - [sym_record_entry] = STATE(7059), - [sym__record_key] = STATE(8053), - [sym_comment] = STATE(187), - [aux_sym_record_body_repeat1] = STATE(189), + [179] = { + [sym_cmd_identifier] = STATE(7700), + [sym_expr_parenthesized] = STATE(7569), + [sym__spread_parenthesized] = STATE(584), + [sym__spread_variable] = STATE(586), + [sym_val_variable] = STATE(7569), + [sym_val_number] = STATE(7569), + [sym__val_number_decimal] = STATE(6229), + [sym__val_number] = STATE(1676), + [sym_val_string] = STATE(7569), + [sym__str_double_quotes] = STATE(1389), + [sym__spread_record] = STATE(584), + [sym_record_entry] = STATE(6858), + [sym__record_key] = STATE(7700), + [sym_comment] = STATE(179), + [aux_sym_record_body_repeat1] = STATE(180), [anon_sym_export] = ACTIONS(273), [anon_sym_alias] = ACTIONS(273), [anon_sym_let] = ACTIONS(273), [anon_sym_let_DASHenv] = ACTIONS(273), [anon_sym_mut] = ACTIONS(273), [anon_sym_const] = ACTIONS(273), - [aux_sym_cmd_identifier_token1] = ACTIONS(1241), - [aux_sym_cmd_identifier_token2] = ACTIONS(1241), - [aux_sym_cmd_identifier_token3] = ACTIONS(1241), - [aux_sym_cmd_identifier_token4] = ACTIONS(1241), - [aux_sym_cmd_identifier_token5] = ACTIONS(1241), - [aux_sym_cmd_identifier_token6] = ACTIONS(1241), - [aux_sym_cmd_identifier_token7] = ACTIONS(1241), - [aux_sym_cmd_identifier_token8] = ACTIONS(1241), - [aux_sym_cmd_identifier_token9] = ACTIONS(1241), - [aux_sym_cmd_identifier_token10] = ACTIONS(1241), - [aux_sym_cmd_identifier_token11] = ACTIONS(1241), - [aux_sym_cmd_identifier_token12] = ACTIONS(1241), - [aux_sym_cmd_identifier_token13] = ACTIONS(1241), - [aux_sym_cmd_identifier_token14] = ACTIONS(1241), - [aux_sym_cmd_identifier_token15] = ACTIONS(1241), - [aux_sym_cmd_identifier_token16] = ACTIONS(1241), - [aux_sym_cmd_identifier_token17] = ACTIONS(1241), - [aux_sym_cmd_identifier_token18] = ACTIONS(1241), - [aux_sym_cmd_identifier_token19] = ACTIONS(1241), - [aux_sym_cmd_identifier_token20] = ACTIONS(1241), - [aux_sym_cmd_identifier_token21] = ACTIONS(1241), - [aux_sym_cmd_identifier_token22] = ACTIONS(1241), - [aux_sym_cmd_identifier_token23] = ACTIONS(1241), - [aux_sym_cmd_identifier_token24] = ACTIONS(1241), - [aux_sym_cmd_identifier_token25] = ACTIONS(1241), - [aux_sym_cmd_identifier_token26] = ACTIONS(1241), - [aux_sym_cmd_identifier_token27] = ACTIONS(1241), - [aux_sym_cmd_identifier_token28] = ACTIONS(1241), - [aux_sym_cmd_identifier_token29] = ACTIONS(1241), - [aux_sym_cmd_identifier_token30] = ACTIONS(1241), - [aux_sym_cmd_identifier_token31] = ACTIONS(1241), - [aux_sym_cmd_identifier_token32] = ACTIONS(1241), - [aux_sym_cmd_identifier_token33] = ACTIONS(1241), - [aux_sym_cmd_identifier_token34] = ACTIONS(1241), - [aux_sym_cmd_identifier_token35] = ACTIONS(1241), - [aux_sym_cmd_identifier_token36] = ACTIONS(1241), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [aux_sym_cmd_identifier_token38] = ACTIONS(1245), - [aux_sym_cmd_identifier_token39] = ACTIONS(1247), - [aux_sym_cmd_identifier_token40] = ACTIONS(1247), + [aux_sym_cmd_identifier_token1] = ACTIONS(1307), + [aux_sym_cmd_identifier_token2] = ACTIONS(1307), + [aux_sym_cmd_identifier_token3] = ACTIONS(1307), + [aux_sym_cmd_identifier_token4] = ACTIONS(1307), + [aux_sym_cmd_identifier_token5] = ACTIONS(1307), + [aux_sym_cmd_identifier_token6] = ACTIONS(1307), + [aux_sym_cmd_identifier_token7] = ACTIONS(1307), + [aux_sym_cmd_identifier_token8] = ACTIONS(1307), + [aux_sym_cmd_identifier_token9] = ACTIONS(1307), + [aux_sym_cmd_identifier_token10] = ACTIONS(1307), + [aux_sym_cmd_identifier_token11] = ACTIONS(1307), + [aux_sym_cmd_identifier_token12] = ACTIONS(1307), + [aux_sym_cmd_identifier_token13] = ACTIONS(1307), + [aux_sym_cmd_identifier_token14] = ACTIONS(1307), + [aux_sym_cmd_identifier_token15] = ACTIONS(1307), + [aux_sym_cmd_identifier_token16] = ACTIONS(1307), + [aux_sym_cmd_identifier_token17] = ACTIONS(1307), + [aux_sym_cmd_identifier_token18] = ACTIONS(1307), + [aux_sym_cmd_identifier_token19] = ACTIONS(1307), + [aux_sym_cmd_identifier_token20] = ACTIONS(1307), + [aux_sym_cmd_identifier_token21] = ACTIONS(1307), + [aux_sym_cmd_identifier_token22] = ACTIONS(1307), + [aux_sym_cmd_identifier_token23] = ACTIONS(1307), + [aux_sym_cmd_identifier_token24] = ACTIONS(1307), + [aux_sym_cmd_identifier_token25] = ACTIONS(1307), + [aux_sym_cmd_identifier_token26] = ACTIONS(1307), + [aux_sym_cmd_identifier_token27] = ACTIONS(1307), + [aux_sym_cmd_identifier_token28] = ACTIONS(1307), + [aux_sym_cmd_identifier_token29] = ACTIONS(1307), + [aux_sym_cmd_identifier_token30] = ACTIONS(1307), + [aux_sym_cmd_identifier_token31] = ACTIONS(1307), + [aux_sym_cmd_identifier_token32] = ACTIONS(1307), + [aux_sym_cmd_identifier_token33] = ACTIONS(1307), + [aux_sym_cmd_identifier_token34] = ACTIONS(1307), + [aux_sym_cmd_identifier_token35] = ACTIONS(1307), + [aux_sym_cmd_identifier_token36] = ACTIONS(1307), + [anon_sym_true] = ACTIONS(1309), + [anon_sym_false] = ACTIONS(1309), + [anon_sym_null] = ACTIONS(1309), + [aux_sym_cmd_identifier_token38] = ACTIONS(1311), + [aux_sym_cmd_identifier_token39] = ACTIONS(1313), + [aux_sym_cmd_identifier_token40] = ACTIONS(1313), [anon_sym_def] = ACTIONS(273), [anon_sym_export_DASHenv] = ACTIONS(273), [anon_sym_extern] = ACTIONS(273), [anon_sym_module] = ACTIONS(273), [anon_sym_use] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_DOLLAR] = ACTIONS(1253), + [anon_sym_LPAREN] = ACTIONS(1317), + [anon_sym_DOLLAR] = ACTIONS(1319), [anon_sym_error] = ACTIONS(273), [anon_sym_list] = ACTIONS(273), [anon_sym_DASH] = ACTIONS(243), @@ -101579,10 +96655,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(273), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(1257), - [aux_sym__val_number_decimal_token2] = ACTIONS(1259), - [aux_sym__val_number_decimal_token3] = ACTIONS(1261), - [aux_sym__val_number_decimal_token4] = ACTIONS(1263), + [aux_sym__val_number_decimal_token1] = ACTIONS(1321), + [aux_sym__val_number_decimal_token2] = ACTIONS(1323), + [aux_sym__val_number_decimal_token3] = ACTIONS(1325), + [aux_sym__val_number_decimal_token4] = ACTIONS(1327), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), @@ -101593,77 +96669,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(243), [anon_sym_POUND] = ACTIONS(247), }, - [188] = { - [sym_cmd_identifier] = STATE(8053), - [sym_expr_parenthesized] = STATE(7939), - [sym__spread_parenthesized] = STATE(564), - [sym__spread_variable] = STATE(552), - [sym_val_variable] = STATE(7939), - [sym_val_number] = STATE(7939), - [sym__val_number_decimal] = STATE(6721), - [sym__val_number] = STATE(1907), - [sym_val_string] = STATE(7939), - [sym__str_double_quotes] = STATE(1668), - [sym__spread_record] = STATE(564), - [sym_record_entry] = STATE(6980), - [sym__record_key] = STATE(8053), - [sym_comment] = STATE(188), - [aux_sym_record_body_repeat1] = STATE(189), + [180] = { + [sym_cmd_identifier] = STATE(7700), + [sym_expr_parenthesized] = STATE(7569), + [sym__spread_parenthesized] = STATE(584), + [sym__spread_variable] = STATE(586), + [sym_val_variable] = STATE(7569), + [sym_val_number] = STATE(7569), + [sym__val_number_decimal] = STATE(6229), + [sym__val_number] = STATE(1676), + [sym_val_string] = STATE(7569), + [sym__str_double_quotes] = STATE(1389), + [sym__spread_record] = STATE(584), + [sym_record_entry] = STATE(7344), + [sym__record_key] = STATE(7700), + [sym_comment] = STATE(180), + [aux_sym_record_body_repeat1] = STATE(180), + [anon_sym_export] = ACTIONS(1425), + [anon_sym_alias] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_let_DASHenv] = ACTIONS(1425), + [anon_sym_mut] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1425), + [aux_sym_cmd_identifier_token1] = ACTIONS(1428), + [aux_sym_cmd_identifier_token2] = ACTIONS(1428), + [aux_sym_cmd_identifier_token3] = ACTIONS(1428), + [aux_sym_cmd_identifier_token4] = ACTIONS(1428), + [aux_sym_cmd_identifier_token5] = ACTIONS(1428), + [aux_sym_cmd_identifier_token6] = ACTIONS(1428), + [aux_sym_cmd_identifier_token7] = ACTIONS(1428), + [aux_sym_cmd_identifier_token8] = ACTIONS(1428), + [aux_sym_cmd_identifier_token9] = ACTIONS(1428), + [aux_sym_cmd_identifier_token10] = ACTIONS(1428), + [aux_sym_cmd_identifier_token11] = ACTIONS(1428), + [aux_sym_cmd_identifier_token12] = ACTIONS(1428), + [aux_sym_cmd_identifier_token13] = ACTIONS(1428), + [aux_sym_cmd_identifier_token14] = ACTIONS(1428), + [aux_sym_cmd_identifier_token15] = ACTIONS(1428), + [aux_sym_cmd_identifier_token16] = ACTIONS(1428), + [aux_sym_cmd_identifier_token17] = ACTIONS(1428), + [aux_sym_cmd_identifier_token18] = ACTIONS(1428), + [aux_sym_cmd_identifier_token19] = ACTIONS(1428), + [aux_sym_cmd_identifier_token20] = ACTIONS(1428), + [aux_sym_cmd_identifier_token21] = ACTIONS(1428), + [aux_sym_cmd_identifier_token22] = ACTIONS(1428), + [aux_sym_cmd_identifier_token23] = ACTIONS(1428), + [aux_sym_cmd_identifier_token24] = ACTIONS(1428), + [aux_sym_cmd_identifier_token25] = ACTIONS(1428), + [aux_sym_cmd_identifier_token26] = ACTIONS(1428), + [aux_sym_cmd_identifier_token27] = ACTIONS(1428), + [aux_sym_cmd_identifier_token28] = ACTIONS(1428), + [aux_sym_cmd_identifier_token29] = ACTIONS(1428), + [aux_sym_cmd_identifier_token30] = ACTIONS(1428), + [aux_sym_cmd_identifier_token31] = ACTIONS(1428), + [aux_sym_cmd_identifier_token32] = ACTIONS(1428), + [aux_sym_cmd_identifier_token33] = ACTIONS(1428), + [aux_sym_cmd_identifier_token34] = ACTIONS(1428), + [aux_sym_cmd_identifier_token35] = ACTIONS(1428), + [aux_sym_cmd_identifier_token36] = ACTIONS(1428), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_null] = ACTIONS(1431), + [aux_sym_cmd_identifier_token38] = ACTIONS(1434), + [aux_sym_cmd_identifier_token39] = ACTIONS(1437), + [aux_sym_cmd_identifier_token40] = ACTIONS(1437), + [anon_sym_def] = ACTIONS(1425), + [anon_sym_export_DASHenv] = ACTIONS(1425), + [anon_sym_extern] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), + [anon_sym_use] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1440), + [anon_sym_DOLLAR] = ACTIONS(1443), + [anon_sym_error] = ACTIONS(1425), + [anon_sym_list] = ACTIONS(1425), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_break] = ACTIONS(1425), + [anon_sym_continue] = ACTIONS(1425), + [anon_sym_for] = ACTIONS(1425), + [anon_sym_in] = ACTIONS(1425), + [anon_sym_loop] = ACTIONS(1425), + [anon_sym_make] = ACTIONS(1425), + [anon_sym_while] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_if] = ACTIONS(1425), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_match] = ACTIONS(1425), + [anon_sym_try] = ACTIONS(1425), + [anon_sym_catch] = ACTIONS(1425), + [anon_sym_return] = ACTIONS(1425), + [anon_sym_source] = ACTIONS(1425), + [anon_sym_source_DASHenv] = ACTIONS(1425), + [anon_sym_register] = ACTIONS(1425), + [anon_sym_hide] = ACTIONS(1425), + [anon_sym_hide_DASHenv] = ACTIONS(1425), + [anon_sym_overlay] = ACTIONS(1425), + [anon_sym_new] = ACTIONS(1425), + [anon_sym_as] = ACTIONS(1425), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1449), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1452), + [aux_sym__val_number_decimal_token1] = ACTIONS(1455), + [aux_sym__val_number_decimal_token2] = ACTIONS(1458), + [aux_sym__val_number_decimal_token3] = ACTIONS(1461), + [aux_sym__val_number_decimal_token4] = ACTIONS(1464), + [aux_sym__val_number_token1] = ACTIONS(1467), + [aux_sym__val_number_token2] = ACTIONS(1467), + [aux_sym__val_number_token3] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(1470), + [sym__str_single_quotes] = ACTIONS(1473), + [sym__str_back_ticks] = ACTIONS(1473), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_POUND] = ACTIONS(247), + }, + [181] = { + [sym_cmd_identifier] = STATE(7700), + [sym_expr_parenthesized] = STATE(7569), + [sym__spread_parenthesized] = STATE(584), + [sym__spread_variable] = STATE(586), + [sym_val_variable] = STATE(7569), + [sym_val_number] = STATE(7569), + [sym__val_number_decimal] = STATE(6229), + [sym__val_number] = STATE(1676), + [sym_val_string] = STATE(7569), + [sym__str_double_quotes] = STATE(1389), + [sym__spread_record] = STATE(584), + [sym_record_entry] = STATE(6879), + [sym__record_key] = STATE(7700), + [sym_comment] = STATE(181), + [aux_sym_record_body_repeat1] = STATE(180), [anon_sym_export] = ACTIONS(273), [anon_sym_alias] = ACTIONS(273), [anon_sym_let] = ACTIONS(273), [anon_sym_let_DASHenv] = ACTIONS(273), [anon_sym_mut] = ACTIONS(273), [anon_sym_const] = ACTIONS(273), - [aux_sym_cmd_identifier_token1] = ACTIONS(1241), - [aux_sym_cmd_identifier_token2] = ACTIONS(1241), - [aux_sym_cmd_identifier_token3] = ACTIONS(1241), - [aux_sym_cmd_identifier_token4] = ACTIONS(1241), - [aux_sym_cmd_identifier_token5] = ACTIONS(1241), - [aux_sym_cmd_identifier_token6] = ACTIONS(1241), - [aux_sym_cmd_identifier_token7] = ACTIONS(1241), - [aux_sym_cmd_identifier_token8] = ACTIONS(1241), - [aux_sym_cmd_identifier_token9] = ACTIONS(1241), - [aux_sym_cmd_identifier_token10] = ACTIONS(1241), - [aux_sym_cmd_identifier_token11] = ACTIONS(1241), - [aux_sym_cmd_identifier_token12] = ACTIONS(1241), - [aux_sym_cmd_identifier_token13] = ACTIONS(1241), - [aux_sym_cmd_identifier_token14] = ACTIONS(1241), - [aux_sym_cmd_identifier_token15] = ACTIONS(1241), - [aux_sym_cmd_identifier_token16] = ACTIONS(1241), - [aux_sym_cmd_identifier_token17] = ACTIONS(1241), - [aux_sym_cmd_identifier_token18] = ACTIONS(1241), - [aux_sym_cmd_identifier_token19] = ACTIONS(1241), - [aux_sym_cmd_identifier_token20] = ACTIONS(1241), - [aux_sym_cmd_identifier_token21] = ACTIONS(1241), - [aux_sym_cmd_identifier_token22] = ACTIONS(1241), - [aux_sym_cmd_identifier_token23] = ACTIONS(1241), - [aux_sym_cmd_identifier_token24] = ACTIONS(1241), - [aux_sym_cmd_identifier_token25] = ACTIONS(1241), - [aux_sym_cmd_identifier_token26] = ACTIONS(1241), - [aux_sym_cmd_identifier_token27] = ACTIONS(1241), - [aux_sym_cmd_identifier_token28] = ACTIONS(1241), - [aux_sym_cmd_identifier_token29] = ACTIONS(1241), - [aux_sym_cmd_identifier_token30] = ACTIONS(1241), - [aux_sym_cmd_identifier_token31] = ACTIONS(1241), - [aux_sym_cmd_identifier_token32] = ACTIONS(1241), - [aux_sym_cmd_identifier_token33] = ACTIONS(1241), - [aux_sym_cmd_identifier_token34] = ACTIONS(1241), - [aux_sym_cmd_identifier_token35] = ACTIONS(1241), - [aux_sym_cmd_identifier_token36] = ACTIONS(1241), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [anon_sym_null] = ACTIONS(1243), - [aux_sym_cmd_identifier_token38] = ACTIONS(1245), - [aux_sym_cmd_identifier_token39] = ACTIONS(1247), - [aux_sym_cmd_identifier_token40] = ACTIONS(1247), + [aux_sym_cmd_identifier_token1] = ACTIONS(1307), + [aux_sym_cmd_identifier_token2] = ACTIONS(1307), + [aux_sym_cmd_identifier_token3] = ACTIONS(1307), + [aux_sym_cmd_identifier_token4] = ACTIONS(1307), + [aux_sym_cmd_identifier_token5] = ACTIONS(1307), + [aux_sym_cmd_identifier_token6] = ACTIONS(1307), + [aux_sym_cmd_identifier_token7] = ACTIONS(1307), + [aux_sym_cmd_identifier_token8] = ACTIONS(1307), + [aux_sym_cmd_identifier_token9] = ACTIONS(1307), + [aux_sym_cmd_identifier_token10] = ACTIONS(1307), + [aux_sym_cmd_identifier_token11] = ACTIONS(1307), + [aux_sym_cmd_identifier_token12] = ACTIONS(1307), + [aux_sym_cmd_identifier_token13] = ACTIONS(1307), + [aux_sym_cmd_identifier_token14] = ACTIONS(1307), + [aux_sym_cmd_identifier_token15] = ACTIONS(1307), + [aux_sym_cmd_identifier_token16] = ACTIONS(1307), + [aux_sym_cmd_identifier_token17] = ACTIONS(1307), + [aux_sym_cmd_identifier_token18] = ACTIONS(1307), + [aux_sym_cmd_identifier_token19] = ACTIONS(1307), + [aux_sym_cmd_identifier_token20] = ACTIONS(1307), + [aux_sym_cmd_identifier_token21] = ACTIONS(1307), + [aux_sym_cmd_identifier_token22] = ACTIONS(1307), + [aux_sym_cmd_identifier_token23] = ACTIONS(1307), + [aux_sym_cmd_identifier_token24] = ACTIONS(1307), + [aux_sym_cmd_identifier_token25] = ACTIONS(1307), + [aux_sym_cmd_identifier_token26] = ACTIONS(1307), + [aux_sym_cmd_identifier_token27] = ACTIONS(1307), + [aux_sym_cmd_identifier_token28] = ACTIONS(1307), + [aux_sym_cmd_identifier_token29] = ACTIONS(1307), + [aux_sym_cmd_identifier_token30] = ACTIONS(1307), + [aux_sym_cmd_identifier_token31] = ACTIONS(1307), + [aux_sym_cmd_identifier_token32] = ACTIONS(1307), + [aux_sym_cmd_identifier_token33] = ACTIONS(1307), + [aux_sym_cmd_identifier_token34] = ACTIONS(1307), + [aux_sym_cmd_identifier_token35] = ACTIONS(1307), + [aux_sym_cmd_identifier_token36] = ACTIONS(1307), + [anon_sym_true] = ACTIONS(1309), + [anon_sym_false] = ACTIONS(1309), + [anon_sym_null] = ACTIONS(1309), + [aux_sym_cmd_identifier_token38] = ACTIONS(1311), + [aux_sym_cmd_identifier_token39] = ACTIONS(1313), + [aux_sym_cmd_identifier_token40] = ACTIONS(1313), [anon_sym_def] = ACTIONS(273), [anon_sym_export_DASHenv] = ACTIONS(273), [anon_sym_extern] = ACTIONS(273), [anon_sym_module] = ACTIONS(273), [anon_sym_use] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_DOLLAR] = ACTIONS(1253), + [anon_sym_LPAREN] = ACTIONS(1317), + [anon_sym_DOLLAR] = ACTIONS(1319), [anon_sym_error] = ACTIONS(273), [anon_sym_list] = ACTIONS(273), [anon_sym_DASH] = ACTIONS(243), @@ -101691,10 +96879,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(273), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(1257), - [aux_sym__val_number_decimal_token2] = ACTIONS(1259), - [aux_sym__val_number_decimal_token3] = ACTIONS(1261), - [aux_sym__val_number_decimal_token4] = ACTIONS(1263), + [aux_sym__val_number_decimal_token1] = ACTIONS(1321), + [aux_sym__val_number_decimal_token2] = ACTIONS(1323), + [aux_sym__val_number_decimal_token3] = ACTIONS(1325), + [aux_sym__val_number_decimal_token4] = ACTIONS(1327), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), @@ -101705,11893 +96893,12202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(243), [anon_sym_POUND] = ACTIONS(247), }, + [182] = { + [sym__expr_parenthesized_immediate] = STATE(385), + [sym__immediate_decimal] = STATE(286), + [sym_val_variable] = STATE(385), + [sym_comment] = STATE(182), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_alias] = ACTIONS(1479), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_let_DASHenv] = ACTIONS(1479), + [anon_sym_mut] = ACTIONS(1479), + [anon_sym_const] = ACTIONS(1479), + [aux_sym_cmd_identifier_token1] = ACTIONS(1479), + [aux_sym_cmd_identifier_token2] = ACTIONS(1479), + [aux_sym_cmd_identifier_token3] = ACTIONS(1479), + [aux_sym_cmd_identifier_token4] = ACTIONS(1479), + [aux_sym_cmd_identifier_token5] = ACTIONS(1479), + [aux_sym_cmd_identifier_token6] = ACTIONS(1479), + [aux_sym_cmd_identifier_token7] = ACTIONS(1479), + [aux_sym_cmd_identifier_token8] = ACTIONS(1479), + [aux_sym_cmd_identifier_token9] = ACTIONS(1479), + [aux_sym_cmd_identifier_token10] = ACTIONS(1479), + [aux_sym_cmd_identifier_token11] = ACTIONS(1479), + [aux_sym_cmd_identifier_token12] = ACTIONS(1479), + [aux_sym_cmd_identifier_token13] = ACTIONS(1479), + [aux_sym_cmd_identifier_token14] = ACTIONS(1479), + [aux_sym_cmd_identifier_token15] = ACTIONS(1479), + [aux_sym_cmd_identifier_token16] = ACTIONS(1479), + [aux_sym_cmd_identifier_token17] = ACTIONS(1479), + [aux_sym_cmd_identifier_token18] = ACTIONS(1479), + [aux_sym_cmd_identifier_token19] = ACTIONS(1479), + [aux_sym_cmd_identifier_token20] = ACTIONS(1479), + [aux_sym_cmd_identifier_token21] = ACTIONS(1479), + [aux_sym_cmd_identifier_token22] = ACTIONS(1479), + [aux_sym_cmd_identifier_token23] = ACTIONS(1479), + [aux_sym_cmd_identifier_token24] = ACTIONS(1479), + [aux_sym_cmd_identifier_token25] = ACTIONS(1479), + [aux_sym_cmd_identifier_token26] = ACTIONS(1479), + [aux_sym_cmd_identifier_token27] = ACTIONS(1479), + [aux_sym_cmd_identifier_token28] = ACTIONS(1479), + [aux_sym_cmd_identifier_token29] = ACTIONS(1479), + [aux_sym_cmd_identifier_token30] = ACTIONS(1479), + [aux_sym_cmd_identifier_token31] = ACTIONS(1479), + [aux_sym_cmd_identifier_token32] = ACTIONS(1479), + [aux_sym_cmd_identifier_token33] = ACTIONS(1479), + [aux_sym_cmd_identifier_token34] = ACTIONS(1479), + [aux_sym_cmd_identifier_token35] = ACTIONS(1479), + [aux_sym_cmd_identifier_token36] = ACTIONS(1479), + [anon_sym_true] = ACTIONS(1479), + [anon_sym_false] = ACTIONS(1479), + [anon_sym_null] = ACTIONS(1479), + [aux_sym_cmd_identifier_token38] = ACTIONS(1479), + [aux_sym_cmd_identifier_token39] = ACTIONS(1479), + [aux_sym_cmd_identifier_token40] = ACTIONS(1479), + [anon_sym_def] = ACTIONS(1479), + [anon_sym_export_DASHenv] = ACTIONS(1479), + [anon_sym_extern] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_use] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_DOLLAR] = ACTIONS(1481), + [anon_sym_error] = ACTIONS(1479), + [anon_sym_list] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_break] = ACTIONS(1479), + [anon_sym_continue] = ACTIONS(1479), + [anon_sym_for] = ACTIONS(1479), + [anon_sym_in] = ACTIONS(1479), + [anon_sym_loop] = ACTIONS(1479), + [anon_sym_make] = ACTIONS(1479), + [anon_sym_while] = ACTIONS(1479), + [anon_sym_do] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_else] = ACTIONS(1479), + [anon_sym_match] = ACTIONS(1479), + [anon_sym_RBRACE] = ACTIONS(1479), + [anon_sym_try] = ACTIONS(1479), + [anon_sym_catch] = ACTIONS(1479), + [anon_sym_return] = ACTIONS(1479), + [anon_sym_source] = ACTIONS(1479), + [anon_sym_source_DASHenv] = ACTIONS(1479), + [anon_sym_register] = ACTIONS(1479), + [anon_sym_hide] = ACTIONS(1479), + [anon_sym_hide_DASHenv] = ACTIONS(1479), + [anon_sym_overlay] = ACTIONS(1479), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(1479), + [anon_sym_LPAREN2] = ACTIONS(1483), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1479), + [anon_sym_DOT] = ACTIONS(1485), + [aux_sym__immediate_decimal_token1] = ACTIONS(1487), + [aux_sym__immediate_decimal_token3] = ACTIONS(1487), + [aux_sym__immediate_decimal_token4] = ACTIONS(1489), + [aux_sym__immediate_decimal_token5] = ACTIONS(1491), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1479), + [aux_sym__val_number_decimal_token1] = ACTIONS(1479), + [aux_sym__val_number_decimal_token2] = ACTIONS(1479), + [aux_sym__val_number_decimal_token3] = ACTIONS(1479), + [aux_sym__val_number_decimal_token4] = ACTIONS(1479), + [aux_sym__val_number_token1] = ACTIONS(1479), + [aux_sym__val_number_token2] = ACTIONS(1479), + [aux_sym__val_number_token3] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1479), + [sym__str_single_quotes] = ACTIONS(1479), + [sym__str_back_ticks] = ACTIONS(1479), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1479), + [sym__entry_separator] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1479), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1495), + [anon_sym_POUND] = ACTIONS(3), + }, + [183] = { + [sym_comment] = STATE(183), + [anon_sym_export] = ACTIONS(1497), + [anon_sym_alias] = ACTIONS(1497), + [anon_sym_let] = ACTIONS(1497), + [anon_sym_let_DASHenv] = ACTIONS(1497), + [anon_sym_mut] = ACTIONS(1497), + [anon_sym_const] = ACTIONS(1497), + [aux_sym_cmd_identifier_token1] = ACTIONS(1497), + [aux_sym_cmd_identifier_token2] = ACTIONS(1497), + [aux_sym_cmd_identifier_token3] = ACTIONS(1497), + [aux_sym_cmd_identifier_token4] = ACTIONS(1497), + [aux_sym_cmd_identifier_token5] = ACTIONS(1497), + [aux_sym_cmd_identifier_token6] = ACTIONS(1497), + [aux_sym_cmd_identifier_token7] = ACTIONS(1497), + [aux_sym_cmd_identifier_token8] = ACTIONS(1497), + [aux_sym_cmd_identifier_token9] = ACTIONS(1497), + [aux_sym_cmd_identifier_token10] = ACTIONS(1497), + [aux_sym_cmd_identifier_token11] = ACTIONS(1497), + [aux_sym_cmd_identifier_token12] = ACTIONS(1497), + [aux_sym_cmd_identifier_token13] = ACTIONS(1497), + [aux_sym_cmd_identifier_token14] = ACTIONS(1497), + [aux_sym_cmd_identifier_token15] = ACTIONS(1497), + [aux_sym_cmd_identifier_token16] = ACTIONS(1497), + [aux_sym_cmd_identifier_token17] = ACTIONS(1497), + [aux_sym_cmd_identifier_token18] = ACTIONS(1497), + [aux_sym_cmd_identifier_token19] = ACTIONS(1497), + [aux_sym_cmd_identifier_token20] = ACTIONS(1497), + [aux_sym_cmd_identifier_token21] = ACTIONS(1497), + [aux_sym_cmd_identifier_token22] = ACTIONS(1497), + [aux_sym_cmd_identifier_token23] = ACTIONS(1497), + [aux_sym_cmd_identifier_token24] = ACTIONS(1497), + [aux_sym_cmd_identifier_token25] = ACTIONS(1497), + [aux_sym_cmd_identifier_token26] = ACTIONS(1497), + [aux_sym_cmd_identifier_token27] = ACTIONS(1497), + [aux_sym_cmd_identifier_token28] = ACTIONS(1497), + [aux_sym_cmd_identifier_token29] = ACTIONS(1497), + [aux_sym_cmd_identifier_token30] = ACTIONS(1497), + [aux_sym_cmd_identifier_token31] = ACTIONS(1497), + [aux_sym_cmd_identifier_token32] = ACTIONS(1497), + [aux_sym_cmd_identifier_token33] = ACTIONS(1497), + [aux_sym_cmd_identifier_token34] = ACTIONS(1497), + [aux_sym_cmd_identifier_token35] = ACTIONS(1497), + [aux_sym_cmd_identifier_token36] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1497), + [aux_sym_cmd_identifier_token38] = ACTIONS(1497), + [aux_sym_cmd_identifier_token39] = ACTIONS(1497), + [aux_sym_cmd_identifier_token40] = ACTIONS(1497), + [anon_sym_def] = ACTIONS(1497), + [anon_sym_export_DASHenv] = ACTIONS(1497), + [anon_sym_extern] = ACTIONS(1497), + [anon_sym_module] = ACTIONS(1497), + [anon_sym_use] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(1497), + [anon_sym_DOLLAR] = ACTIONS(1497), + [anon_sym_error] = ACTIONS(1497), + [anon_sym_list] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_break] = ACTIONS(1497), + [anon_sym_continue] = ACTIONS(1497), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_loop] = ACTIONS(1497), + [anon_sym_make] = ACTIONS(1497), + [anon_sym_while] = ACTIONS(1497), + [anon_sym_do] = ACTIONS(1497), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_else] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(1497), + [anon_sym_RBRACE] = ACTIONS(1497), + [anon_sym_try] = ACTIONS(1497), + [anon_sym_catch] = ACTIONS(1497), + [anon_sym_return] = ACTIONS(1497), + [anon_sym_source] = ACTIONS(1497), + [anon_sym_source_DASHenv] = ACTIONS(1497), + [anon_sym_register] = ACTIONS(1497), + [anon_sym_hide] = ACTIONS(1497), + [anon_sym_hide_DASHenv] = ACTIONS(1497), + [anon_sym_overlay] = ACTIONS(1497), + [anon_sym_new] = ACTIONS(1497), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_LPAREN2] = ACTIONS(1499), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1497), + [anon_sym_DOT_DOT2] = ACTIONS(1497), + [anon_sym_DOT] = ACTIONS(1501), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), + [aux_sym__immediate_decimal_token2] = ACTIONS(1503), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1497), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1497), + [aux_sym__val_number_decimal_token3] = ACTIONS(1497), + [aux_sym__val_number_decimal_token4] = ACTIONS(1497), + [aux_sym__val_number_token1] = ACTIONS(1497), + [aux_sym__val_number_token2] = ACTIONS(1497), + [aux_sym__val_number_token3] = ACTIONS(1497), + [sym_filesize_unit] = ACTIONS(1497), + [sym_duration_unit] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1497), + [sym__str_single_quotes] = ACTIONS(1497), + [sym__str_back_ticks] = ACTIONS(1497), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1497), + [sym__entry_separator] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1497), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1497), + [anon_sym_POUND] = ACTIONS(3), + }, + [184] = { + [sym__expr_parenthesized_immediate] = STATE(383), + [sym__immediate_decimal] = STATE(384), + [sym_val_variable] = STATE(383), + [sym_comment] = STATE(184), + [anon_sym_export] = ACTIONS(1505), + [anon_sym_alias] = ACTIONS(1505), + [anon_sym_let] = ACTIONS(1505), + [anon_sym_let_DASHenv] = ACTIONS(1505), + [anon_sym_mut] = ACTIONS(1505), + [anon_sym_const] = ACTIONS(1505), + [aux_sym_cmd_identifier_token1] = ACTIONS(1505), + [aux_sym_cmd_identifier_token2] = ACTIONS(1505), + [aux_sym_cmd_identifier_token3] = ACTIONS(1505), + [aux_sym_cmd_identifier_token4] = ACTIONS(1505), + [aux_sym_cmd_identifier_token5] = ACTIONS(1505), + [aux_sym_cmd_identifier_token6] = ACTIONS(1505), + [aux_sym_cmd_identifier_token7] = ACTIONS(1505), + [aux_sym_cmd_identifier_token8] = ACTIONS(1505), + [aux_sym_cmd_identifier_token9] = ACTIONS(1505), + [aux_sym_cmd_identifier_token10] = ACTIONS(1505), + [aux_sym_cmd_identifier_token11] = ACTIONS(1505), + [aux_sym_cmd_identifier_token12] = ACTIONS(1505), + [aux_sym_cmd_identifier_token13] = ACTIONS(1505), + [aux_sym_cmd_identifier_token14] = ACTIONS(1505), + [aux_sym_cmd_identifier_token15] = ACTIONS(1505), + [aux_sym_cmd_identifier_token16] = ACTIONS(1505), + [aux_sym_cmd_identifier_token17] = ACTIONS(1505), + [aux_sym_cmd_identifier_token18] = ACTIONS(1505), + [aux_sym_cmd_identifier_token19] = ACTIONS(1505), + [aux_sym_cmd_identifier_token20] = ACTIONS(1505), + [aux_sym_cmd_identifier_token21] = ACTIONS(1505), + [aux_sym_cmd_identifier_token22] = ACTIONS(1505), + [aux_sym_cmd_identifier_token23] = ACTIONS(1505), + [aux_sym_cmd_identifier_token24] = ACTIONS(1505), + [aux_sym_cmd_identifier_token25] = ACTIONS(1505), + [aux_sym_cmd_identifier_token26] = ACTIONS(1505), + [aux_sym_cmd_identifier_token27] = ACTIONS(1505), + [aux_sym_cmd_identifier_token28] = ACTIONS(1505), + [aux_sym_cmd_identifier_token29] = ACTIONS(1505), + [aux_sym_cmd_identifier_token30] = ACTIONS(1505), + [aux_sym_cmd_identifier_token31] = ACTIONS(1505), + [aux_sym_cmd_identifier_token32] = ACTIONS(1505), + [aux_sym_cmd_identifier_token33] = ACTIONS(1505), + [aux_sym_cmd_identifier_token34] = ACTIONS(1505), + [aux_sym_cmd_identifier_token35] = ACTIONS(1505), + [aux_sym_cmd_identifier_token36] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(1505), + [anon_sym_false] = ACTIONS(1505), + [anon_sym_null] = ACTIONS(1505), + [aux_sym_cmd_identifier_token38] = ACTIONS(1505), + [aux_sym_cmd_identifier_token39] = ACTIONS(1505), + [aux_sym_cmd_identifier_token40] = ACTIONS(1505), + [anon_sym_def] = ACTIONS(1505), + [anon_sym_export_DASHenv] = ACTIONS(1505), + [anon_sym_extern] = ACTIONS(1505), + [anon_sym_module] = ACTIONS(1505), + [anon_sym_use] = ACTIONS(1505), + [anon_sym_LPAREN] = ACTIONS(1505), + [anon_sym_DOLLAR] = ACTIONS(1481), + [anon_sym_error] = ACTIONS(1505), + [anon_sym_list] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_break] = ACTIONS(1505), + [anon_sym_continue] = ACTIONS(1505), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_in] = ACTIONS(1505), + [anon_sym_loop] = ACTIONS(1505), + [anon_sym_make] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1505), + [anon_sym_do] = ACTIONS(1505), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_else] = ACTIONS(1505), + [anon_sym_match] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(1505), + [anon_sym_try] = ACTIONS(1505), + [anon_sym_catch] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1505), + [anon_sym_source] = ACTIONS(1505), + [anon_sym_source_DASHenv] = ACTIONS(1505), + [anon_sym_register] = ACTIONS(1505), + [anon_sym_hide] = ACTIONS(1505), + [anon_sym_hide_DASHenv] = ACTIONS(1505), + [anon_sym_overlay] = ACTIONS(1505), + [anon_sym_new] = ACTIONS(1505), + [anon_sym_as] = ACTIONS(1505), + [anon_sym_LPAREN2] = ACTIONS(1483), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1505), + [anon_sym_DOT] = ACTIONS(1507), + [aux_sym__immediate_decimal_token1] = ACTIONS(1509), + [aux_sym__immediate_decimal_token3] = ACTIONS(1509), + [aux_sym__immediate_decimal_token4] = ACTIONS(1511), + [aux_sym__immediate_decimal_token5] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1505), + [aux_sym__val_number_decimal_token1] = ACTIONS(1505), + [aux_sym__val_number_decimal_token2] = ACTIONS(1505), + [aux_sym__val_number_decimal_token3] = ACTIONS(1505), + [aux_sym__val_number_decimal_token4] = ACTIONS(1505), + [aux_sym__val_number_token1] = ACTIONS(1505), + [aux_sym__val_number_token2] = ACTIONS(1505), + [aux_sym__val_number_token3] = ACTIONS(1505), + [anon_sym_DQUOTE] = ACTIONS(1505), + [sym__str_single_quotes] = ACTIONS(1505), + [sym__str_back_ticks] = ACTIONS(1505), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1505), + [sym__entry_separator] = ACTIONS(1515), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_POUND] = ACTIONS(3), + }, + [185] = { + [sym_comment] = STATE(185), + [anon_sym_export] = ACTIONS(1517), + [anon_sym_alias] = ACTIONS(1517), + [anon_sym_let] = ACTIONS(1517), + [anon_sym_let_DASHenv] = ACTIONS(1517), + [anon_sym_mut] = ACTIONS(1517), + [anon_sym_const] = ACTIONS(1517), + [aux_sym_cmd_identifier_token1] = ACTIONS(1517), + [aux_sym_cmd_identifier_token2] = ACTIONS(1517), + [aux_sym_cmd_identifier_token3] = ACTIONS(1517), + [aux_sym_cmd_identifier_token4] = ACTIONS(1517), + [aux_sym_cmd_identifier_token5] = ACTIONS(1517), + [aux_sym_cmd_identifier_token6] = ACTIONS(1517), + [aux_sym_cmd_identifier_token7] = ACTIONS(1517), + [aux_sym_cmd_identifier_token8] = ACTIONS(1517), + [aux_sym_cmd_identifier_token9] = ACTIONS(1517), + [aux_sym_cmd_identifier_token10] = ACTIONS(1517), + [aux_sym_cmd_identifier_token11] = ACTIONS(1517), + [aux_sym_cmd_identifier_token12] = ACTIONS(1517), + [aux_sym_cmd_identifier_token13] = ACTIONS(1517), + [aux_sym_cmd_identifier_token14] = ACTIONS(1517), + [aux_sym_cmd_identifier_token15] = ACTIONS(1517), + [aux_sym_cmd_identifier_token16] = ACTIONS(1517), + [aux_sym_cmd_identifier_token17] = ACTIONS(1517), + [aux_sym_cmd_identifier_token18] = ACTIONS(1517), + [aux_sym_cmd_identifier_token19] = ACTIONS(1517), + [aux_sym_cmd_identifier_token20] = ACTIONS(1517), + [aux_sym_cmd_identifier_token21] = ACTIONS(1517), + [aux_sym_cmd_identifier_token22] = ACTIONS(1517), + [aux_sym_cmd_identifier_token23] = ACTIONS(1517), + [aux_sym_cmd_identifier_token24] = ACTIONS(1517), + [aux_sym_cmd_identifier_token25] = ACTIONS(1517), + [aux_sym_cmd_identifier_token26] = ACTIONS(1517), + [aux_sym_cmd_identifier_token27] = ACTIONS(1517), + [aux_sym_cmd_identifier_token28] = ACTIONS(1517), + [aux_sym_cmd_identifier_token29] = ACTIONS(1517), + [aux_sym_cmd_identifier_token30] = ACTIONS(1517), + [aux_sym_cmd_identifier_token31] = ACTIONS(1517), + [aux_sym_cmd_identifier_token32] = ACTIONS(1517), + [aux_sym_cmd_identifier_token33] = ACTIONS(1517), + [aux_sym_cmd_identifier_token34] = ACTIONS(1517), + [aux_sym_cmd_identifier_token35] = ACTIONS(1517), + [aux_sym_cmd_identifier_token36] = ACTIONS(1517), + [anon_sym_true] = ACTIONS(1517), + [anon_sym_false] = ACTIONS(1517), + [anon_sym_null] = ACTIONS(1517), + [aux_sym_cmd_identifier_token38] = ACTIONS(1517), + [aux_sym_cmd_identifier_token39] = ACTIONS(1517), + [aux_sym_cmd_identifier_token40] = ACTIONS(1517), + [anon_sym_def] = ACTIONS(1517), + [anon_sym_export_DASHenv] = ACTIONS(1517), + [anon_sym_extern] = ACTIONS(1517), + [anon_sym_module] = ACTIONS(1517), + [anon_sym_use] = ACTIONS(1517), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_DOLLAR] = ACTIONS(1517), + [anon_sym_error] = ACTIONS(1517), + [anon_sym_list] = ACTIONS(1517), + [anon_sym_DASH] = ACTIONS(1517), + [anon_sym_break] = ACTIONS(1517), + [anon_sym_continue] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1517), + [anon_sym_in] = ACTIONS(1517), + [anon_sym_loop] = ACTIONS(1517), + [anon_sym_make] = ACTIONS(1517), + [anon_sym_while] = ACTIONS(1517), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_if] = ACTIONS(1517), + [anon_sym_else] = ACTIONS(1517), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_RBRACE] = ACTIONS(1517), + [anon_sym_try] = ACTIONS(1517), + [anon_sym_catch] = ACTIONS(1517), + [anon_sym_return] = ACTIONS(1517), + [anon_sym_source] = ACTIONS(1517), + [anon_sym_source_DASHenv] = ACTIONS(1517), + [anon_sym_register] = ACTIONS(1517), + [anon_sym_hide] = ACTIONS(1517), + [anon_sym_hide_DASHenv] = ACTIONS(1517), + [anon_sym_overlay] = ACTIONS(1517), + [anon_sym_new] = ACTIONS(1517), + [anon_sym_as] = ACTIONS(1517), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1517), + [anon_sym_DOT_DOT2] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), + [aux_sym__immediate_decimal_token1] = ACTIONS(1521), + [aux_sym__immediate_decimal_token2] = ACTIONS(1523), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1517), + [aux_sym__val_number_decimal_token1] = ACTIONS(1517), + [aux_sym__val_number_decimal_token2] = ACTIONS(1517), + [aux_sym__val_number_decimal_token3] = ACTIONS(1517), + [aux_sym__val_number_decimal_token4] = ACTIONS(1517), + [aux_sym__val_number_token1] = ACTIONS(1517), + [aux_sym__val_number_token2] = ACTIONS(1517), + [aux_sym__val_number_token3] = ACTIONS(1517), + [sym_filesize_unit] = ACTIONS(1517), + [sym_duration_unit] = ACTIONS(1517), + [anon_sym_DQUOTE] = ACTIONS(1517), + [sym__str_single_quotes] = ACTIONS(1517), + [sym__str_back_ticks] = ACTIONS(1517), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1517), + [sym__entry_separator] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1517), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1517), + [anon_sym_POUND] = ACTIONS(3), + }, + [186] = { + [sym__expr_parenthesized_immediate] = STATE(416), + [sym__immediate_decimal] = STATE(332), + [sym_val_variable] = STATE(416), + [sym_comment] = STATE(186), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_alias] = ACTIONS(1479), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_let_DASHenv] = ACTIONS(1479), + [anon_sym_mut] = ACTIONS(1479), + [anon_sym_const] = ACTIONS(1479), + [aux_sym_cmd_identifier_token1] = ACTIONS(1479), + [aux_sym_cmd_identifier_token2] = ACTIONS(1479), + [aux_sym_cmd_identifier_token3] = ACTIONS(1479), + [aux_sym_cmd_identifier_token4] = ACTIONS(1479), + [aux_sym_cmd_identifier_token5] = ACTIONS(1479), + [aux_sym_cmd_identifier_token6] = ACTIONS(1479), + [aux_sym_cmd_identifier_token7] = ACTIONS(1479), + [aux_sym_cmd_identifier_token8] = ACTIONS(1479), + [aux_sym_cmd_identifier_token9] = ACTIONS(1479), + [aux_sym_cmd_identifier_token10] = ACTIONS(1479), + [aux_sym_cmd_identifier_token11] = ACTIONS(1479), + [aux_sym_cmd_identifier_token12] = ACTIONS(1479), + [aux_sym_cmd_identifier_token13] = ACTIONS(1479), + [aux_sym_cmd_identifier_token14] = ACTIONS(1479), + [aux_sym_cmd_identifier_token15] = ACTIONS(1479), + [aux_sym_cmd_identifier_token16] = ACTIONS(1479), + [aux_sym_cmd_identifier_token17] = ACTIONS(1479), + [aux_sym_cmd_identifier_token18] = ACTIONS(1479), + [aux_sym_cmd_identifier_token19] = ACTIONS(1479), + [aux_sym_cmd_identifier_token20] = ACTIONS(1479), + [aux_sym_cmd_identifier_token21] = ACTIONS(1479), + [aux_sym_cmd_identifier_token22] = ACTIONS(1479), + [aux_sym_cmd_identifier_token23] = ACTIONS(1479), + [aux_sym_cmd_identifier_token24] = ACTIONS(1479), + [aux_sym_cmd_identifier_token25] = ACTIONS(1479), + [aux_sym_cmd_identifier_token26] = ACTIONS(1479), + [aux_sym_cmd_identifier_token27] = ACTIONS(1479), + [aux_sym_cmd_identifier_token28] = ACTIONS(1479), + [aux_sym_cmd_identifier_token29] = ACTIONS(1479), + [aux_sym_cmd_identifier_token30] = ACTIONS(1479), + [aux_sym_cmd_identifier_token31] = ACTIONS(1479), + [aux_sym_cmd_identifier_token32] = ACTIONS(1479), + [aux_sym_cmd_identifier_token33] = ACTIONS(1479), + [aux_sym_cmd_identifier_token34] = ACTIONS(1479), + [aux_sym_cmd_identifier_token35] = ACTIONS(1479), + [aux_sym_cmd_identifier_token36] = ACTIONS(1479), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [anon_sym_null] = ACTIONS(1493), + [aux_sym_cmd_identifier_token38] = ACTIONS(1479), + [aux_sym_cmd_identifier_token39] = ACTIONS(1493), + [aux_sym_cmd_identifier_token40] = ACTIONS(1493), + [anon_sym_def] = ACTIONS(1479), + [anon_sym_export_DASHenv] = ACTIONS(1479), + [anon_sym_extern] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_use] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_DOLLAR] = ACTIONS(1525), + [anon_sym_error] = ACTIONS(1479), + [anon_sym_list] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_break] = ACTIONS(1479), + [anon_sym_continue] = ACTIONS(1479), + [anon_sym_for] = ACTIONS(1479), + [anon_sym_in] = ACTIONS(1479), + [anon_sym_loop] = ACTIONS(1479), + [anon_sym_make] = ACTIONS(1479), + [anon_sym_while] = ACTIONS(1479), + [anon_sym_do] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_else] = ACTIONS(1479), + [anon_sym_match] = ACTIONS(1479), + [anon_sym_RBRACE] = ACTIONS(1493), + [anon_sym_try] = ACTIONS(1479), + [anon_sym_catch] = ACTIONS(1479), + [anon_sym_return] = ACTIONS(1479), + [anon_sym_source] = ACTIONS(1479), + [anon_sym_source_DASHenv] = ACTIONS(1479), + [anon_sym_register] = ACTIONS(1479), + [anon_sym_hide] = ACTIONS(1479), + [anon_sym_hide_DASHenv] = ACTIONS(1479), + [anon_sym_overlay] = ACTIONS(1479), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(1479), + [anon_sym_LPAREN2] = ACTIONS(1527), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1493), + [anon_sym_DOT] = ACTIONS(1529), + [aux_sym__immediate_decimal_token1] = ACTIONS(1531), + [aux_sym__immediate_decimal_token3] = ACTIONS(1533), + [aux_sym__immediate_decimal_token4] = ACTIONS(1535), + [aux_sym__immediate_decimal_token5] = ACTIONS(1537), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1493), + [aux_sym__val_number_decimal_token1] = ACTIONS(1479), + [aux_sym__val_number_decimal_token2] = ACTIONS(1479), + [aux_sym__val_number_decimal_token3] = ACTIONS(1479), + [aux_sym__val_number_decimal_token4] = ACTIONS(1479), + [aux_sym__val_number_token1] = ACTIONS(1493), + [aux_sym__val_number_token2] = ACTIONS(1493), + [aux_sym__val_number_token3] = ACTIONS(1493), + [anon_sym_DQUOTE] = ACTIONS(1493), + [sym__str_single_quotes] = ACTIONS(1493), + [sym__str_back_ticks] = ACTIONS(1493), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1479), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1495), + [anon_sym_POUND] = ACTIONS(247), + }, + [187] = { + [sym__expr_parenthesized_immediate] = STATE(567), + [sym__immediate_decimal] = STATE(421), + [sym_val_variable] = STATE(567), + [sym_comment] = STATE(187), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_alias] = ACTIONS(1479), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_let_DASHenv] = ACTIONS(1479), + [anon_sym_mut] = ACTIONS(1479), + [anon_sym_const] = ACTIONS(1479), + [aux_sym_cmd_identifier_token1] = ACTIONS(1479), + [aux_sym_cmd_identifier_token2] = ACTIONS(1479), + [aux_sym_cmd_identifier_token3] = ACTIONS(1479), + [aux_sym_cmd_identifier_token4] = ACTIONS(1479), + [aux_sym_cmd_identifier_token5] = ACTIONS(1479), + [aux_sym_cmd_identifier_token6] = ACTIONS(1479), + [aux_sym_cmd_identifier_token7] = ACTIONS(1479), + [aux_sym_cmd_identifier_token8] = ACTIONS(1479), + [aux_sym_cmd_identifier_token9] = ACTIONS(1479), + [aux_sym_cmd_identifier_token10] = ACTIONS(1479), + [aux_sym_cmd_identifier_token11] = ACTIONS(1479), + [aux_sym_cmd_identifier_token12] = ACTIONS(1479), + [aux_sym_cmd_identifier_token13] = ACTIONS(1479), + [aux_sym_cmd_identifier_token14] = ACTIONS(1479), + [aux_sym_cmd_identifier_token15] = ACTIONS(1479), + [aux_sym_cmd_identifier_token16] = ACTIONS(1479), + [aux_sym_cmd_identifier_token17] = ACTIONS(1479), + [aux_sym_cmd_identifier_token18] = ACTIONS(1479), + [aux_sym_cmd_identifier_token19] = ACTIONS(1479), + [aux_sym_cmd_identifier_token20] = ACTIONS(1479), + [aux_sym_cmd_identifier_token21] = ACTIONS(1479), + [aux_sym_cmd_identifier_token22] = ACTIONS(1479), + [aux_sym_cmd_identifier_token23] = ACTIONS(1479), + [aux_sym_cmd_identifier_token24] = ACTIONS(1479), + [aux_sym_cmd_identifier_token25] = ACTIONS(1479), + [aux_sym_cmd_identifier_token26] = ACTIONS(1479), + [aux_sym_cmd_identifier_token27] = ACTIONS(1479), + [aux_sym_cmd_identifier_token28] = ACTIONS(1479), + [aux_sym_cmd_identifier_token29] = ACTIONS(1479), + [aux_sym_cmd_identifier_token30] = ACTIONS(1479), + [aux_sym_cmd_identifier_token31] = ACTIONS(1479), + [aux_sym_cmd_identifier_token32] = ACTIONS(1479), + [aux_sym_cmd_identifier_token33] = ACTIONS(1479), + [aux_sym_cmd_identifier_token34] = ACTIONS(1479), + [aux_sym_cmd_identifier_token35] = ACTIONS(1479), + [aux_sym_cmd_identifier_token36] = ACTIONS(1479), + [anon_sym_true] = ACTIONS(1479), + [anon_sym_false] = ACTIONS(1479), + [anon_sym_null] = ACTIONS(1479), + [aux_sym_cmd_identifier_token38] = ACTIONS(1479), + [aux_sym_cmd_identifier_token39] = ACTIONS(1479), + [aux_sym_cmd_identifier_token40] = ACTIONS(1479), + [anon_sym_def] = ACTIONS(1479), + [anon_sym_export_DASHenv] = ACTIONS(1479), + [anon_sym_extern] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_use] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_DOLLAR] = ACTIONS(1539), + [anon_sym_error] = ACTIONS(1479), + [anon_sym_list] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_break] = ACTIONS(1479), + [anon_sym_continue] = ACTIONS(1479), + [anon_sym_for] = ACTIONS(1479), + [anon_sym_in] = ACTIONS(1479), + [anon_sym_loop] = ACTIONS(1479), + [anon_sym_make] = ACTIONS(1479), + [anon_sym_while] = ACTIONS(1479), + [anon_sym_do] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_else] = ACTIONS(1479), + [anon_sym_match] = ACTIONS(1479), + [anon_sym_RBRACE] = ACTIONS(1479), + [anon_sym_try] = ACTIONS(1479), + [anon_sym_catch] = ACTIONS(1479), + [anon_sym_return] = ACTIONS(1479), + [anon_sym_source] = ACTIONS(1479), + [anon_sym_source_DASHenv] = ACTIONS(1479), + [anon_sym_register] = ACTIONS(1479), + [anon_sym_hide] = ACTIONS(1479), + [anon_sym_hide_DASHenv] = ACTIONS(1479), + [anon_sym_overlay] = ACTIONS(1479), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(1479), + [anon_sym_LPAREN2] = ACTIONS(1541), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1479), + [aux_sym__immediate_decimal_token1] = ACTIONS(1543), + [aux_sym__immediate_decimal_token3] = ACTIONS(1543), + [aux_sym__immediate_decimal_token4] = ACTIONS(1545), + [aux_sym__immediate_decimal_token5] = ACTIONS(1547), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1479), + [aux_sym__val_number_decimal_token1] = ACTIONS(1479), + [aux_sym__val_number_decimal_token2] = ACTIONS(1479), + [aux_sym__val_number_decimal_token3] = ACTIONS(1479), + [aux_sym__val_number_decimal_token4] = ACTIONS(1479), + [aux_sym__val_number_token1] = ACTIONS(1479), + [aux_sym__val_number_token2] = ACTIONS(1479), + [aux_sym__val_number_token3] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1479), + [sym__str_single_quotes] = ACTIONS(1479), + [sym__str_back_ticks] = ACTIONS(1479), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1479), + [sym__entry_separator] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1479), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1495), + [anon_sym_POUND] = ACTIONS(3), + }, + [188] = { + [sym__expr_parenthesized_immediate] = STATE(578), + [sym__immediate_decimal] = STATE(423), + [sym_val_variable] = STATE(578), + [sym_comment] = STATE(188), + [anon_sym_export] = ACTIONS(1549), + [anon_sym_alias] = ACTIONS(1549), + [anon_sym_let] = ACTIONS(1549), + [anon_sym_let_DASHenv] = ACTIONS(1549), + [anon_sym_mut] = ACTIONS(1549), + [anon_sym_const] = ACTIONS(1549), + [aux_sym_cmd_identifier_token1] = ACTIONS(1549), + [aux_sym_cmd_identifier_token2] = ACTIONS(1549), + [aux_sym_cmd_identifier_token3] = ACTIONS(1549), + [aux_sym_cmd_identifier_token4] = ACTIONS(1549), + [aux_sym_cmd_identifier_token5] = ACTIONS(1549), + [aux_sym_cmd_identifier_token6] = ACTIONS(1549), + [aux_sym_cmd_identifier_token7] = ACTIONS(1549), + [aux_sym_cmd_identifier_token8] = ACTIONS(1549), + [aux_sym_cmd_identifier_token9] = ACTIONS(1549), + [aux_sym_cmd_identifier_token10] = ACTIONS(1549), + [aux_sym_cmd_identifier_token11] = ACTIONS(1549), + [aux_sym_cmd_identifier_token12] = ACTIONS(1549), + [aux_sym_cmd_identifier_token13] = ACTIONS(1549), + [aux_sym_cmd_identifier_token14] = ACTIONS(1549), + [aux_sym_cmd_identifier_token15] = ACTIONS(1549), + [aux_sym_cmd_identifier_token16] = ACTIONS(1549), + [aux_sym_cmd_identifier_token17] = ACTIONS(1549), + [aux_sym_cmd_identifier_token18] = ACTIONS(1549), + [aux_sym_cmd_identifier_token19] = ACTIONS(1549), + [aux_sym_cmd_identifier_token20] = ACTIONS(1549), + [aux_sym_cmd_identifier_token21] = ACTIONS(1549), + [aux_sym_cmd_identifier_token22] = ACTIONS(1549), + [aux_sym_cmd_identifier_token23] = ACTIONS(1549), + [aux_sym_cmd_identifier_token24] = ACTIONS(1549), + [aux_sym_cmd_identifier_token25] = ACTIONS(1549), + [aux_sym_cmd_identifier_token26] = ACTIONS(1549), + [aux_sym_cmd_identifier_token27] = ACTIONS(1549), + [aux_sym_cmd_identifier_token28] = ACTIONS(1549), + [aux_sym_cmd_identifier_token29] = ACTIONS(1549), + [aux_sym_cmd_identifier_token30] = ACTIONS(1549), + [aux_sym_cmd_identifier_token31] = ACTIONS(1549), + [aux_sym_cmd_identifier_token32] = ACTIONS(1549), + [aux_sym_cmd_identifier_token33] = ACTIONS(1549), + [aux_sym_cmd_identifier_token34] = ACTIONS(1549), + [aux_sym_cmd_identifier_token35] = ACTIONS(1549), + [aux_sym_cmd_identifier_token36] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1549), + [anon_sym_false] = ACTIONS(1549), + [anon_sym_null] = ACTIONS(1549), + [aux_sym_cmd_identifier_token38] = ACTIONS(1549), + [aux_sym_cmd_identifier_token39] = ACTIONS(1549), + [aux_sym_cmd_identifier_token40] = ACTIONS(1549), + [anon_sym_def] = ACTIONS(1549), + [anon_sym_export_DASHenv] = ACTIONS(1549), + [anon_sym_extern] = ACTIONS(1549), + [anon_sym_module] = ACTIONS(1549), + [anon_sym_use] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(1549), + [anon_sym_DOLLAR] = ACTIONS(1539), + [anon_sym_error] = ACTIONS(1549), + [anon_sym_list] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_break] = ACTIONS(1549), + [anon_sym_continue] = ACTIONS(1549), + [anon_sym_for] = ACTIONS(1549), + [anon_sym_in] = ACTIONS(1549), + [anon_sym_loop] = ACTIONS(1549), + [anon_sym_make] = ACTIONS(1549), + [anon_sym_while] = ACTIONS(1549), + [anon_sym_do] = ACTIONS(1549), + [anon_sym_if] = ACTIONS(1549), + [anon_sym_else] = ACTIONS(1549), + [anon_sym_match] = ACTIONS(1549), + [anon_sym_RBRACE] = ACTIONS(1549), + [anon_sym_try] = ACTIONS(1549), + [anon_sym_catch] = ACTIONS(1549), + [anon_sym_return] = ACTIONS(1549), + [anon_sym_source] = ACTIONS(1549), + [anon_sym_source_DASHenv] = ACTIONS(1549), + [anon_sym_register] = ACTIONS(1549), + [anon_sym_hide] = ACTIONS(1549), + [anon_sym_hide_DASHenv] = ACTIONS(1549), + [anon_sym_overlay] = ACTIONS(1549), + [anon_sym_new] = ACTIONS(1549), + [anon_sym_as] = ACTIONS(1549), + [anon_sym_LPAREN2] = ACTIONS(1541), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1549), + [aux_sym__immediate_decimal_token1] = ACTIONS(1543), + [aux_sym__immediate_decimal_token3] = ACTIONS(1543), + [aux_sym__immediate_decimal_token4] = ACTIONS(1545), + [aux_sym__immediate_decimal_token5] = ACTIONS(1547), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1549), + [aux_sym__val_number_decimal_token1] = ACTIONS(1549), + [aux_sym__val_number_decimal_token2] = ACTIONS(1549), + [aux_sym__val_number_decimal_token3] = ACTIONS(1549), + [aux_sym__val_number_decimal_token4] = ACTIONS(1549), + [aux_sym__val_number_token1] = ACTIONS(1549), + [aux_sym__val_number_token2] = ACTIONS(1549), + [aux_sym__val_number_token3] = ACTIONS(1549), + [anon_sym_DQUOTE] = ACTIONS(1549), + [sym__str_single_quotes] = ACTIONS(1549), + [sym__str_back_ticks] = ACTIONS(1549), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1549), + [sym__entry_separator] = ACTIONS(1551), + [anon_sym_PLUS] = ACTIONS(1549), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1553), + [anon_sym_POUND] = ACTIONS(3), + }, [189] = { - [sym_cmd_identifier] = STATE(8053), - [sym_expr_parenthesized] = STATE(7939), - [sym__spread_parenthesized] = STATE(564), - [sym__spread_variable] = STATE(552), - [sym_val_variable] = STATE(7939), - [sym_val_number] = STATE(7939), - [sym__val_number_decimal] = STATE(6721), - [sym__val_number] = STATE(1907), - [sym_val_string] = STATE(7939), - [sym__str_double_quotes] = STATE(1668), - [sym__spread_record] = STATE(564), - [sym_record_entry] = STATE(7643), - [sym__record_key] = STATE(8053), + [sym__expr_parenthesized_immediate] = STATE(558), + [sym__immediate_decimal] = STATE(563), + [sym_val_variable] = STATE(558), [sym_comment] = STATE(189), - [aux_sym_record_body_repeat1] = STATE(189), - [anon_sym_export] = ACTIONS(1359), - [anon_sym_alias] = ACTIONS(1359), - [anon_sym_let] = ACTIONS(1359), - [anon_sym_let_DASHenv] = ACTIONS(1359), - [anon_sym_mut] = ACTIONS(1359), - [anon_sym_const] = ACTIONS(1359), - [aux_sym_cmd_identifier_token1] = ACTIONS(1362), - [aux_sym_cmd_identifier_token2] = ACTIONS(1362), - [aux_sym_cmd_identifier_token3] = ACTIONS(1362), - [aux_sym_cmd_identifier_token4] = ACTIONS(1362), - [aux_sym_cmd_identifier_token5] = ACTIONS(1362), - [aux_sym_cmd_identifier_token6] = ACTIONS(1362), - [aux_sym_cmd_identifier_token7] = ACTIONS(1362), - [aux_sym_cmd_identifier_token8] = ACTIONS(1362), - [aux_sym_cmd_identifier_token9] = ACTIONS(1362), - [aux_sym_cmd_identifier_token10] = ACTIONS(1362), - [aux_sym_cmd_identifier_token11] = ACTIONS(1362), - [aux_sym_cmd_identifier_token12] = ACTIONS(1362), - [aux_sym_cmd_identifier_token13] = ACTIONS(1362), - [aux_sym_cmd_identifier_token14] = ACTIONS(1362), - [aux_sym_cmd_identifier_token15] = ACTIONS(1362), - [aux_sym_cmd_identifier_token16] = ACTIONS(1362), - [aux_sym_cmd_identifier_token17] = ACTIONS(1362), - [aux_sym_cmd_identifier_token18] = ACTIONS(1362), - [aux_sym_cmd_identifier_token19] = ACTIONS(1362), - [aux_sym_cmd_identifier_token20] = ACTIONS(1362), - [aux_sym_cmd_identifier_token21] = ACTIONS(1362), - [aux_sym_cmd_identifier_token22] = ACTIONS(1362), - [aux_sym_cmd_identifier_token23] = ACTIONS(1362), - [aux_sym_cmd_identifier_token24] = ACTIONS(1362), - [aux_sym_cmd_identifier_token25] = ACTIONS(1362), - [aux_sym_cmd_identifier_token26] = ACTIONS(1362), - [aux_sym_cmd_identifier_token27] = ACTIONS(1362), - [aux_sym_cmd_identifier_token28] = ACTIONS(1362), - [aux_sym_cmd_identifier_token29] = ACTIONS(1362), - [aux_sym_cmd_identifier_token30] = ACTIONS(1362), - [aux_sym_cmd_identifier_token31] = ACTIONS(1362), - [aux_sym_cmd_identifier_token32] = ACTIONS(1362), - [aux_sym_cmd_identifier_token33] = ACTIONS(1362), - [aux_sym_cmd_identifier_token34] = ACTIONS(1362), - [aux_sym_cmd_identifier_token35] = ACTIONS(1362), - [aux_sym_cmd_identifier_token36] = ACTIONS(1362), - [anon_sym_true] = ACTIONS(1365), - [anon_sym_false] = ACTIONS(1365), - [anon_sym_null] = ACTIONS(1365), - [aux_sym_cmd_identifier_token38] = ACTIONS(1368), - [aux_sym_cmd_identifier_token39] = ACTIONS(1371), - [aux_sym_cmd_identifier_token40] = ACTIONS(1371), - [anon_sym_def] = ACTIONS(1359), - [anon_sym_export_DASHenv] = ACTIONS(1359), - [anon_sym_extern] = ACTIONS(1359), - [anon_sym_module] = ACTIONS(1359), - [anon_sym_use] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(1374), - [anon_sym_DOLLAR] = ACTIONS(1377), - [anon_sym_error] = ACTIONS(1359), - [anon_sym_list] = ACTIONS(1359), - [anon_sym_DASH] = ACTIONS(1380), - [anon_sym_break] = ACTIONS(1359), - [anon_sym_continue] = ACTIONS(1359), - [anon_sym_for] = ACTIONS(1359), - [anon_sym_in] = ACTIONS(1359), - [anon_sym_loop] = ACTIONS(1359), - [anon_sym_make] = ACTIONS(1359), - [anon_sym_while] = ACTIONS(1359), - [anon_sym_do] = ACTIONS(1359), - [anon_sym_if] = ACTIONS(1359), - [anon_sym_else] = ACTIONS(1359), - [anon_sym_match] = ACTIONS(1359), - [anon_sym_try] = ACTIONS(1359), - [anon_sym_catch] = ACTIONS(1359), - [anon_sym_return] = ACTIONS(1359), - [anon_sym_source] = ACTIONS(1359), - [anon_sym_source_DASHenv] = ACTIONS(1359), - [anon_sym_register] = ACTIONS(1359), - [anon_sym_hide] = ACTIONS(1359), - [anon_sym_hide_DASHenv] = ACTIONS(1359), - [anon_sym_overlay] = ACTIONS(1359), - [anon_sym_new] = ACTIONS(1359), - [anon_sym_as] = ACTIONS(1359), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1383), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1386), - [aux_sym__val_number_decimal_token1] = ACTIONS(1389), - [aux_sym__val_number_decimal_token2] = ACTIONS(1392), - [aux_sym__val_number_decimal_token3] = ACTIONS(1395), - [aux_sym__val_number_decimal_token4] = ACTIONS(1398), - [aux_sym__val_number_token1] = ACTIONS(1401), - [aux_sym__val_number_token2] = ACTIONS(1401), - [aux_sym__val_number_token3] = ACTIONS(1401), - [anon_sym_DQUOTE] = ACTIONS(1404), - [sym__str_single_quotes] = ACTIONS(1407), - [sym__str_back_ticks] = ACTIONS(1407), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1380), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1505), + [anon_sym_alias] = ACTIONS(1505), + [anon_sym_let] = ACTIONS(1505), + [anon_sym_let_DASHenv] = ACTIONS(1505), + [anon_sym_mut] = ACTIONS(1505), + [anon_sym_const] = ACTIONS(1505), + [aux_sym_cmd_identifier_token1] = ACTIONS(1505), + [aux_sym_cmd_identifier_token2] = ACTIONS(1505), + [aux_sym_cmd_identifier_token3] = ACTIONS(1505), + [aux_sym_cmd_identifier_token4] = ACTIONS(1505), + [aux_sym_cmd_identifier_token5] = ACTIONS(1505), + [aux_sym_cmd_identifier_token6] = ACTIONS(1505), + [aux_sym_cmd_identifier_token7] = ACTIONS(1505), + [aux_sym_cmd_identifier_token8] = ACTIONS(1505), + [aux_sym_cmd_identifier_token9] = ACTIONS(1505), + [aux_sym_cmd_identifier_token10] = ACTIONS(1505), + [aux_sym_cmd_identifier_token11] = ACTIONS(1505), + [aux_sym_cmd_identifier_token12] = ACTIONS(1505), + [aux_sym_cmd_identifier_token13] = ACTIONS(1505), + [aux_sym_cmd_identifier_token14] = ACTIONS(1505), + [aux_sym_cmd_identifier_token15] = ACTIONS(1505), + [aux_sym_cmd_identifier_token16] = ACTIONS(1505), + [aux_sym_cmd_identifier_token17] = ACTIONS(1505), + [aux_sym_cmd_identifier_token18] = ACTIONS(1505), + [aux_sym_cmd_identifier_token19] = ACTIONS(1505), + [aux_sym_cmd_identifier_token20] = ACTIONS(1505), + [aux_sym_cmd_identifier_token21] = ACTIONS(1505), + [aux_sym_cmd_identifier_token22] = ACTIONS(1505), + [aux_sym_cmd_identifier_token23] = ACTIONS(1505), + [aux_sym_cmd_identifier_token24] = ACTIONS(1505), + [aux_sym_cmd_identifier_token25] = ACTIONS(1505), + [aux_sym_cmd_identifier_token26] = ACTIONS(1505), + [aux_sym_cmd_identifier_token27] = ACTIONS(1505), + [aux_sym_cmd_identifier_token28] = ACTIONS(1505), + [aux_sym_cmd_identifier_token29] = ACTIONS(1505), + [aux_sym_cmd_identifier_token30] = ACTIONS(1505), + [aux_sym_cmd_identifier_token31] = ACTIONS(1505), + [aux_sym_cmd_identifier_token32] = ACTIONS(1505), + [aux_sym_cmd_identifier_token33] = ACTIONS(1505), + [aux_sym_cmd_identifier_token34] = ACTIONS(1505), + [aux_sym_cmd_identifier_token35] = ACTIONS(1505), + [aux_sym_cmd_identifier_token36] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(1505), + [anon_sym_false] = ACTIONS(1505), + [anon_sym_null] = ACTIONS(1505), + [aux_sym_cmd_identifier_token38] = ACTIONS(1505), + [aux_sym_cmd_identifier_token39] = ACTIONS(1505), + [aux_sym_cmd_identifier_token40] = ACTIONS(1505), + [anon_sym_def] = ACTIONS(1505), + [anon_sym_export_DASHenv] = ACTIONS(1505), + [anon_sym_extern] = ACTIONS(1505), + [anon_sym_module] = ACTIONS(1505), + [anon_sym_use] = ACTIONS(1505), + [anon_sym_LPAREN] = ACTIONS(1505), + [anon_sym_DOLLAR] = ACTIONS(1539), + [anon_sym_error] = ACTIONS(1505), + [anon_sym_list] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_break] = ACTIONS(1505), + [anon_sym_continue] = ACTIONS(1505), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_in] = ACTIONS(1505), + [anon_sym_loop] = ACTIONS(1505), + [anon_sym_make] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1505), + [anon_sym_do] = ACTIONS(1505), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_else] = ACTIONS(1505), + [anon_sym_match] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(1505), + [anon_sym_try] = ACTIONS(1505), + [anon_sym_catch] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1505), + [anon_sym_source] = ACTIONS(1505), + [anon_sym_source_DASHenv] = ACTIONS(1505), + [anon_sym_register] = ACTIONS(1505), + [anon_sym_hide] = ACTIONS(1505), + [anon_sym_hide_DASHenv] = ACTIONS(1505), + [anon_sym_overlay] = ACTIONS(1505), + [anon_sym_new] = ACTIONS(1505), + [anon_sym_as] = ACTIONS(1505), + [anon_sym_LPAREN2] = ACTIONS(1541), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1505), + [aux_sym__immediate_decimal_token1] = ACTIONS(1555), + [aux_sym__immediate_decimal_token3] = ACTIONS(1555), + [aux_sym__immediate_decimal_token4] = ACTIONS(1557), + [aux_sym__immediate_decimal_token5] = ACTIONS(1559), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1505), + [aux_sym__val_number_decimal_token1] = ACTIONS(1505), + [aux_sym__val_number_decimal_token2] = ACTIONS(1505), + [aux_sym__val_number_decimal_token3] = ACTIONS(1505), + [aux_sym__val_number_decimal_token4] = ACTIONS(1505), + [aux_sym__val_number_token1] = ACTIONS(1505), + [aux_sym__val_number_token2] = ACTIONS(1505), + [aux_sym__val_number_token3] = ACTIONS(1505), + [anon_sym_DQUOTE] = ACTIONS(1505), + [sym__str_single_quotes] = ACTIONS(1505), + [sym__str_back_ticks] = ACTIONS(1505), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1505), + [sym__entry_separator] = ACTIONS(1515), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_POUND] = ACTIONS(3), }, [190] = { - [sym__expr_parenthesized_immediate] = STATE(388), - [sym__immediate_decimal] = STATE(262), - [sym_val_variable] = STATE(388), + [sym__expr_parenthesized_immediate] = STATE(575), + [sym__immediate_decimal] = STATE(576), + [sym_val_variable] = STATE(575), [sym_comment] = STATE(190), - [anon_sym_export] = ACTIONS(1413), - [anon_sym_alias] = ACTIONS(1413), - [anon_sym_let] = ACTIONS(1413), - [anon_sym_let_DASHenv] = ACTIONS(1413), - [anon_sym_mut] = ACTIONS(1413), - [anon_sym_const] = ACTIONS(1413), - [aux_sym_cmd_identifier_token1] = ACTIONS(1413), - [aux_sym_cmd_identifier_token2] = ACTIONS(1413), - [aux_sym_cmd_identifier_token3] = ACTIONS(1413), - [aux_sym_cmd_identifier_token4] = ACTIONS(1413), - [aux_sym_cmd_identifier_token5] = ACTIONS(1413), - [aux_sym_cmd_identifier_token6] = ACTIONS(1413), - [aux_sym_cmd_identifier_token7] = ACTIONS(1413), - [aux_sym_cmd_identifier_token8] = ACTIONS(1413), - [aux_sym_cmd_identifier_token9] = ACTIONS(1413), - [aux_sym_cmd_identifier_token10] = ACTIONS(1413), - [aux_sym_cmd_identifier_token11] = ACTIONS(1413), - [aux_sym_cmd_identifier_token12] = ACTIONS(1413), - [aux_sym_cmd_identifier_token13] = ACTIONS(1413), - [aux_sym_cmd_identifier_token14] = ACTIONS(1413), - [aux_sym_cmd_identifier_token15] = ACTIONS(1413), - [aux_sym_cmd_identifier_token16] = ACTIONS(1413), - [aux_sym_cmd_identifier_token17] = ACTIONS(1413), - [aux_sym_cmd_identifier_token18] = ACTIONS(1413), - [aux_sym_cmd_identifier_token19] = ACTIONS(1413), - [aux_sym_cmd_identifier_token20] = ACTIONS(1413), - [aux_sym_cmd_identifier_token21] = ACTIONS(1413), - [aux_sym_cmd_identifier_token22] = ACTIONS(1413), - [aux_sym_cmd_identifier_token23] = ACTIONS(1413), - [aux_sym_cmd_identifier_token24] = ACTIONS(1413), - [aux_sym_cmd_identifier_token25] = ACTIONS(1413), - [aux_sym_cmd_identifier_token26] = ACTIONS(1413), - [aux_sym_cmd_identifier_token27] = ACTIONS(1413), - [aux_sym_cmd_identifier_token28] = ACTIONS(1413), - [aux_sym_cmd_identifier_token29] = ACTIONS(1413), - [aux_sym_cmd_identifier_token30] = ACTIONS(1413), - [aux_sym_cmd_identifier_token31] = ACTIONS(1413), - [aux_sym_cmd_identifier_token32] = ACTIONS(1413), - [aux_sym_cmd_identifier_token33] = ACTIONS(1413), - [aux_sym_cmd_identifier_token34] = ACTIONS(1413), - [aux_sym_cmd_identifier_token35] = ACTIONS(1413), - [aux_sym_cmd_identifier_token36] = ACTIONS(1413), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_null] = ACTIONS(1413), - [aux_sym_cmd_identifier_token38] = ACTIONS(1413), - [aux_sym_cmd_identifier_token39] = ACTIONS(1413), - [aux_sym_cmd_identifier_token40] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1413), - [anon_sym_export_DASHenv] = ACTIONS(1413), - [anon_sym_extern] = ACTIONS(1413), - [anon_sym_module] = ACTIONS(1413), - [anon_sym_use] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(1413), - [anon_sym_DOLLAR] = ACTIONS(1415), - [anon_sym_error] = ACTIONS(1413), - [anon_sym_list] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1413), - [anon_sym_for] = ACTIONS(1413), - [anon_sym_in] = ACTIONS(1413), - [anon_sym_loop] = ACTIONS(1413), - [anon_sym_make] = ACTIONS(1413), - [anon_sym_while] = ACTIONS(1413), - [anon_sym_do] = ACTIONS(1413), - [anon_sym_if] = ACTIONS(1413), - [anon_sym_else] = ACTIONS(1413), - [anon_sym_match] = ACTIONS(1413), - [anon_sym_RBRACE] = ACTIONS(1413), - [anon_sym_try] = ACTIONS(1413), - [anon_sym_catch] = ACTIONS(1413), - [anon_sym_return] = ACTIONS(1413), - [anon_sym_source] = ACTIONS(1413), - [anon_sym_source_DASHenv] = ACTIONS(1413), - [anon_sym_register] = ACTIONS(1413), - [anon_sym_hide] = ACTIONS(1413), - [anon_sym_hide_DASHenv] = ACTIONS(1413), - [anon_sym_overlay] = ACTIONS(1413), - [anon_sym_new] = ACTIONS(1413), - [anon_sym_as] = ACTIONS(1413), - [anon_sym_LPAREN2] = ACTIONS(1417), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1413), - [anon_sym_DOT] = ACTIONS(1419), - [aux_sym__immediate_decimal_token1] = ACTIONS(1421), - [aux_sym__immediate_decimal_token3] = ACTIONS(1421), - [aux_sym__immediate_decimal_token4] = ACTIONS(1423), - [aux_sym__immediate_decimal_token5] = ACTIONS(1425), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1413), - [aux_sym__val_number_decimal_token1] = ACTIONS(1413), - [aux_sym__val_number_decimal_token2] = ACTIONS(1413), - [aux_sym__val_number_decimal_token3] = ACTIONS(1413), - [aux_sym__val_number_decimal_token4] = ACTIONS(1413), - [aux_sym__val_number_token1] = ACTIONS(1413), - [aux_sym__val_number_token2] = ACTIONS(1413), - [aux_sym__val_number_token3] = ACTIONS(1413), - [anon_sym_DQUOTE] = ACTIONS(1413), - [sym__str_single_quotes] = ACTIONS(1413), - [sym__str_back_ticks] = ACTIONS(1413), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1413), - [sym__entry_separator] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(1413), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1429), + [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), + [aux_sym_cmd_identifier_token1] = ACTIONS(1561), + [aux_sym_cmd_identifier_token2] = ACTIONS(1561), + [aux_sym_cmd_identifier_token3] = ACTIONS(1561), + [aux_sym_cmd_identifier_token4] = ACTIONS(1561), + [aux_sym_cmd_identifier_token5] = ACTIONS(1561), + [aux_sym_cmd_identifier_token6] = ACTIONS(1561), + [aux_sym_cmd_identifier_token7] = ACTIONS(1561), + [aux_sym_cmd_identifier_token8] = ACTIONS(1561), + [aux_sym_cmd_identifier_token9] = ACTIONS(1561), + [aux_sym_cmd_identifier_token10] = ACTIONS(1561), + [aux_sym_cmd_identifier_token11] = ACTIONS(1561), + [aux_sym_cmd_identifier_token12] = ACTIONS(1561), + [aux_sym_cmd_identifier_token13] = ACTIONS(1561), + [aux_sym_cmd_identifier_token14] = ACTIONS(1561), + [aux_sym_cmd_identifier_token15] = ACTIONS(1561), + [aux_sym_cmd_identifier_token16] = ACTIONS(1561), + [aux_sym_cmd_identifier_token17] = ACTIONS(1561), + [aux_sym_cmd_identifier_token18] = ACTIONS(1561), + [aux_sym_cmd_identifier_token19] = ACTIONS(1561), + [aux_sym_cmd_identifier_token20] = ACTIONS(1561), + [aux_sym_cmd_identifier_token21] = ACTIONS(1561), + [aux_sym_cmd_identifier_token22] = ACTIONS(1561), + [aux_sym_cmd_identifier_token23] = ACTIONS(1561), + [aux_sym_cmd_identifier_token24] = ACTIONS(1561), + [aux_sym_cmd_identifier_token25] = ACTIONS(1561), + [aux_sym_cmd_identifier_token26] = ACTIONS(1561), + [aux_sym_cmd_identifier_token27] = ACTIONS(1561), + [aux_sym_cmd_identifier_token28] = ACTIONS(1561), + [aux_sym_cmd_identifier_token29] = ACTIONS(1561), + [aux_sym_cmd_identifier_token30] = ACTIONS(1561), + [aux_sym_cmd_identifier_token31] = ACTIONS(1561), + [aux_sym_cmd_identifier_token32] = ACTIONS(1561), + [aux_sym_cmd_identifier_token33] = ACTIONS(1561), + [aux_sym_cmd_identifier_token34] = ACTIONS(1561), + [aux_sym_cmd_identifier_token35] = ACTIONS(1561), + [aux_sym_cmd_identifier_token36] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1561), + [anon_sym_false] = ACTIONS(1561), + [anon_sym_null] = ACTIONS(1561), + [aux_sym_cmd_identifier_token38] = ACTIONS(1561), + [aux_sym_cmd_identifier_token39] = ACTIONS(1561), + [aux_sym_cmd_identifier_token40] = ACTIONS(1561), + [anon_sym_def] = 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_LPAREN] = ACTIONS(1561), + [anon_sym_DOLLAR] = ACTIONS(1539), + [anon_sym_error] = ACTIONS(1561), + [anon_sym_list] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1561), + [anon_sym_continue] = ACTIONS(1561), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_in] = ACTIONS(1561), + [anon_sym_loop] = ACTIONS(1561), + [anon_sym_make] = ACTIONS(1561), + [anon_sym_while] = ACTIONS(1561), + [anon_sym_do] = ACTIONS(1561), + [anon_sym_if] = ACTIONS(1561), + [anon_sym_else] = ACTIONS(1561), + [anon_sym_match] = ACTIONS(1561), + [anon_sym_RBRACE] = ACTIONS(1561), + [anon_sym_try] = ACTIONS(1561), + [anon_sym_catch] = 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_new] = ACTIONS(1561), + [anon_sym_as] = ACTIONS(1561), + [anon_sym_LPAREN2] = ACTIONS(1541), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1561), + [aux_sym__immediate_decimal_token1] = ACTIONS(1555), + [aux_sym__immediate_decimal_token3] = ACTIONS(1555), + [aux_sym__immediate_decimal_token4] = ACTIONS(1557), + [aux_sym__immediate_decimal_token5] = ACTIONS(1559), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1561), + [aux_sym__val_number_decimal_token1] = ACTIONS(1561), + [aux_sym__val_number_decimal_token2] = ACTIONS(1561), + [aux_sym__val_number_decimal_token3] = ACTIONS(1561), + [aux_sym__val_number_decimal_token4] = ACTIONS(1561), + [aux_sym__val_number_token1] = ACTIONS(1561), + [aux_sym__val_number_token2] = ACTIONS(1561), + [aux_sym__val_number_token3] = ACTIONS(1561), + [anon_sym_DQUOTE] = ACTIONS(1561), + [sym__str_single_quotes] = ACTIONS(1561), + [sym__str_back_ticks] = ACTIONS(1561), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1561), + [sym__entry_separator] = ACTIONS(1563), + [anon_sym_PLUS] = ACTIONS(1561), [anon_sym_POUND] = ACTIONS(3), }, [191] = { - [sym__expr_parenthesized_immediate] = STATE(417), - [sym__immediate_decimal] = STATE(400), - [sym_val_variable] = STATE(417), [sym_comment] = STATE(191), - [anon_sym_export] = ACTIONS(1431), - [anon_sym_alias] = ACTIONS(1431), - [anon_sym_let] = ACTIONS(1431), - [anon_sym_let_DASHenv] = ACTIONS(1431), - [anon_sym_mut] = ACTIONS(1431), - [anon_sym_const] = ACTIONS(1431), - [aux_sym_cmd_identifier_token1] = ACTIONS(1431), - [aux_sym_cmd_identifier_token2] = ACTIONS(1431), - [aux_sym_cmd_identifier_token3] = ACTIONS(1431), - [aux_sym_cmd_identifier_token4] = ACTIONS(1431), - [aux_sym_cmd_identifier_token5] = ACTIONS(1431), - [aux_sym_cmd_identifier_token6] = ACTIONS(1431), - [aux_sym_cmd_identifier_token7] = ACTIONS(1431), - [aux_sym_cmd_identifier_token8] = ACTIONS(1431), - [aux_sym_cmd_identifier_token9] = ACTIONS(1431), - [aux_sym_cmd_identifier_token10] = ACTIONS(1431), - [aux_sym_cmd_identifier_token11] = ACTIONS(1431), - [aux_sym_cmd_identifier_token12] = ACTIONS(1431), - [aux_sym_cmd_identifier_token13] = ACTIONS(1431), - [aux_sym_cmd_identifier_token14] = ACTIONS(1431), - [aux_sym_cmd_identifier_token15] = ACTIONS(1431), - [aux_sym_cmd_identifier_token16] = ACTIONS(1431), - [aux_sym_cmd_identifier_token17] = ACTIONS(1431), - [aux_sym_cmd_identifier_token18] = ACTIONS(1431), - [aux_sym_cmd_identifier_token19] = ACTIONS(1431), - [aux_sym_cmd_identifier_token20] = ACTIONS(1431), - [aux_sym_cmd_identifier_token21] = ACTIONS(1431), - [aux_sym_cmd_identifier_token22] = ACTIONS(1431), - [aux_sym_cmd_identifier_token23] = ACTIONS(1431), - [aux_sym_cmd_identifier_token24] = ACTIONS(1431), - [aux_sym_cmd_identifier_token25] = ACTIONS(1431), - [aux_sym_cmd_identifier_token26] = ACTIONS(1431), - [aux_sym_cmd_identifier_token27] = ACTIONS(1431), - [aux_sym_cmd_identifier_token28] = ACTIONS(1431), - [aux_sym_cmd_identifier_token29] = ACTIONS(1431), - [aux_sym_cmd_identifier_token30] = ACTIONS(1431), - [aux_sym_cmd_identifier_token31] = ACTIONS(1431), - [aux_sym_cmd_identifier_token32] = ACTIONS(1431), - [aux_sym_cmd_identifier_token33] = ACTIONS(1431), - [aux_sym_cmd_identifier_token34] = ACTIONS(1431), - [aux_sym_cmd_identifier_token35] = ACTIONS(1431), - [aux_sym_cmd_identifier_token36] = ACTIONS(1431), - [anon_sym_true] = ACTIONS(1431), - [anon_sym_false] = ACTIONS(1431), - [anon_sym_null] = ACTIONS(1431), - [aux_sym_cmd_identifier_token38] = ACTIONS(1431), - [aux_sym_cmd_identifier_token39] = ACTIONS(1431), - [aux_sym_cmd_identifier_token40] = ACTIONS(1431), - [anon_sym_def] = ACTIONS(1431), - [anon_sym_export_DASHenv] = ACTIONS(1431), - [anon_sym_extern] = ACTIONS(1431), - [anon_sym_module] = ACTIONS(1431), - [anon_sym_use] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_DOLLAR] = ACTIONS(1415), - [anon_sym_error] = ACTIONS(1431), - [anon_sym_list] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_break] = ACTIONS(1431), - [anon_sym_continue] = ACTIONS(1431), - [anon_sym_for] = ACTIONS(1431), - [anon_sym_in] = ACTIONS(1431), - [anon_sym_loop] = ACTIONS(1431), - [anon_sym_make] = ACTIONS(1431), - [anon_sym_while] = ACTIONS(1431), - [anon_sym_do] = ACTIONS(1431), - [anon_sym_if] = ACTIONS(1431), - [anon_sym_else] = ACTIONS(1431), - [anon_sym_match] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1431), - [anon_sym_try] = ACTIONS(1431), - [anon_sym_catch] = ACTIONS(1431), - [anon_sym_return] = ACTIONS(1431), - [anon_sym_source] = ACTIONS(1431), - [anon_sym_source_DASHenv] = ACTIONS(1431), - [anon_sym_register] = ACTIONS(1431), - [anon_sym_hide] = ACTIONS(1431), - [anon_sym_hide_DASHenv] = ACTIONS(1431), - [anon_sym_overlay] = ACTIONS(1431), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_as] = ACTIONS(1431), - [anon_sym_LPAREN2] = ACTIONS(1417), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1431), - [anon_sym_DOT] = ACTIONS(1433), - [aux_sym__immediate_decimal_token1] = ACTIONS(1435), - [aux_sym__immediate_decimal_token3] = ACTIONS(1435), - [aux_sym__immediate_decimal_token4] = ACTIONS(1437), - [aux_sym__immediate_decimal_token5] = ACTIONS(1439), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1431), - [aux_sym__val_number_decimal_token1] = ACTIONS(1431), - [aux_sym__val_number_decimal_token2] = ACTIONS(1431), - [aux_sym__val_number_decimal_token3] = ACTIONS(1431), - [aux_sym__val_number_decimal_token4] = ACTIONS(1431), - [aux_sym__val_number_token1] = ACTIONS(1431), - [aux_sym__val_number_token2] = ACTIONS(1431), - [aux_sym__val_number_token3] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(1431), - [sym__str_single_quotes] = ACTIONS(1431), - [sym__str_back_ticks] = ACTIONS(1431), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1431), - [sym__entry_separator] = ACTIONS(1441), - [anon_sym_PLUS] = ACTIONS(1431), + [anon_sym_export] = ACTIONS(1565), + [anon_sym_alias] = ACTIONS(1565), + [anon_sym_let] = ACTIONS(1565), + [anon_sym_let_DASHenv] = ACTIONS(1565), + [anon_sym_mut] = ACTIONS(1565), + [anon_sym_const] = ACTIONS(1565), + [aux_sym_cmd_identifier_token1] = ACTIONS(1565), + [aux_sym_cmd_identifier_token2] = ACTIONS(1565), + [aux_sym_cmd_identifier_token3] = ACTIONS(1565), + [aux_sym_cmd_identifier_token4] = ACTIONS(1565), + [aux_sym_cmd_identifier_token5] = ACTIONS(1565), + [aux_sym_cmd_identifier_token6] = ACTIONS(1565), + [aux_sym_cmd_identifier_token7] = ACTIONS(1565), + [aux_sym_cmd_identifier_token8] = ACTIONS(1565), + [aux_sym_cmd_identifier_token9] = ACTIONS(1565), + [aux_sym_cmd_identifier_token10] = ACTIONS(1565), + [aux_sym_cmd_identifier_token11] = ACTIONS(1565), + [aux_sym_cmd_identifier_token12] = ACTIONS(1565), + [aux_sym_cmd_identifier_token13] = ACTIONS(1565), + [aux_sym_cmd_identifier_token14] = ACTIONS(1565), + [aux_sym_cmd_identifier_token15] = ACTIONS(1565), + [aux_sym_cmd_identifier_token16] = ACTIONS(1565), + [aux_sym_cmd_identifier_token17] = ACTIONS(1565), + [aux_sym_cmd_identifier_token18] = ACTIONS(1565), + [aux_sym_cmd_identifier_token19] = ACTIONS(1565), + [aux_sym_cmd_identifier_token20] = ACTIONS(1565), + [aux_sym_cmd_identifier_token21] = ACTIONS(1565), + [aux_sym_cmd_identifier_token22] = ACTIONS(1565), + [aux_sym_cmd_identifier_token23] = ACTIONS(1565), + [aux_sym_cmd_identifier_token24] = ACTIONS(1565), + [aux_sym_cmd_identifier_token25] = ACTIONS(1565), + [aux_sym_cmd_identifier_token26] = ACTIONS(1565), + [aux_sym_cmd_identifier_token27] = ACTIONS(1565), + [aux_sym_cmd_identifier_token28] = ACTIONS(1565), + [aux_sym_cmd_identifier_token29] = ACTIONS(1565), + [aux_sym_cmd_identifier_token30] = ACTIONS(1565), + [aux_sym_cmd_identifier_token31] = ACTIONS(1565), + [aux_sym_cmd_identifier_token32] = ACTIONS(1565), + [aux_sym_cmd_identifier_token33] = ACTIONS(1565), + [aux_sym_cmd_identifier_token34] = ACTIONS(1565), + [aux_sym_cmd_identifier_token35] = ACTIONS(1565), + [aux_sym_cmd_identifier_token36] = ACTIONS(1565), + [anon_sym_true] = ACTIONS(1565), + [anon_sym_false] = ACTIONS(1565), + [anon_sym_null] = ACTIONS(1565), + [aux_sym_cmd_identifier_token38] = ACTIONS(1565), + [aux_sym_cmd_identifier_token39] = ACTIONS(1565), + [aux_sym_cmd_identifier_token40] = ACTIONS(1565), + [anon_sym_def] = ACTIONS(1565), + [anon_sym_export_DASHenv] = ACTIONS(1565), + [anon_sym_extern] = ACTIONS(1565), + [anon_sym_module] = ACTIONS(1565), + [anon_sym_use] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_DOLLAR] = ACTIONS(1565), + [anon_sym_error] = ACTIONS(1565), + [anon_sym_list] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_break] = ACTIONS(1565), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_for] = ACTIONS(1565), + [anon_sym_in] = ACTIONS(1565), + [anon_sym_loop] = ACTIONS(1565), + [anon_sym_make] = ACTIONS(1565), + [anon_sym_while] = ACTIONS(1565), + [anon_sym_do] = ACTIONS(1565), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_else] = ACTIONS(1565), + [anon_sym_match] = ACTIONS(1565), + [anon_sym_RBRACE] = ACTIONS(1565), + [anon_sym_try] = ACTIONS(1565), + [anon_sym_catch] = ACTIONS(1565), + [anon_sym_return] = ACTIONS(1565), + [anon_sym_source] = ACTIONS(1565), + [anon_sym_source_DASHenv] = ACTIONS(1565), + [anon_sym_register] = ACTIONS(1565), + [anon_sym_hide] = ACTIONS(1565), + [anon_sym_hide_DASHenv] = ACTIONS(1565), + [anon_sym_overlay] = ACTIONS(1565), + [anon_sym_new] = ACTIONS(1565), + [anon_sym_as] = ACTIONS(1565), + [anon_sym_LPAREN2] = ACTIONS(1567), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1565), + [anon_sym_DOT_DOT2] = ACTIONS(1565), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), + [aux_sym__immediate_decimal_token2] = ACTIONS(1569), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1565), + [aux_sym__val_number_decimal_token1] = ACTIONS(1565), + [aux_sym__val_number_decimal_token2] = ACTIONS(1565), + [aux_sym__val_number_decimal_token3] = ACTIONS(1565), + [aux_sym__val_number_decimal_token4] = ACTIONS(1565), + [aux_sym__val_number_token1] = ACTIONS(1565), + [aux_sym__val_number_token2] = ACTIONS(1565), + [aux_sym__val_number_token3] = ACTIONS(1565), + [sym_filesize_unit] = ACTIONS(1565), + [sym_duration_unit] = ACTIONS(1565), + [anon_sym_DQUOTE] = ACTIONS(1565), + [sym__str_single_quotes] = ACTIONS(1565), + [sym__str_back_ticks] = ACTIONS(1565), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1565), + [sym__entry_separator] = ACTIONS(1567), + [anon_sym_PLUS] = ACTIONS(1565), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1565), [anon_sym_POUND] = ACTIONS(3), }, [192] = { - [sym__expr_parenthesized_immediate] = STATE(585), - [sym__immediate_decimal] = STATE(437), - [sym_val_variable] = STATE(585), [sym_comment] = STATE(192), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_alias] = ACTIONS(1443), - [anon_sym_let] = ACTIONS(1443), - [anon_sym_let_DASHenv] = ACTIONS(1443), - [anon_sym_mut] = ACTIONS(1443), - [anon_sym_const] = ACTIONS(1443), - [aux_sym_cmd_identifier_token1] = ACTIONS(1443), - [aux_sym_cmd_identifier_token2] = ACTIONS(1443), - [aux_sym_cmd_identifier_token3] = ACTIONS(1443), - [aux_sym_cmd_identifier_token4] = ACTIONS(1443), - [aux_sym_cmd_identifier_token5] = ACTIONS(1443), - [aux_sym_cmd_identifier_token6] = ACTIONS(1443), - [aux_sym_cmd_identifier_token7] = ACTIONS(1443), - [aux_sym_cmd_identifier_token8] = ACTIONS(1443), - [aux_sym_cmd_identifier_token9] = ACTIONS(1443), - [aux_sym_cmd_identifier_token10] = ACTIONS(1443), - [aux_sym_cmd_identifier_token11] = ACTIONS(1443), - [aux_sym_cmd_identifier_token12] = ACTIONS(1443), - [aux_sym_cmd_identifier_token13] = ACTIONS(1443), - [aux_sym_cmd_identifier_token14] = ACTIONS(1443), - [aux_sym_cmd_identifier_token15] = ACTIONS(1443), - [aux_sym_cmd_identifier_token16] = ACTIONS(1443), - [aux_sym_cmd_identifier_token17] = ACTIONS(1443), - [aux_sym_cmd_identifier_token18] = ACTIONS(1443), - [aux_sym_cmd_identifier_token19] = ACTIONS(1443), - [aux_sym_cmd_identifier_token20] = ACTIONS(1443), - [aux_sym_cmd_identifier_token21] = ACTIONS(1443), - [aux_sym_cmd_identifier_token22] = ACTIONS(1443), - [aux_sym_cmd_identifier_token23] = ACTIONS(1443), - [aux_sym_cmd_identifier_token24] = ACTIONS(1443), - [aux_sym_cmd_identifier_token25] = ACTIONS(1443), - [aux_sym_cmd_identifier_token26] = ACTIONS(1443), - [aux_sym_cmd_identifier_token27] = ACTIONS(1443), - [aux_sym_cmd_identifier_token28] = ACTIONS(1443), - [aux_sym_cmd_identifier_token29] = ACTIONS(1443), - [aux_sym_cmd_identifier_token30] = ACTIONS(1443), - [aux_sym_cmd_identifier_token31] = ACTIONS(1443), - [aux_sym_cmd_identifier_token32] = ACTIONS(1443), - [aux_sym_cmd_identifier_token33] = ACTIONS(1443), - [aux_sym_cmd_identifier_token34] = ACTIONS(1443), - [aux_sym_cmd_identifier_token35] = ACTIONS(1443), - [aux_sym_cmd_identifier_token36] = ACTIONS(1443), - [anon_sym_true] = ACTIONS(1443), - [anon_sym_false] = ACTIONS(1443), - [anon_sym_null] = ACTIONS(1443), - [aux_sym_cmd_identifier_token38] = ACTIONS(1443), - [aux_sym_cmd_identifier_token39] = ACTIONS(1443), - [aux_sym_cmd_identifier_token40] = ACTIONS(1443), - [anon_sym_def] = ACTIONS(1443), - [anon_sym_export_DASHenv] = ACTIONS(1443), - [anon_sym_extern] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_use] = ACTIONS(1443), - [anon_sym_LPAREN] = ACTIONS(1443), - [anon_sym_DOLLAR] = ACTIONS(1445), - [anon_sym_error] = ACTIONS(1443), - [anon_sym_list] = ACTIONS(1443), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_break] = ACTIONS(1443), - [anon_sym_continue] = ACTIONS(1443), - [anon_sym_for] = ACTIONS(1443), - [anon_sym_in] = ACTIONS(1443), - [anon_sym_loop] = ACTIONS(1443), - [anon_sym_make] = ACTIONS(1443), - [anon_sym_while] = ACTIONS(1443), - [anon_sym_do] = ACTIONS(1443), - [anon_sym_if] = ACTIONS(1443), - [anon_sym_else] = ACTIONS(1443), - [anon_sym_match] = ACTIONS(1443), - [anon_sym_RBRACE] = ACTIONS(1443), - [anon_sym_try] = ACTIONS(1443), - [anon_sym_catch] = ACTIONS(1443), - [anon_sym_return] = ACTIONS(1443), - [anon_sym_source] = ACTIONS(1443), - [anon_sym_source_DASHenv] = ACTIONS(1443), - [anon_sym_register] = ACTIONS(1443), - [anon_sym_hide] = ACTIONS(1443), - [anon_sym_hide_DASHenv] = ACTIONS(1443), - [anon_sym_overlay] = ACTIONS(1443), - [anon_sym_new] = ACTIONS(1443), - [anon_sym_as] = ACTIONS(1443), - [anon_sym_LPAREN2] = ACTIONS(1447), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1443), - [aux_sym__immediate_decimal_token1] = ACTIONS(1449), - [aux_sym__immediate_decimal_token3] = ACTIONS(1449), - [aux_sym__immediate_decimal_token4] = ACTIONS(1451), - [aux_sym__immediate_decimal_token5] = ACTIONS(1453), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1443), - [aux_sym__val_number_decimal_token1] = ACTIONS(1443), - [aux_sym__val_number_decimal_token2] = ACTIONS(1443), - [aux_sym__val_number_decimal_token3] = ACTIONS(1443), - [aux_sym__val_number_decimal_token4] = ACTIONS(1443), - [aux_sym__val_number_token1] = ACTIONS(1443), - [aux_sym__val_number_token2] = ACTIONS(1443), - [aux_sym__val_number_token3] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym__str_single_quotes] = ACTIONS(1443), - [sym__str_back_ticks] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1443), - [sym__entry_separator] = ACTIONS(1455), - [anon_sym_PLUS] = ACTIONS(1443), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1457), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1497), + [anon_sym_alias] = ACTIONS(1497), + [anon_sym_let] = ACTIONS(1497), + [anon_sym_let_DASHenv] = ACTIONS(1497), + [anon_sym_mut] = ACTIONS(1497), + [anon_sym_const] = ACTIONS(1497), + [aux_sym_cmd_identifier_token1] = ACTIONS(1497), + [aux_sym_cmd_identifier_token2] = ACTIONS(1497), + [aux_sym_cmd_identifier_token3] = ACTIONS(1497), + [aux_sym_cmd_identifier_token4] = ACTIONS(1497), + [aux_sym_cmd_identifier_token5] = ACTIONS(1497), + [aux_sym_cmd_identifier_token6] = ACTIONS(1497), + [aux_sym_cmd_identifier_token7] = ACTIONS(1497), + [aux_sym_cmd_identifier_token8] = ACTIONS(1497), + [aux_sym_cmd_identifier_token9] = ACTIONS(1497), + [aux_sym_cmd_identifier_token10] = ACTIONS(1497), + [aux_sym_cmd_identifier_token11] = ACTIONS(1497), + [aux_sym_cmd_identifier_token12] = ACTIONS(1497), + [aux_sym_cmd_identifier_token13] = ACTIONS(1497), + [aux_sym_cmd_identifier_token14] = ACTIONS(1497), + [aux_sym_cmd_identifier_token15] = ACTIONS(1497), + [aux_sym_cmd_identifier_token16] = ACTIONS(1497), + [aux_sym_cmd_identifier_token17] = ACTIONS(1497), + [aux_sym_cmd_identifier_token18] = ACTIONS(1497), + [aux_sym_cmd_identifier_token19] = ACTIONS(1497), + [aux_sym_cmd_identifier_token20] = ACTIONS(1497), + [aux_sym_cmd_identifier_token21] = ACTIONS(1497), + [aux_sym_cmd_identifier_token22] = ACTIONS(1497), + [aux_sym_cmd_identifier_token23] = ACTIONS(1497), + [aux_sym_cmd_identifier_token24] = ACTIONS(1497), + [aux_sym_cmd_identifier_token25] = ACTIONS(1497), + [aux_sym_cmd_identifier_token26] = ACTIONS(1497), + [aux_sym_cmd_identifier_token27] = ACTIONS(1497), + [aux_sym_cmd_identifier_token28] = ACTIONS(1497), + [aux_sym_cmd_identifier_token29] = ACTIONS(1497), + [aux_sym_cmd_identifier_token30] = ACTIONS(1497), + [aux_sym_cmd_identifier_token31] = ACTIONS(1497), + [aux_sym_cmd_identifier_token32] = ACTIONS(1497), + [aux_sym_cmd_identifier_token33] = ACTIONS(1497), + [aux_sym_cmd_identifier_token34] = ACTIONS(1497), + [aux_sym_cmd_identifier_token35] = ACTIONS(1497), + [aux_sym_cmd_identifier_token36] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1499), + [anon_sym_false] = ACTIONS(1499), + [anon_sym_null] = ACTIONS(1499), + [aux_sym_cmd_identifier_token38] = ACTIONS(1497), + [aux_sym_cmd_identifier_token39] = ACTIONS(1499), + [aux_sym_cmd_identifier_token40] = ACTIONS(1499), + [anon_sym_def] = ACTIONS(1497), + [anon_sym_export_DASHenv] = ACTIONS(1497), + [anon_sym_extern] = ACTIONS(1497), + [anon_sym_module] = ACTIONS(1497), + [anon_sym_use] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(1497), + [anon_sym_DOLLAR] = ACTIONS(1499), + [anon_sym_error] = ACTIONS(1497), + [anon_sym_list] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_break] = ACTIONS(1497), + [anon_sym_continue] = ACTIONS(1497), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_loop] = ACTIONS(1497), + [anon_sym_make] = ACTIONS(1497), + [anon_sym_while] = ACTIONS(1497), + [anon_sym_do] = ACTIONS(1497), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_else] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(1497), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_try] = ACTIONS(1497), + [anon_sym_catch] = ACTIONS(1497), + [anon_sym_return] = ACTIONS(1497), + [anon_sym_source] = ACTIONS(1497), + [anon_sym_source_DASHenv] = ACTIONS(1497), + [anon_sym_register] = ACTIONS(1497), + [anon_sym_hide] = ACTIONS(1497), + [anon_sym_hide_DASHenv] = ACTIONS(1497), + [anon_sym_overlay] = ACTIONS(1497), + [anon_sym_new] = ACTIONS(1497), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_LPAREN2] = ACTIONS(1499), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1497), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), + [aux_sym__immediate_decimal_token2] = ACTIONS(1573), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1499), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1499), + [aux_sym__val_number_decimal_token4] = ACTIONS(1499), + [aux_sym__val_number_token1] = ACTIONS(1499), + [aux_sym__val_number_token2] = ACTIONS(1499), + [aux_sym__val_number_token3] = ACTIONS(1499), + [sym_filesize_unit] = ACTIONS(1497), + [sym_duration_unit] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [sym__str_single_quotes] = ACTIONS(1499), + [sym__str_back_ticks] = ACTIONS(1499), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1497), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1497), + [anon_sym_POUND] = ACTIONS(247), }, [193] = { - [sym__expr_parenthesized_immediate] = STATE(465), - [sym__immediate_decimal] = STATE(334), - [sym_val_variable] = STATE(465), [sym_comment] = STATE(193), - [anon_sym_export] = ACTIONS(1413), - [anon_sym_alias] = ACTIONS(1413), - [anon_sym_let] = ACTIONS(1413), - [anon_sym_let_DASHenv] = ACTIONS(1413), - [anon_sym_mut] = ACTIONS(1413), - [anon_sym_const] = ACTIONS(1413), - [aux_sym_cmd_identifier_token1] = ACTIONS(1413), - [aux_sym_cmd_identifier_token2] = ACTIONS(1413), - [aux_sym_cmd_identifier_token3] = ACTIONS(1413), - [aux_sym_cmd_identifier_token4] = ACTIONS(1413), - [aux_sym_cmd_identifier_token5] = ACTIONS(1413), - [aux_sym_cmd_identifier_token6] = ACTIONS(1413), - [aux_sym_cmd_identifier_token7] = ACTIONS(1413), - [aux_sym_cmd_identifier_token8] = ACTIONS(1413), - [aux_sym_cmd_identifier_token9] = ACTIONS(1413), - [aux_sym_cmd_identifier_token10] = ACTIONS(1413), - [aux_sym_cmd_identifier_token11] = ACTIONS(1413), - [aux_sym_cmd_identifier_token12] = ACTIONS(1413), - [aux_sym_cmd_identifier_token13] = ACTIONS(1413), - [aux_sym_cmd_identifier_token14] = ACTIONS(1413), - [aux_sym_cmd_identifier_token15] = ACTIONS(1413), - [aux_sym_cmd_identifier_token16] = ACTIONS(1413), - [aux_sym_cmd_identifier_token17] = ACTIONS(1413), - [aux_sym_cmd_identifier_token18] = ACTIONS(1413), - [aux_sym_cmd_identifier_token19] = ACTIONS(1413), - [aux_sym_cmd_identifier_token20] = ACTIONS(1413), - [aux_sym_cmd_identifier_token21] = ACTIONS(1413), - [aux_sym_cmd_identifier_token22] = ACTIONS(1413), - [aux_sym_cmd_identifier_token23] = ACTIONS(1413), - [aux_sym_cmd_identifier_token24] = ACTIONS(1413), - [aux_sym_cmd_identifier_token25] = ACTIONS(1413), - [aux_sym_cmd_identifier_token26] = ACTIONS(1413), - [aux_sym_cmd_identifier_token27] = ACTIONS(1413), - [aux_sym_cmd_identifier_token28] = ACTIONS(1413), - [aux_sym_cmd_identifier_token29] = ACTIONS(1413), - [aux_sym_cmd_identifier_token30] = ACTIONS(1413), - [aux_sym_cmd_identifier_token31] = ACTIONS(1413), - [aux_sym_cmd_identifier_token32] = ACTIONS(1413), - [aux_sym_cmd_identifier_token33] = ACTIONS(1413), - [aux_sym_cmd_identifier_token34] = ACTIONS(1413), - [aux_sym_cmd_identifier_token35] = ACTIONS(1413), - [aux_sym_cmd_identifier_token36] = ACTIONS(1413), - [anon_sym_true] = ACTIONS(1427), - [anon_sym_false] = ACTIONS(1427), - [anon_sym_null] = ACTIONS(1427), - [aux_sym_cmd_identifier_token38] = ACTIONS(1413), - [aux_sym_cmd_identifier_token39] = ACTIONS(1427), - [aux_sym_cmd_identifier_token40] = ACTIONS(1427), - [anon_sym_def] = ACTIONS(1413), - [anon_sym_export_DASHenv] = ACTIONS(1413), - [anon_sym_extern] = ACTIONS(1413), - [anon_sym_module] = ACTIONS(1413), - [anon_sym_use] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(1413), - [anon_sym_DOLLAR] = ACTIONS(1459), - [anon_sym_error] = ACTIONS(1413), - [anon_sym_list] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1413), - [anon_sym_for] = ACTIONS(1413), - [anon_sym_in] = ACTIONS(1413), - [anon_sym_loop] = ACTIONS(1413), - [anon_sym_make] = ACTIONS(1413), - [anon_sym_while] = ACTIONS(1413), - [anon_sym_do] = ACTIONS(1413), - [anon_sym_if] = ACTIONS(1413), - [anon_sym_else] = ACTIONS(1413), - [anon_sym_match] = ACTIONS(1413), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_try] = ACTIONS(1413), - [anon_sym_catch] = ACTIONS(1413), - [anon_sym_return] = ACTIONS(1413), - [anon_sym_source] = ACTIONS(1413), - [anon_sym_source_DASHenv] = ACTIONS(1413), - [anon_sym_register] = ACTIONS(1413), - [anon_sym_hide] = ACTIONS(1413), - [anon_sym_hide_DASHenv] = ACTIONS(1413), - [anon_sym_overlay] = ACTIONS(1413), - [anon_sym_new] = ACTIONS(1413), - [anon_sym_as] = ACTIONS(1413), - [anon_sym_LPAREN2] = ACTIONS(1461), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1427), - [anon_sym_DOT] = ACTIONS(1463), - [aux_sym__immediate_decimal_token1] = ACTIONS(1465), - [aux_sym__immediate_decimal_token3] = ACTIONS(1467), - [aux_sym__immediate_decimal_token4] = ACTIONS(1469), - [aux_sym__immediate_decimal_token5] = ACTIONS(1471), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1427), - [aux_sym__val_number_decimal_token1] = ACTIONS(1413), - [aux_sym__val_number_decimal_token2] = ACTIONS(1413), - [aux_sym__val_number_decimal_token3] = ACTIONS(1413), - [aux_sym__val_number_decimal_token4] = ACTIONS(1413), - [aux_sym__val_number_token1] = ACTIONS(1427), - [aux_sym__val_number_token2] = ACTIONS(1427), - [aux_sym__val_number_token3] = ACTIONS(1427), - [anon_sym_DQUOTE] = ACTIONS(1427), - [sym__str_single_quotes] = ACTIONS(1427), - [sym__str_back_ticks] = ACTIONS(1427), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(1413), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1429), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1497), + [anon_sym_alias] = ACTIONS(1497), + [anon_sym_let] = ACTIONS(1497), + [anon_sym_let_DASHenv] = ACTIONS(1497), + [anon_sym_mut] = ACTIONS(1497), + [anon_sym_const] = ACTIONS(1497), + [aux_sym_cmd_identifier_token1] = ACTIONS(1497), + [aux_sym_cmd_identifier_token2] = ACTIONS(1497), + [aux_sym_cmd_identifier_token3] = ACTIONS(1497), + [aux_sym_cmd_identifier_token4] = ACTIONS(1497), + [aux_sym_cmd_identifier_token5] = ACTIONS(1497), + [aux_sym_cmd_identifier_token6] = ACTIONS(1497), + [aux_sym_cmd_identifier_token7] = ACTIONS(1497), + [aux_sym_cmd_identifier_token8] = ACTIONS(1497), + [aux_sym_cmd_identifier_token9] = ACTIONS(1497), + [aux_sym_cmd_identifier_token10] = ACTIONS(1497), + [aux_sym_cmd_identifier_token11] = ACTIONS(1497), + [aux_sym_cmd_identifier_token12] = ACTIONS(1497), + [aux_sym_cmd_identifier_token13] = ACTIONS(1497), + [aux_sym_cmd_identifier_token14] = ACTIONS(1497), + [aux_sym_cmd_identifier_token15] = ACTIONS(1497), + [aux_sym_cmd_identifier_token16] = ACTIONS(1497), + [aux_sym_cmd_identifier_token17] = ACTIONS(1497), + [aux_sym_cmd_identifier_token18] = ACTIONS(1497), + [aux_sym_cmd_identifier_token19] = ACTIONS(1497), + [aux_sym_cmd_identifier_token20] = ACTIONS(1497), + [aux_sym_cmd_identifier_token21] = ACTIONS(1497), + [aux_sym_cmd_identifier_token22] = ACTIONS(1497), + [aux_sym_cmd_identifier_token23] = ACTIONS(1497), + [aux_sym_cmd_identifier_token24] = ACTIONS(1497), + [aux_sym_cmd_identifier_token25] = ACTIONS(1497), + [aux_sym_cmd_identifier_token26] = ACTIONS(1497), + [aux_sym_cmd_identifier_token27] = ACTIONS(1497), + [aux_sym_cmd_identifier_token28] = ACTIONS(1497), + [aux_sym_cmd_identifier_token29] = ACTIONS(1497), + [aux_sym_cmd_identifier_token30] = ACTIONS(1497), + [aux_sym_cmd_identifier_token31] = ACTIONS(1497), + [aux_sym_cmd_identifier_token32] = ACTIONS(1497), + [aux_sym_cmd_identifier_token33] = ACTIONS(1497), + [aux_sym_cmd_identifier_token34] = ACTIONS(1497), + [aux_sym_cmd_identifier_token35] = ACTIONS(1497), + [aux_sym_cmd_identifier_token36] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1497), + [aux_sym_cmd_identifier_token38] = ACTIONS(1497), + [aux_sym_cmd_identifier_token39] = ACTIONS(1497), + [aux_sym_cmd_identifier_token40] = ACTIONS(1497), + [anon_sym_def] = ACTIONS(1497), + [anon_sym_export_DASHenv] = ACTIONS(1497), + [anon_sym_extern] = ACTIONS(1497), + [anon_sym_module] = ACTIONS(1497), + [anon_sym_use] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(1497), + [anon_sym_DOLLAR] = ACTIONS(1497), + [anon_sym_error] = ACTIONS(1497), + [anon_sym_list] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_break] = ACTIONS(1497), + [anon_sym_continue] = ACTIONS(1497), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_loop] = ACTIONS(1497), + [anon_sym_make] = ACTIONS(1497), + [anon_sym_while] = ACTIONS(1497), + [anon_sym_do] = ACTIONS(1497), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_else] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(1497), + [anon_sym_RBRACE] = ACTIONS(1497), + [anon_sym_try] = ACTIONS(1497), + [anon_sym_catch] = ACTIONS(1497), + [anon_sym_return] = ACTIONS(1497), + [anon_sym_source] = ACTIONS(1497), + [anon_sym_source_DASHenv] = ACTIONS(1497), + [anon_sym_register] = ACTIONS(1497), + [anon_sym_hide] = ACTIONS(1497), + [anon_sym_hide_DASHenv] = ACTIONS(1497), + [anon_sym_overlay] = ACTIONS(1497), + [anon_sym_new] = ACTIONS(1497), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_LPAREN2] = ACTIONS(1499), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1497), + [anon_sym_DOT_DOT2] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), + [aux_sym__immediate_decimal_token2] = ACTIONS(1503), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1497), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1497), + [aux_sym__val_number_decimal_token3] = ACTIONS(1497), + [aux_sym__val_number_decimal_token4] = ACTIONS(1497), + [aux_sym__val_number_token1] = ACTIONS(1497), + [aux_sym__val_number_token2] = ACTIONS(1497), + [aux_sym__val_number_token3] = ACTIONS(1497), + [sym_filesize_unit] = ACTIONS(1497), + [sym_duration_unit] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1497), + [sym__str_single_quotes] = ACTIONS(1497), + [sym__str_back_ticks] = ACTIONS(1497), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1497), + [sym__entry_separator] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1497), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1497), + [anon_sym_POUND] = ACTIONS(3), }, [194] = { + [sym__expr_parenthesized_immediate] = STATE(7340), [sym_comment] = STATE(194), - [anon_sym_export] = ACTIONS(1473), - [anon_sym_alias] = ACTIONS(1473), - [anon_sym_let] = ACTIONS(1473), - [anon_sym_let_DASHenv] = ACTIONS(1473), - [anon_sym_mut] = ACTIONS(1473), - [anon_sym_const] = ACTIONS(1473), - [aux_sym_cmd_identifier_token1] = ACTIONS(1473), - [aux_sym_cmd_identifier_token2] = ACTIONS(1473), - [aux_sym_cmd_identifier_token3] = ACTIONS(1473), - [aux_sym_cmd_identifier_token4] = ACTIONS(1473), - [aux_sym_cmd_identifier_token5] = ACTIONS(1473), - [aux_sym_cmd_identifier_token6] = ACTIONS(1473), - [aux_sym_cmd_identifier_token7] = ACTIONS(1473), - [aux_sym_cmd_identifier_token8] = ACTIONS(1473), - [aux_sym_cmd_identifier_token9] = ACTIONS(1473), - [aux_sym_cmd_identifier_token10] = ACTIONS(1473), - [aux_sym_cmd_identifier_token11] = ACTIONS(1473), - [aux_sym_cmd_identifier_token12] = ACTIONS(1473), - [aux_sym_cmd_identifier_token13] = ACTIONS(1473), - [aux_sym_cmd_identifier_token14] = ACTIONS(1473), - [aux_sym_cmd_identifier_token15] = ACTIONS(1473), - [aux_sym_cmd_identifier_token16] = ACTIONS(1473), - [aux_sym_cmd_identifier_token17] = ACTIONS(1473), - [aux_sym_cmd_identifier_token18] = ACTIONS(1473), - [aux_sym_cmd_identifier_token19] = ACTIONS(1473), - [aux_sym_cmd_identifier_token20] = ACTIONS(1473), - [aux_sym_cmd_identifier_token21] = ACTIONS(1473), - [aux_sym_cmd_identifier_token22] = ACTIONS(1473), - [aux_sym_cmd_identifier_token23] = ACTIONS(1473), - [aux_sym_cmd_identifier_token24] = ACTIONS(1473), - [aux_sym_cmd_identifier_token25] = ACTIONS(1473), - [aux_sym_cmd_identifier_token26] = ACTIONS(1473), - [aux_sym_cmd_identifier_token27] = ACTIONS(1473), - [aux_sym_cmd_identifier_token28] = ACTIONS(1473), - [aux_sym_cmd_identifier_token29] = ACTIONS(1473), - [aux_sym_cmd_identifier_token30] = ACTIONS(1473), - [aux_sym_cmd_identifier_token31] = ACTIONS(1473), - [aux_sym_cmd_identifier_token32] = ACTIONS(1473), - [aux_sym_cmd_identifier_token33] = ACTIONS(1473), - [aux_sym_cmd_identifier_token34] = ACTIONS(1473), - [aux_sym_cmd_identifier_token35] = ACTIONS(1473), - [aux_sym_cmd_identifier_token36] = ACTIONS(1473), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_null] = ACTIONS(1473), - [aux_sym_cmd_identifier_token38] = ACTIONS(1473), - [aux_sym_cmd_identifier_token39] = ACTIONS(1473), - [aux_sym_cmd_identifier_token40] = ACTIONS(1473), - [anon_sym_def] = ACTIONS(1473), - [anon_sym_export_DASHenv] = ACTIONS(1473), - [anon_sym_extern] = ACTIONS(1473), - [anon_sym_module] = ACTIONS(1473), - [anon_sym_use] = ACTIONS(1473), - [anon_sym_LPAREN] = ACTIONS(1473), - [anon_sym_DOLLAR] = ACTIONS(1473), - [anon_sym_error] = ACTIONS(1473), - [anon_sym_list] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_break] = ACTIONS(1473), - [anon_sym_continue] = ACTIONS(1473), - [anon_sym_for] = ACTIONS(1473), - [anon_sym_in] = ACTIONS(1473), - [anon_sym_loop] = ACTIONS(1473), - [anon_sym_make] = ACTIONS(1473), - [anon_sym_while] = ACTIONS(1473), - [anon_sym_do] = ACTIONS(1473), - [anon_sym_if] = ACTIONS(1473), - [anon_sym_else] = ACTIONS(1473), - [anon_sym_match] = ACTIONS(1473), - [anon_sym_RBRACE] = ACTIONS(1473), - [anon_sym_try] = ACTIONS(1473), - [anon_sym_catch] = ACTIONS(1473), - [anon_sym_return] = ACTIONS(1473), - [anon_sym_source] = ACTIONS(1473), - [anon_sym_source_DASHenv] = ACTIONS(1473), - [anon_sym_register] = ACTIONS(1473), - [anon_sym_hide] = ACTIONS(1473), - [anon_sym_hide_DASHenv] = ACTIONS(1473), - [anon_sym_overlay] = ACTIONS(1473), - [anon_sym_new] = ACTIONS(1473), - [anon_sym_as] = ACTIONS(1473), - [anon_sym_LPAREN2] = ACTIONS(1475), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1473), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [aux_sym__immediate_decimal_token2] = ACTIONS(1479), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1473), - [aux_sym__val_number_decimal_token1] = ACTIONS(1473), - [aux_sym__val_number_decimal_token2] = ACTIONS(1473), - [aux_sym__val_number_decimal_token3] = ACTIONS(1473), - [aux_sym__val_number_decimal_token4] = ACTIONS(1473), - [aux_sym__val_number_token1] = ACTIONS(1473), - [aux_sym__val_number_token2] = ACTIONS(1473), - [aux_sym__val_number_token3] = ACTIONS(1473), - [sym_filesize_unit] = ACTIONS(1473), - [sym_duration_unit] = ACTIONS(1473), - [anon_sym_DQUOTE] = ACTIONS(1473), - [sym__str_single_quotes] = ACTIONS(1473), - [sym__str_back_ticks] = ACTIONS(1473), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1473), - [sym__entry_separator] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1473), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1575), + [anon_sym_alias] = ACTIONS(1575), + [anon_sym_let] = ACTIONS(1575), + [anon_sym_let_DASHenv] = ACTIONS(1575), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_const] = ACTIONS(1575), + [aux_sym_cmd_identifier_token1] = ACTIONS(1575), + [aux_sym_cmd_identifier_token2] = ACTIONS(1575), + [aux_sym_cmd_identifier_token3] = ACTIONS(1575), + [aux_sym_cmd_identifier_token4] = ACTIONS(1575), + [aux_sym_cmd_identifier_token5] = ACTIONS(1575), + [aux_sym_cmd_identifier_token6] = ACTIONS(1575), + [aux_sym_cmd_identifier_token7] = ACTIONS(1575), + [aux_sym_cmd_identifier_token8] = ACTIONS(1575), + [aux_sym_cmd_identifier_token9] = ACTIONS(1575), + [aux_sym_cmd_identifier_token10] = ACTIONS(1575), + [aux_sym_cmd_identifier_token11] = ACTIONS(1575), + [aux_sym_cmd_identifier_token12] = ACTIONS(1575), + [aux_sym_cmd_identifier_token13] = ACTIONS(1575), + [aux_sym_cmd_identifier_token14] = ACTIONS(1575), + [aux_sym_cmd_identifier_token15] = ACTIONS(1575), + [aux_sym_cmd_identifier_token16] = ACTIONS(1575), + [aux_sym_cmd_identifier_token17] = ACTIONS(1575), + [aux_sym_cmd_identifier_token18] = ACTIONS(1575), + [aux_sym_cmd_identifier_token19] = ACTIONS(1575), + [aux_sym_cmd_identifier_token20] = ACTIONS(1575), + [aux_sym_cmd_identifier_token21] = ACTIONS(1575), + [aux_sym_cmd_identifier_token22] = ACTIONS(1575), + [aux_sym_cmd_identifier_token23] = ACTIONS(1575), + [aux_sym_cmd_identifier_token24] = ACTIONS(1575), + [aux_sym_cmd_identifier_token25] = ACTIONS(1575), + [aux_sym_cmd_identifier_token26] = ACTIONS(1575), + [aux_sym_cmd_identifier_token27] = ACTIONS(1575), + [aux_sym_cmd_identifier_token28] = ACTIONS(1575), + [aux_sym_cmd_identifier_token29] = ACTIONS(1575), + [aux_sym_cmd_identifier_token30] = ACTIONS(1575), + [aux_sym_cmd_identifier_token31] = ACTIONS(1575), + [aux_sym_cmd_identifier_token32] = ACTIONS(1575), + [aux_sym_cmd_identifier_token33] = ACTIONS(1575), + [aux_sym_cmd_identifier_token34] = ACTIONS(1575), + [aux_sym_cmd_identifier_token35] = ACTIONS(1575), + [aux_sym_cmd_identifier_token36] = ACTIONS(1575), + [anon_sym_true] = ACTIONS(1575), + [anon_sym_false] = ACTIONS(1575), + [anon_sym_null] = ACTIONS(1575), + [aux_sym_cmd_identifier_token38] = ACTIONS(1575), + [aux_sym_cmd_identifier_token39] = ACTIONS(1575), + [aux_sym_cmd_identifier_token40] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(1575), + [anon_sym_export_DASHenv] = ACTIONS(1575), + [anon_sym_extern] = ACTIONS(1575), + [anon_sym_module] = ACTIONS(1575), + [anon_sym_use] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1575), + [anon_sym_DOLLAR] = ACTIONS(1575), + [anon_sym_error] = ACTIONS(1575), + [anon_sym_list] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_break] = ACTIONS(1575), + [anon_sym_continue] = ACTIONS(1575), + [anon_sym_for] = ACTIONS(1575), + [anon_sym_in] = ACTIONS(1575), + [anon_sym_loop] = ACTIONS(1575), + [anon_sym_make] = ACTIONS(1575), + [anon_sym_while] = ACTIONS(1575), + [anon_sym_do] = ACTIONS(1575), + [anon_sym_if] = ACTIONS(1575), + [anon_sym_else] = ACTIONS(1575), + [anon_sym_match] = ACTIONS(1575), + [anon_sym_RBRACE] = ACTIONS(1575), + [anon_sym_try] = ACTIONS(1575), + [anon_sym_catch] = ACTIONS(1575), + [anon_sym_return] = ACTIONS(1575), + [anon_sym_source] = ACTIONS(1575), + [anon_sym_source_DASHenv] = ACTIONS(1575), + [anon_sym_register] = ACTIONS(1575), + [anon_sym_hide] = ACTIONS(1575), + [anon_sym_hide_DASHenv] = ACTIONS(1575), + [anon_sym_overlay] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1575), + [anon_sym_as] = ACTIONS(1575), + [anon_sym_LPAREN2] = ACTIONS(1577), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1575), + [anon_sym_DOT_DOT2] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1581), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1581), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1575), + [aux_sym__val_number_decimal_token1] = ACTIONS(1575), + [aux_sym__val_number_decimal_token2] = ACTIONS(1575), + [aux_sym__val_number_decimal_token3] = ACTIONS(1575), + [aux_sym__val_number_decimal_token4] = ACTIONS(1575), + [aux_sym__val_number_token1] = ACTIONS(1575), + [aux_sym__val_number_token2] = ACTIONS(1575), + [aux_sym__val_number_token3] = ACTIONS(1575), + [sym_filesize_unit] = ACTIONS(1583), + [sym_duration_unit] = ACTIONS(1585), + [anon_sym_DQUOTE] = ACTIONS(1575), + [sym__str_single_quotes] = ACTIONS(1575), + [sym__str_back_ticks] = ACTIONS(1575), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1575), + [sym__entry_separator] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(1575), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1589), [anon_sym_POUND] = ACTIONS(3), }, [195] = { - [sym__expr_parenthesized_immediate] = STATE(575), - [sym__immediate_decimal] = STATE(434), - [sym_val_variable] = STATE(575), + [sym__expr_parenthesized_immediate] = STATE(604), + [sym__immediate_decimal] = STATE(497), + [sym_val_variable] = STATE(604), [sym_comment] = STATE(195), - [anon_sym_export] = ACTIONS(1413), - [anon_sym_alias] = ACTIONS(1413), - [anon_sym_let] = ACTIONS(1413), - [anon_sym_let_DASHenv] = ACTIONS(1413), - [anon_sym_mut] = ACTIONS(1413), - [anon_sym_const] = ACTIONS(1413), - [aux_sym_cmd_identifier_token1] = ACTIONS(1413), - [aux_sym_cmd_identifier_token2] = ACTIONS(1413), - [aux_sym_cmd_identifier_token3] = ACTIONS(1413), - [aux_sym_cmd_identifier_token4] = ACTIONS(1413), - [aux_sym_cmd_identifier_token5] = ACTIONS(1413), - [aux_sym_cmd_identifier_token6] = ACTIONS(1413), - [aux_sym_cmd_identifier_token7] = ACTIONS(1413), - [aux_sym_cmd_identifier_token8] = ACTIONS(1413), - [aux_sym_cmd_identifier_token9] = ACTIONS(1413), - [aux_sym_cmd_identifier_token10] = ACTIONS(1413), - [aux_sym_cmd_identifier_token11] = ACTIONS(1413), - [aux_sym_cmd_identifier_token12] = ACTIONS(1413), - [aux_sym_cmd_identifier_token13] = ACTIONS(1413), - [aux_sym_cmd_identifier_token14] = ACTIONS(1413), - [aux_sym_cmd_identifier_token15] = ACTIONS(1413), - [aux_sym_cmd_identifier_token16] = ACTIONS(1413), - [aux_sym_cmd_identifier_token17] = ACTIONS(1413), - [aux_sym_cmd_identifier_token18] = ACTIONS(1413), - [aux_sym_cmd_identifier_token19] = ACTIONS(1413), - [aux_sym_cmd_identifier_token20] = ACTIONS(1413), - [aux_sym_cmd_identifier_token21] = ACTIONS(1413), - [aux_sym_cmd_identifier_token22] = ACTIONS(1413), - [aux_sym_cmd_identifier_token23] = ACTIONS(1413), - [aux_sym_cmd_identifier_token24] = ACTIONS(1413), - [aux_sym_cmd_identifier_token25] = ACTIONS(1413), - [aux_sym_cmd_identifier_token26] = ACTIONS(1413), - [aux_sym_cmd_identifier_token27] = ACTIONS(1413), - [aux_sym_cmd_identifier_token28] = ACTIONS(1413), - [aux_sym_cmd_identifier_token29] = ACTIONS(1413), - [aux_sym_cmd_identifier_token30] = ACTIONS(1413), - [aux_sym_cmd_identifier_token31] = ACTIONS(1413), - [aux_sym_cmd_identifier_token32] = ACTIONS(1413), - [aux_sym_cmd_identifier_token33] = ACTIONS(1413), - [aux_sym_cmd_identifier_token34] = ACTIONS(1413), - [aux_sym_cmd_identifier_token35] = ACTIONS(1413), - [aux_sym_cmd_identifier_token36] = ACTIONS(1413), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_null] = ACTIONS(1413), - [aux_sym_cmd_identifier_token38] = ACTIONS(1413), - [aux_sym_cmd_identifier_token39] = ACTIONS(1413), - [aux_sym_cmd_identifier_token40] = ACTIONS(1413), - [anon_sym_def] = ACTIONS(1413), - [anon_sym_export_DASHenv] = ACTIONS(1413), - [anon_sym_extern] = ACTIONS(1413), - [anon_sym_module] = ACTIONS(1413), - [anon_sym_use] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(1413), - [anon_sym_DOLLAR] = ACTIONS(1445), - [anon_sym_error] = ACTIONS(1413), - [anon_sym_list] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1413), - [anon_sym_for] = ACTIONS(1413), - [anon_sym_in] = ACTIONS(1413), - [anon_sym_loop] = ACTIONS(1413), - [anon_sym_make] = ACTIONS(1413), - [anon_sym_while] = ACTIONS(1413), - [anon_sym_do] = ACTIONS(1413), - [anon_sym_if] = ACTIONS(1413), - [anon_sym_else] = ACTIONS(1413), - [anon_sym_match] = ACTIONS(1413), - [anon_sym_RBRACE] = ACTIONS(1413), - [anon_sym_try] = ACTIONS(1413), - [anon_sym_catch] = ACTIONS(1413), - [anon_sym_return] = ACTIONS(1413), - [anon_sym_source] = ACTIONS(1413), - [anon_sym_source_DASHenv] = ACTIONS(1413), - [anon_sym_register] = ACTIONS(1413), - [anon_sym_hide] = ACTIONS(1413), - [anon_sym_hide_DASHenv] = ACTIONS(1413), - [anon_sym_overlay] = ACTIONS(1413), - [anon_sym_new] = ACTIONS(1413), - [anon_sym_as] = ACTIONS(1413), - [anon_sym_LPAREN2] = ACTIONS(1447), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1413), - [aux_sym__immediate_decimal_token1] = ACTIONS(1449), - [aux_sym__immediate_decimal_token3] = ACTIONS(1449), - [aux_sym__immediate_decimal_token4] = ACTIONS(1451), - [aux_sym__immediate_decimal_token5] = ACTIONS(1453), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1413), - [aux_sym__val_number_decimal_token1] = ACTIONS(1413), - [aux_sym__val_number_decimal_token2] = ACTIONS(1413), - [aux_sym__val_number_decimal_token3] = ACTIONS(1413), - [aux_sym__val_number_decimal_token4] = ACTIONS(1413), - [aux_sym__val_number_token1] = ACTIONS(1413), - [aux_sym__val_number_token2] = ACTIONS(1413), - [aux_sym__val_number_token3] = ACTIONS(1413), - [anon_sym_DQUOTE] = ACTIONS(1413), - [sym__str_single_quotes] = ACTIONS(1413), - [sym__str_back_ticks] = ACTIONS(1413), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1413), - [sym__entry_separator] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(1413), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1429), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1549), + [anon_sym_alias] = ACTIONS(1549), + [anon_sym_let] = ACTIONS(1549), + [anon_sym_let_DASHenv] = ACTIONS(1549), + [anon_sym_mut] = ACTIONS(1549), + [anon_sym_const] = ACTIONS(1549), + [aux_sym_cmd_identifier_token1] = ACTIONS(1549), + [aux_sym_cmd_identifier_token2] = ACTIONS(1549), + [aux_sym_cmd_identifier_token3] = ACTIONS(1549), + [aux_sym_cmd_identifier_token4] = ACTIONS(1549), + [aux_sym_cmd_identifier_token5] = ACTIONS(1549), + [aux_sym_cmd_identifier_token6] = ACTIONS(1549), + [aux_sym_cmd_identifier_token7] = ACTIONS(1549), + [aux_sym_cmd_identifier_token8] = ACTIONS(1549), + [aux_sym_cmd_identifier_token9] = ACTIONS(1549), + [aux_sym_cmd_identifier_token10] = ACTIONS(1549), + [aux_sym_cmd_identifier_token11] = ACTIONS(1549), + [aux_sym_cmd_identifier_token12] = ACTIONS(1549), + [aux_sym_cmd_identifier_token13] = ACTIONS(1549), + [aux_sym_cmd_identifier_token14] = ACTIONS(1549), + [aux_sym_cmd_identifier_token15] = ACTIONS(1549), + [aux_sym_cmd_identifier_token16] = ACTIONS(1549), + [aux_sym_cmd_identifier_token17] = ACTIONS(1549), + [aux_sym_cmd_identifier_token18] = ACTIONS(1549), + [aux_sym_cmd_identifier_token19] = ACTIONS(1549), + [aux_sym_cmd_identifier_token20] = ACTIONS(1549), + [aux_sym_cmd_identifier_token21] = ACTIONS(1549), + [aux_sym_cmd_identifier_token22] = ACTIONS(1549), + [aux_sym_cmd_identifier_token23] = ACTIONS(1549), + [aux_sym_cmd_identifier_token24] = ACTIONS(1549), + [aux_sym_cmd_identifier_token25] = ACTIONS(1549), + [aux_sym_cmd_identifier_token26] = ACTIONS(1549), + [aux_sym_cmd_identifier_token27] = ACTIONS(1549), + [aux_sym_cmd_identifier_token28] = ACTIONS(1549), + [aux_sym_cmd_identifier_token29] = ACTIONS(1549), + [aux_sym_cmd_identifier_token30] = ACTIONS(1549), + [aux_sym_cmd_identifier_token31] = ACTIONS(1549), + [aux_sym_cmd_identifier_token32] = ACTIONS(1549), + [aux_sym_cmd_identifier_token33] = ACTIONS(1549), + [aux_sym_cmd_identifier_token34] = ACTIONS(1549), + [aux_sym_cmd_identifier_token35] = ACTIONS(1549), + [aux_sym_cmd_identifier_token36] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [aux_sym_cmd_identifier_token38] = ACTIONS(1549), + [aux_sym_cmd_identifier_token39] = ACTIONS(1551), + [aux_sym_cmd_identifier_token40] = ACTIONS(1551), + [anon_sym_def] = ACTIONS(1549), + [anon_sym_export_DASHenv] = ACTIONS(1549), + [anon_sym_extern] = ACTIONS(1549), + [anon_sym_module] = ACTIONS(1549), + [anon_sym_use] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(1549), + [anon_sym_DOLLAR] = ACTIONS(1591), + [anon_sym_error] = ACTIONS(1549), + [anon_sym_list] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_break] = ACTIONS(1549), + [anon_sym_continue] = ACTIONS(1549), + [anon_sym_for] = ACTIONS(1549), + [anon_sym_in] = ACTIONS(1549), + [anon_sym_loop] = ACTIONS(1549), + [anon_sym_make] = ACTIONS(1549), + [anon_sym_while] = ACTIONS(1549), + [anon_sym_do] = ACTIONS(1549), + [anon_sym_if] = ACTIONS(1549), + [anon_sym_else] = ACTIONS(1549), + [anon_sym_match] = ACTIONS(1549), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_try] = ACTIONS(1549), + [anon_sym_catch] = ACTIONS(1549), + [anon_sym_return] = ACTIONS(1549), + [anon_sym_source] = ACTIONS(1549), + [anon_sym_source_DASHenv] = ACTIONS(1549), + [anon_sym_register] = ACTIONS(1549), + [anon_sym_hide] = ACTIONS(1549), + [anon_sym_hide_DASHenv] = ACTIONS(1549), + [anon_sym_overlay] = ACTIONS(1549), + [anon_sym_new] = ACTIONS(1549), + [anon_sym_as] = ACTIONS(1549), + [anon_sym_LPAREN2] = ACTIONS(1593), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1551), + [aux_sym__immediate_decimal_token1] = ACTIONS(1595), + [aux_sym__immediate_decimal_token3] = ACTIONS(1597), + [aux_sym__immediate_decimal_token4] = ACTIONS(1599), + [aux_sym__immediate_decimal_token5] = ACTIONS(1601), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1551), + [aux_sym__val_number_decimal_token1] = ACTIONS(1549), + [aux_sym__val_number_decimal_token2] = ACTIONS(1549), + [aux_sym__val_number_decimal_token3] = ACTIONS(1549), + [aux_sym__val_number_decimal_token4] = ACTIONS(1549), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1551), + [anon_sym_PLUS] = ACTIONS(1549), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1553), + [anon_sym_POUND] = ACTIONS(247), }, [196] = { [sym_comment] = STATE(196), - [anon_sym_export] = ACTIONS(1481), - [anon_sym_alias] = ACTIONS(1481), - [anon_sym_let] = ACTIONS(1481), - [anon_sym_let_DASHenv] = ACTIONS(1481), - [anon_sym_mut] = ACTIONS(1481), - [anon_sym_const] = ACTIONS(1481), - [aux_sym_cmd_identifier_token1] = ACTIONS(1481), - [aux_sym_cmd_identifier_token2] = ACTIONS(1481), - [aux_sym_cmd_identifier_token3] = ACTIONS(1481), - [aux_sym_cmd_identifier_token4] = ACTIONS(1481), - [aux_sym_cmd_identifier_token5] = ACTIONS(1481), - [aux_sym_cmd_identifier_token6] = ACTIONS(1481), - [aux_sym_cmd_identifier_token7] = ACTIONS(1481), - [aux_sym_cmd_identifier_token8] = ACTIONS(1481), - [aux_sym_cmd_identifier_token9] = ACTIONS(1481), - [aux_sym_cmd_identifier_token10] = ACTIONS(1481), - [aux_sym_cmd_identifier_token11] = ACTIONS(1481), - [aux_sym_cmd_identifier_token12] = ACTIONS(1481), - [aux_sym_cmd_identifier_token13] = ACTIONS(1481), - [aux_sym_cmd_identifier_token14] = ACTIONS(1481), - [aux_sym_cmd_identifier_token15] = ACTIONS(1481), - [aux_sym_cmd_identifier_token16] = ACTIONS(1481), - [aux_sym_cmd_identifier_token17] = ACTIONS(1481), - [aux_sym_cmd_identifier_token18] = ACTIONS(1481), - [aux_sym_cmd_identifier_token19] = ACTIONS(1481), - [aux_sym_cmd_identifier_token20] = ACTIONS(1481), - [aux_sym_cmd_identifier_token21] = ACTIONS(1481), - [aux_sym_cmd_identifier_token22] = ACTIONS(1481), - [aux_sym_cmd_identifier_token23] = ACTIONS(1481), - [aux_sym_cmd_identifier_token24] = ACTIONS(1481), - [aux_sym_cmd_identifier_token25] = ACTIONS(1481), - [aux_sym_cmd_identifier_token26] = ACTIONS(1481), - [aux_sym_cmd_identifier_token27] = ACTIONS(1481), - [aux_sym_cmd_identifier_token28] = ACTIONS(1481), - [aux_sym_cmd_identifier_token29] = ACTIONS(1481), - [aux_sym_cmd_identifier_token30] = ACTIONS(1481), - [aux_sym_cmd_identifier_token31] = ACTIONS(1481), - [aux_sym_cmd_identifier_token32] = ACTIONS(1481), - [aux_sym_cmd_identifier_token33] = ACTIONS(1481), - [aux_sym_cmd_identifier_token34] = ACTIONS(1481), - [aux_sym_cmd_identifier_token35] = ACTIONS(1481), - [aux_sym_cmd_identifier_token36] = ACTIONS(1481), - [anon_sym_true] = ACTIONS(1481), - [anon_sym_false] = ACTIONS(1481), - [anon_sym_null] = ACTIONS(1481), - [aux_sym_cmd_identifier_token38] = ACTIONS(1481), - [aux_sym_cmd_identifier_token39] = ACTIONS(1481), - [aux_sym_cmd_identifier_token40] = ACTIONS(1481), - [anon_sym_def] = ACTIONS(1481), - [anon_sym_export_DASHenv] = ACTIONS(1481), - [anon_sym_extern] = ACTIONS(1481), - [anon_sym_module] = ACTIONS(1481), - [anon_sym_use] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1481), - [anon_sym_DOLLAR] = ACTIONS(1481), - [anon_sym_error] = ACTIONS(1481), - [anon_sym_list] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_break] = ACTIONS(1481), - [anon_sym_continue] = ACTIONS(1481), - [anon_sym_for] = ACTIONS(1481), - [anon_sym_in] = ACTIONS(1481), - [anon_sym_loop] = ACTIONS(1481), - [anon_sym_make] = ACTIONS(1481), - [anon_sym_while] = ACTIONS(1481), - [anon_sym_do] = ACTIONS(1481), - [anon_sym_if] = ACTIONS(1481), - [anon_sym_else] = ACTIONS(1481), - [anon_sym_match] = ACTIONS(1481), - [anon_sym_RBRACE] = ACTIONS(1481), - [anon_sym_try] = ACTIONS(1481), - [anon_sym_catch] = ACTIONS(1481), - [anon_sym_return] = ACTIONS(1481), - [anon_sym_source] = ACTIONS(1481), - [anon_sym_source_DASHenv] = ACTIONS(1481), - [anon_sym_register] = ACTIONS(1481), - [anon_sym_hide] = ACTIONS(1481), - [anon_sym_hide_DASHenv] = ACTIONS(1481), - [anon_sym_overlay] = ACTIONS(1481), - [anon_sym_new] = ACTIONS(1481), - [anon_sym_as] = ACTIONS(1481), - [anon_sym_LPAREN2] = ACTIONS(1483), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1481), - [anon_sym_DOT_DOT2] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), - [aux_sym__immediate_decimal_token1] = ACTIONS(1485), - [aux_sym__immediate_decimal_token2] = ACTIONS(1487), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1481), - [aux_sym__val_number_decimal_token1] = ACTIONS(1481), - [aux_sym__val_number_decimal_token2] = ACTIONS(1481), - [aux_sym__val_number_decimal_token3] = ACTIONS(1481), - [aux_sym__val_number_decimal_token4] = ACTIONS(1481), - [aux_sym__val_number_token1] = ACTIONS(1481), - [aux_sym__val_number_token2] = ACTIONS(1481), - [aux_sym__val_number_token3] = ACTIONS(1481), - [sym_filesize_unit] = ACTIONS(1481), - [sym_duration_unit] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1481), - [sym__str_single_quotes] = ACTIONS(1481), - [sym__str_back_ticks] = ACTIONS(1481), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1481), - [sym__entry_separator] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1481), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1481), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1517), + [anon_sym_alias] = ACTIONS(1517), + [anon_sym_let] = ACTIONS(1517), + [anon_sym_let_DASHenv] = ACTIONS(1517), + [anon_sym_mut] = ACTIONS(1517), + [anon_sym_const] = ACTIONS(1517), + [aux_sym_cmd_identifier_token1] = ACTIONS(1517), + [aux_sym_cmd_identifier_token2] = ACTIONS(1517), + [aux_sym_cmd_identifier_token3] = ACTIONS(1517), + [aux_sym_cmd_identifier_token4] = ACTIONS(1517), + [aux_sym_cmd_identifier_token5] = ACTIONS(1517), + [aux_sym_cmd_identifier_token6] = ACTIONS(1517), + [aux_sym_cmd_identifier_token7] = ACTIONS(1517), + [aux_sym_cmd_identifier_token8] = ACTIONS(1517), + [aux_sym_cmd_identifier_token9] = ACTIONS(1517), + [aux_sym_cmd_identifier_token10] = ACTIONS(1517), + [aux_sym_cmd_identifier_token11] = ACTIONS(1517), + [aux_sym_cmd_identifier_token12] = ACTIONS(1517), + [aux_sym_cmd_identifier_token13] = ACTIONS(1517), + [aux_sym_cmd_identifier_token14] = ACTIONS(1517), + [aux_sym_cmd_identifier_token15] = ACTIONS(1517), + [aux_sym_cmd_identifier_token16] = ACTIONS(1517), + [aux_sym_cmd_identifier_token17] = ACTIONS(1517), + [aux_sym_cmd_identifier_token18] = ACTIONS(1517), + [aux_sym_cmd_identifier_token19] = ACTIONS(1517), + [aux_sym_cmd_identifier_token20] = ACTIONS(1517), + [aux_sym_cmd_identifier_token21] = ACTIONS(1517), + [aux_sym_cmd_identifier_token22] = ACTIONS(1517), + [aux_sym_cmd_identifier_token23] = ACTIONS(1517), + [aux_sym_cmd_identifier_token24] = ACTIONS(1517), + [aux_sym_cmd_identifier_token25] = ACTIONS(1517), + [aux_sym_cmd_identifier_token26] = ACTIONS(1517), + [aux_sym_cmd_identifier_token27] = ACTIONS(1517), + [aux_sym_cmd_identifier_token28] = ACTIONS(1517), + [aux_sym_cmd_identifier_token29] = ACTIONS(1517), + [aux_sym_cmd_identifier_token30] = ACTIONS(1517), + [aux_sym_cmd_identifier_token31] = ACTIONS(1517), + [aux_sym_cmd_identifier_token32] = ACTIONS(1517), + [aux_sym_cmd_identifier_token33] = ACTIONS(1517), + [aux_sym_cmd_identifier_token34] = ACTIONS(1517), + [aux_sym_cmd_identifier_token35] = ACTIONS(1517), + [aux_sym_cmd_identifier_token36] = ACTIONS(1517), + [anon_sym_true] = ACTIONS(1519), + [anon_sym_false] = ACTIONS(1519), + [anon_sym_null] = ACTIONS(1519), + [aux_sym_cmd_identifier_token38] = ACTIONS(1517), + [aux_sym_cmd_identifier_token39] = ACTIONS(1519), + [aux_sym_cmd_identifier_token40] = ACTIONS(1519), + [anon_sym_def] = ACTIONS(1517), + [anon_sym_export_DASHenv] = ACTIONS(1517), + [anon_sym_extern] = ACTIONS(1517), + [anon_sym_module] = ACTIONS(1517), + [anon_sym_use] = ACTIONS(1517), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_DOLLAR] = ACTIONS(1519), + [anon_sym_error] = ACTIONS(1517), + [anon_sym_list] = ACTIONS(1517), + [anon_sym_DASH] = ACTIONS(1517), + [anon_sym_break] = ACTIONS(1517), + [anon_sym_continue] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1517), + [anon_sym_in] = ACTIONS(1517), + [anon_sym_loop] = ACTIONS(1517), + [anon_sym_make] = ACTIONS(1517), + [anon_sym_while] = ACTIONS(1517), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_if] = ACTIONS(1517), + [anon_sym_else] = ACTIONS(1517), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_RBRACE] = ACTIONS(1519), + [anon_sym_try] = ACTIONS(1517), + [anon_sym_catch] = ACTIONS(1517), + [anon_sym_return] = ACTIONS(1517), + [anon_sym_source] = ACTIONS(1517), + [anon_sym_source_DASHenv] = ACTIONS(1517), + [anon_sym_register] = ACTIONS(1517), + [anon_sym_hide] = ACTIONS(1517), + [anon_sym_hide_DASHenv] = ACTIONS(1517), + [anon_sym_overlay] = ACTIONS(1517), + [anon_sym_new] = ACTIONS(1517), + [anon_sym_as] = ACTIONS(1517), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1519), + [anon_sym_DOT_DOT2] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), + [aux_sym__immediate_decimal_token1] = ACTIONS(1603), + [aux_sym__immediate_decimal_token2] = ACTIONS(1605), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1519), + [aux_sym__val_number_decimal_token1] = ACTIONS(1517), + [aux_sym__val_number_decimal_token2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1519), + [aux_sym__val_number_token1] = ACTIONS(1519), + [aux_sym__val_number_token2] = ACTIONS(1519), + [aux_sym__val_number_token3] = ACTIONS(1519), + [sym_filesize_unit] = ACTIONS(1517), + [sym_duration_unit] = ACTIONS(1517), + [anon_sym_DQUOTE] = ACTIONS(1519), + [sym__str_single_quotes] = ACTIONS(1519), + [sym__str_back_ticks] = ACTIONS(1519), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1517), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1517), + [anon_sym_POUND] = ACTIONS(247), }, [197] = { - [sym__expr_parenthesized_immediate] = STATE(626), - [sym__immediate_decimal] = STATE(524), - [sym_val_variable] = STATE(626), + [sym__expr_parenthesized_immediate] = STATE(414), + [sym__immediate_decimal] = STATE(415), + [sym_val_variable] = STATE(414), [sym_comment] = STATE(197), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_alias] = ACTIONS(1443), - [anon_sym_let] = ACTIONS(1443), - [anon_sym_let_DASHenv] = ACTIONS(1443), - [anon_sym_mut] = ACTIONS(1443), - [anon_sym_const] = ACTIONS(1443), - [aux_sym_cmd_identifier_token1] = ACTIONS(1443), - [aux_sym_cmd_identifier_token2] = ACTIONS(1443), - [aux_sym_cmd_identifier_token3] = ACTIONS(1443), - [aux_sym_cmd_identifier_token4] = ACTIONS(1443), - [aux_sym_cmd_identifier_token5] = ACTIONS(1443), - [aux_sym_cmd_identifier_token6] = ACTIONS(1443), - [aux_sym_cmd_identifier_token7] = ACTIONS(1443), - [aux_sym_cmd_identifier_token8] = ACTIONS(1443), - [aux_sym_cmd_identifier_token9] = ACTIONS(1443), - [aux_sym_cmd_identifier_token10] = ACTIONS(1443), - [aux_sym_cmd_identifier_token11] = ACTIONS(1443), - [aux_sym_cmd_identifier_token12] = ACTIONS(1443), - [aux_sym_cmd_identifier_token13] = ACTIONS(1443), - [aux_sym_cmd_identifier_token14] = ACTIONS(1443), - [aux_sym_cmd_identifier_token15] = ACTIONS(1443), - [aux_sym_cmd_identifier_token16] = ACTIONS(1443), - [aux_sym_cmd_identifier_token17] = ACTIONS(1443), - [aux_sym_cmd_identifier_token18] = ACTIONS(1443), - [aux_sym_cmd_identifier_token19] = ACTIONS(1443), - [aux_sym_cmd_identifier_token20] = ACTIONS(1443), - [aux_sym_cmd_identifier_token21] = ACTIONS(1443), - [aux_sym_cmd_identifier_token22] = ACTIONS(1443), - [aux_sym_cmd_identifier_token23] = ACTIONS(1443), - [aux_sym_cmd_identifier_token24] = ACTIONS(1443), - [aux_sym_cmd_identifier_token25] = ACTIONS(1443), - [aux_sym_cmd_identifier_token26] = ACTIONS(1443), - [aux_sym_cmd_identifier_token27] = ACTIONS(1443), - [aux_sym_cmd_identifier_token28] = ACTIONS(1443), - [aux_sym_cmd_identifier_token29] = ACTIONS(1443), - [aux_sym_cmd_identifier_token30] = ACTIONS(1443), - [aux_sym_cmd_identifier_token31] = ACTIONS(1443), - [aux_sym_cmd_identifier_token32] = ACTIONS(1443), - [aux_sym_cmd_identifier_token33] = ACTIONS(1443), - [aux_sym_cmd_identifier_token34] = ACTIONS(1443), - [aux_sym_cmd_identifier_token35] = ACTIONS(1443), - [aux_sym_cmd_identifier_token36] = ACTIONS(1443), - [anon_sym_true] = ACTIONS(1455), - [anon_sym_false] = ACTIONS(1455), - [anon_sym_null] = ACTIONS(1455), - [aux_sym_cmd_identifier_token38] = ACTIONS(1443), - [aux_sym_cmd_identifier_token39] = ACTIONS(1455), - [aux_sym_cmd_identifier_token40] = ACTIONS(1455), - [anon_sym_def] = ACTIONS(1443), - [anon_sym_export_DASHenv] = ACTIONS(1443), - [anon_sym_extern] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_use] = ACTIONS(1443), - [anon_sym_LPAREN] = ACTIONS(1443), - [anon_sym_DOLLAR] = ACTIONS(1489), - [anon_sym_error] = ACTIONS(1443), - [anon_sym_list] = ACTIONS(1443), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_break] = ACTIONS(1443), - [anon_sym_continue] = ACTIONS(1443), - [anon_sym_for] = ACTIONS(1443), - [anon_sym_in] = ACTIONS(1443), - [anon_sym_loop] = ACTIONS(1443), - [anon_sym_make] = ACTIONS(1443), - [anon_sym_while] = ACTIONS(1443), - [anon_sym_do] = ACTIONS(1443), - [anon_sym_if] = ACTIONS(1443), - [anon_sym_else] = ACTIONS(1443), - [anon_sym_match] = ACTIONS(1443), - [anon_sym_RBRACE] = ACTIONS(1455), - [anon_sym_try] = ACTIONS(1443), - [anon_sym_catch] = ACTIONS(1443), - [anon_sym_return] = ACTIONS(1443), - [anon_sym_source] = ACTIONS(1443), - [anon_sym_source_DASHenv] = ACTIONS(1443), - [anon_sym_register] = ACTIONS(1443), - [anon_sym_hide] = ACTIONS(1443), - [anon_sym_hide_DASHenv] = ACTIONS(1443), - [anon_sym_overlay] = ACTIONS(1443), - [anon_sym_new] = ACTIONS(1443), - [anon_sym_as] = ACTIONS(1443), - [anon_sym_LPAREN2] = ACTIONS(1491), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1455), - [aux_sym__immediate_decimal_token1] = ACTIONS(1493), - [aux_sym__immediate_decimal_token3] = ACTIONS(1495), - [aux_sym__immediate_decimal_token4] = ACTIONS(1497), - [aux_sym__immediate_decimal_token5] = ACTIONS(1499), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1455), - [aux_sym__val_number_decimal_token1] = ACTIONS(1443), - [aux_sym__val_number_decimal_token2] = ACTIONS(1443), - [aux_sym__val_number_decimal_token3] = ACTIONS(1443), - [aux_sym__val_number_decimal_token4] = ACTIONS(1443), - [aux_sym__val_number_token1] = ACTIONS(1455), - [aux_sym__val_number_token2] = ACTIONS(1455), - [aux_sym__val_number_token3] = ACTIONS(1455), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym__str_single_quotes] = ACTIONS(1455), - [sym__str_back_ticks] = ACTIONS(1455), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1455), - [anon_sym_PLUS] = ACTIONS(1443), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1457), + [anon_sym_export] = ACTIONS(1505), + [anon_sym_alias] = ACTIONS(1505), + [anon_sym_let] = ACTIONS(1505), + [anon_sym_let_DASHenv] = ACTIONS(1505), + [anon_sym_mut] = ACTIONS(1505), + [anon_sym_const] = ACTIONS(1505), + [aux_sym_cmd_identifier_token1] = ACTIONS(1505), + [aux_sym_cmd_identifier_token2] = ACTIONS(1505), + [aux_sym_cmd_identifier_token3] = ACTIONS(1505), + [aux_sym_cmd_identifier_token4] = ACTIONS(1505), + [aux_sym_cmd_identifier_token5] = ACTIONS(1505), + [aux_sym_cmd_identifier_token6] = ACTIONS(1505), + [aux_sym_cmd_identifier_token7] = ACTIONS(1505), + [aux_sym_cmd_identifier_token8] = ACTIONS(1505), + [aux_sym_cmd_identifier_token9] = ACTIONS(1505), + [aux_sym_cmd_identifier_token10] = ACTIONS(1505), + [aux_sym_cmd_identifier_token11] = ACTIONS(1505), + [aux_sym_cmd_identifier_token12] = ACTIONS(1505), + [aux_sym_cmd_identifier_token13] = ACTIONS(1505), + [aux_sym_cmd_identifier_token14] = ACTIONS(1505), + [aux_sym_cmd_identifier_token15] = ACTIONS(1505), + [aux_sym_cmd_identifier_token16] = ACTIONS(1505), + [aux_sym_cmd_identifier_token17] = ACTIONS(1505), + [aux_sym_cmd_identifier_token18] = ACTIONS(1505), + [aux_sym_cmd_identifier_token19] = ACTIONS(1505), + [aux_sym_cmd_identifier_token20] = ACTIONS(1505), + [aux_sym_cmd_identifier_token21] = ACTIONS(1505), + [aux_sym_cmd_identifier_token22] = ACTIONS(1505), + [aux_sym_cmd_identifier_token23] = ACTIONS(1505), + [aux_sym_cmd_identifier_token24] = ACTIONS(1505), + [aux_sym_cmd_identifier_token25] = ACTIONS(1505), + [aux_sym_cmd_identifier_token26] = ACTIONS(1505), + [aux_sym_cmd_identifier_token27] = ACTIONS(1505), + [aux_sym_cmd_identifier_token28] = ACTIONS(1505), + [aux_sym_cmd_identifier_token29] = ACTIONS(1505), + [aux_sym_cmd_identifier_token30] = ACTIONS(1505), + [aux_sym_cmd_identifier_token31] = ACTIONS(1505), + [aux_sym_cmd_identifier_token32] = ACTIONS(1505), + [aux_sym_cmd_identifier_token33] = ACTIONS(1505), + [aux_sym_cmd_identifier_token34] = ACTIONS(1505), + [aux_sym_cmd_identifier_token35] = ACTIONS(1505), + [aux_sym_cmd_identifier_token36] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(1515), + [anon_sym_false] = ACTIONS(1515), + [anon_sym_null] = ACTIONS(1515), + [aux_sym_cmd_identifier_token38] = ACTIONS(1505), + [aux_sym_cmd_identifier_token39] = ACTIONS(1515), + [aux_sym_cmd_identifier_token40] = ACTIONS(1515), + [anon_sym_def] = ACTIONS(1505), + [anon_sym_export_DASHenv] = ACTIONS(1505), + [anon_sym_extern] = ACTIONS(1505), + [anon_sym_module] = ACTIONS(1505), + [anon_sym_use] = ACTIONS(1505), + [anon_sym_LPAREN] = ACTIONS(1505), + [anon_sym_DOLLAR] = ACTIONS(1525), + [anon_sym_error] = ACTIONS(1505), + [anon_sym_list] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_break] = ACTIONS(1505), + [anon_sym_continue] = ACTIONS(1505), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_in] = ACTIONS(1505), + [anon_sym_loop] = ACTIONS(1505), + [anon_sym_make] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1505), + [anon_sym_do] = ACTIONS(1505), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_else] = ACTIONS(1505), + [anon_sym_match] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(1515), + [anon_sym_try] = ACTIONS(1505), + [anon_sym_catch] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1505), + [anon_sym_source] = ACTIONS(1505), + [anon_sym_source_DASHenv] = ACTIONS(1505), + [anon_sym_register] = ACTIONS(1505), + [anon_sym_hide] = ACTIONS(1505), + [anon_sym_hide_DASHenv] = ACTIONS(1505), + [anon_sym_overlay] = ACTIONS(1505), + [anon_sym_new] = ACTIONS(1505), + [anon_sym_as] = ACTIONS(1505), + [anon_sym_LPAREN2] = ACTIONS(1527), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1515), + [anon_sym_DOT] = ACTIONS(1607), + [aux_sym__immediate_decimal_token1] = ACTIONS(1609), + [aux_sym__immediate_decimal_token3] = ACTIONS(1611), + [aux_sym__immediate_decimal_token4] = ACTIONS(1613), + [aux_sym__immediate_decimal_token5] = ACTIONS(1615), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1515), + [aux_sym__val_number_decimal_token1] = ACTIONS(1505), + [aux_sym__val_number_decimal_token2] = ACTIONS(1505), + [aux_sym__val_number_decimal_token3] = ACTIONS(1505), + [aux_sym__val_number_decimal_token4] = ACTIONS(1505), + [aux_sym__val_number_token1] = ACTIONS(1515), + [aux_sym__val_number_token2] = ACTIONS(1515), + [aux_sym__val_number_token3] = ACTIONS(1515), + [anon_sym_DQUOTE] = ACTIONS(1515), + [sym__str_single_quotes] = ACTIONS(1515), + [sym__str_back_ticks] = ACTIONS(1515), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1515), + [anon_sym_PLUS] = ACTIONS(1505), [anon_sym_POUND] = ACTIONS(247), }, [198] = { - [sym__expr_parenthesized_immediate] = STATE(583), - [sym__immediate_decimal] = STATE(584), - [sym_val_variable] = STATE(583), + [sym__expr_parenthesized_immediate] = STATE(651), + [sym__immediate_decimal] = STATE(489), + [sym_val_variable] = STATE(651), [sym_comment] = STATE(198), - [anon_sym_export] = ACTIONS(1501), - [anon_sym_alias] = ACTIONS(1501), - [anon_sym_let] = ACTIONS(1501), - [anon_sym_let_DASHenv] = ACTIONS(1501), - [anon_sym_mut] = ACTIONS(1501), - [anon_sym_const] = ACTIONS(1501), - [aux_sym_cmd_identifier_token1] = ACTIONS(1501), - [aux_sym_cmd_identifier_token2] = ACTIONS(1501), - [aux_sym_cmd_identifier_token3] = ACTIONS(1501), - [aux_sym_cmd_identifier_token4] = ACTIONS(1501), - [aux_sym_cmd_identifier_token5] = ACTIONS(1501), - [aux_sym_cmd_identifier_token6] = ACTIONS(1501), - [aux_sym_cmd_identifier_token7] = ACTIONS(1501), - [aux_sym_cmd_identifier_token8] = ACTIONS(1501), - [aux_sym_cmd_identifier_token9] = ACTIONS(1501), - [aux_sym_cmd_identifier_token10] = ACTIONS(1501), - [aux_sym_cmd_identifier_token11] = ACTIONS(1501), - [aux_sym_cmd_identifier_token12] = ACTIONS(1501), - [aux_sym_cmd_identifier_token13] = ACTIONS(1501), - [aux_sym_cmd_identifier_token14] = ACTIONS(1501), - [aux_sym_cmd_identifier_token15] = ACTIONS(1501), - [aux_sym_cmd_identifier_token16] = ACTIONS(1501), - [aux_sym_cmd_identifier_token17] = ACTIONS(1501), - [aux_sym_cmd_identifier_token18] = ACTIONS(1501), - [aux_sym_cmd_identifier_token19] = ACTIONS(1501), - [aux_sym_cmd_identifier_token20] = ACTIONS(1501), - [aux_sym_cmd_identifier_token21] = ACTIONS(1501), - [aux_sym_cmd_identifier_token22] = ACTIONS(1501), - [aux_sym_cmd_identifier_token23] = ACTIONS(1501), - [aux_sym_cmd_identifier_token24] = ACTIONS(1501), - [aux_sym_cmd_identifier_token25] = ACTIONS(1501), - [aux_sym_cmd_identifier_token26] = ACTIONS(1501), - [aux_sym_cmd_identifier_token27] = ACTIONS(1501), - [aux_sym_cmd_identifier_token28] = ACTIONS(1501), - [aux_sym_cmd_identifier_token29] = ACTIONS(1501), - [aux_sym_cmd_identifier_token30] = ACTIONS(1501), - [aux_sym_cmd_identifier_token31] = ACTIONS(1501), - [aux_sym_cmd_identifier_token32] = ACTIONS(1501), - [aux_sym_cmd_identifier_token33] = ACTIONS(1501), - [aux_sym_cmd_identifier_token34] = ACTIONS(1501), - [aux_sym_cmd_identifier_token35] = ACTIONS(1501), - [aux_sym_cmd_identifier_token36] = ACTIONS(1501), - [anon_sym_true] = ACTIONS(1501), - [anon_sym_false] = ACTIONS(1501), - [anon_sym_null] = ACTIONS(1501), - [aux_sym_cmd_identifier_token38] = ACTIONS(1501), - [aux_sym_cmd_identifier_token39] = ACTIONS(1501), - [aux_sym_cmd_identifier_token40] = ACTIONS(1501), - [anon_sym_def] = ACTIONS(1501), - [anon_sym_export_DASHenv] = ACTIONS(1501), - [anon_sym_extern] = ACTIONS(1501), - [anon_sym_module] = ACTIONS(1501), - [anon_sym_use] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_DOLLAR] = ACTIONS(1445), - [anon_sym_error] = ACTIONS(1501), - [anon_sym_list] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_break] = ACTIONS(1501), - [anon_sym_continue] = ACTIONS(1501), - [anon_sym_for] = ACTIONS(1501), - [anon_sym_in] = ACTIONS(1501), - [anon_sym_loop] = ACTIONS(1501), - [anon_sym_make] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1501), - [anon_sym_do] = ACTIONS(1501), - [anon_sym_if] = ACTIONS(1501), - [anon_sym_else] = ACTIONS(1501), - [anon_sym_match] = ACTIONS(1501), - [anon_sym_RBRACE] = ACTIONS(1501), - [anon_sym_try] = ACTIONS(1501), - [anon_sym_catch] = ACTIONS(1501), - [anon_sym_return] = ACTIONS(1501), - [anon_sym_source] = ACTIONS(1501), - [anon_sym_source_DASHenv] = ACTIONS(1501), - [anon_sym_register] = ACTIONS(1501), - [anon_sym_hide] = ACTIONS(1501), - [anon_sym_hide_DASHenv] = ACTIONS(1501), - [anon_sym_overlay] = ACTIONS(1501), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_as] = ACTIONS(1501), - [anon_sym_LPAREN2] = ACTIONS(1447), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1501), - [aux_sym__immediate_decimal_token1] = ACTIONS(1503), - [aux_sym__immediate_decimal_token3] = ACTIONS(1503), - [aux_sym__immediate_decimal_token4] = ACTIONS(1505), - [aux_sym__immediate_decimal_token5] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1501), - [aux_sym__val_number_decimal_token1] = ACTIONS(1501), - [aux_sym__val_number_decimal_token2] = ACTIONS(1501), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1501), - [aux_sym__val_number_token1] = ACTIONS(1501), - [aux_sym__val_number_token2] = ACTIONS(1501), - [aux_sym__val_number_token3] = ACTIONS(1501), - [anon_sym_DQUOTE] = ACTIONS(1501), - [sym__str_single_quotes] = ACTIONS(1501), - [sym__str_back_ticks] = ACTIONS(1501), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1501), - [sym__entry_separator] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_alias] = ACTIONS(1479), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_let_DASHenv] = ACTIONS(1479), + [anon_sym_mut] = ACTIONS(1479), + [anon_sym_const] = ACTIONS(1479), + [aux_sym_cmd_identifier_token1] = ACTIONS(1479), + [aux_sym_cmd_identifier_token2] = ACTIONS(1479), + [aux_sym_cmd_identifier_token3] = ACTIONS(1479), + [aux_sym_cmd_identifier_token4] = ACTIONS(1479), + [aux_sym_cmd_identifier_token5] = ACTIONS(1479), + [aux_sym_cmd_identifier_token6] = ACTIONS(1479), + [aux_sym_cmd_identifier_token7] = ACTIONS(1479), + [aux_sym_cmd_identifier_token8] = ACTIONS(1479), + [aux_sym_cmd_identifier_token9] = ACTIONS(1479), + [aux_sym_cmd_identifier_token10] = ACTIONS(1479), + [aux_sym_cmd_identifier_token11] = ACTIONS(1479), + [aux_sym_cmd_identifier_token12] = ACTIONS(1479), + [aux_sym_cmd_identifier_token13] = ACTIONS(1479), + [aux_sym_cmd_identifier_token14] = ACTIONS(1479), + [aux_sym_cmd_identifier_token15] = ACTIONS(1479), + [aux_sym_cmd_identifier_token16] = ACTIONS(1479), + [aux_sym_cmd_identifier_token17] = ACTIONS(1479), + [aux_sym_cmd_identifier_token18] = ACTIONS(1479), + [aux_sym_cmd_identifier_token19] = ACTIONS(1479), + [aux_sym_cmd_identifier_token20] = ACTIONS(1479), + [aux_sym_cmd_identifier_token21] = ACTIONS(1479), + [aux_sym_cmd_identifier_token22] = ACTIONS(1479), + [aux_sym_cmd_identifier_token23] = ACTIONS(1479), + [aux_sym_cmd_identifier_token24] = ACTIONS(1479), + [aux_sym_cmd_identifier_token25] = ACTIONS(1479), + [aux_sym_cmd_identifier_token26] = ACTIONS(1479), + [aux_sym_cmd_identifier_token27] = ACTIONS(1479), + [aux_sym_cmd_identifier_token28] = ACTIONS(1479), + [aux_sym_cmd_identifier_token29] = ACTIONS(1479), + [aux_sym_cmd_identifier_token30] = ACTIONS(1479), + [aux_sym_cmd_identifier_token31] = ACTIONS(1479), + [aux_sym_cmd_identifier_token32] = ACTIONS(1479), + [aux_sym_cmd_identifier_token33] = ACTIONS(1479), + [aux_sym_cmd_identifier_token34] = ACTIONS(1479), + [aux_sym_cmd_identifier_token35] = ACTIONS(1479), + [aux_sym_cmd_identifier_token36] = ACTIONS(1479), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [anon_sym_null] = ACTIONS(1493), + [aux_sym_cmd_identifier_token38] = ACTIONS(1479), + [aux_sym_cmd_identifier_token39] = ACTIONS(1493), + [aux_sym_cmd_identifier_token40] = ACTIONS(1493), + [anon_sym_def] = ACTIONS(1479), + [anon_sym_export_DASHenv] = ACTIONS(1479), + [anon_sym_extern] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_use] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_DOLLAR] = ACTIONS(1591), + [anon_sym_error] = ACTIONS(1479), + [anon_sym_list] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_break] = ACTIONS(1479), + [anon_sym_continue] = ACTIONS(1479), + [anon_sym_for] = ACTIONS(1479), + [anon_sym_in] = ACTIONS(1479), + [anon_sym_loop] = ACTIONS(1479), + [anon_sym_make] = ACTIONS(1479), + [anon_sym_while] = ACTIONS(1479), + [anon_sym_do] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_else] = ACTIONS(1479), + [anon_sym_match] = ACTIONS(1479), + [anon_sym_RBRACE] = ACTIONS(1493), + [anon_sym_try] = ACTIONS(1479), + [anon_sym_catch] = ACTIONS(1479), + [anon_sym_return] = ACTIONS(1479), + [anon_sym_source] = ACTIONS(1479), + [anon_sym_source_DASHenv] = ACTIONS(1479), + [anon_sym_register] = ACTIONS(1479), + [anon_sym_hide] = ACTIONS(1479), + [anon_sym_hide_DASHenv] = ACTIONS(1479), + [anon_sym_overlay] = ACTIONS(1479), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(1479), + [anon_sym_LPAREN2] = ACTIONS(1593), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1493), + [aux_sym__immediate_decimal_token1] = ACTIONS(1595), + [aux_sym__immediate_decimal_token3] = ACTIONS(1597), + [aux_sym__immediate_decimal_token4] = ACTIONS(1599), + [aux_sym__immediate_decimal_token5] = ACTIONS(1601), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1493), + [aux_sym__val_number_decimal_token1] = ACTIONS(1479), + [aux_sym__val_number_decimal_token2] = ACTIONS(1479), + [aux_sym__val_number_decimal_token3] = ACTIONS(1479), + [aux_sym__val_number_decimal_token4] = ACTIONS(1479), + [aux_sym__val_number_token1] = ACTIONS(1493), + [aux_sym__val_number_token2] = ACTIONS(1493), + [aux_sym__val_number_token3] = ACTIONS(1493), + [anon_sym_DQUOTE] = ACTIONS(1493), + [sym__str_single_quotes] = ACTIONS(1493), + [sym__str_back_ticks] = ACTIONS(1493), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1479), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1495), + [anon_sym_POUND] = ACTIONS(247), }, [199] = { + [sym__expr_parenthesized_immediate] = STATE(571), + [sym__immediate_decimal] = STATE(572), + [sym_val_variable] = STATE(571), [sym_comment] = STATE(199), - [anon_sym_export] = ACTIONS(1473), - [anon_sym_alias] = ACTIONS(1473), - [anon_sym_let] = ACTIONS(1473), - [anon_sym_let_DASHenv] = ACTIONS(1473), - [anon_sym_mut] = ACTIONS(1473), - [anon_sym_const] = ACTIONS(1473), - [aux_sym_cmd_identifier_token1] = ACTIONS(1473), - [aux_sym_cmd_identifier_token2] = ACTIONS(1473), - [aux_sym_cmd_identifier_token3] = ACTIONS(1473), - [aux_sym_cmd_identifier_token4] = ACTIONS(1473), - [aux_sym_cmd_identifier_token5] = ACTIONS(1473), - [aux_sym_cmd_identifier_token6] = ACTIONS(1473), - [aux_sym_cmd_identifier_token7] = ACTIONS(1473), - [aux_sym_cmd_identifier_token8] = ACTIONS(1473), - [aux_sym_cmd_identifier_token9] = ACTIONS(1473), - [aux_sym_cmd_identifier_token10] = ACTIONS(1473), - [aux_sym_cmd_identifier_token11] = ACTIONS(1473), - [aux_sym_cmd_identifier_token12] = ACTIONS(1473), - [aux_sym_cmd_identifier_token13] = ACTIONS(1473), - [aux_sym_cmd_identifier_token14] = ACTIONS(1473), - [aux_sym_cmd_identifier_token15] = ACTIONS(1473), - [aux_sym_cmd_identifier_token16] = ACTIONS(1473), - [aux_sym_cmd_identifier_token17] = ACTIONS(1473), - [aux_sym_cmd_identifier_token18] = ACTIONS(1473), - [aux_sym_cmd_identifier_token19] = ACTIONS(1473), - [aux_sym_cmd_identifier_token20] = ACTIONS(1473), - [aux_sym_cmd_identifier_token21] = ACTIONS(1473), - [aux_sym_cmd_identifier_token22] = ACTIONS(1473), - [aux_sym_cmd_identifier_token23] = ACTIONS(1473), - [aux_sym_cmd_identifier_token24] = ACTIONS(1473), - [aux_sym_cmd_identifier_token25] = ACTIONS(1473), - [aux_sym_cmd_identifier_token26] = ACTIONS(1473), - [aux_sym_cmd_identifier_token27] = ACTIONS(1473), - [aux_sym_cmd_identifier_token28] = ACTIONS(1473), - [aux_sym_cmd_identifier_token29] = ACTIONS(1473), - [aux_sym_cmd_identifier_token30] = ACTIONS(1473), - [aux_sym_cmd_identifier_token31] = ACTIONS(1473), - [aux_sym_cmd_identifier_token32] = ACTIONS(1473), - [aux_sym_cmd_identifier_token33] = ACTIONS(1473), - [aux_sym_cmd_identifier_token34] = ACTIONS(1473), - [aux_sym_cmd_identifier_token35] = ACTIONS(1473), - [aux_sym_cmd_identifier_token36] = ACTIONS(1473), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [aux_sym_cmd_identifier_token38] = ACTIONS(1473), - [aux_sym_cmd_identifier_token39] = ACTIONS(1475), - [aux_sym_cmd_identifier_token40] = ACTIONS(1475), - [anon_sym_def] = ACTIONS(1473), - [anon_sym_export_DASHenv] = ACTIONS(1473), - [anon_sym_extern] = ACTIONS(1473), - [anon_sym_module] = ACTIONS(1473), - [anon_sym_use] = ACTIONS(1473), - [anon_sym_LPAREN] = ACTIONS(1473), - [anon_sym_DOLLAR] = ACTIONS(1475), - [anon_sym_error] = ACTIONS(1473), - [anon_sym_list] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_break] = ACTIONS(1473), - [anon_sym_continue] = ACTIONS(1473), - [anon_sym_for] = ACTIONS(1473), - [anon_sym_in] = ACTIONS(1473), - [anon_sym_loop] = ACTIONS(1473), - [anon_sym_make] = ACTIONS(1473), - [anon_sym_while] = ACTIONS(1473), - [anon_sym_do] = ACTIONS(1473), - [anon_sym_if] = ACTIONS(1473), - [anon_sym_else] = ACTIONS(1473), - [anon_sym_match] = ACTIONS(1473), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_try] = ACTIONS(1473), - [anon_sym_catch] = ACTIONS(1473), - [anon_sym_return] = ACTIONS(1473), - [anon_sym_source] = ACTIONS(1473), - [anon_sym_source_DASHenv] = ACTIONS(1473), - [anon_sym_register] = ACTIONS(1473), - [anon_sym_hide] = ACTIONS(1473), - [anon_sym_hide_DASHenv] = ACTIONS(1473), - [anon_sym_overlay] = ACTIONS(1473), - [anon_sym_new] = ACTIONS(1473), - [anon_sym_as] = ACTIONS(1473), - [anon_sym_LPAREN2] = ACTIONS(1475), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1475), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT] = ACTIONS(1511), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [aux_sym__immediate_decimal_token2] = ACTIONS(1513), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1475), - [aux_sym__val_number_decimal_token1] = ACTIONS(1473), - [aux_sym__val_number_decimal_token2] = ACTIONS(1475), - [aux_sym__val_number_decimal_token3] = ACTIONS(1475), - [aux_sym__val_number_decimal_token4] = ACTIONS(1475), - [aux_sym__val_number_token1] = ACTIONS(1475), - [aux_sym__val_number_token2] = ACTIONS(1475), - [aux_sym__val_number_token3] = ACTIONS(1475), - [sym_filesize_unit] = ACTIONS(1473), - [sym_duration_unit] = ACTIONS(1473), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym__str_single_quotes] = ACTIONS(1475), - [sym__str_back_ticks] = ACTIONS(1475), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1473), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1473), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1617), + [anon_sym_alias] = ACTIONS(1617), + [anon_sym_let] = ACTIONS(1617), + [anon_sym_let_DASHenv] = ACTIONS(1617), + [anon_sym_mut] = ACTIONS(1617), + [anon_sym_const] = ACTIONS(1617), + [aux_sym_cmd_identifier_token1] = ACTIONS(1617), + [aux_sym_cmd_identifier_token2] = ACTIONS(1617), + [aux_sym_cmd_identifier_token3] = ACTIONS(1617), + [aux_sym_cmd_identifier_token4] = ACTIONS(1617), + [aux_sym_cmd_identifier_token5] = ACTIONS(1617), + [aux_sym_cmd_identifier_token6] = ACTIONS(1617), + [aux_sym_cmd_identifier_token7] = ACTIONS(1617), + [aux_sym_cmd_identifier_token8] = ACTIONS(1617), + [aux_sym_cmd_identifier_token9] = ACTIONS(1617), + [aux_sym_cmd_identifier_token10] = ACTIONS(1617), + [aux_sym_cmd_identifier_token11] = ACTIONS(1617), + [aux_sym_cmd_identifier_token12] = ACTIONS(1617), + [aux_sym_cmd_identifier_token13] = ACTIONS(1617), + [aux_sym_cmd_identifier_token14] = ACTIONS(1617), + [aux_sym_cmd_identifier_token15] = ACTIONS(1617), + [aux_sym_cmd_identifier_token16] = ACTIONS(1617), + [aux_sym_cmd_identifier_token17] = ACTIONS(1617), + [aux_sym_cmd_identifier_token18] = ACTIONS(1617), + [aux_sym_cmd_identifier_token19] = ACTIONS(1617), + [aux_sym_cmd_identifier_token20] = ACTIONS(1617), + [aux_sym_cmd_identifier_token21] = ACTIONS(1617), + [aux_sym_cmd_identifier_token22] = ACTIONS(1617), + [aux_sym_cmd_identifier_token23] = ACTIONS(1617), + [aux_sym_cmd_identifier_token24] = ACTIONS(1617), + [aux_sym_cmd_identifier_token25] = ACTIONS(1617), + [aux_sym_cmd_identifier_token26] = ACTIONS(1617), + [aux_sym_cmd_identifier_token27] = ACTIONS(1617), + [aux_sym_cmd_identifier_token28] = ACTIONS(1617), + [aux_sym_cmd_identifier_token29] = ACTIONS(1617), + [aux_sym_cmd_identifier_token30] = ACTIONS(1617), + [aux_sym_cmd_identifier_token31] = ACTIONS(1617), + [aux_sym_cmd_identifier_token32] = ACTIONS(1617), + [aux_sym_cmd_identifier_token33] = ACTIONS(1617), + [aux_sym_cmd_identifier_token34] = ACTIONS(1617), + [aux_sym_cmd_identifier_token35] = ACTIONS(1617), + [aux_sym_cmd_identifier_token36] = ACTIONS(1617), + [anon_sym_true] = ACTIONS(1617), + [anon_sym_false] = ACTIONS(1617), + [anon_sym_null] = ACTIONS(1617), + [aux_sym_cmd_identifier_token38] = ACTIONS(1617), + [aux_sym_cmd_identifier_token39] = ACTIONS(1617), + [aux_sym_cmd_identifier_token40] = ACTIONS(1617), + [anon_sym_def] = ACTIONS(1617), + [anon_sym_export_DASHenv] = ACTIONS(1617), + [anon_sym_extern] = ACTIONS(1617), + [anon_sym_module] = ACTIONS(1617), + [anon_sym_use] = ACTIONS(1617), + [anon_sym_LPAREN] = ACTIONS(1617), + [anon_sym_DOLLAR] = ACTIONS(1539), + [anon_sym_error] = ACTIONS(1617), + [anon_sym_list] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_break] = ACTIONS(1617), + [anon_sym_continue] = ACTIONS(1617), + [anon_sym_for] = ACTIONS(1617), + [anon_sym_in] = ACTIONS(1617), + [anon_sym_loop] = ACTIONS(1617), + [anon_sym_make] = ACTIONS(1617), + [anon_sym_while] = ACTIONS(1617), + [anon_sym_do] = ACTIONS(1617), + [anon_sym_if] = ACTIONS(1617), + [anon_sym_else] = ACTIONS(1617), + [anon_sym_match] = ACTIONS(1617), + [anon_sym_RBRACE] = ACTIONS(1617), + [anon_sym_try] = ACTIONS(1617), + [anon_sym_catch] = ACTIONS(1617), + [anon_sym_return] = ACTIONS(1617), + [anon_sym_source] = ACTIONS(1617), + [anon_sym_source_DASHenv] = ACTIONS(1617), + [anon_sym_register] = ACTIONS(1617), + [anon_sym_hide] = ACTIONS(1617), + [anon_sym_hide_DASHenv] = ACTIONS(1617), + [anon_sym_overlay] = ACTIONS(1617), + [anon_sym_new] = ACTIONS(1617), + [anon_sym_as] = ACTIONS(1617), + [anon_sym_LPAREN2] = ACTIONS(1541), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1617), + [aux_sym__immediate_decimal_token1] = ACTIONS(1555), + [aux_sym__immediate_decimal_token3] = ACTIONS(1555), + [aux_sym__immediate_decimal_token4] = ACTIONS(1557), + [aux_sym__immediate_decimal_token5] = ACTIONS(1559), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1617), + [aux_sym__val_number_decimal_token1] = ACTIONS(1617), + [aux_sym__val_number_decimal_token2] = ACTIONS(1617), + [aux_sym__val_number_decimal_token3] = ACTIONS(1617), + [aux_sym__val_number_decimal_token4] = ACTIONS(1617), + [aux_sym__val_number_token1] = ACTIONS(1617), + [aux_sym__val_number_token2] = ACTIONS(1617), + [aux_sym__val_number_token3] = ACTIONS(1617), + [anon_sym_DQUOTE] = ACTIONS(1617), + [sym__str_single_quotes] = ACTIONS(1617), + [sym__str_back_ticks] = ACTIONS(1617), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1617), + [sym__entry_separator] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_POUND] = ACTIONS(3), }, [200] = { + [sym__expr_parenthesized_immediate] = STATE(573), + [sym__immediate_decimal] = STATE(574), + [sym_val_variable] = STATE(573), [sym_comment] = STATE(200), - [anon_sym_export] = ACTIONS(1481), - [anon_sym_alias] = ACTIONS(1481), - [anon_sym_let] = ACTIONS(1481), - [anon_sym_let_DASHenv] = ACTIONS(1481), - [anon_sym_mut] = ACTIONS(1481), - [anon_sym_const] = ACTIONS(1481), - [aux_sym_cmd_identifier_token1] = ACTIONS(1481), - [aux_sym_cmd_identifier_token2] = ACTIONS(1481), - [aux_sym_cmd_identifier_token3] = ACTIONS(1481), - [aux_sym_cmd_identifier_token4] = ACTIONS(1481), - [aux_sym_cmd_identifier_token5] = ACTIONS(1481), - [aux_sym_cmd_identifier_token6] = ACTIONS(1481), - [aux_sym_cmd_identifier_token7] = ACTIONS(1481), - [aux_sym_cmd_identifier_token8] = ACTIONS(1481), - [aux_sym_cmd_identifier_token9] = ACTIONS(1481), - [aux_sym_cmd_identifier_token10] = ACTIONS(1481), - [aux_sym_cmd_identifier_token11] = ACTIONS(1481), - [aux_sym_cmd_identifier_token12] = ACTIONS(1481), - [aux_sym_cmd_identifier_token13] = ACTIONS(1481), - [aux_sym_cmd_identifier_token14] = ACTIONS(1481), - [aux_sym_cmd_identifier_token15] = ACTIONS(1481), - [aux_sym_cmd_identifier_token16] = ACTIONS(1481), - [aux_sym_cmd_identifier_token17] = ACTIONS(1481), - [aux_sym_cmd_identifier_token18] = ACTIONS(1481), - [aux_sym_cmd_identifier_token19] = ACTIONS(1481), - [aux_sym_cmd_identifier_token20] = ACTIONS(1481), - [aux_sym_cmd_identifier_token21] = ACTIONS(1481), - [aux_sym_cmd_identifier_token22] = ACTIONS(1481), - [aux_sym_cmd_identifier_token23] = ACTIONS(1481), - [aux_sym_cmd_identifier_token24] = ACTIONS(1481), - [aux_sym_cmd_identifier_token25] = ACTIONS(1481), - [aux_sym_cmd_identifier_token26] = ACTIONS(1481), - [aux_sym_cmd_identifier_token27] = ACTIONS(1481), - [aux_sym_cmd_identifier_token28] = ACTIONS(1481), - [aux_sym_cmd_identifier_token29] = ACTIONS(1481), - [aux_sym_cmd_identifier_token30] = ACTIONS(1481), - [aux_sym_cmd_identifier_token31] = ACTIONS(1481), - [aux_sym_cmd_identifier_token32] = ACTIONS(1481), - [aux_sym_cmd_identifier_token33] = ACTIONS(1481), - [aux_sym_cmd_identifier_token34] = ACTIONS(1481), - [aux_sym_cmd_identifier_token35] = ACTIONS(1481), - [aux_sym_cmd_identifier_token36] = ACTIONS(1481), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [anon_sym_null] = ACTIONS(1483), - [aux_sym_cmd_identifier_token38] = ACTIONS(1481), - [aux_sym_cmd_identifier_token39] = ACTIONS(1483), - [aux_sym_cmd_identifier_token40] = ACTIONS(1483), - [anon_sym_def] = ACTIONS(1481), - [anon_sym_export_DASHenv] = ACTIONS(1481), - [anon_sym_extern] = ACTIONS(1481), - [anon_sym_module] = ACTIONS(1481), - [anon_sym_use] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1481), - [anon_sym_DOLLAR] = ACTIONS(1483), - [anon_sym_error] = ACTIONS(1481), - [anon_sym_list] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_break] = ACTIONS(1481), - [anon_sym_continue] = ACTIONS(1481), - [anon_sym_for] = ACTIONS(1481), - [anon_sym_in] = ACTIONS(1481), - [anon_sym_loop] = ACTIONS(1481), - [anon_sym_make] = ACTIONS(1481), - [anon_sym_while] = ACTIONS(1481), - [anon_sym_do] = ACTIONS(1481), - [anon_sym_if] = ACTIONS(1481), - [anon_sym_else] = ACTIONS(1481), - [anon_sym_match] = ACTIONS(1481), - [anon_sym_RBRACE] = ACTIONS(1483), - [anon_sym_try] = ACTIONS(1481), - [anon_sym_catch] = ACTIONS(1481), - [anon_sym_return] = ACTIONS(1481), - [anon_sym_source] = ACTIONS(1481), - [anon_sym_source_DASHenv] = ACTIONS(1481), - [anon_sym_register] = ACTIONS(1481), - [anon_sym_hide] = ACTIONS(1481), - [anon_sym_hide_DASHenv] = ACTIONS(1481), - [anon_sym_overlay] = ACTIONS(1481), - [anon_sym_new] = ACTIONS(1481), - [anon_sym_as] = ACTIONS(1481), - [anon_sym_LPAREN2] = ACTIONS(1483), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1483), - [anon_sym_DOT_DOT2] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), - [aux_sym__immediate_decimal_token1] = ACTIONS(1515), - [aux_sym__immediate_decimal_token2] = ACTIONS(1517), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1483), - [aux_sym__val_number_decimal_token1] = ACTIONS(1481), - [aux_sym__val_number_decimal_token2] = ACTIONS(1483), - [aux_sym__val_number_decimal_token3] = ACTIONS(1483), - [aux_sym__val_number_decimal_token4] = ACTIONS(1483), - [aux_sym__val_number_token1] = ACTIONS(1483), - [aux_sym__val_number_token2] = ACTIONS(1483), - [aux_sym__val_number_token3] = ACTIONS(1483), - [sym_filesize_unit] = ACTIONS(1481), - [sym_duration_unit] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1483), - [sym__str_single_quotes] = ACTIONS(1483), - [sym__str_back_ticks] = ACTIONS(1483), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1481), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1481), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1621), + [anon_sym_alias] = ACTIONS(1621), + [anon_sym_let] = ACTIONS(1621), + [anon_sym_let_DASHenv] = ACTIONS(1621), + [anon_sym_mut] = ACTIONS(1621), + [anon_sym_const] = ACTIONS(1621), + [aux_sym_cmd_identifier_token1] = ACTIONS(1621), + [aux_sym_cmd_identifier_token2] = ACTIONS(1621), + [aux_sym_cmd_identifier_token3] = ACTIONS(1621), + [aux_sym_cmd_identifier_token4] = ACTIONS(1621), + [aux_sym_cmd_identifier_token5] = ACTIONS(1621), + [aux_sym_cmd_identifier_token6] = ACTIONS(1621), + [aux_sym_cmd_identifier_token7] = ACTIONS(1621), + [aux_sym_cmd_identifier_token8] = ACTIONS(1621), + [aux_sym_cmd_identifier_token9] = ACTIONS(1621), + [aux_sym_cmd_identifier_token10] = ACTIONS(1621), + [aux_sym_cmd_identifier_token11] = ACTIONS(1621), + [aux_sym_cmd_identifier_token12] = ACTIONS(1621), + [aux_sym_cmd_identifier_token13] = ACTIONS(1621), + [aux_sym_cmd_identifier_token14] = ACTIONS(1621), + [aux_sym_cmd_identifier_token15] = ACTIONS(1621), + [aux_sym_cmd_identifier_token16] = ACTIONS(1621), + [aux_sym_cmd_identifier_token17] = ACTIONS(1621), + [aux_sym_cmd_identifier_token18] = ACTIONS(1621), + [aux_sym_cmd_identifier_token19] = ACTIONS(1621), + [aux_sym_cmd_identifier_token20] = ACTIONS(1621), + [aux_sym_cmd_identifier_token21] = ACTIONS(1621), + [aux_sym_cmd_identifier_token22] = ACTIONS(1621), + [aux_sym_cmd_identifier_token23] = ACTIONS(1621), + [aux_sym_cmd_identifier_token24] = ACTIONS(1621), + [aux_sym_cmd_identifier_token25] = ACTIONS(1621), + [aux_sym_cmd_identifier_token26] = ACTIONS(1621), + [aux_sym_cmd_identifier_token27] = ACTIONS(1621), + [aux_sym_cmd_identifier_token28] = ACTIONS(1621), + [aux_sym_cmd_identifier_token29] = ACTIONS(1621), + [aux_sym_cmd_identifier_token30] = ACTIONS(1621), + [aux_sym_cmd_identifier_token31] = ACTIONS(1621), + [aux_sym_cmd_identifier_token32] = ACTIONS(1621), + [aux_sym_cmd_identifier_token33] = ACTIONS(1621), + [aux_sym_cmd_identifier_token34] = ACTIONS(1621), + [aux_sym_cmd_identifier_token35] = ACTIONS(1621), + [aux_sym_cmd_identifier_token36] = ACTIONS(1621), + [anon_sym_true] = ACTIONS(1621), + [anon_sym_false] = ACTIONS(1621), + [anon_sym_null] = ACTIONS(1621), + [aux_sym_cmd_identifier_token38] = ACTIONS(1621), + [aux_sym_cmd_identifier_token39] = ACTIONS(1621), + [aux_sym_cmd_identifier_token40] = ACTIONS(1621), + [anon_sym_def] = ACTIONS(1621), + [anon_sym_export_DASHenv] = ACTIONS(1621), + [anon_sym_extern] = ACTIONS(1621), + [anon_sym_module] = ACTIONS(1621), + [anon_sym_use] = ACTIONS(1621), + [anon_sym_LPAREN] = ACTIONS(1621), + [anon_sym_DOLLAR] = ACTIONS(1539), + [anon_sym_error] = ACTIONS(1621), + [anon_sym_list] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1621), + [anon_sym_break] = ACTIONS(1621), + [anon_sym_continue] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1621), + [anon_sym_in] = ACTIONS(1621), + [anon_sym_loop] = ACTIONS(1621), + [anon_sym_make] = ACTIONS(1621), + [anon_sym_while] = ACTIONS(1621), + [anon_sym_do] = ACTIONS(1621), + [anon_sym_if] = ACTIONS(1621), + [anon_sym_else] = ACTIONS(1621), + [anon_sym_match] = ACTIONS(1621), + [anon_sym_RBRACE] = ACTIONS(1621), + [anon_sym_try] = ACTIONS(1621), + [anon_sym_catch] = ACTIONS(1621), + [anon_sym_return] = ACTIONS(1621), + [anon_sym_source] = ACTIONS(1621), + [anon_sym_source_DASHenv] = ACTIONS(1621), + [anon_sym_register] = ACTIONS(1621), + [anon_sym_hide] = ACTIONS(1621), + [anon_sym_hide_DASHenv] = ACTIONS(1621), + [anon_sym_overlay] = ACTIONS(1621), + [anon_sym_new] = ACTIONS(1621), + [anon_sym_as] = ACTIONS(1621), + [anon_sym_LPAREN2] = ACTIONS(1541), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1621), + [aux_sym__immediate_decimal_token1] = ACTIONS(1555), + [aux_sym__immediate_decimal_token3] = ACTIONS(1555), + [aux_sym__immediate_decimal_token4] = ACTIONS(1557), + [aux_sym__immediate_decimal_token5] = ACTIONS(1559), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1621), + [aux_sym__val_number_decimal_token1] = ACTIONS(1621), + [aux_sym__val_number_decimal_token2] = ACTIONS(1621), + [aux_sym__val_number_decimal_token3] = ACTIONS(1621), + [aux_sym__val_number_decimal_token4] = ACTIONS(1621), + [aux_sym__val_number_token1] = ACTIONS(1621), + [aux_sym__val_number_token2] = ACTIONS(1621), + [aux_sym__val_number_token3] = ACTIONS(1621), + [anon_sym_DQUOTE] = ACTIONS(1621), + [sym__str_single_quotes] = ACTIONS(1621), + [sym__str_back_ticks] = ACTIONS(1621), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1621), + [sym__entry_separator] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_POUND] = ACTIONS(3), }, [201] = { - [sym__expr_parenthesized_immediate] = STATE(604), - [sym__immediate_decimal] = STATE(520), - [sym_val_variable] = STATE(604), [sym_comment] = STATE(201), - [anon_sym_export] = ACTIONS(1413), - [anon_sym_alias] = ACTIONS(1413), - [anon_sym_let] = ACTIONS(1413), - [anon_sym_let_DASHenv] = ACTIONS(1413), - [anon_sym_mut] = ACTIONS(1413), - [anon_sym_const] = ACTIONS(1413), - [aux_sym_cmd_identifier_token1] = ACTIONS(1413), - [aux_sym_cmd_identifier_token2] = ACTIONS(1413), - [aux_sym_cmd_identifier_token3] = ACTIONS(1413), - [aux_sym_cmd_identifier_token4] = ACTIONS(1413), - [aux_sym_cmd_identifier_token5] = ACTIONS(1413), - [aux_sym_cmd_identifier_token6] = ACTIONS(1413), - [aux_sym_cmd_identifier_token7] = ACTIONS(1413), - [aux_sym_cmd_identifier_token8] = ACTIONS(1413), - [aux_sym_cmd_identifier_token9] = ACTIONS(1413), - [aux_sym_cmd_identifier_token10] = ACTIONS(1413), - [aux_sym_cmd_identifier_token11] = ACTIONS(1413), - [aux_sym_cmd_identifier_token12] = ACTIONS(1413), - [aux_sym_cmd_identifier_token13] = ACTIONS(1413), - [aux_sym_cmd_identifier_token14] = ACTIONS(1413), - [aux_sym_cmd_identifier_token15] = ACTIONS(1413), - [aux_sym_cmd_identifier_token16] = ACTIONS(1413), - [aux_sym_cmd_identifier_token17] = ACTIONS(1413), - [aux_sym_cmd_identifier_token18] = ACTIONS(1413), - [aux_sym_cmd_identifier_token19] = ACTIONS(1413), - [aux_sym_cmd_identifier_token20] = ACTIONS(1413), - [aux_sym_cmd_identifier_token21] = ACTIONS(1413), - [aux_sym_cmd_identifier_token22] = ACTIONS(1413), - [aux_sym_cmd_identifier_token23] = ACTIONS(1413), - [aux_sym_cmd_identifier_token24] = ACTIONS(1413), - [aux_sym_cmd_identifier_token25] = ACTIONS(1413), - [aux_sym_cmd_identifier_token26] = ACTIONS(1413), - [aux_sym_cmd_identifier_token27] = ACTIONS(1413), - [aux_sym_cmd_identifier_token28] = ACTIONS(1413), - [aux_sym_cmd_identifier_token29] = ACTIONS(1413), - [aux_sym_cmd_identifier_token30] = ACTIONS(1413), - [aux_sym_cmd_identifier_token31] = ACTIONS(1413), - [aux_sym_cmd_identifier_token32] = ACTIONS(1413), - [aux_sym_cmd_identifier_token33] = ACTIONS(1413), - [aux_sym_cmd_identifier_token34] = ACTIONS(1413), - [aux_sym_cmd_identifier_token35] = ACTIONS(1413), - [aux_sym_cmd_identifier_token36] = ACTIONS(1413), - [anon_sym_true] = ACTIONS(1427), - [anon_sym_false] = ACTIONS(1427), - [anon_sym_null] = ACTIONS(1427), - [aux_sym_cmd_identifier_token38] = ACTIONS(1413), - [aux_sym_cmd_identifier_token39] = ACTIONS(1427), - [aux_sym_cmd_identifier_token40] = ACTIONS(1427), - [anon_sym_def] = ACTIONS(1413), - [anon_sym_export_DASHenv] = ACTIONS(1413), - [anon_sym_extern] = ACTIONS(1413), - [anon_sym_module] = ACTIONS(1413), - [anon_sym_use] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(1413), - [anon_sym_DOLLAR] = ACTIONS(1489), - [anon_sym_error] = ACTIONS(1413), - [anon_sym_list] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1413), - [anon_sym_for] = ACTIONS(1413), - [anon_sym_in] = ACTIONS(1413), - [anon_sym_loop] = ACTIONS(1413), - [anon_sym_make] = ACTIONS(1413), - [anon_sym_while] = ACTIONS(1413), - [anon_sym_do] = ACTIONS(1413), - [anon_sym_if] = ACTIONS(1413), - [anon_sym_else] = ACTIONS(1413), - [anon_sym_match] = ACTIONS(1413), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_try] = ACTIONS(1413), - [anon_sym_catch] = ACTIONS(1413), - [anon_sym_return] = ACTIONS(1413), - [anon_sym_source] = ACTIONS(1413), - [anon_sym_source_DASHenv] = ACTIONS(1413), - [anon_sym_register] = ACTIONS(1413), - [anon_sym_hide] = ACTIONS(1413), - [anon_sym_hide_DASHenv] = ACTIONS(1413), - [anon_sym_overlay] = ACTIONS(1413), - [anon_sym_new] = ACTIONS(1413), - [anon_sym_as] = ACTIONS(1413), - [anon_sym_LPAREN2] = ACTIONS(1491), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1427), - [aux_sym__immediate_decimal_token1] = ACTIONS(1493), - [aux_sym__immediate_decimal_token3] = ACTIONS(1495), - [aux_sym__immediate_decimal_token4] = ACTIONS(1497), - [aux_sym__immediate_decimal_token5] = ACTIONS(1499), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1427), - [aux_sym__val_number_decimal_token1] = ACTIONS(1413), - [aux_sym__val_number_decimal_token2] = ACTIONS(1413), - [aux_sym__val_number_decimal_token3] = ACTIONS(1413), - [aux_sym__val_number_decimal_token4] = ACTIONS(1413), - [aux_sym__val_number_token1] = ACTIONS(1427), - [aux_sym__val_number_token2] = ACTIONS(1427), - [aux_sym__val_number_token3] = ACTIONS(1427), - [anon_sym_DQUOTE] = ACTIONS(1427), - [sym__str_single_quotes] = ACTIONS(1427), - [sym__str_back_ticks] = ACTIONS(1427), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(1413), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1429), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1497), + [anon_sym_alias] = ACTIONS(1497), + [anon_sym_let] = ACTIONS(1497), + [anon_sym_let_DASHenv] = ACTIONS(1497), + [anon_sym_mut] = ACTIONS(1497), + [anon_sym_const] = ACTIONS(1497), + [aux_sym_cmd_identifier_token1] = ACTIONS(1497), + [aux_sym_cmd_identifier_token2] = ACTIONS(1497), + [aux_sym_cmd_identifier_token3] = ACTIONS(1497), + [aux_sym_cmd_identifier_token4] = ACTIONS(1497), + [aux_sym_cmd_identifier_token5] = ACTIONS(1497), + [aux_sym_cmd_identifier_token6] = ACTIONS(1497), + [aux_sym_cmd_identifier_token7] = ACTIONS(1497), + [aux_sym_cmd_identifier_token8] = ACTIONS(1497), + [aux_sym_cmd_identifier_token9] = ACTIONS(1497), + [aux_sym_cmd_identifier_token10] = ACTIONS(1497), + [aux_sym_cmd_identifier_token11] = ACTIONS(1497), + [aux_sym_cmd_identifier_token12] = ACTIONS(1497), + [aux_sym_cmd_identifier_token13] = ACTIONS(1497), + [aux_sym_cmd_identifier_token14] = ACTIONS(1497), + [aux_sym_cmd_identifier_token15] = ACTIONS(1497), + [aux_sym_cmd_identifier_token16] = ACTIONS(1497), + [aux_sym_cmd_identifier_token17] = ACTIONS(1497), + [aux_sym_cmd_identifier_token18] = ACTIONS(1497), + [aux_sym_cmd_identifier_token19] = ACTIONS(1497), + [aux_sym_cmd_identifier_token20] = ACTIONS(1497), + [aux_sym_cmd_identifier_token21] = ACTIONS(1497), + [aux_sym_cmd_identifier_token22] = ACTIONS(1497), + [aux_sym_cmd_identifier_token23] = ACTIONS(1497), + [aux_sym_cmd_identifier_token24] = ACTIONS(1497), + [aux_sym_cmd_identifier_token25] = ACTIONS(1497), + [aux_sym_cmd_identifier_token26] = ACTIONS(1497), + [aux_sym_cmd_identifier_token27] = ACTIONS(1497), + [aux_sym_cmd_identifier_token28] = ACTIONS(1497), + [aux_sym_cmd_identifier_token29] = ACTIONS(1497), + [aux_sym_cmd_identifier_token30] = ACTIONS(1497), + [aux_sym_cmd_identifier_token31] = ACTIONS(1497), + [aux_sym_cmd_identifier_token32] = ACTIONS(1497), + [aux_sym_cmd_identifier_token33] = ACTIONS(1497), + [aux_sym_cmd_identifier_token34] = ACTIONS(1497), + [aux_sym_cmd_identifier_token35] = ACTIONS(1497), + [aux_sym_cmd_identifier_token36] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1497), + [aux_sym_cmd_identifier_token38] = ACTIONS(1497), + [aux_sym_cmd_identifier_token39] = ACTIONS(1497), + [aux_sym_cmd_identifier_token40] = ACTIONS(1497), + [anon_sym_def] = ACTIONS(1497), + [anon_sym_export_DASHenv] = ACTIONS(1497), + [anon_sym_extern] = ACTIONS(1497), + [anon_sym_module] = ACTIONS(1497), + [anon_sym_use] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(1497), + [anon_sym_DOLLAR] = ACTIONS(1497), + [anon_sym_error] = ACTIONS(1497), + [anon_sym_list] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_break] = ACTIONS(1497), + [anon_sym_continue] = ACTIONS(1497), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_loop] = ACTIONS(1497), + [anon_sym_make] = ACTIONS(1497), + [anon_sym_while] = ACTIONS(1497), + [anon_sym_do] = ACTIONS(1497), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_else] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(1497), + [anon_sym_RBRACE] = ACTIONS(1497), + [anon_sym_try] = ACTIONS(1497), + [anon_sym_catch] = ACTIONS(1497), + [anon_sym_return] = ACTIONS(1497), + [anon_sym_source] = ACTIONS(1497), + [anon_sym_source_DASHenv] = ACTIONS(1497), + [anon_sym_register] = ACTIONS(1497), + [anon_sym_hide] = ACTIONS(1497), + [anon_sym_hide_DASHenv] = ACTIONS(1497), + [anon_sym_overlay] = ACTIONS(1497), + [anon_sym_new] = ACTIONS(1497), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_LPAREN2] = ACTIONS(1499), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1497), + [anon_sym_DOT_DOT2] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1497), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1497), + [aux_sym__val_number_decimal_token3] = ACTIONS(1497), + [aux_sym__val_number_decimal_token4] = ACTIONS(1497), + [aux_sym__val_number_token1] = ACTIONS(1497), + [aux_sym__val_number_token2] = ACTIONS(1497), + [aux_sym__val_number_token3] = ACTIONS(1497), + [sym_filesize_unit] = ACTIONS(1497), + [sym_duration_unit] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1497), + [sym__str_single_quotes] = ACTIONS(1497), + [sym__str_back_ticks] = ACTIONS(1497), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1497), + [sym__entry_separator] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1497), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1497), + [anon_sym_POUND] = ACTIONS(3), }, [202] = { + [sym_cell_path] = STATE(409), + [sym_path] = STATE(340), [sym_comment] = STATE(202), - [anon_sym_export] = ACTIONS(1473), - [anon_sym_alias] = ACTIONS(1473), - [anon_sym_let] = ACTIONS(1473), - [anon_sym_let_DASHenv] = ACTIONS(1473), - [anon_sym_mut] = ACTIONS(1473), - [anon_sym_const] = ACTIONS(1473), - [aux_sym_cmd_identifier_token1] = ACTIONS(1473), - [aux_sym_cmd_identifier_token2] = ACTIONS(1473), - [aux_sym_cmd_identifier_token3] = ACTIONS(1473), - [aux_sym_cmd_identifier_token4] = ACTIONS(1473), - [aux_sym_cmd_identifier_token5] = ACTIONS(1473), - [aux_sym_cmd_identifier_token6] = ACTIONS(1473), - [aux_sym_cmd_identifier_token7] = ACTIONS(1473), - [aux_sym_cmd_identifier_token8] = ACTIONS(1473), - [aux_sym_cmd_identifier_token9] = ACTIONS(1473), - [aux_sym_cmd_identifier_token10] = ACTIONS(1473), - [aux_sym_cmd_identifier_token11] = ACTIONS(1473), - [aux_sym_cmd_identifier_token12] = ACTIONS(1473), - [aux_sym_cmd_identifier_token13] = ACTIONS(1473), - [aux_sym_cmd_identifier_token14] = ACTIONS(1473), - [aux_sym_cmd_identifier_token15] = ACTIONS(1473), - [aux_sym_cmd_identifier_token16] = ACTIONS(1473), - [aux_sym_cmd_identifier_token17] = ACTIONS(1473), - [aux_sym_cmd_identifier_token18] = ACTIONS(1473), - [aux_sym_cmd_identifier_token19] = ACTIONS(1473), - [aux_sym_cmd_identifier_token20] = ACTIONS(1473), - [aux_sym_cmd_identifier_token21] = ACTIONS(1473), - [aux_sym_cmd_identifier_token22] = ACTIONS(1473), - [aux_sym_cmd_identifier_token23] = ACTIONS(1473), - [aux_sym_cmd_identifier_token24] = ACTIONS(1473), - [aux_sym_cmd_identifier_token25] = ACTIONS(1473), - [aux_sym_cmd_identifier_token26] = ACTIONS(1473), - [aux_sym_cmd_identifier_token27] = ACTIONS(1473), - [aux_sym_cmd_identifier_token28] = ACTIONS(1473), - [aux_sym_cmd_identifier_token29] = ACTIONS(1473), - [aux_sym_cmd_identifier_token30] = ACTIONS(1473), - [aux_sym_cmd_identifier_token31] = ACTIONS(1473), - [aux_sym_cmd_identifier_token32] = ACTIONS(1473), - [aux_sym_cmd_identifier_token33] = ACTIONS(1473), - [aux_sym_cmd_identifier_token34] = ACTIONS(1473), - [aux_sym_cmd_identifier_token35] = ACTIONS(1473), - [aux_sym_cmd_identifier_token36] = ACTIONS(1473), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_null] = ACTIONS(1473), - [aux_sym_cmd_identifier_token38] = ACTIONS(1473), - [aux_sym_cmd_identifier_token39] = ACTIONS(1473), - [aux_sym_cmd_identifier_token40] = ACTIONS(1473), - [anon_sym_def] = ACTIONS(1473), - [anon_sym_export_DASHenv] = ACTIONS(1473), - [anon_sym_extern] = ACTIONS(1473), - [anon_sym_module] = ACTIONS(1473), - [anon_sym_use] = ACTIONS(1473), - [anon_sym_LPAREN] = ACTIONS(1473), - [anon_sym_DOLLAR] = ACTIONS(1473), - [anon_sym_error] = ACTIONS(1473), - [anon_sym_list] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_break] = ACTIONS(1473), - [anon_sym_continue] = ACTIONS(1473), - [anon_sym_for] = ACTIONS(1473), - [anon_sym_in] = ACTIONS(1473), - [anon_sym_loop] = ACTIONS(1473), - [anon_sym_make] = ACTIONS(1473), - [anon_sym_while] = ACTIONS(1473), - [anon_sym_do] = ACTIONS(1473), - [anon_sym_if] = ACTIONS(1473), - [anon_sym_else] = ACTIONS(1473), - [anon_sym_match] = ACTIONS(1473), - [anon_sym_RBRACE] = ACTIONS(1473), - [anon_sym_try] = ACTIONS(1473), - [anon_sym_catch] = ACTIONS(1473), - [anon_sym_return] = ACTIONS(1473), - [anon_sym_source] = ACTIONS(1473), - [anon_sym_source_DASHenv] = ACTIONS(1473), - [anon_sym_register] = ACTIONS(1473), - [anon_sym_hide] = ACTIONS(1473), - [anon_sym_hide_DASHenv] = ACTIONS(1473), - [anon_sym_overlay] = ACTIONS(1473), - [anon_sym_new] = ACTIONS(1473), - [anon_sym_as] = ACTIONS(1473), - [anon_sym_LPAREN2] = ACTIONS(1475), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1473), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [aux_sym__immediate_decimal_token2] = ACTIONS(1479), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1473), - [aux_sym__val_number_decimal_token1] = ACTIONS(1473), - [aux_sym__val_number_decimal_token2] = ACTIONS(1473), - [aux_sym__val_number_decimal_token3] = ACTIONS(1473), - [aux_sym__val_number_decimal_token4] = ACTIONS(1473), - [aux_sym__val_number_token1] = ACTIONS(1473), - [aux_sym__val_number_token2] = ACTIONS(1473), - [aux_sym__val_number_token3] = ACTIONS(1473), - [sym_filesize_unit] = ACTIONS(1473), - [sym_duration_unit] = ACTIONS(1473), - [anon_sym_DQUOTE] = ACTIONS(1473), - [sym__str_single_quotes] = ACTIONS(1473), - [sym__str_back_ticks] = ACTIONS(1473), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1473), - [sym__entry_separator] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1473), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1473), + [aux_sym_cell_path_repeat1] = STATE(225), + [anon_sym_export] = ACTIONS(1625), + [anon_sym_alias] = ACTIONS(1625), + [anon_sym_let] = ACTIONS(1625), + [anon_sym_let_DASHenv] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(1625), + [anon_sym_const] = ACTIONS(1625), + [aux_sym_cmd_identifier_token1] = ACTIONS(1625), + [aux_sym_cmd_identifier_token2] = ACTIONS(1625), + [aux_sym_cmd_identifier_token3] = ACTIONS(1625), + [aux_sym_cmd_identifier_token4] = ACTIONS(1625), + [aux_sym_cmd_identifier_token5] = ACTIONS(1625), + [aux_sym_cmd_identifier_token6] = ACTIONS(1625), + [aux_sym_cmd_identifier_token7] = ACTIONS(1625), + [aux_sym_cmd_identifier_token8] = ACTIONS(1625), + [aux_sym_cmd_identifier_token9] = ACTIONS(1625), + [aux_sym_cmd_identifier_token10] = ACTIONS(1625), + [aux_sym_cmd_identifier_token11] = ACTIONS(1625), + [aux_sym_cmd_identifier_token12] = ACTIONS(1625), + [aux_sym_cmd_identifier_token13] = ACTIONS(1625), + [aux_sym_cmd_identifier_token14] = ACTIONS(1625), + [aux_sym_cmd_identifier_token15] = ACTIONS(1625), + [aux_sym_cmd_identifier_token16] = ACTIONS(1625), + [aux_sym_cmd_identifier_token17] = ACTIONS(1625), + [aux_sym_cmd_identifier_token18] = ACTIONS(1625), + [aux_sym_cmd_identifier_token19] = ACTIONS(1625), + [aux_sym_cmd_identifier_token20] = ACTIONS(1625), + [aux_sym_cmd_identifier_token21] = ACTIONS(1625), + [aux_sym_cmd_identifier_token22] = ACTIONS(1625), + [aux_sym_cmd_identifier_token23] = ACTIONS(1625), + [aux_sym_cmd_identifier_token24] = ACTIONS(1625), + [aux_sym_cmd_identifier_token25] = ACTIONS(1625), + [aux_sym_cmd_identifier_token26] = ACTIONS(1625), + [aux_sym_cmd_identifier_token27] = ACTIONS(1625), + [aux_sym_cmd_identifier_token28] = ACTIONS(1625), + [aux_sym_cmd_identifier_token29] = ACTIONS(1625), + [aux_sym_cmd_identifier_token30] = ACTIONS(1625), + [aux_sym_cmd_identifier_token31] = ACTIONS(1625), + [aux_sym_cmd_identifier_token32] = ACTIONS(1625), + [aux_sym_cmd_identifier_token33] = ACTIONS(1625), + [aux_sym_cmd_identifier_token34] = ACTIONS(1625), + [aux_sym_cmd_identifier_token35] = ACTIONS(1625), + [aux_sym_cmd_identifier_token36] = ACTIONS(1625), + [anon_sym_true] = ACTIONS(1625), + [anon_sym_false] = ACTIONS(1625), + [anon_sym_null] = ACTIONS(1625), + [aux_sym_cmd_identifier_token38] = ACTIONS(1625), + [aux_sym_cmd_identifier_token39] = ACTIONS(1625), + [aux_sym_cmd_identifier_token40] = ACTIONS(1625), + [anon_sym_def] = ACTIONS(1625), + [anon_sym_export_DASHenv] = ACTIONS(1625), + [anon_sym_extern] = ACTIONS(1625), + [anon_sym_module] = ACTIONS(1625), + [anon_sym_use] = ACTIONS(1625), + [anon_sym_LPAREN] = ACTIONS(1625), + [anon_sym_DOLLAR] = ACTIONS(1625), + [anon_sym_error] = ACTIONS(1625), + [anon_sym_list] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_break] = ACTIONS(1625), + [anon_sym_continue] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_in] = ACTIONS(1625), + [anon_sym_loop] = ACTIONS(1625), + [anon_sym_make] = ACTIONS(1625), + [anon_sym_while] = ACTIONS(1625), + [anon_sym_do] = ACTIONS(1625), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_else] = ACTIONS(1625), + [anon_sym_match] = ACTIONS(1625), + [anon_sym_RBRACE] = ACTIONS(1625), + [anon_sym_try] = ACTIONS(1625), + [anon_sym_catch] = ACTIONS(1625), + [anon_sym_return] = ACTIONS(1625), + [anon_sym_source] = ACTIONS(1625), + [anon_sym_source_DASHenv] = ACTIONS(1625), + [anon_sym_register] = ACTIONS(1625), + [anon_sym_hide] = ACTIONS(1625), + [anon_sym_hide_DASHenv] = ACTIONS(1625), + [anon_sym_overlay] = ACTIONS(1625), + [anon_sym_new] = ACTIONS(1625), + [anon_sym_as] = ACTIONS(1625), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1625), + [anon_sym_DOT_DOT2] = ACTIONS(1625), + [anon_sym_DOT] = ACTIONS(1627), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1629), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1629), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1625), + [aux_sym__val_number_decimal_token1] = ACTIONS(1625), + [aux_sym__val_number_decimal_token2] = ACTIONS(1625), + [aux_sym__val_number_decimal_token3] = ACTIONS(1625), + [aux_sym__val_number_decimal_token4] = ACTIONS(1625), + [aux_sym__val_number_token1] = ACTIONS(1625), + [aux_sym__val_number_token2] = ACTIONS(1625), + [aux_sym__val_number_token3] = ACTIONS(1625), + [anon_sym_DQUOTE] = ACTIONS(1625), + [sym__str_single_quotes] = ACTIONS(1625), + [sym__str_back_ticks] = ACTIONS(1625), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1625), + [sym__entry_separator] = ACTIONS(1629), + [anon_sym_PLUS] = ACTIONS(1625), [anon_sym_POUND] = ACTIONS(3), }, [203] = { [sym_comment] = STATE(203), - [anon_sym_export] = ACTIONS(1519), - [anon_sym_alias] = ACTIONS(1519), - [anon_sym_let] = ACTIONS(1519), - [anon_sym_let_DASHenv] = ACTIONS(1519), - [anon_sym_mut] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(1519), - [aux_sym_cmd_identifier_token1] = ACTIONS(1519), - [aux_sym_cmd_identifier_token2] = ACTIONS(1519), - [aux_sym_cmd_identifier_token3] = ACTIONS(1519), - [aux_sym_cmd_identifier_token4] = ACTIONS(1519), - [aux_sym_cmd_identifier_token5] = ACTIONS(1519), - [aux_sym_cmd_identifier_token6] = ACTIONS(1519), - [aux_sym_cmd_identifier_token7] = ACTIONS(1519), - [aux_sym_cmd_identifier_token8] = ACTIONS(1519), - [aux_sym_cmd_identifier_token9] = ACTIONS(1519), - [aux_sym_cmd_identifier_token10] = ACTIONS(1519), - [aux_sym_cmd_identifier_token11] = ACTIONS(1519), - [aux_sym_cmd_identifier_token12] = ACTIONS(1519), - [aux_sym_cmd_identifier_token13] = ACTIONS(1519), - [aux_sym_cmd_identifier_token14] = ACTIONS(1519), - [aux_sym_cmd_identifier_token15] = ACTIONS(1519), - [aux_sym_cmd_identifier_token16] = ACTIONS(1519), - [aux_sym_cmd_identifier_token17] = ACTIONS(1519), - [aux_sym_cmd_identifier_token18] = ACTIONS(1519), - [aux_sym_cmd_identifier_token19] = ACTIONS(1519), - [aux_sym_cmd_identifier_token20] = ACTIONS(1519), - [aux_sym_cmd_identifier_token21] = ACTIONS(1519), - [aux_sym_cmd_identifier_token22] = ACTIONS(1519), - [aux_sym_cmd_identifier_token23] = ACTIONS(1519), - [aux_sym_cmd_identifier_token24] = ACTIONS(1519), - [aux_sym_cmd_identifier_token25] = ACTIONS(1519), - [aux_sym_cmd_identifier_token26] = ACTIONS(1519), - [aux_sym_cmd_identifier_token27] = ACTIONS(1519), - [aux_sym_cmd_identifier_token28] = ACTIONS(1519), - [aux_sym_cmd_identifier_token29] = ACTIONS(1519), - [aux_sym_cmd_identifier_token30] = ACTIONS(1519), - [aux_sym_cmd_identifier_token31] = ACTIONS(1519), - [aux_sym_cmd_identifier_token32] = ACTIONS(1519), - [aux_sym_cmd_identifier_token33] = ACTIONS(1519), - [aux_sym_cmd_identifier_token34] = ACTIONS(1519), - [aux_sym_cmd_identifier_token35] = ACTIONS(1519), - [aux_sym_cmd_identifier_token36] = ACTIONS(1519), - [anon_sym_true] = ACTIONS(1519), - [anon_sym_false] = ACTIONS(1519), - [anon_sym_null] = ACTIONS(1519), - [aux_sym_cmd_identifier_token38] = ACTIONS(1519), - [aux_sym_cmd_identifier_token39] = ACTIONS(1519), - [aux_sym_cmd_identifier_token40] = ACTIONS(1519), - [anon_sym_def] = ACTIONS(1519), - [anon_sym_export_DASHenv] = ACTIONS(1519), - [anon_sym_extern] = ACTIONS(1519), - [anon_sym_module] = ACTIONS(1519), - [anon_sym_use] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1519), - [anon_sym_DOLLAR] = ACTIONS(1519), - [anon_sym_error] = ACTIONS(1519), - [anon_sym_list] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1519), - [anon_sym_break] = ACTIONS(1519), - [anon_sym_continue] = ACTIONS(1519), - [anon_sym_for] = ACTIONS(1519), - [anon_sym_in] = ACTIONS(1519), - [anon_sym_loop] = ACTIONS(1519), - [anon_sym_make] = ACTIONS(1519), - [anon_sym_while] = ACTIONS(1519), - [anon_sym_do] = ACTIONS(1519), - [anon_sym_if] = ACTIONS(1519), - [anon_sym_else] = ACTIONS(1519), - [anon_sym_match] = ACTIONS(1519), - [anon_sym_RBRACE] = ACTIONS(1519), - [anon_sym_try] = ACTIONS(1519), - [anon_sym_catch] = ACTIONS(1519), - [anon_sym_return] = ACTIONS(1519), - [anon_sym_source] = ACTIONS(1519), - [anon_sym_source_DASHenv] = ACTIONS(1519), - [anon_sym_register] = ACTIONS(1519), - [anon_sym_hide] = ACTIONS(1519), - [anon_sym_hide_DASHenv] = ACTIONS(1519), - [anon_sym_overlay] = ACTIONS(1519), - [anon_sym_new] = ACTIONS(1519), - [anon_sym_as] = ACTIONS(1519), - [anon_sym_LPAREN2] = ACTIONS(1521), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1519), - [anon_sym_DOT_DOT2] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), - [aux_sym__immediate_decimal_token2] = ACTIONS(1523), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1519), - [aux_sym__val_number_decimal_token1] = ACTIONS(1519), - [aux_sym__val_number_decimal_token2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1519), - [aux_sym__val_number_token1] = ACTIONS(1519), - [aux_sym__val_number_token2] = ACTIONS(1519), - [aux_sym__val_number_token3] = ACTIONS(1519), - [sym_filesize_unit] = ACTIONS(1519), - [sym_duration_unit] = ACTIONS(1519), - [anon_sym_DQUOTE] = ACTIONS(1519), - [sym__str_single_quotes] = ACTIONS(1519), - [sym__str_back_ticks] = ACTIONS(1519), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1519), - [sym__entry_separator] = ACTIONS(1521), - [anon_sym_PLUS] = ACTIONS(1519), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1631), + [anon_sym_alias] = ACTIONS(1631), + [anon_sym_let] = ACTIONS(1631), + [anon_sym_let_DASHenv] = ACTIONS(1631), + [anon_sym_mut] = ACTIONS(1631), + [anon_sym_const] = ACTIONS(1631), + [aux_sym_cmd_identifier_token1] = ACTIONS(1631), + [aux_sym_cmd_identifier_token2] = ACTIONS(1631), + [aux_sym_cmd_identifier_token3] = ACTIONS(1631), + [aux_sym_cmd_identifier_token4] = ACTIONS(1631), + [aux_sym_cmd_identifier_token5] = ACTIONS(1631), + [aux_sym_cmd_identifier_token6] = ACTIONS(1631), + [aux_sym_cmd_identifier_token7] = ACTIONS(1631), + [aux_sym_cmd_identifier_token8] = ACTIONS(1631), + [aux_sym_cmd_identifier_token9] = ACTIONS(1631), + [aux_sym_cmd_identifier_token10] = ACTIONS(1631), + [aux_sym_cmd_identifier_token11] = ACTIONS(1631), + [aux_sym_cmd_identifier_token12] = ACTIONS(1631), + [aux_sym_cmd_identifier_token13] = ACTIONS(1631), + [aux_sym_cmd_identifier_token14] = ACTIONS(1631), + [aux_sym_cmd_identifier_token15] = ACTIONS(1631), + [aux_sym_cmd_identifier_token16] = ACTIONS(1631), + [aux_sym_cmd_identifier_token17] = ACTIONS(1631), + [aux_sym_cmd_identifier_token18] = ACTIONS(1631), + [aux_sym_cmd_identifier_token19] = ACTIONS(1631), + [aux_sym_cmd_identifier_token20] = ACTIONS(1631), + [aux_sym_cmd_identifier_token21] = ACTIONS(1631), + [aux_sym_cmd_identifier_token22] = ACTIONS(1631), + [aux_sym_cmd_identifier_token23] = ACTIONS(1631), + [aux_sym_cmd_identifier_token24] = ACTIONS(1631), + [aux_sym_cmd_identifier_token25] = ACTIONS(1631), + [aux_sym_cmd_identifier_token26] = ACTIONS(1631), + [aux_sym_cmd_identifier_token27] = ACTIONS(1631), + [aux_sym_cmd_identifier_token28] = ACTIONS(1631), + [aux_sym_cmd_identifier_token29] = ACTIONS(1631), + [aux_sym_cmd_identifier_token30] = ACTIONS(1631), + [aux_sym_cmd_identifier_token31] = ACTIONS(1631), + [aux_sym_cmd_identifier_token32] = ACTIONS(1631), + [aux_sym_cmd_identifier_token33] = ACTIONS(1631), + [aux_sym_cmd_identifier_token34] = ACTIONS(1631), + [aux_sym_cmd_identifier_token35] = ACTIONS(1631), + [aux_sym_cmd_identifier_token36] = ACTIONS(1631), + [anon_sym_true] = ACTIONS(1631), + [anon_sym_false] = ACTIONS(1631), + [anon_sym_null] = ACTIONS(1631), + [aux_sym_cmd_identifier_token38] = ACTIONS(1631), + [aux_sym_cmd_identifier_token39] = ACTIONS(1631), + [aux_sym_cmd_identifier_token40] = ACTIONS(1631), + [anon_sym_def] = ACTIONS(1631), + [anon_sym_export_DASHenv] = ACTIONS(1631), + [anon_sym_extern] = ACTIONS(1631), + [anon_sym_module] = ACTIONS(1631), + [anon_sym_use] = ACTIONS(1631), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_DOLLAR] = ACTIONS(1631), + [anon_sym_error] = ACTIONS(1631), + [anon_sym_list] = ACTIONS(1631), + [anon_sym_DASH] = ACTIONS(1631), + [anon_sym_break] = ACTIONS(1631), + [anon_sym_continue] = ACTIONS(1631), + [anon_sym_for] = ACTIONS(1631), + [anon_sym_in] = ACTIONS(1631), + [anon_sym_loop] = ACTIONS(1631), + [anon_sym_make] = ACTIONS(1631), + [anon_sym_while] = ACTIONS(1631), + [anon_sym_do] = ACTIONS(1631), + [anon_sym_if] = ACTIONS(1631), + [anon_sym_else] = ACTIONS(1631), + [anon_sym_match] = ACTIONS(1631), + [anon_sym_RBRACE] = ACTIONS(1631), + [anon_sym_try] = ACTIONS(1631), + [anon_sym_catch] = ACTIONS(1631), + [anon_sym_return] = ACTIONS(1631), + [anon_sym_source] = ACTIONS(1631), + [anon_sym_source_DASHenv] = ACTIONS(1631), + [anon_sym_register] = ACTIONS(1631), + [anon_sym_hide] = ACTIONS(1631), + [anon_sym_hide_DASHenv] = ACTIONS(1631), + [anon_sym_overlay] = ACTIONS(1631), + [anon_sym_new] = ACTIONS(1631), + [anon_sym_as] = ACTIONS(1631), + [anon_sym_LPAREN2] = ACTIONS(1633), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1631), + [anon_sym_DOT_DOT2] = ACTIONS(1631), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1633), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1633), + [aux_sym__immediate_decimal_token1] = ACTIONS(1635), + [aux_sym__immediate_decimal_token2] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1631), + [aux_sym__val_number_decimal_token1] = ACTIONS(1631), + [aux_sym__val_number_decimal_token2] = ACTIONS(1631), + [aux_sym__val_number_decimal_token3] = ACTIONS(1631), + [aux_sym__val_number_decimal_token4] = ACTIONS(1631), + [aux_sym__val_number_token1] = ACTIONS(1631), + [aux_sym__val_number_token2] = ACTIONS(1631), + [aux_sym__val_number_token3] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [sym__str_single_quotes] = ACTIONS(1631), + [sym__str_back_ticks] = ACTIONS(1631), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1631), + [sym__entry_separator] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1631), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1631), [anon_sym_POUND] = ACTIONS(3), }, [204] = { - [sym__expr_parenthesized_immediate] = STATE(7599), [sym_comment] = STATE(204), - [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), - [aux_sym_cmd_identifier_token1] = ACTIONS(1525), - [aux_sym_cmd_identifier_token2] = ACTIONS(1525), - [aux_sym_cmd_identifier_token3] = ACTIONS(1525), - [aux_sym_cmd_identifier_token4] = ACTIONS(1525), - [aux_sym_cmd_identifier_token5] = ACTIONS(1525), - [aux_sym_cmd_identifier_token6] = ACTIONS(1525), - [aux_sym_cmd_identifier_token7] = ACTIONS(1525), - [aux_sym_cmd_identifier_token8] = ACTIONS(1525), - [aux_sym_cmd_identifier_token9] = ACTIONS(1525), - [aux_sym_cmd_identifier_token10] = ACTIONS(1525), - [aux_sym_cmd_identifier_token11] = ACTIONS(1525), - [aux_sym_cmd_identifier_token12] = ACTIONS(1525), - [aux_sym_cmd_identifier_token13] = ACTIONS(1525), - [aux_sym_cmd_identifier_token14] = ACTIONS(1525), - [aux_sym_cmd_identifier_token15] = ACTIONS(1525), - [aux_sym_cmd_identifier_token16] = ACTIONS(1525), - [aux_sym_cmd_identifier_token17] = ACTIONS(1525), - [aux_sym_cmd_identifier_token18] = ACTIONS(1525), - [aux_sym_cmd_identifier_token19] = ACTIONS(1525), - [aux_sym_cmd_identifier_token20] = ACTIONS(1525), - [aux_sym_cmd_identifier_token21] = ACTIONS(1525), - [aux_sym_cmd_identifier_token22] = ACTIONS(1525), - [aux_sym_cmd_identifier_token23] = ACTIONS(1525), - [aux_sym_cmd_identifier_token24] = ACTIONS(1525), - [aux_sym_cmd_identifier_token25] = ACTIONS(1525), - [aux_sym_cmd_identifier_token26] = ACTIONS(1525), - [aux_sym_cmd_identifier_token27] = ACTIONS(1525), - [aux_sym_cmd_identifier_token28] = ACTIONS(1525), - [aux_sym_cmd_identifier_token29] = ACTIONS(1525), - [aux_sym_cmd_identifier_token30] = ACTIONS(1525), - [aux_sym_cmd_identifier_token31] = ACTIONS(1525), - [aux_sym_cmd_identifier_token32] = ACTIONS(1525), - [aux_sym_cmd_identifier_token33] = ACTIONS(1525), - [aux_sym_cmd_identifier_token34] = ACTIONS(1525), - [aux_sym_cmd_identifier_token35] = ACTIONS(1525), - [aux_sym_cmd_identifier_token36] = ACTIONS(1525), - [anon_sym_true] = ACTIONS(1525), - [anon_sym_false] = ACTIONS(1525), - [anon_sym_null] = ACTIONS(1525), - [aux_sym_cmd_identifier_token38] = ACTIONS(1525), - [aux_sym_cmd_identifier_token39] = ACTIONS(1525), - [aux_sym_cmd_identifier_token40] = ACTIONS(1525), - [anon_sym_def] = 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_LPAREN] = ACTIONS(1525), - [anon_sym_DOLLAR] = ACTIONS(1525), - [anon_sym_error] = ACTIONS(1525), - [anon_sym_list] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_break] = ACTIONS(1525), - [anon_sym_continue] = ACTIONS(1525), - [anon_sym_for] = ACTIONS(1525), - [anon_sym_in] = ACTIONS(1525), - [anon_sym_loop] = ACTIONS(1525), - [anon_sym_make] = ACTIONS(1525), - [anon_sym_while] = ACTIONS(1525), - [anon_sym_do] = ACTIONS(1525), - [anon_sym_if] = ACTIONS(1525), - [anon_sym_else] = ACTIONS(1525), - [anon_sym_match] = ACTIONS(1525), - [anon_sym_RBRACE] = ACTIONS(1525), - [anon_sym_try] = ACTIONS(1525), - [anon_sym_catch] = 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_new] = ACTIONS(1525), - [anon_sym_as] = ACTIONS(1525), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1525), - [anon_sym_DOT_DOT2] = ACTIONS(1529), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1531), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1531), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1525), - [aux_sym__val_number_decimal_token1] = ACTIONS(1525), - [aux_sym__val_number_decimal_token2] = ACTIONS(1525), - [aux_sym__val_number_decimal_token3] = ACTIONS(1525), - [aux_sym__val_number_decimal_token4] = ACTIONS(1525), - [aux_sym__val_number_token1] = ACTIONS(1525), - [aux_sym__val_number_token2] = ACTIONS(1525), - [aux_sym__val_number_token3] = ACTIONS(1525), - [sym_filesize_unit] = ACTIONS(1533), - [sym_duration_unit] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1525), - [sym__str_single_quotes] = ACTIONS(1525), - [sym__str_back_ticks] = ACTIONS(1525), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1525), - [sym__entry_separator] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1525), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1539), + [anon_sym_export] = ACTIONS(1565), + [anon_sym_alias] = ACTIONS(1565), + [anon_sym_let] = ACTIONS(1565), + [anon_sym_let_DASHenv] = ACTIONS(1565), + [anon_sym_mut] = ACTIONS(1565), + [anon_sym_const] = ACTIONS(1565), + [aux_sym_cmd_identifier_token1] = ACTIONS(1565), + [aux_sym_cmd_identifier_token2] = ACTIONS(1565), + [aux_sym_cmd_identifier_token3] = ACTIONS(1565), + [aux_sym_cmd_identifier_token4] = ACTIONS(1565), + [aux_sym_cmd_identifier_token5] = ACTIONS(1565), + [aux_sym_cmd_identifier_token6] = ACTIONS(1565), + [aux_sym_cmd_identifier_token7] = ACTIONS(1565), + [aux_sym_cmd_identifier_token8] = ACTIONS(1565), + [aux_sym_cmd_identifier_token9] = ACTIONS(1565), + [aux_sym_cmd_identifier_token10] = ACTIONS(1565), + [aux_sym_cmd_identifier_token11] = ACTIONS(1565), + [aux_sym_cmd_identifier_token12] = ACTIONS(1565), + [aux_sym_cmd_identifier_token13] = ACTIONS(1565), + [aux_sym_cmd_identifier_token14] = ACTIONS(1565), + [aux_sym_cmd_identifier_token15] = ACTIONS(1565), + [aux_sym_cmd_identifier_token16] = ACTIONS(1565), + [aux_sym_cmd_identifier_token17] = ACTIONS(1565), + [aux_sym_cmd_identifier_token18] = ACTIONS(1565), + [aux_sym_cmd_identifier_token19] = ACTIONS(1565), + [aux_sym_cmd_identifier_token20] = ACTIONS(1565), + [aux_sym_cmd_identifier_token21] = ACTIONS(1565), + [aux_sym_cmd_identifier_token22] = ACTIONS(1565), + [aux_sym_cmd_identifier_token23] = ACTIONS(1565), + [aux_sym_cmd_identifier_token24] = ACTIONS(1565), + [aux_sym_cmd_identifier_token25] = ACTIONS(1565), + [aux_sym_cmd_identifier_token26] = ACTIONS(1565), + [aux_sym_cmd_identifier_token27] = ACTIONS(1565), + [aux_sym_cmd_identifier_token28] = ACTIONS(1565), + [aux_sym_cmd_identifier_token29] = ACTIONS(1565), + [aux_sym_cmd_identifier_token30] = ACTIONS(1565), + [aux_sym_cmd_identifier_token31] = ACTIONS(1565), + [aux_sym_cmd_identifier_token32] = ACTIONS(1565), + [aux_sym_cmd_identifier_token33] = ACTIONS(1565), + [aux_sym_cmd_identifier_token34] = ACTIONS(1565), + [aux_sym_cmd_identifier_token35] = ACTIONS(1565), + [aux_sym_cmd_identifier_token36] = ACTIONS(1565), + [anon_sym_true] = ACTIONS(1565), + [anon_sym_false] = ACTIONS(1565), + [anon_sym_null] = ACTIONS(1565), + [aux_sym_cmd_identifier_token38] = ACTIONS(1565), + [aux_sym_cmd_identifier_token39] = ACTIONS(1565), + [aux_sym_cmd_identifier_token40] = ACTIONS(1565), + [anon_sym_def] = ACTIONS(1565), + [anon_sym_export_DASHenv] = ACTIONS(1565), + [anon_sym_extern] = ACTIONS(1565), + [anon_sym_module] = ACTIONS(1565), + [anon_sym_use] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_DOLLAR] = ACTIONS(1565), + [anon_sym_error] = ACTIONS(1565), + [anon_sym_list] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_break] = ACTIONS(1565), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_for] = ACTIONS(1565), + [anon_sym_in] = ACTIONS(1565), + [anon_sym_loop] = ACTIONS(1565), + [anon_sym_make] = ACTIONS(1565), + [anon_sym_while] = ACTIONS(1565), + [anon_sym_do] = ACTIONS(1565), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_else] = ACTIONS(1565), + [anon_sym_match] = ACTIONS(1565), + [anon_sym_RBRACE] = ACTIONS(1565), + [anon_sym_try] = ACTIONS(1565), + [anon_sym_catch] = ACTIONS(1565), + [anon_sym_return] = ACTIONS(1565), + [anon_sym_source] = ACTIONS(1565), + [anon_sym_source_DASHenv] = ACTIONS(1565), + [anon_sym_register] = ACTIONS(1565), + [anon_sym_hide] = ACTIONS(1565), + [anon_sym_hide_DASHenv] = ACTIONS(1565), + [anon_sym_overlay] = ACTIONS(1565), + [anon_sym_new] = ACTIONS(1565), + [anon_sym_as] = ACTIONS(1565), + [anon_sym_LPAREN2] = ACTIONS(1567), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1565), + [anon_sym_DOT_DOT2] = ACTIONS(1565), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1565), + [aux_sym__val_number_decimal_token1] = ACTIONS(1565), + [aux_sym__val_number_decimal_token2] = ACTIONS(1565), + [aux_sym__val_number_decimal_token3] = ACTIONS(1565), + [aux_sym__val_number_decimal_token4] = ACTIONS(1565), + [aux_sym__val_number_token1] = ACTIONS(1565), + [aux_sym__val_number_token2] = ACTIONS(1565), + [aux_sym__val_number_token3] = ACTIONS(1565), + [sym_filesize_unit] = ACTIONS(1565), + [sym_duration_unit] = ACTIONS(1565), + [anon_sym_DQUOTE] = ACTIONS(1565), + [sym__str_single_quotes] = ACTIONS(1565), + [sym__str_back_ticks] = ACTIONS(1565), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1565), + [sym__entry_separator] = ACTIONS(1567), + [anon_sym_PLUS] = ACTIONS(1565), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1565), [anon_sym_POUND] = ACTIONS(3), }, [205] = { - [sym__expr_parenthesized_immediate] = STATE(463), - [sym__immediate_decimal] = STATE(464), - [sym_val_variable] = STATE(463), [sym_comment] = STATE(205), - [anon_sym_export] = ACTIONS(1431), - [anon_sym_alias] = ACTIONS(1431), - [anon_sym_let] = ACTIONS(1431), - [anon_sym_let_DASHenv] = ACTIONS(1431), - [anon_sym_mut] = ACTIONS(1431), - [anon_sym_const] = ACTIONS(1431), - [aux_sym_cmd_identifier_token1] = ACTIONS(1431), - [aux_sym_cmd_identifier_token2] = ACTIONS(1431), - [aux_sym_cmd_identifier_token3] = ACTIONS(1431), - [aux_sym_cmd_identifier_token4] = ACTIONS(1431), - [aux_sym_cmd_identifier_token5] = ACTIONS(1431), - [aux_sym_cmd_identifier_token6] = ACTIONS(1431), - [aux_sym_cmd_identifier_token7] = ACTIONS(1431), - [aux_sym_cmd_identifier_token8] = ACTIONS(1431), - [aux_sym_cmd_identifier_token9] = ACTIONS(1431), - [aux_sym_cmd_identifier_token10] = ACTIONS(1431), - [aux_sym_cmd_identifier_token11] = ACTIONS(1431), - [aux_sym_cmd_identifier_token12] = ACTIONS(1431), - [aux_sym_cmd_identifier_token13] = ACTIONS(1431), - [aux_sym_cmd_identifier_token14] = ACTIONS(1431), - [aux_sym_cmd_identifier_token15] = ACTIONS(1431), - [aux_sym_cmd_identifier_token16] = ACTIONS(1431), - [aux_sym_cmd_identifier_token17] = ACTIONS(1431), - [aux_sym_cmd_identifier_token18] = ACTIONS(1431), - [aux_sym_cmd_identifier_token19] = ACTIONS(1431), - [aux_sym_cmd_identifier_token20] = ACTIONS(1431), - [aux_sym_cmd_identifier_token21] = ACTIONS(1431), - [aux_sym_cmd_identifier_token22] = ACTIONS(1431), - [aux_sym_cmd_identifier_token23] = ACTIONS(1431), - [aux_sym_cmd_identifier_token24] = ACTIONS(1431), - [aux_sym_cmd_identifier_token25] = ACTIONS(1431), - [aux_sym_cmd_identifier_token26] = ACTIONS(1431), - [aux_sym_cmd_identifier_token27] = ACTIONS(1431), - [aux_sym_cmd_identifier_token28] = ACTIONS(1431), - [aux_sym_cmd_identifier_token29] = ACTIONS(1431), - [aux_sym_cmd_identifier_token30] = ACTIONS(1431), - [aux_sym_cmd_identifier_token31] = ACTIONS(1431), - [aux_sym_cmd_identifier_token32] = ACTIONS(1431), - [aux_sym_cmd_identifier_token33] = ACTIONS(1431), - [aux_sym_cmd_identifier_token34] = ACTIONS(1431), - [aux_sym_cmd_identifier_token35] = ACTIONS(1431), - [aux_sym_cmd_identifier_token36] = ACTIONS(1431), - [anon_sym_true] = ACTIONS(1441), - [anon_sym_false] = ACTIONS(1441), - [anon_sym_null] = ACTIONS(1441), - [aux_sym_cmd_identifier_token38] = ACTIONS(1431), - [aux_sym_cmd_identifier_token39] = ACTIONS(1441), - [aux_sym_cmd_identifier_token40] = ACTIONS(1441), - [anon_sym_def] = ACTIONS(1431), - [anon_sym_export_DASHenv] = ACTIONS(1431), - [anon_sym_extern] = ACTIONS(1431), - [anon_sym_module] = ACTIONS(1431), - [anon_sym_use] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_DOLLAR] = ACTIONS(1459), - [anon_sym_error] = ACTIONS(1431), - [anon_sym_list] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_break] = ACTIONS(1431), - [anon_sym_continue] = ACTIONS(1431), - [anon_sym_for] = ACTIONS(1431), - [anon_sym_in] = ACTIONS(1431), - [anon_sym_loop] = ACTIONS(1431), - [anon_sym_make] = ACTIONS(1431), - [anon_sym_while] = ACTIONS(1431), - [anon_sym_do] = ACTIONS(1431), - [anon_sym_if] = ACTIONS(1431), - [anon_sym_else] = ACTIONS(1431), - [anon_sym_match] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1441), - [anon_sym_try] = ACTIONS(1431), - [anon_sym_catch] = ACTIONS(1431), - [anon_sym_return] = ACTIONS(1431), - [anon_sym_source] = ACTIONS(1431), - [anon_sym_source_DASHenv] = ACTIONS(1431), - [anon_sym_register] = ACTIONS(1431), - [anon_sym_hide] = ACTIONS(1431), - [anon_sym_hide_DASHenv] = ACTIONS(1431), - [anon_sym_overlay] = ACTIONS(1431), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_as] = ACTIONS(1431), - [anon_sym_LPAREN2] = ACTIONS(1461), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1441), - [anon_sym_DOT] = ACTIONS(1541), - [aux_sym__immediate_decimal_token1] = ACTIONS(1543), - [aux_sym__immediate_decimal_token3] = ACTIONS(1545), - [aux_sym__immediate_decimal_token4] = ACTIONS(1547), - [aux_sym__immediate_decimal_token5] = ACTIONS(1549), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1441), - [aux_sym__val_number_decimal_token1] = ACTIONS(1431), - [aux_sym__val_number_decimal_token2] = ACTIONS(1431), - [aux_sym__val_number_decimal_token3] = ACTIONS(1431), - [aux_sym__val_number_decimal_token4] = ACTIONS(1431), - [aux_sym__val_number_token1] = ACTIONS(1441), - [aux_sym__val_number_token2] = ACTIONS(1441), - [aux_sym__val_number_token3] = ACTIONS(1441), - [anon_sym_DQUOTE] = ACTIONS(1441), - [sym__str_single_quotes] = ACTIONS(1441), - [sym__str_back_ticks] = ACTIONS(1441), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1441), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1639), + [anon_sym_alias] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_let_DASHenv] = ACTIONS(1639), + [anon_sym_mut] = ACTIONS(1639), + [anon_sym_const] = ACTIONS(1639), + [aux_sym_cmd_identifier_token1] = ACTIONS(1639), + [aux_sym_cmd_identifier_token2] = ACTIONS(1639), + [aux_sym_cmd_identifier_token3] = ACTIONS(1639), + [aux_sym_cmd_identifier_token4] = ACTIONS(1639), + [aux_sym_cmd_identifier_token5] = ACTIONS(1639), + [aux_sym_cmd_identifier_token6] = ACTIONS(1639), + [aux_sym_cmd_identifier_token7] = ACTIONS(1639), + [aux_sym_cmd_identifier_token8] = ACTIONS(1639), + [aux_sym_cmd_identifier_token9] = ACTIONS(1639), + [aux_sym_cmd_identifier_token10] = ACTIONS(1639), + [aux_sym_cmd_identifier_token11] = ACTIONS(1639), + [aux_sym_cmd_identifier_token12] = ACTIONS(1639), + [aux_sym_cmd_identifier_token13] = ACTIONS(1639), + [aux_sym_cmd_identifier_token14] = ACTIONS(1639), + [aux_sym_cmd_identifier_token15] = ACTIONS(1639), + [aux_sym_cmd_identifier_token16] = ACTIONS(1639), + [aux_sym_cmd_identifier_token17] = ACTIONS(1639), + [aux_sym_cmd_identifier_token18] = ACTIONS(1639), + [aux_sym_cmd_identifier_token19] = ACTIONS(1639), + [aux_sym_cmd_identifier_token20] = ACTIONS(1639), + [aux_sym_cmd_identifier_token21] = ACTIONS(1639), + [aux_sym_cmd_identifier_token22] = ACTIONS(1639), + [aux_sym_cmd_identifier_token23] = ACTIONS(1639), + [aux_sym_cmd_identifier_token24] = ACTIONS(1639), + [aux_sym_cmd_identifier_token25] = ACTIONS(1639), + [aux_sym_cmd_identifier_token26] = ACTIONS(1639), + [aux_sym_cmd_identifier_token27] = ACTIONS(1639), + [aux_sym_cmd_identifier_token28] = ACTIONS(1639), + [aux_sym_cmd_identifier_token29] = ACTIONS(1639), + [aux_sym_cmd_identifier_token30] = ACTIONS(1639), + [aux_sym_cmd_identifier_token31] = ACTIONS(1639), + [aux_sym_cmd_identifier_token32] = ACTIONS(1639), + [aux_sym_cmd_identifier_token33] = ACTIONS(1639), + [aux_sym_cmd_identifier_token34] = ACTIONS(1639), + [aux_sym_cmd_identifier_token35] = ACTIONS(1639), + [aux_sym_cmd_identifier_token36] = ACTIONS(1639), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [anon_sym_null] = ACTIONS(1639), + [aux_sym_cmd_identifier_token38] = ACTIONS(1639), + [aux_sym_cmd_identifier_token39] = ACTIONS(1639), + [aux_sym_cmd_identifier_token40] = ACTIONS(1639), + [anon_sym_def] = ACTIONS(1639), + [anon_sym_export_DASHenv] = ACTIONS(1639), + [anon_sym_extern] = ACTIONS(1639), + [anon_sym_module] = ACTIONS(1639), + [anon_sym_use] = ACTIONS(1639), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_DOLLAR] = ACTIONS(1639), + [anon_sym_error] = ACTIONS(1639), + [anon_sym_list] = ACTIONS(1639), + [anon_sym_DASH] = ACTIONS(1639), + [anon_sym_break] = ACTIONS(1639), + [anon_sym_continue] = ACTIONS(1639), + [anon_sym_for] = ACTIONS(1639), + [anon_sym_in] = ACTIONS(1639), + [anon_sym_loop] = ACTIONS(1639), + [anon_sym_make] = ACTIONS(1639), + [anon_sym_while] = ACTIONS(1639), + [anon_sym_do] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1639), + [anon_sym_else] = ACTIONS(1639), + [anon_sym_match] = ACTIONS(1639), + [anon_sym_RBRACE] = ACTIONS(1639), + [anon_sym_try] = ACTIONS(1639), + [anon_sym_catch] = ACTIONS(1639), + [anon_sym_return] = ACTIONS(1639), + [anon_sym_source] = ACTIONS(1639), + [anon_sym_source_DASHenv] = ACTIONS(1639), + [anon_sym_register] = ACTIONS(1639), + [anon_sym_hide] = ACTIONS(1639), + [anon_sym_hide_DASHenv] = ACTIONS(1639), + [anon_sym_overlay] = ACTIONS(1639), + [anon_sym_new] = ACTIONS(1639), + [anon_sym_as] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1641), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1639), + [anon_sym_DOT_DOT2] = ACTIONS(1639), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1639), + [aux_sym__val_number_decimal_token1] = ACTIONS(1639), + [aux_sym__val_number_decimal_token2] = ACTIONS(1639), + [aux_sym__val_number_decimal_token3] = ACTIONS(1639), + [aux_sym__val_number_decimal_token4] = ACTIONS(1639), + [aux_sym__val_number_token1] = ACTIONS(1639), + [aux_sym__val_number_token2] = ACTIONS(1639), + [aux_sym__val_number_token3] = ACTIONS(1639), + [sym_filesize_unit] = ACTIONS(1639), + [sym_duration_unit] = ACTIONS(1639), + [anon_sym_DQUOTE] = ACTIONS(1639), + [sym__str_single_quotes] = ACTIONS(1639), + [sym__str_back_ticks] = ACTIONS(1639), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1639), + [sym__entry_separator] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1639), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1639), + [anon_sym_POUND] = ACTIONS(3), }, [206] = { - [sym__expr_parenthesized_immediate] = STATE(573), - [sym__immediate_decimal] = STATE(574), - [sym_val_variable] = STATE(573), [sym_comment] = STATE(206), - [anon_sym_export] = ACTIONS(1431), - [anon_sym_alias] = ACTIONS(1431), - [anon_sym_let] = ACTIONS(1431), - [anon_sym_let_DASHenv] = ACTIONS(1431), - [anon_sym_mut] = ACTIONS(1431), - [anon_sym_const] = ACTIONS(1431), - [aux_sym_cmd_identifier_token1] = ACTIONS(1431), - [aux_sym_cmd_identifier_token2] = ACTIONS(1431), - [aux_sym_cmd_identifier_token3] = ACTIONS(1431), - [aux_sym_cmd_identifier_token4] = ACTIONS(1431), - [aux_sym_cmd_identifier_token5] = ACTIONS(1431), - [aux_sym_cmd_identifier_token6] = ACTIONS(1431), - [aux_sym_cmd_identifier_token7] = ACTIONS(1431), - [aux_sym_cmd_identifier_token8] = ACTIONS(1431), - [aux_sym_cmd_identifier_token9] = ACTIONS(1431), - [aux_sym_cmd_identifier_token10] = ACTIONS(1431), - [aux_sym_cmd_identifier_token11] = ACTIONS(1431), - [aux_sym_cmd_identifier_token12] = ACTIONS(1431), - [aux_sym_cmd_identifier_token13] = ACTIONS(1431), - [aux_sym_cmd_identifier_token14] = ACTIONS(1431), - [aux_sym_cmd_identifier_token15] = ACTIONS(1431), - [aux_sym_cmd_identifier_token16] = ACTIONS(1431), - [aux_sym_cmd_identifier_token17] = ACTIONS(1431), - [aux_sym_cmd_identifier_token18] = ACTIONS(1431), - [aux_sym_cmd_identifier_token19] = ACTIONS(1431), - [aux_sym_cmd_identifier_token20] = ACTIONS(1431), - [aux_sym_cmd_identifier_token21] = ACTIONS(1431), - [aux_sym_cmd_identifier_token22] = ACTIONS(1431), - [aux_sym_cmd_identifier_token23] = ACTIONS(1431), - [aux_sym_cmd_identifier_token24] = ACTIONS(1431), - [aux_sym_cmd_identifier_token25] = ACTIONS(1431), - [aux_sym_cmd_identifier_token26] = ACTIONS(1431), - [aux_sym_cmd_identifier_token27] = ACTIONS(1431), - [aux_sym_cmd_identifier_token28] = ACTIONS(1431), - [aux_sym_cmd_identifier_token29] = ACTIONS(1431), - [aux_sym_cmd_identifier_token30] = ACTIONS(1431), - [aux_sym_cmd_identifier_token31] = ACTIONS(1431), - [aux_sym_cmd_identifier_token32] = ACTIONS(1431), - [aux_sym_cmd_identifier_token33] = ACTIONS(1431), - [aux_sym_cmd_identifier_token34] = ACTIONS(1431), - [aux_sym_cmd_identifier_token35] = ACTIONS(1431), - [aux_sym_cmd_identifier_token36] = ACTIONS(1431), - [anon_sym_true] = ACTIONS(1431), - [anon_sym_false] = ACTIONS(1431), - [anon_sym_null] = ACTIONS(1431), - [aux_sym_cmd_identifier_token38] = ACTIONS(1431), - [aux_sym_cmd_identifier_token39] = ACTIONS(1431), - [aux_sym_cmd_identifier_token40] = ACTIONS(1431), - [anon_sym_def] = ACTIONS(1431), - [anon_sym_export_DASHenv] = ACTIONS(1431), - [anon_sym_extern] = ACTIONS(1431), - [anon_sym_module] = ACTIONS(1431), - [anon_sym_use] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_DOLLAR] = ACTIONS(1445), - [anon_sym_error] = ACTIONS(1431), - [anon_sym_list] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_break] = ACTIONS(1431), - [anon_sym_continue] = ACTIONS(1431), - [anon_sym_for] = ACTIONS(1431), - [anon_sym_in] = ACTIONS(1431), - [anon_sym_loop] = ACTIONS(1431), - [anon_sym_make] = ACTIONS(1431), - [anon_sym_while] = ACTIONS(1431), - [anon_sym_do] = ACTIONS(1431), - [anon_sym_if] = ACTIONS(1431), - [anon_sym_else] = ACTIONS(1431), - [anon_sym_match] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1431), - [anon_sym_try] = ACTIONS(1431), - [anon_sym_catch] = ACTIONS(1431), - [anon_sym_return] = ACTIONS(1431), - [anon_sym_source] = ACTIONS(1431), - [anon_sym_source_DASHenv] = ACTIONS(1431), - [anon_sym_register] = ACTIONS(1431), - [anon_sym_hide] = ACTIONS(1431), - [anon_sym_hide_DASHenv] = ACTIONS(1431), - [anon_sym_overlay] = ACTIONS(1431), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_as] = ACTIONS(1431), - [anon_sym_LPAREN2] = ACTIONS(1447), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1431), - [aux_sym__immediate_decimal_token1] = ACTIONS(1503), - [aux_sym__immediate_decimal_token3] = ACTIONS(1503), - [aux_sym__immediate_decimal_token4] = ACTIONS(1505), - [aux_sym__immediate_decimal_token5] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1431), - [aux_sym__val_number_decimal_token1] = ACTIONS(1431), - [aux_sym__val_number_decimal_token2] = ACTIONS(1431), - [aux_sym__val_number_decimal_token3] = ACTIONS(1431), - [aux_sym__val_number_decimal_token4] = ACTIONS(1431), - [aux_sym__val_number_token1] = ACTIONS(1431), - [aux_sym__val_number_token2] = ACTIONS(1431), - [aux_sym__val_number_token3] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(1431), - [sym__str_single_quotes] = ACTIONS(1431), - [sym__str_back_ticks] = ACTIONS(1431), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1431), - [sym__entry_separator] = ACTIONS(1441), - [anon_sym_PLUS] = ACTIONS(1431), + [anon_sym_export] = ACTIONS(1643), + [anon_sym_alias] = ACTIONS(1643), + [anon_sym_let] = ACTIONS(1643), + [anon_sym_let_DASHenv] = ACTIONS(1643), + [anon_sym_mut] = ACTIONS(1643), + [anon_sym_const] = ACTIONS(1643), + [aux_sym_cmd_identifier_token1] = ACTIONS(1643), + [aux_sym_cmd_identifier_token2] = ACTIONS(1643), + [aux_sym_cmd_identifier_token3] = ACTIONS(1643), + [aux_sym_cmd_identifier_token4] = ACTIONS(1643), + [aux_sym_cmd_identifier_token5] = ACTIONS(1643), + [aux_sym_cmd_identifier_token6] = ACTIONS(1643), + [aux_sym_cmd_identifier_token7] = ACTIONS(1643), + [aux_sym_cmd_identifier_token8] = ACTIONS(1643), + [aux_sym_cmd_identifier_token9] = ACTIONS(1643), + [aux_sym_cmd_identifier_token10] = ACTIONS(1643), + [aux_sym_cmd_identifier_token11] = ACTIONS(1643), + [aux_sym_cmd_identifier_token12] = ACTIONS(1643), + [aux_sym_cmd_identifier_token13] = ACTIONS(1643), + [aux_sym_cmd_identifier_token14] = ACTIONS(1643), + [aux_sym_cmd_identifier_token15] = ACTIONS(1643), + [aux_sym_cmd_identifier_token16] = ACTIONS(1643), + [aux_sym_cmd_identifier_token17] = ACTIONS(1643), + [aux_sym_cmd_identifier_token18] = ACTIONS(1643), + [aux_sym_cmd_identifier_token19] = ACTIONS(1643), + [aux_sym_cmd_identifier_token20] = ACTIONS(1643), + [aux_sym_cmd_identifier_token21] = ACTIONS(1643), + [aux_sym_cmd_identifier_token22] = ACTIONS(1643), + [aux_sym_cmd_identifier_token23] = ACTIONS(1643), + [aux_sym_cmd_identifier_token24] = ACTIONS(1643), + [aux_sym_cmd_identifier_token25] = ACTIONS(1643), + [aux_sym_cmd_identifier_token26] = ACTIONS(1643), + [aux_sym_cmd_identifier_token27] = ACTIONS(1643), + [aux_sym_cmd_identifier_token28] = ACTIONS(1643), + [aux_sym_cmd_identifier_token29] = ACTIONS(1643), + [aux_sym_cmd_identifier_token30] = ACTIONS(1643), + [aux_sym_cmd_identifier_token31] = ACTIONS(1643), + [aux_sym_cmd_identifier_token32] = ACTIONS(1643), + [aux_sym_cmd_identifier_token33] = ACTIONS(1643), + [aux_sym_cmd_identifier_token34] = ACTIONS(1643), + [aux_sym_cmd_identifier_token35] = ACTIONS(1643), + [aux_sym_cmd_identifier_token36] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_null] = ACTIONS(1643), + [aux_sym_cmd_identifier_token38] = ACTIONS(1643), + [aux_sym_cmd_identifier_token39] = ACTIONS(1643), + [aux_sym_cmd_identifier_token40] = ACTIONS(1643), + [anon_sym_def] = ACTIONS(1643), + [anon_sym_export_DASHenv] = ACTIONS(1643), + [anon_sym_extern] = ACTIONS(1643), + [anon_sym_module] = ACTIONS(1643), + [anon_sym_use] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(1643), + [anon_sym_error] = ACTIONS(1643), + [anon_sym_list] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_break] = ACTIONS(1643), + [anon_sym_continue] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_loop] = ACTIONS(1643), + [anon_sym_make] = ACTIONS(1643), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_do] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_else] = ACTIONS(1643), + [anon_sym_match] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), + [anon_sym_try] = ACTIONS(1643), + [anon_sym_catch] = ACTIONS(1643), + [anon_sym_return] = ACTIONS(1643), + [anon_sym_source] = ACTIONS(1643), + [anon_sym_source_DASHenv] = ACTIONS(1643), + [anon_sym_register] = ACTIONS(1643), + [anon_sym_hide] = ACTIONS(1643), + [anon_sym_hide_DASHenv] = ACTIONS(1643), + [anon_sym_overlay] = ACTIONS(1643), + [anon_sym_new] = ACTIONS(1643), + [anon_sym_as] = ACTIONS(1643), + [anon_sym_LPAREN2] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1643), + [anon_sym_DOT_DOT2] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), + [aux_sym__immediate_decimal_token2] = ACTIONS(1649), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1643), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1643), + [aux_sym__val_number_decimal_token3] = ACTIONS(1643), + [aux_sym__val_number_decimal_token4] = ACTIONS(1643), + [aux_sym__val_number_token1] = ACTIONS(1643), + [aux_sym__val_number_token2] = ACTIONS(1643), + [aux_sym__val_number_token3] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1643), + [sym__str_single_quotes] = ACTIONS(1643), + [sym__str_back_ticks] = ACTIONS(1643), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1643), + [sym__entry_separator] = ACTIONS(1645), + [anon_sym_PLUS] = ACTIONS(1643), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1643), [anon_sym_POUND] = ACTIONS(3), }, [207] = { - [sym__expr_parenthesized_immediate] = STATE(579), - [sym__immediate_decimal] = STATE(580), - [sym_val_variable] = STATE(579), + [sym_cell_path] = STATE(354), + [sym_path] = STATE(340), [sym_comment] = STATE(207), - [anon_sym_export] = ACTIONS(1551), - [anon_sym_alias] = ACTIONS(1551), - [anon_sym_let] = ACTIONS(1551), - [anon_sym_let_DASHenv] = ACTIONS(1551), - [anon_sym_mut] = ACTIONS(1551), - [anon_sym_const] = ACTIONS(1551), - [aux_sym_cmd_identifier_token1] = ACTIONS(1551), - [aux_sym_cmd_identifier_token2] = ACTIONS(1551), - [aux_sym_cmd_identifier_token3] = ACTIONS(1551), - [aux_sym_cmd_identifier_token4] = ACTIONS(1551), - [aux_sym_cmd_identifier_token5] = ACTIONS(1551), - [aux_sym_cmd_identifier_token6] = ACTIONS(1551), - [aux_sym_cmd_identifier_token7] = ACTIONS(1551), - [aux_sym_cmd_identifier_token8] = ACTIONS(1551), - [aux_sym_cmd_identifier_token9] = ACTIONS(1551), - [aux_sym_cmd_identifier_token10] = ACTIONS(1551), - [aux_sym_cmd_identifier_token11] = ACTIONS(1551), - [aux_sym_cmd_identifier_token12] = ACTIONS(1551), - [aux_sym_cmd_identifier_token13] = ACTIONS(1551), - [aux_sym_cmd_identifier_token14] = ACTIONS(1551), - [aux_sym_cmd_identifier_token15] = ACTIONS(1551), - [aux_sym_cmd_identifier_token16] = ACTIONS(1551), - [aux_sym_cmd_identifier_token17] = ACTIONS(1551), - [aux_sym_cmd_identifier_token18] = ACTIONS(1551), - [aux_sym_cmd_identifier_token19] = ACTIONS(1551), - [aux_sym_cmd_identifier_token20] = ACTIONS(1551), - [aux_sym_cmd_identifier_token21] = ACTIONS(1551), - [aux_sym_cmd_identifier_token22] = ACTIONS(1551), - [aux_sym_cmd_identifier_token23] = ACTIONS(1551), - [aux_sym_cmd_identifier_token24] = ACTIONS(1551), - [aux_sym_cmd_identifier_token25] = ACTIONS(1551), - [aux_sym_cmd_identifier_token26] = ACTIONS(1551), - [aux_sym_cmd_identifier_token27] = ACTIONS(1551), - [aux_sym_cmd_identifier_token28] = ACTIONS(1551), - [aux_sym_cmd_identifier_token29] = ACTIONS(1551), - [aux_sym_cmd_identifier_token30] = ACTIONS(1551), - [aux_sym_cmd_identifier_token31] = ACTIONS(1551), - [aux_sym_cmd_identifier_token32] = ACTIONS(1551), - [aux_sym_cmd_identifier_token33] = ACTIONS(1551), - [aux_sym_cmd_identifier_token34] = ACTIONS(1551), - [aux_sym_cmd_identifier_token35] = ACTIONS(1551), - [aux_sym_cmd_identifier_token36] = ACTIONS(1551), - [anon_sym_true] = ACTIONS(1551), - [anon_sym_false] = ACTIONS(1551), - [anon_sym_null] = ACTIONS(1551), - [aux_sym_cmd_identifier_token38] = ACTIONS(1551), - [aux_sym_cmd_identifier_token39] = ACTIONS(1551), - [aux_sym_cmd_identifier_token40] = ACTIONS(1551), - [anon_sym_def] = ACTIONS(1551), - [anon_sym_export_DASHenv] = ACTIONS(1551), - [anon_sym_extern] = ACTIONS(1551), - [anon_sym_module] = ACTIONS(1551), - [anon_sym_use] = ACTIONS(1551), - [anon_sym_LPAREN] = ACTIONS(1551), - [anon_sym_DOLLAR] = ACTIONS(1445), - [anon_sym_error] = ACTIONS(1551), - [anon_sym_list] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(1551), - [anon_sym_break] = ACTIONS(1551), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_for] = ACTIONS(1551), - [anon_sym_in] = ACTIONS(1551), - [anon_sym_loop] = ACTIONS(1551), - [anon_sym_make] = ACTIONS(1551), - [anon_sym_while] = ACTIONS(1551), - [anon_sym_do] = ACTIONS(1551), - [anon_sym_if] = ACTIONS(1551), - [anon_sym_else] = ACTIONS(1551), - [anon_sym_match] = ACTIONS(1551), - [anon_sym_RBRACE] = ACTIONS(1551), - [anon_sym_try] = ACTIONS(1551), - [anon_sym_catch] = ACTIONS(1551), - [anon_sym_return] = ACTIONS(1551), - [anon_sym_source] = ACTIONS(1551), - [anon_sym_source_DASHenv] = ACTIONS(1551), - [anon_sym_register] = ACTIONS(1551), - [anon_sym_hide] = ACTIONS(1551), - [anon_sym_hide_DASHenv] = ACTIONS(1551), - [anon_sym_overlay] = ACTIONS(1551), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_as] = ACTIONS(1551), - [anon_sym_LPAREN2] = ACTIONS(1447), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1551), - [aux_sym__immediate_decimal_token1] = ACTIONS(1503), - [aux_sym__immediate_decimal_token3] = ACTIONS(1503), - [aux_sym__immediate_decimal_token4] = ACTIONS(1505), - [aux_sym__immediate_decimal_token5] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1551), - [aux_sym__val_number_decimal_token1] = ACTIONS(1551), - [aux_sym__val_number_decimal_token2] = ACTIONS(1551), - [aux_sym__val_number_decimal_token3] = ACTIONS(1551), - [aux_sym__val_number_decimal_token4] = ACTIONS(1551), - [aux_sym__val_number_token1] = ACTIONS(1551), - [aux_sym__val_number_token2] = ACTIONS(1551), - [aux_sym__val_number_token3] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym__str_single_quotes] = ACTIONS(1551), - [sym__str_back_ticks] = ACTIONS(1551), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1551), - [sym__entry_separator] = ACTIONS(1553), - [anon_sym_PLUS] = ACTIONS(1551), + [aux_sym_cell_path_repeat1] = STATE(225), + [anon_sym_export] = ACTIONS(1011), + [anon_sym_alias] = ACTIONS(1011), + [anon_sym_let] = ACTIONS(1011), + [anon_sym_let_DASHenv] = ACTIONS(1011), + [anon_sym_mut] = ACTIONS(1011), + [anon_sym_const] = ACTIONS(1011), + [aux_sym_cmd_identifier_token1] = ACTIONS(1011), + [aux_sym_cmd_identifier_token2] = ACTIONS(1011), + [aux_sym_cmd_identifier_token3] = ACTIONS(1011), + [aux_sym_cmd_identifier_token4] = ACTIONS(1011), + [aux_sym_cmd_identifier_token5] = ACTIONS(1011), + [aux_sym_cmd_identifier_token6] = ACTIONS(1011), + [aux_sym_cmd_identifier_token7] = ACTIONS(1011), + [aux_sym_cmd_identifier_token8] = ACTIONS(1011), + [aux_sym_cmd_identifier_token9] = ACTIONS(1011), + [aux_sym_cmd_identifier_token10] = ACTIONS(1011), + [aux_sym_cmd_identifier_token11] = ACTIONS(1011), + [aux_sym_cmd_identifier_token12] = ACTIONS(1011), + [aux_sym_cmd_identifier_token13] = ACTIONS(1011), + [aux_sym_cmd_identifier_token14] = ACTIONS(1011), + [aux_sym_cmd_identifier_token15] = ACTIONS(1011), + [aux_sym_cmd_identifier_token16] = ACTIONS(1011), + [aux_sym_cmd_identifier_token17] = ACTIONS(1011), + [aux_sym_cmd_identifier_token18] = ACTIONS(1011), + [aux_sym_cmd_identifier_token19] = ACTIONS(1011), + [aux_sym_cmd_identifier_token20] = ACTIONS(1011), + [aux_sym_cmd_identifier_token21] = ACTIONS(1011), + [aux_sym_cmd_identifier_token22] = ACTIONS(1011), + [aux_sym_cmd_identifier_token23] = ACTIONS(1011), + [aux_sym_cmd_identifier_token24] = ACTIONS(1011), + [aux_sym_cmd_identifier_token25] = ACTIONS(1011), + [aux_sym_cmd_identifier_token26] = ACTIONS(1011), + [aux_sym_cmd_identifier_token27] = ACTIONS(1011), + [aux_sym_cmd_identifier_token28] = ACTIONS(1011), + [aux_sym_cmd_identifier_token29] = ACTIONS(1011), + [aux_sym_cmd_identifier_token30] = ACTIONS(1011), + [aux_sym_cmd_identifier_token31] = ACTIONS(1011), + [aux_sym_cmd_identifier_token32] = ACTIONS(1011), + [aux_sym_cmd_identifier_token33] = ACTIONS(1011), + [aux_sym_cmd_identifier_token34] = ACTIONS(1011), + [aux_sym_cmd_identifier_token35] = ACTIONS(1011), + [aux_sym_cmd_identifier_token36] = ACTIONS(1011), + [anon_sym_true] = ACTIONS(1011), + [anon_sym_false] = ACTIONS(1011), + [anon_sym_null] = ACTIONS(1011), + [aux_sym_cmd_identifier_token38] = ACTIONS(1011), + [aux_sym_cmd_identifier_token39] = ACTIONS(1011), + [aux_sym_cmd_identifier_token40] = ACTIONS(1011), + [anon_sym_def] = ACTIONS(1011), + [anon_sym_export_DASHenv] = ACTIONS(1011), + [anon_sym_extern] = ACTIONS(1011), + [anon_sym_module] = ACTIONS(1011), + [anon_sym_use] = ACTIONS(1011), + [anon_sym_LPAREN] = ACTIONS(1011), + [anon_sym_DOLLAR] = ACTIONS(1011), + [anon_sym_error] = ACTIONS(1011), + [anon_sym_list] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_break] = ACTIONS(1011), + [anon_sym_continue] = ACTIONS(1011), + [anon_sym_for] = ACTIONS(1011), + [anon_sym_in] = ACTIONS(1011), + [anon_sym_loop] = ACTIONS(1011), + [anon_sym_make] = ACTIONS(1011), + [anon_sym_while] = ACTIONS(1011), + [anon_sym_do] = ACTIONS(1011), + [anon_sym_if] = ACTIONS(1011), + [anon_sym_else] = ACTIONS(1011), + [anon_sym_match] = ACTIONS(1011), + [anon_sym_RBRACE] = ACTIONS(1011), + [anon_sym_try] = ACTIONS(1011), + [anon_sym_catch] = ACTIONS(1011), + [anon_sym_return] = ACTIONS(1011), + [anon_sym_source] = ACTIONS(1011), + [anon_sym_source_DASHenv] = ACTIONS(1011), + [anon_sym_register] = ACTIONS(1011), + [anon_sym_hide] = ACTIONS(1011), + [anon_sym_hide_DASHenv] = ACTIONS(1011), + [anon_sym_overlay] = ACTIONS(1011), + [anon_sym_new] = ACTIONS(1011), + [anon_sym_as] = ACTIONS(1011), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1011), + [anon_sym_DOT_DOT2] = ACTIONS(1011), + [anon_sym_DOT] = ACTIONS(1627), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1013), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1013), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1011), + [aux_sym__val_number_decimal_token1] = ACTIONS(1011), + [aux_sym__val_number_decimal_token2] = ACTIONS(1011), + [aux_sym__val_number_decimal_token3] = ACTIONS(1011), + [aux_sym__val_number_decimal_token4] = ACTIONS(1011), + [aux_sym__val_number_token1] = ACTIONS(1011), + [aux_sym__val_number_token2] = ACTIONS(1011), + [aux_sym__val_number_token3] = ACTIONS(1011), + [anon_sym_DQUOTE] = ACTIONS(1011), + [sym__str_single_quotes] = ACTIONS(1011), + [sym__str_back_ticks] = ACTIONS(1011), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1011), + [sym__entry_separator] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(3), }, [208] = { - [sym__expr_parenthesized_immediate] = STATE(581), - [sym__immediate_decimal] = STATE(582), - [sym_val_variable] = STATE(581), [sym_comment] = STATE(208), - [anon_sym_export] = ACTIONS(1555), - [anon_sym_alias] = ACTIONS(1555), - [anon_sym_let] = ACTIONS(1555), - [anon_sym_let_DASHenv] = ACTIONS(1555), - [anon_sym_mut] = ACTIONS(1555), - [anon_sym_const] = ACTIONS(1555), - [aux_sym_cmd_identifier_token1] = ACTIONS(1555), - [aux_sym_cmd_identifier_token2] = ACTIONS(1555), - [aux_sym_cmd_identifier_token3] = ACTIONS(1555), - [aux_sym_cmd_identifier_token4] = ACTIONS(1555), - [aux_sym_cmd_identifier_token5] = ACTIONS(1555), - [aux_sym_cmd_identifier_token6] = ACTIONS(1555), - [aux_sym_cmd_identifier_token7] = ACTIONS(1555), - [aux_sym_cmd_identifier_token8] = ACTIONS(1555), - [aux_sym_cmd_identifier_token9] = ACTIONS(1555), - [aux_sym_cmd_identifier_token10] = ACTIONS(1555), - [aux_sym_cmd_identifier_token11] = ACTIONS(1555), - [aux_sym_cmd_identifier_token12] = ACTIONS(1555), - [aux_sym_cmd_identifier_token13] = ACTIONS(1555), - [aux_sym_cmd_identifier_token14] = ACTIONS(1555), - [aux_sym_cmd_identifier_token15] = ACTIONS(1555), - [aux_sym_cmd_identifier_token16] = ACTIONS(1555), - [aux_sym_cmd_identifier_token17] = ACTIONS(1555), - [aux_sym_cmd_identifier_token18] = ACTIONS(1555), - [aux_sym_cmd_identifier_token19] = ACTIONS(1555), - [aux_sym_cmd_identifier_token20] = ACTIONS(1555), - [aux_sym_cmd_identifier_token21] = ACTIONS(1555), - [aux_sym_cmd_identifier_token22] = ACTIONS(1555), - [aux_sym_cmd_identifier_token23] = ACTIONS(1555), - [aux_sym_cmd_identifier_token24] = ACTIONS(1555), - [aux_sym_cmd_identifier_token25] = ACTIONS(1555), - [aux_sym_cmd_identifier_token26] = ACTIONS(1555), - [aux_sym_cmd_identifier_token27] = ACTIONS(1555), - [aux_sym_cmd_identifier_token28] = ACTIONS(1555), - [aux_sym_cmd_identifier_token29] = ACTIONS(1555), - [aux_sym_cmd_identifier_token30] = ACTIONS(1555), - [aux_sym_cmd_identifier_token31] = ACTIONS(1555), - [aux_sym_cmd_identifier_token32] = ACTIONS(1555), - [aux_sym_cmd_identifier_token33] = ACTIONS(1555), - [aux_sym_cmd_identifier_token34] = ACTIONS(1555), - [aux_sym_cmd_identifier_token35] = ACTIONS(1555), - [aux_sym_cmd_identifier_token36] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(1555), - [anon_sym_false] = ACTIONS(1555), - [anon_sym_null] = ACTIONS(1555), - [aux_sym_cmd_identifier_token38] = ACTIONS(1555), - [aux_sym_cmd_identifier_token39] = ACTIONS(1555), - [aux_sym_cmd_identifier_token40] = ACTIONS(1555), - [anon_sym_def] = ACTIONS(1555), - [anon_sym_export_DASHenv] = ACTIONS(1555), - [anon_sym_extern] = ACTIONS(1555), - [anon_sym_module] = ACTIONS(1555), - [anon_sym_use] = ACTIONS(1555), - [anon_sym_LPAREN] = ACTIONS(1555), - [anon_sym_DOLLAR] = ACTIONS(1445), - [anon_sym_error] = ACTIONS(1555), - [anon_sym_list] = ACTIONS(1555), - [anon_sym_DASH] = ACTIONS(1555), - [anon_sym_break] = ACTIONS(1555), - [anon_sym_continue] = ACTIONS(1555), - [anon_sym_for] = ACTIONS(1555), - [anon_sym_in] = ACTIONS(1555), - [anon_sym_loop] = ACTIONS(1555), - [anon_sym_make] = ACTIONS(1555), - [anon_sym_while] = ACTIONS(1555), - [anon_sym_do] = ACTIONS(1555), - [anon_sym_if] = ACTIONS(1555), - [anon_sym_else] = ACTIONS(1555), - [anon_sym_match] = ACTIONS(1555), - [anon_sym_RBRACE] = ACTIONS(1555), - [anon_sym_try] = ACTIONS(1555), - [anon_sym_catch] = ACTIONS(1555), - [anon_sym_return] = ACTIONS(1555), - [anon_sym_source] = ACTIONS(1555), - [anon_sym_source_DASHenv] = ACTIONS(1555), - [anon_sym_register] = ACTIONS(1555), - [anon_sym_hide] = ACTIONS(1555), - [anon_sym_hide_DASHenv] = ACTIONS(1555), - [anon_sym_overlay] = ACTIONS(1555), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_as] = ACTIONS(1555), - [anon_sym_LPAREN2] = ACTIONS(1447), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1555), - [aux_sym__immediate_decimal_token1] = ACTIONS(1503), - [aux_sym__immediate_decimal_token3] = ACTIONS(1503), - [aux_sym__immediate_decimal_token4] = ACTIONS(1505), - [aux_sym__immediate_decimal_token5] = ACTIONS(1507), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1555), - [aux_sym__val_number_decimal_token1] = ACTIONS(1555), - [aux_sym__val_number_decimal_token2] = ACTIONS(1555), - [aux_sym__val_number_decimal_token3] = ACTIONS(1555), - [aux_sym__val_number_decimal_token4] = ACTIONS(1555), - [aux_sym__val_number_token1] = ACTIONS(1555), - [aux_sym__val_number_token2] = ACTIONS(1555), - [aux_sym__val_number_token3] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(1555), - [sym__str_single_quotes] = ACTIONS(1555), - [sym__str_back_ticks] = ACTIONS(1555), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1555), - [sym__entry_separator] = ACTIONS(1557), - [anon_sym_PLUS] = ACTIONS(1555), + [anon_sym_export] = ACTIONS(1517), + [anon_sym_alias] = ACTIONS(1517), + [anon_sym_let] = ACTIONS(1517), + [anon_sym_let_DASHenv] = ACTIONS(1517), + [anon_sym_mut] = ACTIONS(1517), + [anon_sym_const] = ACTIONS(1517), + [aux_sym_cmd_identifier_token1] = ACTIONS(1517), + [aux_sym_cmd_identifier_token2] = ACTIONS(1517), + [aux_sym_cmd_identifier_token3] = ACTIONS(1517), + [aux_sym_cmd_identifier_token4] = ACTIONS(1517), + [aux_sym_cmd_identifier_token5] = ACTIONS(1517), + [aux_sym_cmd_identifier_token6] = ACTIONS(1517), + [aux_sym_cmd_identifier_token7] = ACTIONS(1517), + [aux_sym_cmd_identifier_token8] = ACTIONS(1517), + [aux_sym_cmd_identifier_token9] = ACTIONS(1517), + [aux_sym_cmd_identifier_token10] = ACTIONS(1517), + [aux_sym_cmd_identifier_token11] = ACTIONS(1517), + [aux_sym_cmd_identifier_token12] = ACTIONS(1517), + [aux_sym_cmd_identifier_token13] = ACTIONS(1517), + [aux_sym_cmd_identifier_token14] = ACTIONS(1517), + [aux_sym_cmd_identifier_token15] = ACTIONS(1517), + [aux_sym_cmd_identifier_token16] = ACTIONS(1517), + [aux_sym_cmd_identifier_token17] = ACTIONS(1517), + [aux_sym_cmd_identifier_token18] = ACTIONS(1517), + [aux_sym_cmd_identifier_token19] = ACTIONS(1517), + [aux_sym_cmd_identifier_token20] = ACTIONS(1517), + [aux_sym_cmd_identifier_token21] = ACTIONS(1517), + [aux_sym_cmd_identifier_token22] = ACTIONS(1517), + [aux_sym_cmd_identifier_token23] = ACTIONS(1517), + [aux_sym_cmd_identifier_token24] = ACTIONS(1517), + [aux_sym_cmd_identifier_token25] = ACTIONS(1517), + [aux_sym_cmd_identifier_token26] = ACTIONS(1517), + [aux_sym_cmd_identifier_token27] = ACTIONS(1517), + [aux_sym_cmd_identifier_token28] = ACTIONS(1517), + [aux_sym_cmd_identifier_token29] = ACTIONS(1517), + [aux_sym_cmd_identifier_token30] = ACTIONS(1517), + [aux_sym_cmd_identifier_token31] = ACTIONS(1517), + [aux_sym_cmd_identifier_token32] = ACTIONS(1517), + [aux_sym_cmd_identifier_token33] = ACTIONS(1517), + [aux_sym_cmd_identifier_token34] = ACTIONS(1517), + [aux_sym_cmd_identifier_token35] = ACTIONS(1517), + [aux_sym_cmd_identifier_token36] = ACTIONS(1517), + [anon_sym_true] = ACTIONS(1517), + [anon_sym_false] = ACTIONS(1517), + [anon_sym_null] = ACTIONS(1517), + [aux_sym_cmd_identifier_token38] = ACTIONS(1517), + [aux_sym_cmd_identifier_token39] = ACTIONS(1517), + [aux_sym_cmd_identifier_token40] = ACTIONS(1517), + [anon_sym_def] = ACTIONS(1517), + [anon_sym_export_DASHenv] = ACTIONS(1517), + [anon_sym_extern] = ACTIONS(1517), + [anon_sym_module] = ACTIONS(1517), + [anon_sym_use] = ACTIONS(1517), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_DOLLAR] = ACTIONS(1517), + [anon_sym_error] = ACTIONS(1517), + [anon_sym_list] = ACTIONS(1517), + [anon_sym_DASH] = ACTIONS(1517), + [anon_sym_break] = ACTIONS(1517), + [anon_sym_continue] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1517), + [anon_sym_in] = ACTIONS(1517), + [anon_sym_loop] = ACTIONS(1517), + [anon_sym_make] = ACTIONS(1517), + [anon_sym_while] = ACTIONS(1517), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_if] = ACTIONS(1517), + [anon_sym_else] = ACTIONS(1517), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_RBRACE] = ACTIONS(1517), + [anon_sym_try] = ACTIONS(1517), + [anon_sym_catch] = ACTIONS(1517), + [anon_sym_return] = ACTIONS(1517), + [anon_sym_source] = ACTIONS(1517), + [anon_sym_source_DASHenv] = ACTIONS(1517), + [anon_sym_register] = ACTIONS(1517), + [anon_sym_hide] = ACTIONS(1517), + [anon_sym_hide_DASHenv] = ACTIONS(1517), + [anon_sym_overlay] = ACTIONS(1517), + [anon_sym_new] = ACTIONS(1517), + [anon_sym_as] = ACTIONS(1517), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1517), + [anon_sym_DOT_DOT2] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1517), + [aux_sym__val_number_decimal_token1] = ACTIONS(1517), + [aux_sym__val_number_decimal_token2] = ACTIONS(1517), + [aux_sym__val_number_decimal_token3] = ACTIONS(1517), + [aux_sym__val_number_decimal_token4] = ACTIONS(1517), + [aux_sym__val_number_token1] = ACTIONS(1517), + [aux_sym__val_number_token2] = ACTIONS(1517), + [aux_sym__val_number_token3] = ACTIONS(1517), + [sym_filesize_unit] = ACTIONS(1517), + [sym_duration_unit] = ACTIONS(1517), + [anon_sym_DQUOTE] = ACTIONS(1517), + [sym__str_single_quotes] = ACTIONS(1517), + [sym__str_back_ticks] = ACTIONS(1517), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1517), + [sym__entry_separator] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1517), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1517), [anon_sym_POUND] = ACTIONS(3), }, [209] = { - [sym__expr_parenthesized_immediate] = STATE(7625), [sym_comment] = STATE(209), - [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), - [aux_sym_cmd_identifier_token1] = ACTIONS(1525), - [aux_sym_cmd_identifier_token2] = ACTIONS(1525), - [aux_sym_cmd_identifier_token3] = ACTIONS(1525), - [aux_sym_cmd_identifier_token4] = ACTIONS(1525), - [aux_sym_cmd_identifier_token5] = ACTIONS(1525), - [aux_sym_cmd_identifier_token6] = ACTIONS(1525), - [aux_sym_cmd_identifier_token7] = ACTIONS(1525), - [aux_sym_cmd_identifier_token8] = ACTIONS(1525), - [aux_sym_cmd_identifier_token9] = ACTIONS(1525), - [aux_sym_cmd_identifier_token10] = ACTIONS(1525), - [aux_sym_cmd_identifier_token11] = ACTIONS(1525), - [aux_sym_cmd_identifier_token12] = ACTIONS(1525), - [aux_sym_cmd_identifier_token13] = ACTIONS(1525), - [aux_sym_cmd_identifier_token14] = ACTIONS(1525), - [aux_sym_cmd_identifier_token15] = ACTIONS(1525), - [aux_sym_cmd_identifier_token16] = ACTIONS(1525), - [aux_sym_cmd_identifier_token17] = ACTIONS(1525), - [aux_sym_cmd_identifier_token18] = ACTIONS(1525), - [aux_sym_cmd_identifier_token19] = ACTIONS(1525), - [aux_sym_cmd_identifier_token20] = ACTIONS(1525), - [aux_sym_cmd_identifier_token21] = ACTIONS(1525), - [aux_sym_cmd_identifier_token22] = ACTIONS(1525), - [aux_sym_cmd_identifier_token23] = ACTIONS(1525), - [aux_sym_cmd_identifier_token24] = ACTIONS(1525), - [aux_sym_cmd_identifier_token25] = ACTIONS(1525), - [aux_sym_cmd_identifier_token26] = ACTIONS(1525), - [aux_sym_cmd_identifier_token27] = ACTIONS(1525), - [aux_sym_cmd_identifier_token28] = ACTIONS(1525), - [aux_sym_cmd_identifier_token29] = ACTIONS(1525), - [aux_sym_cmd_identifier_token30] = ACTIONS(1525), - [aux_sym_cmd_identifier_token31] = ACTIONS(1525), - [aux_sym_cmd_identifier_token32] = ACTIONS(1525), - [aux_sym_cmd_identifier_token33] = ACTIONS(1525), - [aux_sym_cmd_identifier_token34] = ACTIONS(1525), - [aux_sym_cmd_identifier_token35] = ACTIONS(1525), - [aux_sym_cmd_identifier_token36] = ACTIONS(1525), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_null] = ACTIONS(1537), - [aux_sym_cmd_identifier_token38] = ACTIONS(1525), - [aux_sym_cmd_identifier_token39] = ACTIONS(1537), - [aux_sym_cmd_identifier_token40] = ACTIONS(1537), - [anon_sym_def] = 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_LPAREN] = ACTIONS(1525), - [anon_sym_DOLLAR] = ACTIONS(1537), - [anon_sym_error] = ACTIONS(1525), - [anon_sym_list] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_break] = ACTIONS(1525), - [anon_sym_continue] = ACTIONS(1525), - [anon_sym_for] = ACTIONS(1525), - [anon_sym_in] = ACTIONS(1525), - [anon_sym_loop] = ACTIONS(1525), - [anon_sym_make] = ACTIONS(1525), - [anon_sym_while] = ACTIONS(1525), - [anon_sym_do] = ACTIONS(1525), - [anon_sym_if] = ACTIONS(1525), - [anon_sym_else] = ACTIONS(1525), - [anon_sym_match] = ACTIONS(1525), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_try] = ACTIONS(1525), - [anon_sym_catch] = 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_new] = ACTIONS(1525), - [anon_sym_as] = ACTIONS(1525), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(1559), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1561), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1561), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1537), - [aux_sym__val_number_decimal_token1] = ACTIONS(1525), - [aux_sym__val_number_decimal_token2] = ACTIONS(1537), - [aux_sym__val_number_decimal_token3] = ACTIONS(1537), - [aux_sym__val_number_decimal_token4] = ACTIONS(1537), - [aux_sym__val_number_token1] = ACTIONS(1537), - [aux_sym__val_number_token2] = ACTIONS(1537), - [aux_sym__val_number_token3] = ACTIONS(1537), - [sym_filesize_unit] = ACTIONS(1563), - [sym_duration_unit] = ACTIONS(1565), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym__str_single_quotes] = ACTIONS(1537), - [sym__str_back_ticks] = ACTIONS(1537), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1525), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1567), + [aux_sym__block_body_repeat1] = STATE(210), + [anon_sym_export] = ACTIONS(1651), + [anon_sym_alias] = ACTIONS(1651), + [anon_sym_let] = ACTIONS(1651), + [anon_sym_let_DASHenv] = ACTIONS(1651), + [anon_sym_mut] = ACTIONS(1651), + [anon_sym_const] = ACTIONS(1651), + [aux_sym_cmd_identifier_token1] = ACTIONS(1651), + [aux_sym_cmd_identifier_token2] = ACTIONS(1651), + [aux_sym_cmd_identifier_token3] = ACTIONS(1651), + [aux_sym_cmd_identifier_token4] = ACTIONS(1651), + [aux_sym_cmd_identifier_token5] = ACTIONS(1651), + [aux_sym_cmd_identifier_token6] = ACTIONS(1651), + [aux_sym_cmd_identifier_token7] = ACTIONS(1651), + [aux_sym_cmd_identifier_token8] = ACTIONS(1651), + [aux_sym_cmd_identifier_token9] = ACTIONS(1651), + [aux_sym_cmd_identifier_token10] = ACTIONS(1651), + [aux_sym_cmd_identifier_token11] = ACTIONS(1651), + [aux_sym_cmd_identifier_token12] = ACTIONS(1651), + [aux_sym_cmd_identifier_token13] = ACTIONS(1651), + [aux_sym_cmd_identifier_token14] = ACTIONS(1651), + [aux_sym_cmd_identifier_token15] = ACTIONS(1651), + [aux_sym_cmd_identifier_token16] = ACTIONS(1651), + [aux_sym_cmd_identifier_token17] = ACTIONS(1651), + [aux_sym_cmd_identifier_token18] = ACTIONS(1651), + [aux_sym_cmd_identifier_token19] = ACTIONS(1651), + [aux_sym_cmd_identifier_token20] = ACTIONS(1651), + [aux_sym_cmd_identifier_token21] = ACTIONS(1651), + [aux_sym_cmd_identifier_token22] = ACTIONS(1651), + [aux_sym_cmd_identifier_token23] = ACTIONS(1651), + [aux_sym_cmd_identifier_token24] = ACTIONS(1653), + [aux_sym_cmd_identifier_token25] = ACTIONS(1651), + [aux_sym_cmd_identifier_token26] = ACTIONS(1653), + [aux_sym_cmd_identifier_token27] = ACTIONS(1651), + [aux_sym_cmd_identifier_token28] = ACTIONS(1651), + [aux_sym_cmd_identifier_token29] = ACTIONS(1651), + [aux_sym_cmd_identifier_token30] = ACTIONS(1651), + [aux_sym_cmd_identifier_token31] = ACTIONS(1653), + [aux_sym_cmd_identifier_token32] = ACTIONS(1653), + [aux_sym_cmd_identifier_token33] = ACTIONS(1653), + [aux_sym_cmd_identifier_token34] = ACTIONS(1653), + [aux_sym_cmd_identifier_token35] = ACTIONS(1653), + [aux_sym_cmd_identifier_token36] = ACTIONS(1651), + [anon_sym_true] = ACTIONS(1653), + [anon_sym_false] = ACTIONS(1653), + [anon_sym_null] = ACTIONS(1653), + [aux_sym_cmd_identifier_token38] = ACTIONS(1651), + [aux_sym_cmd_identifier_token39] = ACTIONS(1653), + [aux_sym_cmd_identifier_token40] = ACTIONS(1653), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(1651), + [anon_sym_export_DASHenv] = ACTIONS(1651), + [anon_sym_extern] = ACTIONS(1651), + [anon_sym_module] = ACTIONS(1651), + [anon_sym_use] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_RPAREN] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1651), + [anon_sym_error] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(1651), + [anon_sym_break] = ACTIONS(1651), + [anon_sym_continue] = ACTIONS(1651), + [anon_sym_for] = ACTIONS(1651), + [anon_sym_loop] = ACTIONS(1651), + [anon_sym_while] = ACTIONS(1651), + [anon_sym_do] = ACTIONS(1651), + [anon_sym_if] = ACTIONS(1651), + [anon_sym_match] = ACTIONS(1651), + [aux_sym_ctrl_match_token1] = ACTIONS(1653), + [anon_sym_RBRACE] = ACTIONS(1655), + [anon_sym_DOT_DOT] = ACTIONS(1651), + [anon_sym_try] = ACTIONS(1651), + [anon_sym_return] = ACTIONS(1651), + [anon_sym_source] = ACTIONS(1651), + [anon_sym_source_DASHenv] = ACTIONS(1651), + [anon_sym_register] = ACTIONS(1651), + [anon_sym_hide] = ACTIONS(1651), + [anon_sym_hide_DASHenv] = ACTIONS(1651), + [anon_sym_overlay] = ACTIONS(1651), + [anon_sym_where] = ACTIONS(1653), + [aux_sym_expr_unary_token1] = ACTIONS(1653), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1653), + [anon_sym_DOT_DOT_LT] = ACTIONS(1653), + [aux_sym__val_number_decimal_token1] = ACTIONS(1651), + [aux_sym__val_number_decimal_token2] = ACTIONS(1653), + [aux_sym__val_number_decimal_token3] = ACTIONS(1653), + [aux_sym__val_number_decimal_token4] = ACTIONS(1653), + [aux_sym__val_number_token1] = ACTIONS(1653), + [aux_sym__val_number_token2] = ACTIONS(1653), + [aux_sym__val_number_token3] = ACTIONS(1653), + [anon_sym_0b] = ACTIONS(1651), + [anon_sym_0o] = ACTIONS(1651), + [anon_sym_0x] = ACTIONS(1651), + [sym_val_date] = ACTIONS(1653), + [anon_sym_DQUOTE] = ACTIONS(1653), + [sym__str_single_quotes] = ACTIONS(1653), + [sym__str_back_ticks] = ACTIONS(1653), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1653), + [aux_sym_env_var_token1] = ACTIONS(1651), + [anon_sym_CARET] = ACTIONS(1653), [anon_sym_POUND] = ACTIONS(247), }, [210] = { [sym_comment] = STATE(210), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_alias] = ACTIONS(1569), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_let_DASHenv] = ACTIONS(1569), - [anon_sym_mut] = ACTIONS(1569), - [anon_sym_const] = ACTIONS(1569), - [aux_sym_cmd_identifier_token1] = ACTIONS(1569), - [aux_sym_cmd_identifier_token2] = ACTIONS(1569), - [aux_sym_cmd_identifier_token3] = ACTIONS(1569), - [aux_sym_cmd_identifier_token4] = ACTIONS(1569), - [aux_sym_cmd_identifier_token5] = ACTIONS(1569), - [aux_sym_cmd_identifier_token6] = ACTIONS(1569), - [aux_sym_cmd_identifier_token7] = ACTIONS(1569), - [aux_sym_cmd_identifier_token8] = ACTIONS(1569), - [aux_sym_cmd_identifier_token9] = ACTIONS(1569), - [aux_sym_cmd_identifier_token10] = ACTIONS(1569), - [aux_sym_cmd_identifier_token11] = ACTIONS(1569), - [aux_sym_cmd_identifier_token12] = ACTIONS(1569), - [aux_sym_cmd_identifier_token13] = ACTIONS(1569), - [aux_sym_cmd_identifier_token14] = ACTIONS(1569), - [aux_sym_cmd_identifier_token15] = ACTIONS(1569), - [aux_sym_cmd_identifier_token16] = ACTIONS(1569), - [aux_sym_cmd_identifier_token17] = ACTIONS(1569), - [aux_sym_cmd_identifier_token18] = ACTIONS(1569), - [aux_sym_cmd_identifier_token19] = ACTIONS(1569), - [aux_sym_cmd_identifier_token20] = ACTIONS(1569), - [aux_sym_cmd_identifier_token21] = ACTIONS(1569), - [aux_sym_cmd_identifier_token22] = ACTIONS(1569), - [aux_sym_cmd_identifier_token23] = ACTIONS(1569), - [aux_sym_cmd_identifier_token24] = ACTIONS(1569), - [aux_sym_cmd_identifier_token25] = ACTIONS(1569), - [aux_sym_cmd_identifier_token26] = ACTIONS(1569), - [aux_sym_cmd_identifier_token27] = ACTIONS(1569), - [aux_sym_cmd_identifier_token28] = ACTIONS(1569), - [aux_sym_cmd_identifier_token29] = ACTIONS(1569), - [aux_sym_cmd_identifier_token30] = ACTIONS(1569), - [aux_sym_cmd_identifier_token31] = ACTIONS(1569), - [aux_sym_cmd_identifier_token32] = ACTIONS(1569), - [aux_sym_cmd_identifier_token33] = ACTIONS(1569), - [aux_sym_cmd_identifier_token34] = ACTIONS(1569), - [aux_sym_cmd_identifier_token35] = ACTIONS(1569), - [aux_sym_cmd_identifier_token36] = ACTIONS(1569), - [anon_sym_true] = ACTIONS(1569), - [anon_sym_false] = ACTIONS(1569), - [anon_sym_null] = ACTIONS(1569), - [aux_sym_cmd_identifier_token38] = ACTIONS(1569), - [aux_sym_cmd_identifier_token39] = ACTIONS(1569), - [aux_sym_cmd_identifier_token40] = ACTIONS(1569), - [anon_sym_def] = ACTIONS(1569), - [anon_sym_export_DASHenv] = ACTIONS(1569), - [anon_sym_extern] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_use] = ACTIONS(1569), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_DOLLAR] = ACTIONS(1569), - [anon_sym_error] = ACTIONS(1569), - [anon_sym_list] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_break] = ACTIONS(1569), - [anon_sym_continue] = ACTIONS(1569), - [anon_sym_for] = ACTIONS(1569), - [anon_sym_in] = ACTIONS(1569), - [anon_sym_loop] = ACTIONS(1569), - [anon_sym_make] = ACTIONS(1569), - [anon_sym_while] = ACTIONS(1569), - [anon_sym_do] = ACTIONS(1569), - [anon_sym_if] = ACTIONS(1569), - [anon_sym_else] = ACTIONS(1569), - [anon_sym_match] = ACTIONS(1569), - [anon_sym_RBRACE] = ACTIONS(1569), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_catch] = ACTIONS(1569), - [anon_sym_return] = ACTIONS(1569), - [anon_sym_source] = ACTIONS(1569), - [anon_sym_source_DASHenv] = ACTIONS(1569), - [anon_sym_register] = ACTIONS(1569), - [anon_sym_hide] = ACTIONS(1569), - [anon_sym_hide_DASHenv] = ACTIONS(1569), - [anon_sym_overlay] = ACTIONS(1569), - [anon_sym_new] = ACTIONS(1569), - [anon_sym_as] = ACTIONS(1569), - [anon_sym_LPAREN2] = ACTIONS(1571), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1569), - [anon_sym_DOT_DOT2] = ACTIONS(1569), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1571), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1571), - [aux_sym__immediate_decimal_token1] = ACTIONS(1573), - [aux_sym__immediate_decimal_token2] = ACTIONS(1575), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1569), - [aux_sym__val_number_decimal_token1] = ACTIONS(1569), - [aux_sym__val_number_decimal_token2] = ACTIONS(1569), - [aux_sym__val_number_decimal_token3] = ACTIONS(1569), - [aux_sym__val_number_decimal_token4] = ACTIONS(1569), - [aux_sym__val_number_token1] = ACTIONS(1569), - [aux_sym__val_number_token2] = ACTIONS(1569), - [aux_sym__val_number_token3] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(1569), - [sym__str_single_quotes] = ACTIONS(1569), - [sym__str_back_ticks] = ACTIONS(1569), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1569), - [sym__entry_separator] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1569), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1569), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__block_body_repeat1] = STATE(210), + [anon_sym_export] = ACTIONS(1657), + [anon_sym_alias] = ACTIONS(1657), + [anon_sym_let] = ACTIONS(1657), + [anon_sym_let_DASHenv] = ACTIONS(1657), + [anon_sym_mut] = ACTIONS(1657), + [anon_sym_const] = ACTIONS(1657), + [aux_sym_cmd_identifier_token1] = ACTIONS(1657), + [aux_sym_cmd_identifier_token2] = ACTIONS(1657), + [aux_sym_cmd_identifier_token3] = ACTIONS(1657), + [aux_sym_cmd_identifier_token4] = ACTIONS(1657), + [aux_sym_cmd_identifier_token5] = ACTIONS(1657), + [aux_sym_cmd_identifier_token6] = ACTIONS(1657), + [aux_sym_cmd_identifier_token7] = ACTIONS(1657), + [aux_sym_cmd_identifier_token8] = ACTIONS(1657), + [aux_sym_cmd_identifier_token9] = ACTIONS(1657), + [aux_sym_cmd_identifier_token10] = ACTIONS(1657), + [aux_sym_cmd_identifier_token11] = ACTIONS(1657), + [aux_sym_cmd_identifier_token12] = ACTIONS(1657), + [aux_sym_cmd_identifier_token13] = ACTIONS(1657), + [aux_sym_cmd_identifier_token14] = ACTIONS(1657), + [aux_sym_cmd_identifier_token15] = ACTIONS(1657), + [aux_sym_cmd_identifier_token16] = ACTIONS(1657), + [aux_sym_cmd_identifier_token17] = ACTIONS(1657), + [aux_sym_cmd_identifier_token18] = ACTIONS(1657), + [aux_sym_cmd_identifier_token19] = ACTIONS(1657), + [aux_sym_cmd_identifier_token20] = ACTIONS(1657), + [aux_sym_cmd_identifier_token21] = ACTIONS(1657), + [aux_sym_cmd_identifier_token22] = ACTIONS(1657), + [aux_sym_cmd_identifier_token23] = ACTIONS(1657), + [aux_sym_cmd_identifier_token24] = ACTIONS(1659), + [aux_sym_cmd_identifier_token25] = ACTIONS(1657), + [aux_sym_cmd_identifier_token26] = ACTIONS(1659), + [aux_sym_cmd_identifier_token27] = ACTIONS(1657), + [aux_sym_cmd_identifier_token28] = ACTIONS(1657), + [aux_sym_cmd_identifier_token29] = ACTIONS(1657), + [aux_sym_cmd_identifier_token30] = ACTIONS(1657), + [aux_sym_cmd_identifier_token31] = ACTIONS(1659), + [aux_sym_cmd_identifier_token32] = ACTIONS(1659), + [aux_sym_cmd_identifier_token33] = ACTIONS(1659), + [aux_sym_cmd_identifier_token34] = ACTIONS(1659), + [aux_sym_cmd_identifier_token35] = ACTIONS(1659), + [aux_sym_cmd_identifier_token36] = ACTIONS(1657), + [anon_sym_true] = ACTIONS(1659), + [anon_sym_false] = ACTIONS(1659), + [anon_sym_null] = ACTIONS(1659), + [aux_sym_cmd_identifier_token38] = ACTIONS(1657), + [aux_sym_cmd_identifier_token39] = ACTIONS(1659), + [aux_sym_cmd_identifier_token40] = ACTIONS(1659), + [sym__newline] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_def] = ACTIONS(1657), + [anon_sym_export_DASHenv] = ACTIONS(1657), + [anon_sym_extern] = ACTIONS(1657), + [anon_sym_module] = ACTIONS(1657), + [anon_sym_use] = ACTIONS(1657), + [anon_sym_LBRACK] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_RPAREN] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1657), + [anon_sym_error] = ACTIONS(1657), + [anon_sym_DASH] = ACTIONS(1657), + [anon_sym_break] = ACTIONS(1657), + [anon_sym_continue] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1657), + [anon_sym_loop] = ACTIONS(1657), + [anon_sym_while] = ACTIONS(1657), + [anon_sym_do] = ACTIONS(1657), + [anon_sym_if] = ACTIONS(1657), + [anon_sym_match] = ACTIONS(1657), + [aux_sym_ctrl_match_token1] = ACTIONS(1659), + [anon_sym_RBRACE] = ACTIONS(1659), + [anon_sym_DOT_DOT] = ACTIONS(1657), + [anon_sym_try] = ACTIONS(1657), + [anon_sym_return] = ACTIONS(1657), + [anon_sym_source] = ACTIONS(1657), + [anon_sym_source_DASHenv] = ACTIONS(1657), + [anon_sym_register] = ACTIONS(1657), + [anon_sym_hide] = ACTIONS(1657), + [anon_sym_hide_DASHenv] = ACTIONS(1657), + [anon_sym_overlay] = ACTIONS(1657), + [anon_sym_where] = ACTIONS(1659), + [aux_sym_expr_unary_token1] = ACTIONS(1659), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1659), + [anon_sym_DOT_DOT_LT] = ACTIONS(1659), + [aux_sym__val_number_decimal_token1] = ACTIONS(1657), + [aux_sym__val_number_decimal_token2] = ACTIONS(1659), + [aux_sym__val_number_decimal_token3] = ACTIONS(1659), + [aux_sym__val_number_decimal_token4] = ACTIONS(1659), + [aux_sym__val_number_token1] = ACTIONS(1659), + [aux_sym__val_number_token2] = ACTIONS(1659), + [aux_sym__val_number_token3] = ACTIONS(1659), + [anon_sym_0b] = ACTIONS(1657), + [anon_sym_0o] = ACTIONS(1657), + [anon_sym_0x] = ACTIONS(1657), + [sym_val_date] = ACTIONS(1659), + [anon_sym_DQUOTE] = ACTIONS(1659), + [sym__str_single_quotes] = ACTIONS(1659), + [sym__str_back_ticks] = ACTIONS(1659), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1659), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1659), + [aux_sym_env_var_token1] = ACTIONS(1657), + [anon_sym_CARET] = ACTIONS(1659), + [anon_sym_POUND] = ACTIONS(247), }, [211] = { [sym_comment] = STATE(211), - [anon_sym_export] = ACTIONS(1473), - [anon_sym_alias] = ACTIONS(1473), - [anon_sym_let] = ACTIONS(1473), - [anon_sym_let_DASHenv] = ACTIONS(1473), - [anon_sym_mut] = ACTIONS(1473), - [anon_sym_const] = ACTIONS(1473), - [aux_sym_cmd_identifier_token1] = ACTIONS(1473), - [aux_sym_cmd_identifier_token2] = ACTIONS(1473), - [aux_sym_cmd_identifier_token3] = ACTIONS(1473), - [aux_sym_cmd_identifier_token4] = ACTIONS(1473), - [aux_sym_cmd_identifier_token5] = ACTIONS(1473), - [aux_sym_cmd_identifier_token6] = ACTIONS(1473), - [aux_sym_cmd_identifier_token7] = ACTIONS(1473), - [aux_sym_cmd_identifier_token8] = ACTIONS(1473), - [aux_sym_cmd_identifier_token9] = ACTIONS(1473), - [aux_sym_cmd_identifier_token10] = ACTIONS(1473), - [aux_sym_cmd_identifier_token11] = ACTIONS(1473), - [aux_sym_cmd_identifier_token12] = ACTIONS(1473), - [aux_sym_cmd_identifier_token13] = ACTIONS(1473), - [aux_sym_cmd_identifier_token14] = ACTIONS(1473), - [aux_sym_cmd_identifier_token15] = ACTIONS(1473), - [aux_sym_cmd_identifier_token16] = ACTIONS(1473), - [aux_sym_cmd_identifier_token17] = ACTIONS(1473), - [aux_sym_cmd_identifier_token18] = ACTIONS(1473), - [aux_sym_cmd_identifier_token19] = ACTIONS(1473), - [aux_sym_cmd_identifier_token20] = ACTIONS(1473), - [aux_sym_cmd_identifier_token21] = ACTIONS(1473), - [aux_sym_cmd_identifier_token22] = ACTIONS(1473), - [aux_sym_cmd_identifier_token23] = ACTIONS(1473), - [aux_sym_cmd_identifier_token24] = ACTIONS(1473), - [aux_sym_cmd_identifier_token25] = ACTIONS(1473), - [aux_sym_cmd_identifier_token26] = ACTIONS(1473), - [aux_sym_cmd_identifier_token27] = ACTIONS(1473), - [aux_sym_cmd_identifier_token28] = ACTIONS(1473), - [aux_sym_cmd_identifier_token29] = ACTIONS(1473), - [aux_sym_cmd_identifier_token30] = ACTIONS(1473), - [aux_sym_cmd_identifier_token31] = ACTIONS(1473), - [aux_sym_cmd_identifier_token32] = ACTIONS(1473), - [aux_sym_cmd_identifier_token33] = ACTIONS(1473), - [aux_sym_cmd_identifier_token34] = ACTIONS(1473), - [aux_sym_cmd_identifier_token35] = ACTIONS(1473), - [aux_sym_cmd_identifier_token36] = ACTIONS(1473), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [anon_sym_null] = ACTIONS(1473), - [aux_sym_cmd_identifier_token38] = ACTIONS(1473), - [aux_sym_cmd_identifier_token39] = ACTIONS(1473), - [aux_sym_cmd_identifier_token40] = ACTIONS(1473), - [anon_sym_def] = ACTIONS(1473), - [anon_sym_export_DASHenv] = ACTIONS(1473), - [anon_sym_extern] = ACTIONS(1473), - [anon_sym_module] = ACTIONS(1473), - [anon_sym_use] = ACTIONS(1473), - [anon_sym_LPAREN] = ACTIONS(1473), - [anon_sym_DOLLAR] = ACTIONS(1473), - [anon_sym_error] = ACTIONS(1473), - [anon_sym_list] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_break] = ACTIONS(1473), - [anon_sym_continue] = ACTIONS(1473), - [anon_sym_for] = ACTIONS(1473), - [anon_sym_in] = ACTIONS(1473), - [anon_sym_loop] = ACTIONS(1473), - [anon_sym_make] = ACTIONS(1473), - [anon_sym_while] = ACTIONS(1473), - [anon_sym_do] = ACTIONS(1473), - [anon_sym_if] = ACTIONS(1473), - [anon_sym_else] = ACTIONS(1473), - [anon_sym_match] = ACTIONS(1473), - [anon_sym_RBRACE] = ACTIONS(1473), - [anon_sym_try] = ACTIONS(1473), - [anon_sym_catch] = ACTIONS(1473), - [anon_sym_return] = ACTIONS(1473), - [anon_sym_source] = ACTIONS(1473), - [anon_sym_source_DASHenv] = ACTIONS(1473), - [anon_sym_register] = ACTIONS(1473), - [anon_sym_hide] = ACTIONS(1473), - [anon_sym_hide_DASHenv] = ACTIONS(1473), - [anon_sym_overlay] = ACTIONS(1473), - [anon_sym_new] = ACTIONS(1473), - [anon_sym_as] = ACTIONS(1473), - [anon_sym_LPAREN2] = ACTIONS(1475), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1473), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1473), - [aux_sym__val_number_decimal_token1] = ACTIONS(1473), - [aux_sym__val_number_decimal_token2] = ACTIONS(1473), - [aux_sym__val_number_decimal_token3] = ACTIONS(1473), - [aux_sym__val_number_decimal_token4] = ACTIONS(1473), - [aux_sym__val_number_token1] = ACTIONS(1473), - [aux_sym__val_number_token2] = ACTIONS(1473), - [aux_sym__val_number_token3] = ACTIONS(1473), - [sym_filesize_unit] = ACTIONS(1473), - [sym_duration_unit] = ACTIONS(1473), - [anon_sym_DQUOTE] = ACTIONS(1473), - [sym__str_single_quotes] = ACTIONS(1473), - [sym__str_back_ticks] = ACTIONS(1473), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1473), - [sym__entry_separator] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1473), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1473), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__block_body_repeat1] = STATE(210), + [anon_sym_export] = ACTIONS(1651), + [anon_sym_alias] = ACTIONS(1651), + [anon_sym_let] = ACTIONS(1651), + [anon_sym_let_DASHenv] = ACTIONS(1651), + [anon_sym_mut] = ACTIONS(1651), + [anon_sym_const] = ACTIONS(1651), + [aux_sym_cmd_identifier_token1] = ACTIONS(1651), + [aux_sym_cmd_identifier_token2] = ACTIONS(1651), + [aux_sym_cmd_identifier_token3] = ACTIONS(1651), + [aux_sym_cmd_identifier_token4] = ACTIONS(1651), + [aux_sym_cmd_identifier_token5] = ACTIONS(1651), + [aux_sym_cmd_identifier_token6] = ACTIONS(1651), + [aux_sym_cmd_identifier_token7] = ACTIONS(1651), + [aux_sym_cmd_identifier_token8] = ACTIONS(1651), + [aux_sym_cmd_identifier_token9] = ACTIONS(1651), + [aux_sym_cmd_identifier_token10] = ACTIONS(1651), + [aux_sym_cmd_identifier_token11] = ACTIONS(1651), + [aux_sym_cmd_identifier_token12] = ACTIONS(1651), + [aux_sym_cmd_identifier_token13] = ACTIONS(1651), + [aux_sym_cmd_identifier_token14] = ACTIONS(1651), + [aux_sym_cmd_identifier_token15] = ACTIONS(1651), + [aux_sym_cmd_identifier_token16] = ACTIONS(1651), + [aux_sym_cmd_identifier_token17] = ACTIONS(1651), + [aux_sym_cmd_identifier_token18] = ACTIONS(1651), + [aux_sym_cmd_identifier_token19] = ACTIONS(1651), + [aux_sym_cmd_identifier_token20] = ACTIONS(1651), + [aux_sym_cmd_identifier_token21] = ACTIONS(1651), + [aux_sym_cmd_identifier_token22] = ACTIONS(1651), + [aux_sym_cmd_identifier_token23] = ACTIONS(1651), + [aux_sym_cmd_identifier_token24] = ACTIONS(1653), + [aux_sym_cmd_identifier_token25] = ACTIONS(1651), + [aux_sym_cmd_identifier_token26] = ACTIONS(1653), + [aux_sym_cmd_identifier_token27] = ACTIONS(1651), + [aux_sym_cmd_identifier_token28] = ACTIONS(1651), + [aux_sym_cmd_identifier_token29] = ACTIONS(1651), + [aux_sym_cmd_identifier_token30] = ACTIONS(1651), + [aux_sym_cmd_identifier_token31] = ACTIONS(1653), + [aux_sym_cmd_identifier_token32] = ACTIONS(1653), + [aux_sym_cmd_identifier_token33] = ACTIONS(1653), + [aux_sym_cmd_identifier_token34] = ACTIONS(1653), + [aux_sym_cmd_identifier_token35] = ACTIONS(1653), + [aux_sym_cmd_identifier_token36] = ACTIONS(1651), + [anon_sym_true] = ACTIONS(1653), + [anon_sym_false] = ACTIONS(1653), + [anon_sym_null] = ACTIONS(1653), + [aux_sym_cmd_identifier_token38] = ACTIONS(1651), + [aux_sym_cmd_identifier_token39] = ACTIONS(1653), + [aux_sym_cmd_identifier_token40] = ACTIONS(1653), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(1651), + [anon_sym_export_DASHenv] = ACTIONS(1651), + [anon_sym_extern] = ACTIONS(1651), + [anon_sym_module] = ACTIONS(1651), + [anon_sym_use] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_RPAREN] = ACTIONS(1664), + [anon_sym_DOLLAR] = ACTIONS(1651), + [anon_sym_error] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(1651), + [anon_sym_break] = ACTIONS(1651), + [anon_sym_continue] = ACTIONS(1651), + [anon_sym_for] = ACTIONS(1651), + [anon_sym_loop] = ACTIONS(1651), + [anon_sym_while] = ACTIONS(1651), + [anon_sym_do] = ACTIONS(1651), + [anon_sym_if] = ACTIONS(1651), + [anon_sym_match] = ACTIONS(1651), + [aux_sym_ctrl_match_token1] = ACTIONS(1653), + [anon_sym_RBRACE] = ACTIONS(1664), + [anon_sym_DOT_DOT] = ACTIONS(1651), + [anon_sym_try] = ACTIONS(1651), + [anon_sym_return] = ACTIONS(1651), + [anon_sym_source] = ACTIONS(1651), + [anon_sym_source_DASHenv] = ACTIONS(1651), + [anon_sym_register] = ACTIONS(1651), + [anon_sym_hide] = ACTIONS(1651), + [anon_sym_hide_DASHenv] = ACTIONS(1651), + [anon_sym_overlay] = ACTIONS(1651), + [anon_sym_where] = ACTIONS(1653), + [aux_sym_expr_unary_token1] = ACTIONS(1653), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1653), + [anon_sym_DOT_DOT_LT] = ACTIONS(1653), + [aux_sym__val_number_decimal_token1] = ACTIONS(1651), + [aux_sym__val_number_decimal_token2] = ACTIONS(1653), + [aux_sym__val_number_decimal_token3] = ACTIONS(1653), + [aux_sym__val_number_decimal_token4] = ACTIONS(1653), + [aux_sym__val_number_token1] = ACTIONS(1653), + [aux_sym__val_number_token2] = ACTIONS(1653), + [aux_sym__val_number_token3] = ACTIONS(1653), + [anon_sym_0b] = ACTIONS(1651), + [anon_sym_0o] = ACTIONS(1651), + [anon_sym_0x] = ACTIONS(1651), + [sym_val_date] = ACTIONS(1653), + [anon_sym_DQUOTE] = ACTIONS(1653), + [sym__str_single_quotes] = ACTIONS(1653), + [sym__str_back_ticks] = ACTIONS(1653), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1653), + [aux_sym_env_var_token1] = ACTIONS(1651), + [anon_sym_CARET] = ACTIONS(1653), + [anon_sym_POUND] = ACTIONS(247), }, [212] = { - [sym__expr_parenthesized_immediate] = STATE(615), - [sym__immediate_decimal] = STATE(616), - [sym_val_variable] = STATE(615), [sym_comment] = STATE(212), - [anon_sym_export] = ACTIONS(1551), - [anon_sym_alias] = ACTIONS(1551), - [anon_sym_let] = ACTIONS(1551), - [anon_sym_let_DASHenv] = ACTIONS(1551), - [anon_sym_mut] = ACTIONS(1551), - [anon_sym_const] = ACTIONS(1551), - [aux_sym_cmd_identifier_token1] = ACTIONS(1551), - [aux_sym_cmd_identifier_token2] = ACTIONS(1551), - [aux_sym_cmd_identifier_token3] = ACTIONS(1551), - [aux_sym_cmd_identifier_token4] = ACTIONS(1551), - [aux_sym_cmd_identifier_token5] = ACTIONS(1551), - [aux_sym_cmd_identifier_token6] = ACTIONS(1551), - [aux_sym_cmd_identifier_token7] = ACTIONS(1551), - [aux_sym_cmd_identifier_token8] = ACTIONS(1551), - [aux_sym_cmd_identifier_token9] = ACTIONS(1551), - [aux_sym_cmd_identifier_token10] = ACTIONS(1551), - [aux_sym_cmd_identifier_token11] = ACTIONS(1551), - [aux_sym_cmd_identifier_token12] = ACTIONS(1551), - [aux_sym_cmd_identifier_token13] = ACTIONS(1551), - [aux_sym_cmd_identifier_token14] = ACTIONS(1551), - [aux_sym_cmd_identifier_token15] = ACTIONS(1551), - [aux_sym_cmd_identifier_token16] = ACTIONS(1551), - [aux_sym_cmd_identifier_token17] = ACTIONS(1551), - [aux_sym_cmd_identifier_token18] = ACTIONS(1551), - [aux_sym_cmd_identifier_token19] = ACTIONS(1551), - [aux_sym_cmd_identifier_token20] = ACTIONS(1551), - [aux_sym_cmd_identifier_token21] = ACTIONS(1551), - [aux_sym_cmd_identifier_token22] = ACTIONS(1551), - [aux_sym_cmd_identifier_token23] = ACTIONS(1551), - [aux_sym_cmd_identifier_token24] = ACTIONS(1551), - [aux_sym_cmd_identifier_token25] = ACTIONS(1551), - [aux_sym_cmd_identifier_token26] = ACTIONS(1551), - [aux_sym_cmd_identifier_token27] = ACTIONS(1551), - [aux_sym_cmd_identifier_token28] = ACTIONS(1551), - [aux_sym_cmd_identifier_token29] = ACTIONS(1551), - [aux_sym_cmd_identifier_token30] = ACTIONS(1551), - [aux_sym_cmd_identifier_token31] = ACTIONS(1551), - [aux_sym_cmd_identifier_token32] = ACTIONS(1551), - [aux_sym_cmd_identifier_token33] = ACTIONS(1551), - [aux_sym_cmd_identifier_token34] = ACTIONS(1551), - [aux_sym_cmd_identifier_token35] = ACTIONS(1551), - [aux_sym_cmd_identifier_token36] = ACTIONS(1551), - [anon_sym_true] = ACTIONS(1553), - [anon_sym_false] = ACTIONS(1553), - [anon_sym_null] = ACTIONS(1553), - [aux_sym_cmd_identifier_token38] = ACTIONS(1551), - [aux_sym_cmd_identifier_token39] = ACTIONS(1553), - [aux_sym_cmd_identifier_token40] = ACTIONS(1553), - [anon_sym_def] = ACTIONS(1551), - [anon_sym_export_DASHenv] = ACTIONS(1551), - [anon_sym_extern] = ACTIONS(1551), - [anon_sym_module] = ACTIONS(1551), - [anon_sym_use] = ACTIONS(1551), - [anon_sym_LPAREN] = ACTIONS(1551), - [anon_sym_DOLLAR] = ACTIONS(1489), - [anon_sym_error] = ACTIONS(1551), - [anon_sym_list] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(1551), - [anon_sym_break] = ACTIONS(1551), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_for] = ACTIONS(1551), - [anon_sym_in] = ACTIONS(1551), - [anon_sym_loop] = ACTIONS(1551), - [anon_sym_make] = ACTIONS(1551), - [anon_sym_while] = ACTIONS(1551), - [anon_sym_do] = ACTIONS(1551), - [anon_sym_if] = ACTIONS(1551), - [anon_sym_else] = ACTIONS(1551), - [anon_sym_match] = ACTIONS(1551), - [anon_sym_RBRACE] = ACTIONS(1553), - [anon_sym_try] = ACTIONS(1551), - [anon_sym_catch] = ACTIONS(1551), - [anon_sym_return] = ACTIONS(1551), - [anon_sym_source] = ACTIONS(1551), - [anon_sym_source_DASHenv] = ACTIONS(1551), - [anon_sym_register] = ACTIONS(1551), - [anon_sym_hide] = ACTIONS(1551), - [anon_sym_hide_DASHenv] = ACTIONS(1551), - [anon_sym_overlay] = ACTIONS(1551), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_as] = ACTIONS(1551), - [anon_sym_LPAREN2] = ACTIONS(1491), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1553), - [aux_sym__immediate_decimal_token1] = ACTIONS(1577), - [aux_sym__immediate_decimal_token3] = ACTIONS(1579), - [aux_sym__immediate_decimal_token4] = ACTIONS(1581), - [aux_sym__immediate_decimal_token5] = ACTIONS(1583), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1553), - [aux_sym__val_number_decimal_token1] = ACTIONS(1551), - [aux_sym__val_number_decimal_token2] = ACTIONS(1551), - [aux_sym__val_number_decimal_token3] = ACTIONS(1551), - [aux_sym__val_number_decimal_token4] = ACTIONS(1551), - [aux_sym__val_number_token1] = ACTIONS(1553), - [aux_sym__val_number_token2] = ACTIONS(1553), - [aux_sym__val_number_token3] = ACTIONS(1553), - [anon_sym_DQUOTE] = ACTIONS(1553), - [sym__str_single_quotes] = ACTIONS(1553), - [sym__str_back_ticks] = ACTIONS(1553), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1553), - [anon_sym_PLUS] = ACTIONS(1551), + [aux_sym__block_body_repeat1] = STATE(210), + [anon_sym_export] = ACTIONS(1651), + [anon_sym_alias] = ACTIONS(1651), + [anon_sym_let] = ACTIONS(1651), + [anon_sym_let_DASHenv] = ACTIONS(1651), + [anon_sym_mut] = ACTIONS(1651), + [anon_sym_const] = ACTIONS(1651), + [aux_sym_cmd_identifier_token1] = ACTIONS(1651), + [aux_sym_cmd_identifier_token2] = ACTIONS(1651), + [aux_sym_cmd_identifier_token3] = ACTIONS(1651), + [aux_sym_cmd_identifier_token4] = ACTIONS(1651), + [aux_sym_cmd_identifier_token5] = ACTIONS(1651), + [aux_sym_cmd_identifier_token6] = ACTIONS(1651), + [aux_sym_cmd_identifier_token7] = ACTIONS(1651), + [aux_sym_cmd_identifier_token8] = ACTIONS(1651), + [aux_sym_cmd_identifier_token9] = ACTIONS(1651), + [aux_sym_cmd_identifier_token10] = ACTIONS(1651), + [aux_sym_cmd_identifier_token11] = ACTIONS(1651), + [aux_sym_cmd_identifier_token12] = ACTIONS(1651), + [aux_sym_cmd_identifier_token13] = ACTIONS(1651), + [aux_sym_cmd_identifier_token14] = ACTIONS(1651), + [aux_sym_cmd_identifier_token15] = ACTIONS(1651), + [aux_sym_cmd_identifier_token16] = ACTIONS(1651), + [aux_sym_cmd_identifier_token17] = ACTIONS(1651), + [aux_sym_cmd_identifier_token18] = ACTIONS(1651), + [aux_sym_cmd_identifier_token19] = ACTIONS(1651), + [aux_sym_cmd_identifier_token20] = ACTIONS(1651), + [aux_sym_cmd_identifier_token21] = ACTIONS(1651), + [aux_sym_cmd_identifier_token22] = ACTIONS(1651), + [aux_sym_cmd_identifier_token23] = ACTIONS(1651), + [aux_sym_cmd_identifier_token24] = ACTIONS(1653), + [aux_sym_cmd_identifier_token25] = ACTIONS(1651), + [aux_sym_cmd_identifier_token26] = ACTIONS(1653), + [aux_sym_cmd_identifier_token27] = ACTIONS(1651), + [aux_sym_cmd_identifier_token28] = ACTIONS(1651), + [aux_sym_cmd_identifier_token29] = ACTIONS(1651), + [aux_sym_cmd_identifier_token30] = ACTIONS(1651), + [aux_sym_cmd_identifier_token31] = ACTIONS(1653), + [aux_sym_cmd_identifier_token32] = ACTIONS(1653), + [aux_sym_cmd_identifier_token33] = ACTIONS(1653), + [aux_sym_cmd_identifier_token34] = ACTIONS(1653), + [aux_sym_cmd_identifier_token35] = ACTIONS(1653), + [aux_sym_cmd_identifier_token36] = ACTIONS(1651), + [anon_sym_true] = ACTIONS(1653), + [anon_sym_false] = ACTIONS(1653), + [anon_sym_null] = ACTIONS(1653), + [aux_sym_cmd_identifier_token38] = ACTIONS(1651), + [aux_sym_cmd_identifier_token39] = ACTIONS(1653), + [aux_sym_cmd_identifier_token40] = ACTIONS(1653), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(1651), + [anon_sym_export_DASHenv] = ACTIONS(1651), + [anon_sym_extern] = ACTIONS(1651), + [anon_sym_module] = ACTIONS(1651), + [anon_sym_use] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_RPAREN] = ACTIONS(1666), + [anon_sym_DOLLAR] = ACTIONS(1651), + [anon_sym_error] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(1651), + [anon_sym_break] = ACTIONS(1651), + [anon_sym_continue] = ACTIONS(1651), + [anon_sym_for] = ACTIONS(1651), + [anon_sym_loop] = ACTIONS(1651), + [anon_sym_while] = ACTIONS(1651), + [anon_sym_do] = ACTIONS(1651), + [anon_sym_if] = ACTIONS(1651), + [anon_sym_match] = ACTIONS(1651), + [aux_sym_ctrl_match_token1] = ACTIONS(1653), + [anon_sym_RBRACE] = ACTIONS(1666), + [anon_sym_DOT_DOT] = ACTIONS(1651), + [anon_sym_try] = ACTIONS(1651), + [anon_sym_return] = ACTIONS(1651), + [anon_sym_source] = ACTIONS(1651), + [anon_sym_source_DASHenv] = ACTIONS(1651), + [anon_sym_register] = ACTIONS(1651), + [anon_sym_hide] = ACTIONS(1651), + [anon_sym_hide_DASHenv] = ACTIONS(1651), + [anon_sym_overlay] = ACTIONS(1651), + [anon_sym_where] = ACTIONS(1653), + [aux_sym_expr_unary_token1] = ACTIONS(1653), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1653), + [anon_sym_DOT_DOT_LT] = ACTIONS(1653), + [aux_sym__val_number_decimal_token1] = ACTIONS(1651), + [aux_sym__val_number_decimal_token2] = ACTIONS(1653), + [aux_sym__val_number_decimal_token3] = ACTIONS(1653), + [aux_sym__val_number_decimal_token4] = ACTIONS(1653), + [aux_sym__val_number_token1] = ACTIONS(1653), + [aux_sym__val_number_token2] = ACTIONS(1653), + [aux_sym__val_number_token3] = ACTIONS(1653), + [anon_sym_0b] = ACTIONS(1651), + [anon_sym_0o] = ACTIONS(1651), + [anon_sym_0x] = ACTIONS(1651), + [sym_val_date] = ACTIONS(1653), + [anon_sym_DQUOTE] = ACTIONS(1653), + [sym__str_single_quotes] = ACTIONS(1653), + [sym__str_back_ticks] = ACTIONS(1653), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1653), + [aux_sym_env_var_token1] = ACTIONS(1651), + [anon_sym_CARET] = ACTIONS(1653), [anon_sym_POUND] = ACTIONS(247), }, [213] = { - [sym__expr_parenthesized_immediate] = STATE(618), - [sym__immediate_decimal] = STATE(619), - [sym_val_variable] = STATE(618), + [sym__expr_parenthesized_immediate] = STATE(7323), [sym_comment] = STATE(213), - [anon_sym_export] = ACTIONS(1555), - [anon_sym_alias] = ACTIONS(1555), - [anon_sym_let] = ACTIONS(1555), - [anon_sym_let_DASHenv] = ACTIONS(1555), - [anon_sym_mut] = ACTIONS(1555), - [anon_sym_const] = ACTIONS(1555), - [aux_sym_cmd_identifier_token1] = ACTIONS(1555), - [aux_sym_cmd_identifier_token2] = ACTIONS(1555), - [aux_sym_cmd_identifier_token3] = ACTIONS(1555), - [aux_sym_cmd_identifier_token4] = ACTIONS(1555), - [aux_sym_cmd_identifier_token5] = ACTIONS(1555), - [aux_sym_cmd_identifier_token6] = ACTIONS(1555), - [aux_sym_cmd_identifier_token7] = ACTIONS(1555), - [aux_sym_cmd_identifier_token8] = ACTIONS(1555), - [aux_sym_cmd_identifier_token9] = ACTIONS(1555), - [aux_sym_cmd_identifier_token10] = ACTIONS(1555), - [aux_sym_cmd_identifier_token11] = ACTIONS(1555), - [aux_sym_cmd_identifier_token12] = ACTIONS(1555), - [aux_sym_cmd_identifier_token13] = ACTIONS(1555), - [aux_sym_cmd_identifier_token14] = ACTIONS(1555), - [aux_sym_cmd_identifier_token15] = ACTIONS(1555), - [aux_sym_cmd_identifier_token16] = ACTIONS(1555), - [aux_sym_cmd_identifier_token17] = ACTIONS(1555), - [aux_sym_cmd_identifier_token18] = ACTIONS(1555), - [aux_sym_cmd_identifier_token19] = ACTIONS(1555), - [aux_sym_cmd_identifier_token20] = ACTIONS(1555), - [aux_sym_cmd_identifier_token21] = ACTIONS(1555), - [aux_sym_cmd_identifier_token22] = ACTIONS(1555), - [aux_sym_cmd_identifier_token23] = ACTIONS(1555), - [aux_sym_cmd_identifier_token24] = ACTIONS(1555), - [aux_sym_cmd_identifier_token25] = ACTIONS(1555), - [aux_sym_cmd_identifier_token26] = ACTIONS(1555), - [aux_sym_cmd_identifier_token27] = ACTIONS(1555), - [aux_sym_cmd_identifier_token28] = ACTIONS(1555), - [aux_sym_cmd_identifier_token29] = ACTIONS(1555), - [aux_sym_cmd_identifier_token30] = ACTIONS(1555), - [aux_sym_cmd_identifier_token31] = ACTIONS(1555), - [aux_sym_cmd_identifier_token32] = ACTIONS(1555), - [aux_sym_cmd_identifier_token33] = ACTIONS(1555), - [aux_sym_cmd_identifier_token34] = ACTIONS(1555), - [aux_sym_cmd_identifier_token35] = ACTIONS(1555), - [aux_sym_cmd_identifier_token36] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(1557), - [anon_sym_false] = ACTIONS(1557), - [anon_sym_null] = ACTIONS(1557), - [aux_sym_cmd_identifier_token38] = ACTIONS(1555), - [aux_sym_cmd_identifier_token39] = ACTIONS(1557), - [aux_sym_cmd_identifier_token40] = ACTIONS(1557), - [anon_sym_def] = ACTIONS(1555), - [anon_sym_export_DASHenv] = ACTIONS(1555), - [anon_sym_extern] = ACTIONS(1555), - [anon_sym_module] = ACTIONS(1555), - [anon_sym_use] = ACTIONS(1555), - [anon_sym_LPAREN] = ACTIONS(1555), - [anon_sym_DOLLAR] = ACTIONS(1489), - [anon_sym_error] = ACTIONS(1555), - [anon_sym_list] = ACTIONS(1555), - [anon_sym_DASH] = ACTIONS(1555), - [anon_sym_break] = ACTIONS(1555), - [anon_sym_continue] = ACTIONS(1555), - [anon_sym_for] = ACTIONS(1555), - [anon_sym_in] = ACTIONS(1555), - [anon_sym_loop] = ACTIONS(1555), - [anon_sym_make] = ACTIONS(1555), - [anon_sym_while] = ACTIONS(1555), - [anon_sym_do] = ACTIONS(1555), - [anon_sym_if] = ACTIONS(1555), - [anon_sym_else] = ACTIONS(1555), - [anon_sym_match] = ACTIONS(1555), - [anon_sym_RBRACE] = ACTIONS(1557), - [anon_sym_try] = ACTIONS(1555), - [anon_sym_catch] = ACTIONS(1555), - [anon_sym_return] = ACTIONS(1555), - [anon_sym_source] = ACTIONS(1555), - [anon_sym_source_DASHenv] = ACTIONS(1555), - [anon_sym_register] = ACTIONS(1555), - [anon_sym_hide] = ACTIONS(1555), - [anon_sym_hide_DASHenv] = ACTIONS(1555), - [anon_sym_overlay] = ACTIONS(1555), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_as] = ACTIONS(1555), - [anon_sym_LPAREN2] = ACTIONS(1491), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1557), - [aux_sym__immediate_decimal_token1] = ACTIONS(1577), - [aux_sym__immediate_decimal_token3] = ACTIONS(1579), - [aux_sym__immediate_decimal_token4] = ACTIONS(1581), - [aux_sym__immediate_decimal_token5] = ACTIONS(1583), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1557), - [aux_sym__val_number_decimal_token1] = ACTIONS(1555), - [aux_sym__val_number_decimal_token2] = ACTIONS(1555), - [aux_sym__val_number_decimal_token3] = ACTIONS(1555), - [aux_sym__val_number_decimal_token4] = ACTIONS(1555), - [aux_sym__val_number_token1] = ACTIONS(1557), - [aux_sym__val_number_token2] = ACTIONS(1557), - [aux_sym__val_number_token3] = ACTIONS(1557), - [anon_sym_DQUOTE] = ACTIONS(1557), - [sym__str_single_quotes] = ACTIONS(1557), - [sym__str_back_ticks] = ACTIONS(1557), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1557), - [anon_sym_PLUS] = ACTIONS(1555), + [anon_sym_export] = ACTIONS(1575), + [anon_sym_alias] = ACTIONS(1575), + [anon_sym_let] = ACTIONS(1575), + [anon_sym_let_DASHenv] = ACTIONS(1575), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_const] = ACTIONS(1575), + [aux_sym_cmd_identifier_token1] = ACTIONS(1575), + [aux_sym_cmd_identifier_token2] = ACTIONS(1575), + [aux_sym_cmd_identifier_token3] = ACTIONS(1575), + [aux_sym_cmd_identifier_token4] = ACTIONS(1575), + [aux_sym_cmd_identifier_token5] = ACTIONS(1575), + [aux_sym_cmd_identifier_token6] = ACTIONS(1575), + [aux_sym_cmd_identifier_token7] = ACTIONS(1575), + [aux_sym_cmd_identifier_token8] = ACTIONS(1575), + [aux_sym_cmd_identifier_token9] = ACTIONS(1575), + [aux_sym_cmd_identifier_token10] = ACTIONS(1575), + [aux_sym_cmd_identifier_token11] = ACTIONS(1575), + [aux_sym_cmd_identifier_token12] = ACTIONS(1575), + [aux_sym_cmd_identifier_token13] = ACTIONS(1575), + [aux_sym_cmd_identifier_token14] = ACTIONS(1575), + [aux_sym_cmd_identifier_token15] = ACTIONS(1575), + [aux_sym_cmd_identifier_token16] = ACTIONS(1575), + [aux_sym_cmd_identifier_token17] = ACTIONS(1575), + [aux_sym_cmd_identifier_token18] = ACTIONS(1575), + [aux_sym_cmd_identifier_token19] = ACTIONS(1575), + [aux_sym_cmd_identifier_token20] = ACTIONS(1575), + [aux_sym_cmd_identifier_token21] = ACTIONS(1575), + [aux_sym_cmd_identifier_token22] = ACTIONS(1575), + [aux_sym_cmd_identifier_token23] = ACTIONS(1575), + [aux_sym_cmd_identifier_token24] = ACTIONS(1575), + [aux_sym_cmd_identifier_token25] = ACTIONS(1575), + [aux_sym_cmd_identifier_token26] = ACTIONS(1575), + [aux_sym_cmd_identifier_token27] = ACTIONS(1575), + [aux_sym_cmd_identifier_token28] = ACTIONS(1575), + [aux_sym_cmd_identifier_token29] = ACTIONS(1575), + [aux_sym_cmd_identifier_token30] = ACTIONS(1575), + [aux_sym_cmd_identifier_token31] = ACTIONS(1575), + [aux_sym_cmd_identifier_token32] = ACTIONS(1575), + [aux_sym_cmd_identifier_token33] = ACTIONS(1575), + [aux_sym_cmd_identifier_token34] = ACTIONS(1575), + [aux_sym_cmd_identifier_token35] = ACTIONS(1575), + [aux_sym_cmd_identifier_token36] = ACTIONS(1575), + [anon_sym_true] = ACTIONS(1587), + [anon_sym_false] = ACTIONS(1587), + [anon_sym_null] = ACTIONS(1587), + [aux_sym_cmd_identifier_token38] = ACTIONS(1575), + [aux_sym_cmd_identifier_token39] = ACTIONS(1587), + [aux_sym_cmd_identifier_token40] = ACTIONS(1587), + [anon_sym_def] = ACTIONS(1575), + [anon_sym_export_DASHenv] = ACTIONS(1575), + [anon_sym_extern] = ACTIONS(1575), + [anon_sym_module] = ACTIONS(1575), + [anon_sym_use] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1575), + [anon_sym_DOLLAR] = ACTIONS(1587), + [anon_sym_error] = ACTIONS(1575), + [anon_sym_list] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_break] = ACTIONS(1575), + [anon_sym_continue] = ACTIONS(1575), + [anon_sym_for] = ACTIONS(1575), + [anon_sym_in] = ACTIONS(1575), + [anon_sym_loop] = ACTIONS(1575), + [anon_sym_make] = ACTIONS(1575), + [anon_sym_while] = ACTIONS(1575), + [anon_sym_do] = ACTIONS(1575), + [anon_sym_if] = ACTIONS(1575), + [anon_sym_else] = ACTIONS(1575), + [anon_sym_match] = ACTIONS(1575), + [anon_sym_RBRACE] = ACTIONS(1587), + [anon_sym_try] = ACTIONS(1575), + [anon_sym_catch] = ACTIONS(1575), + [anon_sym_return] = ACTIONS(1575), + [anon_sym_source] = ACTIONS(1575), + [anon_sym_source_DASHenv] = ACTIONS(1575), + [anon_sym_register] = ACTIONS(1575), + [anon_sym_hide] = ACTIONS(1575), + [anon_sym_hide_DASHenv] = ACTIONS(1575), + [anon_sym_overlay] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1575), + [anon_sym_as] = ACTIONS(1575), + [anon_sym_LPAREN2] = ACTIONS(1577), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1587), + [anon_sym_DOT_DOT2] = ACTIONS(1668), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1670), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1670), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1587), + [aux_sym__val_number_decimal_token1] = ACTIONS(1575), + [aux_sym__val_number_decimal_token2] = ACTIONS(1587), + [aux_sym__val_number_decimal_token3] = ACTIONS(1587), + [aux_sym__val_number_decimal_token4] = ACTIONS(1587), + [aux_sym__val_number_token1] = ACTIONS(1587), + [aux_sym__val_number_token2] = ACTIONS(1587), + [aux_sym__val_number_token3] = ACTIONS(1587), + [sym_filesize_unit] = ACTIONS(1672), + [sym_duration_unit] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1587), + [sym__str_single_quotes] = ACTIONS(1587), + [sym__str_back_ticks] = ACTIONS(1587), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(1575), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1676), [anon_sym_POUND] = ACTIONS(247), }, [214] = { [sym_comment] = STATE(214), - [anon_sym_export] = ACTIONS(1481), - [anon_sym_alias] = ACTIONS(1481), - [anon_sym_let] = ACTIONS(1481), - [anon_sym_let_DASHenv] = ACTIONS(1481), - [anon_sym_mut] = ACTIONS(1481), - [anon_sym_const] = ACTIONS(1481), - [aux_sym_cmd_identifier_token1] = ACTIONS(1481), - [aux_sym_cmd_identifier_token2] = ACTIONS(1481), - [aux_sym_cmd_identifier_token3] = ACTIONS(1481), - [aux_sym_cmd_identifier_token4] = ACTIONS(1481), - [aux_sym_cmd_identifier_token5] = ACTIONS(1481), - [aux_sym_cmd_identifier_token6] = ACTIONS(1481), - [aux_sym_cmd_identifier_token7] = ACTIONS(1481), - [aux_sym_cmd_identifier_token8] = ACTIONS(1481), - [aux_sym_cmd_identifier_token9] = ACTIONS(1481), - [aux_sym_cmd_identifier_token10] = ACTIONS(1481), - [aux_sym_cmd_identifier_token11] = ACTIONS(1481), - [aux_sym_cmd_identifier_token12] = ACTIONS(1481), - [aux_sym_cmd_identifier_token13] = ACTIONS(1481), - [aux_sym_cmd_identifier_token14] = ACTIONS(1481), - [aux_sym_cmd_identifier_token15] = ACTIONS(1481), - [aux_sym_cmd_identifier_token16] = ACTIONS(1481), - [aux_sym_cmd_identifier_token17] = ACTIONS(1481), - [aux_sym_cmd_identifier_token18] = ACTIONS(1481), - [aux_sym_cmd_identifier_token19] = ACTIONS(1481), - [aux_sym_cmd_identifier_token20] = ACTIONS(1481), - [aux_sym_cmd_identifier_token21] = ACTIONS(1481), - [aux_sym_cmd_identifier_token22] = ACTIONS(1481), - [aux_sym_cmd_identifier_token23] = ACTIONS(1481), - [aux_sym_cmd_identifier_token24] = ACTIONS(1481), - [aux_sym_cmd_identifier_token25] = ACTIONS(1481), - [aux_sym_cmd_identifier_token26] = ACTIONS(1481), - [aux_sym_cmd_identifier_token27] = ACTIONS(1481), - [aux_sym_cmd_identifier_token28] = ACTIONS(1481), - [aux_sym_cmd_identifier_token29] = ACTIONS(1481), - [aux_sym_cmd_identifier_token30] = ACTIONS(1481), - [aux_sym_cmd_identifier_token31] = ACTIONS(1481), - [aux_sym_cmd_identifier_token32] = ACTIONS(1481), - [aux_sym_cmd_identifier_token33] = ACTIONS(1481), - [aux_sym_cmd_identifier_token34] = ACTIONS(1481), - [aux_sym_cmd_identifier_token35] = ACTIONS(1481), - [aux_sym_cmd_identifier_token36] = ACTIONS(1481), - [anon_sym_true] = ACTIONS(1481), - [anon_sym_false] = ACTIONS(1481), - [anon_sym_null] = ACTIONS(1481), - [aux_sym_cmd_identifier_token38] = ACTIONS(1481), - [aux_sym_cmd_identifier_token39] = ACTIONS(1481), - [aux_sym_cmd_identifier_token40] = ACTIONS(1481), - [anon_sym_def] = ACTIONS(1481), - [anon_sym_export_DASHenv] = ACTIONS(1481), - [anon_sym_extern] = ACTIONS(1481), - [anon_sym_module] = ACTIONS(1481), - [anon_sym_use] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1481), - [anon_sym_DOLLAR] = ACTIONS(1481), - [anon_sym_error] = ACTIONS(1481), - [anon_sym_list] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_break] = ACTIONS(1481), - [anon_sym_continue] = ACTIONS(1481), - [anon_sym_for] = ACTIONS(1481), - [anon_sym_in] = ACTIONS(1481), - [anon_sym_loop] = ACTIONS(1481), - [anon_sym_make] = ACTIONS(1481), - [anon_sym_while] = ACTIONS(1481), - [anon_sym_do] = ACTIONS(1481), - [anon_sym_if] = ACTIONS(1481), - [anon_sym_else] = ACTIONS(1481), - [anon_sym_match] = ACTIONS(1481), - [anon_sym_RBRACE] = ACTIONS(1481), - [anon_sym_try] = ACTIONS(1481), - [anon_sym_catch] = ACTIONS(1481), - [anon_sym_return] = ACTIONS(1481), - [anon_sym_source] = ACTIONS(1481), - [anon_sym_source_DASHenv] = ACTIONS(1481), - [anon_sym_register] = ACTIONS(1481), - [anon_sym_hide] = ACTIONS(1481), - [anon_sym_hide_DASHenv] = ACTIONS(1481), - [anon_sym_overlay] = ACTIONS(1481), - [anon_sym_new] = ACTIONS(1481), - [anon_sym_as] = ACTIONS(1481), - [anon_sym_LPAREN2] = ACTIONS(1483), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1481), - [anon_sym_DOT_DOT2] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1481), - [aux_sym__val_number_decimal_token1] = ACTIONS(1481), - [aux_sym__val_number_decimal_token2] = ACTIONS(1481), - [aux_sym__val_number_decimal_token3] = ACTIONS(1481), - [aux_sym__val_number_decimal_token4] = ACTIONS(1481), - [aux_sym__val_number_token1] = ACTIONS(1481), - [aux_sym__val_number_token2] = ACTIONS(1481), - [aux_sym__val_number_token3] = ACTIONS(1481), - [sym_filesize_unit] = ACTIONS(1481), - [sym_duration_unit] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1481), - [sym__str_single_quotes] = ACTIONS(1481), - [sym__str_back_ticks] = ACTIONS(1481), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1481), - [sym__entry_separator] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1481), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1481), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1497), + [anon_sym_alias] = ACTIONS(1497), + [anon_sym_let] = ACTIONS(1497), + [anon_sym_let_DASHenv] = ACTIONS(1497), + [anon_sym_mut] = ACTIONS(1497), + [anon_sym_const] = ACTIONS(1497), + [aux_sym_cmd_identifier_token1] = ACTIONS(1497), + [aux_sym_cmd_identifier_token2] = ACTIONS(1497), + [aux_sym_cmd_identifier_token3] = ACTIONS(1497), + [aux_sym_cmd_identifier_token4] = ACTIONS(1497), + [aux_sym_cmd_identifier_token5] = ACTIONS(1497), + [aux_sym_cmd_identifier_token6] = ACTIONS(1497), + [aux_sym_cmd_identifier_token7] = ACTIONS(1497), + [aux_sym_cmd_identifier_token8] = ACTIONS(1497), + [aux_sym_cmd_identifier_token9] = ACTIONS(1497), + [aux_sym_cmd_identifier_token10] = ACTIONS(1497), + [aux_sym_cmd_identifier_token11] = ACTIONS(1497), + [aux_sym_cmd_identifier_token12] = ACTIONS(1497), + [aux_sym_cmd_identifier_token13] = ACTIONS(1497), + [aux_sym_cmd_identifier_token14] = ACTIONS(1497), + [aux_sym_cmd_identifier_token15] = ACTIONS(1497), + [aux_sym_cmd_identifier_token16] = ACTIONS(1497), + [aux_sym_cmd_identifier_token17] = ACTIONS(1497), + [aux_sym_cmd_identifier_token18] = ACTIONS(1497), + [aux_sym_cmd_identifier_token19] = ACTIONS(1497), + [aux_sym_cmd_identifier_token20] = ACTIONS(1497), + [aux_sym_cmd_identifier_token21] = ACTIONS(1497), + [aux_sym_cmd_identifier_token22] = ACTIONS(1497), + [aux_sym_cmd_identifier_token23] = ACTIONS(1497), + [aux_sym_cmd_identifier_token24] = ACTIONS(1497), + [aux_sym_cmd_identifier_token25] = ACTIONS(1497), + [aux_sym_cmd_identifier_token26] = ACTIONS(1497), + [aux_sym_cmd_identifier_token27] = ACTIONS(1497), + [aux_sym_cmd_identifier_token28] = ACTIONS(1497), + [aux_sym_cmd_identifier_token29] = ACTIONS(1497), + [aux_sym_cmd_identifier_token30] = ACTIONS(1497), + [aux_sym_cmd_identifier_token31] = ACTIONS(1497), + [aux_sym_cmd_identifier_token32] = ACTIONS(1497), + [aux_sym_cmd_identifier_token33] = ACTIONS(1497), + [aux_sym_cmd_identifier_token34] = ACTIONS(1497), + [aux_sym_cmd_identifier_token35] = ACTIONS(1497), + [aux_sym_cmd_identifier_token36] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1499), + [anon_sym_false] = ACTIONS(1499), + [anon_sym_null] = ACTIONS(1499), + [aux_sym_cmd_identifier_token38] = ACTIONS(1497), + [aux_sym_cmd_identifier_token39] = ACTIONS(1499), + [aux_sym_cmd_identifier_token40] = ACTIONS(1499), + [anon_sym_def] = ACTIONS(1497), + [anon_sym_export_DASHenv] = ACTIONS(1497), + [anon_sym_extern] = ACTIONS(1497), + [anon_sym_module] = ACTIONS(1497), + [anon_sym_use] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(1497), + [anon_sym_DOLLAR] = ACTIONS(1499), + [anon_sym_error] = ACTIONS(1497), + [anon_sym_list] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_break] = ACTIONS(1497), + [anon_sym_continue] = ACTIONS(1497), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_loop] = ACTIONS(1497), + [anon_sym_make] = ACTIONS(1497), + [anon_sym_while] = ACTIONS(1497), + [anon_sym_do] = ACTIONS(1497), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_else] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(1497), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_try] = ACTIONS(1497), + [anon_sym_catch] = ACTIONS(1497), + [anon_sym_return] = ACTIONS(1497), + [anon_sym_source] = ACTIONS(1497), + [anon_sym_source_DASHenv] = ACTIONS(1497), + [anon_sym_register] = ACTIONS(1497), + [anon_sym_hide] = ACTIONS(1497), + [anon_sym_hide_DASHenv] = ACTIONS(1497), + [anon_sym_overlay] = ACTIONS(1497), + [anon_sym_new] = ACTIONS(1497), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_LPAREN2] = ACTIONS(1499), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), + [aux_sym__immediate_decimal_token2] = ACTIONS(1573), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1499), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1499), + [aux_sym__val_number_decimal_token4] = ACTIONS(1499), + [aux_sym__val_number_token1] = ACTIONS(1499), + [aux_sym__val_number_token2] = ACTIONS(1499), + [aux_sym__val_number_token3] = ACTIONS(1499), + [sym_filesize_unit] = ACTIONS(1497), + [sym_duration_unit] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [sym__str_single_quotes] = ACTIONS(1499), + [sym__str_back_ticks] = ACTIONS(1499), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1497), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1497), + [anon_sym_POUND] = ACTIONS(247), }, [215] = { - [sym__expr_parenthesized_immediate] = STATE(621), - [sym__immediate_decimal] = STATE(623), - [sym_val_variable] = STATE(621), + [sym__expr_parenthesized_immediate] = STATE(638), + [sym__immediate_decimal] = STATE(643), + [sym_val_variable] = STATE(638), [sym_comment] = STATE(215), - [anon_sym_export] = ACTIONS(1501), - [anon_sym_alias] = ACTIONS(1501), - [anon_sym_let] = ACTIONS(1501), - [anon_sym_let_DASHenv] = ACTIONS(1501), - [anon_sym_mut] = ACTIONS(1501), - [anon_sym_const] = ACTIONS(1501), - [aux_sym_cmd_identifier_token1] = ACTIONS(1501), - [aux_sym_cmd_identifier_token2] = ACTIONS(1501), - [aux_sym_cmd_identifier_token3] = ACTIONS(1501), - [aux_sym_cmd_identifier_token4] = ACTIONS(1501), - [aux_sym_cmd_identifier_token5] = ACTIONS(1501), - [aux_sym_cmd_identifier_token6] = ACTIONS(1501), - [aux_sym_cmd_identifier_token7] = ACTIONS(1501), - [aux_sym_cmd_identifier_token8] = ACTIONS(1501), - [aux_sym_cmd_identifier_token9] = ACTIONS(1501), - [aux_sym_cmd_identifier_token10] = ACTIONS(1501), - [aux_sym_cmd_identifier_token11] = ACTIONS(1501), - [aux_sym_cmd_identifier_token12] = ACTIONS(1501), - [aux_sym_cmd_identifier_token13] = ACTIONS(1501), - [aux_sym_cmd_identifier_token14] = ACTIONS(1501), - [aux_sym_cmd_identifier_token15] = ACTIONS(1501), - [aux_sym_cmd_identifier_token16] = ACTIONS(1501), - [aux_sym_cmd_identifier_token17] = ACTIONS(1501), - [aux_sym_cmd_identifier_token18] = ACTIONS(1501), - [aux_sym_cmd_identifier_token19] = ACTIONS(1501), - [aux_sym_cmd_identifier_token20] = ACTIONS(1501), - [aux_sym_cmd_identifier_token21] = ACTIONS(1501), - [aux_sym_cmd_identifier_token22] = ACTIONS(1501), - [aux_sym_cmd_identifier_token23] = ACTIONS(1501), - [aux_sym_cmd_identifier_token24] = ACTIONS(1501), - [aux_sym_cmd_identifier_token25] = ACTIONS(1501), - [aux_sym_cmd_identifier_token26] = ACTIONS(1501), - [aux_sym_cmd_identifier_token27] = ACTIONS(1501), - [aux_sym_cmd_identifier_token28] = ACTIONS(1501), - [aux_sym_cmd_identifier_token29] = ACTIONS(1501), - [aux_sym_cmd_identifier_token30] = ACTIONS(1501), - [aux_sym_cmd_identifier_token31] = ACTIONS(1501), - [aux_sym_cmd_identifier_token32] = ACTIONS(1501), - [aux_sym_cmd_identifier_token33] = ACTIONS(1501), - [aux_sym_cmd_identifier_token34] = ACTIONS(1501), - [aux_sym_cmd_identifier_token35] = ACTIONS(1501), - [aux_sym_cmd_identifier_token36] = ACTIONS(1501), - [anon_sym_true] = ACTIONS(1509), - [anon_sym_false] = ACTIONS(1509), - [anon_sym_null] = ACTIONS(1509), - [aux_sym_cmd_identifier_token38] = ACTIONS(1501), - [aux_sym_cmd_identifier_token39] = ACTIONS(1509), - [aux_sym_cmd_identifier_token40] = ACTIONS(1509), - [anon_sym_def] = ACTIONS(1501), - [anon_sym_export_DASHenv] = ACTIONS(1501), - [anon_sym_extern] = ACTIONS(1501), - [anon_sym_module] = ACTIONS(1501), - [anon_sym_use] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_DOLLAR] = ACTIONS(1489), - [anon_sym_error] = ACTIONS(1501), - [anon_sym_list] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_break] = ACTIONS(1501), - [anon_sym_continue] = ACTIONS(1501), - [anon_sym_for] = ACTIONS(1501), - [anon_sym_in] = ACTIONS(1501), - [anon_sym_loop] = ACTIONS(1501), - [anon_sym_make] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1501), - [anon_sym_do] = ACTIONS(1501), - [anon_sym_if] = ACTIONS(1501), - [anon_sym_else] = ACTIONS(1501), - [anon_sym_match] = ACTIONS(1501), - [anon_sym_RBRACE] = ACTIONS(1509), - [anon_sym_try] = ACTIONS(1501), - [anon_sym_catch] = ACTIONS(1501), - [anon_sym_return] = ACTIONS(1501), - [anon_sym_source] = ACTIONS(1501), - [anon_sym_source_DASHenv] = ACTIONS(1501), - [anon_sym_register] = ACTIONS(1501), - [anon_sym_hide] = ACTIONS(1501), - [anon_sym_hide_DASHenv] = ACTIONS(1501), - [anon_sym_overlay] = ACTIONS(1501), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_as] = ACTIONS(1501), - [anon_sym_LPAREN2] = ACTIONS(1491), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1509), - [aux_sym__immediate_decimal_token1] = ACTIONS(1577), - [aux_sym__immediate_decimal_token3] = ACTIONS(1579), - [aux_sym__immediate_decimal_token4] = ACTIONS(1581), - [aux_sym__immediate_decimal_token5] = ACTIONS(1583), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1509), - [aux_sym__val_number_decimal_token1] = ACTIONS(1501), - [aux_sym__val_number_decimal_token2] = ACTIONS(1501), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1501), - [aux_sym__val_number_token1] = ACTIONS(1509), - [aux_sym__val_number_token2] = ACTIONS(1509), - [aux_sym__val_number_token3] = ACTIONS(1509), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym__str_single_quotes] = ACTIONS(1509), - [sym__str_back_ticks] = ACTIONS(1509), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1501), + [anon_sym_export] = ACTIONS(1505), + [anon_sym_alias] = ACTIONS(1505), + [anon_sym_let] = ACTIONS(1505), + [anon_sym_let_DASHenv] = ACTIONS(1505), + [anon_sym_mut] = ACTIONS(1505), + [anon_sym_const] = ACTIONS(1505), + [aux_sym_cmd_identifier_token1] = ACTIONS(1505), + [aux_sym_cmd_identifier_token2] = ACTIONS(1505), + [aux_sym_cmd_identifier_token3] = ACTIONS(1505), + [aux_sym_cmd_identifier_token4] = ACTIONS(1505), + [aux_sym_cmd_identifier_token5] = ACTIONS(1505), + [aux_sym_cmd_identifier_token6] = ACTIONS(1505), + [aux_sym_cmd_identifier_token7] = ACTIONS(1505), + [aux_sym_cmd_identifier_token8] = ACTIONS(1505), + [aux_sym_cmd_identifier_token9] = ACTIONS(1505), + [aux_sym_cmd_identifier_token10] = ACTIONS(1505), + [aux_sym_cmd_identifier_token11] = ACTIONS(1505), + [aux_sym_cmd_identifier_token12] = ACTIONS(1505), + [aux_sym_cmd_identifier_token13] = ACTIONS(1505), + [aux_sym_cmd_identifier_token14] = ACTIONS(1505), + [aux_sym_cmd_identifier_token15] = ACTIONS(1505), + [aux_sym_cmd_identifier_token16] = ACTIONS(1505), + [aux_sym_cmd_identifier_token17] = ACTIONS(1505), + [aux_sym_cmd_identifier_token18] = ACTIONS(1505), + [aux_sym_cmd_identifier_token19] = ACTIONS(1505), + [aux_sym_cmd_identifier_token20] = ACTIONS(1505), + [aux_sym_cmd_identifier_token21] = ACTIONS(1505), + [aux_sym_cmd_identifier_token22] = ACTIONS(1505), + [aux_sym_cmd_identifier_token23] = ACTIONS(1505), + [aux_sym_cmd_identifier_token24] = ACTIONS(1505), + [aux_sym_cmd_identifier_token25] = ACTIONS(1505), + [aux_sym_cmd_identifier_token26] = ACTIONS(1505), + [aux_sym_cmd_identifier_token27] = ACTIONS(1505), + [aux_sym_cmd_identifier_token28] = ACTIONS(1505), + [aux_sym_cmd_identifier_token29] = ACTIONS(1505), + [aux_sym_cmd_identifier_token30] = ACTIONS(1505), + [aux_sym_cmd_identifier_token31] = ACTIONS(1505), + [aux_sym_cmd_identifier_token32] = ACTIONS(1505), + [aux_sym_cmd_identifier_token33] = ACTIONS(1505), + [aux_sym_cmd_identifier_token34] = ACTIONS(1505), + [aux_sym_cmd_identifier_token35] = ACTIONS(1505), + [aux_sym_cmd_identifier_token36] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(1515), + [anon_sym_false] = ACTIONS(1515), + [anon_sym_null] = ACTIONS(1515), + [aux_sym_cmd_identifier_token38] = ACTIONS(1505), + [aux_sym_cmd_identifier_token39] = ACTIONS(1515), + [aux_sym_cmd_identifier_token40] = ACTIONS(1515), + [anon_sym_def] = ACTIONS(1505), + [anon_sym_export_DASHenv] = ACTIONS(1505), + [anon_sym_extern] = ACTIONS(1505), + [anon_sym_module] = ACTIONS(1505), + [anon_sym_use] = ACTIONS(1505), + [anon_sym_LPAREN] = ACTIONS(1505), + [anon_sym_DOLLAR] = ACTIONS(1591), + [anon_sym_error] = ACTIONS(1505), + [anon_sym_list] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_break] = ACTIONS(1505), + [anon_sym_continue] = ACTIONS(1505), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_in] = ACTIONS(1505), + [anon_sym_loop] = ACTIONS(1505), + [anon_sym_make] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1505), + [anon_sym_do] = ACTIONS(1505), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_else] = ACTIONS(1505), + [anon_sym_match] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(1515), + [anon_sym_try] = ACTIONS(1505), + [anon_sym_catch] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1505), + [anon_sym_source] = ACTIONS(1505), + [anon_sym_source_DASHenv] = ACTIONS(1505), + [anon_sym_register] = ACTIONS(1505), + [anon_sym_hide] = ACTIONS(1505), + [anon_sym_hide_DASHenv] = ACTIONS(1505), + [anon_sym_overlay] = ACTIONS(1505), + [anon_sym_new] = ACTIONS(1505), + [anon_sym_as] = ACTIONS(1505), + [anon_sym_LPAREN2] = ACTIONS(1593), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1515), + [aux_sym__immediate_decimal_token1] = ACTIONS(1678), + [aux_sym__immediate_decimal_token3] = ACTIONS(1680), + [aux_sym__immediate_decimal_token4] = ACTIONS(1682), + [aux_sym__immediate_decimal_token5] = ACTIONS(1684), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1515), + [aux_sym__val_number_decimal_token1] = ACTIONS(1505), + [aux_sym__val_number_decimal_token2] = ACTIONS(1505), + [aux_sym__val_number_decimal_token3] = ACTIONS(1505), + [aux_sym__val_number_decimal_token4] = ACTIONS(1505), + [aux_sym__val_number_token1] = ACTIONS(1515), + [aux_sym__val_number_token2] = ACTIONS(1515), + [aux_sym__val_number_token3] = ACTIONS(1515), + [anon_sym_DQUOTE] = ACTIONS(1515), + [sym__str_single_quotes] = ACTIONS(1515), + [sym__str_back_ticks] = ACTIONS(1515), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1515), + [anon_sym_PLUS] = ACTIONS(1505), [anon_sym_POUND] = ACTIONS(247), }, [216] = { + [sym_cell_path] = STATE(407), + [sym_path] = STATE(340), [sym_comment] = STATE(216), - [anon_sym_export] = ACTIONS(1473), - [anon_sym_alias] = ACTIONS(1473), - [anon_sym_let] = ACTIONS(1473), - [anon_sym_let_DASHenv] = ACTIONS(1473), - [anon_sym_mut] = ACTIONS(1473), - [anon_sym_const] = ACTIONS(1473), - [aux_sym_cmd_identifier_token1] = ACTIONS(1473), - [aux_sym_cmd_identifier_token2] = ACTIONS(1473), - [aux_sym_cmd_identifier_token3] = ACTIONS(1473), - [aux_sym_cmd_identifier_token4] = ACTIONS(1473), - [aux_sym_cmd_identifier_token5] = ACTIONS(1473), - [aux_sym_cmd_identifier_token6] = ACTIONS(1473), - [aux_sym_cmd_identifier_token7] = ACTIONS(1473), - [aux_sym_cmd_identifier_token8] = ACTIONS(1473), - [aux_sym_cmd_identifier_token9] = ACTIONS(1473), - [aux_sym_cmd_identifier_token10] = ACTIONS(1473), - [aux_sym_cmd_identifier_token11] = ACTIONS(1473), - [aux_sym_cmd_identifier_token12] = ACTIONS(1473), - [aux_sym_cmd_identifier_token13] = ACTIONS(1473), - [aux_sym_cmd_identifier_token14] = ACTIONS(1473), - [aux_sym_cmd_identifier_token15] = ACTIONS(1473), - [aux_sym_cmd_identifier_token16] = ACTIONS(1473), - [aux_sym_cmd_identifier_token17] = ACTIONS(1473), - [aux_sym_cmd_identifier_token18] = ACTIONS(1473), - [aux_sym_cmd_identifier_token19] = ACTIONS(1473), - [aux_sym_cmd_identifier_token20] = ACTIONS(1473), - [aux_sym_cmd_identifier_token21] = ACTIONS(1473), - [aux_sym_cmd_identifier_token22] = ACTIONS(1473), - [aux_sym_cmd_identifier_token23] = ACTIONS(1473), - [aux_sym_cmd_identifier_token24] = ACTIONS(1473), - [aux_sym_cmd_identifier_token25] = ACTIONS(1473), - [aux_sym_cmd_identifier_token26] = ACTIONS(1473), - [aux_sym_cmd_identifier_token27] = ACTIONS(1473), - [aux_sym_cmd_identifier_token28] = ACTIONS(1473), - [aux_sym_cmd_identifier_token29] = ACTIONS(1473), - [aux_sym_cmd_identifier_token30] = ACTIONS(1473), - [aux_sym_cmd_identifier_token31] = ACTIONS(1473), - [aux_sym_cmd_identifier_token32] = ACTIONS(1473), - [aux_sym_cmd_identifier_token33] = ACTIONS(1473), - [aux_sym_cmd_identifier_token34] = ACTIONS(1473), - [aux_sym_cmd_identifier_token35] = ACTIONS(1473), - [aux_sym_cmd_identifier_token36] = ACTIONS(1473), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [aux_sym_cmd_identifier_token38] = ACTIONS(1473), - [aux_sym_cmd_identifier_token39] = ACTIONS(1475), - [aux_sym_cmd_identifier_token40] = ACTIONS(1475), - [anon_sym_def] = ACTIONS(1473), - [anon_sym_export_DASHenv] = ACTIONS(1473), - [anon_sym_extern] = ACTIONS(1473), - [anon_sym_module] = ACTIONS(1473), - [anon_sym_use] = ACTIONS(1473), - [anon_sym_LPAREN] = ACTIONS(1473), - [anon_sym_DOLLAR] = ACTIONS(1475), - [anon_sym_error] = ACTIONS(1473), - [anon_sym_list] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_break] = ACTIONS(1473), - [anon_sym_continue] = ACTIONS(1473), - [anon_sym_for] = ACTIONS(1473), - [anon_sym_in] = ACTIONS(1473), - [anon_sym_loop] = ACTIONS(1473), - [anon_sym_make] = ACTIONS(1473), - [anon_sym_while] = ACTIONS(1473), - [anon_sym_do] = ACTIONS(1473), - [anon_sym_if] = ACTIONS(1473), - [anon_sym_else] = ACTIONS(1473), - [anon_sym_match] = ACTIONS(1473), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_try] = ACTIONS(1473), - [anon_sym_catch] = ACTIONS(1473), - [anon_sym_return] = ACTIONS(1473), - [anon_sym_source] = ACTIONS(1473), - [anon_sym_source_DASHenv] = ACTIONS(1473), - [anon_sym_register] = ACTIONS(1473), - [anon_sym_hide] = ACTIONS(1473), - [anon_sym_hide_DASHenv] = ACTIONS(1473), - [anon_sym_overlay] = ACTIONS(1473), - [anon_sym_new] = ACTIONS(1473), - [anon_sym_as] = ACTIONS(1473), - [anon_sym_LPAREN2] = ACTIONS(1475), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1475), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [aux_sym__immediate_decimal_token2] = ACTIONS(1513), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1475), - [aux_sym__val_number_decimal_token1] = ACTIONS(1473), - [aux_sym__val_number_decimal_token2] = ACTIONS(1475), - [aux_sym__val_number_decimal_token3] = ACTIONS(1475), - [aux_sym__val_number_decimal_token4] = ACTIONS(1475), - [aux_sym__val_number_token1] = ACTIONS(1475), - [aux_sym__val_number_token2] = ACTIONS(1475), - [aux_sym__val_number_token3] = ACTIONS(1475), - [sym_filesize_unit] = ACTIONS(1473), - [sym_duration_unit] = ACTIONS(1473), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym__str_single_quotes] = ACTIONS(1475), - [sym__str_back_ticks] = ACTIONS(1475), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1473), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1473), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(225), + [anon_sym_export] = ACTIONS(1686), + [anon_sym_alias] = ACTIONS(1686), + [anon_sym_let] = ACTIONS(1686), + [anon_sym_let_DASHenv] = ACTIONS(1686), + [anon_sym_mut] = ACTIONS(1686), + [anon_sym_const] = ACTIONS(1686), + [aux_sym_cmd_identifier_token1] = ACTIONS(1686), + [aux_sym_cmd_identifier_token2] = ACTIONS(1686), + [aux_sym_cmd_identifier_token3] = ACTIONS(1686), + [aux_sym_cmd_identifier_token4] = ACTIONS(1686), + [aux_sym_cmd_identifier_token5] = ACTIONS(1686), + [aux_sym_cmd_identifier_token6] = ACTIONS(1686), + [aux_sym_cmd_identifier_token7] = ACTIONS(1686), + [aux_sym_cmd_identifier_token8] = ACTIONS(1686), + [aux_sym_cmd_identifier_token9] = ACTIONS(1686), + [aux_sym_cmd_identifier_token10] = ACTIONS(1686), + [aux_sym_cmd_identifier_token11] = ACTIONS(1686), + [aux_sym_cmd_identifier_token12] = ACTIONS(1686), + [aux_sym_cmd_identifier_token13] = ACTIONS(1686), + [aux_sym_cmd_identifier_token14] = ACTIONS(1686), + [aux_sym_cmd_identifier_token15] = ACTIONS(1686), + [aux_sym_cmd_identifier_token16] = ACTIONS(1686), + [aux_sym_cmd_identifier_token17] = ACTIONS(1686), + [aux_sym_cmd_identifier_token18] = ACTIONS(1686), + [aux_sym_cmd_identifier_token19] = ACTIONS(1686), + [aux_sym_cmd_identifier_token20] = ACTIONS(1686), + [aux_sym_cmd_identifier_token21] = ACTIONS(1686), + [aux_sym_cmd_identifier_token22] = ACTIONS(1686), + [aux_sym_cmd_identifier_token23] = ACTIONS(1686), + [aux_sym_cmd_identifier_token24] = ACTIONS(1686), + [aux_sym_cmd_identifier_token25] = ACTIONS(1686), + [aux_sym_cmd_identifier_token26] = ACTIONS(1686), + [aux_sym_cmd_identifier_token27] = ACTIONS(1686), + [aux_sym_cmd_identifier_token28] = ACTIONS(1686), + [aux_sym_cmd_identifier_token29] = ACTIONS(1686), + [aux_sym_cmd_identifier_token30] = ACTIONS(1686), + [aux_sym_cmd_identifier_token31] = ACTIONS(1686), + [aux_sym_cmd_identifier_token32] = ACTIONS(1686), + [aux_sym_cmd_identifier_token33] = ACTIONS(1686), + [aux_sym_cmd_identifier_token34] = ACTIONS(1686), + [aux_sym_cmd_identifier_token35] = ACTIONS(1686), + [aux_sym_cmd_identifier_token36] = ACTIONS(1686), + [anon_sym_true] = ACTIONS(1686), + [anon_sym_false] = ACTIONS(1686), + [anon_sym_null] = ACTIONS(1686), + [aux_sym_cmd_identifier_token38] = ACTIONS(1686), + [aux_sym_cmd_identifier_token39] = ACTIONS(1686), + [aux_sym_cmd_identifier_token40] = ACTIONS(1686), + [anon_sym_def] = ACTIONS(1686), + [anon_sym_export_DASHenv] = ACTIONS(1686), + [anon_sym_extern] = ACTIONS(1686), + [anon_sym_module] = ACTIONS(1686), + [anon_sym_use] = ACTIONS(1686), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_DOLLAR] = ACTIONS(1686), + [anon_sym_error] = ACTIONS(1686), + [anon_sym_list] = ACTIONS(1686), + [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_break] = ACTIONS(1686), + [anon_sym_continue] = ACTIONS(1686), + [anon_sym_for] = ACTIONS(1686), + [anon_sym_in] = ACTIONS(1686), + [anon_sym_loop] = ACTIONS(1686), + [anon_sym_make] = ACTIONS(1686), + [anon_sym_while] = ACTIONS(1686), + [anon_sym_do] = ACTIONS(1686), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_else] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(1686), + [anon_sym_RBRACE] = ACTIONS(1686), + [anon_sym_try] = ACTIONS(1686), + [anon_sym_catch] = ACTIONS(1686), + [anon_sym_return] = ACTIONS(1686), + [anon_sym_source] = ACTIONS(1686), + [anon_sym_source_DASHenv] = ACTIONS(1686), + [anon_sym_register] = ACTIONS(1686), + [anon_sym_hide] = ACTIONS(1686), + [anon_sym_hide_DASHenv] = ACTIONS(1686), + [anon_sym_overlay] = ACTIONS(1686), + [anon_sym_new] = ACTIONS(1686), + [anon_sym_as] = ACTIONS(1686), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1686), + [anon_sym_DOT_DOT2] = ACTIONS(1686), + [anon_sym_DOT] = ACTIONS(1627), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1688), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1688), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1686), + [aux_sym__val_number_decimal_token1] = ACTIONS(1686), + [aux_sym__val_number_decimal_token2] = ACTIONS(1686), + [aux_sym__val_number_decimal_token3] = ACTIONS(1686), + [aux_sym__val_number_decimal_token4] = ACTIONS(1686), + [aux_sym__val_number_token1] = ACTIONS(1686), + [aux_sym__val_number_token2] = ACTIONS(1686), + [aux_sym__val_number_token3] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1686), + [sym__str_single_quotes] = ACTIONS(1686), + [sym__str_back_ticks] = ACTIONS(1686), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1686), + [sym__entry_separator] = ACTIONS(1688), + [anon_sym_PLUS] = ACTIONS(1686), + [anon_sym_POUND] = ACTIONS(3), }, [217] = { [sym_comment] = STATE(217), - [anon_sym_export] = ACTIONS(1519), - [anon_sym_alias] = ACTIONS(1519), - [anon_sym_let] = ACTIONS(1519), - [anon_sym_let_DASHenv] = ACTIONS(1519), - [anon_sym_mut] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(1519), - [aux_sym_cmd_identifier_token1] = ACTIONS(1519), - [aux_sym_cmd_identifier_token2] = ACTIONS(1519), - [aux_sym_cmd_identifier_token3] = ACTIONS(1519), - [aux_sym_cmd_identifier_token4] = ACTIONS(1519), - [aux_sym_cmd_identifier_token5] = ACTIONS(1519), - [aux_sym_cmd_identifier_token6] = ACTIONS(1519), - [aux_sym_cmd_identifier_token7] = ACTIONS(1519), - [aux_sym_cmd_identifier_token8] = ACTIONS(1519), - [aux_sym_cmd_identifier_token9] = ACTIONS(1519), - [aux_sym_cmd_identifier_token10] = ACTIONS(1519), - [aux_sym_cmd_identifier_token11] = ACTIONS(1519), - [aux_sym_cmd_identifier_token12] = ACTIONS(1519), - [aux_sym_cmd_identifier_token13] = ACTIONS(1519), - [aux_sym_cmd_identifier_token14] = ACTIONS(1519), - [aux_sym_cmd_identifier_token15] = ACTIONS(1519), - [aux_sym_cmd_identifier_token16] = ACTIONS(1519), - [aux_sym_cmd_identifier_token17] = ACTIONS(1519), - [aux_sym_cmd_identifier_token18] = ACTIONS(1519), - [aux_sym_cmd_identifier_token19] = ACTIONS(1519), - [aux_sym_cmd_identifier_token20] = ACTIONS(1519), - [aux_sym_cmd_identifier_token21] = ACTIONS(1519), - [aux_sym_cmd_identifier_token22] = ACTIONS(1519), - [aux_sym_cmd_identifier_token23] = ACTIONS(1519), - [aux_sym_cmd_identifier_token24] = ACTIONS(1519), - [aux_sym_cmd_identifier_token25] = ACTIONS(1519), - [aux_sym_cmd_identifier_token26] = ACTIONS(1519), - [aux_sym_cmd_identifier_token27] = ACTIONS(1519), - [aux_sym_cmd_identifier_token28] = ACTIONS(1519), - [aux_sym_cmd_identifier_token29] = ACTIONS(1519), - [aux_sym_cmd_identifier_token30] = ACTIONS(1519), - [aux_sym_cmd_identifier_token31] = ACTIONS(1519), - [aux_sym_cmd_identifier_token32] = ACTIONS(1519), - [aux_sym_cmd_identifier_token33] = ACTIONS(1519), - [aux_sym_cmd_identifier_token34] = ACTIONS(1519), - [aux_sym_cmd_identifier_token35] = ACTIONS(1519), - [aux_sym_cmd_identifier_token36] = ACTIONS(1519), - [anon_sym_true] = ACTIONS(1519), - [anon_sym_false] = ACTIONS(1519), - [anon_sym_null] = ACTIONS(1519), - [aux_sym_cmd_identifier_token38] = ACTIONS(1519), - [aux_sym_cmd_identifier_token39] = ACTIONS(1519), - [aux_sym_cmd_identifier_token40] = ACTIONS(1519), - [anon_sym_def] = ACTIONS(1519), - [anon_sym_export_DASHenv] = ACTIONS(1519), - [anon_sym_extern] = ACTIONS(1519), - [anon_sym_module] = ACTIONS(1519), - [anon_sym_use] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1519), - [anon_sym_DOLLAR] = ACTIONS(1519), - [anon_sym_error] = ACTIONS(1519), - [anon_sym_list] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1519), - [anon_sym_break] = ACTIONS(1519), - [anon_sym_continue] = ACTIONS(1519), - [anon_sym_for] = ACTIONS(1519), - [anon_sym_in] = ACTIONS(1519), - [anon_sym_loop] = ACTIONS(1519), - [anon_sym_make] = ACTIONS(1519), - [anon_sym_while] = ACTIONS(1519), - [anon_sym_do] = ACTIONS(1519), - [anon_sym_if] = ACTIONS(1519), - [anon_sym_else] = ACTIONS(1519), - [anon_sym_match] = ACTIONS(1519), - [anon_sym_RBRACE] = ACTIONS(1519), - [anon_sym_try] = ACTIONS(1519), - [anon_sym_catch] = ACTIONS(1519), - [anon_sym_return] = ACTIONS(1519), - [anon_sym_source] = ACTIONS(1519), - [anon_sym_source_DASHenv] = ACTIONS(1519), - [anon_sym_register] = ACTIONS(1519), - [anon_sym_hide] = ACTIONS(1519), - [anon_sym_hide_DASHenv] = ACTIONS(1519), - [anon_sym_overlay] = ACTIONS(1519), - [anon_sym_new] = ACTIONS(1519), - [anon_sym_as] = ACTIONS(1519), - [anon_sym_LPAREN2] = ACTIONS(1521), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1519), - [anon_sym_DOT_DOT2] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1519), - [aux_sym__val_number_decimal_token1] = ACTIONS(1519), - [aux_sym__val_number_decimal_token2] = ACTIONS(1519), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1519), - [aux_sym__val_number_token1] = ACTIONS(1519), - [aux_sym__val_number_token2] = ACTIONS(1519), - [aux_sym__val_number_token3] = ACTIONS(1519), - [sym_filesize_unit] = ACTIONS(1519), - [sym_duration_unit] = ACTIONS(1519), - [anon_sym_DQUOTE] = ACTIONS(1519), - [sym__str_single_quotes] = ACTIONS(1519), - [sym__str_back_ticks] = ACTIONS(1519), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1519), - [sym__entry_separator] = ACTIONS(1521), - [anon_sym_PLUS] = ACTIONS(1519), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1519), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1565), + [anon_sym_alias] = ACTIONS(1565), + [anon_sym_let] = ACTIONS(1565), + [anon_sym_let_DASHenv] = ACTIONS(1565), + [anon_sym_mut] = ACTIONS(1565), + [anon_sym_const] = ACTIONS(1565), + [aux_sym_cmd_identifier_token1] = ACTIONS(1565), + [aux_sym_cmd_identifier_token2] = ACTIONS(1565), + [aux_sym_cmd_identifier_token3] = ACTIONS(1565), + [aux_sym_cmd_identifier_token4] = ACTIONS(1565), + [aux_sym_cmd_identifier_token5] = ACTIONS(1565), + [aux_sym_cmd_identifier_token6] = ACTIONS(1565), + [aux_sym_cmd_identifier_token7] = ACTIONS(1565), + [aux_sym_cmd_identifier_token8] = ACTIONS(1565), + [aux_sym_cmd_identifier_token9] = ACTIONS(1565), + [aux_sym_cmd_identifier_token10] = ACTIONS(1565), + [aux_sym_cmd_identifier_token11] = ACTIONS(1565), + [aux_sym_cmd_identifier_token12] = ACTIONS(1565), + [aux_sym_cmd_identifier_token13] = ACTIONS(1565), + [aux_sym_cmd_identifier_token14] = ACTIONS(1565), + [aux_sym_cmd_identifier_token15] = ACTIONS(1565), + [aux_sym_cmd_identifier_token16] = ACTIONS(1565), + [aux_sym_cmd_identifier_token17] = ACTIONS(1565), + [aux_sym_cmd_identifier_token18] = ACTIONS(1565), + [aux_sym_cmd_identifier_token19] = ACTIONS(1565), + [aux_sym_cmd_identifier_token20] = ACTIONS(1565), + [aux_sym_cmd_identifier_token21] = ACTIONS(1565), + [aux_sym_cmd_identifier_token22] = ACTIONS(1565), + [aux_sym_cmd_identifier_token23] = ACTIONS(1565), + [aux_sym_cmd_identifier_token24] = ACTIONS(1565), + [aux_sym_cmd_identifier_token25] = ACTIONS(1565), + [aux_sym_cmd_identifier_token26] = ACTIONS(1565), + [aux_sym_cmd_identifier_token27] = ACTIONS(1565), + [aux_sym_cmd_identifier_token28] = ACTIONS(1565), + [aux_sym_cmd_identifier_token29] = ACTIONS(1565), + [aux_sym_cmd_identifier_token30] = ACTIONS(1565), + [aux_sym_cmd_identifier_token31] = ACTIONS(1565), + [aux_sym_cmd_identifier_token32] = ACTIONS(1565), + [aux_sym_cmd_identifier_token33] = ACTIONS(1565), + [aux_sym_cmd_identifier_token34] = ACTIONS(1565), + [aux_sym_cmd_identifier_token35] = ACTIONS(1565), + [aux_sym_cmd_identifier_token36] = ACTIONS(1565), + [anon_sym_true] = ACTIONS(1567), + [anon_sym_false] = ACTIONS(1567), + [anon_sym_null] = ACTIONS(1567), + [aux_sym_cmd_identifier_token38] = ACTIONS(1565), + [aux_sym_cmd_identifier_token39] = ACTIONS(1567), + [aux_sym_cmd_identifier_token40] = ACTIONS(1567), + [anon_sym_def] = ACTIONS(1565), + [anon_sym_export_DASHenv] = ACTIONS(1565), + [anon_sym_extern] = ACTIONS(1565), + [anon_sym_module] = ACTIONS(1565), + [anon_sym_use] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_DOLLAR] = ACTIONS(1567), + [anon_sym_error] = ACTIONS(1565), + [anon_sym_list] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_break] = ACTIONS(1565), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_for] = ACTIONS(1565), + [anon_sym_in] = ACTIONS(1565), + [anon_sym_loop] = ACTIONS(1565), + [anon_sym_make] = ACTIONS(1565), + [anon_sym_while] = ACTIONS(1565), + [anon_sym_do] = ACTIONS(1565), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_else] = ACTIONS(1565), + [anon_sym_match] = ACTIONS(1565), + [anon_sym_RBRACE] = ACTIONS(1567), + [anon_sym_try] = ACTIONS(1565), + [anon_sym_catch] = ACTIONS(1565), + [anon_sym_return] = ACTIONS(1565), + [anon_sym_source] = ACTIONS(1565), + [anon_sym_source_DASHenv] = ACTIONS(1565), + [anon_sym_register] = ACTIONS(1565), + [anon_sym_hide] = ACTIONS(1565), + [anon_sym_hide_DASHenv] = ACTIONS(1565), + [anon_sym_overlay] = ACTIONS(1565), + [anon_sym_new] = ACTIONS(1565), + [anon_sym_as] = ACTIONS(1565), + [anon_sym_LPAREN2] = ACTIONS(1567), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1567), + [anon_sym_DOT_DOT2] = ACTIONS(1565), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), + [aux_sym__immediate_decimal_token2] = ACTIONS(1690), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1567), + [aux_sym__val_number_decimal_token1] = ACTIONS(1565), + [aux_sym__val_number_decimal_token2] = ACTIONS(1567), + [aux_sym__val_number_decimal_token3] = ACTIONS(1567), + [aux_sym__val_number_decimal_token4] = ACTIONS(1567), + [aux_sym__val_number_token1] = ACTIONS(1567), + [aux_sym__val_number_token2] = ACTIONS(1567), + [aux_sym__val_number_token3] = ACTIONS(1567), + [sym_filesize_unit] = ACTIONS(1565), + [sym_duration_unit] = ACTIONS(1565), + [anon_sym_DQUOTE] = ACTIONS(1567), + [sym__str_single_quotes] = ACTIONS(1567), + [sym__str_back_ticks] = ACTIONS(1567), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1567), + [anon_sym_PLUS] = ACTIONS(1565), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1565), + [anon_sym_POUND] = ACTIONS(247), }, [218] = { + [sym__expr_parenthesized_immediate] = STATE(627), + [sym__immediate_decimal] = STATE(636), + [sym_val_variable] = STATE(627), [sym_comment] = STATE(218), - [anon_sym_export] = ACTIONS(1585), - [anon_sym_alias] = ACTIONS(1585), - [anon_sym_let] = ACTIONS(1585), - [anon_sym_let_DASHenv] = ACTIONS(1585), - [anon_sym_mut] = ACTIONS(1585), - [anon_sym_const] = ACTIONS(1585), - [aux_sym_cmd_identifier_token1] = ACTIONS(1585), - [aux_sym_cmd_identifier_token2] = ACTIONS(1585), - [aux_sym_cmd_identifier_token3] = ACTIONS(1585), - [aux_sym_cmd_identifier_token4] = ACTIONS(1585), - [aux_sym_cmd_identifier_token5] = ACTIONS(1585), - [aux_sym_cmd_identifier_token6] = ACTIONS(1585), - [aux_sym_cmd_identifier_token7] = ACTIONS(1585), - [aux_sym_cmd_identifier_token8] = ACTIONS(1585), - [aux_sym_cmd_identifier_token9] = ACTIONS(1585), - [aux_sym_cmd_identifier_token10] = ACTIONS(1585), - [aux_sym_cmd_identifier_token11] = ACTIONS(1585), - [aux_sym_cmd_identifier_token12] = ACTIONS(1585), - [aux_sym_cmd_identifier_token13] = ACTIONS(1585), - [aux_sym_cmd_identifier_token14] = ACTIONS(1585), - [aux_sym_cmd_identifier_token15] = ACTIONS(1585), - [aux_sym_cmd_identifier_token16] = ACTIONS(1585), - [aux_sym_cmd_identifier_token17] = ACTIONS(1585), - [aux_sym_cmd_identifier_token18] = ACTIONS(1585), - [aux_sym_cmd_identifier_token19] = ACTIONS(1585), - [aux_sym_cmd_identifier_token20] = ACTIONS(1585), - [aux_sym_cmd_identifier_token21] = ACTIONS(1585), - [aux_sym_cmd_identifier_token22] = ACTIONS(1585), - [aux_sym_cmd_identifier_token23] = ACTIONS(1585), - [aux_sym_cmd_identifier_token24] = ACTIONS(1585), - [aux_sym_cmd_identifier_token25] = ACTIONS(1585), - [aux_sym_cmd_identifier_token26] = ACTIONS(1585), - [aux_sym_cmd_identifier_token27] = ACTIONS(1585), - [aux_sym_cmd_identifier_token28] = ACTIONS(1585), - [aux_sym_cmd_identifier_token29] = ACTIONS(1585), - [aux_sym_cmd_identifier_token30] = ACTIONS(1585), - [aux_sym_cmd_identifier_token31] = ACTIONS(1585), - [aux_sym_cmd_identifier_token32] = ACTIONS(1585), - [aux_sym_cmd_identifier_token33] = ACTIONS(1585), - [aux_sym_cmd_identifier_token34] = ACTIONS(1585), - [aux_sym_cmd_identifier_token35] = ACTIONS(1585), - [aux_sym_cmd_identifier_token36] = ACTIONS(1585), - [anon_sym_true] = ACTIONS(1585), - [anon_sym_false] = ACTIONS(1585), - [anon_sym_null] = ACTIONS(1585), - [aux_sym_cmd_identifier_token38] = ACTIONS(1585), - [aux_sym_cmd_identifier_token39] = ACTIONS(1585), - [aux_sym_cmd_identifier_token40] = ACTIONS(1585), - [anon_sym_def] = ACTIONS(1585), - [anon_sym_export_DASHenv] = ACTIONS(1585), - [anon_sym_extern] = ACTIONS(1585), - [anon_sym_module] = ACTIONS(1585), - [anon_sym_use] = ACTIONS(1585), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_DOLLAR] = ACTIONS(1585), - [anon_sym_error] = ACTIONS(1585), - [anon_sym_list] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_break] = ACTIONS(1585), - [anon_sym_continue] = ACTIONS(1585), - [anon_sym_for] = ACTIONS(1585), - [anon_sym_in] = ACTIONS(1585), - [anon_sym_loop] = ACTIONS(1585), - [anon_sym_make] = ACTIONS(1585), - [anon_sym_while] = ACTIONS(1585), - [anon_sym_do] = ACTIONS(1585), - [anon_sym_if] = ACTIONS(1585), - [anon_sym_else] = ACTIONS(1585), - [anon_sym_match] = ACTIONS(1585), - [anon_sym_RBRACE] = ACTIONS(1585), - [anon_sym_try] = ACTIONS(1585), - [anon_sym_catch] = ACTIONS(1585), - [anon_sym_return] = ACTIONS(1585), - [anon_sym_source] = ACTIONS(1585), - [anon_sym_source_DASHenv] = ACTIONS(1585), - [anon_sym_register] = ACTIONS(1585), - [anon_sym_hide] = ACTIONS(1585), - [anon_sym_hide_DASHenv] = ACTIONS(1585), - [anon_sym_overlay] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1585), - [anon_sym_as] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1587), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1585), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1585), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1585), - [aux_sym__val_number_decimal_token3] = ACTIONS(1585), - [aux_sym__val_number_decimal_token4] = ACTIONS(1585), - [aux_sym__val_number_token1] = ACTIONS(1585), - [aux_sym__val_number_token2] = ACTIONS(1585), - [aux_sym__val_number_token3] = ACTIONS(1585), - [sym_filesize_unit] = ACTIONS(1585), - [sym_duration_unit] = ACTIONS(1585), - [anon_sym_DQUOTE] = ACTIONS(1585), - [sym__str_single_quotes] = ACTIONS(1585), - [sym__str_back_ticks] = ACTIONS(1585), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1585), - [sym__entry_separator] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1585), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1585), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1617), + [anon_sym_alias] = ACTIONS(1617), + [anon_sym_let] = ACTIONS(1617), + [anon_sym_let_DASHenv] = ACTIONS(1617), + [anon_sym_mut] = ACTIONS(1617), + [anon_sym_const] = ACTIONS(1617), + [aux_sym_cmd_identifier_token1] = ACTIONS(1617), + [aux_sym_cmd_identifier_token2] = ACTIONS(1617), + [aux_sym_cmd_identifier_token3] = ACTIONS(1617), + [aux_sym_cmd_identifier_token4] = ACTIONS(1617), + [aux_sym_cmd_identifier_token5] = ACTIONS(1617), + [aux_sym_cmd_identifier_token6] = ACTIONS(1617), + [aux_sym_cmd_identifier_token7] = ACTIONS(1617), + [aux_sym_cmd_identifier_token8] = ACTIONS(1617), + [aux_sym_cmd_identifier_token9] = ACTIONS(1617), + [aux_sym_cmd_identifier_token10] = ACTIONS(1617), + [aux_sym_cmd_identifier_token11] = ACTIONS(1617), + [aux_sym_cmd_identifier_token12] = ACTIONS(1617), + [aux_sym_cmd_identifier_token13] = ACTIONS(1617), + [aux_sym_cmd_identifier_token14] = ACTIONS(1617), + [aux_sym_cmd_identifier_token15] = ACTIONS(1617), + [aux_sym_cmd_identifier_token16] = ACTIONS(1617), + [aux_sym_cmd_identifier_token17] = ACTIONS(1617), + [aux_sym_cmd_identifier_token18] = ACTIONS(1617), + [aux_sym_cmd_identifier_token19] = ACTIONS(1617), + [aux_sym_cmd_identifier_token20] = ACTIONS(1617), + [aux_sym_cmd_identifier_token21] = ACTIONS(1617), + [aux_sym_cmd_identifier_token22] = ACTIONS(1617), + [aux_sym_cmd_identifier_token23] = ACTIONS(1617), + [aux_sym_cmd_identifier_token24] = ACTIONS(1617), + [aux_sym_cmd_identifier_token25] = ACTIONS(1617), + [aux_sym_cmd_identifier_token26] = ACTIONS(1617), + [aux_sym_cmd_identifier_token27] = ACTIONS(1617), + [aux_sym_cmd_identifier_token28] = ACTIONS(1617), + [aux_sym_cmd_identifier_token29] = ACTIONS(1617), + [aux_sym_cmd_identifier_token30] = ACTIONS(1617), + [aux_sym_cmd_identifier_token31] = ACTIONS(1617), + [aux_sym_cmd_identifier_token32] = ACTIONS(1617), + [aux_sym_cmd_identifier_token33] = ACTIONS(1617), + [aux_sym_cmd_identifier_token34] = ACTIONS(1617), + [aux_sym_cmd_identifier_token35] = ACTIONS(1617), + [aux_sym_cmd_identifier_token36] = ACTIONS(1617), + [anon_sym_true] = ACTIONS(1619), + [anon_sym_false] = ACTIONS(1619), + [anon_sym_null] = ACTIONS(1619), + [aux_sym_cmd_identifier_token38] = ACTIONS(1617), + [aux_sym_cmd_identifier_token39] = ACTIONS(1619), + [aux_sym_cmd_identifier_token40] = ACTIONS(1619), + [anon_sym_def] = ACTIONS(1617), + [anon_sym_export_DASHenv] = ACTIONS(1617), + [anon_sym_extern] = ACTIONS(1617), + [anon_sym_module] = ACTIONS(1617), + [anon_sym_use] = ACTIONS(1617), + [anon_sym_LPAREN] = ACTIONS(1617), + [anon_sym_DOLLAR] = ACTIONS(1591), + [anon_sym_error] = ACTIONS(1617), + [anon_sym_list] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_break] = ACTIONS(1617), + [anon_sym_continue] = ACTIONS(1617), + [anon_sym_for] = ACTIONS(1617), + [anon_sym_in] = ACTIONS(1617), + [anon_sym_loop] = ACTIONS(1617), + [anon_sym_make] = ACTIONS(1617), + [anon_sym_while] = ACTIONS(1617), + [anon_sym_do] = ACTIONS(1617), + [anon_sym_if] = ACTIONS(1617), + [anon_sym_else] = ACTIONS(1617), + [anon_sym_match] = ACTIONS(1617), + [anon_sym_RBRACE] = ACTIONS(1619), + [anon_sym_try] = ACTIONS(1617), + [anon_sym_catch] = ACTIONS(1617), + [anon_sym_return] = ACTIONS(1617), + [anon_sym_source] = ACTIONS(1617), + [anon_sym_source_DASHenv] = ACTIONS(1617), + [anon_sym_register] = ACTIONS(1617), + [anon_sym_hide] = ACTIONS(1617), + [anon_sym_hide_DASHenv] = ACTIONS(1617), + [anon_sym_overlay] = ACTIONS(1617), + [anon_sym_new] = ACTIONS(1617), + [anon_sym_as] = ACTIONS(1617), + [anon_sym_LPAREN2] = ACTIONS(1593), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1619), + [aux_sym__immediate_decimal_token1] = ACTIONS(1678), + [aux_sym__immediate_decimal_token3] = ACTIONS(1680), + [aux_sym__immediate_decimal_token4] = ACTIONS(1682), + [aux_sym__immediate_decimal_token5] = ACTIONS(1684), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1619), + [aux_sym__val_number_decimal_token1] = ACTIONS(1617), + [aux_sym__val_number_decimal_token2] = ACTIONS(1617), + [aux_sym__val_number_decimal_token3] = ACTIONS(1617), + [aux_sym__val_number_decimal_token4] = ACTIONS(1617), + [aux_sym__val_number_token1] = ACTIONS(1619), + [aux_sym__val_number_token2] = ACTIONS(1619), + [aux_sym__val_number_token3] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1619), + [sym__str_single_quotes] = ACTIONS(1619), + [sym__str_back_ticks] = ACTIONS(1619), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_POUND] = ACTIONS(247), }, [219] = { + [sym__expr_parenthesized_immediate] = STATE(597), + [sym__immediate_decimal] = STATE(610), + [sym_val_variable] = STATE(597), [sym_comment] = STATE(219), - [anon_sym_export] = ACTIONS(1589), - [anon_sym_alias] = ACTIONS(1589), - [anon_sym_let] = ACTIONS(1589), - [anon_sym_let_DASHenv] = ACTIONS(1589), - [anon_sym_mut] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [aux_sym_cmd_identifier_token1] = ACTIONS(1589), - [aux_sym_cmd_identifier_token2] = ACTIONS(1589), - [aux_sym_cmd_identifier_token3] = ACTIONS(1589), - [aux_sym_cmd_identifier_token4] = ACTIONS(1589), - [aux_sym_cmd_identifier_token5] = ACTIONS(1589), - [aux_sym_cmd_identifier_token6] = ACTIONS(1589), - [aux_sym_cmd_identifier_token7] = ACTIONS(1589), - [aux_sym_cmd_identifier_token8] = ACTIONS(1589), - [aux_sym_cmd_identifier_token9] = ACTIONS(1589), - [aux_sym_cmd_identifier_token10] = ACTIONS(1589), - [aux_sym_cmd_identifier_token11] = ACTIONS(1589), - [aux_sym_cmd_identifier_token12] = ACTIONS(1589), - [aux_sym_cmd_identifier_token13] = ACTIONS(1589), - [aux_sym_cmd_identifier_token14] = ACTIONS(1589), - [aux_sym_cmd_identifier_token15] = ACTIONS(1589), - [aux_sym_cmd_identifier_token16] = ACTIONS(1589), - [aux_sym_cmd_identifier_token17] = ACTIONS(1589), - [aux_sym_cmd_identifier_token18] = ACTIONS(1589), - [aux_sym_cmd_identifier_token19] = ACTIONS(1589), - [aux_sym_cmd_identifier_token20] = ACTIONS(1589), - [aux_sym_cmd_identifier_token21] = ACTIONS(1589), - [aux_sym_cmd_identifier_token22] = ACTIONS(1589), - [aux_sym_cmd_identifier_token23] = ACTIONS(1589), - [aux_sym_cmd_identifier_token24] = ACTIONS(1589), - [aux_sym_cmd_identifier_token25] = ACTIONS(1589), - [aux_sym_cmd_identifier_token26] = ACTIONS(1589), - [aux_sym_cmd_identifier_token27] = ACTIONS(1589), - [aux_sym_cmd_identifier_token28] = ACTIONS(1589), - [aux_sym_cmd_identifier_token29] = ACTIONS(1589), - [aux_sym_cmd_identifier_token30] = ACTIONS(1589), - [aux_sym_cmd_identifier_token31] = ACTIONS(1589), - [aux_sym_cmd_identifier_token32] = ACTIONS(1589), - [aux_sym_cmd_identifier_token33] = ACTIONS(1589), - [aux_sym_cmd_identifier_token34] = ACTIONS(1589), - [aux_sym_cmd_identifier_token35] = ACTIONS(1589), - [aux_sym_cmd_identifier_token36] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1589), - [anon_sym_false] = ACTIONS(1589), - [anon_sym_null] = ACTIONS(1589), - [aux_sym_cmd_identifier_token38] = ACTIONS(1589), - [aux_sym_cmd_identifier_token39] = ACTIONS(1589), - [aux_sym_cmd_identifier_token40] = ACTIONS(1589), - [anon_sym_def] = ACTIONS(1589), - [anon_sym_export_DASHenv] = ACTIONS(1589), - [anon_sym_extern] = ACTIONS(1589), - [anon_sym_module] = ACTIONS(1589), - [anon_sym_use] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_error] = ACTIONS(1589), - [anon_sym_list] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_loop] = ACTIONS(1589), - [anon_sym_make] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_else] = ACTIONS(1589), - [anon_sym_match] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1589), - [anon_sym_try] = ACTIONS(1589), - [anon_sym_catch] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_source] = ACTIONS(1589), - [anon_sym_source_DASHenv] = ACTIONS(1589), - [anon_sym_register] = ACTIONS(1589), - [anon_sym_hide] = ACTIONS(1589), - [anon_sym_hide_DASHenv] = ACTIONS(1589), - [anon_sym_overlay] = ACTIONS(1589), - [anon_sym_new] = ACTIONS(1589), - [anon_sym_as] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1591), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1589), - [anon_sym_DOT_DOT2] = ACTIONS(1589), - [anon_sym_DOT] = ACTIONS(1593), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), - [aux_sym__immediate_decimal_token2] = ACTIONS(1595), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1589), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1589), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1589), - [aux_sym__val_number_token1] = ACTIONS(1589), - [aux_sym__val_number_token2] = ACTIONS(1589), - [aux_sym__val_number_token3] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [sym__str_single_quotes] = ACTIONS(1589), - [sym__str_back_ticks] = ACTIONS(1589), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1589), - [sym__entry_separator] = ACTIONS(1591), - [anon_sym_PLUS] = ACTIONS(1589), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1621), + [anon_sym_alias] = ACTIONS(1621), + [anon_sym_let] = ACTIONS(1621), + [anon_sym_let_DASHenv] = ACTIONS(1621), + [anon_sym_mut] = ACTIONS(1621), + [anon_sym_const] = ACTIONS(1621), + [aux_sym_cmd_identifier_token1] = ACTIONS(1621), + [aux_sym_cmd_identifier_token2] = ACTIONS(1621), + [aux_sym_cmd_identifier_token3] = ACTIONS(1621), + [aux_sym_cmd_identifier_token4] = ACTIONS(1621), + [aux_sym_cmd_identifier_token5] = ACTIONS(1621), + [aux_sym_cmd_identifier_token6] = ACTIONS(1621), + [aux_sym_cmd_identifier_token7] = ACTIONS(1621), + [aux_sym_cmd_identifier_token8] = ACTIONS(1621), + [aux_sym_cmd_identifier_token9] = ACTIONS(1621), + [aux_sym_cmd_identifier_token10] = ACTIONS(1621), + [aux_sym_cmd_identifier_token11] = ACTIONS(1621), + [aux_sym_cmd_identifier_token12] = ACTIONS(1621), + [aux_sym_cmd_identifier_token13] = ACTIONS(1621), + [aux_sym_cmd_identifier_token14] = ACTIONS(1621), + [aux_sym_cmd_identifier_token15] = ACTIONS(1621), + [aux_sym_cmd_identifier_token16] = ACTIONS(1621), + [aux_sym_cmd_identifier_token17] = ACTIONS(1621), + [aux_sym_cmd_identifier_token18] = ACTIONS(1621), + [aux_sym_cmd_identifier_token19] = ACTIONS(1621), + [aux_sym_cmd_identifier_token20] = ACTIONS(1621), + [aux_sym_cmd_identifier_token21] = ACTIONS(1621), + [aux_sym_cmd_identifier_token22] = ACTIONS(1621), + [aux_sym_cmd_identifier_token23] = ACTIONS(1621), + [aux_sym_cmd_identifier_token24] = ACTIONS(1621), + [aux_sym_cmd_identifier_token25] = ACTIONS(1621), + [aux_sym_cmd_identifier_token26] = ACTIONS(1621), + [aux_sym_cmd_identifier_token27] = ACTIONS(1621), + [aux_sym_cmd_identifier_token28] = ACTIONS(1621), + [aux_sym_cmd_identifier_token29] = ACTIONS(1621), + [aux_sym_cmd_identifier_token30] = ACTIONS(1621), + [aux_sym_cmd_identifier_token31] = ACTIONS(1621), + [aux_sym_cmd_identifier_token32] = ACTIONS(1621), + [aux_sym_cmd_identifier_token33] = ACTIONS(1621), + [aux_sym_cmd_identifier_token34] = ACTIONS(1621), + [aux_sym_cmd_identifier_token35] = ACTIONS(1621), + [aux_sym_cmd_identifier_token36] = ACTIONS(1621), + [anon_sym_true] = ACTIONS(1623), + [anon_sym_false] = ACTIONS(1623), + [anon_sym_null] = ACTIONS(1623), + [aux_sym_cmd_identifier_token38] = ACTIONS(1621), + [aux_sym_cmd_identifier_token39] = ACTIONS(1623), + [aux_sym_cmd_identifier_token40] = ACTIONS(1623), + [anon_sym_def] = ACTIONS(1621), + [anon_sym_export_DASHenv] = ACTIONS(1621), + [anon_sym_extern] = ACTIONS(1621), + [anon_sym_module] = ACTIONS(1621), + [anon_sym_use] = ACTIONS(1621), + [anon_sym_LPAREN] = ACTIONS(1621), + [anon_sym_DOLLAR] = ACTIONS(1591), + [anon_sym_error] = ACTIONS(1621), + [anon_sym_list] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1621), + [anon_sym_break] = ACTIONS(1621), + [anon_sym_continue] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1621), + [anon_sym_in] = ACTIONS(1621), + [anon_sym_loop] = ACTIONS(1621), + [anon_sym_make] = ACTIONS(1621), + [anon_sym_while] = ACTIONS(1621), + [anon_sym_do] = ACTIONS(1621), + [anon_sym_if] = ACTIONS(1621), + [anon_sym_else] = ACTIONS(1621), + [anon_sym_match] = ACTIONS(1621), + [anon_sym_RBRACE] = ACTIONS(1623), + [anon_sym_try] = ACTIONS(1621), + [anon_sym_catch] = ACTIONS(1621), + [anon_sym_return] = ACTIONS(1621), + [anon_sym_source] = ACTIONS(1621), + [anon_sym_source_DASHenv] = ACTIONS(1621), + [anon_sym_register] = ACTIONS(1621), + [anon_sym_hide] = ACTIONS(1621), + [anon_sym_hide_DASHenv] = ACTIONS(1621), + [anon_sym_overlay] = ACTIONS(1621), + [anon_sym_new] = ACTIONS(1621), + [anon_sym_as] = ACTIONS(1621), + [anon_sym_LPAREN2] = ACTIONS(1593), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1623), + [aux_sym__immediate_decimal_token1] = ACTIONS(1678), + [aux_sym__immediate_decimal_token3] = ACTIONS(1680), + [aux_sym__immediate_decimal_token4] = ACTIONS(1682), + [aux_sym__immediate_decimal_token5] = ACTIONS(1684), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1623), + [aux_sym__val_number_decimal_token1] = ACTIONS(1621), + [aux_sym__val_number_decimal_token2] = ACTIONS(1621), + [aux_sym__val_number_decimal_token3] = ACTIONS(1621), + [aux_sym__val_number_decimal_token4] = ACTIONS(1621), + [aux_sym__val_number_token1] = ACTIONS(1623), + [aux_sym__val_number_token2] = ACTIONS(1623), + [aux_sym__val_number_token3] = ACTIONS(1623), + [anon_sym_DQUOTE] = ACTIONS(1623), + [sym__str_single_quotes] = ACTIONS(1623), + [sym__str_back_ticks] = ACTIONS(1623), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_POUND] = ACTIONS(247), }, [220] = { + [sym__expr_parenthesized_immediate] = STATE(639), + [sym__immediate_decimal] = STATE(601), + [sym_val_variable] = STATE(639), [sym_comment] = STATE(220), - [anon_sym_export] = ACTIONS(1519), - [anon_sym_alias] = ACTIONS(1519), - [anon_sym_let] = ACTIONS(1519), - [anon_sym_let_DASHenv] = ACTIONS(1519), - [anon_sym_mut] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(1519), - [aux_sym_cmd_identifier_token1] = ACTIONS(1519), - [aux_sym_cmd_identifier_token2] = ACTIONS(1519), - [aux_sym_cmd_identifier_token3] = ACTIONS(1519), - [aux_sym_cmd_identifier_token4] = ACTIONS(1519), - [aux_sym_cmd_identifier_token5] = ACTIONS(1519), - [aux_sym_cmd_identifier_token6] = ACTIONS(1519), - [aux_sym_cmd_identifier_token7] = ACTIONS(1519), - [aux_sym_cmd_identifier_token8] = ACTIONS(1519), - [aux_sym_cmd_identifier_token9] = ACTIONS(1519), - [aux_sym_cmd_identifier_token10] = ACTIONS(1519), - [aux_sym_cmd_identifier_token11] = ACTIONS(1519), - [aux_sym_cmd_identifier_token12] = ACTIONS(1519), - [aux_sym_cmd_identifier_token13] = ACTIONS(1519), - [aux_sym_cmd_identifier_token14] = ACTIONS(1519), - [aux_sym_cmd_identifier_token15] = ACTIONS(1519), - [aux_sym_cmd_identifier_token16] = ACTIONS(1519), - [aux_sym_cmd_identifier_token17] = ACTIONS(1519), - [aux_sym_cmd_identifier_token18] = ACTIONS(1519), - [aux_sym_cmd_identifier_token19] = ACTIONS(1519), - [aux_sym_cmd_identifier_token20] = ACTIONS(1519), - [aux_sym_cmd_identifier_token21] = ACTIONS(1519), - [aux_sym_cmd_identifier_token22] = ACTIONS(1519), - [aux_sym_cmd_identifier_token23] = ACTIONS(1519), - [aux_sym_cmd_identifier_token24] = ACTIONS(1519), - [aux_sym_cmd_identifier_token25] = ACTIONS(1519), - [aux_sym_cmd_identifier_token26] = ACTIONS(1519), - [aux_sym_cmd_identifier_token27] = ACTIONS(1519), - [aux_sym_cmd_identifier_token28] = ACTIONS(1519), - [aux_sym_cmd_identifier_token29] = ACTIONS(1519), - [aux_sym_cmd_identifier_token30] = ACTIONS(1519), - [aux_sym_cmd_identifier_token31] = ACTIONS(1519), - [aux_sym_cmd_identifier_token32] = ACTIONS(1519), - [aux_sym_cmd_identifier_token33] = ACTIONS(1519), - [aux_sym_cmd_identifier_token34] = ACTIONS(1519), - [aux_sym_cmd_identifier_token35] = ACTIONS(1519), - [aux_sym_cmd_identifier_token36] = ACTIONS(1519), - [anon_sym_true] = ACTIONS(1521), - [anon_sym_false] = ACTIONS(1521), - [anon_sym_null] = ACTIONS(1521), - [aux_sym_cmd_identifier_token38] = ACTIONS(1519), - [aux_sym_cmd_identifier_token39] = ACTIONS(1521), - [aux_sym_cmd_identifier_token40] = ACTIONS(1521), - [anon_sym_def] = ACTIONS(1519), - [anon_sym_export_DASHenv] = ACTIONS(1519), - [anon_sym_extern] = ACTIONS(1519), - [anon_sym_module] = ACTIONS(1519), - [anon_sym_use] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1519), - [anon_sym_DOLLAR] = ACTIONS(1521), - [anon_sym_error] = ACTIONS(1519), - [anon_sym_list] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1519), - [anon_sym_break] = ACTIONS(1519), - [anon_sym_continue] = ACTIONS(1519), - [anon_sym_for] = ACTIONS(1519), - [anon_sym_in] = ACTIONS(1519), - [anon_sym_loop] = ACTIONS(1519), - [anon_sym_make] = ACTIONS(1519), - [anon_sym_while] = ACTIONS(1519), - [anon_sym_do] = ACTIONS(1519), - [anon_sym_if] = ACTIONS(1519), - [anon_sym_else] = ACTIONS(1519), - [anon_sym_match] = ACTIONS(1519), - [anon_sym_RBRACE] = ACTIONS(1521), - [anon_sym_try] = ACTIONS(1519), - [anon_sym_catch] = ACTIONS(1519), - [anon_sym_return] = ACTIONS(1519), - [anon_sym_source] = ACTIONS(1519), - [anon_sym_source_DASHenv] = ACTIONS(1519), - [anon_sym_register] = ACTIONS(1519), - [anon_sym_hide] = ACTIONS(1519), - [anon_sym_hide_DASHenv] = ACTIONS(1519), - [anon_sym_overlay] = ACTIONS(1519), - [anon_sym_new] = ACTIONS(1519), - [anon_sym_as] = ACTIONS(1519), - [anon_sym_LPAREN2] = ACTIONS(1521), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1521), - [anon_sym_DOT_DOT2] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), - [aux_sym__immediate_decimal_token2] = ACTIONS(1597), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1521), - [aux_sym__val_number_decimal_token1] = ACTIONS(1519), - [aux_sym__val_number_decimal_token2] = ACTIONS(1521), - [aux_sym__val_number_decimal_token3] = ACTIONS(1521), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(1521), - [aux_sym__val_number_token2] = ACTIONS(1521), - [aux_sym__val_number_token3] = ACTIONS(1521), - [sym_filesize_unit] = ACTIONS(1519), - [sym_duration_unit] = ACTIONS(1519), - [anon_sym_DQUOTE] = ACTIONS(1521), - [sym__str_single_quotes] = ACTIONS(1521), - [sym__str_back_ticks] = ACTIONS(1521), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1521), - [anon_sym_PLUS] = ACTIONS(1519), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1519), + [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), + [aux_sym_cmd_identifier_token1] = ACTIONS(1561), + [aux_sym_cmd_identifier_token2] = ACTIONS(1561), + [aux_sym_cmd_identifier_token3] = ACTIONS(1561), + [aux_sym_cmd_identifier_token4] = ACTIONS(1561), + [aux_sym_cmd_identifier_token5] = ACTIONS(1561), + [aux_sym_cmd_identifier_token6] = ACTIONS(1561), + [aux_sym_cmd_identifier_token7] = ACTIONS(1561), + [aux_sym_cmd_identifier_token8] = ACTIONS(1561), + [aux_sym_cmd_identifier_token9] = ACTIONS(1561), + [aux_sym_cmd_identifier_token10] = ACTIONS(1561), + [aux_sym_cmd_identifier_token11] = ACTIONS(1561), + [aux_sym_cmd_identifier_token12] = ACTIONS(1561), + [aux_sym_cmd_identifier_token13] = ACTIONS(1561), + [aux_sym_cmd_identifier_token14] = ACTIONS(1561), + [aux_sym_cmd_identifier_token15] = ACTIONS(1561), + [aux_sym_cmd_identifier_token16] = ACTIONS(1561), + [aux_sym_cmd_identifier_token17] = ACTIONS(1561), + [aux_sym_cmd_identifier_token18] = ACTIONS(1561), + [aux_sym_cmd_identifier_token19] = ACTIONS(1561), + [aux_sym_cmd_identifier_token20] = ACTIONS(1561), + [aux_sym_cmd_identifier_token21] = ACTIONS(1561), + [aux_sym_cmd_identifier_token22] = ACTIONS(1561), + [aux_sym_cmd_identifier_token23] = ACTIONS(1561), + [aux_sym_cmd_identifier_token24] = ACTIONS(1561), + [aux_sym_cmd_identifier_token25] = ACTIONS(1561), + [aux_sym_cmd_identifier_token26] = ACTIONS(1561), + [aux_sym_cmd_identifier_token27] = ACTIONS(1561), + [aux_sym_cmd_identifier_token28] = ACTIONS(1561), + [aux_sym_cmd_identifier_token29] = ACTIONS(1561), + [aux_sym_cmd_identifier_token30] = ACTIONS(1561), + [aux_sym_cmd_identifier_token31] = ACTIONS(1561), + [aux_sym_cmd_identifier_token32] = ACTIONS(1561), + [aux_sym_cmd_identifier_token33] = ACTIONS(1561), + [aux_sym_cmd_identifier_token34] = ACTIONS(1561), + [aux_sym_cmd_identifier_token35] = ACTIONS(1561), + [aux_sym_cmd_identifier_token36] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1563), + [anon_sym_false] = ACTIONS(1563), + [anon_sym_null] = ACTIONS(1563), + [aux_sym_cmd_identifier_token38] = ACTIONS(1561), + [aux_sym_cmd_identifier_token39] = ACTIONS(1563), + [aux_sym_cmd_identifier_token40] = ACTIONS(1563), + [anon_sym_def] = 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_LPAREN] = ACTIONS(1561), + [anon_sym_DOLLAR] = ACTIONS(1591), + [anon_sym_error] = ACTIONS(1561), + [anon_sym_list] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1561), + [anon_sym_continue] = ACTIONS(1561), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_in] = ACTIONS(1561), + [anon_sym_loop] = ACTIONS(1561), + [anon_sym_make] = ACTIONS(1561), + [anon_sym_while] = ACTIONS(1561), + [anon_sym_do] = ACTIONS(1561), + [anon_sym_if] = ACTIONS(1561), + [anon_sym_else] = ACTIONS(1561), + [anon_sym_match] = ACTIONS(1561), + [anon_sym_RBRACE] = ACTIONS(1563), + [anon_sym_try] = ACTIONS(1561), + [anon_sym_catch] = 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_new] = ACTIONS(1561), + [anon_sym_as] = ACTIONS(1561), + [anon_sym_LPAREN2] = ACTIONS(1593), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1563), + [aux_sym__immediate_decimal_token1] = ACTIONS(1678), + [aux_sym__immediate_decimal_token3] = ACTIONS(1680), + [aux_sym__immediate_decimal_token4] = ACTIONS(1682), + [aux_sym__immediate_decimal_token5] = ACTIONS(1684), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1563), + [aux_sym__val_number_decimal_token1] = ACTIONS(1561), + [aux_sym__val_number_decimal_token2] = ACTIONS(1561), + [aux_sym__val_number_decimal_token3] = ACTIONS(1561), + [aux_sym__val_number_decimal_token4] = ACTIONS(1561), + [aux_sym__val_number_token1] = ACTIONS(1563), + [aux_sym__val_number_token2] = ACTIONS(1563), + [aux_sym__val_number_token3] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1563), + [sym__str_single_quotes] = ACTIONS(1563), + [sym__str_back_ticks] = ACTIONS(1563), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1563), + [anon_sym_PLUS] = ACTIONS(1561), [anon_sym_POUND] = ACTIONS(247), }, [221] = { - [sym_cell_path] = STATE(405), - [sym_path] = STATE(327), [sym_comment] = STATE(221), - [aux_sym_cell_path_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(1599), - [anon_sym_alias] = ACTIONS(1599), - [anon_sym_let] = ACTIONS(1599), - [anon_sym_let_DASHenv] = ACTIONS(1599), - [anon_sym_mut] = ACTIONS(1599), - [anon_sym_const] = ACTIONS(1599), - [aux_sym_cmd_identifier_token1] = ACTIONS(1599), - [aux_sym_cmd_identifier_token2] = ACTIONS(1599), - [aux_sym_cmd_identifier_token3] = ACTIONS(1599), - [aux_sym_cmd_identifier_token4] = ACTIONS(1599), - [aux_sym_cmd_identifier_token5] = ACTIONS(1599), - [aux_sym_cmd_identifier_token6] = ACTIONS(1599), - [aux_sym_cmd_identifier_token7] = ACTIONS(1599), - [aux_sym_cmd_identifier_token8] = ACTIONS(1599), - [aux_sym_cmd_identifier_token9] = ACTIONS(1599), - [aux_sym_cmd_identifier_token10] = ACTIONS(1599), - [aux_sym_cmd_identifier_token11] = ACTIONS(1599), - [aux_sym_cmd_identifier_token12] = ACTIONS(1599), - [aux_sym_cmd_identifier_token13] = ACTIONS(1599), - [aux_sym_cmd_identifier_token14] = ACTIONS(1599), - [aux_sym_cmd_identifier_token15] = ACTIONS(1599), - [aux_sym_cmd_identifier_token16] = ACTIONS(1599), - [aux_sym_cmd_identifier_token17] = ACTIONS(1599), - [aux_sym_cmd_identifier_token18] = ACTIONS(1599), - [aux_sym_cmd_identifier_token19] = ACTIONS(1599), - [aux_sym_cmd_identifier_token20] = ACTIONS(1599), - [aux_sym_cmd_identifier_token21] = ACTIONS(1599), - [aux_sym_cmd_identifier_token22] = ACTIONS(1599), - [aux_sym_cmd_identifier_token23] = ACTIONS(1599), - [aux_sym_cmd_identifier_token24] = ACTIONS(1599), - [aux_sym_cmd_identifier_token25] = ACTIONS(1599), - [aux_sym_cmd_identifier_token26] = ACTIONS(1599), - [aux_sym_cmd_identifier_token27] = ACTIONS(1599), - [aux_sym_cmd_identifier_token28] = ACTIONS(1599), - [aux_sym_cmd_identifier_token29] = ACTIONS(1599), - [aux_sym_cmd_identifier_token30] = ACTIONS(1599), - [aux_sym_cmd_identifier_token31] = ACTIONS(1599), - [aux_sym_cmd_identifier_token32] = ACTIONS(1599), - [aux_sym_cmd_identifier_token33] = ACTIONS(1599), - [aux_sym_cmd_identifier_token34] = ACTIONS(1599), - [aux_sym_cmd_identifier_token35] = ACTIONS(1599), - [aux_sym_cmd_identifier_token36] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1599), - [anon_sym_false] = ACTIONS(1599), - [anon_sym_null] = ACTIONS(1599), - [aux_sym_cmd_identifier_token38] = ACTIONS(1599), - [aux_sym_cmd_identifier_token39] = ACTIONS(1599), - [aux_sym_cmd_identifier_token40] = ACTIONS(1599), - [anon_sym_def] = ACTIONS(1599), - [anon_sym_export_DASHenv] = ACTIONS(1599), - [anon_sym_extern] = ACTIONS(1599), - [anon_sym_module] = ACTIONS(1599), - [anon_sym_use] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_DOLLAR] = ACTIONS(1599), - [anon_sym_error] = ACTIONS(1599), - [anon_sym_list] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_break] = ACTIONS(1599), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_for] = ACTIONS(1599), - [anon_sym_in] = ACTIONS(1599), - [anon_sym_loop] = ACTIONS(1599), - [anon_sym_make] = ACTIONS(1599), - [anon_sym_while] = ACTIONS(1599), - [anon_sym_do] = ACTIONS(1599), - [anon_sym_if] = ACTIONS(1599), - [anon_sym_else] = ACTIONS(1599), - [anon_sym_match] = ACTIONS(1599), - [anon_sym_RBRACE] = ACTIONS(1599), - [anon_sym_try] = ACTIONS(1599), - [anon_sym_catch] = ACTIONS(1599), - [anon_sym_return] = ACTIONS(1599), - [anon_sym_source] = ACTIONS(1599), - [anon_sym_source_DASHenv] = ACTIONS(1599), - [anon_sym_register] = ACTIONS(1599), - [anon_sym_hide] = ACTIONS(1599), - [anon_sym_hide_DASHenv] = ACTIONS(1599), - [anon_sym_overlay] = ACTIONS(1599), - [anon_sym_new] = ACTIONS(1599), - [anon_sym_as] = ACTIONS(1599), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1599), - [anon_sym_DOT_DOT2] = ACTIONS(1599), - [anon_sym_DOT] = ACTIONS(1601), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1603), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1603), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1599), - [aux_sym__val_number_decimal_token1] = ACTIONS(1599), - [aux_sym__val_number_decimal_token2] = ACTIONS(1599), - [aux_sym__val_number_decimal_token3] = ACTIONS(1599), - [aux_sym__val_number_decimal_token4] = ACTIONS(1599), - [aux_sym__val_number_token1] = ACTIONS(1599), - [aux_sym__val_number_token2] = ACTIONS(1599), - [aux_sym__val_number_token3] = ACTIONS(1599), - [anon_sym_DQUOTE] = ACTIONS(1599), - [sym__str_single_quotes] = ACTIONS(1599), - [sym__str_back_ticks] = ACTIONS(1599), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1599), - [sym__entry_separator] = ACTIONS(1603), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1631), + [anon_sym_alias] = ACTIONS(1631), + [anon_sym_let] = ACTIONS(1631), + [anon_sym_let_DASHenv] = ACTIONS(1631), + [anon_sym_mut] = ACTIONS(1631), + [anon_sym_const] = ACTIONS(1631), + [aux_sym_cmd_identifier_token1] = ACTIONS(1631), + [aux_sym_cmd_identifier_token2] = ACTIONS(1631), + [aux_sym_cmd_identifier_token3] = ACTIONS(1631), + [aux_sym_cmd_identifier_token4] = ACTIONS(1631), + [aux_sym_cmd_identifier_token5] = ACTIONS(1631), + [aux_sym_cmd_identifier_token6] = ACTIONS(1631), + [aux_sym_cmd_identifier_token7] = ACTIONS(1631), + [aux_sym_cmd_identifier_token8] = ACTIONS(1631), + [aux_sym_cmd_identifier_token9] = ACTIONS(1631), + [aux_sym_cmd_identifier_token10] = ACTIONS(1631), + [aux_sym_cmd_identifier_token11] = ACTIONS(1631), + [aux_sym_cmd_identifier_token12] = ACTIONS(1631), + [aux_sym_cmd_identifier_token13] = ACTIONS(1631), + [aux_sym_cmd_identifier_token14] = ACTIONS(1631), + [aux_sym_cmd_identifier_token15] = ACTIONS(1631), + [aux_sym_cmd_identifier_token16] = ACTIONS(1631), + [aux_sym_cmd_identifier_token17] = ACTIONS(1631), + [aux_sym_cmd_identifier_token18] = ACTIONS(1631), + [aux_sym_cmd_identifier_token19] = ACTIONS(1631), + [aux_sym_cmd_identifier_token20] = ACTIONS(1631), + [aux_sym_cmd_identifier_token21] = ACTIONS(1631), + [aux_sym_cmd_identifier_token22] = ACTIONS(1631), + [aux_sym_cmd_identifier_token23] = ACTIONS(1631), + [aux_sym_cmd_identifier_token24] = ACTIONS(1631), + [aux_sym_cmd_identifier_token25] = ACTIONS(1631), + [aux_sym_cmd_identifier_token26] = ACTIONS(1631), + [aux_sym_cmd_identifier_token27] = ACTIONS(1631), + [aux_sym_cmd_identifier_token28] = ACTIONS(1631), + [aux_sym_cmd_identifier_token29] = ACTIONS(1631), + [aux_sym_cmd_identifier_token30] = ACTIONS(1631), + [aux_sym_cmd_identifier_token31] = ACTIONS(1631), + [aux_sym_cmd_identifier_token32] = ACTIONS(1631), + [aux_sym_cmd_identifier_token33] = ACTIONS(1631), + [aux_sym_cmd_identifier_token34] = ACTIONS(1631), + [aux_sym_cmd_identifier_token35] = ACTIONS(1631), + [aux_sym_cmd_identifier_token36] = ACTIONS(1631), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [aux_sym_cmd_identifier_token38] = ACTIONS(1631), + [aux_sym_cmd_identifier_token39] = ACTIONS(1633), + [aux_sym_cmd_identifier_token40] = ACTIONS(1633), + [anon_sym_def] = ACTIONS(1631), + [anon_sym_export_DASHenv] = ACTIONS(1631), + [anon_sym_extern] = ACTIONS(1631), + [anon_sym_module] = ACTIONS(1631), + [anon_sym_use] = ACTIONS(1631), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_DOLLAR] = ACTIONS(1633), + [anon_sym_error] = ACTIONS(1631), + [anon_sym_list] = ACTIONS(1631), + [anon_sym_DASH] = ACTIONS(1631), + [anon_sym_break] = ACTIONS(1631), + [anon_sym_continue] = ACTIONS(1631), + [anon_sym_for] = ACTIONS(1631), + [anon_sym_in] = ACTIONS(1631), + [anon_sym_loop] = ACTIONS(1631), + [anon_sym_make] = ACTIONS(1631), + [anon_sym_while] = ACTIONS(1631), + [anon_sym_do] = ACTIONS(1631), + [anon_sym_if] = ACTIONS(1631), + [anon_sym_else] = ACTIONS(1631), + [anon_sym_match] = ACTIONS(1631), + [anon_sym_RBRACE] = ACTIONS(1633), + [anon_sym_try] = ACTIONS(1631), + [anon_sym_catch] = ACTIONS(1631), + [anon_sym_return] = ACTIONS(1631), + [anon_sym_source] = ACTIONS(1631), + [anon_sym_source_DASHenv] = ACTIONS(1631), + [anon_sym_register] = ACTIONS(1631), + [anon_sym_hide] = ACTIONS(1631), + [anon_sym_hide_DASHenv] = ACTIONS(1631), + [anon_sym_overlay] = ACTIONS(1631), + [anon_sym_new] = ACTIONS(1631), + [anon_sym_as] = ACTIONS(1631), + [anon_sym_LPAREN2] = ACTIONS(1633), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1633), + [anon_sym_DOT_DOT2] = ACTIONS(1631), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1633), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1633), + [aux_sym__immediate_decimal_token1] = ACTIONS(1692), + [aux_sym__immediate_decimal_token2] = ACTIONS(1694), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1633), + [aux_sym__val_number_decimal_token1] = ACTIONS(1631), + [aux_sym__val_number_decimal_token2] = ACTIONS(1633), + [aux_sym__val_number_decimal_token3] = ACTIONS(1633), + [aux_sym__val_number_decimal_token4] = ACTIONS(1633), + [aux_sym__val_number_token1] = ACTIONS(1633), + [aux_sym__val_number_token2] = ACTIONS(1633), + [aux_sym__val_number_token3] = ACTIONS(1633), + [anon_sym_DQUOTE] = ACTIONS(1633), + [sym__str_single_quotes] = ACTIONS(1633), + [sym__str_back_ticks] = ACTIONS(1633), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1631), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1631), + [anon_sym_POUND] = ACTIONS(247), }, [222] = { - [sym__expr_parenthesized_immediate] = STATE(602), - [sym__immediate_decimal] = STATE(603), - [sym_val_variable] = STATE(602), [sym_comment] = STATE(222), - [anon_sym_export] = ACTIONS(1431), - [anon_sym_alias] = ACTIONS(1431), - [anon_sym_let] = ACTIONS(1431), - [anon_sym_let_DASHenv] = ACTIONS(1431), - [anon_sym_mut] = ACTIONS(1431), - [anon_sym_const] = ACTIONS(1431), - [aux_sym_cmd_identifier_token1] = ACTIONS(1431), - [aux_sym_cmd_identifier_token2] = ACTIONS(1431), - [aux_sym_cmd_identifier_token3] = ACTIONS(1431), - [aux_sym_cmd_identifier_token4] = ACTIONS(1431), - [aux_sym_cmd_identifier_token5] = ACTIONS(1431), - [aux_sym_cmd_identifier_token6] = ACTIONS(1431), - [aux_sym_cmd_identifier_token7] = ACTIONS(1431), - [aux_sym_cmd_identifier_token8] = ACTIONS(1431), - [aux_sym_cmd_identifier_token9] = ACTIONS(1431), - [aux_sym_cmd_identifier_token10] = ACTIONS(1431), - [aux_sym_cmd_identifier_token11] = ACTIONS(1431), - [aux_sym_cmd_identifier_token12] = ACTIONS(1431), - [aux_sym_cmd_identifier_token13] = ACTIONS(1431), - [aux_sym_cmd_identifier_token14] = ACTIONS(1431), - [aux_sym_cmd_identifier_token15] = ACTIONS(1431), - [aux_sym_cmd_identifier_token16] = ACTIONS(1431), - [aux_sym_cmd_identifier_token17] = ACTIONS(1431), - [aux_sym_cmd_identifier_token18] = ACTIONS(1431), - [aux_sym_cmd_identifier_token19] = ACTIONS(1431), - [aux_sym_cmd_identifier_token20] = ACTIONS(1431), - [aux_sym_cmd_identifier_token21] = ACTIONS(1431), - [aux_sym_cmd_identifier_token22] = ACTIONS(1431), - [aux_sym_cmd_identifier_token23] = ACTIONS(1431), - [aux_sym_cmd_identifier_token24] = ACTIONS(1431), - [aux_sym_cmd_identifier_token25] = ACTIONS(1431), - [aux_sym_cmd_identifier_token26] = ACTIONS(1431), - [aux_sym_cmd_identifier_token27] = ACTIONS(1431), - [aux_sym_cmd_identifier_token28] = ACTIONS(1431), - [aux_sym_cmd_identifier_token29] = ACTIONS(1431), - [aux_sym_cmd_identifier_token30] = ACTIONS(1431), - [aux_sym_cmd_identifier_token31] = ACTIONS(1431), - [aux_sym_cmd_identifier_token32] = ACTIONS(1431), - [aux_sym_cmd_identifier_token33] = ACTIONS(1431), - [aux_sym_cmd_identifier_token34] = ACTIONS(1431), - [aux_sym_cmd_identifier_token35] = ACTIONS(1431), - [aux_sym_cmd_identifier_token36] = ACTIONS(1431), - [anon_sym_true] = ACTIONS(1441), - [anon_sym_false] = ACTIONS(1441), - [anon_sym_null] = ACTIONS(1441), - [aux_sym_cmd_identifier_token38] = ACTIONS(1431), - [aux_sym_cmd_identifier_token39] = ACTIONS(1441), - [aux_sym_cmd_identifier_token40] = ACTIONS(1441), - [anon_sym_def] = ACTIONS(1431), - [anon_sym_export_DASHenv] = ACTIONS(1431), - [anon_sym_extern] = ACTIONS(1431), - [anon_sym_module] = ACTIONS(1431), - [anon_sym_use] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_DOLLAR] = ACTIONS(1489), - [anon_sym_error] = ACTIONS(1431), - [anon_sym_list] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_break] = ACTIONS(1431), - [anon_sym_continue] = ACTIONS(1431), - [anon_sym_for] = ACTIONS(1431), - [anon_sym_in] = ACTIONS(1431), - [anon_sym_loop] = ACTIONS(1431), - [anon_sym_make] = ACTIONS(1431), - [anon_sym_while] = ACTIONS(1431), - [anon_sym_do] = ACTIONS(1431), - [anon_sym_if] = ACTIONS(1431), - [anon_sym_else] = ACTIONS(1431), - [anon_sym_match] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1441), - [anon_sym_try] = ACTIONS(1431), - [anon_sym_catch] = ACTIONS(1431), - [anon_sym_return] = ACTIONS(1431), - [anon_sym_source] = ACTIONS(1431), - [anon_sym_source_DASHenv] = ACTIONS(1431), - [anon_sym_register] = ACTIONS(1431), - [anon_sym_hide] = ACTIONS(1431), - [anon_sym_hide_DASHenv] = ACTIONS(1431), - [anon_sym_overlay] = ACTIONS(1431), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_as] = ACTIONS(1431), - [anon_sym_LPAREN2] = ACTIONS(1491), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1441), - [aux_sym__immediate_decimal_token1] = ACTIONS(1577), - [aux_sym__immediate_decimal_token3] = ACTIONS(1579), - [aux_sym__immediate_decimal_token4] = ACTIONS(1581), - [aux_sym__immediate_decimal_token5] = ACTIONS(1583), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1441), - [aux_sym__val_number_decimal_token1] = ACTIONS(1431), - [aux_sym__val_number_decimal_token2] = ACTIONS(1431), - [aux_sym__val_number_decimal_token3] = ACTIONS(1431), - [aux_sym__val_number_decimal_token4] = ACTIONS(1431), - [aux_sym__val_number_token1] = ACTIONS(1441), - [aux_sym__val_number_token2] = ACTIONS(1441), - [aux_sym__val_number_token3] = ACTIONS(1441), - [anon_sym_DQUOTE] = ACTIONS(1441), - [sym__str_single_quotes] = ACTIONS(1441), - [sym__str_back_ticks] = ACTIONS(1441), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1441), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1643), + [anon_sym_alias] = ACTIONS(1643), + [anon_sym_let] = ACTIONS(1643), + [anon_sym_let_DASHenv] = ACTIONS(1643), + [anon_sym_mut] = ACTIONS(1643), + [anon_sym_const] = ACTIONS(1643), + [aux_sym_cmd_identifier_token1] = ACTIONS(1643), + [aux_sym_cmd_identifier_token2] = ACTIONS(1643), + [aux_sym_cmd_identifier_token3] = ACTIONS(1643), + [aux_sym_cmd_identifier_token4] = ACTIONS(1643), + [aux_sym_cmd_identifier_token5] = ACTIONS(1643), + [aux_sym_cmd_identifier_token6] = ACTIONS(1643), + [aux_sym_cmd_identifier_token7] = ACTIONS(1643), + [aux_sym_cmd_identifier_token8] = ACTIONS(1643), + [aux_sym_cmd_identifier_token9] = ACTIONS(1643), + [aux_sym_cmd_identifier_token10] = ACTIONS(1643), + [aux_sym_cmd_identifier_token11] = ACTIONS(1643), + [aux_sym_cmd_identifier_token12] = ACTIONS(1643), + [aux_sym_cmd_identifier_token13] = ACTIONS(1643), + [aux_sym_cmd_identifier_token14] = ACTIONS(1643), + [aux_sym_cmd_identifier_token15] = ACTIONS(1643), + [aux_sym_cmd_identifier_token16] = ACTIONS(1643), + [aux_sym_cmd_identifier_token17] = ACTIONS(1643), + [aux_sym_cmd_identifier_token18] = ACTIONS(1643), + [aux_sym_cmd_identifier_token19] = ACTIONS(1643), + [aux_sym_cmd_identifier_token20] = ACTIONS(1643), + [aux_sym_cmd_identifier_token21] = ACTIONS(1643), + [aux_sym_cmd_identifier_token22] = ACTIONS(1643), + [aux_sym_cmd_identifier_token23] = ACTIONS(1643), + [aux_sym_cmd_identifier_token24] = ACTIONS(1643), + [aux_sym_cmd_identifier_token25] = ACTIONS(1643), + [aux_sym_cmd_identifier_token26] = ACTIONS(1643), + [aux_sym_cmd_identifier_token27] = ACTIONS(1643), + [aux_sym_cmd_identifier_token28] = ACTIONS(1643), + [aux_sym_cmd_identifier_token29] = ACTIONS(1643), + [aux_sym_cmd_identifier_token30] = ACTIONS(1643), + [aux_sym_cmd_identifier_token31] = ACTIONS(1643), + [aux_sym_cmd_identifier_token32] = ACTIONS(1643), + [aux_sym_cmd_identifier_token33] = ACTIONS(1643), + [aux_sym_cmd_identifier_token34] = ACTIONS(1643), + [aux_sym_cmd_identifier_token35] = ACTIONS(1643), + [aux_sym_cmd_identifier_token36] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_null] = ACTIONS(1643), + [aux_sym_cmd_identifier_token38] = ACTIONS(1643), + [aux_sym_cmd_identifier_token39] = ACTIONS(1643), + [aux_sym_cmd_identifier_token40] = ACTIONS(1643), + [anon_sym_def] = ACTIONS(1643), + [anon_sym_export_DASHenv] = ACTIONS(1643), + [anon_sym_extern] = ACTIONS(1643), + [anon_sym_module] = ACTIONS(1643), + [anon_sym_use] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(1643), + [anon_sym_error] = ACTIONS(1643), + [anon_sym_list] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_break] = ACTIONS(1643), + [anon_sym_continue] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_loop] = ACTIONS(1643), + [anon_sym_make] = ACTIONS(1643), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_do] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_else] = ACTIONS(1643), + [anon_sym_match] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), + [anon_sym_try] = ACTIONS(1643), + [anon_sym_catch] = ACTIONS(1643), + [anon_sym_return] = ACTIONS(1643), + [anon_sym_source] = ACTIONS(1643), + [anon_sym_source_DASHenv] = ACTIONS(1643), + [anon_sym_register] = ACTIONS(1643), + [anon_sym_hide] = ACTIONS(1643), + [anon_sym_hide_DASHenv] = ACTIONS(1643), + [anon_sym_overlay] = ACTIONS(1643), + [anon_sym_new] = ACTIONS(1643), + [anon_sym_as] = ACTIONS(1643), + [anon_sym_LPAREN2] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1643), + [anon_sym_DOT_DOT2] = ACTIONS(1643), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), + [aux_sym__immediate_decimal_token2] = ACTIONS(1649), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1643), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1643), + [aux_sym__val_number_decimal_token3] = ACTIONS(1643), + [aux_sym__val_number_decimal_token4] = ACTIONS(1643), + [aux_sym__val_number_token1] = ACTIONS(1643), + [aux_sym__val_number_token2] = ACTIONS(1643), + [aux_sym__val_number_token3] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1643), + [sym__str_single_quotes] = ACTIONS(1643), + [sym__str_back_ticks] = ACTIONS(1643), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1643), + [sym__entry_separator] = ACTIONS(1645), + [anon_sym_PLUS] = ACTIONS(1643), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1643), + [anon_sym_POUND] = ACTIONS(3), }, [223] = { [sym_comment] = STATE(223), - [aux_sym__block_body_repeat1] = STATE(226), - [anon_sym_export] = ACTIONS(1605), - [anon_sym_alias] = ACTIONS(1605), - [anon_sym_let] = ACTIONS(1605), - [anon_sym_let_DASHenv] = ACTIONS(1605), - [anon_sym_mut] = ACTIONS(1605), - [anon_sym_const] = ACTIONS(1605), - [aux_sym_cmd_identifier_token1] = ACTIONS(1605), - [aux_sym_cmd_identifier_token2] = ACTIONS(1605), - [aux_sym_cmd_identifier_token3] = ACTIONS(1605), - [aux_sym_cmd_identifier_token4] = ACTIONS(1605), - [aux_sym_cmd_identifier_token5] = ACTIONS(1605), - [aux_sym_cmd_identifier_token6] = ACTIONS(1605), - [aux_sym_cmd_identifier_token7] = ACTIONS(1605), - [aux_sym_cmd_identifier_token8] = ACTIONS(1605), - [aux_sym_cmd_identifier_token9] = ACTIONS(1605), - [aux_sym_cmd_identifier_token10] = ACTIONS(1605), - [aux_sym_cmd_identifier_token11] = ACTIONS(1605), - [aux_sym_cmd_identifier_token12] = ACTIONS(1605), - [aux_sym_cmd_identifier_token13] = ACTIONS(1605), - [aux_sym_cmd_identifier_token14] = ACTIONS(1605), - [aux_sym_cmd_identifier_token15] = ACTIONS(1605), - [aux_sym_cmd_identifier_token16] = ACTIONS(1605), - [aux_sym_cmd_identifier_token17] = ACTIONS(1605), - [aux_sym_cmd_identifier_token18] = ACTIONS(1605), - [aux_sym_cmd_identifier_token19] = ACTIONS(1605), - [aux_sym_cmd_identifier_token20] = ACTIONS(1605), - [aux_sym_cmd_identifier_token21] = ACTIONS(1605), - [aux_sym_cmd_identifier_token22] = ACTIONS(1605), - [aux_sym_cmd_identifier_token23] = ACTIONS(1605), - [aux_sym_cmd_identifier_token24] = ACTIONS(1607), - [aux_sym_cmd_identifier_token25] = ACTIONS(1605), - [aux_sym_cmd_identifier_token26] = ACTIONS(1607), - [aux_sym_cmd_identifier_token27] = ACTIONS(1605), - [aux_sym_cmd_identifier_token28] = ACTIONS(1605), - [aux_sym_cmd_identifier_token29] = ACTIONS(1605), - [aux_sym_cmd_identifier_token30] = ACTIONS(1605), - [aux_sym_cmd_identifier_token31] = ACTIONS(1607), - [aux_sym_cmd_identifier_token32] = ACTIONS(1607), - [aux_sym_cmd_identifier_token33] = ACTIONS(1607), - [aux_sym_cmd_identifier_token34] = ACTIONS(1607), - [aux_sym_cmd_identifier_token35] = ACTIONS(1607), - [aux_sym_cmd_identifier_token36] = ACTIONS(1605), - [anon_sym_true] = ACTIONS(1607), - [anon_sym_false] = ACTIONS(1607), - [anon_sym_null] = ACTIONS(1607), - [aux_sym_cmd_identifier_token38] = ACTIONS(1605), - [aux_sym_cmd_identifier_token39] = ACTIONS(1607), - [aux_sym_cmd_identifier_token40] = ACTIONS(1607), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(1605), - [anon_sym_export_DASHenv] = ACTIONS(1605), - [anon_sym_extern] = ACTIONS(1605), - [anon_sym_module] = ACTIONS(1605), - [anon_sym_use] = ACTIONS(1605), - [anon_sym_LBRACK] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_RPAREN] = ACTIONS(1609), - [anon_sym_DOLLAR] = ACTIONS(1605), - [anon_sym_error] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_break] = ACTIONS(1605), - [anon_sym_continue] = ACTIONS(1605), - [anon_sym_for] = ACTIONS(1605), - [anon_sym_loop] = ACTIONS(1605), - [anon_sym_while] = ACTIONS(1605), - [anon_sym_do] = ACTIONS(1605), - [anon_sym_if] = ACTIONS(1605), - [anon_sym_match] = ACTIONS(1605), - [aux_sym_ctrl_match_token1] = ACTIONS(1607), - [anon_sym_RBRACE] = ACTIONS(1609), - [anon_sym_DOT_DOT] = ACTIONS(1605), - [anon_sym_try] = ACTIONS(1605), - [anon_sym_return] = ACTIONS(1605), - [anon_sym_source] = ACTIONS(1605), - [anon_sym_source_DASHenv] = ACTIONS(1605), - [anon_sym_register] = ACTIONS(1605), - [anon_sym_hide] = ACTIONS(1605), - [anon_sym_hide_DASHenv] = ACTIONS(1605), - [anon_sym_overlay] = ACTIONS(1605), - [anon_sym_where] = ACTIONS(1607), - [aux_sym_expr_unary_token1] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), - [anon_sym_DOT_DOT_LT] = ACTIONS(1607), - [aux_sym__val_number_decimal_token1] = ACTIONS(1605), - [aux_sym__val_number_decimal_token2] = ACTIONS(1607), - [aux_sym__val_number_decimal_token3] = ACTIONS(1607), - [aux_sym__val_number_decimal_token4] = ACTIONS(1607), - [aux_sym__val_number_token1] = ACTIONS(1607), - [aux_sym__val_number_token2] = ACTIONS(1607), - [aux_sym__val_number_token3] = ACTIONS(1607), - [anon_sym_0b] = ACTIONS(1605), - [anon_sym_0o] = ACTIONS(1605), - [anon_sym_0x] = ACTIONS(1605), - [sym_val_date] = ACTIONS(1607), - [anon_sym_DQUOTE] = ACTIONS(1607), - [sym__str_single_quotes] = ACTIONS(1607), - [sym__str_back_ticks] = ACTIONS(1607), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1607), - [aux_sym_env_var_token1] = ACTIONS(1605), - [anon_sym_CARET] = ACTIONS(1607), + [aux_sym__block_body_repeat1] = STATE(233), + [ts_builtin_sym_end] = ACTIONS(1666), + [anon_sym_export] = ACTIONS(1651), + [anon_sym_alias] = ACTIONS(1651), + [anon_sym_let] = ACTIONS(1651), + [anon_sym_let_DASHenv] = ACTIONS(1651), + [anon_sym_mut] = ACTIONS(1651), + [anon_sym_const] = ACTIONS(1651), + [aux_sym_cmd_identifier_token1] = ACTIONS(1651), + [aux_sym_cmd_identifier_token2] = ACTIONS(1651), + [aux_sym_cmd_identifier_token3] = ACTIONS(1651), + [aux_sym_cmd_identifier_token4] = ACTIONS(1651), + [aux_sym_cmd_identifier_token5] = ACTIONS(1651), + [aux_sym_cmd_identifier_token6] = ACTIONS(1651), + [aux_sym_cmd_identifier_token7] = ACTIONS(1651), + [aux_sym_cmd_identifier_token8] = ACTIONS(1651), + [aux_sym_cmd_identifier_token9] = ACTIONS(1651), + [aux_sym_cmd_identifier_token10] = ACTIONS(1651), + [aux_sym_cmd_identifier_token11] = ACTIONS(1651), + [aux_sym_cmd_identifier_token12] = ACTIONS(1651), + [aux_sym_cmd_identifier_token13] = ACTIONS(1651), + [aux_sym_cmd_identifier_token14] = ACTIONS(1651), + [aux_sym_cmd_identifier_token15] = ACTIONS(1651), + [aux_sym_cmd_identifier_token16] = ACTIONS(1651), + [aux_sym_cmd_identifier_token17] = ACTIONS(1651), + [aux_sym_cmd_identifier_token18] = ACTIONS(1651), + [aux_sym_cmd_identifier_token19] = ACTIONS(1651), + [aux_sym_cmd_identifier_token20] = ACTIONS(1651), + [aux_sym_cmd_identifier_token21] = ACTIONS(1651), + [aux_sym_cmd_identifier_token22] = ACTIONS(1651), + [aux_sym_cmd_identifier_token23] = ACTIONS(1651), + [aux_sym_cmd_identifier_token24] = ACTIONS(1653), + [aux_sym_cmd_identifier_token25] = ACTIONS(1651), + [aux_sym_cmd_identifier_token26] = ACTIONS(1653), + [aux_sym_cmd_identifier_token27] = ACTIONS(1651), + [aux_sym_cmd_identifier_token28] = ACTIONS(1651), + [aux_sym_cmd_identifier_token29] = ACTIONS(1651), + [aux_sym_cmd_identifier_token30] = ACTIONS(1651), + [aux_sym_cmd_identifier_token31] = ACTIONS(1653), + [aux_sym_cmd_identifier_token32] = ACTIONS(1653), + [aux_sym_cmd_identifier_token33] = ACTIONS(1653), + [aux_sym_cmd_identifier_token34] = ACTIONS(1653), + [aux_sym_cmd_identifier_token35] = ACTIONS(1653), + [aux_sym_cmd_identifier_token36] = ACTIONS(1651), + [anon_sym_true] = ACTIONS(1653), + [anon_sym_false] = ACTIONS(1653), + [anon_sym_null] = ACTIONS(1653), + [aux_sym_cmd_identifier_token38] = ACTIONS(1651), + [aux_sym_cmd_identifier_token39] = ACTIONS(1653), + [aux_sym_cmd_identifier_token40] = ACTIONS(1653), + [sym__newline] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_def] = ACTIONS(1651), + [anon_sym_export_DASHenv] = ACTIONS(1651), + [anon_sym_extern] = ACTIONS(1651), + [anon_sym_module] = ACTIONS(1651), + [anon_sym_use] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_DOLLAR] = ACTIONS(1651), + [anon_sym_error] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(1651), + [anon_sym_break] = ACTIONS(1651), + [anon_sym_continue] = ACTIONS(1651), + [anon_sym_for] = ACTIONS(1651), + [anon_sym_loop] = ACTIONS(1651), + [anon_sym_while] = ACTIONS(1651), + [anon_sym_do] = ACTIONS(1651), + [anon_sym_if] = ACTIONS(1651), + [anon_sym_match] = ACTIONS(1651), + [aux_sym_ctrl_match_token1] = ACTIONS(1653), + [anon_sym_DOT_DOT] = ACTIONS(1651), + [anon_sym_try] = ACTIONS(1651), + [anon_sym_return] = ACTIONS(1651), + [anon_sym_source] = ACTIONS(1651), + [anon_sym_source_DASHenv] = ACTIONS(1651), + [anon_sym_register] = ACTIONS(1651), + [anon_sym_hide] = ACTIONS(1651), + [anon_sym_hide_DASHenv] = ACTIONS(1651), + [anon_sym_overlay] = ACTIONS(1651), + [anon_sym_where] = ACTIONS(1653), + [aux_sym_expr_unary_token1] = ACTIONS(1653), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1653), + [anon_sym_DOT_DOT_LT] = ACTIONS(1653), + [aux_sym__val_number_decimal_token1] = ACTIONS(1651), + [aux_sym__val_number_decimal_token2] = ACTIONS(1653), + [aux_sym__val_number_decimal_token3] = ACTIONS(1653), + [aux_sym__val_number_decimal_token4] = ACTIONS(1653), + [aux_sym__val_number_token1] = ACTIONS(1653), + [aux_sym__val_number_token2] = ACTIONS(1653), + [aux_sym__val_number_token3] = ACTIONS(1653), + [anon_sym_0b] = ACTIONS(1651), + [anon_sym_0o] = ACTIONS(1651), + [anon_sym_0x] = ACTIONS(1651), + [sym_val_date] = ACTIONS(1653), + [anon_sym_DQUOTE] = ACTIONS(1653), + [sym__str_single_quotes] = ACTIONS(1653), + [sym__str_back_ticks] = ACTIONS(1653), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1653), + [aux_sym_env_var_token1] = ACTIONS(1651), + [anon_sym_CARET] = ACTIONS(1653), [anon_sym_POUND] = ACTIONS(247), }, [224] = { + [sym_cell_path] = STATE(430), + [sym_path] = STATE(388), [sym_comment] = STATE(224), - [aux_sym__block_body_repeat1] = STATE(226), - [anon_sym_export] = ACTIONS(1605), - [anon_sym_alias] = ACTIONS(1605), - [anon_sym_let] = ACTIONS(1605), - [anon_sym_let_DASHenv] = ACTIONS(1605), - [anon_sym_mut] = ACTIONS(1605), - [anon_sym_const] = ACTIONS(1605), - [aux_sym_cmd_identifier_token1] = ACTIONS(1605), - [aux_sym_cmd_identifier_token2] = ACTIONS(1605), - [aux_sym_cmd_identifier_token3] = ACTIONS(1605), - [aux_sym_cmd_identifier_token4] = ACTIONS(1605), - [aux_sym_cmd_identifier_token5] = ACTIONS(1605), - [aux_sym_cmd_identifier_token6] = ACTIONS(1605), - [aux_sym_cmd_identifier_token7] = ACTIONS(1605), - [aux_sym_cmd_identifier_token8] = ACTIONS(1605), - [aux_sym_cmd_identifier_token9] = ACTIONS(1605), - [aux_sym_cmd_identifier_token10] = ACTIONS(1605), - [aux_sym_cmd_identifier_token11] = ACTIONS(1605), - [aux_sym_cmd_identifier_token12] = ACTIONS(1605), - [aux_sym_cmd_identifier_token13] = ACTIONS(1605), - [aux_sym_cmd_identifier_token14] = ACTIONS(1605), - [aux_sym_cmd_identifier_token15] = ACTIONS(1605), - [aux_sym_cmd_identifier_token16] = ACTIONS(1605), - [aux_sym_cmd_identifier_token17] = ACTIONS(1605), - [aux_sym_cmd_identifier_token18] = ACTIONS(1605), - [aux_sym_cmd_identifier_token19] = ACTIONS(1605), - [aux_sym_cmd_identifier_token20] = ACTIONS(1605), - [aux_sym_cmd_identifier_token21] = ACTIONS(1605), - [aux_sym_cmd_identifier_token22] = ACTIONS(1605), - [aux_sym_cmd_identifier_token23] = ACTIONS(1605), - [aux_sym_cmd_identifier_token24] = ACTIONS(1607), - [aux_sym_cmd_identifier_token25] = ACTIONS(1605), - [aux_sym_cmd_identifier_token26] = ACTIONS(1607), - [aux_sym_cmd_identifier_token27] = ACTIONS(1605), - [aux_sym_cmd_identifier_token28] = ACTIONS(1605), - [aux_sym_cmd_identifier_token29] = ACTIONS(1605), - [aux_sym_cmd_identifier_token30] = ACTIONS(1605), - [aux_sym_cmd_identifier_token31] = ACTIONS(1607), - [aux_sym_cmd_identifier_token32] = ACTIONS(1607), - [aux_sym_cmd_identifier_token33] = ACTIONS(1607), - [aux_sym_cmd_identifier_token34] = ACTIONS(1607), - [aux_sym_cmd_identifier_token35] = ACTIONS(1607), - [aux_sym_cmd_identifier_token36] = ACTIONS(1605), - [anon_sym_true] = ACTIONS(1607), - [anon_sym_false] = ACTIONS(1607), - [anon_sym_null] = ACTIONS(1607), - [aux_sym_cmd_identifier_token38] = ACTIONS(1605), - [aux_sym_cmd_identifier_token39] = ACTIONS(1607), - [aux_sym_cmd_identifier_token40] = ACTIONS(1607), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(1605), - [anon_sym_export_DASHenv] = ACTIONS(1605), - [anon_sym_extern] = ACTIONS(1605), - [anon_sym_module] = ACTIONS(1605), - [anon_sym_use] = ACTIONS(1605), - [anon_sym_LBRACK] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_RPAREN] = ACTIONS(1611), - [anon_sym_DOLLAR] = ACTIONS(1605), - [anon_sym_error] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_break] = ACTIONS(1605), - [anon_sym_continue] = ACTIONS(1605), - [anon_sym_for] = ACTIONS(1605), - [anon_sym_loop] = ACTIONS(1605), - [anon_sym_while] = ACTIONS(1605), - [anon_sym_do] = ACTIONS(1605), - [anon_sym_if] = ACTIONS(1605), - [anon_sym_match] = ACTIONS(1605), - [aux_sym_ctrl_match_token1] = ACTIONS(1607), - [anon_sym_RBRACE] = ACTIONS(1611), - [anon_sym_DOT_DOT] = ACTIONS(1605), - [anon_sym_try] = ACTIONS(1605), - [anon_sym_return] = ACTIONS(1605), - [anon_sym_source] = ACTIONS(1605), - [anon_sym_source_DASHenv] = ACTIONS(1605), - [anon_sym_register] = ACTIONS(1605), - [anon_sym_hide] = ACTIONS(1605), - [anon_sym_hide_DASHenv] = ACTIONS(1605), - [anon_sym_overlay] = ACTIONS(1605), - [anon_sym_where] = ACTIONS(1607), - [aux_sym_expr_unary_token1] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), - [anon_sym_DOT_DOT_LT] = ACTIONS(1607), - [aux_sym__val_number_decimal_token1] = ACTIONS(1605), - [aux_sym__val_number_decimal_token2] = ACTIONS(1607), - [aux_sym__val_number_decimal_token3] = ACTIONS(1607), - [aux_sym__val_number_decimal_token4] = ACTIONS(1607), - [aux_sym__val_number_token1] = ACTIONS(1607), - [aux_sym__val_number_token2] = ACTIONS(1607), - [aux_sym__val_number_token3] = ACTIONS(1607), - [anon_sym_0b] = ACTIONS(1605), - [anon_sym_0o] = ACTIONS(1605), - [anon_sym_0x] = ACTIONS(1605), - [sym_val_date] = ACTIONS(1607), - [anon_sym_DQUOTE] = ACTIONS(1607), - [sym__str_single_quotes] = ACTIONS(1607), - [sym__str_back_ticks] = ACTIONS(1607), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1607), - [aux_sym_env_var_token1] = ACTIONS(1605), - [anon_sym_CARET] = ACTIONS(1607), + [aux_sym_cell_path_repeat1] = STATE(287), + [anon_sym_export] = ACTIONS(1011), + [anon_sym_alias] = ACTIONS(1011), + [anon_sym_let] = ACTIONS(1011), + [anon_sym_let_DASHenv] = ACTIONS(1011), + [anon_sym_mut] = ACTIONS(1011), + [anon_sym_const] = ACTIONS(1011), + [aux_sym_cmd_identifier_token1] = ACTIONS(1011), + [aux_sym_cmd_identifier_token2] = ACTIONS(1011), + [aux_sym_cmd_identifier_token3] = ACTIONS(1011), + [aux_sym_cmd_identifier_token4] = ACTIONS(1011), + [aux_sym_cmd_identifier_token5] = ACTIONS(1011), + [aux_sym_cmd_identifier_token6] = ACTIONS(1011), + [aux_sym_cmd_identifier_token7] = ACTIONS(1011), + [aux_sym_cmd_identifier_token8] = ACTIONS(1011), + [aux_sym_cmd_identifier_token9] = ACTIONS(1011), + [aux_sym_cmd_identifier_token10] = ACTIONS(1011), + [aux_sym_cmd_identifier_token11] = ACTIONS(1011), + [aux_sym_cmd_identifier_token12] = ACTIONS(1011), + [aux_sym_cmd_identifier_token13] = ACTIONS(1011), + [aux_sym_cmd_identifier_token14] = ACTIONS(1011), + [aux_sym_cmd_identifier_token15] = ACTIONS(1011), + [aux_sym_cmd_identifier_token16] = ACTIONS(1011), + [aux_sym_cmd_identifier_token17] = ACTIONS(1011), + [aux_sym_cmd_identifier_token18] = ACTIONS(1011), + [aux_sym_cmd_identifier_token19] = ACTIONS(1011), + [aux_sym_cmd_identifier_token20] = ACTIONS(1011), + [aux_sym_cmd_identifier_token21] = ACTIONS(1011), + [aux_sym_cmd_identifier_token22] = ACTIONS(1011), + [aux_sym_cmd_identifier_token23] = ACTIONS(1011), + [aux_sym_cmd_identifier_token24] = ACTIONS(1011), + [aux_sym_cmd_identifier_token25] = ACTIONS(1011), + [aux_sym_cmd_identifier_token26] = ACTIONS(1011), + [aux_sym_cmd_identifier_token27] = ACTIONS(1011), + [aux_sym_cmd_identifier_token28] = ACTIONS(1011), + [aux_sym_cmd_identifier_token29] = ACTIONS(1011), + [aux_sym_cmd_identifier_token30] = ACTIONS(1011), + [aux_sym_cmd_identifier_token31] = ACTIONS(1011), + [aux_sym_cmd_identifier_token32] = ACTIONS(1011), + [aux_sym_cmd_identifier_token33] = ACTIONS(1011), + [aux_sym_cmd_identifier_token34] = ACTIONS(1011), + [aux_sym_cmd_identifier_token35] = ACTIONS(1011), + [aux_sym_cmd_identifier_token36] = ACTIONS(1011), + [anon_sym_true] = ACTIONS(1013), + [anon_sym_false] = ACTIONS(1013), + [anon_sym_null] = ACTIONS(1013), + [aux_sym_cmd_identifier_token38] = ACTIONS(1011), + [aux_sym_cmd_identifier_token39] = ACTIONS(1013), + [aux_sym_cmd_identifier_token40] = ACTIONS(1013), + [anon_sym_def] = ACTIONS(1011), + [anon_sym_export_DASHenv] = ACTIONS(1011), + [anon_sym_extern] = ACTIONS(1011), + [anon_sym_module] = ACTIONS(1011), + [anon_sym_use] = ACTIONS(1011), + [anon_sym_LPAREN] = ACTIONS(1013), + [anon_sym_DOLLAR] = ACTIONS(1013), + [anon_sym_error] = ACTIONS(1011), + [anon_sym_list] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_break] = ACTIONS(1011), + [anon_sym_continue] = ACTIONS(1011), + [anon_sym_for] = ACTIONS(1011), + [anon_sym_in] = ACTIONS(1011), + [anon_sym_loop] = ACTIONS(1011), + [anon_sym_make] = ACTIONS(1011), + [anon_sym_while] = ACTIONS(1011), + [anon_sym_do] = ACTIONS(1011), + [anon_sym_if] = ACTIONS(1011), + [anon_sym_else] = ACTIONS(1011), + [anon_sym_match] = ACTIONS(1011), + [anon_sym_RBRACE] = ACTIONS(1013), + [anon_sym_try] = ACTIONS(1011), + [anon_sym_catch] = ACTIONS(1011), + [anon_sym_return] = ACTIONS(1011), + [anon_sym_source] = ACTIONS(1011), + [anon_sym_source_DASHenv] = ACTIONS(1011), + [anon_sym_register] = ACTIONS(1011), + [anon_sym_hide] = ACTIONS(1011), + [anon_sym_hide_DASHenv] = ACTIONS(1011), + [anon_sym_overlay] = ACTIONS(1011), + [anon_sym_new] = ACTIONS(1011), + [anon_sym_as] = ACTIONS(1011), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1013), + [anon_sym_DOT_DOT2] = ACTIONS(1011), + [anon_sym_DOT] = ACTIONS(1696), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1013), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1013), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1013), + [aux_sym__val_number_decimal_token1] = ACTIONS(1011), + [aux_sym__val_number_decimal_token2] = ACTIONS(1013), + [aux_sym__val_number_decimal_token3] = ACTIONS(1013), + [aux_sym__val_number_decimal_token4] = ACTIONS(1013), + [aux_sym__val_number_token1] = ACTIONS(1013), + [aux_sym__val_number_token2] = ACTIONS(1013), + [aux_sym__val_number_token3] = ACTIONS(1013), + [anon_sym_DQUOTE] = ACTIONS(1013), + [sym__str_single_quotes] = ACTIONS(1013), + [sym__str_back_ticks] = ACTIONS(1013), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(247), }, [225] = { + [sym_path] = STATE(340), [sym_comment] = STATE(225), - [aux_sym__block_body_repeat1] = STATE(226), - [anon_sym_export] = ACTIONS(1605), - [anon_sym_alias] = ACTIONS(1605), - [anon_sym_let] = ACTIONS(1605), - [anon_sym_let_DASHenv] = ACTIONS(1605), - [anon_sym_mut] = ACTIONS(1605), - [anon_sym_const] = ACTIONS(1605), - [aux_sym_cmd_identifier_token1] = ACTIONS(1605), - [aux_sym_cmd_identifier_token2] = ACTIONS(1605), - [aux_sym_cmd_identifier_token3] = ACTIONS(1605), - [aux_sym_cmd_identifier_token4] = ACTIONS(1605), - [aux_sym_cmd_identifier_token5] = ACTIONS(1605), - [aux_sym_cmd_identifier_token6] = ACTIONS(1605), - [aux_sym_cmd_identifier_token7] = ACTIONS(1605), - [aux_sym_cmd_identifier_token8] = ACTIONS(1605), - [aux_sym_cmd_identifier_token9] = ACTIONS(1605), - [aux_sym_cmd_identifier_token10] = ACTIONS(1605), - [aux_sym_cmd_identifier_token11] = ACTIONS(1605), - [aux_sym_cmd_identifier_token12] = ACTIONS(1605), - [aux_sym_cmd_identifier_token13] = ACTIONS(1605), - [aux_sym_cmd_identifier_token14] = ACTIONS(1605), - [aux_sym_cmd_identifier_token15] = ACTIONS(1605), - [aux_sym_cmd_identifier_token16] = ACTIONS(1605), - [aux_sym_cmd_identifier_token17] = ACTIONS(1605), - [aux_sym_cmd_identifier_token18] = ACTIONS(1605), - [aux_sym_cmd_identifier_token19] = ACTIONS(1605), - [aux_sym_cmd_identifier_token20] = ACTIONS(1605), - [aux_sym_cmd_identifier_token21] = ACTIONS(1605), - [aux_sym_cmd_identifier_token22] = ACTIONS(1605), - [aux_sym_cmd_identifier_token23] = ACTIONS(1605), - [aux_sym_cmd_identifier_token24] = ACTIONS(1607), - [aux_sym_cmd_identifier_token25] = ACTIONS(1605), - [aux_sym_cmd_identifier_token26] = ACTIONS(1607), - [aux_sym_cmd_identifier_token27] = ACTIONS(1605), - [aux_sym_cmd_identifier_token28] = ACTIONS(1605), - [aux_sym_cmd_identifier_token29] = ACTIONS(1605), - [aux_sym_cmd_identifier_token30] = ACTIONS(1605), - [aux_sym_cmd_identifier_token31] = ACTIONS(1607), - [aux_sym_cmd_identifier_token32] = ACTIONS(1607), - [aux_sym_cmd_identifier_token33] = ACTIONS(1607), - [aux_sym_cmd_identifier_token34] = ACTIONS(1607), - [aux_sym_cmd_identifier_token35] = ACTIONS(1607), - [aux_sym_cmd_identifier_token36] = ACTIONS(1605), - [anon_sym_true] = ACTIONS(1607), - [anon_sym_false] = ACTIONS(1607), - [anon_sym_null] = ACTIONS(1607), - [aux_sym_cmd_identifier_token38] = ACTIONS(1605), - [aux_sym_cmd_identifier_token39] = ACTIONS(1607), - [aux_sym_cmd_identifier_token40] = ACTIONS(1607), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(1605), - [anon_sym_export_DASHenv] = ACTIONS(1605), - [anon_sym_extern] = ACTIONS(1605), - [anon_sym_module] = ACTIONS(1605), - [anon_sym_use] = ACTIONS(1605), - [anon_sym_LBRACK] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_RPAREN] = ACTIONS(1613), - [anon_sym_DOLLAR] = ACTIONS(1605), - [anon_sym_error] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_break] = ACTIONS(1605), - [anon_sym_continue] = ACTIONS(1605), - [anon_sym_for] = ACTIONS(1605), - [anon_sym_loop] = ACTIONS(1605), - [anon_sym_while] = ACTIONS(1605), - [anon_sym_do] = ACTIONS(1605), - [anon_sym_if] = ACTIONS(1605), - [anon_sym_match] = ACTIONS(1605), - [aux_sym_ctrl_match_token1] = ACTIONS(1607), - [anon_sym_RBRACE] = ACTIONS(1613), - [anon_sym_DOT_DOT] = ACTIONS(1605), - [anon_sym_try] = ACTIONS(1605), - [anon_sym_return] = ACTIONS(1605), - [anon_sym_source] = ACTIONS(1605), - [anon_sym_source_DASHenv] = ACTIONS(1605), - [anon_sym_register] = ACTIONS(1605), - [anon_sym_hide] = ACTIONS(1605), - [anon_sym_hide_DASHenv] = ACTIONS(1605), - [anon_sym_overlay] = ACTIONS(1605), - [anon_sym_where] = ACTIONS(1607), - [aux_sym_expr_unary_token1] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), - [anon_sym_DOT_DOT_LT] = ACTIONS(1607), - [aux_sym__val_number_decimal_token1] = ACTIONS(1605), - [aux_sym__val_number_decimal_token2] = ACTIONS(1607), - [aux_sym__val_number_decimal_token3] = ACTIONS(1607), - [aux_sym__val_number_decimal_token4] = ACTIONS(1607), - [aux_sym__val_number_token1] = ACTIONS(1607), - [aux_sym__val_number_token2] = ACTIONS(1607), - [aux_sym__val_number_token3] = ACTIONS(1607), - [anon_sym_0b] = ACTIONS(1605), - [anon_sym_0o] = ACTIONS(1605), - [anon_sym_0x] = ACTIONS(1605), - [sym_val_date] = ACTIONS(1607), - [anon_sym_DQUOTE] = ACTIONS(1607), - [sym__str_single_quotes] = ACTIONS(1607), - [sym__str_back_ticks] = ACTIONS(1607), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1607), - [aux_sym_env_var_token1] = ACTIONS(1605), - [anon_sym_CARET] = ACTIONS(1607), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(227), + [anon_sym_export] = ACTIONS(1017), + [anon_sym_alias] = ACTIONS(1017), + [anon_sym_let] = ACTIONS(1017), + [anon_sym_let_DASHenv] = ACTIONS(1017), + [anon_sym_mut] = ACTIONS(1017), + [anon_sym_const] = ACTIONS(1017), + [aux_sym_cmd_identifier_token1] = ACTIONS(1017), + [aux_sym_cmd_identifier_token2] = ACTIONS(1017), + [aux_sym_cmd_identifier_token3] = ACTIONS(1017), + [aux_sym_cmd_identifier_token4] = ACTIONS(1017), + [aux_sym_cmd_identifier_token5] = ACTIONS(1017), + [aux_sym_cmd_identifier_token6] = ACTIONS(1017), + [aux_sym_cmd_identifier_token7] = ACTIONS(1017), + [aux_sym_cmd_identifier_token8] = ACTIONS(1017), + [aux_sym_cmd_identifier_token9] = ACTIONS(1017), + [aux_sym_cmd_identifier_token10] = ACTIONS(1017), + [aux_sym_cmd_identifier_token11] = ACTIONS(1017), + [aux_sym_cmd_identifier_token12] = ACTIONS(1017), + [aux_sym_cmd_identifier_token13] = ACTIONS(1017), + [aux_sym_cmd_identifier_token14] = ACTIONS(1017), + [aux_sym_cmd_identifier_token15] = ACTIONS(1017), + [aux_sym_cmd_identifier_token16] = ACTIONS(1017), + [aux_sym_cmd_identifier_token17] = ACTIONS(1017), + [aux_sym_cmd_identifier_token18] = ACTIONS(1017), + [aux_sym_cmd_identifier_token19] = ACTIONS(1017), + [aux_sym_cmd_identifier_token20] = ACTIONS(1017), + [aux_sym_cmd_identifier_token21] = ACTIONS(1017), + [aux_sym_cmd_identifier_token22] = ACTIONS(1017), + [aux_sym_cmd_identifier_token23] = ACTIONS(1017), + [aux_sym_cmd_identifier_token24] = ACTIONS(1017), + [aux_sym_cmd_identifier_token25] = ACTIONS(1017), + [aux_sym_cmd_identifier_token26] = ACTIONS(1017), + [aux_sym_cmd_identifier_token27] = ACTIONS(1017), + [aux_sym_cmd_identifier_token28] = ACTIONS(1017), + [aux_sym_cmd_identifier_token29] = ACTIONS(1017), + [aux_sym_cmd_identifier_token30] = ACTIONS(1017), + [aux_sym_cmd_identifier_token31] = ACTIONS(1017), + [aux_sym_cmd_identifier_token32] = ACTIONS(1017), + [aux_sym_cmd_identifier_token33] = ACTIONS(1017), + [aux_sym_cmd_identifier_token34] = ACTIONS(1017), + [aux_sym_cmd_identifier_token35] = ACTIONS(1017), + [aux_sym_cmd_identifier_token36] = ACTIONS(1017), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_null] = ACTIONS(1017), + [aux_sym_cmd_identifier_token38] = ACTIONS(1017), + [aux_sym_cmd_identifier_token39] = ACTIONS(1017), + [aux_sym_cmd_identifier_token40] = ACTIONS(1017), + [anon_sym_def] = ACTIONS(1017), + [anon_sym_export_DASHenv] = ACTIONS(1017), + [anon_sym_extern] = ACTIONS(1017), + [anon_sym_module] = ACTIONS(1017), + [anon_sym_use] = ACTIONS(1017), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_DOLLAR] = ACTIONS(1017), + [anon_sym_error] = ACTIONS(1017), + [anon_sym_list] = ACTIONS(1017), + [anon_sym_DASH] = ACTIONS(1017), + [anon_sym_break] = ACTIONS(1017), + [anon_sym_continue] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(1017), + [anon_sym_in] = ACTIONS(1017), + [anon_sym_loop] = ACTIONS(1017), + [anon_sym_make] = ACTIONS(1017), + [anon_sym_while] = ACTIONS(1017), + [anon_sym_do] = ACTIONS(1017), + [anon_sym_if] = ACTIONS(1017), + [anon_sym_else] = ACTIONS(1017), + [anon_sym_match] = ACTIONS(1017), + [anon_sym_RBRACE] = ACTIONS(1017), + [anon_sym_try] = ACTIONS(1017), + [anon_sym_catch] = ACTIONS(1017), + [anon_sym_return] = ACTIONS(1017), + [anon_sym_source] = ACTIONS(1017), + [anon_sym_source_DASHenv] = ACTIONS(1017), + [anon_sym_register] = ACTIONS(1017), + [anon_sym_hide] = ACTIONS(1017), + [anon_sym_hide_DASHenv] = ACTIONS(1017), + [anon_sym_overlay] = ACTIONS(1017), + [anon_sym_new] = ACTIONS(1017), + [anon_sym_as] = ACTIONS(1017), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1017), + [anon_sym_DOT_DOT2] = ACTIONS(1017), + [anon_sym_DOT] = ACTIONS(1627), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1019), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1019), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1017), + [aux_sym__val_number_decimal_token1] = ACTIONS(1017), + [aux_sym__val_number_decimal_token2] = ACTIONS(1017), + [aux_sym__val_number_decimal_token3] = ACTIONS(1017), + [aux_sym__val_number_decimal_token4] = ACTIONS(1017), + [aux_sym__val_number_token1] = ACTIONS(1017), + [aux_sym__val_number_token2] = ACTIONS(1017), + [aux_sym__val_number_token3] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1017), + [sym__str_single_quotes] = ACTIONS(1017), + [sym__str_back_ticks] = ACTIONS(1017), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1017), + [sym__entry_separator] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(1017), + [anon_sym_POUND] = ACTIONS(3), }, [226] = { [sym_comment] = STATE(226), - [aux_sym__block_body_repeat1] = STATE(226), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_alias] = ACTIONS(1615), - [anon_sym_let] = ACTIONS(1615), - [anon_sym_let_DASHenv] = ACTIONS(1615), - [anon_sym_mut] = ACTIONS(1615), - [anon_sym_const] = ACTIONS(1615), - [aux_sym_cmd_identifier_token1] = ACTIONS(1615), - [aux_sym_cmd_identifier_token2] = ACTIONS(1615), - [aux_sym_cmd_identifier_token3] = ACTIONS(1615), - [aux_sym_cmd_identifier_token4] = ACTIONS(1615), - [aux_sym_cmd_identifier_token5] = ACTIONS(1615), - [aux_sym_cmd_identifier_token6] = ACTIONS(1615), - [aux_sym_cmd_identifier_token7] = ACTIONS(1615), - [aux_sym_cmd_identifier_token8] = ACTIONS(1615), - [aux_sym_cmd_identifier_token9] = ACTIONS(1615), - [aux_sym_cmd_identifier_token10] = ACTIONS(1615), - [aux_sym_cmd_identifier_token11] = ACTIONS(1615), - [aux_sym_cmd_identifier_token12] = ACTIONS(1615), - [aux_sym_cmd_identifier_token13] = ACTIONS(1615), - [aux_sym_cmd_identifier_token14] = ACTIONS(1615), - [aux_sym_cmd_identifier_token15] = ACTIONS(1615), - [aux_sym_cmd_identifier_token16] = ACTIONS(1615), - [aux_sym_cmd_identifier_token17] = ACTIONS(1615), - [aux_sym_cmd_identifier_token18] = ACTIONS(1615), - [aux_sym_cmd_identifier_token19] = ACTIONS(1615), - [aux_sym_cmd_identifier_token20] = ACTIONS(1615), - [aux_sym_cmd_identifier_token21] = ACTIONS(1615), - [aux_sym_cmd_identifier_token22] = ACTIONS(1615), - [aux_sym_cmd_identifier_token23] = ACTIONS(1615), - [aux_sym_cmd_identifier_token24] = ACTIONS(1617), - [aux_sym_cmd_identifier_token25] = ACTIONS(1615), - [aux_sym_cmd_identifier_token26] = ACTIONS(1617), - [aux_sym_cmd_identifier_token27] = ACTIONS(1615), - [aux_sym_cmd_identifier_token28] = ACTIONS(1615), - [aux_sym_cmd_identifier_token29] = ACTIONS(1615), - [aux_sym_cmd_identifier_token30] = ACTIONS(1615), - [aux_sym_cmd_identifier_token31] = ACTIONS(1617), - [aux_sym_cmd_identifier_token32] = ACTIONS(1617), - [aux_sym_cmd_identifier_token33] = ACTIONS(1617), - [aux_sym_cmd_identifier_token34] = ACTIONS(1617), - [aux_sym_cmd_identifier_token35] = ACTIONS(1617), - [aux_sym_cmd_identifier_token36] = ACTIONS(1615), - [anon_sym_true] = ACTIONS(1617), - [anon_sym_false] = ACTIONS(1617), - [anon_sym_null] = ACTIONS(1617), - [aux_sym_cmd_identifier_token38] = ACTIONS(1615), - [aux_sym_cmd_identifier_token39] = ACTIONS(1617), - [aux_sym_cmd_identifier_token40] = ACTIONS(1617), - [sym__newline] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1619), - [anon_sym_def] = ACTIONS(1615), - [anon_sym_export_DASHenv] = ACTIONS(1615), - [anon_sym_extern] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_use] = ACTIONS(1615), - [anon_sym_LBRACK] = ACTIONS(1617), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_RPAREN] = ACTIONS(1617), - [anon_sym_DOLLAR] = ACTIONS(1615), - [anon_sym_error] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_break] = ACTIONS(1615), - [anon_sym_continue] = ACTIONS(1615), - [anon_sym_for] = ACTIONS(1615), - [anon_sym_loop] = ACTIONS(1615), - [anon_sym_while] = ACTIONS(1615), - [anon_sym_do] = ACTIONS(1615), - [anon_sym_if] = ACTIONS(1615), - [anon_sym_match] = ACTIONS(1615), - [aux_sym_ctrl_match_token1] = ACTIONS(1617), - [anon_sym_RBRACE] = ACTIONS(1617), - [anon_sym_DOT_DOT] = ACTIONS(1615), - [anon_sym_try] = ACTIONS(1615), - [anon_sym_return] = ACTIONS(1615), - [anon_sym_source] = ACTIONS(1615), - [anon_sym_source_DASHenv] = ACTIONS(1615), - [anon_sym_register] = ACTIONS(1615), - [anon_sym_hide] = ACTIONS(1615), - [anon_sym_hide_DASHenv] = ACTIONS(1615), - [anon_sym_overlay] = ACTIONS(1615), - [anon_sym_where] = ACTIONS(1617), - [aux_sym_expr_unary_token1] = ACTIONS(1617), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1617), - [anon_sym_DOT_DOT_LT] = ACTIONS(1617), - [aux_sym__val_number_decimal_token1] = ACTIONS(1615), - [aux_sym__val_number_decimal_token2] = ACTIONS(1617), - [aux_sym__val_number_decimal_token3] = ACTIONS(1617), - [aux_sym__val_number_decimal_token4] = ACTIONS(1617), - [aux_sym__val_number_token1] = ACTIONS(1617), - [aux_sym__val_number_token2] = ACTIONS(1617), - [aux_sym__val_number_token3] = ACTIONS(1617), - [anon_sym_0b] = ACTIONS(1615), - [anon_sym_0o] = ACTIONS(1615), - [anon_sym_0x] = ACTIONS(1615), - [sym_val_date] = ACTIONS(1617), - [anon_sym_DQUOTE] = ACTIONS(1617), - [sym__str_single_quotes] = ACTIONS(1617), - [sym__str_back_ticks] = ACTIONS(1617), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1617), - [aux_sym_env_var_token1] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1617), + [anon_sym_export] = ACTIONS(1517), + [anon_sym_alias] = ACTIONS(1517), + [anon_sym_let] = ACTIONS(1517), + [anon_sym_let_DASHenv] = ACTIONS(1517), + [anon_sym_mut] = ACTIONS(1517), + [anon_sym_const] = ACTIONS(1517), + [aux_sym_cmd_identifier_token1] = ACTIONS(1517), + [aux_sym_cmd_identifier_token2] = ACTIONS(1517), + [aux_sym_cmd_identifier_token3] = ACTIONS(1517), + [aux_sym_cmd_identifier_token4] = ACTIONS(1517), + [aux_sym_cmd_identifier_token5] = ACTIONS(1517), + [aux_sym_cmd_identifier_token6] = ACTIONS(1517), + [aux_sym_cmd_identifier_token7] = ACTIONS(1517), + [aux_sym_cmd_identifier_token8] = ACTIONS(1517), + [aux_sym_cmd_identifier_token9] = ACTIONS(1517), + [aux_sym_cmd_identifier_token10] = ACTIONS(1517), + [aux_sym_cmd_identifier_token11] = ACTIONS(1517), + [aux_sym_cmd_identifier_token12] = ACTIONS(1517), + [aux_sym_cmd_identifier_token13] = ACTIONS(1517), + [aux_sym_cmd_identifier_token14] = ACTIONS(1517), + [aux_sym_cmd_identifier_token15] = ACTIONS(1517), + [aux_sym_cmd_identifier_token16] = ACTIONS(1517), + [aux_sym_cmd_identifier_token17] = ACTIONS(1517), + [aux_sym_cmd_identifier_token18] = ACTIONS(1517), + [aux_sym_cmd_identifier_token19] = ACTIONS(1517), + [aux_sym_cmd_identifier_token20] = ACTIONS(1517), + [aux_sym_cmd_identifier_token21] = ACTIONS(1517), + [aux_sym_cmd_identifier_token22] = ACTIONS(1517), + [aux_sym_cmd_identifier_token23] = ACTIONS(1517), + [aux_sym_cmd_identifier_token24] = ACTIONS(1517), + [aux_sym_cmd_identifier_token25] = ACTIONS(1517), + [aux_sym_cmd_identifier_token26] = ACTIONS(1517), + [aux_sym_cmd_identifier_token27] = ACTIONS(1517), + [aux_sym_cmd_identifier_token28] = ACTIONS(1517), + [aux_sym_cmd_identifier_token29] = ACTIONS(1517), + [aux_sym_cmd_identifier_token30] = ACTIONS(1517), + [aux_sym_cmd_identifier_token31] = ACTIONS(1517), + [aux_sym_cmd_identifier_token32] = ACTIONS(1517), + [aux_sym_cmd_identifier_token33] = ACTIONS(1517), + [aux_sym_cmd_identifier_token34] = ACTIONS(1517), + [aux_sym_cmd_identifier_token35] = ACTIONS(1517), + [aux_sym_cmd_identifier_token36] = ACTIONS(1517), + [anon_sym_true] = ACTIONS(1519), + [anon_sym_false] = ACTIONS(1519), + [anon_sym_null] = ACTIONS(1519), + [aux_sym_cmd_identifier_token38] = ACTIONS(1517), + [aux_sym_cmd_identifier_token39] = ACTIONS(1519), + [aux_sym_cmd_identifier_token40] = ACTIONS(1519), + [anon_sym_def] = ACTIONS(1517), + [anon_sym_export_DASHenv] = ACTIONS(1517), + [anon_sym_extern] = ACTIONS(1517), + [anon_sym_module] = ACTIONS(1517), + [anon_sym_use] = ACTIONS(1517), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_DOLLAR] = ACTIONS(1519), + [anon_sym_error] = ACTIONS(1517), + [anon_sym_list] = ACTIONS(1517), + [anon_sym_DASH] = ACTIONS(1517), + [anon_sym_break] = ACTIONS(1517), + [anon_sym_continue] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1517), + [anon_sym_in] = ACTIONS(1517), + [anon_sym_loop] = ACTIONS(1517), + [anon_sym_make] = ACTIONS(1517), + [anon_sym_while] = ACTIONS(1517), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_if] = ACTIONS(1517), + [anon_sym_else] = ACTIONS(1517), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_RBRACE] = ACTIONS(1519), + [anon_sym_try] = ACTIONS(1517), + [anon_sym_catch] = ACTIONS(1517), + [anon_sym_return] = ACTIONS(1517), + [anon_sym_source] = ACTIONS(1517), + [anon_sym_source_DASHenv] = ACTIONS(1517), + [anon_sym_register] = ACTIONS(1517), + [anon_sym_hide] = ACTIONS(1517), + [anon_sym_hide_DASHenv] = ACTIONS(1517), + [anon_sym_overlay] = ACTIONS(1517), + [anon_sym_new] = ACTIONS(1517), + [anon_sym_as] = ACTIONS(1517), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1519), + [anon_sym_DOT_DOT2] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1519), + [aux_sym__val_number_decimal_token1] = ACTIONS(1517), + [aux_sym__val_number_decimal_token2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1519), + [aux_sym__val_number_token1] = ACTIONS(1519), + [aux_sym__val_number_token2] = ACTIONS(1519), + [aux_sym__val_number_token3] = ACTIONS(1519), + [sym_filesize_unit] = ACTIONS(1517), + [sym_duration_unit] = ACTIONS(1517), + [anon_sym_DQUOTE] = ACTIONS(1519), + [sym__str_single_quotes] = ACTIONS(1519), + [sym__str_back_ticks] = ACTIONS(1519), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1517), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1517), [anon_sym_POUND] = ACTIONS(247), }, [227] = { - [sym_cell_path] = STATE(364), - [sym_path] = STATE(327), + [sym_path] = STATE(340), [sym_comment] = STATE(227), - [aux_sym_cell_path_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(945), - [anon_sym_alias] = ACTIONS(945), - [anon_sym_let] = ACTIONS(945), - [anon_sym_let_DASHenv] = ACTIONS(945), - [anon_sym_mut] = ACTIONS(945), - [anon_sym_const] = ACTIONS(945), - [aux_sym_cmd_identifier_token1] = ACTIONS(945), - [aux_sym_cmd_identifier_token2] = ACTIONS(945), - [aux_sym_cmd_identifier_token3] = ACTIONS(945), - [aux_sym_cmd_identifier_token4] = ACTIONS(945), - [aux_sym_cmd_identifier_token5] = ACTIONS(945), - [aux_sym_cmd_identifier_token6] = ACTIONS(945), - [aux_sym_cmd_identifier_token7] = ACTIONS(945), - [aux_sym_cmd_identifier_token8] = ACTIONS(945), - [aux_sym_cmd_identifier_token9] = ACTIONS(945), - [aux_sym_cmd_identifier_token10] = ACTIONS(945), - [aux_sym_cmd_identifier_token11] = ACTIONS(945), - [aux_sym_cmd_identifier_token12] = ACTIONS(945), - [aux_sym_cmd_identifier_token13] = ACTIONS(945), - [aux_sym_cmd_identifier_token14] = ACTIONS(945), - [aux_sym_cmd_identifier_token15] = ACTIONS(945), - [aux_sym_cmd_identifier_token16] = ACTIONS(945), - [aux_sym_cmd_identifier_token17] = ACTIONS(945), - [aux_sym_cmd_identifier_token18] = ACTIONS(945), - [aux_sym_cmd_identifier_token19] = ACTIONS(945), - [aux_sym_cmd_identifier_token20] = ACTIONS(945), - [aux_sym_cmd_identifier_token21] = ACTIONS(945), - [aux_sym_cmd_identifier_token22] = ACTIONS(945), - [aux_sym_cmd_identifier_token23] = ACTIONS(945), - [aux_sym_cmd_identifier_token24] = ACTIONS(945), - [aux_sym_cmd_identifier_token25] = ACTIONS(945), - [aux_sym_cmd_identifier_token26] = ACTIONS(945), - [aux_sym_cmd_identifier_token27] = ACTIONS(945), - [aux_sym_cmd_identifier_token28] = ACTIONS(945), - [aux_sym_cmd_identifier_token29] = ACTIONS(945), - [aux_sym_cmd_identifier_token30] = ACTIONS(945), - [aux_sym_cmd_identifier_token31] = ACTIONS(945), - [aux_sym_cmd_identifier_token32] = ACTIONS(945), - [aux_sym_cmd_identifier_token33] = ACTIONS(945), - [aux_sym_cmd_identifier_token34] = ACTIONS(945), - [aux_sym_cmd_identifier_token35] = ACTIONS(945), - [aux_sym_cmd_identifier_token36] = ACTIONS(945), - [anon_sym_true] = ACTIONS(945), - [anon_sym_false] = ACTIONS(945), - [anon_sym_null] = ACTIONS(945), - [aux_sym_cmd_identifier_token38] = ACTIONS(945), - [aux_sym_cmd_identifier_token39] = ACTIONS(945), - [aux_sym_cmd_identifier_token40] = ACTIONS(945), - [anon_sym_def] = ACTIONS(945), - [anon_sym_export_DASHenv] = ACTIONS(945), - [anon_sym_extern] = ACTIONS(945), - [anon_sym_module] = ACTIONS(945), - [anon_sym_use] = ACTIONS(945), - [anon_sym_LPAREN] = ACTIONS(945), - [anon_sym_DOLLAR] = ACTIONS(945), - [anon_sym_error] = ACTIONS(945), - [anon_sym_list] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_break] = ACTIONS(945), - [anon_sym_continue] = ACTIONS(945), - [anon_sym_for] = ACTIONS(945), - [anon_sym_in] = ACTIONS(945), - [anon_sym_loop] = ACTIONS(945), - [anon_sym_make] = ACTIONS(945), - [anon_sym_while] = ACTIONS(945), - [anon_sym_do] = ACTIONS(945), - [anon_sym_if] = ACTIONS(945), - [anon_sym_else] = ACTIONS(945), - [anon_sym_match] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(945), - [anon_sym_try] = ACTIONS(945), - [anon_sym_catch] = ACTIONS(945), - [anon_sym_return] = ACTIONS(945), - [anon_sym_source] = ACTIONS(945), - [anon_sym_source_DASHenv] = ACTIONS(945), - [anon_sym_register] = ACTIONS(945), - [anon_sym_hide] = ACTIONS(945), - [anon_sym_hide_DASHenv] = ACTIONS(945), - [anon_sym_overlay] = ACTIONS(945), - [anon_sym_new] = ACTIONS(945), - [anon_sym_as] = ACTIONS(945), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(945), - [anon_sym_DOT_DOT2] = ACTIONS(945), - [anon_sym_DOT] = ACTIONS(1601), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(947), - [anon_sym_DOT_DOT_LT2] = ACTIONS(947), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(945), - [aux_sym__val_number_decimal_token1] = ACTIONS(945), - [aux_sym__val_number_decimal_token2] = ACTIONS(945), - [aux_sym__val_number_decimal_token3] = ACTIONS(945), - [aux_sym__val_number_decimal_token4] = ACTIONS(945), - [aux_sym__val_number_token1] = ACTIONS(945), - [aux_sym__val_number_token2] = ACTIONS(945), - [aux_sym__val_number_token3] = ACTIONS(945), - [anon_sym_DQUOTE] = ACTIONS(945), - [sym__str_single_quotes] = ACTIONS(945), - [sym__str_back_ticks] = ACTIONS(945), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(945), - [sym__entry_separator] = ACTIONS(947), - [anon_sym_PLUS] = ACTIONS(945), + [aux_sym_cell_path_repeat1] = STATE(227), + [anon_sym_export] = ACTIONS(1021), + [anon_sym_alias] = ACTIONS(1021), + [anon_sym_let] = ACTIONS(1021), + [anon_sym_let_DASHenv] = ACTIONS(1021), + [anon_sym_mut] = ACTIONS(1021), + [anon_sym_const] = ACTIONS(1021), + [aux_sym_cmd_identifier_token1] = ACTIONS(1021), + [aux_sym_cmd_identifier_token2] = ACTIONS(1021), + [aux_sym_cmd_identifier_token3] = ACTIONS(1021), + [aux_sym_cmd_identifier_token4] = ACTIONS(1021), + [aux_sym_cmd_identifier_token5] = ACTIONS(1021), + [aux_sym_cmd_identifier_token6] = ACTIONS(1021), + [aux_sym_cmd_identifier_token7] = ACTIONS(1021), + [aux_sym_cmd_identifier_token8] = ACTIONS(1021), + [aux_sym_cmd_identifier_token9] = ACTIONS(1021), + [aux_sym_cmd_identifier_token10] = ACTIONS(1021), + [aux_sym_cmd_identifier_token11] = ACTIONS(1021), + [aux_sym_cmd_identifier_token12] = ACTIONS(1021), + [aux_sym_cmd_identifier_token13] = ACTIONS(1021), + [aux_sym_cmd_identifier_token14] = ACTIONS(1021), + [aux_sym_cmd_identifier_token15] = ACTIONS(1021), + [aux_sym_cmd_identifier_token16] = ACTIONS(1021), + [aux_sym_cmd_identifier_token17] = ACTIONS(1021), + [aux_sym_cmd_identifier_token18] = ACTIONS(1021), + [aux_sym_cmd_identifier_token19] = ACTIONS(1021), + [aux_sym_cmd_identifier_token20] = ACTIONS(1021), + [aux_sym_cmd_identifier_token21] = ACTIONS(1021), + [aux_sym_cmd_identifier_token22] = ACTIONS(1021), + [aux_sym_cmd_identifier_token23] = ACTIONS(1021), + [aux_sym_cmd_identifier_token24] = ACTIONS(1021), + [aux_sym_cmd_identifier_token25] = ACTIONS(1021), + [aux_sym_cmd_identifier_token26] = ACTIONS(1021), + [aux_sym_cmd_identifier_token27] = ACTIONS(1021), + [aux_sym_cmd_identifier_token28] = ACTIONS(1021), + [aux_sym_cmd_identifier_token29] = ACTIONS(1021), + [aux_sym_cmd_identifier_token30] = ACTIONS(1021), + [aux_sym_cmd_identifier_token31] = ACTIONS(1021), + [aux_sym_cmd_identifier_token32] = ACTIONS(1021), + [aux_sym_cmd_identifier_token33] = ACTIONS(1021), + [aux_sym_cmd_identifier_token34] = ACTIONS(1021), + [aux_sym_cmd_identifier_token35] = ACTIONS(1021), + [aux_sym_cmd_identifier_token36] = ACTIONS(1021), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_null] = ACTIONS(1021), + [aux_sym_cmd_identifier_token38] = ACTIONS(1021), + [aux_sym_cmd_identifier_token39] = ACTIONS(1021), + [aux_sym_cmd_identifier_token40] = ACTIONS(1021), + [anon_sym_def] = ACTIONS(1021), + [anon_sym_export_DASHenv] = ACTIONS(1021), + [anon_sym_extern] = ACTIONS(1021), + [anon_sym_module] = ACTIONS(1021), + [anon_sym_use] = ACTIONS(1021), + [anon_sym_LPAREN] = ACTIONS(1021), + [anon_sym_DOLLAR] = ACTIONS(1021), + [anon_sym_error] = ACTIONS(1021), + [anon_sym_list] = ACTIONS(1021), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_break] = ACTIONS(1021), + [anon_sym_continue] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1021), + [anon_sym_in] = ACTIONS(1021), + [anon_sym_loop] = ACTIONS(1021), + [anon_sym_make] = ACTIONS(1021), + [anon_sym_while] = ACTIONS(1021), + [anon_sym_do] = ACTIONS(1021), + [anon_sym_if] = ACTIONS(1021), + [anon_sym_else] = ACTIONS(1021), + [anon_sym_match] = ACTIONS(1021), + [anon_sym_RBRACE] = ACTIONS(1021), + [anon_sym_try] = ACTIONS(1021), + [anon_sym_catch] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1021), + [anon_sym_source] = ACTIONS(1021), + [anon_sym_source_DASHenv] = ACTIONS(1021), + [anon_sym_register] = ACTIONS(1021), + [anon_sym_hide] = ACTIONS(1021), + [anon_sym_hide_DASHenv] = ACTIONS(1021), + [anon_sym_overlay] = ACTIONS(1021), + [anon_sym_new] = ACTIONS(1021), + [anon_sym_as] = ACTIONS(1021), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1021), + [anon_sym_DOT_DOT2] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(1698), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1021), + [aux_sym__val_number_decimal_token1] = ACTIONS(1021), + [aux_sym__val_number_decimal_token2] = ACTIONS(1021), + [aux_sym__val_number_decimal_token3] = ACTIONS(1021), + [aux_sym__val_number_decimal_token4] = ACTIONS(1021), + [aux_sym__val_number_token1] = ACTIONS(1021), + [aux_sym__val_number_token2] = ACTIONS(1021), + [aux_sym__val_number_token3] = ACTIONS(1021), + [anon_sym_DQUOTE] = ACTIONS(1021), + [sym__str_single_quotes] = ACTIONS(1021), + [sym__str_back_ticks] = ACTIONS(1021), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1021), + [sym__entry_separator] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(1021), [anon_sym_POUND] = ACTIONS(3), }, [228] = { [sym_comment] = STATE(228), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_alias] = ACTIONS(1569), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_let_DASHenv] = ACTIONS(1569), - [anon_sym_mut] = ACTIONS(1569), - [anon_sym_const] = ACTIONS(1569), - [aux_sym_cmd_identifier_token1] = ACTIONS(1569), - [aux_sym_cmd_identifier_token2] = ACTIONS(1569), - [aux_sym_cmd_identifier_token3] = ACTIONS(1569), - [aux_sym_cmd_identifier_token4] = ACTIONS(1569), - [aux_sym_cmd_identifier_token5] = ACTIONS(1569), - [aux_sym_cmd_identifier_token6] = ACTIONS(1569), - [aux_sym_cmd_identifier_token7] = ACTIONS(1569), - [aux_sym_cmd_identifier_token8] = ACTIONS(1569), - [aux_sym_cmd_identifier_token9] = ACTIONS(1569), - [aux_sym_cmd_identifier_token10] = ACTIONS(1569), - [aux_sym_cmd_identifier_token11] = ACTIONS(1569), - [aux_sym_cmd_identifier_token12] = ACTIONS(1569), - [aux_sym_cmd_identifier_token13] = ACTIONS(1569), - [aux_sym_cmd_identifier_token14] = ACTIONS(1569), - [aux_sym_cmd_identifier_token15] = ACTIONS(1569), - [aux_sym_cmd_identifier_token16] = ACTIONS(1569), - [aux_sym_cmd_identifier_token17] = ACTIONS(1569), - [aux_sym_cmd_identifier_token18] = ACTIONS(1569), - [aux_sym_cmd_identifier_token19] = ACTIONS(1569), - [aux_sym_cmd_identifier_token20] = ACTIONS(1569), - [aux_sym_cmd_identifier_token21] = ACTIONS(1569), - [aux_sym_cmd_identifier_token22] = ACTIONS(1569), - [aux_sym_cmd_identifier_token23] = ACTIONS(1569), - [aux_sym_cmd_identifier_token24] = ACTIONS(1569), - [aux_sym_cmd_identifier_token25] = ACTIONS(1569), - [aux_sym_cmd_identifier_token26] = ACTIONS(1569), - [aux_sym_cmd_identifier_token27] = ACTIONS(1569), - [aux_sym_cmd_identifier_token28] = ACTIONS(1569), - [aux_sym_cmd_identifier_token29] = ACTIONS(1569), - [aux_sym_cmd_identifier_token30] = ACTIONS(1569), - [aux_sym_cmd_identifier_token31] = ACTIONS(1569), - [aux_sym_cmd_identifier_token32] = ACTIONS(1569), - [aux_sym_cmd_identifier_token33] = ACTIONS(1569), - [aux_sym_cmd_identifier_token34] = ACTIONS(1569), - [aux_sym_cmd_identifier_token35] = ACTIONS(1569), - [aux_sym_cmd_identifier_token36] = ACTIONS(1569), - [anon_sym_true] = ACTIONS(1571), - [anon_sym_false] = ACTIONS(1571), - [anon_sym_null] = ACTIONS(1571), - [aux_sym_cmd_identifier_token38] = ACTIONS(1569), - [aux_sym_cmd_identifier_token39] = ACTIONS(1571), - [aux_sym_cmd_identifier_token40] = ACTIONS(1571), - [anon_sym_def] = ACTIONS(1569), - [anon_sym_export_DASHenv] = ACTIONS(1569), - [anon_sym_extern] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_use] = ACTIONS(1569), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_DOLLAR] = ACTIONS(1571), - [anon_sym_error] = ACTIONS(1569), - [anon_sym_list] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_break] = ACTIONS(1569), - [anon_sym_continue] = ACTIONS(1569), - [anon_sym_for] = ACTIONS(1569), - [anon_sym_in] = ACTIONS(1569), - [anon_sym_loop] = ACTIONS(1569), - [anon_sym_make] = ACTIONS(1569), - [anon_sym_while] = ACTIONS(1569), - [anon_sym_do] = ACTIONS(1569), - [anon_sym_if] = ACTIONS(1569), - [anon_sym_else] = ACTIONS(1569), - [anon_sym_match] = ACTIONS(1569), - [anon_sym_RBRACE] = ACTIONS(1571), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_catch] = ACTIONS(1569), - [anon_sym_return] = ACTIONS(1569), - [anon_sym_source] = ACTIONS(1569), - [anon_sym_source_DASHenv] = ACTIONS(1569), - [anon_sym_register] = ACTIONS(1569), - [anon_sym_hide] = ACTIONS(1569), - [anon_sym_hide_DASHenv] = ACTIONS(1569), - [anon_sym_overlay] = ACTIONS(1569), - [anon_sym_new] = ACTIONS(1569), - [anon_sym_as] = ACTIONS(1569), - [anon_sym_LPAREN2] = ACTIONS(1571), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1571), - [anon_sym_DOT_DOT2] = ACTIONS(1569), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1571), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1571), - [aux_sym__immediate_decimal_token1] = ACTIONS(1622), - [aux_sym__immediate_decimal_token2] = ACTIONS(1624), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1571), - [aux_sym__val_number_decimal_token1] = ACTIONS(1569), - [aux_sym__val_number_decimal_token2] = ACTIONS(1571), - [aux_sym__val_number_decimal_token3] = ACTIONS(1571), - [aux_sym__val_number_decimal_token4] = ACTIONS(1571), - [aux_sym__val_number_token1] = ACTIONS(1571), - [aux_sym__val_number_token2] = ACTIONS(1571), - [aux_sym__val_number_token3] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [sym__str_single_quotes] = ACTIONS(1571), - [sym__str_back_ticks] = ACTIONS(1571), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1569), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1569), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1343), + [anon_sym_POUND_BANG] = ACTIONS(1349), + [anon_sym_export] = ACTIONS(1347), + [anon_sym_alias] = ACTIONS(1347), + [anon_sym_let] = ACTIONS(1347), + [anon_sym_let_DASHenv] = ACTIONS(1347), + [anon_sym_mut] = ACTIONS(1347), + [anon_sym_const] = ACTIONS(1347), + [aux_sym_cmd_identifier_token1] = ACTIONS(1347), + [aux_sym_cmd_identifier_token2] = ACTIONS(1347), + [aux_sym_cmd_identifier_token3] = ACTIONS(1347), + [aux_sym_cmd_identifier_token4] = ACTIONS(1347), + [aux_sym_cmd_identifier_token5] = ACTIONS(1347), + [aux_sym_cmd_identifier_token6] = ACTIONS(1347), + [aux_sym_cmd_identifier_token7] = ACTIONS(1347), + [aux_sym_cmd_identifier_token8] = ACTIONS(1347), + [aux_sym_cmd_identifier_token9] = ACTIONS(1347), + [aux_sym_cmd_identifier_token10] = ACTIONS(1347), + [aux_sym_cmd_identifier_token11] = ACTIONS(1347), + [aux_sym_cmd_identifier_token12] = ACTIONS(1347), + [aux_sym_cmd_identifier_token13] = ACTIONS(1347), + [aux_sym_cmd_identifier_token14] = ACTIONS(1347), + [aux_sym_cmd_identifier_token15] = ACTIONS(1347), + [aux_sym_cmd_identifier_token16] = ACTIONS(1347), + [aux_sym_cmd_identifier_token17] = ACTIONS(1347), + [aux_sym_cmd_identifier_token18] = ACTIONS(1347), + [aux_sym_cmd_identifier_token19] = ACTIONS(1347), + [aux_sym_cmd_identifier_token20] = ACTIONS(1347), + [aux_sym_cmd_identifier_token21] = ACTIONS(1347), + [aux_sym_cmd_identifier_token22] = ACTIONS(1347), + [aux_sym_cmd_identifier_token23] = ACTIONS(1347), + [aux_sym_cmd_identifier_token24] = ACTIONS(1343), + [aux_sym_cmd_identifier_token25] = ACTIONS(1347), + [aux_sym_cmd_identifier_token26] = ACTIONS(1343), + [aux_sym_cmd_identifier_token27] = ACTIONS(1347), + [aux_sym_cmd_identifier_token28] = ACTIONS(1347), + [aux_sym_cmd_identifier_token29] = ACTIONS(1347), + [aux_sym_cmd_identifier_token30] = ACTIONS(1347), + [aux_sym_cmd_identifier_token31] = ACTIONS(1343), + [aux_sym_cmd_identifier_token32] = ACTIONS(1343), + [aux_sym_cmd_identifier_token33] = ACTIONS(1343), + [aux_sym_cmd_identifier_token34] = ACTIONS(1343), + [aux_sym_cmd_identifier_token35] = ACTIONS(1343), + [aux_sym_cmd_identifier_token36] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1343), + [anon_sym_false] = ACTIONS(1343), + [anon_sym_null] = ACTIONS(1343), + [aux_sym_cmd_identifier_token38] = ACTIONS(1347), + [aux_sym_cmd_identifier_token39] = ACTIONS(1343), + [aux_sym_cmd_identifier_token40] = ACTIONS(1343), + [sym__newline] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1343), + [anon_sym_def] = ACTIONS(1347), + [anon_sym_export_DASHenv] = ACTIONS(1347), + [anon_sym_extern] = ACTIONS(1347), + [anon_sym_module] = ACTIONS(1347), + [anon_sym_use] = ACTIONS(1347), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_LPAREN] = ACTIONS(1343), + [anon_sym_DOLLAR] = ACTIONS(1347), + [anon_sym_error] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_break] = ACTIONS(1347), + [anon_sym_continue] = ACTIONS(1347), + [anon_sym_for] = ACTIONS(1347), + [anon_sym_loop] = ACTIONS(1347), + [anon_sym_while] = ACTIONS(1347), + [anon_sym_do] = ACTIONS(1347), + [anon_sym_if] = ACTIONS(1347), + [anon_sym_match] = ACTIONS(1347), + [aux_sym_ctrl_match_token1] = ACTIONS(1343), + [anon_sym_DOT_DOT] = ACTIONS(1347), + [anon_sym_try] = ACTIONS(1347), + [anon_sym_return] = ACTIONS(1347), + [anon_sym_source] = ACTIONS(1347), + [anon_sym_source_DASHenv] = ACTIONS(1347), + [anon_sym_register] = ACTIONS(1347), + [anon_sym_hide] = ACTIONS(1347), + [anon_sym_hide_DASHenv] = ACTIONS(1347), + [anon_sym_overlay] = ACTIONS(1347), + [anon_sym_where] = ACTIONS(1343), + [aux_sym_expr_unary_token1] = ACTIONS(1343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1343), + [anon_sym_DOT_DOT_LT] = ACTIONS(1343), + [aux_sym__val_number_decimal_token1] = ACTIONS(1347), + [aux_sym__val_number_decimal_token2] = ACTIONS(1343), + [aux_sym__val_number_decimal_token3] = ACTIONS(1343), + [aux_sym__val_number_decimal_token4] = ACTIONS(1343), + [aux_sym__val_number_token1] = ACTIONS(1343), + [aux_sym__val_number_token2] = ACTIONS(1343), + [aux_sym__val_number_token3] = ACTIONS(1343), + [anon_sym_0b] = ACTIONS(1347), + [anon_sym_0o] = ACTIONS(1347), + [anon_sym_0x] = ACTIONS(1347), + [sym_val_date] = ACTIONS(1343), + [anon_sym_DQUOTE] = ACTIONS(1343), + [sym__str_single_quotes] = ACTIONS(1343), + [sym__str_back_ticks] = ACTIONS(1343), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1343), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1343), + [aux_sym_env_var_token1] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1343), + [anon_sym_POUND] = ACTIONS(3), }, [229] = { [sym_comment] = STATE(229), - [anon_sym_export] = ACTIONS(1519), - [anon_sym_alias] = ACTIONS(1519), - [anon_sym_let] = ACTIONS(1519), - [anon_sym_let_DASHenv] = ACTIONS(1519), - [anon_sym_mut] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(1519), - [aux_sym_cmd_identifier_token1] = ACTIONS(1519), - [aux_sym_cmd_identifier_token2] = ACTIONS(1519), - [aux_sym_cmd_identifier_token3] = ACTIONS(1519), - [aux_sym_cmd_identifier_token4] = ACTIONS(1519), - [aux_sym_cmd_identifier_token5] = ACTIONS(1519), - [aux_sym_cmd_identifier_token6] = ACTIONS(1519), - [aux_sym_cmd_identifier_token7] = ACTIONS(1519), - [aux_sym_cmd_identifier_token8] = ACTIONS(1519), - [aux_sym_cmd_identifier_token9] = ACTIONS(1519), - [aux_sym_cmd_identifier_token10] = ACTIONS(1519), - [aux_sym_cmd_identifier_token11] = ACTIONS(1519), - [aux_sym_cmd_identifier_token12] = ACTIONS(1519), - [aux_sym_cmd_identifier_token13] = ACTIONS(1519), - [aux_sym_cmd_identifier_token14] = ACTIONS(1519), - [aux_sym_cmd_identifier_token15] = ACTIONS(1519), - [aux_sym_cmd_identifier_token16] = ACTIONS(1519), - [aux_sym_cmd_identifier_token17] = ACTIONS(1519), - [aux_sym_cmd_identifier_token18] = ACTIONS(1519), - [aux_sym_cmd_identifier_token19] = ACTIONS(1519), - [aux_sym_cmd_identifier_token20] = ACTIONS(1519), - [aux_sym_cmd_identifier_token21] = ACTIONS(1519), - [aux_sym_cmd_identifier_token22] = ACTIONS(1519), - [aux_sym_cmd_identifier_token23] = ACTIONS(1519), - [aux_sym_cmd_identifier_token24] = ACTIONS(1519), - [aux_sym_cmd_identifier_token25] = ACTIONS(1519), - [aux_sym_cmd_identifier_token26] = ACTIONS(1519), - [aux_sym_cmd_identifier_token27] = ACTIONS(1519), - [aux_sym_cmd_identifier_token28] = ACTIONS(1519), - [aux_sym_cmd_identifier_token29] = ACTIONS(1519), - [aux_sym_cmd_identifier_token30] = ACTIONS(1519), - [aux_sym_cmd_identifier_token31] = ACTIONS(1519), - [aux_sym_cmd_identifier_token32] = ACTIONS(1519), - [aux_sym_cmd_identifier_token33] = ACTIONS(1519), - [aux_sym_cmd_identifier_token34] = ACTIONS(1519), - [aux_sym_cmd_identifier_token35] = ACTIONS(1519), - [aux_sym_cmd_identifier_token36] = ACTIONS(1519), - [anon_sym_true] = ACTIONS(1521), - [anon_sym_false] = ACTIONS(1521), - [anon_sym_null] = ACTIONS(1521), - [aux_sym_cmd_identifier_token38] = ACTIONS(1519), - [aux_sym_cmd_identifier_token39] = ACTIONS(1521), - [aux_sym_cmd_identifier_token40] = ACTIONS(1521), - [anon_sym_def] = ACTIONS(1519), - [anon_sym_export_DASHenv] = ACTIONS(1519), - [anon_sym_extern] = ACTIONS(1519), - [anon_sym_module] = ACTIONS(1519), - [anon_sym_use] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1519), - [anon_sym_DOLLAR] = ACTIONS(1521), - [anon_sym_error] = ACTIONS(1519), - [anon_sym_list] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1519), - [anon_sym_break] = ACTIONS(1519), - [anon_sym_continue] = ACTIONS(1519), - [anon_sym_for] = ACTIONS(1519), - [anon_sym_in] = ACTIONS(1519), - [anon_sym_loop] = ACTIONS(1519), - [anon_sym_make] = ACTIONS(1519), - [anon_sym_while] = ACTIONS(1519), - [anon_sym_do] = ACTIONS(1519), - [anon_sym_if] = ACTIONS(1519), - [anon_sym_else] = ACTIONS(1519), - [anon_sym_match] = ACTIONS(1519), - [anon_sym_RBRACE] = ACTIONS(1521), - [anon_sym_try] = ACTIONS(1519), - [anon_sym_catch] = ACTIONS(1519), - [anon_sym_return] = ACTIONS(1519), - [anon_sym_source] = ACTIONS(1519), - [anon_sym_source_DASHenv] = ACTIONS(1519), - [anon_sym_register] = ACTIONS(1519), - [anon_sym_hide] = ACTIONS(1519), - [anon_sym_hide_DASHenv] = ACTIONS(1519), - [anon_sym_overlay] = ACTIONS(1519), - [anon_sym_new] = ACTIONS(1519), - [anon_sym_as] = ACTIONS(1519), - [anon_sym_LPAREN2] = ACTIONS(1521), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1521), - [anon_sym_DOT_DOT2] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1521), - [aux_sym__val_number_decimal_token1] = ACTIONS(1519), - [aux_sym__val_number_decimal_token2] = ACTIONS(1521), - [aux_sym__val_number_decimal_token3] = ACTIONS(1521), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(1521), - [aux_sym__val_number_token2] = ACTIONS(1521), - [aux_sym__val_number_token3] = ACTIONS(1521), - [sym_filesize_unit] = ACTIONS(1519), - [sym_duration_unit] = ACTIONS(1519), - [anon_sym_DQUOTE] = ACTIONS(1521), - [sym__str_single_quotes] = ACTIONS(1521), - [sym__str_back_ticks] = ACTIONS(1521), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1521), - [anon_sym_PLUS] = ACTIONS(1519), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1347), + [anon_sym_alias] = ACTIONS(1347), + [anon_sym_let] = ACTIONS(1347), + [anon_sym_let_DASHenv] = ACTIONS(1347), + [anon_sym_mut] = ACTIONS(1347), + [anon_sym_const] = ACTIONS(1347), + [aux_sym_cmd_identifier_token1] = ACTIONS(1347), + [aux_sym_cmd_identifier_token2] = ACTIONS(1347), + [aux_sym_cmd_identifier_token3] = ACTIONS(1347), + [aux_sym_cmd_identifier_token4] = ACTIONS(1347), + [aux_sym_cmd_identifier_token5] = ACTIONS(1347), + [aux_sym_cmd_identifier_token6] = ACTIONS(1347), + [aux_sym_cmd_identifier_token7] = ACTIONS(1347), + [aux_sym_cmd_identifier_token8] = ACTIONS(1347), + [aux_sym_cmd_identifier_token9] = ACTIONS(1347), + [aux_sym_cmd_identifier_token10] = ACTIONS(1347), + [aux_sym_cmd_identifier_token11] = ACTIONS(1347), + [aux_sym_cmd_identifier_token12] = ACTIONS(1347), + [aux_sym_cmd_identifier_token13] = ACTIONS(1347), + [aux_sym_cmd_identifier_token14] = ACTIONS(1347), + [aux_sym_cmd_identifier_token15] = ACTIONS(1347), + [aux_sym_cmd_identifier_token16] = ACTIONS(1347), + [aux_sym_cmd_identifier_token17] = ACTIONS(1347), + [aux_sym_cmd_identifier_token18] = ACTIONS(1347), + [aux_sym_cmd_identifier_token19] = ACTIONS(1347), + [aux_sym_cmd_identifier_token20] = ACTIONS(1347), + [aux_sym_cmd_identifier_token21] = ACTIONS(1347), + [aux_sym_cmd_identifier_token22] = ACTIONS(1347), + [aux_sym_cmd_identifier_token23] = ACTIONS(1347), + [aux_sym_cmd_identifier_token24] = ACTIONS(1343), + [aux_sym_cmd_identifier_token25] = ACTIONS(1347), + [aux_sym_cmd_identifier_token26] = ACTIONS(1343), + [aux_sym_cmd_identifier_token27] = ACTIONS(1347), + [aux_sym_cmd_identifier_token28] = ACTIONS(1347), + [aux_sym_cmd_identifier_token29] = ACTIONS(1347), + [aux_sym_cmd_identifier_token30] = ACTIONS(1347), + [aux_sym_cmd_identifier_token31] = ACTIONS(1343), + [aux_sym_cmd_identifier_token32] = ACTIONS(1343), + [aux_sym_cmd_identifier_token33] = ACTIONS(1343), + [aux_sym_cmd_identifier_token34] = ACTIONS(1343), + [aux_sym_cmd_identifier_token35] = ACTIONS(1343), + [aux_sym_cmd_identifier_token36] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1343), + [anon_sym_false] = ACTIONS(1343), + [anon_sym_null] = ACTIONS(1343), + [aux_sym_cmd_identifier_token38] = ACTIONS(1347), + [aux_sym_cmd_identifier_token39] = ACTIONS(1343), + [aux_sym_cmd_identifier_token40] = ACTIONS(1343), + [sym__newline] = ACTIONS(1343), + [anon_sym_SEMI] = ACTIONS(1343), + [anon_sym_def] = ACTIONS(1347), + [anon_sym_export_DASHenv] = ACTIONS(1347), + [anon_sym_extern] = ACTIONS(1347), + [anon_sym_module] = ACTIONS(1347), + [anon_sym_use] = ACTIONS(1347), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_LPAREN] = ACTIONS(1343), + [anon_sym_RPAREN] = ACTIONS(1343), + [anon_sym_DOLLAR] = ACTIONS(1347), + [anon_sym_error] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_break] = ACTIONS(1347), + [anon_sym_continue] = ACTIONS(1347), + [anon_sym_for] = ACTIONS(1347), + [anon_sym_loop] = ACTIONS(1347), + [anon_sym_while] = ACTIONS(1347), + [anon_sym_do] = ACTIONS(1347), + [anon_sym_if] = ACTIONS(1347), + [anon_sym_match] = ACTIONS(1347), + [aux_sym_ctrl_match_token1] = ACTIONS(1343), + [anon_sym_RBRACE] = ACTIONS(1343), + [anon_sym_DOT_DOT] = ACTIONS(1347), + [anon_sym_try] = ACTIONS(1347), + [anon_sym_return] = ACTIONS(1347), + [anon_sym_source] = ACTIONS(1347), + [anon_sym_source_DASHenv] = ACTIONS(1347), + [anon_sym_register] = ACTIONS(1347), + [anon_sym_hide] = ACTIONS(1347), + [anon_sym_hide_DASHenv] = ACTIONS(1347), + [anon_sym_overlay] = ACTIONS(1347), + [anon_sym_where] = ACTIONS(1343), + [aux_sym_expr_unary_token1] = ACTIONS(1343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1343), + [anon_sym_DOT_DOT_LT] = ACTIONS(1343), + [aux_sym__val_number_decimal_token1] = ACTIONS(1347), + [aux_sym__val_number_decimal_token2] = ACTIONS(1343), + [aux_sym__val_number_decimal_token3] = ACTIONS(1343), + [aux_sym__val_number_decimal_token4] = ACTIONS(1343), + [aux_sym__val_number_token1] = ACTIONS(1343), + [aux_sym__val_number_token2] = ACTIONS(1343), + [aux_sym__val_number_token3] = ACTIONS(1343), + [anon_sym_0b] = ACTIONS(1347), + [anon_sym_0o] = ACTIONS(1347), + [anon_sym_0x] = ACTIONS(1347), + [sym_val_date] = ACTIONS(1343), + [anon_sym_DQUOTE] = ACTIONS(1343), + [sym__str_single_quotes] = ACTIONS(1343), + [sym__str_back_ticks] = ACTIONS(1343), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1343), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1343), + [aux_sym_env_var_token1] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1343), [anon_sym_POUND] = ACTIONS(247), }, [230] = { + [sym_cell_path] = STATE(425), + [sym_path] = STATE(388), [sym_comment] = STATE(230), - [anon_sym_export] = ACTIONS(1585), - [anon_sym_alias] = ACTIONS(1585), - [anon_sym_let] = ACTIONS(1585), - [anon_sym_let_DASHenv] = ACTIONS(1585), - [anon_sym_mut] = ACTIONS(1585), - [anon_sym_const] = ACTIONS(1585), - [aux_sym_cmd_identifier_token1] = ACTIONS(1585), - [aux_sym_cmd_identifier_token2] = ACTIONS(1585), - [aux_sym_cmd_identifier_token3] = ACTIONS(1585), - [aux_sym_cmd_identifier_token4] = ACTIONS(1585), - [aux_sym_cmd_identifier_token5] = ACTIONS(1585), - [aux_sym_cmd_identifier_token6] = ACTIONS(1585), - [aux_sym_cmd_identifier_token7] = ACTIONS(1585), - [aux_sym_cmd_identifier_token8] = ACTIONS(1585), - [aux_sym_cmd_identifier_token9] = ACTIONS(1585), - [aux_sym_cmd_identifier_token10] = ACTIONS(1585), - [aux_sym_cmd_identifier_token11] = ACTIONS(1585), - [aux_sym_cmd_identifier_token12] = ACTIONS(1585), - [aux_sym_cmd_identifier_token13] = ACTIONS(1585), - [aux_sym_cmd_identifier_token14] = ACTIONS(1585), - [aux_sym_cmd_identifier_token15] = ACTIONS(1585), - [aux_sym_cmd_identifier_token16] = ACTIONS(1585), - [aux_sym_cmd_identifier_token17] = ACTIONS(1585), - [aux_sym_cmd_identifier_token18] = ACTIONS(1585), - [aux_sym_cmd_identifier_token19] = ACTIONS(1585), - [aux_sym_cmd_identifier_token20] = ACTIONS(1585), - [aux_sym_cmd_identifier_token21] = ACTIONS(1585), - [aux_sym_cmd_identifier_token22] = ACTIONS(1585), - [aux_sym_cmd_identifier_token23] = ACTIONS(1585), - [aux_sym_cmd_identifier_token24] = ACTIONS(1585), - [aux_sym_cmd_identifier_token25] = ACTIONS(1585), - [aux_sym_cmd_identifier_token26] = ACTIONS(1585), - [aux_sym_cmd_identifier_token27] = ACTIONS(1585), - [aux_sym_cmd_identifier_token28] = ACTIONS(1585), - [aux_sym_cmd_identifier_token29] = ACTIONS(1585), - [aux_sym_cmd_identifier_token30] = ACTIONS(1585), - [aux_sym_cmd_identifier_token31] = ACTIONS(1585), - [aux_sym_cmd_identifier_token32] = ACTIONS(1585), - [aux_sym_cmd_identifier_token33] = ACTIONS(1585), - [aux_sym_cmd_identifier_token34] = ACTIONS(1585), - [aux_sym_cmd_identifier_token35] = ACTIONS(1585), - [aux_sym_cmd_identifier_token36] = ACTIONS(1585), - [anon_sym_true] = ACTIONS(1587), - [anon_sym_false] = ACTIONS(1587), - [anon_sym_null] = ACTIONS(1587), - [aux_sym_cmd_identifier_token38] = ACTIONS(1585), - [aux_sym_cmd_identifier_token39] = ACTIONS(1587), - [aux_sym_cmd_identifier_token40] = ACTIONS(1587), - [anon_sym_def] = ACTIONS(1585), - [anon_sym_export_DASHenv] = ACTIONS(1585), - [anon_sym_extern] = ACTIONS(1585), - [anon_sym_module] = ACTIONS(1585), - [anon_sym_use] = ACTIONS(1585), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_DOLLAR] = ACTIONS(1587), - [anon_sym_error] = ACTIONS(1585), - [anon_sym_list] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_break] = ACTIONS(1585), - [anon_sym_continue] = ACTIONS(1585), - [anon_sym_for] = ACTIONS(1585), - [anon_sym_in] = ACTIONS(1585), - [anon_sym_loop] = ACTIONS(1585), - [anon_sym_make] = ACTIONS(1585), - [anon_sym_while] = ACTIONS(1585), - [anon_sym_do] = ACTIONS(1585), - [anon_sym_if] = ACTIONS(1585), - [anon_sym_else] = ACTIONS(1585), - [anon_sym_match] = ACTIONS(1585), - [anon_sym_RBRACE] = ACTIONS(1587), - [anon_sym_try] = ACTIONS(1585), - [anon_sym_catch] = ACTIONS(1585), - [anon_sym_return] = ACTIONS(1585), - [anon_sym_source] = ACTIONS(1585), - [anon_sym_source_DASHenv] = ACTIONS(1585), - [anon_sym_register] = ACTIONS(1585), - [anon_sym_hide] = ACTIONS(1585), - [anon_sym_hide_DASHenv] = ACTIONS(1585), - [anon_sym_overlay] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1585), - [anon_sym_as] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1587), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1587), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1587), - [aux_sym__val_number_decimal_token4] = ACTIONS(1587), - [aux_sym__val_number_token1] = ACTIONS(1587), - [aux_sym__val_number_token2] = ACTIONS(1587), - [aux_sym__val_number_token3] = ACTIONS(1587), - [sym_filesize_unit] = ACTIONS(1585), - [sym_duration_unit] = ACTIONS(1585), - [anon_sym_DQUOTE] = ACTIONS(1587), - [sym__str_single_quotes] = ACTIONS(1587), - [sym__str_back_ticks] = ACTIONS(1587), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1585), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1585), + [aux_sym_cell_path_repeat1] = STATE(287), + [anon_sym_export] = ACTIONS(1686), + [anon_sym_alias] = ACTIONS(1686), + [anon_sym_let] = ACTIONS(1686), + [anon_sym_let_DASHenv] = ACTIONS(1686), + [anon_sym_mut] = ACTIONS(1686), + [anon_sym_const] = ACTIONS(1686), + [aux_sym_cmd_identifier_token1] = ACTIONS(1686), + [aux_sym_cmd_identifier_token2] = ACTIONS(1686), + [aux_sym_cmd_identifier_token3] = ACTIONS(1686), + [aux_sym_cmd_identifier_token4] = ACTIONS(1686), + [aux_sym_cmd_identifier_token5] = ACTIONS(1686), + [aux_sym_cmd_identifier_token6] = ACTIONS(1686), + [aux_sym_cmd_identifier_token7] = ACTIONS(1686), + [aux_sym_cmd_identifier_token8] = ACTIONS(1686), + [aux_sym_cmd_identifier_token9] = ACTIONS(1686), + [aux_sym_cmd_identifier_token10] = ACTIONS(1686), + [aux_sym_cmd_identifier_token11] = ACTIONS(1686), + [aux_sym_cmd_identifier_token12] = ACTIONS(1686), + [aux_sym_cmd_identifier_token13] = ACTIONS(1686), + [aux_sym_cmd_identifier_token14] = ACTIONS(1686), + [aux_sym_cmd_identifier_token15] = ACTIONS(1686), + [aux_sym_cmd_identifier_token16] = ACTIONS(1686), + [aux_sym_cmd_identifier_token17] = ACTIONS(1686), + [aux_sym_cmd_identifier_token18] = ACTIONS(1686), + [aux_sym_cmd_identifier_token19] = ACTIONS(1686), + [aux_sym_cmd_identifier_token20] = ACTIONS(1686), + [aux_sym_cmd_identifier_token21] = ACTIONS(1686), + [aux_sym_cmd_identifier_token22] = ACTIONS(1686), + [aux_sym_cmd_identifier_token23] = ACTIONS(1686), + [aux_sym_cmd_identifier_token24] = ACTIONS(1686), + [aux_sym_cmd_identifier_token25] = ACTIONS(1686), + [aux_sym_cmd_identifier_token26] = ACTIONS(1686), + [aux_sym_cmd_identifier_token27] = ACTIONS(1686), + [aux_sym_cmd_identifier_token28] = ACTIONS(1686), + [aux_sym_cmd_identifier_token29] = ACTIONS(1686), + [aux_sym_cmd_identifier_token30] = ACTIONS(1686), + [aux_sym_cmd_identifier_token31] = ACTIONS(1686), + [aux_sym_cmd_identifier_token32] = ACTIONS(1686), + [aux_sym_cmd_identifier_token33] = ACTIONS(1686), + [aux_sym_cmd_identifier_token34] = ACTIONS(1686), + [aux_sym_cmd_identifier_token35] = ACTIONS(1686), + [aux_sym_cmd_identifier_token36] = ACTIONS(1686), + [anon_sym_true] = ACTIONS(1688), + [anon_sym_false] = ACTIONS(1688), + [anon_sym_null] = ACTIONS(1688), + [aux_sym_cmd_identifier_token38] = ACTIONS(1686), + [aux_sym_cmd_identifier_token39] = ACTIONS(1688), + [aux_sym_cmd_identifier_token40] = ACTIONS(1688), + [anon_sym_def] = ACTIONS(1686), + [anon_sym_export_DASHenv] = ACTIONS(1686), + [anon_sym_extern] = ACTIONS(1686), + [anon_sym_module] = ACTIONS(1686), + [anon_sym_use] = ACTIONS(1686), + [anon_sym_LPAREN] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1688), + [anon_sym_error] = ACTIONS(1686), + [anon_sym_list] = ACTIONS(1686), + [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_break] = ACTIONS(1686), + [anon_sym_continue] = ACTIONS(1686), + [anon_sym_for] = ACTIONS(1686), + [anon_sym_in] = ACTIONS(1686), + [anon_sym_loop] = ACTIONS(1686), + [anon_sym_make] = ACTIONS(1686), + [anon_sym_while] = ACTIONS(1686), + [anon_sym_do] = ACTIONS(1686), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_else] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(1686), + [anon_sym_RBRACE] = ACTIONS(1688), + [anon_sym_try] = ACTIONS(1686), + [anon_sym_catch] = ACTIONS(1686), + [anon_sym_return] = ACTIONS(1686), + [anon_sym_source] = ACTIONS(1686), + [anon_sym_source_DASHenv] = ACTIONS(1686), + [anon_sym_register] = ACTIONS(1686), + [anon_sym_hide] = ACTIONS(1686), + [anon_sym_hide_DASHenv] = ACTIONS(1686), + [anon_sym_overlay] = ACTIONS(1686), + [anon_sym_new] = ACTIONS(1686), + [anon_sym_as] = ACTIONS(1686), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1688), + [anon_sym_DOT_DOT2] = ACTIONS(1686), + [anon_sym_DOT] = ACTIONS(1696), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1688), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1688), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1688), + [aux_sym__val_number_decimal_token1] = ACTIONS(1686), + [aux_sym__val_number_decimal_token2] = ACTIONS(1688), + [aux_sym__val_number_decimal_token3] = ACTIONS(1688), + [aux_sym__val_number_decimal_token4] = ACTIONS(1688), + [aux_sym__val_number_token1] = ACTIONS(1688), + [aux_sym__val_number_token2] = ACTIONS(1688), + [aux_sym__val_number_token3] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [sym__str_single_quotes] = ACTIONS(1688), + [sym__str_back_ticks] = ACTIONS(1688), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1688), + [anon_sym_PLUS] = ACTIONS(1686), [anon_sym_POUND] = ACTIONS(247), }, [231] = { [sym_comment] = STATE(231), - [anon_sym_export] = ACTIONS(1589), - [anon_sym_alias] = ACTIONS(1589), - [anon_sym_let] = ACTIONS(1589), - [anon_sym_let_DASHenv] = ACTIONS(1589), - [anon_sym_mut] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [aux_sym_cmd_identifier_token1] = ACTIONS(1589), - [aux_sym_cmd_identifier_token2] = ACTIONS(1589), - [aux_sym_cmd_identifier_token3] = ACTIONS(1589), - [aux_sym_cmd_identifier_token4] = ACTIONS(1589), - [aux_sym_cmd_identifier_token5] = ACTIONS(1589), - [aux_sym_cmd_identifier_token6] = ACTIONS(1589), - [aux_sym_cmd_identifier_token7] = ACTIONS(1589), - [aux_sym_cmd_identifier_token8] = ACTIONS(1589), - [aux_sym_cmd_identifier_token9] = ACTIONS(1589), - [aux_sym_cmd_identifier_token10] = ACTIONS(1589), - [aux_sym_cmd_identifier_token11] = ACTIONS(1589), - [aux_sym_cmd_identifier_token12] = ACTIONS(1589), - [aux_sym_cmd_identifier_token13] = ACTIONS(1589), - [aux_sym_cmd_identifier_token14] = ACTIONS(1589), - [aux_sym_cmd_identifier_token15] = ACTIONS(1589), - [aux_sym_cmd_identifier_token16] = ACTIONS(1589), - [aux_sym_cmd_identifier_token17] = ACTIONS(1589), - [aux_sym_cmd_identifier_token18] = ACTIONS(1589), - [aux_sym_cmd_identifier_token19] = ACTIONS(1589), - [aux_sym_cmd_identifier_token20] = ACTIONS(1589), - [aux_sym_cmd_identifier_token21] = ACTIONS(1589), - [aux_sym_cmd_identifier_token22] = ACTIONS(1589), - [aux_sym_cmd_identifier_token23] = ACTIONS(1589), - [aux_sym_cmd_identifier_token24] = ACTIONS(1589), - [aux_sym_cmd_identifier_token25] = ACTIONS(1589), - [aux_sym_cmd_identifier_token26] = ACTIONS(1589), - [aux_sym_cmd_identifier_token27] = ACTIONS(1589), - [aux_sym_cmd_identifier_token28] = ACTIONS(1589), - [aux_sym_cmd_identifier_token29] = ACTIONS(1589), - [aux_sym_cmd_identifier_token30] = ACTIONS(1589), - [aux_sym_cmd_identifier_token31] = ACTIONS(1589), - [aux_sym_cmd_identifier_token32] = ACTIONS(1589), - [aux_sym_cmd_identifier_token33] = ACTIONS(1589), - [aux_sym_cmd_identifier_token34] = ACTIONS(1589), - [aux_sym_cmd_identifier_token35] = ACTIONS(1589), - [aux_sym_cmd_identifier_token36] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1589), - [anon_sym_false] = ACTIONS(1589), - [anon_sym_null] = ACTIONS(1589), - [aux_sym_cmd_identifier_token38] = ACTIONS(1589), - [aux_sym_cmd_identifier_token39] = ACTIONS(1589), - [aux_sym_cmd_identifier_token40] = ACTIONS(1589), - [anon_sym_def] = ACTIONS(1589), - [anon_sym_export_DASHenv] = ACTIONS(1589), - [anon_sym_extern] = ACTIONS(1589), - [anon_sym_module] = ACTIONS(1589), - [anon_sym_use] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_error] = ACTIONS(1589), - [anon_sym_list] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_loop] = ACTIONS(1589), - [anon_sym_make] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_else] = ACTIONS(1589), - [anon_sym_match] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1589), - [anon_sym_try] = ACTIONS(1589), - [anon_sym_catch] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_source] = ACTIONS(1589), - [anon_sym_source_DASHenv] = ACTIONS(1589), - [anon_sym_register] = ACTIONS(1589), - [anon_sym_hide] = ACTIONS(1589), - [anon_sym_hide_DASHenv] = ACTIONS(1589), - [anon_sym_overlay] = ACTIONS(1589), - [anon_sym_new] = ACTIONS(1589), - [anon_sym_as] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1591), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1589), - [anon_sym_DOT_DOT2] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), - [aux_sym__immediate_decimal_token2] = ACTIONS(1595), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1589), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1589), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1589), - [aux_sym__val_number_token1] = ACTIONS(1589), - [aux_sym__val_number_token2] = ACTIONS(1589), - [aux_sym__val_number_token3] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [sym__str_single_quotes] = ACTIONS(1589), - [sym__str_back_ticks] = ACTIONS(1589), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1589), - [sym__entry_separator] = ACTIONS(1591), - [anon_sym_PLUS] = ACTIONS(1589), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1643), + [anon_sym_alias] = ACTIONS(1643), + [anon_sym_let] = ACTIONS(1643), + [anon_sym_let_DASHenv] = ACTIONS(1643), + [anon_sym_mut] = ACTIONS(1643), + [anon_sym_const] = ACTIONS(1643), + [aux_sym_cmd_identifier_token1] = ACTIONS(1643), + [aux_sym_cmd_identifier_token2] = ACTIONS(1643), + [aux_sym_cmd_identifier_token3] = ACTIONS(1643), + [aux_sym_cmd_identifier_token4] = ACTIONS(1643), + [aux_sym_cmd_identifier_token5] = ACTIONS(1643), + [aux_sym_cmd_identifier_token6] = ACTIONS(1643), + [aux_sym_cmd_identifier_token7] = ACTIONS(1643), + [aux_sym_cmd_identifier_token8] = ACTIONS(1643), + [aux_sym_cmd_identifier_token9] = ACTIONS(1643), + [aux_sym_cmd_identifier_token10] = ACTIONS(1643), + [aux_sym_cmd_identifier_token11] = ACTIONS(1643), + [aux_sym_cmd_identifier_token12] = ACTIONS(1643), + [aux_sym_cmd_identifier_token13] = ACTIONS(1643), + [aux_sym_cmd_identifier_token14] = ACTIONS(1643), + [aux_sym_cmd_identifier_token15] = ACTIONS(1643), + [aux_sym_cmd_identifier_token16] = ACTIONS(1643), + [aux_sym_cmd_identifier_token17] = ACTIONS(1643), + [aux_sym_cmd_identifier_token18] = ACTIONS(1643), + [aux_sym_cmd_identifier_token19] = ACTIONS(1643), + [aux_sym_cmd_identifier_token20] = ACTIONS(1643), + [aux_sym_cmd_identifier_token21] = ACTIONS(1643), + [aux_sym_cmd_identifier_token22] = ACTIONS(1643), + [aux_sym_cmd_identifier_token23] = ACTIONS(1643), + [aux_sym_cmd_identifier_token24] = ACTIONS(1643), + [aux_sym_cmd_identifier_token25] = ACTIONS(1643), + [aux_sym_cmd_identifier_token26] = ACTIONS(1643), + [aux_sym_cmd_identifier_token27] = ACTIONS(1643), + [aux_sym_cmd_identifier_token28] = ACTIONS(1643), + [aux_sym_cmd_identifier_token29] = ACTIONS(1643), + [aux_sym_cmd_identifier_token30] = ACTIONS(1643), + [aux_sym_cmd_identifier_token31] = ACTIONS(1643), + [aux_sym_cmd_identifier_token32] = ACTIONS(1643), + [aux_sym_cmd_identifier_token33] = ACTIONS(1643), + [aux_sym_cmd_identifier_token34] = ACTIONS(1643), + [aux_sym_cmd_identifier_token35] = ACTIONS(1643), + [aux_sym_cmd_identifier_token36] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [aux_sym_cmd_identifier_token38] = ACTIONS(1643), + [aux_sym_cmd_identifier_token39] = ACTIONS(1645), + [aux_sym_cmd_identifier_token40] = ACTIONS(1645), + [anon_sym_def] = ACTIONS(1643), + [anon_sym_export_DASHenv] = ACTIONS(1643), + [anon_sym_extern] = ACTIONS(1643), + [anon_sym_module] = ACTIONS(1643), + [anon_sym_use] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(1645), + [anon_sym_error] = ACTIONS(1643), + [anon_sym_list] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_break] = ACTIONS(1643), + [anon_sym_continue] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_loop] = ACTIONS(1643), + [anon_sym_make] = ACTIONS(1643), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_do] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_else] = ACTIONS(1643), + [anon_sym_match] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1645), + [anon_sym_try] = ACTIONS(1643), + [anon_sym_catch] = ACTIONS(1643), + [anon_sym_return] = ACTIONS(1643), + [anon_sym_source] = ACTIONS(1643), + [anon_sym_source_DASHenv] = ACTIONS(1643), + [anon_sym_register] = ACTIONS(1643), + [anon_sym_hide] = ACTIONS(1643), + [anon_sym_hide_DASHenv] = ACTIONS(1643), + [anon_sym_overlay] = ACTIONS(1643), + [anon_sym_new] = ACTIONS(1643), + [anon_sym_as] = ACTIONS(1643), + [anon_sym_LPAREN2] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1645), + [anon_sym_DOT_DOT2] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), + [aux_sym__immediate_decimal_token2] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1645), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1645), + [aux_sym__val_number_decimal_token3] = ACTIONS(1645), + [aux_sym__val_number_decimal_token4] = ACTIONS(1645), + [aux_sym__val_number_token1] = ACTIONS(1645), + [aux_sym__val_number_token2] = ACTIONS(1645), + [aux_sym__val_number_token3] = ACTIONS(1645), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym__str_single_quotes] = ACTIONS(1645), + [sym__str_back_ticks] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1645), + [anon_sym_PLUS] = ACTIONS(1643), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1643), + [anon_sym_POUND] = ACTIONS(247), }, [232] = { [sym_comment] = STATE(232), - [aux_sym_shebang_repeat1] = STATE(7297), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(1626), - [anon_sym_alias] = ACTIONS(1626), - [anon_sym_let] = ACTIONS(1626), - [anon_sym_let_DASHenv] = ACTIONS(1626), - [anon_sym_mut] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1626), - [aux_sym_cmd_identifier_token1] = ACTIONS(1626), - [aux_sym_cmd_identifier_token2] = ACTIONS(1626), - [aux_sym_cmd_identifier_token3] = ACTIONS(1626), - [aux_sym_cmd_identifier_token4] = ACTIONS(1626), - [aux_sym_cmd_identifier_token5] = ACTIONS(1626), - [aux_sym_cmd_identifier_token6] = ACTIONS(1626), - [aux_sym_cmd_identifier_token7] = ACTIONS(1626), - [aux_sym_cmd_identifier_token8] = ACTIONS(1626), - [aux_sym_cmd_identifier_token9] = ACTIONS(1626), - [aux_sym_cmd_identifier_token10] = ACTIONS(1626), - [aux_sym_cmd_identifier_token11] = ACTIONS(1626), - [aux_sym_cmd_identifier_token12] = ACTIONS(1626), - [aux_sym_cmd_identifier_token13] = ACTIONS(1626), - [aux_sym_cmd_identifier_token14] = ACTIONS(1626), - [aux_sym_cmd_identifier_token15] = ACTIONS(1626), - [aux_sym_cmd_identifier_token16] = ACTIONS(1626), - [aux_sym_cmd_identifier_token17] = ACTIONS(1626), - [aux_sym_cmd_identifier_token18] = ACTIONS(1626), - [aux_sym_cmd_identifier_token19] = ACTIONS(1626), - [aux_sym_cmd_identifier_token20] = ACTIONS(1626), - [aux_sym_cmd_identifier_token21] = ACTIONS(1626), - [aux_sym_cmd_identifier_token22] = ACTIONS(1626), - [aux_sym_cmd_identifier_token23] = ACTIONS(1626), - [aux_sym_cmd_identifier_token24] = ACTIONS(1628), - [aux_sym_cmd_identifier_token25] = ACTIONS(1626), - [aux_sym_cmd_identifier_token26] = ACTIONS(1628), - [aux_sym_cmd_identifier_token27] = ACTIONS(1626), - [aux_sym_cmd_identifier_token28] = ACTIONS(1626), - [aux_sym_cmd_identifier_token29] = ACTIONS(1626), - [aux_sym_cmd_identifier_token30] = ACTIONS(1626), - [aux_sym_cmd_identifier_token31] = ACTIONS(1628), - [aux_sym_cmd_identifier_token32] = ACTIONS(1628), - [aux_sym_cmd_identifier_token33] = ACTIONS(1628), - [aux_sym_cmd_identifier_token34] = ACTIONS(1628), - [aux_sym_cmd_identifier_token35] = ACTIONS(1628), - [aux_sym_cmd_identifier_token36] = ACTIONS(1626), - [anon_sym_true] = ACTIONS(1628), - [anon_sym_false] = ACTIONS(1628), - [anon_sym_null] = ACTIONS(1628), - [aux_sym_cmd_identifier_token38] = ACTIONS(1626), - [aux_sym_cmd_identifier_token39] = ACTIONS(1628), - [aux_sym_cmd_identifier_token40] = ACTIONS(1628), - [sym__newline] = ACTIONS(1630), - [anon_sym_SEMI] = ACTIONS(1633), - [anon_sym_def] = ACTIONS(1626), - [anon_sym_export_DASHenv] = ACTIONS(1626), - [anon_sym_extern] = ACTIONS(1626), - [anon_sym_module] = ACTIONS(1626), - [anon_sym_use] = ACTIONS(1626), - [anon_sym_LBRACK] = ACTIONS(1628), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_DOLLAR] = ACTIONS(1626), - [anon_sym_error] = ACTIONS(1626), - [anon_sym_DASH] = ACTIONS(1626), - [anon_sym_break] = ACTIONS(1626), - [anon_sym_continue] = ACTIONS(1626), - [anon_sym_for] = ACTIONS(1626), - [anon_sym_loop] = ACTIONS(1626), - [anon_sym_while] = ACTIONS(1626), - [anon_sym_do] = ACTIONS(1626), - [anon_sym_if] = ACTIONS(1626), - [anon_sym_match] = ACTIONS(1626), - [aux_sym_ctrl_match_token1] = ACTIONS(1628), - [anon_sym_DOT_DOT] = ACTIONS(1626), - [anon_sym_try] = ACTIONS(1626), - [anon_sym_return] = ACTIONS(1626), - [anon_sym_source] = ACTIONS(1626), - [anon_sym_source_DASHenv] = ACTIONS(1626), - [anon_sym_register] = ACTIONS(1626), - [anon_sym_hide] = ACTIONS(1626), - [anon_sym_hide_DASHenv] = ACTIONS(1626), - [anon_sym_overlay] = ACTIONS(1626), - [anon_sym_where] = ACTIONS(1628), - [aux_sym_expr_unary_token1] = ACTIONS(1628), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1628), - [anon_sym_DOT_DOT_LT] = ACTIONS(1628), - [aux_sym__val_number_decimal_token1] = ACTIONS(1626), - [aux_sym__val_number_decimal_token2] = ACTIONS(1628), - [aux_sym__val_number_decimal_token3] = ACTIONS(1628), - [aux_sym__val_number_decimal_token4] = ACTIONS(1628), - [aux_sym__val_number_token1] = ACTIONS(1628), - [aux_sym__val_number_token2] = ACTIONS(1628), - [aux_sym__val_number_token3] = ACTIONS(1628), - [anon_sym_0b] = ACTIONS(1626), - [anon_sym_0o] = ACTIONS(1626), - [anon_sym_0x] = ACTIONS(1626), - [sym_val_date] = ACTIONS(1628), - [anon_sym_DQUOTE] = ACTIONS(1628), - [sym__str_single_quotes] = ACTIONS(1628), - [sym__str_back_ticks] = ACTIONS(1628), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1628), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1628), - [aux_sym_env_var_token1] = ACTIONS(1626), - [anon_sym_CARET] = ACTIONS(1628), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1705), + [anon_sym_alias] = ACTIONS(1705), + [anon_sym_let] = ACTIONS(1705), + [anon_sym_let_DASHenv] = ACTIONS(1705), + [anon_sym_mut] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [aux_sym_cmd_identifier_token1] = ACTIONS(1705), + [aux_sym_cmd_identifier_token2] = ACTIONS(1705), + [aux_sym_cmd_identifier_token3] = ACTIONS(1705), + [aux_sym_cmd_identifier_token4] = ACTIONS(1705), + [aux_sym_cmd_identifier_token5] = ACTIONS(1705), + [aux_sym_cmd_identifier_token6] = ACTIONS(1705), + [aux_sym_cmd_identifier_token7] = ACTIONS(1705), + [aux_sym_cmd_identifier_token8] = ACTIONS(1705), + [aux_sym_cmd_identifier_token9] = ACTIONS(1705), + [aux_sym_cmd_identifier_token10] = ACTIONS(1705), + [aux_sym_cmd_identifier_token11] = ACTIONS(1705), + [aux_sym_cmd_identifier_token12] = ACTIONS(1705), + [aux_sym_cmd_identifier_token13] = ACTIONS(1705), + [aux_sym_cmd_identifier_token14] = ACTIONS(1705), + [aux_sym_cmd_identifier_token15] = ACTIONS(1705), + [aux_sym_cmd_identifier_token16] = ACTIONS(1705), + [aux_sym_cmd_identifier_token17] = ACTIONS(1705), + [aux_sym_cmd_identifier_token18] = ACTIONS(1705), + [aux_sym_cmd_identifier_token19] = ACTIONS(1705), + [aux_sym_cmd_identifier_token20] = ACTIONS(1705), + [aux_sym_cmd_identifier_token21] = ACTIONS(1705), + [aux_sym_cmd_identifier_token22] = ACTIONS(1705), + [aux_sym_cmd_identifier_token23] = ACTIONS(1705), + [aux_sym_cmd_identifier_token24] = ACTIONS(1705), + [aux_sym_cmd_identifier_token25] = ACTIONS(1705), + [aux_sym_cmd_identifier_token26] = ACTIONS(1705), + [aux_sym_cmd_identifier_token27] = ACTIONS(1705), + [aux_sym_cmd_identifier_token28] = ACTIONS(1705), + [aux_sym_cmd_identifier_token29] = ACTIONS(1705), + [aux_sym_cmd_identifier_token30] = ACTIONS(1705), + [aux_sym_cmd_identifier_token31] = ACTIONS(1705), + [aux_sym_cmd_identifier_token32] = ACTIONS(1705), + [aux_sym_cmd_identifier_token33] = ACTIONS(1705), + [aux_sym_cmd_identifier_token34] = ACTIONS(1705), + [aux_sym_cmd_identifier_token35] = ACTIONS(1705), + [aux_sym_cmd_identifier_token36] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1705), + [anon_sym_false] = ACTIONS(1705), + [anon_sym_null] = ACTIONS(1705), + [aux_sym_cmd_identifier_token38] = ACTIONS(1705), + [aux_sym_cmd_identifier_token39] = ACTIONS(1705), + [aux_sym_cmd_identifier_token40] = ACTIONS(1705), + [anon_sym_def] = ACTIONS(1705), + [anon_sym_export_DASHenv] = ACTIONS(1705), + [anon_sym_extern] = ACTIONS(1705), + [anon_sym_module] = ACTIONS(1705), + [anon_sym_use] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1705), + [anon_sym_error] = ACTIONS(1705), + [anon_sym_list] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_break] = ACTIONS(1705), + [anon_sym_continue] = ACTIONS(1705), + [anon_sym_for] = ACTIONS(1705), + [anon_sym_in] = ACTIONS(1705), + [anon_sym_loop] = ACTIONS(1705), + [anon_sym_make] = ACTIONS(1705), + [anon_sym_while] = ACTIONS(1705), + [anon_sym_do] = ACTIONS(1705), + [anon_sym_if] = ACTIONS(1705), + [anon_sym_else] = ACTIONS(1705), + [anon_sym_match] = ACTIONS(1705), + [anon_sym_RBRACE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1705), + [anon_sym_catch] = ACTIONS(1705), + [anon_sym_return] = ACTIONS(1705), + [anon_sym_source] = ACTIONS(1705), + [anon_sym_source_DASHenv] = ACTIONS(1705), + [anon_sym_register] = ACTIONS(1705), + [anon_sym_hide] = ACTIONS(1705), + [anon_sym_hide_DASHenv] = ACTIONS(1705), + [anon_sym_overlay] = ACTIONS(1705), + [anon_sym_new] = ACTIONS(1705), + [anon_sym_as] = ACTIONS(1705), + [anon_sym_LPAREN2] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1705), + [anon_sym_DOT_DOT2] = ACTIONS(1705), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1707), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1707), + [aux_sym__immediate_decimal_token2] = ACTIONS(1709), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1705), + [aux_sym__val_number_decimal_token1] = ACTIONS(1705), + [aux_sym__val_number_decimal_token2] = ACTIONS(1705), + [aux_sym__val_number_decimal_token3] = ACTIONS(1705), + [aux_sym__val_number_decimal_token4] = ACTIONS(1705), + [aux_sym__val_number_token1] = ACTIONS(1705), + [aux_sym__val_number_token2] = ACTIONS(1705), + [aux_sym__val_number_token3] = ACTIONS(1705), + [anon_sym_DQUOTE] = ACTIONS(1705), + [sym__str_single_quotes] = ACTIONS(1705), + [sym__str_back_ticks] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1705), + [sym__entry_separator] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1705), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1705), + [anon_sym_POUND] = ACTIONS(3), }, [233] = { [sym_comment] = STATE(233), - [aux_sym__block_body_repeat1] = STATE(240), - [ts_builtin_sym_end] = ACTIONS(1613), - [anon_sym_export] = ACTIONS(1605), - [anon_sym_alias] = ACTIONS(1605), - [anon_sym_let] = ACTIONS(1605), - [anon_sym_let_DASHenv] = ACTIONS(1605), - [anon_sym_mut] = ACTIONS(1605), - [anon_sym_const] = ACTIONS(1605), - [aux_sym_cmd_identifier_token1] = ACTIONS(1605), - [aux_sym_cmd_identifier_token2] = ACTIONS(1605), - [aux_sym_cmd_identifier_token3] = ACTIONS(1605), - [aux_sym_cmd_identifier_token4] = ACTIONS(1605), - [aux_sym_cmd_identifier_token5] = ACTIONS(1605), - [aux_sym_cmd_identifier_token6] = ACTIONS(1605), - [aux_sym_cmd_identifier_token7] = ACTIONS(1605), - [aux_sym_cmd_identifier_token8] = ACTIONS(1605), - [aux_sym_cmd_identifier_token9] = ACTIONS(1605), - [aux_sym_cmd_identifier_token10] = ACTIONS(1605), - [aux_sym_cmd_identifier_token11] = ACTIONS(1605), - [aux_sym_cmd_identifier_token12] = ACTIONS(1605), - [aux_sym_cmd_identifier_token13] = ACTIONS(1605), - [aux_sym_cmd_identifier_token14] = ACTIONS(1605), - [aux_sym_cmd_identifier_token15] = ACTIONS(1605), - [aux_sym_cmd_identifier_token16] = ACTIONS(1605), - [aux_sym_cmd_identifier_token17] = ACTIONS(1605), - [aux_sym_cmd_identifier_token18] = ACTIONS(1605), - [aux_sym_cmd_identifier_token19] = ACTIONS(1605), - [aux_sym_cmd_identifier_token20] = ACTIONS(1605), - [aux_sym_cmd_identifier_token21] = ACTIONS(1605), - [aux_sym_cmd_identifier_token22] = ACTIONS(1605), - [aux_sym_cmd_identifier_token23] = ACTIONS(1605), - [aux_sym_cmd_identifier_token24] = ACTIONS(1607), - [aux_sym_cmd_identifier_token25] = ACTIONS(1605), - [aux_sym_cmd_identifier_token26] = ACTIONS(1607), - [aux_sym_cmd_identifier_token27] = ACTIONS(1605), - [aux_sym_cmd_identifier_token28] = ACTIONS(1605), - [aux_sym_cmd_identifier_token29] = ACTIONS(1605), - [aux_sym_cmd_identifier_token30] = ACTIONS(1605), - [aux_sym_cmd_identifier_token31] = ACTIONS(1607), - [aux_sym_cmd_identifier_token32] = ACTIONS(1607), - [aux_sym_cmd_identifier_token33] = ACTIONS(1607), - [aux_sym_cmd_identifier_token34] = ACTIONS(1607), - [aux_sym_cmd_identifier_token35] = ACTIONS(1607), - [aux_sym_cmd_identifier_token36] = ACTIONS(1605), - [anon_sym_true] = ACTIONS(1607), - [anon_sym_false] = ACTIONS(1607), - [anon_sym_null] = ACTIONS(1607), - [aux_sym_cmd_identifier_token38] = ACTIONS(1605), - [aux_sym_cmd_identifier_token39] = ACTIONS(1607), - [aux_sym_cmd_identifier_token40] = ACTIONS(1607), - [sym__newline] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_def] = ACTIONS(1605), - [anon_sym_export_DASHenv] = ACTIONS(1605), - [anon_sym_extern] = ACTIONS(1605), - [anon_sym_module] = ACTIONS(1605), - [anon_sym_use] = ACTIONS(1605), - [anon_sym_LBRACK] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_DOLLAR] = ACTIONS(1605), - [anon_sym_error] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_break] = ACTIONS(1605), - [anon_sym_continue] = ACTIONS(1605), - [anon_sym_for] = ACTIONS(1605), - [anon_sym_loop] = ACTIONS(1605), - [anon_sym_while] = ACTIONS(1605), - [anon_sym_do] = ACTIONS(1605), - [anon_sym_if] = ACTIONS(1605), - [anon_sym_match] = ACTIONS(1605), - [aux_sym_ctrl_match_token1] = ACTIONS(1607), - [anon_sym_DOT_DOT] = ACTIONS(1605), - [anon_sym_try] = ACTIONS(1605), - [anon_sym_return] = ACTIONS(1605), - [anon_sym_source] = ACTIONS(1605), - [anon_sym_source_DASHenv] = ACTIONS(1605), - [anon_sym_register] = ACTIONS(1605), - [anon_sym_hide] = ACTIONS(1605), - [anon_sym_hide_DASHenv] = ACTIONS(1605), - [anon_sym_overlay] = ACTIONS(1605), - [anon_sym_where] = ACTIONS(1607), - [aux_sym_expr_unary_token1] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), - [anon_sym_DOT_DOT_LT] = ACTIONS(1607), - [aux_sym__val_number_decimal_token1] = ACTIONS(1605), - [aux_sym__val_number_decimal_token2] = ACTIONS(1607), - [aux_sym__val_number_decimal_token3] = ACTIONS(1607), - [aux_sym__val_number_decimal_token4] = ACTIONS(1607), - [aux_sym__val_number_token1] = ACTIONS(1607), - [aux_sym__val_number_token2] = ACTIONS(1607), - [aux_sym__val_number_token3] = ACTIONS(1607), - [anon_sym_0b] = ACTIONS(1605), - [anon_sym_0o] = ACTIONS(1605), - [anon_sym_0x] = ACTIONS(1605), - [sym_val_date] = ACTIONS(1607), - [anon_sym_DQUOTE] = ACTIONS(1607), - [sym__str_single_quotes] = ACTIONS(1607), - [sym__str_back_ticks] = ACTIONS(1607), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1607), - [aux_sym_env_var_token1] = ACTIONS(1605), - [anon_sym_CARET] = ACTIONS(1607), + [aux_sym__block_body_repeat1] = STATE(233), + [ts_builtin_sym_end] = ACTIONS(1659), + [anon_sym_export] = ACTIONS(1657), + [anon_sym_alias] = ACTIONS(1657), + [anon_sym_let] = ACTIONS(1657), + [anon_sym_let_DASHenv] = ACTIONS(1657), + [anon_sym_mut] = ACTIONS(1657), + [anon_sym_const] = ACTIONS(1657), + [aux_sym_cmd_identifier_token1] = ACTIONS(1657), + [aux_sym_cmd_identifier_token2] = ACTIONS(1657), + [aux_sym_cmd_identifier_token3] = ACTIONS(1657), + [aux_sym_cmd_identifier_token4] = ACTIONS(1657), + [aux_sym_cmd_identifier_token5] = ACTIONS(1657), + [aux_sym_cmd_identifier_token6] = ACTIONS(1657), + [aux_sym_cmd_identifier_token7] = ACTIONS(1657), + [aux_sym_cmd_identifier_token8] = ACTIONS(1657), + [aux_sym_cmd_identifier_token9] = ACTIONS(1657), + [aux_sym_cmd_identifier_token10] = ACTIONS(1657), + [aux_sym_cmd_identifier_token11] = ACTIONS(1657), + [aux_sym_cmd_identifier_token12] = ACTIONS(1657), + [aux_sym_cmd_identifier_token13] = ACTIONS(1657), + [aux_sym_cmd_identifier_token14] = ACTIONS(1657), + [aux_sym_cmd_identifier_token15] = ACTIONS(1657), + [aux_sym_cmd_identifier_token16] = ACTIONS(1657), + [aux_sym_cmd_identifier_token17] = ACTIONS(1657), + [aux_sym_cmd_identifier_token18] = ACTIONS(1657), + [aux_sym_cmd_identifier_token19] = ACTIONS(1657), + [aux_sym_cmd_identifier_token20] = ACTIONS(1657), + [aux_sym_cmd_identifier_token21] = ACTIONS(1657), + [aux_sym_cmd_identifier_token22] = ACTIONS(1657), + [aux_sym_cmd_identifier_token23] = ACTIONS(1657), + [aux_sym_cmd_identifier_token24] = ACTIONS(1659), + [aux_sym_cmd_identifier_token25] = ACTIONS(1657), + [aux_sym_cmd_identifier_token26] = ACTIONS(1659), + [aux_sym_cmd_identifier_token27] = ACTIONS(1657), + [aux_sym_cmd_identifier_token28] = ACTIONS(1657), + [aux_sym_cmd_identifier_token29] = ACTIONS(1657), + [aux_sym_cmd_identifier_token30] = ACTIONS(1657), + [aux_sym_cmd_identifier_token31] = ACTIONS(1659), + [aux_sym_cmd_identifier_token32] = ACTIONS(1659), + [aux_sym_cmd_identifier_token33] = ACTIONS(1659), + [aux_sym_cmd_identifier_token34] = ACTIONS(1659), + [aux_sym_cmd_identifier_token35] = ACTIONS(1659), + [aux_sym_cmd_identifier_token36] = ACTIONS(1657), + [anon_sym_true] = ACTIONS(1659), + [anon_sym_false] = ACTIONS(1659), + [anon_sym_null] = ACTIONS(1659), + [aux_sym_cmd_identifier_token38] = ACTIONS(1657), + [aux_sym_cmd_identifier_token39] = ACTIONS(1659), + [aux_sym_cmd_identifier_token40] = ACTIONS(1659), + [sym__newline] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_def] = ACTIONS(1657), + [anon_sym_export_DASHenv] = ACTIONS(1657), + [anon_sym_extern] = ACTIONS(1657), + [anon_sym_module] = ACTIONS(1657), + [anon_sym_use] = ACTIONS(1657), + [anon_sym_LBRACK] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(1657), + [anon_sym_error] = ACTIONS(1657), + [anon_sym_DASH] = ACTIONS(1657), + [anon_sym_break] = ACTIONS(1657), + [anon_sym_continue] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1657), + [anon_sym_loop] = ACTIONS(1657), + [anon_sym_while] = ACTIONS(1657), + [anon_sym_do] = ACTIONS(1657), + [anon_sym_if] = ACTIONS(1657), + [anon_sym_match] = ACTIONS(1657), + [aux_sym_ctrl_match_token1] = ACTIONS(1659), + [anon_sym_DOT_DOT] = ACTIONS(1657), + [anon_sym_try] = ACTIONS(1657), + [anon_sym_return] = ACTIONS(1657), + [anon_sym_source] = ACTIONS(1657), + [anon_sym_source_DASHenv] = ACTIONS(1657), + [anon_sym_register] = ACTIONS(1657), + [anon_sym_hide] = ACTIONS(1657), + [anon_sym_hide_DASHenv] = ACTIONS(1657), + [anon_sym_overlay] = ACTIONS(1657), + [anon_sym_where] = ACTIONS(1659), + [aux_sym_expr_unary_token1] = ACTIONS(1659), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1659), + [anon_sym_DOT_DOT_LT] = ACTIONS(1659), + [aux_sym__val_number_decimal_token1] = ACTIONS(1657), + [aux_sym__val_number_decimal_token2] = ACTIONS(1659), + [aux_sym__val_number_decimal_token3] = ACTIONS(1659), + [aux_sym__val_number_decimal_token4] = ACTIONS(1659), + [aux_sym__val_number_token1] = ACTIONS(1659), + [aux_sym__val_number_token2] = ACTIONS(1659), + [aux_sym__val_number_token3] = ACTIONS(1659), + [anon_sym_0b] = ACTIONS(1657), + [anon_sym_0o] = ACTIONS(1657), + [anon_sym_0x] = ACTIONS(1657), + [sym_val_date] = ACTIONS(1659), + [anon_sym_DQUOTE] = ACTIONS(1659), + [sym__str_single_quotes] = ACTIONS(1659), + [sym__str_back_ticks] = ACTIONS(1659), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1659), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1659), + [aux_sym_env_var_token1] = ACTIONS(1657), + [anon_sym_CARET] = ACTIONS(1659), [anon_sym_POUND] = ACTIONS(247), }, [234] = { [sym_comment] = STATE(234), - [ts_builtin_sym_end] = ACTIONS(1271), - [anon_sym_POUND_BANG] = ACTIONS(1277), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_alias] = ACTIONS(1275), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_let_DASHenv] = ACTIONS(1275), - [anon_sym_mut] = ACTIONS(1275), - [anon_sym_const] = ACTIONS(1275), - [aux_sym_cmd_identifier_token1] = ACTIONS(1275), - [aux_sym_cmd_identifier_token2] = ACTIONS(1275), - [aux_sym_cmd_identifier_token3] = ACTIONS(1275), - [aux_sym_cmd_identifier_token4] = ACTIONS(1275), - [aux_sym_cmd_identifier_token5] = ACTIONS(1275), - [aux_sym_cmd_identifier_token6] = ACTIONS(1275), - [aux_sym_cmd_identifier_token7] = ACTIONS(1275), - [aux_sym_cmd_identifier_token8] = ACTIONS(1275), - [aux_sym_cmd_identifier_token9] = ACTIONS(1275), - [aux_sym_cmd_identifier_token10] = ACTIONS(1275), - [aux_sym_cmd_identifier_token11] = ACTIONS(1275), - [aux_sym_cmd_identifier_token12] = ACTIONS(1275), - [aux_sym_cmd_identifier_token13] = ACTIONS(1275), - [aux_sym_cmd_identifier_token14] = ACTIONS(1275), - [aux_sym_cmd_identifier_token15] = ACTIONS(1275), - [aux_sym_cmd_identifier_token16] = ACTIONS(1275), - [aux_sym_cmd_identifier_token17] = ACTIONS(1275), - [aux_sym_cmd_identifier_token18] = ACTIONS(1275), - [aux_sym_cmd_identifier_token19] = ACTIONS(1275), - [aux_sym_cmd_identifier_token20] = ACTIONS(1275), - [aux_sym_cmd_identifier_token21] = ACTIONS(1275), - [aux_sym_cmd_identifier_token22] = ACTIONS(1275), - [aux_sym_cmd_identifier_token23] = ACTIONS(1275), - [aux_sym_cmd_identifier_token24] = ACTIONS(1271), - [aux_sym_cmd_identifier_token25] = ACTIONS(1275), - [aux_sym_cmd_identifier_token26] = ACTIONS(1271), - [aux_sym_cmd_identifier_token27] = ACTIONS(1275), - [aux_sym_cmd_identifier_token28] = ACTIONS(1275), - [aux_sym_cmd_identifier_token29] = ACTIONS(1275), - [aux_sym_cmd_identifier_token30] = ACTIONS(1275), - [aux_sym_cmd_identifier_token31] = ACTIONS(1271), - [aux_sym_cmd_identifier_token32] = ACTIONS(1271), - [aux_sym_cmd_identifier_token33] = ACTIONS(1271), - [aux_sym_cmd_identifier_token34] = ACTIONS(1271), - [aux_sym_cmd_identifier_token35] = ACTIONS(1271), - [aux_sym_cmd_identifier_token36] = ACTIONS(1275), - [anon_sym_true] = ACTIONS(1271), - [anon_sym_false] = ACTIONS(1271), - [anon_sym_null] = ACTIONS(1271), - [aux_sym_cmd_identifier_token38] = ACTIONS(1275), - [aux_sym_cmd_identifier_token39] = ACTIONS(1271), - [aux_sym_cmd_identifier_token40] = ACTIONS(1271), - [sym__newline] = ACTIONS(1268), - [anon_sym_SEMI] = ACTIONS(1271), - [anon_sym_def] = ACTIONS(1275), - [anon_sym_export_DASHenv] = ACTIONS(1275), - [anon_sym_extern] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_use] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1271), - [anon_sym_LPAREN] = ACTIONS(1271), - [anon_sym_DOLLAR] = ACTIONS(1275), - [anon_sym_error] = ACTIONS(1275), - [anon_sym_DASH] = ACTIONS(1275), - [anon_sym_break] = ACTIONS(1275), - [anon_sym_continue] = ACTIONS(1275), - [anon_sym_for] = ACTIONS(1275), - [anon_sym_loop] = ACTIONS(1275), - [anon_sym_while] = ACTIONS(1275), - [anon_sym_do] = ACTIONS(1275), - [anon_sym_if] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1275), - [aux_sym_ctrl_match_token1] = ACTIONS(1271), - [anon_sym_DOT_DOT] = ACTIONS(1275), - [anon_sym_try] = ACTIONS(1275), - [anon_sym_return] = ACTIONS(1275), - [anon_sym_source] = ACTIONS(1275), - [anon_sym_source_DASHenv] = ACTIONS(1275), - [anon_sym_register] = ACTIONS(1275), - [anon_sym_hide] = ACTIONS(1275), - [anon_sym_hide_DASHenv] = ACTIONS(1275), - [anon_sym_overlay] = ACTIONS(1275), - [anon_sym_where] = ACTIONS(1271), - [aux_sym_expr_unary_token1] = ACTIONS(1271), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1271), - [anon_sym_DOT_DOT_LT] = ACTIONS(1271), - [aux_sym__val_number_decimal_token1] = ACTIONS(1275), - [aux_sym__val_number_decimal_token2] = ACTIONS(1271), - [aux_sym__val_number_decimal_token3] = ACTIONS(1271), - [aux_sym__val_number_decimal_token4] = ACTIONS(1271), - [aux_sym__val_number_token1] = ACTIONS(1271), - [aux_sym__val_number_token2] = ACTIONS(1271), - [aux_sym__val_number_token3] = ACTIONS(1271), - [anon_sym_0b] = ACTIONS(1275), - [anon_sym_0o] = ACTIONS(1275), - [anon_sym_0x] = ACTIONS(1275), - [sym_val_date] = ACTIONS(1271), - [anon_sym_DQUOTE] = ACTIONS(1271), - [sym__str_single_quotes] = ACTIONS(1271), - [sym__str_back_ticks] = ACTIONS(1271), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1271), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1271), - [aux_sym_env_var_token1] = ACTIONS(1275), - [anon_sym_CARET] = ACTIONS(1271), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__block_body_repeat1] = STATE(233), + [ts_builtin_sym_end] = ACTIONS(1664), + [anon_sym_export] = ACTIONS(1651), + [anon_sym_alias] = ACTIONS(1651), + [anon_sym_let] = ACTIONS(1651), + [anon_sym_let_DASHenv] = ACTIONS(1651), + [anon_sym_mut] = ACTIONS(1651), + [anon_sym_const] = ACTIONS(1651), + [aux_sym_cmd_identifier_token1] = ACTIONS(1651), + [aux_sym_cmd_identifier_token2] = ACTIONS(1651), + [aux_sym_cmd_identifier_token3] = ACTIONS(1651), + [aux_sym_cmd_identifier_token4] = ACTIONS(1651), + [aux_sym_cmd_identifier_token5] = ACTIONS(1651), + [aux_sym_cmd_identifier_token6] = ACTIONS(1651), + [aux_sym_cmd_identifier_token7] = ACTIONS(1651), + [aux_sym_cmd_identifier_token8] = ACTIONS(1651), + [aux_sym_cmd_identifier_token9] = ACTIONS(1651), + [aux_sym_cmd_identifier_token10] = ACTIONS(1651), + [aux_sym_cmd_identifier_token11] = ACTIONS(1651), + [aux_sym_cmd_identifier_token12] = ACTIONS(1651), + [aux_sym_cmd_identifier_token13] = ACTIONS(1651), + [aux_sym_cmd_identifier_token14] = ACTIONS(1651), + [aux_sym_cmd_identifier_token15] = ACTIONS(1651), + [aux_sym_cmd_identifier_token16] = ACTIONS(1651), + [aux_sym_cmd_identifier_token17] = ACTIONS(1651), + [aux_sym_cmd_identifier_token18] = ACTIONS(1651), + [aux_sym_cmd_identifier_token19] = ACTIONS(1651), + [aux_sym_cmd_identifier_token20] = ACTIONS(1651), + [aux_sym_cmd_identifier_token21] = ACTIONS(1651), + [aux_sym_cmd_identifier_token22] = ACTIONS(1651), + [aux_sym_cmd_identifier_token23] = ACTIONS(1651), + [aux_sym_cmd_identifier_token24] = ACTIONS(1653), + [aux_sym_cmd_identifier_token25] = ACTIONS(1651), + [aux_sym_cmd_identifier_token26] = ACTIONS(1653), + [aux_sym_cmd_identifier_token27] = ACTIONS(1651), + [aux_sym_cmd_identifier_token28] = ACTIONS(1651), + [aux_sym_cmd_identifier_token29] = ACTIONS(1651), + [aux_sym_cmd_identifier_token30] = ACTIONS(1651), + [aux_sym_cmd_identifier_token31] = ACTIONS(1653), + [aux_sym_cmd_identifier_token32] = ACTIONS(1653), + [aux_sym_cmd_identifier_token33] = ACTIONS(1653), + [aux_sym_cmd_identifier_token34] = ACTIONS(1653), + [aux_sym_cmd_identifier_token35] = ACTIONS(1653), + [aux_sym_cmd_identifier_token36] = ACTIONS(1651), + [anon_sym_true] = ACTIONS(1653), + [anon_sym_false] = ACTIONS(1653), + [anon_sym_null] = ACTIONS(1653), + [aux_sym_cmd_identifier_token38] = ACTIONS(1651), + [aux_sym_cmd_identifier_token39] = ACTIONS(1653), + [aux_sym_cmd_identifier_token40] = ACTIONS(1653), + [sym__newline] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_def] = ACTIONS(1651), + [anon_sym_export_DASHenv] = ACTIONS(1651), + [anon_sym_extern] = ACTIONS(1651), + [anon_sym_module] = ACTIONS(1651), + [anon_sym_use] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_DOLLAR] = ACTIONS(1651), + [anon_sym_error] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(1651), + [anon_sym_break] = ACTIONS(1651), + [anon_sym_continue] = ACTIONS(1651), + [anon_sym_for] = ACTIONS(1651), + [anon_sym_loop] = ACTIONS(1651), + [anon_sym_while] = ACTIONS(1651), + [anon_sym_do] = ACTIONS(1651), + [anon_sym_if] = ACTIONS(1651), + [anon_sym_match] = ACTIONS(1651), + [aux_sym_ctrl_match_token1] = ACTIONS(1653), + [anon_sym_DOT_DOT] = ACTIONS(1651), + [anon_sym_try] = ACTIONS(1651), + [anon_sym_return] = ACTIONS(1651), + [anon_sym_source] = ACTIONS(1651), + [anon_sym_source_DASHenv] = ACTIONS(1651), + [anon_sym_register] = ACTIONS(1651), + [anon_sym_hide] = ACTIONS(1651), + [anon_sym_hide_DASHenv] = ACTIONS(1651), + [anon_sym_overlay] = ACTIONS(1651), + [anon_sym_where] = ACTIONS(1653), + [aux_sym_expr_unary_token1] = ACTIONS(1653), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1653), + [anon_sym_DOT_DOT_LT] = ACTIONS(1653), + [aux_sym__val_number_decimal_token1] = ACTIONS(1651), + [aux_sym__val_number_decimal_token2] = ACTIONS(1653), + [aux_sym__val_number_decimal_token3] = ACTIONS(1653), + [aux_sym__val_number_decimal_token4] = ACTIONS(1653), + [aux_sym__val_number_token1] = ACTIONS(1653), + [aux_sym__val_number_token2] = ACTIONS(1653), + [aux_sym__val_number_token3] = ACTIONS(1653), + [anon_sym_0b] = ACTIONS(1651), + [anon_sym_0o] = ACTIONS(1651), + [anon_sym_0x] = ACTIONS(1651), + [sym_val_date] = ACTIONS(1653), + [anon_sym_DQUOTE] = ACTIONS(1653), + [sym__str_single_quotes] = ACTIONS(1653), + [sym__str_back_ticks] = ACTIONS(1653), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1653), + [aux_sym_env_var_token1] = ACTIONS(1651), + [anon_sym_CARET] = ACTIONS(1653), + [anon_sym_POUND] = ACTIONS(247), }, [235] = { [sym_comment] = STATE(235), - [aux_sym__block_body_repeat1] = STATE(240), - [ts_builtin_sym_end] = ACTIONS(1611), - [anon_sym_export] = ACTIONS(1605), - [anon_sym_alias] = ACTIONS(1605), - [anon_sym_let] = ACTIONS(1605), - [anon_sym_let_DASHenv] = ACTIONS(1605), - [anon_sym_mut] = ACTIONS(1605), - [anon_sym_const] = ACTIONS(1605), - [aux_sym_cmd_identifier_token1] = ACTIONS(1605), - [aux_sym_cmd_identifier_token2] = ACTIONS(1605), - [aux_sym_cmd_identifier_token3] = ACTIONS(1605), - [aux_sym_cmd_identifier_token4] = ACTIONS(1605), - [aux_sym_cmd_identifier_token5] = ACTIONS(1605), - [aux_sym_cmd_identifier_token6] = ACTIONS(1605), - [aux_sym_cmd_identifier_token7] = ACTIONS(1605), - [aux_sym_cmd_identifier_token8] = ACTIONS(1605), - [aux_sym_cmd_identifier_token9] = ACTIONS(1605), - [aux_sym_cmd_identifier_token10] = ACTIONS(1605), - [aux_sym_cmd_identifier_token11] = ACTIONS(1605), - [aux_sym_cmd_identifier_token12] = ACTIONS(1605), - [aux_sym_cmd_identifier_token13] = ACTIONS(1605), - [aux_sym_cmd_identifier_token14] = ACTIONS(1605), - [aux_sym_cmd_identifier_token15] = ACTIONS(1605), - [aux_sym_cmd_identifier_token16] = ACTIONS(1605), - [aux_sym_cmd_identifier_token17] = ACTIONS(1605), - [aux_sym_cmd_identifier_token18] = ACTIONS(1605), - [aux_sym_cmd_identifier_token19] = ACTIONS(1605), - [aux_sym_cmd_identifier_token20] = ACTIONS(1605), - [aux_sym_cmd_identifier_token21] = ACTIONS(1605), - [aux_sym_cmd_identifier_token22] = ACTIONS(1605), - [aux_sym_cmd_identifier_token23] = ACTIONS(1605), - [aux_sym_cmd_identifier_token24] = ACTIONS(1607), - [aux_sym_cmd_identifier_token25] = ACTIONS(1605), - [aux_sym_cmd_identifier_token26] = ACTIONS(1607), - [aux_sym_cmd_identifier_token27] = ACTIONS(1605), - [aux_sym_cmd_identifier_token28] = ACTIONS(1605), - [aux_sym_cmd_identifier_token29] = ACTIONS(1605), - [aux_sym_cmd_identifier_token30] = ACTIONS(1605), - [aux_sym_cmd_identifier_token31] = ACTIONS(1607), - [aux_sym_cmd_identifier_token32] = ACTIONS(1607), - [aux_sym_cmd_identifier_token33] = ACTIONS(1607), - [aux_sym_cmd_identifier_token34] = ACTIONS(1607), - [aux_sym_cmd_identifier_token35] = ACTIONS(1607), - [aux_sym_cmd_identifier_token36] = ACTIONS(1605), - [anon_sym_true] = ACTIONS(1607), - [anon_sym_false] = ACTIONS(1607), - [anon_sym_null] = ACTIONS(1607), - [aux_sym_cmd_identifier_token38] = ACTIONS(1605), - [aux_sym_cmd_identifier_token39] = ACTIONS(1607), - [aux_sym_cmd_identifier_token40] = ACTIONS(1607), - [sym__newline] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_def] = ACTIONS(1605), - [anon_sym_export_DASHenv] = ACTIONS(1605), - [anon_sym_extern] = ACTIONS(1605), - [anon_sym_module] = ACTIONS(1605), - [anon_sym_use] = ACTIONS(1605), - [anon_sym_LBRACK] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_DOLLAR] = ACTIONS(1605), - [anon_sym_error] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_break] = ACTIONS(1605), - [anon_sym_continue] = ACTIONS(1605), - [anon_sym_for] = ACTIONS(1605), - [anon_sym_loop] = ACTIONS(1605), - [anon_sym_while] = ACTIONS(1605), - [anon_sym_do] = ACTIONS(1605), - [anon_sym_if] = ACTIONS(1605), - [anon_sym_match] = ACTIONS(1605), - [aux_sym_ctrl_match_token1] = ACTIONS(1607), - [anon_sym_DOT_DOT] = ACTIONS(1605), - [anon_sym_try] = ACTIONS(1605), - [anon_sym_return] = ACTIONS(1605), - [anon_sym_source] = ACTIONS(1605), - [anon_sym_source_DASHenv] = ACTIONS(1605), - [anon_sym_register] = ACTIONS(1605), - [anon_sym_hide] = ACTIONS(1605), - [anon_sym_hide_DASHenv] = ACTIONS(1605), - [anon_sym_overlay] = ACTIONS(1605), - [anon_sym_where] = ACTIONS(1607), - [aux_sym_expr_unary_token1] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), - [anon_sym_DOT_DOT_LT] = ACTIONS(1607), - [aux_sym__val_number_decimal_token1] = ACTIONS(1605), - [aux_sym__val_number_decimal_token2] = ACTIONS(1607), - [aux_sym__val_number_decimal_token3] = ACTIONS(1607), - [aux_sym__val_number_decimal_token4] = ACTIONS(1607), - [aux_sym__val_number_token1] = ACTIONS(1607), - [aux_sym__val_number_token2] = ACTIONS(1607), - [aux_sym__val_number_token3] = ACTIONS(1607), - [anon_sym_0b] = ACTIONS(1605), - [anon_sym_0o] = ACTIONS(1605), - [anon_sym_0x] = ACTIONS(1605), - [sym_val_date] = ACTIONS(1607), - [anon_sym_DQUOTE] = ACTIONS(1607), - [sym__str_single_quotes] = ACTIONS(1607), - [sym__str_back_ticks] = ACTIONS(1607), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1607), - [aux_sym_env_var_token1] = ACTIONS(1605), - [anon_sym_CARET] = ACTIONS(1607), + [anon_sym_export] = ACTIONS(1497), + [anon_sym_alias] = ACTIONS(1497), + [anon_sym_let] = ACTIONS(1497), + [anon_sym_let_DASHenv] = ACTIONS(1497), + [anon_sym_mut] = ACTIONS(1497), + [anon_sym_const] = ACTIONS(1497), + [aux_sym_cmd_identifier_token1] = ACTIONS(1497), + [aux_sym_cmd_identifier_token2] = ACTIONS(1497), + [aux_sym_cmd_identifier_token3] = ACTIONS(1497), + [aux_sym_cmd_identifier_token4] = ACTIONS(1497), + [aux_sym_cmd_identifier_token5] = ACTIONS(1497), + [aux_sym_cmd_identifier_token6] = ACTIONS(1497), + [aux_sym_cmd_identifier_token7] = ACTIONS(1497), + [aux_sym_cmd_identifier_token8] = ACTIONS(1497), + [aux_sym_cmd_identifier_token9] = ACTIONS(1497), + [aux_sym_cmd_identifier_token10] = ACTIONS(1497), + [aux_sym_cmd_identifier_token11] = ACTIONS(1497), + [aux_sym_cmd_identifier_token12] = ACTIONS(1497), + [aux_sym_cmd_identifier_token13] = ACTIONS(1497), + [aux_sym_cmd_identifier_token14] = ACTIONS(1497), + [aux_sym_cmd_identifier_token15] = ACTIONS(1497), + [aux_sym_cmd_identifier_token16] = ACTIONS(1497), + [aux_sym_cmd_identifier_token17] = ACTIONS(1497), + [aux_sym_cmd_identifier_token18] = ACTIONS(1497), + [aux_sym_cmd_identifier_token19] = ACTIONS(1497), + [aux_sym_cmd_identifier_token20] = ACTIONS(1497), + [aux_sym_cmd_identifier_token21] = ACTIONS(1497), + [aux_sym_cmd_identifier_token22] = ACTIONS(1497), + [aux_sym_cmd_identifier_token23] = ACTIONS(1497), + [aux_sym_cmd_identifier_token24] = ACTIONS(1497), + [aux_sym_cmd_identifier_token25] = ACTIONS(1497), + [aux_sym_cmd_identifier_token26] = ACTIONS(1497), + [aux_sym_cmd_identifier_token27] = ACTIONS(1497), + [aux_sym_cmd_identifier_token28] = ACTIONS(1497), + [aux_sym_cmd_identifier_token29] = ACTIONS(1497), + [aux_sym_cmd_identifier_token30] = ACTIONS(1497), + [aux_sym_cmd_identifier_token31] = ACTIONS(1497), + [aux_sym_cmd_identifier_token32] = ACTIONS(1497), + [aux_sym_cmd_identifier_token33] = ACTIONS(1497), + [aux_sym_cmd_identifier_token34] = ACTIONS(1497), + [aux_sym_cmd_identifier_token35] = ACTIONS(1497), + [aux_sym_cmd_identifier_token36] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1499), + [anon_sym_false] = ACTIONS(1499), + [anon_sym_null] = ACTIONS(1499), + [aux_sym_cmd_identifier_token38] = ACTIONS(1497), + [aux_sym_cmd_identifier_token39] = ACTIONS(1499), + [aux_sym_cmd_identifier_token40] = ACTIONS(1499), + [anon_sym_def] = ACTIONS(1497), + [anon_sym_export_DASHenv] = ACTIONS(1497), + [anon_sym_extern] = ACTIONS(1497), + [anon_sym_module] = ACTIONS(1497), + [anon_sym_use] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(1497), + [anon_sym_DOLLAR] = ACTIONS(1499), + [anon_sym_error] = ACTIONS(1497), + [anon_sym_list] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_break] = ACTIONS(1497), + [anon_sym_continue] = ACTIONS(1497), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_loop] = ACTIONS(1497), + [anon_sym_make] = ACTIONS(1497), + [anon_sym_while] = ACTIONS(1497), + [anon_sym_do] = ACTIONS(1497), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_else] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(1497), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_try] = ACTIONS(1497), + [anon_sym_catch] = ACTIONS(1497), + [anon_sym_return] = ACTIONS(1497), + [anon_sym_source] = ACTIONS(1497), + [anon_sym_source_DASHenv] = ACTIONS(1497), + [anon_sym_register] = ACTIONS(1497), + [anon_sym_hide] = ACTIONS(1497), + [anon_sym_hide_DASHenv] = ACTIONS(1497), + [anon_sym_overlay] = ACTIONS(1497), + [anon_sym_new] = ACTIONS(1497), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_LPAREN2] = ACTIONS(1499), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1499), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1499), + [aux_sym__val_number_decimal_token4] = ACTIONS(1499), + [aux_sym__val_number_token1] = ACTIONS(1499), + [aux_sym__val_number_token2] = ACTIONS(1499), + [aux_sym__val_number_token3] = ACTIONS(1499), + [sym_filesize_unit] = ACTIONS(1497), + [sym_duration_unit] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1499), + [sym__str_single_quotes] = ACTIONS(1499), + [sym__str_back_ticks] = ACTIONS(1499), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1497), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1497), [anon_sym_POUND] = ACTIONS(247), }, [236] = { - [sym_cell_path] = STATE(455), - [sym_path] = STATE(396), [sym_comment] = STATE(236), - [aux_sym_cell_path_repeat1] = STATE(252), - [anon_sym_export] = ACTIONS(1599), - [anon_sym_alias] = ACTIONS(1599), - [anon_sym_let] = ACTIONS(1599), - [anon_sym_let_DASHenv] = ACTIONS(1599), - [anon_sym_mut] = ACTIONS(1599), - [anon_sym_const] = ACTIONS(1599), - [aux_sym_cmd_identifier_token1] = ACTIONS(1599), - [aux_sym_cmd_identifier_token2] = ACTIONS(1599), - [aux_sym_cmd_identifier_token3] = ACTIONS(1599), - [aux_sym_cmd_identifier_token4] = ACTIONS(1599), - [aux_sym_cmd_identifier_token5] = ACTIONS(1599), - [aux_sym_cmd_identifier_token6] = ACTIONS(1599), - [aux_sym_cmd_identifier_token7] = ACTIONS(1599), - [aux_sym_cmd_identifier_token8] = ACTIONS(1599), - [aux_sym_cmd_identifier_token9] = ACTIONS(1599), - [aux_sym_cmd_identifier_token10] = ACTIONS(1599), - [aux_sym_cmd_identifier_token11] = ACTIONS(1599), - [aux_sym_cmd_identifier_token12] = ACTIONS(1599), - [aux_sym_cmd_identifier_token13] = ACTIONS(1599), - [aux_sym_cmd_identifier_token14] = ACTIONS(1599), - [aux_sym_cmd_identifier_token15] = ACTIONS(1599), - [aux_sym_cmd_identifier_token16] = ACTIONS(1599), - [aux_sym_cmd_identifier_token17] = ACTIONS(1599), - [aux_sym_cmd_identifier_token18] = ACTIONS(1599), - [aux_sym_cmd_identifier_token19] = ACTIONS(1599), - [aux_sym_cmd_identifier_token20] = ACTIONS(1599), - [aux_sym_cmd_identifier_token21] = ACTIONS(1599), - [aux_sym_cmd_identifier_token22] = ACTIONS(1599), - [aux_sym_cmd_identifier_token23] = ACTIONS(1599), - [aux_sym_cmd_identifier_token24] = ACTIONS(1599), - [aux_sym_cmd_identifier_token25] = ACTIONS(1599), - [aux_sym_cmd_identifier_token26] = ACTIONS(1599), - [aux_sym_cmd_identifier_token27] = ACTIONS(1599), - [aux_sym_cmd_identifier_token28] = ACTIONS(1599), - [aux_sym_cmd_identifier_token29] = ACTIONS(1599), - [aux_sym_cmd_identifier_token30] = ACTIONS(1599), - [aux_sym_cmd_identifier_token31] = ACTIONS(1599), - [aux_sym_cmd_identifier_token32] = ACTIONS(1599), - [aux_sym_cmd_identifier_token33] = ACTIONS(1599), - [aux_sym_cmd_identifier_token34] = ACTIONS(1599), - [aux_sym_cmd_identifier_token35] = ACTIONS(1599), - [aux_sym_cmd_identifier_token36] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1603), - [anon_sym_false] = ACTIONS(1603), - [anon_sym_null] = ACTIONS(1603), - [aux_sym_cmd_identifier_token38] = ACTIONS(1599), - [aux_sym_cmd_identifier_token39] = ACTIONS(1603), - [aux_sym_cmd_identifier_token40] = ACTIONS(1603), - [anon_sym_def] = ACTIONS(1599), - [anon_sym_export_DASHenv] = ACTIONS(1599), - [anon_sym_extern] = ACTIONS(1599), - [anon_sym_module] = ACTIONS(1599), - [anon_sym_use] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1603), - [anon_sym_DOLLAR] = ACTIONS(1603), - [anon_sym_error] = ACTIONS(1599), - [anon_sym_list] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_break] = ACTIONS(1599), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_for] = ACTIONS(1599), - [anon_sym_in] = ACTIONS(1599), - [anon_sym_loop] = ACTIONS(1599), - [anon_sym_make] = ACTIONS(1599), - [anon_sym_while] = ACTIONS(1599), - [anon_sym_do] = ACTIONS(1599), - [anon_sym_if] = ACTIONS(1599), - [anon_sym_else] = ACTIONS(1599), - [anon_sym_match] = ACTIONS(1599), - [anon_sym_RBRACE] = ACTIONS(1603), - [anon_sym_try] = ACTIONS(1599), - [anon_sym_catch] = ACTIONS(1599), - [anon_sym_return] = ACTIONS(1599), - [anon_sym_source] = ACTIONS(1599), - [anon_sym_source_DASHenv] = ACTIONS(1599), - [anon_sym_register] = ACTIONS(1599), - [anon_sym_hide] = ACTIONS(1599), - [anon_sym_hide_DASHenv] = ACTIONS(1599), - [anon_sym_overlay] = ACTIONS(1599), - [anon_sym_new] = ACTIONS(1599), - [anon_sym_as] = ACTIONS(1599), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1603), - [anon_sym_DOT_DOT2] = ACTIONS(1599), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1603), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1603), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1603), - [aux_sym__val_number_decimal_token1] = ACTIONS(1599), - [aux_sym__val_number_decimal_token2] = ACTIONS(1603), - [aux_sym__val_number_decimal_token3] = ACTIONS(1603), - [aux_sym__val_number_decimal_token4] = ACTIONS(1603), - [aux_sym__val_number_token1] = ACTIONS(1603), - [aux_sym__val_number_token2] = ACTIONS(1603), - [aux_sym__val_number_token3] = ACTIONS(1603), - [anon_sym_DQUOTE] = ACTIONS(1603), - [sym__str_single_quotes] = ACTIONS(1603), - [sym__str_back_ticks] = ACTIONS(1603), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1603), - [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_export] = ACTIONS(1565), + [anon_sym_alias] = ACTIONS(1565), + [anon_sym_let] = ACTIONS(1565), + [anon_sym_let_DASHenv] = ACTIONS(1565), + [anon_sym_mut] = ACTIONS(1565), + [anon_sym_const] = ACTIONS(1565), + [aux_sym_cmd_identifier_token1] = ACTIONS(1565), + [aux_sym_cmd_identifier_token2] = ACTIONS(1565), + [aux_sym_cmd_identifier_token3] = ACTIONS(1565), + [aux_sym_cmd_identifier_token4] = ACTIONS(1565), + [aux_sym_cmd_identifier_token5] = ACTIONS(1565), + [aux_sym_cmd_identifier_token6] = ACTIONS(1565), + [aux_sym_cmd_identifier_token7] = ACTIONS(1565), + [aux_sym_cmd_identifier_token8] = ACTIONS(1565), + [aux_sym_cmd_identifier_token9] = ACTIONS(1565), + [aux_sym_cmd_identifier_token10] = ACTIONS(1565), + [aux_sym_cmd_identifier_token11] = ACTIONS(1565), + [aux_sym_cmd_identifier_token12] = ACTIONS(1565), + [aux_sym_cmd_identifier_token13] = ACTIONS(1565), + [aux_sym_cmd_identifier_token14] = ACTIONS(1565), + [aux_sym_cmd_identifier_token15] = ACTIONS(1565), + [aux_sym_cmd_identifier_token16] = ACTIONS(1565), + [aux_sym_cmd_identifier_token17] = ACTIONS(1565), + [aux_sym_cmd_identifier_token18] = ACTIONS(1565), + [aux_sym_cmd_identifier_token19] = ACTIONS(1565), + [aux_sym_cmd_identifier_token20] = ACTIONS(1565), + [aux_sym_cmd_identifier_token21] = ACTIONS(1565), + [aux_sym_cmd_identifier_token22] = ACTIONS(1565), + [aux_sym_cmd_identifier_token23] = ACTIONS(1565), + [aux_sym_cmd_identifier_token24] = ACTIONS(1565), + [aux_sym_cmd_identifier_token25] = ACTIONS(1565), + [aux_sym_cmd_identifier_token26] = ACTIONS(1565), + [aux_sym_cmd_identifier_token27] = ACTIONS(1565), + [aux_sym_cmd_identifier_token28] = ACTIONS(1565), + [aux_sym_cmd_identifier_token29] = ACTIONS(1565), + [aux_sym_cmd_identifier_token30] = ACTIONS(1565), + [aux_sym_cmd_identifier_token31] = ACTIONS(1565), + [aux_sym_cmd_identifier_token32] = ACTIONS(1565), + [aux_sym_cmd_identifier_token33] = ACTIONS(1565), + [aux_sym_cmd_identifier_token34] = ACTIONS(1565), + [aux_sym_cmd_identifier_token35] = ACTIONS(1565), + [aux_sym_cmd_identifier_token36] = ACTIONS(1565), + [anon_sym_true] = ACTIONS(1567), + [anon_sym_false] = ACTIONS(1567), + [anon_sym_null] = ACTIONS(1567), + [aux_sym_cmd_identifier_token38] = ACTIONS(1565), + [aux_sym_cmd_identifier_token39] = ACTIONS(1567), + [aux_sym_cmd_identifier_token40] = ACTIONS(1567), + [anon_sym_def] = ACTIONS(1565), + [anon_sym_export_DASHenv] = ACTIONS(1565), + [anon_sym_extern] = ACTIONS(1565), + [anon_sym_module] = ACTIONS(1565), + [anon_sym_use] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_DOLLAR] = ACTIONS(1567), + [anon_sym_error] = ACTIONS(1565), + [anon_sym_list] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_break] = ACTIONS(1565), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_for] = ACTIONS(1565), + [anon_sym_in] = ACTIONS(1565), + [anon_sym_loop] = ACTIONS(1565), + [anon_sym_make] = ACTIONS(1565), + [anon_sym_while] = ACTIONS(1565), + [anon_sym_do] = ACTIONS(1565), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_else] = ACTIONS(1565), + [anon_sym_match] = ACTIONS(1565), + [anon_sym_RBRACE] = ACTIONS(1567), + [anon_sym_try] = ACTIONS(1565), + [anon_sym_catch] = ACTIONS(1565), + [anon_sym_return] = ACTIONS(1565), + [anon_sym_source] = ACTIONS(1565), + [anon_sym_source_DASHenv] = ACTIONS(1565), + [anon_sym_register] = ACTIONS(1565), + [anon_sym_hide] = ACTIONS(1565), + [anon_sym_hide_DASHenv] = ACTIONS(1565), + [anon_sym_overlay] = ACTIONS(1565), + [anon_sym_new] = ACTIONS(1565), + [anon_sym_as] = ACTIONS(1565), + [anon_sym_LPAREN2] = ACTIONS(1567), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1567), + [anon_sym_DOT_DOT2] = ACTIONS(1565), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1567), + [aux_sym__val_number_decimal_token1] = ACTIONS(1565), + [aux_sym__val_number_decimal_token2] = ACTIONS(1567), + [aux_sym__val_number_decimal_token3] = ACTIONS(1567), + [aux_sym__val_number_decimal_token4] = ACTIONS(1567), + [aux_sym__val_number_token1] = ACTIONS(1567), + [aux_sym__val_number_token2] = ACTIONS(1567), + [aux_sym__val_number_token3] = ACTIONS(1567), + [sym_filesize_unit] = ACTIONS(1565), + [sym_duration_unit] = ACTIONS(1565), + [anon_sym_DQUOTE] = ACTIONS(1567), + [sym__str_single_quotes] = ACTIONS(1567), + [sym__str_back_ticks] = ACTIONS(1567), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1567), + [anon_sym_PLUS] = ACTIONS(1565), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1565), [anon_sym_POUND] = ACTIONS(247), }, [237] = { - [sym_path] = STATE(327), [sym_comment] = STATE(237), - [aux_sym_cell_path_repeat1] = STATE(237), - [anon_sym_export] = ACTIONS(955), - [anon_sym_alias] = ACTIONS(955), - [anon_sym_let] = ACTIONS(955), - [anon_sym_let_DASHenv] = ACTIONS(955), - [anon_sym_mut] = ACTIONS(955), - [anon_sym_const] = ACTIONS(955), - [aux_sym_cmd_identifier_token1] = ACTIONS(955), - [aux_sym_cmd_identifier_token2] = ACTIONS(955), - [aux_sym_cmd_identifier_token3] = ACTIONS(955), - [aux_sym_cmd_identifier_token4] = ACTIONS(955), - [aux_sym_cmd_identifier_token5] = ACTIONS(955), - [aux_sym_cmd_identifier_token6] = ACTIONS(955), - [aux_sym_cmd_identifier_token7] = ACTIONS(955), - [aux_sym_cmd_identifier_token8] = ACTIONS(955), - [aux_sym_cmd_identifier_token9] = ACTIONS(955), - [aux_sym_cmd_identifier_token10] = ACTIONS(955), - [aux_sym_cmd_identifier_token11] = ACTIONS(955), - [aux_sym_cmd_identifier_token12] = ACTIONS(955), - [aux_sym_cmd_identifier_token13] = ACTIONS(955), - [aux_sym_cmd_identifier_token14] = ACTIONS(955), - [aux_sym_cmd_identifier_token15] = ACTIONS(955), - [aux_sym_cmd_identifier_token16] = ACTIONS(955), - [aux_sym_cmd_identifier_token17] = ACTIONS(955), - [aux_sym_cmd_identifier_token18] = ACTIONS(955), - [aux_sym_cmd_identifier_token19] = ACTIONS(955), - [aux_sym_cmd_identifier_token20] = ACTIONS(955), - [aux_sym_cmd_identifier_token21] = ACTIONS(955), - [aux_sym_cmd_identifier_token22] = ACTIONS(955), - [aux_sym_cmd_identifier_token23] = ACTIONS(955), - [aux_sym_cmd_identifier_token24] = ACTIONS(955), - [aux_sym_cmd_identifier_token25] = ACTIONS(955), - [aux_sym_cmd_identifier_token26] = ACTIONS(955), - [aux_sym_cmd_identifier_token27] = ACTIONS(955), - [aux_sym_cmd_identifier_token28] = ACTIONS(955), - [aux_sym_cmd_identifier_token29] = ACTIONS(955), - [aux_sym_cmd_identifier_token30] = ACTIONS(955), - [aux_sym_cmd_identifier_token31] = ACTIONS(955), - [aux_sym_cmd_identifier_token32] = ACTIONS(955), - [aux_sym_cmd_identifier_token33] = ACTIONS(955), - [aux_sym_cmd_identifier_token34] = ACTIONS(955), - [aux_sym_cmd_identifier_token35] = ACTIONS(955), - [aux_sym_cmd_identifier_token36] = ACTIONS(955), - [anon_sym_true] = ACTIONS(955), - [anon_sym_false] = ACTIONS(955), - [anon_sym_null] = ACTIONS(955), - [aux_sym_cmd_identifier_token38] = ACTIONS(955), - [aux_sym_cmd_identifier_token39] = ACTIONS(955), - [aux_sym_cmd_identifier_token40] = ACTIONS(955), - [anon_sym_def] = ACTIONS(955), - [anon_sym_export_DASHenv] = ACTIONS(955), - [anon_sym_extern] = ACTIONS(955), - [anon_sym_module] = ACTIONS(955), - [anon_sym_use] = ACTIONS(955), - [anon_sym_LPAREN] = ACTIONS(955), - [anon_sym_DOLLAR] = ACTIONS(955), - [anon_sym_error] = ACTIONS(955), - [anon_sym_list] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(955), - [anon_sym_break] = ACTIONS(955), - [anon_sym_continue] = ACTIONS(955), - [anon_sym_for] = ACTIONS(955), - [anon_sym_in] = ACTIONS(955), - [anon_sym_loop] = ACTIONS(955), - [anon_sym_make] = ACTIONS(955), - [anon_sym_while] = ACTIONS(955), - [anon_sym_do] = ACTIONS(955), - [anon_sym_if] = ACTIONS(955), - [anon_sym_else] = ACTIONS(955), - [anon_sym_match] = ACTIONS(955), - [anon_sym_RBRACE] = ACTIONS(955), - [anon_sym_try] = ACTIONS(955), - [anon_sym_catch] = ACTIONS(955), - [anon_sym_return] = ACTIONS(955), - [anon_sym_source] = ACTIONS(955), - [anon_sym_source_DASHenv] = ACTIONS(955), - [anon_sym_register] = ACTIONS(955), - [anon_sym_hide] = ACTIONS(955), - [anon_sym_hide_DASHenv] = ACTIONS(955), - [anon_sym_overlay] = ACTIONS(955), - [anon_sym_new] = ACTIONS(955), - [anon_sym_as] = ACTIONS(955), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(955), - [anon_sym_DOT_DOT2] = ACTIONS(955), - [anon_sym_DOT] = ACTIONS(1638), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(957), - [anon_sym_DOT_DOT_LT2] = ACTIONS(957), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(955), - [aux_sym__val_number_decimal_token1] = ACTIONS(955), - [aux_sym__val_number_decimal_token2] = ACTIONS(955), - [aux_sym__val_number_decimal_token3] = ACTIONS(955), - [aux_sym__val_number_decimal_token4] = ACTIONS(955), - [aux_sym__val_number_token1] = ACTIONS(955), - [aux_sym__val_number_token2] = ACTIONS(955), - [aux_sym__val_number_token3] = ACTIONS(955), - [anon_sym_DQUOTE] = ACTIONS(955), - [sym__str_single_quotes] = ACTIONS(955), - [sym__str_back_ticks] = ACTIONS(955), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(955), - [sym__entry_separator] = ACTIONS(957), - [anon_sym_PLUS] = ACTIONS(955), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1639), + [anon_sym_alias] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_let_DASHenv] = ACTIONS(1639), + [anon_sym_mut] = ACTIONS(1639), + [anon_sym_const] = ACTIONS(1639), + [aux_sym_cmd_identifier_token1] = ACTIONS(1639), + [aux_sym_cmd_identifier_token2] = ACTIONS(1639), + [aux_sym_cmd_identifier_token3] = ACTIONS(1639), + [aux_sym_cmd_identifier_token4] = ACTIONS(1639), + [aux_sym_cmd_identifier_token5] = ACTIONS(1639), + [aux_sym_cmd_identifier_token6] = ACTIONS(1639), + [aux_sym_cmd_identifier_token7] = ACTIONS(1639), + [aux_sym_cmd_identifier_token8] = ACTIONS(1639), + [aux_sym_cmd_identifier_token9] = ACTIONS(1639), + [aux_sym_cmd_identifier_token10] = ACTIONS(1639), + [aux_sym_cmd_identifier_token11] = ACTIONS(1639), + [aux_sym_cmd_identifier_token12] = ACTIONS(1639), + [aux_sym_cmd_identifier_token13] = ACTIONS(1639), + [aux_sym_cmd_identifier_token14] = ACTIONS(1639), + [aux_sym_cmd_identifier_token15] = ACTIONS(1639), + [aux_sym_cmd_identifier_token16] = ACTIONS(1639), + [aux_sym_cmd_identifier_token17] = ACTIONS(1639), + [aux_sym_cmd_identifier_token18] = ACTIONS(1639), + [aux_sym_cmd_identifier_token19] = ACTIONS(1639), + [aux_sym_cmd_identifier_token20] = ACTIONS(1639), + [aux_sym_cmd_identifier_token21] = ACTIONS(1639), + [aux_sym_cmd_identifier_token22] = ACTIONS(1639), + [aux_sym_cmd_identifier_token23] = ACTIONS(1639), + [aux_sym_cmd_identifier_token24] = ACTIONS(1639), + [aux_sym_cmd_identifier_token25] = ACTIONS(1639), + [aux_sym_cmd_identifier_token26] = ACTIONS(1639), + [aux_sym_cmd_identifier_token27] = ACTIONS(1639), + [aux_sym_cmd_identifier_token28] = ACTIONS(1639), + [aux_sym_cmd_identifier_token29] = ACTIONS(1639), + [aux_sym_cmd_identifier_token30] = ACTIONS(1639), + [aux_sym_cmd_identifier_token31] = ACTIONS(1639), + [aux_sym_cmd_identifier_token32] = ACTIONS(1639), + [aux_sym_cmd_identifier_token33] = ACTIONS(1639), + [aux_sym_cmd_identifier_token34] = ACTIONS(1639), + [aux_sym_cmd_identifier_token35] = ACTIONS(1639), + [aux_sym_cmd_identifier_token36] = ACTIONS(1639), + [anon_sym_true] = ACTIONS(1641), + [anon_sym_false] = ACTIONS(1641), + [anon_sym_null] = ACTIONS(1641), + [aux_sym_cmd_identifier_token38] = ACTIONS(1639), + [aux_sym_cmd_identifier_token39] = ACTIONS(1641), + [aux_sym_cmd_identifier_token40] = ACTIONS(1641), + [anon_sym_def] = ACTIONS(1639), + [anon_sym_export_DASHenv] = ACTIONS(1639), + [anon_sym_extern] = ACTIONS(1639), + [anon_sym_module] = ACTIONS(1639), + [anon_sym_use] = ACTIONS(1639), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_DOLLAR] = ACTIONS(1641), + [anon_sym_error] = ACTIONS(1639), + [anon_sym_list] = ACTIONS(1639), + [anon_sym_DASH] = ACTIONS(1639), + [anon_sym_break] = ACTIONS(1639), + [anon_sym_continue] = ACTIONS(1639), + [anon_sym_for] = ACTIONS(1639), + [anon_sym_in] = ACTIONS(1639), + [anon_sym_loop] = ACTIONS(1639), + [anon_sym_make] = ACTIONS(1639), + [anon_sym_while] = ACTIONS(1639), + [anon_sym_do] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1639), + [anon_sym_else] = ACTIONS(1639), + [anon_sym_match] = ACTIONS(1639), + [anon_sym_RBRACE] = ACTIONS(1641), + [anon_sym_try] = ACTIONS(1639), + [anon_sym_catch] = ACTIONS(1639), + [anon_sym_return] = ACTIONS(1639), + [anon_sym_source] = ACTIONS(1639), + [anon_sym_source_DASHenv] = ACTIONS(1639), + [anon_sym_register] = ACTIONS(1639), + [anon_sym_hide] = ACTIONS(1639), + [anon_sym_hide_DASHenv] = ACTIONS(1639), + [anon_sym_overlay] = ACTIONS(1639), + [anon_sym_new] = ACTIONS(1639), + [anon_sym_as] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1641), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1641), + [anon_sym_DOT_DOT2] = ACTIONS(1639), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1641), + [aux_sym__val_number_decimal_token1] = ACTIONS(1639), + [aux_sym__val_number_decimal_token2] = ACTIONS(1641), + [aux_sym__val_number_decimal_token3] = ACTIONS(1641), + [aux_sym__val_number_decimal_token4] = ACTIONS(1641), + [aux_sym__val_number_token1] = ACTIONS(1641), + [aux_sym__val_number_token2] = ACTIONS(1641), + [aux_sym__val_number_token3] = ACTIONS(1641), + [sym_filesize_unit] = ACTIONS(1639), + [sym_duration_unit] = ACTIONS(1639), + [anon_sym_DQUOTE] = ACTIONS(1641), + [sym__str_single_quotes] = ACTIONS(1641), + [sym__str_back_ticks] = ACTIONS(1641), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1639), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1639), + [anon_sym_POUND] = ACTIONS(247), }, [238] = { - [sym_cell_path] = STATE(426), - [sym_path] = STATE(396), [sym_comment] = STATE(238), - [aux_sym_cell_path_repeat1] = STATE(252), - [anon_sym_export] = ACTIONS(945), - [anon_sym_alias] = ACTIONS(945), - [anon_sym_let] = ACTIONS(945), - [anon_sym_let_DASHenv] = ACTIONS(945), - [anon_sym_mut] = ACTIONS(945), - [anon_sym_const] = ACTIONS(945), - [aux_sym_cmd_identifier_token1] = ACTIONS(945), - [aux_sym_cmd_identifier_token2] = ACTIONS(945), - [aux_sym_cmd_identifier_token3] = ACTIONS(945), - [aux_sym_cmd_identifier_token4] = ACTIONS(945), - [aux_sym_cmd_identifier_token5] = ACTIONS(945), - [aux_sym_cmd_identifier_token6] = ACTIONS(945), - [aux_sym_cmd_identifier_token7] = ACTIONS(945), - [aux_sym_cmd_identifier_token8] = ACTIONS(945), - [aux_sym_cmd_identifier_token9] = ACTIONS(945), - [aux_sym_cmd_identifier_token10] = ACTIONS(945), - [aux_sym_cmd_identifier_token11] = ACTIONS(945), - [aux_sym_cmd_identifier_token12] = ACTIONS(945), - [aux_sym_cmd_identifier_token13] = ACTIONS(945), - [aux_sym_cmd_identifier_token14] = ACTIONS(945), - [aux_sym_cmd_identifier_token15] = ACTIONS(945), - [aux_sym_cmd_identifier_token16] = ACTIONS(945), - [aux_sym_cmd_identifier_token17] = ACTIONS(945), - [aux_sym_cmd_identifier_token18] = ACTIONS(945), - [aux_sym_cmd_identifier_token19] = ACTIONS(945), - [aux_sym_cmd_identifier_token20] = ACTIONS(945), - [aux_sym_cmd_identifier_token21] = ACTIONS(945), - [aux_sym_cmd_identifier_token22] = ACTIONS(945), - [aux_sym_cmd_identifier_token23] = ACTIONS(945), - [aux_sym_cmd_identifier_token24] = ACTIONS(945), - [aux_sym_cmd_identifier_token25] = ACTIONS(945), - [aux_sym_cmd_identifier_token26] = ACTIONS(945), - [aux_sym_cmd_identifier_token27] = ACTIONS(945), - [aux_sym_cmd_identifier_token28] = ACTIONS(945), - [aux_sym_cmd_identifier_token29] = ACTIONS(945), - [aux_sym_cmd_identifier_token30] = ACTIONS(945), - [aux_sym_cmd_identifier_token31] = ACTIONS(945), - [aux_sym_cmd_identifier_token32] = ACTIONS(945), - [aux_sym_cmd_identifier_token33] = ACTIONS(945), - [aux_sym_cmd_identifier_token34] = ACTIONS(945), - [aux_sym_cmd_identifier_token35] = ACTIONS(945), - [aux_sym_cmd_identifier_token36] = ACTIONS(945), - [anon_sym_true] = ACTIONS(947), - [anon_sym_false] = ACTIONS(947), - [anon_sym_null] = ACTIONS(947), - [aux_sym_cmd_identifier_token38] = ACTIONS(945), - [aux_sym_cmd_identifier_token39] = ACTIONS(947), - [aux_sym_cmd_identifier_token40] = ACTIONS(947), - [anon_sym_def] = ACTIONS(945), - [anon_sym_export_DASHenv] = ACTIONS(945), - [anon_sym_extern] = ACTIONS(945), - [anon_sym_module] = ACTIONS(945), - [anon_sym_use] = ACTIONS(945), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_DOLLAR] = ACTIONS(947), - [anon_sym_error] = ACTIONS(945), - [anon_sym_list] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_break] = ACTIONS(945), - [anon_sym_continue] = ACTIONS(945), - [anon_sym_for] = ACTIONS(945), - [anon_sym_in] = ACTIONS(945), - [anon_sym_loop] = ACTIONS(945), - [anon_sym_make] = ACTIONS(945), - [anon_sym_while] = ACTIONS(945), - [anon_sym_do] = ACTIONS(945), - [anon_sym_if] = ACTIONS(945), - [anon_sym_else] = ACTIONS(945), - [anon_sym_match] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(947), - [anon_sym_try] = ACTIONS(945), - [anon_sym_catch] = ACTIONS(945), - [anon_sym_return] = ACTIONS(945), - [anon_sym_source] = ACTIONS(945), - [anon_sym_source_DASHenv] = ACTIONS(945), - [anon_sym_register] = ACTIONS(945), - [anon_sym_hide] = ACTIONS(945), - [anon_sym_hide_DASHenv] = ACTIONS(945), - [anon_sym_overlay] = ACTIONS(945), - [anon_sym_new] = ACTIONS(945), - [anon_sym_as] = ACTIONS(945), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(947), - [anon_sym_DOT_DOT2] = ACTIONS(945), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(947), - [anon_sym_DOT_DOT_LT2] = ACTIONS(947), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(947), - [aux_sym__val_number_decimal_token1] = ACTIONS(945), - [aux_sym__val_number_decimal_token2] = ACTIONS(947), - [aux_sym__val_number_decimal_token3] = ACTIONS(947), - [aux_sym__val_number_decimal_token4] = ACTIONS(947), - [aux_sym__val_number_token1] = ACTIONS(947), - [aux_sym__val_number_token2] = ACTIONS(947), - [aux_sym__val_number_token3] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(947), - [sym__str_single_quotes] = ACTIONS(947), - [sym__str_back_ticks] = ACTIONS(947), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(947), - [anon_sym_PLUS] = ACTIONS(945), + [aux_sym_shebang_repeat1] = STATE(6970), + [aux_sym__parenthesized_body_repeat1] = STATE(239), + [anon_sym_export] = ACTIONS(1714), + [anon_sym_alias] = ACTIONS(1714), + [anon_sym_let] = ACTIONS(1714), + [anon_sym_let_DASHenv] = ACTIONS(1714), + [anon_sym_mut] = ACTIONS(1714), + [anon_sym_const] = ACTIONS(1714), + [aux_sym_cmd_identifier_token1] = ACTIONS(1714), + [aux_sym_cmd_identifier_token2] = ACTIONS(1714), + [aux_sym_cmd_identifier_token3] = ACTIONS(1714), + [aux_sym_cmd_identifier_token4] = ACTIONS(1714), + [aux_sym_cmd_identifier_token5] = ACTIONS(1714), + [aux_sym_cmd_identifier_token6] = ACTIONS(1714), + [aux_sym_cmd_identifier_token7] = ACTIONS(1714), + [aux_sym_cmd_identifier_token8] = ACTIONS(1714), + [aux_sym_cmd_identifier_token9] = ACTIONS(1714), + [aux_sym_cmd_identifier_token10] = ACTIONS(1714), + [aux_sym_cmd_identifier_token11] = ACTIONS(1714), + [aux_sym_cmd_identifier_token12] = ACTIONS(1714), + [aux_sym_cmd_identifier_token13] = ACTIONS(1714), + [aux_sym_cmd_identifier_token14] = ACTIONS(1714), + [aux_sym_cmd_identifier_token15] = ACTIONS(1714), + [aux_sym_cmd_identifier_token16] = ACTIONS(1714), + [aux_sym_cmd_identifier_token17] = ACTIONS(1714), + [aux_sym_cmd_identifier_token18] = ACTIONS(1714), + [aux_sym_cmd_identifier_token19] = ACTIONS(1714), + [aux_sym_cmd_identifier_token20] = ACTIONS(1714), + [aux_sym_cmd_identifier_token21] = ACTIONS(1714), + [aux_sym_cmd_identifier_token22] = ACTIONS(1714), + [aux_sym_cmd_identifier_token23] = ACTIONS(1714), + [aux_sym_cmd_identifier_token24] = ACTIONS(712), + [aux_sym_cmd_identifier_token25] = ACTIONS(1714), + [aux_sym_cmd_identifier_token26] = ACTIONS(712), + [aux_sym_cmd_identifier_token27] = ACTIONS(1714), + [aux_sym_cmd_identifier_token28] = ACTIONS(1714), + [aux_sym_cmd_identifier_token29] = ACTIONS(1714), + [aux_sym_cmd_identifier_token30] = ACTIONS(1714), + [aux_sym_cmd_identifier_token31] = ACTIONS(712), + [aux_sym_cmd_identifier_token32] = ACTIONS(712), + [aux_sym_cmd_identifier_token33] = ACTIONS(712), + [aux_sym_cmd_identifier_token34] = ACTIONS(712), + [aux_sym_cmd_identifier_token35] = ACTIONS(712), + [aux_sym_cmd_identifier_token36] = ACTIONS(1714), + [anon_sym_true] = ACTIONS(712), + [anon_sym_false] = ACTIONS(712), + [anon_sym_null] = ACTIONS(712), + [aux_sym_cmd_identifier_token38] = ACTIONS(1714), + [aux_sym_cmd_identifier_token39] = ACTIONS(712), + [aux_sym_cmd_identifier_token40] = ACTIONS(712), + [sym__newline] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_def] = ACTIONS(1714), + [anon_sym_export_DASHenv] = ACTIONS(1714), + [anon_sym_extern] = ACTIONS(1714), + [anon_sym_module] = ACTIONS(1714), + [anon_sym_use] = ACTIONS(1714), + [anon_sym_LBRACK] = ACTIONS(712), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_DOLLAR] = ACTIONS(1714), + [anon_sym_error] = ACTIONS(1714), + [anon_sym_DASH] = ACTIONS(1714), + [anon_sym_break] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(1714), + [anon_sym_for] = ACTIONS(1714), + [anon_sym_loop] = ACTIONS(1714), + [anon_sym_while] = ACTIONS(1714), + [anon_sym_do] = ACTIONS(1714), + [anon_sym_if] = ACTIONS(1714), + [anon_sym_match] = ACTIONS(1714), + [aux_sym_ctrl_match_token1] = ACTIONS(712), + [anon_sym_DOT_DOT] = ACTIONS(1714), + [anon_sym_try] = ACTIONS(1714), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_source] = ACTIONS(1714), + [anon_sym_source_DASHenv] = ACTIONS(1714), + [anon_sym_register] = ACTIONS(1714), + [anon_sym_hide] = ACTIONS(1714), + [anon_sym_hide_DASHenv] = ACTIONS(1714), + [anon_sym_overlay] = ACTIONS(1714), + [anon_sym_where] = ACTIONS(712), + [aux_sym_expr_unary_token1] = ACTIONS(712), + [anon_sym_DOT_DOT_EQ] = ACTIONS(712), + [anon_sym_DOT_DOT_LT] = ACTIONS(712), + [aux_sym__val_number_decimal_token1] = ACTIONS(1714), + [aux_sym__val_number_decimal_token2] = ACTIONS(712), + [aux_sym__val_number_decimal_token3] = ACTIONS(712), + [aux_sym__val_number_decimal_token4] = ACTIONS(712), + [aux_sym__val_number_token1] = ACTIONS(712), + [aux_sym__val_number_token2] = ACTIONS(712), + [aux_sym__val_number_token3] = ACTIONS(712), + [anon_sym_0b] = ACTIONS(1714), + [anon_sym_0o] = ACTIONS(1714), + [anon_sym_0x] = ACTIONS(1714), + [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), + [aux_sym_env_var_token1] = ACTIONS(1714), + [anon_sym_CARET] = ACTIONS(712), [anon_sym_POUND] = ACTIONS(247), }, [239] = { [sym_comment] = STATE(239), - [anon_sym_export] = ACTIONS(1589), - [anon_sym_alias] = ACTIONS(1589), - [anon_sym_let] = ACTIONS(1589), - [anon_sym_let_DASHenv] = ACTIONS(1589), - [anon_sym_mut] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [aux_sym_cmd_identifier_token1] = ACTIONS(1589), - [aux_sym_cmd_identifier_token2] = ACTIONS(1589), - [aux_sym_cmd_identifier_token3] = ACTIONS(1589), - [aux_sym_cmd_identifier_token4] = ACTIONS(1589), - [aux_sym_cmd_identifier_token5] = ACTIONS(1589), - [aux_sym_cmd_identifier_token6] = ACTIONS(1589), - [aux_sym_cmd_identifier_token7] = ACTIONS(1589), - [aux_sym_cmd_identifier_token8] = ACTIONS(1589), - [aux_sym_cmd_identifier_token9] = ACTIONS(1589), - [aux_sym_cmd_identifier_token10] = ACTIONS(1589), - [aux_sym_cmd_identifier_token11] = ACTIONS(1589), - [aux_sym_cmd_identifier_token12] = ACTIONS(1589), - [aux_sym_cmd_identifier_token13] = ACTIONS(1589), - [aux_sym_cmd_identifier_token14] = ACTIONS(1589), - [aux_sym_cmd_identifier_token15] = ACTIONS(1589), - [aux_sym_cmd_identifier_token16] = ACTIONS(1589), - [aux_sym_cmd_identifier_token17] = ACTIONS(1589), - [aux_sym_cmd_identifier_token18] = ACTIONS(1589), - [aux_sym_cmd_identifier_token19] = ACTIONS(1589), - [aux_sym_cmd_identifier_token20] = ACTIONS(1589), - [aux_sym_cmd_identifier_token21] = ACTIONS(1589), - [aux_sym_cmd_identifier_token22] = ACTIONS(1589), - [aux_sym_cmd_identifier_token23] = ACTIONS(1589), - [aux_sym_cmd_identifier_token24] = ACTIONS(1589), - [aux_sym_cmd_identifier_token25] = ACTIONS(1589), - [aux_sym_cmd_identifier_token26] = ACTIONS(1589), - [aux_sym_cmd_identifier_token27] = ACTIONS(1589), - [aux_sym_cmd_identifier_token28] = ACTIONS(1589), - [aux_sym_cmd_identifier_token29] = ACTIONS(1589), - [aux_sym_cmd_identifier_token30] = ACTIONS(1589), - [aux_sym_cmd_identifier_token31] = ACTIONS(1589), - [aux_sym_cmd_identifier_token32] = ACTIONS(1589), - [aux_sym_cmd_identifier_token33] = ACTIONS(1589), - [aux_sym_cmd_identifier_token34] = ACTIONS(1589), - [aux_sym_cmd_identifier_token35] = ACTIONS(1589), - [aux_sym_cmd_identifier_token36] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [anon_sym_null] = ACTIONS(1591), - [aux_sym_cmd_identifier_token38] = ACTIONS(1589), - [aux_sym_cmd_identifier_token39] = ACTIONS(1591), - [aux_sym_cmd_identifier_token40] = ACTIONS(1591), - [anon_sym_def] = ACTIONS(1589), - [anon_sym_export_DASHenv] = ACTIONS(1589), - [anon_sym_extern] = ACTIONS(1589), - [anon_sym_module] = ACTIONS(1589), - [anon_sym_use] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_DOLLAR] = ACTIONS(1591), - [anon_sym_error] = ACTIONS(1589), - [anon_sym_list] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_loop] = ACTIONS(1589), - [anon_sym_make] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_else] = ACTIONS(1589), - [anon_sym_match] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_try] = ACTIONS(1589), - [anon_sym_catch] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_source] = ACTIONS(1589), - [anon_sym_source_DASHenv] = ACTIONS(1589), - [anon_sym_register] = ACTIONS(1589), - [anon_sym_hide] = ACTIONS(1589), - [anon_sym_hide_DASHenv] = ACTIONS(1589), - [anon_sym_overlay] = ACTIONS(1589), - [anon_sym_new] = ACTIONS(1589), - [anon_sym_as] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1591), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1591), - [anon_sym_DOT_DOT2] = ACTIONS(1589), - [anon_sym_DOT] = ACTIONS(1641), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), - [aux_sym__immediate_decimal_token2] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1591), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token3] = ACTIONS(1591), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(1591), - [aux_sym__val_number_token2] = ACTIONS(1591), - [aux_sym__val_number_token3] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym__str_single_quotes] = ACTIONS(1591), - [sym__str_back_ticks] = ACTIONS(1591), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1591), - [anon_sym_PLUS] = ACTIONS(1589), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1589), + [aux_sym_shebang_repeat1] = STATE(6970), + [aux_sym__parenthesized_body_repeat1] = STATE(239), + [anon_sym_export] = ACTIONS(1721), + [anon_sym_alias] = ACTIONS(1721), + [anon_sym_let] = ACTIONS(1721), + [anon_sym_let_DASHenv] = ACTIONS(1721), + [anon_sym_mut] = ACTIONS(1721), + [anon_sym_const] = ACTIONS(1721), + [aux_sym_cmd_identifier_token1] = ACTIONS(1721), + [aux_sym_cmd_identifier_token2] = ACTIONS(1721), + [aux_sym_cmd_identifier_token3] = ACTIONS(1721), + [aux_sym_cmd_identifier_token4] = ACTIONS(1721), + [aux_sym_cmd_identifier_token5] = ACTIONS(1721), + [aux_sym_cmd_identifier_token6] = ACTIONS(1721), + [aux_sym_cmd_identifier_token7] = ACTIONS(1721), + [aux_sym_cmd_identifier_token8] = ACTIONS(1721), + [aux_sym_cmd_identifier_token9] = ACTIONS(1721), + [aux_sym_cmd_identifier_token10] = ACTIONS(1721), + [aux_sym_cmd_identifier_token11] = ACTIONS(1721), + [aux_sym_cmd_identifier_token12] = ACTIONS(1721), + [aux_sym_cmd_identifier_token13] = ACTIONS(1721), + [aux_sym_cmd_identifier_token14] = ACTIONS(1721), + [aux_sym_cmd_identifier_token15] = ACTIONS(1721), + [aux_sym_cmd_identifier_token16] = ACTIONS(1721), + [aux_sym_cmd_identifier_token17] = ACTIONS(1721), + [aux_sym_cmd_identifier_token18] = ACTIONS(1721), + [aux_sym_cmd_identifier_token19] = ACTIONS(1721), + [aux_sym_cmd_identifier_token20] = ACTIONS(1721), + [aux_sym_cmd_identifier_token21] = ACTIONS(1721), + [aux_sym_cmd_identifier_token22] = ACTIONS(1721), + [aux_sym_cmd_identifier_token23] = ACTIONS(1721), + [aux_sym_cmd_identifier_token24] = ACTIONS(1723), + [aux_sym_cmd_identifier_token25] = ACTIONS(1721), + [aux_sym_cmd_identifier_token26] = ACTIONS(1723), + [aux_sym_cmd_identifier_token27] = ACTIONS(1721), + [aux_sym_cmd_identifier_token28] = ACTIONS(1721), + [aux_sym_cmd_identifier_token29] = ACTIONS(1721), + [aux_sym_cmd_identifier_token30] = ACTIONS(1721), + [aux_sym_cmd_identifier_token31] = ACTIONS(1723), + [aux_sym_cmd_identifier_token32] = ACTIONS(1723), + [aux_sym_cmd_identifier_token33] = ACTIONS(1723), + [aux_sym_cmd_identifier_token34] = ACTIONS(1723), + [aux_sym_cmd_identifier_token35] = ACTIONS(1723), + [aux_sym_cmd_identifier_token36] = ACTIONS(1721), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1723), + [aux_sym_cmd_identifier_token38] = ACTIONS(1721), + [aux_sym_cmd_identifier_token39] = ACTIONS(1723), + [aux_sym_cmd_identifier_token40] = ACTIONS(1723), + [sym__newline] = ACTIONS(1725), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_def] = ACTIONS(1721), + [anon_sym_export_DASHenv] = ACTIONS(1721), + [anon_sym_extern] = ACTIONS(1721), + [anon_sym_module] = ACTIONS(1721), + [anon_sym_use] = ACTIONS(1721), + [anon_sym_LBRACK] = ACTIONS(1723), + [anon_sym_LPAREN] = ACTIONS(1723), + [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), + [aux_sym_ctrl_match_token1] = ACTIONS(1723), + [anon_sym_DOT_DOT] = 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(1723), + [aux_sym_expr_unary_token1] = ACTIONS(1723), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1723), + [anon_sym_DOT_DOT_LT] = ACTIONS(1723), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1723), + [aux_sym__val_number_decimal_token3] = ACTIONS(1723), + [aux_sym__val_number_decimal_token4] = ACTIONS(1723), + [aux_sym__val_number_token1] = ACTIONS(1723), + [aux_sym__val_number_token2] = ACTIONS(1723), + [aux_sym__val_number_token3] = ACTIONS(1723), + [anon_sym_0b] = ACTIONS(1721), + [anon_sym_0o] = ACTIONS(1721), + [anon_sym_0x] = ACTIONS(1721), + [sym_val_date] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(1723), + [sym__str_single_quotes] = ACTIONS(1723), + [sym__str_back_ticks] = ACTIONS(1723), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1723), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1723), + [aux_sym_env_var_token1] = ACTIONS(1721), + [anon_sym_CARET] = ACTIONS(1723), [anon_sym_POUND] = ACTIONS(247), }, [240] = { [sym_comment] = STATE(240), - [aux_sym__block_body_repeat1] = STATE(240), - [ts_builtin_sym_end] = ACTIONS(1617), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_alias] = ACTIONS(1615), - [anon_sym_let] = ACTIONS(1615), - [anon_sym_let_DASHenv] = ACTIONS(1615), - [anon_sym_mut] = ACTIONS(1615), - [anon_sym_const] = ACTIONS(1615), - [aux_sym_cmd_identifier_token1] = ACTIONS(1615), - [aux_sym_cmd_identifier_token2] = ACTIONS(1615), - [aux_sym_cmd_identifier_token3] = ACTIONS(1615), - [aux_sym_cmd_identifier_token4] = ACTIONS(1615), - [aux_sym_cmd_identifier_token5] = ACTIONS(1615), - [aux_sym_cmd_identifier_token6] = ACTIONS(1615), - [aux_sym_cmd_identifier_token7] = ACTIONS(1615), - [aux_sym_cmd_identifier_token8] = ACTIONS(1615), - [aux_sym_cmd_identifier_token9] = ACTIONS(1615), - [aux_sym_cmd_identifier_token10] = ACTIONS(1615), - [aux_sym_cmd_identifier_token11] = ACTIONS(1615), - [aux_sym_cmd_identifier_token12] = ACTIONS(1615), - [aux_sym_cmd_identifier_token13] = ACTIONS(1615), - [aux_sym_cmd_identifier_token14] = ACTIONS(1615), - [aux_sym_cmd_identifier_token15] = ACTIONS(1615), - [aux_sym_cmd_identifier_token16] = ACTIONS(1615), - [aux_sym_cmd_identifier_token17] = ACTIONS(1615), - [aux_sym_cmd_identifier_token18] = ACTIONS(1615), - [aux_sym_cmd_identifier_token19] = ACTIONS(1615), - [aux_sym_cmd_identifier_token20] = ACTIONS(1615), - [aux_sym_cmd_identifier_token21] = ACTIONS(1615), - [aux_sym_cmd_identifier_token22] = ACTIONS(1615), - [aux_sym_cmd_identifier_token23] = ACTIONS(1615), - [aux_sym_cmd_identifier_token24] = ACTIONS(1617), - [aux_sym_cmd_identifier_token25] = ACTIONS(1615), - [aux_sym_cmd_identifier_token26] = ACTIONS(1617), - [aux_sym_cmd_identifier_token27] = ACTIONS(1615), - [aux_sym_cmd_identifier_token28] = ACTIONS(1615), - [aux_sym_cmd_identifier_token29] = ACTIONS(1615), - [aux_sym_cmd_identifier_token30] = ACTIONS(1615), - [aux_sym_cmd_identifier_token31] = ACTIONS(1617), - [aux_sym_cmd_identifier_token32] = ACTIONS(1617), - [aux_sym_cmd_identifier_token33] = ACTIONS(1617), - [aux_sym_cmd_identifier_token34] = ACTIONS(1617), - [aux_sym_cmd_identifier_token35] = ACTIONS(1617), - [aux_sym_cmd_identifier_token36] = ACTIONS(1615), - [anon_sym_true] = ACTIONS(1617), - [anon_sym_false] = ACTIONS(1617), - [anon_sym_null] = ACTIONS(1617), - [aux_sym_cmd_identifier_token38] = ACTIONS(1615), - [aux_sym_cmd_identifier_token39] = ACTIONS(1617), - [aux_sym_cmd_identifier_token40] = ACTIONS(1617), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_def] = ACTIONS(1615), - [anon_sym_export_DASHenv] = ACTIONS(1615), - [anon_sym_extern] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_use] = ACTIONS(1615), - [anon_sym_LBRACK] = ACTIONS(1617), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_DOLLAR] = ACTIONS(1615), - [anon_sym_error] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_break] = ACTIONS(1615), - [anon_sym_continue] = ACTIONS(1615), - [anon_sym_for] = ACTIONS(1615), - [anon_sym_loop] = ACTIONS(1615), - [anon_sym_while] = ACTIONS(1615), - [anon_sym_do] = ACTIONS(1615), - [anon_sym_if] = ACTIONS(1615), - [anon_sym_match] = ACTIONS(1615), - [aux_sym_ctrl_match_token1] = ACTIONS(1617), - [anon_sym_DOT_DOT] = ACTIONS(1615), - [anon_sym_try] = ACTIONS(1615), - [anon_sym_return] = ACTIONS(1615), - [anon_sym_source] = ACTIONS(1615), - [anon_sym_source_DASHenv] = ACTIONS(1615), - [anon_sym_register] = ACTIONS(1615), - [anon_sym_hide] = ACTIONS(1615), - [anon_sym_hide_DASHenv] = ACTIONS(1615), - [anon_sym_overlay] = ACTIONS(1615), - [anon_sym_where] = ACTIONS(1617), - [aux_sym_expr_unary_token1] = ACTIONS(1617), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1617), - [anon_sym_DOT_DOT_LT] = ACTIONS(1617), - [aux_sym__val_number_decimal_token1] = ACTIONS(1615), - [aux_sym__val_number_decimal_token2] = ACTIONS(1617), - [aux_sym__val_number_decimal_token3] = ACTIONS(1617), - [aux_sym__val_number_decimal_token4] = ACTIONS(1617), - [aux_sym__val_number_token1] = ACTIONS(1617), - [aux_sym__val_number_token2] = ACTIONS(1617), - [aux_sym__val_number_token3] = ACTIONS(1617), - [anon_sym_0b] = ACTIONS(1615), - [anon_sym_0o] = ACTIONS(1615), - [anon_sym_0x] = ACTIONS(1615), - [sym_val_date] = ACTIONS(1617), - [anon_sym_DQUOTE] = ACTIONS(1617), - [sym__str_single_quotes] = ACTIONS(1617), - [sym__str_back_ticks] = ACTIONS(1617), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1617), - [aux_sym_env_var_token1] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1617), + [aux_sym__block_body_repeat1] = STATE(233), + [ts_builtin_sym_end] = ACTIONS(1655), + [anon_sym_export] = ACTIONS(1651), + [anon_sym_alias] = ACTIONS(1651), + [anon_sym_let] = ACTIONS(1651), + [anon_sym_let_DASHenv] = ACTIONS(1651), + [anon_sym_mut] = ACTIONS(1651), + [anon_sym_const] = ACTIONS(1651), + [aux_sym_cmd_identifier_token1] = ACTIONS(1651), + [aux_sym_cmd_identifier_token2] = ACTIONS(1651), + [aux_sym_cmd_identifier_token3] = ACTIONS(1651), + [aux_sym_cmd_identifier_token4] = ACTIONS(1651), + [aux_sym_cmd_identifier_token5] = ACTIONS(1651), + [aux_sym_cmd_identifier_token6] = ACTIONS(1651), + [aux_sym_cmd_identifier_token7] = ACTIONS(1651), + [aux_sym_cmd_identifier_token8] = ACTIONS(1651), + [aux_sym_cmd_identifier_token9] = ACTIONS(1651), + [aux_sym_cmd_identifier_token10] = ACTIONS(1651), + [aux_sym_cmd_identifier_token11] = ACTIONS(1651), + [aux_sym_cmd_identifier_token12] = ACTIONS(1651), + [aux_sym_cmd_identifier_token13] = ACTIONS(1651), + [aux_sym_cmd_identifier_token14] = ACTIONS(1651), + [aux_sym_cmd_identifier_token15] = ACTIONS(1651), + [aux_sym_cmd_identifier_token16] = ACTIONS(1651), + [aux_sym_cmd_identifier_token17] = ACTIONS(1651), + [aux_sym_cmd_identifier_token18] = ACTIONS(1651), + [aux_sym_cmd_identifier_token19] = ACTIONS(1651), + [aux_sym_cmd_identifier_token20] = ACTIONS(1651), + [aux_sym_cmd_identifier_token21] = ACTIONS(1651), + [aux_sym_cmd_identifier_token22] = ACTIONS(1651), + [aux_sym_cmd_identifier_token23] = ACTIONS(1651), + [aux_sym_cmd_identifier_token24] = ACTIONS(1653), + [aux_sym_cmd_identifier_token25] = ACTIONS(1651), + [aux_sym_cmd_identifier_token26] = ACTIONS(1653), + [aux_sym_cmd_identifier_token27] = ACTIONS(1651), + [aux_sym_cmd_identifier_token28] = ACTIONS(1651), + [aux_sym_cmd_identifier_token29] = ACTIONS(1651), + [aux_sym_cmd_identifier_token30] = ACTIONS(1651), + [aux_sym_cmd_identifier_token31] = ACTIONS(1653), + [aux_sym_cmd_identifier_token32] = ACTIONS(1653), + [aux_sym_cmd_identifier_token33] = ACTIONS(1653), + [aux_sym_cmd_identifier_token34] = ACTIONS(1653), + [aux_sym_cmd_identifier_token35] = ACTIONS(1653), + [aux_sym_cmd_identifier_token36] = ACTIONS(1651), + [anon_sym_true] = ACTIONS(1653), + [anon_sym_false] = ACTIONS(1653), + [anon_sym_null] = ACTIONS(1653), + [aux_sym_cmd_identifier_token38] = ACTIONS(1651), + [aux_sym_cmd_identifier_token39] = ACTIONS(1653), + [aux_sym_cmd_identifier_token40] = ACTIONS(1653), + [sym__newline] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_def] = ACTIONS(1651), + [anon_sym_export_DASHenv] = ACTIONS(1651), + [anon_sym_extern] = ACTIONS(1651), + [anon_sym_module] = ACTIONS(1651), + [anon_sym_use] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_DOLLAR] = ACTIONS(1651), + [anon_sym_error] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(1651), + [anon_sym_break] = ACTIONS(1651), + [anon_sym_continue] = ACTIONS(1651), + [anon_sym_for] = ACTIONS(1651), + [anon_sym_loop] = ACTIONS(1651), + [anon_sym_while] = ACTIONS(1651), + [anon_sym_do] = ACTIONS(1651), + [anon_sym_if] = ACTIONS(1651), + [anon_sym_match] = ACTIONS(1651), + [aux_sym_ctrl_match_token1] = ACTIONS(1653), + [anon_sym_DOT_DOT] = ACTIONS(1651), + [anon_sym_try] = ACTIONS(1651), + [anon_sym_return] = ACTIONS(1651), + [anon_sym_source] = ACTIONS(1651), + [anon_sym_source_DASHenv] = ACTIONS(1651), + [anon_sym_register] = ACTIONS(1651), + [anon_sym_hide] = ACTIONS(1651), + [anon_sym_hide_DASHenv] = ACTIONS(1651), + [anon_sym_overlay] = ACTIONS(1651), + [anon_sym_where] = ACTIONS(1653), + [aux_sym_expr_unary_token1] = ACTIONS(1653), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1653), + [anon_sym_DOT_DOT_LT] = ACTIONS(1653), + [aux_sym__val_number_decimal_token1] = ACTIONS(1651), + [aux_sym__val_number_decimal_token2] = ACTIONS(1653), + [aux_sym__val_number_decimal_token3] = ACTIONS(1653), + [aux_sym__val_number_decimal_token4] = ACTIONS(1653), + [aux_sym__val_number_token1] = ACTIONS(1653), + [aux_sym__val_number_token2] = ACTIONS(1653), + [aux_sym__val_number_token3] = ACTIONS(1653), + [anon_sym_0b] = ACTIONS(1651), + [anon_sym_0o] = ACTIONS(1651), + [anon_sym_0x] = ACTIONS(1651), + [sym_val_date] = ACTIONS(1653), + [anon_sym_DQUOTE] = ACTIONS(1653), + [sym__str_single_quotes] = ACTIONS(1653), + [sym__str_back_ticks] = ACTIONS(1653), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1653), + [aux_sym_env_var_token1] = ACTIONS(1651), + [anon_sym_CARET] = ACTIONS(1653), [anon_sym_POUND] = ACTIONS(247), }, [241] = { + [sym_cell_path] = STATE(426), + [sym_path] = STATE(388), [sym_comment] = STATE(241), - [anon_sym_export] = ACTIONS(1648), - [anon_sym_alias] = ACTIONS(1648), - [anon_sym_let] = ACTIONS(1648), - [anon_sym_let_DASHenv] = ACTIONS(1648), - [anon_sym_mut] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1648), - [aux_sym_cmd_identifier_token1] = ACTIONS(1648), - [aux_sym_cmd_identifier_token2] = ACTIONS(1648), - [aux_sym_cmd_identifier_token3] = ACTIONS(1648), - [aux_sym_cmd_identifier_token4] = ACTIONS(1648), - [aux_sym_cmd_identifier_token5] = ACTIONS(1648), - [aux_sym_cmd_identifier_token6] = ACTIONS(1648), - [aux_sym_cmd_identifier_token7] = ACTIONS(1648), - [aux_sym_cmd_identifier_token8] = ACTIONS(1648), - [aux_sym_cmd_identifier_token9] = ACTIONS(1648), - [aux_sym_cmd_identifier_token10] = ACTIONS(1648), - [aux_sym_cmd_identifier_token11] = ACTIONS(1648), - [aux_sym_cmd_identifier_token12] = ACTIONS(1648), - [aux_sym_cmd_identifier_token13] = ACTIONS(1648), - [aux_sym_cmd_identifier_token14] = ACTIONS(1648), - [aux_sym_cmd_identifier_token15] = ACTIONS(1648), - [aux_sym_cmd_identifier_token16] = ACTIONS(1648), - [aux_sym_cmd_identifier_token17] = ACTIONS(1648), - [aux_sym_cmd_identifier_token18] = ACTIONS(1648), - [aux_sym_cmd_identifier_token19] = ACTIONS(1648), - [aux_sym_cmd_identifier_token20] = ACTIONS(1648), - [aux_sym_cmd_identifier_token21] = ACTIONS(1648), - [aux_sym_cmd_identifier_token22] = ACTIONS(1648), - [aux_sym_cmd_identifier_token23] = ACTIONS(1648), - [aux_sym_cmd_identifier_token24] = ACTIONS(1648), - [aux_sym_cmd_identifier_token25] = ACTIONS(1648), - [aux_sym_cmd_identifier_token26] = ACTIONS(1648), - [aux_sym_cmd_identifier_token27] = ACTIONS(1648), - [aux_sym_cmd_identifier_token28] = ACTIONS(1648), - [aux_sym_cmd_identifier_token29] = ACTIONS(1648), - [aux_sym_cmd_identifier_token30] = ACTIONS(1648), - [aux_sym_cmd_identifier_token31] = ACTIONS(1648), - [aux_sym_cmd_identifier_token32] = ACTIONS(1648), - [aux_sym_cmd_identifier_token33] = ACTIONS(1648), - [aux_sym_cmd_identifier_token34] = ACTIONS(1648), - [aux_sym_cmd_identifier_token35] = ACTIONS(1648), - [aux_sym_cmd_identifier_token36] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1648), - [anon_sym_false] = ACTIONS(1648), - [anon_sym_null] = ACTIONS(1648), - [aux_sym_cmd_identifier_token38] = ACTIONS(1648), - [aux_sym_cmd_identifier_token39] = ACTIONS(1648), - [aux_sym_cmd_identifier_token40] = ACTIONS(1648), - [anon_sym_def] = ACTIONS(1648), - [anon_sym_export_DASHenv] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1648), - [anon_sym_module] = ACTIONS(1648), - [anon_sym_use] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_error] = ACTIONS(1648), - [anon_sym_list] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_in] = ACTIONS(1648), - [anon_sym_loop] = ACTIONS(1648), - [anon_sym_make] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_do] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1648), - [anon_sym_match] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1648), - [anon_sym_try] = ACTIONS(1648), - [anon_sym_catch] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_source] = ACTIONS(1648), - [anon_sym_source_DASHenv] = ACTIONS(1648), - [anon_sym_register] = ACTIONS(1648), - [anon_sym_hide] = ACTIONS(1648), - [anon_sym_hide_DASHenv] = ACTIONS(1648), - [anon_sym_overlay] = ACTIONS(1648), - [anon_sym_new] = ACTIONS(1648), - [anon_sym_as] = ACTIONS(1648), - [anon_sym_LPAREN2] = ACTIONS(1650), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1648), - [anon_sym_DOT_DOT2] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), - [aux_sym__immediate_decimal_token2] = ACTIONS(1652), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1648), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1648), - [aux_sym__val_number_decimal_token3] = ACTIONS(1648), - [aux_sym__val_number_decimal_token4] = ACTIONS(1648), - [aux_sym__val_number_token1] = ACTIONS(1648), - [aux_sym__val_number_token2] = ACTIONS(1648), - [aux_sym__val_number_token3] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1648), - [sym__str_single_quotes] = ACTIONS(1648), - [sym__str_back_ticks] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1648), - [sym__entry_separator] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1648), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(287), + [anon_sym_export] = ACTIONS(1625), + [anon_sym_alias] = ACTIONS(1625), + [anon_sym_let] = ACTIONS(1625), + [anon_sym_let_DASHenv] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(1625), + [anon_sym_const] = ACTIONS(1625), + [aux_sym_cmd_identifier_token1] = ACTIONS(1625), + [aux_sym_cmd_identifier_token2] = ACTIONS(1625), + [aux_sym_cmd_identifier_token3] = ACTIONS(1625), + [aux_sym_cmd_identifier_token4] = ACTIONS(1625), + [aux_sym_cmd_identifier_token5] = ACTIONS(1625), + [aux_sym_cmd_identifier_token6] = ACTIONS(1625), + [aux_sym_cmd_identifier_token7] = ACTIONS(1625), + [aux_sym_cmd_identifier_token8] = ACTIONS(1625), + [aux_sym_cmd_identifier_token9] = ACTIONS(1625), + [aux_sym_cmd_identifier_token10] = ACTIONS(1625), + [aux_sym_cmd_identifier_token11] = ACTIONS(1625), + [aux_sym_cmd_identifier_token12] = ACTIONS(1625), + [aux_sym_cmd_identifier_token13] = ACTIONS(1625), + [aux_sym_cmd_identifier_token14] = ACTIONS(1625), + [aux_sym_cmd_identifier_token15] = ACTIONS(1625), + [aux_sym_cmd_identifier_token16] = ACTIONS(1625), + [aux_sym_cmd_identifier_token17] = ACTIONS(1625), + [aux_sym_cmd_identifier_token18] = ACTIONS(1625), + [aux_sym_cmd_identifier_token19] = ACTIONS(1625), + [aux_sym_cmd_identifier_token20] = ACTIONS(1625), + [aux_sym_cmd_identifier_token21] = ACTIONS(1625), + [aux_sym_cmd_identifier_token22] = ACTIONS(1625), + [aux_sym_cmd_identifier_token23] = ACTIONS(1625), + [aux_sym_cmd_identifier_token24] = ACTIONS(1625), + [aux_sym_cmd_identifier_token25] = ACTIONS(1625), + [aux_sym_cmd_identifier_token26] = ACTIONS(1625), + [aux_sym_cmd_identifier_token27] = ACTIONS(1625), + [aux_sym_cmd_identifier_token28] = ACTIONS(1625), + [aux_sym_cmd_identifier_token29] = ACTIONS(1625), + [aux_sym_cmd_identifier_token30] = ACTIONS(1625), + [aux_sym_cmd_identifier_token31] = ACTIONS(1625), + [aux_sym_cmd_identifier_token32] = ACTIONS(1625), + [aux_sym_cmd_identifier_token33] = ACTIONS(1625), + [aux_sym_cmd_identifier_token34] = ACTIONS(1625), + [aux_sym_cmd_identifier_token35] = ACTIONS(1625), + [aux_sym_cmd_identifier_token36] = ACTIONS(1625), + [anon_sym_true] = ACTIONS(1629), + [anon_sym_false] = ACTIONS(1629), + [anon_sym_null] = ACTIONS(1629), + [aux_sym_cmd_identifier_token38] = ACTIONS(1625), + [aux_sym_cmd_identifier_token39] = ACTIONS(1629), + [aux_sym_cmd_identifier_token40] = ACTIONS(1629), + [anon_sym_def] = ACTIONS(1625), + [anon_sym_export_DASHenv] = ACTIONS(1625), + [anon_sym_extern] = ACTIONS(1625), + [anon_sym_module] = ACTIONS(1625), + [anon_sym_use] = ACTIONS(1625), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_error] = ACTIONS(1625), + [anon_sym_list] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_break] = ACTIONS(1625), + [anon_sym_continue] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_in] = ACTIONS(1625), + [anon_sym_loop] = ACTIONS(1625), + [anon_sym_make] = ACTIONS(1625), + [anon_sym_while] = ACTIONS(1625), + [anon_sym_do] = ACTIONS(1625), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_else] = ACTIONS(1625), + [anon_sym_match] = ACTIONS(1625), + [anon_sym_RBRACE] = ACTIONS(1629), + [anon_sym_try] = ACTIONS(1625), + [anon_sym_catch] = ACTIONS(1625), + [anon_sym_return] = ACTIONS(1625), + [anon_sym_source] = ACTIONS(1625), + [anon_sym_source_DASHenv] = ACTIONS(1625), + [anon_sym_register] = ACTIONS(1625), + [anon_sym_hide] = ACTIONS(1625), + [anon_sym_hide_DASHenv] = ACTIONS(1625), + [anon_sym_overlay] = ACTIONS(1625), + [anon_sym_new] = ACTIONS(1625), + [anon_sym_as] = ACTIONS(1625), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1629), + [anon_sym_DOT_DOT2] = ACTIONS(1625), + [anon_sym_DOT] = ACTIONS(1696), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1629), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1629), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1629), + [aux_sym__val_number_decimal_token1] = ACTIONS(1625), + [aux_sym__val_number_decimal_token2] = ACTIONS(1629), + [aux_sym__val_number_decimal_token3] = ACTIONS(1629), + [aux_sym__val_number_decimal_token4] = ACTIONS(1629), + [aux_sym__val_number_token1] = ACTIONS(1629), + [aux_sym__val_number_token2] = ACTIONS(1629), + [aux_sym__val_number_token3] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1629), + [sym__str_single_quotes] = ACTIONS(1629), + [sym__str_back_ticks] = ACTIONS(1629), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1629), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_POUND] = ACTIONS(247), }, [242] = { + [sym_cmd_identifier] = STATE(4558), + [sym_ctrl_if_parenthesized] = STATE(4957), + [sym_block] = STATE(4958), + [sym__expression_parenthesized] = STATE(4958), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3734), + [sym_expr_parenthesized] = STATE(1961), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1934), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3012), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_command] = STATE(4958), [sym_comment] = STATE(242), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_alias] = ACTIONS(1275), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_let_DASHenv] = ACTIONS(1275), - [anon_sym_mut] = ACTIONS(1275), - [anon_sym_const] = ACTIONS(1275), - [aux_sym_cmd_identifier_token1] = ACTIONS(1275), - [aux_sym_cmd_identifier_token2] = ACTIONS(1275), - [aux_sym_cmd_identifier_token3] = ACTIONS(1275), - [aux_sym_cmd_identifier_token4] = ACTIONS(1275), - [aux_sym_cmd_identifier_token5] = ACTIONS(1275), - [aux_sym_cmd_identifier_token6] = ACTIONS(1275), - [aux_sym_cmd_identifier_token7] = ACTIONS(1275), - [aux_sym_cmd_identifier_token8] = ACTIONS(1275), - [aux_sym_cmd_identifier_token9] = ACTIONS(1275), - [aux_sym_cmd_identifier_token10] = ACTIONS(1275), - [aux_sym_cmd_identifier_token11] = ACTIONS(1275), - [aux_sym_cmd_identifier_token12] = ACTIONS(1275), - [aux_sym_cmd_identifier_token13] = ACTIONS(1275), - [aux_sym_cmd_identifier_token14] = ACTIONS(1275), - [aux_sym_cmd_identifier_token15] = ACTIONS(1275), - [aux_sym_cmd_identifier_token16] = ACTIONS(1275), - [aux_sym_cmd_identifier_token17] = ACTIONS(1275), - [aux_sym_cmd_identifier_token18] = ACTIONS(1275), - [aux_sym_cmd_identifier_token19] = ACTIONS(1275), - [aux_sym_cmd_identifier_token20] = ACTIONS(1275), - [aux_sym_cmd_identifier_token21] = ACTIONS(1275), - [aux_sym_cmd_identifier_token22] = ACTIONS(1275), - [aux_sym_cmd_identifier_token23] = ACTIONS(1275), - [aux_sym_cmd_identifier_token24] = ACTIONS(1271), - [aux_sym_cmd_identifier_token25] = ACTIONS(1275), - [aux_sym_cmd_identifier_token26] = ACTIONS(1271), - [aux_sym_cmd_identifier_token27] = ACTIONS(1275), - [aux_sym_cmd_identifier_token28] = ACTIONS(1275), - [aux_sym_cmd_identifier_token29] = ACTIONS(1275), - [aux_sym_cmd_identifier_token30] = ACTIONS(1275), - [aux_sym_cmd_identifier_token31] = ACTIONS(1271), - [aux_sym_cmd_identifier_token32] = ACTIONS(1271), - [aux_sym_cmd_identifier_token33] = ACTIONS(1271), - [aux_sym_cmd_identifier_token34] = ACTIONS(1271), - [aux_sym_cmd_identifier_token35] = ACTIONS(1271), - [aux_sym_cmd_identifier_token36] = ACTIONS(1275), - [anon_sym_true] = ACTIONS(1271), - [anon_sym_false] = ACTIONS(1271), - [anon_sym_null] = ACTIONS(1271), - [aux_sym_cmd_identifier_token38] = ACTIONS(1275), - [aux_sym_cmd_identifier_token39] = ACTIONS(1271), - [aux_sym_cmd_identifier_token40] = ACTIONS(1271), - [sym__newline] = ACTIONS(1271), - [anon_sym_SEMI] = ACTIONS(1271), - [anon_sym_def] = ACTIONS(1275), - [anon_sym_export_DASHenv] = ACTIONS(1275), - [anon_sym_extern] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_use] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1271), - [anon_sym_LPAREN] = ACTIONS(1271), - [anon_sym_RPAREN] = ACTIONS(1271), - [anon_sym_DOLLAR] = ACTIONS(1275), - [anon_sym_error] = ACTIONS(1275), - [anon_sym_DASH] = ACTIONS(1275), - [anon_sym_break] = ACTIONS(1275), - [anon_sym_continue] = ACTIONS(1275), - [anon_sym_for] = ACTIONS(1275), - [anon_sym_loop] = ACTIONS(1275), - [anon_sym_while] = ACTIONS(1275), - [anon_sym_do] = ACTIONS(1275), - [anon_sym_if] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1275), - [aux_sym_ctrl_match_token1] = ACTIONS(1271), - [anon_sym_RBRACE] = ACTIONS(1271), - [anon_sym_DOT_DOT] = ACTIONS(1275), - [anon_sym_try] = ACTIONS(1275), - [anon_sym_return] = ACTIONS(1275), - [anon_sym_source] = ACTIONS(1275), - [anon_sym_source_DASHenv] = ACTIONS(1275), - [anon_sym_register] = ACTIONS(1275), - [anon_sym_hide] = ACTIONS(1275), - [anon_sym_hide_DASHenv] = ACTIONS(1275), - [anon_sym_overlay] = ACTIONS(1275), - [anon_sym_where] = ACTIONS(1271), - [aux_sym_expr_unary_token1] = ACTIONS(1271), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1271), - [anon_sym_DOT_DOT_LT] = ACTIONS(1271), - [aux_sym__val_number_decimal_token1] = ACTIONS(1275), - [aux_sym__val_number_decimal_token2] = ACTIONS(1271), - [aux_sym__val_number_decimal_token3] = ACTIONS(1271), - [aux_sym__val_number_decimal_token4] = ACTIONS(1271), - [aux_sym__val_number_token1] = ACTIONS(1271), - [aux_sym__val_number_token2] = ACTIONS(1271), - [aux_sym__val_number_token3] = ACTIONS(1271), - [anon_sym_0b] = ACTIONS(1275), - [anon_sym_0o] = ACTIONS(1275), - [anon_sym_0x] = ACTIONS(1275), - [sym_val_date] = ACTIONS(1271), - [anon_sym_DQUOTE] = ACTIONS(1271), - [sym__str_single_quotes] = ACTIONS(1271), - [sym__str_back_ticks] = ACTIONS(1271), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1271), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1271), - [aux_sym_env_var_token1] = ACTIONS(1275), - [anon_sym_CARET] = ACTIONS(1271), + [aux_sym_shebang_repeat1] = STATE(260), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [anon_sym_null] = ACTIONS(1733), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1737), + [aux_sym_cmd_identifier_token40] = ACTIONS(1737), + [sym__newline] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_if] = ACTIONS(479), + [aux_sym_ctrl_match_token1] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1743), + [aux_sym__val_number_decimal_token2] = ACTIONS(1745), + [aux_sym__val_number_decimal_token3] = ACTIONS(1747), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [243] = { [sym_comment] = STATE(243), - [aux_sym__block_body_repeat1] = STATE(240), - [ts_builtin_sym_end] = ACTIONS(1609), - [anon_sym_export] = ACTIONS(1605), - [anon_sym_alias] = ACTIONS(1605), - [anon_sym_let] = ACTIONS(1605), - [anon_sym_let_DASHenv] = ACTIONS(1605), - [anon_sym_mut] = ACTIONS(1605), - [anon_sym_const] = ACTIONS(1605), - [aux_sym_cmd_identifier_token1] = ACTIONS(1605), - [aux_sym_cmd_identifier_token2] = ACTIONS(1605), - [aux_sym_cmd_identifier_token3] = ACTIONS(1605), - [aux_sym_cmd_identifier_token4] = ACTIONS(1605), - [aux_sym_cmd_identifier_token5] = ACTIONS(1605), - [aux_sym_cmd_identifier_token6] = ACTIONS(1605), - [aux_sym_cmd_identifier_token7] = ACTIONS(1605), - [aux_sym_cmd_identifier_token8] = ACTIONS(1605), - [aux_sym_cmd_identifier_token9] = ACTIONS(1605), - [aux_sym_cmd_identifier_token10] = ACTIONS(1605), - [aux_sym_cmd_identifier_token11] = ACTIONS(1605), - [aux_sym_cmd_identifier_token12] = ACTIONS(1605), - [aux_sym_cmd_identifier_token13] = ACTIONS(1605), - [aux_sym_cmd_identifier_token14] = ACTIONS(1605), - [aux_sym_cmd_identifier_token15] = ACTIONS(1605), - [aux_sym_cmd_identifier_token16] = ACTIONS(1605), - [aux_sym_cmd_identifier_token17] = ACTIONS(1605), - [aux_sym_cmd_identifier_token18] = ACTIONS(1605), - [aux_sym_cmd_identifier_token19] = ACTIONS(1605), - [aux_sym_cmd_identifier_token20] = ACTIONS(1605), - [aux_sym_cmd_identifier_token21] = ACTIONS(1605), - [aux_sym_cmd_identifier_token22] = ACTIONS(1605), - [aux_sym_cmd_identifier_token23] = ACTIONS(1605), - [aux_sym_cmd_identifier_token24] = ACTIONS(1607), - [aux_sym_cmd_identifier_token25] = ACTIONS(1605), - [aux_sym_cmd_identifier_token26] = ACTIONS(1607), - [aux_sym_cmd_identifier_token27] = ACTIONS(1605), - [aux_sym_cmd_identifier_token28] = ACTIONS(1605), - [aux_sym_cmd_identifier_token29] = ACTIONS(1605), - [aux_sym_cmd_identifier_token30] = ACTIONS(1605), - [aux_sym_cmd_identifier_token31] = ACTIONS(1607), - [aux_sym_cmd_identifier_token32] = ACTIONS(1607), - [aux_sym_cmd_identifier_token33] = ACTIONS(1607), - [aux_sym_cmd_identifier_token34] = ACTIONS(1607), - [aux_sym_cmd_identifier_token35] = ACTIONS(1607), - [aux_sym_cmd_identifier_token36] = ACTIONS(1605), - [anon_sym_true] = ACTIONS(1607), - [anon_sym_false] = ACTIONS(1607), - [anon_sym_null] = ACTIONS(1607), - [aux_sym_cmd_identifier_token38] = ACTIONS(1605), - [aux_sym_cmd_identifier_token39] = ACTIONS(1607), - [aux_sym_cmd_identifier_token40] = ACTIONS(1607), - [sym__newline] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_def] = ACTIONS(1605), - [anon_sym_export_DASHenv] = ACTIONS(1605), - [anon_sym_extern] = ACTIONS(1605), - [anon_sym_module] = ACTIONS(1605), - [anon_sym_use] = ACTIONS(1605), - [anon_sym_LBRACK] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_DOLLAR] = ACTIONS(1605), - [anon_sym_error] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_break] = ACTIONS(1605), - [anon_sym_continue] = ACTIONS(1605), - [anon_sym_for] = ACTIONS(1605), - [anon_sym_loop] = ACTIONS(1605), - [anon_sym_while] = ACTIONS(1605), - [anon_sym_do] = ACTIONS(1605), - [anon_sym_if] = ACTIONS(1605), - [anon_sym_match] = ACTIONS(1605), - [aux_sym_ctrl_match_token1] = ACTIONS(1607), - [anon_sym_DOT_DOT] = ACTIONS(1605), - [anon_sym_try] = ACTIONS(1605), - [anon_sym_return] = ACTIONS(1605), - [anon_sym_source] = ACTIONS(1605), - [anon_sym_source_DASHenv] = ACTIONS(1605), - [anon_sym_register] = ACTIONS(1605), - [anon_sym_hide] = ACTIONS(1605), - [anon_sym_hide_DASHenv] = ACTIONS(1605), - [anon_sym_overlay] = ACTIONS(1605), - [anon_sym_where] = ACTIONS(1607), - [aux_sym_expr_unary_token1] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), - [anon_sym_DOT_DOT_LT] = ACTIONS(1607), - [aux_sym__val_number_decimal_token1] = ACTIONS(1605), - [aux_sym__val_number_decimal_token2] = ACTIONS(1607), - [aux_sym__val_number_decimal_token3] = ACTIONS(1607), - [aux_sym__val_number_decimal_token4] = ACTIONS(1607), - [aux_sym__val_number_token1] = ACTIONS(1607), - [aux_sym__val_number_token2] = ACTIONS(1607), - [aux_sym__val_number_token3] = ACTIONS(1607), - [anon_sym_0b] = ACTIONS(1605), - [anon_sym_0o] = ACTIONS(1605), - [anon_sym_0x] = ACTIONS(1605), - [sym_val_date] = ACTIONS(1607), - [anon_sym_DQUOTE] = ACTIONS(1607), - [sym__str_single_quotes] = ACTIONS(1607), - [sym__str_back_ticks] = ACTIONS(1607), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1607), - [aux_sym_env_var_token1] = ACTIONS(1605), - [anon_sym_CARET] = ACTIONS(1607), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1028), + [anon_sym_alias] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(1028), + [anon_sym_let_DASHenv] = ACTIONS(1028), + [anon_sym_mut] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(1028), + [aux_sym_cmd_identifier_token1] = ACTIONS(1028), + [aux_sym_cmd_identifier_token2] = ACTIONS(1028), + [aux_sym_cmd_identifier_token3] = ACTIONS(1028), + [aux_sym_cmd_identifier_token4] = ACTIONS(1028), + [aux_sym_cmd_identifier_token5] = ACTIONS(1028), + [aux_sym_cmd_identifier_token6] = ACTIONS(1028), + [aux_sym_cmd_identifier_token7] = ACTIONS(1028), + [aux_sym_cmd_identifier_token8] = ACTIONS(1028), + [aux_sym_cmd_identifier_token9] = ACTIONS(1028), + [aux_sym_cmd_identifier_token10] = ACTIONS(1028), + [aux_sym_cmd_identifier_token11] = ACTIONS(1028), + [aux_sym_cmd_identifier_token12] = ACTIONS(1028), + [aux_sym_cmd_identifier_token13] = ACTIONS(1028), + [aux_sym_cmd_identifier_token14] = ACTIONS(1028), + [aux_sym_cmd_identifier_token15] = ACTIONS(1028), + [aux_sym_cmd_identifier_token16] = ACTIONS(1028), + [aux_sym_cmd_identifier_token17] = ACTIONS(1028), + [aux_sym_cmd_identifier_token18] = ACTIONS(1028), + [aux_sym_cmd_identifier_token19] = ACTIONS(1028), + [aux_sym_cmd_identifier_token20] = ACTIONS(1028), + [aux_sym_cmd_identifier_token21] = ACTIONS(1028), + [aux_sym_cmd_identifier_token22] = ACTIONS(1028), + [aux_sym_cmd_identifier_token23] = ACTIONS(1028), + [aux_sym_cmd_identifier_token24] = ACTIONS(1028), + [aux_sym_cmd_identifier_token25] = ACTIONS(1028), + [aux_sym_cmd_identifier_token26] = ACTIONS(1028), + [aux_sym_cmd_identifier_token27] = ACTIONS(1028), + [aux_sym_cmd_identifier_token28] = ACTIONS(1028), + [aux_sym_cmd_identifier_token29] = ACTIONS(1028), + [aux_sym_cmd_identifier_token30] = ACTIONS(1028), + [aux_sym_cmd_identifier_token31] = ACTIONS(1028), + [aux_sym_cmd_identifier_token32] = ACTIONS(1028), + [aux_sym_cmd_identifier_token33] = ACTIONS(1028), + [aux_sym_cmd_identifier_token34] = ACTIONS(1028), + [aux_sym_cmd_identifier_token35] = ACTIONS(1028), + [aux_sym_cmd_identifier_token36] = ACTIONS(1028), + [anon_sym_true] = ACTIONS(1028), + [anon_sym_false] = ACTIONS(1028), + [anon_sym_null] = ACTIONS(1028), + [aux_sym_cmd_identifier_token38] = ACTIONS(1028), + [aux_sym_cmd_identifier_token39] = ACTIONS(1028), + [aux_sym_cmd_identifier_token40] = ACTIONS(1028), + [anon_sym_def] = ACTIONS(1028), + [anon_sym_export_DASHenv] = ACTIONS(1028), + [anon_sym_extern] = ACTIONS(1028), + [anon_sym_module] = ACTIONS(1028), + [anon_sym_use] = ACTIONS(1028), + [anon_sym_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR] = ACTIONS(1028), + [anon_sym_error] = ACTIONS(1028), + [anon_sym_list] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_in] = ACTIONS(1028), + [anon_sym_loop] = ACTIONS(1028), + [anon_sym_make] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_else] = ACTIONS(1028), + [anon_sym_match] = ACTIONS(1028), + [anon_sym_RBRACE] = ACTIONS(1028), + [anon_sym_try] = ACTIONS(1028), + [anon_sym_catch] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_source] = ACTIONS(1028), + [anon_sym_source_DASHenv] = ACTIONS(1028), + [anon_sym_register] = ACTIONS(1028), + [anon_sym_hide] = ACTIONS(1028), + [anon_sym_hide_DASHenv] = ACTIONS(1028), + [anon_sym_overlay] = ACTIONS(1028), + [anon_sym_new] = ACTIONS(1028), + [anon_sym_as] = ACTIONS(1028), + [anon_sym_QMARK2] = ACTIONS(1751), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1028), + [anon_sym_DOT_DOT2] = ACTIONS(1028), + [anon_sym_DOT] = ACTIONS(1028), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1030), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1030), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1028), + [aux_sym__val_number_decimal_token1] = ACTIONS(1028), + [aux_sym__val_number_decimal_token2] = ACTIONS(1028), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), + [aux_sym__val_number_token1] = ACTIONS(1028), + [aux_sym__val_number_token2] = ACTIONS(1028), + [aux_sym__val_number_token3] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(1028), + [sym__str_single_quotes] = ACTIONS(1028), + [sym__str_back_ticks] = ACTIONS(1028), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1028), + [sym__entry_separator] = ACTIONS(1030), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_POUND] = ACTIONS(3), }, [244] = { - [sym_path] = STATE(327), [sym_comment] = STATE(244), - [aux_sym_cell_path_repeat1] = STATE(237), - [anon_sym_export] = ACTIONS(951), - [anon_sym_alias] = ACTIONS(951), - [anon_sym_let] = ACTIONS(951), - [anon_sym_let_DASHenv] = ACTIONS(951), - [anon_sym_mut] = ACTIONS(951), - [anon_sym_const] = ACTIONS(951), - [aux_sym_cmd_identifier_token1] = ACTIONS(951), - [aux_sym_cmd_identifier_token2] = ACTIONS(951), - [aux_sym_cmd_identifier_token3] = ACTIONS(951), - [aux_sym_cmd_identifier_token4] = ACTIONS(951), - [aux_sym_cmd_identifier_token5] = ACTIONS(951), - [aux_sym_cmd_identifier_token6] = ACTIONS(951), - [aux_sym_cmd_identifier_token7] = ACTIONS(951), - [aux_sym_cmd_identifier_token8] = ACTIONS(951), - [aux_sym_cmd_identifier_token9] = ACTIONS(951), - [aux_sym_cmd_identifier_token10] = ACTIONS(951), - [aux_sym_cmd_identifier_token11] = ACTIONS(951), - [aux_sym_cmd_identifier_token12] = ACTIONS(951), - [aux_sym_cmd_identifier_token13] = ACTIONS(951), - [aux_sym_cmd_identifier_token14] = ACTIONS(951), - [aux_sym_cmd_identifier_token15] = ACTIONS(951), - [aux_sym_cmd_identifier_token16] = ACTIONS(951), - [aux_sym_cmd_identifier_token17] = ACTIONS(951), - [aux_sym_cmd_identifier_token18] = ACTIONS(951), - [aux_sym_cmd_identifier_token19] = ACTIONS(951), - [aux_sym_cmd_identifier_token20] = ACTIONS(951), - [aux_sym_cmd_identifier_token21] = ACTIONS(951), - [aux_sym_cmd_identifier_token22] = ACTIONS(951), - [aux_sym_cmd_identifier_token23] = ACTIONS(951), - [aux_sym_cmd_identifier_token24] = ACTIONS(951), - [aux_sym_cmd_identifier_token25] = ACTIONS(951), - [aux_sym_cmd_identifier_token26] = ACTIONS(951), - [aux_sym_cmd_identifier_token27] = ACTIONS(951), - [aux_sym_cmd_identifier_token28] = ACTIONS(951), - [aux_sym_cmd_identifier_token29] = ACTIONS(951), - [aux_sym_cmd_identifier_token30] = ACTIONS(951), - [aux_sym_cmd_identifier_token31] = ACTIONS(951), - [aux_sym_cmd_identifier_token32] = ACTIONS(951), - [aux_sym_cmd_identifier_token33] = ACTIONS(951), - [aux_sym_cmd_identifier_token34] = ACTIONS(951), - [aux_sym_cmd_identifier_token35] = ACTIONS(951), - [aux_sym_cmd_identifier_token36] = ACTIONS(951), - [anon_sym_true] = ACTIONS(951), - [anon_sym_false] = ACTIONS(951), - [anon_sym_null] = ACTIONS(951), - [aux_sym_cmd_identifier_token38] = ACTIONS(951), - [aux_sym_cmd_identifier_token39] = ACTIONS(951), - [aux_sym_cmd_identifier_token40] = ACTIONS(951), - [anon_sym_def] = ACTIONS(951), - [anon_sym_export_DASHenv] = ACTIONS(951), - [anon_sym_extern] = ACTIONS(951), - [anon_sym_module] = ACTIONS(951), - [anon_sym_use] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(951), - [anon_sym_DOLLAR] = ACTIONS(951), - [anon_sym_error] = ACTIONS(951), - [anon_sym_list] = ACTIONS(951), - [anon_sym_DASH] = ACTIONS(951), - [anon_sym_break] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(951), - [anon_sym_for] = ACTIONS(951), - [anon_sym_in] = ACTIONS(951), - [anon_sym_loop] = ACTIONS(951), - [anon_sym_make] = ACTIONS(951), - [anon_sym_while] = ACTIONS(951), - [anon_sym_do] = ACTIONS(951), - [anon_sym_if] = ACTIONS(951), - [anon_sym_else] = ACTIONS(951), - [anon_sym_match] = ACTIONS(951), - [anon_sym_RBRACE] = ACTIONS(951), - [anon_sym_try] = ACTIONS(951), - [anon_sym_catch] = ACTIONS(951), - [anon_sym_return] = ACTIONS(951), - [anon_sym_source] = ACTIONS(951), - [anon_sym_source_DASHenv] = ACTIONS(951), - [anon_sym_register] = ACTIONS(951), - [anon_sym_hide] = ACTIONS(951), - [anon_sym_hide_DASHenv] = ACTIONS(951), - [anon_sym_overlay] = ACTIONS(951), - [anon_sym_new] = ACTIONS(951), - [anon_sym_as] = ACTIONS(951), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(951), - [anon_sym_DOT_DOT2] = ACTIONS(951), - [anon_sym_DOT] = ACTIONS(1601), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(953), - [anon_sym_DOT_DOT_LT2] = ACTIONS(953), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(951), - [aux_sym__val_number_decimal_token1] = ACTIONS(951), - [aux_sym__val_number_decimal_token2] = ACTIONS(951), - [aux_sym__val_number_decimal_token3] = ACTIONS(951), - [aux_sym__val_number_decimal_token4] = ACTIONS(951), - [aux_sym__val_number_token1] = ACTIONS(951), - [aux_sym__val_number_token2] = ACTIONS(951), - [aux_sym__val_number_token3] = ACTIONS(951), - [anon_sym_DQUOTE] = ACTIONS(951), - [sym__str_single_quotes] = ACTIONS(951), - [sym__str_back_ticks] = ACTIONS(951), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(951), - [sym__entry_separator] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(951), + [anon_sym_export] = ACTIONS(1040), + [anon_sym_alias] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_let_DASHenv] = ACTIONS(1040), + [anon_sym_mut] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(1040), + [aux_sym_cmd_identifier_token1] = ACTIONS(1040), + [aux_sym_cmd_identifier_token2] = ACTIONS(1040), + [aux_sym_cmd_identifier_token3] = ACTIONS(1040), + [aux_sym_cmd_identifier_token4] = ACTIONS(1040), + [aux_sym_cmd_identifier_token5] = ACTIONS(1040), + [aux_sym_cmd_identifier_token6] = ACTIONS(1040), + [aux_sym_cmd_identifier_token7] = ACTIONS(1040), + [aux_sym_cmd_identifier_token8] = ACTIONS(1040), + [aux_sym_cmd_identifier_token9] = ACTIONS(1040), + [aux_sym_cmd_identifier_token10] = ACTIONS(1040), + [aux_sym_cmd_identifier_token11] = ACTIONS(1040), + [aux_sym_cmd_identifier_token12] = ACTIONS(1040), + [aux_sym_cmd_identifier_token13] = ACTIONS(1040), + [aux_sym_cmd_identifier_token14] = ACTIONS(1040), + [aux_sym_cmd_identifier_token15] = ACTIONS(1040), + [aux_sym_cmd_identifier_token16] = ACTIONS(1040), + [aux_sym_cmd_identifier_token17] = ACTIONS(1040), + [aux_sym_cmd_identifier_token18] = ACTIONS(1040), + [aux_sym_cmd_identifier_token19] = ACTIONS(1040), + [aux_sym_cmd_identifier_token20] = ACTIONS(1040), + [aux_sym_cmd_identifier_token21] = ACTIONS(1040), + [aux_sym_cmd_identifier_token22] = ACTIONS(1040), + [aux_sym_cmd_identifier_token23] = ACTIONS(1040), + [aux_sym_cmd_identifier_token24] = ACTIONS(1040), + [aux_sym_cmd_identifier_token25] = ACTIONS(1040), + [aux_sym_cmd_identifier_token26] = ACTIONS(1040), + [aux_sym_cmd_identifier_token27] = ACTIONS(1040), + [aux_sym_cmd_identifier_token28] = ACTIONS(1040), + [aux_sym_cmd_identifier_token29] = ACTIONS(1040), + [aux_sym_cmd_identifier_token30] = ACTIONS(1040), + [aux_sym_cmd_identifier_token31] = ACTIONS(1040), + [aux_sym_cmd_identifier_token32] = ACTIONS(1040), + [aux_sym_cmd_identifier_token33] = ACTIONS(1040), + [aux_sym_cmd_identifier_token34] = ACTIONS(1040), + [aux_sym_cmd_identifier_token35] = ACTIONS(1040), + [aux_sym_cmd_identifier_token36] = ACTIONS(1040), + [anon_sym_true] = ACTIONS(1040), + [anon_sym_false] = ACTIONS(1040), + [anon_sym_null] = ACTIONS(1040), + [aux_sym_cmd_identifier_token38] = ACTIONS(1040), + [aux_sym_cmd_identifier_token39] = ACTIONS(1040), + [aux_sym_cmd_identifier_token40] = ACTIONS(1040), + [anon_sym_def] = ACTIONS(1040), + [anon_sym_export_DASHenv] = ACTIONS(1040), + [anon_sym_extern] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + [anon_sym_use] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1040), + [anon_sym_error] = ACTIONS(1040), + [anon_sym_list] = ACTIONS(1040), + [anon_sym_DASH] = ACTIONS(1040), + [anon_sym_break] = ACTIONS(1040), + [anon_sym_continue] = ACTIONS(1040), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_loop] = ACTIONS(1040), + [anon_sym_make] = ACTIONS(1040), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_do] = ACTIONS(1040), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(1040), + [anon_sym_match] = ACTIONS(1040), + [anon_sym_RBRACE] = ACTIONS(1040), + [anon_sym_try] = ACTIONS(1040), + [anon_sym_catch] = ACTIONS(1040), + [anon_sym_return] = ACTIONS(1040), + [anon_sym_source] = ACTIONS(1040), + [anon_sym_source_DASHenv] = ACTIONS(1040), + [anon_sym_register] = ACTIONS(1040), + [anon_sym_hide] = ACTIONS(1040), + [anon_sym_hide_DASHenv] = ACTIONS(1040), + [anon_sym_overlay] = ACTIONS(1040), + [anon_sym_new] = ACTIONS(1040), + [anon_sym_as] = ACTIONS(1040), + [anon_sym_QMARK2] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1040), + [anon_sym_DOT_DOT2] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1042), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1042), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1040), + [aux_sym__val_number_decimal_token1] = ACTIONS(1040), + [aux_sym__val_number_decimal_token2] = ACTIONS(1040), + [aux_sym__val_number_decimal_token3] = ACTIONS(1040), + [aux_sym__val_number_decimal_token4] = ACTIONS(1040), + [aux_sym__val_number_token1] = ACTIONS(1040), + [aux_sym__val_number_token2] = ACTIONS(1040), + [aux_sym__val_number_token3] = ACTIONS(1040), + [anon_sym_DQUOTE] = ACTIONS(1040), + [sym__str_single_quotes] = ACTIONS(1040), + [sym__str_back_ticks] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1040), + [sym__entry_separator] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1040), [anon_sym_POUND] = ACTIONS(3), }, [245] = { [sym_comment] = STATE(245), - [anon_sym_export] = ACTIONS(1481), - [anon_sym_alias] = ACTIONS(1481), - [anon_sym_let] = ACTIONS(1481), - [anon_sym_let_DASHenv] = ACTIONS(1481), - [anon_sym_mut] = ACTIONS(1481), - [anon_sym_const] = ACTIONS(1481), - [aux_sym_cmd_identifier_token1] = ACTIONS(1481), - [aux_sym_cmd_identifier_token2] = ACTIONS(1481), - [aux_sym_cmd_identifier_token3] = ACTIONS(1481), - [aux_sym_cmd_identifier_token4] = ACTIONS(1481), - [aux_sym_cmd_identifier_token5] = ACTIONS(1481), - [aux_sym_cmd_identifier_token6] = ACTIONS(1481), - [aux_sym_cmd_identifier_token7] = ACTIONS(1481), - [aux_sym_cmd_identifier_token8] = ACTIONS(1481), - [aux_sym_cmd_identifier_token9] = ACTIONS(1481), - [aux_sym_cmd_identifier_token10] = ACTIONS(1481), - [aux_sym_cmd_identifier_token11] = ACTIONS(1481), - [aux_sym_cmd_identifier_token12] = ACTIONS(1481), - [aux_sym_cmd_identifier_token13] = ACTIONS(1481), - [aux_sym_cmd_identifier_token14] = ACTIONS(1481), - [aux_sym_cmd_identifier_token15] = ACTIONS(1481), - [aux_sym_cmd_identifier_token16] = ACTIONS(1481), - [aux_sym_cmd_identifier_token17] = ACTIONS(1481), - [aux_sym_cmd_identifier_token18] = ACTIONS(1481), - [aux_sym_cmd_identifier_token19] = ACTIONS(1481), - [aux_sym_cmd_identifier_token20] = ACTIONS(1481), - [aux_sym_cmd_identifier_token21] = ACTIONS(1481), - [aux_sym_cmd_identifier_token22] = ACTIONS(1481), - [aux_sym_cmd_identifier_token23] = ACTIONS(1481), - [aux_sym_cmd_identifier_token24] = ACTIONS(1481), - [aux_sym_cmd_identifier_token25] = ACTIONS(1481), - [aux_sym_cmd_identifier_token26] = ACTIONS(1481), - [aux_sym_cmd_identifier_token27] = ACTIONS(1481), - [aux_sym_cmd_identifier_token28] = ACTIONS(1481), - [aux_sym_cmd_identifier_token29] = ACTIONS(1481), - [aux_sym_cmd_identifier_token30] = ACTIONS(1481), - [aux_sym_cmd_identifier_token31] = ACTIONS(1481), - [aux_sym_cmd_identifier_token32] = ACTIONS(1481), - [aux_sym_cmd_identifier_token33] = ACTIONS(1481), - [aux_sym_cmd_identifier_token34] = ACTIONS(1481), - [aux_sym_cmd_identifier_token35] = ACTIONS(1481), - [aux_sym_cmd_identifier_token36] = ACTIONS(1481), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [anon_sym_null] = ACTIONS(1483), - [aux_sym_cmd_identifier_token38] = ACTIONS(1481), - [aux_sym_cmd_identifier_token39] = ACTIONS(1483), - [aux_sym_cmd_identifier_token40] = ACTIONS(1483), - [anon_sym_def] = ACTIONS(1481), - [anon_sym_export_DASHenv] = ACTIONS(1481), - [anon_sym_extern] = ACTIONS(1481), - [anon_sym_module] = ACTIONS(1481), - [anon_sym_use] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1481), - [anon_sym_DOLLAR] = ACTIONS(1483), - [anon_sym_error] = ACTIONS(1481), - [anon_sym_list] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_break] = ACTIONS(1481), - [anon_sym_continue] = ACTIONS(1481), - [anon_sym_for] = ACTIONS(1481), - [anon_sym_in] = ACTIONS(1481), - [anon_sym_loop] = ACTIONS(1481), - [anon_sym_make] = ACTIONS(1481), - [anon_sym_while] = ACTIONS(1481), - [anon_sym_do] = ACTIONS(1481), - [anon_sym_if] = ACTIONS(1481), - [anon_sym_else] = ACTIONS(1481), - [anon_sym_match] = ACTIONS(1481), - [anon_sym_RBRACE] = ACTIONS(1483), - [anon_sym_try] = ACTIONS(1481), - [anon_sym_catch] = ACTIONS(1481), - [anon_sym_return] = ACTIONS(1481), - [anon_sym_source] = ACTIONS(1481), - [anon_sym_source_DASHenv] = ACTIONS(1481), - [anon_sym_register] = ACTIONS(1481), - [anon_sym_hide] = ACTIONS(1481), - [anon_sym_hide_DASHenv] = ACTIONS(1481), - [anon_sym_overlay] = ACTIONS(1481), - [anon_sym_new] = ACTIONS(1481), - [anon_sym_as] = ACTIONS(1481), - [anon_sym_LPAREN2] = ACTIONS(1483), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1483), - [anon_sym_DOT_DOT2] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1483), - [aux_sym__val_number_decimal_token1] = ACTIONS(1481), - [aux_sym__val_number_decimal_token2] = ACTIONS(1483), - [aux_sym__val_number_decimal_token3] = ACTIONS(1483), - [aux_sym__val_number_decimal_token4] = ACTIONS(1483), - [aux_sym__val_number_token1] = ACTIONS(1483), - [aux_sym__val_number_token2] = ACTIONS(1483), - [aux_sym__val_number_token3] = ACTIONS(1483), - [sym_filesize_unit] = ACTIONS(1481), - [sym_duration_unit] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1483), - [sym__str_single_quotes] = ACTIONS(1483), - [sym__str_back_ticks] = ACTIONS(1483), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1481), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1481), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_alias] = ACTIONS(1044), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_let_DASHenv] = ACTIONS(1044), + [anon_sym_mut] = ACTIONS(1044), + [anon_sym_const] = ACTIONS(1044), + [aux_sym_cmd_identifier_token1] = ACTIONS(1044), + [aux_sym_cmd_identifier_token2] = ACTIONS(1044), + [aux_sym_cmd_identifier_token3] = ACTIONS(1044), + [aux_sym_cmd_identifier_token4] = ACTIONS(1044), + [aux_sym_cmd_identifier_token5] = ACTIONS(1044), + [aux_sym_cmd_identifier_token6] = ACTIONS(1044), + [aux_sym_cmd_identifier_token7] = ACTIONS(1044), + [aux_sym_cmd_identifier_token8] = ACTIONS(1044), + [aux_sym_cmd_identifier_token9] = ACTIONS(1044), + [aux_sym_cmd_identifier_token10] = ACTIONS(1044), + [aux_sym_cmd_identifier_token11] = ACTIONS(1044), + [aux_sym_cmd_identifier_token12] = ACTIONS(1044), + [aux_sym_cmd_identifier_token13] = ACTIONS(1044), + [aux_sym_cmd_identifier_token14] = ACTIONS(1044), + [aux_sym_cmd_identifier_token15] = ACTIONS(1044), + [aux_sym_cmd_identifier_token16] = ACTIONS(1044), + [aux_sym_cmd_identifier_token17] = ACTIONS(1044), + [aux_sym_cmd_identifier_token18] = ACTIONS(1044), + [aux_sym_cmd_identifier_token19] = ACTIONS(1044), + [aux_sym_cmd_identifier_token20] = ACTIONS(1044), + [aux_sym_cmd_identifier_token21] = ACTIONS(1044), + [aux_sym_cmd_identifier_token22] = ACTIONS(1044), + [aux_sym_cmd_identifier_token23] = ACTIONS(1044), + [aux_sym_cmd_identifier_token24] = ACTIONS(1044), + [aux_sym_cmd_identifier_token25] = ACTIONS(1044), + [aux_sym_cmd_identifier_token26] = ACTIONS(1044), + [aux_sym_cmd_identifier_token27] = ACTIONS(1044), + [aux_sym_cmd_identifier_token28] = ACTIONS(1044), + [aux_sym_cmd_identifier_token29] = ACTIONS(1044), + [aux_sym_cmd_identifier_token30] = ACTIONS(1044), + [aux_sym_cmd_identifier_token31] = ACTIONS(1044), + [aux_sym_cmd_identifier_token32] = ACTIONS(1044), + [aux_sym_cmd_identifier_token33] = ACTIONS(1044), + [aux_sym_cmd_identifier_token34] = ACTIONS(1044), + [aux_sym_cmd_identifier_token35] = ACTIONS(1044), + [aux_sym_cmd_identifier_token36] = ACTIONS(1044), + [anon_sym_true] = ACTIONS(1044), + [anon_sym_false] = ACTIONS(1044), + [anon_sym_null] = ACTIONS(1044), + [aux_sym_cmd_identifier_token38] = ACTIONS(1044), + [aux_sym_cmd_identifier_token39] = ACTIONS(1044), + [aux_sym_cmd_identifier_token40] = ACTIONS(1044), + [anon_sym_def] = ACTIONS(1044), + [anon_sym_export_DASHenv] = ACTIONS(1044), + [anon_sym_extern] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_use] = ACTIONS(1044), + [anon_sym_LPAREN] = ACTIONS(1044), + [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_error] = ACTIONS(1044), + [anon_sym_list] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_break] = ACTIONS(1044), + [anon_sym_continue] = ACTIONS(1044), + [anon_sym_for] = ACTIONS(1044), + [anon_sym_in] = ACTIONS(1044), + [anon_sym_loop] = ACTIONS(1044), + [anon_sym_make] = ACTIONS(1044), + [anon_sym_while] = ACTIONS(1044), + [anon_sym_do] = ACTIONS(1044), + [anon_sym_if] = ACTIONS(1044), + [anon_sym_else] = ACTIONS(1044), + [anon_sym_match] = ACTIONS(1044), + [anon_sym_RBRACE] = ACTIONS(1044), + [anon_sym_try] = ACTIONS(1044), + [anon_sym_catch] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_source] = ACTIONS(1044), + [anon_sym_source_DASHenv] = ACTIONS(1044), + [anon_sym_register] = ACTIONS(1044), + [anon_sym_hide] = ACTIONS(1044), + [anon_sym_hide_DASHenv] = ACTIONS(1044), + [anon_sym_overlay] = ACTIONS(1044), + [anon_sym_new] = ACTIONS(1044), + [anon_sym_as] = ACTIONS(1044), + [anon_sym_QMARK2] = ACTIONS(1044), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1044), + [anon_sym_DOT_DOT2] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1044), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1046), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1046), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1044), + [aux_sym__val_number_decimal_token1] = ACTIONS(1044), + [aux_sym__val_number_decimal_token2] = ACTIONS(1044), + [aux_sym__val_number_decimal_token3] = ACTIONS(1044), + [aux_sym__val_number_decimal_token4] = ACTIONS(1044), + [aux_sym__val_number_token1] = ACTIONS(1044), + [aux_sym__val_number_token2] = ACTIONS(1044), + [aux_sym__val_number_token3] = ACTIONS(1044), + [anon_sym_DQUOTE] = ACTIONS(1044), + [sym__str_single_quotes] = ACTIONS(1044), + [sym__str_back_ticks] = ACTIONS(1044), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1044), + [sym__entry_separator] = ACTIONS(1046), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_POUND] = ACTIONS(3), }, [246] = { [sym_comment] = STATE(246), - [anon_sym_export] = ACTIONS(1473), - [anon_sym_alias] = ACTIONS(1473), - [anon_sym_let] = ACTIONS(1473), - [anon_sym_let_DASHenv] = ACTIONS(1473), - [anon_sym_mut] = ACTIONS(1473), - [anon_sym_const] = ACTIONS(1473), - [aux_sym_cmd_identifier_token1] = ACTIONS(1473), - [aux_sym_cmd_identifier_token2] = ACTIONS(1473), - [aux_sym_cmd_identifier_token3] = ACTIONS(1473), - [aux_sym_cmd_identifier_token4] = ACTIONS(1473), - [aux_sym_cmd_identifier_token5] = ACTIONS(1473), - [aux_sym_cmd_identifier_token6] = ACTIONS(1473), - [aux_sym_cmd_identifier_token7] = ACTIONS(1473), - [aux_sym_cmd_identifier_token8] = ACTIONS(1473), - [aux_sym_cmd_identifier_token9] = ACTIONS(1473), - [aux_sym_cmd_identifier_token10] = ACTIONS(1473), - [aux_sym_cmd_identifier_token11] = ACTIONS(1473), - [aux_sym_cmd_identifier_token12] = ACTIONS(1473), - [aux_sym_cmd_identifier_token13] = ACTIONS(1473), - [aux_sym_cmd_identifier_token14] = ACTIONS(1473), - [aux_sym_cmd_identifier_token15] = ACTIONS(1473), - [aux_sym_cmd_identifier_token16] = ACTIONS(1473), - [aux_sym_cmd_identifier_token17] = ACTIONS(1473), - [aux_sym_cmd_identifier_token18] = ACTIONS(1473), - [aux_sym_cmd_identifier_token19] = ACTIONS(1473), - [aux_sym_cmd_identifier_token20] = ACTIONS(1473), - [aux_sym_cmd_identifier_token21] = ACTIONS(1473), - [aux_sym_cmd_identifier_token22] = ACTIONS(1473), - [aux_sym_cmd_identifier_token23] = ACTIONS(1473), - [aux_sym_cmd_identifier_token24] = ACTIONS(1473), - [aux_sym_cmd_identifier_token25] = ACTIONS(1473), - [aux_sym_cmd_identifier_token26] = ACTIONS(1473), - [aux_sym_cmd_identifier_token27] = ACTIONS(1473), - [aux_sym_cmd_identifier_token28] = ACTIONS(1473), - [aux_sym_cmd_identifier_token29] = ACTIONS(1473), - [aux_sym_cmd_identifier_token30] = ACTIONS(1473), - [aux_sym_cmd_identifier_token31] = ACTIONS(1473), - [aux_sym_cmd_identifier_token32] = ACTIONS(1473), - [aux_sym_cmd_identifier_token33] = ACTIONS(1473), - [aux_sym_cmd_identifier_token34] = ACTIONS(1473), - [aux_sym_cmd_identifier_token35] = ACTIONS(1473), - [aux_sym_cmd_identifier_token36] = ACTIONS(1473), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [aux_sym_cmd_identifier_token38] = ACTIONS(1473), - [aux_sym_cmd_identifier_token39] = ACTIONS(1475), - [aux_sym_cmd_identifier_token40] = ACTIONS(1475), - [anon_sym_def] = ACTIONS(1473), - [anon_sym_export_DASHenv] = ACTIONS(1473), - [anon_sym_extern] = ACTIONS(1473), - [anon_sym_module] = ACTIONS(1473), - [anon_sym_use] = ACTIONS(1473), - [anon_sym_LPAREN] = ACTIONS(1473), - [anon_sym_DOLLAR] = ACTIONS(1475), - [anon_sym_error] = ACTIONS(1473), - [anon_sym_list] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_break] = ACTIONS(1473), - [anon_sym_continue] = ACTIONS(1473), - [anon_sym_for] = ACTIONS(1473), - [anon_sym_in] = ACTIONS(1473), - [anon_sym_loop] = ACTIONS(1473), - [anon_sym_make] = ACTIONS(1473), - [anon_sym_while] = ACTIONS(1473), - [anon_sym_do] = ACTIONS(1473), - [anon_sym_if] = ACTIONS(1473), - [anon_sym_else] = ACTIONS(1473), - [anon_sym_match] = ACTIONS(1473), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_try] = ACTIONS(1473), - [anon_sym_catch] = ACTIONS(1473), - [anon_sym_return] = ACTIONS(1473), - [anon_sym_source] = ACTIONS(1473), - [anon_sym_source_DASHenv] = ACTIONS(1473), - [anon_sym_register] = ACTIONS(1473), - [anon_sym_hide] = ACTIONS(1473), - [anon_sym_hide_DASHenv] = ACTIONS(1473), - [anon_sym_overlay] = ACTIONS(1473), - [anon_sym_new] = ACTIONS(1473), - [anon_sym_as] = ACTIONS(1473), - [anon_sym_LPAREN2] = ACTIONS(1475), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1475), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1475), - [aux_sym__val_number_decimal_token1] = ACTIONS(1473), - [aux_sym__val_number_decimal_token2] = ACTIONS(1475), - [aux_sym__val_number_decimal_token3] = ACTIONS(1475), - [aux_sym__val_number_decimal_token4] = ACTIONS(1475), - [aux_sym__val_number_token1] = ACTIONS(1475), - [aux_sym__val_number_token2] = ACTIONS(1475), - [aux_sym__val_number_token3] = ACTIONS(1475), - [sym_filesize_unit] = ACTIONS(1473), - [sym_duration_unit] = ACTIONS(1473), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym__str_single_quotes] = ACTIONS(1475), - [sym__str_back_ticks] = ACTIONS(1475), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1473), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1473), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_alias] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_let_DASHenv] = ACTIONS(1048), + [anon_sym_mut] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1048), + [aux_sym_cmd_identifier_token1] = ACTIONS(1048), + [aux_sym_cmd_identifier_token2] = ACTIONS(1048), + [aux_sym_cmd_identifier_token3] = ACTIONS(1048), + [aux_sym_cmd_identifier_token4] = ACTIONS(1048), + [aux_sym_cmd_identifier_token5] = ACTIONS(1048), + [aux_sym_cmd_identifier_token6] = ACTIONS(1048), + [aux_sym_cmd_identifier_token7] = ACTIONS(1048), + [aux_sym_cmd_identifier_token8] = ACTIONS(1048), + [aux_sym_cmd_identifier_token9] = ACTIONS(1048), + [aux_sym_cmd_identifier_token10] = ACTIONS(1048), + [aux_sym_cmd_identifier_token11] = ACTIONS(1048), + [aux_sym_cmd_identifier_token12] = ACTIONS(1048), + [aux_sym_cmd_identifier_token13] = ACTIONS(1048), + [aux_sym_cmd_identifier_token14] = ACTIONS(1048), + [aux_sym_cmd_identifier_token15] = ACTIONS(1048), + [aux_sym_cmd_identifier_token16] = ACTIONS(1048), + [aux_sym_cmd_identifier_token17] = ACTIONS(1048), + [aux_sym_cmd_identifier_token18] = ACTIONS(1048), + [aux_sym_cmd_identifier_token19] = ACTIONS(1048), + [aux_sym_cmd_identifier_token20] = ACTIONS(1048), + [aux_sym_cmd_identifier_token21] = ACTIONS(1048), + [aux_sym_cmd_identifier_token22] = ACTIONS(1048), + [aux_sym_cmd_identifier_token23] = ACTIONS(1048), + [aux_sym_cmd_identifier_token24] = ACTIONS(1048), + [aux_sym_cmd_identifier_token25] = ACTIONS(1048), + [aux_sym_cmd_identifier_token26] = ACTIONS(1048), + [aux_sym_cmd_identifier_token27] = ACTIONS(1048), + [aux_sym_cmd_identifier_token28] = ACTIONS(1048), + [aux_sym_cmd_identifier_token29] = ACTIONS(1048), + [aux_sym_cmd_identifier_token30] = ACTIONS(1048), + [aux_sym_cmd_identifier_token31] = ACTIONS(1048), + [aux_sym_cmd_identifier_token32] = ACTIONS(1048), + [aux_sym_cmd_identifier_token33] = ACTIONS(1048), + [aux_sym_cmd_identifier_token34] = ACTIONS(1048), + [aux_sym_cmd_identifier_token35] = ACTIONS(1048), + [aux_sym_cmd_identifier_token36] = ACTIONS(1048), + [anon_sym_true] = ACTIONS(1048), + [anon_sym_false] = ACTIONS(1048), + [anon_sym_null] = ACTIONS(1048), + [aux_sym_cmd_identifier_token38] = ACTIONS(1048), + [aux_sym_cmd_identifier_token39] = ACTIONS(1048), + [aux_sym_cmd_identifier_token40] = ACTIONS(1048), + [anon_sym_def] = ACTIONS(1048), + [anon_sym_export_DASHenv] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_use] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_error] = ACTIONS(1048), + [anon_sym_list] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_in] = ACTIONS(1048), + [anon_sym_loop] = ACTIONS(1048), + [anon_sym_make] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_else] = ACTIONS(1048), + [anon_sym_match] = ACTIONS(1048), + [anon_sym_RBRACE] = ACTIONS(1048), + [anon_sym_try] = ACTIONS(1048), + [anon_sym_catch] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_source] = ACTIONS(1048), + [anon_sym_source_DASHenv] = ACTIONS(1048), + [anon_sym_register] = ACTIONS(1048), + [anon_sym_hide] = ACTIONS(1048), + [anon_sym_hide_DASHenv] = ACTIONS(1048), + [anon_sym_overlay] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1048), + [anon_sym_as] = ACTIONS(1048), + [anon_sym_QMARK2] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1048), + [anon_sym_DOT_DOT2] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1050), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1048), + [aux_sym__val_number_decimal_token1] = ACTIONS(1048), + [aux_sym__val_number_decimal_token2] = ACTIONS(1048), + [aux_sym__val_number_decimal_token3] = ACTIONS(1048), + [aux_sym__val_number_decimal_token4] = ACTIONS(1048), + [aux_sym__val_number_token1] = ACTIONS(1048), + [aux_sym__val_number_token2] = ACTIONS(1048), + [aux_sym__val_number_token3] = ACTIONS(1048), + [anon_sym_DQUOTE] = ACTIONS(1048), + [sym__str_single_quotes] = ACTIONS(1048), + [sym__str_back_ticks] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1048), + [sym__entry_separator] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_POUND] = ACTIONS(3), }, [247] = { [sym_comment] = STATE(247), - [aux_sym_shebang_repeat1] = STATE(7297), - [aux_sym__parenthesized_body_repeat1] = STATE(232), - [anon_sym_export] = ACTIONS(1654), - [anon_sym_alias] = ACTIONS(1654), - [anon_sym_let] = ACTIONS(1654), - [anon_sym_let_DASHenv] = ACTIONS(1654), - [anon_sym_mut] = ACTIONS(1654), - [anon_sym_const] = ACTIONS(1654), - [aux_sym_cmd_identifier_token1] = ACTIONS(1654), - [aux_sym_cmd_identifier_token2] = ACTIONS(1654), - [aux_sym_cmd_identifier_token3] = ACTIONS(1654), - [aux_sym_cmd_identifier_token4] = ACTIONS(1654), - [aux_sym_cmd_identifier_token5] = ACTIONS(1654), - [aux_sym_cmd_identifier_token6] = ACTIONS(1654), - [aux_sym_cmd_identifier_token7] = ACTIONS(1654), - [aux_sym_cmd_identifier_token8] = ACTIONS(1654), - [aux_sym_cmd_identifier_token9] = ACTIONS(1654), - [aux_sym_cmd_identifier_token10] = ACTIONS(1654), - [aux_sym_cmd_identifier_token11] = ACTIONS(1654), - [aux_sym_cmd_identifier_token12] = ACTIONS(1654), - [aux_sym_cmd_identifier_token13] = ACTIONS(1654), - [aux_sym_cmd_identifier_token14] = ACTIONS(1654), - [aux_sym_cmd_identifier_token15] = ACTIONS(1654), - [aux_sym_cmd_identifier_token16] = ACTIONS(1654), - [aux_sym_cmd_identifier_token17] = ACTIONS(1654), - [aux_sym_cmd_identifier_token18] = ACTIONS(1654), - [aux_sym_cmd_identifier_token19] = ACTIONS(1654), - [aux_sym_cmd_identifier_token20] = ACTIONS(1654), - [aux_sym_cmd_identifier_token21] = ACTIONS(1654), - [aux_sym_cmd_identifier_token22] = ACTIONS(1654), - [aux_sym_cmd_identifier_token23] = ACTIONS(1654), - [aux_sym_cmd_identifier_token24] = ACTIONS(646), - [aux_sym_cmd_identifier_token25] = ACTIONS(1654), - [aux_sym_cmd_identifier_token26] = ACTIONS(646), - [aux_sym_cmd_identifier_token27] = ACTIONS(1654), - [aux_sym_cmd_identifier_token28] = ACTIONS(1654), - [aux_sym_cmd_identifier_token29] = ACTIONS(1654), - [aux_sym_cmd_identifier_token30] = ACTIONS(1654), - [aux_sym_cmd_identifier_token31] = ACTIONS(646), - [aux_sym_cmd_identifier_token32] = ACTIONS(646), - [aux_sym_cmd_identifier_token33] = ACTIONS(646), - [aux_sym_cmd_identifier_token34] = ACTIONS(646), - [aux_sym_cmd_identifier_token35] = ACTIONS(646), - [aux_sym_cmd_identifier_token36] = ACTIONS(1654), - [anon_sym_true] = ACTIONS(646), - [anon_sym_false] = ACTIONS(646), - [anon_sym_null] = ACTIONS(646), - [aux_sym_cmd_identifier_token38] = ACTIONS(1654), - [aux_sym_cmd_identifier_token39] = ACTIONS(646), - [aux_sym_cmd_identifier_token40] = ACTIONS(646), - [sym__newline] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_def] = ACTIONS(1654), - [anon_sym_export_DASHenv] = ACTIONS(1654), - [anon_sym_extern] = ACTIONS(1654), - [anon_sym_module] = ACTIONS(1654), - [anon_sym_use] = ACTIONS(1654), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_DOLLAR] = ACTIONS(1654), - [anon_sym_error] = ACTIONS(1654), - [anon_sym_DASH] = ACTIONS(1654), - [anon_sym_break] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(1654), - [anon_sym_for] = ACTIONS(1654), - [anon_sym_loop] = ACTIONS(1654), - [anon_sym_while] = ACTIONS(1654), - [anon_sym_do] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1654), - [anon_sym_match] = ACTIONS(1654), - [aux_sym_ctrl_match_token1] = ACTIONS(646), - [anon_sym_DOT_DOT] = ACTIONS(1654), - [anon_sym_try] = ACTIONS(1654), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_source] = ACTIONS(1654), - [anon_sym_source_DASHenv] = ACTIONS(1654), - [anon_sym_register] = ACTIONS(1654), - [anon_sym_hide] = ACTIONS(1654), - [anon_sym_hide_DASHenv] = ACTIONS(1654), - [anon_sym_overlay] = ACTIONS(1654), - [anon_sym_where] = ACTIONS(646), - [aux_sym_expr_unary_token1] = ACTIONS(646), - [anon_sym_DOT_DOT_EQ] = ACTIONS(646), - [anon_sym_DOT_DOT_LT] = ACTIONS(646), - [aux_sym__val_number_decimal_token1] = ACTIONS(1654), - [aux_sym__val_number_decimal_token2] = ACTIONS(646), - [aux_sym__val_number_decimal_token3] = ACTIONS(646), - [aux_sym__val_number_decimal_token4] = ACTIONS(646), - [aux_sym__val_number_token1] = ACTIONS(646), - [aux_sym__val_number_token2] = ACTIONS(646), - [aux_sym__val_number_token3] = ACTIONS(646), - [anon_sym_0b] = ACTIONS(1654), - [anon_sym_0o] = ACTIONS(1654), - [anon_sym_0x] = ACTIONS(1654), - [sym_val_date] = ACTIONS(646), - [anon_sym_DQUOTE] = ACTIONS(646), - [sym__str_single_quotes] = ACTIONS(646), - [sym__str_back_ticks] = ACTIONS(646), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(646), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(646), - [aux_sym_env_var_token1] = ACTIONS(1654), - [anon_sym_CARET] = ACTIONS(646), + [anon_sym_export] = ACTIONS(1643), + [anon_sym_alias] = ACTIONS(1643), + [anon_sym_let] = ACTIONS(1643), + [anon_sym_let_DASHenv] = ACTIONS(1643), + [anon_sym_mut] = ACTIONS(1643), + [anon_sym_const] = ACTIONS(1643), + [aux_sym_cmd_identifier_token1] = ACTIONS(1643), + [aux_sym_cmd_identifier_token2] = ACTIONS(1643), + [aux_sym_cmd_identifier_token3] = ACTIONS(1643), + [aux_sym_cmd_identifier_token4] = ACTIONS(1643), + [aux_sym_cmd_identifier_token5] = ACTIONS(1643), + [aux_sym_cmd_identifier_token6] = ACTIONS(1643), + [aux_sym_cmd_identifier_token7] = ACTIONS(1643), + [aux_sym_cmd_identifier_token8] = ACTIONS(1643), + [aux_sym_cmd_identifier_token9] = ACTIONS(1643), + [aux_sym_cmd_identifier_token10] = ACTIONS(1643), + [aux_sym_cmd_identifier_token11] = ACTIONS(1643), + [aux_sym_cmd_identifier_token12] = ACTIONS(1643), + [aux_sym_cmd_identifier_token13] = ACTIONS(1643), + [aux_sym_cmd_identifier_token14] = ACTIONS(1643), + [aux_sym_cmd_identifier_token15] = ACTIONS(1643), + [aux_sym_cmd_identifier_token16] = ACTIONS(1643), + [aux_sym_cmd_identifier_token17] = ACTIONS(1643), + [aux_sym_cmd_identifier_token18] = ACTIONS(1643), + [aux_sym_cmd_identifier_token19] = ACTIONS(1643), + [aux_sym_cmd_identifier_token20] = ACTIONS(1643), + [aux_sym_cmd_identifier_token21] = ACTIONS(1643), + [aux_sym_cmd_identifier_token22] = ACTIONS(1643), + [aux_sym_cmd_identifier_token23] = ACTIONS(1643), + [aux_sym_cmd_identifier_token24] = ACTIONS(1643), + [aux_sym_cmd_identifier_token25] = ACTIONS(1643), + [aux_sym_cmd_identifier_token26] = ACTIONS(1643), + [aux_sym_cmd_identifier_token27] = ACTIONS(1643), + [aux_sym_cmd_identifier_token28] = ACTIONS(1643), + [aux_sym_cmd_identifier_token29] = ACTIONS(1643), + [aux_sym_cmd_identifier_token30] = ACTIONS(1643), + [aux_sym_cmd_identifier_token31] = ACTIONS(1643), + [aux_sym_cmd_identifier_token32] = ACTIONS(1643), + [aux_sym_cmd_identifier_token33] = ACTIONS(1643), + [aux_sym_cmd_identifier_token34] = ACTIONS(1643), + [aux_sym_cmd_identifier_token35] = ACTIONS(1643), + [aux_sym_cmd_identifier_token36] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [aux_sym_cmd_identifier_token38] = ACTIONS(1643), + [aux_sym_cmd_identifier_token39] = ACTIONS(1645), + [aux_sym_cmd_identifier_token40] = ACTIONS(1645), + [anon_sym_def] = ACTIONS(1643), + [anon_sym_export_DASHenv] = ACTIONS(1643), + [anon_sym_extern] = ACTIONS(1643), + [anon_sym_module] = ACTIONS(1643), + [anon_sym_use] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(1645), + [anon_sym_error] = ACTIONS(1643), + [anon_sym_list] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_break] = ACTIONS(1643), + [anon_sym_continue] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_loop] = ACTIONS(1643), + [anon_sym_make] = ACTIONS(1643), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_do] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_else] = ACTIONS(1643), + [anon_sym_match] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1645), + [anon_sym_try] = ACTIONS(1643), + [anon_sym_catch] = ACTIONS(1643), + [anon_sym_return] = ACTIONS(1643), + [anon_sym_source] = ACTIONS(1643), + [anon_sym_source_DASHenv] = ACTIONS(1643), + [anon_sym_register] = ACTIONS(1643), + [anon_sym_hide] = ACTIONS(1643), + [anon_sym_hide_DASHenv] = ACTIONS(1643), + [anon_sym_overlay] = ACTIONS(1643), + [anon_sym_new] = ACTIONS(1643), + [anon_sym_as] = ACTIONS(1643), + [anon_sym_LPAREN2] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1645), + [anon_sym_DOT_DOT2] = ACTIONS(1643), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), + [aux_sym__immediate_decimal_token2] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1645), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1645), + [aux_sym__val_number_decimal_token3] = ACTIONS(1645), + [aux_sym__val_number_decimal_token4] = ACTIONS(1645), + [aux_sym__val_number_token1] = ACTIONS(1645), + [aux_sym__val_number_token2] = ACTIONS(1645), + [aux_sym__val_number_token3] = ACTIONS(1645), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym__str_single_quotes] = ACTIONS(1645), + [sym__str_back_ticks] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1645), + [anon_sym_PLUS] = ACTIONS(1643), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1643), [anon_sym_POUND] = ACTIONS(247), }, [248] = { - [sym_cmd_identifier] = STATE(4804), - [sym_ctrl_if_parenthesized] = STATE(5276), - [sym_block] = STATE(5278), - [sym__expression_parenthesized] = STATE(5278), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(4014), - [sym_expr_parenthesized] = STATE(2154), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(2143), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3317), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_command] = STATE(5278), [sym_comment] = STATE(248), - [aux_sym_shebang_repeat1] = STATE(1250), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1663), - [aux_sym_cmd_identifier_token38] = ACTIONS(1665), - [aux_sym_cmd_identifier_token39] = ACTIONS(1667), - [aux_sym_cmd_identifier_token40] = ACTIONS(1667), - [sym__newline] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_if] = ACTIONS(485), - [aux_sym_ctrl_match_token1] = ACTIONS(1671), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1673), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [aux_sym__val_number_decimal_token3] = ACTIONS(1677), - [aux_sym__val_number_decimal_token4] = ACTIONS(1679), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_export] = ACTIONS(1705), + [anon_sym_alias] = ACTIONS(1705), + [anon_sym_let] = ACTIONS(1705), + [anon_sym_let_DASHenv] = ACTIONS(1705), + [anon_sym_mut] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [aux_sym_cmd_identifier_token1] = ACTIONS(1705), + [aux_sym_cmd_identifier_token2] = ACTIONS(1705), + [aux_sym_cmd_identifier_token3] = ACTIONS(1705), + [aux_sym_cmd_identifier_token4] = ACTIONS(1705), + [aux_sym_cmd_identifier_token5] = ACTIONS(1705), + [aux_sym_cmd_identifier_token6] = ACTIONS(1705), + [aux_sym_cmd_identifier_token7] = ACTIONS(1705), + [aux_sym_cmd_identifier_token8] = ACTIONS(1705), + [aux_sym_cmd_identifier_token9] = ACTIONS(1705), + [aux_sym_cmd_identifier_token10] = ACTIONS(1705), + [aux_sym_cmd_identifier_token11] = ACTIONS(1705), + [aux_sym_cmd_identifier_token12] = ACTIONS(1705), + [aux_sym_cmd_identifier_token13] = ACTIONS(1705), + [aux_sym_cmd_identifier_token14] = ACTIONS(1705), + [aux_sym_cmd_identifier_token15] = ACTIONS(1705), + [aux_sym_cmd_identifier_token16] = ACTIONS(1705), + [aux_sym_cmd_identifier_token17] = ACTIONS(1705), + [aux_sym_cmd_identifier_token18] = ACTIONS(1705), + [aux_sym_cmd_identifier_token19] = ACTIONS(1705), + [aux_sym_cmd_identifier_token20] = ACTIONS(1705), + [aux_sym_cmd_identifier_token21] = ACTIONS(1705), + [aux_sym_cmd_identifier_token22] = ACTIONS(1705), + [aux_sym_cmd_identifier_token23] = ACTIONS(1705), + [aux_sym_cmd_identifier_token24] = ACTIONS(1705), + [aux_sym_cmd_identifier_token25] = ACTIONS(1705), + [aux_sym_cmd_identifier_token26] = ACTIONS(1705), + [aux_sym_cmd_identifier_token27] = ACTIONS(1705), + [aux_sym_cmd_identifier_token28] = ACTIONS(1705), + [aux_sym_cmd_identifier_token29] = ACTIONS(1705), + [aux_sym_cmd_identifier_token30] = ACTIONS(1705), + [aux_sym_cmd_identifier_token31] = ACTIONS(1705), + [aux_sym_cmd_identifier_token32] = ACTIONS(1705), + [aux_sym_cmd_identifier_token33] = ACTIONS(1705), + [aux_sym_cmd_identifier_token34] = ACTIONS(1705), + [aux_sym_cmd_identifier_token35] = ACTIONS(1705), + [aux_sym_cmd_identifier_token36] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1707), + [anon_sym_false] = ACTIONS(1707), + [anon_sym_null] = ACTIONS(1707), + [aux_sym_cmd_identifier_token38] = ACTIONS(1705), + [aux_sym_cmd_identifier_token39] = ACTIONS(1707), + [aux_sym_cmd_identifier_token40] = ACTIONS(1707), + [anon_sym_def] = ACTIONS(1705), + [anon_sym_export_DASHenv] = ACTIONS(1705), + [anon_sym_extern] = ACTIONS(1705), + [anon_sym_module] = ACTIONS(1705), + [anon_sym_use] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1707), + [anon_sym_error] = ACTIONS(1705), + [anon_sym_list] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_break] = ACTIONS(1705), + [anon_sym_continue] = ACTIONS(1705), + [anon_sym_for] = ACTIONS(1705), + [anon_sym_in] = ACTIONS(1705), + [anon_sym_loop] = ACTIONS(1705), + [anon_sym_make] = ACTIONS(1705), + [anon_sym_while] = ACTIONS(1705), + [anon_sym_do] = ACTIONS(1705), + [anon_sym_if] = ACTIONS(1705), + [anon_sym_else] = ACTIONS(1705), + [anon_sym_match] = ACTIONS(1705), + [anon_sym_RBRACE] = ACTIONS(1707), + [anon_sym_try] = ACTIONS(1705), + [anon_sym_catch] = ACTIONS(1705), + [anon_sym_return] = ACTIONS(1705), + [anon_sym_source] = ACTIONS(1705), + [anon_sym_source_DASHenv] = ACTIONS(1705), + [anon_sym_register] = ACTIONS(1705), + [anon_sym_hide] = ACTIONS(1705), + [anon_sym_hide_DASHenv] = ACTIONS(1705), + [anon_sym_overlay] = ACTIONS(1705), + [anon_sym_new] = ACTIONS(1705), + [anon_sym_as] = ACTIONS(1705), + [anon_sym_LPAREN2] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1707), + [anon_sym_DOT_DOT2] = ACTIONS(1705), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1707), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1707), + [aux_sym__immediate_decimal_token2] = ACTIONS(1753), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1707), + [aux_sym__val_number_decimal_token1] = ACTIONS(1705), + [aux_sym__val_number_decimal_token2] = ACTIONS(1707), + [aux_sym__val_number_decimal_token3] = ACTIONS(1707), + [aux_sym__val_number_decimal_token4] = ACTIONS(1707), + [aux_sym__val_number_token1] = ACTIONS(1707), + [aux_sym__val_number_token2] = ACTIONS(1707), + [aux_sym__val_number_token3] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1707), + [sym__str_single_quotes] = ACTIONS(1707), + [sym__str_back_ticks] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1705), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1705), [anon_sym_POUND] = ACTIONS(247), }, [249] = { + [sym_cmd_identifier] = STATE(4558), + [sym_ctrl_if_parenthesized] = STATE(5049), + [sym_block] = STATE(5050), + [sym__expression_parenthesized] = STATE(5050), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3734), + [sym_expr_parenthesized] = STATE(1961), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1934), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3012), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_command] = STATE(5050), [sym_comment] = STATE(249), - [anon_sym_export] = ACTIONS(1681), - [anon_sym_alias] = ACTIONS(1681), - [anon_sym_let] = ACTIONS(1681), - [anon_sym_let_DASHenv] = ACTIONS(1681), - [anon_sym_mut] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1681), - [aux_sym_cmd_identifier_token1] = ACTIONS(1681), - [aux_sym_cmd_identifier_token2] = ACTIONS(1681), - [aux_sym_cmd_identifier_token3] = ACTIONS(1681), - [aux_sym_cmd_identifier_token4] = ACTIONS(1681), - [aux_sym_cmd_identifier_token5] = ACTIONS(1681), - [aux_sym_cmd_identifier_token6] = ACTIONS(1681), - [aux_sym_cmd_identifier_token7] = ACTIONS(1681), - [aux_sym_cmd_identifier_token8] = ACTIONS(1681), - [aux_sym_cmd_identifier_token9] = ACTIONS(1681), - [aux_sym_cmd_identifier_token10] = ACTIONS(1681), - [aux_sym_cmd_identifier_token11] = ACTIONS(1681), - [aux_sym_cmd_identifier_token12] = ACTIONS(1681), - [aux_sym_cmd_identifier_token13] = ACTIONS(1681), - [aux_sym_cmd_identifier_token14] = ACTIONS(1681), - [aux_sym_cmd_identifier_token15] = ACTIONS(1681), - [aux_sym_cmd_identifier_token16] = ACTIONS(1681), - [aux_sym_cmd_identifier_token17] = ACTIONS(1681), - [aux_sym_cmd_identifier_token18] = ACTIONS(1681), - [aux_sym_cmd_identifier_token19] = ACTIONS(1681), - [aux_sym_cmd_identifier_token20] = ACTIONS(1681), - [aux_sym_cmd_identifier_token21] = ACTIONS(1681), - [aux_sym_cmd_identifier_token22] = ACTIONS(1681), - [aux_sym_cmd_identifier_token23] = ACTIONS(1681), - [aux_sym_cmd_identifier_token24] = ACTIONS(1683), - [aux_sym_cmd_identifier_token25] = ACTIONS(1681), - [aux_sym_cmd_identifier_token26] = ACTIONS(1683), - [aux_sym_cmd_identifier_token27] = ACTIONS(1681), - [aux_sym_cmd_identifier_token28] = ACTIONS(1681), - [aux_sym_cmd_identifier_token29] = ACTIONS(1681), - [aux_sym_cmd_identifier_token30] = ACTIONS(1681), - [aux_sym_cmd_identifier_token31] = ACTIONS(1683), - [aux_sym_cmd_identifier_token32] = ACTIONS(1683), - [aux_sym_cmd_identifier_token33] = ACTIONS(1683), - [aux_sym_cmd_identifier_token34] = ACTIONS(1683), - [aux_sym_cmd_identifier_token35] = ACTIONS(1683), - [aux_sym_cmd_identifier_token36] = ACTIONS(1681), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = ACTIONS(1683), - [anon_sym_null] = ACTIONS(1683), - [aux_sym_cmd_identifier_token38] = ACTIONS(1681), - [aux_sym_cmd_identifier_token39] = ACTIONS(1683), - [aux_sym_cmd_identifier_token40] = ACTIONS(1683), - [sym__newline] = ACTIONS(1685), - [anon_sym_SEMI] = ACTIONS(1685), - [anon_sym_def] = ACTIONS(1681), - [anon_sym_export_DASHenv] = ACTIONS(1681), - [anon_sym_extern] = ACTIONS(1681), - [anon_sym_module] = ACTIONS(1681), - [anon_sym_use] = ACTIONS(1681), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1683), - [anon_sym_RPAREN] = ACTIONS(1271), - [anon_sym_DOLLAR] = ACTIONS(1681), - [anon_sym_error] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_break] = ACTIONS(1681), - [anon_sym_continue] = ACTIONS(1681), - [anon_sym_for] = ACTIONS(1681), - [anon_sym_loop] = ACTIONS(1681), - [anon_sym_while] = ACTIONS(1681), - [anon_sym_do] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1681), - [anon_sym_match] = ACTIONS(1681), - [aux_sym_ctrl_match_token1] = ACTIONS(1683), - [anon_sym_DOT_DOT] = ACTIONS(1681), - [anon_sym_try] = ACTIONS(1681), - [anon_sym_return] = ACTIONS(1681), - [anon_sym_source] = ACTIONS(1681), - [anon_sym_source_DASHenv] = ACTIONS(1681), - [anon_sym_register] = ACTIONS(1681), - [anon_sym_hide] = ACTIONS(1681), - [anon_sym_hide_DASHenv] = ACTIONS(1681), - [anon_sym_overlay] = ACTIONS(1681), - [anon_sym_where] = ACTIONS(1683), - [aux_sym_expr_unary_token1] = ACTIONS(1683), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1683), - [anon_sym_DOT_DOT_LT] = ACTIONS(1683), - [aux_sym__val_number_decimal_token1] = ACTIONS(1681), - [aux_sym__val_number_decimal_token2] = ACTIONS(1683), - [aux_sym__val_number_decimal_token3] = ACTIONS(1683), - [aux_sym__val_number_decimal_token4] = ACTIONS(1683), - [aux_sym__val_number_token1] = ACTIONS(1683), - [aux_sym__val_number_token2] = ACTIONS(1683), - [aux_sym__val_number_token3] = ACTIONS(1683), - [anon_sym_0b] = ACTIONS(1681), - [anon_sym_0o] = ACTIONS(1681), - [anon_sym_0x] = ACTIONS(1681), - [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), - [aux_sym_env_var_token1] = ACTIONS(1681), - [anon_sym_CARET] = ACTIONS(1683), + [aux_sym_shebang_repeat1] = STATE(256), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [anon_sym_null] = ACTIONS(1733), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1737), + [aux_sym_cmd_identifier_token40] = ACTIONS(1737), + [sym__newline] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_if] = ACTIONS(479), + [aux_sym_ctrl_match_token1] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1743), + [aux_sym__val_number_decimal_token2] = ACTIONS(1745), + [aux_sym__val_number_decimal_token3] = ACTIONS(1747), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [250] = { - [sym_cell_path] = STATE(487), - [sym_path] = STATE(420), [sym_comment] = STATE(250), - [aux_sym_cell_path_repeat1] = STATE(339), - [anon_sym_export] = ACTIONS(945), - [anon_sym_alias] = ACTIONS(945), - [anon_sym_let] = ACTIONS(945), - [anon_sym_let_DASHenv] = ACTIONS(945), - [anon_sym_mut] = ACTIONS(945), - [anon_sym_const] = ACTIONS(945), - [aux_sym_cmd_identifier_token1] = ACTIONS(945), - [aux_sym_cmd_identifier_token2] = ACTIONS(945), - [aux_sym_cmd_identifier_token3] = ACTIONS(945), - [aux_sym_cmd_identifier_token4] = ACTIONS(945), - [aux_sym_cmd_identifier_token5] = ACTIONS(945), - [aux_sym_cmd_identifier_token6] = ACTIONS(945), - [aux_sym_cmd_identifier_token7] = ACTIONS(945), - [aux_sym_cmd_identifier_token8] = ACTIONS(945), - [aux_sym_cmd_identifier_token9] = ACTIONS(945), - [aux_sym_cmd_identifier_token10] = ACTIONS(945), - [aux_sym_cmd_identifier_token11] = ACTIONS(945), - [aux_sym_cmd_identifier_token12] = ACTIONS(945), - [aux_sym_cmd_identifier_token13] = ACTIONS(945), - [aux_sym_cmd_identifier_token14] = ACTIONS(945), - [aux_sym_cmd_identifier_token15] = ACTIONS(945), - [aux_sym_cmd_identifier_token16] = ACTIONS(945), - [aux_sym_cmd_identifier_token17] = ACTIONS(945), - [aux_sym_cmd_identifier_token18] = ACTIONS(945), - [aux_sym_cmd_identifier_token19] = ACTIONS(945), - [aux_sym_cmd_identifier_token20] = ACTIONS(945), - [aux_sym_cmd_identifier_token21] = ACTIONS(945), - [aux_sym_cmd_identifier_token22] = ACTIONS(945), - [aux_sym_cmd_identifier_token23] = ACTIONS(945), - [aux_sym_cmd_identifier_token24] = ACTIONS(945), - [aux_sym_cmd_identifier_token25] = ACTIONS(945), - [aux_sym_cmd_identifier_token26] = ACTIONS(945), - [aux_sym_cmd_identifier_token27] = ACTIONS(945), - [aux_sym_cmd_identifier_token28] = ACTIONS(945), - [aux_sym_cmd_identifier_token29] = ACTIONS(945), - [aux_sym_cmd_identifier_token30] = ACTIONS(945), - [aux_sym_cmd_identifier_token31] = ACTIONS(945), - [aux_sym_cmd_identifier_token32] = ACTIONS(945), - [aux_sym_cmd_identifier_token33] = ACTIONS(945), - [aux_sym_cmd_identifier_token34] = ACTIONS(945), - [aux_sym_cmd_identifier_token35] = ACTIONS(945), - [aux_sym_cmd_identifier_token36] = ACTIONS(945), - [anon_sym_true] = ACTIONS(947), - [anon_sym_false] = ACTIONS(947), - [anon_sym_null] = ACTIONS(947), - [aux_sym_cmd_identifier_token38] = ACTIONS(945), - [aux_sym_cmd_identifier_token39] = ACTIONS(947), - [aux_sym_cmd_identifier_token40] = ACTIONS(947), - [anon_sym_def] = ACTIONS(945), - [anon_sym_export_DASHenv] = ACTIONS(945), - [anon_sym_extern] = ACTIONS(945), - [anon_sym_module] = ACTIONS(945), - [anon_sym_use] = ACTIONS(945), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_COMMA] = ACTIONS(947), - [anon_sym_DOLLAR] = ACTIONS(947), - [anon_sym_error] = ACTIONS(945), - [anon_sym_list] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_break] = ACTIONS(945), - [anon_sym_continue] = ACTIONS(945), - [anon_sym_for] = ACTIONS(945), - [anon_sym_in] = ACTIONS(945), - [anon_sym_loop] = ACTIONS(945), - [anon_sym_make] = ACTIONS(945), - [anon_sym_while] = ACTIONS(945), - [anon_sym_do] = ACTIONS(945), - [anon_sym_if] = ACTIONS(945), - [anon_sym_else] = ACTIONS(945), - [anon_sym_match] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(947), - [anon_sym_try] = ACTIONS(945), - [anon_sym_catch] = ACTIONS(945), - [anon_sym_return] = ACTIONS(945), - [anon_sym_source] = ACTIONS(945), - [anon_sym_source_DASHenv] = ACTIONS(945), - [anon_sym_register] = ACTIONS(945), - [anon_sym_hide] = ACTIONS(945), - [anon_sym_hide_DASHenv] = ACTIONS(945), - [anon_sym_overlay] = ACTIONS(945), - [anon_sym_new] = ACTIONS(945), - [anon_sym_as] = ACTIONS(945), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(947), - [anon_sym_DOT] = ACTIONS(1688), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(947), - [aux_sym__val_number_decimal_token1] = ACTIONS(945), - [aux_sym__val_number_decimal_token2] = ACTIONS(947), - [aux_sym__val_number_decimal_token3] = ACTIONS(947), - [aux_sym__val_number_decimal_token4] = ACTIONS(947), - [aux_sym__val_number_token1] = ACTIONS(947), - [aux_sym__val_number_token2] = ACTIONS(947), - [aux_sym__val_number_token3] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(947), - [sym__str_single_quotes] = ACTIONS(947), - [sym__str_back_ticks] = ACTIONS(947), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(947), - [aux_sym_record_entry_token1] = ACTIONS(947), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1643), + [anon_sym_alias] = ACTIONS(1643), + [anon_sym_let] = ACTIONS(1643), + [anon_sym_let_DASHenv] = ACTIONS(1643), + [anon_sym_mut] = ACTIONS(1643), + [anon_sym_const] = ACTIONS(1643), + [aux_sym_cmd_identifier_token1] = ACTIONS(1643), + [aux_sym_cmd_identifier_token2] = ACTIONS(1643), + [aux_sym_cmd_identifier_token3] = ACTIONS(1643), + [aux_sym_cmd_identifier_token4] = ACTIONS(1643), + [aux_sym_cmd_identifier_token5] = ACTIONS(1643), + [aux_sym_cmd_identifier_token6] = ACTIONS(1643), + [aux_sym_cmd_identifier_token7] = ACTIONS(1643), + [aux_sym_cmd_identifier_token8] = ACTIONS(1643), + [aux_sym_cmd_identifier_token9] = ACTIONS(1643), + [aux_sym_cmd_identifier_token10] = ACTIONS(1643), + [aux_sym_cmd_identifier_token11] = ACTIONS(1643), + [aux_sym_cmd_identifier_token12] = ACTIONS(1643), + [aux_sym_cmd_identifier_token13] = ACTIONS(1643), + [aux_sym_cmd_identifier_token14] = ACTIONS(1643), + [aux_sym_cmd_identifier_token15] = ACTIONS(1643), + [aux_sym_cmd_identifier_token16] = ACTIONS(1643), + [aux_sym_cmd_identifier_token17] = ACTIONS(1643), + [aux_sym_cmd_identifier_token18] = ACTIONS(1643), + [aux_sym_cmd_identifier_token19] = ACTIONS(1643), + [aux_sym_cmd_identifier_token20] = ACTIONS(1643), + [aux_sym_cmd_identifier_token21] = ACTIONS(1643), + [aux_sym_cmd_identifier_token22] = ACTIONS(1643), + [aux_sym_cmd_identifier_token23] = ACTIONS(1643), + [aux_sym_cmd_identifier_token24] = ACTIONS(1643), + [aux_sym_cmd_identifier_token25] = ACTIONS(1643), + [aux_sym_cmd_identifier_token26] = ACTIONS(1643), + [aux_sym_cmd_identifier_token27] = ACTIONS(1643), + [aux_sym_cmd_identifier_token28] = ACTIONS(1643), + [aux_sym_cmd_identifier_token29] = ACTIONS(1643), + [aux_sym_cmd_identifier_token30] = ACTIONS(1643), + [aux_sym_cmd_identifier_token31] = ACTIONS(1643), + [aux_sym_cmd_identifier_token32] = ACTIONS(1643), + [aux_sym_cmd_identifier_token33] = ACTIONS(1643), + [aux_sym_cmd_identifier_token34] = ACTIONS(1643), + [aux_sym_cmd_identifier_token35] = ACTIONS(1643), + [aux_sym_cmd_identifier_token36] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_null] = ACTIONS(1643), + [aux_sym_cmd_identifier_token38] = ACTIONS(1643), + [aux_sym_cmd_identifier_token39] = ACTIONS(1643), + [aux_sym_cmd_identifier_token40] = ACTIONS(1643), + [anon_sym_def] = ACTIONS(1643), + [anon_sym_export_DASHenv] = ACTIONS(1643), + [anon_sym_extern] = ACTIONS(1643), + [anon_sym_module] = ACTIONS(1643), + [anon_sym_use] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(1643), + [anon_sym_error] = ACTIONS(1643), + [anon_sym_list] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_break] = ACTIONS(1643), + [anon_sym_continue] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_loop] = ACTIONS(1643), + [anon_sym_make] = ACTIONS(1643), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_do] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_else] = ACTIONS(1643), + [anon_sym_match] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), + [anon_sym_try] = ACTIONS(1643), + [anon_sym_catch] = ACTIONS(1643), + [anon_sym_return] = ACTIONS(1643), + [anon_sym_source] = ACTIONS(1643), + [anon_sym_source_DASHenv] = ACTIONS(1643), + [anon_sym_register] = ACTIONS(1643), + [anon_sym_hide] = ACTIONS(1643), + [anon_sym_hide_DASHenv] = ACTIONS(1643), + [anon_sym_overlay] = ACTIONS(1643), + [anon_sym_new] = ACTIONS(1643), + [anon_sym_as] = ACTIONS(1643), + [anon_sym_LPAREN2] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1643), + [anon_sym_DOT_DOT2] = ACTIONS(1643), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1643), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1643), + [aux_sym__val_number_decimal_token3] = ACTIONS(1643), + [aux_sym__val_number_decimal_token4] = ACTIONS(1643), + [aux_sym__val_number_token1] = ACTIONS(1643), + [aux_sym__val_number_token2] = ACTIONS(1643), + [aux_sym__val_number_token3] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1643), + [sym__str_single_quotes] = ACTIONS(1643), + [sym__str_back_ticks] = ACTIONS(1643), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1643), + [sym__entry_separator] = ACTIONS(1645), + [anon_sym_PLUS] = ACTIONS(1643), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1643), + [anon_sym_POUND] = ACTIONS(3), }, [251] = { [sym_comment] = STATE(251), - [anon_sym_export] = ACTIONS(1690), - [anon_sym_alias] = ACTIONS(1690), - [anon_sym_let] = ACTIONS(1690), - [anon_sym_let_DASHenv] = ACTIONS(1690), - [anon_sym_mut] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1690), - [aux_sym_cmd_identifier_token1] = ACTIONS(1690), - [aux_sym_cmd_identifier_token2] = ACTIONS(1690), - [aux_sym_cmd_identifier_token3] = ACTIONS(1690), - [aux_sym_cmd_identifier_token4] = ACTIONS(1690), - [aux_sym_cmd_identifier_token5] = ACTIONS(1690), - [aux_sym_cmd_identifier_token6] = ACTIONS(1690), - [aux_sym_cmd_identifier_token7] = ACTIONS(1690), - [aux_sym_cmd_identifier_token8] = ACTIONS(1690), - [aux_sym_cmd_identifier_token9] = ACTIONS(1690), - [aux_sym_cmd_identifier_token10] = ACTIONS(1690), - [aux_sym_cmd_identifier_token11] = ACTIONS(1690), - [aux_sym_cmd_identifier_token12] = ACTIONS(1690), - [aux_sym_cmd_identifier_token13] = ACTIONS(1690), - [aux_sym_cmd_identifier_token14] = ACTIONS(1690), - [aux_sym_cmd_identifier_token15] = ACTIONS(1690), - [aux_sym_cmd_identifier_token16] = ACTIONS(1690), - [aux_sym_cmd_identifier_token17] = ACTIONS(1690), - [aux_sym_cmd_identifier_token18] = ACTIONS(1690), - [aux_sym_cmd_identifier_token19] = ACTIONS(1690), - [aux_sym_cmd_identifier_token20] = ACTIONS(1690), - [aux_sym_cmd_identifier_token21] = ACTIONS(1690), - [aux_sym_cmd_identifier_token22] = ACTIONS(1690), - [aux_sym_cmd_identifier_token23] = ACTIONS(1690), - [aux_sym_cmd_identifier_token24] = ACTIONS(1690), - [aux_sym_cmd_identifier_token25] = ACTIONS(1690), - [aux_sym_cmd_identifier_token26] = ACTIONS(1690), - [aux_sym_cmd_identifier_token27] = ACTIONS(1690), - [aux_sym_cmd_identifier_token28] = ACTIONS(1690), - [aux_sym_cmd_identifier_token29] = ACTIONS(1690), - [aux_sym_cmd_identifier_token30] = ACTIONS(1690), - [aux_sym_cmd_identifier_token31] = ACTIONS(1690), - [aux_sym_cmd_identifier_token32] = ACTIONS(1690), - [aux_sym_cmd_identifier_token33] = ACTIONS(1690), - [aux_sym_cmd_identifier_token34] = ACTIONS(1690), - [aux_sym_cmd_identifier_token35] = ACTIONS(1690), - [aux_sym_cmd_identifier_token36] = ACTIONS(1690), - [anon_sym_true] = ACTIONS(1690), - [anon_sym_false] = ACTIONS(1690), - [anon_sym_null] = ACTIONS(1690), - [aux_sym_cmd_identifier_token38] = ACTIONS(1690), - [aux_sym_cmd_identifier_token39] = ACTIONS(1690), - [aux_sym_cmd_identifier_token40] = ACTIONS(1690), - [anon_sym_def] = ACTIONS(1690), - [anon_sym_export_DASHenv] = ACTIONS(1690), - [anon_sym_extern] = ACTIONS(1690), - [anon_sym_module] = ACTIONS(1690), - [anon_sym_use] = ACTIONS(1690), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_DOLLAR] = ACTIONS(1690), - [anon_sym_error] = ACTIONS(1690), - [anon_sym_list] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1690), - [anon_sym_break] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(1690), - [anon_sym_for] = ACTIONS(1690), - [anon_sym_in] = ACTIONS(1690), - [anon_sym_loop] = ACTIONS(1690), - [anon_sym_make] = ACTIONS(1690), - [anon_sym_while] = ACTIONS(1690), - [anon_sym_do] = ACTIONS(1690), - [anon_sym_if] = ACTIONS(1690), - [anon_sym_else] = ACTIONS(1690), - [anon_sym_match] = ACTIONS(1690), - [anon_sym_RBRACE] = ACTIONS(1690), - [anon_sym_try] = ACTIONS(1690), - [anon_sym_catch] = ACTIONS(1690), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_source] = ACTIONS(1690), - [anon_sym_source_DASHenv] = ACTIONS(1690), - [anon_sym_register] = ACTIONS(1690), - [anon_sym_hide] = ACTIONS(1690), - [anon_sym_hide_DASHenv] = ACTIONS(1690), - [anon_sym_overlay] = ACTIONS(1690), - [anon_sym_new] = ACTIONS(1690), - [anon_sym_as] = ACTIONS(1690), - [anon_sym_LPAREN2] = ACTIONS(1692), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1690), - [anon_sym_DOT_DOT2] = ACTIONS(1694), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1696), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1696), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1690), - [aux_sym__val_number_decimal_token1] = ACTIONS(1690), - [aux_sym__val_number_decimal_token2] = ACTIONS(1690), - [aux_sym__val_number_decimal_token3] = ACTIONS(1690), - [aux_sym__val_number_decimal_token4] = ACTIONS(1690), - [aux_sym__val_number_token1] = ACTIONS(1690), - [aux_sym__val_number_token2] = ACTIONS(1690), - [aux_sym__val_number_token3] = ACTIONS(1690), - [anon_sym_DQUOTE] = ACTIONS(1690), - [sym__str_single_quotes] = ACTIONS(1690), - [sym__str_back_ticks] = ACTIONS(1690), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1690), - [sym__entry_separator] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1690), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1429), + [anon_sym_export] = ACTIONS(1631), + [anon_sym_alias] = ACTIONS(1631), + [anon_sym_let] = ACTIONS(1631), + [anon_sym_let_DASHenv] = ACTIONS(1631), + [anon_sym_mut] = ACTIONS(1631), + [anon_sym_const] = ACTIONS(1631), + [aux_sym_cmd_identifier_token1] = ACTIONS(1631), + [aux_sym_cmd_identifier_token2] = ACTIONS(1631), + [aux_sym_cmd_identifier_token3] = ACTIONS(1631), + [aux_sym_cmd_identifier_token4] = ACTIONS(1631), + [aux_sym_cmd_identifier_token5] = ACTIONS(1631), + [aux_sym_cmd_identifier_token6] = ACTIONS(1631), + [aux_sym_cmd_identifier_token7] = ACTIONS(1631), + [aux_sym_cmd_identifier_token8] = ACTIONS(1631), + [aux_sym_cmd_identifier_token9] = ACTIONS(1631), + [aux_sym_cmd_identifier_token10] = ACTIONS(1631), + [aux_sym_cmd_identifier_token11] = ACTIONS(1631), + [aux_sym_cmd_identifier_token12] = ACTIONS(1631), + [aux_sym_cmd_identifier_token13] = ACTIONS(1631), + [aux_sym_cmd_identifier_token14] = ACTIONS(1631), + [aux_sym_cmd_identifier_token15] = ACTIONS(1631), + [aux_sym_cmd_identifier_token16] = ACTIONS(1631), + [aux_sym_cmd_identifier_token17] = ACTIONS(1631), + [aux_sym_cmd_identifier_token18] = ACTIONS(1631), + [aux_sym_cmd_identifier_token19] = ACTIONS(1631), + [aux_sym_cmd_identifier_token20] = ACTIONS(1631), + [aux_sym_cmd_identifier_token21] = ACTIONS(1631), + [aux_sym_cmd_identifier_token22] = ACTIONS(1631), + [aux_sym_cmd_identifier_token23] = ACTIONS(1631), + [aux_sym_cmd_identifier_token24] = ACTIONS(1631), + [aux_sym_cmd_identifier_token25] = ACTIONS(1631), + [aux_sym_cmd_identifier_token26] = ACTIONS(1631), + [aux_sym_cmd_identifier_token27] = ACTIONS(1631), + [aux_sym_cmd_identifier_token28] = ACTIONS(1631), + [aux_sym_cmd_identifier_token29] = ACTIONS(1631), + [aux_sym_cmd_identifier_token30] = ACTIONS(1631), + [aux_sym_cmd_identifier_token31] = ACTIONS(1631), + [aux_sym_cmd_identifier_token32] = ACTIONS(1631), + [aux_sym_cmd_identifier_token33] = ACTIONS(1631), + [aux_sym_cmd_identifier_token34] = ACTIONS(1631), + [aux_sym_cmd_identifier_token35] = ACTIONS(1631), + [aux_sym_cmd_identifier_token36] = ACTIONS(1631), + [anon_sym_true] = ACTIONS(1631), + [anon_sym_false] = ACTIONS(1631), + [anon_sym_null] = ACTIONS(1631), + [aux_sym_cmd_identifier_token38] = ACTIONS(1631), + [aux_sym_cmd_identifier_token39] = ACTIONS(1631), + [aux_sym_cmd_identifier_token40] = ACTIONS(1631), + [anon_sym_def] = ACTIONS(1631), + [anon_sym_export_DASHenv] = ACTIONS(1631), + [anon_sym_extern] = ACTIONS(1631), + [anon_sym_module] = ACTIONS(1631), + [anon_sym_use] = ACTIONS(1631), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_DOLLAR] = ACTIONS(1631), + [anon_sym_error] = ACTIONS(1631), + [anon_sym_list] = ACTIONS(1631), + [anon_sym_DASH] = ACTIONS(1631), + [anon_sym_break] = ACTIONS(1631), + [anon_sym_continue] = ACTIONS(1631), + [anon_sym_for] = ACTIONS(1631), + [anon_sym_in] = ACTIONS(1631), + [anon_sym_loop] = ACTIONS(1631), + [anon_sym_make] = ACTIONS(1631), + [anon_sym_while] = ACTIONS(1631), + [anon_sym_do] = ACTIONS(1631), + [anon_sym_if] = ACTIONS(1631), + [anon_sym_else] = ACTIONS(1631), + [anon_sym_match] = ACTIONS(1631), + [anon_sym_RBRACE] = ACTIONS(1631), + [anon_sym_try] = ACTIONS(1631), + [anon_sym_catch] = ACTIONS(1631), + [anon_sym_return] = ACTIONS(1631), + [anon_sym_source] = ACTIONS(1631), + [anon_sym_source_DASHenv] = ACTIONS(1631), + [anon_sym_register] = ACTIONS(1631), + [anon_sym_hide] = ACTIONS(1631), + [anon_sym_hide_DASHenv] = ACTIONS(1631), + [anon_sym_overlay] = ACTIONS(1631), + [anon_sym_new] = ACTIONS(1631), + [anon_sym_as] = ACTIONS(1631), + [anon_sym_LPAREN2] = ACTIONS(1633), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1631), + [anon_sym_DOT_DOT2] = ACTIONS(1631), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1633), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1633), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1631), + [aux_sym__val_number_decimal_token1] = ACTIONS(1631), + [aux_sym__val_number_decimal_token2] = ACTIONS(1631), + [aux_sym__val_number_decimal_token3] = ACTIONS(1631), + [aux_sym__val_number_decimal_token4] = ACTIONS(1631), + [aux_sym__val_number_token1] = ACTIONS(1631), + [aux_sym__val_number_token2] = ACTIONS(1631), + [aux_sym__val_number_token3] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [sym__str_single_quotes] = ACTIONS(1631), + [sym__str_back_ticks] = ACTIONS(1631), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1631), + [sym__entry_separator] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1631), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1631), [anon_sym_POUND] = ACTIONS(3), }, [252] = { - [sym_path] = STATE(396), [sym_comment] = STATE(252), - [aux_sym_cell_path_repeat1] = STATE(253), - [anon_sym_export] = ACTIONS(951), - [anon_sym_alias] = ACTIONS(951), - [anon_sym_let] = ACTIONS(951), - [anon_sym_let_DASHenv] = ACTIONS(951), - [anon_sym_mut] = ACTIONS(951), - [anon_sym_const] = ACTIONS(951), - [aux_sym_cmd_identifier_token1] = ACTIONS(951), - [aux_sym_cmd_identifier_token2] = ACTIONS(951), - [aux_sym_cmd_identifier_token3] = ACTIONS(951), - [aux_sym_cmd_identifier_token4] = ACTIONS(951), - [aux_sym_cmd_identifier_token5] = ACTIONS(951), - [aux_sym_cmd_identifier_token6] = ACTIONS(951), - [aux_sym_cmd_identifier_token7] = ACTIONS(951), - [aux_sym_cmd_identifier_token8] = ACTIONS(951), - [aux_sym_cmd_identifier_token9] = ACTIONS(951), - [aux_sym_cmd_identifier_token10] = ACTIONS(951), - [aux_sym_cmd_identifier_token11] = ACTIONS(951), - [aux_sym_cmd_identifier_token12] = ACTIONS(951), - [aux_sym_cmd_identifier_token13] = ACTIONS(951), - [aux_sym_cmd_identifier_token14] = ACTIONS(951), - [aux_sym_cmd_identifier_token15] = ACTIONS(951), - [aux_sym_cmd_identifier_token16] = ACTIONS(951), - [aux_sym_cmd_identifier_token17] = ACTIONS(951), - [aux_sym_cmd_identifier_token18] = ACTIONS(951), - [aux_sym_cmd_identifier_token19] = ACTIONS(951), - [aux_sym_cmd_identifier_token20] = ACTIONS(951), - [aux_sym_cmd_identifier_token21] = ACTIONS(951), - [aux_sym_cmd_identifier_token22] = ACTIONS(951), - [aux_sym_cmd_identifier_token23] = ACTIONS(951), - [aux_sym_cmd_identifier_token24] = ACTIONS(951), - [aux_sym_cmd_identifier_token25] = ACTIONS(951), - [aux_sym_cmd_identifier_token26] = ACTIONS(951), - [aux_sym_cmd_identifier_token27] = ACTIONS(951), - [aux_sym_cmd_identifier_token28] = ACTIONS(951), - [aux_sym_cmd_identifier_token29] = ACTIONS(951), - [aux_sym_cmd_identifier_token30] = ACTIONS(951), - [aux_sym_cmd_identifier_token31] = ACTIONS(951), - [aux_sym_cmd_identifier_token32] = ACTIONS(951), - [aux_sym_cmd_identifier_token33] = ACTIONS(951), - [aux_sym_cmd_identifier_token34] = ACTIONS(951), - [aux_sym_cmd_identifier_token35] = ACTIONS(951), - [aux_sym_cmd_identifier_token36] = ACTIONS(951), - [anon_sym_true] = ACTIONS(953), - [anon_sym_false] = ACTIONS(953), - [anon_sym_null] = ACTIONS(953), - [aux_sym_cmd_identifier_token38] = ACTIONS(951), - [aux_sym_cmd_identifier_token39] = ACTIONS(953), - [aux_sym_cmd_identifier_token40] = ACTIONS(953), - [anon_sym_def] = ACTIONS(951), - [anon_sym_export_DASHenv] = ACTIONS(951), - [anon_sym_extern] = ACTIONS(951), - [anon_sym_module] = ACTIONS(951), - [anon_sym_use] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_DOLLAR] = ACTIONS(953), - [anon_sym_error] = ACTIONS(951), - [anon_sym_list] = ACTIONS(951), - [anon_sym_DASH] = ACTIONS(951), - [anon_sym_break] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(951), - [anon_sym_for] = ACTIONS(951), - [anon_sym_in] = ACTIONS(951), - [anon_sym_loop] = ACTIONS(951), - [anon_sym_make] = ACTIONS(951), - [anon_sym_while] = ACTIONS(951), - [anon_sym_do] = ACTIONS(951), - [anon_sym_if] = ACTIONS(951), - [anon_sym_else] = ACTIONS(951), - [anon_sym_match] = ACTIONS(951), - [anon_sym_RBRACE] = ACTIONS(953), - [anon_sym_try] = ACTIONS(951), - [anon_sym_catch] = ACTIONS(951), - [anon_sym_return] = ACTIONS(951), - [anon_sym_source] = ACTIONS(951), - [anon_sym_source_DASHenv] = ACTIONS(951), - [anon_sym_register] = ACTIONS(951), - [anon_sym_hide] = ACTIONS(951), - [anon_sym_hide_DASHenv] = ACTIONS(951), - [anon_sym_overlay] = ACTIONS(951), - [anon_sym_new] = ACTIONS(951), - [anon_sym_as] = ACTIONS(951), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(953), - [anon_sym_DOT_DOT2] = ACTIONS(951), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(953), - [anon_sym_DOT_DOT_LT2] = ACTIONS(953), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(953), - [aux_sym__val_number_decimal_token1] = ACTIONS(951), - [aux_sym__val_number_decimal_token2] = ACTIONS(953), - [aux_sym__val_number_decimal_token3] = ACTIONS(953), - [aux_sym__val_number_decimal_token4] = ACTIONS(953), - [aux_sym__val_number_token1] = ACTIONS(953), - [aux_sym__val_number_token2] = ACTIONS(953), - [aux_sym__val_number_token3] = ACTIONS(953), - [anon_sym_DQUOTE] = ACTIONS(953), - [sym__str_single_quotes] = ACTIONS(953), - [sym__str_back_ticks] = ACTIONS(953), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(951), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1705), + [anon_sym_alias] = ACTIONS(1705), + [anon_sym_let] = ACTIONS(1705), + [anon_sym_let_DASHenv] = ACTIONS(1705), + [anon_sym_mut] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [aux_sym_cmd_identifier_token1] = ACTIONS(1705), + [aux_sym_cmd_identifier_token2] = ACTIONS(1705), + [aux_sym_cmd_identifier_token3] = ACTIONS(1705), + [aux_sym_cmd_identifier_token4] = ACTIONS(1705), + [aux_sym_cmd_identifier_token5] = ACTIONS(1705), + [aux_sym_cmd_identifier_token6] = ACTIONS(1705), + [aux_sym_cmd_identifier_token7] = ACTIONS(1705), + [aux_sym_cmd_identifier_token8] = ACTIONS(1705), + [aux_sym_cmd_identifier_token9] = ACTIONS(1705), + [aux_sym_cmd_identifier_token10] = ACTIONS(1705), + [aux_sym_cmd_identifier_token11] = ACTIONS(1705), + [aux_sym_cmd_identifier_token12] = ACTIONS(1705), + [aux_sym_cmd_identifier_token13] = ACTIONS(1705), + [aux_sym_cmd_identifier_token14] = ACTIONS(1705), + [aux_sym_cmd_identifier_token15] = ACTIONS(1705), + [aux_sym_cmd_identifier_token16] = ACTIONS(1705), + [aux_sym_cmd_identifier_token17] = ACTIONS(1705), + [aux_sym_cmd_identifier_token18] = ACTIONS(1705), + [aux_sym_cmd_identifier_token19] = ACTIONS(1705), + [aux_sym_cmd_identifier_token20] = ACTIONS(1705), + [aux_sym_cmd_identifier_token21] = ACTIONS(1705), + [aux_sym_cmd_identifier_token22] = ACTIONS(1705), + [aux_sym_cmd_identifier_token23] = ACTIONS(1705), + [aux_sym_cmd_identifier_token24] = ACTIONS(1705), + [aux_sym_cmd_identifier_token25] = ACTIONS(1705), + [aux_sym_cmd_identifier_token26] = ACTIONS(1705), + [aux_sym_cmd_identifier_token27] = ACTIONS(1705), + [aux_sym_cmd_identifier_token28] = ACTIONS(1705), + [aux_sym_cmd_identifier_token29] = ACTIONS(1705), + [aux_sym_cmd_identifier_token30] = ACTIONS(1705), + [aux_sym_cmd_identifier_token31] = ACTIONS(1705), + [aux_sym_cmd_identifier_token32] = ACTIONS(1705), + [aux_sym_cmd_identifier_token33] = ACTIONS(1705), + [aux_sym_cmd_identifier_token34] = ACTIONS(1705), + [aux_sym_cmd_identifier_token35] = ACTIONS(1705), + [aux_sym_cmd_identifier_token36] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1705), + [anon_sym_false] = ACTIONS(1705), + [anon_sym_null] = ACTIONS(1705), + [aux_sym_cmd_identifier_token38] = ACTIONS(1705), + [aux_sym_cmd_identifier_token39] = ACTIONS(1705), + [aux_sym_cmd_identifier_token40] = ACTIONS(1705), + [anon_sym_def] = ACTIONS(1705), + [anon_sym_export_DASHenv] = ACTIONS(1705), + [anon_sym_extern] = ACTIONS(1705), + [anon_sym_module] = ACTIONS(1705), + [anon_sym_use] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1705), + [anon_sym_error] = ACTIONS(1705), + [anon_sym_list] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_break] = ACTIONS(1705), + [anon_sym_continue] = ACTIONS(1705), + [anon_sym_for] = ACTIONS(1705), + [anon_sym_in] = ACTIONS(1705), + [anon_sym_loop] = ACTIONS(1705), + [anon_sym_make] = ACTIONS(1705), + [anon_sym_while] = ACTIONS(1705), + [anon_sym_do] = ACTIONS(1705), + [anon_sym_if] = ACTIONS(1705), + [anon_sym_else] = ACTIONS(1705), + [anon_sym_match] = ACTIONS(1705), + [anon_sym_RBRACE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1705), + [anon_sym_catch] = ACTIONS(1705), + [anon_sym_return] = ACTIONS(1705), + [anon_sym_source] = ACTIONS(1705), + [anon_sym_source_DASHenv] = ACTIONS(1705), + [anon_sym_register] = ACTIONS(1705), + [anon_sym_hide] = ACTIONS(1705), + [anon_sym_hide_DASHenv] = ACTIONS(1705), + [anon_sym_overlay] = ACTIONS(1705), + [anon_sym_new] = ACTIONS(1705), + [anon_sym_as] = ACTIONS(1705), + [anon_sym_LPAREN2] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1705), + [anon_sym_DOT_DOT2] = ACTIONS(1705), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1707), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1705), + [aux_sym__val_number_decimal_token1] = ACTIONS(1705), + [aux_sym__val_number_decimal_token2] = ACTIONS(1705), + [aux_sym__val_number_decimal_token3] = ACTIONS(1705), + [aux_sym__val_number_decimal_token4] = ACTIONS(1705), + [aux_sym__val_number_token1] = ACTIONS(1705), + [aux_sym__val_number_token2] = ACTIONS(1705), + [aux_sym__val_number_token3] = ACTIONS(1705), + [anon_sym_DQUOTE] = ACTIONS(1705), + [sym__str_single_quotes] = ACTIONS(1705), + [sym__str_back_ticks] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1705), + [sym__entry_separator] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1705), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1705), + [anon_sym_POUND] = ACTIONS(3), }, [253] = { - [sym_path] = STATE(396), [sym_comment] = STATE(253), - [aux_sym_cell_path_repeat1] = STATE(253), - [anon_sym_export] = ACTIONS(955), - [anon_sym_alias] = ACTIONS(955), - [anon_sym_let] = ACTIONS(955), - [anon_sym_let_DASHenv] = ACTIONS(955), - [anon_sym_mut] = ACTIONS(955), - [anon_sym_const] = ACTIONS(955), - [aux_sym_cmd_identifier_token1] = ACTIONS(955), - [aux_sym_cmd_identifier_token2] = ACTIONS(955), - [aux_sym_cmd_identifier_token3] = ACTIONS(955), - [aux_sym_cmd_identifier_token4] = ACTIONS(955), - [aux_sym_cmd_identifier_token5] = ACTIONS(955), - [aux_sym_cmd_identifier_token6] = ACTIONS(955), - [aux_sym_cmd_identifier_token7] = ACTIONS(955), - [aux_sym_cmd_identifier_token8] = ACTIONS(955), - [aux_sym_cmd_identifier_token9] = ACTIONS(955), - [aux_sym_cmd_identifier_token10] = ACTIONS(955), - [aux_sym_cmd_identifier_token11] = ACTIONS(955), - [aux_sym_cmd_identifier_token12] = ACTIONS(955), - [aux_sym_cmd_identifier_token13] = ACTIONS(955), - [aux_sym_cmd_identifier_token14] = ACTIONS(955), - [aux_sym_cmd_identifier_token15] = ACTIONS(955), - [aux_sym_cmd_identifier_token16] = ACTIONS(955), - [aux_sym_cmd_identifier_token17] = ACTIONS(955), - [aux_sym_cmd_identifier_token18] = ACTIONS(955), - [aux_sym_cmd_identifier_token19] = ACTIONS(955), - [aux_sym_cmd_identifier_token20] = ACTIONS(955), - [aux_sym_cmd_identifier_token21] = ACTIONS(955), - [aux_sym_cmd_identifier_token22] = ACTIONS(955), - [aux_sym_cmd_identifier_token23] = ACTIONS(955), - [aux_sym_cmd_identifier_token24] = ACTIONS(955), - [aux_sym_cmd_identifier_token25] = ACTIONS(955), - [aux_sym_cmd_identifier_token26] = ACTIONS(955), - [aux_sym_cmd_identifier_token27] = ACTIONS(955), - [aux_sym_cmd_identifier_token28] = ACTIONS(955), - [aux_sym_cmd_identifier_token29] = ACTIONS(955), - [aux_sym_cmd_identifier_token30] = ACTIONS(955), - [aux_sym_cmd_identifier_token31] = ACTIONS(955), - [aux_sym_cmd_identifier_token32] = ACTIONS(955), - [aux_sym_cmd_identifier_token33] = ACTIONS(955), - [aux_sym_cmd_identifier_token34] = ACTIONS(955), - [aux_sym_cmd_identifier_token35] = ACTIONS(955), - [aux_sym_cmd_identifier_token36] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_null] = ACTIONS(957), - [aux_sym_cmd_identifier_token38] = ACTIONS(955), - [aux_sym_cmd_identifier_token39] = ACTIONS(957), - [aux_sym_cmd_identifier_token40] = ACTIONS(957), - [anon_sym_def] = ACTIONS(955), - [anon_sym_export_DASHenv] = ACTIONS(955), - [anon_sym_extern] = ACTIONS(955), - [anon_sym_module] = ACTIONS(955), - [anon_sym_use] = ACTIONS(955), - [anon_sym_LPAREN] = ACTIONS(957), - [anon_sym_DOLLAR] = ACTIONS(957), - [anon_sym_error] = ACTIONS(955), - [anon_sym_list] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(955), - [anon_sym_break] = ACTIONS(955), - [anon_sym_continue] = ACTIONS(955), - [anon_sym_for] = ACTIONS(955), - [anon_sym_in] = ACTIONS(955), - [anon_sym_loop] = ACTIONS(955), - [anon_sym_make] = ACTIONS(955), - [anon_sym_while] = ACTIONS(955), - [anon_sym_do] = ACTIONS(955), - [anon_sym_if] = ACTIONS(955), - [anon_sym_else] = ACTIONS(955), - [anon_sym_match] = ACTIONS(955), - [anon_sym_RBRACE] = ACTIONS(957), - [anon_sym_try] = ACTIONS(955), - [anon_sym_catch] = ACTIONS(955), - [anon_sym_return] = ACTIONS(955), - [anon_sym_source] = ACTIONS(955), - [anon_sym_source_DASHenv] = ACTIONS(955), - [anon_sym_register] = ACTIONS(955), - [anon_sym_hide] = ACTIONS(955), - [anon_sym_hide_DASHenv] = ACTIONS(955), - [anon_sym_overlay] = ACTIONS(955), - [anon_sym_new] = ACTIONS(955), - [anon_sym_as] = ACTIONS(955), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(957), - [anon_sym_DOT_DOT2] = ACTIONS(955), - [anon_sym_DOT] = ACTIONS(1700), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(957), - [anon_sym_DOT_DOT_LT2] = ACTIONS(957), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(957), - [aux_sym__val_number_decimal_token1] = ACTIONS(955), - [aux_sym__val_number_decimal_token2] = ACTIONS(957), - [aux_sym__val_number_decimal_token3] = ACTIONS(957), - [aux_sym__val_number_decimal_token4] = ACTIONS(957), - [aux_sym__val_number_token1] = ACTIONS(957), - [aux_sym__val_number_token2] = ACTIONS(957), - [aux_sym__val_number_token3] = ACTIONS(957), - [anon_sym_DQUOTE] = ACTIONS(957), - [sym__str_single_quotes] = ACTIONS(957), - [sym__str_back_ticks] = ACTIONS(957), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(957), - [anon_sym_PLUS] = ACTIONS(955), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1755), + [anon_sym_alias] = ACTIONS(1755), + [anon_sym_let] = ACTIONS(1755), + [anon_sym_let_DASHenv] = ACTIONS(1755), + [anon_sym_mut] = ACTIONS(1755), + [anon_sym_const] = ACTIONS(1755), + [aux_sym_cmd_identifier_token1] = ACTIONS(1755), + [aux_sym_cmd_identifier_token2] = ACTIONS(1755), + [aux_sym_cmd_identifier_token3] = ACTIONS(1755), + [aux_sym_cmd_identifier_token4] = ACTIONS(1755), + [aux_sym_cmd_identifier_token5] = ACTIONS(1755), + [aux_sym_cmd_identifier_token6] = ACTIONS(1755), + [aux_sym_cmd_identifier_token7] = ACTIONS(1755), + [aux_sym_cmd_identifier_token8] = ACTIONS(1755), + [aux_sym_cmd_identifier_token9] = ACTIONS(1755), + [aux_sym_cmd_identifier_token10] = ACTIONS(1755), + [aux_sym_cmd_identifier_token11] = ACTIONS(1755), + [aux_sym_cmd_identifier_token12] = ACTIONS(1755), + [aux_sym_cmd_identifier_token13] = ACTIONS(1755), + [aux_sym_cmd_identifier_token14] = ACTIONS(1755), + [aux_sym_cmd_identifier_token15] = ACTIONS(1755), + [aux_sym_cmd_identifier_token16] = ACTIONS(1755), + [aux_sym_cmd_identifier_token17] = ACTIONS(1755), + [aux_sym_cmd_identifier_token18] = ACTIONS(1755), + [aux_sym_cmd_identifier_token19] = ACTIONS(1755), + [aux_sym_cmd_identifier_token20] = ACTIONS(1755), + [aux_sym_cmd_identifier_token21] = ACTIONS(1755), + [aux_sym_cmd_identifier_token22] = ACTIONS(1755), + [aux_sym_cmd_identifier_token23] = ACTIONS(1755), + [aux_sym_cmd_identifier_token24] = ACTIONS(1755), + [aux_sym_cmd_identifier_token25] = ACTIONS(1755), + [aux_sym_cmd_identifier_token26] = ACTIONS(1755), + [aux_sym_cmd_identifier_token27] = ACTIONS(1755), + [aux_sym_cmd_identifier_token28] = ACTIONS(1755), + [aux_sym_cmd_identifier_token29] = ACTIONS(1755), + [aux_sym_cmd_identifier_token30] = ACTIONS(1755), + [aux_sym_cmd_identifier_token31] = ACTIONS(1755), + [aux_sym_cmd_identifier_token32] = ACTIONS(1755), + [aux_sym_cmd_identifier_token33] = ACTIONS(1755), + [aux_sym_cmd_identifier_token34] = ACTIONS(1755), + [aux_sym_cmd_identifier_token35] = ACTIONS(1755), + [aux_sym_cmd_identifier_token36] = ACTIONS(1755), + [anon_sym_true] = ACTIONS(1755), + [anon_sym_false] = ACTIONS(1755), + [anon_sym_null] = ACTIONS(1755), + [aux_sym_cmd_identifier_token38] = ACTIONS(1755), + [aux_sym_cmd_identifier_token39] = ACTIONS(1755), + [aux_sym_cmd_identifier_token40] = ACTIONS(1755), + [anon_sym_def] = ACTIONS(1755), + [anon_sym_export_DASHenv] = ACTIONS(1755), + [anon_sym_extern] = ACTIONS(1755), + [anon_sym_module] = ACTIONS(1755), + [anon_sym_use] = ACTIONS(1755), + [anon_sym_LPAREN] = ACTIONS(1755), + [anon_sym_DOLLAR] = ACTIONS(1755), + [anon_sym_error] = ACTIONS(1755), + [anon_sym_list] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_in] = ACTIONS(1755), + [anon_sym_loop] = ACTIONS(1755), + [anon_sym_make] = ACTIONS(1755), + [anon_sym_while] = ACTIONS(1755), + [anon_sym_do] = ACTIONS(1755), + [anon_sym_if] = ACTIONS(1755), + [anon_sym_else] = ACTIONS(1755), + [anon_sym_match] = ACTIONS(1755), + [anon_sym_RBRACE] = ACTIONS(1755), + [anon_sym_try] = ACTIONS(1755), + [anon_sym_catch] = ACTIONS(1755), + [anon_sym_return] = ACTIONS(1755), + [anon_sym_source] = ACTIONS(1755), + [anon_sym_source_DASHenv] = ACTIONS(1755), + [anon_sym_register] = ACTIONS(1755), + [anon_sym_hide] = ACTIONS(1755), + [anon_sym_hide_DASHenv] = ACTIONS(1755), + [anon_sym_overlay] = ACTIONS(1755), + [anon_sym_new] = ACTIONS(1755), + [anon_sym_as] = ACTIONS(1755), + [anon_sym_LPAREN2] = ACTIONS(1757), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1755), + [anon_sym_DOT_DOT2] = ACTIONS(1755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1755), + [aux_sym__val_number_decimal_token1] = ACTIONS(1755), + [aux_sym__val_number_decimal_token2] = ACTIONS(1755), + [aux_sym__val_number_decimal_token3] = ACTIONS(1755), + [aux_sym__val_number_decimal_token4] = ACTIONS(1755), + [aux_sym__val_number_token1] = ACTIONS(1755), + [aux_sym__val_number_token2] = ACTIONS(1755), + [aux_sym__val_number_token3] = ACTIONS(1755), + [anon_sym_DQUOTE] = ACTIONS(1755), + [sym__str_single_quotes] = ACTIONS(1755), + [sym__str_back_ticks] = ACTIONS(1755), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1755), + [sym__entry_separator] = ACTIONS(1757), + [anon_sym_PLUS] = ACTIONS(1755), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), + [anon_sym_POUND] = ACTIONS(3), }, [254] = { [sym_comment] = STATE(254), - [ts_builtin_sym_end] = ACTIONS(1271), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_alias] = ACTIONS(1275), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_let_DASHenv] = ACTIONS(1275), - [anon_sym_mut] = ACTIONS(1275), - [anon_sym_const] = ACTIONS(1275), - [aux_sym_cmd_identifier_token1] = ACTIONS(1275), - [aux_sym_cmd_identifier_token2] = ACTIONS(1275), - [aux_sym_cmd_identifier_token3] = ACTIONS(1275), - [aux_sym_cmd_identifier_token4] = ACTIONS(1275), - [aux_sym_cmd_identifier_token5] = ACTIONS(1275), - [aux_sym_cmd_identifier_token6] = ACTIONS(1275), - [aux_sym_cmd_identifier_token7] = ACTIONS(1275), - [aux_sym_cmd_identifier_token8] = ACTIONS(1275), - [aux_sym_cmd_identifier_token9] = ACTIONS(1275), - [aux_sym_cmd_identifier_token10] = ACTIONS(1275), - [aux_sym_cmd_identifier_token11] = ACTIONS(1275), - [aux_sym_cmd_identifier_token12] = ACTIONS(1275), - [aux_sym_cmd_identifier_token13] = ACTIONS(1275), - [aux_sym_cmd_identifier_token14] = ACTIONS(1275), - [aux_sym_cmd_identifier_token15] = ACTIONS(1275), - [aux_sym_cmd_identifier_token16] = ACTIONS(1275), - [aux_sym_cmd_identifier_token17] = ACTIONS(1275), - [aux_sym_cmd_identifier_token18] = ACTIONS(1275), - [aux_sym_cmd_identifier_token19] = ACTIONS(1275), - [aux_sym_cmd_identifier_token20] = ACTIONS(1275), - [aux_sym_cmd_identifier_token21] = ACTIONS(1275), - [aux_sym_cmd_identifier_token22] = ACTIONS(1275), - [aux_sym_cmd_identifier_token23] = ACTIONS(1275), - [aux_sym_cmd_identifier_token24] = ACTIONS(1271), - [aux_sym_cmd_identifier_token25] = ACTIONS(1275), - [aux_sym_cmd_identifier_token26] = ACTIONS(1271), - [aux_sym_cmd_identifier_token27] = ACTIONS(1275), - [aux_sym_cmd_identifier_token28] = ACTIONS(1275), - [aux_sym_cmd_identifier_token29] = ACTIONS(1275), - [aux_sym_cmd_identifier_token30] = ACTIONS(1275), - [aux_sym_cmd_identifier_token31] = ACTIONS(1271), - [aux_sym_cmd_identifier_token32] = ACTIONS(1271), - [aux_sym_cmd_identifier_token33] = ACTIONS(1271), - [aux_sym_cmd_identifier_token34] = ACTIONS(1271), - [aux_sym_cmd_identifier_token35] = ACTIONS(1271), - [aux_sym_cmd_identifier_token36] = ACTIONS(1275), - [anon_sym_true] = ACTIONS(1271), - [anon_sym_false] = ACTIONS(1271), - [anon_sym_null] = ACTIONS(1271), - [aux_sym_cmd_identifier_token38] = ACTIONS(1275), - [aux_sym_cmd_identifier_token39] = ACTIONS(1271), - [aux_sym_cmd_identifier_token40] = ACTIONS(1271), - [sym__newline] = ACTIONS(1271), - [anon_sym_SEMI] = ACTIONS(1271), - [anon_sym_def] = ACTIONS(1275), - [anon_sym_export_DASHenv] = ACTIONS(1275), - [anon_sym_extern] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_use] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1271), - [anon_sym_LPAREN] = ACTIONS(1271), - [anon_sym_DOLLAR] = ACTIONS(1275), - [anon_sym_error] = ACTIONS(1275), - [anon_sym_DASH] = ACTIONS(1275), - [anon_sym_break] = ACTIONS(1275), - [anon_sym_continue] = ACTIONS(1275), - [anon_sym_for] = ACTIONS(1275), - [anon_sym_loop] = ACTIONS(1275), - [anon_sym_while] = ACTIONS(1275), - [anon_sym_do] = ACTIONS(1275), - [anon_sym_if] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1275), - [aux_sym_ctrl_match_token1] = ACTIONS(1271), - [anon_sym_DOT_DOT] = ACTIONS(1275), - [anon_sym_try] = ACTIONS(1275), - [anon_sym_return] = ACTIONS(1275), - [anon_sym_source] = ACTIONS(1275), - [anon_sym_source_DASHenv] = ACTIONS(1275), - [anon_sym_register] = ACTIONS(1275), - [anon_sym_hide] = ACTIONS(1275), - [anon_sym_hide_DASHenv] = ACTIONS(1275), - [anon_sym_overlay] = ACTIONS(1275), - [anon_sym_where] = ACTIONS(1271), - [aux_sym_expr_unary_token1] = ACTIONS(1271), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1271), - [anon_sym_DOT_DOT_LT] = ACTIONS(1271), - [aux_sym__val_number_decimal_token1] = ACTIONS(1275), - [aux_sym__val_number_decimal_token2] = ACTIONS(1271), - [aux_sym__val_number_decimal_token3] = ACTIONS(1271), - [aux_sym__val_number_decimal_token4] = ACTIONS(1271), - [aux_sym__val_number_token1] = ACTIONS(1271), - [aux_sym__val_number_token2] = ACTIONS(1271), - [aux_sym__val_number_token3] = ACTIONS(1271), - [anon_sym_0b] = ACTIONS(1275), - [anon_sym_0o] = ACTIONS(1275), - [anon_sym_0x] = ACTIONS(1275), - [sym_val_date] = ACTIONS(1271), - [anon_sym_DQUOTE] = ACTIONS(1271), - [sym__str_single_quotes] = ACTIONS(1271), - [sym__str_back_ticks] = ACTIONS(1271), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1271), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1271), - [aux_sym_env_var_token1] = ACTIONS(1275), - [anon_sym_CARET] = ACTIONS(1271), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1631), + [anon_sym_alias] = ACTIONS(1631), + [anon_sym_let] = ACTIONS(1631), + [anon_sym_let_DASHenv] = ACTIONS(1631), + [anon_sym_mut] = ACTIONS(1631), + [anon_sym_const] = ACTIONS(1631), + [aux_sym_cmd_identifier_token1] = ACTIONS(1631), + [aux_sym_cmd_identifier_token2] = ACTIONS(1631), + [aux_sym_cmd_identifier_token3] = ACTIONS(1631), + [aux_sym_cmd_identifier_token4] = ACTIONS(1631), + [aux_sym_cmd_identifier_token5] = ACTIONS(1631), + [aux_sym_cmd_identifier_token6] = ACTIONS(1631), + [aux_sym_cmd_identifier_token7] = ACTIONS(1631), + [aux_sym_cmd_identifier_token8] = ACTIONS(1631), + [aux_sym_cmd_identifier_token9] = ACTIONS(1631), + [aux_sym_cmd_identifier_token10] = ACTIONS(1631), + [aux_sym_cmd_identifier_token11] = ACTIONS(1631), + [aux_sym_cmd_identifier_token12] = ACTIONS(1631), + [aux_sym_cmd_identifier_token13] = ACTIONS(1631), + [aux_sym_cmd_identifier_token14] = ACTIONS(1631), + [aux_sym_cmd_identifier_token15] = ACTIONS(1631), + [aux_sym_cmd_identifier_token16] = ACTIONS(1631), + [aux_sym_cmd_identifier_token17] = ACTIONS(1631), + [aux_sym_cmd_identifier_token18] = ACTIONS(1631), + [aux_sym_cmd_identifier_token19] = ACTIONS(1631), + [aux_sym_cmd_identifier_token20] = ACTIONS(1631), + [aux_sym_cmd_identifier_token21] = ACTIONS(1631), + [aux_sym_cmd_identifier_token22] = ACTIONS(1631), + [aux_sym_cmd_identifier_token23] = ACTIONS(1631), + [aux_sym_cmd_identifier_token24] = ACTIONS(1631), + [aux_sym_cmd_identifier_token25] = ACTIONS(1631), + [aux_sym_cmd_identifier_token26] = ACTIONS(1631), + [aux_sym_cmd_identifier_token27] = ACTIONS(1631), + [aux_sym_cmd_identifier_token28] = ACTIONS(1631), + [aux_sym_cmd_identifier_token29] = ACTIONS(1631), + [aux_sym_cmd_identifier_token30] = ACTIONS(1631), + [aux_sym_cmd_identifier_token31] = ACTIONS(1631), + [aux_sym_cmd_identifier_token32] = ACTIONS(1631), + [aux_sym_cmd_identifier_token33] = ACTIONS(1631), + [aux_sym_cmd_identifier_token34] = ACTIONS(1631), + [aux_sym_cmd_identifier_token35] = ACTIONS(1631), + [aux_sym_cmd_identifier_token36] = ACTIONS(1631), + [anon_sym_true] = ACTIONS(1631), + [anon_sym_false] = ACTIONS(1631), + [anon_sym_null] = ACTIONS(1631), + [aux_sym_cmd_identifier_token38] = ACTIONS(1631), + [aux_sym_cmd_identifier_token39] = ACTIONS(1631), + [aux_sym_cmd_identifier_token40] = ACTIONS(1631), + [anon_sym_def] = ACTIONS(1631), + [anon_sym_export_DASHenv] = ACTIONS(1631), + [anon_sym_extern] = ACTIONS(1631), + [anon_sym_module] = ACTIONS(1631), + [anon_sym_use] = ACTIONS(1631), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_DOLLAR] = ACTIONS(1631), + [anon_sym_error] = ACTIONS(1631), + [anon_sym_list] = ACTIONS(1631), + [anon_sym_DASH] = ACTIONS(1631), + [anon_sym_break] = ACTIONS(1631), + [anon_sym_continue] = ACTIONS(1631), + [anon_sym_for] = ACTIONS(1631), + [anon_sym_in] = ACTIONS(1631), + [anon_sym_loop] = ACTIONS(1631), + [anon_sym_make] = ACTIONS(1631), + [anon_sym_while] = ACTIONS(1631), + [anon_sym_do] = ACTIONS(1631), + [anon_sym_if] = ACTIONS(1631), + [anon_sym_else] = ACTIONS(1631), + [anon_sym_match] = ACTIONS(1631), + [anon_sym_RBRACE] = ACTIONS(1631), + [anon_sym_try] = ACTIONS(1631), + [anon_sym_catch] = ACTIONS(1631), + [anon_sym_return] = ACTIONS(1631), + [anon_sym_source] = ACTIONS(1631), + [anon_sym_source_DASHenv] = ACTIONS(1631), + [anon_sym_register] = ACTIONS(1631), + [anon_sym_hide] = ACTIONS(1631), + [anon_sym_hide_DASHenv] = ACTIONS(1631), + [anon_sym_overlay] = ACTIONS(1631), + [anon_sym_new] = ACTIONS(1631), + [anon_sym_as] = ACTIONS(1631), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1631), + [anon_sym_DOT_DOT2] = ACTIONS(1631), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1633), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1633), + [aux_sym__immediate_decimal_token1] = ACTIONS(1759), + [aux_sym__immediate_decimal_token2] = ACTIONS(1761), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1631), + [aux_sym__val_number_decimal_token1] = ACTIONS(1631), + [aux_sym__val_number_decimal_token2] = ACTIONS(1631), + [aux_sym__val_number_decimal_token3] = ACTIONS(1631), + [aux_sym__val_number_decimal_token4] = ACTIONS(1631), + [aux_sym__val_number_token1] = ACTIONS(1631), + [aux_sym__val_number_token2] = ACTIONS(1631), + [aux_sym__val_number_token3] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [sym__str_single_quotes] = ACTIONS(1631), + [sym__str_back_ticks] = ACTIONS(1631), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1631), + [sym__entry_separator] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1631), + [anon_sym_POUND] = ACTIONS(3), }, [255] = { [sym_comment] = STATE(255), - [anon_sym_export] = ACTIONS(966), - [anon_sym_alias] = ACTIONS(966), - [anon_sym_let] = ACTIONS(966), - [anon_sym_let_DASHenv] = ACTIONS(966), - [anon_sym_mut] = ACTIONS(966), - [anon_sym_const] = ACTIONS(966), - [aux_sym_cmd_identifier_token1] = ACTIONS(966), - [aux_sym_cmd_identifier_token2] = ACTIONS(966), - [aux_sym_cmd_identifier_token3] = ACTIONS(966), - [aux_sym_cmd_identifier_token4] = ACTIONS(966), - [aux_sym_cmd_identifier_token5] = ACTIONS(966), - [aux_sym_cmd_identifier_token6] = ACTIONS(966), - [aux_sym_cmd_identifier_token7] = ACTIONS(966), - [aux_sym_cmd_identifier_token8] = ACTIONS(966), - [aux_sym_cmd_identifier_token9] = ACTIONS(966), - [aux_sym_cmd_identifier_token10] = ACTIONS(966), - [aux_sym_cmd_identifier_token11] = ACTIONS(966), - [aux_sym_cmd_identifier_token12] = ACTIONS(966), - [aux_sym_cmd_identifier_token13] = ACTIONS(966), - [aux_sym_cmd_identifier_token14] = ACTIONS(966), - [aux_sym_cmd_identifier_token15] = ACTIONS(966), - [aux_sym_cmd_identifier_token16] = ACTIONS(966), - [aux_sym_cmd_identifier_token17] = ACTIONS(966), - [aux_sym_cmd_identifier_token18] = ACTIONS(966), - [aux_sym_cmd_identifier_token19] = ACTIONS(966), - [aux_sym_cmd_identifier_token20] = ACTIONS(966), - [aux_sym_cmd_identifier_token21] = ACTIONS(966), - [aux_sym_cmd_identifier_token22] = ACTIONS(966), - [aux_sym_cmd_identifier_token23] = ACTIONS(966), - [aux_sym_cmd_identifier_token24] = ACTIONS(966), - [aux_sym_cmd_identifier_token25] = ACTIONS(966), - [aux_sym_cmd_identifier_token26] = ACTIONS(966), - [aux_sym_cmd_identifier_token27] = ACTIONS(966), - [aux_sym_cmd_identifier_token28] = ACTIONS(966), - [aux_sym_cmd_identifier_token29] = ACTIONS(966), - [aux_sym_cmd_identifier_token30] = ACTIONS(966), - [aux_sym_cmd_identifier_token31] = ACTIONS(966), - [aux_sym_cmd_identifier_token32] = ACTIONS(966), - [aux_sym_cmd_identifier_token33] = ACTIONS(966), - [aux_sym_cmd_identifier_token34] = ACTIONS(966), - [aux_sym_cmd_identifier_token35] = ACTIONS(966), - [aux_sym_cmd_identifier_token36] = ACTIONS(966), - [anon_sym_true] = ACTIONS(966), - [anon_sym_false] = ACTIONS(966), - [anon_sym_null] = ACTIONS(966), - [aux_sym_cmd_identifier_token38] = ACTIONS(966), - [aux_sym_cmd_identifier_token39] = ACTIONS(966), - [aux_sym_cmd_identifier_token40] = ACTIONS(966), - [anon_sym_def] = ACTIONS(966), - [anon_sym_export_DASHenv] = ACTIONS(966), - [anon_sym_extern] = ACTIONS(966), - [anon_sym_module] = ACTIONS(966), - [anon_sym_use] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(966), - [anon_sym_DOLLAR] = ACTIONS(966), - [anon_sym_error] = ACTIONS(966), - [anon_sym_list] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_break] = ACTIONS(966), - [anon_sym_continue] = ACTIONS(966), - [anon_sym_for] = ACTIONS(966), - [anon_sym_in] = ACTIONS(966), - [anon_sym_loop] = ACTIONS(966), - [anon_sym_make] = ACTIONS(966), - [anon_sym_while] = ACTIONS(966), - [anon_sym_do] = ACTIONS(966), - [anon_sym_if] = ACTIONS(966), - [anon_sym_else] = ACTIONS(966), - [anon_sym_match] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(966), - [anon_sym_try] = ACTIONS(966), - [anon_sym_catch] = ACTIONS(966), - [anon_sym_return] = ACTIONS(966), - [anon_sym_source] = ACTIONS(966), - [anon_sym_source_DASHenv] = ACTIONS(966), - [anon_sym_register] = ACTIONS(966), - [anon_sym_hide] = ACTIONS(966), - [anon_sym_hide_DASHenv] = ACTIONS(966), - [anon_sym_overlay] = ACTIONS(966), - [anon_sym_new] = ACTIONS(966), - [anon_sym_as] = ACTIONS(966), - [anon_sym_QMARK2] = ACTIONS(966), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(966), - [anon_sym_DOT_DOT2] = ACTIONS(966), - [anon_sym_DOT] = ACTIONS(966), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(968), - [anon_sym_DOT_DOT_LT2] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(966), - [aux_sym__val_number_decimal_token1] = ACTIONS(966), - [aux_sym__val_number_decimal_token2] = ACTIONS(966), - [aux_sym__val_number_decimal_token3] = ACTIONS(966), - [aux_sym__val_number_decimal_token4] = ACTIONS(966), - [aux_sym__val_number_token1] = ACTIONS(966), - [aux_sym__val_number_token2] = ACTIONS(966), - [aux_sym__val_number_token3] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(966), - [sym__str_single_quotes] = ACTIONS(966), - [sym__str_back_ticks] = ACTIONS(966), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(966), - [sym__entry_separator] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_export] = ACTIONS(1643), + [anon_sym_alias] = ACTIONS(1643), + [anon_sym_let] = ACTIONS(1643), + [anon_sym_let_DASHenv] = ACTIONS(1643), + [anon_sym_mut] = ACTIONS(1643), + [anon_sym_const] = ACTIONS(1643), + [aux_sym_cmd_identifier_token1] = ACTIONS(1643), + [aux_sym_cmd_identifier_token2] = ACTIONS(1643), + [aux_sym_cmd_identifier_token3] = ACTIONS(1643), + [aux_sym_cmd_identifier_token4] = ACTIONS(1643), + [aux_sym_cmd_identifier_token5] = ACTIONS(1643), + [aux_sym_cmd_identifier_token6] = ACTIONS(1643), + [aux_sym_cmd_identifier_token7] = ACTIONS(1643), + [aux_sym_cmd_identifier_token8] = ACTIONS(1643), + [aux_sym_cmd_identifier_token9] = ACTIONS(1643), + [aux_sym_cmd_identifier_token10] = ACTIONS(1643), + [aux_sym_cmd_identifier_token11] = ACTIONS(1643), + [aux_sym_cmd_identifier_token12] = ACTIONS(1643), + [aux_sym_cmd_identifier_token13] = ACTIONS(1643), + [aux_sym_cmd_identifier_token14] = ACTIONS(1643), + [aux_sym_cmd_identifier_token15] = ACTIONS(1643), + [aux_sym_cmd_identifier_token16] = ACTIONS(1643), + [aux_sym_cmd_identifier_token17] = ACTIONS(1643), + [aux_sym_cmd_identifier_token18] = ACTIONS(1643), + [aux_sym_cmd_identifier_token19] = ACTIONS(1643), + [aux_sym_cmd_identifier_token20] = ACTIONS(1643), + [aux_sym_cmd_identifier_token21] = ACTIONS(1643), + [aux_sym_cmd_identifier_token22] = ACTIONS(1643), + [aux_sym_cmd_identifier_token23] = ACTIONS(1643), + [aux_sym_cmd_identifier_token24] = ACTIONS(1643), + [aux_sym_cmd_identifier_token25] = ACTIONS(1643), + [aux_sym_cmd_identifier_token26] = ACTIONS(1643), + [aux_sym_cmd_identifier_token27] = ACTIONS(1643), + [aux_sym_cmd_identifier_token28] = ACTIONS(1643), + [aux_sym_cmd_identifier_token29] = ACTIONS(1643), + [aux_sym_cmd_identifier_token30] = ACTIONS(1643), + [aux_sym_cmd_identifier_token31] = ACTIONS(1643), + [aux_sym_cmd_identifier_token32] = ACTIONS(1643), + [aux_sym_cmd_identifier_token33] = ACTIONS(1643), + [aux_sym_cmd_identifier_token34] = ACTIONS(1643), + [aux_sym_cmd_identifier_token35] = ACTIONS(1643), + [aux_sym_cmd_identifier_token36] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_null] = ACTIONS(1643), + [aux_sym_cmd_identifier_token38] = ACTIONS(1643), + [aux_sym_cmd_identifier_token39] = ACTIONS(1643), + [aux_sym_cmd_identifier_token40] = ACTIONS(1643), + [anon_sym_def] = ACTIONS(1643), + [anon_sym_export_DASHenv] = ACTIONS(1643), + [anon_sym_extern] = ACTIONS(1643), + [anon_sym_module] = ACTIONS(1643), + [anon_sym_use] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(1643), + [anon_sym_error] = ACTIONS(1643), + [anon_sym_list] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_break] = ACTIONS(1643), + [anon_sym_continue] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_loop] = ACTIONS(1643), + [anon_sym_make] = ACTIONS(1643), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_do] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_else] = ACTIONS(1643), + [anon_sym_match] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), + [anon_sym_try] = ACTIONS(1643), + [anon_sym_catch] = ACTIONS(1643), + [anon_sym_return] = ACTIONS(1643), + [anon_sym_source] = ACTIONS(1643), + [anon_sym_source_DASHenv] = ACTIONS(1643), + [anon_sym_register] = ACTIONS(1643), + [anon_sym_hide] = ACTIONS(1643), + [anon_sym_hide_DASHenv] = ACTIONS(1643), + [anon_sym_overlay] = ACTIONS(1643), + [anon_sym_new] = ACTIONS(1643), + [anon_sym_as] = ACTIONS(1643), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1643), + [anon_sym_DOT_DOT2] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(1763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), + [aux_sym__immediate_decimal_token2] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1643), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1643), + [aux_sym__val_number_decimal_token3] = ACTIONS(1643), + [aux_sym__val_number_decimal_token4] = ACTIONS(1643), + [aux_sym__val_number_token1] = ACTIONS(1643), + [aux_sym__val_number_token2] = ACTIONS(1643), + [aux_sym__val_number_token3] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1643), + [sym__str_single_quotes] = ACTIONS(1643), + [sym__str_back_ticks] = ACTIONS(1643), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1643), + [sym__entry_separator] = ACTIONS(1645), + [anon_sym_PLUS] = ACTIONS(1643), [anon_sym_POUND] = ACTIONS(3), }, [256] = { + [sym_cmd_identifier] = STATE(4558), + [sym_ctrl_if_parenthesized] = STATE(4957), + [sym_block] = STATE(4958), + [sym__expression_parenthesized] = STATE(4958), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3734), + [sym_expr_parenthesized] = STATE(1961), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1934), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3012), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_command] = STATE(4958), [sym_comment] = STATE(256), - [anon_sym_export] = ACTIONS(976), - [anon_sym_alias] = ACTIONS(976), - [anon_sym_let] = ACTIONS(976), - [anon_sym_let_DASHenv] = ACTIONS(976), - [anon_sym_mut] = ACTIONS(976), - [anon_sym_const] = ACTIONS(976), - [aux_sym_cmd_identifier_token1] = ACTIONS(976), - [aux_sym_cmd_identifier_token2] = ACTIONS(976), - [aux_sym_cmd_identifier_token3] = ACTIONS(976), - [aux_sym_cmd_identifier_token4] = ACTIONS(976), - [aux_sym_cmd_identifier_token5] = ACTIONS(976), - [aux_sym_cmd_identifier_token6] = ACTIONS(976), - [aux_sym_cmd_identifier_token7] = ACTIONS(976), - [aux_sym_cmd_identifier_token8] = ACTIONS(976), - [aux_sym_cmd_identifier_token9] = ACTIONS(976), - [aux_sym_cmd_identifier_token10] = ACTIONS(976), - [aux_sym_cmd_identifier_token11] = ACTIONS(976), - [aux_sym_cmd_identifier_token12] = ACTIONS(976), - [aux_sym_cmd_identifier_token13] = ACTIONS(976), - [aux_sym_cmd_identifier_token14] = ACTIONS(976), - [aux_sym_cmd_identifier_token15] = ACTIONS(976), - [aux_sym_cmd_identifier_token16] = ACTIONS(976), - [aux_sym_cmd_identifier_token17] = ACTIONS(976), - [aux_sym_cmd_identifier_token18] = ACTIONS(976), - [aux_sym_cmd_identifier_token19] = ACTIONS(976), - [aux_sym_cmd_identifier_token20] = ACTIONS(976), - [aux_sym_cmd_identifier_token21] = ACTIONS(976), - [aux_sym_cmd_identifier_token22] = ACTIONS(976), - [aux_sym_cmd_identifier_token23] = ACTIONS(976), - [aux_sym_cmd_identifier_token24] = ACTIONS(976), - [aux_sym_cmd_identifier_token25] = ACTIONS(976), - [aux_sym_cmd_identifier_token26] = ACTIONS(976), - [aux_sym_cmd_identifier_token27] = ACTIONS(976), - [aux_sym_cmd_identifier_token28] = ACTIONS(976), - [aux_sym_cmd_identifier_token29] = ACTIONS(976), - [aux_sym_cmd_identifier_token30] = ACTIONS(976), - [aux_sym_cmd_identifier_token31] = ACTIONS(976), - [aux_sym_cmd_identifier_token32] = ACTIONS(976), - [aux_sym_cmd_identifier_token33] = ACTIONS(976), - [aux_sym_cmd_identifier_token34] = ACTIONS(976), - [aux_sym_cmd_identifier_token35] = ACTIONS(976), - [aux_sym_cmd_identifier_token36] = ACTIONS(976), - [anon_sym_true] = ACTIONS(976), - [anon_sym_false] = ACTIONS(976), - [anon_sym_null] = ACTIONS(976), - [aux_sym_cmd_identifier_token38] = ACTIONS(976), - [aux_sym_cmd_identifier_token39] = ACTIONS(976), - [aux_sym_cmd_identifier_token40] = ACTIONS(976), - [anon_sym_def] = ACTIONS(976), - [anon_sym_export_DASHenv] = ACTIONS(976), - [anon_sym_extern] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_use] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(976), - [anon_sym_DOLLAR] = ACTIONS(976), - [anon_sym_error] = ACTIONS(976), - [anon_sym_list] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_break] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_in] = ACTIONS(976), - [anon_sym_loop] = ACTIONS(976), - [anon_sym_make] = ACTIONS(976), - [anon_sym_while] = ACTIONS(976), - [anon_sym_do] = ACTIONS(976), - [anon_sym_if] = ACTIONS(976), - [anon_sym_else] = ACTIONS(976), - [anon_sym_match] = ACTIONS(976), - [anon_sym_RBRACE] = ACTIONS(976), - [anon_sym_try] = ACTIONS(976), - [anon_sym_catch] = ACTIONS(976), - [anon_sym_return] = ACTIONS(976), - [anon_sym_source] = ACTIONS(976), - [anon_sym_source_DASHenv] = ACTIONS(976), - [anon_sym_register] = ACTIONS(976), - [anon_sym_hide] = ACTIONS(976), - [anon_sym_hide_DASHenv] = ACTIONS(976), - [anon_sym_overlay] = ACTIONS(976), - [anon_sym_new] = ACTIONS(976), - [anon_sym_as] = ACTIONS(976), - [anon_sym_QMARK2] = ACTIONS(976), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(976), - [anon_sym_DOT_DOT2] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), - [anon_sym_DOT_DOT_LT2] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(976), - [aux_sym__val_number_decimal_token1] = ACTIONS(976), - [aux_sym__val_number_decimal_token2] = ACTIONS(976), - [aux_sym__val_number_decimal_token3] = ACTIONS(976), - [aux_sym__val_number_decimal_token4] = ACTIONS(976), - [aux_sym__val_number_token1] = ACTIONS(976), - [aux_sym__val_number_token2] = ACTIONS(976), - [aux_sym__val_number_token3] = ACTIONS(976), - [anon_sym_DQUOTE] = ACTIONS(976), - [sym__str_single_quotes] = ACTIONS(976), - [sym__str_back_ticks] = ACTIONS(976), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(976), - [sym__entry_separator] = ACTIONS(978), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1022), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [anon_sym_null] = ACTIONS(1733), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1737), + [aux_sym_cmd_identifier_token40] = ACTIONS(1737), + [sym__newline] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_if] = ACTIONS(479), + [aux_sym_ctrl_match_token1] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1743), + [aux_sym__val_number_decimal_token2] = ACTIONS(1745), + [aux_sym__val_number_decimal_token3] = ACTIONS(1747), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [257] = { [sym_comment] = STATE(257), - [anon_sym_export] = ACTIONS(962), - [anon_sym_alias] = ACTIONS(962), - [anon_sym_let] = ACTIONS(962), - [anon_sym_let_DASHenv] = ACTIONS(962), - [anon_sym_mut] = ACTIONS(962), - [anon_sym_const] = ACTIONS(962), - [aux_sym_cmd_identifier_token1] = ACTIONS(962), - [aux_sym_cmd_identifier_token2] = ACTIONS(962), - [aux_sym_cmd_identifier_token3] = ACTIONS(962), - [aux_sym_cmd_identifier_token4] = ACTIONS(962), - [aux_sym_cmd_identifier_token5] = ACTIONS(962), - [aux_sym_cmd_identifier_token6] = ACTIONS(962), - [aux_sym_cmd_identifier_token7] = ACTIONS(962), - [aux_sym_cmd_identifier_token8] = ACTIONS(962), - [aux_sym_cmd_identifier_token9] = ACTIONS(962), - [aux_sym_cmd_identifier_token10] = ACTIONS(962), - [aux_sym_cmd_identifier_token11] = ACTIONS(962), - [aux_sym_cmd_identifier_token12] = ACTIONS(962), - [aux_sym_cmd_identifier_token13] = ACTIONS(962), - [aux_sym_cmd_identifier_token14] = ACTIONS(962), - [aux_sym_cmd_identifier_token15] = ACTIONS(962), - [aux_sym_cmd_identifier_token16] = ACTIONS(962), - [aux_sym_cmd_identifier_token17] = ACTIONS(962), - [aux_sym_cmd_identifier_token18] = ACTIONS(962), - [aux_sym_cmd_identifier_token19] = ACTIONS(962), - [aux_sym_cmd_identifier_token20] = ACTIONS(962), - [aux_sym_cmd_identifier_token21] = ACTIONS(962), - [aux_sym_cmd_identifier_token22] = ACTIONS(962), - [aux_sym_cmd_identifier_token23] = ACTIONS(962), - [aux_sym_cmd_identifier_token24] = ACTIONS(962), - [aux_sym_cmd_identifier_token25] = ACTIONS(962), - [aux_sym_cmd_identifier_token26] = ACTIONS(962), - [aux_sym_cmd_identifier_token27] = ACTIONS(962), - [aux_sym_cmd_identifier_token28] = ACTIONS(962), - [aux_sym_cmd_identifier_token29] = ACTIONS(962), - [aux_sym_cmd_identifier_token30] = ACTIONS(962), - [aux_sym_cmd_identifier_token31] = ACTIONS(962), - [aux_sym_cmd_identifier_token32] = ACTIONS(962), - [aux_sym_cmd_identifier_token33] = ACTIONS(962), - [aux_sym_cmd_identifier_token34] = ACTIONS(962), - [aux_sym_cmd_identifier_token35] = ACTIONS(962), - [aux_sym_cmd_identifier_token36] = ACTIONS(962), - [anon_sym_true] = ACTIONS(962), - [anon_sym_false] = ACTIONS(962), - [anon_sym_null] = ACTIONS(962), - [aux_sym_cmd_identifier_token38] = ACTIONS(962), - [aux_sym_cmd_identifier_token39] = ACTIONS(962), - [aux_sym_cmd_identifier_token40] = ACTIONS(962), - [anon_sym_def] = ACTIONS(962), - [anon_sym_export_DASHenv] = ACTIONS(962), - [anon_sym_extern] = ACTIONS(962), - [anon_sym_module] = ACTIONS(962), - [anon_sym_use] = ACTIONS(962), - [anon_sym_LPAREN] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(962), - [anon_sym_error] = ACTIONS(962), - [anon_sym_list] = ACTIONS(962), - [anon_sym_DASH] = ACTIONS(962), - [anon_sym_break] = ACTIONS(962), - [anon_sym_continue] = ACTIONS(962), - [anon_sym_for] = ACTIONS(962), - [anon_sym_in] = ACTIONS(962), - [anon_sym_loop] = ACTIONS(962), - [anon_sym_make] = ACTIONS(962), - [anon_sym_while] = ACTIONS(962), - [anon_sym_do] = ACTIONS(962), - [anon_sym_if] = ACTIONS(962), - [anon_sym_else] = ACTIONS(962), - [anon_sym_match] = ACTIONS(962), - [anon_sym_RBRACE] = ACTIONS(962), - [anon_sym_try] = ACTIONS(962), - [anon_sym_catch] = ACTIONS(962), - [anon_sym_return] = ACTIONS(962), - [anon_sym_source] = ACTIONS(962), - [anon_sym_source_DASHenv] = ACTIONS(962), - [anon_sym_register] = ACTIONS(962), - [anon_sym_hide] = ACTIONS(962), - [anon_sym_hide_DASHenv] = ACTIONS(962), - [anon_sym_overlay] = ACTIONS(962), - [anon_sym_new] = ACTIONS(962), - [anon_sym_as] = ACTIONS(962), - [anon_sym_QMARK2] = ACTIONS(962), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(962), - [anon_sym_DOT_DOT2] = ACTIONS(962), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(964), - [anon_sym_DOT_DOT_LT2] = ACTIONS(964), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(962), - [aux_sym__val_number_decimal_token1] = ACTIONS(962), - [aux_sym__val_number_decimal_token2] = ACTIONS(962), - [aux_sym__val_number_decimal_token3] = ACTIONS(962), - [aux_sym__val_number_decimal_token4] = ACTIONS(962), - [aux_sym__val_number_token1] = ACTIONS(962), - [aux_sym__val_number_token2] = ACTIONS(962), - [aux_sym__val_number_token3] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(962), - [sym__str_single_quotes] = ACTIONS(962), - [sym__str_back_ticks] = ACTIONS(962), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(962), - [sym__entry_separator] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(962), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1343), + [anon_sym_export] = ACTIONS(1347), + [anon_sym_alias] = ACTIONS(1347), + [anon_sym_let] = ACTIONS(1347), + [anon_sym_let_DASHenv] = ACTIONS(1347), + [anon_sym_mut] = ACTIONS(1347), + [anon_sym_const] = ACTIONS(1347), + [aux_sym_cmd_identifier_token1] = ACTIONS(1347), + [aux_sym_cmd_identifier_token2] = ACTIONS(1347), + [aux_sym_cmd_identifier_token3] = ACTIONS(1347), + [aux_sym_cmd_identifier_token4] = ACTIONS(1347), + [aux_sym_cmd_identifier_token5] = ACTIONS(1347), + [aux_sym_cmd_identifier_token6] = ACTIONS(1347), + [aux_sym_cmd_identifier_token7] = ACTIONS(1347), + [aux_sym_cmd_identifier_token8] = ACTIONS(1347), + [aux_sym_cmd_identifier_token9] = ACTIONS(1347), + [aux_sym_cmd_identifier_token10] = ACTIONS(1347), + [aux_sym_cmd_identifier_token11] = ACTIONS(1347), + [aux_sym_cmd_identifier_token12] = ACTIONS(1347), + [aux_sym_cmd_identifier_token13] = ACTIONS(1347), + [aux_sym_cmd_identifier_token14] = ACTIONS(1347), + [aux_sym_cmd_identifier_token15] = ACTIONS(1347), + [aux_sym_cmd_identifier_token16] = ACTIONS(1347), + [aux_sym_cmd_identifier_token17] = ACTIONS(1347), + [aux_sym_cmd_identifier_token18] = ACTIONS(1347), + [aux_sym_cmd_identifier_token19] = ACTIONS(1347), + [aux_sym_cmd_identifier_token20] = ACTIONS(1347), + [aux_sym_cmd_identifier_token21] = ACTIONS(1347), + [aux_sym_cmd_identifier_token22] = ACTIONS(1347), + [aux_sym_cmd_identifier_token23] = ACTIONS(1347), + [aux_sym_cmd_identifier_token24] = ACTIONS(1343), + [aux_sym_cmd_identifier_token25] = ACTIONS(1347), + [aux_sym_cmd_identifier_token26] = ACTIONS(1343), + [aux_sym_cmd_identifier_token27] = ACTIONS(1347), + [aux_sym_cmd_identifier_token28] = ACTIONS(1347), + [aux_sym_cmd_identifier_token29] = ACTIONS(1347), + [aux_sym_cmd_identifier_token30] = ACTIONS(1347), + [aux_sym_cmd_identifier_token31] = ACTIONS(1343), + [aux_sym_cmd_identifier_token32] = ACTIONS(1343), + [aux_sym_cmd_identifier_token33] = ACTIONS(1343), + [aux_sym_cmd_identifier_token34] = ACTIONS(1343), + [aux_sym_cmd_identifier_token35] = ACTIONS(1343), + [aux_sym_cmd_identifier_token36] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1343), + [anon_sym_false] = ACTIONS(1343), + [anon_sym_null] = ACTIONS(1343), + [aux_sym_cmd_identifier_token38] = ACTIONS(1347), + [aux_sym_cmd_identifier_token39] = ACTIONS(1343), + [aux_sym_cmd_identifier_token40] = ACTIONS(1343), + [sym__newline] = ACTIONS(1343), + [anon_sym_SEMI] = ACTIONS(1343), + [anon_sym_def] = ACTIONS(1347), + [anon_sym_export_DASHenv] = ACTIONS(1347), + [anon_sym_extern] = ACTIONS(1347), + [anon_sym_module] = ACTIONS(1347), + [anon_sym_use] = ACTIONS(1347), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_LPAREN] = ACTIONS(1343), + [anon_sym_DOLLAR] = ACTIONS(1347), + [anon_sym_error] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_break] = ACTIONS(1347), + [anon_sym_continue] = ACTIONS(1347), + [anon_sym_for] = ACTIONS(1347), + [anon_sym_loop] = ACTIONS(1347), + [anon_sym_while] = ACTIONS(1347), + [anon_sym_do] = ACTIONS(1347), + [anon_sym_if] = ACTIONS(1347), + [anon_sym_match] = ACTIONS(1347), + [aux_sym_ctrl_match_token1] = ACTIONS(1343), + [anon_sym_DOT_DOT] = ACTIONS(1347), + [anon_sym_try] = ACTIONS(1347), + [anon_sym_return] = ACTIONS(1347), + [anon_sym_source] = ACTIONS(1347), + [anon_sym_source_DASHenv] = ACTIONS(1347), + [anon_sym_register] = ACTIONS(1347), + [anon_sym_hide] = ACTIONS(1347), + [anon_sym_hide_DASHenv] = ACTIONS(1347), + [anon_sym_overlay] = ACTIONS(1347), + [anon_sym_where] = ACTIONS(1343), + [aux_sym_expr_unary_token1] = ACTIONS(1343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1343), + [anon_sym_DOT_DOT_LT] = ACTIONS(1343), + [aux_sym__val_number_decimal_token1] = ACTIONS(1347), + [aux_sym__val_number_decimal_token2] = ACTIONS(1343), + [aux_sym__val_number_decimal_token3] = ACTIONS(1343), + [aux_sym__val_number_decimal_token4] = ACTIONS(1343), + [aux_sym__val_number_token1] = ACTIONS(1343), + [aux_sym__val_number_token2] = ACTIONS(1343), + [aux_sym__val_number_token3] = ACTIONS(1343), + [anon_sym_0b] = ACTIONS(1347), + [anon_sym_0o] = ACTIONS(1347), + [anon_sym_0x] = ACTIONS(1347), + [sym_val_date] = ACTIONS(1343), + [anon_sym_DQUOTE] = ACTIONS(1343), + [sym__str_single_quotes] = ACTIONS(1343), + [sym__str_back_ticks] = ACTIONS(1343), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1343), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1343), + [aux_sym_env_var_token1] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1343), + [anon_sym_POUND] = ACTIONS(247), }, [258] = { + [sym_cmd_identifier] = STATE(4558), + [sym_ctrl_if_parenthesized] = STATE(4959), + [sym_block] = STATE(4960), + [sym__expression_parenthesized] = STATE(4960), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3734), + [sym_expr_parenthesized] = STATE(1961), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1934), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3012), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_command] = STATE(4960), [sym_comment] = STATE(258), - [anon_sym_export] = ACTIONS(970), - [anon_sym_alias] = ACTIONS(970), - [anon_sym_let] = ACTIONS(970), - [anon_sym_let_DASHenv] = ACTIONS(970), - [anon_sym_mut] = ACTIONS(970), - [anon_sym_const] = ACTIONS(970), - [aux_sym_cmd_identifier_token1] = ACTIONS(970), - [aux_sym_cmd_identifier_token2] = ACTIONS(970), - [aux_sym_cmd_identifier_token3] = ACTIONS(970), - [aux_sym_cmd_identifier_token4] = ACTIONS(970), - [aux_sym_cmd_identifier_token5] = ACTIONS(970), - [aux_sym_cmd_identifier_token6] = ACTIONS(970), - [aux_sym_cmd_identifier_token7] = ACTIONS(970), - [aux_sym_cmd_identifier_token8] = ACTIONS(970), - [aux_sym_cmd_identifier_token9] = ACTIONS(970), - [aux_sym_cmd_identifier_token10] = ACTIONS(970), - [aux_sym_cmd_identifier_token11] = ACTIONS(970), - [aux_sym_cmd_identifier_token12] = ACTIONS(970), - [aux_sym_cmd_identifier_token13] = ACTIONS(970), - [aux_sym_cmd_identifier_token14] = ACTIONS(970), - [aux_sym_cmd_identifier_token15] = ACTIONS(970), - [aux_sym_cmd_identifier_token16] = ACTIONS(970), - [aux_sym_cmd_identifier_token17] = ACTIONS(970), - [aux_sym_cmd_identifier_token18] = ACTIONS(970), - [aux_sym_cmd_identifier_token19] = ACTIONS(970), - [aux_sym_cmd_identifier_token20] = ACTIONS(970), - [aux_sym_cmd_identifier_token21] = ACTIONS(970), - [aux_sym_cmd_identifier_token22] = ACTIONS(970), - [aux_sym_cmd_identifier_token23] = ACTIONS(970), - [aux_sym_cmd_identifier_token24] = ACTIONS(970), - [aux_sym_cmd_identifier_token25] = ACTIONS(970), - [aux_sym_cmd_identifier_token26] = ACTIONS(970), - [aux_sym_cmd_identifier_token27] = ACTIONS(970), - [aux_sym_cmd_identifier_token28] = ACTIONS(970), - [aux_sym_cmd_identifier_token29] = ACTIONS(970), - [aux_sym_cmd_identifier_token30] = ACTIONS(970), - [aux_sym_cmd_identifier_token31] = ACTIONS(970), - [aux_sym_cmd_identifier_token32] = ACTIONS(970), - [aux_sym_cmd_identifier_token33] = ACTIONS(970), - [aux_sym_cmd_identifier_token34] = ACTIONS(970), - [aux_sym_cmd_identifier_token35] = ACTIONS(970), - [aux_sym_cmd_identifier_token36] = ACTIONS(970), - [anon_sym_true] = ACTIONS(970), - [anon_sym_false] = ACTIONS(970), - [anon_sym_null] = ACTIONS(970), - [aux_sym_cmd_identifier_token38] = ACTIONS(970), - [aux_sym_cmd_identifier_token39] = ACTIONS(970), - [aux_sym_cmd_identifier_token40] = ACTIONS(970), - [anon_sym_def] = ACTIONS(970), - [anon_sym_export_DASHenv] = ACTIONS(970), - [anon_sym_extern] = ACTIONS(970), - [anon_sym_module] = ACTIONS(970), - [anon_sym_use] = ACTIONS(970), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_DOLLAR] = ACTIONS(970), - [anon_sym_error] = ACTIONS(970), - [anon_sym_list] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_break] = ACTIONS(970), - [anon_sym_continue] = ACTIONS(970), - [anon_sym_for] = ACTIONS(970), - [anon_sym_in] = ACTIONS(970), - [anon_sym_loop] = ACTIONS(970), - [anon_sym_make] = ACTIONS(970), - [anon_sym_while] = ACTIONS(970), - [anon_sym_do] = ACTIONS(970), - [anon_sym_if] = ACTIONS(970), - [anon_sym_else] = ACTIONS(970), - [anon_sym_match] = ACTIONS(970), - [anon_sym_RBRACE] = ACTIONS(970), - [anon_sym_try] = ACTIONS(970), - [anon_sym_catch] = ACTIONS(970), - [anon_sym_return] = ACTIONS(970), - [anon_sym_source] = ACTIONS(970), - [anon_sym_source_DASHenv] = ACTIONS(970), - [anon_sym_register] = ACTIONS(970), - [anon_sym_hide] = ACTIONS(970), - [anon_sym_hide_DASHenv] = ACTIONS(970), - [anon_sym_overlay] = ACTIONS(970), - [anon_sym_new] = ACTIONS(970), - [anon_sym_as] = ACTIONS(970), - [anon_sym_QMARK2] = ACTIONS(1703), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(970), - [anon_sym_DOT_DOT2] = ACTIONS(970), - [anon_sym_DOT] = ACTIONS(970), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(972), - [anon_sym_DOT_DOT_LT2] = ACTIONS(972), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(970), - [aux_sym__val_number_decimal_token1] = ACTIONS(970), - [aux_sym__val_number_decimal_token2] = ACTIONS(970), - [aux_sym__val_number_decimal_token3] = ACTIONS(970), - [aux_sym__val_number_decimal_token4] = ACTIONS(970), - [aux_sym__val_number_token1] = ACTIONS(970), - [aux_sym__val_number_token2] = ACTIONS(970), - [aux_sym__val_number_token3] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(970), - [sym__str_single_quotes] = ACTIONS(970), - [sym__str_back_ticks] = ACTIONS(970), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(970), - [sym__entry_separator] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(970), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(289), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [anon_sym_null] = ACTIONS(1733), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1737), + [aux_sym_cmd_identifier_token40] = ACTIONS(1737), + [sym__newline] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_if] = ACTIONS(479), + [aux_sym_ctrl_match_token1] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1743), + [aux_sym__val_number_decimal_token2] = ACTIONS(1745), + [aux_sym__val_number_decimal_token3] = ACTIONS(1747), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [259] = { + [sym_cmd_identifier] = STATE(4558), + [sym_ctrl_if_parenthesized] = STATE(4961), + [sym_block] = STATE(4962), + [sym__expression_parenthesized] = STATE(4962), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3734), + [sym_expr_parenthesized] = STATE(1961), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1934), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3012), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_command] = STATE(4962), [sym_comment] = STATE(259), - [anon_sym_export] = ACTIONS(980), - [anon_sym_alias] = ACTIONS(980), - [anon_sym_let] = ACTIONS(980), - [anon_sym_let_DASHenv] = ACTIONS(980), - [anon_sym_mut] = ACTIONS(980), - [anon_sym_const] = ACTIONS(980), - [aux_sym_cmd_identifier_token1] = ACTIONS(980), - [aux_sym_cmd_identifier_token2] = ACTIONS(980), - [aux_sym_cmd_identifier_token3] = ACTIONS(980), - [aux_sym_cmd_identifier_token4] = ACTIONS(980), - [aux_sym_cmd_identifier_token5] = ACTIONS(980), - [aux_sym_cmd_identifier_token6] = ACTIONS(980), - [aux_sym_cmd_identifier_token7] = ACTIONS(980), - [aux_sym_cmd_identifier_token8] = ACTIONS(980), - [aux_sym_cmd_identifier_token9] = ACTIONS(980), - [aux_sym_cmd_identifier_token10] = ACTIONS(980), - [aux_sym_cmd_identifier_token11] = ACTIONS(980), - [aux_sym_cmd_identifier_token12] = ACTIONS(980), - [aux_sym_cmd_identifier_token13] = ACTIONS(980), - [aux_sym_cmd_identifier_token14] = ACTIONS(980), - [aux_sym_cmd_identifier_token15] = ACTIONS(980), - [aux_sym_cmd_identifier_token16] = ACTIONS(980), - [aux_sym_cmd_identifier_token17] = ACTIONS(980), - [aux_sym_cmd_identifier_token18] = ACTIONS(980), - [aux_sym_cmd_identifier_token19] = ACTIONS(980), - [aux_sym_cmd_identifier_token20] = ACTIONS(980), - [aux_sym_cmd_identifier_token21] = ACTIONS(980), - [aux_sym_cmd_identifier_token22] = ACTIONS(980), - [aux_sym_cmd_identifier_token23] = ACTIONS(980), - [aux_sym_cmd_identifier_token24] = ACTIONS(980), - [aux_sym_cmd_identifier_token25] = ACTIONS(980), - [aux_sym_cmd_identifier_token26] = ACTIONS(980), - [aux_sym_cmd_identifier_token27] = ACTIONS(980), - [aux_sym_cmd_identifier_token28] = ACTIONS(980), - [aux_sym_cmd_identifier_token29] = ACTIONS(980), - [aux_sym_cmd_identifier_token30] = ACTIONS(980), - [aux_sym_cmd_identifier_token31] = ACTIONS(980), - [aux_sym_cmd_identifier_token32] = ACTIONS(980), - [aux_sym_cmd_identifier_token33] = ACTIONS(980), - [aux_sym_cmd_identifier_token34] = ACTIONS(980), - [aux_sym_cmd_identifier_token35] = ACTIONS(980), - [aux_sym_cmd_identifier_token36] = ACTIONS(980), - [anon_sym_true] = ACTIONS(980), - [anon_sym_false] = ACTIONS(980), - [anon_sym_null] = ACTIONS(980), - [aux_sym_cmd_identifier_token38] = ACTIONS(980), - [aux_sym_cmd_identifier_token39] = ACTIONS(980), - [aux_sym_cmd_identifier_token40] = ACTIONS(980), - [anon_sym_def] = ACTIONS(980), - [anon_sym_export_DASHenv] = ACTIONS(980), - [anon_sym_extern] = ACTIONS(980), - [anon_sym_module] = ACTIONS(980), - [anon_sym_use] = ACTIONS(980), - [anon_sym_LPAREN] = ACTIONS(980), - [anon_sym_DOLLAR] = ACTIONS(980), - [anon_sym_error] = ACTIONS(980), - [anon_sym_list] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_break] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_for] = ACTIONS(980), - [anon_sym_in] = ACTIONS(980), - [anon_sym_loop] = ACTIONS(980), - [anon_sym_make] = ACTIONS(980), - [anon_sym_while] = ACTIONS(980), - [anon_sym_do] = ACTIONS(980), - [anon_sym_if] = ACTIONS(980), - [anon_sym_else] = ACTIONS(980), - [anon_sym_match] = ACTIONS(980), - [anon_sym_RBRACE] = ACTIONS(980), - [anon_sym_try] = ACTIONS(980), - [anon_sym_catch] = ACTIONS(980), - [anon_sym_return] = ACTIONS(980), - [anon_sym_source] = ACTIONS(980), - [anon_sym_source_DASHenv] = ACTIONS(980), - [anon_sym_register] = ACTIONS(980), - [anon_sym_hide] = ACTIONS(980), - [anon_sym_hide_DASHenv] = ACTIONS(980), - [anon_sym_overlay] = ACTIONS(980), - [anon_sym_new] = ACTIONS(980), - [anon_sym_as] = ACTIONS(980), - [anon_sym_QMARK2] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(980), - [anon_sym_DOT_DOT2] = ACTIONS(980), - [anon_sym_DOT] = ACTIONS(980), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(982), - [anon_sym_DOT_DOT_LT2] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(980), - [aux_sym__val_number_decimal_token1] = ACTIONS(980), - [aux_sym__val_number_decimal_token2] = ACTIONS(980), - [aux_sym__val_number_decimal_token3] = ACTIONS(980), - [aux_sym__val_number_decimal_token4] = ACTIONS(980), - [aux_sym__val_number_token1] = ACTIONS(980), - [aux_sym__val_number_token2] = ACTIONS(980), - [aux_sym__val_number_token3] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(980), - [sym__str_single_quotes] = ACTIONS(980), - [sym__str_back_ticks] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(980), - [sym__entry_separator] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(264), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [anon_sym_null] = ACTIONS(1733), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1737), + [aux_sym_cmd_identifier_token40] = ACTIONS(1737), + [sym__newline] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_if] = ACTIONS(479), + [aux_sym_ctrl_match_token1] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1743), + [aux_sym__val_number_decimal_token2] = ACTIONS(1745), + [aux_sym__val_number_decimal_token3] = ACTIONS(1747), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [260] = { + [sym_cmd_identifier] = STATE(4558), + [sym_ctrl_if_parenthesized] = STATE(4983), + [sym_block] = STATE(4984), + [sym__expression_parenthesized] = STATE(4984), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3734), + [sym_expr_parenthesized] = STATE(1961), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1934), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3012), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_command] = STATE(4984), [sym_comment] = STATE(260), - [anon_sym_export] = ACTIONS(1589), - [anon_sym_alias] = ACTIONS(1589), - [anon_sym_let] = ACTIONS(1589), - [anon_sym_let_DASHenv] = ACTIONS(1589), - [anon_sym_mut] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [aux_sym_cmd_identifier_token1] = ACTIONS(1589), - [aux_sym_cmd_identifier_token2] = ACTIONS(1589), - [aux_sym_cmd_identifier_token3] = ACTIONS(1589), - [aux_sym_cmd_identifier_token4] = ACTIONS(1589), - [aux_sym_cmd_identifier_token5] = ACTIONS(1589), - [aux_sym_cmd_identifier_token6] = ACTIONS(1589), - [aux_sym_cmd_identifier_token7] = ACTIONS(1589), - [aux_sym_cmd_identifier_token8] = ACTIONS(1589), - [aux_sym_cmd_identifier_token9] = ACTIONS(1589), - [aux_sym_cmd_identifier_token10] = ACTIONS(1589), - [aux_sym_cmd_identifier_token11] = ACTIONS(1589), - [aux_sym_cmd_identifier_token12] = ACTIONS(1589), - [aux_sym_cmd_identifier_token13] = ACTIONS(1589), - [aux_sym_cmd_identifier_token14] = ACTIONS(1589), - [aux_sym_cmd_identifier_token15] = ACTIONS(1589), - [aux_sym_cmd_identifier_token16] = ACTIONS(1589), - [aux_sym_cmd_identifier_token17] = ACTIONS(1589), - [aux_sym_cmd_identifier_token18] = ACTIONS(1589), - [aux_sym_cmd_identifier_token19] = ACTIONS(1589), - [aux_sym_cmd_identifier_token20] = ACTIONS(1589), - [aux_sym_cmd_identifier_token21] = ACTIONS(1589), - [aux_sym_cmd_identifier_token22] = ACTIONS(1589), - [aux_sym_cmd_identifier_token23] = ACTIONS(1589), - [aux_sym_cmd_identifier_token24] = ACTIONS(1589), - [aux_sym_cmd_identifier_token25] = ACTIONS(1589), - [aux_sym_cmd_identifier_token26] = ACTIONS(1589), - [aux_sym_cmd_identifier_token27] = ACTIONS(1589), - [aux_sym_cmd_identifier_token28] = ACTIONS(1589), - [aux_sym_cmd_identifier_token29] = ACTIONS(1589), - [aux_sym_cmd_identifier_token30] = ACTIONS(1589), - [aux_sym_cmd_identifier_token31] = ACTIONS(1589), - [aux_sym_cmd_identifier_token32] = ACTIONS(1589), - [aux_sym_cmd_identifier_token33] = ACTIONS(1589), - [aux_sym_cmd_identifier_token34] = ACTIONS(1589), - [aux_sym_cmd_identifier_token35] = ACTIONS(1589), - [aux_sym_cmd_identifier_token36] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [anon_sym_null] = ACTIONS(1591), - [aux_sym_cmd_identifier_token38] = ACTIONS(1589), - [aux_sym_cmd_identifier_token39] = ACTIONS(1591), - [aux_sym_cmd_identifier_token40] = ACTIONS(1591), - [anon_sym_def] = ACTIONS(1589), - [anon_sym_export_DASHenv] = ACTIONS(1589), - [anon_sym_extern] = ACTIONS(1589), - [anon_sym_module] = ACTIONS(1589), - [anon_sym_use] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_DOLLAR] = ACTIONS(1591), - [anon_sym_error] = ACTIONS(1589), - [anon_sym_list] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_loop] = ACTIONS(1589), - [anon_sym_make] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_else] = ACTIONS(1589), - [anon_sym_match] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_try] = ACTIONS(1589), - [anon_sym_catch] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_source] = ACTIONS(1589), - [anon_sym_source_DASHenv] = ACTIONS(1589), - [anon_sym_register] = ACTIONS(1589), - [anon_sym_hide] = ACTIONS(1589), - [anon_sym_hide_DASHenv] = ACTIONS(1589), - [anon_sym_overlay] = ACTIONS(1589), - [anon_sym_new] = ACTIONS(1589), - [anon_sym_as] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1591), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1591), - [anon_sym_DOT_DOT2] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), - [aux_sym__immediate_decimal_token2] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1591), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token3] = ACTIONS(1591), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(1591), - [aux_sym__val_number_token2] = ACTIONS(1591), - [aux_sym__val_number_token3] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym__str_single_quotes] = ACTIONS(1591), - [sym__str_back_ticks] = ACTIONS(1591), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1591), - [anon_sym_PLUS] = ACTIONS(1589), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1589), + [aux_sym_shebang_repeat1] = STATE(1022), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [anon_sym_null] = ACTIONS(1733), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1737), + [aux_sym_cmd_identifier_token40] = ACTIONS(1737), + [sym__newline] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_if] = ACTIONS(479), + [aux_sym_ctrl_match_token1] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1743), + [aux_sym__val_number_decimal_token2] = ACTIONS(1745), + [aux_sym__val_number_decimal_token3] = ACTIONS(1747), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [261] = { + [sym_cmd_identifier] = STATE(4558), + [sym_ctrl_if_parenthesized] = STATE(4983), + [sym_block] = STATE(4984), + [sym__expression_parenthesized] = STATE(4984), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3734), + [sym_expr_parenthesized] = STATE(1961), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1934), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3012), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_command] = STATE(4984), [sym_comment] = STATE(261), - [anon_sym_export] = ACTIONS(1648), - [anon_sym_alias] = ACTIONS(1648), - [anon_sym_let] = ACTIONS(1648), - [anon_sym_let_DASHenv] = ACTIONS(1648), - [anon_sym_mut] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1648), - [aux_sym_cmd_identifier_token1] = ACTIONS(1648), - [aux_sym_cmd_identifier_token2] = ACTIONS(1648), - [aux_sym_cmd_identifier_token3] = ACTIONS(1648), - [aux_sym_cmd_identifier_token4] = ACTIONS(1648), - [aux_sym_cmd_identifier_token5] = ACTIONS(1648), - [aux_sym_cmd_identifier_token6] = ACTIONS(1648), - [aux_sym_cmd_identifier_token7] = ACTIONS(1648), - [aux_sym_cmd_identifier_token8] = ACTIONS(1648), - [aux_sym_cmd_identifier_token9] = ACTIONS(1648), - [aux_sym_cmd_identifier_token10] = ACTIONS(1648), - [aux_sym_cmd_identifier_token11] = ACTIONS(1648), - [aux_sym_cmd_identifier_token12] = ACTIONS(1648), - [aux_sym_cmd_identifier_token13] = ACTIONS(1648), - [aux_sym_cmd_identifier_token14] = ACTIONS(1648), - [aux_sym_cmd_identifier_token15] = ACTIONS(1648), - [aux_sym_cmd_identifier_token16] = ACTIONS(1648), - [aux_sym_cmd_identifier_token17] = ACTIONS(1648), - [aux_sym_cmd_identifier_token18] = ACTIONS(1648), - [aux_sym_cmd_identifier_token19] = ACTIONS(1648), - [aux_sym_cmd_identifier_token20] = ACTIONS(1648), - [aux_sym_cmd_identifier_token21] = ACTIONS(1648), - [aux_sym_cmd_identifier_token22] = ACTIONS(1648), - [aux_sym_cmd_identifier_token23] = ACTIONS(1648), - [aux_sym_cmd_identifier_token24] = ACTIONS(1648), - [aux_sym_cmd_identifier_token25] = ACTIONS(1648), - [aux_sym_cmd_identifier_token26] = ACTIONS(1648), - [aux_sym_cmd_identifier_token27] = ACTIONS(1648), - [aux_sym_cmd_identifier_token28] = ACTIONS(1648), - [aux_sym_cmd_identifier_token29] = ACTIONS(1648), - [aux_sym_cmd_identifier_token30] = ACTIONS(1648), - [aux_sym_cmd_identifier_token31] = ACTIONS(1648), - [aux_sym_cmd_identifier_token32] = ACTIONS(1648), - [aux_sym_cmd_identifier_token33] = ACTIONS(1648), - [aux_sym_cmd_identifier_token34] = ACTIONS(1648), - [aux_sym_cmd_identifier_token35] = ACTIONS(1648), - [aux_sym_cmd_identifier_token36] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [anon_sym_null] = ACTIONS(1650), - [aux_sym_cmd_identifier_token38] = ACTIONS(1648), - [aux_sym_cmd_identifier_token39] = ACTIONS(1650), - [aux_sym_cmd_identifier_token40] = ACTIONS(1650), - [anon_sym_def] = ACTIONS(1648), - [anon_sym_export_DASHenv] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1648), - [anon_sym_module] = ACTIONS(1648), - [anon_sym_use] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_DOLLAR] = ACTIONS(1650), - [anon_sym_error] = ACTIONS(1648), - [anon_sym_list] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_in] = ACTIONS(1648), - [anon_sym_loop] = ACTIONS(1648), - [anon_sym_make] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_do] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1648), - [anon_sym_match] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_try] = ACTIONS(1648), - [anon_sym_catch] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_source] = ACTIONS(1648), - [anon_sym_source_DASHenv] = ACTIONS(1648), - [anon_sym_register] = ACTIONS(1648), - [anon_sym_hide] = ACTIONS(1648), - [anon_sym_hide_DASHenv] = ACTIONS(1648), - [anon_sym_overlay] = ACTIONS(1648), - [anon_sym_new] = ACTIONS(1648), - [anon_sym_as] = ACTIONS(1648), - [anon_sym_LPAREN2] = ACTIONS(1650), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1650), - [anon_sym_DOT_DOT2] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), - [aux_sym__immediate_decimal_token2] = ACTIONS(1707), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token3] = ACTIONS(1650), - [aux_sym__val_number_decimal_token4] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1648), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1648), + [aux_sym_shebang_repeat1] = STATE(268), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [anon_sym_null] = ACTIONS(1733), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1737), + [aux_sym_cmd_identifier_token40] = ACTIONS(1737), + [sym__newline] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_if] = ACTIONS(479), + [aux_sym_ctrl_match_token1] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1743), + [aux_sym__val_number_decimal_token2] = ACTIONS(1745), + [aux_sym__val_number_decimal_token3] = ACTIONS(1747), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [262] = { [sym_comment] = STATE(262), - [anon_sym_export] = ACTIONS(1709), - [anon_sym_alias] = ACTIONS(1709), - [anon_sym_let] = ACTIONS(1709), - [anon_sym_let_DASHenv] = ACTIONS(1709), - [anon_sym_mut] = ACTIONS(1709), - [anon_sym_const] = ACTIONS(1709), - [aux_sym_cmd_identifier_token1] = ACTIONS(1709), - [aux_sym_cmd_identifier_token2] = ACTIONS(1709), - [aux_sym_cmd_identifier_token3] = ACTIONS(1709), - [aux_sym_cmd_identifier_token4] = ACTIONS(1709), - [aux_sym_cmd_identifier_token5] = ACTIONS(1709), - [aux_sym_cmd_identifier_token6] = ACTIONS(1709), - [aux_sym_cmd_identifier_token7] = ACTIONS(1709), - [aux_sym_cmd_identifier_token8] = ACTIONS(1709), - [aux_sym_cmd_identifier_token9] = ACTIONS(1709), - [aux_sym_cmd_identifier_token10] = ACTIONS(1709), - [aux_sym_cmd_identifier_token11] = ACTIONS(1709), - [aux_sym_cmd_identifier_token12] = ACTIONS(1709), - [aux_sym_cmd_identifier_token13] = ACTIONS(1709), - [aux_sym_cmd_identifier_token14] = ACTIONS(1709), - [aux_sym_cmd_identifier_token15] = ACTIONS(1709), - [aux_sym_cmd_identifier_token16] = ACTIONS(1709), - [aux_sym_cmd_identifier_token17] = ACTIONS(1709), - [aux_sym_cmd_identifier_token18] = ACTIONS(1709), - [aux_sym_cmd_identifier_token19] = ACTIONS(1709), - [aux_sym_cmd_identifier_token20] = ACTIONS(1709), - [aux_sym_cmd_identifier_token21] = ACTIONS(1709), - [aux_sym_cmd_identifier_token22] = ACTIONS(1709), - [aux_sym_cmd_identifier_token23] = ACTIONS(1709), - [aux_sym_cmd_identifier_token24] = ACTIONS(1709), - [aux_sym_cmd_identifier_token25] = ACTIONS(1709), - [aux_sym_cmd_identifier_token26] = ACTIONS(1709), - [aux_sym_cmd_identifier_token27] = ACTIONS(1709), - [aux_sym_cmd_identifier_token28] = ACTIONS(1709), - [aux_sym_cmd_identifier_token29] = ACTIONS(1709), - [aux_sym_cmd_identifier_token30] = ACTIONS(1709), - [aux_sym_cmd_identifier_token31] = ACTIONS(1709), - [aux_sym_cmd_identifier_token32] = ACTIONS(1709), - [aux_sym_cmd_identifier_token33] = ACTIONS(1709), - [aux_sym_cmd_identifier_token34] = ACTIONS(1709), - [aux_sym_cmd_identifier_token35] = ACTIONS(1709), - [aux_sym_cmd_identifier_token36] = ACTIONS(1709), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_null] = ACTIONS(1709), - [aux_sym_cmd_identifier_token38] = ACTIONS(1709), - [aux_sym_cmd_identifier_token39] = ACTIONS(1709), - [aux_sym_cmd_identifier_token40] = ACTIONS(1709), - [anon_sym_def] = ACTIONS(1709), - [anon_sym_export_DASHenv] = ACTIONS(1709), - [anon_sym_extern] = ACTIONS(1709), - [anon_sym_module] = ACTIONS(1709), - [anon_sym_use] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_error] = ACTIONS(1709), - [anon_sym_list] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_break] = ACTIONS(1709), - [anon_sym_continue] = ACTIONS(1709), - [anon_sym_for] = ACTIONS(1709), - [anon_sym_in] = ACTIONS(1709), - [anon_sym_loop] = ACTIONS(1709), - [anon_sym_make] = ACTIONS(1709), - [anon_sym_while] = ACTIONS(1709), - [anon_sym_do] = ACTIONS(1709), - [anon_sym_if] = ACTIONS(1709), - [anon_sym_else] = ACTIONS(1709), - [anon_sym_match] = ACTIONS(1709), - [anon_sym_RBRACE] = ACTIONS(1709), - [anon_sym_try] = ACTIONS(1709), - [anon_sym_catch] = ACTIONS(1709), - [anon_sym_return] = ACTIONS(1709), - [anon_sym_source] = ACTIONS(1709), - [anon_sym_source_DASHenv] = ACTIONS(1709), - [anon_sym_register] = ACTIONS(1709), - [anon_sym_hide] = ACTIONS(1709), - [anon_sym_hide_DASHenv] = ACTIONS(1709), - [anon_sym_overlay] = ACTIONS(1709), - [anon_sym_new] = ACTIONS(1709), - [anon_sym_as] = ACTIONS(1709), - [anon_sym_LPAREN2] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1709), - [anon_sym_DOT_DOT2] = ACTIONS(1713), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1715), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1715), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1709), - [aux_sym__val_number_decimal_token1] = ACTIONS(1709), - [aux_sym__val_number_decimal_token2] = ACTIONS(1709), - [aux_sym__val_number_decimal_token3] = ACTIONS(1709), - [aux_sym__val_number_decimal_token4] = ACTIONS(1709), - [aux_sym__val_number_token1] = ACTIONS(1709), - [aux_sym__val_number_token2] = ACTIONS(1709), - [aux_sym__val_number_token3] = ACTIONS(1709), - [anon_sym_DQUOTE] = ACTIONS(1709), - [sym__str_single_quotes] = ACTIONS(1709), - [sym__str_back_ticks] = ACTIONS(1709), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1709), - [sym__entry_separator] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1709), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1719), + [anon_sym_export] = ACTIONS(1034), + [anon_sym_alias] = ACTIONS(1034), + [anon_sym_let] = ACTIONS(1034), + [anon_sym_let_DASHenv] = ACTIONS(1034), + [anon_sym_mut] = ACTIONS(1034), + [anon_sym_const] = ACTIONS(1034), + [aux_sym_cmd_identifier_token1] = ACTIONS(1034), + [aux_sym_cmd_identifier_token2] = ACTIONS(1034), + [aux_sym_cmd_identifier_token3] = ACTIONS(1034), + [aux_sym_cmd_identifier_token4] = ACTIONS(1034), + [aux_sym_cmd_identifier_token5] = ACTIONS(1034), + [aux_sym_cmd_identifier_token6] = ACTIONS(1034), + [aux_sym_cmd_identifier_token7] = ACTIONS(1034), + [aux_sym_cmd_identifier_token8] = ACTIONS(1034), + [aux_sym_cmd_identifier_token9] = ACTIONS(1034), + [aux_sym_cmd_identifier_token10] = ACTIONS(1034), + [aux_sym_cmd_identifier_token11] = ACTIONS(1034), + [aux_sym_cmd_identifier_token12] = ACTIONS(1034), + [aux_sym_cmd_identifier_token13] = ACTIONS(1034), + [aux_sym_cmd_identifier_token14] = ACTIONS(1034), + [aux_sym_cmd_identifier_token15] = ACTIONS(1034), + [aux_sym_cmd_identifier_token16] = ACTIONS(1034), + [aux_sym_cmd_identifier_token17] = ACTIONS(1034), + [aux_sym_cmd_identifier_token18] = ACTIONS(1034), + [aux_sym_cmd_identifier_token19] = ACTIONS(1034), + [aux_sym_cmd_identifier_token20] = ACTIONS(1034), + [aux_sym_cmd_identifier_token21] = ACTIONS(1034), + [aux_sym_cmd_identifier_token22] = ACTIONS(1034), + [aux_sym_cmd_identifier_token23] = ACTIONS(1034), + [aux_sym_cmd_identifier_token24] = ACTIONS(1034), + [aux_sym_cmd_identifier_token25] = ACTIONS(1034), + [aux_sym_cmd_identifier_token26] = ACTIONS(1034), + [aux_sym_cmd_identifier_token27] = ACTIONS(1034), + [aux_sym_cmd_identifier_token28] = ACTIONS(1034), + [aux_sym_cmd_identifier_token29] = ACTIONS(1034), + [aux_sym_cmd_identifier_token30] = ACTIONS(1034), + [aux_sym_cmd_identifier_token31] = ACTIONS(1034), + [aux_sym_cmd_identifier_token32] = ACTIONS(1034), + [aux_sym_cmd_identifier_token33] = ACTIONS(1034), + [aux_sym_cmd_identifier_token34] = ACTIONS(1034), + [aux_sym_cmd_identifier_token35] = ACTIONS(1034), + [aux_sym_cmd_identifier_token36] = ACTIONS(1034), + [anon_sym_true] = ACTIONS(1034), + [anon_sym_false] = ACTIONS(1034), + [anon_sym_null] = ACTIONS(1034), + [aux_sym_cmd_identifier_token38] = ACTIONS(1034), + [aux_sym_cmd_identifier_token39] = ACTIONS(1034), + [aux_sym_cmd_identifier_token40] = ACTIONS(1034), + [anon_sym_def] = ACTIONS(1034), + [anon_sym_export_DASHenv] = ACTIONS(1034), + [anon_sym_extern] = ACTIONS(1034), + [anon_sym_module] = ACTIONS(1034), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_LPAREN] = ACTIONS(1034), + [anon_sym_DOLLAR] = ACTIONS(1034), + [anon_sym_error] = ACTIONS(1034), + [anon_sym_list] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_break] = ACTIONS(1034), + [anon_sym_continue] = ACTIONS(1034), + [anon_sym_for] = ACTIONS(1034), + [anon_sym_in] = ACTIONS(1034), + [anon_sym_loop] = ACTIONS(1034), + [anon_sym_make] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1034), + [anon_sym_do] = ACTIONS(1034), + [anon_sym_if] = ACTIONS(1034), + [anon_sym_else] = ACTIONS(1034), + [anon_sym_match] = ACTIONS(1034), + [anon_sym_RBRACE] = ACTIONS(1034), + [anon_sym_try] = ACTIONS(1034), + [anon_sym_catch] = ACTIONS(1034), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_source] = ACTIONS(1034), + [anon_sym_source_DASHenv] = ACTIONS(1034), + [anon_sym_register] = ACTIONS(1034), + [anon_sym_hide] = ACTIONS(1034), + [anon_sym_hide_DASHenv] = ACTIONS(1034), + [anon_sym_overlay] = ACTIONS(1034), + [anon_sym_new] = ACTIONS(1034), + [anon_sym_as] = ACTIONS(1034), + [anon_sym_QMARK2] = ACTIONS(1767), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1034), + [anon_sym_DOT_DOT2] = ACTIONS(1034), + [anon_sym_DOT] = ACTIONS(1034), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1036), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1036), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1034), + [aux_sym__val_number_decimal_token1] = ACTIONS(1034), + [aux_sym__val_number_decimal_token2] = ACTIONS(1034), + [aux_sym__val_number_decimal_token3] = ACTIONS(1034), + [aux_sym__val_number_decimal_token4] = ACTIONS(1034), + [aux_sym__val_number_token1] = ACTIONS(1034), + [aux_sym__val_number_token2] = ACTIONS(1034), + [aux_sym__val_number_token3] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1034), + [sym__str_single_quotes] = ACTIONS(1034), + [sym__str_back_ticks] = ACTIONS(1034), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1034), + [sym__entry_separator] = ACTIONS(1036), + [anon_sym_PLUS] = ACTIONS(1034), [anon_sym_POUND] = ACTIONS(3), }, [263] = { + [sym_cmd_identifier] = STATE(4558), + [sym_ctrl_if_parenthesized] = STATE(4985), + [sym_block] = STATE(4986), + [sym__expression_parenthesized] = STATE(4986), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3734), + [sym_expr_parenthesized] = STATE(1961), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1934), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3012), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_command] = STATE(4986), [sym_comment] = STATE(263), - [anon_sym_export] = ACTIONS(1589), - [anon_sym_alias] = ACTIONS(1589), - [anon_sym_let] = ACTIONS(1589), - [anon_sym_let_DASHenv] = ACTIONS(1589), - [anon_sym_mut] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [aux_sym_cmd_identifier_token1] = ACTIONS(1589), - [aux_sym_cmd_identifier_token2] = ACTIONS(1589), - [aux_sym_cmd_identifier_token3] = ACTIONS(1589), - [aux_sym_cmd_identifier_token4] = ACTIONS(1589), - [aux_sym_cmd_identifier_token5] = ACTIONS(1589), - [aux_sym_cmd_identifier_token6] = ACTIONS(1589), - [aux_sym_cmd_identifier_token7] = ACTIONS(1589), - [aux_sym_cmd_identifier_token8] = ACTIONS(1589), - [aux_sym_cmd_identifier_token9] = ACTIONS(1589), - [aux_sym_cmd_identifier_token10] = ACTIONS(1589), - [aux_sym_cmd_identifier_token11] = ACTIONS(1589), - [aux_sym_cmd_identifier_token12] = ACTIONS(1589), - [aux_sym_cmd_identifier_token13] = ACTIONS(1589), - [aux_sym_cmd_identifier_token14] = ACTIONS(1589), - [aux_sym_cmd_identifier_token15] = ACTIONS(1589), - [aux_sym_cmd_identifier_token16] = ACTIONS(1589), - [aux_sym_cmd_identifier_token17] = ACTIONS(1589), - [aux_sym_cmd_identifier_token18] = ACTIONS(1589), - [aux_sym_cmd_identifier_token19] = ACTIONS(1589), - [aux_sym_cmd_identifier_token20] = ACTIONS(1589), - [aux_sym_cmd_identifier_token21] = ACTIONS(1589), - [aux_sym_cmd_identifier_token22] = ACTIONS(1589), - [aux_sym_cmd_identifier_token23] = ACTIONS(1589), - [aux_sym_cmd_identifier_token24] = ACTIONS(1589), - [aux_sym_cmd_identifier_token25] = ACTIONS(1589), - [aux_sym_cmd_identifier_token26] = ACTIONS(1589), - [aux_sym_cmd_identifier_token27] = ACTIONS(1589), - [aux_sym_cmd_identifier_token28] = ACTIONS(1589), - [aux_sym_cmd_identifier_token29] = ACTIONS(1589), - [aux_sym_cmd_identifier_token30] = ACTIONS(1589), - [aux_sym_cmd_identifier_token31] = ACTIONS(1589), - [aux_sym_cmd_identifier_token32] = ACTIONS(1589), - [aux_sym_cmd_identifier_token33] = ACTIONS(1589), - [aux_sym_cmd_identifier_token34] = ACTIONS(1589), - [aux_sym_cmd_identifier_token35] = ACTIONS(1589), - [aux_sym_cmd_identifier_token36] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1589), - [anon_sym_false] = ACTIONS(1589), - [anon_sym_null] = ACTIONS(1589), - [aux_sym_cmd_identifier_token38] = ACTIONS(1589), - [aux_sym_cmd_identifier_token39] = ACTIONS(1589), - [aux_sym_cmd_identifier_token40] = ACTIONS(1589), - [anon_sym_def] = ACTIONS(1589), - [anon_sym_export_DASHenv] = ACTIONS(1589), - [anon_sym_extern] = ACTIONS(1589), - [anon_sym_module] = ACTIONS(1589), - [anon_sym_use] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_error] = ACTIONS(1589), - [anon_sym_list] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_loop] = ACTIONS(1589), - [anon_sym_make] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_else] = ACTIONS(1589), - [anon_sym_match] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1589), - [anon_sym_try] = ACTIONS(1589), - [anon_sym_catch] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_source] = ACTIONS(1589), - [anon_sym_source_DASHenv] = ACTIONS(1589), - [anon_sym_register] = ACTIONS(1589), - [anon_sym_hide] = ACTIONS(1589), - [anon_sym_hide_DASHenv] = ACTIONS(1589), - [anon_sym_overlay] = ACTIONS(1589), - [anon_sym_new] = ACTIONS(1589), - [anon_sym_as] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1591), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1589), - [anon_sym_DOT_DOT2] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1589), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1589), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1589), - [aux_sym__val_number_token1] = ACTIONS(1589), - [aux_sym__val_number_token2] = ACTIONS(1589), - [aux_sym__val_number_token3] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [sym__str_single_quotes] = ACTIONS(1589), - [sym__str_back_ticks] = ACTIONS(1589), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1589), - [sym__entry_separator] = ACTIONS(1591), - [anon_sym_PLUS] = ACTIONS(1589), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(269), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [anon_sym_null] = ACTIONS(1733), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1737), + [aux_sym_cmd_identifier_token40] = ACTIONS(1737), + [sym__newline] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_if] = ACTIONS(479), + [aux_sym_ctrl_match_token1] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1743), + [aux_sym__val_number_decimal_token2] = ACTIONS(1745), + [aux_sym__val_number_decimal_token3] = ACTIONS(1747), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [264] = { + [sym_cmd_identifier] = STATE(4558), + [sym_ctrl_if_parenthesized] = STATE(4987), + [sym_block] = STATE(4988), + [sym__expression_parenthesized] = STATE(4988), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3734), + [sym_expr_parenthesized] = STATE(1961), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1934), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3012), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_command] = STATE(4988), [sym_comment] = STATE(264), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_alias] = ACTIONS(1569), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_let_DASHenv] = ACTIONS(1569), - [anon_sym_mut] = ACTIONS(1569), - [anon_sym_const] = ACTIONS(1569), - [aux_sym_cmd_identifier_token1] = ACTIONS(1569), - [aux_sym_cmd_identifier_token2] = ACTIONS(1569), - [aux_sym_cmd_identifier_token3] = ACTIONS(1569), - [aux_sym_cmd_identifier_token4] = ACTIONS(1569), - [aux_sym_cmd_identifier_token5] = ACTIONS(1569), - [aux_sym_cmd_identifier_token6] = ACTIONS(1569), - [aux_sym_cmd_identifier_token7] = ACTIONS(1569), - [aux_sym_cmd_identifier_token8] = ACTIONS(1569), - [aux_sym_cmd_identifier_token9] = ACTIONS(1569), - [aux_sym_cmd_identifier_token10] = ACTIONS(1569), - [aux_sym_cmd_identifier_token11] = ACTIONS(1569), - [aux_sym_cmd_identifier_token12] = ACTIONS(1569), - [aux_sym_cmd_identifier_token13] = ACTIONS(1569), - [aux_sym_cmd_identifier_token14] = ACTIONS(1569), - [aux_sym_cmd_identifier_token15] = ACTIONS(1569), - [aux_sym_cmd_identifier_token16] = ACTIONS(1569), - [aux_sym_cmd_identifier_token17] = ACTIONS(1569), - [aux_sym_cmd_identifier_token18] = ACTIONS(1569), - [aux_sym_cmd_identifier_token19] = ACTIONS(1569), - [aux_sym_cmd_identifier_token20] = ACTIONS(1569), - [aux_sym_cmd_identifier_token21] = ACTIONS(1569), - [aux_sym_cmd_identifier_token22] = ACTIONS(1569), - [aux_sym_cmd_identifier_token23] = ACTIONS(1569), - [aux_sym_cmd_identifier_token24] = ACTIONS(1569), - [aux_sym_cmd_identifier_token25] = ACTIONS(1569), - [aux_sym_cmd_identifier_token26] = ACTIONS(1569), - [aux_sym_cmd_identifier_token27] = ACTIONS(1569), - [aux_sym_cmd_identifier_token28] = ACTIONS(1569), - [aux_sym_cmd_identifier_token29] = ACTIONS(1569), - [aux_sym_cmd_identifier_token30] = ACTIONS(1569), - [aux_sym_cmd_identifier_token31] = ACTIONS(1569), - [aux_sym_cmd_identifier_token32] = ACTIONS(1569), - [aux_sym_cmd_identifier_token33] = ACTIONS(1569), - [aux_sym_cmd_identifier_token34] = ACTIONS(1569), - [aux_sym_cmd_identifier_token35] = ACTIONS(1569), - [aux_sym_cmd_identifier_token36] = ACTIONS(1569), - [anon_sym_true] = ACTIONS(1569), - [anon_sym_false] = ACTIONS(1569), - [anon_sym_null] = ACTIONS(1569), - [aux_sym_cmd_identifier_token38] = ACTIONS(1569), - [aux_sym_cmd_identifier_token39] = ACTIONS(1569), - [aux_sym_cmd_identifier_token40] = ACTIONS(1569), - [anon_sym_def] = ACTIONS(1569), - [anon_sym_export_DASHenv] = ACTIONS(1569), - [anon_sym_extern] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_use] = ACTIONS(1569), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_DOLLAR] = ACTIONS(1569), - [anon_sym_error] = ACTIONS(1569), - [anon_sym_list] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_break] = ACTIONS(1569), - [anon_sym_continue] = ACTIONS(1569), - [anon_sym_for] = ACTIONS(1569), - [anon_sym_in] = ACTIONS(1569), - [anon_sym_loop] = ACTIONS(1569), - [anon_sym_make] = ACTIONS(1569), - [anon_sym_while] = ACTIONS(1569), - [anon_sym_do] = ACTIONS(1569), - [anon_sym_if] = ACTIONS(1569), - [anon_sym_else] = ACTIONS(1569), - [anon_sym_match] = ACTIONS(1569), - [anon_sym_RBRACE] = ACTIONS(1569), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_catch] = ACTIONS(1569), - [anon_sym_return] = ACTIONS(1569), - [anon_sym_source] = ACTIONS(1569), - [anon_sym_source_DASHenv] = ACTIONS(1569), - [anon_sym_register] = ACTIONS(1569), - [anon_sym_hide] = ACTIONS(1569), - [anon_sym_hide_DASHenv] = ACTIONS(1569), - [anon_sym_overlay] = ACTIONS(1569), - [anon_sym_new] = ACTIONS(1569), - [anon_sym_as] = ACTIONS(1569), - [anon_sym_LPAREN2] = ACTIONS(1571), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1569), - [anon_sym_DOT_DOT2] = ACTIONS(1569), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1571), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1571), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1569), - [aux_sym__val_number_decimal_token1] = ACTIONS(1569), - [aux_sym__val_number_decimal_token2] = ACTIONS(1569), - [aux_sym__val_number_decimal_token3] = ACTIONS(1569), - [aux_sym__val_number_decimal_token4] = ACTIONS(1569), - [aux_sym__val_number_token1] = ACTIONS(1569), - [aux_sym__val_number_token2] = ACTIONS(1569), - [aux_sym__val_number_token3] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(1569), - [sym__str_single_quotes] = ACTIONS(1569), - [sym__str_back_ticks] = ACTIONS(1569), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1569), - [sym__entry_separator] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1569), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1569), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1022), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [anon_sym_null] = ACTIONS(1733), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1737), + [aux_sym_cmd_identifier_token40] = ACTIONS(1737), + [sym__newline] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_if] = ACTIONS(479), + [aux_sym_ctrl_match_token1] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1743), + [aux_sym__val_number_decimal_token2] = ACTIONS(1745), + [aux_sym__val_number_decimal_token3] = ACTIONS(1747), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [265] = { + [sym_cmd_identifier] = STATE(4558), + [sym_ctrl_if_parenthesized] = STATE(4987), + [sym_block] = STATE(4988), + [sym__expression_parenthesized] = STATE(4988), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3734), + [sym_expr_parenthesized] = STATE(1961), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1934), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3012), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_command] = STATE(4988), [sym_comment] = STATE(265), - [anon_sym_export] = ACTIONS(1648), - [anon_sym_alias] = ACTIONS(1648), - [anon_sym_let] = ACTIONS(1648), - [anon_sym_let_DASHenv] = ACTIONS(1648), - [anon_sym_mut] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1648), - [aux_sym_cmd_identifier_token1] = ACTIONS(1648), - [aux_sym_cmd_identifier_token2] = ACTIONS(1648), - [aux_sym_cmd_identifier_token3] = ACTIONS(1648), - [aux_sym_cmd_identifier_token4] = ACTIONS(1648), - [aux_sym_cmd_identifier_token5] = ACTIONS(1648), - [aux_sym_cmd_identifier_token6] = ACTIONS(1648), - [aux_sym_cmd_identifier_token7] = ACTIONS(1648), - [aux_sym_cmd_identifier_token8] = ACTIONS(1648), - [aux_sym_cmd_identifier_token9] = ACTIONS(1648), - [aux_sym_cmd_identifier_token10] = ACTIONS(1648), - [aux_sym_cmd_identifier_token11] = ACTIONS(1648), - [aux_sym_cmd_identifier_token12] = ACTIONS(1648), - [aux_sym_cmd_identifier_token13] = ACTIONS(1648), - [aux_sym_cmd_identifier_token14] = ACTIONS(1648), - [aux_sym_cmd_identifier_token15] = ACTIONS(1648), - [aux_sym_cmd_identifier_token16] = ACTIONS(1648), - [aux_sym_cmd_identifier_token17] = ACTIONS(1648), - [aux_sym_cmd_identifier_token18] = ACTIONS(1648), - [aux_sym_cmd_identifier_token19] = ACTIONS(1648), - [aux_sym_cmd_identifier_token20] = ACTIONS(1648), - [aux_sym_cmd_identifier_token21] = ACTIONS(1648), - [aux_sym_cmd_identifier_token22] = ACTIONS(1648), - [aux_sym_cmd_identifier_token23] = ACTIONS(1648), - [aux_sym_cmd_identifier_token24] = ACTIONS(1648), - [aux_sym_cmd_identifier_token25] = ACTIONS(1648), - [aux_sym_cmd_identifier_token26] = ACTIONS(1648), - [aux_sym_cmd_identifier_token27] = ACTIONS(1648), - [aux_sym_cmd_identifier_token28] = ACTIONS(1648), - [aux_sym_cmd_identifier_token29] = ACTIONS(1648), - [aux_sym_cmd_identifier_token30] = ACTIONS(1648), - [aux_sym_cmd_identifier_token31] = ACTIONS(1648), - [aux_sym_cmd_identifier_token32] = ACTIONS(1648), - [aux_sym_cmd_identifier_token33] = ACTIONS(1648), - [aux_sym_cmd_identifier_token34] = ACTIONS(1648), - [aux_sym_cmd_identifier_token35] = ACTIONS(1648), - [aux_sym_cmd_identifier_token36] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1648), - [anon_sym_false] = ACTIONS(1648), - [anon_sym_null] = ACTIONS(1648), - [aux_sym_cmd_identifier_token38] = ACTIONS(1648), - [aux_sym_cmd_identifier_token39] = ACTIONS(1648), - [aux_sym_cmd_identifier_token40] = ACTIONS(1648), - [anon_sym_def] = ACTIONS(1648), - [anon_sym_export_DASHenv] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1648), - [anon_sym_module] = ACTIONS(1648), - [anon_sym_use] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_error] = ACTIONS(1648), - [anon_sym_list] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_in] = ACTIONS(1648), - [anon_sym_loop] = ACTIONS(1648), - [anon_sym_make] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_do] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1648), - [anon_sym_match] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1648), - [anon_sym_try] = ACTIONS(1648), - [anon_sym_catch] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_source] = ACTIONS(1648), - [anon_sym_source_DASHenv] = ACTIONS(1648), - [anon_sym_register] = ACTIONS(1648), - [anon_sym_hide] = ACTIONS(1648), - [anon_sym_hide_DASHenv] = ACTIONS(1648), - [anon_sym_overlay] = ACTIONS(1648), - [anon_sym_new] = ACTIONS(1648), - [anon_sym_as] = ACTIONS(1648), - [anon_sym_LPAREN2] = ACTIONS(1650), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1648), - [anon_sym_DOT_DOT2] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1648), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1648), - [aux_sym__val_number_decimal_token3] = ACTIONS(1648), - [aux_sym__val_number_decimal_token4] = ACTIONS(1648), - [aux_sym__val_number_token1] = ACTIONS(1648), - [aux_sym__val_number_token2] = ACTIONS(1648), - [aux_sym__val_number_token3] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1648), - [sym__str_single_quotes] = ACTIONS(1648), - [sym__str_back_ticks] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1648), - [sym__entry_separator] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1648), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [anon_sym_null] = ACTIONS(1733), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1737), + [aux_sym_cmd_identifier_token40] = ACTIONS(1737), + [sym__newline] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_if] = ACTIONS(479), + [aux_sym_ctrl_match_token1] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1743), + [aux_sym__val_number_decimal_token2] = ACTIONS(1745), + [aux_sym__val_number_decimal_token3] = ACTIONS(1747), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [266] = { + [sym_cmd_identifier] = STATE(4558), + [sym_ctrl_if_parenthesized] = STATE(4990), + [sym_block] = STATE(4991), + [sym__expression_parenthesized] = STATE(4991), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3734), + [sym_expr_parenthesized] = STATE(1961), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1934), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3012), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_command] = STATE(4991), [sym_comment] = STATE(266), - [anon_sym_export] = ACTIONS(1721), - [anon_sym_alias] = ACTIONS(1721), - [anon_sym_let] = ACTIONS(1721), - [anon_sym_let_DASHenv] = ACTIONS(1721), - [anon_sym_mut] = ACTIONS(1721), - [anon_sym_const] = ACTIONS(1721), - [aux_sym_cmd_identifier_token1] = ACTIONS(1721), - [aux_sym_cmd_identifier_token2] = ACTIONS(1721), - [aux_sym_cmd_identifier_token3] = ACTIONS(1721), - [aux_sym_cmd_identifier_token4] = ACTIONS(1721), - [aux_sym_cmd_identifier_token5] = ACTIONS(1721), - [aux_sym_cmd_identifier_token6] = ACTIONS(1721), - [aux_sym_cmd_identifier_token7] = ACTIONS(1721), - [aux_sym_cmd_identifier_token8] = ACTIONS(1721), - [aux_sym_cmd_identifier_token9] = ACTIONS(1721), - [aux_sym_cmd_identifier_token10] = ACTIONS(1721), - [aux_sym_cmd_identifier_token11] = ACTIONS(1721), - [aux_sym_cmd_identifier_token12] = ACTIONS(1721), - [aux_sym_cmd_identifier_token13] = ACTIONS(1721), - [aux_sym_cmd_identifier_token14] = ACTIONS(1721), - [aux_sym_cmd_identifier_token15] = ACTIONS(1721), - [aux_sym_cmd_identifier_token16] = ACTIONS(1721), - [aux_sym_cmd_identifier_token17] = ACTIONS(1721), - [aux_sym_cmd_identifier_token18] = ACTIONS(1721), - [aux_sym_cmd_identifier_token19] = ACTIONS(1721), - [aux_sym_cmd_identifier_token20] = ACTIONS(1721), - [aux_sym_cmd_identifier_token21] = ACTIONS(1721), - [aux_sym_cmd_identifier_token22] = ACTIONS(1721), - [aux_sym_cmd_identifier_token23] = ACTIONS(1721), - [aux_sym_cmd_identifier_token24] = ACTIONS(1721), - [aux_sym_cmd_identifier_token25] = ACTIONS(1721), - [aux_sym_cmd_identifier_token26] = ACTIONS(1721), - [aux_sym_cmd_identifier_token27] = ACTIONS(1721), - [aux_sym_cmd_identifier_token28] = ACTIONS(1721), - [aux_sym_cmd_identifier_token29] = ACTIONS(1721), - [aux_sym_cmd_identifier_token30] = ACTIONS(1721), - [aux_sym_cmd_identifier_token31] = ACTIONS(1721), - [aux_sym_cmd_identifier_token32] = ACTIONS(1721), - [aux_sym_cmd_identifier_token33] = ACTIONS(1721), - [aux_sym_cmd_identifier_token34] = ACTIONS(1721), - [aux_sym_cmd_identifier_token35] = ACTIONS(1721), - [aux_sym_cmd_identifier_token36] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_null] = ACTIONS(1721), - [aux_sym_cmd_identifier_token38] = ACTIONS(1721), - [aux_sym_cmd_identifier_token39] = ACTIONS(1721), - [aux_sym_cmd_identifier_token40] = ACTIONS(1721), - [anon_sym_def] = ACTIONS(1721), - [anon_sym_export_DASHenv] = ACTIONS(1721), - [anon_sym_extern] = ACTIONS(1721), - [anon_sym_module] = ACTIONS(1721), - [anon_sym_use] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1721), - [anon_sym_error] = ACTIONS(1721), - [anon_sym_list] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_break] = ACTIONS(1721), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_for] = ACTIONS(1721), - [anon_sym_in] = ACTIONS(1721), - [anon_sym_loop] = ACTIONS(1721), - [anon_sym_make] = ACTIONS(1721), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_do] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_else] = ACTIONS(1721), - [anon_sym_match] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_try] = ACTIONS(1721), - [anon_sym_catch] = ACTIONS(1721), - [anon_sym_return] = ACTIONS(1721), - [anon_sym_source] = ACTIONS(1721), - [anon_sym_source_DASHenv] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1721), - [anon_sym_hide] = ACTIONS(1721), - [anon_sym_hide_DASHenv] = ACTIONS(1721), - [anon_sym_overlay] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1721), - [anon_sym_as] = ACTIONS(1721), - [anon_sym_LPAREN2] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), - [anon_sym_DOT_DOT2] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1721), - [aux_sym__val_number_decimal_token3] = ACTIONS(1721), - [aux_sym__val_number_decimal_token4] = ACTIONS(1721), - [aux_sym__val_number_token1] = ACTIONS(1721), - [aux_sym__val_number_token2] = ACTIONS(1721), - [aux_sym__val_number_token3] = ACTIONS(1721), - [anon_sym_DQUOTE] = ACTIONS(1721), - [sym__str_single_quotes] = ACTIONS(1721), - [sym__str_back_ticks] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1721), - [sym__entry_separator] = ACTIONS(1723), - [anon_sym_PLUS] = ACTIONS(1721), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(273), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [anon_sym_null] = ACTIONS(1733), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1737), + [aux_sym_cmd_identifier_token40] = ACTIONS(1737), + [sym__newline] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_if] = ACTIONS(479), + [aux_sym_ctrl_match_token1] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1743), + [aux_sym__val_number_decimal_token2] = ACTIONS(1745), + [aux_sym__val_number_decimal_token3] = ACTIONS(1747), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [267] = { + [sym_cell_path] = STATE(467), + [sym_path] = STATE(431), [sym_comment] = STATE(267), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_alias] = ACTIONS(1569), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_let_DASHenv] = ACTIONS(1569), - [anon_sym_mut] = ACTIONS(1569), - [anon_sym_const] = ACTIONS(1569), - [aux_sym_cmd_identifier_token1] = ACTIONS(1569), - [aux_sym_cmd_identifier_token2] = ACTIONS(1569), - [aux_sym_cmd_identifier_token3] = ACTIONS(1569), - [aux_sym_cmd_identifier_token4] = ACTIONS(1569), - [aux_sym_cmd_identifier_token5] = ACTIONS(1569), - [aux_sym_cmd_identifier_token6] = ACTIONS(1569), - [aux_sym_cmd_identifier_token7] = ACTIONS(1569), - [aux_sym_cmd_identifier_token8] = ACTIONS(1569), - [aux_sym_cmd_identifier_token9] = ACTIONS(1569), - [aux_sym_cmd_identifier_token10] = ACTIONS(1569), - [aux_sym_cmd_identifier_token11] = ACTIONS(1569), - [aux_sym_cmd_identifier_token12] = ACTIONS(1569), - [aux_sym_cmd_identifier_token13] = ACTIONS(1569), - [aux_sym_cmd_identifier_token14] = ACTIONS(1569), - [aux_sym_cmd_identifier_token15] = ACTIONS(1569), - [aux_sym_cmd_identifier_token16] = ACTIONS(1569), - [aux_sym_cmd_identifier_token17] = ACTIONS(1569), - [aux_sym_cmd_identifier_token18] = ACTIONS(1569), - [aux_sym_cmd_identifier_token19] = ACTIONS(1569), - [aux_sym_cmd_identifier_token20] = ACTIONS(1569), - [aux_sym_cmd_identifier_token21] = ACTIONS(1569), - [aux_sym_cmd_identifier_token22] = ACTIONS(1569), - [aux_sym_cmd_identifier_token23] = ACTIONS(1569), - [aux_sym_cmd_identifier_token24] = ACTIONS(1569), - [aux_sym_cmd_identifier_token25] = ACTIONS(1569), - [aux_sym_cmd_identifier_token26] = ACTIONS(1569), - [aux_sym_cmd_identifier_token27] = ACTIONS(1569), - [aux_sym_cmd_identifier_token28] = ACTIONS(1569), - [aux_sym_cmd_identifier_token29] = ACTIONS(1569), - [aux_sym_cmd_identifier_token30] = ACTIONS(1569), - [aux_sym_cmd_identifier_token31] = ACTIONS(1569), - [aux_sym_cmd_identifier_token32] = ACTIONS(1569), - [aux_sym_cmd_identifier_token33] = ACTIONS(1569), - [aux_sym_cmd_identifier_token34] = ACTIONS(1569), - [aux_sym_cmd_identifier_token35] = ACTIONS(1569), - [aux_sym_cmd_identifier_token36] = ACTIONS(1569), - [anon_sym_true] = ACTIONS(1569), - [anon_sym_false] = ACTIONS(1569), - [anon_sym_null] = ACTIONS(1569), - [aux_sym_cmd_identifier_token38] = ACTIONS(1569), - [aux_sym_cmd_identifier_token39] = ACTIONS(1569), - [aux_sym_cmd_identifier_token40] = ACTIONS(1569), - [anon_sym_def] = ACTIONS(1569), - [anon_sym_export_DASHenv] = ACTIONS(1569), - [anon_sym_extern] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_use] = ACTIONS(1569), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_DOLLAR] = ACTIONS(1569), - [anon_sym_error] = ACTIONS(1569), - [anon_sym_list] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_break] = ACTIONS(1569), - [anon_sym_continue] = ACTIONS(1569), - [anon_sym_for] = ACTIONS(1569), - [anon_sym_in] = ACTIONS(1569), - [anon_sym_loop] = ACTIONS(1569), - [anon_sym_make] = ACTIONS(1569), - [anon_sym_while] = ACTIONS(1569), - [anon_sym_do] = ACTIONS(1569), - [anon_sym_if] = ACTIONS(1569), - [anon_sym_else] = ACTIONS(1569), - [anon_sym_match] = ACTIONS(1569), - [anon_sym_RBRACE] = ACTIONS(1569), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_catch] = ACTIONS(1569), - [anon_sym_return] = ACTIONS(1569), - [anon_sym_source] = ACTIONS(1569), - [anon_sym_source_DASHenv] = ACTIONS(1569), - [anon_sym_register] = ACTIONS(1569), - [anon_sym_hide] = ACTIONS(1569), - [anon_sym_hide_DASHenv] = ACTIONS(1569), - [anon_sym_overlay] = ACTIONS(1569), - [anon_sym_new] = ACTIONS(1569), - [anon_sym_as] = ACTIONS(1569), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1569), - [anon_sym_DOT_DOT2] = ACTIONS(1569), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1571), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1571), - [aux_sym__immediate_decimal_token1] = ACTIONS(1725), - [aux_sym__immediate_decimal_token2] = ACTIONS(1727), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1569), - [aux_sym__val_number_decimal_token1] = ACTIONS(1569), - [aux_sym__val_number_decimal_token2] = ACTIONS(1569), - [aux_sym__val_number_decimal_token3] = ACTIONS(1569), - [aux_sym__val_number_decimal_token4] = ACTIONS(1569), - [aux_sym__val_number_token1] = ACTIONS(1569), - [aux_sym__val_number_token2] = ACTIONS(1569), - [aux_sym__val_number_token3] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(1569), - [sym__str_single_quotes] = ACTIONS(1569), - [sym__str_back_ticks] = ACTIONS(1569), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1569), - [sym__entry_separator] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(315), + [anon_sym_export] = ACTIONS(1011), + [anon_sym_alias] = ACTIONS(1011), + [anon_sym_let] = ACTIONS(1011), + [anon_sym_let_DASHenv] = ACTIONS(1011), + [anon_sym_mut] = ACTIONS(1011), + [anon_sym_const] = ACTIONS(1011), + [aux_sym_cmd_identifier_token1] = ACTIONS(1011), + [aux_sym_cmd_identifier_token2] = ACTIONS(1011), + [aux_sym_cmd_identifier_token3] = ACTIONS(1011), + [aux_sym_cmd_identifier_token4] = ACTIONS(1011), + [aux_sym_cmd_identifier_token5] = ACTIONS(1011), + [aux_sym_cmd_identifier_token6] = ACTIONS(1011), + [aux_sym_cmd_identifier_token7] = ACTIONS(1011), + [aux_sym_cmd_identifier_token8] = ACTIONS(1011), + [aux_sym_cmd_identifier_token9] = ACTIONS(1011), + [aux_sym_cmd_identifier_token10] = ACTIONS(1011), + [aux_sym_cmd_identifier_token11] = ACTIONS(1011), + [aux_sym_cmd_identifier_token12] = ACTIONS(1011), + [aux_sym_cmd_identifier_token13] = ACTIONS(1011), + [aux_sym_cmd_identifier_token14] = ACTIONS(1011), + [aux_sym_cmd_identifier_token15] = ACTIONS(1011), + [aux_sym_cmd_identifier_token16] = ACTIONS(1011), + [aux_sym_cmd_identifier_token17] = ACTIONS(1011), + [aux_sym_cmd_identifier_token18] = ACTIONS(1011), + [aux_sym_cmd_identifier_token19] = ACTIONS(1011), + [aux_sym_cmd_identifier_token20] = ACTIONS(1011), + [aux_sym_cmd_identifier_token21] = ACTIONS(1011), + [aux_sym_cmd_identifier_token22] = ACTIONS(1011), + [aux_sym_cmd_identifier_token23] = ACTIONS(1011), + [aux_sym_cmd_identifier_token24] = ACTIONS(1011), + [aux_sym_cmd_identifier_token25] = ACTIONS(1011), + [aux_sym_cmd_identifier_token26] = ACTIONS(1011), + [aux_sym_cmd_identifier_token27] = ACTIONS(1011), + [aux_sym_cmd_identifier_token28] = ACTIONS(1011), + [aux_sym_cmd_identifier_token29] = ACTIONS(1011), + [aux_sym_cmd_identifier_token30] = ACTIONS(1011), + [aux_sym_cmd_identifier_token31] = ACTIONS(1011), + [aux_sym_cmd_identifier_token32] = ACTIONS(1011), + [aux_sym_cmd_identifier_token33] = ACTIONS(1011), + [aux_sym_cmd_identifier_token34] = ACTIONS(1011), + [aux_sym_cmd_identifier_token35] = ACTIONS(1011), + [aux_sym_cmd_identifier_token36] = ACTIONS(1011), + [anon_sym_true] = ACTIONS(1013), + [anon_sym_false] = ACTIONS(1013), + [anon_sym_null] = ACTIONS(1013), + [aux_sym_cmd_identifier_token38] = ACTIONS(1011), + [aux_sym_cmd_identifier_token39] = ACTIONS(1013), + [aux_sym_cmd_identifier_token40] = ACTIONS(1013), + [anon_sym_def] = ACTIONS(1011), + [anon_sym_export_DASHenv] = ACTIONS(1011), + [anon_sym_extern] = ACTIONS(1011), + [anon_sym_module] = ACTIONS(1011), + [anon_sym_use] = ACTIONS(1011), + [anon_sym_LPAREN] = ACTIONS(1013), + [anon_sym_COMMA] = ACTIONS(1013), + [anon_sym_DOLLAR] = ACTIONS(1013), + [anon_sym_error] = ACTIONS(1011), + [anon_sym_list] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_break] = ACTIONS(1011), + [anon_sym_continue] = ACTIONS(1011), + [anon_sym_for] = ACTIONS(1011), + [anon_sym_in] = ACTIONS(1011), + [anon_sym_loop] = ACTIONS(1011), + [anon_sym_make] = ACTIONS(1011), + [anon_sym_while] = ACTIONS(1011), + [anon_sym_do] = ACTIONS(1011), + [anon_sym_if] = ACTIONS(1011), + [anon_sym_else] = ACTIONS(1011), + [anon_sym_match] = ACTIONS(1011), + [anon_sym_RBRACE] = ACTIONS(1013), + [anon_sym_try] = ACTIONS(1011), + [anon_sym_catch] = ACTIONS(1011), + [anon_sym_return] = ACTIONS(1011), + [anon_sym_source] = ACTIONS(1011), + [anon_sym_source_DASHenv] = ACTIONS(1011), + [anon_sym_register] = ACTIONS(1011), + [anon_sym_hide] = ACTIONS(1011), + [anon_sym_hide_DASHenv] = ACTIONS(1011), + [anon_sym_overlay] = ACTIONS(1011), + [anon_sym_new] = ACTIONS(1011), + [anon_sym_as] = ACTIONS(1011), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1013), + [anon_sym_DOT] = ACTIONS(1769), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1013), + [aux_sym__val_number_decimal_token1] = ACTIONS(1011), + [aux_sym__val_number_decimal_token2] = ACTIONS(1013), + [aux_sym__val_number_decimal_token3] = ACTIONS(1013), + [aux_sym__val_number_decimal_token4] = ACTIONS(1013), + [aux_sym__val_number_token1] = ACTIONS(1013), + [aux_sym__val_number_token2] = ACTIONS(1013), + [aux_sym__val_number_token3] = ACTIONS(1013), + [anon_sym_DQUOTE] = ACTIONS(1013), + [sym__str_single_quotes] = ACTIONS(1013), + [sym__str_back_ticks] = ACTIONS(1013), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1013), + [aux_sym_record_entry_token1] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_POUND] = ACTIONS(247), }, [268] = { + [sym_cmd_identifier] = STATE(4558), + [sym_ctrl_if_parenthesized] = STATE(4999), + [sym_block] = STATE(5001), + [sym__expression_parenthesized] = STATE(5001), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3734), + [sym_expr_parenthesized] = STATE(1961), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1934), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3012), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_command] = STATE(5001), [sym_comment] = STATE(268), - [anon_sym_export] = ACTIONS(1589), - [anon_sym_alias] = ACTIONS(1589), - [anon_sym_let] = ACTIONS(1589), - [anon_sym_let_DASHenv] = ACTIONS(1589), - [anon_sym_mut] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [aux_sym_cmd_identifier_token1] = ACTIONS(1589), - [aux_sym_cmd_identifier_token2] = ACTIONS(1589), - [aux_sym_cmd_identifier_token3] = ACTIONS(1589), - [aux_sym_cmd_identifier_token4] = ACTIONS(1589), - [aux_sym_cmd_identifier_token5] = ACTIONS(1589), - [aux_sym_cmd_identifier_token6] = ACTIONS(1589), - [aux_sym_cmd_identifier_token7] = ACTIONS(1589), - [aux_sym_cmd_identifier_token8] = ACTIONS(1589), - [aux_sym_cmd_identifier_token9] = ACTIONS(1589), - [aux_sym_cmd_identifier_token10] = ACTIONS(1589), - [aux_sym_cmd_identifier_token11] = ACTIONS(1589), - [aux_sym_cmd_identifier_token12] = ACTIONS(1589), - [aux_sym_cmd_identifier_token13] = ACTIONS(1589), - [aux_sym_cmd_identifier_token14] = ACTIONS(1589), - [aux_sym_cmd_identifier_token15] = ACTIONS(1589), - [aux_sym_cmd_identifier_token16] = ACTIONS(1589), - [aux_sym_cmd_identifier_token17] = ACTIONS(1589), - [aux_sym_cmd_identifier_token18] = ACTIONS(1589), - [aux_sym_cmd_identifier_token19] = ACTIONS(1589), - [aux_sym_cmd_identifier_token20] = ACTIONS(1589), - [aux_sym_cmd_identifier_token21] = ACTIONS(1589), - [aux_sym_cmd_identifier_token22] = ACTIONS(1589), - [aux_sym_cmd_identifier_token23] = ACTIONS(1589), - [aux_sym_cmd_identifier_token24] = ACTIONS(1589), - [aux_sym_cmd_identifier_token25] = ACTIONS(1589), - [aux_sym_cmd_identifier_token26] = ACTIONS(1589), - [aux_sym_cmd_identifier_token27] = ACTIONS(1589), - [aux_sym_cmd_identifier_token28] = ACTIONS(1589), - [aux_sym_cmd_identifier_token29] = ACTIONS(1589), - [aux_sym_cmd_identifier_token30] = ACTIONS(1589), - [aux_sym_cmd_identifier_token31] = ACTIONS(1589), - [aux_sym_cmd_identifier_token32] = ACTIONS(1589), - [aux_sym_cmd_identifier_token33] = ACTIONS(1589), - [aux_sym_cmd_identifier_token34] = ACTIONS(1589), - [aux_sym_cmd_identifier_token35] = ACTIONS(1589), - [aux_sym_cmd_identifier_token36] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1589), - [anon_sym_false] = ACTIONS(1589), - [anon_sym_null] = ACTIONS(1589), - [aux_sym_cmd_identifier_token38] = ACTIONS(1589), - [aux_sym_cmd_identifier_token39] = ACTIONS(1589), - [aux_sym_cmd_identifier_token40] = ACTIONS(1589), - [anon_sym_def] = ACTIONS(1589), - [anon_sym_export_DASHenv] = ACTIONS(1589), - [anon_sym_extern] = ACTIONS(1589), - [anon_sym_module] = ACTIONS(1589), - [anon_sym_use] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_error] = ACTIONS(1589), - [anon_sym_list] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_loop] = ACTIONS(1589), - [anon_sym_make] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_else] = ACTIONS(1589), - [anon_sym_match] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1589), - [anon_sym_try] = ACTIONS(1589), - [anon_sym_catch] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_source] = ACTIONS(1589), - [anon_sym_source_DASHenv] = ACTIONS(1589), - [anon_sym_register] = ACTIONS(1589), - [anon_sym_hide] = ACTIONS(1589), - [anon_sym_hide_DASHenv] = ACTIONS(1589), - [anon_sym_overlay] = ACTIONS(1589), - [anon_sym_new] = ACTIONS(1589), - [anon_sym_as] = ACTIONS(1589), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1589), - [anon_sym_DOT_DOT2] = ACTIONS(1589), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), - [aux_sym__immediate_decimal_token2] = ACTIONS(1731), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1589), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1589), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1589), - [aux_sym__val_number_token1] = ACTIONS(1589), - [aux_sym__val_number_token2] = ACTIONS(1589), - [aux_sym__val_number_token3] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [sym__str_single_quotes] = ACTIONS(1589), - [sym__str_back_ticks] = ACTIONS(1589), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1589), - [sym__entry_separator] = ACTIONS(1591), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1022), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [anon_sym_null] = ACTIONS(1733), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1737), + [aux_sym_cmd_identifier_token40] = ACTIONS(1737), + [sym__newline] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_if] = ACTIONS(479), + [aux_sym_ctrl_match_token1] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1743), + [aux_sym__val_number_decimal_token2] = ACTIONS(1745), + [aux_sym__val_number_decimal_token3] = ACTIONS(1747), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), }, [269] = { + [sym_cmd_identifier] = STATE(4558), + [sym_ctrl_if_parenthesized] = STATE(5002), + [sym_block] = STATE(5003), + [sym__expression_parenthesized] = STATE(5003), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3734), + [sym_expr_parenthesized] = STATE(1961), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1934), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3012), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_command] = STATE(5003), [sym_comment] = STATE(269), - [ts_builtin_sym_end] = ACTIONS(1733), - [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), - [aux_sym_cmd_identifier_token1] = ACTIONS(1735), - [aux_sym_cmd_identifier_token2] = ACTIONS(1735), - [aux_sym_cmd_identifier_token3] = ACTIONS(1735), - [aux_sym_cmd_identifier_token4] = ACTIONS(1735), - [aux_sym_cmd_identifier_token5] = ACTIONS(1735), - [aux_sym_cmd_identifier_token6] = ACTIONS(1735), - [aux_sym_cmd_identifier_token7] = ACTIONS(1735), - [aux_sym_cmd_identifier_token8] = ACTIONS(1735), - [aux_sym_cmd_identifier_token9] = ACTIONS(1735), - [aux_sym_cmd_identifier_token10] = ACTIONS(1735), - [aux_sym_cmd_identifier_token11] = ACTIONS(1735), - [aux_sym_cmd_identifier_token12] = ACTIONS(1735), - [aux_sym_cmd_identifier_token13] = ACTIONS(1735), - [aux_sym_cmd_identifier_token14] = ACTIONS(1735), - [aux_sym_cmd_identifier_token15] = ACTIONS(1735), - [aux_sym_cmd_identifier_token16] = ACTIONS(1735), - [aux_sym_cmd_identifier_token17] = ACTIONS(1735), - [aux_sym_cmd_identifier_token18] = ACTIONS(1735), - [aux_sym_cmd_identifier_token19] = ACTIONS(1735), - [aux_sym_cmd_identifier_token20] = ACTIONS(1735), - [aux_sym_cmd_identifier_token21] = ACTIONS(1735), - [aux_sym_cmd_identifier_token22] = ACTIONS(1735), - [aux_sym_cmd_identifier_token23] = ACTIONS(1735), - [aux_sym_cmd_identifier_token24] = ACTIONS(1733), - [aux_sym_cmd_identifier_token25] = ACTIONS(1735), - [aux_sym_cmd_identifier_token26] = ACTIONS(1733), - [aux_sym_cmd_identifier_token27] = ACTIONS(1735), - [aux_sym_cmd_identifier_token28] = ACTIONS(1735), - [aux_sym_cmd_identifier_token29] = ACTIONS(1735), - [aux_sym_cmd_identifier_token30] = ACTIONS(1735), - [aux_sym_cmd_identifier_token31] = ACTIONS(1733), - [aux_sym_cmd_identifier_token32] = ACTIONS(1733), - [aux_sym_cmd_identifier_token33] = ACTIONS(1733), - [aux_sym_cmd_identifier_token34] = ACTIONS(1733), - [aux_sym_cmd_identifier_token35] = ACTIONS(1733), - [aux_sym_cmd_identifier_token36] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1733), - [anon_sym_false] = ACTIONS(1733), + [aux_sym_shebang_repeat1] = STATE(1022), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), [anon_sym_null] = ACTIONS(1733), [aux_sym_cmd_identifier_token38] = ACTIONS(1735), - [aux_sym_cmd_identifier_token39] = ACTIONS(1733), - [aux_sym_cmd_identifier_token40] = ACTIONS(1733), - [sym__newline] = ACTIONS(1733), - [anon_sym_SEMI] = ACTIONS(1733), - [anon_sym_def] = 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(1733), - [anon_sym_LPAREN] = ACTIONS(1733), - [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), - [aux_sym_ctrl_match_token1] = ACTIONS(1733), - [anon_sym_DOT_DOT] = 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(1733), - [aux_sym_expr_unary_token1] = ACTIONS(1733), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1733), - [anon_sym_DOT_DOT_LT] = ACTIONS(1733), - [aux_sym__val_number_decimal_token1] = ACTIONS(1735), - [aux_sym__val_number_decimal_token2] = ACTIONS(1733), - [aux_sym__val_number_decimal_token3] = ACTIONS(1733), - [aux_sym__val_number_decimal_token4] = ACTIONS(1733), - [aux_sym__val_number_token1] = ACTIONS(1733), - [aux_sym__val_number_token2] = ACTIONS(1733), - [aux_sym__val_number_token3] = ACTIONS(1733), - [anon_sym_0b] = ACTIONS(1735), - [anon_sym_0o] = ACTIONS(1735), - [anon_sym_0x] = ACTIONS(1735), - [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), - [aux_sym_env_var_token1] = ACTIONS(1735), - [anon_sym_CARET] = ACTIONS(1733), + [aux_sym_cmd_identifier_token39] = ACTIONS(1737), + [aux_sym_cmd_identifier_token40] = ACTIONS(1737), + [sym__newline] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_if] = ACTIONS(479), + [aux_sym_ctrl_match_token1] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1743), + [aux_sym__val_number_decimal_token2] = ACTIONS(1745), + [aux_sym__val_number_decimal_token3] = ACTIONS(1747), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [270] = { + [sym_cmd_identifier] = STATE(4558), + [sym_ctrl_if_parenthesized] = STATE(5002), + [sym_block] = STATE(5003), + [sym__expression_parenthesized] = STATE(5003), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3734), + [sym_expr_parenthesized] = STATE(1961), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1934), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3012), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_command] = STATE(5003), [sym_comment] = STATE(270), - [aux_sym__block_body_repeat1] = STATE(226), - [anon_sym_export] = ACTIONS(1605), - [anon_sym_alias] = ACTIONS(1605), - [anon_sym_let] = ACTIONS(1605), - [anon_sym_let_DASHenv] = ACTIONS(1605), - [anon_sym_mut] = ACTIONS(1605), - [anon_sym_const] = ACTIONS(1605), - [aux_sym_cmd_identifier_token1] = ACTIONS(1605), - [aux_sym_cmd_identifier_token2] = ACTIONS(1605), - [aux_sym_cmd_identifier_token3] = ACTIONS(1605), - [aux_sym_cmd_identifier_token4] = ACTIONS(1605), - [aux_sym_cmd_identifier_token5] = ACTIONS(1605), - [aux_sym_cmd_identifier_token6] = ACTIONS(1605), - [aux_sym_cmd_identifier_token7] = ACTIONS(1605), - [aux_sym_cmd_identifier_token8] = ACTIONS(1605), - [aux_sym_cmd_identifier_token9] = ACTIONS(1605), - [aux_sym_cmd_identifier_token10] = ACTIONS(1605), - [aux_sym_cmd_identifier_token11] = ACTIONS(1605), - [aux_sym_cmd_identifier_token12] = ACTIONS(1605), - [aux_sym_cmd_identifier_token13] = ACTIONS(1605), - [aux_sym_cmd_identifier_token14] = ACTIONS(1605), - [aux_sym_cmd_identifier_token15] = ACTIONS(1605), - [aux_sym_cmd_identifier_token16] = ACTIONS(1605), - [aux_sym_cmd_identifier_token17] = ACTIONS(1605), - [aux_sym_cmd_identifier_token18] = ACTIONS(1605), - [aux_sym_cmd_identifier_token19] = ACTIONS(1605), - [aux_sym_cmd_identifier_token20] = ACTIONS(1605), - [aux_sym_cmd_identifier_token21] = ACTIONS(1605), - [aux_sym_cmd_identifier_token22] = ACTIONS(1605), - [aux_sym_cmd_identifier_token23] = ACTIONS(1605), - [aux_sym_cmd_identifier_token24] = ACTIONS(1607), - [aux_sym_cmd_identifier_token25] = ACTIONS(1605), - [aux_sym_cmd_identifier_token26] = ACTIONS(1607), - [aux_sym_cmd_identifier_token27] = ACTIONS(1605), - [aux_sym_cmd_identifier_token28] = ACTIONS(1605), - [aux_sym_cmd_identifier_token29] = ACTIONS(1605), - [aux_sym_cmd_identifier_token30] = ACTIONS(1605), - [aux_sym_cmd_identifier_token31] = ACTIONS(1607), - [aux_sym_cmd_identifier_token32] = ACTIONS(1607), - [aux_sym_cmd_identifier_token33] = ACTIONS(1607), - [aux_sym_cmd_identifier_token34] = ACTIONS(1607), - [aux_sym_cmd_identifier_token35] = ACTIONS(1607), - [aux_sym_cmd_identifier_token36] = ACTIONS(1605), - [anon_sym_true] = ACTIONS(1607), - [anon_sym_false] = ACTIONS(1607), - [anon_sym_null] = ACTIONS(1607), - [aux_sym_cmd_identifier_token38] = ACTIONS(1605), - [aux_sym_cmd_identifier_token39] = ACTIONS(1607), - [aux_sym_cmd_identifier_token40] = ACTIONS(1607), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(1605), - [anon_sym_export_DASHenv] = ACTIONS(1605), - [anon_sym_extern] = ACTIONS(1605), - [anon_sym_module] = ACTIONS(1605), - [anon_sym_use] = ACTIONS(1605), - [anon_sym_LBRACK] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_DOLLAR] = ACTIONS(1605), - [anon_sym_error] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_break] = ACTIONS(1605), - [anon_sym_continue] = ACTIONS(1605), - [anon_sym_for] = ACTIONS(1605), - [anon_sym_loop] = ACTIONS(1605), - [anon_sym_while] = ACTIONS(1605), - [anon_sym_do] = ACTIONS(1605), - [anon_sym_if] = ACTIONS(1605), - [anon_sym_match] = ACTIONS(1605), - [aux_sym_ctrl_match_token1] = ACTIONS(1607), - [anon_sym_DOT_DOT] = ACTIONS(1605), - [anon_sym_try] = ACTIONS(1605), - [anon_sym_return] = ACTIONS(1605), - [anon_sym_source] = ACTIONS(1605), - [anon_sym_source_DASHenv] = ACTIONS(1605), - [anon_sym_register] = ACTIONS(1605), - [anon_sym_hide] = ACTIONS(1605), - [anon_sym_hide_DASHenv] = ACTIONS(1605), - [anon_sym_overlay] = ACTIONS(1605), - [anon_sym_where] = ACTIONS(1607), - [aux_sym_expr_unary_token1] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), - [anon_sym_DOT_DOT_LT] = ACTIONS(1607), - [aux_sym__val_number_decimal_token1] = ACTIONS(1605), - [aux_sym__val_number_decimal_token2] = ACTIONS(1607), - [aux_sym__val_number_decimal_token3] = ACTIONS(1607), - [aux_sym__val_number_decimal_token4] = ACTIONS(1607), - [aux_sym__val_number_token1] = ACTIONS(1607), - [aux_sym__val_number_token2] = ACTIONS(1607), - [aux_sym__val_number_token3] = ACTIONS(1607), - [anon_sym_0b] = ACTIONS(1605), - [anon_sym_0o] = ACTIONS(1605), - [anon_sym_0x] = ACTIONS(1605), - [sym_val_date] = ACTIONS(1607), - [anon_sym_DQUOTE] = ACTIONS(1607), - [sym__str_single_quotes] = ACTIONS(1607), - [sym__str_back_ticks] = ACTIONS(1607), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1607), - [aux_sym_env_var_token1] = ACTIONS(1605), - [anon_sym_CARET] = ACTIONS(1607), + [aux_sym_shebang_repeat1] = STATE(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [anon_sym_null] = ACTIONS(1733), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1737), + [aux_sym_cmd_identifier_token40] = ACTIONS(1737), + [sym__newline] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_if] = ACTIONS(479), + [aux_sym_ctrl_match_token1] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1743), + [aux_sym__val_number_decimal_token2] = ACTIONS(1745), + [aux_sym__val_number_decimal_token3] = ACTIONS(1747), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [271] = { - [sym_cmd_identifier] = STATE(4804), - [sym_ctrl_if_parenthesized] = STATE(5205), - [sym_block] = STATE(5234), - [sym__expression_parenthesized] = STATE(5234), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(4014), - [sym_expr_parenthesized] = STATE(2154), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(2143), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3317), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_command] = STATE(5234), + [sym_cmd_identifier] = STATE(4558), + [sym_ctrl_if_parenthesized] = STATE(5005), + [sym_block] = STATE(5006), + [sym__expression_parenthesized] = STATE(5006), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3734), + [sym_expr_parenthesized] = STATE(1961), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1934), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3012), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_command] = STATE(5006), [sym_comment] = STATE(271), - [aux_sym_shebang_repeat1] = STATE(272), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1663), - [aux_sym_cmd_identifier_token38] = ACTIONS(1665), - [aux_sym_cmd_identifier_token39] = ACTIONS(1667), - [aux_sym_cmd_identifier_token40] = ACTIONS(1667), - [sym__newline] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_if] = ACTIONS(485), - [aux_sym_ctrl_match_token1] = ACTIONS(1671), + [aux_sym_shebang_repeat1] = STATE(1022), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [anon_sym_null] = ACTIONS(1733), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1737), + [aux_sym_cmd_identifier_token40] = ACTIONS(1737), + [sym__newline] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_if] = ACTIONS(479), + [aux_sym_ctrl_match_token1] = ACTIONS(1741), [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1673), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [aux_sym__val_number_decimal_token3] = ACTIONS(1677), - [aux_sym__val_number_decimal_token4] = ACTIONS(1679), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(1743), + [aux_sym__val_number_decimal_token2] = ACTIONS(1745), + [aux_sym__val_number_decimal_token3] = ACTIONS(1747), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [272] = { - [sym_cmd_identifier] = STATE(4804), - [sym_ctrl_if_parenthesized] = STATE(5361), - [sym_block] = STATE(5362), - [sym__expression_parenthesized] = STATE(5362), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(4014), - [sym_expr_parenthesized] = STATE(2154), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(2143), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3317), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_command] = STATE(5362), + [sym_cmd_identifier] = STATE(4558), + [sym_ctrl_if_parenthesized] = STATE(5005), + [sym_block] = STATE(5006), + [sym__expression_parenthesized] = STATE(5006), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3734), + [sym_expr_parenthesized] = STATE(1961), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1934), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3012), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_command] = STATE(5006), [sym_comment] = STATE(272), - [aux_sym_shebang_repeat1] = STATE(1250), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1663), - [aux_sym_cmd_identifier_token38] = ACTIONS(1665), - [aux_sym_cmd_identifier_token39] = ACTIONS(1667), - [aux_sym_cmd_identifier_token40] = ACTIONS(1667), - [sym__newline] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_if] = ACTIONS(485), - [aux_sym_ctrl_match_token1] = ACTIONS(1671), + [aux_sym_shebang_repeat1] = STATE(276), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [anon_sym_null] = ACTIONS(1733), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1737), + [aux_sym_cmd_identifier_token40] = ACTIONS(1737), + [sym__newline] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_if] = ACTIONS(479), + [aux_sym_ctrl_match_token1] = ACTIONS(1741), [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1673), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [aux_sym__val_number_decimal_token3] = ACTIONS(1677), - [aux_sym__val_number_decimal_token4] = ACTIONS(1679), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(1743), + [aux_sym__val_number_decimal_token2] = ACTIONS(1745), + [aux_sym__val_number_decimal_token3] = ACTIONS(1747), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [273] = { - [sym_cmd_identifier] = STATE(4804), - [sym_ctrl_if_parenthesized] = STATE(5361), - [sym_block] = STATE(5362), - [sym__expression_parenthesized] = STATE(5362), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(4014), - [sym_expr_parenthesized] = STATE(2154), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(2143), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3317), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_command] = STATE(5362), + [sym_cmd_identifier] = STATE(4558), + [sym_ctrl_if_parenthesized] = STATE(5007), + [sym_block] = STATE(5008), + [sym__expression_parenthesized] = STATE(5008), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3734), + [sym_expr_parenthesized] = STATE(1961), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1934), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3012), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_command] = STATE(5008), [sym_comment] = STATE(273), - [aux_sym_shebang_repeat1] = STATE(276), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1663), - [aux_sym_cmd_identifier_token38] = ACTIONS(1665), - [aux_sym_cmd_identifier_token39] = ACTIONS(1667), - [aux_sym_cmd_identifier_token40] = ACTIONS(1667), - [sym__newline] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_if] = ACTIONS(485), - [aux_sym_ctrl_match_token1] = ACTIONS(1671), + [aux_sym_shebang_repeat1] = STATE(1022), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [anon_sym_null] = ACTIONS(1733), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1737), + [aux_sym_cmd_identifier_token40] = ACTIONS(1737), + [sym__newline] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_if] = ACTIONS(479), + [aux_sym_ctrl_match_token1] = ACTIONS(1741), [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1673), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [aux_sym__val_number_decimal_token3] = ACTIONS(1677), - [aux_sym__val_number_decimal_token4] = ACTIONS(1679), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(1743), + [aux_sym__val_number_decimal_token2] = ACTIONS(1745), + [aux_sym__val_number_decimal_token3] = ACTIONS(1747), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [274] = { - [sym_cmd_identifier] = STATE(4804), - [sym_ctrl_if_parenthesized] = STATE(5222), - [sym_block] = STATE(5332), - [sym__expression_parenthesized] = STATE(5332), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(4014), - [sym_expr_parenthesized] = STATE(2154), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(2143), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3317), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_command] = STATE(5332), + [sym_cmd_identifier] = STATE(4558), + [sym_ctrl_if_parenthesized] = STATE(5007), + [sym_block] = STATE(5008), + [sym__expression_parenthesized] = STATE(5008), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3734), + [sym_expr_parenthesized] = STATE(1961), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1934), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3012), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_command] = STATE(5008), [sym_comment] = STATE(274), - [aux_sym_shebang_repeat1] = STATE(278), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1663), - [aux_sym_cmd_identifier_token38] = ACTIONS(1665), - [aux_sym_cmd_identifier_token39] = ACTIONS(1667), - [aux_sym_cmd_identifier_token40] = ACTIONS(1667), - [sym__newline] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_if] = ACTIONS(485), - [aux_sym_ctrl_match_token1] = ACTIONS(1671), + [aux_sym_shebang_repeat1] = STATE(277), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [anon_sym_null] = ACTIONS(1733), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1737), + [aux_sym_cmd_identifier_token40] = ACTIONS(1737), + [sym__newline] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_if] = ACTIONS(479), + [aux_sym_ctrl_match_token1] = ACTIONS(1741), [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1673), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [aux_sym__val_number_decimal_token3] = ACTIONS(1677), - [aux_sym__val_number_decimal_token4] = ACTIONS(1679), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(1743), + [aux_sym__val_number_decimal_token2] = ACTIONS(1745), + [aux_sym__val_number_decimal_token3] = ACTIONS(1747), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [275] = { - [sym_cmd_identifier] = STATE(4804), - [sym_ctrl_if_parenthesized] = STATE(5201), - [sym_block] = STATE(5257), - [sym__expression_parenthesized] = STATE(5257), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(4014), - [sym_expr_parenthesized] = STATE(2154), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(2143), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3317), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_command] = STATE(5257), + [sym_cmd_identifier] = STATE(4558), + [sym_ctrl_if_parenthesized] = STATE(5013), + [sym_block] = STATE(5014), + [sym__expression_parenthesized] = STATE(5014), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3734), + [sym_expr_parenthesized] = STATE(1961), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1934), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3012), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_command] = STATE(5014), [sym_comment] = STATE(275), - [aux_sym_shebang_repeat1] = STATE(280), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1663), - [aux_sym_cmd_identifier_token38] = ACTIONS(1665), - [aux_sym_cmd_identifier_token39] = ACTIONS(1667), - [aux_sym_cmd_identifier_token40] = ACTIONS(1667), - [sym__newline] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_if] = ACTIONS(485), - [aux_sym_ctrl_match_token1] = ACTIONS(1671), + [aux_sym_shebang_repeat1] = STATE(1022), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [anon_sym_null] = ACTIONS(1733), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1737), + [aux_sym_cmd_identifier_token40] = ACTIONS(1737), + [sym__newline] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_if] = ACTIONS(479), + [aux_sym_ctrl_match_token1] = ACTIONS(1741), [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1673), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [aux_sym__val_number_decimal_token3] = ACTIONS(1677), - [aux_sym__val_number_decimal_token4] = ACTIONS(1679), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(1743), + [aux_sym__val_number_decimal_token2] = ACTIONS(1745), + [aux_sym__val_number_decimal_token3] = ACTIONS(1747), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [276] = { - [sym_cmd_identifier] = STATE(4804), - [sym_ctrl_if_parenthesized] = STATE(5261), - [sym_block] = STATE(5260), - [sym__expression_parenthesized] = STATE(5260), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(4014), - [sym_expr_parenthesized] = STATE(2154), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(2143), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3317), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_command] = STATE(5260), + [sym_cmd_identifier] = STATE(4558), + [sym_ctrl_if_parenthesized] = STATE(5015), + [sym_block] = STATE(5016), + [sym__expression_parenthesized] = STATE(5016), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3734), + [sym_expr_parenthesized] = STATE(1961), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1934), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3012), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_command] = STATE(5016), [sym_comment] = STATE(276), - [aux_sym_shebang_repeat1] = STATE(1250), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1663), - [aux_sym_cmd_identifier_token38] = ACTIONS(1665), - [aux_sym_cmd_identifier_token39] = ACTIONS(1667), - [aux_sym_cmd_identifier_token40] = ACTIONS(1667), - [sym__newline] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_if] = ACTIONS(485), - [aux_sym_ctrl_match_token1] = ACTIONS(1671), + [aux_sym_shebang_repeat1] = STATE(1022), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [anon_sym_null] = ACTIONS(1733), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1737), + [aux_sym_cmd_identifier_token40] = ACTIONS(1737), + [sym__newline] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_if] = ACTIONS(479), + [aux_sym_ctrl_match_token1] = ACTIONS(1741), [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1673), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [aux_sym__val_number_decimal_token3] = ACTIONS(1677), - [aux_sym__val_number_decimal_token4] = ACTIONS(1679), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(1743), + [aux_sym__val_number_decimal_token2] = ACTIONS(1745), + [aux_sym__val_number_decimal_token3] = ACTIONS(1747), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [277] = { - [sym_cmd_identifier] = STATE(4804), - [sym_ctrl_if_parenthesized] = STATE(5261), - [sym_block] = STATE(5260), - [sym__expression_parenthesized] = STATE(5260), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(4014), - [sym_expr_parenthesized] = STATE(2154), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(2143), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3317), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_command] = STATE(5260), + [sym_cmd_identifier] = STATE(4558), + [sym_ctrl_if_parenthesized] = STATE(5017), + [sym_block] = STATE(5018), + [sym__expression_parenthesized] = STATE(5018), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3734), + [sym_expr_parenthesized] = STATE(1961), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1934), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3012), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_command] = STATE(5018), [sym_comment] = STATE(277), - [aux_sym_shebang_repeat1] = STATE(248), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1663), - [aux_sym_cmd_identifier_token38] = ACTIONS(1665), - [aux_sym_cmd_identifier_token39] = ACTIONS(1667), - [aux_sym_cmd_identifier_token40] = ACTIONS(1667), - [sym__newline] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_if] = ACTIONS(485), - [aux_sym_ctrl_match_token1] = ACTIONS(1671), + [aux_sym_shebang_repeat1] = STATE(1022), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [anon_sym_null] = ACTIONS(1733), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1737), + [aux_sym_cmd_identifier_token40] = ACTIONS(1737), + [sym__newline] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_if] = ACTIONS(479), + [aux_sym_ctrl_match_token1] = ACTIONS(1741), [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1673), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [aux_sym__val_number_decimal_token3] = ACTIONS(1677), - [aux_sym__val_number_decimal_token4] = ACTIONS(1679), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(1743), + [aux_sym__val_number_decimal_token2] = ACTIONS(1745), + [aux_sym__val_number_decimal_token3] = ACTIONS(1747), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [278] = { - [sym_cmd_identifier] = STATE(4804), - [sym_ctrl_if_parenthesized] = STATE(5344), - [sym_block] = STATE(5200), - [sym__expression_parenthesized] = STATE(5200), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(4014), - [sym_expr_parenthesized] = STATE(2154), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(2143), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3317), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_command] = STATE(5200), + [sym_cmd_identifier] = STATE(4558), + [sym_ctrl_if_parenthesized] = STATE(5017), + [sym_block] = STATE(5018), + [sym__expression_parenthesized] = STATE(5018), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3734), + [sym_expr_parenthesized] = STATE(1961), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1934), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3012), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_command] = STATE(5018), [sym_comment] = STATE(278), - [aux_sym_shebang_repeat1] = STATE(1250), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1663), - [aux_sym_cmd_identifier_token38] = ACTIONS(1665), - [aux_sym_cmd_identifier_token39] = ACTIONS(1667), - [aux_sym_cmd_identifier_token40] = ACTIONS(1667), - [sym__newline] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_if] = ACTIONS(485), - [aux_sym_ctrl_match_token1] = ACTIONS(1671), + [aux_sym_shebang_repeat1] = STATE(279), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [anon_sym_null] = ACTIONS(1733), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1737), + [aux_sym_cmd_identifier_token40] = ACTIONS(1737), + [sym__newline] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_if] = ACTIONS(479), + [aux_sym_ctrl_match_token1] = ACTIONS(1741), [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1673), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [aux_sym__val_number_decimal_token3] = ACTIONS(1677), - [aux_sym__val_number_decimal_token4] = ACTIONS(1679), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(1743), + [aux_sym__val_number_decimal_token2] = ACTIONS(1745), + [aux_sym__val_number_decimal_token3] = ACTIONS(1747), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [279] = { - [sym_cmd_identifier] = STATE(4804), - [sym_ctrl_if_parenthesized] = STATE(5344), - [sym_block] = STATE(5200), - [sym__expression_parenthesized] = STATE(5200), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(4014), - [sym_expr_parenthesized] = STATE(2154), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(2143), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3317), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_command] = STATE(5200), + [sym_cmd_identifier] = STATE(4558), + [sym_ctrl_if_parenthesized] = STATE(5019), + [sym_block] = STATE(5020), + [sym__expression_parenthesized] = STATE(5020), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3734), + [sym_expr_parenthesized] = STATE(1961), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1934), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3012), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_command] = STATE(5020), [sym_comment] = STATE(279), - [aux_sym_shebang_repeat1] = STATE(283), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1663), - [aux_sym_cmd_identifier_token38] = ACTIONS(1665), - [aux_sym_cmd_identifier_token39] = ACTIONS(1667), - [aux_sym_cmd_identifier_token40] = ACTIONS(1667), - [sym__newline] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_if] = ACTIONS(485), - [aux_sym_ctrl_match_token1] = ACTIONS(1671), + [aux_sym_shebang_repeat1] = STATE(1022), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [anon_sym_null] = ACTIONS(1733), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1737), + [aux_sym_cmd_identifier_token40] = ACTIONS(1737), + [sym__newline] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_if] = ACTIONS(479), + [aux_sym_ctrl_match_token1] = ACTIONS(1741), [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1673), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [aux_sym__val_number_decimal_token3] = ACTIONS(1677), - [aux_sym__val_number_decimal_token4] = ACTIONS(1679), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(1743), + [aux_sym__val_number_decimal_token2] = ACTIONS(1745), + [aux_sym__val_number_decimal_token3] = ACTIONS(1747), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [280] = { - [sym_cmd_identifier] = STATE(4804), - [sym_ctrl_if_parenthesized] = STATE(5217), - [sym_block] = STATE(5218), - [sym__expression_parenthesized] = STATE(5218), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(4014), - [sym_expr_parenthesized] = STATE(2154), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(2143), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3317), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_command] = STATE(5218), [sym_comment] = STATE(280), - [aux_sym_shebang_repeat1] = STATE(1250), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1663), - [aux_sym_cmd_identifier_token38] = ACTIONS(1665), - [aux_sym_cmd_identifier_token39] = ACTIONS(1667), - [aux_sym_cmd_identifier_token40] = ACTIONS(1667), - [sym__newline] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_if] = ACTIONS(485), - [aux_sym_ctrl_match_token1] = ACTIONS(1671), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1673), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [aux_sym__val_number_decimal_token3] = ACTIONS(1677), - [aux_sym__val_number_decimal_token4] = ACTIONS(1679), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_export] = ACTIONS(1337), + [anon_sym_alias] = ACTIONS(1337), + [anon_sym_let] = ACTIONS(1337), + [anon_sym_let_DASHenv] = ACTIONS(1337), + [anon_sym_mut] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1337), + [aux_sym_cmd_identifier_token1] = ACTIONS(1337), + [aux_sym_cmd_identifier_token2] = ACTIONS(1337), + [aux_sym_cmd_identifier_token3] = ACTIONS(1337), + [aux_sym_cmd_identifier_token4] = ACTIONS(1337), + [aux_sym_cmd_identifier_token5] = ACTIONS(1337), + [aux_sym_cmd_identifier_token6] = ACTIONS(1337), + [aux_sym_cmd_identifier_token7] = ACTIONS(1337), + [aux_sym_cmd_identifier_token8] = ACTIONS(1337), + [aux_sym_cmd_identifier_token9] = ACTIONS(1337), + [aux_sym_cmd_identifier_token10] = ACTIONS(1337), + [aux_sym_cmd_identifier_token11] = ACTIONS(1337), + [aux_sym_cmd_identifier_token12] = ACTIONS(1337), + [aux_sym_cmd_identifier_token13] = ACTIONS(1337), + [aux_sym_cmd_identifier_token14] = ACTIONS(1337), + [aux_sym_cmd_identifier_token15] = ACTIONS(1337), + [aux_sym_cmd_identifier_token16] = ACTIONS(1337), + [aux_sym_cmd_identifier_token17] = ACTIONS(1337), + [aux_sym_cmd_identifier_token18] = ACTIONS(1337), + [aux_sym_cmd_identifier_token19] = ACTIONS(1337), + [aux_sym_cmd_identifier_token20] = ACTIONS(1337), + [aux_sym_cmd_identifier_token21] = ACTIONS(1337), + [aux_sym_cmd_identifier_token22] = ACTIONS(1337), + [aux_sym_cmd_identifier_token23] = ACTIONS(1337), + [aux_sym_cmd_identifier_token24] = ACTIONS(1340), + [aux_sym_cmd_identifier_token25] = ACTIONS(1337), + [aux_sym_cmd_identifier_token26] = ACTIONS(1340), + [aux_sym_cmd_identifier_token27] = ACTIONS(1337), + [aux_sym_cmd_identifier_token28] = ACTIONS(1337), + [aux_sym_cmd_identifier_token29] = ACTIONS(1337), + [aux_sym_cmd_identifier_token30] = ACTIONS(1337), + [aux_sym_cmd_identifier_token31] = ACTIONS(1340), + [aux_sym_cmd_identifier_token32] = ACTIONS(1340), + [aux_sym_cmd_identifier_token33] = ACTIONS(1340), + [aux_sym_cmd_identifier_token34] = ACTIONS(1340), + [aux_sym_cmd_identifier_token35] = ACTIONS(1340), + [aux_sym_cmd_identifier_token36] = ACTIONS(1337), + [anon_sym_true] = ACTIONS(1340), + [anon_sym_false] = ACTIONS(1340), + [anon_sym_null] = ACTIONS(1340), + [aux_sym_cmd_identifier_token38] = ACTIONS(1337), + [aux_sym_cmd_identifier_token39] = ACTIONS(1340), + [aux_sym_cmd_identifier_token40] = ACTIONS(1340), + [sym__newline] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1343), + [anon_sym_def] = ACTIONS(1337), + [anon_sym_export_DASHenv] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1337), + [anon_sym_module] = ACTIONS(1337), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_LBRACK] = ACTIONS(1340), + [anon_sym_LPAREN] = ACTIONS(1340), + [anon_sym_RPAREN] = ACTIONS(1343), + [anon_sym_DOLLAR] = ACTIONS(1337), + [anon_sym_error] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_break] = ACTIONS(1337), + [anon_sym_continue] = ACTIONS(1337), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_loop] = ACTIONS(1337), + [anon_sym_while] = ACTIONS(1337), + [anon_sym_do] = ACTIONS(1337), + [anon_sym_if] = ACTIONS(1337), + [anon_sym_match] = ACTIONS(1337), + [aux_sym_ctrl_match_token1] = ACTIONS(1340), + [anon_sym_DOT_DOT] = ACTIONS(1337), + [anon_sym_try] = ACTIONS(1337), + [anon_sym_return] = ACTIONS(1337), + [anon_sym_source] = ACTIONS(1337), + [anon_sym_source_DASHenv] = ACTIONS(1337), + [anon_sym_register] = ACTIONS(1337), + [anon_sym_hide] = ACTIONS(1337), + [anon_sym_hide_DASHenv] = ACTIONS(1337), + [anon_sym_overlay] = ACTIONS(1337), + [anon_sym_where] = ACTIONS(1340), + [aux_sym_expr_unary_token1] = ACTIONS(1340), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1340), + [anon_sym_DOT_DOT_LT] = ACTIONS(1340), + [aux_sym__val_number_decimal_token1] = ACTIONS(1337), + [aux_sym__val_number_decimal_token2] = ACTIONS(1340), + [aux_sym__val_number_decimal_token3] = ACTIONS(1340), + [aux_sym__val_number_decimal_token4] = ACTIONS(1340), + [aux_sym__val_number_token1] = ACTIONS(1340), + [aux_sym__val_number_token2] = ACTIONS(1340), + [aux_sym__val_number_token3] = ACTIONS(1340), + [anon_sym_0b] = ACTIONS(1337), + [anon_sym_0o] = ACTIONS(1337), + [anon_sym_0x] = ACTIONS(1337), + [sym_val_date] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym__str_single_quotes] = ACTIONS(1340), + [sym__str_back_ticks] = ACTIONS(1340), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1340), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1340), + [aux_sym_env_var_token1] = ACTIONS(1337), + [anon_sym_CARET] = ACTIONS(1340), [anon_sym_POUND] = ACTIONS(247), }, [281] = { - [sym_cmd_identifier] = STATE(4804), - [sym_ctrl_if_parenthesized] = STATE(5217), - [sym_block] = STATE(5218), - [sym__expression_parenthesized] = STATE(5218), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(4014), - [sym_expr_parenthesized] = STATE(2154), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(2143), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3317), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_command] = STATE(5218), [sym_comment] = STATE(281), - [aux_sym_shebang_repeat1] = STATE(285), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1663), - [aux_sym_cmd_identifier_token38] = ACTIONS(1665), - [aux_sym_cmd_identifier_token39] = ACTIONS(1667), - [aux_sym_cmd_identifier_token40] = ACTIONS(1667), - [sym__newline] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_if] = ACTIONS(485), - [aux_sym_ctrl_match_token1] = ACTIONS(1671), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1673), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [aux_sym__val_number_decimal_token3] = ACTIONS(1677), - [aux_sym__val_number_decimal_token4] = ACTIONS(1679), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(245), + [ts_builtin_sym_end] = ACTIONS(1771), + [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), + [aux_sym_cmd_identifier_token1] = ACTIONS(1773), + [aux_sym_cmd_identifier_token2] = ACTIONS(1773), + [aux_sym_cmd_identifier_token3] = ACTIONS(1773), + [aux_sym_cmd_identifier_token4] = ACTIONS(1773), + [aux_sym_cmd_identifier_token5] = ACTIONS(1773), + [aux_sym_cmd_identifier_token6] = ACTIONS(1773), + [aux_sym_cmd_identifier_token7] = ACTIONS(1773), + [aux_sym_cmd_identifier_token8] = ACTIONS(1773), + [aux_sym_cmd_identifier_token9] = ACTIONS(1773), + [aux_sym_cmd_identifier_token10] = ACTIONS(1773), + [aux_sym_cmd_identifier_token11] = ACTIONS(1773), + [aux_sym_cmd_identifier_token12] = ACTIONS(1773), + [aux_sym_cmd_identifier_token13] = ACTIONS(1773), + [aux_sym_cmd_identifier_token14] = ACTIONS(1773), + [aux_sym_cmd_identifier_token15] = ACTIONS(1773), + [aux_sym_cmd_identifier_token16] = ACTIONS(1773), + [aux_sym_cmd_identifier_token17] = ACTIONS(1773), + [aux_sym_cmd_identifier_token18] = ACTIONS(1773), + [aux_sym_cmd_identifier_token19] = ACTIONS(1773), + [aux_sym_cmd_identifier_token20] = ACTIONS(1773), + [aux_sym_cmd_identifier_token21] = ACTIONS(1773), + [aux_sym_cmd_identifier_token22] = ACTIONS(1773), + [aux_sym_cmd_identifier_token23] = ACTIONS(1773), + [aux_sym_cmd_identifier_token24] = ACTIONS(1771), + [aux_sym_cmd_identifier_token25] = ACTIONS(1773), + [aux_sym_cmd_identifier_token26] = ACTIONS(1771), + [aux_sym_cmd_identifier_token27] = ACTIONS(1773), + [aux_sym_cmd_identifier_token28] = ACTIONS(1773), + [aux_sym_cmd_identifier_token29] = ACTIONS(1773), + [aux_sym_cmd_identifier_token30] = ACTIONS(1773), + [aux_sym_cmd_identifier_token31] = ACTIONS(1771), + [aux_sym_cmd_identifier_token32] = ACTIONS(1771), + [aux_sym_cmd_identifier_token33] = ACTIONS(1771), + [aux_sym_cmd_identifier_token34] = ACTIONS(1771), + [aux_sym_cmd_identifier_token35] = ACTIONS(1771), + [aux_sym_cmd_identifier_token36] = ACTIONS(1773), + [anon_sym_true] = ACTIONS(1771), + [anon_sym_false] = ACTIONS(1771), + [anon_sym_null] = ACTIONS(1771), + [aux_sym_cmd_identifier_token38] = ACTIONS(1773), + [aux_sym_cmd_identifier_token39] = ACTIONS(1771), + [aux_sym_cmd_identifier_token40] = ACTIONS(1771), + [sym__newline] = ACTIONS(1771), + [anon_sym_SEMI] = ACTIONS(1771), + [anon_sym_def] = 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(1771), + [anon_sym_LPAREN] = ACTIONS(1771), + [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), + [aux_sym_ctrl_match_token1] = ACTIONS(1771), + [anon_sym_DOT_DOT] = 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(1771), + [aux_sym_expr_unary_token1] = ACTIONS(1771), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1771), + [anon_sym_DOT_DOT_LT] = ACTIONS(1771), + [aux_sym__val_number_decimal_token1] = ACTIONS(1773), + [aux_sym__val_number_decimal_token2] = ACTIONS(1771), + [aux_sym__val_number_decimal_token3] = ACTIONS(1771), + [aux_sym__val_number_decimal_token4] = ACTIONS(1771), + [aux_sym__val_number_token1] = ACTIONS(1771), + [aux_sym__val_number_token2] = ACTIONS(1771), + [aux_sym__val_number_token3] = ACTIONS(1771), + [anon_sym_0b] = ACTIONS(1773), + [anon_sym_0o] = ACTIONS(1773), + [anon_sym_0x] = ACTIONS(1773), + [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), + [aux_sym_env_var_token1] = ACTIONS(1773), + [anon_sym_CARET] = ACTIONS(1771), [anon_sym_POUND] = ACTIONS(247), }, [282] = { - [sym_cmd_identifier] = STATE(4804), - [sym_ctrl_if_parenthesized] = STATE(5322), - [sym_block] = STATE(5325), - [sym__expression_parenthesized] = STATE(5325), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(4014), - [sym_expr_parenthesized] = STATE(2154), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(2143), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3317), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_command] = STATE(5325), [sym_comment] = STATE(282), - [aux_sym_shebang_repeat1] = STATE(287), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1663), - [aux_sym_cmd_identifier_token38] = ACTIONS(1665), - [aux_sym_cmd_identifier_token39] = ACTIONS(1667), - [aux_sym_cmd_identifier_token40] = ACTIONS(1667), - [sym__newline] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_if] = ACTIONS(485), - [aux_sym_ctrl_match_token1] = ACTIONS(1671), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1673), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [aux_sym__val_number_decimal_token3] = ACTIONS(1677), - [aux_sym__val_number_decimal_token4] = ACTIONS(1679), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(245), + [ts_builtin_sym_end] = ACTIONS(1775), + [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), + [aux_sym_cmd_identifier_token1] = ACTIONS(1777), + [aux_sym_cmd_identifier_token2] = ACTIONS(1777), + [aux_sym_cmd_identifier_token3] = ACTIONS(1777), + [aux_sym_cmd_identifier_token4] = ACTIONS(1777), + [aux_sym_cmd_identifier_token5] = ACTIONS(1777), + [aux_sym_cmd_identifier_token6] = ACTIONS(1777), + [aux_sym_cmd_identifier_token7] = ACTIONS(1777), + [aux_sym_cmd_identifier_token8] = ACTIONS(1777), + [aux_sym_cmd_identifier_token9] = ACTIONS(1777), + [aux_sym_cmd_identifier_token10] = ACTIONS(1777), + [aux_sym_cmd_identifier_token11] = ACTIONS(1777), + [aux_sym_cmd_identifier_token12] = ACTIONS(1777), + [aux_sym_cmd_identifier_token13] = ACTIONS(1777), + [aux_sym_cmd_identifier_token14] = ACTIONS(1777), + [aux_sym_cmd_identifier_token15] = ACTIONS(1777), + [aux_sym_cmd_identifier_token16] = ACTIONS(1777), + [aux_sym_cmd_identifier_token17] = ACTIONS(1777), + [aux_sym_cmd_identifier_token18] = ACTIONS(1777), + [aux_sym_cmd_identifier_token19] = ACTIONS(1777), + [aux_sym_cmd_identifier_token20] = ACTIONS(1777), + [aux_sym_cmd_identifier_token21] = ACTIONS(1777), + [aux_sym_cmd_identifier_token22] = ACTIONS(1777), + [aux_sym_cmd_identifier_token23] = ACTIONS(1777), + [aux_sym_cmd_identifier_token24] = ACTIONS(1775), + [aux_sym_cmd_identifier_token25] = ACTIONS(1777), + [aux_sym_cmd_identifier_token26] = ACTIONS(1775), + [aux_sym_cmd_identifier_token27] = ACTIONS(1777), + [aux_sym_cmd_identifier_token28] = ACTIONS(1777), + [aux_sym_cmd_identifier_token29] = ACTIONS(1777), + [aux_sym_cmd_identifier_token30] = ACTIONS(1777), + [aux_sym_cmd_identifier_token31] = ACTIONS(1775), + [aux_sym_cmd_identifier_token32] = ACTIONS(1775), + [aux_sym_cmd_identifier_token33] = ACTIONS(1775), + [aux_sym_cmd_identifier_token34] = ACTIONS(1775), + [aux_sym_cmd_identifier_token35] = ACTIONS(1775), + [aux_sym_cmd_identifier_token36] = ACTIONS(1777), + [anon_sym_true] = ACTIONS(1775), + [anon_sym_false] = ACTIONS(1775), + [anon_sym_null] = ACTIONS(1775), + [aux_sym_cmd_identifier_token38] = ACTIONS(1777), + [aux_sym_cmd_identifier_token39] = ACTIONS(1775), + [aux_sym_cmd_identifier_token40] = ACTIONS(1775), + [sym__newline] = ACTIONS(1775), + [anon_sym_SEMI] = ACTIONS(1775), + [anon_sym_def] = 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(1775), + [anon_sym_LPAREN] = ACTIONS(1775), + [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), + [aux_sym_ctrl_match_token1] = ACTIONS(1775), + [anon_sym_DOT_DOT] = 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(1775), + [aux_sym_expr_unary_token1] = ACTIONS(1775), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1775), + [anon_sym_DOT_DOT_LT] = ACTIONS(1775), + [aux_sym__val_number_decimal_token1] = ACTIONS(1777), + [aux_sym__val_number_decimal_token2] = ACTIONS(1775), + [aux_sym__val_number_decimal_token3] = ACTIONS(1775), + [aux_sym__val_number_decimal_token4] = ACTIONS(1775), + [aux_sym__val_number_token1] = ACTIONS(1775), + [aux_sym__val_number_token2] = ACTIONS(1775), + [aux_sym__val_number_token3] = ACTIONS(1775), + [anon_sym_0b] = ACTIONS(1777), + [anon_sym_0o] = ACTIONS(1777), + [anon_sym_0x] = ACTIONS(1777), + [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), + [aux_sym_env_var_token1] = ACTIONS(1777), + [anon_sym_CARET] = ACTIONS(1775), [anon_sym_POUND] = ACTIONS(247), }, [283] = { - [sym_cmd_identifier] = STATE(4804), - [sym_ctrl_if_parenthesized] = STATE(5298), - [sym_block] = STATE(5306), - [sym__expression_parenthesized] = STATE(5306), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(4014), - [sym_expr_parenthesized] = STATE(2154), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(2143), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3317), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_command] = STATE(5306), [sym_comment] = STATE(283), - [aux_sym_shebang_repeat1] = STATE(1250), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1663), - [aux_sym_cmd_identifier_token38] = ACTIONS(1665), - [aux_sym_cmd_identifier_token39] = ACTIONS(1667), - [aux_sym_cmd_identifier_token40] = ACTIONS(1667), - [sym__newline] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_if] = ACTIONS(485), - [aux_sym_ctrl_match_token1] = ACTIONS(1671), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1673), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [aux_sym__val_number_decimal_token3] = ACTIONS(1677), - [aux_sym__val_number_decimal_token4] = ACTIONS(1679), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(245), + [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), + [aux_sym_cmd_identifier_token1] = ACTIONS(1779), + [aux_sym_cmd_identifier_token2] = ACTIONS(1779), + [aux_sym_cmd_identifier_token3] = ACTIONS(1779), + [aux_sym_cmd_identifier_token4] = ACTIONS(1779), + [aux_sym_cmd_identifier_token5] = ACTIONS(1779), + [aux_sym_cmd_identifier_token6] = ACTIONS(1779), + [aux_sym_cmd_identifier_token7] = ACTIONS(1779), + [aux_sym_cmd_identifier_token8] = ACTIONS(1779), + [aux_sym_cmd_identifier_token9] = ACTIONS(1779), + [aux_sym_cmd_identifier_token10] = ACTIONS(1779), + [aux_sym_cmd_identifier_token11] = ACTIONS(1779), + [aux_sym_cmd_identifier_token12] = ACTIONS(1779), + [aux_sym_cmd_identifier_token13] = ACTIONS(1779), + [aux_sym_cmd_identifier_token14] = ACTIONS(1779), + [aux_sym_cmd_identifier_token15] = ACTIONS(1779), + [aux_sym_cmd_identifier_token16] = ACTIONS(1779), + [aux_sym_cmd_identifier_token17] = ACTIONS(1779), + [aux_sym_cmd_identifier_token18] = ACTIONS(1779), + [aux_sym_cmd_identifier_token19] = ACTIONS(1779), + [aux_sym_cmd_identifier_token20] = ACTIONS(1779), + [aux_sym_cmd_identifier_token21] = ACTIONS(1779), + [aux_sym_cmd_identifier_token22] = ACTIONS(1779), + [aux_sym_cmd_identifier_token23] = ACTIONS(1779), + [aux_sym_cmd_identifier_token24] = ACTIONS(1781), + [aux_sym_cmd_identifier_token25] = ACTIONS(1779), + [aux_sym_cmd_identifier_token26] = ACTIONS(1781), + [aux_sym_cmd_identifier_token27] = ACTIONS(1779), + [aux_sym_cmd_identifier_token28] = ACTIONS(1779), + [aux_sym_cmd_identifier_token29] = ACTIONS(1779), + [aux_sym_cmd_identifier_token30] = ACTIONS(1779), + [aux_sym_cmd_identifier_token31] = ACTIONS(1781), + [aux_sym_cmd_identifier_token32] = ACTIONS(1781), + [aux_sym_cmd_identifier_token33] = ACTIONS(1781), + [aux_sym_cmd_identifier_token34] = ACTIONS(1781), + [aux_sym_cmd_identifier_token35] = ACTIONS(1781), + [aux_sym_cmd_identifier_token36] = ACTIONS(1779), + [anon_sym_true] = ACTIONS(1781), + [anon_sym_false] = ACTIONS(1781), + [anon_sym_null] = ACTIONS(1781), + [aux_sym_cmd_identifier_token38] = ACTIONS(1779), + [aux_sym_cmd_identifier_token39] = ACTIONS(1781), + [aux_sym_cmd_identifier_token40] = ACTIONS(1781), + [sym__newline] = ACTIONS(1783), + [anon_sym_SEMI] = ACTIONS(1783), + [anon_sym_def] = 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(1781), + [anon_sym_LPAREN] = ACTIONS(1781), + [anon_sym_RPAREN] = ACTIONS(1343), + [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), + [aux_sym_ctrl_match_token1] = ACTIONS(1781), + [anon_sym_DOT_DOT] = 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(1781), + [aux_sym_expr_unary_token1] = ACTIONS(1781), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1781), + [anon_sym_DOT_DOT_LT] = ACTIONS(1781), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1781), + [aux_sym__val_number_decimal_token3] = ACTIONS(1781), + [aux_sym__val_number_decimal_token4] = ACTIONS(1781), + [aux_sym__val_number_token1] = ACTIONS(1781), + [aux_sym__val_number_token2] = ACTIONS(1781), + [aux_sym__val_number_token3] = ACTIONS(1781), + [anon_sym_0b] = ACTIONS(1779), + [anon_sym_0o] = ACTIONS(1779), + [anon_sym_0x] = ACTIONS(1779), + [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), + [aux_sym_env_var_token1] = ACTIONS(1779), + [anon_sym_CARET] = ACTIONS(1781), [anon_sym_POUND] = ACTIONS(247), }, [284] = { - [sym_cmd_identifier] = STATE(4804), - [sym_ctrl_if_parenthesized] = STATE(5298), - [sym_block] = STATE(5306), - [sym__expression_parenthesized] = STATE(5306), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(4014), - [sym_expr_parenthesized] = STATE(2154), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(2143), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3317), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_command] = STATE(5306), [sym_comment] = STATE(284), - [aux_sym_shebang_repeat1] = STATE(289), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1663), - [aux_sym_cmd_identifier_token38] = ACTIONS(1665), - [aux_sym_cmd_identifier_token39] = ACTIONS(1667), - [aux_sym_cmd_identifier_token40] = ACTIONS(1667), - [sym__newline] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_if] = ACTIONS(485), - [aux_sym_ctrl_match_token1] = ACTIONS(1671), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1673), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [aux_sym__val_number_decimal_token3] = ACTIONS(1677), - [aux_sym__val_number_decimal_token4] = ACTIONS(1679), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(245), + [aux_sym__block_body_repeat1] = STATE(210), + [anon_sym_export] = ACTIONS(1651), + [anon_sym_alias] = ACTIONS(1651), + [anon_sym_let] = ACTIONS(1651), + [anon_sym_let_DASHenv] = ACTIONS(1651), + [anon_sym_mut] = ACTIONS(1651), + [anon_sym_const] = ACTIONS(1651), + [aux_sym_cmd_identifier_token1] = ACTIONS(1651), + [aux_sym_cmd_identifier_token2] = ACTIONS(1651), + [aux_sym_cmd_identifier_token3] = ACTIONS(1651), + [aux_sym_cmd_identifier_token4] = ACTIONS(1651), + [aux_sym_cmd_identifier_token5] = ACTIONS(1651), + [aux_sym_cmd_identifier_token6] = ACTIONS(1651), + [aux_sym_cmd_identifier_token7] = ACTIONS(1651), + [aux_sym_cmd_identifier_token8] = ACTIONS(1651), + [aux_sym_cmd_identifier_token9] = ACTIONS(1651), + [aux_sym_cmd_identifier_token10] = ACTIONS(1651), + [aux_sym_cmd_identifier_token11] = ACTIONS(1651), + [aux_sym_cmd_identifier_token12] = ACTIONS(1651), + [aux_sym_cmd_identifier_token13] = ACTIONS(1651), + [aux_sym_cmd_identifier_token14] = ACTIONS(1651), + [aux_sym_cmd_identifier_token15] = ACTIONS(1651), + [aux_sym_cmd_identifier_token16] = ACTIONS(1651), + [aux_sym_cmd_identifier_token17] = ACTIONS(1651), + [aux_sym_cmd_identifier_token18] = ACTIONS(1651), + [aux_sym_cmd_identifier_token19] = ACTIONS(1651), + [aux_sym_cmd_identifier_token20] = ACTIONS(1651), + [aux_sym_cmd_identifier_token21] = ACTIONS(1651), + [aux_sym_cmd_identifier_token22] = ACTIONS(1651), + [aux_sym_cmd_identifier_token23] = ACTIONS(1651), + [aux_sym_cmd_identifier_token24] = ACTIONS(1653), + [aux_sym_cmd_identifier_token25] = ACTIONS(1651), + [aux_sym_cmd_identifier_token26] = ACTIONS(1653), + [aux_sym_cmd_identifier_token27] = ACTIONS(1651), + [aux_sym_cmd_identifier_token28] = ACTIONS(1651), + [aux_sym_cmd_identifier_token29] = ACTIONS(1651), + [aux_sym_cmd_identifier_token30] = ACTIONS(1651), + [aux_sym_cmd_identifier_token31] = ACTIONS(1653), + [aux_sym_cmd_identifier_token32] = ACTIONS(1653), + [aux_sym_cmd_identifier_token33] = ACTIONS(1653), + [aux_sym_cmd_identifier_token34] = ACTIONS(1653), + [aux_sym_cmd_identifier_token35] = ACTIONS(1653), + [aux_sym_cmd_identifier_token36] = ACTIONS(1651), + [anon_sym_true] = ACTIONS(1653), + [anon_sym_false] = ACTIONS(1653), + [anon_sym_null] = ACTIONS(1653), + [aux_sym_cmd_identifier_token38] = ACTIONS(1651), + [aux_sym_cmd_identifier_token39] = ACTIONS(1653), + [aux_sym_cmd_identifier_token40] = ACTIONS(1653), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_def] = ACTIONS(1651), + [anon_sym_export_DASHenv] = ACTIONS(1651), + [anon_sym_extern] = ACTIONS(1651), + [anon_sym_module] = ACTIONS(1651), + [anon_sym_use] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_DOLLAR] = ACTIONS(1651), + [anon_sym_error] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(1651), + [anon_sym_break] = ACTIONS(1651), + [anon_sym_continue] = ACTIONS(1651), + [anon_sym_for] = ACTIONS(1651), + [anon_sym_loop] = ACTIONS(1651), + [anon_sym_while] = ACTIONS(1651), + [anon_sym_do] = ACTIONS(1651), + [anon_sym_if] = ACTIONS(1651), + [anon_sym_match] = ACTIONS(1651), + [aux_sym_ctrl_match_token1] = ACTIONS(1653), + [anon_sym_DOT_DOT] = ACTIONS(1651), + [anon_sym_try] = ACTIONS(1651), + [anon_sym_return] = ACTIONS(1651), + [anon_sym_source] = ACTIONS(1651), + [anon_sym_source_DASHenv] = ACTIONS(1651), + [anon_sym_register] = ACTIONS(1651), + [anon_sym_hide] = ACTIONS(1651), + [anon_sym_hide_DASHenv] = ACTIONS(1651), + [anon_sym_overlay] = ACTIONS(1651), + [anon_sym_where] = ACTIONS(1653), + [aux_sym_expr_unary_token1] = ACTIONS(1653), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1653), + [anon_sym_DOT_DOT_LT] = ACTIONS(1653), + [aux_sym__val_number_decimal_token1] = ACTIONS(1651), + [aux_sym__val_number_decimal_token2] = ACTIONS(1653), + [aux_sym__val_number_decimal_token3] = ACTIONS(1653), + [aux_sym__val_number_decimal_token4] = ACTIONS(1653), + [aux_sym__val_number_token1] = ACTIONS(1653), + [aux_sym__val_number_token2] = ACTIONS(1653), + [aux_sym__val_number_token3] = ACTIONS(1653), + [anon_sym_0b] = ACTIONS(1651), + [anon_sym_0o] = ACTIONS(1651), + [anon_sym_0x] = ACTIONS(1651), + [sym_val_date] = ACTIONS(1653), + [anon_sym_DQUOTE] = ACTIONS(1653), + [sym__str_single_quotes] = ACTIONS(1653), + [sym__str_back_ticks] = ACTIONS(1653), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1653), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1653), + [aux_sym_env_var_token1] = ACTIONS(1651), + [anon_sym_CARET] = ACTIONS(1653), [anon_sym_POUND] = ACTIONS(247), }, [285] = { - [sym_cmd_identifier] = STATE(4804), - [sym_ctrl_if_parenthesized] = STATE(5313), - [sym_block] = STATE(5326), - [sym__expression_parenthesized] = STATE(5326), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(4014), - [sym_expr_parenthesized] = STATE(2154), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(2143), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3317), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_command] = STATE(5326), [sym_comment] = STATE(285), - [aux_sym_shebang_repeat1] = STATE(1250), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1663), - [aux_sym_cmd_identifier_token38] = ACTIONS(1665), - [aux_sym_cmd_identifier_token39] = ACTIONS(1667), - [aux_sym_cmd_identifier_token40] = ACTIONS(1667), - [sym__newline] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_if] = ACTIONS(485), - [aux_sym_ctrl_match_token1] = ACTIONS(1671), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1673), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [aux_sym__val_number_decimal_token3] = ACTIONS(1677), - [aux_sym__val_number_decimal_token4] = ACTIONS(1679), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1786), + [anon_sym_alias] = ACTIONS(1786), + [anon_sym_let] = ACTIONS(1786), + [anon_sym_let_DASHenv] = ACTIONS(1786), + [anon_sym_mut] = ACTIONS(1786), + [anon_sym_const] = ACTIONS(1786), + [aux_sym_cmd_identifier_token1] = ACTIONS(1786), + [aux_sym_cmd_identifier_token2] = ACTIONS(1786), + [aux_sym_cmd_identifier_token3] = ACTIONS(1786), + [aux_sym_cmd_identifier_token4] = ACTIONS(1786), + [aux_sym_cmd_identifier_token5] = ACTIONS(1786), + [aux_sym_cmd_identifier_token6] = ACTIONS(1786), + [aux_sym_cmd_identifier_token7] = ACTIONS(1786), + [aux_sym_cmd_identifier_token8] = ACTIONS(1786), + [aux_sym_cmd_identifier_token9] = ACTIONS(1786), + [aux_sym_cmd_identifier_token10] = ACTIONS(1786), + [aux_sym_cmd_identifier_token11] = ACTIONS(1786), + [aux_sym_cmd_identifier_token12] = ACTIONS(1786), + [aux_sym_cmd_identifier_token13] = ACTIONS(1786), + [aux_sym_cmd_identifier_token14] = ACTIONS(1786), + [aux_sym_cmd_identifier_token15] = ACTIONS(1786), + [aux_sym_cmd_identifier_token16] = ACTIONS(1786), + [aux_sym_cmd_identifier_token17] = ACTIONS(1786), + [aux_sym_cmd_identifier_token18] = ACTIONS(1786), + [aux_sym_cmd_identifier_token19] = ACTIONS(1786), + [aux_sym_cmd_identifier_token20] = ACTIONS(1786), + [aux_sym_cmd_identifier_token21] = ACTIONS(1786), + [aux_sym_cmd_identifier_token22] = ACTIONS(1786), + [aux_sym_cmd_identifier_token23] = ACTIONS(1786), + [aux_sym_cmd_identifier_token24] = ACTIONS(1786), + [aux_sym_cmd_identifier_token25] = ACTIONS(1786), + [aux_sym_cmd_identifier_token26] = ACTIONS(1786), + [aux_sym_cmd_identifier_token27] = ACTIONS(1786), + [aux_sym_cmd_identifier_token28] = ACTIONS(1786), + [aux_sym_cmd_identifier_token29] = ACTIONS(1786), + [aux_sym_cmd_identifier_token30] = ACTIONS(1786), + [aux_sym_cmd_identifier_token31] = ACTIONS(1786), + [aux_sym_cmd_identifier_token32] = ACTIONS(1786), + [aux_sym_cmd_identifier_token33] = ACTIONS(1786), + [aux_sym_cmd_identifier_token34] = ACTIONS(1786), + [aux_sym_cmd_identifier_token35] = ACTIONS(1786), + [aux_sym_cmd_identifier_token36] = ACTIONS(1786), + [anon_sym_true] = ACTIONS(1786), + [anon_sym_false] = ACTIONS(1786), + [anon_sym_null] = ACTIONS(1786), + [aux_sym_cmd_identifier_token38] = ACTIONS(1786), + [aux_sym_cmd_identifier_token39] = ACTIONS(1786), + [aux_sym_cmd_identifier_token40] = ACTIONS(1786), + [anon_sym_def] = ACTIONS(1786), + [anon_sym_export_DASHenv] = ACTIONS(1786), + [anon_sym_extern] = ACTIONS(1786), + [anon_sym_module] = ACTIONS(1786), + [anon_sym_use] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_DOLLAR] = ACTIONS(1786), + [anon_sym_error] = ACTIONS(1786), + [anon_sym_list] = ACTIONS(1786), + [anon_sym_DASH] = ACTIONS(1786), + [anon_sym_break] = ACTIONS(1786), + [anon_sym_continue] = ACTIONS(1786), + [anon_sym_for] = ACTIONS(1786), + [anon_sym_in] = ACTIONS(1786), + [anon_sym_loop] = ACTIONS(1786), + [anon_sym_make] = ACTIONS(1786), + [anon_sym_while] = ACTIONS(1786), + [anon_sym_do] = ACTIONS(1786), + [anon_sym_if] = ACTIONS(1786), + [anon_sym_else] = ACTIONS(1786), + [anon_sym_match] = ACTIONS(1786), + [anon_sym_RBRACE] = ACTIONS(1786), + [anon_sym_try] = ACTIONS(1786), + [anon_sym_catch] = ACTIONS(1786), + [anon_sym_return] = ACTIONS(1786), + [anon_sym_source] = ACTIONS(1786), + [anon_sym_source_DASHenv] = ACTIONS(1786), + [anon_sym_register] = ACTIONS(1786), + [anon_sym_hide] = ACTIONS(1786), + [anon_sym_hide_DASHenv] = ACTIONS(1786), + [anon_sym_overlay] = ACTIONS(1786), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_as] = ACTIONS(1786), + [anon_sym_LPAREN2] = ACTIONS(1788), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1786), + [anon_sym_DOT_DOT2] = ACTIONS(1790), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1792), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1792), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1786), + [aux_sym__val_number_decimal_token1] = ACTIONS(1786), + [aux_sym__val_number_decimal_token2] = ACTIONS(1786), + [aux_sym__val_number_decimal_token3] = ACTIONS(1786), + [aux_sym__val_number_decimal_token4] = ACTIONS(1786), + [aux_sym__val_number_token1] = ACTIONS(1786), + [aux_sym__val_number_token2] = ACTIONS(1786), + [aux_sym__val_number_token3] = ACTIONS(1786), + [anon_sym_DQUOTE] = ACTIONS(1786), + [sym__str_single_quotes] = ACTIONS(1786), + [sym__str_back_ticks] = ACTIONS(1786), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1786), + [sym__entry_separator] = ACTIONS(1794), + [anon_sym_PLUS] = ACTIONS(1786), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1495), + [anon_sym_POUND] = ACTIONS(3), }, [286] = { - [sym_cmd_identifier] = STATE(4804), - [sym_ctrl_if_parenthesized] = STATE(5313), - [sym_block] = STATE(5326), - [sym__expression_parenthesized] = STATE(5326), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(4014), - [sym_expr_parenthesized] = STATE(2154), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(2143), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3317), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_command] = STATE(5326), [sym_comment] = STATE(286), - [aux_sym_shebang_repeat1] = STATE(290), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1663), - [aux_sym_cmd_identifier_token38] = ACTIONS(1665), - [aux_sym_cmd_identifier_token39] = ACTIONS(1667), - [aux_sym_cmd_identifier_token40] = ACTIONS(1667), - [sym__newline] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_if] = ACTIONS(485), - [aux_sym_ctrl_match_token1] = ACTIONS(1671), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1673), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [aux_sym__val_number_decimal_token3] = ACTIONS(1677), - [aux_sym__val_number_decimal_token4] = ACTIONS(1679), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - }, - [287] = { - [sym_cmd_identifier] = STATE(4804), - [sym_ctrl_if_parenthesized] = STATE(5329), - [sym_block] = STATE(5209), - [sym__expression_parenthesized] = STATE(5209), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(4014), - [sym_expr_parenthesized] = STATE(2154), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(2143), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3317), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_command] = STATE(5209), - [sym_comment] = STATE(287), - [aux_sym_shebang_repeat1] = STATE(1250), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1663), - [aux_sym_cmd_identifier_token38] = ACTIONS(1665), - [aux_sym_cmd_identifier_token39] = ACTIONS(1667), - [aux_sym_cmd_identifier_token40] = ACTIONS(1667), - [sym__newline] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_if] = ACTIONS(485), - [aux_sym_ctrl_match_token1] = ACTIONS(1671), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1673), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [aux_sym__val_number_decimal_token3] = ACTIONS(1677), - [aux_sym__val_number_decimal_token4] = ACTIONS(1679), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_export] = ACTIONS(1796), + [anon_sym_alias] = ACTIONS(1796), + [anon_sym_let] = ACTIONS(1796), + [anon_sym_let_DASHenv] = ACTIONS(1796), + [anon_sym_mut] = ACTIONS(1796), + [anon_sym_const] = ACTIONS(1796), + [aux_sym_cmd_identifier_token1] = ACTIONS(1796), + [aux_sym_cmd_identifier_token2] = ACTIONS(1796), + [aux_sym_cmd_identifier_token3] = ACTIONS(1796), + [aux_sym_cmd_identifier_token4] = ACTIONS(1796), + [aux_sym_cmd_identifier_token5] = ACTIONS(1796), + [aux_sym_cmd_identifier_token6] = ACTIONS(1796), + [aux_sym_cmd_identifier_token7] = ACTIONS(1796), + [aux_sym_cmd_identifier_token8] = ACTIONS(1796), + [aux_sym_cmd_identifier_token9] = ACTIONS(1796), + [aux_sym_cmd_identifier_token10] = ACTIONS(1796), + [aux_sym_cmd_identifier_token11] = ACTIONS(1796), + [aux_sym_cmd_identifier_token12] = ACTIONS(1796), + [aux_sym_cmd_identifier_token13] = ACTIONS(1796), + [aux_sym_cmd_identifier_token14] = ACTIONS(1796), + [aux_sym_cmd_identifier_token15] = ACTIONS(1796), + [aux_sym_cmd_identifier_token16] = ACTIONS(1796), + [aux_sym_cmd_identifier_token17] = ACTIONS(1796), + [aux_sym_cmd_identifier_token18] = ACTIONS(1796), + [aux_sym_cmd_identifier_token19] = ACTIONS(1796), + [aux_sym_cmd_identifier_token20] = ACTIONS(1796), + [aux_sym_cmd_identifier_token21] = ACTIONS(1796), + [aux_sym_cmd_identifier_token22] = ACTIONS(1796), + [aux_sym_cmd_identifier_token23] = ACTIONS(1796), + [aux_sym_cmd_identifier_token24] = ACTIONS(1796), + [aux_sym_cmd_identifier_token25] = ACTIONS(1796), + [aux_sym_cmd_identifier_token26] = ACTIONS(1796), + [aux_sym_cmd_identifier_token27] = ACTIONS(1796), + [aux_sym_cmd_identifier_token28] = ACTIONS(1796), + [aux_sym_cmd_identifier_token29] = ACTIONS(1796), + [aux_sym_cmd_identifier_token30] = ACTIONS(1796), + [aux_sym_cmd_identifier_token31] = ACTIONS(1796), + [aux_sym_cmd_identifier_token32] = ACTIONS(1796), + [aux_sym_cmd_identifier_token33] = ACTIONS(1796), + [aux_sym_cmd_identifier_token34] = ACTIONS(1796), + [aux_sym_cmd_identifier_token35] = ACTIONS(1796), + [aux_sym_cmd_identifier_token36] = ACTIONS(1796), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_null] = ACTIONS(1796), + [aux_sym_cmd_identifier_token38] = ACTIONS(1796), + [aux_sym_cmd_identifier_token39] = ACTIONS(1796), + [aux_sym_cmd_identifier_token40] = ACTIONS(1796), + [anon_sym_def] = ACTIONS(1796), + [anon_sym_export_DASHenv] = ACTIONS(1796), + [anon_sym_extern] = ACTIONS(1796), + [anon_sym_module] = ACTIONS(1796), + [anon_sym_use] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(1796), + [anon_sym_DOLLAR] = ACTIONS(1796), + [anon_sym_error] = ACTIONS(1796), + [anon_sym_list] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_for] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_loop] = ACTIONS(1796), + [anon_sym_make] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_do] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_match] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_catch] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_source] = ACTIONS(1796), + [anon_sym_source_DASHenv] = ACTIONS(1796), + [anon_sym_register] = ACTIONS(1796), + [anon_sym_hide] = ACTIONS(1796), + [anon_sym_hide_DASHenv] = ACTIONS(1796), + [anon_sym_overlay] = ACTIONS(1796), + [anon_sym_new] = ACTIONS(1796), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LPAREN2] = ACTIONS(1798), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1796), + [anon_sym_DOT_DOT2] = ACTIONS(1800), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1802), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1802), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1796), + [aux_sym__val_number_decimal_token1] = ACTIONS(1796), + [aux_sym__val_number_decimal_token2] = ACTIONS(1796), + [aux_sym__val_number_decimal_token3] = ACTIONS(1796), + [aux_sym__val_number_decimal_token4] = ACTIONS(1796), + [aux_sym__val_number_token1] = ACTIONS(1796), + [aux_sym__val_number_token2] = ACTIONS(1796), + [aux_sym__val_number_token3] = ACTIONS(1796), + [anon_sym_DQUOTE] = ACTIONS(1796), + [sym__str_single_quotes] = ACTIONS(1796), + [sym__str_back_ticks] = ACTIONS(1796), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1796), + [sym__entry_separator] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1796), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1806), + [anon_sym_POUND] = ACTIONS(3), + }, + [287] = { + [sym_path] = STATE(388), + [sym_comment] = STATE(287), + [aux_sym_cell_path_repeat1] = STATE(288), + [anon_sym_export] = ACTIONS(1017), + [anon_sym_alias] = ACTIONS(1017), + [anon_sym_let] = ACTIONS(1017), + [anon_sym_let_DASHenv] = ACTIONS(1017), + [anon_sym_mut] = ACTIONS(1017), + [anon_sym_const] = ACTIONS(1017), + [aux_sym_cmd_identifier_token1] = ACTIONS(1017), + [aux_sym_cmd_identifier_token2] = ACTIONS(1017), + [aux_sym_cmd_identifier_token3] = ACTIONS(1017), + [aux_sym_cmd_identifier_token4] = ACTIONS(1017), + [aux_sym_cmd_identifier_token5] = ACTIONS(1017), + [aux_sym_cmd_identifier_token6] = ACTIONS(1017), + [aux_sym_cmd_identifier_token7] = ACTIONS(1017), + [aux_sym_cmd_identifier_token8] = ACTIONS(1017), + [aux_sym_cmd_identifier_token9] = ACTIONS(1017), + [aux_sym_cmd_identifier_token10] = ACTIONS(1017), + [aux_sym_cmd_identifier_token11] = ACTIONS(1017), + [aux_sym_cmd_identifier_token12] = ACTIONS(1017), + [aux_sym_cmd_identifier_token13] = ACTIONS(1017), + [aux_sym_cmd_identifier_token14] = ACTIONS(1017), + [aux_sym_cmd_identifier_token15] = ACTIONS(1017), + [aux_sym_cmd_identifier_token16] = ACTIONS(1017), + [aux_sym_cmd_identifier_token17] = ACTIONS(1017), + [aux_sym_cmd_identifier_token18] = ACTIONS(1017), + [aux_sym_cmd_identifier_token19] = ACTIONS(1017), + [aux_sym_cmd_identifier_token20] = ACTIONS(1017), + [aux_sym_cmd_identifier_token21] = ACTIONS(1017), + [aux_sym_cmd_identifier_token22] = ACTIONS(1017), + [aux_sym_cmd_identifier_token23] = ACTIONS(1017), + [aux_sym_cmd_identifier_token24] = ACTIONS(1017), + [aux_sym_cmd_identifier_token25] = ACTIONS(1017), + [aux_sym_cmd_identifier_token26] = ACTIONS(1017), + [aux_sym_cmd_identifier_token27] = ACTIONS(1017), + [aux_sym_cmd_identifier_token28] = ACTIONS(1017), + [aux_sym_cmd_identifier_token29] = ACTIONS(1017), + [aux_sym_cmd_identifier_token30] = ACTIONS(1017), + [aux_sym_cmd_identifier_token31] = ACTIONS(1017), + [aux_sym_cmd_identifier_token32] = ACTIONS(1017), + [aux_sym_cmd_identifier_token33] = ACTIONS(1017), + [aux_sym_cmd_identifier_token34] = ACTIONS(1017), + [aux_sym_cmd_identifier_token35] = ACTIONS(1017), + [aux_sym_cmd_identifier_token36] = ACTIONS(1017), + [anon_sym_true] = ACTIONS(1019), + [anon_sym_false] = ACTIONS(1019), + [anon_sym_null] = ACTIONS(1019), + [aux_sym_cmd_identifier_token38] = ACTIONS(1017), + [aux_sym_cmd_identifier_token39] = ACTIONS(1019), + [aux_sym_cmd_identifier_token40] = ACTIONS(1019), + [anon_sym_def] = ACTIONS(1017), + [anon_sym_export_DASHenv] = ACTIONS(1017), + [anon_sym_extern] = ACTIONS(1017), + [anon_sym_module] = ACTIONS(1017), + [anon_sym_use] = ACTIONS(1017), + [anon_sym_LPAREN] = ACTIONS(1019), + [anon_sym_DOLLAR] = ACTIONS(1019), + [anon_sym_error] = ACTIONS(1017), + [anon_sym_list] = ACTIONS(1017), + [anon_sym_DASH] = ACTIONS(1017), + [anon_sym_break] = ACTIONS(1017), + [anon_sym_continue] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(1017), + [anon_sym_in] = ACTIONS(1017), + [anon_sym_loop] = ACTIONS(1017), + [anon_sym_make] = ACTIONS(1017), + [anon_sym_while] = ACTIONS(1017), + [anon_sym_do] = ACTIONS(1017), + [anon_sym_if] = ACTIONS(1017), + [anon_sym_else] = ACTIONS(1017), + [anon_sym_match] = ACTIONS(1017), + [anon_sym_RBRACE] = ACTIONS(1019), + [anon_sym_try] = ACTIONS(1017), + [anon_sym_catch] = ACTIONS(1017), + [anon_sym_return] = ACTIONS(1017), + [anon_sym_source] = ACTIONS(1017), + [anon_sym_source_DASHenv] = ACTIONS(1017), + [anon_sym_register] = ACTIONS(1017), + [anon_sym_hide] = ACTIONS(1017), + [anon_sym_hide_DASHenv] = ACTIONS(1017), + [anon_sym_overlay] = ACTIONS(1017), + [anon_sym_new] = ACTIONS(1017), + [anon_sym_as] = ACTIONS(1017), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1019), + [anon_sym_DOT_DOT2] = ACTIONS(1017), + [anon_sym_DOT] = ACTIONS(1696), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1019), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1019), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1019), + [aux_sym__val_number_decimal_token1] = ACTIONS(1017), + [aux_sym__val_number_decimal_token2] = ACTIONS(1019), + [aux_sym__val_number_decimal_token3] = ACTIONS(1019), + [aux_sym__val_number_decimal_token4] = ACTIONS(1019), + [aux_sym__val_number_token1] = ACTIONS(1019), + [aux_sym__val_number_token2] = ACTIONS(1019), + [aux_sym__val_number_token3] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1019), + [sym__str_single_quotes] = ACTIONS(1019), + [sym__str_back_ticks] = ACTIONS(1019), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(1017), [anon_sym_POUND] = ACTIONS(247), }, [288] = { - [sym_cmd_identifier] = STATE(4804), - [sym_ctrl_if_parenthesized] = STATE(5329), - [sym_block] = STATE(5209), - [sym__expression_parenthesized] = STATE(5209), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(4014), - [sym_expr_parenthesized] = STATE(2154), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(2143), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3317), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_command] = STATE(5209), + [sym_path] = STATE(388), [sym_comment] = STATE(288), - [aux_sym_shebang_repeat1] = STATE(291), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1663), - [aux_sym_cmd_identifier_token38] = ACTIONS(1665), - [aux_sym_cmd_identifier_token39] = ACTIONS(1667), - [aux_sym_cmd_identifier_token40] = ACTIONS(1667), - [sym__newline] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_if] = ACTIONS(485), - [aux_sym_ctrl_match_token1] = ACTIONS(1671), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1673), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [aux_sym__val_number_decimal_token3] = ACTIONS(1677), - [aux_sym__val_number_decimal_token4] = ACTIONS(1679), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(245), + [aux_sym_cell_path_repeat1] = STATE(288), + [anon_sym_export] = ACTIONS(1021), + [anon_sym_alias] = ACTIONS(1021), + [anon_sym_let] = ACTIONS(1021), + [anon_sym_let_DASHenv] = ACTIONS(1021), + [anon_sym_mut] = ACTIONS(1021), + [anon_sym_const] = ACTIONS(1021), + [aux_sym_cmd_identifier_token1] = ACTIONS(1021), + [aux_sym_cmd_identifier_token2] = ACTIONS(1021), + [aux_sym_cmd_identifier_token3] = ACTIONS(1021), + [aux_sym_cmd_identifier_token4] = ACTIONS(1021), + [aux_sym_cmd_identifier_token5] = ACTIONS(1021), + [aux_sym_cmd_identifier_token6] = ACTIONS(1021), + [aux_sym_cmd_identifier_token7] = ACTIONS(1021), + [aux_sym_cmd_identifier_token8] = ACTIONS(1021), + [aux_sym_cmd_identifier_token9] = ACTIONS(1021), + [aux_sym_cmd_identifier_token10] = ACTIONS(1021), + [aux_sym_cmd_identifier_token11] = ACTIONS(1021), + [aux_sym_cmd_identifier_token12] = ACTIONS(1021), + [aux_sym_cmd_identifier_token13] = ACTIONS(1021), + [aux_sym_cmd_identifier_token14] = ACTIONS(1021), + [aux_sym_cmd_identifier_token15] = ACTIONS(1021), + [aux_sym_cmd_identifier_token16] = ACTIONS(1021), + [aux_sym_cmd_identifier_token17] = ACTIONS(1021), + [aux_sym_cmd_identifier_token18] = ACTIONS(1021), + [aux_sym_cmd_identifier_token19] = ACTIONS(1021), + [aux_sym_cmd_identifier_token20] = ACTIONS(1021), + [aux_sym_cmd_identifier_token21] = ACTIONS(1021), + [aux_sym_cmd_identifier_token22] = ACTIONS(1021), + [aux_sym_cmd_identifier_token23] = ACTIONS(1021), + [aux_sym_cmd_identifier_token24] = ACTIONS(1021), + [aux_sym_cmd_identifier_token25] = ACTIONS(1021), + [aux_sym_cmd_identifier_token26] = ACTIONS(1021), + [aux_sym_cmd_identifier_token27] = ACTIONS(1021), + [aux_sym_cmd_identifier_token28] = ACTIONS(1021), + [aux_sym_cmd_identifier_token29] = ACTIONS(1021), + [aux_sym_cmd_identifier_token30] = ACTIONS(1021), + [aux_sym_cmd_identifier_token31] = ACTIONS(1021), + [aux_sym_cmd_identifier_token32] = ACTIONS(1021), + [aux_sym_cmd_identifier_token33] = ACTIONS(1021), + [aux_sym_cmd_identifier_token34] = ACTIONS(1021), + [aux_sym_cmd_identifier_token35] = ACTIONS(1021), + [aux_sym_cmd_identifier_token36] = ACTIONS(1021), + [anon_sym_true] = ACTIONS(1023), + [anon_sym_false] = ACTIONS(1023), + [anon_sym_null] = ACTIONS(1023), + [aux_sym_cmd_identifier_token38] = ACTIONS(1021), + [aux_sym_cmd_identifier_token39] = ACTIONS(1023), + [aux_sym_cmd_identifier_token40] = ACTIONS(1023), + [anon_sym_def] = ACTIONS(1021), + [anon_sym_export_DASHenv] = ACTIONS(1021), + [anon_sym_extern] = ACTIONS(1021), + [anon_sym_module] = ACTIONS(1021), + [anon_sym_use] = ACTIONS(1021), + [anon_sym_LPAREN] = ACTIONS(1023), + [anon_sym_DOLLAR] = ACTIONS(1023), + [anon_sym_error] = ACTIONS(1021), + [anon_sym_list] = ACTIONS(1021), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_break] = ACTIONS(1021), + [anon_sym_continue] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1021), + [anon_sym_in] = ACTIONS(1021), + [anon_sym_loop] = ACTIONS(1021), + [anon_sym_make] = ACTIONS(1021), + [anon_sym_while] = ACTIONS(1021), + [anon_sym_do] = ACTIONS(1021), + [anon_sym_if] = ACTIONS(1021), + [anon_sym_else] = ACTIONS(1021), + [anon_sym_match] = ACTIONS(1021), + [anon_sym_RBRACE] = ACTIONS(1023), + [anon_sym_try] = ACTIONS(1021), + [anon_sym_catch] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1021), + [anon_sym_source] = ACTIONS(1021), + [anon_sym_source_DASHenv] = ACTIONS(1021), + [anon_sym_register] = ACTIONS(1021), + [anon_sym_hide] = ACTIONS(1021), + [anon_sym_hide_DASHenv] = ACTIONS(1021), + [anon_sym_overlay] = ACTIONS(1021), + [anon_sym_new] = ACTIONS(1021), + [anon_sym_as] = ACTIONS(1021), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1023), + [anon_sym_DOT_DOT2] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(1808), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1023), + [aux_sym__val_number_decimal_token1] = ACTIONS(1021), + [aux_sym__val_number_decimal_token2] = ACTIONS(1023), + [aux_sym__val_number_decimal_token3] = ACTIONS(1023), + [aux_sym__val_number_decimal_token4] = ACTIONS(1023), + [aux_sym__val_number_token1] = ACTIONS(1023), + [aux_sym__val_number_token2] = ACTIONS(1023), + [aux_sym__val_number_token3] = ACTIONS(1023), + [anon_sym_DQUOTE] = ACTIONS(1023), + [sym__str_single_quotes] = ACTIONS(1023), + [sym__str_back_ticks] = ACTIONS(1023), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(1021), [anon_sym_POUND] = ACTIONS(247), }, [289] = { - [sym_cmd_identifier] = STATE(4804), - [sym_ctrl_if_parenthesized] = STATE(5337), - [sym_block] = STATE(5343), - [sym__expression_parenthesized] = STATE(5343), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(4014), - [sym_expr_parenthesized] = STATE(2154), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(2143), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3317), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_command] = STATE(5343), + [sym_cmd_identifier] = STATE(4558), + [sym_ctrl_if_parenthesized] = STATE(4985), + [sym_block] = STATE(4986), + [sym__expression_parenthesized] = STATE(4986), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3734), + [sym_expr_parenthesized] = STATE(1961), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1934), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3012), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_command] = STATE(4986), [sym_comment] = STATE(289), - [aux_sym_shebang_repeat1] = STATE(1250), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1663), - [aux_sym_cmd_identifier_token38] = ACTIONS(1665), - [aux_sym_cmd_identifier_token39] = ACTIONS(1667), - [aux_sym_cmd_identifier_token40] = ACTIONS(1667), - [sym__newline] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_if] = ACTIONS(485), - [aux_sym_ctrl_match_token1] = ACTIONS(1671), + [aux_sym_shebang_repeat1] = STATE(1022), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [anon_sym_null] = ACTIONS(1733), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1737), + [aux_sym_cmd_identifier_token40] = ACTIONS(1737), + [sym__newline] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_if] = ACTIONS(479), + [aux_sym_ctrl_match_token1] = ACTIONS(1741), [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(493), + [aux_sym_expr_unary_token1] = ACTIONS(487), [anon_sym_DOT_DOT_EQ] = ACTIONS(213), [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1673), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [aux_sym__val_number_decimal_token3] = ACTIONS(1677), - [aux_sym__val_number_decimal_token4] = ACTIONS(1679), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym__val_number_decimal_token1] = ACTIONS(1743), + [aux_sym__val_number_decimal_token2] = ACTIONS(1745), + [aux_sym__val_number_decimal_token3] = ACTIONS(1747), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), }, [290] = { - [sym_cmd_identifier] = STATE(4804), - [sym_ctrl_if_parenthesized] = STATE(5347), - [sym_block] = STATE(5383), - [sym__expression_parenthesized] = STATE(5383), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(4014), - [sym_expr_parenthesized] = STATE(2154), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(2143), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3317), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_command] = STATE(5383), [sym_comment] = STATE(290), - [aux_sym_shebang_repeat1] = STATE(1250), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1663), - [aux_sym_cmd_identifier_token38] = ACTIONS(1665), - [aux_sym_cmd_identifier_token39] = ACTIONS(1667), - [aux_sym_cmd_identifier_token40] = ACTIONS(1667), - [sym__newline] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_if] = ACTIONS(485), - [aux_sym_ctrl_match_token1] = ACTIONS(1671), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1673), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [aux_sym__val_number_decimal_token3] = ACTIONS(1677), - [aux_sym__val_number_decimal_token4] = ACTIONS(1679), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_export] = ACTIONS(1705), + [anon_sym_alias] = ACTIONS(1705), + [anon_sym_let] = ACTIONS(1705), + [anon_sym_let_DASHenv] = ACTIONS(1705), + [anon_sym_mut] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [aux_sym_cmd_identifier_token1] = ACTIONS(1705), + [aux_sym_cmd_identifier_token2] = ACTIONS(1705), + [aux_sym_cmd_identifier_token3] = ACTIONS(1705), + [aux_sym_cmd_identifier_token4] = ACTIONS(1705), + [aux_sym_cmd_identifier_token5] = ACTIONS(1705), + [aux_sym_cmd_identifier_token6] = ACTIONS(1705), + [aux_sym_cmd_identifier_token7] = ACTIONS(1705), + [aux_sym_cmd_identifier_token8] = ACTIONS(1705), + [aux_sym_cmd_identifier_token9] = ACTIONS(1705), + [aux_sym_cmd_identifier_token10] = ACTIONS(1705), + [aux_sym_cmd_identifier_token11] = ACTIONS(1705), + [aux_sym_cmd_identifier_token12] = ACTIONS(1705), + [aux_sym_cmd_identifier_token13] = ACTIONS(1705), + [aux_sym_cmd_identifier_token14] = ACTIONS(1705), + [aux_sym_cmd_identifier_token15] = ACTIONS(1705), + [aux_sym_cmd_identifier_token16] = ACTIONS(1705), + [aux_sym_cmd_identifier_token17] = ACTIONS(1705), + [aux_sym_cmd_identifier_token18] = ACTIONS(1705), + [aux_sym_cmd_identifier_token19] = ACTIONS(1705), + [aux_sym_cmd_identifier_token20] = ACTIONS(1705), + [aux_sym_cmd_identifier_token21] = ACTIONS(1705), + [aux_sym_cmd_identifier_token22] = ACTIONS(1705), + [aux_sym_cmd_identifier_token23] = ACTIONS(1705), + [aux_sym_cmd_identifier_token24] = ACTIONS(1705), + [aux_sym_cmd_identifier_token25] = ACTIONS(1705), + [aux_sym_cmd_identifier_token26] = ACTIONS(1705), + [aux_sym_cmd_identifier_token27] = ACTIONS(1705), + [aux_sym_cmd_identifier_token28] = ACTIONS(1705), + [aux_sym_cmd_identifier_token29] = ACTIONS(1705), + [aux_sym_cmd_identifier_token30] = ACTIONS(1705), + [aux_sym_cmd_identifier_token31] = ACTIONS(1705), + [aux_sym_cmd_identifier_token32] = ACTIONS(1705), + [aux_sym_cmd_identifier_token33] = ACTIONS(1705), + [aux_sym_cmd_identifier_token34] = ACTIONS(1705), + [aux_sym_cmd_identifier_token35] = ACTIONS(1705), + [aux_sym_cmd_identifier_token36] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1707), + [anon_sym_false] = ACTIONS(1707), + [anon_sym_null] = ACTIONS(1707), + [aux_sym_cmd_identifier_token38] = ACTIONS(1705), + [aux_sym_cmd_identifier_token39] = ACTIONS(1707), + [aux_sym_cmd_identifier_token40] = ACTIONS(1707), + [anon_sym_def] = ACTIONS(1705), + [anon_sym_export_DASHenv] = ACTIONS(1705), + [anon_sym_extern] = ACTIONS(1705), + [anon_sym_module] = ACTIONS(1705), + [anon_sym_use] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1707), + [anon_sym_error] = ACTIONS(1705), + [anon_sym_list] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_break] = ACTIONS(1705), + [anon_sym_continue] = ACTIONS(1705), + [anon_sym_for] = ACTIONS(1705), + [anon_sym_in] = ACTIONS(1705), + [anon_sym_loop] = ACTIONS(1705), + [anon_sym_make] = ACTIONS(1705), + [anon_sym_while] = ACTIONS(1705), + [anon_sym_do] = ACTIONS(1705), + [anon_sym_if] = ACTIONS(1705), + [anon_sym_else] = ACTIONS(1705), + [anon_sym_match] = ACTIONS(1705), + [anon_sym_RBRACE] = ACTIONS(1707), + [anon_sym_try] = ACTIONS(1705), + [anon_sym_catch] = ACTIONS(1705), + [anon_sym_return] = ACTIONS(1705), + [anon_sym_source] = ACTIONS(1705), + [anon_sym_source_DASHenv] = ACTIONS(1705), + [anon_sym_register] = ACTIONS(1705), + [anon_sym_hide] = ACTIONS(1705), + [anon_sym_hide_DASHenv] = ACTIONS(1705), + [anon_sym_overlay] = ACTIONS(1705), + [anon_sym_new] = ACTIONS(1705), + [anon_sym_as] = ACTIONS(1705), + [anon_sym_LPAREN2] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1707), + [anon_sym_DOT_DOT2] = ACTIONS(1705), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1707), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1707), + [aux_sym__val_number_decimal_token1] = ACTIONS(1705), + [aux_sym__val_number_decimal_token2] = ACTIONS(1707), + [aux_sym__val_number_decimal_token3] = ACTIONS(1707), + [aux_sym__val_number_decimal_token4] = ACTIONS(1707), + [aux_sym__val_number_token1] = ACTIONS(1707), + [aux_sym__val_number_token2] = ACTIONS(1707), + [aux_sym__val_number_token3] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1707), + [sym__str_single_quotes] = ACTIONS(1707), + [sym__str_back_ticks] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1705), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1705), [anon_sym_POUND] = ACTIONS(247), }, [291] = { - [sym_cmd_identifier] = STATE(4804), - [sym_ctrl_if_parenthesized] = STATE(5374), - [sym_block] = STATE(5303), - [sym__expression_parenthesized] = STATE(5303), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(4014), - [sym_expr_parenthesized] = STATE(2154), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(2143), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3317), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_command] = STATE(5303), [sym_comment] = STATE(291), - [aux_sym_shebang_repeat1] = STATE(1250), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1663), - [aux_sym_cmd_identifier_token38] = ACTIONS(1665), - [aux_sym_cmd_identifier_token39] = ACTIONS(1667), - [aux_sym_cmd_identifier_token40] = ACTIONS(1667), - [sym__newline] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_if] = ACTIONS(485), - [aux_sym_ctrl_match_token1] = ACTIONS(1671), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1673), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [aux_sym__val_number_decimal_token3] = ACTIONS(1677), - [aux_sym__val_number_decimal_token4] = ACTIONS(1679), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1643), + [anon_sym_alias] = ACTIONS(1643), + [anon_sym_let] = ACTIONS(1643), + [anon_sym_let_DASHenv] = ACTIONS(1643), + [anon_sym_mut] = ACTIONS(1643), + [anon_sym_const] = ACTIONS(1643), + [aux_sym_cmd_identifier_token1] = ACTIONS(1643), + [aux_sym_cmd_identifier_token2] = ACTIONS(1643), + [aux_sym_cmd_identifier_token3] = ACTIONS(1643), + [aux_sym_cmd_identifier_token4] = ACTIONS(1643), + [aux_sym_cmd_identifier_token5] = ACTIONS(1643), + [aux_sym_cmd_identifier_token6] = ACTIONS(1643), + [aux_sym_cmd_identifier_token7] = ACTIONS(1643), + [aux_sym_cmd_identifier_token8] = ACTIONS(1643), + [aux_sym_cmd_identifier_token9] = ACTIONS(1643), + [aux_sym_cmd_identifier_token10] = ACTIONS(1643), + [aux_sym_cmd_identifier_token11] = ACTIONS(1643), + [aux_sym_cmd_identifier_token12] = ACTIONS(1643), + [aux_sym_cmd_identifier_token13] = ACTIONS(1643), + [aux_sym_cmd_identifier_token14] = ACTIONS(1643), + [aux_sym_cmd_identifier_token15] = ACTIONS(1643), + [aux_sym_cmd_identifier_token16] = ACTIONS(1643), + [aux_sym_cmd_identifier_token17] = ACTIONS(1643), + [aux_sym_cmd_identifier_token18] = ACTIONS(1643), + [aux_sym_cmd_identifier_token19] = ACTIONS(1643), + [aux_sym_cmd_identifier_token20] = ACTIONS(1643), + [aux_sym_cmd_identifier_token21] = ACTIONS(1643), + [aux_sym_cmd_identifier_token22] = ACTIONS(1643), + [aux_sym_cmd_identifier_token23] = ACTIONS(1643), + [aux_sym_cmd_identifier_token24] = ACTIONS(1643), + [aux_sym_cmd_identifier_token25] = ACTIONS(1643), + [aux_sym_cmd_identifier_token26] = ACTIONS(1643), + [aux_sym_cmd_identifier_token27] = ACTIONS(1643), + [aux_sym_cmd_identifier_token28] = ACTIONS(1643), + [aux_sym_cmd_identifier_token29] = ACTIONS(1643), + [aux_sym_cmd_identifier_token30] = ACTIONS(1643), + [aux_sym_cmd_identifier_token31] = ACTIONS(1643), + [aux_sym_cmd_identifier_token32] = ACTIONS(1643), + [aux_sym_cmd_identifier_token33] = ACTIONS(1643), + [aux_sym_cmd_identifier_token34] = ACTIONS(1643), + [aux_sym_cmd_identifier_token35] = ACTIONS(1643), + [aux_sym_cmd_identifier_token36] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_null] = ACTIONS(1643), + [aux_sym_cmd_identifier_token38] = ACTIONS(1643), + [aux_sym_cmd_identifier_token39] = ACTIONS(1643), + [aux_sym_cmd_identifier_token40] = ACTIONS(1643), + [anon_sym_def] = ACTIONS(1643), + [anon_sym_export_DASHenv] = ACTIONS(1643), + [anon_sym_extern] = ACTIONS(1643), + [anon_sym_module] = ACTIONS(1643), + [anon_sym_use] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(1643), + [anon_sym_error] = ACTIONS(1643), + [anon_sym_list] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_break] = ACTIONS(1643), + [anon_sym_continue] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_loop] = ACTIONS(1643), + [anon_sym_make] = ACTIONS(1643), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_do] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_else] = ACTIONS(1643), + [anon_sym_match] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), + [anon_sym_try] = ACTIONS(1643), + [anon_sym_catch] = ACTIONS(1643), + [anon_sym_return] = ACTIONS(1643), + [anon_sym_source] = ACTIONS(1643), + [anon_sym_source_DASHenv] = ACTIONS(1643), + [anon_sym_register] = ACTIONS(1643), + [anon_sym_hide] = ACTIONS(1643), + [anon_sym_hide_DASHenv] = ACTIONS(1643), + [anon_sym_overlay] = ACTIONS(1643), + [anon_sym_new] = ACTIONS(1643), + [anon_sym_as] = ACTIONS(1643), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1643), + [anon_sym_DOT_DOT2] = ACTIONS(1643), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), + [aux_sym__immediate_decimal_token2] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1643), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1643), + [aux_sym__val_number_decimal_token3] = ACTIONS(1643), + [aux_sym__val_number_decimal_token4] = ACTIONS(1643), + [aux_sym__val_number_token1] = ACTIONS(1643), + [aux_sym__val_number_token2] = ACTIONS(1643), + [aux_sym__val_number_token3] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1643), + [sym__str_single_quotes] = ACTIONS(1643), + [sym__str_back_ticks] = ACTIONS(1643), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1643), + [sym__entry_separator] = ACTIONS(1645), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_POUND] = ACTIONS(3), }, [292] = { - [sym_cmd_identifier] = STATE(4804), - [sym_ctrl_if_parenthesized] = STATE(5374), - [sym_block] = STATE(5303), - [sym__expression_parenthesized] = STATE(5303), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(4014), - [sym_expr_parenthesized] = STATE(2154), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(2143), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3317), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_command] = STATE(5303), [sym_comment] = STATE(292), - [aux_sym_shebang_repeat1] = STATE(293), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1663), - [aux_sym_cmd_identifier_token38] = ACTIONS(1665), - [aux_sym_cmd_identifier_token39] = ACTIONS(1667), - [aux_sym_cmd_identifier_token40] = ACTIONS(1667), - [sym__newline] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_if] = ACTIONS(485), - [aux_sym_ctrl_match_token1] = ACTIONS(1671), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1673), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [aux_sym__val_number_decimal_token3] = ACTIONS(1677), - [aux_sym__val_number_decimal_token4] = ACTIONS(1679), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1060), + [anon_sym_alias] = ACTIONS(1060), + [anon_sym_let] = ACTIONS(1060), + [anon_sym_let_DASHenv] = ACTIONS(1060), + [anon_sym_mut] = ACTIONS(1060), + [anon_sym_const] = ACTIONS(1060), + [aux_sym_cmd_identifier_token1] = ACTIONS(1060), + [aux_sym_cmd_identifier_token2] = ACTIONS(1060), + [aux_sym_cmd_identifier_token3] = ACTIONS(1060), + [aux_sym_cmd_identifier_token4] = ACTIONS(1060), + [aux_sym_cmd_identifier_token5] = ACTIONS(1060), + [aux_sym_cmd_identifier_token6] = ACTIONS(1060), + [aux_sym_cmd_identifier_token7] = ACTIONS(1060), + [aux_sym_cmd_identifier_token8] = ACTIONS(1060), + [aux_sym_cmd_identifier_token9] = ACTIONS(1060), + [aux_sym_cmd_identifier_token10] = ACTIONS(1060), + [aux_sym_cmd_identifier_token11] = ACTIONS(1060), + [aux_sym_cmd_identifier_token12] = ACTIONS(1060), + [aux_sym_cmd_identifier_token13] = ACTIONS(1060), + [aux_sym_cmd_identifier_token14] = ACTIONS(1060), + [aux_sym_cmd_identifier_token15] = ACTIONS(1060), + [aux_sym_cmd_identifier_token16] = ACTIONS(1060), + [aux_sym_cmd_identifier_token17] = ACTIONS(1060), + [aux_sym_cmd_identifier_token18] = ACTIONS(1060), + [aux_sym_cmd_identifier_token19] = ACTIONS(1060), + [aux_sym_cmd_identifier_token20] = ACTIONS(1060), + [aux_sym_cmd_identifier_token21] = ACTIONS(1060), + [aux_sym_cmd_identifier_token22] = ACTIONS(1060), + [aux_sym_cmd_identifier_token23] = ACTIONS(1060), + [aux_sym_cmd_identifier_token24] = ACTIONS(1060), + [aux_sym_cmd_identifier_token25] = ACTIONS(1060), + [aux_sym_cmd_identifier_token26] = ACTIONS(1060), + [aux_sym_cmd_identifier_token27] = ACTIONS(1060), + [aux_sym_cmd_identifier_token28] = ACTIONS(1060), + [aux_sym_cmd_identifier_token29] = ACTIONS(1060), + [aux_sym_cmd_identifier_token30] = ACTIONS(1060), + [aux_sym_cmd_identifier_token31] = ACTIONS(1060), + [aux_sym_cmd_identifier_token32] = ACTIONS(1060), + [aux_sym_cmd_identifier_token33] = ACTIONS(1060), + [aux_sym_cmd_identifier_token34] = ACTIONS(1060), + [aux_sym_cmd_identifier_token35] = ACTIONS(1060), + [aux_sym_cmd_identifier_token36] = ACTIONS(1060), + [anon_sym_true] = ACTIONS(1060), + [anon_sym_false] = ACTIONS(1060), + [anon_sym_null] = ACTIONS(1060), + [aux_sym_cmd_identifier_token38] = ACTIONS(1060), + [aux_sym_cmd_identifier_token39] = ACTIONS(1060), + [aux_sym_cmd_identifier_token40] = ACTIONS(1060), + [anon_sym_def] = ACTIONS(1060), + [anon_sym_export_DASHenv] = ACTIONS(1060), + [anon_sym_extern] = ACTIONS(1060), + [anon_sym_module] = ACTIONS(1060), + [anon_sym_use] = ACTIONS(1060), + [anon_sym_LPAREN] = ACTIONS(1060), + [anon_sym_DOLLAR] = ACTIONS(1060), + [anon_sym_error] = ACTIONS(1060), + [anon_sym_list] = ACTIONS(1060), + [anon_sym_DASH] = ACTIONS(1060), + [anon_sym_break] = ACTIONS(1060), + [anon_sym_continue] = ACTIONS(1060), + [anon_sym_for] = ACTIONS(1060), + [anon_sym_in] = ACTIONS(1060), + [anon_sym_loop] = ACTIONS(1060), + [anon_sym_make] = ACTIONS(1060), + [anon_sym_while] = ACTIONS(1060), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_if] = ACTIONS(1060), + [anon_sym_else] = ACTIONS(1060), + [anon_sym_match] = ACTIONS(1060), + [anon_sym_RBRACE] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1060), + [anon_sym_catch] = ACTIONS(1060), + [anon_sym_return] = ACTIONS(1060), + [anon_sym_source] = ACTIONS(1060), + [anon_sym_source_DASHenv] = ACTIONS(1060), + [anon_sym_register] = ACTIONS(1060), + [anon_sym_hide] = ACTIONS(1060), + [anon_sym_hide_DASHenv] = ACTIONS(1060), + [anon_sym_overlay] = ACTIONS(1060), + [anon_sym_new] = ACTIONS(1060), + [anon_sym_as] = ACTIONS(1060), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1060), + [anon_sym_DOT_DOT2] = ACTIONS(1060), + [anon_sym_DOT] = ACTIONS(1060), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1062), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1062), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1060), + [aux_sym__val_number_decimal_token1] = ACTIONS(1060), + [aux_sym__val_number_decimal_token2] = ACTIONS(1060), + [aux_sym__val_number_decimal_token3] = ACTIONS(1060), + [aux_sym__val_number_decimal_token4] = ACTIONS(1060), + [aux_sym__val_number_token1] = ACTIONS(1060), + [aux_sym__val_number_token2] = ACTIONS(1060), + [aux_sym__val_number_token3] = ACTIONS(1060), + [anon_sym_DQUOTE] = ACTIONS(1060), + [sym__str_single_quotes] = ACTIONS(1060), + [sym__str_back_ticks] = ACTIONS(1060), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1060), + [sym__entry_separator] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1060), + [anon_sym_POUND] = ACTIONS(3), }, [293] = { - [sym_cmd_identifier] = STATE(4804), - [sym_ctrl_if_parenthesized] = STATE(5394), - [sym_block] = STATE(5256), - [sym__expression_parenthesized] = STATE(5256), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(4014), - [sym_expr_parenthesized] = STATE(2154), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(2143), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3317), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_command] = STATE(5256), [sym_comment] = STATE(293), - [aux_sym_shebang_repeat1] = STATE(1250), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1663), - [aux_sym_cmd_identifier_token38] = ACTIONS(1665), - [aux_sym_cmd_identifier_token39] = ACTIONS(1667), - [aux_sym_cmd_identifier_token40] = ACTIONS(1667), - [sym__newline] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_if] = ACTIONS(485), - [aux_sym_ctrl_match_token1] = ACTIONS(1671), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1673), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [aux_sym__val_number_decimal_token3] = ACTIONS(1677), - [aux_sym__val_number_decimal_token4] = ACTIONS(1679), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1705), + [anon_sym_alias] = ACTIONS(1705), + [anon_sym_let] = ACTIONS(1705), + [anon_sym_let_DASHenv] = ACTIONS(1705), + [anon_sym_mut] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [aux_sym_cmd_identifier_token1] = ACTIONS(1705), + [aux_sym_cmd_identifier_token2] = ACTIONS(1705), + [aux_sym_cmd_identifier_token3] = ACTIONS(1705), + [aux_sym_cmd_identifier_token4] = ACTIONS(1705), + [aux_sym_cmd_identifier_token5] = ACTIONS(1705), + [aux_sym_cmd_identifier_token6] = ACTIONS(1705), + [aux_sym_cmd_identifier_token7] = ACTIONS(1705), + [aux_sym_cmd_identifier_token8] = ACTIONS(1705), + [aux_sym_cmd_identifier_token9] = ACTIONS(1705), + [aux_sym_cmd_identifier_token10] = ACTIONS(1705), + [aux_sym_cmd_identifier_token11] = ACTIONS(1705), + [aux_sym_cmd_identifier_token12] = ACTIONS(1705), + [aux_sym_cmd_identifier_token13] = ACTIONS(1705), + [aux_sym_cmd_identifier_token14] = ACTIONS(1705), + [aux_sym_cmd_identifier_token15] = ACTIONS(1705), + [aux_sym_cmd_identifier_token16] = ACTIONS(1705), + [aux_sym_cmd_identifier_token17] = ACTIONS(1705), + [aux_sym_cmd_identifier_token18] = ACTIONS(1705), + [aux_sym_cmd_identifier_token19] = ACTIONS(1705), + [aux_sym_cmd_identifier_token20] = ACTIONS(1705), + [aux_sym_cmd_identifier_token21] = ACTIONS(1705), + [aux_sym_cmd_identifier_token22] = ACTIONS(1705), + [aux_sym_cmd_identifier_token23] = ACTIONS(1705), + [aux_sym_cmd_identifier_token24] = ACTIONS(1705), + [aux_sym_cmd_identifier_token25] = ACTIONS(1705), + [aux_sym_cmd_identifier_token26] = ACTIONS(1705), + [aux_sym_cmd_identifier_token27] = ACTIONS(1705), + [aux_sym_cmd_identifier_token28] = ACTIONS(1705), + [aux_sym_cmd_identifier_token29] = ACTIONS(1705), + [aux_sym_cmd_identifier_token30] = ACTIONS(1705), + [aux_sym_cmd_identifier_token31] = ACTIONS(1705), + [aux_sym_cmd_identifier_token32] = ACTIONS(1705), + [aux_sym_cmd_identifier_token33] = ACTIONS(1705), + [aux_sym_cmd_identifier_token34] = ACTIONS(1705), + [aux_sym_cmd_identifier_token35] = ACTIONS(1705), + [aux_sym_cmd_identifier_token36] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1705), + [anon_sym_false] = ACTIONS(1705), + [anon_sym_null] = ACTIONS(1705), + [aux_sym_cmd_identifier_token38] = ACTIONS(1705), + [aux_sym_cmd_identifier_token39] = ACTIONS(1705), + [aux_sym_cmd_identifier_token40] = ACTIONS(1705), + [anon_sym_def] = ACTIONS(1705), + [anon_sym_export_DASHenv] = ACTIONS(1705), + [anon_sym_extern] = ACTIONS(1705), + [anon_sym_module] = ACTIONS(1705), + [anon_sym_use] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1705), + [anon_sym_error] = ACTIONS(1705), + [anon_sym_list] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_break] = ACTIONS(1705), + [anon_sym_continue] = ACTIONS(1705), + [anon_sym_for] = ACTIONS(1705), + [anon_sym_in] = ACTIONS(1705), + [anon_sym_loop] = ACTIONS(1705), + [anon_sym_make] = ACTIONS(1705), + [anon_sym_while] = ACTIONS(1705), + [anon_sym_do] = ACTIONS(1705), + [anon_sym_if] = ACTIONS(1705), + [anon_sym_else] = ACTIONS(1705), + [anon_sym_match] = ACTIONS(1705), + [anon_sym_RBRACE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1705), + [anon_sym_catch] = ACTIONS(1705), + [anon_sym_return] = ACTIONS(1705), + [anon_sym_source] = ACTIONS(1705), + [anon_sym_source_DASHenv] = ACTIONS(1705), + [anon_sym_register] = ACTIONS(1705), + [anon_sym_hide] = ACTIONS(1705), + [anon_sym_hide_DASHenv] = ACTIONS(1705), + [anon_sym_overlay] = ACTIONS(1705), + [anon_sym_new] = ACTIONS(1705), + [anon_sym_as] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1705), + [anon_sym_DOT_DOT2] = ACTIONS(1705), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1707), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1707), + [aux_sym__immediate_decimal_token2] = ACTIONS(1811), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1705), + [aux_sym__val_number_decimal_token1] = ACTIONS(1705), + [aux_sym__val_number_decimal_token2] = ACTIONS(1705), + [aux_sym__val_number_decimal_token3] = ACTIONS(1705), + [aux_sym__val_number_decimal_token4] = ACTIONS(1705), + [aux_sym__val_number_token1] = ACTIONS(1705), + [aux_sym__val_number_token2] = ACTIONS(1705), + [aux_sym__val_number_token3] = ACTIONS(1705), + [anon_sym_DQUOTE] = ACTIONS(1705), + [sym__str_single_quotes] = ACTIONS(1705), + [sym__str_back_ticks] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1705), + [sym__entry_separator] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_POUND] = ACTIONS(3), }, [294] = { [sym_comment] = STATE(294), - [ts_builtin_sym_end] = ACTIONS(1737), - [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), - [aux_sym_cmd_identifier_token1] = ACTIONS(1739), - [aux_sym_cmd_identifier_token2] = ACTIONS(1739), - [aux_sym_cmd_identifier_token3] = ACTIONS(1739), - [aux_sym_cmd_identifier_token4] = ACTIONS(1739), - [aux_sym_cmd_identifier_token5] = ACTIONS(1739), - [aux_sym_cmd_identifier_token6] = ACTIONS(1739), - [aux_sym_cmd_identifier_token7] = ACTIONS(1739), - [aux_sym_cmd_identifier_token8] = ACTIONS(1739), - [aux_sym_cmd_identifier_token9] = ACTIONS(1739), - [aux_sym_cmd_identifier_token10] = ACTIONS(1739), - [aux_sym_cmd_identifier_token11] = ACTIONS(1739), - [aux_sym_cmd_identifier_token12] = ACTIONS(1739), - [aux_sym_cmd_identifier_token13] = ACTIONS(1739), - [aux_sym_cmd_identifier_token14] = ACTIONS(1739), - [aux_sym_cmd_identifier_token15] = ACTIONS(1739), - [aux_sym_cmd_identifier_token16] = ACTIONS(1739), - [aux_sym_cmd_identifier_token17] = ACTIONS(1739), - [aux_sym_cmd_identifier_token18] = ACTIONS(1739), - [aux_sym_cmd_identifier_token19] = ACTIONS(1739), - [aux_sym_cmd_identifier_token20] = ACTIONS(1739), - [aux_sym_cmd_identifier_token21] = ACTIONS(1739), - [aux_sym_cmd_identifier_token22] = ACTIONS(1739), - [aux_sym_cmd_identifier_token23] = ACTIONS(1739), - [aux_sym_cmd_identifier_token24] = ACTIONS(1737), - [aux_sym_cmd_identifier_token25] = ACTIONS(1739), - [aux_sym_cmd_identifier_token26] = ACTIONS(1737), - [aux_sym_cmd_identifier_token27] = ACTIONS(1739), - [aux_sym_cmd_identifier_token28] = ACTIONS(1739), - [aux_sym_cmd_identifier_token29] = ACTIONS(1739), - [aux_sym_cmd_identifier_token30] = ACTIONS(1739), - [aux_sym_cmd_identifier_token31] = ACTIONS(1737), - [aux_sym_cmd_identifier_token32] = ACTIONS(1737), - [aux_sym_cmd_identifier_token33] = ACTIONS(1737), - [aux_sym_cmd_identifier_token34] = ACTIONS(1737), - [aux_sym_cmd_identifier_token35] = ACTIONS(1737), - [aux_sym_cmd_identifier_token36] = ACTIONS(1739), - [anon_sym_true] = ACTIONS(1737), - [anon_sym_false] = ACTIONS(1737), - [anon_sym_null] = ACTIONS(1737), - [aux_sym_cmd_identifier_token38] = ACTIONS(1739), - [aux_sym_cmd_identifier_token39] = ACTIONS(1737), - [aux_sym_cmd_identifier_token40] = ACTIONS(1737), - [sym__newline] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1737), - [anon_sym_def] = 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(1737), - [anon_sym_LPAREN] = ACTIONS(1737), - [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), - [aux_sym_ctrl_match_token1] = ACTIONS(1737), - [anon_sym_DOT_DOT] = 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(1737), - [aux_sym_expr_unary_token1] = ACTIONS(1737), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1737), - [anon_sym_DOT_DOT_LT] = ACTIONS(1737), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1737), - [aux_sym__val_number_decimal_token3] = ACTIONS(1737), - [aux_sym__val_number_decimal_token4] = ACTIONS(1737), - [aux_sym__val_number_token1] = ACTIONS(1737), - [aux_sym__val_number_token2] = ACTIONS(1737), - [aux_sym__val_number_token3] = ACTIONS(1737), - [anon_sym_0b] = ACTIONS(1739), - [anon_sym_0o] = ACTIONS(1739), - [anon_sym_0x] = ACTIONS(1739), - [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), - [aux_sym_env_var_token1] = ACTIONS(1739), - [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_export] = ACTIONS(1643), + [anon_sym_alias] = ACTIONS(1643), + [anon_sym_let] = ACTIONS(1643), + [anon_sym_let_DASHenv] = ACTIONS(1643), + [anon_sym_mut] = ACTIONS(1643), + [anon_sym_const] = ACTIONS(1643), + [aux_sym_cmd_identifier_token1] = ACTIONS(1643), + [aux_sym_cmd_identifier_token2] = ACTIONS(1643), + [aux_sym_cmd_identifier_token3] = ACTIONS(1643), + [aux_sym_cmd_identifier_token4] = ACTIONS(1643), + [aux_sym_cmd_identifier_token5] = ACTIONS(1643), + [aux_sym_cmd_identifier_token6] = ACTIONS(1643), + [aux_sym_cmd_identifier_token7] = ACTIONS(1643), + [aux_sym_cmd_identifier_token8] = ACTIONS(1643), + [aux_sym_cmd_identifier_token9] = ACTIONS(1643), + [aux_sym_cmd_identifier_token10] = ACTIONS(1643), + [aux_sym_cmd_identifier_token11] = ACTIONS(1643), + [aux_sym_cmd_identifier_token12] = ACTIONS(1643), + [aux_sym_cmd_identifier_token13] = ACTIONS(1643), + [aux_sym_cmd_identifier_token14] = ACTIONS(1643), + [aux_sym_cmd_identifier_token15] = ACTIONS(1643), + [aux_sym_cmd_identifier_token16] = ACTIONS(1643), + [aux_sym_cmd_identifier_token17] = ACTIONS(1643), + [aux_sym_cmd_identifier_token18] = ACTIONS(1643), + [aux_sym_cmd_identifier_token19] = ACTIONS(1643), + [aux_sym_cmd_identifier_token20] = ACTIONS(1643), + [aux_sym_cmd_identifier_token21] = ACTIONS(1643), + [aux_sym_cmd_identifier_token22] = ACTIONS(1643), + [aux_sym_cmd_identifier_token23] = ACTIONS(1643), + [aux_sym_cmd_identifier_token24] = ACTIONS(1643), + [aux_sym_cmd_identifier_token25] = ACTIONS(1643), + [aux_sym_cmd_identifier_token26] = ACTIONS(1643), + [aux_sym_cmd_identifier_token27] = ACTIONS(1643), + [aux_sym_cmd_identifier_token28] = ACTIONS(1643), + [aux_sym_cmd_identifier_token29] = ACTIONS(1643), + [aux_sym_cmd_identifier_token30] = ACTIONS(1643), + [aux_sym_cmd_identifier_token31] = ACTIONS(1643), + [aux_sym_cmd_identifier_token32] = ACTIONS(1643), + [aux_sym_cmd_identifier_token33] = ACTIONS(1643), + [aux_sym_cmd_identifier_token34] = ACTIONS(1643), + [aux_sym_cmd_identifier_token35] = ACTIONS(1643), + [aux_sym_cmd_identifier_token36] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [aux_sym_cmd_identifier_token38] = ACTIONS(1643), + [aux_sym_cmd_identifier_token39] = ACTIONS(1645), + [aux_sym_cmd_identifier_token40] = ACTIONS(1645), + [anon_sym_def] = ACTIONS(1643), + [anon_sym_export_DASHenv] = ACTIONS(1643), + [anon_sym_extern] = ACTIONS(1643), + [anon_sym_module] = ACTIONS(1643), + [anon_sym_use] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1645), + [anon_sym_DOLLAR] = ACTIONS(1645), + [anon_sym_error] = ACTIONS(1643), + [anon_sym_list] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_break] = ACTIONS(1643), + [anon_sym_continue] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_loop] = ACTIONS(1643), + [anon_sym_make] = ACTIONS(1643), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_do] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_else] = ACTIONS(1643), + [anon_sym_match] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1645), + [anon_sym_try] = ACTIONS(1643), + [anon_sym_catch] = ACTIONS(1643), + [anon_sym_return] = ACTIONS(1643), + [anon_sym_source] = ACTIONS(1643), + [anon_sym_source_DASHenv] = ACTIONS(1643), + [anon_sym_register] = ACTIONS(1643), + [anon_sym_hide] = ACTIONS(1643), + [anon_sym_hide_DASHenv] = ACTIONS(1643), + [anon_sym_overlay] = ACTIONS(1643), + [anon_sym_new] = ACTIONS(1643), + [anon_sym_as] = ACTIONS(1643), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1645), + [anon_sym_DOT_DOT2] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(1813), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), + [aux_sym__immediate_decimal_token2] = ACTIONS(1815), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1645), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1645), + [aux_sym__val_number_decimal_token3] = ACTIONS(1645), + [aux_sym__val_number_decimal_token4] = ACTIONS(1645), + [aux_sym__val_number_token1] = ACTIONS(1645), + [aux_sym__val_number_token2] = ACTIONS(1645), + [aux_sym__val_number_token3] = ACTIONS(1645), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym__str_single_quotes] = ACTIONS(1645), + [sym__str_back_ticks] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1645), + [anon_sym_PLUS] = ACTIONS(1643), [anon_sym_POUND] = ACTIONS(247), }, [295] = { - [sym_cell_path] = STATE(550), - [sym_path] = STATE(472), [sym_comment] = STATE(295), - [aux_sym_cell_path_repeat1] = STATE(386), - [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), - [aux_sym_cmd_identifier_token1] = ACTIONS(1741), - [aux_sym_cmd_identifier_token2] = ACTIONS(1741), - [aux_sym_cmd_identifier_token3] = ACTIONS(1741), - [aux_sym_cmd_identifier_token4] = ACTIONS(1741), - [aux_sym_cmd_identifier_token5] = ACTIONS(1741), - [aux_sym_cmd_identifier_token6] = ACTIONS(1741), - [aux_sym_cmd_identifier_token7] = ACTIONS(1741), - [aux_sym_cmd_identifier_token8] = ACTIONS(1741), - [aux_sym_cmd_identifier_token9] = ACTIONS(1741), - [aux_sym_cmd_identifier_token10] = ACTIONS(1741), - [aux_sym_cmd_identifier_token11] = ACTIONS(1741), - [aux_sym_cmd_identifier_token12] = ACTIONS(1741), - [aux_sym_cmd_identifier_token13] = ACTIONS(1741), - [aux_sym_cmd_identifier_token14] = ACTIONS(1741), - [aux_sym_cmd_identifier_token15] = ACTIONS(1741), - [aux_sym_cmd_identifier_token16] = ACTIONS(1741), - [aux_sym_cmd_identifier_token17] = ACTIONS(1741), - [aux_sym_cmd_identifier_token18] = ACTIONS(1741), - [aux_sym_cmd_identifier_token19] = ACTIONS(1741), - [aux_sym_cmd_identifier_token20] = ACTIONS(1741), - [aux_sym_cmd_identifier_token21] = ACTIONS(1741), - [aux_sym_cmd_identifier_token22] = ACTIONS(1741), - [aux_sym_cmd_identifier_token23] = ACTIONS(1741), - [aux_sym_cmd_identifier_token24] = ACTIONS(1741), - [aux_sym_cmd_identifier_token25] = ACTIONS(1741), - [aux_sym_cmd_identifier_token26] = ACTIONS(1741), - [aux_sym_cmd_identifier_token27] = ACTIONS(1741), - [aux_sym_cmd_identifier_token28] = ACTIONS(1741), - [aux_sym_cmd_identifier_token29] = ACTIONS(1741), - [aux_sym_cmd_identifier_token30] = ACTIONS(1741), - [aux_sym_cmd_identifier_token31] = ACTIONS(1741), - [aux_sym_cmd_identifier_token32] = ACTIONS(1741), - [aux_sym_cmd_identifier_token33] = ACTIONS(1741), - [aux_sym_cmd_identifier_token34] = ACTIONS(1741), - [aux_sym_cmd_identifier_token35] = ACTIONS(1741), - [aux_sym_cmd_identifier_token36] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(1741), - [anon_sym_false] = ACTIONS(1741), - [anon_sym_null] = ACTIONS(1741), - [aux_sym_cmd_identifier_token38] = ACTIONS(1741), - [aux_sym_cmd_identifier_token39] = ACTIONS(1741), - [aux_sym_cmd_identifier_token40] = ACTIONS(1741), - [anon_sym_def] = 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_LPAREN] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1741), - [anon_sym_error] = ACTIONS(1741), - [anon_sym_list] = ACTIONS(1741), - [anon_sym_DASH] = ACTIONS(1741), - [anon_sym_break] = ACTIONS(1741), - [anon_sym_continue] = ACTIONS(1741), - [anon_sym_for] = ACTIONS(1741), - [anon_sym_in] = ACTIONS(1741), - [anon_sym_loop] = ACTIONS(1741), - [anon_sym_make] = ACTIONS(1741), - [anon_sym_while] = ACTIONS(1741), - [anon_sym_do] = ACTIONS(1741), - [anon_sym_if] = ACTIONS(1741), - [anon_sym_else] = ACTIONS(1741), - [anon_sym_match] = ACTIONS(1741), - [anon_sym_RBRACE] = ACTIONS(1741), - [anon_sym_try] = ACTIONS(1741), - [anon_sym_catch] = 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_new] = ACTIONS(1741), - [anon_sym_as] = ACTIONS(1741), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1741), - [anon_sym_DOT] = ACTIONS(1743), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1741), - [aux_sym__val_number_decimal_token1] = ACTIONS(1741), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1741), - [sym__entry_separator] = ACTIONS(1745), - [anon_sym_PLUS] = ACTIONS(1741), + [anon_sym_export] = ACTIONS(1643), + [anon_sym_alias] = ACTIONS(1643), + [anon_sym_let] = ACTIONS(1643), + [anon_sym_let_DASHenv] = ACTIONS(1643), + [anon_sym_mut] = ACTIONS(1643), + [anon_sym_const] = ACTIONS(1643), + [aux_sym_cmd_identifier_token1] = ACTIONS(1643), + [aux_sym_cmd_identifier_token2] = ACTIONS(1643), + [aux_sym_cmd_identifier_token3] = ACTIONS(1643), + [aux_sym_cmd_identifier_token4] = ACTIONS(1643), + [aux_sym_cmd_identifier_token5] = ACTIONS(1643), + [aux_sym_cmd_identifier_token6] = ACTIONS(1643), + [aux_sym_cmd_identifier_token7] = ACTIONS(1643), + [aux_sym_cmd_identifier_token8] = ACTIONS(1643), + [aux_sym_cmd_identifier_token9] = ACTIONS(1643), + [aux_sym_cmd_identifier_token10] = ACTIONS(1643), + [aux_sym_cmd_identifier_token11] = ACTIONS(1643), + [aux_sym_cmd_identifier_token12] = ACTIONS(1643), + [aux_sym_cmd_identifier_token13] = ACTIONS(1643), + [aux_sym_cmd_identifier_token14] = ACTIONS(1643), + [aux_sym_cmd_identifier_token15] = ACTIONS(1643), + [aux_sym_cmd_identifier_token16] = ACTIONS(1643), + [aux_sym_cmd_identifier_token17] = ACTIONS(1643), + [aux_sym_cmd_identifier_token18] = ACTIONS(1643), + [aux_sym_cmd_identifier_token19] = ACTIONS(1643), + [aux_sym_cmd_identifier_token20] = ACTIONS(1643), + [aux_sym_cmd_identifier_token21] = ACTIONS(1643), + [aux_sym_cmd_identifier_token22] = ACTIONS(1643), + [aux_sym_cmd_identifier_token23] = ACTIONS(1643), + [aux_sym_cmd_identifier_token24] = ACTIONS(1643), + [aux_sym_cmd_identifier_token25] = ACTIONS(1643), + [aux_sym_cmd_identifier_token26] = ACTIONS(1643), + [aux_sym_cmd_identifier_token27] = ACTIONS(1643), + [aux_sym_cmd_identifier_token28] = ACTIONS(1643), + [aux_sym_cmd_identifier_token29] = ACTIONS(1643), + [aux_sym_cmd_identifier_token30] = ACTIONS(1643), + [aux_sym_cmd_identifier_token31] = ACTIONS(1643), + [aux_sym_cmd_identifier_token32] = ACTIONS(1643), + [aux_sym_cmd_identifier_token33] = ACTIONS(1643), + [aux_sym_cmd_identifier_token34] = ACTIONS(1643), + [aux_sym_cmd_identifier_token35] = ACTIONS(1643), + [aux_sym_cmd_identifier_token36] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_null] = ACTIONS(1643), + [aux_sym_cmd_identifier_token38] = ACTIONS(1643), + [aux_sym_cmd_identifier_token39] = ACTIONS(1643), + [aux_sym_cmd_identifier_token40] = ACTIONS(1643), + [anon_sym_def] = ACTIONS(1643), + [anon_sym_export_DASHenv] = ACTIONS(1643), + [anon_sym_extern] = ACTIONS(1643), + [anon_sym_module] = ACTIONS(1643), + [anon_sym_use] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(1643), + [anon_sym_error] = ACTIONS(1643), + [anon_sym_list] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_break] = ACTIONS(1643), + [anon_sym_continue] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_loop] = ACTIONS(1643), + [anon_sym_make] = ACTIONS(1643), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_do] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_else] = ACTIONS(1643), + [anon_sym_match] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), + [anon_sym_try] = ACTIONS(1643), + [anon_sym_catch] = ACTIONS(1643), + [anon_sym_return] = ACTIONS(1643), + [anon_sym_source] = ACTIONS(1643), + [anon_sym_source_DASHenv] = ACTIONS(1643), + [anon_sym_register] = ACTIONS(1643), + [anon_sym_hide] = ACTIONS(1643), + [anon_sym_hide_DASHenv] = ACTIONS(1643), + [anon_sym_overlay] = ACTIONS(1643), + [anon_sym_new] = ACTIONS(1643), + [anon_sym_as] = ACTIONS(1643), + [anon_sym_LPAREN2] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(1817), + [aux_sym__immediate_decimal_token2] = ACTIONS(1819), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1643), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1643), + [aux_sym__val_number_decimal_token3] = ACTIONS(1643), + [aux_sym__val_number_decimal_token4] = ACTIONS(1643), + [aux_sym__val_number_token1] = ACTIONS(1643), + [aux_sym__val_number_token2] = ACTIONS(1643), + [aux_sym__val_number_token3] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1643), + [sym__str_single_quotes] = ACTIONS(1643), + [sym__str_back_ticks] = ACTIONS(1643), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1643), + [sym__entry_separator] = ACTIONS(1645), + [anon_sym_PLUS] = ACTIONS(1643), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1643), [anon_sym_POUND] = ACTIONS(3), }, [296] = { - [sym_cell_path] = STATE(544), - [sym_path] = STATE(472), [sym_comment] = STATE(296), - [aux_sym_cell_path_repeat1] = STATE(386), - [anon_sym_export] = ACTIONS(1747), - [anon_sym_alias] = ACTIONS(1747), - [anon_sym_let] = ACTIONS(1747), - [anon_sym_let_DASHenv] = ACTIONS(1747), - [anon_sym_mut] = ACTIONS(1747), - [anon_sym_const] = ACTIONS(1747), - [aux_sym_cmd_identifier_token1] = ACTIONS(1747), - [aux_sym_cmd_identifier_token2] = ACTIONS(1747), - [aux_sym_cmd_identifier_token3] = ACTIONS(1747), - [aux_sym_cmd_identifier_token4] = ACTIONS(1747), - [aux_sym_cmd_identifier_token5] = ACTIONS(1747), - [aux_sym_cmd_identifier_token6] = ACTIONS(1747), - [aux_sym_cmd_identifier_token7] = ACTIONS(1747), - [aux_sym_cmd_identifier_token8] = ACTIONS(1747), - [aux_sym_cmd_identifier_token9] = ACTIONS(1747), - [aux_sym_cmd_identifier_token10] = ACTIONS(1747), - [aux_sym_cmd_identifier_token11] = ACTIONS(1747), - [aux_sym_cmd_identifier_token12] = ACTIONS(1747), - [aux_sym_cmd_identifier_token13] = ACTIONS(1747), - [aux_sym_cmd_identifier_token14] = ACTIONS(1747), - [aux_sym_cmd_identifier_token15] = ACTIONS(1747), - [aux_sym_cmd_identifier_token16] = ACTIONS(1747), - [aux_sym_cmd_identifier_token17] = ACTIONS(1747), - [aux_sym_cmd_identifier_token18] = ACTIONS(1747), - [aux_sym_cmd_identifier_token19] = ACTIONS(1747), - [aux_sym_cmd_identifier_token20] = ACTIONS(1747), - [aux_sym_cmd_identifier_token21] = ACTIONS(1747), - [aux_sym_cmd_identifier_token22] = ACTIONS(1747), - [aux_sym_cmd_identifier_token23] = ACTIONS(1747), - [aux_sym_cmd_identifier_token24] = ACTIONS(1747), - [aux_sym_cmd_identifier_token25] = ACTIONS(1747), - [aux_sym_cmd_identifier_token26] = ACTIONS(1747), - [aux_sym_cmd_identifier_token27] = ACTIONS(1747), - [aux_sym_cmd_identifier_token28] = ACTIONS(1747), - [aux_sym_cmd_identifier_token29] = ACTIONS(1747), - [aux_sym_cmd_identifier_token30] = ACTIONS(1747), - [aux_sym_cmd_identifier_token31] = ACTIONS(1747), - [aux_sym_cmd_identifier_token32] = ACTIONS(1747), - [aux_sym_cmd_identifier_token33] = ACTIONS(1747), - [aux_sym_cmd_identifier_token34] = ACTIONS(1747), - [aux_sym_cmd_identifier_token35] = ACTIONS(1747), - [aux_sym_cmd_identifier_token36] = ACTIONS(1747), - [anon_sym_true] = ACTIONS(1747), - [anon_sym_false] = ACTIONS(1747), - [anon_sym_null] = ACTIONS(1747), - [aux_sym_cmd_identifier_token38] = ACTIONS(1747), - [aux_sym_cmd_identifier_token39] = ACTIONS(1747), - [aux_sym_cmd_identifier_token40] = ACTIONS(1747), - [anon_sym_def] = ACTIONS(1747), - [anon_sym_export_DASHenv] = ACTIONS(1747), - [anon_sym_extern] = ACTIONS(1747), - [anon_sym_module] = ACTIONS(1747), - [anon_sym_use] = ACTIONS(1747), - [anon_sym_LPAREN] = ACTIONS(1747), - [anon_sym_DOLLAR] = ACTIONS(1747), - [anon_sym_error] = ACTIONS(1747), - [anon_sym_list] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_break] = ACTIONS(1747), - [anon_sym_continue] = ACTIONS(1747), - [anon_sym_for] = ACTIONS(1747), - [anon_sym_in] = ACTIONS(1747), - [anon_sym_loop] = ACTIONS(1747), - [anon_sym_make] = ACTIONS(1747), - [anon_sym_while] = ACTIONS(1747), - [anon_sym_do] = ACTIONS(1747), - [anon_sym_if] = ACTIONS(1747), - [anon_sym_else] = ACTIONS(1747), - [anon_sym_match] = ACTIONS(1747), - [anon_sym_RBRACE] = ACTIONS(1747), - [anon_sym_try] = ACTIONS(1747), - [anon_sym_catch] = ACTIONS(1747), - [anon_sym_return] = ACTIONS(1747), - [anon_sym_source] = ACTIONS(1747), - [anon_sym_source_DASHenv] = ACTIONS(1747), - [anon_sym_register] = ACTIONS(1747), - [anon_sym_hide] = ACTIONS(1747), - [anon_sym_hide_DASHenv] = ACTIONS(1747), - [anon_sym_overlay] = ACTIONS(1747), - [anon_sym_new] = ACTIONS(1747), - [anon_sym_as] = ACTIONS(1747), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1747), - [anon_sym_DOT] = ACTIONS(1743), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1747), - [aux_sym__val_number_decimal_token1] = ACTIONS(1747), - [aux_sym__val_number_decimal_token2] = ACTIONS(1747), - [aux_sym__val_number_decimal_token3] = ACTIONS(1747), - [aux_sym__val_number_decimal_token4] = ACTIONS(1747), - [aux_sym__val_number_token1] = ACTIONS(1747), - [aux_sym__val_number_token2] = ACTIONS(1747), - [aux_sym__val_number_token3] = ACTIONS(1747), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym__str_single_quotes] = ACTIONS(1747), - [sym__str_back_ticks] = ACTIONS(1747), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1747), - [sym__entry_separator] = ACTIONS(1749), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1821), + [anon_sym_alias] = ACTIONS(1821), + [anon_sym_let] = ACTIONS(1821), + [anon_sym_let_DASHenv] = ACTIONS(1821), + [anon_sym_mut] = ACTIONS(1821), + [anon_sym_const] = ACTIONS(1821), + [aux_sym_cmd_identifier_token1] = ACTIONS(1821), + [aux_sym_cmd_identifier_token2] = ACTIONS(1821), + [aux_sym_cmd_identifier_token3] = ACTIONS(1821), + [aux_sym_cmd_identifier_token4] = ACTIONS(1821), + [aux_sym_cmd_identifier_token5] = ACTIONS(1821), + [aux_sym_cmd_identifier_token6] = ACTIONS(1821), + [aux_sym_cmd_identifier_token7] = ACTIONS(1821), + [aux_sym_cmd_identifier_token8] = ACTIONS(1821), + [aux_sym_cmd_identifier_token9] = ACTIONS(1821), + [aux_sym_cmd_identifier_token10] = ACTIONS(1821), + [aux_sym_cmd_identifier_token11] = ACTIONS(1821), + [aux_sym_cmd_identifier_token12] = ACTIONS(1821), + [aux_sym_cmd_identifier_token13] = ACTIONS(1821), + [aux_sym_cmd_identifier_token14] = ACTIONS(1821), + [aux_sym_cmd_identifier_token15] = ACTIONS(1821), + [aux_sym_cmd_identifier_token16] = ACTIONS(1821), + [aux_sym_cmd_identifier_token17] = ACTIONS(1821), + [aux_sym_cmd_identifier_token18] = ACTIONS(1821), + [aux_sym_cmd_identifier_token19] = ACTIONS(1821), + [aux_sym_cmd_identifier_token20] = ACTIONS(1821), + [aux_sym_cmd_identifier_token21] = ACTIONS(1821), + [aux_sym_cmd_identifier_token22] = ACTIONS(1821), + [aux_sym_cmd_identifier_token23] = ACTIONS(1821), + [aux_sym_cmd_identifier_token24] = ACTIONS(1823), + [aux_sym_cmd_identifier_token25] = ACTIONS(1821), + [aux_sym_cmd_identifier_token26] = ACTIONS(1823), + [aux_sym_cmd_identifier_token27] = ACTIONS(1821), + [aux_sym_cmd_identifier_token28] = ACTIONS(1821), + [aux_sym_cmd_identifier_token29] = ACTIONS(1821), + [aux_sym_cmd_identifier_token30] = ACTIONS(1821), + [aux_sym_cmd_identifier_token31] = ACTIONS(1823), + [aux_sym_cmd_identifier_token32] = ACTIONS(1823), + [aux_sym_cmd_identifier_token33] = ACTIONS(1823), + [aux_sym_cmd_identifier_token34] = ACTIONS(1823), + [aux_sym_cmd_identifier_token35] = ACTIONS(1823), + [aux_sym_cmd_identifier_token36] = ACTIONS(1821), + [anon_sym_true] = ACTIONS(1823), + [anon_sym_false] = ACTIONS(1823), + [anon_sym_null] = ACTIONS(1823), + [aux_sym_cmd_identifier_token38] = ACTIONS(1821), + [aux_sym_cmd_identifier_token39] = ACTIONS(1823), + [aux_sym_cmd_identifier_token40] = ACTIONS(1823), + [sym__newline] = ACTIONS(1823), + [anon_sym_SEMI] = ACTIONS(1823), + [anon_sym_def] = ACTIONS(1821), + [anon_sym_export_DASHenv] = ACTIONS(1821), + [anon_sym_extern] = ACTIONS(1821), + [anon_sym_module] = ACTIONS(1821), + [anon_sym_use] = ACTIONS(1821), + [anon_sym_LBRACK] = ACTIONS(1823), + [anon_sym_LPAREN] = ACTIONS(1823), + [anon_sym_DOLLAR] = ACTIONS(1821), + [anon_sym_error] = ACTIONS(1821), + [anon_sym_DASH] = ACTIONS(1821), + [anon_sym_break] = ACTIONS(1821), + [anon_sym_continue] = ACTIONS(1821), + [anon_sym_for] = ACTIONS(1821), + [anon_sym_loop] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(1821), + [anon_sym_do] = ACTIONS(1821), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_match] = ACTIONS(1821), + [aux_sym_ctrl_match_token1] = ACTIONS(1823), + [anon_sym_DOT_DOT] = ACTIONS(1821), + [anon_sym_try] = ACTIONS(1821), + [anon_sym_return] = ACTIONS(1821), + [anon_sym_source] = ACTIONS(1821), + [anon_sym_source_DASHenv] = ACTIONS(1821), + [anon_sym_register] = ACTIONS(1821), + [anon_sym_hide] = ACTIONS(1821), + [anon_sym_hide_DASHenv] = ACTIONS(1821), + [anon_sym_overlay] = ACTIONS(1821), + [anon_sym_where] = ACTIONS(1823), + [aux_sym_expr_unary_token1] = ACTIONS(1823), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1823), + [anon_sym_DOT_DOT_LT] = ACTIONS(1823), + [aux_sym__val_number_decimal_token1] = ACTIONS(1821), + [aux_sym__val_number_decimal_token2] = ACTIONS(1823), + [aux_sym__val_number_decimal_token3] = ACTIONS(1823), + [aux_sym__val_number_decimal_token4] = ACTIONS(1823), + [aux_sym__val_number_token1] = ACTIONS(1823), + [aux_sym__val_number_token2] = ACTIONS(1823), + [aux_sym__val_number_token3] = ACTIONS(1823), + [anon_sym_0b] = ACTIONS(1821), + [anon_sym_0o] = ACTIONS(1821), + [anon_sym_0x] = ACTIONS(1821), + [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), + [aux_sym_env_var_token1] = ACTIONS(1821), + [anon_sym_CARET] = ACTIONS(1823), + [anon_sym_POUND] = ACTIONS(247), }, [297] = { [sym_comment] = STATE(297), - [anon_sym_export] = ACTIONS(966), - [anon_sym_alias] = ACTIONS(966), - [anon_sym_let] = ACTIONS(966), - [anon_sym_let_DASHenv] = ACTIONS(966), - [anon_sym_mut] = ACTIONS(966), - [anon_sym_const] = ACTIONS(966), - [aux_sym_cmd_identifier_token1] = ACTIONS(966), - [aux_sym_cmd_identifier_token2] = ACTIONS(966), - [aux_sym_cmd_identifier_token3] = ACTIONS(966), - [aux_sym_cmd_identifier_token4] = ACTIONS(966), - [aux_sym_cmd_identifier_token5] = ACTIONS(966), - [aux_sym_cmd_identifier_token6] = ACTIONS(966), - [aux_sym_cmd_identifier_token7] = ACTIONS(966), - [aux_sym_cmd_identifier_token8] = ACTIONS(966), - [aux_sym_cmd_identifier_token9] = ACTIONS(966), - [aux_sym_cmd_identifier_token10] = ACTIONS(966), - [aux_sym_cmd_identifier_token11] = ACTIONS(966), - [aux_sym_cmd_identifier_token12] = ACTIONS(966), - [aux_sym_cmd_identifier_token13] = ACTIONS(966), - [aux_sym_cmd_identifier_token14] = ACTIONS(966), - [aux_sym_cmd_identifier_token15] = ACTIONS(966), - [aux_sym_cmd_identifier_token16] = ACTIONS(966), - [aux_sym_cmd_identifier_token17] = ACTIONS(966), - [aux_sym_cmd_identifier_token18] = ACTIONS(966), - [aux_sym_cmd_identifier_token19] = ACTIONS(966), - [aux_sym_cmd_identifier_token20] = ACTIONS(966), - [aux_sym_cmd_identifier_token21] = ACTIONS(966), - [aux_sym_cmd_identifier_token22] = ACTIONS(966), - [aux_sym_cmd_identifier_token23] = ACTIONS(966), - [aux_sym_cmd_identifier_token24] = ACTIONS(966), - [aux_sym_cmd_identifier_token25] = ACTIONS(966), - [aux_sym_cmd_identifier_token26] = ACTIONS(966), - [aux_sym_cmd_identifier_token27] = ACTIONS(966), - [aux_sym_cmd_identifier_token28] = ACTIONS(966), - [aux_sym_cmd_identifier_token29] = ACTIONS(966), - [aux_sym_cmd_identifier_token30] = ACTIONS(966), - [aux_sym_cmd_identifier_token31] = ACTIONS(966), - [aux_sym_cmd_identifier_token32] = ACTIONS(966), - [aux_sym_cmd_identifier_token33] = ACTIONS(966), - [aux_sym_cmd_identifier_token34] = ACTIONS(966), - [aux_sym_cmd_identifier_token35] = ACTIONS(966), - [aux_sym_cmd_identifier_token36] = ACTIONS(966), - [anon_sym_true] = ACTIONS(968), - [anon_sym_false] = ACTIONS(968), - [anon_sym_null] = ACTIONS(968), - [aux_sym_cmd_identifier_token38] = ACTIONS(966), - [aux_sym_cmd_identifier_token39] = ACTIONS(968), - [aux_sym_cmd_identifier_token40] = ACTIONS(968), - [anon_sym_def] = ACTIONS(966), - [anon_sym_export_DASHenv] = ACTIONS(966), - [anon_sym_extern] = ACTIONS(966), - [anon_sym_module] = ACTIONS(966), - [anon_sym_use] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_error] = ACTIONS(966), - [anon_sym_list] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_break] = ACTIONS(966), - [anon_sym_continue] = ACTIONS(966), - [anon_sym_for] = ACTIONS(966), - [anon_sym_in] = ACTIONS(966), - [anon_sym_loop] = ACTIONS(966), - [anon_sym_make] = ACTIONS(966), - [anon_sym_while] = ACTIONS(966), - [anon_sym_do] = ACTIONS(966), - [anon_sym_if] = ACTIONS(966), - [anon_sym_else] = ACTIONS(966), - [anon_sym_match] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_try] = ACTIONS(966), - [anon_sym_catch] = ACTIONS(966), - [anon_sym_return] = ACTIONS(966), - [anon_sym_source] = ACTIONS(966), - [anon_sym_source_DASHenv] = ACTIONS(966), - [anon_sym_register] = ACTIONS(966), - [anon_sym_hide] = ACTIONS(966), - [anon_sym_hide_DASHenv] = ACTIONS(966), - [anon_sym_overlay] = ACTIONS(966), - [anon_sym_new] = ACTIONS(966), - [anon_sym_as] = ACTIONS(966), - [anon_sym_QMARK2] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(968), - [anon_sym_DOT_DOT2] = ACTIONS(966), - [anon_sym_DOT] = ACTIONS(966), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(968), - [anon_sym_DOT_DOT_LT2] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(968), - [aux_sym__val_number_decimal_token1] = ACTIONS(966), - [aux_sym__val_number_decimal_token2] = ACTIONS(968), - [aux_sym__val_number_decimal_token3] = ACTIONS(968), - [aux_sym__val_number_decimal_token4] = ACTIONS(968), - [aux_sym__val_number_token1] = ACTIONS(968), - [aux_sym__val_number_token2] = ACTIONS(968), - [aux_sym__val_number_token3] = ACTIONS(968), - [anon_sym_DQUOTE] = ACTIONS(968), - [sym__str_single_quotes] = ACTIONS(968), - [sym__str_back_ticks] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_POUND] = ACTIONS(247), - }, - [298] = { - [sym_comment] = STATE(298), - [anon_sym_export] = ACTIONS(1690), - [anon_sym_alias] = ACTIONS(1690), - [anon_sym_let] = ACTIONS(1690), - [anon_sym_let_DASHenv] = ACTIONS(1690), - [anon_sym_mut] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1690), - [aux_sym_cmd_identifier_token1] = ACTIONS(1690), - [aux_sym_cmd_identifier_token2] = ACTIONS(1690), - [aux_sym_cmd_identifier_token3] = ACTIONS(1690), - [aux_sym_cmd_identifier_token4] = ACTIONS(1690), - [aux_sym_cmd_identifier_token5] = ACTIONS(1690), - [aux_sym_cmd_identifier_token6] = ACTIONS(1690), - [aux_sym_cmd_identifier_token7] = ACTIONS(1690), - [aux_sym_cmd_identifier_token8] = ACTIONS(1690), - [aux_sym_cmd_identifier_token9] = ACTIONS(1690), - [aux_sym_cmd_identifier_token10] = ACTIONS(1690), - [aux_sym_cmd_identifier_token11] = ACTIONS(1690), - [aux_sym_cmd_identifier_token12] = ACTIONS(1690), - [aux_sym_cmd_identifier_token13] = ACTIONS(1690), - [aux_sym_cmd_identifier_token14] = ACTIONS(1690), - [aux_sym_cmd_identifier_token15] = ACTIONS(1690), - [aux_sym_cmd_identifier_token16] = ACTIONS(1690), - [aux_sym_cmd_identifier_token17] = ACTIONS(1690), - [aux_sym_cmd_identifier_token18] = ACTIONS(1690), - [aux_sym_cmd_identifier_token19] = ACTIONS(1690), - [aux_sym_cmd_identifier_token20] = ACTIONS(1690), - [aux_sym_cmd_identifier_token21] = ACTIONS(1690), - [aux_sym_cmd_identifier_token22] = ACTIONS(1690), - [aux_sym_cmd_identifier_token23] = ACTIONS(1690), - [aux_sym_cmd_identifier_token24] = ACTIONS(1690), - [aux_sym_cmd_identifier_token25] = ACTIONS(1690), - [aux_sym_cmd_identifier_token26] = ACTIONS(1690), - [aux_sym_cmd_identifier_token27] = ACTIONS(1690), - [aux_sym_cmd_identifier_token28] = ACTIONS(1690), - [aux_sym_cmd_identifier_token29] = ACTIONS(1690), - [aux_sym_cmd_identifier_token30] = ACTIONS(1690), - [aux_sym_cmd_identifier_token31] = ACTIONS(1690), - [aux_sym_cmd_identifier_token32] = ACTIONS(1690), - [aux_sym_cmd_identifier_token33] = ACTIONS(1690), - [aux_sym_cmd_identifier_token34] = ACTIONS(1690), - [aux_sym_cmd_identifier_token35] = ACTIONS(1690), - [aux_sym_cmd_identifier_token36] = ACTIONS(1690), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1698), - [anon_sym_null] = ACTIONS(1698), - [aux_sym_cmd_identifier_token38] = ACTIONS(1690), - [aux_sym_cmd_identifier_token39] = ACTIONS(1698), - [aux_sym_cmd_identifier_token40] = ACTIONS(1698), - [anon_sym_def] = ACTIONS(1690), - [anon_sym_export_DASHenv] = ACTIONS(1690), - [anon_sym_extern] = ACTIONS(1690), - [anon_sym_module] = ACTIONS(1690), - [anon_sym_use] = ACTIONS(1690), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_DOLLAR] = ACTIONS(1698), - [anon_sym_error] = ACTIONS(1690), - [anon_sym_list] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1690), - [anon_sym_break] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(1690), - [anon_sym_for] = ACTIONS(1690), - [anon_sym_in] = ACTIONS(1690), - [anon_sym_loop] = ACTIONS(1690), - [anon_sym_make] = ACTIONS(1690), - [anon_sym_while] = ACTIONS(1690), - [anon_sym_do] = ACTIONS(1690), - [anon_sym_if] = ACTIONS(1690), - [anon_sym_else] = ACTIONS(1690), - [anon_sym_match] = ACTIONS(1690), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_try] = ACTIONS(1690), - [anon_sym_catch] = ACTIONS(1690), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_source] = ACTIONS(1690), - [anon_sym_source_DASHenv] = ACTIONS(1690), - [anon_sym_register] = ACTIONS(1690), - [anon_sym_hide] = ACTIONS(1690), - [anon_sym_hide_DASHenv] = ACTIONS(1690), - [anon_sym_overlay] = ACTIONS(1690), - [anon_sym_new] = ACTIONS(1690), - [anon_sym_as] = ACTIONS(1690), - [anon_sym_LPAREN2] = ACTIONS(1692), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1698), - [anon_sym_DOT_DOT2] = ACTIONS(1751), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1753), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1753), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1698), - [aux_sym__val_number_decimal_token1] = ACTIONS(1690), - [aux_sym__val_number_decimal_token2] = ACTIONS(1698), - [aux_sym__val_number_decimal_token3] = ACTIONS(1698), - [aux_sym__val_number_decimal_token4] = ACTIONS(1698), - [aux_sym__val_number_token1] = ACTIONS(1698), - [aux_sym__val_number_token2] = ACTIONS(1698), - [aux_sym__val_number_token3] = ACTIONS(1698), - [anon_sym_DQUOTE] = ACTIONS(1698), - [sym__str_single_quotes] = ACTIONS(1698), - [sym__str_back_ticks] = ACTIONS(1698), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1690), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1429), - [anon_sym_POUND] = ACTIONS(247), - }, - [299] = { - [sym_comment] = STATE(299), - [anon_sym_export] = ACTIONS(976), - [anon_sym_alias] = ACTIONS(976), - [anon_sym_let] = ACTIONS(976), - [anon_sym_let_DASHenv] = ACTIONS(976), - [anon_sym_mut] = ACTIONS(976), - [anon_sym_const] = ACTIONS(976), - [aux_sym_cmd_identifier_token1] = ACTIONS(976), - [aux_sym_cmd_identifier_token2] = ACTIONS(976), - [aux_sym_cmd_identifier_token3] = ACTIONS(976), - [aux_sym_cmd_identifier_token4] = ACTIONS(976), - [aux_sym_cmd_identifier_token5] = ACTIONS(976), - [aux_sym_cmd_identifier_token6] = ACTIONS(976), - [aux_sym_cmd_identifier_token7] = ACTIONS(976), - [aux_sym_cmd_identifier_token8] = ACTIONS(976), - [aux_sym_cmd_identifier_token9] = ACTIONS(976), - [aux_sym_cmd_identifier_token10] = ACTIONS(976), - [aux_sym_cmd_identifier_token11] = ACTIONS(976), - [aux_sym_cmd_identifier_token12] = ACTIONS(976), - [aux_sym_cmd_identifier_token13] = ACTIONS(976), - [aux_sym_cmd_identifier_token14] = ACTIONS(976), - [aux_sym_cmd_identifier_token15] = ACTIONS(976), - [aux_sym_cmd_identifier_token16] = ACTIONS(976), - [aux_sym_cmd_identifier_token17] = ACTIONS(976), - [aux_sym_cmd_identifier_token18] = ACTIONS(976), - [aux_sym_cmd_identifier_token19] = ACTIONS(976), - [aux_sym_cmd_identifier_token20] = ACTIONS(976), - [aux_sym_cmd_identifier_token21] = ACTIONS(976), - [aux_sym_cmd_identifier_token22] = ACTIONS(976), - [aux_sym_cmd_identifier_token23] = ACTIONS(976), - [aux_sym_cmd_identifier_token24] = ACTIONS(976), - [aux_sym_cmd_identifier_token25] = ACTIONS(976), - [aux_sym_cmd_identifier_token26] = ACTIONS(976), - [aux_sym_cmd_identifier_token27] = ACTIONS(976), - [aux_sym_cmd_identifier_token28] = ACTIONS(976), - [aux_sym_cmd_identifier_token29] = ACTIONS(976), - [aux_sym_cmd_identifier_token30] = ACTIONS(976), - [aux_sym_cmd_identifier_token31] = ACTIONS(976), - [aux_sym_cmd_identifier_token32] = ACTIONS(976), - [aux_sym_cmd_identifier_token33] = ACTIONS(976), - [aux_sym_cmd_identifier_token34] = ACTIONS(976), - [aux_sym_cmd_identifier_token35] = ACTIONS(976), - [aux_sym_cmd_identifier_token36] = ACTIONS(976), - [anon_sym_true] = ACTIONS(978), - [anon_sym_false] = ACTIONS(978), - [anon_sym_null] = ACTIONS(978), - [aux_sym_cmd_identifier_token38] = ACTIONS(976), - [aux_sym_cmd_identifier_token39] = ACTIONS(978), - [aux_sym_cmd_identifier_token40] = ACTIONS(978), - [anon_sym_def] = ACTIONS(976), - [anon_sym_export_DASHenv] = ACTIONS(976), - [anon_sym_extern] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_use] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(978), - [anon_sym_DOLLAR] = ACTIONS(978), - [anon_sym_error] = ACTIONS(976), - [anon_sym_list] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_break] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_in] = ACTIONS(976), - [anon_sym_loop] = ACTIONS(976), - [anon_sym_make] = ACTIONS(976), - [anon_sym_while] = ACTIONS(976), - [anon_sym_do] = ACTIONS(976), - [anon_sym_if] = ACTIONS(976), - [anon_sym_else] = ACTIONS(976), - [anon_sym_match] = ACTIONS(976), - [anon_sym_RBRACE] = ACTIONS(978), - [anon_sym_try] = ACTIONS(976), - [anon_sym_catch] = ACTIONS(976), - [anon_sym_return] = ACTIONS(976), - [anon_sym_source] = ACTIONS(976), - [anon_sym_source_DASHenv] = ACTIONS(976), - [anon_sym_register] = ACTIONS(976), - [anon_sym_hide] = ACTIONS(976), - [anon_sym_hide_DASHenv] = ACTIONS(976), - [anon_sym_overlay] = ACTIONS(976), - [anon_sym_new] = ACTIONS(976), - [anon_sym_as] = ACTIONS(976), - [anon_sym_QMARK2] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(978), - [anon_sym_DOT_DOT2] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), - [anon_sym_DOT_DOT_LT2] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(978), - [aux_sym__val_number_decimal_token1] = ACTIONS(976), - [aux_sym__val_number_decimal_token2] = ACTIONS(978), - [aux_sym__val_number_decimal_token3] = ACTIONS(978), - [aux_sym__val_number_decimal_token4] = ACTIONS(978), - [aux_sym__val_number_token1] = ACTIONS(978), - [aux_sym__val_number_token2] = ACTIONS(978), - [aux_sym__val_number_token3] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(978), - [sym__str_single_quotes] = ACTIONS(978), - [sym__str_back_ticks] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(978), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(247), - }, - [300] = { - [sym_comment] = STATE(300), - [anon_sym_export] = ACTIONS(962), - [anon_sym_alias] = ACTIONS(962), - [anon_sym_let] = ACTIONS(962), - [anon_sym_let_DASHenv] = ACTIONS(962), - [anon_sym_mut] = ACTIONS(962), - [anon_sym_const] = ACTIONS(962), - [aux_sym_cmd_identifier_token1] = ACTIONS(962), - [aux_sym_cmd_identifier_token2] = ACTIONS(962), - [aux_sym_cmd_identifier_token3] = ACTIONS(962), - [aux_sym_cmd_identifier_token4] = ACTIONS(962), - [aux_sym_cmd_identifier_token5] = ACTIONS(962), - [aux_sym_cmd_identifier_token6] = ACTIONS(962), - [aux_sym_cmd_identifier_token7] = ACTIONS(962), - [aux_sym_cmd_identifier_token8] = ACTIONS(962), - [aux_sym_cmd_identifier_token9] = ACTIONS(962), - [aux_sym_cmd_identifier_token10] = ACTIONS(962), - [aux_sym_cmd_identifier_token11] = ACTIONS(962), - [aux_sym_cmd_identifier_token12] = ACTIONS(962), - [aux_sym_cmd_identifier_token13] = ACTIONS(962), - [aux_sym_cmd_identifier_token14] = ACTIONS(962), - [aux_sym_cmd_identifier_token15] = ACTIONS(962), - [aux_sym_cmd_identifier_token16] = ACTIONS(962), - [aux_sym_cmd_identifier_token17] = ACTIONS(962), - [aux_sym_cmd_identifier_token18] = ACTIONS(962), - [aux_sym_cmd_identifier_token19] = ACTIONS(962), - [aux_sym_cmd_identifier_token20] = ACTIONS(962), - [aux_sym_cmd_identifier_token21] = ACTIONS(962), - [aux_sym_cmd_identifier_token22] = ACTIONS(962), - [aux_sym_cmd_identifier_token23] = ACTIONS(962), - [aux_sym_cmd_identifier_token24] = ACTIONS(962), - [aux_sym_cmd_identifier_token25] = ACTIONS(962), - [aux_sym_cmd_identifier_token26] = ACTIONS(962), - [aux_sym_cmd_identifier_token27] = ACTIONS(962), - [aux_sym_cmd_identifier_token28] = ACTIONS(962), - [aux_sym_cmd_identifier_token29] = ACTIONS(962), - [aux_sym_cmd_identifier_token30] = ACTIONS(962), - [aux_sym_cmd_identifier_token31] = ACTIONS(962), - [aux_sym_cmd_identifier_token32] = ACTIONS(962), - [aux_sym_cmd_identifier_token33] = ACTIONS(962), - [aux_sym_cmd_identifier_token34] = ACTIONS(962), - [aux_sym_cmd_identifier_token35] = ACTIONS(962), - [aux_sym_cmd_identifier_token36] = ACTIONS(962), - [anon_sym_true] = ACTIONS(964), - [anon_sym_false] = ACTIONS(964), - [anon_sym_null] = ACTIONS(964), - [aux_sym_cmd_identifier_token38] = ACTIONS(962), - [aux_sym_cmd_identifier_token39] = ACTIONS(964), - [aux_sym_cmd_identifier_token40] = ACTIONS(964), - [anon_sym_def] = ACTIONS(962), - [anon_sym_export_DASHenv] = ACTIONS(962), - [anon_sym_extern] = ACTIONS(962), - [anon_sym_module] = ACTIONS(962), - [anon_sym_use] = ACTIONS(962), - [anon_sym_LPAREN] = ACTIONS(964), - [anon_sym_DOLLAR] = ACTIONS(964), - [anon_sym_error] = ACTIONS(962), - [anon_sym_list] = ACTIONS(962), - [anon_sym_DASH] = ACTIONS(962), - [anon_sym_break] = ACTIONS(962), - [anon_sym_continue] = ACTIONS(962), - [anon_sym_for] = ACTIONS(962), - [anon_sym_in] = ACTIONS(962), - [anon_sym_loop] = ACTIONS(962), - [anon_sym_make] = ACTIONS(962), - [anon_sym_while] = ACTIONS(962), - [anon_sym_do] = ACTIONS(962), - [anon_sym_if] = ACTIONS(962), - [anon_sym_else] = ACTIONS(962), - [anon_sym_match] = ACTIONS(962), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_try] = ACTIONS(962), - [anon_sym_catch] = ACTIONS(962), - [anon_sym_return] = ACTIONS(962), - [anon_sym_source] = ACTIONS(962), - [anon_sym_source_DASHenv] = ACTIONS(962), - [anon_sym_register] = ACTIONS(962), - [anon_sym_hide] = ACTIONS(962), - [anon_sym_hide_DASHenv] = ACTIONS(962), - [anon_sym_overlay] = ACTIONS(962), - [anon_sym_new] = ACTIONS(962), - [anon_sym_as] = ACTIONS(962), - [anon_sym_QMARK2] = ACTIONS(964), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(964), - [anon_sym_DOT_DOT2] = ACTIONS(962), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(964), - [anon_sym_DOT_DOT_LT2] = ACTIONS(964), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(964), - [aux_sym__val_number_decimal_token1] = ACTIONS(962), - [aux_sym__val_number_decimal_token2] = ACTIONS(964), - [aux_sym__val_number_decimal_token3] = ACTIONS(964), - [aux_sym__val_number_decimal_token4] = ACTIONS(964), - [aux_sym__val_number_token1] = ACTIONS(964), - [aux_sym__val_number_token2] = ACTIONS(964), - [aux_sym__val_number_token3] = ACTIONS(964), - [anon_sym_DQUOTE] = ACTIONS(964), - [sym__str_single_quotes] = ACTIONS(964), - [sym__str_back_ticks] = ACTIONS(964), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(962), - [anon_sym_POUND] = ACTIONS(247), - }, - [301] = { - [sym_comment] = STATE(301), - [aux_sym_shebang_repeat1] = STATE(301), [anon_sym_export] = ACTIONS(1755), [anon_sym_alias] = ACTIONS(1755), [anon_sym_let] = ACTIONS(1755), @@ -113621,18 +109118,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token21] = ACTIONS(1755), [aux_sym_cmd_identifier_token22] = ACTIONS(1755), [aux_sym_cmd_identifier_token23] = ACTIONS(1755), - [aux_sym_cmd_identifier_token24] = ACTIONS(1757), + [aux_sym_cmd_identifier_token24] = ACTIONS(1755), [aux_sym_cmd_identifier_token25] = ACTIONS(1755), - [aux_sym_cmd_identifier_token26] = ACTIONS(1757), + [aux_sym_cmd_identifier_token26] = ACTIONS(1755), [aux_sym_cmd_identifier_token27] = ACTIONS(1755), [aux_sym_cmd_identifier_token28] = ACTIONS(1755), [aux_sym_cmd_identifier_token29] = ACTIONS(1755), [aux_sym_cmd_identifier_token30] = ACTIONS(1755), - [aux_sym_cmd_identifier_token31] = ACTIONS(1757), - [aux_sym_cmd_identifier_token32] = ACTIONS(1757), - [aux_sym_cmd_identifier_token33] = ACTIONS(1757), - [aux_sym_cmd_identifier_token34] = ACTIONS(1757), - [aux_sym_cmd_identifier_token35] = ACTIONS(1757), + [aux_sym_cmd_identifier_token31] = ACTIONS(1755), + [aux_sym_cmd_identifier_token32] = ACTIONS(1755), + [aux_sym_cmd_identifier_token33] = ACTIONS(1755), + [aux_sym_cmd_identifier_token34] = ACTIONS(1755), + [aux_sym_cmd_identifier_token35] = ACTIONS(1755), [aux_sym_cmd_identifier_token36] = ACTIONS(1755), [anon_sym_true] = ACTIONS(1757), [anon_sym_false] = ACTIONS(1757), @@ -113640,28 +109137,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(1755), [aux_sym_cmd_identifier_token39] = ACTIONS(1757), [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [sym__newline] = ACTIONS(1759), [anon_sym_def] = ACTIONS(1755), [anon_sym_export_DASHenv] = ACTIONS(1755), [anon_sym_extern] = ACTIONS(1755), [anon_sym_module] = ACTIONS(1755), [anon_sym_use] = ACTIONS(1755), - [anon_sym_LBRACK] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1755), + [anon_sym_LPAREN] = ACTIONS(1755), + [anon_sym_DOLLAR] = ACTIONS(1757), [anon_sym_error] = ACTIONS(1755), + [anon_sym_list] = ACTIONS(1755), [anon_sym_DASH] = ACTIONS(1755), [anon_sym_break] = ACTIONS(1755), [anon_sym_continue] = ACTIONS(1755), [anon_sym_for] = ACTIONS(1755), + [anon_sym_in] = ACTIONS(1755), [anon_sym_loop] = ACTIONS(1755), + [anon_sym_make] = ACTIONS(1755), [anon_sym_while] = ACTIONS(1755), [anon_sym_do] = ACTIONS(1755), [anon_sym_if] = ACTIONS(1755), + [anon_sym_else] = ACTIONS(1755), [anon_sym_match] = ACTIONS(1755), - [aux_sym_ctrl_match_token1] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), + [anon_sym_RBRACE] = ACTIONS(1757), [anon_sym_try] = ACTIONS(1755), + [anon_sym_catch] = ACTIONS(1755), [anon_sym_return] = ACTIONS(1755), [anon_sym_source] = ACTIONS(1755), [anon_sym_source_DASHenv] = ACTIONS(1755), @@ -113669,10 +109168,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(1755), [anon_sym_hide_DASHenv] = ACTIONS(1755), [anon_sym_overlay] = ACTIONS(1755), - [anon_sym_where] = ACTIONS(1757), - [aux_sym_expr_unary_token1] = ACTIONS(1757), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT] = ACTIONS(1757), + [anon_sym_new] = ACTIONS(1755), + [anon_sym_as] = ACTIONS(1755), + [anon_sym_LPAREN2] = ACTIONS(1757), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), + [anon_sym_DOT_DOT2] = ACTIONS(1755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1757), [aux_sym__val_number_decimal_token1] = ACTIONS(1755), [aux_sym__val_number_decimal_token2] = ACTIONS(1757), [aux_sym__val_number_decimal_token3] = ACTIONS(1757), @@ -113680,2520 +109183,227 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token1] = ACTIONS(1757), [aux_sym__val_number_token2] = ACTIONS(1757), [aux_sym__val_number_token3] = ACTIONS(1757), - [anon_sym_0b] = ACTIONS(1755), - [anon_sym_0o] = ACTIONS(1755), - [anon_sym_0x] = ACTIONS(1755), - [sym_val_date] = ACTIONS(1757), [anon_sym_DQUOTE] = ACTIONS(1757), [sym__str_single_quotes] = ACTIONS(1757), [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), - [aux_sym_env_var_token1] = ACTIONS(1755), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(247), - }, - [302] = { - [sym_cell_path] = STATE(523), - [sym_path] = STATE(472), - [sym_comment] = STATE(302), - [aux_sym_cell_path_repeat1] = STATE(386), - [anon_sym_export] = ACTIONS(1762), - [anon_sym_alias] = ACTIONS(1762), - [anon_sym_let] = ACTIONS(1762), - [anon_sym_let_DASHenv] = ACTIONS(1762), - [anon_sym_mut] = ACTIONS(1762), - [anon_sym_const] = ACTIONS(1762), - [aux_sym_cmd_identifier_token1] = ACTIONS(1762), - [aux_sym_cmd_identifier_token2] = ACTIONS(1762), - [aux_sym_cmd_identifier_token3] = ACTIONS(1762), - [aux_sym_cmd_identifier_token4] = ACTIONS(1762), - [aux_sym_cmd_identifier_token5] = ACTIONS(1762), - [aux_sym_cmd_identifier_token6] = ACTIONS(1762), - [aux_sym_cmd_identifier_token7] = ACTIONS(1762), - [aux_sym_cmd_identifier_token8] = ACTIONS(1762), - [aux_sym_cmd_identifier_token9] = ACTIONS(1762), - [aux_sym_cmd_identifier_token10] = ACTIONS(1762), - [aux_sym_cmd_identifier_token11] = ACTIONS(1762), - [aux_sym_cmd_identifier_token12] = ACTIONS(1762), - [aux_sym_cmd_identifier_token13] = ACTIONS(1762), - [aux_sym_cmd_identifier_token14] = ACTIONS(1762), - [aux_sym_cmd_identifier_token15] = ACTIONS(1762), - [aux_sym_cmd_identifier_token16] = ACTIONS(1762), - [aux_sym_cmd_identifier_token17] = ACTIONS(1762), - [aux_sym_cmd_identifier_token18] = ACTIONS(1762), - [aux_sym_cmd_identifier_token19] = ACTIONS(1762), - [aux_sym_cmd_identifier_token20] = ACTIONS(1762), - [aux_sym_cmd_identifier_token21] = ACTIONS(1762), - [aux_sym_cmd_identifier_token22] = ACTIONS(1762), - [aux_sym_cmd_identifier_token23] = ACTIONS(1762), - [aux_sym_cmd_identifier_token24] = ACTIONS(1762), - [aux_sym_cmd_identifier_token25] = ACTIONS(1762), - [aux_sym_cmd_identifier_token26] = ACTIONS(1762), - [aux_sym_cmd_identifier_token27] = ACTIONS(1762), - [aux_sym_cmd_identifier_token28] = ACTIONS(1762), - [aux_sym_cmd_identifier_token29] = ACTIONS(1762), - [aux_sym_cmd_identifier_token30] = ACTIONS(1762), - [aux_sym_cmd_identifier_token31] = ACTIONS(1762), - [aux_sym_cmd_identifier_token32] = ACTIONS(1762), - [aux_sym_cmd_identifier_token33] = ACTIONS(1762), - [aux_sym_cmd_identifier_token34] = ACTIONS(1762), - [aux_sym_cmd_identifier_token35] = ACTIONS(1762), - [aux_sym_cmd_identifier_token36] = ACTIONS(1762), - [anon_sym_true] = ACTIONS(1762), - [anon_sym_false] = ACTIONS(1762), - [anon_sym_null] = ACTIONS(1762), - [aux_sym_cmd_identifier_token38] = ACTIONS(1762), - [aux_sym_cmd_identifier_token39] = ACTIONS(1762), - [aux_sym_cmd_identifier_token40] = ACTIONS(1762), - [anon_sym_def] = ACTIONS(1762), - [anon_sym_export_DASHenv] = ACTIONS(1762), - [anon_sym_extern] = ACTIONS(1762), - [anon_sym_module] = ACTIONS(1762), - [anon_sym_use] = ACTIONS(1762), - [anon_sym_LPAREN] = ACTIONS(1762), - [anon_sym_DOLLAR] = ACTIONS(1762), - [anon_sym_error] = ACTIONS(1762), - [anon_sym_list] = ACTIONS(1762), - [anon_sym_DASH] = ACTIONS(1762), - [anon_sym_break] = ACTIONS(1762), - [anon_sym_continue] = ACTIONS(1762), - [anon_sym_for] = ACTIONS(1762), - [anon_sym_in] = ACTIONS(1762), - [anon_sym_loop] = ACTIONS(1762), - [anon_sym_make] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1762), - [anon_sym_do] = ACTIONS(1762), - [anon_sym_if] = ACTIONS(1762), - [anon_sym_else] = ACTIONS(1762), - [anon_sym_match] = ACTIONS(1762), - [anon_sym_RBRACE] = ACTIONS(1762), - [anon_sym_try] = ACTIONS(1762), - [anon_sym_catch] = ACTIONS(1762), - [anon_sym_return] = ACTIONS(1762), - [anon_sym_source] = ACTIONS(1762), - [anon_sym_source_DASHenv] = ACTIONS(1762), - [anon_sym_register] = ACTIONS(1762), - [anon_sym_hide] = ACTIONS(1762), - [anon_sym_hide_DASHenv] = ACTIONS(1762), - [anon_sym_overlay] = ACTIONS(1762), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_as] = ACTIONS(1762), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1762), - [anon_sym_DOT] = ACTIONS(1743), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1762), - [aux_sym__val_number_decimal_token1] = ACTIONS(1762), - [aux_sym__val_number_decimal_token2] = ACTIONS(1762), - [aux_sym__val_number_decimal_token3] = ACTIONS(1762), - [aux_sym__val_number_decimal_token4] = ACTIONS(1762), - [aux_sym__val_number_token1] = ACTIONS(1762), - [aux_sym__val_number_token2] = ACTIONS(1762), - [aux_sym__val_number_token3] = ACTIONS(1762), - [anon_sym_DQUOTE] = ACTIONS(1762), - [sym__str_single_quotes] = ACTIONS(1762), - [sym__str_back_ticks] = ACTIONS(1762), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1762), - [sym__entry_separator] = ACTIONS(1764), - [anon_sym_PLUS] = ACTIONS(1762), - [anon_sym_POUND] = ACTIONS(3), - }, - [303] = { - [sym_comment] = STATE(303), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_alias] = ACTIONS(1569), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_let_DASHenv] = ACTIONS(1569), - [anon_sym_mut] = ACTIONS(1569), - [anon_sym_const] = ACTIONS(1569), - [aux_sym_cmd_identifier_token1] = ACTIONS(1569), - [aux_sym_cmd_identifier_token2] = ACTIONS(1569), - [aux_sym_cmd_identifier_token3] = ACTIONS(1569), - [aux_sym_cmd_identifier_token4] = ACTIONS(1569), - [aux_sym_cmd_identifier_token5] = ACTIONS(1569), - [aux_sym_cmd_identifier_token6] = ACTIONS(1569), - [aux_sym_cmd_identifier_token7] = ACTIONS(1569), - [aux_sym_cmd_identifier_token8] = ACTIONS(1569), - [aux_sym_cmd_identifier_token9] = ACTIONS(1569), - [aux_sym_cmd_identifier_token10] = ACTIONS(1569), - [aux_sym_cmd_identifier_token11] = ACTIONS(1569), - [aux_sym_cmd_identifier_token12] = ACTIONS(1569), - [aux_sym_cmd_identifier_token13] = ACTIONS(1569), - [aux_sym_cmd_identifier_token14] = ACTIONS(1569), - [aux_sym_cmd_identifier_token15] = ACTIONS(1569), - [aux_sym_cmd_identifier_token16] = ACTIONS(1569), - [aux_sym_cmd_identifier_token17] = ACTIONS(1569), - [aux_sym_cmd_identifier_token18] = ACTIONS(1569), - [aux_sym_cmd_identifier_token19] = ACTIONS(1569), - [aux_sym_cmd_identifier_token20] = ACTIONS(1569), - [aux_sym_cmd_identifier_token21] = ACTIONS(1569), - [aux_sym_cmd_identifier_token22] = ACTIONS(1569), - [aux_sym_cmd_identifier_token23] = ACTIONS(1569), - [aux_sym_cmd_identifier_token24] = ACTIONS(1569), - [aux_sym_cmd_identifier_token25] = ACTIONS(1569), - [aux_sym_cmd_identifier_token26] = ACTIONS(1569), - [aux_sym_cmd_identifier_token27] = ACTIONS(1569), - [aux_sym_cmd_identifier_token28] = ACTIONS(1569), - [aux_sym_cmd_identifier_token29] = ACTIONS(1569), - [aux_sym_cmd_identifier_token30] = ACTIONS(1569), - [aux_sym_cmd_identifier_token31] = ACTIONS(1569), - [aux_sym_cmd_identifier_token32] = ACTIONS(1569), - [aux_sym_cmd_identifier_token33] = ACTIONS(1569), - [aux_sym_cmd_identifier_token34] = ACTIONS(1569), - [aux_sym_cmd_identifier_token35] = ACTIONS(1569), - [aux_sym_cmd_identifier_token36] = ACTIONS(1569), - [anon_sym_true] = ACTIONS(1569), - [anon_sym_false] = ACTIONS(1569), - [anon_sym_null] = ACTIONS(1569), - [aux_sym_cmd_identifier_token38] = ACTIONS(1569), - [aux_sym_cmd_identifier_token39] = ACTIONS(1569), - [aux_sym_cmd_identifier_token40] = ACTIONS(1569), - [anon_sym_def] = ACTIONS(1569), - [anon_sym_export_DASHenv] = ACTIONS(1569), - [anon_sym_extern] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_use] = ACTIONS(1569), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_DOLLAR] = ACTIONS(1569), - [anon_sym_error] = ACTIONS(1569), - [anon_sym_list] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_break] = ACTIONS(1569), - [anon_sym_continue] = ACTIONS(1569), - [anon_sym_for] = ACTIONS(1569), - [anon_sym_in] = ACTIONS(1569), - [anon_sym_loop] = ACTIONS(1569), - [anon_sym_make] = ACTIONS(1569), - [anon_sym_while] = ACTIONS(1569), - [anon_sym_do] = ACTIONS(1569), - [anon_sym_if] = ACTIONS(1569), - [anon_sym_else] = ACTIONS(1569), - [anon_sym_match] = ACTIONS(1569), - [anon_sym_RBRACE] = ACTIONS(1569), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_catch] = ACTIONS(1569), - [anon_sym_return] = ACTIONS(1569), - [anon_sym_source] = ACTIONS(1569), - [anon_sym_source_DASHenv] = ACTIONS(1569), - [anon_sym_register] = ACTIONS(1569), - [anon_sym_hide] = ACTIONS(1569), - [anon_sym_hide_DASHenv] = ACTIONS(1569), - [anon_sym_overlay] = ACTIONS(1569), - [anon_sym_new] = ACTIONS(1569), - [anon_sym_as] = ACTIONS(1569), - [anon_sym_LPAREN2] = ACTIONS(1571), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1569), - [aux_sym__immediate_decimal_token1] = ACTIONS(1766), - [aux_sym__immediate_decimal_token2] = ACTIONS(1768), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1569), - [aux_sym__val_number_decimal_token1] = ACTIONS(1569), - [aux_sym__val_number_decimal_token2] = ACTIONS(1569), - [aux_sym__val_number_decimal_token3] = ACTIONS(1569), - [aux_sym__val_number_decimal_token4] = ACTIONS(1569), - [aux_sym__val_number_token1] = ACTIONS(1569), - [aux_sym__val_number_token2] = ACTIONS(1569), - [aux_sym__val_number_token3] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(1569), - [sym__str_single_quotes] = ACTIONS(1569), - [sym__str_back_ticks] = ACTIONS(1569), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1569), - [sym__entry_separator] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1569), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1569), - [anon_sym_POUND] = ACTIONS(3), - }, - [304] = { - [sym_cell_path] = STATE(507), - [sym_path] = STATE(472), - [sym_comment] = STATE(304), - [aux_sym_cell_path_repeat1] = STATE(386), - [anon_sym_export] = ACTIONS(1770), - [anon_sym_alias] = ACTIONS(1770), - [anon_sym_let] = ACTIONS(1770), - [anon_sym_let_DASHenv] = ACTIONS(1770), - [anon_sym_mut] = ACTIONS(1770), - [anon_sym_const] = ACTIONS(1770), - [aux_sym_cmd_identifier_token1] = ACTIONS(1770), - [aux_sym_cmd_identifier_token2] = ACTIONS(1770), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [aux_sym_cmd_identifier_token6] = ACTIONS(1770), - [aux_sym_cmd_identifier_token7] = ACTIONS(1770), - [aux_sym_cmd_identifier_token8] = ACTIONS(1770), - [aux_sym_cmd_identifier_token9] = ACTIONS(1770), - [aux_sym_cmd_identifier_token10] = ACTIONS(1770), - [aux_sym_cmd_identifier_token11] = ACTIONS(1770), - [aux_sym_cmd_identifier_token12] = ACTIONS(1770), - [aux_sym_cmd_identifier_token13] = ACTIONS(1770), - [aux_sym_cmd_identifier_token14] = ACTIONS(1770), - [aux_sym_cmd_identifier_token15] = ACTIONS(1770), - [aux_sym_cmd_identifier_token16] = ACTIONS(1770), - [aux_sym_cmd_identifier_token17] = ACTIONS(1770), - [aux_sym_cmd_identifier_token18] = ACTIONS(1770), - [aux_sym_cmd_identifier_token19] = ACTIONS(1770), - [aux_sym_cmd_identifier_token20] = ACTIONS(1770), - [aux_sym_cmd_identifier_token21] = ACTIONS(1770), - [aux_sym_cmd_identifier_token22] = ACTIONS(1770), - [aux_sym_cmd_identifier_token23] = ACTIONS(1770), - [aux_sym_cmd_identifier_token24] = ACTIONS(1770), - [aux_sym_cmd_identifier_token25] = ACTIONS(1770), - [aux_sym_cmd_identifier_token26] = ACTIONS(1770), - [aux_sym_cmd_identifier_token27] = ACTIONS(1770), - [aux_sym_cmd_identifier_token28] = ACTIONS(1770), - [aux_sym_cmd_identifier_token29] = ACTIONS(1770), - [aux_sym_cmd_identifier_token30] = ACTIONS(1770), - [aux_sym_cmd_identifier_token31] = ACTIONS(1770), - [aux_sym_cmd_identifier_token32] = ACTIONS(1770), - [aux_sym_cmd_identifier_token33] = ACTIONS(1770), - [aux_sym_cmd_identifier_token34] = ACTIONS(1770), - [aux_sym_cmd_identifier_token35] = ACTIONS(1770), - [aux_sym_cmd_identifier_token36] = ACTIONS(1770), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_null] = ACTIONS(1770), - [aux_sym_cmd_identifier_token38] = ACTIONS(1770), - [aux_sym_cmd_identifier_token39] = ACTIONS(1770), - [aux_sym_cmd_identifier_token40] = ACTIONS(1770), - [anon_sym_def] = ACTIONS(1770), - [anon_sym_export_DASHenv] = ACTIONS(1770), - [anon_sym_extern] = ACTIONS(1770), - [anon_sym_module] = ACTIONS(1770), - [anon_sym_use] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1770), - [anon_sym_DOLLAR] = ACTIONS(1770), - [anon_sym_error] = ACTIONS(1770), - [anon_sym_list] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_for] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_loop] = ACTIONS(1770), - [anon_sym_make] = ACTIONS(1770), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_do] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_match] = ACTIONS(1770), - [anon_sym_RBRACE] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_catch] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_source] = ACTIONS(1770), - [anon_sym_source_DASHenv] = ACTIONS(1770), - [anon_sym_register] = ACTIONS(1770), - [anon_sym_hide] = ACTIONS(1770), - [anon_sym_hide_DASHenv] = ACTIONS(1770), - [anon_sym_overlay] = ACTIONS(1770), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(1743), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1770), - [aux_sym__val_number_decimal_token1] = ACTIONS(1770), - [aux_sym__val_number_decimal_token2] = ACTIONS(1770), - [aux_sym__val_number_decimal_token3] = ACTIONS(1770), - [aux_sym__val_number_decimal_token4] = ACTIONS(1770), - [aux_sym__val_number_token1] = ACTIONS(1770), - [aux_sym__val_number_token2] = ACTIONS(1770), - [aux_sym__val_number_token3] = ACTIONS(1770), - [anon_sym_DQUOTE] = ACTIONS(1770), - [sym__str_single_quotes] = ACTIONS(1770), - [sym__str_back_ticks] = ACTIONS(1770), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1770), - [sym__entry_separator] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_POUND] = ACTIONS(3), - }, - [305] = { - [sym_cell_path] = STATE(476), - [sym_path] = STATE(472), - [sym_comment] = STATE(305), - [aux_sym_cell_path_repeat1] = STATE(386), - [anon_sym_export] = ACTIONS(1774), - [anon_sym_alias] = ACTIONS(1774), - [anon_sym_let] = ACTIONS(1774), - [anon_sym_let_DASHenv] = ACTIONS(1774), - [anon_sym_mut] = ACTIONS(1774), - [anon_sym_const] = ACTIONS(1774), - [aux_sym_cmd_identifier_token1] = ACTIONS(1774), - [aux_sym_cmd_identifier_token2] = ACTIONS(1774), - [aux_sym_cmd_identifier_token3] = ACTIONS(1774), - [aux_sym_cmd_identifier_token4] = ACTIONS(1774), - [aux_sym_cmd_identifier_token5] = ACTIONS(1774), - [aux_sym_cmd_identifier_token6] = ACTIONS(1774), - [aux_sym_cmd_identifier_token7] = ACTIONS(1774), - [aux_sym_cmd_identifier_token8] = ACTIONS(1774), - [aux_sym_cmd_identifier_token9] = ACTIONS(1774), - [aux_sym_cmd_identifier_token10] = ACTIONS(1774), - [aux_sym_cmd_identifier_token11] = ACTIONS(1774), - [aux_sym_cmd_identifier_token12] = ACTIONS(1774), - [aux_sym_cmd_identifier_token13] = ACTIONS(1774), - [aux_sym_cmd_identifier_token14] = ACTIONS(1774), - [aux_sym_cmd_identifier_token15] = ACTIONS(1774), - [aux_sym_cmd_identifier_token16] = ACTIONS(1774), - [aux_sym_cmd_identifier_token17] = ACTIONS(1774), - [aux_sym_cmd_identifier_token18] = ACTIONS(1774), - [aux_sym_cmd_identifier_token19] = ACTIONS(1774), - [aux_sym_cmd_identifier_token20] = ACTIONS(1774), - [aux_sym_cmd_identifier_token21] = ACTIONS(1774), - [aux_sym_cmd_identifier_token22] = ACTIONS(1774), - [aux_sym_cmd_identifier_token23] = ACTIONS(1774), - [aux_sym_cmd_identifier_token24] = ACTIONS(1774), - [aux_sym_cmd_identifier_token25] = ACTIONS(1774), - [aux_sym_cmd_identifier_token26] = ACTIONS(1774), - [aux_sym_cmd_identifier_token27] = ACTIONS(1774), - [aux_sym_cmd_identifier_token28] = ACTIONS(1774), - [aux_sym_cmd_identifier_token29] = ACTIONS(1774), - [aux_sym_cmd_identifier_token30] = ACTIONS(1774), - [aux_sym_cmd_identifier_token31] = ACTIONS(1774), - [aux_sym_cmd_identifier_token32] = ACTIONS(1774), - [aux_sym_cmd_identifier_token33] = ACTIONS(1774), - [aux_sym_cmd_identifier_token34] = ACTIONS(1774), - [aux_sym_cmd_identifier_token35] = ACTIONS(1774), - [aux_sym_cmd_identifier_token36] = ACTIONS(1774), - [anon_sym_true] = ACTIONS(1774), - [anon_sym_false] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1774), - [aux_sym_cmd_identifier_token38] = ACTIONS(1774), - [aux_sym_cmd_identifier_token39] = ACTIONS(1774), - [aux_sym_cmd_identifier_token40] = ACTIONS(1774), - [anon_sym_def] = ACTIONS(1774), - [anon_sym_export_DASHenv] = ACTIONS(1774), - [anon_sym_extern] = ACTIONS(1774), - [anon_sym_module] = ACTIONS(1774), - [anon_sym_use] = ACTIONS(1774), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1774), - [anon_sym_error] = ACTIONS(1774), - [anon_sym_list] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_break] = ACTIONS(1774), - [anon_sym_continue] = ACTIONS(1774), - [anon_sym_for] = ACTIONS(1774), - [anon_sym_in] = ACTIONS(1774), - [anon_sym_loop] = ACTIONS(1774), - [anon_sym_make] = ACTIONS(1774), - [anon_sym_while] = ACTIONS(1774), - [anon_sym_do] = ACTIONS(1774), - [anon_sym_if] = ACTIONS(1774), - [anon_sym_else] = ACTIONS(1774), - [anon_sym_match] = ACTIONS(1774), - [anon_sym_RBRACE] = ACTIONS(1774), - [anon_sym_try] = ACTIONS(1774), - [anon_sym_catch] = ACTIONS(1774), - [anon_sym_return] = ACTIONS(1774), - [anon_sym_source] = ACTIONS(1774), - [anon_sym_source_DASHenv] = ACTIONS(1774), - [anon_sym_register] = ACTIONS(1774), - [anon_sym_hide] = ACTIONS(1774), - [anon_sym_hide_DASHenv] = ACTIONS(1774), - [anon_sym_overlay] = ACTIONS(1774), - [anon_sym_new] = ACTIONS(1774), - [anon_sym_as] = ACTIONS(1774), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1774), - [anon_sym_DOT] = ACTIONS(1743), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1774), - [aux_sym__val_number_decimal_token1] = ACTIONS(1774), - [aux_sym__val_number_decimal_token2] = ACTIONS(1774), - [aux_sym__val_number_decimal_token3] = ACTIONS(1774), - [aux_sym__val_number_decimal_token4] = ACTIONS(1774), - [aux_sym__val_number_token1] = ACTIONS(1774), - [aux_sym__val_number_token2] = ACTIONS(1774), - [aux_sym__val_number_token3] = ACTIONS(1774), - [anon_sym_DQUOTE] = ACTIONS(1774), - [sym__str_single_quotes] = ACTIONS(1774), - [sym__str_back_ticks] = ACTIONS(1774), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1774), - [sym__entry_separator] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_POUND] = ACTIONS(3), - }, - [306] = { - [sym_cell_path] = STATE(488), - [sym_path] = STATE(472), - [sym_comment] = STATE(306), - [aux_sym_cell_path_repeat1] = STATE(386), - [anon_sym_export] = ACTIONS(1778), - [anon_sym_alias] = ACTIONS(1778), - [anon_sym_let] = ACTIONS(1778), - [anon_sym_let_DASHenv] = ACTIONS(1778), - [anon_sym_mut] = ACTIONS(1778), - [anon_sym_const] = ACTIONS(1778), - [aux_sym_cmd_identifier_token1] = ACTIONS(1778), - [aux_sym_cmd_identifier_token2] = ACTIONS(1778), - [aux_sym_cmd_identifier_token3] = ACTIONS(1778), - [aux_sym_cmd_identifier_token4] = ACTIONS(1778), - [aux_sym_cmd_identifier_token5] = ACTIONS(1778), - [aux_sym_cmd_identifier_token6] = ACTIONS(1778), - [aux_sym_cmd_identifier_token7] = ACTIONS(1778), - [aux_sym_cmd_identifier_token8] = ACTIONS(1778), - [aux_sym_cmd_identifier_token9] = ACTIONS(1778), - [aux_sym_cmd_identifier_token10] = ACTIONS(1778), - [aux_sym_cmd_identifier_token11] = ACTIONS(1778), - [aux_sym_cmd_identifier_token12] = ACTIONS(1778), - [aux_sym_cmd_identifier_token13] = ACTIONS(1778), - [aux_sym_cmd_identifier_token14] = ACTIONS(1778), - [aux_sym_cmd_identifier_token15] = ACTIONS(1778), - [aux_sym_cmd_identifier_token16] = ACTIONS(1778), - [aux_sym_cmd_identifier_token17] = ACTIONS(1778), - [aux_sym_cmd_identifier_token18] = ACTIONS(1778), - [aux_sym_cmd_identifier_token19] = ACTIONS(1778), - [aux_sym_cmd_identifier_token20] = ACTIONS(1778), - [aux_sym_cmd_identifier_token21] = ACTIONS(1778), - [aux_sym_cmd_identifier_token22] = ACTIONS(1778), - [aux_sym_cmd_identifier_token23] = ACTIONS(1778), - [aux_sym_cmd_identifier_token24] = ACTIONS(1778), - [aux_sym_cmd_identifier_token25] = ACTIONS(1778), - [aux_sym_cmd_identifier_token26] = ACTIONS(1778), - [aux_sym_cmd_identifier_token27] = ACTIONS(1778), - [aux_sym_cmd_identifier_token28] = ACTIONS(1778), - [aux_sym_cmd_identifier_token29] = ACTIONS(1778), - [aux_sym_cmd_identifier_token30] = ACTIONS(1778), - [aux_sym_cmd_identifier_token31] = ACTIONS(1778), - [aux_sym_cmd_identifier_token32] = ACTIONS(1778), - [aux_sym_cmd_identifier_token33] = ACTIONS(1778), - [aux_sym_cmd_identifier_token34] = ACTIONS(1778), - [aux_sym_cmd_identifier_token35] = ACTIONS(1778), - [aux_sym_cmd_identifier_token36] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_null] = ACTIONS(1778), - [aux_sym_cmd_identifier_token38] = ACTIONS(1778), - [aux_sym_cmd_identifier_token39] = ACTIONS(1778), - [aux_sym_cmd_identifier_token40] = ACTIONS(1778), - [anon_sym_def] = ACTIONS(1778), - [anon_sym_export_DASHenv] = ACTIONS(1778), - [anon_sym_extern] = ACTIONS(1778), - [anon_sym_module] = ACTIONS(1778), - [anon_sym_use] = ACTIONS(1778), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_DOLLAR] = ACTIONS(1778), - [anon_sym_error] = ACTIONS(1778), - [anon_sym_list] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_break] = ACTIONS(1778), - [anon_sym_continue] = ACTIONS(1778), - [anon_sym_for] = ACTIONS(1778), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_loop] = ACTIONS(1778), - [anon_sym_make] = ACTIONS(1778), - [anon_sym_while] = ACTIONS(1778), - [anon_sym_do] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_match] = ACTIONS(1778), - [anon_sym_RBRACE] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1778), - [anon_sym_catch] = ACTIONS(1778), - [anon_sym_return] = ACTIONS(1778), - [anon_sym_source] = ACTIONS(1778), - [anon_sym_source_DASHenv] = ACTIONS(1778), - [anon_sym_register] = ACTIONS(1778), - [anon_sym_hide] = ACTIONS(1778), - [anon_sym_hide_DASHenv] = ACTIONS(1778), - [anon_sym_overlay] = ACTIONS(1778), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_as] = ACTIONS(1778), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(1743), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1778), - [aux_sym__val_number_decimal_token1] = ACTIONS(1778), - [aux_sym__val_number_decimal_token2] = ACTIONS(1778), - [aux_sym__val_number_decimal_token3] = ACTIONS(1778), - [aux_sym__val_number_decimal_token4] = ACTIONS(1778), - [aux_sym__val_number_token1] = ACTIONS(1778), - [aux_sym__val_number_token2] = ACTIONS(1778), - [aux_sym__val_number_token3] = ACTIONS(1778), - [anon_sym_DQUOTE] = ACTIONS(1778), - [sym__str_single_quotes] = ACTIONS(1778), - [sym__str_back_ticks] = ACTIONS(1778), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1778), - [sym__entry_separator] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_POUND] = ACTIONS(3), - }, - [307] = { - [sym_comment] = STATE(307), - [anon_sym_export] = ACTIONS(1589), - [anon_sym_alias] = ACTIONS(1589), - [anon_sym_let] = ACTIONS(1589), - [anon_sym_let_DASHenv] = ACTIONS(1589), - [anon_sym_mut] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [aux_sym_cmd_identifier_token1] = ACTIONS(1589), - [aux_sym_cmd_identifier_token2] = ACTIONS(1589), - [aux_sym_cmd_identifier_token3] = ACTIONS(1589), - [aux_sym_cmd_identifier_token4] = ACTIONS(1589), - [aux_sym_cmd_identifier_token5] = ACTIONS(1589), - [aux_sym_cmd_identifier_token6] = ACTIONS(1589), - [aux_sym_cmd_identifier_token7] = ACTIONS(1589), - [aux_sym_cmd_identifier_token8] = ACTIONS(1589), - [aux_sym_cmd_identifier_token9] = ACTIONS(1589), - [aux_sym_cmd_identifier_token10] = ACTIONS(1589), - [aux_sym_cmd_identifier_token11] = ACTIONS(1589), - [aux_sym_cmd_identifier_token12] = ACTIONS(1589), - [aux_sym_cmd_identifier_token13] = ACTIONS(1589), - [aux_sym_cmd_identifier_token14] = ACTIONS(1589), - [aux_sym_cmd_identifier_token15] = ACTIONS(1589), - [aux_sym_cmd_identifier_token16] = ACTIONS(1589), - [aux_sym_cmd_identifier_token17] = ACTIONS(1589), - [aux_sym_cmd_identifier_token18] = ACTIONS(1589), - [aux_sym_cmd_identifier_token19] = ACTIONS(1589), - [aux_sym_cmd_identifier_token20] = ACTIONS(1589), - [aux_sym_cmd_identifier_token21] = ACTIONS(1589), - [aux_sym_cmd_identifier_token22] = ACTIONS(1589), - [aux_sym_cmd_identifier_token23] = ACTIONS(1589), - [aux_sym_cmd_identifier_token24] = ACTIONS(1589), - [aux_sym_cmd_identifier_token25] = ACTIONS(1589), - [aux_sym_cmd_identifier_token26] = ACTIONS(1589), - [aux_sym_cmd_identifier_token27] = ACTIONS(1589), - [aux_sym_cmd_identifier_token28] = ACTIONS(1589), - [aux_sym_cmd_identifier_token29] = ACTIONS(1589), - [aux_sym_cmd_identifier_token30] = ACTIONS(1589), - [aux_sym_cmd_identifier_token31] = ACTIONS(1589), - [aux_sym_cmd_identifier_token32] = ACTIONS(1589), - [aux_sym_cmd_identifier_token33] = ACTIONS(1589), - [aux_sym_cmd_identifier_token34] = ACTIONS(1589), - [aux_sym_cmd_identifier_token35] = ACTIONS(1589), - [aux_sym_cmd_identifier_token36] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1589), - [anon_sym_false] = ACTIONS(1589), - [anon_sym_null] = ACTIONS(1589), - [aux_sym_cmd_identifier_token38] = ACTIONS(1589), - [aux_sym_cmd_identifier_token39] = ACTIONS(1589), - [aux_sym_cmd_identifier_token40] = ACTIONS(1589), - [anon_sym_def] = ACTIONS(1589), - [anon_sym_export_DASHenv] = ACTIONS(1589), - [anon_sym_extern] = ACTIONS(1589), - [anon_sym_module] = ACTIONS(1589), - [anon_sym_use] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_error] = ACTIONS(1589), - [anon_sym_list] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_loop] = ACTIONS(1589), - [anon_sym_make] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_else] = ACTIONS(1589), - [anon_sym_match] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1589), - [anon_sym_try] = ACTIONS(1589), - [anon_sym_catch] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_source] = ACTIONS(1589), - [anon_sym_source_DASHenv] = ACTIONS(1589), - [anon_sym_register] = ACTIONS(1589), - [anon_sym_hide] = ACTIONS(1589), - [anon_sym_hide_DASHenv] = ACTIONS(1589), - [anon_sym_overlay] = ACTIONS(1589), - [anon_sym_new] = ACTIONS(1589), - [anon_sym_as] = ACTIONS(1589), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1589), - [anon_sym_DOT_DOT2] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), - [aux_sym__immediate_decimal_token2] = ACTIONS(1731), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1589), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1589), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1589), - [aux_sym__val_number_token1] = ACTIONS(1589), - [aux_sym__val_number_token2] = ACTIONS(1589), - [aux_sym__val_number_token3] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [sym__str_single_quotes] = ACTIONS(1589), - [sym__str_back_ticks] = ACTIONS(1589), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1589), - [sym__entry_separator] = ACTIONS(1591), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(3), - }, - [308] = { - [sym_cell_path] = STATE(569), - [sym_path] = STATE(472), - [sym_comment] = STATE(308), - [aux_sym_cell_path_repeat1] = STATE(386), - [anon_sym_export] = ACTIONS(1782), - [anon_sym_alias] = ACTIONS(1782), - [anon_sym_let] = ACTIONS(1782), - [anon_sym_let_DASHenv] = ACTIONS(1782), - [anon_sym_mut] = ACTIONS(1782), - [anon_sym_const] = ACTIONS(1782), - [aux_sym_cmd_identifier_token1] = ACTIONS(1782), - [aux_sym_cmd_identifier_token2] = ACTIONS(1782), - [aux_sym_cmd_identifier_token3] = ACTIONS(1782), - [aux_sym_cmd_identifier_token4] = ACTIONS(1782), - [aux_sym_cmd_identifier_token5] = ACTIONS(1782), - [aux_sym_cmd_identifier_token6] = ACTIONS(1782), - [aux_sym_cmd_identifier_token7] = ACTIONS(1782), - [aux_sym_cmd_identifier_token8] = ACTIONS(1782), - [aux_sym_cmd_identifier_token9] = ACTIONS(1782), - [aux_sym_cmd_identifier_token10] = ACTIONS(1782), - [aux_sym_cmd_identifier_token11] = ACTIONS(1782), - [aux_sym_cmd_identifier_token12] = ACTIONS(1782), - [aux_sym_cmd_identifier_token13] = ACTIONS(1782), - [aux_sym_cmd_identifier_token14] = ACTIONS(1782), - [aux_sym_cmd_identifier_token15] = ACTIONS(1782), - [aux_sym_cmd_identifier_token16] = ACTIONS(1782), - [aux_sym_cmd_identifier_token17] = ACTIONS(1782), - [aux_sym_cmd_identifier_token18] = ACTIONS(1782), - [aux_sym_cmd_identifier_token19] = ACTIONS(1782), - [aux_sym_cmd_identifier_token20] = ACTIONS(1782), - [aux_sym_cmd_identifier_token21] = ACTIONS(1782), - [aux_sym_cmd_identifier_token22] = ACTIONS(1782), - [aux_sym_cmd_identifier_token23] = ACTIONS(1782), - [aux_sym_cmd_identifier_token24] = ACTIONS(1782), - [aux_sym_cmd_identifier_token25] = ACTIONS(1782), - [aux_sym_cmd_identifier_token26] = ACTIONS(1782), - [aux_sym_cmd_identifier_token27] = ACTIONS(1782), - [aux_sym_cmd_identifier_token28] = ACTIONS(1782), - [aux_sym_cmd_identifier_token29] = ACTIONS(1782), - [aux_sym_cmd_identifier_token30] = ACTIONS(1782), - [aux_sym_cmd_identifier_token31] = ACTIONS(1782), - [aux_sym_cmd_identifier_token32] = ACTIONS(1782), - [aux_sym_cmd_identifier_token33] = ACTIONS(1782), - [aux_sym_cmd_identifier_token34] = ACTIONS(1782), - [aux_sym_cmd_identifier_token35] = ACTIONS(1782), - [aux_sym_cmd_identifier_token36] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1782), - [anon_sym_false] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1782), - [aux_sym_cmd_identifier_token38] = ACTIONS(1782), - [aux_sym_cmd_identifier_token39] = ACTIONS(1782), - [aux_sym_cmd_identifier_token40] = ACTIONS(1782), - [anon_sym_def] = ACTIONS(1782), - [anon_sym_export_DASHenv] = ACTIONS(1782), - [anon_sym_extern] = ACTIONS(1782), - [anon_sym_module] = ACTIONS(1782), - [anon_sym_use] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_DOLLAR] = ACTIONS(1782), - [anon_sym_error] = ACTIONS(1782), - [anon_sym_list] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_break] = ACTIONS(1782), - [anon_sym_continue] = ACTIONS(1782), - [anon_sym_for] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1782), - [anon_sym_loop] = ACTIONS(1782), - [anon_sym_make] = ACTIONS(1782), - [anon_sym_while] = ACTIONS(1782), - [anon_sym_do] = ACTIONS(1782), - [anon_sym_if] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1782), - [anon_sym_match] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_try] = ACTIONS(1782), - [anon_sym_catch] = ACTIONS(1782), - [anon_sym_return] = ACTIONS(1782), - [anon_sym_source] = ACTIONS(1782), - [anon_sym_source_DASHenv] = ACTIONS(1782), - [anon_sym_register] = ACTIONS(1782), - [anon_sym_hide] = ACTIONS(1782), - [anon_sym_hide_DASHenv] = ACTIONS(1782), - [anon_sym_overlay] = ACTIONS(1782), - [anon_sym_new] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1782), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1782), - [anon_sym_DOT] = ACTIONS(1743), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1782), - [aux_sym__val_number_decimal_token1] = ACTIONS(1782), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1782), - [aux_sym__val_number_decimal_token4] = ACTIONS(1782), - [aux_sym__val_number_token1] = ACTIONS(1782), - [aux_sym__val_number_token2] = ACTIONS(1782), - [aux_sym__val_number_token3] = ACTIONS(1782), - [anon_sym_DQUOTE] = ACTIONS(1782), - [sym__str_single_quotes] = ACTIONS(1782), - [sym__str_back_ticks] = ACTIONS(1782), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1782), - [sym__entry_separator] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_POUND] = ACTIONS(3), - }, - [309] = { - [sym_comment] = STATE(309), - [anon_sym_export] = ACTIONS(1648), - [anon_sym_alias] = ACTIONS(1648), - [anon_sym_let] = ACTIONS(1648), - [anon_sym_let_DASHenv] = ACTIONS(1648), - [anon_sym_mut] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1648), - [aux_sym_cmd_identifier_token1] = ACTIONS(1648), - [aux_sym_cmd_identifier_token2] = ACTIONS(1648), - [aux_sym_cmd_identifier_token3] = ACTIONS(1648), - [aux_sym_cmd_identifier_token4] = ACTIONS(1648), - [aux_sym_cmd_identifier_token5] = ACTIONS(1648), - [aux_sym_cmd_identifier_token6] = ACTIONS(1648), - [aux_sym_cmd_identifier_token7] = ACTIONS(1648), - [aux_sym_cmd_identifier_token8] = ACTIONS(1648), - [aux_sym_cmd_identifier_token9] = ACTIONS(1648), - [aux_sym_cmd_identifier_token10] = ACTIONS(1648), - [aux_sym_cmd_identifier_token11] = ACTIONS(1648), - [aux_sym_cmd_identifier_token12] = ACTIONS(1648), - [aux_sym_cmd_identifier_token13] = ACTIONS(1648), - [aux_sym_cmd_identifier_token14] = ACTIONS(1648), - [aux_sym_cmd_identifier_token15] = ACTIONS(1648), - [aux_sym_cmd_identifier_token16] = ACTIONS(1648), - [aux_sym_cmd_identifier_token17] = ACTIONS(1648), - [aux_sym_cmd_identifier_token18] = ACTIONS(1648), - [aux_sym_cmd_identifier_token19] = ACTIONS(1648), - [aux_sym_cmd_identifier_token20] = ACTIONS(1648), - [aux_sym_cmd_identifier_token21] = ACTIONS(1648), - [aux_sym_cmd_identifier_token22] = ACTIONS(1648), - [aux_sym_cmd_identifier_token23] = ACTIONS(1648), - [aux_sym_cmd_identifier_token24] = ACTIONS(1648), - [aux_sym_cmd_identifier_token25] = ACTIONS(1648), - [aux_sym_cmd_identifier_token26] = ACTIONS(1648), - [aux_sym_cmd_identifier_token27] = ACTIONS(1648), - [aux_sym_cmd_identifier_token28] = ACTIONS(1648), - [aux_sym_cmd_identifier_token29] = ACTIONS(1648), - [aux_sym_cmd_identifier_token30] = ACTIONS(1648), - [aux_sym_cmd_identifier_token31] = ACTIONS(1648), - [aux_sym_cmd_identifier_token32] = ACTIONS(1648), - [aux_sym_cmd_identifier_token33] = ACTIONS(1648), - [aux_sym_cmd_identifier_token34] = ACTIONS(1648), - [aux_sym_cmd_identifier_token35] = ACTIONS(1648), - [aux_sym_cmd_identifier_token36] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1648), - [anon_sym_false] = ACTIONS(1648), - [anon_sym_null] = ACTIONS(1648), - [aux_sym_cmd_identifier_token38] = ACTIONS(1648), - [aux_sym_cmd_identifier_token39] = ACTIONS(1648), - [aux_sym_cmd_identifier_token40] = ACTIONS(1648), - [anon_sym_def] = ACTIONS(1648), - [anon_sym_export_DASHenv] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1648), - [anon_sym_module] = ACTIONS(1648), - [anon_sym_use] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_error] = ACTIONS(1648), - [anon_sym_list] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_in] = ACTIONS(1648), - [anon_sym_loop] = ACTIONS(1648), - [anon_sym_make] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_do] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1648), - [anon_sym_match] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1648), - [anon_sym_try] = ACTIONS(1648), - [anon_sym_catch] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_source] = ACTIONS(1648), - [anon_sym_source_DASHenv] = ACTIONS(1648), - [anon_sym_register] = ACTIONS(1648), - [anon_sym_hide] = ACTIONS(1648), - [anon_sym_hide_DASHenv] = ACTIONS(1648), - [anon_sym_overlay] = ACTIONS(1648), - [anon_sym_new] = ACTIONS(1648), - [anon_sym_as] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1648), - [anon_sym_DOT_DOT2] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), - [aux_sym__immediate_decimal_token2] = ACTIONS(1786), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1648), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1648), - [aux_sym__val_number_decimal_token3] = ACTIONS(1648), - [aux_sym__val_number_decimal_token4] = ACTIONS(1648), - [aux_sym__val_number_token1] = ACTIONS(1648), - [aux_sym__val_number_token2] = ACTIONS(1648), - [aux_sym__val_number_token3] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1648), - [sym__str_single_quotes] = ACTIONS(1648), - [sym__str_back_ticks] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1648), - [sym__entry_separator] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(3), - }, - [310] = { - [sym_comment] = STATE(310), - [anon_sym_export] = ACTIONS(1589), - [anon_sym_alias] = ACTIONS(1589), - [anon_sym_let] = ACTIONS(1589), - [anon_sym_let_DASHenv] = ACTIONS(1589), - [anon_sym_mut] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [aux_sym_cmd_identifier_token1] = ACTIONS(1589), - [aux_sym_cmd_identifier_token2] = ACTIONS(1589), - [aux_sym_cmd_identifier_token3] = ACTIONS(1589), - [aux_sym_cmd_identifier_token4] = ACTIONS(1589), - [aux_sym_cmd_identifier_token5] = ACTIONS(1589), - [aux_sym_cmd_identifier_token6] = ACTIONS(1589), - [aux_sym_cmd_identifier_token7] = ACTIONS(1589), - [aux_sym_cmd_identifier_token8] = ACTIONS(1589), - [aux_sym_cmd_identifier_token9] = ACTIONS(1589), - [aux_sym_cmd_identifier_token10] = ACTIONS(1589), - [aux_sym_cmd_identifier_token11] = ACTIONS(1589), - [aux_sym_cmd_identifier_token12] = ACTIONS(1589), - [aux_sym_cmd_identifier_token13] = ACTIONS(1589), - [aux_sym_cmd_identifier_token14] = ACTIONS(1589), - [aux_sym_cmd_identifier_token15] = ACTIONS(1589), - [aux_sym_cmd_identifier_token16] = ACTIONS(1589), - [aux_sym_cmd_identifier_token17] = ACTIONS(1589), - [aux_sym_cmd_identifier_token18] = ACTIONS(1589), - [aux_sym_cmd_identifier_token19] = ACTIONS(1589), - [aux_sym_cmd_identifier_token20] = ACTIONS(1589), - [aux_sym_cmd_identifier_token21] = ACTIONS(1589), - [aux_sym_cmd_identifier_token22] = ACTIONS(1589), - [aux_sym_cmd_identifier_token23] = ACTIONS(1589), - [aux_sym_cmd_identifier_token24] = ACTIONS(1589), - [aux_sym_cmd_identifier_token25] = ACTIONS(1589), - [aux_sym_cmd_identifier_token26] = ACTIONS(1589), - [aux_sym_cmd_identifier_token27] = ACTIONS(1589), - [aux_sym_cmd_identifier_token28] = ACTIONS(1589), - [aux_sym_cmd_identifier_token29] = ACTIONS(1589), - [aux_sym_cmd_identifier_token30] = ACTIONS(1589), - [aux_sym_cmd_identifier_token31] = ACTIONS(1589), - [aux_sym_cmd_identifier_token32] = ACTIONS(1589), - [aux_sym_cmd_identifier_token33] = ACTIONS(1589), - [aux_sym_cmd_identifier_token34] = ACTIONS(1589), - [aux_sym_cmd_identifier_token35] = ACTIONS(1589), - [aux_sym_cmd_identifier_token36] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [anon_sym_null] = ACTIONS(1591), - [aux_sym_cmd_identifier_token38] = ACTIONS(1589), - [aux_sym_cmd_identifier_token39] = ACTIONS(1591), - [aux_sym_cmd_identifier_token40] = ACTIONS(1591), - [anon_sym_def] = ACTIONS(1589), - [anon_sym_export_DASHenv] = ACTIONS(1589), - [anon_sym_extern] = ACTIONS(1589), - [anon_sym_module] = ACTIONS(1589), - [anon_sym_use] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1591), - [anon_sym_DOLLAR] = ACTIONS(1591), - [anon_sym_error] = ACTIONS(1589), - [anon_sym_list] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_loop] = ACTIONS(1589), - [anon_sym_make] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_else] = ACTIONS(1589), - [anon_sym_match] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_try] = ACTIONS(1589), - [anon_sym_catch] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_source] = ACTIONS(1589), - [anon_sym_source_DASHenv] = ACTIONS(1589), - [anon_sym_register] = ACTIONS(1589), - [anon_sym_hide] = ACTIONS(1589), - [anon_sym_hide_DASHenv] = ACTIONS(1589), - [anon_sym_overlay] = ACTIONS(1589), - [anon_sym_new] = ACTIONS(1589), - [anon_sym_as] = ACTIONS(1589), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1591), - [anon_sym_DOT_DOT2] = ACTIONS(1589), - [anon_sym_DOT] = ACTIONS(1788), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), - [aux_sym__immediate_decimal_token2] = ACTIONS(1790), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1591), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token3] = ACTIONS(1591), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(1591), - [aux_sym__val_number_token2] = ACTIONS(1591), - [aux_sym__val_number_token3] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym__str_single_quotes] = ACTIONS(1591), - [sym__str_back_ticks] = ACTIONS(1591), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1591), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(247), - }, - [311] = { - [sym_comment] = STATE(311), - [anon_sym_export] = ACTIONS(1589), - [anon_sym_alias] = ACTIONS(1589), - [anon_sym_let] = ACTIONS(1589), - [anon_sym_let_DASHenv] = ACTIONS(1589), - [anon_sym_mut] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [aux_sym_cmd_identifier_token1] = ACTIONS(1589), - [aux_sym_cmd_identifier_token2] = ACTIONS(1589), - [aux_sym_cmd_identifier_token3] = ACTIONS(1589), - [aux_sym_cmd_identifier_token4] = ACTIONS(1589), - [aux_sym_cmd_identifier_token5] = ACTIONS(1589), - [aux_sym_cmd_identifier_token6] = ACTIONS(1589), - [aux_sym_cmd_identifier_token7] = ACTIONS(1589), - [aux_sym_cmd_identifier_token8] = ACTIONS(1589), - [aux_sym_cmd_identifier_token9] = ACTIONS(1589), - [aux_sym_cmd_identifier_token10] = ACTIONS(1589), - [aux_sym_cmd_identifier_token11] = ACTIONS(1589), - [aux_sym_cmd_identifier_token12] = ACTIONS(1589), - [aux_sym_cmd_identifier_token13] = ACTIONS(1589), - [aux_sym_cmd_identifier_token14] = ACTIONS(1589), - [aux_sym_cmd_identifier_token15] = ACTIONS(1589), - [aux_sym_cmd_identifier_token16] = ACTIONS(1589), - [aux_sym_cmd_identifier_token17] = ACTIONS(1589), - [aux_sym_cmd_identifier_token18] = ACTIONS(1589), - [aux_sym_cmd_identifier_token19] = ACTIONS(1589), - [aux_sym_cmd_identifier_token20] = ACTIONS(1589), - [aux_sym_cmd_identifier_token21] = ACTIONS(1589), - [aux_sym_cmd_identifier_token22] = ACTIONS(1589), - [aux_sym_cmd_identifier_token23] = ACTIONS(1589), - [aux_sym_cmd_identifier_token24] = ACTIONS(1589), - [aux_sym_cmd_identifier_token25] = ACTIONS(1589), - [aux_sym_cmd_identifier_token26] = ACTIONS(1589), - [aux_sym_cmd_identifier_token27] = ACTIONS(1589), - [aux_sym_cmd_identifier_token28] = ACTIONS(1589), - [aux_sym_cmd_identifier_token29] = ACTIONS(1589), - [aux_sym_cmd_identifier_token30] = ACTIONS(1589), - [aux_sym_cmd_identifier_token31] = ACTIONS(1589), - [aux_sym_cmd_identifier_token32] = ACTIONS(1589), - [aux_sym_cmd_identifier_token33] = ACTIONS(1589), - [aux_sym_cmd_identifier_token34] = ACTIONS(1589), - [aux_sym_cmd_identifier_token35] = ACTIONS(1589), - [aux_sym_cmd_identifier_token36] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1589), - [anon_sym_false] = ACTIONS(1589), - [anon_sym_null] = ACTIONS(1589), - [aux_sym_cmd_identifier_token38] = ACTIONS(1589), - [aux_sym_cmd_identifier_token39] = ACTIONS(1589), - [aux_sym_cmd_identifier_token40] = ACTIONS(1589), - [anon_sym_def] = ACTIONS(1589), - [anon_sym_export_DASHenv] = ACTIONS(1589), - [anon_sym_extern] = ACTIONS(1589), - [anon_sym_module] = ACTIONS(1589), - [anon_sym_use] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_error] = ACTIONS(1589), - [anon_sym_list] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_loop] = ACTIONS(1589), - [anon_sym_make] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_else] = ACTIONS(1589), - [anon_sym_match] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1589), - [anon_sym_try] = ACTIONS(1589), - [anon_sym_catch] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_source] = ACTIONS(1589), - [anon_sym_source_DASHenv] = ACTIONS(1589), - [anon_sym_register] = ACTIONS(1589), - [anon_sym_hide] = ACTIONS(1589), - [anon_sym_hide_DASHenv] = ACTIONS(1589), - [anon_sym_overlay] = ACTIONS(1589), - [anon_sym_new] = ACTIONS(1589), - [anon_sym_as] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1591), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1589), - [anon_sym_DOT] = ACTIONS(1792), - [aux_sym__immediate_decimal_token2] = ACTIONS(1794), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1589), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1589), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1589), - [aux_sym__val_number_token1] = ACTIONS(1589), - [aux_sym__val_number_token2] = ACTIONS(1589), - [aux_sym__val_number_token3] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [sym__str_single_quotes] = ACTIONS(1589), - [sym__str_back_ticks] = ACTIONS(1589), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1589), - [sym__entry_separator] = ACTIONS(1591), - [anon_sym_PLUS] = ACTIONS(1589), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(3), - }, - [312] = { - [sym_cell_path] = STATE(547), - [sym_path] = STATE(472), - [sym_comment] = STATE(312), - [aux_sym_cell_path_repeat1] = STATE(386), - [anon_sym_export] = ACTIONS(1796), - [anon_sym_alias] = ACTIONS(1796), - [anon_sym_let] = ACTIONS(1796), - [anon_sym_let_DASHenv] = ACTIONS(1796), - [anon_sym_mut] = ACTIONS(1796), - [anon_sym_const] = ACTIONS(1796), - [aux_sym_cmd_identifier_token1] = ACTIONS(1796), - [aux_sym_cmd_identifier_token2] = ACTIONS(1796), - [aux_sym_cmd_identifier_token3] = ACTIONS(1796), - [aux_sym_cmd_identifier_token4] = ACTIONS(1796), - [aux_sym_cmd_identifier_token5] = ACTIONS(1796), - [aux_sym_cmd_identifier_token6] = ACTIONS(1796), - [aux_sym_cmd_identifier_token7] = ACTIONS(1796), - [aux_sym_cmd_identifier_token8] = ACTIONS(1796), - [aux_sym_cmd_identifier_token9] = ACTIONS(1796), - [aux_sym_cmd_identifier_token10] = ACTIONS(1796), - [aux_sym_cmd_identifier_token11] = ACTIONS(1796), - [aux_sym_cmd_identifier_token12] = ACTIONS(1796), - [aux_sym_cmd_identifier_token13] = ACTIONS(1796), - [aux_sym_cmd_identifier_token14] = ACTIONS(1796), - [aux_sym_cmd_identifier_token15] = ACTIONS(1796), - [aux_sym_cmd_identifier_token16] = ACTIONS(1796), - [aux_sym_cmd_identifier_token17] = ACTIONS(1796), - [aux_sym_cmd_identifier_token18] = ACTIONS(1796), - [aux_sym_cmd_identifier_token19] = ACTIONS(1796), - [aux_sym_cmd_identifier_token20] = ACTIONS(1796), - [aux_sym_cmd_identifier_token21] = ACTIONS(1796), - [aux_sym_cmd_identifier_token22] = ACTIONS(1796), - [aux_sym_cmd_identifier_token23] = ACTIONS(1796), - [aux_sym_cmd_identifier_token24] = ACTIONS(1796), - [aux_sym_cmd_identifier_token25] = ACTIONS(1796), - [aux_sym_cmd_identifier_token26] = ACTIONS(1796), - [aux_sym_cmd_identifier_token27] = ACTIONS(1796), - [aux_sym_cmd_identifier_token28] = ACTIONS(1796), - [aux_sym_cmd_identifier_token29] = ACTIONS(1796), - [aux_sym_cmd_identifier_token30] = ACTIONS(1796), - [aux_sym_cmd_identifier_token31] = ACTIONS(1796), - [aux_sym_cmd_identifier_token32] = ACTIONS(1796), - [aux_sym_cmd_identifier_token33] = ACTIONS(1796), - [aux_sym_cmd_identifier_token34] = ACTIONS(1796), - [aux_sym_cmd_identifier_token35] = ACTIONS(1796), - [aux_sym_cmd_identifier_token36] = ACTIONS(1796), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_null] = ACTIONS(1796), - [aux_sym_cmd_identifier_token38] = ACTIONS(1796), - [aux_sym_cmd_identifier_token39] = ACTIONS(1796), - [aux_sym_cmd_identifier_token40] = ACTIONS(1796), - [anon_sym_def] = ACTIONS(1796), - [anon_sym_export_DASHenv] = ACTIONS(1796), - [anon_sym_extern] = ACTIONS(1796), - [anon_sym_module] = ACTIONS(1796), - [anon_sym_use] = ACTIONS(1796), - [anon_sym_LPAREN] = ACTIONS(1796), - [anon_sym_DOLLAR] = ACTIONS(1796), - [anon_sym_error] = ACTIONS(1796), - [anon_sym_list] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_for] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_loop] = ACTIONS(1796), - [anon_sym_make] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_do] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_match] = ACTIONS(1796), - [anon_sym_RBRACE] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_catch] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_source] = ACTIONS(1796), - [anon_sym_source_DASHenv] = ACTIONS(1796), - [anon_sym_register] = ACTIONS(1796), - [anon_sym_hide] = ACTIONS(1796), - [anon_sym_hide_DASHenv] = ACTIONS(1796), - [anon_sym_overlay] = ACTIONS(1796), - [anon_sym_new] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1796), - [anon_sym_DOT] = ACTIONS(1743), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1796), - [aux_sym__val_number_decimal_token1] = ACTIONS(1796), - [aux_sym__val_number_decimal_token2] = ACTIONS(1796), - [aux_sym__val_number_decimal_token3] = ACTIONS(1796), - [aux_sym__val_number_decimal_token4] = ACTIONS(1796), - [aux_sym__val_number_token1] = ACTIONS(1796), - [aux_sym__val_number_token2] = ACTIONS(1796), - [aux_sym__val_number_token3] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [sym__str_single_quotes] = ACTIONS(1796), - [sym__str_back_ticks] = ACTIONS(1796), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1796), - [sym__entry_separator] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_POUND] = ACTIONS(3), - }, - [313] = { - [sym_comment] = STATE(313), - [anon_sym_export] = ACTIONS(1800), - [anon_sym_alias] = ACTIONS(1800), - [anon_sym_let] = ACTIONS(1800), - [anon_sym_let_DASHenv] = ACTIONS(1800), - [anon_sym_mut] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1800), - [aux_sym_cmd_identifier_token1] = ACTIONS(1800), - [aux_sym_cmd_identifier_token2] = ACTIONS(1800), - [aux_sym_cmd_identifier_token3] = ACTIONS(1800), - [aux_sym_cmd_identifier_token4] = ACTIONS(1800), - [aux_sym_cmd_identifier_token5] = ACTIONS(1800), - [aux_sym_cmd_identifier_token6] = ACTIONS(1800), - [aux_sym_cmd_identifier_token7] = ACTIONS(1800), - [aux_sym_cmd_identifier_token8] = ACTIONS(1800), - [aux_sym_cmd_identifier_token9] = ACTIONS(1800), - [aux_sym_cmd_identifier_token10] = ACTIONS(1800), - [aux_sym_cmd_identifier_token11] = ACTIONS(1800), - [aux_sym_cmd_identifier_token12] = ACTIONS(1800), - [aux_sym_cmd_identifier_token13] = ACTIONS(1800), - [aux_sym_cmd_identifier_token14] = ACTIONS(1800), - [aux_sym_cmd_identifier_token15] = ACTIONS(1800), - [aux_sym_cmd_identifier_token16] = ACTIONS(1800), - [aux_sym_cmd_identifier_token17] = ACTIONS(1800), - [aux_sym_cmd_identifier_token18] = ACTIONS(1800), - [aux_sym_cmd_identifier_token19] = ACTIONS(1800), - [aux_sym_cmd_identifier_token20] = ACTIONS(1800), - [aux_sym_cmd_identifier_token21] = ACTIONS(1800), - [aux_sym_cmd_identifier_token22] = ACTIONS(1800), - [aux_sym_cmd_identifier_token23] = ACTIONS(1800), - [aux_sym_cmd_identifier_token24] = ACTIONS(1802), - [aux_sym_cmd_identifier_token25] = ACTIONS(1800), - [aux_sym_cmd_identifier_token26] = ACTIONS(1802), - [aux_sym_cmd_identifier_token27] = ACTIONS(1800), - [aux_sym_cmd_identifier_token28] = ACTIONS(1800), - [aux_sym_cmd_identifier_token29] = ACTIONS(1800), - [aux_sym_cmd_identifier_token30] = ACTIONS(1800), - [aux_sym_cmd_identifier_token31] = ACTIONS(1802), - [aux_sym_cmd_identifier_token32] = ACTIONS(1802), - [aux_sym_cmd_identifier_token33] = ACTIONS(1802), - [aux_sym_cmd_identifier_token34] = ACTIONS(1802), - [aux_sym_cmd_identifier_token35] = ACTIONS(1802), - [aux_sym_cmd_identifier_token36] = ACTIONS(1800), - [anon_sym_true] = ACTIONS(1802), - [anon_sym_false] = ACTIONS(1802), - [anon_sym_null] = ACTIONS(1802), - [aux_sym_cmd_identifier_token38] = ACTIONS(1800), - [aux_sym_cmd_identifier_token39] = ACTIONS(1802), - [aux_sym_cmd_identifier_token40] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_def] = ACTIONS(1800), - [anon_sym_export_DASHenv] = ACTIONS(1800), - [anon_sym_extern] = ACTIONS(1800), - [anon_sym_module] = ACTIONS(1800), - [anon_sym_use] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1800), - [anon_sym_error] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_break] = ACTIONS(1800), - [anon_sym_continue] = ACTIONS(1800), - [anon_sym_for] = ACTIONS(1800), - [anon_sym_loop] = ACTIONS(1800), - [anon_sym_while] = ACTIONS(1800), - [anon_sym_do] = ACTIONS(1800), - [anon_sym_if] = ACTIONS(1800), - [anon_sym_match] = ACTIONS(1800), - [aux_sym_ctrl_match_token1] = ACTIONS(1802), - [anon_sym_DOT_DOT] = ACTIONS(1800), - [anon_sym_try] = ACTIONS(1800), - [anon_sym_return] = ACTIONS(1800), - [anon_sym_source] = ACTIONS(1800), - [anon_sym_source_DASHenv] = ACTIONS(1800), - [anon_sym_register] = ACTIONS(1800), - [anon_sym_hide] = ACTIONS(1800), - [anon_sym_hide_DASHenv] = ACTIONS(1800), - [anon_sym_overlay] = ACTIONS(1800), - [anon_sym_where] = ACTIONS(1802), - [aux_sym_expr_unary_token1] = ACTIONS(1802), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1802), - [anon_sym_DOT_DOT_LT] = ACTIONS(1802), - [aux_sym__val_number_decimal_token1] = ACTIONS(1800), - [aux_sym__val_number_decimal_token2] = ACTIONS(1802), - [aux_sym__val_number_decimal_token3] = ACTIONS(1802), - [aux_sym__val_number_decimal_token4] = ACTIONS(1802), - [aux_sym__val_number_token1] = ACTIONS(1802), - [aux_sym__val_number_token2] = ACTIONS(1802), - [aux_sym__val_number_token3] = ACTIONS(1802), - [anon_sym_0b] = ACTIONS(1800), - [anon_sym_0o] = ACTIONS(1800), - [anon_sym_0x] = ACTIONS(1800), - [sym_val_date] = ACTIONS(1802), - [anon_sym_DQUOTE] = ACTIONS(1802), - [sym__str_single_quotes] = ACTIONS(1802), - [sym__str_back_ticks] = ACTIONS(1802), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1802), - [aux_sym_env_var_token1] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1802), - [anon_sym_POUND] = ACTIONS(247), - }, - [314] = { - [sym_comment] = STATE(314), - [anon_sym_export] = ACTIONS(1626), - [anon_sym_alias] = ACTIONS(1626), - [anon_sym_let] = ACTIONS(1626), - [anon_sym_let_DASHenv] = ACTIONS(1626), - [anon_sym_mut] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1626), - [aux_sym_cmd_identifier_token1] = ACTIONS(1626), - [aux_sym_cmd_identifier_token2] = ACTIONS(1626), - [aux_sym_cmd_identifier_token3] = ACTIONS(1626), - [aux_sym_cmd_identifier_token4] = ACTIONS(1626), - [aux_sym_cmd_identifier_token5] = ACTIONS(1626), - [aux_sym_cmd_identifier_token6] = ACTIONS(1626), - [aux_sym_cmd_identifier_token7] = ACTIONS(1626), - [aux_sym_cmd_identifier_token8] = ACTIONS(1626), - [aux_sym_cmd_identifier_token9] = ACTIONS(1626), - [aux_sym_cmd_identifier_token10] = ACTIONS(1626), - [aux_sym_cmd_identifier_token11] = ACTIONS(1626), - [aux_sym_cmd_identifier_token12] = ACTIONS(1626), - [aux_sym_cmd_identifier_token13] = ACTIONS(1626), - [aux_sym_cmd_identifier_token14] = ACTIONS(1626), - [aux_sym_cmd_identifier_token15] = ACTIONS(1626), - [aux_sym_cmd_identifier_token16] = ACTIONS(1626), - [aux_sym_cmd_identifier_token17] = ACTIONS(1626), - [aux_sym_cmd_identifier_token18] = ACTIONS(1626), - [aux_sym_cmd_identifier_token19] = ACTIONS(1626), - [aux_sym_cmd_identifier_token20] = ACTIONS(1626), - [aux_sym_cmd_identifier_token21] = ACTIONS(1626), - [aux_sym_cmd_identifier_token22] = ACTIONS(1626), - [aux_sym_cmd_identifier_token23] = ACTIONS(1626), - [aux_sym_cmd_identifier_token24] = ACTIONS(1628), - [aux_sym_cmd_identifier_token25] = ACTIONS(1626), - [aux_sym_cmd_identifier_token26] = ACTIONS(1628), - [aux_sym_cmd_identifier_token27] = ACTIONS(1626), - [aux_sym_cmd_identifier_token28] = ACTIONS(1626), - [aux_sym_cmd_identifier_token29] = ACTIONS(1626), - [aux_sym_cmd_identifier_token30] = ACTIONS(1626), - [aux_sym_cmd_identifier_token31] = ACTIONS(1628), - [aux_sym_cmd_identifier_token32] = ACTIONS(1628), - [aux_sym_cmd_identifier_token33] = ACTIONS(1628), - [aux_sym_cmd_identifier_token34] = ACTIONS(1628), - [aux_sym_cmd_identifier_token35] = ACTIONS(1628), - [aux_sym_cmd_identifier_token36] = ACTIONS(1626), - [anon_sym_true] = ACTIONS(1628), - [anon_sym_false] = ACTIONS(1628), - [anon_sym_null] = ACTIONS(1628), - [aux_sym_cmd_identifier_token38] = ACTIONS(1626), - [aux_sym_cmd_identifier_token39] = ACTIONS(1628), - [aux_sym_cmd_identifier_token40] = ACTIONS(1628), - [sym__newline] = ACTIONS(1628), - [anon_sym_SEMI] = ACTIONS(1628), - [anon_sym_def] = ACTIONS(1626), - [anon_sym_export_DASHenv] = ACTIONS(1626), - [anon_sym_extern] = ACTIONS(1626), - [anon_sym_module] = ACTIONS(1626), - [anon_sym_use] = ACTIONS(1626), - [anon_sym_LBRACK] = ACTIONS(1628), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_DOLLAR] = ACTIONS(1626), - [anon_sym_error] = ACTIONS(1626), - [anon_sym_DASH] = ACTIONS(1626), - [anon_sym_break] = ACTIONS(1626), - [anon_sym_continue] = ACTIONS(1626), - [anon_sym_for] = ACTIONS(1626), - [anon_sym_loop] = ACTIONS(1626), - [anon_sym_while] = ACTIONS(1626), - [anon_sym_do] = ACTIONS(1626), - [anon_sym_if] = ACTIONS(1626), - [anon_sym_match] = ACTIONS(1626), - [aux_sym_ctrl_match_token1] = ACTIONS(1628), - [anon_sym_DOT_DOT] = ACTIONS(1626), - [anon_sym_try] = ACTIONS(1626), - [anon_sym_return] = ACTIONS(1626), - [anon_sym_source] = ACTIONS(1626), - [anon_sym_source_DASHenv] = ACTIONS(1626), - [anon_sym_register] = ACTIONS(1626), - [anon_sym_hide] = ACTIONS(1626), - [anon_sym_hide_DASHenv] = ACTIONS(1626), - [anon_sym_overlay] = ACTIONS(1626), - [anon_sym_where] = ACTIONS(1628), - [aux_sym_expr_unary_token1] = ACTIONS(1628), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1628), - [anon_sym_DOT_DOT_LT] = ACTIONS(1628), - [aux_sym__val_number_decimal_token1] = ACTIONS(1626), - [aux_sym__val_number_decimal_token2] = ACTIONS(1628), - [aux_sym__val_number_decimal_token3] = ACTIONS(1628), - [aux_sym__val_number_decimal_token4] = ACTIONS(1628), - [aux_sym__val_number_token1] = ACTIONS(1628), - [aux_sym__val_number_token2] = ACTIONS(1628), - [aux_sym__val_number_token3] = ACTIONS(1628), - [anon_sym_0b] = ACTIONS(1626), - [anon_sym_0o] = ACTIONS(1626), - [anon_sym_0x] = ACTIONS(1626), - [sym_val_date] = ACTIONS(1628), - [anon_sym_DQUOTE] = ACTIONS(1628), - [sym__str_single_quotes] = ACTIONS(1628), - [sym__str_back_ticks] = ACTIONS(1628), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1628), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1628), - [aux_sym_env_var_token1] = ACTIONS(1626), - [anon_sym_CARET] = ACTIONS(1628), - [anon_sym_POUND] = ACTIONS(247), - }, - [315] = { - [sym_comment] = STATE(315), - [anon_sym_export] = ACTIONS(1681), - [anon_sym_alias] = ACTIONS(1681), - [anon_sym_let] = ACTIONS(1681), - [anon_sym_let_DASHenv] = ACTIONS(1681), - [anon_sym_mut] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1681), - [aux_sym_cmd_identifier_token1] = ACTIONS(1681), - [aux_sym_cmd_identifier_token2] = ACTIONS(1681), - [aux_sym_cmd_identifier_token3] = ACTIONS(1681), - [aux_sym_cmd_identifier_token4] = ACTIONS(1681), - [aux_sym_cmd_identifier_token5] = ACTIONS(1681), - [aux_sym_cmd_identifier_token6] = ACTIONS(1681), - [aux_sym_cmd_identifier_token7] = ACTIONS(1681), - [aux_sym_cmd_identifier_token8] = ACTIONS(1681), - [aux_sym_cmd_identifier_token9] = ACTIONS(1681), - [aux_sym_cmd_identifier_token10] = ACTIONS(1681), - [aux_sym_cmd_identifier_token11] = ACTIONS(1681), - [aux_sym_cmd_identifier_token12] = ACTIONS(1681), - [aux_sym_cmd_identifier_token13] = ACTIONS(1681), - [aux_sym_cmd_identifier_token14] = ACTIONS(1681), - [aux_sym_cmd_identifier_token15] = ACTIONS(1681), - [aux_sym_cmd_identifier_token16] = ACTIONS(1681), - [aux_sym_cmd_identifier_token17] = ACTIONS(1681), - [aux_sym_cmd_identifier_token18] = ACTIONS(1681), - [aux_sym_cmd_identifier_token19] = ACTIONS(1681), - [aux_sym_cmd_identifier_token20] = ACTIONS(1681), - [aux_sym_cmd_identifier_token21] = ACTIONS(1681), - [aux_sym_cmd_identifier_token22] = ACTIONS(1681), - [aux_sym_cmd_identifier_token23] = ACTIONS(1681), - [aux_sym_cmd_identifier_token24] = ACTIONS(1683), - [aux_sym_cmd_identifier_token25] = ACTIONS(1681), - [aux_sym_cmd_identifier_token26] = ACTIONS(1683), - [aux_sym_cmd_identifier_token27] = ACTIONS(1681), - [aux_sym_cmd_identifier_token28] = ACTIONS(1681), - [aux_sym_cmd_identifier_token29] = ACTIONS(1681), - [aux_sym_cmd_identifier_token30] = ACTIONS(1681), - [aux_sym_cmd_identifier_token31] = ACTIONS(1683), - [aux_sym_cmd_identifier_token32] = ACTIONS(1683), - [aux_sym_cmd_identifier_token33] = ACTIONS(1683), - [aux_sym_cmd_identifier_token34] = ACTIONS(1683), - [aux_sym_cmd_identifier_token35] = ACTIONS(1683), - [aux_sym_cmd_identifier_token36] = ACTIONS(1681), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = ACTIONS(1683), - [anon_sym_null] = ACTIONS(1683), - [aux_sym_cmd_identifier_token38] = ACTIONS(1681), - [aux_sym_cmd_identifier_token39] = ACTIONS(1683), - [aux_sym_cmd_identifier_token40] = ACTIONS(1683), - [sym__newline] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1683), - [anon_sym_def] = ACTIONS(1681), - [anon_sym_export_DASHenv] = ACTIONS(1681), - [anon_sym_extern] = ACTIONS(1681), - [anon_sym_module] = ACTIONS(1681), - [anon_sym_use] = ACTIONS(1681), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1683), - [anon_sym_DOLLAR] = ACTIONS(1681), - [anon_sym_error] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_break] = ACTIONS(1681), - [anon_sym_continue] = ACTIONS(1681), - [anon_sym_for] = ACTIONS(1681), - [anon_sym_loop] = ACTIONS(1681), - [anon_sym_while] = ACTIONS(1681), - [anon_sym_do] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1681), - [anon_sym_match] = ACTIONS(1681), - [aux_sym_ctrl_match_token1] = ACTIONS(1683), - [anon_sym_DOT_DOT] = ACTIONS(1681), - [anon_sym_try] = ACTIONS(1681), - [anon_sym_return] = ACTIONS(1681), - [anon_sym_source] = ACTIONS(1681), - [anon_sym_source_DASHenv] = ACTIONS(1681), - [anon_sym_register] = ACTIONS(1681), - [anon_sym_hide] = ACTIONS(1681), - [anon_sym_hide_DASHenv] = ACTIONS(1681), - [anon_sym_overlay] = ACTIONS(1681), - [anon_sym_where] = ACTIONS(1683), - [aux_sym_expr_unary_token1] = ACTIONS(1683), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1683), - [anon_sym_DOT_DOT_LT] = ACTIONS(1683), - [aux_sym__val_number_decimal_token1] = ACTIONS(1681), - [aux_sym__val_number_decimal_token2] = ACTIONS(1683), - [aux_sym__val_number_decimal_token3] = ACTIONS(1683), - [aux_sym__val_number_decimal_token4] = ACTIONS(1683), - [aux_sym__val_number_token1] = ACTIONS(1683), - [aux_sym__val_number_token2] = ACTIONS(1683), - [aux_sym__val_number_token3] = ACTIONS(1683), - [anon_sym_0b] = ACTIONS(1681), - [anon_sym_0o] = ACTIONS(1681), - [anon_sym_0x] = ACTIONS(1681), - [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), - [aux_sym_env_var_token1] = ACTIONS(1681), - [anon_sym_CARET] = ACTIONS(1683), - [anon_sym_POUND] = ACTIONS(247), - }, - [316] = { - [sym_comment] = STATE(316), - [anon_sym_export] = ACTIONS(1804), - [anon_sym_alias] = ACTIONS(1804), - [anon_sym_let] = ACTIONS(1804), - [anon_sym_let_DASHenv] = ACTIONS(1804), - [anon_sym_mut] = ACTIONS(1804), - [anon_sym_const] = ACTIONS(1804), - [aux_sym_cmd_identifier_token1] = ACTIONS(1804), - [aux_sym_cmd_identifier_token2] = ACTIONS(1804), - [aux_sym_cmd_identifier_token3] = ACTIONS(1804), - [aux_sym_cmd_identifier_token4] = ACTIONS(1804), - [aux_sym_cmd_identifier_token5] = ACTIONS(1804), - [aux_sym_cmd_identifier_token6] = ACTIONS(1804), - [aux_sym_cmd_identifier_token7] = ACTIONS(1804), - [aux_sym_cmd_identifier_token8] = ACTIONS(1804), - [aux_sym_cmd_identifier_token9] = ACTIONS(1804), - [aux_sym_cmd_identifier_token10] = ACTIONS(1804), - [aux_sym_cmd_identifier_token11] = ACTIONS(1804), - [aux_sym_cmd_identifier_token12] = ACTIONS(1804), - [aux_sym_cmd_identifier_token13] = ACTIONS(1804), - [aux_sym_cmd_identifier_token14] = ACTIONS(1804), - [aux_sym_cmd_identifier_token15] = ACTIONS(1804), - [aux_sym_cmd_identifier_token16] = ACTIONS(1804), - [aux_sym_cmd_identifier_token17] = ACTIONS(1804), - [aux_sym_cmd_identifier_token18] = ACTIONS(1804), - [aux_sym_cmd_identifier_token19] = ACTIONS(1804), - [aux_sym_cmd_identifier_token20] = ACTIONS(1804), - [aux_sym_cmd_identifier_token21] = ACTIONS(1804), - [aux_sym_cmd_identifier_token22] = ACTIONS(1804), - [aux_sym_cmd_identifier_token23] = ACTIONS(1804), - [aux_sym_cmd_identifier_token24] = ACTIONS(1806), - [aux_sym_cmd_identifier_token25] = ACTIONS(1804), - [aux_sym_cmd_identifier_token26] = ACTIONS(1806), - [aux_sym_cmd_identifier_token27] = ACTIONS(1804), - [aux_sym_cmd_identifier_token28] = ACTIONS(1804), - [aux_sym_cmd_identifier_token29] = ACTIONS(1804), - [aux_sym_cmd_identifier_token30] = ACTIONS(1804), - [aux_sym_cmd_identifier_token31] = ACTIONS(1806), - [aux_sym_cmd_identifier_token32] = ACTIONS(1806), - [aux_sym_cmd_identifier_token33] = ACTIONS(1806), - [aux_sym_cmd_identifier_token34] = ACTIONS(1806), - [aux_sym_cmd_identifier_token35] = ACTIONS(1806), - [aux_sym_cmd_identifier_token36] = ACTIONS(1804), - [anon_sym_true] = ACTIONS(1806), - [anon_sym_false] = ACTIONS(1806), - [anon_sym_null] = ACTIONS(1806), - [aux_sym_cmd_identifier_token38] = ACTIONS(1804), - [aux_sym_cmd_identifier_token39] = ACTIONS(1806), - [aux_sym_cmd_identifier_token40] = ACTIONS(1806), - [sym__newline] = ACTIONS(1806), - [anon_sym_SEMI] = ACTIONS(1806), - [anon_sym_def] = ACTIONS(1804), - [anon_sym_export_DASHenv] = ACTIONS(1804), - [anon_sym_extern] = ACTIONS(1804), - [anon_sym_module] = ACTIONS(1804), - [anon_sym_use] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1806), - [anon_sym_LPAREN] = ACTIONS(1806), - [anon_sym_DOLLAR] = ACTIONS(1804), - [anon_sym_error] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_break] = ACTIONS(1804), - [anon_sym_continue] = ACTIONS(1804), - [anon_sym_for] = ACTIONS(1804), - [anon_sym_loop] = ACTIONS(1804), - [anon_sym_while] = ACTIONS(1804), - [anon_sym_do] = ACTIONS(1804), - [anon_sym_if] = ACTIONS(1804), - [anon_sym_match] = ACTIONS(1804), - [aux_sym_ctrl_match_token1] = ACTIONS(1806), - [anon_sym_DOT_DOT] = ACTIONS(1804), - [anon_sym_try] = ACTIONS(1804), - [anon_sym_return] = ACTIONS(1804), - [anon_sym_source] = ACTIONS(1804), - [anon_sym_source_DASHenv] = ACTIONS(1804), - [anon_sym_register] = ACTIONS(1804), - [anon_sym_hide] = ACTIONS(1804), - [anon_sym_hide_DASHenv] = ACTIONS(1804), - [anon_sym_overlay] = ACTIONS(1804), - [anon_sym_where] = ACTIONS(1806), - [aux_sym_expr_unary_token1] = ACTIONS(1806), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1806), - [anon_sym_DOT_DOT_LT] = ACTIONS(1806), - [aux_sym__val_number_decimal_token1] = ACTIONS(1804), - [aux_sym__val_number_decimal_token2] = ACTIONS(1806), - [aux_sym__val_number_decimal_token3] = ACTIONS(1806), - [aux_sym__val_number_decimal_token4] = ACTIONS(1806), - [aux_sym__val_number_token1] = ACTIONS(1806), - [aux_sym__val_number_token2] = ACTIONS(1806), - [aux_sym__val_number_token3] = ACTIONS(1806), - [anon_sym_0b] = ACTIONS(1804), - [anon_sym_0o] = ACTIONS(1804), - [anon_sym_0x] = ACTIONS(1804), - [sym_val_date] = ACTIONS(1806), - [anon_sym_DQUOTE] = ACTIONS(1806), - [sym__str_single_quotes] = ACTIONS(1806), - [sym__str_back_ticks] = ACTIONS(1806), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1806), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1806), - [aux_sym_env_var_token1] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1806), - [anon_sym_POUND] = ACTIONS(247), - }, - [317] = { - [sym_cell_path] = STATE(548), - [sym_path] = STATE(472), - [sym_comment] = STATE(317), - [aux_sym_cell_path_repeat1] = STATE(386), - [anon_sym_export] = ACTIONS(1808), - [anon_sym_alias] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1808), - [anon_sym_let_DASHenv] = ACTIONS(1808), - [anon_sym_mut] = ACTIONS(1808), - [anon_sym_const] = ACTIONS(1808), - [aux_sym_cmd_identifier_token1] = ACTIONS(1808), - [aux_sym_cmd_identifier_token2] = ACTIONS(1808), - [aux_sym_cmd_identifier_token3] = ACTIONS(1808), - [aux_sym_cmd_identifier_token4] = ACTIONS(1808), - [aux_sym_cmd_identifier_token5] = ACTIONS(1808), - [aux_sym_cmd_identifier_token6] = ACTIONS(1808), - [aux_sym_cmd_identifier_token7] = ACTIONS(1808), - [aux_sym_cmd_identifier_token8] = ACTIONS(1808), - [aux_sym_cmd_identifier_token9] = ACTIONS(1808), - [aux_sym_cmd_identifier_token10] = ACTIONS(1808), - [aux_sym_cmd_identifier_token11] = ACTIONS(1808), - [aux_sym_cmd_identifier_token12] = ACTIONS(1808), - [aux_sym_cmd_identifier_token13] = ACTIONS(1808), - [aux_sym_cmd_identifier_token14] = ACTIONS(1808), - [aux_sym_cmd_identifier_token15] = ACTIONS(1808), - [aux_sym_cmd_identifier_token16] = ACTIONS(1808), - [aux_sym_cmd_identifier_token17] = ACTIONS(1808), - [aux_sym_cmd_identifier_token18] = ACTIONS(1808), - [aux_sym_cmd_identifier_token19] = ACTIONS(1808), - [aux_sym_cmd_identifier_token20] = ACTIONS(1808), - [aux_sym_cmd_identifier_token21] = ACTIONS(1808), - [aux_sym_cmd_identifier_token22] = ACTIONS(1808), - [aux_sym_cmd_identifier_token23] = ACTIONS(1808), - [aux_sym_cmd_identifier_token24] = ACTIONS(1808), - [aux_sym_cmd_identifier_token25] = ACTIONS(1808), - [aux_sym_cmd_identifier_token26] = ACTIONS(1808), - [aux_sym_cmd_identifier_token27] = ACTIONS(1808), - [aux_sym_cmd_identifier_token28] = ACTIONS(1808), - [aux_sym_cmd_identifier_token29] = ACTIONS(1808), - [aux_sym_cmd_identifier_token30] = ACTIONS(1808), - [aux_sym_cmd_identifier_token31] = ACTIONS(1808), - [aux_sym_cmd_identifier_token32] = ACTIONS(1808), - [aux_sym_cmd_identifier_token33] = ACTIONS(1808), - [aux_sym_cmd_identifier_token34] = ACTIONS(1808), - [aux_sym_cmd_identifier_token35] = ACTIONS(1808), - [aux_sym_cmd_identifier_token36] = ACTIONS(1808), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_null] = ACTIONS(1808), - [aux_sym_cmd_identifier_token38] = ACTIONS(1808), - [aux_sym_cmd_identifier_token39] = ACTIONS(1808), - [aux_sym_cmd_identifier_token40] = ACTIONS(1808), - [anon_sym_def] = ACTIONS(1808), - [anon_sym_export_DASHenv] = ACTIONS(1808), - [anon_sym_extern] = ACTIONS(1808), - [anon_sym_module] = ACTIONS(1808), - [anon_sym_use] = ACTIONS(1808), - [anon_sym_LPAREN] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1808), - [anon_sym_error] = ACTIONS(1808), - [anon_sym_list] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_for] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_loop] = ACTIONS(1808), - [anon_sym_make] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_do] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_RBRACE] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_catch] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_source] = ACTIONS(1808), - [anon_sym_source_DASHenv] = ACTIONS(1808), - [anon_sym_register] = ACTIONS(1808), - [anon_sym_hide] = ACTIONS(1808), - [anon_sym_hide_DASHenv] = ACTIONS(1808), - [anon_sym_overlay] = ACTIONS(1808), - [anon_sym_new] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1743), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1808), - [aux_sym__val_number_decimal_token1] = ACTIONS(1808), - [aux_sym__val_number_decimal_token2] = ACTIONS(1808), - [aux_sym__val_number_decimal_token3] = ACTIONS(1808), - [aux_sym__val_number_decimal_token4] = ACTIONS(1808), - [aux_sym__val_number_token1] = ACTIONS(1808), - [aux_sym__val_number_token2] = ACTIONS(1808), - [aux_sym__val_number_token3] = ACTIONS(1808), - [anon_sym_DQUOTE] = ACTIONS(1808), - [sym__str_single_quotes] = ACTIONS(1808), - [sym__str_back_ticks] = ACTIONS(1808), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1808), - [sym__entry_separator] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_POUND] = ACTIONS(3), - }, - [318] = { - [sym_comment] = STATE(318), - [anon_sym_export] = ACTIONS(970), - [anon_sym_alias] = ACTIONS(970), - [anon_sym_let] = ACTIONS(970), - [anon_sym_let_DASHenv] = ACTIONS(970), - [anon_sym_mut] = ACTIONS(970), - [anon_sym_const] = ACTIONS(970), - [aux_sym_cmd_identifier_token1] = ACTIONS(970), - [aux_sym_cmd_identifier_token2] = ACTIONS(970), - [aux_sym_cmd_identifier_token3] = ACTIONS(970), - [aux_sym_cmd_identifier_token4] = ACTIONS(970), - [aux_sym_cmd_identifier_token5] = ACTIONS(970), - [aux_sym_cmd_identifier_token6] = ACTIONS(970), - [aux_sym_cmd_identifier_token7] = ACTIONS(970), - [aux_sym_cmd_identifier_token8] = ACTIONS(970), - [aux_sym_cmd_identifier_token9] = ACTIONS(970), - [aux_sym_cmd_identifier_token10] = ACTIONS(970), - [aux_sym_cmd_identifier_token11] = ACTIONS(970), - [aux_sym_cmd_identifier_token12] = ACTIONS(970), - [aux_sym_cmd_identifier_token13] = ACTIONS(970), - [aux_sym_cmd_identifier_token14] = ACTIONS(970), - [aux_sym_cmd_identifier_token15] = ACTIONS(970), - [aux_sym_cmd_identifier_token16] = ACTIONS(970), - [aux_sym_cmd_identifier_token17] = ACTIONS(970), - [aux_sym_cmd_identifier_token18] = ACTIONS(970), - [aux_sym_cmd_identifier_token19] = ACTIONS(970), - [aux_sym_cmd_identifier_token20] = ACTIONS(970), - [aux_sym_cmd_identifier_token21] = ACTIONS(970), - [aux_sym_cmd_identifier_token22] = ACTIONS(970), - [aux_sym_cmd_identifier_token23] = ACTIONS(970), - [aux_sym_cmd_identifier_token24] = ACTIONS(970), - [aux_sym_cmd_identifier_token25] = ACTIONS(970), - [aux_sym_cmd_identifier_token26] = ACTIONS(970), - [aux_sym_cmd_identifier_token27] = ACTIONS(970), - [aux_sym_cmd_identifier_token28] = ACTIONS(970), - [aux_sym_cmd_identifier_token29] = ACTIONS(970), - [aux_sym_cmd_identifier_token30] = ACTIONS(970), - [aux_sym_cmd_identifier_token31] = ACTIONS(970), - [aux_sym_cmd_identifier_token32] = ACTIONS(970), - [aux_sym_cmd_identifier_token33] = ACTIONS(970), - [aux_sym_cmd_identifier_token34] = ACTIONS(970), - [aux_sym_cmd_identifier_token35] = ACTIONS(970), - [aux_sym_cmd_identifier_token36] = ACTIONS(970), - [anon_sym_true] = ACTIONS(972), - [anon_sym_false] = ACTIONS(972), - [anon_sym_null] = ACTIONS(972), - [aux_sym_cmd_identifier_token38] = ACTIONS(970), - [aux_sym_cmd_identifier_token39] = ACTIONS(972), - [aux_sym_cmd_identifier_token40] = ACTIONS(972), - [anon_sym_def] = ACTIONS(970), - [anon_sym_export_DASHenv] = ACTIONS(970), - [anon_sym_extern] = ACTIONS(970), - [anon_sym_module] = ACTIONS(970), - [anon_sym_use] = ACTIONS(970), - [anon_sym_LPAREN] = ACTIONS(972), - [anon_sym_DOLLAR] = ACTIONS(972), - [anon_sym_error] = ACTIONS(970), - [anon_sym_list] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_break] = ACTIONS(970), - [anon_sym_continue] = ACTIONS(970), - [anon_sym_for] = ACTIONS(970), - [anon_sym_in] = ACTIONS(970), - [anon_sym_loop] = ACTIONS(970), - [anon_sym_make] = ACTIONS(970), - [anon_sym_while] = ACTIONS(970), - [anon_sym_do] = ACTIONS(970), - [anon_sym_if] = ACTIONS(970), - [anon_sym_else] = ACTIONS(970), - [anon_sym_match] = ACTIONS(970), - [anon_sym_RBRACE] = ACTIONS(972), - [anon_sym_try] = ACTIONS(970), - [anon_sym_catch] = ACTIONS(970), - [anon_sym_return] = ACTIONS(970), - [anon_sym_source] = ACTIONS(970), - [anon_sym_source_DASHenv] = ACTIONS(970), - [anon_sym_register] = ACTIONS(970), - [anon_sym_hide] = ACTIONS(970), - [anon_sym_hide_DASHenv] = ACTIONS(970), - [anon_sym_overlay] = ACTIONS(970), - [anon_sym_new] = ACTIONS(970), - [anon_sym_as] = ACTIONS(970), - [anon_sym_QMARK2] = ACTIONS(1812), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(972), - [anon_sym_DOT_DOT2] = ACTIONS(970), - [anon_sym_DOT] = ACTIONS(970), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(972), - [anon_sym_DOT_DOT_LT2] = ACTIONS(972), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(972), - [aux_sym__val_number_decimal_token1] = ACTIONS(970), - [aux_sym__val_number_decimal_token2] = ACTIONS(972), - [aux_sym__val_number_decimal_token3] = ACTIONS(972), - [aux_sym__val_number_decimal_token4] = ACTIONS(972), - [aux_sym__val_number_token1] = ACTIONS(972), - [aux_sym__val_number_token2] = ACTIONS(972), - [aux_sym__val_number_token3] = ACTIONS(972), - [anon_sym_DQUOTE] = ACTIONS(972), - [sym__str_single_quotes] = ACTIONS(972), - [sym__str_back_ticks] = ACTIONS(972), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(970), - [anon_sym_POUND] = ACTIONS(247), - }, - [319] = { - [sym_comment] = STATE(319), - [anon_sym_export] = ACTIONS(1814), - [anon_sym_alias] = ACTIONS(1814), - [anon_sym_let] = ACTIONS(1814), - [anon_sym_let_DASHenv] = ACTIONS(1814), - [anon_sym_mut] = ACTIONS(1814), - [anon_sym_const] = ACTIONS(1814), - [aux_sym_cmd_identifier_token1] = ACTIONS(1814), - [aux_sym_cmd_identifier_token2] = ACTIONS(1814), - [aux_sym_cmd_identifier_token3] = ACTIONS(1814), - [aux_sym_cmd_identifier_token4] = ACTIONS(1814), - [aux_sym_cmd_identifier_token5] = ACTIONS(1814), - [aux_sym_cmd_identifier_token6] = ACTIONS(1814), - [aux_sym_cmd_identifier_token7] = ACTIONS(1814), - [aux_sym_cmd_identifier_token8] = ACTIONS(1814), - [aux_sym_cmd_identifier_token9] = ACTIONS(1814), - [aux_sym_cmd_identifier_token10] = ACTIONS(1814), - [aux_sym_cmd_identifier_token11] = ACTIONS(1814), - [aux_sym_cmd_identifier_token12] = ACTIONS(1814), - [aux_sym_cmd_identifier_token13] = ACTIONS(1814), - [aux_sym_cmd_identifier_token14] = ACTIONS(1814), - [aux_sym_cmd_identifier_token15] = ACTIONS(1814), - [aux_sym_cmd_identifier_token16] = ACTIONS(1814), - [aux_sym_cmd_identifier_token17] = ACTIONS(1814), - [aux_sym_cmd_identifier_token18] = ACTIONS(1814), - [aux_sym_cmd_identifier_token19] = ACTIONS(1814), - [aux_sym_cmd_identifier_token20] = ACTIONS(1814), - [aux_sym_cmd_identifier_token21] = ACTIONS(1814), - [aux_sym_cmd_identifier_token22] = ACTIONS(1814), - [aux_sym_cmd_identifier_token23] = ACTIONS(1814), - [aux_sym_cmd_identifier_token24] = ACTIONS(1816), - [aux_sym_cmd_identifier_token25] = ACTIONS(1814), - [aux_sym_cmd_identifier_token26] = ACTIONS(1816), - [aux_sym_cmd_identifier_token27] = ACTIONS(1814), - [aux_sym_cmd_identifier_token28] = ACTIONS(1814), - [aux_sym_cmd_identifier_token29] = ACTIONS(1814), - [aux_sym_cmd_identifier_token30] = ACTIONS(1814), - [aux_sym_cmd_identifier_token31] = ACTIONS(1816), - [aux_sym_cmd_identifier_token32] = ACTIONS(1816), - [aux_sym_cmd_identifier_token33] = ACTIONS(1816), - [aux_sym_cmd_identifier_token34] = ACTIONS(1816), - [aux_sym_cmd_identifier_token35] = ACTIONS(1816), - [aux_sym_cmd_identifier_token36] = ACTIONS(1814), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_null] = ACTIONS(1816), - [aux_sym_cmd_identifier_token38] = ACTIONS(1814), - [aux_sym_cmd_identifier_token39] = ACTIONS(1816), - [aux_sym_cmd_identifier_token40] = ACTIONS(1816), - [sym__newline] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1816), - [anon_sym_def] = ACTIONS(1814), - [anon_sym_export_DASHenv] = ACTIONS(1814), - [anon_sym_extern] = ACTIONS(1814), - [anon_sym_module] = ACTIONS(1814), - [anon_sym_use] = ACTIONS(1814), - [anon_sym_LBRACK] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1816), - [anon_sym_DOLLAR] = ACTIONS(1814), - [anon_sym_error] = ACTIONS(1814), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_break] = ACTIONS(1814), - [anon_sym_continue] = ACTIONS(1814), - [anon_sym_for] = ACTIONS(1814), - [anon_sym_loop] = ACTIONS(1814), - [anon_sym_while] = ACTIONS(1814), - [anon_sym_do] = ACTIONS(1814), - [anon_sym_if] = ACTIONS(1814), - [anon_sym_match] = ACTIONS(1814), - [aux_sym_ctrl_match_token1] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1814), - [anon_sym_try] = ACTIONS(1814), - [anon_sym_return] = ACTIONS(1814), - [anon_sym_source] = ACTIONS(1814), - [anon_sym_source_DASHenv] = ACTIONS(1814), - [anon_sym_register] = ACTIONS(1814), - [anon_sym_hide] = ACTIONS(1814), - [anon_sym_hide_DASHenv] = ACTIONS(1814), - [anon_sym_overlay] = ACTIONS(1814), - [anon_sym_where] = ACTIONS(1816), - [aux_sym_expr_unary_token1] = ACTIONS(1816), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1816), - [anon_sym_DOT_DOT_LT] = ACTIONS(1816), - [aux_sym__val_number_decimal_token1] = ACTIONS(1814), - [aux_sym__val_number_decimal_token2] = ACTIONS(1816), - [aux_sym__val_number_decimal_token3] = ACTIONS(1816), - [aux_sym__val_number_decimal_token4] = ACTIONS(1816), - [aux_sym__val_number_token1] = ACTIONS(1816), - [aux_sym__val_number_token2] = ACTIONS(1816), - [aux_sym__val_number_token3] = ACTIONS(1816), - [anon_sym_0b] = ACTIONS(1814), - [anon_sym_0o] = ACTIONS(1814), - [anon_sym_0x] = ACTIONS(1814), - [sym_val_date] = ACTIONS(1816), - [anon_sym_DQUOTE] = ACTIONS(1816), - [sym__str_single_quotes] = ACTIONS(1816), - [sym__str_back_ticks] = ACTIONS(1816), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1816), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1816), - [aux_sym_env_var_token1] = ACTIONS(1814), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym_POUND] = ACTIONS(247), - }, - [320] = { - [sym_comment] = STATE(320), - [anon_sym_export] = ACTIONS(980), - [anon_sym_alias] = ACTIONS(980), - [anon_sym_let] = ACTIONS(980), - [anon_sym_let_DASHenv] = ACTIONS(980), - [anon_sym_mut] = ACTIONS(980), - [anon_sym_const] = ACTIONS(980), - [aux_sym_cmd_identifier_token1] = ACTIONS(980), - [aux_sym_cmd_identifier_token2] = ACTIONS(980), - [aux_sym_cmd_identifier_token3] = ACTIONS(980), - [aux_sym_cmd_identifier_token4] = ACTIONS(980), - [aux_sym_cmd_identifier_token5] = ACTIONS(980), - [aux_sym_cmd_identifier_token6] = ACTIONS(980), - [aux_sym_cmd_identifier_token7] = ACTIONS(980), - [aux_sym_cmd_identifier_token8] = ACTIONS(980), - [aux_sym_cmd_identifier_token9] = ACTIONS(980), - [aux_sym_cmd_identifier_token10] = ACTIONS(980), - [aux_sym_cmd_identifier_token11] = ACTIONS(980), - [aux_sym_cmd_identifier_token12] = ACTIONS(980), - [aux_sym_cmd_identifier_token13] = ACTIONS(980), - [aux_sym_cmd_identifier_token14] = ACTIONS(980), - [aux_sym_cmd_identifier_token15] = ACTIONS(980), - [aux_sym_cmd_identifier_token16] = ACTIONS(980), - [aux_sym_cmd_identifier_token17] = ACTIONS(980), - [aux_sym_cmd_identifier_token18] = ACTIONS(980), - [aux_sym_cmd_identifier_token19] = ACTIONS(980), - [aux_sym_cmd_identifier_token20] = ACTIONS(980), - [aux_sym_cmd_identifier_token21] = ACTIONS(980), - [aux_sym_cmd_identifier_token22] = ACTIONS(980), - [aux_sym_cmd_identifier_token23] = ACTIONS(980), - [aux_sym_cmd_identifier_token24] = ACTIONS(980), - [aux_sym_cmd_identifier_token25] = ACTIONS(980), - [aux_sym_cmd_identifier_token26] = ACTIONS(980), - [aux_sym_cmd_identifier_token27] = ACTIONS(980), - [aux_sym_cmd_identifier_token28] = ACTIONS(980), - [aux_sym_cmd_identifier_token29] = ACTIONS(980), - [aux_sym_cmd_identifier_token30] = ACTIONS(980), - [aux_sym_cmd_identifier_token31] = ACTIONS(980), - [aux_sym_cmd_identifier_token32] = ACTIONS(980), - [aux_sym_cmd_identifier_token33] = ACTIONS(980), - [aux_sym_cmd_identifier_token34] = ACTIONS(980), - [aux_sym_cmd_identifier_token35] = ACTIONS(980), - [aux_sym_cmd_identifier_token36] = ACTIONS(980), - [anon_sym_true] = ACTIONS(982), - [anon_sym_false] = ACTIONS(982), - [anon_sym_null] = ACTIONS(982), - [aux_sym_cmd_identifier_token38] = ACTIONS(980), - [aux_sym_cmd_identifier_token39] = ACTIONS(982), - [aux_sym_cmd_identifier_token40] = ACTIONS(982), - [anon_sym_def] = ACTIONS(980), - [anon_sym_export_DASHenv] = ACTIONS(980), - [anon_sym_extern] = ACTIONS(980), - [anon_sym_module] = ACTIONS(980), - [anon_sym_use] = ACTIONS(980), - [anon_sym_LPAREN] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(982), - [anon_sym_error] = ACTIONS(980), - [anon_sym_list] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_break] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_for] = ACTIONS(980), - [anon_sym_in] = ACTIONS(980), - [anon_sym_loop] = ACTIONS(980), - [anon_sym_make] = ACTIONS(980), - [anon_sym_while] = ACTIONS(980), - [anon_sym_do] = ACTIONS(980), - [anon_sym_if] = ACTIONS(980), - [anon_sym_else] = ACTIONS(980), - [anon_sym_match] = ACTIONS(980), - [anon_sym_RBRACE] = ACTIONS(982), - [anon_sym_try] = ACTIONS(980), - [anon_sym_catch] = ACTIONS(980), - [anon_sym_return] = ACTIONS(980), - [anon_sym_source] = ACTIONS(980), - [anon_sym_source_DASHenv] = ACTIONS(980), - [anon_sym_register] = ACTIONS(980), - [anon_sym_hide] = ACTIONS(980), - [anon_sym_hide_DASHenv] = ACTIONS(980), - [anon_sym_overlay] = ACTIONS(980), - [anon_sym_new] = ACTIONS(980), - [anon_sym_as] = ACTIONS(980), - [anon_sym_QMARK2] = ACTIONS(1818), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(982), - [anon_sym_DOT_DOT2] = ACTIONS(980), - [anon_sym_DOT] = ACTIONS(980), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(982), - [anon_sym_DOT_DOT_LT2] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(982), - [aux_sym__val_number_decimal_token1] = ACTIONS(980), - [aux_sym__val_number_decimal_token2] = ACTIONS(982), - [aux_sym__val_number_decimal_token3] = ACTIONS(982), - [aux_sym__val_number_decimal_token4] = ACTIONS(982), - [aux_sym__val_number_token1] = ACTIONS(982), - [aux_sym__val_number_token2] = ACTIONS(982), - [aux_sym__val_number_token3] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(982), - [sym__str_single_quotes] = ACTIONS(982), - [sym__str_back_ticks] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), + [anon_sym_PLUS] = ACTIONS(1755), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), [anon_sym_POUND] = ACTIONS(247), }, - [321] = { - [sym_cell_path] = STATE(549), - [sym_path] = STATE(472), - [sym_comment] = STATE(321), - [aux_sym_cell_path_repeat1] = STATE(386), - [anon_sym_export] = ACTIONS(1820), - [anon_sym_alias] = ACTIONS(1820), - [anon_sym_let] = ACTIONS(1820), - [anon_sym_let_DASHenv] = ACTIONS(1820), - [anon_sym_mut] = ACTIONS(1820), - [anon_sym_const] = ACTIONS(1820), - [aux_sym_cmd_identifier_token1] = ACTIONS(1820), - [aux_sym_cmd_identifier_token2] = ACTIONS(1820), - [aux_sym_cmd_identifier_token3] = ACTIONS(1820), - [aux_sym_cmd_identifier_token4] = ACTIONS(1820), - [aux_sym_cmd_identifier_token5] = ACTIONS(1820), - [aux_sym_cmd_identifier_token6] = ACTIONS(1820), - [aux_sym_cmd_identifier_token7] = ACTIONS(1820), - [aux_sym_cmd_identifier_token8] = ACTIONS(1820), - [aux_sym_cmd_identifier_token9] = ACTIONS(1820), - [aux_sym_cmd_identifier_token10] = ACTIONS(1820), - [aux_sym_cmd_identifier_token11] = ACTIONS(1820), - [aux_sym_cmd_identifier_token12] = ACTIONS(1820), - [aux_sym_cmd_identifier_token13] = ACTIONS(1820), - [aux_sym_cmd_identifier_token14] = ACTIONS(1820), - [aux_sym_cmd_identifier_token15] = ACTIONS(1820), - [aux_sym_cmd_identifier_token16] = ACTIONS(1820), - [aux_sym_cmd_identifier_token17] = ACTIONS(1820), - [aux_sym_cmd_identifier_token18] = ACTIONS(1820), - [aux_sym_cmd_identifier_token19] = ACTIONS(1820), - [aux_sym_cmd_identifier_token20] = ACTIONS(1820), - [aux_sym_cmd_identifier_token21] = ACTIONS(1820), - [aux_sym_cmd_identifier_token22] = ACTIONS(1820), - [aux_sym_cmd_identifier_token23] = ACTIONS(1820), - [aux_sym_cmd_identifier_token24] = ACTIONS(1820), - [aux_sym_cmd_identifier_token25] = ACTIONS(1820), - [aux_sym_cmd_identifier_token26] = ACTIONS(1820), - [aux_sym_cmd_identifier_token27] = ACTIONS(1820), - [aux_sym_cmd_identifier_token28] = ACTIONS(1820), - [aux_sym_cmd_identifier_token29] = ACTIONS(1820), - [aux_sym_cmd_identifier_token30] = ACTIONS(1820), - [aux_sym_cmd_identifier_token31] = ACTIONS(1820), - [aux_sym_cmd_identifier_token32] = ACTIONS(1820), - [aux_sym_cmd_identifier_token33] = ACTIONS(1820), - [aux_sym_cmd_identifier_token34] = ACTIONS(1820), - [aux_sym_cmd_identifier_token35] = ACTIONS(1820), - [aux_sym_cmd_identifier_token36] = ACTIONS(1820), - [anon_sym_true] = ACTIONS(1820), - [anon_sym_false] = ACTIONS(1820), - [anon_sym_null] = ACTIONS(1820), - [aux_sym_cmd_identifier_token38] = ACTIONS(1820), - [aux_sym_cmd_identifier_token39] = ACTIONS(1820), - [aux_sym_cmd_identifier_token40] = ACTIONS(1820), - [anon_sym_def] = ACTIONS(1820), - [anon_sym_export_DASHenv] = ACTIONS(1820), - [anon_sym_extern] = ACTIONS(1820), - [anon_sym_module] = ACTIONS(1820), - [anon_sym_use] = ACTIONS(1820), - [anon_sym_LPAREN] = ACTIONS(1820), - [anon_sym_DOLLAR] = ACTIONS(1820), - [anon_sym_error] = ACTIONS(1820), - [anon_sym_list] = ACTIONS(1820), - [anon_sym_DASH] = ACTIONS(1820), - [anon_sym_break] = ACTIONS(1820), - [anon_sym_continue] = ACTIONS(1820), - [anon_sym_for] = ACTIONS(1820), - [anon_sym_in] = ACTIONS(1820), - [anon_sym_loop] = ACTIONS(1820), - [anon_sym_make] = ACTIONS(1820), - [anon_sym_while] = ACTIONS(1820), - [anon_sym_do] = ACTIONS(1820), - [anon_sym_if] = ACTIONS(1820), - [anon_sym_else] = ACTIONS(1820), - [anon_sym_match] = ACTIONS(1820), - [anon_sym_RBRACE] = ACTIONS(1820), - [anon_sym_try] = ACTIONS(1820), - [anon_sym_catch] = ACTIONS(1820), - [anon_sym_return] = ACTIONS(1820), - [anon_sym_source] = ACTIONS(1820), - [anon_sym_source_DASHenv] = ACTIONS(1820), - [anon_sym_register] = ACTIONS(1820), - [anon_sym_hide] = ACTIONS(1820), - [anon_sym_hide_DASHenv] = ACTIONS(1820), - [anon_sym_overlay] = ACTIONS(1820), - [anon_sym_new] = ACTIONS(1820), - [anon_sym_as] = ACTIONS(1820), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1820), - [anon_sym_DOT] = ACTIONS(1743), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1820), - [aux_sym__val_number_decimal_token1] = ACTIONS(1820), - [aux_sym__val_number_decimal_token2] = ACTIONS(1820), - [aux_sym__val_number_decimal_token3] = ACTIONS(1820), - [aux_sym__val_number_decimal_token4] = ACTIONS(1820), - [aux_sym__val_number_token1] = ACTIONS(1820), - [aux_sym__val_number_token2] = ACTIONS(1820), - [aux_sym__val_number_token3] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1820), - [sym__str_single_quotes] = ACTIONS(1820), - [sym__str_back_ticks] = ACTIONS(1820), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1820), - [sym__entry_separator] = ACTIONS(1822), - [anon_sym_PLUS] = ACTIONS(1820), - [anon_sym_POUND] = ACTIONS(3), - }, - [322] = { - [sym_cell_path] = STATE(545), - [sym_path] = STATE(472), - [sym_comment] = STATE(322), - [aux_sym_cell_path_repeat1] = STATE(386), - [anon_sym_export] = ACTIONS(1824), - [anon_sym_alias] = ACTIONS(1824), - [anon_sym_let] = ACTIONS(1824), - [anon_sym_let_DASHenv] = ACTIONS(1824), - [anon_sym_mut] = ACTIONS(1824), - [anon_sym_const] = ACTIONS(1824), - [aux_sym_cmd_identifier_token1] = ACTIONS(1824), - [aux_sym_cmd_identifier_token2] = ACTIONS(1824), - [aux_sym_cmd_identifier_token3] = ACTIONS(1824), - [aux_sym_cmd_identifier_token4] = ACTIONS(1824), - [aux_sym_cmd_identifier_token5] = ACTIONS(1824), - [aux_sym_cmd_identifier_token6] = ACTIONS(1824), - [aux_sym_cmd_identifier_token7] = ACTIONS(1824), - [aux_sym_cmd_identifier_token8] = ACTIONS(1824), - [aux_sym_cmd_identifier_token9] = ACTIONS(1824), - [aux_sym_cmd_identifier_token10] = ACTIONS(1824), - [aux_sym_cmd_identifier_token11] = ACTIONS(1824), - [aux_sym_cmd_identifier_token12] = ACTIONS(1824), - [aux_sym_cmd_identifier_token13] = ACTIONS(1824), - [aux_sym_cmd_identifier_token14] = ACTIONS(1824), - [aux_sym_cmd_identifier_token15] = ACTIONS(1824), - [aux_sym_cmd_identifier_token16] = ACTIONS(1824), - [aux_sym_cmd_identifier_token17] = ACTIONS(1824), - [aux_sym_cmd_identifier_token18] = ACTIONS(1824), - [aux_sym_cmd_identifier_token19] = ACTIONS(1824), - [aux_sym_cmd_identifier_token20] = ACTIONS(1824), - [aux_sym_cmd_identifier_token21] = ACTIONS(1824), - [aux_sym_cmd_identifier_token22] = ACTIONS(1824), - [aux_sym_cmd_identifier_token23] = ACTIONS(1824), - [aux_sym_cmd_identifier_token24] = ACTIONS(1824), - [aux_sym_cmd_identifier_token25] = ACTIONS(1824), - [aux_sym_cmd_identifier_token26] = ACTIONS(1824), - [aux_sym_cmd_identifier_token27] = ACTIONS(1824), - [aux_sym_cmd_identifier_token28] = ACTIONS(1824), - [aux_sym_cmd_identifier_token29] = ACTIONS(1824), - [aux_sym_cmd_identifier_token30] = ACTIONS(1824), - [aux_sym_cmd_identifier_token31] = ACTIONS(1824), - [aux_sym_cmd_identifier_token32] = ACTIONS(1824), - [aux_sym_cmd_identifier_token33] = ACTIONS(1824), - [aux_sym_cmd_identifier_token34] = ACTIONS(1824), - [aux_sym_cmd_identifier_token35] = ACTIONS(1824), - [aux_sym_cmd_identifier_token36] = ACTIONS(1824), - [anon_sym_true] = ACTIONS(1824), - [anon_sym_false] = ACTIONS(1824), - [anon_sym_null] = ACTIONS(1824), - [aux_sym_cmd_identifier_token38] = ACTIONS(1824), - [aux_sym_cmd_identifier_token39] = ACTIONS(1824), - [aux_sym_cmd_identifier_token40] = ACTIONS(1824), - [anon_sym_def] = ACTIONS(1824), - [anon_sym_export_DASHenv] = ACTIONS(1824), - [anon_sym_extern] = ACTIONS(1824), - [anon_sym_module] = ACTIONS(1824), - [anon_sym_use] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_DOLLAR] = ACTIONS(1824), - [anon_sym_error] = ACTIONS(1824), - [anon_sym_list] = ACTIONS(1824), - [anon_sym_DASH] = ACTIONS(1824), - [anon_sym_break] = ACTIONS(1824), - [anon_sym_continue] = ACTIONS(1824), - [anon_sym_for] = ACTIONS(1824), - [anon_sym_in] = ACTIONS(1824), - [anon_sym_loop] = ACTIONS(1824), - [anon_sym_make] = ACTIONS(1824), - [anon_sym_while] = ACTIONS(1824), - [anon_sym_do] = ACTIONS(1824), - [anon_sym_if] = ACTIONS(1824), - [anon_sym_else] = ACTIONS(1824), - [anon_sym_match] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_try] = ACTIONS(1824), - [anon_sym_catch] = ACTIONS(1824), - [anon_sym_return] = ACTIONS(1824), - [anon_sym_source] = ACTIONS(1824), - [anon_sym_source_DASHenv] = ACTIONS(1824), - [anon_sym_register] = ACTIONS(1824), - [anon_sym_hide] = ACTIONS(1824), - [anon_sym_hide_DASHenv] = ACTIONS(1824), - [anon_sym_overlay] = ACTIONS(1824), - [anon_sym_new] = ACTIONS(1824), - [anon_sym_as] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1824), - [anon_sym_DOT] = ACTIONS(1743), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1824), - [aux_sym__val_number_decimal_token1] = ACTIONS(1824), - [aux_sym__val_number_decimal_token2] = ACTIONS(1824), - [aux_sym__val_number_decimal_token3] = ACTIONS(1824), - [aux_sym__val_number_decimal_token4] = ACTIONS(1824), - [aux_sym__val_number_token1] = ACTIONS(1824), - [aux_sym__val_number_token2] = ACTIONS(1824), - [aux_sym__val_number_token3] = ACTIONS(1824), - [anon_sym_DQUOTE] = ACTIONS(1824), - [sym__str_single_quotes] = ACTIONS(1824), - [sym__str_back_ticks] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1824), - [sym__entry_separator] = ACTIONS(1826), - [anon_sym_PLUS] = ACTIONS(1824), - [anon_sym_POUND] = ACTIONS(3), - }, - [323] = { - [sym_path] = STATE(420), - [sym_comment] = STATE(323), - [aux_sym_cell_path_repeat1] = STATE(323), - [anon_sym_export] = ACTIONS(955), - [anon_sym_alias] = ACTIONS(955), - [anon_sym_let] = ACTIONS(955), - [anon_sym_let_DASHenv] = ACTIONS(955), - [anon_sym_mut] = ACTIONS(955), - [anon_sym_const] = ACTIONS(955), - [aux_sym_cmd_identifier_token1] = ACTIONS(955), - [aux_sym_cmd_identifier_token2] = ACTIONS(955), - [aux_sym_cmd_identifier_token3] = ACTIONS(955), - [aux_sym_cmd_identifier_token4] = ACTIONS(955), - [aux_sym_cmd_identifier_token5] = ACTIONS(955), - [aux_sym_cmd_identifier_token6] = ACTIONS(955), - [aux_sym_cmd_identifier_token7] = ACTIONS(955), - [aux_sym_cmd_identifier_token8] = ACTIONS(955), - [aux_sym_cmd_identifier_token9] = ACTIONS(955), - [aux_sym_cmd_identifier_token10] = ACTIONS(955), - [aux_sym_cmd_identifier_token11] = ACTIONS(955), - [aux_sym_cmd_identifier_token12] = ACTIONS(955), - [aux_sym_cmd_identifier_token13] = ACTIONS(955), - [aux_sym_cmd_identifier_token14] = ACTIONS(955), - [aux_sym_cmd_identifier_token15] = ACTIONS(955), - [aux_sym_cmd_identifier_token16] = ACTIONS(955), - [aux_sym_cmd_identifier_token17] = ACTIONS(955), - [aux_sym_cmd_identifier_token18] = ACTIONS(955), - [aux_sym_cmd_identifier_token19] = ACTIONS(955), - [aux_sym_cmd_identifier_token20] = ACTIONS(955), - [aux_sym_cmd_identifier_token21] = ACTIONS(955), - [aux_sym_cmd_identifier_token22] = ACTIONS(955), - [aux_sym_cmd_identifier_token23] = ACTIONS(955), - [aux_sym_cmd_identifier_token24] = ACTIONS(955), - [aux_sym_cmd_identifier_token25] = ACTIONS(955), - [aux_sym_cmd_identifier_token26] = ACTIONS(955), - [aux_sym_cmd_identifier_token27] = ACTIONS(955), - [aux_sym_cmd_identifier_token28] = ACTIONS(955), - [aux_sym_cmd_identifier_token29] = ACTIONS(955), - [aux_sym_cmd_identifier_token30] = ACTIONS(955), - [aux_sym_cmd_identifier_token31] = ACTIONS(955), - [aux_sym_cmd_identifier_token32] = ACTIONS(955), - [aux_sym_cmd_identifier_token33] = ACTIONS(955), - [aux_sym_cmd_identifier_token34] = ACTIONS(955), - [aux_sym_cmd_identifier_token35] = ACTIONS(955), - [aux_sym_cmd_identifier_token36] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_null] = ACTIONS(957), - [aux_sym_cmd_identifier_token38] = ACTIONS(955), - [aux_sym_cmd_identifier_token39] = ACTIONS(957), - [aux_sym_cmd_identifier_token40] = ACTIONS(957), - [anon_sym_def] = ACTIONS(955), - [anon_sym_export_DASHenv] = ACTIONS(955), - [anon_sym_extern] = ACTIONS(955), - [anon_sym_module] = ACTIONS(955), - [anon_sym_use] = ACTIONS(955), - [anon_sym_LPAREN] = ACTIONS(957), - [anon_sym_COMMA] = ACTIONS(957), - [anon_sym_DOLLAR] = ACTIONS(957), - [anon_sym_error] = ACTIONS(955), - [anon_sym_list] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(955), - [anon_sym_break] = ACTIONS(955), - [anon_sym_continue] = ACTIONS(955), - [anon_sym_for] = ACTIONS(955), - [anon_sym_in] = ACTIONS(955), - [anon_sym_loop] = ACTIONS(955), - [anon_sym_make] = ACTIONS(955), - [anon_sym_while] = ACTIONS(955), - [anon_sym_do] = ACTIONS(955), - [anon_sym_if] = ACTIONS(955), - [anon_sym_else] = ACTIONS(955), - [anon_sym_match] = ACTIONS(955), - [anon_sym_RBRACE] = ACTIONS(957), - [anon_sym_try] = ACTIONS(955), - [anon_sym_catch] = ACTIONS(955), - [anon_sym_return] = ACTIONS(955), - [anon_sym_source] = ACTIONS(955), - [anon_sym_source_DASHenv] = ACTIONS(955), - [anon_sym_register] = ACTIONS(955), - [anon_sym_hide] = ACTIONS(955), - [anon_sym_hide_DASHenv] = ACTIONS(955), - [anon_sym_overlay] = ACTIONS(955), - [anon_sym_new] = ACTIONS(955), - [anon_sym_as] = ACTIONS(955), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(1828), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(957), - [aux_sym__val_number_decimal_token1] = ACTIONS(955), - [aux_sym__val_number_decimal_token2] = ACTIONS(957), - [aux_sym__val_number_decimal_token3] = ACTIONS(957), - [aux_sym__val_number_decimal_token4] = ACTIONS(957), - [aux_sym__val_number_token1] = ACTIONS(957), - [aux_sym__val_number_token2] = ACTIONS(957), - [aux_sym__val_number_token3] = ACTIONS(957), - [anon_sym_DQUOTE] = ACTIONS(957), - [sym__str_single_quotes] = ACTIONS(957), - [sym__str_back_ticks] = ACTIONS(957), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(957), - [aux_sym_record_entry_token1] = ACTIONS(957), - [anon_sym_PLUS] = ACTIONS(955), + [298] = { + [sym_comment] = STATE(298), + [anon_sym_export] = ACTIONS(1631), + [anon_sym_alias] = ACTIONS(1631), + [anon_sym_let] = ACTIONS(1631), + [anon_sym_let_DASHenv] = ACTIONS(1631), + [anon_sym_mut] = ACTIONS(1631), + [anon_sym_const] = ACTIONS(1631), + [aux_sym_cmd_identifier_token1] = ACTIONS(1631), + [aux_sym_cmd_identifier_token2] = ACTIONS(1631), + [aux_sym_cmd_identifier_token3] = ACTIONS(1631), + [aux_sym_cmd_identifier_token4] = ACTIONS(1631), + [aux_sym_cmd_identifier_token5] = ACTIONS(1631), + [aux_sym_cmd_identifier_token6] = ACTIONS(1631), + [aux_sym_cmd_identifier_token7] = ACTIONS(1631), + [aux_sym_cmd_identifier_token8] = ACTIONS(1631), + [aux_sym_cmd_identifier_token9] = ACTIONS(1631), + [aux_sym_cmd_identifier_token10] = ACTIONS(1631), + [aux_sym_cmd_identifier_token11] = ACTIONS(1631), + [aux_sym_cmd_identifier_token12] = ACTIONS(1631), + [aux_sym_cmd_identifier_token13] = ACTIONS(1631), + [aux_sym_cmd_identifier_token14] = ACTIONS(1631), + [aux_sym_cmd_identifier_token15] = ACTIONS(1631), + [aux_sym_cmd_identifier_token16] = ACTIONS(1631), + [aux_sym_cmd_identifier_token17] = ACTIONS(1631), + [aux_sym_cmd_identifier_token18] = ACTIONS(1631), + [aux_sym_cmd_identifier_token19] = ACTIONS(1631), + [aux_sym_cmd_identifier_token20] = ACTIONS(1631), + [aux_sym_cmd_identifier_token21] = ACTIONS(1631), + [aux_sym_cmd_identifier_token22] = ACTIONS(1631), + [aux_sym_cmd_identifier_token23] = ACTIONS(1631), + [aux_sym_cmd_identifier_token24] = ACTIONS(1631), + [aux_sym_cmd_identifier_token25] = ACTIONS(1631), + [aux_sym_cmd_identifier_token26] = ACTIONS(1631), + [aux_sym_cmd_identifier_token27] = ACTIONS(1631), + [aux_sym_cmd_identifier_token28] = ACTIONS(1631), + [aux_sym_cmd_identifier_token29] = ACTIONS(1631), + [aux_sym_cmd_identifier_token30] = ACTIONS(1631), + [aux_sym_cmd_identifier_token31] = ACTIONS(1631), + [aux_sym_cmd_identifier_token32] = ACTIONS(1631), + [aux_sym_cmd_identifier_token33] = ACTIONS(1631), + [aux_sym_cmd_identifier_token34] = ACTIONS(1631), + [aux_sym_cmd_identifier_token35] = ACTIONS(1631), + [aux_sym_cmd_identifier_token36] = ACTIONS(1631), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [aux_sym_cmd_identifier_token38] = ACTIONS(1631), + [aux_sym_cmd_identifier_token39] = ACTIONS(1633), + [aux_sym_cmd_identifier_token40] = ACTIONS(1633), + [anon_sym_def] = ACTIONS(1631), + [anon_sym_export_DASHenv] = ACTIONS(1631), + [anon_sym_extern] = ACTIONS(1631), + [anon_sym_module] = ACTIONS(1631), + [anon_sym_use] = ACTIONS(1631), + [anon_sym_LPAREN] = ACTIONS(1633), + [anon_sym_DOLLAR] = ACTIONS(1633), + [anon_sym_error] = ACTIONS(1631), + [anon_sym_list] = ACTIONS(1631), + [anon_sym_DASH] = ACTIONS(1631), + [anon_sym_break] = ACTIONS(1631), + [anon_sym_continue] = ACTIONS(1631), + [anon_sym_for] = ACTIONS(1631), + [anon_sym_in] = ACTIONS(1631), + [anon_sym_loop] = ACTIONS(1631), + [anon_sym_make] = ACTIONS(1631), + [anon_sym_while] = ACTIONS(1631), + [anon_sym_do] = ACTIONS(1631), + [anon_sym_if] = ACTIONS(1631), + [anon_sym_else] = ACTIONS(1631), + [anon_sym_match] = ACTIONS(1631), + [anon_sym_RBRACE] = ACTIONS(1633), + [anon_sym_try] = ACTIONS(1631), + [anon_sym_catch] = ACTIONS(1631), + [anon_sym_return] = ACTIONS(1631), + [anon_sym_source] = ACTIONS(1631), + [anon_sym_source_DASHenv] = ACTIONS(1631), + [anon_sym_register] = ACTIONS(1631), + [anon_sym_hide] = ACTIONS(1631), + [anon_sym_hide_DASHenv] = ACTIONS(1631), + [anon_sym_overlay] = ACTIONS(1631), + [anon_sym_new] = ACTIONS(1631), + [anon_sym_as] = ACTIONS(1631), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1633), + [anon_sym_DOT_DOT2] = ACTIONS(1631), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1633), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1633), + [aux_sym__immediate_decimal_token1] = ACTIONS(1825), + [aux_sym__immediate_decimal_token2] = ACTIONS(1827), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1633), + [aux_sym__val_number_decimal_token1] = ACTIONS(1631), + [aux_sym__val_number_decimal_token2] = ACTIONS(1633), + [aux_sym__val_number_decimal_token3] = ACTIONS(1633), + [aux_sym__val_number_decimal_token4] = ACTIONS(1633), + [aux_sym__val_number_token1] = ACTIONS(1633), + [aux_sym__val_number_token2] = ACTIONS(1633), + [aux_sym__val_number_token3] = ACTIONS(1633), + [anon_sym_DQUOTE] = ACTIONS(1633), + [sym__str_single_quotes] = ACTIONS(1633), + [sym__str_back_ticks] = ACTIONS(1633), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1631), [anon_sym_POUND] = ACTIONS(247), }, - [324] = { - [sym_cell_path] = STATE(563), - [sym_path] = STATE(472), - [sym_comment] = STATE(324), - [aux_sym_cell_path_repeat1] = STATE(386), - [anon_sym_export] = ACTIONS(945), - [anon_sym_alias] = ACTIONS(945), - [anon_sym_let] = ACTIONS(945), - [anon_sym_let_DASHenv] = ACTIONS(945), - [anon_sym_mut] = ACTIONS(945), - [anon_sym_const] = ACTIONS(945), - [aux_sym_cmd_identifier_token1] = ACTIONS(945), - [aux_sym_cmd_identifier_token2] = ACTIONS(945), - [aux_sym_cmd_identifier_token3] = ACTIONS(945), - [aux_sym_cmd_identifier_token4] = ACTIONS(945), - [aux_sym_cmd_identifier_token5] = ACTIONS(945), - [aux_sym_cmd_identifier_token6] = ACTIONS(945), - [aux_sym_cmd_identifier_token7] = ACTIONS(945), - [aux_sym_cmd_identifier_token8] = ACTIONS(945), - [aux_sym_cmd_identifier_token9] = ACTIONS(945), - [aux_sym_cmd_identifier_token10] = ACTIONS(945), - [aux_sym_cmd_identifier_token11] = ACTIONS(945), - [aux_sym_cmd_identifier_token12] = ACTIONS(945), - [aux_sym_cmd_identifier_token13] = ACTIONS(945), - [aux_sym_cmd_identifier_token14] = ACTIONS(945), - [aux_sym_cmd_identifier_token15] = ACTIONS(945), - [aux_sym_cmd_identifier_token16] = ACTIONS(945), - [aux_sym_cmd_identifier_token17] = ACTIONS(945), - [aux_sym_cmd_identifier_token18] = ACTIONS(945), - [aux_sym_cmd_identifier_token19] = ACTIONS(945), - [aux_sym_cmd_identifier_token20] = ACTIONS(945), - [aux_sym_cmd_identifier_token21] = ACTIONS(945), - [aux_sym_cmd_identifier_token22] = ACTIONS(945), - [aux_sym_cmd_identifier_token23] = ACTIONS(945), - [aux_sym_cmd_identifier_token24] = ACTIONS(945), - [aux_sym_cmd_identifier_token25] = ACTIONS(945), - [aux_sym_cmd_identifier_token26] = ACTIONS(945), - [aux_sym_cmd_identifier_token27] = ACTIONS(945), - [aux_sym_cmd_identifier_token28] = ACTIONS(945), - [aux_sym_cmd_identifier_token29] = ACTIONS(945), - [aux_sym_cmd_identifier_token30] = ACTIONS(945), - [aux_sym_cmd_identifier_token31] = ACTIONS(945), - [aux_sym_cmd_identifier_token32] = ACTIONS(945), - [aux_sym_cmd_identifier_token33] = ACTIONS(945), - [aux_sym_cmd_identifier_token34] = ACTIONS(945), - [aux_sym_cmd_identifier_token35] = ACTIONS(945), - [aux_sym_cmd_identifier_token36] = ACTIONS(945), - [anon_sym_true] = ACTIONS(945), - [anon_sym_false] = ACTIONS(945), - [anon_sym_null] = ACTIONS(945), - [aux_sym_cmd_identifier_token38] = ACTIONS(945), - [aux_sym_cmd_identifier_token39] = ACTIONS(945), - [aux_sym_cmd_identifier_token40] = ACTIONS(945), - [anon_sym_def] = ACTIONS(945), - [anon_sym_export_DASHenv] = ACTIONS(945), - [anon_sym_extern] = ACTIONS(945), - [anon_sym_module] = ACTIONS(945), - [anon_sym_use] = ACTIONS(945), - [anon_sym_LPAREN] = ACTIONS(945), - [anon_sym_DOLLAR] = ACTIONS(945), - [anon_sym_error] = ACTIONS(945), - [anon_sym_list] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_break] = ACTIONS(945), - [anon_sym_continue] = ACTIONS(945), - [anon_sym_for] = ACTIONS(945), - [anon_sym_in] = ACTIONS(945), - [anon_sym_loop] = ACTIONS(945), - [anon_sym_make] = ACTIONS(945), - [anon_sym_while] = ACTIONS(945), - [anon_sym_do] = ACTIONS(945), - [anon_sym_if] = ACTIONS(945), - [anon_sym_else] = ACTIONS(945), - [anon_sym_match] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(945), - [anon_sym_try] = ACTIONS(945), - [anon_sym_catch] = ACTIONS(945), - [anon_sym_return] = ACTIONS(945), - [anon_sym_source] = ACTIONS(945), - [anon_sym_source_DASHenv] = ACTIONS(945), - [anon_sym_register] = ACTIONS(945), - [anon_sym_hide] = ACTIONS(945), - [anon_sym_hide_DASHenv] = ACTIONS(945), - [anon_sym_overlay] = ACTIONS(945), - [anon_sym_new] = ACTIONS(945), - [anon_sym_as] = ACTIONS(945), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(945), - [anon_sym_DOT] = ACTIONS(1743), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(945), - [aux_sym__val_number_decimal_token1] = ACTIONS(945), - [aux_sym__val_number_decimal_token2] = ACTIONS(945), - [aux_sym__val_number_decimal_token3] = ACTIONS(945), - [aux_sym__val_number_decimal_token4] = ACTIONS(945), - [aux_sym__val_number_token1] = ACTIONS(945), - [aux_sym__val_number_token2] = ACTIONS(945), - [aux_sym__val_number_token3] = ACTIONS(945), - [anon_sym_DQUOTE] = ACTIONS(945), - [sym__str_single_quotes] = ACTIONS(945), - [sym__str_back_ticks] = ACTIONS(945), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(945), - [sym__entry_separator] = ACTIONS(947), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_POUND] = ACTIONS(3), - }, - [325] = { - [sym_cell_path] = STATE(557), - [sym_path] = STATE(472), - [sym_comment] = STATE(325), - [aux_sym_cell_path_repeat1] = STATE(386), - [anon_sym_export] = ACTIONS(1831), - [anon_sym_alias] = ACTIONS(1831), - [anon_sym_let] = ACTIONS(1831), - [anon_sym_let_DASHenv] = ACTIONS(1831), - [anon_sym_mut] = ACTIONS(1831), - [anon_sym_const] = ACTIONS(1831), - [aux_sym_cmd_identifier_token1] = ACTIONS(1831), - [aux_sym_cmd_identifier_token2] = ACTIONS(1831), - [aux_sym_cmd_identifier_token3] = ACTIONS(1831), - [aux_sym_cmd_identifier_token4] = ACTIONS(1831), - [aux_sym_cmd_identifier_token5] = ACTIONS(1831), - [aux_sym_cmd_identifier_token6] = ACTIONS(1831), - [aux_sym_cmd_identifier_token7] = ACTIONS(1831), - [aux_sym_cmd_identifier_token8] = ACTIONS(1831), - [aux_sym_cmd_identifier_token9] = ACTIONS(1831), - [aux_sym_cmd_identifier_token10] = ACTIONS(1831), - [aux_sym_cmd_identifier_token11] = ACTIONS(1831), - [aux_sym_cmd_identifier_token12] = ACTIONS(1831), - [aux_sym_cmd_identifier_token13] = ACTIONS(1831), - [aux_sym_cmd_identifier_token14] = ACTIONS(1831), - [aux_sym_cmd_identifier_token15] = ACTIONS(1831), - [aux_sym_cmd_identifier_token16] = ACTIONS(1831), - [aux_sym_cmd_identifier_token17] = ACTIONS(1831), - [aux_sym_cmd_identifier_token18] = ACTIONS(1831), - [aux_sym_cmd_identifier_token19] = ACTIONS(1831), - [aux_sym_cmd_identifier_token20] = ACTIONS(1831), - [aux_sym_cmd_identifier_token21] = ACTIONS(1831), - [aux_sym_cmd_identifier_token22] = ACTIONS(1831), - [aux_sym_cmd_identifier_token23] = ACTIONS(1831), - [aux_sym_cmd_identifier_token24] = ACTIONS(1831), - [aux_sym_cmd_identifier_token25] = ACTIONS(1831), - [aux_sym_cmd_identifier_token26] = ACTIONS(1831), - [aux_sym_cmd_identifier_token27] = ACTIONS(1831), - [aux_sym_cmd_identifier_token28] = ACTIONS(1831), - [aux_sym_cmd_identifier_token29] = ACTIONS(1831), - [aux_sym_cmd_identifier_token30] = ACTIONS(1831), - [aux_sym_cmd_identifier_token31] = ACTIONS(1831), - [aux_sym_cmd_identifier_token32] = ACTIONS(1831), - [aux_sym_cmd_identifier_token33] = ACTIONS(1831), - [aux_sym_cmd_identifier_token34] = ACTIONS(1831), - [aux_sym_cmd_identifier_token35] = ACTIONS(1831), - [aux_sym_cmd_identifier_token36] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1831), - [anon_sym_false] = ACTIONS(1831), - [anon_sym_null] = ACTIONS(1831), - [aux_sym_cmd_identifier_token38] = ACTIONS(1831), - [aux_sym_cmd_identifier_token39] = ACTIONS(1831), - [aux_sym_cmd_identifier_token40] = ACTIONS(1831), - [anon_sym_def] = ACTIONS(1831), - [anon_sym_export_DASHenv] = ACTIONS(1831), - [anon_sym_extern] = ACTIONS(1831), - [anon_sym_module] = ACTIONS(1831), - [anon_sym_use] = ACTIONS(1831), - [anon_sym_LPAREN] = ACTIONS(1831), - [anon_sym_DOLLAR] = ACTIONS(1831), - [anon_sym_error] = ACTIONS(1831), - [anon_sym_list] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_break] = ACTIONS(1831), - [anon_sym_continue] = ACTIONS(1831), - [anon_sym_for] = ACTIONS(1831), - [anon_sym_in] = ACTIONS(1831), - [anon_sym_loop] = ACTIONS(1831), - [anon_sym_make] = ACTIONS(1831), - [anon_sym_while] = ACTIONS(1831), - [anon_sym_do] = ACTIONS(1831), - [anon_sym_if] = ACTIONS(1831), - [anon_sym_else] = ACTIONS(1831), - [anon_sym_match] = ACTIONS(1831), - [anon_sym_RBRACE] = ACTIONS(1831), - [anon_sym_try] = ACTIONS(1831), - [anon_sym_catch] = ACTIONS(1831), - [anon_sym_return] = ACTIONS(1831), - [anon_sym_source] = ACTIONS(1831), - [anon_sym_source_DASHenv] = ACTIONS(1831), - [anon_sym_register] = ACTIONS(1831), - [anon_sym_hide] = ACTIONS(1831), - [anon_sym_hide_DASHenv] = ACTIONS(1831), - [anon_sym_overlay] = ACTIONS(1831), - [anon_sym_new] = ACTIONS(1831), - [anon_sym_as] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1831), - [anon_sym_DOT] = ACTIONS(1743), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1831), - [aux_sym__val_number_decimal_token1] = ACTIONS(1831), - [aux_sym__val_number_decimal_token2] = ACTIONS(1831), - [aux_sym__val_number_decimal_token3] = ACTIONS(1831), - [aux_sym__val_number_decimal_token4] = ACTIONS(1831), - [aux_sym__val_number_token1] = ACTIONS(1831), - [aux_sym__val_number_token2] = ACTIONS(1831), - [aux_sym__val_number_token3] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(1831), - [sym__str_single_quotes] = ACTIONS(1831), - [sym__str_back_ticks] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1831), + [299] = { + [sym_cell_path] = STATE(523), + [sym_path] = STATE(482), + [sym_comment] = STATE(299), + [aux_sym_cell_path_repeat1] = STATE(381), + [anon_sym_export] = ACTIONS(1829), + [anon_sym_alias] = ACTIONS(1829), + [anon_sym_let] = ACTIONS(1829), + [anon_sym_let_DASHenv] = ACTIONS(1829), + [anon_sym_mut] = ACTIONS(1829), + [anon_sym_const] = ACTIONS(1829), + [aux_sym_cmd_identifier_token1] = ACTIONS(1829), + [aux_sym_cmd_identifier_token2] = ACTIONS(1829), + [aux_sym_cmd_identifier_token3] = ACTIONS(1829), + [aux_sym_cmd_identifier_token4] = ACTIONS(1829), + [aux_sym_cmd_identifier_token5] = ACTIONS(1829), + [aux_sym_cmd_identifier_token6] = ACTIONS(1829), + [aux_sym_cmd_identifier_token7] = ACTIONS(1829), + [aux_sym_cmd_identifier_token8] = ACTIONS(1829), + [aux_sym_cmd_identifier_token9] = ACTIONS(1829), + [aux_sym_cmd_identifier_token10] = ACTIONS(1829), + [aux_sym_cmd_identifier_token11] = ACTIONS(1829), + [aux_sym_cmd_identifier_token12] = ACTIONS(1829), + [aux_sym_cmd_identifier_token13] = ACTIONS(1829), + [aux_sym_cmd_identifier_token14] = ACTIONS(1829), + [aux_sym_cmd_identifier_token15] = ACTIONS(1829), + [aux_sym_cmd_identifier_token16] = ACTIONS(1829), + [aux_sym_cmd_identifier_token17] = ACTIONS(1829), + [aux_sym_cmd_identifier_token18] = ACTIONS(1829), + [aux_sym_cmd_identifier_token19] = ACTIONS(1829), + [aux_sym_cmd_identifier_token20] = ACTIONS(1829), + [aux_sym_cmd_identifier_token21] = ACTIONS(1829), + [aux_sym_cmd_identifier_token22] = ACTIONS(1829), + [aux_sym_cmd_identifier_token23] = ACTIONS(1829), + [aux_sym_cmd_identifier_token24] = ACTIONS(1829), + [aux_sym_cmd_identifier_token25] = ACTIONS(1829), + [aux_sym_cmd_identifier_token26] = ACTIONS(1829), + [aux_sym_cmd_identifier_token27] = ACTIONS(1829), + [aux_sym_cmd_identifier_token28] = ACTIONS(1829), + [aux_sym_cmd_identifier_token29] = ACTIONS(1829), + [aux_sym_cmd_identifier_token30] = ACTIONS(1829), + [aux_sym_cmd_identifier_token31] = ACTIONS(1829), + [aux_sym_cmd_identifier_token32] = ACTIONS(1829), + [aux_sym_cmd_identifier_token33] = ACTIONS(1829), + [aux_sym_cmd_identifier_token34] = ACTIONS(1829), + [aux_sym_cmd_identifier_token35] = ACTIONS(1829), + [aux_sym_cmd_identifier_token36] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(1829), + [anon_sym_false] = ACTIONS(1829), + [anon_sym_null] = ACTIONS(1829), + [aux_sym_cmd_identifier_token38] = ACTIONS(1829), + [aux_sym_cmd_identifier_token39] = ACTIONS(1829), + [aux_sym_cmd_identifier_token40] = ACTIONS(1829), + [anon_sym_def] = ACTIONS(1829), + [anon_sym_export_DASHenv] = ACTIONS(1829), + [anon_sym_extern] = ACTIONS(1829), + [anon_sym_module] = ACTIONS(1829), + [anon_sym_use] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_DOLLAR] = ACTIONS(1829), + [anon_sym_error] = ACTIONS(1829), + [anon_sym_list] = ACTIONS(1829), + [anon_sym_DASH] = ACTIONS(1829), + [anon_sym_break] = ACTIONS(1829), + [anon_sym_continue] = ACTIONS(1829), + [anon_sym_for] = ACTIONS(1829), + [anon_sym_in] = ACTIONS(1829), + [anon_sym_loop] = ACTIONS(1829), + [anon_sym_make] = ACTIONS(1829), + [anon_sym_while] = ACTIONS(1829), + [anon_sym_do] = ACTIONS(1829), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_else] = ACTIONS(1829), + [anon_sym_match] = ACTIONS(1829), + [anon_sym_RBRACE] = ACTIONS(1829), + [anon_sym_try] = ACTIONS(1829), + [anon_sym_catch] = ACTIONS(1829), + [anon_sym_return] = ACTIONS(1829), + [anon_sym_source] = ACTIONS(1829), + [anon_sym_source_DASHenv] = ACTIONS(1829), + [anon_sym_register] = ACTIONS(1829), + [anon_sym_hide] = ACTIONS(1829), + [anon_sym_hide_DASHenv] = ACTIONS(1829), + [anon_sym_overlay] = ACTIONS(1829), + [anon_sym_new] = ACTIONS(1829), + [anon_sym_as] = ACTIONS(1829), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1829), + [anon_sym_DOT] = ACTIONS(1831), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1829), + [aux_sym__val_number_decimal_token1] = ACTIONS(1829), + [aux_sym__val_number_decimal_token2] = ACTIONS(1829), + [aux_sym__val_number_decimal_token3] = ACTIONS(1829), + [aux_sym__val_number_decimal_token4] = ACTIONS(1829), + [aux_sym__val_number_token1] = ACTIONS(1829), + [aux_sym__val_number_token2] = ACTIONS(1829), + [aux_sym__val_number_token3] = ACTIONS(1829), + [anon_sym_DQUOTE] = ACTIONS(1829), + [sym__str_single_quotes] = ACTIONS(1829), + [sym__str_back_ticks] = ACTIONS(1829), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1829), [sym__entry_separator] = ACTIONS(1833), - [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_PLUS] = ACTIONS(1829), [anon_sym_POUND] = ACTIONS(3), }, - [326] = { - [sym_cell_path] = STATE(558), - [sym_path] = STATE(472), - [sym_comment] = STATE(326), - [aux_sym_cell_path_repeat1] = STATE(386), + [300] = { + [sym_cell_path] = STATE(524), + [sym_path] = STATE(482), + [sym_comment] = STATE(300), + [aux_sym_cell_path_repeat1] = STATE(381), [anon_sym_export] = ACTIONS(1835), [anon_sym_alias] = ACTIONS(1835), [anon_sym_let] = ACTIONS(1835), @@ -116276,7 +109486,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(1835), [anon_sym_as] = ACTIONS(1835), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1835), - [anon_sym_DOT] = ACTIONS(1743), + [anon_sym_DOT] = ACTIONS(1831), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1835), [aux_sym__val_number_decimal_token1] = ACTIONS(1835), [aux_sym__val_number_decimal_token2] = ACTIONS(1835), @@ -116293,115 +109503,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1835), [anon_sym_POUND] = ACTIONS(3), }, - [327] = { - [sym_comment] = STATE(327), - [anon_sym_export] = ACTIONS(994), - [anon_sym_alias] = ACTIONS(994), - [anon_sym_let] = ACTIONS(994), - [anon_sym_let_DASHenv] = ACTIONS(994), - [anon_sym_mut] = ACTIONS(994), - [anon_sym_const] = ACTIONS(994), - [aux_sym_cmd_identifier_token1] = ACTIONS(994), - [aux_sym_cmd_identifier_token2] = ACTIONS(994), - [aux_sym_cmd_identifier_token3] = ACTIONS(994), - [aux_sym_cmd_identifier_token4] = ACTIONS(994), - [aux_sym_cmd_identifier_token5] = ACTIONS(994), - [aux_sym_cmd_identifier_token6] = ACTIONS(994), - [aux_sym_cmd_identifier_token7] = ACTIONS(994), - [aux_sym_cmd_identifier_token8] = ACTIONS(994), - [aux_sym_cmd_identifier_token9] = ACTIONS(994), - [aux_sym_cmd_identifier_token10] = ACTIONS(994), - [aux_sym_cmd_identifier_token11] = ACTIONS(994), - [aux_sym_cmd_identifier_token12] = ACTIONS(994), - [aux_sym_cmd_identifier_token13] = ACTIONS(994), - [aux_sym_cmd_identifier_token14] = ACTIONS(994), - [aux_sym_cmd_identifier_token15] = ACTIONS(994), - [aux_sym_cmd_identifier_token16] = ACTIONS(994), - [aux_sym_cmd_identifier_token17] = ACTIONS(994), - [aux_sym_cmd_identifier_token18] = ACTIONS(994), - [aux_sym_cmd_identifier_token19] = ACTIONS(994), - [aux_sym_cmd_identifier_token20] = ACTIONS(994), - [aux_sym_cmd_identifier_token21] = ACTIONS(994), - [aux_sym_cmd_identifier_token22] = ACTIONS(994), - [aux_sym_cmd_identifier_token23] = ACTIONS(994), - [aux_sym_cmd_identifier_token24] = ACTIONS(994), - [aux_sym_cmd_identifier_token25] = ACTIONS(994), - [aux_sym_cmd_identifier_token26] = ACTIONS(994), - [aux_sym_cmd_identifier_token27] = ACTIONS(994), - [aux_sym_cmd_identifier_token28] = ACTIONS(994), - [aux_sym_cmd_identifier_token29] = ACTIONS(994), - [aux_sym_cmd_identifier_token30] = ACTIONS(994), - [aux_sym_cmd_identifier_token31] = ACTIONS(994), - [aux_sym_cmd_identifier_token32] = ACTIONS(994), - [aux_sym_cmd_identifier_token33] = ACTIONS(994), - [aux_sym_cmd_identifier_token34] = ACTIONS(994), - [aux_sym_cmd_identifier_token35] = ACTIONS(994), - [aux_sym_cmd_identifier_token36] = ACTIONS(994), - [anon_sym_true] = ACTIONS(994), - [anon_sym_false] = ACTIONS(994), - [anon_sym_null] = ACTIONS(994), - [aux_sym_cmd_identifier_token38] = ACTIONS(994), - [aux_sym_cmd_identifier_token39] = ACTIONS(994), - [aux_sym_cmd_identifier_token40] = ACTIONS(994), - [anon_sym_def] = ACTIONS(994), - [anon_sym_export_DASHenv] = ACTIONS(994), - [anon_sym_extern] = ACTIONS(994), - [anon_sym_module] = ACTIONS(994), - [anon_sym_use] = ACTIONS(994), - [anon_sym_LPAREN] = ACTIONS(994), - [anon_sym_DOLLAR] = ACTIONS(994), - [anon_sym_error] = ACTIONS(994), - [anon_sym_list] = ACTIONS(994), - [anon_sym_DASH] = ACTIONS(994), - [anon_sym_break] = ACTIONS(994), - [anon_sym_continue] = ACTIONS(994), - [anon_sym_for] = ACTIONS(994), - [anon_sym_in] = ACTIONS(994), - [anon_sym_loop] = ACTIONS(994), - [anon_sym_make] = ACTIONS(994), - [anon_sym_while] = ACTIONS(994), - [anon_sym_do] = ACTIONS(994), - [anon_sym_if] = ACTIONS(994), - [anon_sym_else] = ACTIONS(994), - [anon_sym_match] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(994), - [anon_sym_try] = ACTIONS(994), - [anon_sym_catch] = ACTIONS(994), - [anon_sym_return] = ACTIONS(994), - [anon_sym_source] = ACTIONS(994), - [anon_sym_source_DASHenv] = ACTIONS(994), - [anon_sym_register] = ACTIONS(994), - [anon_sym_hide] = ACTIONS(994), - [anon_sym_hide_DASHenv] = ACTIONS(994), - [anon_sym_overlay] = ACTIONS(994), - [anon_sym_new] = ACTIONS(994), - [anon_sym_as] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(994), - [anon_sym_DOT_DOT2] = ACTIONS(994), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), - [anon_sym_DOT_DOT_LT2] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(994), - [aux_sym__val_number_decimal_token1] = ACTIONS(994), - [aux_sym__val_number_decimal_token2] = ACTIONS(994), - [aux_sym__val_number_decimal_token3] = ACTIONS(994), - [aux_sym__val_number_decimal_token4] = ACTIONS(994), - [aux_sym__val_number_token1] = ACTIONS(994), - [aux_sym__val_number_token2] = ACTIONS(994), - [aux_sym__val_number_token3] = ACTIONS(994), - [anon_sym_DQUOTE] = ACTIONS(994), - [sym__str_single_quotes] = ACTIONS(994), - [sym__str_back_ticks] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(994), - [sym__entry_separator] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(994), - [anon_sym_POUND] = ACTIONS(3), - }, - [328] = { - [sym_cell_path] = STATE(529), - [sym_path] = STATE(472), - [sym_comment] = STATE(328), - [aux_sym_cell_path_repeat1] = STATE(386), + [301] = { + [sym_cell_path] = STATE(525), + [sym_path] = STATE(482), + [sym_comment] = STATE(301), + [aux_sym_cell_path_repeat1] = STATE(381), [anon_sym_export] = ACTIONS(1839), [anon_sym_alias] = ACTIONS(1839), [anon_sym_let] = ACTIONS(1839), @@ -116484,7 +109590,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(1839), [anon_sym_as] = ACTIONS(1839), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1839), - [anon_sym_DOT] = ACTIONS(1743), + [anon_sym_DOT] = ACTIONS(1831), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1839), [aux_sym__val_number_decimal_token1] = ACTIONS(1839), [aux_sym__val_number_decimal_token2] = ACTIONS(1839), @@ -116501,11 +109607,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1839), [anon_sym_POUND] = ACTIONS(3), }, - [329] = { - [sym_cell_path] = STATE(567), - [sym_path] = STATE(472), - [sym_comment] = STATE(329), - [aux_sym_cell_path_repeat1] = STATE(386), + [302] = { + [sym_cell_path] = STATE(526), + [sym_path] = STATE(482), + [sym_comment] = STATE(302), + [aux_sym_cell_path_repeat1] = STATE(381), [anon_sym_export] = ACTIONS(1843), [anon_sym_alias] = ACTIONS(1843), [anon_sym_let] = ACTIONS(1843), @@ -116588,7 +109694,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(1843), [anon_sym_as] = ACTIONS(1843), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1843), - [anon_sym_DOT] = ACTIONS(1743), + [anon_sym_DOT] = ACTIONS(1831), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1843), [aux_sym__val_number_decimal_token1] = ACTIONS(1843), [aux_sym__val_number_decimal_token2] = ACTIONS(1843), @@ -116605,115 +109711,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1843), [anon_sym_POUND] = ACTIONS(3), }, - [330] = { - [sym_comment] = STATE(330), - [anon_sym_export] = ACTIONS(986), - [anon_sym_alias] = ACTIONS(986), - [anon_sym_let] = ACTIONS(986), - [anon_sym_let_DASHenv] = ACTIONS(986), - [anon_sym_mut] = ACTIONS(986), - [anon_sym_const] = ACTIONS(986), - [aux_sym_cmd_identifier_token1] = ACTIONS(986), - [aux_sym_cmd_identifier_token2] = ACTIONS(986), - [aux_sym_cmd_identifier_token3] = ACTIONS(986), - [aux_sym_cmd_identifier_token4] = ACTIONS(986), - [aux_sym_cmd_identifier_token5] = ACTIONS(986), - [aux_sym_cmd_identifier_token6] = ACTIONS(986), - [aux_sym_cmd_identifier_token7] = ACTIONS(986), - [aux_sym_cmd_identifier_token8] = ACTIONS(986), - [aux_sym_cmd_identifier_token9] = ACTIONS(986), - [aux_sym_cmd_identifier_token10] = ACTIONS(986), - [aux_sym_cmd_identifier_token11] = ACTIONS(986), - [aux_sym_cmd_identifier_token12] = ACTIONS(986), - [aux_sym_cmd_identifier_token13] = ACTIONS(986), - [aux_sym_cmd_identifier_token14] = ACTIONS(986), - [aux_sym_cmd_identifier_token15] = ACTIONS(986), - [aux_sym_cmd_identifier_token16] = ACTIONS(986), - [aux_sym_cmd_identifier_token17] = ACTIONS(986), - [aux_sym_cmd_identifier_token18] = ACTIONS(986), - [aux_sym_cmd_identifier_token19] = ACTIONS(986), - [aux_sym_cmd_identifier_token20] = ACTIONS(986), - [aux_sym_cmd_identifier_token21] = ACTIONS(986), - [aux_sym_cmd_identifier_token22] = ACTIONS(986), - [aux_sym_cmd_identifier_token23] = ACTIONS(986), - [aux_sym_cmd_identifier_token24] = ACTIONS(986), - [aux_sym_cmd_identifier_token25] = ACTIONS(986), - [aux_sym_cmd_identifier_token26] = ACTIONS(986), - [aux_sym_cmd_identifier_token27] = ACTIONS(986), - [aux_sym_cmd_identifier_token28] = ACTIONS(986), - [aux_sym_cmd_identifier_token29] = ACTIONS(986), - [aux_sym_cmd_identifier_token30] = ACTIONS(986), - [aux_sym_cmd_identifier_token31] = ACTIONS(986), - [aux_sym_cmd_identifier_token32] = ACTIONS(986), - [aux_sym_cmd_identifier_token33] = ACTIONS(986), - [aux_sym_cmd_identifier_token34] = ACTIONS(986), - [aux_sym_cmd_identifier_token35] = ACTIONS(986), - [aux_sym_cmd_identifier_token36] = ACTIONS(986), - [anon_sym_true] = ACTIONS(986), - [anon_sym_false] = ACTIONS(986), - [anon_sym_null] = ACTIONS(986), - [aux_sym_cmd_identifier_token38] = ACTIONS(986), - [aux_sym_cmd_identifier_token39] = ACTIONS(986), - [aux_sym_cmd_identifier_token40] = ACTIONS(986), - [anon_sym_def] = ACTIONS(986), - [anon_sym_export_DASHenv] = ACTIONS(986), - [anon_sym_extern] = ACTIONS(986), - [anon_sym_module] = ACTIONS(986), - [anon_sym_use] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(986), - [anon_sym_error] = ACTIONS(986), - [anon_sym_list] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_break] = ACTIONS(986), - [anon_sym_continue] = ACTIONS(986), - [anon_sym_for] = ACTIONS(986), - [anon_sym_in] = ACTIONS(986), - [anon_sym_loop] = ACTIONS(986), - [anon_sym_make] = ACTIONS(986), - [anon_sym_while] = ACTIONS(986), - [anon_sym_do] = ACTIONS(986), - [anon_sym_if] = ACTIONS(986), - [anon_sym_else] = ACTIONS(986), - [anon_sym_match] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_try] = ACTIONS(986), - [anon_sym_catch] = ACTIONS(986), - [anon_sym_return] = ACTIONS(986), - [anon_sym_source] = ACTIONS(986), - [anon_sym_source_DASHenv] = ACTIONS(986), - [anon_sym_register] = ACTIONS(986), - [anon_sym_hide] = ACTIONS(986), - [anon_sym_hide_DASHenv] = ACTIONS(986), - [anon_sym_overlay] = ACTIONS(986), - [anon_sym_new] = ACTIONS(986), - [anon_sym_as] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(986), - [anon_sym_DOT_DOT2] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(986), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), - [anon_sym_DOT_DOT_LT2] = ACTIONS(988), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(986), - [aux_sym__val_number_decimal_token1] = ACTIONS(986), - [aux_sym__val_number_decimal_token2] = ACTIONS(986), - [aux_sym__val_number_decimal_token3] = ACTIONS(986), - [aux_sym__val_number_decimal_token4] = ACTIONS(986), - [aux_sym__val_number_token1] = ACTIONS(986), - [aux_sym__val_number_token2] = ACTIONS(986), - [aux_sym__val_number_token3] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym__str_single_quotes] = ACTIONS(986), - [sym__str_back_ticks] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(986), - [sym__entry_separator] = ACTIONS(988), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_POUND] = ACTIONS(3), - }, - [331] = { - [sym_cell_path] = STATE(536), - [sym_path] = STATE(472), - [sym_comment] = STATE(331), - [aux_sym_cell_path_repeat1] = STATE(386), + [303] = { + [sym_cell_path] = STATE(527), + [sym_path] = STATE(482), + [sym_comment] = STATE(303), + [aux_sym_cell_path_repeat1] = STATE(381), [anon_sym_export] = ACTIONS(1847), [anon_sym_alias] = ACTIONS(1847), [anon_sym_let] = ACTIONS(1847), @@ -116796,7 +109798,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(1847), [anon_sym_as] = ACTIONS(1847), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1847), - [anon_sym_DOT] = ACTIONS(1743), + [anon_sym_DOT] = ACTIONS(1831), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1847), [aux_sym__val_number_decimal_token1] = ACTIONS(1847), [aux_sym__val_number_decimal_token2] = ACTIONS(1847), @@ -116813,427 +109815,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1847), [anon_sym_POUND] = ACTIONS(3), }, - [332] = { - [sym_comment] = STATE(332), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [aux_sym_cmd_identifier_token1] = ACTIONS(990), - [aux_sym_cmd_identifier_token2] = ACTIONS(990), - [aux_sym_cmd_identifier_token3] = ACTIONS(990), - [aux_sym_cmd_identifier_token4] = ACTIONS(990), - [aux_sym_cmd_identifier_token5] = ACTIONS(990), - [aux_sym_cmd_identifier_token6] = ACTIONS(990), - [aux_sym_cmd_identifier_token7] = ACTIONS(990), - [aux_sym_cmd_identifier_token8] = ACTIONS(990), - [aux_sym_cmd_identifier_token9] = ACTIONS(990), - [aux_sym_cmd_identifier_token10] = ACTIONS(990), - [aux_sym_cmd_identifier_token11] = ACTIONS(990), - [aux_sym_cmd_identifier_token12] = ACTIONS(990), - [aux_sym_cmd_identifier_token13] = ACTIONS(990), - [aux_sym_cmd_identifier_token14] = ACTIONS(990), - [aux_sym_cmd_identifier_token15] = ACTIONS(990), - [aux_sym_cmd_identifier_token16] = ACTIONS(990), - [aux_sym_cmd_identifier_token17] = ACTIONS(990), - [aux_sym_cmd_identifier_token18] = ACTIONS(990), - [aux_sym_cmd_identifier_token19] = ACTIONS(990), - [aux_sym_cmd_identifier_token20] = ACTIONS(990), - [aux_sym_cmd_identifier_token21] = ACTIONS(990), - [aux_sym_cmd_identifier_token22] = ACTIONS(990), - [aux_sym_cmd_identifier_token23] = ACTIONS(990), - [aux_sym_cmd_identifier_token24] = ACTIONS(990), - [aux_sym_cmd_identifier_token25] = ACTIONS(990), - [aux_sym_cmd_identifier_token26] = ACTIONS(990), - [aux_sym_cmd_identifier_token27] = ACTIONS(990), - [aux_sym_cmd_identifier_token28] = ACTIONS(990), - [aux_sym_cmd_identifier_token29] = ACTIONS(990), - [aux_sym_cmd_identifier_token30] = ACTIONS(990), - [aux_sym_cmd_identifier_token31] = ACTIONS(990), - [aux_sym_cmd_identifier_token32] = ACTIONS(990), - [aux_sym_cmd_identifier_token33] = ACTIONS(990), - [aux_sym_cmd_identifier_token34] = ACTIONS(990), - [aux_sym_cmd_identifier_token35] = ACTIONS(990), - [aux_sym_cmd_identifier_token36] = ACTIONS(990), - [anon_sym_true] = ACTIONS(990), - [anon_sym_false] = ACTIONS(990), - [anon_sym_null] = ACTIONS(990), - [aux_sym_cmd_identifier_token38] = ACTIONS(990), - [aux_sym_cmd_identifier_token39] = ACTIONS(990), - [aux_sym_cmd_identifier_token40] = ACTIONS(990), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_error] = ACTIONS(990), - [anon_sym_list] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_in] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_make] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_try] = ACTIONS(990), - [anon_sym_catch] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_new] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(990), - [anon_sym_DOT_DOT2] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), - [anon_sym_DOT_DOT_LT2] = ACTIONS(992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(990), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(990), - [aux_sym__val_number_decimal_token3] = ACTIONS(990), - [aux_sym__val_number_decimal_token4] = ACTIONS(990), - [aux_sym__val_number_token1] = ACTIONS(990), - [aux_sym__val_number_token2] = ACTIONS(990), - [aux_sym__val_number_token3] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym__str_single_quotes] = ACTIONS(990), - [sym__str_back_ticks] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(990), - [sym__entry_separator] = ACTIONS(992), - [anon_sym_PLUS] = ACTIONS(990), + [304] = { + [sym_cell_path] = STATE(528), + [sym_path] = STATE(482), + [sym_comment] = STATE(304), + [aux_sym_cell_path_repeat1] = STATE(381), + [anon_sym_export] = ACTIONS(1851), + [anon_sym_alias] = ACTIONS(1851), + [anon_sym_let] = ACTIONS(1851), + [anon_sym_let_DASHenv] = ACTIONS(1851), + [anon_sym_mut] = ACTIONS(1851), + [anon_sym_const] = ACTIONS(1851), + [aux_sym_cmd_identifier_token1] = ACTIONS(1851), + [aux_sym_cmd_identifier_token2] = ACTIONS(1851), + [aux_sym_cmd_identifier_token3] = ACTIONS(1851), + [aux_sym_cmd_identifier_token4] = ACTIONS(1851), + [aux_sym_cmd_identifier_token5] = ACTIONS(1851), + [aux_sym_cmd_identifier_token6] = ACTIONS(1851), + [aux_sym_cmd_identifier_token7] = ACTIONS(1851), + [aux_sym_cmd_identifier_token8] = ACTIONS(1851), + [aux_sym_cmd_identifier_token9] = ACTIONS(1851), + [aux_sym_cmd_identifier_token10] = ACTIONS(1851), + [aux_sym_cmd_identifier_token11] = ACTIONS(1851), + [aux_sym_cmd_identifier_token12] = ACTIONS(1851), + [aux_sym_cmd_identifier_token13] = ACTIONS(1851), + [aux_sym_cmd_identifier_token14] = ACTIONS(1851), + [aux_sym_cmd_identifier_token15] = ACTIONS(1851), + [aux_sym_cmd_identifier_token16] = ACTIONS(1851), + [aux_sym_cmd_identifier_token17] = ACTIONS(1851), + [aux_sym_cmd_identifier_token18] = ACTIONS(1851), + [aux_sym_cmd_identifier_token19] = ACTIONS(1851), + [aux_sym_cmd_identifier_token20] = ACTIONS(1851), + [aux_sym_cmd_identifier_token21] = ACTIONS(1851), + [aux_sym_cmd_identifier_token22] = ACTIONS(1851), + [aux_sym_cmd_identifier_token23] = ACTIONS(1851), + [aux_sym_cmd_identifier_token24] = ACTIONS(1851), + [aux_sym_cmd_identifier_token25] = ACTIONS(1851), + [aux_sym_cmd_identifier_token26] = ACTIONS(1851), + [aux_sym_cmd_identifier_token27] = ACTIONS(1851), + [aux_sym_cmd_identifier_token28] = ACTIONS(1851), + [aux_sym_cmd_identifier_token29] = ACTIONS(1851), + [aux_sym_cmd_identifier_token30] = ACTIONS(1851), + [aux_sym_cmd_identifier_token31] = ACTIONS(1851), + [aux_sym_cmd_identifier_token32] = ACTIONS(1851), + [aux_sym_cmd_identifier_token33] = ACTIONS(1851), + [aux_sym_cmd_identifier_token34] = ACTIONS(1851), + [aux_sym_cmd_identifier_token35] = ACTIONS(1851), + [aux_sym_cmd_identifier_token36] = ACTIONS(1851), + [anon_sym_true] = ACTIONS(1851), + [anon_sym_false] = ACTIONS(1851), + [anon_sym_null] = ACTIONS(1851), + [aux_sym_cmd_identifier_token38] = ACTIONS(1851), + [aux_sym_cmd_identifier_token39] = ACTIONS(1851), + [aux_sym_cmd_identifier_token40] = ACTIONS(1851), + [anon_sym_def] = ACTIONS(1851), + [anon_sym_export_DASHenv] = ACTIONS(1851), + [anon_sym_extern] = ACTIONS(1851), + [anon_sym_module] = ACTIONS(1851), + [anon_sym_use] = ACTIONS(1851), + [anon_sym_LPAREN] = ACTIONS(1851), + [anon_sym_DOLLAR] = ACTIONS(1851), + [anon_sym_error] = ACTIONS(1851), + [anon_sym_list] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_break] = ACTIONS(1851), + [anon_sym_continue] = ACTIONS(1851), + [anon_sym_for] = ACTIONS(1851), + [anon_sym_in] = ACTIONS(1851), + [anon_sym_loop] = ACTIONS(1851), + [anon_sym_make] = ACTIONS(1851), + [anon_sym_while] = ACTIONS(1851), + [anon_sym_do] = ACTIONS(1851), + [anon_sym_if] = ACTIONS(1851), + [anon_sym_else] = ACTIONS(1851), + [anon_sym_match] = ACTIONS(1851), + [anon_sym_RBRACE] = ACTIONS(1851), + [anon_sym_try] = ACTIONS(1851), + [anon_sym_catch] = ACTIONS(1851), + [anon_sym_return] = ACTIONS(1851), + [anon_sym_source] = ACTIONS(1851), + [anon_sym_source_DASHenv] = ACTIONS(1851), + [anon_sym_register] = ACTIONS(1851), + [anon_sym_hide] = ACTIONS(1851), + [anon_sym_hide_DASHenv] = ACTIONS(1851), + [anon_sym_overlay] = ACTIONS(1851), + [anon_sym_new] = ACTIONS(1851), + [anon_sym_as] = ACTIONS(1851), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1851), + [anon_sym_DOT] = ACTIONS(1831), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1851), + [aux_sym__val_number_decimal_token1] = ACTIONS(1851), + [aux_sym__val_number_decimal_token2] = ACTIONS(1851), + [aux_sym__val_number_decimal_token3] = ACTIONS(1851), + [aux_sym__val_number_decimal_token4] = ACTIONS(1851), + [aux_sym__val_number_token1] = ACTIONS(1851), + [aux_sym__val_number_token2] = ACTIONS(1851), + [aux_sym__val_number_token3] = ACTIONS(1851), + [anon_sym_DQUOTE] = ACTIONS(1851), + [sym__str_single_quotes] = ACTIONS(1851), + [sym__str_back_ticks] = ACTIONS(1851), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1851), + [sym__entry_separator] = ACTIONS(1853), + [anon_sym_PLUS] = ACTIONS(1851), [anon_sym_POUND] = ACTIONS(3), }, - [333] = { - [sym_comment] = STATE(333), - [anon_sym_export] = ACTIONS(1589), - [anon_sym_alias] = ACTIONS(1589), - [anon_sym_let] = ACTIONS(1589), - [anon_sym_let_DASHenv] = ACTIONS(1589), - [anon_sym_mut] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [aux_sym_cmd_identifier_token1] = ACTIONS(1589), - [aux_sym_cmd_identifier_token2] = ACTIONS(1589), - [aux_sym_cmd_identifier_token3] = ACTIONS(1589), - [aux_sym_cmd_identifier_token4] = ACTIONS(1589), - [aux_sym_cmd_identifier_token5] = ACTIONS(1589), - [aux_sym_cmd_identifier_token6] = ACTIONS(1589), - [aux_sym_cmd_identifier_token7] = ACTIONS(1589), - [aux_sym_cmd_identifier_token8] = ACTIONS(1589), - [aux_sym_cmd_identifier_token9] = ACTIONS(1589), - [aux_sym_cmd_identifier_token10] = ACTIONS(1589), - [aux_sym_cmd_identifier_token11] = ACTIONS(1589), - [aux_sym_cmd_identifier_token12] = ACTIONS(1589), - [aux_sym_cmd_identifier_token13] = ACTIONS(1589), - [aux_sym_cmd_identifier_token14] = ACTIONS(1589), - [aux_sym_cmd_identifier_token15] = ACTIONS(1589), - [aux_sym_cmd_identifier_token16] = ACTIONS(1589), - [aux_sym_cmd_identifier_token17] = ACTIONS(1589), - [aux_sym_cmd_identifier_token18] = ACTIONS(1589), - [aux_sym_cmd_identifier_token19] = ACTIONS(1589), - [aux_sym_cmd_identifier_token20] = ACTIONS(1589), - [aux_sym_cmd_identifier_token21] = ACTIONS(1589), - [aux_sym_cmd_identifier_token22] = ACTIONS(1589), - [aux_sym_cmd_identifier_token23] = ACTIONS(1589), - [aux_sym_cmd_identifier_token24] = ACTIONS(1589), - [aux_sym_cmd_identifier_token25] = ACTIONS(1589), - [aux_sym_cmd_identifier_token26] = ACTIONS(1589), - [aux_sym_cmd_identifier_token27] = ACTIONS(1589), - [aux_sym_cmd_identifier_token28] = ACTIONS(1589), - [aux_sym_cmd_identifier_token29] = ACTIONS(1589), - [aux_sym_cmd_identifier_token30] = ACTIONS(1589), - [aux_sym_cmd_identifier_token31] = ACTIONS(1589), - [aux_sym_cmd_identifier_token32] = ACTIONS(1589), - [aux_sym_cmd_identifier_token33] = ACTIONS(1589), - [aux_sym_cmd_identifier_token34] = ACTIONS(1589), - [aux_sym_cmd_identifier_token35] = ACTIONS(1589), - [aux_sym_cmd_identifier_token36] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [anon_sym_null] = ACTIONS(1591), - [aux_sym_cmd_identifier_token38] = ACTIONS(1589), - [aux_sym_cmd_identifier_token39] = ACTIONS(1591), - [aux_sym_cmd_identifier_token40] = ACTIONS(1591), - [anon_sym_def] = ACTIONS(1589), - [anon_sym_export_DASHenv] = ACTIONS(1589), - [anon_sym_extern] = ACTIONS(1589), - [anon_sym_module] = ACTIONS(1589), - [anon_sym_use] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_DOLLAR] = ACTIONS(1591), - [anon_sym_error] = ACTIONS(1589), - [anon_sym_list] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_loop] = ACTIONS(1589), - [anon_sym_make] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_else] = ACTIONS(1589), - [anon_sym_match] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_try] = ACTIONS(1589), - [anon_sym_catch] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_source] = ACTIONS(1589), - [anon_sym_source_DASHenv] = ACTIONS(1589), - [anon_sym_register] = ACTIONS(1589), - [anon_sym_hide] = ACTIONS(1589), - [anon_sym_hide_DASHenv] = ACTIONS(1589), - [anon_sym_overlay] = ACTIONS(1589), - [anon_sym_new] = ACTIONS(1589), - [anon_sym_as] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1591), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1591), - [anon_sym_DOT_DOT2] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1591), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token3] = ACTIONS(1591), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(1591), - [aux_sym__val_number_token2] = ACTIONS(1591), - [aux_sym__val_number_token3] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym__str_single_quotes] = ACTIONS(1591), - [sym__str_back_ticks] = ACTIONS(1591), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1591), - [anon_sym_PLUS] = ACTIONS(1589), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(247), - }, - [334] = { - [sym_comment] = STATE(334), - [anon_sym_export] = ACTIONS(1709), - [anon_sym_alias] = ACTIONS(1709), - [anon_sym_let] = ACTIONS(1709), - [anon_sym_let_DASHenv] = ACTIONS(1709), - [anon_sym_mut] = ACTIONS(1709), - [anon_sym_const] = ACTIONS(1709), - [aux_sym_cmd_identifier_token1] = ACTIONS(1709), - [aux_sym_cmd_identifier_token2] = ACTIONS(1709), - [aux_sym_cmd_identifier_token3] = ACTIONS(1709), - [aux_sym_cmd_identifier_token4] = ACTIONS(1709), - [aux_sym_cmd_identifier_token5] = ACTIONS(1709), - [aux_sym_cmd_identifier_token6] = ACTIONS(1709), - [aux_sym_cmd_identifier_token7] = ACTIONS(1709), - [aux_sym_cmd_identifier_token8] = ACTIONS(1709), - [aux_sym_cmd_identifier_token9] = ACTIONS(1709), - [aux_sym_cmd_identifier_token10] = ACTIONS(1709), - [aux_sym_cmd_identifier_token11] = ACTIONS(1709), - [aux_sym_cmd_identifier_token12] = ACTIONS(1709), - [aux_sym_cmd_identifier_token13] = ACTIONS(1709), - [aux_sym_cmd_identifier_token14] = ACTIONS(1709), - [aux_sym_cmd_identifier_token15] = ACTIONS(1709), - [aux_sym_cmd_identifier_token16] = ACTIONS(1709), - [aux_sym_cmd_identifier_token17] = ACTIONS(1709), - [aux_sym_cmd_identifier_token18] = ACTIONS(1709), - [aux_sym_cmd_identifier_token19] = ACTIONS(1709), - [aux_sym_cmd_identifier_token20] = ACTIONS(1709), - [aux_sym_cmd_identifier_token21] = ACTIONS(1709), - [aux_sym_cmd_identifier_token22] = ACTIONS(1709), - [aux_sym_cmd_identifier_token23] = ACTIONS(1709), - [aux_sym_cmd_identifier_token24] = ACTIONS(1709), - [aux_sym_cmd_identifier_token25] = ACTIONS(1709), - [aux_sym_cmd_identifier_token26] = ACTIONS(1709), - [aux_sym_cmd_identifier_token27] = ACTIONS(1709), - [aux_sym_cmd_identifier_token28] = ACTIONS(1709), - [aux_sym_cmd_identifier_token29] = ACTIONS(1709), - [aux_sym_cmd_identifier_token30] = ACTIONS(1709), - [aux_sym_cmd_identifier_token31] = ACTIONS(1709), - [aux_sym_cmd_identifier_token32] = ACTIONS(1709), - [aux_sym_cmd_identifier_token33] = ACTIONS(1709), - [aux_sym_cmd_identifier_token34] = ACTIONS(1709), - [aux_sym_cmd_identifier_token35] = ACTIONS(1709), - [aux_sym_cmd_identifier_token36] = ACTIONS(1709), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1709), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [anon_sym_def] = ACTIONS(1709), - [anon_sym_export_DASHenv] = ACTIONS(1709), - [anon_sym_extern] = ACTIONS(1709), - [anon_sym_module] = ACTIONS(1709), - [anon_sym_use] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_DOLLAR] = ACTIONS(1717), - [anon_sym_error] = ACTIONS(1709), - [anon_sym_list] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_break] = ACTIONS(1709), - [anon_sym_continue] = ACTIONS(1709), - [anon_sym_for] = ACTIONS(1709), - [anon_sym_in] = ACTIONS(1709), - [anon_sym_loop] = ACTIONS(1709), - [anon_sym_make] = ACTIONS(1709), - [anon_sym_while] = ACTIONS(1709), - [anon_sym_do] = ACTIONS(1709), - [anon_sym_if] = ACTIONS(1709), - [anon_sym_else] = ACTIONS(1709), - [anon_sym_match] = ACTIONS(1709), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_try] = ACTIONS(1709), - [anon_sym_catch] = ACTIONS(1709), - [anon_sym_return] = ACTIONS(1709), - [anon_sym_source] = ACTIONS(1709), - [anon_sym_source_DASHenv] = ACTIONS(1709), - [anon_sym_register] = ACTIONS(1709), - [anon_sym_hide] = ACTIONS(1709), - [anon_sym_hide_DASHenv] = ACTIONS(1709), - [anon_sym_overlay] = ACTIONS(1709), - [anon_sym_new] = ACTIONS(1709), - [anon_sym_as] = ACTIONS(1709), - [anon_sym_LPAREN2] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1717), - [anon_sym_DOT_DOT2] = ACTIONS(1851), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1853), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1853), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1717), - [aux_sym__val_number_decimal_token1] = ACTIONS(1709), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1709), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1719), - [anon_sym_POUND] = ACTIONS(247), - }, - [335] = { - [sym_comment] = STATE(335), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_alias] = ACTIONS(1569), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_let_DASHenv] = ACTIONS(1569), - [anon_sym_mut] = ACTIONS(1569), - [anon_sym_const] = ACTIONS(1569), - [aux_sym_cmd_identifier_token1] = ACTIONS(1569), - [aux_sym_cmd_identifier_token2] = ACTIONS(1569), - [aux_sym_cmd_identifier_token3] = ACTIONS(1569), - [aux_sym_cmd_identifier_token4] = ACTIONS(1569), - [aux_sym_cmd_identifier_token5] = ACTIONS(1569), - [aux_sym_cmd_identifier_token6] = ACTIONS(1569), - [aux_sym_cmd_identifier_token7] = ACTIONS(1569), - [aux_sym_cmd_identifier_token8] = ACTIONS(1569), - [aux_sym_cmd_identifier_token9] = ACTIONS(1569), - [aux_sym_cmd_identifier_token10] = ACTIONS(1569), - [aux_sym_cmd_identifier_token11] = ACTIONS(1569), - [aux_sym_cmd_identifier_token12] = ACTIONS(1569), - [aux_sym_cmd_identifier_token13] = ACTIONS(1569), - [aux_sym_cmd_identifier_token14] = ACTIONS(1569), - [aux_sym_cmd_identifier_token15] = ACTIONS(1569), - [aux_sym_cmd_identifier_token16] = ACTIONS(1569), - [aux_sym_cmd_identifier_token17] = ACTIONS(1569), - [aux_sym_cmd_identifier_token18] = ACTIONS(1569), - [aux_sym_cmd_identifier_token19] = ACTIONS(1569), - [aux_sym_cmd_identifier_token20] = ACTIONS(1569), - [aux_sym_cmd_identifier_token21] = ACTIONS(1569), - [aux_sym_cmd_identifier_token22] = ACTIONS(1569), - [aux_sym_cmd_identifier_token23] = ACTIONS(1569), - [aux_sym_cmd_identifier_token24] = ACTIONS(1569), - [aux_sym_cmd_identifier_token25] = ACTIONS(1569), - [aux_sym_cmd_identifier_token26] = ACTIONS(1569), - [aux_sym_cmd_identifier_token27] = ACTIONS(1569), - [aux_sym_cmd_identifier_token28] = ACTIONS(1569), - [aux_sym_cmd_identifier_token29] = ACTIONS(1569), - [aux_sym_cmd_identifier_token30] = ACTIONS(1569), - [aux_sym_cmd_identifier_token31] = ACTIONS(1569), - [aux_sym_cmd_identifier_token32] = ACTIONS(1569), - [aux_sym_cmd_identifier_token33] = ACTIONS(1569), - [aux_sym_cmd_identifier_token34] = ACTIONS(1569), - [aux_sym_cmd_identifier_token35] = ACTIONS(1569), - [aux_sym_cmd_identifier_token36] = ACTIONS(1569), - [anon_sym_true] = ACTIONS(1571), - [anon_sym_false] = ACTIONS(1571), - [anon_sym_null] = ACTIONS(1571), - [aux_sym_cmd_identifier_token38] = ACTIONS(1569), - [aux_sym_cmd_identifier_token39] = ACTIONS(1571), - [aux_sym_cmd_identifier_token40] = ACTIONS(1571), - [anon_sym_def] = ACTIONS(1569), - [anon_sym_export_DASHenv] = ACTIONS(1569), - [anon_sym_extern] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_use] = ACTIONS(1569), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_DOLLAR] = ACTIONS(1571), - [anon_sym_error] = ACTIONS(1569), - [anon_sym_list] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_break] = ACTIONS(1569), - [anon_sym_continue] = ACTIONS(1569), - [anon_sym_for] = ACTIONS(1569), - [anon_sym_in] = ACTIONS(1569), - [anon_sym_loop] = ACTIONS(1569), - [anon_sym_make] = ACTIONS(1569), - [anon_sym_while] = ACTIONS(1569), - [anon_sym_do] = ACTIONS(1569), - [anon_sym_if] = ACTIONS(1569), - [anon_sym_else] = ACTIONS(1569), - [anon_sym_match] = ACTIONS(1569), - [anon_sym_RBRACE] = ACTIONS(1571), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_catch] = ACTIONS(1569), - [anon_sym_return] = ACTIONS(1569), - [anon_sym_source] = ACTIONS(1569), - [anon_sym_source_DASHenv] = ACTIONS(1569), - [anon_sym_register] = ACTIONS(1569), - [anon_sym_hide] = ACTIONS(1569), - [anon_sym_hide_DASHenv] = ACTIONS(1569), - [anon_sym_overlay] = ACTIONS(1569), - [anon_sym_new] = ACTIONS(1569), - [anon_sym_as] = ACTIONS(1569), - [anon_sym_LPAREN2] = ACTIONS(1571), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1571), - [anon_sym_DOT_DOT2] = ACTIONS(1569), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1571), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1571), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1571), - [aux_sym__val_number_decimal_token1] = ACTIONS(1569), - [aux_sym__val_number_decimal_token2] = ACTIONS(1571), - [aux_sym__val_number_decimal_token3] = ACTIONS(1571), - [aux_sym__val_number_decimal_token4] = ACTIONS(1571), - [aux_sym__val_number_token1] = ACTIONS(1571), - [aux_sym__val_number_token2] = ACTIONS(1571), - [aux_sym__val_number_token3] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [sym__str_single_quotes] = ACTIONS(1571), - [sym__str_back_ticks] = ACTIONS(1571), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1569), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1569), - [anon_sym_POUND] = ACTIONS(247), - }, - [336] = { - [sym_cell_path] = STATE(546), - [sym_path] = STATE(472), - [sym_comment] = STATE(336), - [aux_sym_cell_path_repeat1] = STATE(386), + [305] = { + [sym_cell_path] = STATE(529), + [sym_path] = STATE(482), + [sym_comment] = STATE(305), + [aux_sym_cell_path_repeat1] = STATE(381), [anon_sym_export] = ACTIONS(1855), [anon_sym_alias] = ACTIONS(1855), [anon_sym_let] = ACTIONS(1855), @@ -117316,7 +110006,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(1855), [anon_sym_as] = ACTIONS(1855), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1855), - [anon_sym_DOT] = ACTIONS(1743), + [anon_sym_DOT] = ACTIONS(1831), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1855), [aux_sym__val_number_decimal_token1] = ACTIONS(1855), [aux_sym__val_number_decimal_token2] = ACTIONS(1855), @@ -117333,323 +110023,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1855), [anon_sym_POUND] = ACTIONS(3), }, - [337] = { - [sym_comment] = STATE(337), - [anon_sym_export] = ACTIONS(1648), - [anon_sym_alias] = ACTIONS(1648), - [anon_sym_let] = ACTIONS(1648), - [anon_sym_let_DASHenv] = ACTIONS(1648), - [anon_sym_mut] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1648), - [aux_sym_cmd_identifier_token1] = ACTIONS(1648), - [aux_sym_cmd_identifier_token2] = ACTIONS(1648), - [aux_sym_cmd_identifier_token3] = ACTIONS(1648), - [aux_sym_cmd_identifier_token4] = ACTIONS(1648), - [aux_sym_cmd_identifier_token5] = ACTIONS(1648), - [aux_sym_cmd_identifier_token6] = ACTIONS(1648), - [aux_sym_cmd_identifier_token7] = ACTIONS(1648), - [aux_sym_cmd_identifier_token8] = ACTIONS(1648), - [aux_sym_cmd_identifier_token9] = ACTIONS(1648), - [aux_sym_cmd_identifier_token10] = ACTIONS(1648), - [aux_sym_cmd_identifier_token11] = ACTIONS(1648), - [aux_sym_cmd_identifier_token12] = ACTIONS(1648), - [aux_sym_cmd_identifier_token13] = ACTIONS(1648), - [aux_sym_cmd_identifier_token14] = ACTIONS(1648), - [aux_sym_cmd_identifier_token15] = ACTIONS(1648), - [aux_sym_cmd_identifier_token16] = ACTIONS(1648), - [aux_sym_cmd_identifier_token17] = ACTIONS(1648), - [aux_sym_cmd_identifier_token18] = ACTIONS(1648), - [aux_sym_cmd_identifier_token19] = ACTIONS(1648), - [aux_sym_cmd_identifier_token20] = ACTIONS(1648), - [aux_sym_cmd_identifier_token21] = ACTIONS(1648), - [aux_sym_cmd_identifier_token22] = ACTIONS(1648), - [aux_sym_cmd_identifier_token23] = ACTIONS(1648), - [aux_sym_cmd_identifier_token24] = ACTIONS(1648), - [aux_sym_cmd_identifier_token25] = ACTIONS(1648), - [aux_sym_cmd_identifier_token26] = ACTIONS(1648), - [aux_sym_cmd_identifier_token27] = ACTIONS(1648), - [aux_sym_cmd_identifier_token28] = ACTIONS(1648), - [aux_sym_cmd_identifier_token29] = ACTIONS(1648), - [aux_sym_cmd_identifier_token30] = ACTIONS(1648), - [aux_sym_cmd_identifier_token31] = ACTIONS(1648), - [aux_sym_cmd_identifier_token32] = ACTIONS(1648), - [aux_sym_cmd_identifier_token33] = ACTIONS(1648), - [aux_sym_cmd_identifier_token34] = ACTIONS(1648), - [aux_sym_cmd_identifier_token35] = ACTIONS(1648), - [aux_sym_cmd_identifier_token36] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [anon_sym_null] = ACTIONS(1650), - [aux_sym_cmd_identifier_token38] = ACTIONS(1648), - [aux_sym_cmd_identifier_token39] = ACTIONS(1650), - [aux_sym_cmd_identifier_token40] = ACTIONS(1650), - [anon_sym_def] = ACTIONS(1648), - [anon_sym_export_DASHenv] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1648), - [anon_sym_module] = ACTIONS(1648), - [anon_sym_use] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_DOLLAR] = ACTIONS(1650), - [anon_sym_error] = ACTIONS(1648), - [anon_sym_list] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_in] = ACTIONS(1648), - [anon_sym_loop] = ACTIONS(1648), - [anon_sym_make] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_do] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1648), - [anon_sym_match] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_try] = ACTIONS(1648), - [anon_sym_catch] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_source] = ACTIONS(1648), - [anon_sym_source_DASHenv] = ACTIONS(1648), - [anon_sym_register] = ACTIONS(1648), - [anon_sym_hide] = ACTIONS(1648), - [anon_sym_hide_DASHenv] = ACTIONS(1648), - [anon_sym_overlay] = ACTIONS(1648), - [anon_sym_new] = ACTIONS(1648), - [anon_sym_as] = ACTIONS(1648), - [anon_sym_LPAREN2] = ACTIONS(1650), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1650), - [anon_sym_DOT_DOT2] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token3] = ACTIONS(1650), - [aux_sym__val_number_decimal_token4] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1648), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(247), - }, - [338] = { - [sym_comment] = STATE(338), - [anon_sym_export] = ACTIONS(1721), - [anon_sym_alias] = ACTIONS(1721), - [anon_sym_let] = ACTIONS(1721), - [anon_sym_let_DASHenv] = ACTIONS(1721), - [anon_sym_mut] = ACTIONS(1721), - [anon_sym_const] = ACTIONS(1721), - [aux_sym_cmd_identifier_token1] = ACTIONS(1721), - [aux_sym_cmd_identifier_token2] = ACTIONS(1721), - [aux_sym_cmd_identifier_token3] = ACTIONS(1721), - [aux_sym_cmd_identifier_token4] = ACTIONS(1721), - [aux_sym_cmd_identifier_token5] = ACTIONS(1721), - [aux_sym_cmd_identifier_token6] = ACTIONS(1721), - [aux_sym_cmd_identifier_token7] = ACTIONS(1721), - [aux_sym_cmd_identifier_token8] = ACTIONS(1721), - [aux_sym_cmd_identifier_token9] = ACTIONS(1721), - [aux_sym_cmd_identifier_token10] = ACTIONS(1721), - [aux_sym_cmd_identifier_token11] = ACTIONS(1721), - [aux_sym_cmd_identifier_token12] = ACTIONS(1721), - [aux_sym_cmd_identifier_token13] = ACTIONS(1721), - [aux_sym_cmd_identifier_token14] = ACTIONS(1721), - [aux_sym_cmd_identifier_token15] = ACTIONS(1721), - [aux_sym_cmd_identifier_token16] = ACTIONS(1721), - [aux_sym_cmd_identifier_token17] = ACTIONS(1721), - [aux_sym_cmd_identifier_token18] = ACTIONS(1721), - [aux_sym_cmd_identifier_token19] = ACTIONS(1721), - [aux_sym_cmd_identifier_token20] = ACTIONS(1721), - [aux_sym_cmd_identifier_token21] = ACTIONS(1721), - [aux_sym_cmd_identifier_token22] = ACTIONS(1721), - [aux_sym_cmd_identifier_token23] = ACTIONS(1721), - [aux_sym_cmd_identifier_token24] = ACTIONS(1721), - [aux_sym_cmd_identifier_token25] = ACTIONS(1721), - [aux_sym_cmd_identifier_token26] = ACTIONS(1721), - [aux_sym_cmd_identifier_token27] = ACTIONS(1721), - [aux_sym_cmd_identifier_token28] = ACTIONS(1721), - [aux_sym_cmd_identifier_token29] = ACTIONS(1721), - [aux_sym_cmd_identifier_token30] = ACTIONS(1721), - [aux_sym_cmd_identifier_token31] = ACTIONS(1721), - [aux_sym_cmd_identifier_token32] = ACTIONS(1721), - [aux_sym_cmd_identifier_token33] = ACTIONS(1721), - [aux_sym_cmd_identifier_token34] = ACTIONS(1721), - [aux_sym_cmd_identifier_token35] = ACTIONS(1721), - [aux_sym_cmd_identifier_token36] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1723), - [aux_sym_cmd_identifier_token38] = ACTIONS(1721), - [aux_sym_cmd_identifier_token39] = ACTIONS(1723), - [aux_sym_cmd_identifier_token40] = ACTIONS(1723), - [anon_sym_def] = ACTIONS(1721), - [anon_sym_export_DASHenv] = ACTIONS(1721), - [anon_sym_extern] = ACTIONS(1721), - [anon_sym_module] = ACTIONS(1721), - [anon_sym_use] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1723), - [anon_sym_error] = ACTIONS(1721), - [anon_sym_list] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_break] = ACTIONS(1721), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_for] = ACTIONS(1721), - [anon_sym_in] = ACTIONS(1721), - [anon_sym_loop] = ACTIONS(1721), - [anon_sym_make] = ACTIONS(1721), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_do] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_else] = ACTIONS(1721), - [anon_sym_match] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_try] = ACTIONS(1721), - [anon_sym_catch] = ACTIONS(1721), - [anon_sym_return] = ACTIONS(1721), - [anon_sym_source] = ACTIONS(1721), - [anon_sym_source_DASHenv] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1721), - [anon_sym_hide] = ACTIONS(1721), - [anon_sym_hide_DASHenv] = ACTIONS(1721), - [anon_sym_overlay] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1721), - [anon_sym_as] = ACTIONS(1721), - [anon_sym_LPAREN2] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1723), - [anon_sym_DOT_DOT2] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1723), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token3] = ACTIONS(1723), - [aux_sym__val_number_decimal_token4] = ACTIONS(1723), - [aux_sym__val_number_token1] = ACTIONS(1723), - [aux_sym__val_number_token2] = ACTIONS(1723), - [aux_sym__val_number_token3] = ACTIONS(1723), - [anon_sym_DQUOTE] = ACTIONS(1723), - [sym__str_single_quotes] = ACTIONS(1723), - [sym__str_back_ticks] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1723), - [anon_sym_PLUS] = ACTIONS(1721), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(247), - }, - [339] = { - [sym_path] = STATE(420), - [sym_comment] = STATE(339), - [aux_sym_cell_path_repeat1] = STATE(323), - [anon_sym_export] = ACTIONS(951), - [anon_sym_alias] = ACTIONS(951), - [anon_sym_let] = ACTIONS(951), - [anon_sym_let_DASHenv] = ACTIONS(951), - [anon_sym_mut] = ACTIONS(951), - [anon_sym_const] = ACTIONS(951), - [aux_sym_cmd_identifier_token1] = ACTIONS(951), - [aux_sym_cmd_identifier_token2] = ACTIONS(951), - [aux_sym_cmd_identifier_token3] = ACTIONS(951), - [aux_sym_cmd_identifier_token4] = ACTIONS(951), - [aux_sym_cmd_identifier_token5] = ACTIONS(951), - [aux_sym_cmd_identifier_token6] = ACTIONS(951), - [aux_sym_cmd_identifier_token7] = ACTIONS(951), - [aux_sym_cmd_identifier_token8] = ACTIONS(951), - [aux_sym_cmd_identifier_token9] = ACTIONS(951), - [aux_sym_cmd_identifier_token10] = ACTIONS(951), - [aux_sym_cmd_identifier_token11] = ACTIONS(951), - [aux_sym_cmd_identifier_token12] = ACTIONS(951), - [aux_sym_cmd_identifier_token13] = ACTIONS(951), - [aux_sym_cmd_identifier_token14] = ACTIONS(951), - [aux_sym_cmd_identifier_token15] = ACTIONS(951), - [aux_sym_cmd_identifier_token16] = ACTIONS(951), - [aux_sym_cmd_identifier_token17] = ACTIONS(951), - [aux_sym_cmd_identifier_token18] = ACTIONS(951), - [aux_sym_cmd_identifier_token19] = ACTIONS(951), - [aux_sym_cmd_identifier_token20] = ACTIONS(951), - [aux_sym_cmd_identifier_token21] = ACTIONS(951), - [aux_sym_cmd_identifier_token22] = ACTIONS(951), - [aux_sym_cmd_identifier_token23] = ACTIONS(951), - [aux_sym_cmd_identifier_token24] = ACTIONS(951), - [aux_sym_cmd_identifier_token25] = ACTIONS(951), - [aux_sym_cmd_identifier_token26] = ACTIONS(951), - [aux_sym_cmd_identifier_token27] = ACTIONS(951), - [aux_sym_cmd_identifier_token28] = ACTIONS(951), - [aux_sym_cmd_identifier_token29] = ACTIONS(951), - [aux_sym_cmd_identifier_token30] = ACTIONS(951), - [aux_sym_cmd_identifier_token31] = ACTIONS(951), - [aux_sym_cmd_identifier_token32] = ACTIONS(951), - [aux_sym_cmd_identifier_token33] = ACTIONS(951), - [aux_sym_cmd_identifier_token34] = ACTIONS(951), - [aux_sym_cmd_identifier_token35] = ACTIONS(951), - [aux_sym_cmd_identifier_token36] = ACTIONS(951), - [anon_sym_true] = ACTIONS(953), - [anon_sym_false] = ACTIONS(953), - [anon_sym_null] = ACTIONS(953), - [aux_sym_cmd_identifier_token38] = ACTIONS(951), - [aux_sym_cmd_identifier_token39] = ACTIONS(953), - [aux_sym_cmd_identifier_token40] = ACTIONS(953), - [anon_sym_def] = ACTIONS(951), - [anon_sym_export_DASHenv] = ACTIONS(951), - [anon_sym_extern] = ACTIONS(951), - [anon_sym_module] = ACTIONS(951), - [anon_sym_use] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(953), - [anon_sym_DOLLAR] = ACTIONS(953), - [anon_sym_error] = ACTIONS(951), - [anon_sym_list] = ACTIONS(951), - [anon_sym_DASH] = ACTIONS(951), - [anon_sym_break] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(951), - [anon_sym_for] = ACTIONS(951), - [anon_sym_in] = ACTIONS(951), - [anon_sym_loop] = ACTIONS(951), - [anon_sym_make] = ACTIONS(951), - [anon_sym_while] = ACTIONS(951), - [anon_sym_do] = ACTIONS(951), - [anon_sym_if] = ACTIONS(951), - [anon_sym_else] = ACTIONS(951), - [anon_sym_match] = ACTIONS(951), - [anon_sym_RBRACE] = ACTIONS(953), - [anon_sym_try] = ACTIONS(951), - [anon_sym_catch] = ACTIONS(951), - [anon_sym_return] = ACTIONS(951), - [anon_sym_source] = ACTIONS(951), - [anon_sym_source_DASHenv] = ACTIONS(951), - [anon_sym_register] = ACTIONS(951), - [anon_sym_hide] = ACTIONS(951), - [anon_sym_hide_DASHenv] = ACTIONS(951), - [anon_sym_overlay] = ACTIONS(951), - [anon_sym_new] = ACTIONS(951), - [anon_sym_as] = ACTIONS(951), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(953), - [anon_sym_DOT] = ACTIONS(1688), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(953), - [aux_sym__val_number_decimal_token1] = ACTIONS(951), - [aux_sym__val_number_decimal_token2] = ACTIONS(953), - [aux_sym__val_number_decimal_token3] = ACTIONS(953), - [aux_sym__val_number_decimal_token4] = ACTIONS(953), - [aux_sym__val_number_token1] = ACTIONS(953), - [aux_sym__val_number_token2] = ACTIONS(953), - [aux_sym__val_number_token3] = ACTIONS(953), - [anon_sym_DQUOTE] = ACTIONS(953), - [sym__str_single_quotes] = ACTIONS(953), - [sym__str_back_ticks] = ACTIONS(953), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(953), - [aux_sym_record_entry_token1] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(951), - [anon_sym_POUND] = ACTIONS(247), + [306] = { + [sym_comment] = STATE(306), + [anon_sym_export] = ACTIONS(1052), + [anon_sym_alias] = ACTIONS(1052), + [anon_sym_let] = ACTIONS(1052), + [anon_sym_let_DASHenv] = ACTIONS(1052), + [anon_sym_mut] = ACTIONS(1052), + [anon_sym_const] = ACTIONS(1052), + [aux_sym_cmd_identifier_token1] = ACTIONS(1052), + [aux_sym_cmd_identifier_token2] = ACTIONS(1052), + [aux_sym_cmd_identifier_token3] = ACTIONS(1052), + [aux_sym_cmd_identifier_token4] = ACTIONS(1052), + [aux_sym_cmd_identifier_token5] = ACTIONS(1052), + [aux_sym_cmd_identifier_token6] = ACTIONS(1052), + [aux_sym_cmd_identifier_token7] = ACTIONS(1052), + [aux_sym_cmd_identifier_token8] = ACTIONS(1052), + [aux_sym_cmd_identifier_token9] = ACTIONS(1052), + [aux_sym_cmd_identifier_token10] = ACTIONS(1052), + [aux_sym_cmd_identifier_token11] = ACTIONS(1052), + [aux_sym_cmd_identifier_token12] = ACTIONS(1052), + [aux_sym_cmd_identifier_token13] = ACTIONS(1052), + [aux_sym_cmd_identifier_token14] = ACTIONS(1052), + [aux_sym_cmd_identifier_token15] = ACTIONS(1052), + [aux_sym_cmd_identifier_token16] = ACTIONS(1052), + [aux_sym_cmd_identifier_token17] = ACTIONS(1052), + [aux_sym_cmd_identifier_token18] = ACTIONS(1052), + [aux_sym_cmd_identifier_token19] = ACTIONS(1052), + [aux_sym_cmd_identifier_token20] = ACTIONS(1052), + [aux_sym_cmd_identifier_token21] = ACTIONS(1052), + [aux_sym_cmd_identifier_token22] = ACTIONS(1052), + [aux_sym_cmd_identifier_token23] = ACTIONS(1052), + [aux_sym_cmd_identifier_token24] = ACTIONS(1052), + [aux_sym_cmd_identifier_token25] = ACTIONS(1052), + [aux_sym_cmd_identifier_token26] = ACTIONS(1052), + [aux_sym_cmd_identifier_token27] = ACTIONS(1052), + [aux_sym_cmd_identifier_token28] = ACTIONS(1052), + [aux_sym_cmd_identifier_token29] = ACTIONS(1052), + [aux_sym_cmd_identifier_token30] = ACTIONS(1052), + [aux_sym_cmd_identifier_token31] = ACTIONS(1052), + [aux_sym_cmd_identifier_token32] = ACTIONS(1052), + [aux_sym_cmd_identifier_token33] = ACTIONS(1052), + [aux_sym_cmd_identifier_token34] = ACTIONS(1052), + [aux_sym_cmd_identifier_token35] = ACTIONS(1052), + [aux_sym_cmd_identifier_token36] = ACTIONS(1052), + [anon_sym_true] = ACTIONS(1052), + [anon_sym_false] = ACTIONS(1052), + [anon_sym_null] = ACTIONS(1052), + [aux_sym_cmd_identifier_token38] = ACTIONS(1052), + [aux_sym_cmd_identifier_token39] = ACTIONS(1052), + [aux_sym_cmd_identifier_token40] = ACTIONS(1052), + [anon_sym_def] = ACTIONS(1052), + [anon_sym_export_DASHenv] = ACTIONS(1052), + [anon_sym_extern] = ACTIONS(1052), + [anon_sym_module] = ACTIONS(1052), + [anon_sym_use] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(1052), + [anon_sym_error] = ACTIONS(1052), + [anon_sym_list] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_break] = ACTIONS(1052), + [anon_sym_continue] = ACTIONS(1052), + [anon_sym_for] = ACTIONS(1052), + [anon_sym_in] = ACTIONS(1052), + [anon_sym_loop] = ACTIONS(1052), + [anon_sym_make] = ACTIONS(1052), + [anon_sym_while] = ACTIONS(1052), + [anon_sym_do] = ACTIONS(1052), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_else] = ACTIONS(1052), + [anon_sym_match] = ACTIONS(1052), + [anon_sym_RBRACE] = ACTIONS(1052), + [anon_sym_try] = ACTIONS(1052), + [anon_sym_catch] = ACTIONS(1052), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_source] = ACTIONS(1052), + [anon_sym_source_DASHenv] = ACTIONS(1052), + [anon_sym_register] = ACTIONS(1052), + [anon_sym_hide] = ACTIONS(1052), + [anon_sym_hide_DASHenv] = ACTIONS(1052), + [anon_sym_overlay] = ACTIONS(1052), + [anon_sym_new] = ACTIONS(1052), + [anon_sym_as] = ACTIONS(1052), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1052), + [anon_sym_DOT_DOT2] = ACTIONS(1052), + [anon_sym_DOT] = ACTIONS(1052), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1054), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1052), + [aux_sym__val_number_decimal_token1] = ACTIONS(1052), + [aux_sym__val_number_decimal_token2] = ACTIONS(1052), + [aux_sym__val_number_decimal_token3] = ACTIONS(1052), + [aux_sym__val_number_decimal_token4] = ACTIONS(1052), + [aux_sym__val_number_token1] = ACTIONS(1052), + [aux_sym__val_number_token2] = ACTIONS(1052), + [aux_sym__val_number_token3] = ACTIONS(1052), + [anon_sym_DQUOTE] = ACTIONS(1052), + [sym__str_single_quotes] = ACTIONS(1052), + [sym__str_back_ticks] = ACTIONS(1052), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1052), + [sym__entry_separator] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_POUND] = ACTIONS(3), }, - [340] = { - [sym_cell_path] = STATE(489), - [sym_path] = STATE(472), - [sym_comment] = STATE(340), - [aux_sym_cell_path_repeat1] = STATE(386), + [307] = { + [sym_cell_path] = STATE(530), + [sym_path] = STATE(482), + [sym_comment] = STATE(307), + [aux_sym_cell_path_repeat1] = STATE(381), [anon_sym_export] = ACTIONS(1859), [anon_sym_alias] = ACTIONS(1859), [anon_sym_let] = ACTIONS(1859), @@ -117732,7 +110214,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(1859), [anon_sym_as] = ACTIONS(1859), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1859), - [anon_sym_DOT] = ACTIONS(1743), + [anon_sym_DOT] = ACTIONS(1831), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1859), [aux_sym__val_number_decimal_token1] = ACTIONS(1859), [aux_sym__val_number_decimal_token2] = ACTIONS(1859), @@ -117749,11 +110231,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1859), [anon_sym_POUND] = ACTIONS(3), }, - [341] = { - [sym_cell_path] = STATE(491), - [sym_path] = STATE(472), - [sym_comment] = STATE(341), - [aux_sym_cell_path_repeat1] = STATE(386), + [308] = { + [sym_comment] = STATE(308), + [anon_sym_export] = ACTIONS(1643), + [anon_sym_alias] = ACTIONS(1643), + [anon_sym_let] = ACTIONS(1643), + [anon_sym_let_DASHenv] = ACTIONS(1643), + [anon_sym_mut] = ACTIONS(1643), + [anon_sym_const] = ACTIONS(1643), + [aux_sym_cmd_identifier_token1] = ACTIONS(1643), + [aux_sym_cmd_identifier_token2] = ACTIONS(1643), + [aux_sym_cmd_identifier_token3] = ACTIONS(1643), + [aux_sym_cmd_identifier_token4] = ACTIONS(1643), + [aux_sym_cmd_identifier_token5] = ACTIONS(1643), + [aux_sym_cmd_identifier_token6] = ACTIONS(1643), + [aux_sym_cmd_identifier_token7] = ACTIONS(1643), + [aux_sym_cmd_identifier_token8] = ACTIONS(1643), + [aux_sym_cmd_identifier_token9] = ACTIONS(1643), + [aux_sym_cmd_identifier_token10] = ACTIONS(1643), + [aux_sym_cmd_identifier_token11] = ACTIONS(1643), + [aux_sym_cmd_identifier_token12] = ACTIONS(1643), + [aux_sym_cmd_identifier_token13] = ACTIONS(1643), + [aux_sym_cmd_identifier_token14] = ACTIONS(1643), + [aux_sym_cmd_identifier_token15] = ACTIONS(1643), + [aux_sym_cmd_identifier_token16] = ACTIONS(1643), + [aux_sym_cmd_identifier_token17] = ACTIONS(1643), + [aux_sym_cmd_identifier_token18] = ACTIONS(1643), + [aux_sym_cmd_identifier_token19] = ACTIONS(1643), + [aux_sym_cmd_identifier_token20] = ACTIONS(1643), + [aux_sym_cmd_identifier_token21] = ACTIONS(1643), + [aux_sym_cmd_identifier_token22] = ACTIONS(1643), + [aux_sym_cmd_identifier_token23] = ACTIONS(1643), + [aux_sym_cmd_identifier_token24] = ACTIONS(1643), + [aux_sym_cmd_identifier_token25] = ACTIONS(1643), + [aux_sym_cmd_identifier_token26] = ACTIONS(1643), + [aux_sym_cmd_identifier_token27] = ACTIONS(1643), + [aux_sym_cmd_identifier_token28] = ACTIONS(1643), + [aux_sym_cmd_identifier_token29] = ACTIONS(1643), + [aux_sym_cmd_identifier_token30] = ACTIONS(1643), + [aux_sym_cmd_identifier_token31] = ACTIONS(1643), + [aux_sym_cmd_identifier_token32] = ACTIONS(1643), + [aux_sym_cmd_identifier_token33] = ACTIONS(1643), + [aux_sym_cmd_identifier_token34] = ACTIONS(1643), + [aux_sym_cmd_identifier_token35] = ACTIONS(1643), + [aux_sym_cmd_identifier_token36] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [aux_sym_cmd_identifier_token38] = ACTIONS(1643), + [aux_sym_cmd_identifier_token39] = ACTIONS(1645), + [aux_sym_cmd_identifier_token40] = ACTIONS(1645), + [anon_sym_def] = ACTIONS(1643), + [anon_sym_export_DASHenv] = ACTIONS(1643), + [anon_sym_extern] = ACTIONS(1643), + [anon_sym_module] = ACTIONS(1643), + [anon_sym_use] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(1645), + [anon_sym_error] = ACTIONS(1643), + [anon_sym_list] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_break] = ACTIONS(1643), + [anon_sym_continue] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_loop] = ACTIONS(1643), + [anon_sym_make] = ACTIONS(1643), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_do] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_else] = ACTIONS(1643), + [anon_sym_match] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1645), + [anon_sym_try] = ACTIONS(1643), + [anon_sym_catch] = ACTIONS(1643), + [anon_sym_return] = ACTIONS(1643), + [anon_sym_source] = ACTIONS(1643), + [anon_sym_source_DASHenv] = ACTIONS(1643), + [anon_sym_register] = ACTIONS(1643), + [anon_sym_hide] = ACTIONS(1643), + [anon_sym_hide_DASHenv] = ACTIONS(1643), + [anon_sym_overlay] = ACTIONS(1643), + [anon_sym_new] = ACTIONS(1643), + [anon_sym_as] = ACTIONS(1643), + [anon_sym_LPAREN2] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1645), + [anon_sym_DOT_DOT2] = ACTIONS(1643), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1645), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1645), + [aux_sym__val_number_decimal_token3] = ACTIONS(1645), + [aux_sym__val_number_decimal_token4] = ACTIONS(1645), + [aux_sym__val_number_token1] = ACTIONS(1645), + [aux_sym__val_number_token2] = ACTIONS(1645), + [aux_sym__val_number_token3] = ACTIONS(1645), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym__str_single_quotes] = ACTIONS(1645), + [sym__str_back_ticks] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1645), + [anon_sym_PLUS] = ACTIONS(1643), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1643), + [anon_sym_POUND] = ACTIONS(247), + }, + [309] = { + [sym_cell_path] = STATE(531), + [sym_path] = STATE(482), + [sym_comment] = STATE(309), + [aux_sym_cell_path_repeat1] = STATE(381), [anon_sym_export] = ACTIONS(1863), [anon_sym_alias] = ACTIONS(1863), [anon_sym_let] = ACTIONS(1863), @@ -117836,7 +110422,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(1863), [anon_sym_as] = ACTIONS(1863), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1863), - [anon_sym_DOT] = ACTIONS(1743), + [anon_sym_DOT] = ACTIONS(1831), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1863), [aux_sym__val_number_decimal_token1] = ACTIONS(1863), [aux_sym__val_number_decimal_token2] = ACTIONS(1863), @@ -117853,11 +110439,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1863), [anon_sym_POUND] = ACTIONS(3), }, - [342] = { - [sym_cell_path] = STATE(499), - [sym_path] = STATE(472), - [sym_comment] = STATE(342), - [aux_sym_cell_path_repeat1] = STATE(386), + [310] = { + [sym_cell_path] = STATE(532), + [sym_path] = STATE(482), + [sym_comment] = STATE(310), + [aux_sym_cell_path_repeat1] = STATE(381), [anon_sym_export] = ACTIONS(1867), [anon_sym_alias] = ACTIONS(1867), [anon_sym_let] = ACTIONS(1867), @@ -117940,7 +110526,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(1867), [anon_sym_as] = ACTIONS(1867), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1867), - [anon_sym_DOT] = ACTIONS(1743), + [anon_sym_DOT] = ACTIONS(1831), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1867), [aux_sym__val_number_decimal_token1] = ACTIONS(1867), [aux_sym__val_number_decimal_token2] = ACTIONS(1867), @@ -117957,115 +110543,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1867), [anon_sym_POUND] = ACTIONS(3), }, - [343] = { - [sym_comment] = STATE(343), - [anon_sym_export] = ACTIONS(1265), - [anon_sym_alias] = ACTIONS(1265), - [anon_sym_let] = ACTIONS(1265), - [anon_sym_let_DASHenv] = ACTIONS(1265), - [anon_sym_mut] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1265), - [aux_sym_cmd_identifier_token1] = ACTIONS(1265), - [aux_sym_cmd_identifier_token2] = ACTIONS(1265), - [aux_sym_cmd_identifier_token3] = ACTIONS(1265), - [aux_sym_cmd_identifier_token4] = ACTIONS(1265), - [aux_sym_cmd_identifier_token5] = ACTIONS(1265), - [aux_sym_cmd_identifier_token6] = ACTIONS(1265), - [aux_sym_cmd_identifier_token7] = ACTIONS(1265), - [aux_sym_cmd_identifier_token8] = ACTIONS(1265), - [aux_sym_cmd_identifier_token9] = ACTIONS(1265), - [aux_sym_cmd_identifier_token10] = ACTIONS(1265), - [aux_sym_cmd_identifier_token11] = ACTIONS(1265), - [aux_sym_cmd_identifier_token12] = ACTIONS(1265), - [aux_sym_cmd_identifier_token13] = ACTIONS(1265), - [aux_sym_cmd_identifier_token14] = ACTIONS(1265), - [aux_sym_cmd_identifier_token15] = ACTIONS(1265), - [aux_sym_cmd_identifier_token16] = ACTIONS(1265), - [aux_sym_cmd_identifier_token17] = ACTIONS(1265), - [aux_sym_cmd_identifier_token18] = ACTIONS(1265), - [aux_sym_cmd_identifier_token19] = ACTIONS(1265), - [aux_sym_cmd_identifier_token20] = ACTIONS(1265), - [aux_sym_cmd_identifier_token21] = ACTIONS(1265), - [aux_sym_cmd_identifier_token22] = ACTIONS(1265), - [aux_sym_cmd_identifier_token23] = ACTIONS(1265), - [aux_sym_cmd_identifier_token24] = ACTIONS(1268), - [aux_sym_cmd_identifier_token25] = ACTIONS(1265), - [aux_sym_cmd_identifier_token26] = ACTIONS(1268), - [aux_sym_cmd_identifier_token27] = ACTIONS(1265), - [aux_sym_cmd_identifier_token28] = ACTIONS(1265), - [aux_sym_cmd_identifier_token29] = ACTIONS(1265), - [aux_sym_cmd_identifier_token30] = ACTIONS(1265), - [aux_sym_cmd_identifier_token31] = ACTIONS(1268), - [aux_sym_cmd_identifier_token32] = ACTIONS(1268), - [aux_sym_cmd_identifier_token33] = ACTIONS(1268), - [aux_sym_cmd_identifier_token34] = ACTIONS(1268), - [aux_sym_cmd_identifier_token35] = ACTIONS(1268), - [aux_sym_cmd_identifier_token36] = ACTIONS(1265), - [anon_sym_true] = ACTIONS(1268), - [anon_sym_false] = ACTIONS(1268), - [anon_sym_null] = ACTIONS(1268), - [aux_sym_cmd_identifier_token38] = ACTIONS(1265), - [aux_sym_cmd_identifier_token39] = ACTIONS(1268), - [aux_sym_cmd_identifier_token40] = ACTIONS(1268), - [sym__newline] = ACTIONS(1268), - [anon_sym_SEMI] = ACTIONS(1271), - [anon_sym_def] = ACTIONS(1265), - [anon_sym_export_DASHenv] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1265), - [anon_sym_module] = ACTIONS(1265), - [anon_sym_use] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1268), - [anon_sym_LPAREN] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(1265), - [anon_sym_error] = ACTIONS(1265), - [anon_sym_DASH] = ACTIONS(1265), - [anon_sym_break] = ACTIONS(1265), - [anon_sym_continue] = ACTIONS(1265), - [anon_sym_for] = ACTIONS(1265), - [anon_sym_loop] = ACTIONS(1265), - [anon_sym_while] = ACTIONS(1265), - [anon_sym_do] = ACTIONS(1265), - [anon_sym_if] = ACTIONS(1265), - [anon_sym_match] = ACTIONS(1265), - [aux_sym_ctrl_match_token1] = ACTIONS(1268), - [anon_sym_DOT_DOT] = ACTIONS(1265), - [anon_sym_try] = ACTIONS(1265), - [anon_sym_return] = ACTIONS(1265), - [anon_sym_source] = ACTIONS(1265), - [anon_sym_source_DASHenv] = ACTIONS(1265), - [anon_sym_register] = ACTIONS(1265), - [anon_sym_hide] = ACTIONS(1265), - [anon_sym_hide_DASHenv] = ACTIONS(1265), - [anon_sym_overlay] = ACTIONS(1265), - [anon_sym_where] = ACTIONS(1268), - [aux_sym_expr_unary_token1] = ACTIONS(1268), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1268), - [anon_sym_DOT_DOT_LT] = ACTIONS(1268), - [aux_sym__val_number_decimal_token1] = ACTIONS(1265), - [aux_sym__val_number_decimal_token2] = ACTIONS(1268), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), - [aux_sym__val_number_token1] = ACTIONS(1268), - [aux_sym__val_number_token2] = ACTIONS(1268), - [aux_sym__val_number_token3] = ACTIONS(1268), - [anon_sym_0b] = ACTIONS(1265), - [anon_sym_0o] = ACTIONS(1265), - [anon_sym_0x] = ACTIONS(1265), - [sym_val_date] = ACTIONS(1268), - [anon_sym_DQUOTE] = ACTIONS(1268), - [sym__str_single_quotes] = ACTIONS(1268), - [sym__str_back_ticks] = ACTIONS(1268), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1268), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1268), - [aux_sym_env_var_token1] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_POUND] = ACTIONS(247), - }, - [344] = { - [sym_cell_path] = STATE(537), - [sym_path] = STATE(472), - [sym_comment] = STATE(344), - [aux_sym_cell_path_repeat1] = STATE(386), + [311] = { + [sym_cell_path] = STATE(533), + [sym_path] = STATE(482), + [sym_comment] = STATE(311), + [aux_sym_cell_path_repeat1] = STATE(381), [anon_sym_export] = ACTIONS(1871), [anon_sym_alias] = ACTIONS(1871), [anon_sym_let] = ACTIONS(1871), @@ -118148,7 +110630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(1871), [anon_sym_as] = ACTIONS(1871), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1871), - [anon_sym_DOT] = ACTIONS(1743), + [anon_sym_DOT] = ACTIONS(1831), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1871), [aux_sym__val_number_decimal_token1] = ACTIONS(1871), [aux_sym__val_number_decimal_token2] = ACTIONS(1871), @@ -118165,11 +110647,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1871), [anon_sym_POUND] = ACTIONS(3), }, - [345] = { - [sym_cell_path] = STATE(538), - [sym_path] = STATE(472), - [sym_comment] = STATE(345), - [aux_sym_cell_path_repeat1] = STATE(386), + [312] = { + [sym_comment] = STATE(312), + [anon_sym_export] = ACTIONS(1631), + [anon_sym_alias] = ACTIONS(1631), + [anon_sym_let] = ACTIONS(1631), + [anon_sym_let_DASHenv] = ACTIONS(1631), + [anon_sym_mut] = ACTIONS(1631), + [anon_sym_const] = ACTIONS(1631), + [aux_sym_cmd_identifier_token1] = ACTIONS(1631), + [aux_sym_cmd_identifier_token2] = ACTIONS(1631), + [aux_sym_cmd_identifier_token3] = ACTIONS(1631), + [aux_sym_cmd_identifier_token4] = ACTIONS(1631), + [aux_sym_cmd_identifier_token5] = ACTIONS(1631), + [aux_sym_cmd_identifier_token6] = ACTIONS(1631), + [aux_sym_cmd_identifier_token7] = ACTIONS(1631), + [aux_sym_cmd_identifier_token8] = ACTIONS(1631), + [aux_sym_cmd_identifier_token9] = ACTIONS(1631), + [aux_sym_cmd_identifier_token10] = ACTIONS(1631), + [aux_sym_cmd_identifier_token11] = ACTIONS(1631), + [aux_sym_cmd_identifier_token12] = ACTIONS(1631), + [aux_sym_cmd_identifier_token13] = ACTIONS(1631), + [aux_sym_cmd_identifier_token14] = ACTIONS(1631), + [aux_sym_cmd_identifier_token15] = ACTIONS(1631), + [aux_sym_cmd_identifier_token16] = ACTIONS(1631), + [aux_sym_cmd_identifier_token17] = ACTIONS(1631), + [aux_sym_cmd_identifier_token18] = ACTIONS(1631), + [aux_sym_cmd_identifier_token19] = ACTIONS(1631), + [aux_sym_cmd_identifier_token20] = ACTIONS(1631), + [aux_sym_cmd_identifier_token21] = ACTIONS(1631), + [aux_sym_cmd_identifier_token22] = ACTIONS(1631), + [aux_sym_cmd_identifier_token23] = ACTIONS(1631), + [aux_sym_cmd_identifier_token24] = ACTIONS(1631), + [aux_sym_cmd_identifier_token25] = ACTIONS(1631), + [aux_sym_cmd_identifier_token26] = ACTIONS(1631), + [aux_sym_cmd_identifier_token27] = ACTIONS(1631), + [aux_sym_cmd_identifier_token28] = ACTIONS(1631), + [aux_sym_cmd_identifier_token29] = ACTIONS(1631), + [aux_sym_cmd_identifier_token30] = ACTIONS(1631), + [aux_sym_cmd_identifier_token31] = ACTIONS(1631), + [aux_sym_cmd_identifier_token32] = ACTIONS(1631), + [aux_sym_cmd_identifier_token33] = ACTIONS(1631), + [aux_sym_cmd_identifier_token34] = ACTIONS(1631), + [aux_sym_cmd_identifier_token35] = ACTIONS(1631), + [aux_sym_cmd_identifier_token36] = ACTIONS(1631), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [aux_sym_cmd_identifier_token38] = ACTIONS(1631), + [aux_sym_cmd_identifier_token39] = ACTIONS(1633), + [aux_sym_cmd_identifier_token40] = ACTIONS(1633), + [anon_sym_def] = ACTIONS(1631), + [anon_sym_export_DASHenv] = ACTIONS(1631), + [anon_sym_extern] = ACTIONS(1631), + [anon_sym_module] = ACTIONS(1631), + [anon_sym_use] = ACTIONS(1631), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_DOLLAR] = ACTIONS(1633), + [anon_sym_error] = ACTIONS(1631), + [anon_sym_list] = ACTIONS(1631), + [anon_sym_DASH] = ACTIONS(1631), + [anon_sym_break] = ACTIONS(1631), + [anon_sym_continue] = ACTIONS(1631), + [anon_sym_for] = ACTIONS(1631), + [anon_sym_in] = ACTIONS(1631), + [anon_sym_loop] = ACTIONS(1631), + [anon_sym_make] = ACTIONS(1631), + [anon_sym_while] = ACTIONS(1631), + [anon_sym_do] = ACTIONS(1631), + [anon_sym_if] = ACTIONS(1631), + [anon_sym_else] = ACTIONS(1631), + [anon_sym_match] = ACTIONS(1631), + [anon_sym_RBRACE] = ACTIONS(1633), + [anon_sym_try] = ACTIONS(1631), + [anon_sym_catch] = ACTIONS(1631), + [anon_sym_return] = ACTIONS(1631), + [anon_sym_source] = ACTIONS(1631), + [anon_sym_source_DASHenv] = ACTIONS(1631), + [anon_sym_register] = ACTIONS(1631), + [anon_sym_hide] = ACTIONS(1631), + [anon_sym_hide_DASHenv] = ACTIONS(1631), + [anon_sym_overlay] = ACTIONS(1631), + [anon_sym_new] = ACTIONS(1631), + [anon_sym_as] = ACTIONS(1631), + [anon_sym_LPAREN2] = ACTIONS(1633), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1633), + [anon_sym_DOT_DOT2] = ACTIONS(1631), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1633), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1633), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1633), + [aux_sym__val_number_decimal_token1] = ACTIONS(1631), + [aux_sym__val_number_decimal_token2] = ACTIONS(1633), + [aux_sym__val_number_decimal_token3] = ACTIONS(1633), + [aux_sym__val_number_decimal_token4] = ACTIONS(1633), + [aux_sym__val_number_token1] = ACTIONS(1633), + [aux_sym__val_number_token2] = ACTIONS(1633), + [aux_sym__val_number_token3] = ACTIONS(1633), + [anon_sym_DQUOTE] = ACTIONS(1633), + [sym__str_single_quotes] = ACTIONS(1633), + [sym__str_back_ticks] = ACTIONS(1633), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1631), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1631), + [anon_sym_POUND] = ACTIONS(247), + }, + [313] = { + [sym_cell_path] = STATE(534), + [sym_path] = STATE(482), + [sym_comment] = STATE(313), + [aux_sym_cell_path_repeat1] = STATE(381), [anon_sym_export] = ACTIONS(1875), [anon_sym_alias] = ACTIONS(1875), [anon_sym_let] = ACTIONS(1875), @@ -118252,7 +110838,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(1875), [anon_sym_as] = ACTIONS(1875), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1875), - [anon_sym_DOT] = ACTIONS(1743), + [anon_sym_DOT] = ACTIONS(1831), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1875), [aux_sym__val_number_decimal_token1] = ACTIONS(1875), [aux_sym__val_number_decimal_token2] = ACTIONS(1875), @@ -118269,11 +110855,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1875), [anon_sym_POUND] = ACTIONS(3), }, - [346] = { - [sym_cell_path] = STATE(539), - [sym_path] = STATE(472), - [sym_comment] = STATE(346), - [aux_sym_cell_path_repeat1] = STATE(386), + [314] = { + [sym_cell_path] = STATE(553), + [sym_path] = STATE(482), + [sym_comment] = STATE(314), + [aux_sym_cell_path_repeat1] = STATE(381), [anon_sym_export] = ACTIONS(1879), [anon_sym_alias] = ACTIONS(1879), [anon_sym_let] = ACTIONS(1879), @@ -118356,7 +110942,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(1879), [anon_sym_as] = ACTIONS(1879), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1879), - [anon_sym_DOT] = ACTIONS(1743), + [anon_sym_DOT] = ACTIONS(1831), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1879), [aux_sym__val_number_decimal_token1] = ACTIONS(1879), [aux_sym__val_number_decimal_token2] = ACTIONS(1879), @@ -118373,11 +110959,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1879), [anon_sym_POUND] = ACTIONS(3), }, - [347] = { - [sym_cell_path] = STATE(540), - [sym_path] = STATE(472), - [sym_comment] = STATE(347), - [aux_sym_cell_path_repeat1] = STATE(386), + [315] = { + [sym_path] = STATE(431), + [sym_comment] = STATE(315), + [aux_sym_cell_path_repeat1] = STATE(317), + [anon_sym_export] = ACTIONS(1017), + [anon_sym_alias] = ACTIONS(1017), + [anon_sym_let] = ACTIONS(1017), + [anon_sym_let_DASHenv] = ACTIONS(1017), + [anon_sym_mut] = ACTIONS(1017), + [anon_sym_const] = ACTIONS(1017), + [aux_sym_cmd_identifier_token1] = ACTIONS(1017), + [aux_sym_cmd_identifier_token2] = ACTIONS(1017), + [aux_sym_cmd_identifier_token3] = ACTIONS(1017), + [aux_sym_cmd_identifier_token4] = ACTIONS(1017), + [aux_sym_cmd_identifier_token5] = ACTIONS(1017), + [aux_sym_cmd_identifier_token6] = ACTIONS(1017), + [aux_sym_cmd_identifier_token7] = ACTIONS(1017), + [aux_sym_cmd_identifier_token8] = ACTIONS(1017), + [aux_sym_cmd_identifier_token9] = ACTIONS(1017), + [aux_sym_cmd_identifier_token10] = ACTIONS(1017), + [aux_sym_cmd_identifier_token11] = ACTIONS(1017), + [aux_sym_cmd_identifier_token12] = ACTIONS(1017), + [aux_sym_cmd_identifier_token13] = ACTIONS(1017), + [aux_sym_cmd_identifier_token14] = ACTIONS(1017), + [aux_sym_cmd_identifier_token15] = ACTIONS(1017), + [aux_sym_cmd_identifier_token16] = ACTIONS(1017), + [aux_sym_cmd_identifier_token17] = ACTIONS(1017), + [aux_sym_cmd_identifier_token18] = ACTIONS(1017), + [aux_sym_cmd_identifier_token19] = ACTIONS(1017), + [aux_sym_cmd_identifier_token20] = ACTIONS(1017), + [aux_sym_cmd_identifier_token21] = ACTIONS(1017), + [aux_sym_cmd_identifier_token22] = ACTIONS(1017), + [aux_sym_cmd_identifier_token23] = ACTIONS(1017), + [aux_sym_cmd_identifier_token24] = ACTIONS(1017), + [aux_sym_cmd_identifier_token25] = ACTIONS(1017), + [aux_sym_cmd_identifier_token26] = ACTIONS(1017), + [aux_sym_cmd_identifier_token27] = ACTIONS(1017), + [aux_sym_cmd_identifier_token28] = ACTIONS(1017), + [aux_sym_cmd_identifier_token29] = ACTIONS(1017), + [aux_sym_cmd_identifier_token30] = ACTIONS(1017), + [aux_sym_cmd_identifier_token31] = ACTIONS(1017), + [aux_sym_cmd_identifier_token32] = ACTIONS(1017), + [aux_sym_cmd_identifier_token33] = ACTIONS(1017), + [aux_sym_cmd_identifier_token34] = ACTIONS(1017), + [aux_sym_cmd_identifier_token35] = ACTIONS(1017), + [aux_sym_cmd_identifier_token36] = ACTIONS(1017), + [anon_sym_true] = ACTIONS(1019), + [anon_sym_false] = ACTIONS(1019), + [anon_sym_null] = ACTIONS(1019), + [aux_sym_cmd_identifier_token38] = ACTIONS(1017), + [aux_sym_cmd_identifier_token39] = ACTIONS(1019), + [aux_sym_cmd_identifier_token40] = ACTIONS(1019), + [anon_sym_def] = ACTIONS(1017), + [anon_sym_export_DASHenv] = ACTIONS(1017), + [anon_sym_extern] = ACTIONS(1017), + [anon_sym_module] = ACTIONS(1017), + [anon_sym_use] = ACTIONS(1017), + [anon_sym_LPAREN] = ACTIONS(1019), + [anon_sym_COMMA] = ACTIONS(1019), + [anon_sym_DOLLAR] = ACTIONS(1019), + [anon_sym_error] = ACTIONS(1017), + [anon_sym_list] = ACTIONS(1017), + [anon_sym_DASH] = ACTIONS(1017), + [anon_sym_break] = ACTIONS(1017), + [anon_sym_continue] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(1017), + [anon_sym_in] = ACTIONS(1017), + [anon_sym_loop] = ACTIONS(1017), + [anon_sym_make] = ACTIONS(1017), + [anon_sym_while] = ACTIONS(1017), + [anon_sym_do] = ACTIONS(1017), + [anon_sym_if] = ACTIONS(1017), + [anon_sym_else] = ACTIONS(1017), + [anon_sym_match] = ACTIONS(1017), + [anon_sym_RBRACE] = ACTIONS(1019), + [anon_sym_try] = ACTIONS(1017), + [anon_sym_catch] = ACTIONS(1017), + [anon_sym_return] = ACTIONS(1017), + [anon_sym_source] = ACTIONS(1017), + [anon_sym_source_DASHenv] = ACTIONS(1017), + [anon_sym_register] = ACTIONS(1017), + [anon_sym_hide] = ACTIONS(1017), + [anon_sym_hide_DASHenv] = ACTIONS(1017), + [anon_sym_overlay] = ACTIONS(1017), + [anon_sym_new] = ACTIONS(1017), + [anon_sym_as] = ACTIONS(1017), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1019), + [anon_sym_DOT] = ACTIONS(1769), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1019), + [aux_sym__val_number_decimal_token1] = ACTIONS(1017), + [aux_sym__val_number_decimal_token2] = ACTIONS(1019), + [aux_sym__val_number_decimal_token3] = ACTIONS(1019), + [aux_sym__val_number_decimal_token4] = ACTIONS(1019), + [aux_sym__val_number_token1] = ACTIONS(1019), + [aux_sym__val_number_token2] = ACTIONS(1019), + [aux_sym__val_number_token3] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1019), + [sym__str_single_quotes] = ACTIONS(1019), + [sym__str_back_ticks] = ACTIONS(1019), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1019), + [aux_sym_record_entry_token1] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(1017), + [anon_sym_POUND] = ACTIONS(247), + }, + [316] = { + [sym_comment] = STATE(316), [anon_sym_export] = ACTIONS(1883), [anon_sym_alias] = ACTIONS(1883), [anon_sym_let] = ACTIONS(1883), @@ -118407,49 +111094,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token21] = ACTIONS(1883), [aux_sym_cmd_identifier_token22] = ACTIONS(1883), [aux_sym_cmd_identifier_token23] = ACTIONS(1883), - [aux_sym_cmd_identifier_token24] = ACTIONS(1883), + [aux_sym_cmd_identifier_token24] = ACTIONS(1885), [aux_sym_cmd_identifier_token25] = ACTIONS(1883), - [aux_sym_cmd_identifier_token26] = ACTIONS(1883), + [aux_sym_cmd_identifier_token26] = ACTIONS(1885), [aux_sym_cmd_identifier_token27] = ACTIONS(1883), [aux_sym_cmd_identifier_token28] = ACTIONS(1883), [aux_sym_cmd_identifier_token29] = ACTIONS(1883), [aux_sym_cmd_identifier_token30] = ACTIONS(1883), - [aux_sym_cmd_identifier_token31] = ACTIONS(1883), - [aux_sym_cmd_identifier_token32] = ACTIONS(1883), - [aux_sym_cmd_identifier_token33] = ACTIONS(1883), - [aux_sym_cmd_identifier_token34] = ACTIONS(1883), - [aux_sym_cmd_identifier_token35] = ACTIONS(1883), + [aux_sym_cmd_identifier_token31] = ACTIONS(1885), + [aux_sym_cmd_identifier_token32] = ACTIONS(1885), + [aux_sym_cmd_identifier_token33] = ACTIONS(1885), + [aux_sym_cmd_identifier_token34] = ACTIONS(1885), + [aux_sym_cmd_identifier_token35] = ACTIONS(1885), [aux_sym_cmd_identifier_token36] = ACTIONS(1883), - [anon_sym_true] = ACTIONS(1883), - [anon_sym_false] = ACTIONS(1883), - [anon_sym_null] = ACTIONS(1883), + [anon_sym_true] = ACTIONS(1885), + [anon_sym_false] = ACTIONS(1885), + [anon_sym_null] = ACTIONS(1885), [aux_sym_cmd_identifier_token38] = ACTIONS(1883), - [aux_sym_cmd_identifier_token39] = ACTIONS(1883), - [aux_sym_cmd_identifier_token40] = ACTIONS(1883), + [aux_sym_cmd_identifier_token39] = ACTIONS(1885), + [aux_sym_cmd_identifier_token40] = ACTIONS(1885), + [sym__newline] = ACTIONS(1885), + [anon_sym_SEMI] = ACTIONS(1885), [anon_sym_def] = 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_LPAREN] = ACTIONS(1883), + [anon_sym_LBRACK] = ACTIONS(1885), + [anon_sym_LPAREN] = ACTIONS(1885), [anon_sym_DOLLAR] = ACTIONS(1883), [anon_sym_error] = ACTIONS(1883), - [anon_sym_list] = ACTIONS(1883), [anon_sym_DASH] = ACTIONS(1883), [anon_sym_break] = ACTIONS(1883), [anon_sym_continue] = ACTIONS(1883), [anon_sym_for] = ACTIONS(1883), - [anon_sym_in] = ACTIONS(1883), [anon_sym_loop] = ACTIONS(1883), - [anon_sym_make] = ACTIONS(1883), [anon_sym_while] = ACTIONS(1883), [anon_sym_do] = ACTIONS(1883), [anon_sym_if] = ACTIONS(1883), - [anon_sym_else] = ACTIONS(1883), [anon_sym_match] = ACTIONS(1883), - [anon_sym_RBRACE] = ACTIONS(1883), + [aux_sym_ctrl_match_token1] = ACTIONS(1885), + [anon_sym_DOT_DOT] = ACTIONS(1883), [anon_sym_try] = ACTIONS(1883), - [anon_sym_catch] = ACTIONS(1883), [anon_sym_return] = ACTIONS(1883), [anon_sym_source] = ACTIONS(1883), [anon_sym_source_DASHenv] = ACTIONS(1883), @@ -118457,650 +111143,867 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(1883), [anon_sym_hide_DASHenv] = ACTIONS(1883), [anon_sym_overlay] = ACTIONS(1883), - [anon_sym_new] = ACTIONS(1883), - [anon_sym_as] = ACTIONS(1883), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1883), - [anon_sym_DOT] = ACTIONS(1743), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1883), + [anon_sym_where] = ACTIONS(1885), + [aux_sym_expr_unary_token1] = ACTIONS(1885), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1885), + [anon_sym_DOT_DOT_LT] = ACTIONS(1885), [aux_sym__val_number_decimal_token1] = ACTIONS(1883), - [aux_sym__val_number_decimal_token2] = ACTIONS(1883), - [aux_sym__val_number_decimal_token3] = ACTIONS(1883), - [aux_sym__val_number_decimal_token4] = ACTIONS(1883), - [aux_sym__val_number_token1] = ACTIONS(1883), - [aux_sym__val_number_token2] = ACTIONS(1883), - [aux_sym__val_number_token3] = ACTIONS(1883), - [anon_sym_DQUOTE] = ACTIONS(1883), - [sym__str_single_quotes] = ACTIONS(1883), - [sym__str_back_ticks] = ACTIONS(1883), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1883), - [sym__entry_separator] = ACTIONS(1885), - [anon_sym_PLUS] = ACTIONS(1883), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__val_number_decimal_token2] = ACTIONS(1885), + [aux_sym__val_number_decimal_token3] = ACTIONS(1885), + [aux_sym__val_number_decimal_token4] = ACTIONS(1885), + [aux_sym__val_number_token1] = ACTIONS(1885), + [aux_sym__val_number_token2] = ACTIONS(1885), + [aux_sym__val_number_token3] = ACTIONS(1885), + [anon_sym_0b] = ACTIONS(1883), + [anon_sym_0o] = ACTIONS(1883), + [anon_sym_0x] = ACTIONS(1883), + [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), + [aux_sym_env_var_token1] = ACTIONS(1883), + [anon_sym_CARET] = ACTIONS(1885), + [anon_sym_POUND] = ACTIONS(247), }, - [348] = { - [sym_comment] = STATE(348), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_alias] = ACTIONS(1569), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_let_DASHenv] = ACTIONS(1569), - [anon_sym_mut] = ACTIONS(1569), - [anon_sym_const] = ACTIONS(1569), - [aux_sym_cmd_identifier_token1] = ACTIONS(1569), - [aux_sym_cmd_identifier_token2] = ACTIONS(1569), - [aux_sym_cmd_identifier_token3] = ACTIONS(1569), - [aux_sym_cmd_identifier_token4] = ACTIONS(1569), - [aux_sym_cmd_identifier_token5] = ACTIONS(1569), - [aux_sym_cmd_identifier_token6] = ACTIONS(1569), - [aux_sym_cmd_identifier_token7] = ACTIONS(1569), - [aux_sym_cmd_identifier_token8] = ACTIONS(1569), - [aux_sym_cmd_identifier_token9] = ACTIONS(1569), - [aux_sym_cmd_identifier_token10] = ACTIONS(1569), - [aux_sym_cmd_identifier_token11] = ACTIONS(1569), - [aux_sym_cmd_identifier_token12] = ACTIONS(1569), - [aux_sym_cmd_identifier_token13] = ACTIONS(1569), - [aux_sym_cmd_identifier_token14] = ACTIONS(1569), - [aux_sym_cmd_identifier_token15] = ACTIONS(1569), - [aux_sym_cmd_identifier_token16] = ACTIONS(1569), - [aux_sym_cmd_identifier_token17] = ACTIONS(1569), - [aux_sym_cmd_identifier_token18] = ACTIONS(1569), - [aux_sym_cmd_identifier_token19] = ACTIONS(1569), - [aux_sym_cmd_identifier_token20] = ACTIONS(1569), - [aux_sym_cmd_identifier_token21] = ACTIONS(1569), - [aux_sym_cmd_identifier_token22] = ACTIONS(1569), - [aux_sym_cmd_identifier_token23] = ACTIONS(1569), - [aux_sym_cmd_identifier_token24] = ACTIONS(1569), - [aux_sym_cmd_identifier_token25] = ACTIONS(1569), - [aux_sym_cmd_identifier_token26] = ACTIONS(1569), - [aux_sym_cmd_identifier_token27] = ACTIONS(1569), - [aux_sym_cmd_identifier_token28] = ACTIONS(1569), - [aux_sym_cmd_identifier_token29] = ACTIONS(1569), - [aux_sym_cmd_identifier_token30] = ACTIONS(1569), - [aux_sym_cmd_identifier_token31] = ACTIONS(1569), - [aux_sym_cmd_identifier_token32] = ACTIONS(1569), - [aux_sym_cmd_identifier_token33] = ACTIONS(1569), - [aux_sym_cmd_identifier_token34] = ACTIONS(1569), - [aux_sym_cmd_identifier_token35] = ACTIONS(1569), - [aux_sym_cmd_identifier_token36] = ACTIONS(1569), - [anon_sym_true] = ACTIONS(1571), - [anon_sym_false] = ACTIONS(1571), - [anon_sym_null] = ACTIONS(1571), - [aux_sym_cmd_identifier_token38] = ACTIONS(1569), - [aux_sym_cmd_identifier_token39] = ACTIONS(1571), - [aux_sym_cmd_identifier_token40] = ACTIONS(1571), - [anon_sym_def] = ACTIONS(1569), - [anon_sym_export_DASHenv] = ACTIONS(1569), - [anon_sym_extern] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_use] = ACTIONS(1569), - [anon_sym_LPAREN] = ACTIONS(1571), - [anon_sym_DOLLAR] = ACTIONS(1571), - [anon_sym_error] = ACTIONS(1569), - [anon_sym_list] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_break] = ACTIONS(1569), - [anon_sym_continue] = ACTIONS(1569), - [anon_sym_for] = ACTIONS(1569), - [anon_sym_in] = ACTIONS(1569), - [anon_sym_loop] = ACTIONS(1569), - [anon_sym_make] = ACTIONS(1569), - [anon_sym_while] = ACTIONS(1569), - [anon_sym_do] = ACTIONS(1569), - [anon_sym_if] = ACTIONS(1569), - [anon_sym_else] = ACTIONS(1569), - [anon_sym_match] = ACTIONS(1569), - [anon_sym_RBRACE] = ACTIONS(1571), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_catch] = ACTIONS(1569), - [anon_sym_return] = ACTIONS(1569), - [anon_sym_source] = ACTIONS(1569), - [anon_sym_source_DASHenv] = ACTIONS(1569), - [anon_sym_register] = ACTIONS(1569), - [anon_sym_hide] = ACTIONS(1569), - [anon_sym_hide_DASHenv] = ACTIONS(1569), - [anon_sym_overlay] = ACTIONS(1569), - [anon_sym_new] = ACTIONS(1569), - [anon_sym_as] = ACTIONS(1569), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1571), - [anon_sym_DOT_DOT2] = ACTIONS(1569), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1571), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1571), - [aux_sym__immediate_decimal_token1] = ACTIONS(1887), - [aux_sym__immediate_decimal_token2] = ACTIONS(1889), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1571), - [aux_sym__val_number_decimal_token1] = ACTIONS(1569), - [aux_sym__val_number_decimal_token2] = ACTIONS(1571), - [aux_sym__val_number_decimal_token3] = ACTIONS(1571), - [aux_sym__val_number_decimal_token4] = ACTIONS(1571), - [aux_sym__val_number_token1] = ACTIONS(1571), - [aux_sym__val_number_token2] = ACTIONS(1571), - [aux_sym__val_number_token3] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [sym__str_single_quotes] = ACTIONS(1571), - [sym__str_back_ticks] = ACTIONS(1571), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1569), + [317] = { + [sym_path] = STATE(431), + [sym_comment] = STATE(317), + [aux_sym_cell_path_repeat1] = STATE(317), + [anon_sym_export] = ACTIONS(1021), + [anon_sym_alias] = ACTIONS(1021), + [anon_sym_let] = ACTIONS(1021), + [anon_sym_let_DASHenv] = ACTIONS(1021), + [anon_sym_mut] = ACTIONS(1021), + [anon_sym_const] = ACTIONS(1021), + [aux_sym_cmd_identifier_token1] = ACTIONS(1021), + [aux_sym_cmd_identifier_token2] = ACTIONS(1021), + [aux_sym_cmd_identifier_token3] = ACTIONS(1021), + [aux_sym_cmd_identifier_token4] = ACTIONS(1021), + [aux_sym_cmd_identifier_token5] = ACTIONS(1021), + [aux_sym_cmd_identifier_token6] = ACTIONS(1021), + [aux_sym_cmd_identifier_token7] = ACTIONS(1021), + [aux_sym_cmd_identifier_token8] = ACTIONS(1021), + [aux_sym_cmd_identifier_token9] = ACTIONS(1021), + [aux_sym_cmd_identifier_token10] = ACTIONS(1021), + [aux_sym_cmd_identifier_token11] = ACTIONS(1021), + [aux_sym_cmd_identifier_token12] = ACTIONS(1021), + [aux_sym_cmd_identifier_token13] = ACTIONS(1021), + [aux_sym_cmd_identifier_token14] = ACTIONS(1021), + [aux_sym_cmd_identifier_token15] = ACTIONS(1021), + [aux_sym_cmd_identifier_token16] = ACTIONS(1021), + [aux_sym_cmd_identifier_token17] = ACTIONS(1021), + [aux_sym_cmd_identifier_token18] = ACTIONS(1021), + [aux_sym_cmd_identifier_token19] = ACTIONS(1021), + [aux_sym_cmd_identifier_token20] = ACTIONS(1021), + [aux_sym_cmd_identifier_token21] = ACTIONS(1021), + [aux_sym_cmd_identifier_token22] = ACTIONS(1021), + [aux_sym_cmd_identifier_token23] = ACTIONS(1021), + [aux_sym_cmd_identifier_token24] = ACTIONS(1021), + [aux_sym_cmd_identifier_token25] = ACTIONS(1021), + [aux_sym_cmd_identifier_token26] = ACTIONS(1021), + [aux_sym_cmd_identifier_token27] = ACTIONS(1021), + [aux_sym_cmd_identifier_token28] = ACTIONS(1021), + [aux_sym_cmd_identifier_token29] = ACTIONS(1021), + [aux_sym_cmd_identifier_token30] = ACTIONS(1021), + [aux_sym_cmd_identifier_token31] = ACTIONS(1021), + [aux_sym_cmd_identifier_token32] = ACTIONS(1021), + [aux_sym_cmd_identifier_token33] = ACTIONS(1021), + [aux_sym_cmd_identifier_token34] = ACTIONS(1021), + [aux_sym_cmd_identifier_token35] = ACTIONS(1021), + [aux_sym_cmd_identifier_token36] = ACTIONS(1021), + [anon_sym_true] = ACTIONS(1023), + [anon_sym_false] = ACTIONS(1023), + [anon_sym_null] = ACTIONS(1023), + [aux_sym_cmd_identifier_token38] = ACTIONS(1021), + [aux_sym_cmd_identifier_token39] = ACTIONS(1023), + [aux_sym_cmd_identifier_token40] = ACTIONS(1023), + [anon_sym_def] = ACTIONS(1021), + [anon_sym_export_DASHenv] = ACTIONS(1021), + [anon_sym_extern] = ACTIONS(1021), + [anon_sym_module] = ACTIONS(1021), + [anon_sym_use] = ACTIONS(1021), + [anon_sym_LPAREN] = ACTIONS(1023), + [anon_sym_COMMA] = ACTIONS(1023), + [anon_sym_DOLLAR] = ACTIONS(1023), + [anon_sym_error] = ACTIONS(1021), + [anon_sym_list] = ACTIONS(1021), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_break] = ACTIONS(1021), + [anon_sym_continue] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1021), + [anon_sym_in] = ACTIONS(1021), + [anon_sym_loop] = ACTIONS(1021), + [anon_sym_make] = ACTIONS(1021), + [anon_sym_while] = ACTIONS(1021), + [anon_sym_do] = ACTIONS(1021), + [anon_sym_if] = ACTIONS(1021), + [anon_sym_else] = ACTIONS(1021), + [anon_sym_match] = ACTIONS(1021), + [anon_sym_RBRACE] = ACTIONS(1023), + [anon_sym_try] = ACTIONS(1021), + [anon_sym_catch] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1021), + [anon_sym_source] = ACTIONS(1021), + [anon_sym_source_DASHenv] = ACTIONS(1021), + [anon_sym_register] = ACTIONS(1021), + [anon_sym_hide] = ACTIONS(1021), + [anon_sym_hide_DASHenv] = ACTIONS(1021), + [anon_sym_overlay] = ACTIONS(1021), + [anon_sym_new] = ACTIONS(1021), + [anon_sym_as] = ACTIONS(1021), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1023), + [anon_sym_DOT] = ACTIONS(1887), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1023), + [aux_sym__val_number_decimal_token1] = ACTIONS(1021), + [aux_sym__val_number_decimal_token2] = ACTIONS(1023), + [aux_sym__val_number_decimal_token3] = ACTIONS(1023), + [aux_sym__val_number_decimal_token4] = ACTIONS(1023), + [aux_sym__val_number_token1] = ACTIONS(1023), + [aux_sym__val_number_token2] = ACTIONS(1023), + [aux_sym__val_number_token3] = ACTIONS(1023), + [anon_sym_DQUOTE] = ACTIONS(1023), + [sym__str_single_quotes] = ACTIONS(1023), + [sym__str_back_ticks] = ACTIONS(1023), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1023), + [aux_sym_record_entry_token1] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(1021), [anon_sym_POUND] = ACTIONS(247), }, - [349] = { - [sym_cell_path] = STATE(541), - [sym_path] = STATE(472), - [sym_comment] = STATE(349), - [aux_sym_cell_path_repeat1] = STATE(386), - [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), - [aux_sym_cmd_identifier_token1] = ACTIONS(1891), - [aux_sym_cmd_identifier_token2] = ACTIONS(1891), - [aux_sym_cmd_identifier_token3] = ACTIONS(1891), - [aux_sym_cmd_identifier_token4] = ACTIONS(1891), - [aux_sym_cmd_identifier_token5] = ACTIONS(1891), - [aux_sym_cmd_identifier_token6] = ACTIONS(1891), - [aux_sym_cmd_identifier_token7] = ACTIONS(1891), - [aux_sym_cmd_identifier_token8] = ACTIONS(1891), - [aux_sym_cmd_identifier_token9] = ACTIONS(1891), - [aux_sym_cmd_identifier_token10] = ACTIONS(1891), - [aux_sym_cmd_identifier_token11] = ACTIONS(1891), - [aux_sym_cmd_identifier_token12] = ACTIONS(1891), - [aux_sym_cmd_identifier_token13] = ACTIONS(1891), - [aux_sym_cmd_identifier_token14] = ACTIONS(1891), - [aux_sym_cmd_identifier_token15] = ACTIONS(1891), - [aux_sym_cmd_identifier_token16] = ACTIONS(1891), - [aux_sym_cmd_identifier_token17] = ACTIONS(1891), - [aux_sym_cmd_identifier_token18] = ACTIONS(1891), - [aux_sym_cmd_identifier_token19] = ACTIONS(1891), - [aux_sym_cmd_identifier_token20] = ACTIONS(1891), - [aux_sym_cmd_identifier_token21] = ACTIONS(1891), - [aux_sym_cmd_identifier_token22] = ACTIONS(1891), - [aux_sym_cmd_identifier_token23] = ACTIONS(1891), - [aux_sym_cmd_identifier_token24] = ACTIONS(1891), - [aux_sym_cmd_identifier_token25] = ACTIONS(1891), - [aux_sym_cmd_identifier_token26] = ACTIONS(1891), - [aux_sym_cmd_identifier_token27] = ACTIONS(1891), - [aux_sym_cmd_identifier_token28] = ACTIONS(1891), - [aux_sym_cmd_identifier_token29] = ACTIONS(1891), - [aux_sym_cmd_identifier_token30] = ACTIONS(1891), - [aux_sym_cmd_identifier_token31] = ACTIONS(1891), - [aux_sym_cmd_identifier_token32] = ACTIONS(1891), - [aux_sym_cmd_identifier_token33] = ACTIONS(1891), - [aux_sym_cmd_identifier_token34] = ACTIONS(1891), - [aux_sym_cmd_identifier_token35] = ACTIONS(1891), - [aux_sym_cmd_identifier_token36] = ACTIONS(1891), - [anon_sym_true] = ACTIONS(1891), - [anon_sym_false] = ACTIONS(1891), - [anon_sym_null] = ACTIONS(1891), - [aux_sym_cmd_identifier_token38] = ACTIONS(1891), - [aux_sym_cmd_identifier_token39] = ACTIONS(1891), - [aux_sym_cmd_identifier_token40] = ACTIONS(1891), - [anon_sym_def] = 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_LPAREN] = ACTIONS(1891), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_error] = ACTIONS(1891), - [anon_sym_list] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_break] = ACTIONS(1891), - [anon_sym_continue] = ACTIONS(1891), - [anon_sym_for] = ACTIONS(1891), - [anon_sym_in] = ACTIONS(1891), - [anon_sym_loop] = ACTIONS(1891), - [anon_sym_make] = ACTIONS(1891), - [anon_sym_while] = ACTIONS(1891), - [anon_sym_do] = ACTIONS(1891), - [anon_sym_if] = ACTIONS(1891), - [anon_sym_else] = ACTIONS(1891), - [anon_sym_match] = ACTIONS(1891), - [anon_sym_RBRACE] = ACTIONS(1891), - [anon_sym_try] = ACTIONS(1891), - [anon_sym_catch] = 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_new] = ACTIONS(1891), - [anon_sym_as] = ACTIONS(1891), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1891), - [anon_sym_DOT] = ACTIONS(1743), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1891), - [aux_sym__val_number_decimal_token1] = ACTIONS(1891), - [aux_sym__val_number_decimal_token2] = ACTIONS(1891), - [aux_sym__val_number_decimal_token3] = ACTIONS(1891), - [aux_sym__val_number_decimal_token4] = ACTIONS(1891), - [aux_sym__val_number_token1] = ACTIONS(1891), - [aux_sym__val_number_token2] = ACTIONS(1891), - [aux_sym__val_number_token3] = ACTIONS(1891), - [anon_sym_DQUOTE] = ACTIONS(1891), - [sym__str_single_quotes] = ACTIONS(1891), - [sym__str_back_ticks] = ACTIONS(1891), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1891), - [sym__entry_separator] = ACTIONS(1893), - [anon_sym_PLUS] = ACTIONS(1891), + [318] = { + [sym_cell_path] = STATE(536), + [sym_path] = STATE(482), + [sym_comment] = STATE(318), + [aux_sym_cell_path_repeat1] = STATE(381), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_alias] = ACTIONS(1890), + [anon_sym_let] = ACTIONS(1890), + [anon_sym_let_DASHenv] = ACTIONS(1890), + [anon_sym_mut] = ACTIONS(1890), + [anon_sym_const] = ACTIONS(1890), + [aux_sym_cmd_identifier_token1] = ACTIONS(1890), + [aux_sym_cmd_identifier_token2] = ACTIONS(1890), + [aux_sym_cmd_identifier_token3] = ACTIONS(1890), + [aux_sym_cmd_identifier_token4] = ACTIONS(1890), + [aux_sym_cmd_identifier_token5] = ACTIONS(1890), + [aux_sym_cmd_identifier_token6] = ACTIONS(1890), + [aux_sym_cmd_identifier_token7] = ACTIONS(1890), + [aux_sym_cmd_identifier_token8] = ACTIONS(1890), + [aux_sym_cmd_identifier_token9] = ACTIONS(1890), + [aux_sym_cmd_identifier_token10] = ACTIONS(1890), + [aux_sym_cmd_identifier_token11] = ACTIONS(1890), + [aux_sym_cmd_identifier_token12] = ACTIONS(1890), + [aux_sym_cmd_identifier_token13] = ACTIONS(1890), + [aux_sym_cmd_identifier_token14] = ACTIONS(1890), + [aux_sym_cmd_identifier_token15] = ACTIONS(1890), + [aux_sym_cmd_identifier_token16] = ACTIONS(1890), + [aux_sym_cmd_identifier_token17] = ACTIONS(1890), + [aux_sym_cmd_identifier_token18] = ACTIONS(1890), + [aux_sym_cmd_identifier_token19] = ACTIONS(1890), + [aux_sym_cmd_identifier_token20] = ACTIONS(1890), + [aux_sym_cmd_identifier_token21] = ACTIONS(1890), + [aux_sym_cmd_identifier_token22] = ACTIONS(1890), + [aux_sym_cmd_identifier_token23] = ACTIONS(1890), + [aux_sym_cmd_identifier_token24] = ACTIONS(1890), + [aux_sym_cmd_identifier_token25] = ACTIONS(1890), + [aux_sym_cmd_identifier_token26] = ACTIONS(1890), + [aux_sym_cmd_identifier_token27] = ACTIONS(1890), + [aux_sym_cmd_identifier_token28] = ACTIONS(1890), + [aux_sym_cmd_identifier_token29] = ACTIONS(1890), + [aux_sym_cmd_identifier_token30] = ACTIONS(1890), + [aux_sym_cmd_identifier_token31] = ACTIONS(1890), + [aux_sym_cmd_identifier_token32] = ACTIONS(1890), + [aux_sym_cmd_identifier_token33] = ACTIONS(1890), + [aux_sym_cmd_identifier_token34] = ACTIONS(1890), + [aux_sym_cmd_identifier_token35] = ACTIONS(1890), + [aux_sym_cmd_identifier_token36] = ACTIONS(1890), + [anon_sym_true] = ACTIONS(1890), + [anon_sym_false] = ACTIONS(1890), + [anon_sym_null] = ACTIONS(1890), + [aux_sym_cmd_identifier_token38] = ACTIONS(1890), + [aux_sym_cmd_identifier_token39] = ACTIONS(1890), + [aux_sym_cmd_identifier_token40] = ACTIONS(1890), + [anon_sym_def] = ACTIONS(1890), + [anon_sym_export_DASHenv] = ACTIONS(1890), + [anon_sym_extern] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_use] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_error] = ACTIONS(1890), + [anon_sym_list] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_in] = ACTIONS(1890), + [anon_sym_loop] = ACTIONS(1890), + [anon_sym_make] = ACTIONS(1890), + [anon_sym_while] = ACTIONS(1890), + [anon_sym_do] = ACTIONS(1890), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_else] = ACTIONS(1890), + [anon_sym_match] = ACTIONS(1890), + [anon_sym_RBRACE] = ACTIONS(1890), + [anon_sym_try] = ACTIONS(1890), + [anon_sym_catch] = ACTIONS(1890), + [anon_sym_return] = ACTIONS(1890), + [anon_sym_source] = ACTIONS(1890), + [anon_sym_source_DASHenv] = ACTIONS(1890), + [anon_sym_register] = ACTIONS(1890), + [anon_sym_hide] = ACTIONS(1890), + [anon_sym_hide_DASHenv] = ACTIONS(1890), + [anon_sym_overlay] = ACTIONS(1890), + [anon_sym_new] = ACTIONS(1890), + [anon_sym_as] = ACTIONS(1890), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1890), + [anon_sym_DOT] = ACTIONS(1831), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1890), + [aux_sym__val_number_decimal_token1] = ACTIONS(1890), + [aux_sym__val_number_decimal_token2] = ACTIONS(1890), + [aux_sym__val_number_decimal_token3] = ACTIONS(1890), + [aux_sym__val_number_decimal_token4] = ACTIONS(1890), + [aux_sym__val_number_token1] = ACTIONS(1890), + [aux_sym__val_number_token2] = ACTIONS(1890), + [aux_sym__val_number_token3] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [sym__str_single_quotes] = ACTIONS(1890), + [sym__str_back_ticks] = ACTIONS(1890), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1890), + [sym__entry_separator] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1890), [anon_sym_POUND] = ACTIONS(3), }, - [350] = { - [sym_cell_path] = STATE(543), - [sym_path] = STATE(472), - [sym_comment] = STATE(350), - [aux_sym_cell_path_repeat1] = STATE(386), - [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), - [aux_sym_cmd_identifier_token1] = ACTIONS(1895), - [aux_sym_cmd_identifier_token2] = ACTIONS(1895), - [aux_sym_cmd_identifier_token3] = ACTIONS(1895), - [aux_sym_cmd_identifier_token4] = ACTIONS(1895), - [aux_sym_cmd_identifier_token5] = ACTIONS(1895), - [aux_sym_cmd_identifier_token6] = ACTIONS(1895), - [aux_sym_cmd_identifier_token7] = ACTIONS(1895), - [aux_sym_cmd_identifier_token8] = ACTIONS(1895), - [aux_sym_cmd_identifier_token9] = ACTIONS(1895), - [aux_sym_cmd_identifier_token10] = ACTIONS(1895), - [aux_sym_cmd_identifier_token11] = ACTIONS(1895), - [aux_sym_cmd_identifier_token12] = ACTIONS(1895), - [aux_sym_cmd_identifier_token13] = ACTIONS(1895), - [aux_sym_cmd_identifier_token14] = ACTIONS(1895), - [aux_sym_cmd_identifier_token15] = ACTIONS(1895), - [aux_sym_cmd_identifier_token16] = ACTIONS(1895), - [aux_sym_cmd_identifier_token17] = ACTIONS(1895), - [aux_sym_cmd_identifier_token18] = ACTIONS(1895), - [aux_sym_cmd_identifier_token19] = ACTIONS(1895), - [aux_sym_cmd_identifier_token20] = ACTIONS(1895), - [aux_sym_cmd_identifier_token21] = ACTIONS(1895), - [aux_sym_cmd_identifier_token22] = ACTIONS(1895), - [aux_sym_cmd_identifier_token23] = ACTIONS(1895), - [aux_sym_cmd_identifier_token24] = ACTIONS(1895), - [aux_sym_cmd_identifier_token25] = ACTIONS(1895), - [aux_sym_cmd_identifier_token26] = ACTIONS(1895), - [aux_sym_cmd_identifier_token27] = ACTIONS(1895), - [aux_sym_cmd_identifier_token28] = ACTIONS(1895), - [aux_sym_cmd_identifier_token29] = ACTIONS(1895), - [aux_sym_cmd_identifier_token30] = ACTIONS(1895), - [aux_sym_cmd_identifier_token31] = ACTIONS(1895), - [aux_sym_cmd_identifier_token32] = ACTIONS(1895), - [aux_sym_cmd_identifier_token33] = ACTIONS(1895), - [aux_sym_cmd_identifier_token34] = ACTIONS(1895), - [aux_sym_cmd_identifier_token35] = ACTIONS(1895), - [aux_sym_cmd_identifier_token36] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(1895), - [anon_sym_false] = ACTIONS(1895), - [anon_sym_null] = ACTIONS(1895), - [aux_sym_cmd_identifier_token38] = ACTIONS(1895), - [aux_sym_cmd_identifier_token39] = ACTIONS(1895), - [aux_sym_cmd_identifier_token40] = ACTIONS(1895), - [anon_sym_def] = 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_LPAREN] = ACTIONS(1895), - [anon_sym_DOLLAR] = ACTIONS(1895), - [anon_sym_error] = ACTIONS(1895), - [anon_sym_list] = ACTIONS(1895), - [anon_sym_DASH] = ACTIONS(1895), - [anon_sym_break] = ACTIONS(1895), - [anon_sym_continue] = ACTIONS(1895), - [anon_sym_for] = ACTIONS(1895), - [anon_sym_in] = ACTIONS(1895), - [anon_sym_loop] = ACTIONS(1895), - [anon_sym_make] = ACTIONS(1895), - [anon_sym_while] = ACTIONS(1895), - [anon_sym_do] = ACTIONS(1895), - [anon_sym_if] = ACTIONS(1895), - [anon_sym_else] = ACTIONS(1895), - [anon_sym_match] = ACTIONS(1895), - [anon_sym_RBRACE] = ACTIONS(1895), - [anon_sym_try] = ACTIONS(1895), - [anon_sym_catch] = 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_new] = ACTIONS(1895), - [anon_sym_as] = ACTIONS(1895), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1895), - [anon_sym_DOT] = ACTIONS(1743), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1895), - [aux_sym__val_number_decimal_token1] = ACTIONS(1895), - [aux_sym__val_number_decimal_token2] = ACTIONS(1895), - [aux_sym__val_number_decimal_token3] = ACTIONS(1895), - [aux_sym__val_number_decimal_token4] = ACTIONS(1895), - [aux_sym__val_number_token1] = ACTIONS(1895), - [aux_sym__val_number_token2] = ACTIONS(1895), - [aux_sym__val_number_token3] = ACTIONS(1895), - [anon_sym_DQUOTE] = ACTIONS(1895), - [sym__str_single_quotes] = ACTIONS(1895), - [sym__str_back_ticks] = ACTIONS(1895), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1895), - [sym__entry_separator] = ACTIONS(1897), - [anon_sym_PLUS] = ACTIONS(1895), - [anon_sym_POUND] = ACTIONS(3), + [319] = { + [sym_comment] = STATE(319), + [anon_sym_export] = ACTIONS(1040), + [anon_sym_alias] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_let_DASHenv] = ACTIONS(1040), + [anon_sym_mut] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(1040), + [aux_sym_cmd_identifier_token1] = ACTIONS(1040), + [aux_sym_cmd_identifier_token2] = ACTIONS(1040), + [aux_sym_cmd_identifier_token3] = ACTIONS(1040), + [aux_sym_cmd_identifier_token4] = ACTIONS(1040), + [aux_sym_cmd_identifier_token5] = ACTIONS(1040), + [aux_sym_cmd_identifier_token6] = ACTIONS(1040), + [aux_sym_cmd_identifier_token7] = ACTIONS(1040), + [aux_sym_cmd_identifier_token8] = ACTIONS(1040), + [aux_sym_cmd_identifier_token9] = ACTIONS(1040), + [aux_sym_cmd_identifier_token10] = ACTIONS(1040), + [aux_sym_cmd_identifier_token11] = ACTIONS(1040), + [aux_sym_cmd_identifier_token12] = ACTIONS(1040), + [aux_sym_cmd_identifier_token13] = ACTIONS(1040), + [aux_sym_cmd_identifier_token14] = ACTIONS(1040), + [aux_sym_cmd_identifier_token15] = ACTIONS(1040), + [aux_sym_cmd_identifier_token16] = ACTIONS(1040), + [aux_sym_cmd_identifier_token17] = ACTIONS(1040), + [aux_sym_cmd_identifier_token18] = ACTIONS(1040), + [aux_sym_cmd_identifier_token19] = ACTIONS(1040), + [aux_sym_cmd_identifier_token20] = ACTIONS(1040), + [aux_sym_cmd_identifier_token21] = ACTIONS(1040), + [aux_sym_cmd_identifier_token22] = ACTIONS(1040), + [aux_sym_cmd_identifier_token23] = ACTIONS(1040), + [aux_sym_cmd_identifier_token24] = ACTIONS(1040), + [aux_sym_cmd_identifier_token25] = ACTIONS(1040), + [aux_sym_cmd_identifier_token26] = ACTIONS(1040), + [aux_sym_cmd_identifier_token27] = ACTIONS(1040), + [aux_sym_cmd_identifier_token28] = ACTIONS(1040), + [aux_sym_cmd_identifier_token29] = ACTIONS(1040), + [aux_sym_cmd_identifier_token30] = ACTIONS(1040), + [aux_sym_cmd_identifier_token31] = ACTIONS(1040), + [aux_sym_cmd_identifier_token32] = ACTIONS(1040), + [aux_sym_cmd_identifier_token33] = ACTIONS(1040), + [aux_sym_cmd_identifier_token34] = ACTIONS(1040), + [aux_sym_cmd_identifier_token35] = ACTIONS(1040), + [aux_sym_cmd_identifier_token36] = ACTIONS(1040), + [anon_sym_true] = ACTIONS(1042), + [anon_sym_false] = ACTIONS(1042), + [anon_sym_null] = ACTIONS(1042), + [aux_sym_cmd_identifier_token38] = ACTIONS(1040), + [aux_sym_cmd_identifier_token39] = ACTIONS(1042), + [aux_sym_cmd_identifier_token40] = ACTIONS(1042), + [anon_sym_def] = ACTIONS(1040), + [anon_sym_export_DASHenv] = ACTIONS(1040), + [anon_sym_extern] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + [anon_sym_use] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1042), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_error] = ACTIONS(1040), + [anon_sym_list] = ACTIONS(1040), + [anon_sym_DASH] = ACTIONS(1040), + [anon_sym_break] = ACTIONS(1040), + [anon_sym_continue] = ACTIONS(1040), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_loop] = ACTIONS(1040), + [anon_sym_make] = ACTIONS(1040), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_do] = ACTIONS(1040), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(1040), + [anon_sym_match] = ACTIONS(1040), + [anon_sym_RBRACE] = ACTIONS(1042), + [anon_sym_try] = ACTIONS(1040), + [anon_sym_catch] = ACTIONS(1040), + [anon_sym_return] = ACTIONS(1040), + [anon_sym_source] = ACTIONS(1040), + [anon_sym_source_DASHenv] = ACTIONS(1040), + [anon_sym_register] = ACTIONS(1040), + [anon_sym_hide] = ACTIONS(1040), + [anon_sym_hide_DASHenv] = ACTIONS(1040), + [anon_sym_overlay] = ACTIONS(1040), + [anon_sym_new] = ACTIONS(1040), + [anon_sym_as] = ACTIONS(1040), + [anon_sym_QMARK2] = ACTIONS(1042), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1042), + [anon_sym_DOT_DOT2] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1042), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1042), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1042), + [aux_sym__val_number_decimal_token1] = ACTIONS(1040), + [aux_sym__val_number_decimal_token2] = ACTIONS(1042), + [aux_sym__val_number_decimal_token3] = ACTIONS(1042), + [aux_sym__val_number_decimal_token4] = ACTIONS(1042), + [aux_sym__val_number_token1] = ACTIONS(1042), + [aux_sym__val_number_token2] = ACTIONS(1042), + [aux_sym__val_number_token3] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1042), + [sym__str_single_quotes] = ACTIONS(1042), + [sym__str_back_ticks] = ACTIONS(1042), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1040), + [anon_sym_POUND] = ACTIONS(247), }, - [351] = { - [sym_cell_path] = STATE(556), - [sym_path] = STATE(472), - [sym_comment] = STATE(351), - [aux_sym_cell_path_repeat1] = STATE(386), - [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), - [aux_sym_cmd_identifier_token1] = ACTIONS(1899), - [aux_sym_cmd_identifier_token2] = ACTIONS(1899), - [aux_sym_cmd_identifier_token3] = ACTIONS(1899), - [aux_sym_cmd_identifier_token4] = ACTIONS(1899), - [aux_sym_cmd_identifier_token5] = ACTIONS(1899), - [aux_sym_cmd_identifier_token6] = ACTIONS(1899), - [aux_sym_cmd_identifier_token7] = ACTIONS(1899), - [aux_sym_cmd_identifier_token8] = ACTIONS(1899), - [aux_sym_cmd_identifier_token9] = ACTIONS(1899), - [aux_sym_cmd_identifier_token10] = ACTIONS(1899), - [aux_sym_cmd_identifier_token11] = ACTIONS(1899), - [aux_sym_cmd_identifier_token12] = ACTIONS(1899), - [aux_sym_cmd_identifier_token13] = ACTIONS(1899), - [aux_sym_cmd_identifier_token14] = ACTIONS(1899), - [aux_sym_cmd_identifier_token15] = ACTIONS(1899), - [aux_sym_cmd_identifier_token16] = ACTIONS(1899), - [aux_sym_cmd_identifier_token17] = ACTIONS(1899), - [aux_sym_cmd_identifier_token18] = ACTIONS(1899), - [aux_sym_cmd_identifier_token19] = ACTIONS(1899), - [aux_sym_cmd_identifier_token20] = ACTIONS(1899), - [aux_sym_cmd_identifier_token21] = ACTIONS(1899), - [aux_sym_cmd_identifier_token22] = ACTIONS(1899), - [aux_sym_cmd_identifier_token23] = ACTIONS(1899), - [aux_sym_cmd_identifier_token24] = ACTIONS(1899), - [aux_sym_cmd_identifier_token25] = ACTIONS(1899), - [aux_sym_cmd_identifier_token26] = ACTIONS(1899), - [aux_sym_cmd_identifier_token27] = ACTIONS(1899), - [aux_sym_cmd_identifier_token28] = ACTIONS(1899), - [aux_sym_cmd_identifier_token29] = ACTIONS(1899), - [aux_sym_cmd_identifier_token30] = ACTIONS(1899), - [aux_sym_cmd_identifier_token31] = ACTIONS(1899), - [aux_sym_cmd_identifier_token32] = ACTIONS(1899), - [aux_sym_cmd_identifier_token33] = ACTIONS(1899), - [aux_sym_cmd_identifier_token34] = ACTIONS(1899), - [aux_sym_cmd_identifier_token35] = ACTIONS(1899), - [aux_sym_cmd_identifier_token36] = ACTIONS(1899), - [anon_sym_true] = ACTIONS(1899), - [anon_sym_false] = ACTIONS(1899), - [anon_sym_null] = ACTIONS(1899), - [aux_sym_cmd_identifier_token38] = ACTIONS(1899), - [aux_sym_cmd_identifier_token39] = ACTIONS(1899), - [aux_sym_cmd_identifier_token40] = ACTIONS(1899), - [anon_sym_def] = 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_LPAREN] = ACTIONS(1899), - [anon_sym_DOLLAR] = ACTIONS(1899), - [anon_sym_error] = ACTIONS(1899), - [anon_sym_list] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_break] = ACTIONS(1899), - [anon_sym_continue] = ACTIONS(1899), - [anon_sym_for] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(1899), - [anon_sym_loop] = ACTIONS(1899), - [anon_sym_make] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1899), - [anon_sym_do] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_else] = ACTIONS(1899), - [anon_sym_match] = ACTIONS(1899), - [anon_sym_RBRACE] = ACTIONS(1899), - [anon_sym_try] = ACTIONS(1899), - [anon_sym_catch] = 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_new] = ACTIONS(1899), - [anon_sym_as] = ACTIONS(1899), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1899), - [anon_sym_DOT] = ACTIONS(1743), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1899), - [aux_sym__val_number_decimal_token1] = ACTIONS(1899), - [aux_sym__val_number_decimal_token2] = ACTIONS(1899), - [aux_sym__val_number_decimal_token3] = ACTIONS(1899), - [aux_sym__val_number_decimal_token4] = ACTIONS(1899), - [aux_sym__val_number_token1] = ACTIONS(1899), - [aux_sym__val_number_token2] = ACTIONS(1899), - [aux_sym__val_number_token3] = ACTIONS(1899), - [anon_sym_DQUOTE] = ACTIONS(1899), - [sym__str_single_quotes] = ACTIONS(1899), - [sym__str_back_ticks] = ACTIONS(1899), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1899), - [sym__entry_separator] = ACTIONS(1901), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_POUND] = ACTIONS(3), + [320] = { + [sym_comment] = STATE(320), + [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), + [aux_sym_cmd_identifier_token1] = ACTIONS(1779), + [aux_sym_cmd_identifier_token2] = ACTIONS(1779), + [aux_sym_cmd_identifier_token3] = ACTIONS(1779), + [aux_sym_cmd_identifier_token4] = ACTIONS(1779), + [aux_sym_cmd_identifier_token5] = ACTIONS(1779), + [aux_sym_cmd_identifier_token6] = ACTIONS(1779), + [aux_sym_cmd_identifier_token7] = ACTIONS(1779), + [aux_sym_cmd_identifier_token8] = ACTIONS(1779), + [aux_sym_cmd_identifier_token9] = ACTIONS(1779), + [aux_sym_cmd_identifier_token10] = ACTIONS(1779), + [aux_sym_cmd_identifier_token11] = ACTIONS(1779), + [aux_sym_cmd_identifier_token12] = ACTIONS(1779), + [aux_sym_cmd_identifier_token13] = ACTIONS(1779), + [aux_sym_cmd_identifier_token14] = ACTIONS(1779), + [aux_sym_cmd_identifier_token15] = ACTIONS(1779), + [aux_sym_cmd_identifier_token16] = ACTIONS(1779), + [aux_sym_cmd_identifier_token17] = ACTIONS(1779), + [aux_sym_cmd_identifier_token18] = ACTIONS(1779), + [aux_sym_cmd_identifier_token19] = ACTIONS(1779), + [aux_sym_cmd_identifier_token20] = ACTIONS(1779), + [aux_sym_cmd_identifier_token21] = ACTIONS(1779), + [aux_sym_cmd_identifier_token22] = ACTIONS(1779), + [aux_sym_cmd_identifier_token23] = ACTIONS(1779), + [aux_sym_cmd_identifier_token24] = ACTIONS(1781), + [aux_sym_cmd_identifier_token25] = ACTIONS(1779), + [aux_sym_cmd_identifier_token26] = ACTIONS(1781), + [aux_sym_cmd_identifier_token27] = ACTIONS(1779), + [aux_sym_cmd_identifier_token28] = ACTIONS(1779), + [aux_sym_cmd_identifier_token29] = ACTIONS(1779), + [aux_sym_cmd_identifier_token30] = ACTIONS(1779), + [aux_sym_cmd_identifier_token31] = ACTIONS(1781), + [aux_sym_cmd_identifier_token32] = ACTIONS(1781), + [aux_sym_cmd_identifier_token33] = ACTIONS(1781), + [aux_sym_cmd_identifier_token34] = ACTIONS(1781), + [aux_sym_cmd_identifier_token35] = ACTIONS(1781), + [aux_sym_cmd_identifier_token36] = ACTIONS(1779), + [anon_sym_true] = ACTIONS(1781), + [anon_sym_false] = ACTIONS(1781), + [anon_sym_null] = ACTIONS(1781), + [aux_sym_cmd_identifier_token38] = ACTIONS(1779), + [aux_sym_cmd_identifier_token39] = ACTIONS(1781), + [aux_sym_cmd_identifier_token40] = ACTIONS(1781), + [sym__newline] = ACTIONS(1781), + [anon_sym_SEMI] = ACTIONS(1781), + [anon_sym_def] = 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(1781), + [anon_sym_LPAREN] = ACTIONS(1781), + [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), + [aux_sym_ctrl_match_token1] = ACTIONS(1781), + [anon_sym_DOT_DOT] = 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(1781), + [aux_sym_expr_unary_token1] = ACTIONS(1781), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1781), + [anon_sym_DOT_DOT_LT] = ACTIONS(1781), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1781), + [aux_sym__val_number_decimal_token3] = ACTIONS(1781), + [aux_sym__val_number_decimal_token4] = ACTIONS(1781), + [aux_sym__val_number_token1] = ACTIONS(1781), + [aux_sym__val_number_token2] = ACTIONS(1781), + [aux_sym__val_number_token3] = ACTIONS(1781), + [anon_sym_0b] = ACTIONS(1779), + [anon_sym_0o] = ACTIONS(1779), + [anon_sym_0x] = ACTIONS(1779), + [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), + [aux_sym_env_var_token1] = ACTIONS(1779), + [anon_sym_CARET] = ACTIONS(1781), + [anon_sym_POUND] = ACTIONS(247), }, - [352] = { - [sym_comment] = STATE(352), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_alias] = ACTIONS(1569), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_let_DASHenv] = ACTIONS(1569), - [anon_sym_mut] = ACTIONS(1569), - [anon_sym_const] = ACTIONS(1569), - [aux_sym_cmd_identifier_token1] = ACTIONS(1569), - [aux_sym_cmd_identifier_token2] = ACTIONS(1569), - [aux_sym_cmd_identifier_token3] = ACTIONS(1569), - [aux_sym_cmd_identifier_token4] = ACTIONS(1569), - [aux_sym_cmd_identifier_token5] = ACTIONS(1569), - [aux_sym_cmd_identifier_token6] = ACTIONS(1569), - [aux_sym_cmd_identifier_token7] = ACTIONS(1569), - [aux_sym_cmd_identifier_token8] = ACTIONS(1569), - [aux_sym_cmd_identifier_token9] = ACTIONS(1569), - [aux_sym_cmd_identifier_token10] = ACTIONS(1569), - [aux_sym_cmd_identifier_token11] = ACTIONS(1569), - [aux_sym_cmd_identifier_token12] = ACTIONS(1569), - [aux_sym_cmd_identifier_token13] = ACTIONS(1569), - [aux_sym_cmd_identifier_token14] = ACTIONS(1569), - [aux_sym_cmd_identifier_token15] = ACTIONS(1569), - [aux_sym_cmd_identifier_token16] = ACTIONS(1569), - [aux_sym_cmd_identifier_token17] = ACTIONS(1569), - [aux_sym_cmd_identifier_token18] = ACTIONS(1569), - [aux_sym_cmd_identifier_token19] = ACTIONS(1569), - [aux_sym_cmd_identifier_token20] = ACTIONS(1569), - [aux_sym_cmd_identifier_token21] = ACTIONS(1569), - [aux_sym_cmd_identifier_token22] = ACTIONS(1569), - [aux_sym_cmd_identifier_token23] = ACTIONS(1569), - [aux_sym_cmd_identifier_token24] = ACTIONS(1569), - [aux_sym_cmd_identifier_token25] = ACTIONS(1569), - [aux_sym_cmd_identifier_token26] = ACTIONS(1569), - [aux_sym_cmd_identifier_token27] = ACTIONS(1569), - [aux_sym_cmd_identifier_token28] = ACTIONS(1569), - [aux_sym_cmd_identifier_token29] = ACTIONS(1569), - [aux_sym_cmd_identifier_token30] = ACTIONS(1569), - [aux_sym_cmd_identifier_token31] = ACTIONS(1569), - [aux_sym_cmd_identifier_token32] = ACTIONS(1569), - [aux_sym_cmd_identifier_token33] = ACTIONS(1569), - [aux_sym_cmd_identifier_token34] = ACTIONS(1569), - [aux_sym_cmd_identifier_token35] = ACTIONS(1569), - [aux_sym_cmd_identifier_token36] = ACTIONS(1569), - [anon_sym_true] = ACTIONS(1569), - [anon_sym_false] = ACTIONS(1569), - [anon_sym_null] = ACTIONS(1569), - [aux_sym_cmd_identifier_token38] = ACTIONS(1569), - [aux_sym_cmd_identifier_token39] = ACTIONS(1569), - [aux_sym_cmd_identifier_token40] = ACTIONS(1569), - [anon_sym_def] = ACTIONS(1569), - [anon_sym_export_DASHenv] = ACTIONS(1569), - [anon_sym_extern] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_use] = ACTIONS(1569), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_DOLLAR] = ACTIONS(1569), - [anon_sym_error] = ACTIONS(1569), - [anon_sym_list] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_break] = ACTIONS(1569), - [anon_sym_continue] = ACTIONS(1569), - [anon_sym_for] = ACTIONS(1569), - [anon_sym_in] = ACTIONS(1569), - [anon_sym_loop] = ACTIONS(1569), - [anon_sym_make] = ACTIONS(1569), - [anon_sym_while] = ACTIONS(1569), - [anon_sym_do] = ACTIONS(1569), - [anon_sym_if] = ACTIONS(1569), - [anon_sym_else] = ACTIONS(1569), - [anon_sym_match] = ACTIONS(1569), - [anon_sym_RBRACE] = ACTIONS(1569), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_catch] = ACTIONS(1569), - [anon_sym_return] = ACTIONS(1569), - [anon_sym_source] = ACTIONS(1569), - [anon_sym_source_DASHenv] = ACTIONS(1569), - [anon_sym_register] = ACTIONS(1569), - [anon_sym_hide] = ACTIONS(1569), - [anon_sym_hide_DASHenv] = ACTIONS(1569), - [anon_sym_overlay] = ACTIONS(1569), - [anon_sym_new] = ACTIONS(1569), - [anon_sym_as] = ACTIONS(1569), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1569), - [anon_sym_DOT_DOT2] = ACTIONS(1569), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1571), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1571), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1569), - [aux_sym__val_number_decimal_token1] = ACTIONS(1569), - [aux_sym__val_number_decimal_token2] = ACTIONS(1569), - [aux_sym__val_number_decimal_token3] = ACTIONS(1569), - [aux_sym__val_number_decimal_token4] = ACTIONS(1569), - [aux_sym__val_number_token1] = ACTIONS(1569), - [aux_sym__val_number_token2] = ACTIONS(1569), - [aux_sym__val_number_token3] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(1569), - [sym__str_single_quotes] = ACTIONS(1569), - [sym__str_back_ticks] = ACTIONS(1569), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1569), - [sym__entry_separator] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1569), + [321] = { + [sym_comment] = STATE(321), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_alias] = ACTIONS(1044), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_let_DASHenv] = ACTIONS(1044), + [anon_sym_mut] = ACTIONS(1044), + [anon_sym_const] = ACTIONS(1044), + [aux_sym_cmd_identifier_token1] = ACTIONS(1044), + [aux_sym_cmd_identifier_token2] = ACTIONS(1044), + [aux_sym_cmd_identifier_token3] = ACTIONS(1044), + [aux_sym_cmd_identifier_token4] = ACTIONS(1044), + [aux_sym_cmd_identifier_token5] = ACTIONS(1044), + [aux_sym_cmd_identifier_token6] = ACTIONS(1044), + [aux_sym_cmd_identifier_token7] = ACTIONS(1044), + [aux_sym_cmd_identifier_token8] = ACTIONS(1044), + [aux_sym_cmd_identifier_token9] = ACTIONS(1044), + [aux_sym_cmd_identifier_token10] = ACTIONS(1044), + [aux_sym_cmd_identifier_token11] = ACTIONS(1044), + [aux_sym_cmd_identifier_token12] = ACTIONS(1044), + [aux_sym_cmd_identifier_token13] = ACTIONS(1044), + [aux_sym_cmd_identifier_token14] = ACTIONS(1044), + [aux_sym_cmd_identifier_token15] = ACTIONS(1044), + [aux_sym_cmd_identifier_token16] = ACTIONS(1044), + [aux_sym_cmd_identifier_token17] = ACTIONS(1044), + [aux_sym_cmd_identifier_token18] = ACTIONS(1044), + [aux_sym_cmd_identifier_token19] = ACTIONS(1044), + [aux_sym_cmd_identifier_token20] = ACTIONS(1044), + [aux_sym_cmd_identifier_token21] = ACTIONS(1044), + [aux_sym_cmd_identifier_token22] = ACTIONS(1044), + [aux_sym_cmd_identifier_token23] = ACTIONS(1044), + [aux_sym_cmd_identifier_token24] = ACTIONS(1044), + [aux_sym_cmd_identifier_token25] = ACTIONS(1044), + [aux_sym_cmd_identifier_token26] = ACTIONS(1044), + [aux_sym_cmd_identifier_token27] = ACTIONS(1044), + [aux_sym_cmd_identifier_token28] = ACTIONS(1044), + [aux_sym_cmd_identifier_token29] = ACTIONS(1044), + [aux_sym_cmd_identifier_token30] = ACTIONS(1044), + [aux_sym_cmd_identifier_token31] = ACTIONS(1044), + [aux_sym_cmd_identifier_token32] = ACTIONS(1044), + [aux_sym_cmd_identifier_token33] = ACTIONS(1044), + [aux_sym_cmd_identifier_token34] = ACTIONS(1044), + [aux_sym_cmd_identifier_token35] = ACTIONS(1044), + [aux_sym_cmd_identifier_token36] = ACTIONS(1044), + [anon_sym_true] = ACTIONS(1046), + [anon_sym_false] = ACTIONS(1046), + [anon_sym_null] = ACTIONS(1046), + [aux_sym_cmd_identifier_token38] = ACTIONS(1044), + [aux_sym_cmd_identifier_token39] = ACTIONS(1046), + [aux_sym_cmd_identifier_token40] = ACTIONS(1046), + [anon_sym_def] = ACTIONS(1044), + [anon_sym_export_DASHenv] = ACTIONS(1044), + [anon_sym_extern] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_use] = ACTIONS(1044), + [anon_sym_LPAREN] = ACTIONS(1046), + [anon_sym_DOLLAR] = ACTIONS(1046), + [anon_sym_error] = ACTIONS(1044), + [anon_sym_list] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_break] = ACTIONS(1044), + [anon_sym_continue] = ACTIONS(1044), + [anon_sym_for] = ACTIONS(1044), + [anon_sym_in] = ACTIONS(1044), + [anon_sym_loop] = ACTIONS(1044), + [anon_sym_make] = ACTIONS(1044), + [anon_sym_while] = ACTIONS(1044), + [anon_sym_do] = ACTIONS(1044), + [anon_sym_if] = ACTIONS(1044), + [anon_sym_else] = ACTIONS(1044), + [anon_sym_match] = ACTIONS(1044), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_try] = ACTIONS(1044), + [anon_sym_catch] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_source] = ACTIONS(1044), + [anon_sym_source_DASHenv] = ACTIONS(1044), + [anon_sym_register] = ACTIONS(1044), + [anon_sym_hide] = ACTIONS(1044), + [anon_sym_hide_DASHenv] = ACTIONS(1044), + [anon_sym_overlay] = ACTIONS(1044), + [anon_sym_new] = ACTIONS(1044), + [anon_sym_as] = ACTIONS(1044), + [anon_sym_QMARK2] = ACTIONS(1046), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1046), + [anon_sym_DOT_DOT2] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1044), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1046), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1046), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1046), + [aux_sym__val_number_decimal_token1] = ACTIONS(1044), + [aux_sym__val_number_decimal_token2] = ACTIONS(1046), + [aux_sym__val_number_decimal_token3] = ACTIONS(1046), + [aux_sym__val_number_decimal_token4] = ACTIONS(1046), + [aux_sym__val_number_token1] = ACTIONS(1046), + [aux_sym__val_number_token2] = ACTIONS(1046), + [aux_sym__val_number_token3] = ACTIONS(1046), + [anon_sym_DQUOTE] = ACTIONS(1046), + [sym__str_single_quotes] = ACTIONS(1046), + [sym__str_back_ticks] = ACTIONS(1046), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1046), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_POUND] = ACTIONS(247), + }, + [322] = { + [sym_comment] = STATE(322), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_alias] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_let_DASHenv] = ACTIONS(1048), + [anon_sym_mut] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1048), + [aux_sym_cmd_identifier_token1] = ACTIONS(1048), + [aux_sym_cmd_identifier_token2] = ACTIONS(1048), + [aux_sym_cmd_identifier_token3] = ACTIONS(1048), + [aux_sym_cmd_identifier_token4] = ACTIONS(1048), + [aux_sym_cmd_identifier_token5] = ACTIONS(1048), + [aux_sym_cmd_identifier_token6] = ACTIONS(1048), + [aux_sym_cmd_identifier_token7] = ACTIONS(1048), + [aux_sym_cmd_identifier_token8] = ACTIONS(1048), + [aux_sym_cmd_identifier_token9] = ACTIONS(1048), + [aux_sym_cmd_identifier_token10] = ACTIONS(1048), + [aux_sym_cmd_identifier_token11] = ACTIONS(1048), + [aux_sym_cmd_identifier_token12] = ACTIONS(1048), + [aux_sym_cmd_identifier_token13] = ACTIONS(1048), + [aux_sym_cmd_identifier_token14] = ACTIONS(1048), + [aux_sym_cmd_identifier_token15] = ACTIONS(1048), + [aux_sym_cmd_identifier_token16] = ACTIONS(1048), + [aux_sym_cmd_identifier_token17] = ACTIONS(1048), + [aux_sym_cmd_identifier_token18] = ACTIONS(1048), + [aux_sym_cmd_identifier_token19] = ACTIONS(1048), + [aux_sym_cmd_identifier_token20] = ACTIONS(1048), + [aux_sym_cmd_identifier_token21] = ACTIONS(1048), + [aux_sym_cmd_identifier_token22] = ACTIONS(1048), + [aux_sym_cmd_identifier_token23] = ACTIONS(1048), + [aux_sym_cmd_identifier_token24] = ACTIONS(1048), + [aux_sym_cmd_identifier_token25] = ACTIONS(1048), + [aux_sym_cmd_identifier_token26] = ACTIONS(1048), + [aux_sym_cmd_identifier_token27] = ACTIONS(1048), + [aux_sym_cmd_identifier_token28] = ACTIONS(1048), + [aux_sym_cmd_identifier_token29] = ACTIONS(1048), + [aux_sym_cmd_identifier_token30] = ACTIONS(1048), + [aux_sym_cmd_identifier_token31] = ACTIONS(1048), + [aux_sym_cmd_identifier_token32] = ACTIONS(1048), + [aux_sym_cmd_identifier_token33] = ACTIONS(1048), + [aux_sym_cmd_identifier_token34] = ACTIONS(1048), + [aux_sym_cmd_identifier_token35] = ACTIONS(1048), + [aux_sym_cmd_identifier_token36] = ACTIONS(1048), + [anon_sym_true] = ACTIONS(1050), + [anon_sym_false] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1050), + [aux_sym_cmd_identifier_token38] = ACTIONS(1048), + [aux_sym_cmd_identifier_token39] = ACTIONS(1050), + [aux_sym_cmd_identifier_token40] = ACTIONS(1050), + [anon_sym_def] = ACTIONS(1048), + [anon_sym_export_DASHenv] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_use] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_error] = ACTIONS(1048), + [anon_sym_list] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_in] = ACTIONS(1048), + [anon_sym_loop] = ACTIONS(1048), + [anon_sym_make] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_else] = ACTIONS(1048), + [anon_sym_match] = ACTIONS(1048), + [anon_sym_RBRACE] = ACTIONS(1050), + [anon_sym_try] = ACTIONS(1048), + [anon_sym_catch] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_source] = ACTIONS(1048), + [anon_sym_source_DASHenv] = ACTIONS(1048), + [anon_sym_register] = ACTIONS(1048), + [anon_sym_hide] = ACTIONS(1048), + [anon_sym_hide_DASHenv] = ACTIONS(1048), + [anon_sym_overlay] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1048), + [anon_sym_as] = ACTIONS(1048), + [anon_sym_QMARK2] = ACTIONS(1050), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1050), + [anon_sym_DOT_DOT2] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1050), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1050), + [aux_sym__val_number_decimal_token1] = ACTIONS(1048), + [aux_sym__val_number_decimal_token2] = ACTIONS(1050), + [aux_sym__val_number_decimal_token3] = ACTIONS(1050), + [aux_sym__val_number_decimal_token4] = ACTIONS(1050), + [aux_sym__val_number_token1] = ACTIONS(1050), + [aux_sym__val_number_token2] = ACTIONS(1050), + [aux_sym__val_number_token3] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym__str_single_quotes] = ACTIONS(1050), + [sym__str_back_ticks] = ACTIONS(1050), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_POUND] = ACTIONS(247), + }, + [323] = { + [sym_cell_path] = STATE(537), + [sym_path] = STATE(482), + [sym_comment] = STATE(323), + [aux_sym_cell_path_repeat1] = STATE(381), + [anon_sym_export] = ACTIONS(1894), + [anon_sym_alias] = ACTIONS(1894), + [anon_sym_let] = ACTIONS(1894), + [anon_sym_let_DASHenv] = ACTIONS(1894), + [anon_sym_mut] = ACTIONS(1894), + [anon_sym_const] = ACTIONS(1894), + [aux_sym_cmd_identifier_token1] = ACTIONS(1894), + [aux_sym_cmd_identifier_token2] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1894), + [aux_sym_cmd_identifier_token4] = ACTIONS(1894), + [aux_sym_cmd_identifier_token5] = ACTIONS(1894), + [aux_sym_cmd_identifier_token6] = ACTIONS(1894), + [aux_sym_cmd_identifier_token7] = ACTIONS(1894), + [aux_sym_cmd_identifier_token8] = ACTIONS(1894), + [aux_sym_cmd_identifier_token9] = ACTIONS(1894), + [aux_sym_cmd_identifier_token10] = ACTIONS(1894), + [aux_sym_cmd_identifier_token11] = ACTIONS(1894), + [aux_sym_cmd_identifier_token12] = ACTIONS(1894), + [aux_sym_cmd_identifier_token13] = ACTIONS(1894), + [aux_sym_cmd_identifier_token14] = ACTIONS(1894), + [aux_sym_cmd_identifier_token15] = ACTIONS(1894), + [aux_sym_cmd_identifier_token16] = ACTIONS(1894), + [aux_sym_cmd_identifier_token17] = ACTIONS(1894), + [aux_sym_cmd_identifier_token18] = ACTIONS(1894), + [aux_sym_cmd_identifier_token19] = ACTIONS(1894), + [aux_sym_cmd_identifier_token20] = ACTIONS(1894), + [aux_sym_cmd_identifier_token21] = ACTIONS(1894), + [aux_sym_cmd_identifier_token22] = ACTIONS(1894), + [aux_sym_cmd_identifier_token23] = ACTIONS(1894), + [aux_sym_cmd_identifier_token24] = ACTIONS(1894), + [aux_sym_cmd_identifier_token25] = ACTIONS(1894), + [aux_sym_cmd_identifier_token26] = ACTIONS(1894), + [aux_sym_cmd_identifier_token27] = ACTIONS(1894), + [aux_sym_cmd_identifier_token28] = ACTIONS(1894), + [aux_sym_cmd_identifier_token29] = ACTIONS(1894), + [aux_sym_cmd_identifier_token30] = ACTIONS(1894), + [aux_sym_cmd_identifier_token31] = ACTIONS(1894), + [aux_sym_cmd_identifier_token32] = ACTIONS(1894), + [aux_sym_cmd_identifier_token33] = ACTIONS(1894), + [aux_sym_cmd_identifier_token34] = ACTIONS(1894), + [aux_sym_cmd_identifier_token35] = ACTIONS(1894), + [aux_sym_cmd_identifier_token36] = ACTIONS(1894), + [anon_sym_true] = ACTIONS(1894), + [anon_sym_false] = ACTIONS(1894), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token38] = ACTIONS(1894), + [aux_sym_cmd_identifier_token39] = ACTIONS(1894), + [aux_sym_cmd_identifier_token40] = ACTIONS(1894), + [anon_sym_def] = ACTIONS(1894), + [anon_sym_export_DASHenv] = ACTIONS(1894), + [anon_sym_extern] = ACTIONS(1894), + [anon_sym_module] = ACTIONS(1894), + [anon_sym_use] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1894), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_error] = ACTIONS(1894), + [anon_sym_list] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_break] = ACTIONS(1894), + [anon_sym_continue] = ACTIONS(1894), + [anon_sym_for] = ACTIONS(1894), + [anon_sym_in] = ACTIONS(1894), + [anon_sym_loop] = ACTIONS(1894), + [anon_sym_make] = ACTIONS(1894), + [anon_sym_while] = ACTIONS(1894), + [anon_sym_do] = ACTIONS(1894), + [anon_sym_if] = ACTIONS(1894), + [anon_sym_else] = ACTIONS(1894), + [anon_sym_match] = ACTIONS(1894), + [anon_sym_RBRACE] = ACTIONS(1894), + [anon_sym_try] = ACTIONS(1894), + [anon_sym_catch] = ACTIONS(1894), + [anon_sym_return] = ACTIONS(1894), + [anon_sym_source] = ACTIONS(1894), + [anon_sym_source_DASHenv] = ACTIONS(1894), + [anon_sym_register] = ACTIONS(1894), + [anon_sym_hide] = ACTIONS(1894), + [anon_sym_hide_DASHenv] = ACTIONS(1894), + [anon_sym_overlay] = ACTIONS(1894), + [anon_sym_new] = ACTIONS(1894), + [anon_sym_as] = ACTIONS(1894), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1894), + [anon_sym_DOT] = ACTIONS(1831), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1894), + [aux_sym__val_number_decimal_token1] = ACTIONS(1894), + [aux_sym__val_number_decimal_token2] = ACTIONS(1894), + [aux_sym__val_number_decimal_token3] = ACTIONS(1894), + [aux_sym__val_number_decimal_token4] = ACTIONS(1894), + [aux_sym__val_number_token1] = ACTIONS(1894), + [aux_sym__val_number_token2] = ACTIONS(1894), + [aux_sym__val_number_token3] = ACTIONS(1894), + [anon_sym_DQUOTE] = ACTIONS(1894), + [sym__str_single_quotes] = ACTIONS(1894), + [sym__str_back_ticks] = ACTIONS(1894), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1894), + [sym__entry_separator] = ACTIONS(1896), + [anon_sym_PLUS] = ACTIONS(1894), [anon_sym_POUND] = ACTIONS(3), }, - [353] = { - [sym_cell_path] = STATE(624), - [sym_path] = STATE(532), - [sym_comment] = STATE(353), - [aux_sym_cell_path_repeat1] = STATE(424), - [anon_sym_export] = ACTIONS(1871), - [anon_sym_alias] = ACTIONS(1871), - [anon_sym_let] = ACTIONS(1871), - [anon_sym_let_DASHenv] = ACTIONS(1871), - [anon_sym_mut] = ACTIONS(1871), - [anon_sym_const] = ACTIONS(1871), - [aux_sym_cmd_identifier_token1] = ACTIONS(1871), - [aux_sym_cmd_identifier_token2] = ACTIONS(1871), - [aux_sym_cmd_identifier_token3] = ACTIONS(1871), - [aux_sym_cmd_identifier_token4] = ACTIONS(1871), - [aux_sym_cmd_identifier_token5] = ACTIONS(1871), - [aux_sym_cmd_identifier_token6] = ACTIONS(1871), - [aux_sym_cmd_identifier_token7] = ACTIONS(1871), - [aux_sym_cmd_identifier_token8] = ACTIONS(1871), - [aux_sym_cmd_identifier_token9] = ACTIONS(1871), - [aux_sym_cmd_identifier_token10] = ACTIONS(1871), - [aux_sym_cmd_identifier_token11] = ACTIONS(1871), - [aux_sym_cmd_identifier_token12] = ACTIONS(1871), - [aux_sym_cmd_identifier_token13] = ACTIONS(1871), - [aux_sym_cmd_identifier_token14] = ACTIONS(1871), - [aux_sym_cmd_identifier_token15] = ACTIONS(1871), - [aux_sym_cmd_identifier_token16] = ACTIONS(1871), - [aux_sym_cmd_identifier_token17] = ACTIONS(1871), - [aux_sym_cmd_identifier_token18] = ACTIONS(1871), - [aux_sym_cmd_identifier_token19] = ACTIONS(1871), - [aux_sym_cmd_identifier_token20] = ACTIONS(1871), - [aux_sym_cmd_identifier_token21] = ACTIONS(1871), - [aux_sym_cmd_identifier_token22] = ACTIONS(1871), - [aux_sym_cmd_identifier_token23] = ACTIONS(1871), - [aux_sym_cmd_identifier_token24] = ACTIONS(1871), - [aux_sym_cmd_identifier_token25] = ACTIONS(1871), - [aux_sym_cmd_identifier_token26] = ACTIONS(1871), - [aux_sym_cmd_identifier_token27] = ACTIONS(1871), - [aux_sym_cmd_identifier_token28] = ACTIONS(1871), - [aux_sym_cmd_identifier_token29] = ACTIONS(1871), - [aux_sym_cmd_identifier_token30] = ACTIONS(1871), - [aux_sym_cmd_identifier_token31] = ACTIONS(1871), - [aux_sym_cmd_identifier_token32] = ACTIONS(1871), - [aux_sym_cmd_identifier_token33] = ACTIONS(1871), - [aux_sym_cmd_identifier_token34] = ACTIONS(1871), - [aux_sym_cmd_identifier_token35] = ACTIONS(1871), - [aux_sym_cmd_identifier_token36] = ACTIONS(1871), - [anon_sym_true] = ACTIONS(1873), - [anon_sym_false] = ACTIONS(1873), - [anon_sym_null] = ACTIONS(1873), - [aux_sym_cmd_identifier_token38] = ACTIONS(1871), - [aux_sym_cmd_identifier_token39] = ACTIONS(1873), - [aux_sym_cmd_identifier_token40] = ACTIONS(1873), - [anon_sym_def] = ACTIONS(1871), - [anon_sym_export_DASHenv] = ACTIONS(1871), - [anon_sym_extern] = ACTIONS(1871), - [anon_sym_module] = ACTIONS(1871), - [anon_sym_use] = ACTIONS(1871), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_DOLLAR] = ACTIONS(1873), - [anon_sym_error] = ACTIONS(1871), - [anon_sym_list] = ACTIONS(1871), - [anon_sym_DASH] = ACTIONS(1871), - [anon_sym_break] = ACTIONS(1871), - [anon_sym_continue] = ACTIONS(1871), - [anon_sym_for] = ACTIONS(1871), - [anon_sym_in] = ACTIONS(1871), - [anon_sym_loop] = ACTIONS(1871), - [anon_sym_make] = ACTIONS(1871), - [anon_sym_while] = ACTIONS(1871), - [anon_sym_do] = ACTIONS(1871), - [anon_sym_if] = ACTIONS(1871), - [anon_sym_else] = ACTIONS(1871), - [anon_sym_match] = ACTIONS(1871), - [anon_sym_RBRACE] = ACTIONS(1873), - [anon_sym_try] = ACTIONS(1871), - [anon_sym_catch] = ACTIONS(1871), - [anon_sym_return] = ACTIONS(1871), - [anon_sym_source] = ACTIONS(1871), - [anon_sym_source_DASHenv] = ACTIONS(1871), - [anon_sym_register] = ACTIONS(1871), - [anon_sym_hide] = ACTIONS(1871), - [anon_sym_hide_DASHenv] = ACTIONS(1871), - [anon_sym_overlay] = ACTIONS(1871), - [anon_sym_new] = ACTIONS(1871), - [anon_sym_as] = ACTIONS(1871), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1873), - [anon_sym_DOT] = ACTIONS(1903), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1873), - [aux_sym__val_number_decimal_token1] = ACTIONS(1871), - [aux_sym__val_number_decimal_token2] = ACTIONS(1873), - [aux_sym__val_number_decimal_token3] = ACTIONS(1873), - [aux_sym__val_number_decimal_token4] = ACTIONS(1873), - [aux_sym__val_number_token1] = ACTIONS(1873), - [aux_sym__val_number_token2] = ACTIONS(1873), - [aux_sym__val_number_token3] = ACTIONS(1873), - [anon_sym_DQUOTE] = ACTIONS(1873), - [sym__str_single_quotes] = ACTIONS(1873), - [sym__str_back_ticks] = ACTIONS(1873), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1873), - [anon_sym_PLUS] = ACTIONS(1871), + [324] = { + [sym_comment] = STATE(324), + [aux_sym_shebang_repeat1] = STATE(324), + [anon_sym_export] = ACTIONS(1898), + [anon_sym_alias] = ACTIONS(1898), + [anon_sym_let] = ACTIONS(1898), + [anon_sym_let_DASHenv] = ACTIONS(1898), + [anon_sym_mut] = ACTIONS(1898), + [anon_sym_const] = ACTIONS(1898), + [aux_sym_cmd_identifier_token1] = ACTIONS(1898), + [aux_sym_cmd_identifier_token2] = ACTIONS(1898), + [aux_sym_cmd_identifier_token3] = ACTIONS(1898), + [aux_sym_cmd_identifier_token4] = ACTIONS(1898), + [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [aux_sym_cmd_identifier_token6] = ACTIONS(1898), + [aux_sym_cmd_identifier_token7] = ACTIONS(1898), + [aux_sym_cmd_identifier_token8] = ACTIONS(1898), + [aux_sym_cmd_identifier_token9] = ACTIONS(1898), + [aux_sym_cmd_identifier_token10] = ACTIONS(1898), + [aux_sym_cmd_identifier_token11] = ACTIONS(1898), + [aux_sym_cmd_identifier_token12] = ACTIONS(1898), + [aux_sym_cmd_identifier_token13] = ACTIONS(1898), + [aux_sym_cmd_identifier_token14] = ACTIONS(1898), + [aux_sym_cmd_identifier_token15] = ACTIONS(1898), + [aux_sym_cmd_identifier_token16] = ACTIONS(1898), + [aux_sym_cmd_identifier_token17] = ACTIONS(1898), + [aux_sym_cmd_identifier_token18] = ACTIONS(1898), + [aux_sym_cmd_identifier_token19] = ACTIONS(1898), + [aux_sym_cmd_identifier_token20] = ACTIONS(1898), + [aux_sym_cmd_identifier_token21] = ACTIONS(1898), + [aux_sym_cmd_identifier_token22] = ACTIONS(1898), + [aux_sym_cmd_identifier_token23] = ACTIONS(1898), + [aux_sym_cmd_identifier_token24] = ACTIONS(1900), + [aux_sym_cmd_identifier_token25] = ACTIONS(1898), + [aux_sym_cmd_identifier_token26] = ACTIONS(1900), + [aux_sym_cmd_identifier_token27] = ACTIONS(1898), + [aux_sym_cmd_identifier_token28] = ACTIONS(1898), + [aux_sym_cmd_identifier_token29] = ACTIONS(1898), + [aux_sym_cmd_identifier_token30] = ACTIONS(1898), + [aux_sym_cmd_identifier_token31] = ACTIONS(1900), + [aux_sym_cmd_identifier_token32] = ACTIONS(1900), + [aux_sym_cmd_identifier_token33] = ACTIONS(1900), + [aux_sym_cmd_identifier_token34] = ACTIONS(1900), + [aux_sym_cmd_identifier_token35] = ACTIONS(1900), + [aux_sym_cmd_identifier_token36] = ACTIONS(1898), + [anon_sym_true] = ACTIONS(1900), + [anon_sym_false] = ACTIONS(1900), + [anon_sym_null] = ACTIONS(1900), + [aux_sym_cmd_identifier_token38] = ACTIONS(1898), + [aux_sym_cmd_identifier_token39] = ACTIONS(1900), + [aux_sym_cmd_identifier_token40] = ACTIONS(1900), + [sym__newline] = ACTIONS(1902), + [anon_sym_def] = ACTIONS(1898), + [anon_sym_export_DASHenv] = ACTIONS(1898), + [anon_sym_extern] = ACTIONS(1898), + [anon_sym_module] = ACTIONS(1898), + [anon_sym_use] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(1900), + [anon_sym_LPAREN] = ACTIONS(1900), + [anon_sym_DOLLAR] = ACTIONS(1898), + [anon_sym_error] = ACTIONS(1898), + [anon_sym_DASH] = ACTIONS(1898), + [anon_sym_break] = ACTIONS(1898), + [anon_sym_continue] = ACTIONS(1898), + [anon_sym_for] = ACTIONS(1898), + [anon_sym_loop] = ACTIONS(1898), + [anon_sym_while] = ACTIONS(1898), + [anon_sym_do] = ACTIONS(1898), + [anon_sym_if] = ACTIONS(1898), + [anon_sym_match] = ACTIONS(1898), + [aux_sym_ctrl_match_token1] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(1898), + [anon_sym_try] = ACTIONS(1898), + [anon_sym_return] = ACTIONS(1898), + [anon_sym_source] = ACTIONS(1898), + [anon_sym_source_DASHenv] = ACTIONS(1898), + [anon_sym_register] = ACTIONS(1898), + [anon_sym_hide] = ACTIONS(1898), + [anon_sym_hide_DASHenv] = ACTIONS(1898), + [anon_sym_overlay] = ACTIONS(1898), + [anon_sym_where] = ACTIONS(1900), + [aux_sym_expr_unary_token1] = ACTIONS(1900), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1900), + [anon_sym_DOT_DOT_LT] = ACTIONS(1900), + [aux_sym__val_number_decimal_token1] = ACTIONS(1898), + [aux_sym__val_number_decimal_token2] = ACTIONS(1900), + [aux_sym__val_number_decimal_token3] = ACTIONS(1900), + [aux_sym__val_number_decimal_token4] = ACTIONS(1900), + [aux_sym__val_number_token1] = ACTIONS(1900), + [aux_sym__val_number_token2] = ACTIONS(1900), + [aux_sym__val_number_token3] = ACTIONS(1900), + [anon_sym_0b] = ACTIONS(1898), + [anon_sym_0o] = ACTIONS(1898), + [anon_sym_0x] = ACTIONS(1898), + [sym_val_date] = ACTIONS(1900), + [anon_sym_DQUOTE] = ACTIONS(1900), + [sym__str_single_quotes] = ACTIONS(1900), + [sym__str_back_ticks] = ACTIONS(1900), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1900), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1900), + [aux_sym_env_var_token1] = ACTIONS(1898), + [anon_sym_CARET] = ACTIONS(1900), [anon_sym_POUND] = ACTIONS(247), }, - [354] = { - [sym_comment] = STATE(354), + [325] = { + [sym_cell_path] = STATE(544), + [sym_path] = STATE(482), + [sym_comment] = STATE(325), + [aux_sym_cell_path_repeat1] = STATE(381), [anon_sym_export] = ACTIONS(1905), [anon_sym_alias] = ACTIONS(1905), [anon_sym_let] = ACTIONS(1905), @@ -119183,9 +112086,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(1905), [anon_sym_as] = ACTIONS(1905), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1905), - [anon_sym_DOT_DOT2] = ACTIONS(1907), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1909), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1909), + [anon_sym_DOT] = ACTIONS(1831), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1905), [aux_sym__val_number_decimal_token1] = ACTIONS(1905), [aux_sym__val_number_decimal_token2] = ACTIONS(1905), @@ -119198,15 +112099,2816 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(1905), [sym__str_back_ticks] = ACTIONS(1905), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1905), - [sym__entry_separator] = ACTIONS(1911), + [sym__entry_separator] = ACTIONS(1907), [anon_sym_PLUS] = ACTIONS(1905), [anon_sym_POUND] = ACTIONS(3), }, - [355] = { - [sym_cell_path] = STATE(614), - [sym_path] = STATE(532), - [sym_comment] = STATE(355), - [aux_sym_cell_path_repeat1] = STATE(424), + [326] = { + [sym_cell_path] = STATE(565), + [sym_path] = STATE(482), + [sym_comment] = STATE(326), + [aux_sym_cell_path_repeat1] = STATE(381), + [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), + [aux_sym_cmd_identifier_token1] = ACTIONS(1909), + [aux_sym_cmd_identifier_token2] = ACTIONS(1909), + [aux_sym_cmd_identifier_token3] = ACTIONS(1909), + [aux_sym_cmd_identifier_token4] = ACTIONS(1909), + [aux_sym_cmd_identifier_token5] = ACTIONS(1909), + [aux_sym_cmd_identifier_token6] = ACTIONS(1909), + [aux_sym_cmd_identifier_token7] = ACTIONS(1909), + [aux_sym_cmd_identifier_token8] = ACTIONS(1909), + [aux_sym_cmd_identifier_token9] = ACTIONS(1909), + [aux_sym_cmd_identifier_token10] = ACTIONS(1909), + [aux_sym_cmd_identifier_token11] = ACTIONS(1909), + [aux_sym_cmd_identifier_token12] = ACTIONS(1909), + [aux_sym_cmd_identifier_token13] = ACTIONS(1909), + [aux_sym_cmd_identifier_token14] = ACTIONS(1909), + [aux_sym_cmd_identifier_token15] = ACTIONS(1909), + [aux_sym_cmd_identifier_token16] = ACTIONS(1909), + [aux_sym_cmd_identifier_token17] = ACTIONS(1909), + [aux_sym_cmd_identifier_token18] = ACTIONS(1909), + [aux_sym_cmd_identifier_token19] = ACTIONS(1909), + [aux_sym_cmd_identifier_token20] = ACTIONS(1909), + [aux_sym_cmd_identifier_token21] = ACTIONS(1909), + [aux_sym_cmd_identifier_token22] = ACTIONS(1909), + [aux_sym_cmd_identifier_token23] = ACTIONS(1909), + [aux_sym_cmd_identifier_token24] = ACTIONS(1909), + [aux_sym_cmd_identifier_token25] = ACTIONS(1909), + [aux_sym_cmd_identifier_token26] = ACTIONS(1909), + [aux_sym_cmd_identifier_token27] = ACTIONS(1909), + [aux_sym_cmd_identifier_token28] = ACTIONS(1909), + [aux_sym_cmd_identifier_token29] = ACTIONS(1909), + [aux_sym_cmd_identifier_token30] = ACTIONS(1909), + [aux_sym_cmd_identifier_token31] = ACTIONS(1909), + [aux_sym_cmd_identifier_token32] = ACTIONS(1909), + [aux_sym_cmd_identifier_token33] = ACTIONS(1909), + [aux_sym_cmd_identifier_token34] = ACTIONS(1909), + [aux_sym_cmd_identifier_token35] = ACTIONS(1909), + [aux_sym_cmd_identifier_token36] = ACTIONS(1909), + [anon_sym_true] = ACTIONS(1909), + [anon_sym_false] = ACTIONS(1909), + [anon_sym_null] = ACTIONS(1909), + [aux_sym_cmd_identifier_token38] = ACTIONS(1909), + [aux_sym_cmd_identifier_token39] = ACTIONS(1909), + [aux_sym_cmd_identifier_token40] = ACTIONS(1909), + [anon_sym_def] = 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_LPAREN] = ACTIONS(1909), + [anon_sym_DOLLAR] = ACTIONS(1909), + [anon_sym_error] = ACTIONS(1909), + [anon_sym_list] = ACTIONS(1909), + [anon_sym_DASH] = ACTIONS(1909), + [anon_sym_break] = ACTIONS(1909), + [anon_sym_continue] = ACTIONS(1909), + [anon_sym_for] = ACTIONS(1909), + [anon_sym_in] = ACTIONS(1909), + [anon_sym_loop] = ACTIONS(1909), + [anon_sym_make] = ACTIONS(1909), + [anon_sym_while] = ACTIONS(1909), + [anon_sym_do] = ACTIONS(1909), + [anon_sym_if] = ACTIONS(1909), + [anon_sym_else] = ACTIONS(1909), + [anon_sym_match] = ACTIONS(1909), + [anon_sym_RBRACE] = ACTIONS(1909), + [anon_sym_try] = ACTIONS(1909), + [anon_sym_catch] = 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_new] = ACTIONS(1909), + [anon_sym_as] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1909), + [anon_sym_DOT] = ACTIONS(1831), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1909), + [aux_sym__val_number_decimal_token1] = ACTIONS(1909), + [aux_sym__val_number_decimal_token2] = ACTIONS(1909), + [aux_sym__val_number_decimal_token3] = ACTIONS(1909), + [aux_sym__val_number_decimal_token4] = ACTIONS(1909), + [aux_sym__val_number_token1] = ACTIONS(1909), + [aux_sym__val_number_token2] = ACTIONS(1909), + [aux_sym__val_number_token3] = ACTIONS(1909), + [anon_sym_DQUOTE] = ACTIONS(1909), + [sym__str_single_quotes] = ACTIONS(1909), + [sym__str_back_ticks] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1909), + [sym__entry_separator] = ACTIONS(1911), + [anon_sym_PLUS] = ACTIONS(1909), + [anon_sym_POUND] = ACTIONS(3), + }, + [327] = { + [sym_cell_path] = STATE(498), + [sym_path] = STATE(482), + [sym_comment] = STATE(327), + [aux_sym_cell_path_repeat1] = STATE(381), + [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), + [aux_sym_cmd_identifier_token1] = ACTIONS(1913), + [aux_sym_cmd_identifier_token2] = ACTIONS(1913), + [aux_sym_cmd_identifier_token3] = ACTIONS(1913), + [aux_sym_cmd_identifier_token4] = ACTIONS(1913), + [aux_sym_cmd_identifier_token5] = ACTIONS(1913), + [aux_sym_cmd_identifier_token6] = ACTIONS(1913), + [aux_sym_cmd_identifier_token7] = ACTIONS(1913), + [aux_sym_cmd_identifier_token8] = ACTIONS(1913), + [aux_sym_cmd_identifier_token9] = ACTIONS(1913), + [aux_sym_cmd_identifier_token10] = ACTIONS(1913), + [aux_sym_cmd_identifier_token11] = ACTIONS(1913), + [aux_sym_cmd_identifier_token12] = ACTIONS(1913), + [aux_sym_cmd_identifier_token13] = ACTIONS(1913), + [aux_sym_cmd_identifier_token14] = ACTIONS(1913), + [aux_sym_cmd_identifier_token15] = ACTIONS(1913), + [aux_sym_cmd_identifier_token16] = ACTIONS(1913), + [aux_sym_cmd_identifier_token17] = ACTIONS(1913), + [aux_sym_cmd_identifier_token18] = ACTIONS(1913), + [aux_sym_cmd_identifier_token19] = ACTIONS(1913), + [aux_sym_cmd_identifier_token20] = ACTIONS(1913), + [aux_sym_cmd_identifier_token21] = ACTIONS(1913), + [aux_sym_cmd_identifier_token22] = ACTIONS(1913), + [aux_sym_cmd_identifier_token23] = ACTIONS(1913), + [aux_sym_cmd_identifier_token24] = ACTIONS(1913), + [aux_sym_cmd_identifier_token25] = ACTIONS(1913), + [aux_sym_cmd_identifier_token26] = ACTIONS(1913), + [aux_sym_cmd_identifier_token27] = ACTIONS(1913), + [aux_sym_cmd_identifier_token28] = ACTIONS(1913), + [aux_sym_cmd_identifier_token29] = ACTIONS(1913), + [aux_sym_cmd_identifier_token30] = ACTIONS(1913), + [aux_sym_cmd_identifier_token31] = ACTIONS(1913), + [aux_sym_cmd_identifier_token32] = ACTIONS(1913), + [aux_sym_cmd_identifier_token33] = ACTIONS(1913), + [aux_sym_cmd_identifier_token34] = ACTIONS(1913), + [aux_sym_cmd_identifier_token35] = ACTIONS(1913), + [aux_sym_cmd_identifier_token36] = ACTIONS(1913), + [anon_sym_true] = ACTIONS(1913), + [anon_sym_false] = ACTIONS(1913), + [anon_sym_null] = ACTIONS(1913), + [aux_sym_cmd_identifier_token38] = ACTIONS(1913), + [aux_sym_cmd_identifier_token39] = ACTIONS(1913), + [aux_sym_cmd_identifier_token40] = ACTIONS(1913), + [anon_sym_def] = 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_LPAREN] = ACTIONS(1913), + [anon_sym_DOLLAR] = ACTIONS(1913), + [anon_sym_error] = ACTIONS(1913), + [anon_sym_list] = ACTIONS(1913), + [anon_sym_DASH] = ACTIONS(1913), + [anon_sym_break] = ACTIONS(1913), + [anon_sym_continue] = ACTIONS(1913), + [anon_sym_for] = ACTIONS(1913), + [anon_sym_in] = ACTIONS(1913), + [anon_sym_loop] = ACTIONS(1913), + [anon_sym_make] = ACTIONS(1913), + [anon_sym_while] = ACTIONS(1913), + [anon_sym_do] = ACTIONS(1913), + [anon_sym_if] = ACTIONS(1913), + [anon_sym_else] = ACTIONS(1913), + [anon_sym_match] = ACTIONS(1913), + [anon_sym_RBRACE] = ACTIONS(1913), + [anon_sym_try] = ACTIONS(1913), + [anon_sym_catch] = 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_new] = ACTIONS(1913), + [anon_sym_as] = ACTIONS(1913), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1913), + [anon_sym_DOT] = ACTIONS(1831), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1913), + [aux_sym__val_number_decimal_token1] = ACTIONS(1913), + [aux_sym__val_number_decimal_token2] = ACTIONS(1913), + [aux_sym__val_number_decimal_token3] = ACTIONS(1913), + [aux_sym__val_number_decimal_token4] = ACTIONS(1913), + [aux_sym__val_number_token1] = ACTIONS(1913), + [aux_sym__val_number_token2] = ACTIONS(1913), + [aux_sym__val_number_token3] = ACTIONS(1913), + [anon_sym_DQUOTE] = ACTIONS(1913), + [sym__str_single_quotes] = ACTIONS(1913), + [sym__str_back_ticks] = ACTIONS(1913), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1913), + [sym__entry_separator] = ACTIONS(1915), + [anon_sym_PLUS] = ACTIONS(1913), + [anon_sym_POUND] = ACTIONS(3), + }, + [328] = { + [sym_cell_path] = STATE(499), + [sym_path] = STATE(482), + [sym_comment] = STATE(328), + [aux_sym_cell_path_repeat1] = STATE(381), + [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), + [aux_sym_cmd_identifier_token1] = ACTIONS(1917), + [aux_sym_cmd_identifier_token2] = ACTIONS(1917), + [aux_sym_cmd_identifier_token3] = ACTIONS(1917), + [aux_sym_cmd_identifier_token4] = ACTIONS(1917), + [aux_sym_cmd_identifier_token5] = ACTIONS(1917), + [aux_sym_cmd_identifier_token6] = ACTIONS(1917), + [aux_sym_cmd_identifier_token7] = ACTIONS(1917), + [aux_sym_cmd_identifier_token8] = ACTIONS(1917), + [aux_sym_cmd_identifier_token9] = ACTIONS(1917), + [aux_sym_cmd_identifier_token10] = ACTIONS(1917), + [aux_sym_cmd_identifier_token11] = ACTIONS(1917), + [aux_sym_cmd_identifier_token12] = ACTIONS(1917), + [aux_sym_cmd_identifier_token13] = ACTIONS(1917), + [aux_sym_cmd_identifier_token14] = ACTIONS(1917), + [aux_sym_cmd_identifier_token15] = ACTIONS(1917), + [aux_sym_cmd_identifier_token16] = ACTIONS(1917), + [aux_sym_cmd_identifier_token17] = ACTIONS(1917), + [aux_sym_cmd_identifier_token18] = ACTIONS(1917), + [aux_sym_cmd_identifier_token19] = ACTIONS(1917), + [aux_sym_cmd_identifier_token20] = ACTIONS(1917), + [aux_sym_cmd_identifier_token21] = ACTIONS(1917), + [aux_sym_cmd_identifier_token22] = ACTIONS(1917), + [aux_sym_cmd_identifier_token23] = ACTIONS(1917), + [aux_sym_cmd_identifier_token24] = ACTIONS(1917), + [aux_sym_cmd_identifier_token25] = ACTIONS(1917), + [aux_sym_cmd_identifier_token26] = ACTIONS(1917), + [aux_sym_cmd_identifier_token27] = ACTIONS(1917), + [aux_sym_cmd_identifier_token28] = ACTIONS(1917), + [aux_sym_cmd_identifier_token29] = ACTIONS(1917), + [aux_sym_cmd_identifier_token30] = ACTIONS(1917), + [aux_sym_cmd_identifier_token31] = ACTIONS(1917), + [aux_sym_cmd_identifier_token32] = ACTIONS(1917), + [aux_sym_cmd_identifier_token33] = ACTIONS(1917), + [aux_sym_cmd_identifier_token34] = ACTIONS(1917), + [aux_sym_cmd_identifier_token35] = ACTIONS(1917), + [aux_sym_cmd_identifier_token36] = ACTIONS(1917), + [anon_sym_true] = ACTIONS(1917), + [anon_sym_false] = ACTIONS(1917), + [anon_sym_null] = ACTIONS(1917), + [aux_sym_cmd_identifier_token38] = ACTIONS(1917), + [aux_sym_cmd_identifier_token39] = ACTIONS(1917), + [aux_sym_cmd_identifier_token40] = ACTIONS(1917), + [anon_sym_def] = 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_LPAREN] = ACTIONS(1917), + [anon_sym_DOLLAR] = ACTIONS(1917), + [anon_sym_error] = ACTIONS(1917), + [anon_sym_list] = ACTIONS(1917), + [anon_sym_DASH] = ACTIONS(1917), + [anon_sym_break] = ACTIONS(1917), + [anon_sym_continue] = ACTIONS(1917), + [anon_sym_for] = ACTIONS(1917), + [anon_sym_in] = ACTIONS(1917), + [anon_sym_loop] = ACTIONS(1917), + [anon_sym_make] = ACTIONS(1917), + [anon_sym_while] = ACTIONS(1917), + [anon_sym_do] = ACTIONS(1917), + [anon_sym_if] = ACTIONS(1917), + [anon_sym_else] = ACTIONS(1917), + [anon_sym_match] = ACTIONS(1917), + [anon_sym_RBRACE] = ACTIONS(1917), + [anon_sym_try] = ACTIONS(1917), + [anon_sym_catch] = 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_new] = ACTIONS(1917), + [anon_sym_as] = ACTIONS(1917), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1917), + [anon_sym_DOT] = ACTIONS(1831), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1917), + [aux_sym__val_number_decimal_token1] = ACTIONS(1917), + [aux_sym__val_number_decimal_token2] = ACTIONS(1917), + [aux_sym__val_number_decimal_token3] = ACTIONS(1917), + [aux_sym__val_number_decimal_token4] = ACTIONS(1917), + [aux_sym__val_number_token1] = ACTIONS(1917), + [aux_sym__val_number_token2] = ACTIONS(1917), + [aux_sym__val_number_token3] = ACTIONS(1917), + [anon_sym_DQUOTE] = ACTIONS(1917), + [sym__str_single_quotes] = ACTIONS(1917), + [sym__str_back_ticks] = ACTIONS(1917), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1917), + [sym__entry_separator] = ACTIONS(1919), + [anon_sym_PLUS] = ACTIONS(1917), + [anon_sym_POUND] = ACTIONS(3), + }, + [329] = { + [sym_cell_path] = STATE(471), + [sym_path] = STATE(482), + [sym_comment] = STATE(329), + [aux_sym_cell_path_repeat1] = STATE(381), + [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), + [aux_sym_cmd_identifier_token1] = ACTIONS(1921), + [aux_sym_cmd_identifier_token2] = ACTIONS(1921), + [aux_sym_cmd_identifier_token3] = ACTIONS(1921), + [aux_sym_cmd_identifier_token4] = ACTIONS(1921), + [aux_sym_cmd_identifier_token5] = ACTIONS(1921), + [aux_sym_cmd_identifier_token6] = ACTIONS(1921), + [aux_sym_cmd_identifier_token7] = ACTIONS(1921), + [aux_sym_cmd_identifier_token8] = ACTIONS(1921), + [aux_sym_cmd_identifier_token9] = ACTIONS(1921), + [aux_sym_cmd_identifier_token10] = ACTIONS(1921), + [aux_sym_cmd_identifier_token11] = ACTIONS(1921), + [aux_sym_cmd_identifier_token12] = ACTIONS(1921), + [aux_sym_cmd_identifier_token13] = ACTIONS(1921), + [aux_sym_cmd_identifier_token14] = ACTIONS(1921), + [aux_sym_cmd_identifier_token15] = ACTIONS(1921), + [aux_sym_cmd_identifier_token16] = ACTIONS(1921), + [aux_sym_cmd_identifier_token17] = ACTIONS(1921), + [aux_sym_cmd_identifier_token18] = ACTIONS(1921), + [aux_sym_cmd_identifier_token19] = ACTIONS(1921), + [aux_sym_cmd_identifier_token20] = ACTIONS(1921), + [aux_sym_cmd_identifier_token21] = ACTIONS(1921), + [aux_sym_cmd_identifier_token22] = ACTIONS(1921), + [aux_sym_cmd_identifier_token23] = ACTIONS(1921), + [aux_sym_cmd_identifier_token24] = ACTIONS(1921), + [aux_sym_cmd_identifier_token25] = ACTIONS(1921), + [aux_sym_cmd_identifier_token26] = ACTIONS(1921), + [aux_sym_cmd_identifier_token27] = ACTIONS(1921), + [aux_sym_cmd_identifier_token28] = ACTIONS(1921), + [aux_sym_cmd_identifier_token29] = ACTIONS(1921), + [aux_sym_cmd_identifier_token30] = ACTIONS(1921), + [aux_sym_cmd_identifier_token31] = ACTIONS(1921), + [aux_sym_cmd_identifier_token32] = ACTIONS(1921), + [aux_sym_cmd_identifier_token33] = ACTIONS(1921), + [aux_sym_cmd_identifier_token34] = ACTIONS(1921), + [aux_sym_cmd_identifier_token35] = ACTIONS(1921), + [aux_sym_cmd_identifier_token36] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1921), + [anon_sym_false] = ACTIONS(1921), + [anon_sym_null] = ACTIONS(1921), + [aux_sym_cmd_identifier_token38] = ACTIONS(1921), + [aux_sym_cmd_identifier_token39] = ACTIONS(1921), + [aux_sym_cmd_identifier_token40] = ACTIONS(1921), + [anon_sym_def] = 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_LPAREN] = ACTIONS(1921), + [anon_sym_DOLLAR] = ACTIONS(1921), + [anon_sym_error] = ACTIONS(1921), + [anon_sym_list] = ACTIONS(1921), + [anon_sym_DASH] = ACTIONS(1921), + [anon_sym_break] = ACTIONS(1921), + [anon_sym_continue] = ACTIONS(1921), + [anon_sym_for] = ACTIONS(1921), + [anon_sym_in] = ACTIONS(1921), + [anon_sym_loop] = ACTIONS(1921), + [anon_sym_make] = ACTIONS(1921), + [anon_sym_while] = ACTIONS(1921), + [anon_sym_do] = ACTIONS(1921), + [anon_sym_if] = ACTIONS(1921), + [anon_sym_else] = ACTIONS(1921), + [anon_sym_match] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(1921), + [anon_sym_try] = ACTIONS(1921), + [anon_sym_catch] = 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_new] = ACTIONS(1921), + [anon_sym_as] = ACTIONS(1921), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1921), + [anon_sym_DOT] = ACTIONS(1831), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1921), + [aux_sym__val_number_decimal_token1] = ACTIONS(1921), + [aux_sym__val_number_decimal_token2] = ACTIONS(1921), + [aux_sym__val_number_decimal_token3] = ACTIONS(1921), + [aux_sym__val_number_decimal_token4] = ACTIONS(1921), + [aux_sym__val_number_token1] = ACTIONS(1921), + [aux_sym__val_number_token2] = ACTIONS(1921), + [aux_sym__val_number_token3] = ACTIONS(1921), + [anon_sym_DQUOTE] = ACTIONS(1921), + [sym__str_single_quotes] = ACTIONS(1921), + [sym__str_back_ticks] = ACTIONS(1921), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1921), + [sym__entry_separator] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(3), + }, + [330] = { + [sym_comment] = STATE(330), + [anon_sym_export] = ACTIONS(1786), + [anon_sym_alias] = ACTIONS(1786), + [anon_sym_let] = ACTIONS(1786), + [anon_sym_let_DASHenv] = ACTIONS(1786), + [anon_sym_mut] = ACTIONS(1786), + [anon_sym_const] = ACTIONS(1786), + [aux_sym_cmd_identifier_token1] = ACTIONS(1786), + [aux_sym_cmd_identifier_token2] = ACTIONS(1786), + [aux_sym_cmd_identifier_token3] = ACTIONS(1786), + [aux_sym_cmd_identifier_token4] = ACTIONS(1786), + [aux_sym_cmd_identifier_token5] = ACTIONS(1786), + [aux_sym_cmd_identifier_token6] = ACTIONS(1786), + [aux_sym_cmd_identifier_token7] = ACTIONS(1786), + [aux_sym_cmd_identifier_token8] = ACTIONS(1786), + [aux_sym_cmd_identifier_token9] = ACTIONS(1786), + [aux_sym_cmd_identifier_token10] = ACTIONS(1786), + [aux_sym_cmd_identifier_token11] = ACTIONS(1786), + [aux_sym_cmd_identifier_token12] = ACTIONS(1786), + [aux_sym_cmd_identifier_token13] = ACTIONS(1786), + [aux_sym_cmd_identifier_token14] = ACTIONS(1786), + [aux_sym_cmd_identifier_token15] = ACTIONS(1786), + [aux_sym_cmd_identifier_token16] = ACTIONS(1786), + [aux_sym_cmd_identifier_token17] = ACTIONS(1786), + [aux_sym_cmd_identifier_token18] = ACTIONS(1786), + [aux_sym_cmd_identifier_token19] = ACTIONS(1786), + [aux_sym_cmd_identifier_token20] = ACTIONS(1786), + [aux_sym_cmd_identifier_token21] = ACTIONS(1786), + [aux_sym_cmd_identifier_token22] = ACTIONS(1786), + [aux_sym_cmd_identifier_token23] = ACTIONS(1786), + [aux_sym_cmd_identifier_token24] = ACTIONS(1786), + [aux_sym_cmd_identifier_token25] = ACTIONS(1786), + [aux_sym_cmd_identifier_token26] = ACTIONS(1786), + [aux_sym_cmd_identifier_token27] = ACTIONS(1786), + [aux_sym_cmd_identifier_token28] = ACTIONS(1786), + [aux_sym_cmd_identifier_token29] = ACTIONS(1786), + [aux_sym_cmd_identifier_token30] = ACTIONS(1786), + [aux_sym_cmd_identifier_token31] = ACTIONS(1786), + [aux_sym_cmd_identifier_token32] = ACTIONS(1786), + [aux_sym_cmd_identifier_token33] = ACTIONS(1786), + [aux_sym_cmd_identifier_token34] = ACTIONS(1786), + [aux_sym_cmd_identifier_token35] = ACTIONS(1786), + [aux_sym_cmd_identifier_token36] = ACTIONS(1786), + [anon_sym_true] = ACTIONS(1794), + [anon_sym_false] = ACTIONS(1794), + [anon_sym_null] = ACTIONS(1794), + [aux_sym_cmd_identifier_token38] = ACTIONS(1786), + [aux_sym_cmd_identifier_token39] = ACTIONS(1794), + [aux_sym_cmd_identifier_token40] = ACTIONS(1794), + [anon_sym_def] = ACTIONS(1786), + [anon_sym_export_DASHenv] = ACTIONS(1786), + [anon_sym_extern] = ACTIONS(1786), + [anon_sym_module] = ACTIONS(1786), + [anon_sym_use] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_error] = ACTIONS(1786), + [anon_sym_list] = ACTIONS(1786), + [anon_sym_DASH] = ACTIONS(1786), + [anon_sym_break] = ACTIONS(1786), + [anon_sym_continue] = ACTIONS(1786), + [anon_sym_for] = ACTIONS(1786), + [anon_sym_in] = ACTIONS(1786), + [anon_sym_loop] = ACTIONS(1786), + [anon_sym_make] = ACTIONS(1786), + [anon_sym_while] = ACTIONS(1786), + [anon_sym_do] = ACTIONS(1786), + [anon_sym_if] = ACTIONS(1786), + [anon_sym_else] = ACTIONS(1786), + [anon_sym_match] = ACTIONS(1786), + [anon_sym_RBRACE] = ACTIONS(1794), + [anon_sym_try] = ACTIONS(1786), + [anon_sym_catch] = ACTIONS(1786), + [anon_sym_return] = ACTIONS(1786), + [anon_sym_source] = ACTIONS(1786), + [anon_sym_source_DASHenv] = ACTIONS(1786), + [anon_sym_register] = ACTIONS(1786), + [anon_sym_hide] = ACTIONS(1786), + [anon_sym_hide_DASHenv] = ACTIONS(1786), + [anon_sym_overlay] = ACTIONS(1786), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_as] = ACTIONS(1786), + [anon_sym_LPAREN2] = ACTIONS(1788), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1794), + [anon_sym_DOT_DOT2] = ACTIONS(1925), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1927), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1794), + [aux_sym__val_number_decimal_token1] = ACTIONS(1786), + [aux_sym__val_number_decimal_token2] = ACTIONS(1794), + [aux_sym__val_number_decimal_token3] = ACTIONS(1794), + [aux_sym__val_number_decimal_token4] = ACTIONS(1794), + [aux_sym__val_number_token1] = ACTIONS(1794), + [aux_sym__val_number_token2] = ACTIONS(1794), + [aux_sym__val_number_token3] = ACTIONS(1794), + [anon_sym_DQUOTE] = ACTIONS(1794), + [sym__str_single_quotes] = ACTIONS(1794), + [sym__str_back_ticks] = ACTIONS(1794), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1794), + [anon_sym_PLUS] = ACTIONS(1786), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1495), + [anon_sym_POUND] = ACTIONS(247), + }, + [331] = { + [sym_comment] = STATE(331), + [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), + [aux_sym_cmd_identifier_token1] = ACTIONS(1929), + [aux_sym_cmd_identifier_token2] = ACTIONS(1929), + [aux_sym_cmd_identifier_token3] = ACTIONS(1929), + [aux_sym_cmd_identifier_token4] = ACTIONS(1929), + [aux_sym_cmd_identifier_token5] = ACTIONS(1929), + [aux_sym_cmd_identifier_token6] = ACTIONS(1929), + [aux_sym_cmd_identifier_token7] = ACTIONS(1929), + [aux_sym_cmd_identifier_token8] = ACTIONS(1929), + [aux_sym_cmd_identifier_token9] = ACTIONS(1929), + [aux_sym_cmd_identifier_token10] = ACTIONS(1929), + [aux_sym_cmd_identifier_token11] = ACTIONS(1929), + [aux_sym_cmd_identifier_token12] = ACTIONS(1929), + [aux_sym_cmd_identifier_token13] = ACTIONS(1929), + [aux_sym_cmd_identifier_token14] = ACTIONS(1929), + [aux_sym_cmd_identifier_token15] = ACTIONS(1929), + [aux_sym_cmd_identifier_token16] = ACTIONS(1929), + [aux_sym_cmd_identifier_token17] = ACTIONS(1929), + [aux_sym_cmd_identifier_token18] = ACTIONS(1929), + [aux_sym_cmd_identifier_token19] = ACTIONS(1929), + [aux_sym_cmd_identifier_token20] = ACTIONS(1929), + [aux_sym_cmd_identifier_token21] = ACTIONS(1929), + [aux_sym_cmd_identifier_token22] = ACTIONS(1929), + [aux_sym_cmd_identifier_token23] = ACTIONS(1929), + [aux_sym_cmd_identifier_token24] = ACTIONS(1931), + [aux_sym_cmd_identifier_token25] = ACTIONS(1929), + [aux_sym_cmd_identifier_token26] = ACTIONS(1931), + [aux_sym_cmd_identifier_token27] = ACTIONS(1929), + [aux_sym_cmd_identifier_token28] = ACTIONS(1929), + [aux_sym_cmd_identifier_token29] = ACTIONS(1929), + [aux_sym_cmd_identifier_token30] = ACTIONS(1929), + [aux_sym_cmd_identifier_token31] = ACTIONS(1931), + [aux_sym_cmd_identifier_token32] = ACTIONS(1931), + [aux_sym_cmd_identifier_token33] = ACTIONS(1931), + [aux_sym_cmd_identifier_token34] = ACTIONS(1931), + [aux_sym_cmd_identifier_token35] = ACTIONS(1931), + [aux_sym_cmd_identifier_token36] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1931), + [aux_sym_cmd_identifier_token38] = ACTIONS(1929), + [aux_sym_cmd_identifier_token39] = ACTIONS(1931), + [aux_sym_cmd_identifier_token40] = ACTIONS(1931), + [sym__newline] = ACTIONS(1931), + [anon_sym_SEMI] = ACTIONS(1931), + [anon_sym_def] = 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(1931), + [anon_sym_LPAREN] = ACTIONS(1931), + [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), + [aux_sym_ctrl_match_token1] = ACTIONS(1931), + [anon_sym_DOT_DOT] = 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(1931), + [aux_sym_expr_unary_token1] = ACTIONS(1931), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1931), + [anon_sym_DOT_DOT_LT] = ACTIONS(1931), + [aux_sym__val_number_decimal_token1] = ACTIONS(1929), + [aux_sym__val_number_decimal_token2] = ACTIONS(1931), + [aux_sym__val_number_decimal_token3] = ACTIONS(1931), + [aux_sym__val_number_decimal_token4] = ACTIONS(1931), + [aux_sym__val_number_token1] = ACTIONS(1931), + [aux_sym__val_number_token2] = ACTIONS(1931), + [aux_sym__val_number_token3] = ACTIONS(1931), + [anon_sym_0b] = ACTIONS(1929), + [anon_sym_0o] = ACTIONS(1929), + [anon_sym_0x] = ACTIONS(1929), + [sym_val_date] = ACTIONS(1931), + [anon_sym_DQUOTE] = ACTIONS(1931), + [sym__str_single_quotes] = ACTIONS(1931), + [sym__str_back_ticks] = ACTIONS(1931), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1931), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1931), + [aux_sym_env_var_token1] = ACTIONS(1929), + [anon_sym_CARET] = ACTIONS(1931), + [anon_sym_POUND] = ACTIONS(247), + }, + [332] = { + [sym_comment] = STATE(332), + [anon_sym_export] = ACTIONS(1796), + [anon_sym_alias] = ACTIONS(1796), + [anon_sym_let] = ACTIONS(1796), + [anon_sym_let_DASHenv] = ACTIONS(1796), + [anon_sym_mut] = ACTIONS(1796), + [anon_sym_const] = ACTIONS(1796), + [aux_sym_cmd_identifier_token1] = ACTIONS(1796), + [aux_sym_cmd_identifier_token2] = ACTIONS(1796), + [aux_sym_cmd_identifier_token3] = ACTIONS(1796), + [aux_sym_cmd_identifier_token4] = ACTIONS(1796), + [aux_sym_cmd_identifier_token5] = ACTIONS(1796), + [aux_sym_cmd_identifier_token6] = ACTIONS(1796), + [aux_sym_cmd_identifier_token7] = ACTIONS(1796), + [aux_sym_cmd_identifier_token8] = ACTIONS(1796), + [aux_sym_cmd_identifier_token9] = ACTIONS(1796), + [aux_sym_cmd_identifier_token10] = ACTIONS(1796), + [aux_sym_cmd_identifier_token11] = ACTIONS(1796), + [aux_sym_cmd_identifier_token12] = ACTIONS(1796), + [aux_sym_cmd_identifier_token13] = ACTIONS(1796), + [aux_sym_cmd_identifier_token14] = ACTIONS(1796), + [aux_sym_cmd_identifier_token15] = ACTIONS(1796), + [aux_sym_cmd_identifier_token16] = ACTIONS(1796), + [aux_sym_cmd_identifier_token17] = ACTIONS(1796), + [aux_sym_cmd_identifier_token18] = ACTIONS(1796), + [aux_sym_cmd_identifier_token19] = ACTIONS(1796), + [aux_sym_cmd_identifier_token20] = ACTIONS(1796), + [aux_sym_cmd_identifier_token21] = ACTIONS(1796), + [aux_sym_cmd_identifier_token22] = ACTIONS(1796), + [aux_sym_cmd_identifier_token23] = ACTIONS(1796), + [aux_sym_cmd_identifier_token24] = ACTIONS(1796), + [aux_sym_cmd_identifier_token25] = ACTIONS(1796), + [aux_sym_cmd_identifier_token26] = ACTIONS(1796), + [aux_sym_cmd_identifier_token27] = ACTIONS(1796), + [aux_sym_cmd_identifier_token28] = ACTIONS(1796), + [aux_sym_cmd_identifier_token29] = ACTIONS(1796), + [aux_sym_cmd_identifier_token30] = ACTIONS(1796), + [aux_sym_cmd_identifier_token31] = ACTIONS(1796), + [aux_sym_cmd_identifier_token32] = ACTIONS(1796), + [aux_sym_cmd_identifier_token33] = ACTIONS(1796), + [aux_sym_cmd_identifier_token34] = ACTIONS(1796), + [aux_sym_cmd_identifier_token35] = ACTIONS(1796), + [aux_sym_cmd_identifier_token36] = ACTIONS(1796), + [anon_sym_true] = ACTIONS(1804), + [anon_sym_false] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1804), + [aux_sym_cmd_identifier_token38] = ACTIONS(1796), + [aux_sym_cmd_identifier_token39] = ACTIONS(1804), + [aux_sym_cmd_identifier_token40] = ACTIONS(1804), + [anon_sym_def] = ACTIONS(1796), + [anon_sym_export_DASHenv] = ACTIONS(1796), + [anon_sym_extern] = ACTIONS(1796), + [anon_sym_module] = ACTIONS(1796), + [anon_sym_use] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(1796), + [anon_sym_DOLLAR] = ACTIONS(1804), + [anon_sym_error] = ACTIONS(1796), + [anon_sym_list] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_for] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_loop] = ACTIONS(1796), + [anon_sym_make] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_do] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_match] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_catch] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_source] = ACTIONS(1796), + [anon_sym_source_DASHenv] = ACTIONS(1796), + [anon_sym_register] = ACTIONS(1796), + [anon_sym_hide] = ACTIONS(1796), + [anon_sym_hide_DASHenv] = ACTIONS(1796), + [anon_sym_overlay] = ACTIONS(1796), + [anon_sym_new] = ACTIONS(1796), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LPAREN2] = ACTIONS(1798), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1804), + [anon_sym_DOT_DOT2] = ACTIONS(1933), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1935), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1935), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1804), + [aux_sym__val_number_decimal_token1] = ACTIONS(1796), + [aux_sym__val_number_decimal_token2] = ACTIONS(1804), + [aux_sym__val_number_decimal_token3] = ACTIONS(1804), + [aux_sym__val_number_decimal_token4] = ACTIONS(1804), + [aux_sym__val_number_token1] = ACTIONS(1804), + [aux_sym__val_number_token2] = ACTIONS(1804), + [aux_sym__val_number_token3] = ACTIONS(1804), + [anon_sym_DQUOTE] = ACTIONS(1804), + [sym__str_single_quotes] = ACTIONS(1804), + [sym__str_back_ticks] = ACTIONS(1804), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1796), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1806), + [anon_sym_POUND] = ACTIONS(247), + }, + [333] = { + [sym_cell_path] = STATE(538), + [sym_path] = STATE(482), + [sym_comment] = STATE(333), + [aux_sym_cell_path_repeat1] = STATE(381), + [anon_sym_export] = ACTIONS(1937), + [anon_sym_alias] = ACTIONS(1937), + [anon_sym_let] = ACTIONS(1937), + [anon_sym_let_DASHenv] = ACTIONS(1937), + [anon_sym_mut] = ACTIONS(1937), + [anon_sym_const] = ACTIONS(1937), + [aux_sym_cmd_identifier_token1] = ACTIONS(1937), + [aux_sym_cmd_identifier_token2] = ACTIONS(1937), + [aux_sym_cmd_identifier_token3] = ACTIONS(1937), + [aux_sym_cmd_identifier_token4] = ACTIONS(1937), + [aux_sym_cmd_identifier_token5] = ACTIONS(1937), + [aux_sym_cmd_identifier_token6] = ACTIONS(1937), + [aux_sym_cmd_identifier_token7] = ACTIONS(1937), + [aux_sym_cmd_identifier_token8] = ACTIONS(1937), + [aux_sym_cmd_identifier_token9] = ACTIONS(1937), + [aux_sym_cmd_identifier_token10] = ACTIONS(1937), + [aux_sym_cmd_identifier_token11] = ACTIONS(1937), + [aux_sym_cmd_identifier_token12] = ACTIONS(1937), + [aux_sym_cmd_identifier_token13] = ACTIONS(1937), + [aux_sym_cmd_identifier_token14] = ACTIONS(1937), + [aux_sym_cmd_identifier_token15] = ACTIONS(1937), + [aux_sym_cmd_identifier_token16] = ACTIONS(1937), + [aux_sym_cmd_identifier_token17] = ACTIONS(1937), + [aux_sym_cmd_identifier_token18] = ACTIONS(1937), + [aux_sym_cmd_identifier_token19] = ACTIONS(1937), + [aux_sym_cmd_identifier_token20] = ACTIONS(1937), + [aux_sym_cmd_identifier_token21] = ACTIONS(1937), + [aux_sym_cmd_identifier_token22] = ACTIONS(1937), + [aux_sym_cmd_identifier_token23] = ACTIONS(1937), + [aux_sym_cmd_identifier_token24] = ACTIONS(1937), + [aux_sym_cmd_identifier_token25] = ACTIONS(1937), + [aux_sym_cmd_identifier_token26] = ACTIONS(1937), + [aux_sym_cmd_identifier_token27] = ACTIONS(1937), + [aux_sym_cmd_identifier_token28] = ACTIONS(1937), + [aux_sym_cmd_identifier_token29] = ACTIONS(1937), + [aux_sym_cmd_identifier_token30] = ACTIONS(1937), + [aux_sym_cmd_identifier_token31] = ACTIONS(1937), + [aux_sym_cmd_identifier_token32] = ACTIONS(1937), + [aux_sym_cmd_identifier_token33] = ACTIONS(1937), + [aux_sym_cmd_identifier_token34] = ACTIONS(1937), + [aux_sym_cmd_identifier_token35] = ACTIONS(1937), + [aux_sym_cmd_identifier_token36] = ACTIONS(1937), + [anon_sym_true] = ACTIONS(1937), + [anon_sym_false] = ACTIONS(1937), + [anon_sym_null] = ACTIONS(1937), + [aux_sym_cmd_identifier_token38] = ACTIONS(1937), + [aux_sym_cmd_identifier_token39] = ACTIONS(1937), + [aux_sym_cmd_identifier_token40] = ACTIONS(1937), + [anon_sym_def] = ACTIONS(1937), + [anon_sym_export_DASHenv] = ACTIONS(1937), + [anon_sym_extern] = ACTIONS(1937), + [anon_sym_module] = ACTIONS(1937), + [anon_sym_use] = ACTIONS(1937), + [anon_sym_LPAREN] = ACTIONS(1937), + [anon_sym_DOLLAR] = ACTIONS(1937), + [anon_sym_error] = ACTIONS(1937), + [anon_sym_list] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1937), + [anon_sym_break] = ACTIONS(1937), + [anon_sym_continue] = ACTIONS(1937), + [anon_sym_for] = ACTIONS(1937), + [anon_sym_in] = ACTIONS(1937), + [anon_sym_loop] = ACTIONS(1937), + [anon_sym_make] = ACTIONS(1937), + [anon_sym_while] = ACTIONS(1937), + [anon_sym_do] = ACTIONS(1937), + [anon_sym_if] = ACTIONS(1937), + [anon_sym_else] = ACTIONS(1937), + [anon_sym_match] = ACTIONS(1937), + [anon_sym_RBRACE] = ACTIONS(1937), + [anon_sym_try] = ACTIONS(1937), + [anon_sym_catch] = ACTIONS(1937), + [anon_sym_return] = ACTIONS(1937), + [anon_sym_source] = ACTIONS(1937), + [anon_sym_source_DASHenv] = ACTIONS(1937), + [anon_sym_register] = ACTIONS(1937), + [anon_sym_hide] = ACTIONS(1937), + [anon_sym_hide_DASHenv] = ACTIONS(1937), + [anon_sym_overlay] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1937), + [anon_sym_as] = ACTIONS(1937), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1937), + [anon_sym_DOT] = ACTIONS(1831), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1937), + [aux_sym__val_number_decimal_token1] = ACTIONS(1937), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1937), + [aux_sym__val_number_decimal_token4] = ACTIONS(1937), + [aux_sym__val_number_token1] = ACTIONS(1937), + [aux_sym__val_number_token2] = ACTIONS(1937), + [aux_sym__val_number_token3] = ACTIONS(1937), + [anon_sym_DQUOTE] = ACTIONS(1937), + [sym__str_single_quotes] = ACTIONS(1937), + [sym__str_back_ticks] = ACTIONS(1937), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1937), + [sym__entry_separator] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1937), + [anon_sym_POUND] = ACTIONS(3), + }, + [334] = { + [sym_comment] = STATE(334), + [anon_sym_export] = ACTIONS(1631), + [anon_sym_alias] = ACTIONS(1631), + [anon_sym_let] = ACTIONS(1631), + [anon_sym_let_DASHenv] = ACTIONS(1631), + [anon_sym_mut] = ACTIONS(1631), + [anon_sym_const] = ACTIONS(1631), + [aux_sym_cmd_identifier_token1] = ACTIONS(1631), + [aux_sym_cmd_identifier_token2] = ACTIONS(1631), + [aux_sym_cmd_identifier_token3] = ACTIONS(1631), + [aux_sym_cmd_identifier_token4] = ACTIONS(1631), + [aux_sym_cmd_identifier_token5] = ACTIONS(1631), + [aux_sym_cmd_identifier_token6] = ACTIONS(1631), + [aux_sym_cmd_identifier_token7] = ACTIONS(1631), + [aux_sym_cmd_identifier_token8] = ACTIONS(1631), + [aux_sym_cmd_identifier_token9] = ACTIONS(1631), + [aux_sym_cmd_identifier_token10] = ACTIONS(1631), + [aux_sym_cmd_identifier_token11] = ACTIONS(1631), + [aux_sym_cmd_identifier_token12] = ACTIONS(1631), + [aux_sym_cmd_identifier_token13] = ACTIONS(1631), + [aux_sym_cmd_identifier_token14] = ACTIONS(1631), + [aux_sym_cmd_identifier_token15] = ACTIONS(1631), + [aux_sym_cmd_identifier_token16] = ACTIONS(1631), + [aux_sym_cmd_identifier_token17] = ACTIONS(1631), + [aux_sym_cmd_identifier_token18] = ACTIONS(1631), + [aux_sym_cmd_identifier_token19] = ACTIONS(1631), + [aux_sym_cmd_identifier_token20] = ACTIONS(1631), + [aux_sym_cmd_identifier_token21] = ACTIONS(1631), + [aux_sym_cmd_identifier_token22] = ACTIONS(1631), + [aux_sym_cmd_identifier_token23] = ACTIONS(1631), + [aux_sym_cmd_identifier_token24] = ACTIONS(1631), + [aux_sym_cmd_identifier_token25] = ACTIONS(1631), + [aux_sym_cmd_identifier_token26] = ACTIONS(1631), + [aux_sym_cmd_identifier_token27] = ACTIONS(1631), + [aux_sym_cmd_identifier_token28] = ACTIONS(1631), + [aux_sym_cmd_identifier_token29] = ACTIONS(1631), + [aux_sym_cmd_identifier_token30] = ACTIONS(1631), + [aux_sym_cmd_identifier_token31] = ACTIONS(1631), + [aux_sym_cmd_identifier_token32] = ACTIONS(1631), + [aux_sym_cmd_identifier_token33] = ACTIONS(1631), + [aux_sym_cmd_identifier_token34] = ACTIONS(1631), + [aux_sym_cmd_identifier_token35] = ACTIONS(1631), + [aux_sym_cmd_identifier_token36] = ACTIONS(1631), + [anon_sym_true] = ACTIONS(1631), + [anon_sym_false] = ACTIONS(1631), + [anon_sym_null] = ACTIONS(1631), + [aux_sym_cmd_identifier_token38] = ACTIONS(1631), + [aux_sym_cmd_identifier_token39] = ACTIONS(1631), + [aux_sym_cmd_identifier_token40] = ACTIONS(1631), + [anon_sym_def] = ACTIONS(1631), + [anon_sym_export_DASHenv] = ACTIONS(1631), + [anon_sym_extern] = ACTIONS(1631), + [anon_sym_module] = ACTIONS(1631), + [anon_sym_use] = ACTIONS(1631), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_DOLLAR] = ACTIONS(1631), + [anon_sym_error] = ACTIONS(1631), + [anon_sym_list] = ACTIONS(1631), + [anon_sym_DASH] = ACTIONS(1631), + [anon_sym_break] = ACTIONS(1631), + [anon_sym_continue] = ACTIONS(1631), + [anon_sym_for] = ACTIONS(1631), + [anon_sym_in] = ACTIONS(1631), + [anon_sym_loop] = ACTIONS(1631), + [anon_sym_make] = ACTIONS(1631), + [anon_sym_while] = ACTIONS(1631), + [anon_sym_do] = ACTIONS(1631), + [anon_sym_if] = ACTIONS(1631), + [anon_sym_else] = ACTIONS(1631), + [anon_sym_match] = ACTIONS(1631), + [anon_sym_RBRACE] = ACTIONS(1631), + [anon_sym_try] = ACTIONS(1631), + [anon_sym_catch] = ACTIONS(1631), + [anon_sym_return] = ACTIONS(1631), + [anon_sym_source] = ACTIONS(1631), + [anon_sym_source_DASHenv] = ACTIONS(1631), + [anon_sym_register] = ACTIONS(1631), + [anon_sym_hide] = ACTIONS(1631), + [anon_sym_hide_DASHenv] = ACTIONS(1631), + [anon_sym_overlay] = ACTIONS(1631), + [anon_sym_new] = ACTIONS(1631), + [anon_sym_as] = ACTIONS(1631), + [anon_sym_LPAREN2] = ACTIONS(1633), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1631), + [aux_sym__immediate_decimal_token1] = ACTIONS(1941), + [aux_sym__immediate_decimal_token2] = ACTIONS(1943), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1631), + [aux_sym__val_number_decimal_token1] = ACTIONS(1631), + [aux_sym__val_number_decimal_token2] = ACTIONS(1631), + [aux_sym__val_number_decimal_token3] = ACTIONS(1631), + [aux_sym__val_number_decimal_token4] = ACTIONS(1631), + [aux_sym__val_number_token1] = ACTIONS(1631), + [aux_sym__val_number_token2] = ACTIONS(1631), + [aux_sym__val_number_token3] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [sym__str_single_quotes] = ACTIONS(1631), + [sym__str_back_ticks] = ACTIONS(1631), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1631), + [sym__entry_separator] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1631), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1631), + [anon_sym_POUND] = ACTIONS(3), + }, + [335] = { + [sym_cell_path] = STATE(539), + [sym_path] = STATE(482), + [sym_comment] = STATE(335), + [aux_sym_cell_path_repeat1] = STATE(381), + [anon_sym_export] = ACTIONS(1945), + [anon_sym_alias] = ACTIONS(1945), + [anon_sym_let] = ACTIONS(1945), + [anon_sym_let_DASHenv] = ACTIONS(1945), + [anon_sym_mut] = ACTIONS(1945), + [anon_sym_const] = ACTIONS(1945), + [aux_sym_cmd_identifier_token1] = ACTIONS(1945), + [aux_sym_cmd_identifier_token2] = ACTIONS(1945), + [aux_sym_cmd_identifier_token3] = ACTIONS(1945), + [aux_sym_cmd_identifier_token4] = ACTIONS(1945), + [aux_sym_cmd_identifier_token5] = ACTIONS(1945), + [aux_sym_cmd_identifier_token6] = ACTIONS(1945), + [aux_sym_cmd_identifier_token7] = ACTIONS(1945), + [aux_sym_cmd_identifier_token8] = ACTIONS(1945), + [aux_sym_cmd_identifier_token9] = ACTIONS(1945), + [aux_sym_cmd_identifier_token10] = ACTIONS(1945), + [aux_sym_cmd_identifier_token11] = ACTIONS(1945), + [aux_sym_cmd_identifier_token12] = ACTIONS(1945), + [aux_sym_cmd_identifier_token13] = ACTIONS(1945), + [aux_sym_cmd_identifier_token14] = ACTIONS(1945), + [aux_sym_cmd_identifier_token15] = ACTIONS(1945), + [aux_sym_cmd_identifier_token16] = ACTIONS(1945), + [aux_sym_cmd_identifier_token17] = ACTIONS(1945), + [aux_sym_cmd_identifier_token18] = ACTIONS(1945), + [aux_sym_cmd_identifier_token19] = ACTIONS(1945), + [aux_sym_cmd_identifier_token20] = ACTIONS(1945), + [aux_sym_cmd_identifier_token21] = ACTIONS(1945), + [aux_sym_cmd_identifier_token22] = ACTIONS(1945), + [aux_sym_cmd_identifier_token23] = ACTIONS(1945), + [aux_sym_cmd_identifier_token24] = ACTIONS(1945), + [aux_sym_cmd_identifier_token25] = ACTIONS(1945), + [aux_sym_cmd_identifier_token26] = ACTIONS(1945), + [aux_sym_cmd_identifier_token27] = ACTIONS(1945), + [aux_sym_cmd_identifier_token28] = ACTIONS(1945), + [aux_sym_cmd_identifier_token29] = ACTIONS(1945), + [aux_sym_cmd_identifier_token30] = ACTIONS(1945), + [aux_sym_cmd_identifier_token31] = ACTIONS(1945), + [aux_sym_cmd_identifier_token32] = ACTIONS(1945), + [aux_sym_cmd_identifier_token33] = ACTIONS(1945), + [aux_sym_cmd_identifier_token34] = ACTIONS(1945), + [aux_sym_cmd_identifier_token35] = ACTIONS(1945), + [aux_sym_cmd_identifier_token36] = ACTIONS(1945), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1945), + [aux_sym_cmd_identifier_token38] = ACTIONS(1945), + [aux_sym_cmd_identifier_token39] = ACTIONS(1945), + [aux_sym_cmd_identifier_token40] = ACTIONS(1945), + [anon_sym_def] = ACTIONS(1945), + [anon_sym_export_DASHenv] = ACTIONS(1945), + [anon_sym_extern] = ACTIONS(1945), + [anon_sym_module] = ACTIONS(1945), + [anon_sym_use] = ACTIONS(1945), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym_DOLLAR] = ACTIONS(1945), + [anon_sym_error] = ACTIONS(1945), + [anon_sym_list] = ACTIONS(1945), + [anon_sym_DASH] = ACTIONS(1945), + [anon_sym_break] = ACTIONS(1945), + [anon_sym_continue] = ACTIONS(1945), + [anon_sym_for] = ACTIONS(1945), + [anon_sym_in] = ACTIONS(1945), + [anon_sym_loop] = ACTIONS(1945), + [anon_sym_make] = ACTIONS(1945), + [anon_sym_while] = ACTIONS(1945), + [anon_sym_do] = ACTIONS(1945), + [anon_sym_if] = ACTIONS(1945), + [anon_sym_else] = ACTIONS(1945), + [anon_sym_match] = ACTIONS(1945), + [anon_sym_RBRACE] = ACTIONS(1945), + [anon_sym_try] = ACTIONS(1945), + [anon_sym_catch] = ACTIONS(1945), + [anon_sym_return] = ACTIONS(1945), + [anon_sym_source] = ACTIONS(1945), + [anon_sym_source_DASHenv] = ACTIONS(1945), + [anon_sym_register] = ACTIONS(1945), + [anon_sym_hide] = ACTIONS(1945), + [anon_sym_hide_DASHenv] = ACTIONS(1945), + [anon_sym_overlay] = ACTIONS(1945), + [anon_sym_new] = ACTIONS(1945), + [anon_sym_as] = ACTIONS(1945), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1945), + [anon_sym_DOT] = ACTIONS(1831), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1945), + [aux_sym__val_number_decimal_token1] = ACTIONS(1945), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1945), + [aux_sym__val_number_decimal_token4] = ACTIONS(1945), + [aux_sym__val_number_token1] = ACTIONS(1945), + [aux_sym__val_number_token2] = ACTIONS(1945), + [aux_sym__val_number_token3] = ACTIONS(1945), + [anon_sym_DQUOTE] = ACTIONS(1945), + [sym__str_single_quotes] = ACTIONS(1945), + [sym__str_back_ticks] = ACTIONS(1945), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1945), + [sym__entry_separator] = ACTIONS(1947), + [anon_sym_PLUS] = ACTIONS(1945), + [anon_sym_POUND] = ACTIONS(3), + }, + [336] = { + [sym_cell_path] = STATE(548), + [sym_path] = STATE(482), + [sym_comment] = STATE(336), + [aux_sym_cell_path_repeat1] = STATE(381), + [anon_sym_export] = ACTIONS(1011), + [anon_sym_alias] = ACTIONS(1011), + [anon_sym_let] = ACTIONS(1011), + [anon_sym_let_DASHenv] = ACTIONS(1011), + [anon_sym_mut] = ACTIONS(1011), + [anon_sym_const] = ACTIONS(1011), + [aux_sym_cmd_identifier_token1] = ACTIONS(1011), + [aux_sym_cmd_identifier_token2] = ACTIONS(1011), + [aux_sym_cmd_identifier_token3] = ACTIONS(1011), + [aux_sym_cmd_identifier_token4] = ACTIONS(1011), + [aux_sym_cmd_identifier_token5] = ACTIONS(1011), + [aux_sym_cmd_identifier_token6] = ACTIONS(1011), + [aux_sym_cmd_identifier_token7] = ACTIONS(1011), + [aux_sym_cmd_identifier_token8] = ACTIONS(1011), + [aux_sym_cmd_identifier_token9] = ACTIONS(1011), + [aux_sym_cmd_identifier_token10] = ACTIONS(1011), + [aux_sym_cmd_identifier_token11] = ACTIONS(1011), + [aux_sym_cmd_identifier_token12] = ACTIONS(1011), + [aux_sym_cmd_identifier_token13] = ACTIONS(1011), + [aux_sym_cmd_identifier_token14] = ACTIONS(1011), + [aux_sym_cmd_identifier_token15] = ACTIONS(1011), + [aux_sym_cmd_identifier_token16] = ACTIONS(1011), + [aux_sym_cmd_identifier_token17] = ACTIONS(1011), + [aux_sym_cmd_identifier_token18] = ACTIONS(1011), + [aux_sym_cmd_identifier_token19] = ACTIONS(1011), + [aux_sym_cmd_identifier_token20] = ACTIONS(1011), + [aux_sym_cmd_identifier_token21] = ACTIONS(1011), + [aux_sym_cmd_identifier_token22] = ACTIONS(1011), + [aux_sym_cmd_identifier_token23] = ACTIONS(1011), + [aux_sym_cmd_identifier_token24] = ACTIONS(1011), + [aux_sym_cmd_identifier_token25] = ACTIONS(1011), + [aux_sym_cmd_identifier_token26] = ACTIONS(1011), + [aux_sym_cmd_identifier_token27] = ACTIONS(1011), + [aux_sym_cmd_identifier_token28] = ACTIONS(1011), + [aux_sym_cmd_identifier_token29] = ACTIONS(1011), + [aux_sym_cmd_identifier_token30] = ACTIONS(1011), + [aux_sym_cmd_identifier_token31] = ACTIONS(1011), + [aux_sym_cmd_identifier_token32] = ACTIONS(1011), + [aux_sym_cmd_identifier_token33] = ACTIONS(1011), + [aux_sym_cmd_identifier_token34] = ACTIONS(1011), + [aux_sym_cmd_identifier_token35] = ACTIONS(1011), + [aux_sym_cmd_identifier_token36] = ACTIONS(1011), + [anon_sym_true] = ACTIONS(1011), + [anon_sym_false] = ACTIONS(1011), + [anon_sym_null] = ACTIONS(1011), + [aux_sym_cmd_identifier_token38] = ACTIONS(1011), + [aux_sym_cmd_identifier_token39] = ACTIONS(1011), + [aux_sym_cmd_identifier_token40] = ACTIONS(1011), + [anon_sym_def] = ACTIONS(1011), + [anon_sym_export_DASHenv] = ACTIONS(1011), + [anon_sym_extern] = ACTIONS(1011), + [anon_sym_module] = ACTIONS(1011), + [anon_sym_use] = ACTIONS(1011), + [anon_sym_LPAREN] = ACTIONS(1011), + [anon_sym_DOLLAR] = ACTIONS(1011), + [anon_sym_error] = ACTIONS(1011), + [anon_sym_list] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_break] = ACTIONS(1011), + [anon_sym_continue] = ACTIONS(1011), + [anon_sym_for] = ACTIONS(1011), + [anon_sym_in] = ACTIONS(1011), + [anon_sym_loop] = ACTIONS(1011), + [anon_sym_make] = ACTIONS(1011), + [anon_sym_while] = ACTIONS(1011), + [anon_sym_do] = ACTIONS(1011), + [anon_sym_if] = ACTIONS(1011), + [anon_sym_else] = ACTIONS(1011), + [anon_sym_match] = ACTIONS(1011), + [anon_sym_RBRACE] = ACTIONS(1011), + [anon_sym_try] = ACTIONS(1011), + [anon_sym_catch] = ACTIONS(1011), + [anon_sym_return] = ACTIONS(1011), + [anon_sym_source] = ACTIONS(1011), + [anon_sym_source_DASHenv] = ACTIONS(1011), + [anon_sym_register] = ACTIONS(1011), + [anon_sym_hide] = ACTIONS(1011), + [anon_sym_hide_DASHenv] = ACTIONS(1011), + [anon_sym_overlay] = ACTIONS(1011), + [anon_sym_new] = ACTIONS(1011), + [anon_sym_as] = ACTIONS(1011), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1011), + [anon_sym_DOT] = ACTIONS(1831), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1011), + [aux_sym__val_number_decimal_token1] = ACTIONS(1011), + [aux_sym__val_number_decimal_token2] = ACTIONS(1011), + [aux_sym__val_number_decimal_token3] = ACTIONS(1011), + [aux_sym__val_number_decimal_token4] = ACTIONS(1011), + [aux_sym__val_number_token1] = ACTIONS(1011), + [aux_sym__val_number_token2] = ACTIONS(1011), + [aux_sym__val_number_token3] = ACTIONS(1011), + [anon_sym_DQUOTE] = ACTIONS(1011), + [sym__str_single_quotes] = ACTIONS(1011), + [sym__str_back_ticks] = ACTIONS(1011), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1011), + [sym__entry_separator] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_POUND] = ACTIONS(3), + }, + [337] = { + [sym_cell_path] = STATE(540), + [sym_path] = STATE(482), + [sym_comment] = STATE(337), + [aux_sym_cell_path_repeat1] = STATE(381), + [anon_sym_export] = ACTIONS(1949), + [anon_sym_alias] = ACTIONS(1949), + [anon_sym_let] = ACTIONS(1949), + [anon_sym_let_DASHenv] = ACTIONS(1949), + [anon_sym_mut] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(1949), + [aux_sym_cmd_identifier_token1] = ACTIONS(1949), + [aux_sym_cmd_identifier_token2] = ACTIONS(1949), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [aux_sym_cmd_identifier_token6] = ACTIONS(1949), + [aux_sym_cmd_identifier_token7] = ACTIONS(1949), + [aux_sym_cmd_identifier_token8] = ACTIONS(1949), + [aux_sym_cmd_identifier_token9] = ACTIONS(1949), + [aux_sym_cmd_identifier_token10] = ACTIONS(1949), + [aux_sym_cmd_identifier_token11] = ACTIONS(1949), + [aux_sym_cmd_identifier_token12] = ACTIONS(1949), + [aux_sym_cmd_identifier_token13] = ACTIONS(1949), + [aux_sym_cmd_identifier_token14] = ACTIONS(1949), + [aux_sym_cmd_identifier_token15] = ACTIONS(1949), + [aux_sym_cmd_identifier_token16] = ACTIONS(1949), + [aux_sym_cmd_identifier_token17] = ACTIONS(1949), + [aux_sym_cmd_identifier_token18] = ACTIONS(1949), + [aux_sym_cmd_identifier_token19] = ACTIONS(1949), + [aux_sym_cmd_identifier_token20] = ACTIONS(1949), + [aux_sym_cmd_identifier_token21] = ACTIONS(1949), + [aux_sym_cmd_identifier_token22] = ACTIONS(1949), + [aux_sym_cmd_identifier_token23] = ACTIONS(1949), + [aux_sym_cmd_identifier_token24] = ACTIONS(1949), + [aux_sym_cmd_identifier_token25] = ACTIONS(1949), + [aux_sym_cmd_identifier_token26] = ACTIONS(1949), + [aux_sym_cmd_identifier_token27] = ACTIONS(1949), + [aux_sym_cmd_identifier_token28] = ACTIONS(1949), + [aux_sym_cmd_identifier_token29] = ACTIONS(1949), + [aux_sym_cmd_identifier_token30] = ACTIONS(1949), + [aux_sym_cmd_identifier_token31] = ACTIONS(1949), + [aux_sym_cmd_identifier_token32] = ACTIONS(1949), + [aux_sym_cmd_identifier_token33] = ACTIONS(1949), + [aux_sym_cmd_identifier_token34] = ACTIONS(1949), + [aux_sym_cmd_identifier_token35] = ACTIONS(1949), + [aux_sym_cmd_identifier_token36] = ACTIONS(1949), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1949), + [aux_sym_cmd_identifier_token38] = ACTIONS(1949), + [aux_sym_cmd_identifier_token39] = ACTIONS(1949), + [aux_sym_cmd_identifier_token40] = ACTIONS(1949), + [anon_sym_def] = ACTIONS(1949), + [anon_sym_export_DASHenv] = ACTIONS(1949), + [anon_sym_extern] = ACTIONS(1949), + [anon_sym_module] = ACTIONS(1949), + [anon_sym_use] = ACTIONS(1949), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_DOLLAR] = ACTIONS(1949), + [anon_sym_error] = ACTIONS(1949), + [anon_sym_list] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1949), + [anon_sym_break] = ACTIONS(1949), + [anon_sym_continue] = ACTIONS(1949), + [anon_sym_for] = ACTIONS(1949), + [anon_sym_in] = ACTIONS(1949), + [anon_sym_loop] = ACTIONS(1949), + [anon_sym_make] = ACTIONS(1949), + [anon_sym_while] = ACTIONS(1949), + [anon_sym_do] = ACTIONS(1949), + [anon_sym_if] = ACTIONS(1949), + [anon_sym_else] = ACTIONS(1949), + [anon_sym_match] = ACTIONS(1949), + [anon_sym_RBRACE] = ACTIONS(1949), + [anon_sym_try] = ACTIONS(1949), + [anon_sym_catch] = ACTIONS(1949), + [anon_sym_return] = ACTIONS(1949), + [anon_sym_source] = ACTIONS(1949), + [anon_sym_source_DASHenv] = ACTIONS(1949), + [anon_sym_register] = ACTIONS(1949), + [anon_sym_hide] = ACTIONS(1949), + [anon_sym_hide_DASHenv] = ACTIONS(1949), + [anon_sym_overlay] = ACTIONS(1949), + [anon_sym_new] = ACTIONS(1949), + [anon_sym_as] = ACTIONS(1949), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1949), + [anon_sym_DOT] = ACTIONS(1831), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1949), + [aux_sym__val_number_decimal_token1] = ACTIONS(1949), + [aux_sym__val_number_decimal_token2] = ACTIONS(1949), + [aux_sym__val_number_decimal_token3] = ACTIONS(1949), + [aux_sym__val_number_decimal_token4] = ACTIONS(1949), + [aux_sym__val_number_token1] = ACTIONS(1949), + [aux_sym__val_number_token2] = ACTIONS(1949), + [aux_sym__val_number_token3] = ACTIONS(1949), + [anon_sym_DQUOTE] = ACTIONS(1949), + [sym__str_single_quotes] = ACTIONS(1949), + [sym__str_back_ticks] = ACTIONS(1949), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1949), + [sym__entry_separator] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1949), + [anon_sym_POUND] = ACTIONS(3), + }, + [338] = { + [sym_comment] = STATE(338), + [anon_sym_export] = ACTIONS(1034), + [anon_sym_alias] = ACTIONS(1034), + [anon_sym_let] = ACTIONS(1034), + [anon_sym_let_DASHenv] = ACTIONS(1034), + [anon_sym_mut] = ACTIONS(1034), + [anon_sym_const] = ACTIONS(1034), + [aux_sym_cmd_identifier_token1] = ACTIONS(1034), + [aux_sym_cmd_identifier_token2] = ACTIONS(1034), + [aux_sym_cmd_identifier_token3] = ACTIONS(1034), + [aux_sym_cmd_identifier_token4] = ACTIONS(1034), + [aux_sym_cmd_identifier_token5] = ACTIONS(1034), + [aux_sym_cmd_identifier_token6] = ACTIONS(1034), + [aux_sym_cmd_identifier_token7] = ACTIONS(1034), + [aux_sym_cmd_identifier_token8] = ACTIONS(1034), + [aux_sym_cmd_identifier_token9] = ACTIONS(1034), + [aux_sym_cmd_identifier_token10] = ACTIONS(1034), + [aux_sym_cmd_identifier_token11] = ACTIONS(1034), + [aux_sym_cmd_identifier_token12] = ACTIONS(1034), + [aux_sym_cmd_identifier_token13] = ACTIONS(1034), + [aux_sym_cmd_identifier_token14] = ACTIONS(1034), + [aux_sym_cmd_identifier_token15] = ACTIONS(1034), + [aux_sym_cmd_identifier_token16] = ACTIONS(1034), + [aux_sym_cmd_identifier_token17] = ACTIONS(1034), + [aux_sym_cmd_identifier_token18] = ACTIONS(1034), + [aux_sym_cmd_identifier_token19] = ACTIONS(1034), + [aux_sym_cmd_identifier_token20] = ACTIONS(1034), + [aux_sym_cmd_identifier_token21] = ACTIONS(1034), + [aux_sym_cmd_identifier_token22] = ACTIONS(1034), + [aux_sym_cmd_identifier_token23] = ACTIONS(1034), + [aux_sym_cmd_identifier_token24] = ACTIONS(1034), + [aux_sym_cmd_identifier_token25] = ACTIONS(1034), + [aux_sym_cmd_identifier_token26] = ACTIONS(1034), + [aux_sym_cmd_identifier_token27] = ACTIONS(1034), + [aux_sym_cmd_identifier_token28] = ACTIONS(1034), + [aux_sym_cmd_identifier_token29] = ACTIONS(1034), + [aux_sym_cmd_identifier_token30] = ACTIONS(1034), + [aux_sym_cmd_identifier_token31] = ACTIONS(1034), + [aux_sym_cmd_identifier_token32] = ACTIONS(1034), + [aux_sym_cmd_identifier_token33] = ACTIONS(1034), + [aux_sym_cmd_identifier_token34] = ACTIONS(1034), + [aux_sym_cmd_identifier_token35] = ACTIONS(1034), + [aux_sym_cmd_identifier_token36] = ACTIONS(1034), + [anon_sym_true] = ACTIONS(1036), + [anon_sym_false] = ACTIONS(1036), + [anon_sym_null] = ACTIONS(1036), + [aux_sym_cmd_identifier_token38] = ACTIONS(1034), + [aux_sym_cmd_identifier_token39] = ACTIONS(1036), + [aux_sym_cmd_identifier_token40] = ACTIONS(1036), + [anon_sym_def] = ACTIONS(1034), + [anon_sym_export_DASHenv] = ACTIONS(1034), + [anon_sym_extern] = ACTIONS(1034), + [anon_sym_module] = ACTIONS(1034), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_LPAREN] = ACTIONS(1036), + [anon_sym_DOLLAR] = ACTIONS(1036), + [anon_sym_error] = ACTIONS(1034), + [anon_sym_list] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_break] = ACTIONS(1034), + [anon_sym_continue] = ACTIONS(1034), + [anon_sym_for] = ACTIONS(1034), + [anon_sym_in] = ACTIONS(1034), + [anon_sym_loop] = ACTIONS(1034), + [anon_sym_make] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1034), + [anon_sym_do] = ACTIONS(1034), + [anon_sym_if] = ACTIONS(1034), + [anon_sym_else] = ACTIONS(1034), + [anon_sym_match] = ACTIONS(1034), + [anon_sym_RBRACE] = ACTIONS(1036), + [anon_sym_try] = ACTIONS(1034), + [anon_sym_catch] = ACTIONS(1034), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_source] = ACTIONS(1034), + [anon_sym_source_DASHenv] = ACTIONS(1034), + [anon_sym_register] = ACTIONS(1034), + [anon_sym_hide] = ACTIONS(1034), + [anon_sym_hide_DASHenv] = ACTIONS(1034), + [anon_sym_overlay] = ACTIONS(1034), + [anon_sym_new] = ACTIONS(1034), + [anon_sym_as] = ACTIONS(1034), + [anon_sym_QMARK2] = ACTIONS(1953), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1036), + [anon_sym_DOT_DOT2] = ACTIONS(1034), + [anon_sym_DOT] = ACTIONS(1034), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1036), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1036), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1036), + [aux_sym__val_number_decimal_token1] = ACTIONS(1034), + [aux_sym__val_number_decimal_token2] = ACTIONS(1036), + [aux_sym__val_number_decimal_token3] = ACTIONS(1036), + [aux_sym__val_number_decimal_token4] = ACTIONS(1036), + [aux_sym__val_number_token1] = ACTIONS(1036), + [aux_sym__val_number_token2] = ACTIONS(1036), + [aux_sym__val_number_token3] = ACTIONS(1036), + [anon_sym_DQUOTE] = ACTIONS(1036), + [sym__str_single_quotes] = ACTIONS(1036), + [sym__str_back_ticks] = ACTIONS(1036), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1036), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_POUND] = ACTIONS(247), + }, + [339] = { + [sym_comment] = STATE(339), + [anon_sym_export] = ACTIONS(1028), + [anon_sym_alias] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(1028), + [anon_sym_let_DASHenv] = ACTIONS(1028), + [anon_sym_mut] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(1028), + [aux_sym_cmd_identifier_token1] = ACTIONS(1028), + [aux_sym_cmd_identifier_token2] = ACTIONS(1028), + [aux_sym_cmd_identifier_token3] = ACTIONS(1028), + [aux_sym_cmd_identifier_token4] = ACTIONS(1028), + [aux_sym_cmd_identifier_token5] = ACTIONS(1028), + [aux_sym_cmd_identifier_token6] = ACTIONS(1028), + [aux_sym_cmd_identifier_token7] = ACTIONS(1028), + [aux_sym_cmd_identifier_token8] = ACTIONS(1028), + [aux_sym_cmd_identifier_token9] = ACTIONS(1028), + [aux_sym_cmd_identifier_token10] = ACTIONS(1028), + [aux_sym_cmd_identifier_token11] = ACTIONS(1028), + [aux_sym_cmd_identifier_token12] = ACTIONS(1028), + [aux_sym_cmd_identifier_token13] = ACTIONS(1028), + [aux_sym_cmd_identifier_token14] = ACTIONS(1028), + [aux_sym_cmd_identifier_token15] = ACTIONS(1028), + [aux_sym_cmd_identifier_token16] = ACTIONS(1028), + [aux_sym_cmd_identifier_token17] = ACTIONS(1028), + [aux_sym_cmd_identifier_token18] = ACTIONS(1028), + [aux_sym_cmd_identifier_token19] = ACTIONS(1028), + [aux_sym_cmd_identifier_token20] = ACTIONS(1028), + [aux_sym_cmd_identifier_token21] = ACTIONS(1028), + [aux_sym_cmd_identifier_token22] = ACTIONS(1028), + [aux_sym_cmd_identifier_token23] = ACTIONS(1028), + [aux_sym_cmd_identifier_token24] = ACTIONS(1028), + [aux_sym_cmd_identifier_token25] = ACTIONS(1028), + [aux_sym_cmd_identifier_token26] = ACTIONS(1028), + [aux_sym_cmd_identifier_token27] = ACTIONS(1028), + [aux_sym_cmd_identifier_token28] = ACTIONS(1028), + [aux_sym_cmd_identifier_token29] = ACTIONS(1028), + [aux_sym_cmd_identifier_token30] = ACTIONS(1028), + [aux_sym_cmd_identifier_token31] = ACTIONS(1028), + [aux_sym_cmd_identifier_token32] = ACTIONS(1028), + [aux_sym_cmd_identifier_token33] = ACTIONS(1028), + [aux_sym_cmd_identifier_token34] = ACTIONS(1028), + [aux_sym_cmd_identifier_token35] = ACTIONS(1028), + [aux_sym_cmd_identifier_token36] = ACTIONS(1028), + [anon_sym_true] = ACTIONS(1030), + [anon_sym_false] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1030), + [aux_sym_cmd_identifier_token38] = ACTIONS(1028), + [aux_sym_cmd_identifier_token39] = ACTIONS(1030), + [aux_sym_cmd_identifier_token40] = ACTIONS(1030), + [anon_sym_def] = ACTIONS(1028), + [anon_sym_export_DASHenv] = ACTIONS(1028), + [anon_sym_extern] = ACTIONS(1028), + [anon_sym_module] = ACTIONS(1028), + [anon_sym_use] = ACTIONS(1028), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_error] = ACTIONS(1028), + [anon_sym_list] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_in] = ACTIONS(1028), + [anon_sym_loop] = ACTIONS(1028), + [anon_sym_make] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_else] = ACTIONS(1028), + [anon_sym_match] = ACTIONS(1028), + [anon_sym_RBRACE] = ACTIONS(1030), + [anon_sym_try] = ACTIONS(1028), + [anon_sym_catch] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_source] = ACTIONS(1028), + [anon_sym_source_DASHenv] = ACTIONS(1028), + [anon_sym_register] = ACTIONS(1028), + [anon_sym_hide] = ACTIONS(1028), + [anon_sym_hide_DASHenv] = ACTIONS(1028), + [anon_sym_overlay] = ACTIONS(1028), + [anon_sym_new] = ACTIONS(1028), + [anon_sym_as] = ACTIONS(1028), + [anon_sym_QMARK2] = ACTIONS(1955), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1030), + [anon_sym_DOT_DOT2] = ACTIONS(1028), + [anon_sym_DOT] = ACTIONS(1028), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1030), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1030), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1028), + [aux_sym__val_number_decimal_token2] = ACTIONS(1030), + [aux_sym__val_number_decimal_token3] = ACTIONS(1030), + [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_token1] = ACTIONS(1030), + [aux_sym__val_number_token2] = ACTIONS(1030), + [aux_sym__val_number_token3] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym__str_single_quotes] = ACTIONS(1030), + [sym__str_back_ticks] = ACTIONS(1030), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1030), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_POUND] = ACTIONS(247), + }, + [340] = { + [sym_comment] = STATE(340), + [anon_sym_export] = ACTIONS(1056), + [anon_sym_alias] = ACTIONS(1056), + [anon_sym_let] = ACTIONS(1056), + [anon_sym_let_DASHenv] = ACTIONS(1056), + [anon_sym_mut] = ACTIONS(1056), + [anon_sym_const] = ACTIONS(1056), + [aux_sym_cmd_identifier_token1] = ACTIONS(1056), + [aux_sym_cmd_identifier_token2] = ACTIONS(1056), + [aux_sym_cmd_identifier_token3] = ACTIONS(1056), + [aux_sym_cmd_identifier_token4] = ACTIONS(1056), + [aux_sym_cmd_identifier_token5] = ACTIONS(1056), + [aux_sym_cmd_identifier_token6] = ACTIONS(1056), + [aux_sym_cmd_identifier_token7] = ACTIONS(1056), + [aux_sym_cmd_identifier_token8] = ACTIONS(1056), + [aux_sym_cmd_identifier_token9] = ACTIONS(1056), + [aux_sym_cmd_identifier_token10] = ACTIONS(1056), + [aux_sym_cmd_identifier_token11] = ACTIONS(1056), + [aux_sym_cmd_identifier_token12] = ACTIONS(1056), + [aux_sym_cmd_identifier_token13] = ACTIONS(1056), + [aux_sym_cmd_identifier_token14] = ACTIONS(1056), + [aux_sym_cmd_identifier_token15] = ACTIONS(1056), + [aux_sym_cmd_identifier_token16] = ACTIONS(1056), + [aux_sym_cmd_identifier_token17] = ACTIONS(1056), + [aux_sym_cmd_identifier_token18] = ACTIONS(1056), + [aux_sym_cmd_identifier_token19] = ACTIONS(1056), + [aux_sym_cmd_identifier_token20] = ACTIONS(1056), + [aux_sym_cmd_identifier_token21] = ACTIONS(1056), + [aux_sym_cmd_identifier_token22] = ACTIONS(1056), + [aux_sym_cmd_identifier_token23] = ACTIONS(1056), + [aux_sym_cmd_identifier_token24] = ACTIONS(1056), + [aux_sym_cmd_identifier_token25] = ACTIONS(1056), + [aux_sym_cmd_identifier_token26] = ACTIONS(1056), + [aux_sym_cmd_identifier_token27] = ACTIONS(1056), + [aux_sym_cmd_identifier_token28] = ACTIONS(1056), + [aux_sym_cmd_identifier_token29] = ACTIONS(1056), + [aux_sym_cmd_identifier_token30] = ACTIONS(1056), + [aux_sym_cmd_identifier_token31] = ACTIONS(1056), + [aux_sym_cmd_identifier_token32] = ACTIONS(1056), + [aux_sym_cmd_identifier_token33] = ACTIONS(1056), + [aux_sym_cmd_identifier_token34] = ACTIONS(1056), + [aux_sym_cmd_identifier_token35] = ACTIONS(1056), + [aux_sym_cmd_identifier_token36] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1056), + [anon_sym_false] = ACTIONS(1056), + [anon_sym_null] = ACTIONS(1056), + [aux_sym_cmd_identifier_token38] = ACTIONS(1056), + [aux_sym_cmd_identifier_token39] = ACTIONS(1056), + [aux_sym_cmd_identifier_token40] = ACTIONS(1056), + [anon_sym_def] = ACTIONS(1056), + [anon_sym_export_DASHenv] = ACTIONS(1056), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_module] = ACTIONS(1056), + [anon_sym_use] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_DOLLAR] = ACTIONS(1056), + [anon_sym_error] = ACTIONS(1056), + [anon_sym_list] = ACTIONS(1056), + [anon_sym_DASH] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1056), + [anon_sym_continue] = ACTIONS(1056), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_in] = ACTIONS(1056), + [anon_sym_loop] = ACTIONS(1056), + [anon_sym_make] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1056), + [anon_sym_do] = ACTIONS(1056), + [anon_sym_if] = ACTIONS(1056), + [anon_sym_else] = ACTIONS(1056), + [anon_sym_match] = ACTIONS(1056), + [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_try] = ACTIONS(1056), + [anon_sym_catch] = ACTIONS(1056), + [anon_sym_return] = ACTIONS(1056), + [anon_sym_source] = ACTIONS(1056), + [anon_sym_source_DASHenv] = ACTIONS(1056), + [anon_sym_register] = ACTIONS(1056), + [anon_sym_hide] = ACTIONS(1056), + [anon_sym_hide_DASHenv] = ACTIONS(1056), + [anon_sym_overlay] = ACTIONS(1056), + [anon_sym_new] = ACTIONS(1056), + [anon_sym_as] = ACTIONS(1056), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1056), + [anon_sym_DOT_DOT2] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1058), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1056), + [aux_sym__val_number_decimal_token1] = ACTIONS(1056), + [aux_sym__val_number_decimal_token2] = ACTIONS(1056), + [aux_sym__val_number_decimal_token3] = ACTIONS(1056), + [aux_sym__val_number_decimal_token4] = ACTIONS(1056), + [aux_sym__val_number_token1] = ACTIONS(1056), + [aux_sym__val_number_token2] = ACTIONS(1056), + [aux_sym__val_number_token3] = ACTIONS(1056), + [anon_sym_DQUOTE] = ACTIONS(1056), + [sym__str_single_quotes] = ACTIONS(1056), + [sym__str_back_ticks] = ACTIONS(1056), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1056), + [sym__entry_separator] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1056), + [anon_sym_POUND] = ACTIONS(3), + }, + [341] = { + [sym_comment] = STATE(341), + [anon_sym_export] = ACTIONS(1721), + [anon_sym_alias] = ACTIONS(1721), + [anon_sym_let] = ACTIONS(1721), + [anon_sym_let_DASHenv] = ACTIONS(1721), + [anon_sym_mut] = ACTIONS(1721), + [anon_sym_const] = ACTIONS(1721), + [aux_sym_cmd_identifier_token1] = ACTIONS(1721), + [aux_sym_cmd_identifier_token2] = ACTIONS(1721), + [aux_sym_cmd_identifier_token3] = ACTIONS(1721), + [aux_sym_cmd_identifier_token4] = ACTIONS(1721), + [aux_sym_cmd_identifier_token5] = ACTIONS(1721), + [aux_sym_cmd_identifier_token6] = ACTIONS(1721), + [aux_sym_cmd_identifier_token7] = ACTIONS(1721), + [aux_sym_cmd_identifier_token8] = ACTIONS(1721), + [aux_sym_cmd_identifier_token9] = ACTIONS(1721), + [aux_sym_cmd_identifier_token10] = ACTIONS(1721), + [aux_sym_cmd_identifier_token11] = ACTIONS(1721), + [aux_sym_cmd_identifier_token12] = ACTIONS(1721), + [aux_sym_cmd_identifier_token13] = ACTIONS(1721), + [aux_sym_cmd_identifier_token14] = ACTIONS(1721), + [aux_sym_cmd_identifier_token15] = ACTIONS(1721), + [aux_sym_cmd_identifier_token16] = ACTIONS(1721), + [aux_sym_cmd_identifier_token17] = ACTIONS(1721), + [aux_sym_cmd_identifier_token18] = ACTIONS(1721), + [aux_sym_cmd_identifier_token19] = ACTIONS(1721), + [aux_sym_cmd_identifier_token20] = ACTIONS(1721), + [aux_sym_cmd_identifier_token21] = ACTIONS(1721), + [aux_sym_cmd_identifier_token22] = ACTIONS(1721), + [aux_sym_cmd_identifier_token23] = ACTIONS(1721), + [aux_sym_cmd_identifier_token24] = ACTIONS(1723), + [aux_sym_cmd_identifier_token25] = ACTIONS(1721), + [aux_sym_cmd_identifier_token26] = ACTIONS(1723), + [aux_sym_cmd_identifier_token27] = ACTIONS(1721), + [aux_sym_cmd_identifier_token28] = ACTIONS(1721), + [aux_sym_cmd_identifier_token29] = ACTIONS(1721), + [aux_sym_cmd_identifier_token30] = ACTIONS(1721), + [aux_sym_cmd_identifier_token31] = ACTIONS(1723), + [aux_sym_cmd_identifier_token32] = ACTIONS(1723), + [aux_sym_cmd_identifier_token33] = ACTIONS(1723), + [aux_sym_cmd_identifier_token34] = ACTIONS(1723), + [aux_sym_cmd_identifier_token35] = ACTIONS(1723), + [aux_sym_cmd_identifier_token36] = ACTIONS(1721), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1723), + [aux_sym_cmd_identifier_token38] = ACTIONS(1721), + [aux_sym_cmd_identifier_token39] = ACTIONS(1723), + [aux_sym_cmd_identifier_token40] = ACTIONS(1723), + [sym__newline] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_def] = ACTIONS(1721), + [anon_sym_export_DASHenv] = ACTIONS(1721), + [anon_sym_extern] = ACTIONS(1721), + [anon_sym_module] = ACTIONS(1721), + [anon_sym_use] = ACTIONS(1721), + [anon_sym_LBRACK] = ACTIONS(1723), + [anon_sym_LPAREN] = ACTIONS(1723), + [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), + [aux_sym_ctrl_match_token1] = ACTIONS(1723), + [anon_sym_DOT_DOT] = 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(1723), + [aux_sym_expr_unary_token1] = ACTIONS(1723), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1723), + [anon_sym_DOT_DOT_LT] = ACTIONS(1723), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1723), + [aux_sym__val_number_decimal_token3] = ACTIONS(1723), + [aux_sym__val_number_decimal_token4] = ACTIONS(1723), + [aux_sym__val_number_token1] = ACTIONS(1723), + [aux_sym__val_number_token2] = ACTIONS(1723), + [aux_sym__val_number_token3] = ACTIONS(1723), + [anon_sym_0b] = ACTIONS(1721), + [anon_sym_0o] = ACTIONS(1721), + [anon_sym_0x] = ACTIONS(1721), + [sym_val_date] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(1723), + [sym__str_single_quotes] = ACTIONS(1723), + [sym__str_back_ticks] = ACTIONS(1723), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1723), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1723), + [aux_sym_env_var_token1] = ACTIONS(1721), + [anon_sym_CARET] = ACTIONS(1723), + [anon_sym_POUND] = ACTIONS(247), + }, + [342] = { + [sym_cell_path] = STATE(557), + [sym_path] = STATE(482), + [sym_comment] = STATE(342), + [aux_sym_cell_path_repeat1] = STATE(381), + [anon_sym_export] = ACTIONS(1957), + [anon_sym_alias] = ACTIONS(1957), + [anon_sym_let] = ACTIONS(1957), + [anon_sym_let_DASHenv] = ACTIONS(1957), + [anon_sym_mut] = ACTIONS(1957), + [anon_sym_const] = ACTIONS(1957), + [aux_sym_cmd_identifier_token1] = ACTIONS(1957), + [aux_sym_cmd_identifier_token2] = ACTIONS(1957), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [aux_sym_cmd_identifier_token6] = ACTIONS(1957), + [aux_sym_cmd_identifier_token7] = ACTIONS(1957), + [aux_sym_cmd_identifier_token8] = ACTIONS(1957), + [aux_sym_cmd_identifier_token9] = ACTIONS(1957), + [aux_sym_cmd_identifier_token10] = ACTIONS(1957), + [aux_sym_cmd_identifier_token11] = ACTIONS(1957), + [aux_sym_cmd_identifier_token12] = ACTIONS(1957), + [aux_sym_cmd_identifier_token13] = ACTIONS(1957), + [aux_sym_cmd_identifier_token14] = ACTIONS(1957), + [aux_sym_cmd_identifier_token15] = ACTIONS(1957), + [aux_sym_cmd_identifier_token16] = ACTIONS(1957), + [aux_sym_cmd_identifier_token17] = ACTIONS(1957), + [aux_sym_cmd_identifier_token18] = ACTIONS(1957), + [aux_sym_cmd_identifier_token19] = ACTIONS(1957), + [aux_sym_cmd_identifier_token20] = ACTIONS(1957), + [aux_sym_cmd_identifier_token21] = ACTIONS(1957), + [aux_sym_cmd_identifier_token22] = ACTIONS(1957), + [aux_sym_cmd_identifier_token23] = ACTIONS(1957), + [aux_sym_cmd_identifier_token24] = ACTIONS(1957), + [aux_sym_cmd_identifier_token25] = ACTIONS(1957), + [aux_sym_cmd_identifier_token26] = ACTIONS(1957), + [aux_sym_cmd_identifier_token27] = ACTIONS(1957), + [aux_sym_cmd_identifier_token28] = ACTIONS(1957), + [aux_sym_cmd_identifier_token29] = ACTIONS(1957), + [aux_sym_cmd_identifier_token30] = ACTIONS(1957), + [aux_sym_cmd_identifier_token31] = ACTIONS(1957), + [aux_sym_cmd_identifier_token32] = ACTIONS(1957), + [aux_sym_cmd_identifier_token33] = ACTIONS(1957), + [aux_sym_cmd_identifier_token34] = ACTIONS(1957), + [aux_sym_cmd_identifier_token35] = ACTIONS(1957), + [aux_sym_cmd_identifier_token36] = ACTIONS(1957), + [anon_sym_true] = ACTIONS(1957), + [anon_sym_false] = ACTIONS(1957), + [anon_sym_null] = ACTIONS(1957), + [aux_sym_cmd_identifier_token38] = ACTIONS(1957), + [aux_sym_cmd_identifier_token39] = ACTIONS(1957), + [aux_sym_cmd_identifier_token40] = ACTIONS(1957), + [anon_sym_def] = ACTIONS(1957), + [anon_sym_export_DASHenv] = ACTIONS(1957), + [anon_sym_extern] = ACTIONS(1957), + [anon_sym_module] = ACTIONS(1957), + [anon_sym_use] = ACTIONS(1957), + [anon_sym_LPAREN] = ACTIONS(1957), + [anon_sym_DOLLAR] = ACTIONS(1957), + [anon_sym_error] = ACTIONS(1957), + [anon_sym_list] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_break] = ACTIONS(1957), + [anon_sym_continue] = ACTIONS(1957), + [anon_sym_for] = ACTIONS(1957), + [anon_sym_in] = ACTIONS(1957), + [anon_sym_loop] = ACTIONS(1957), + [anon_sym_make] = ACTIONS(1957), + [anon_sym_while] = ACTIONS(1957), + [anon_sym_do] = ACTIONS(1957), + [anon_sym_if] = ACTIONS(1957), + [anon_sym_else] = ACTIONS(1957), + [anon_sym_match] = ACTIONS(1957), + [anon_sym_RBRACE] = ACTIONS(1957), + [anon_sym_try] = ACTIONS(1957), + [anon_sym_catch] = ACTIONS(1957), + [anon_sym_return] = ACTIONS(1957), + [anon_sym_source] = ACTIONS(1957), + [anon_sym_source_DASHenv] = ACTIONS(1957), + [anon_sym_register] = ACTIONS(1957), + [anon_sym_hide] = ACTIONS(1957), + [anon_sym_hide_DASHenv] = ACTIONS(1957), + [anon_sym_overlay] = ACTIONS(1957), + [anon_sym_new] = ACTIONS(1957), + [anon_sym_as] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1957), + [anon_sym_DOT] = ACTIONS(1831), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1957), + [aux_sym__val_number_decimal_token1] = ACTIONS(1957), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1957), + [aux_sym__val_number_decimal_token4] = ACTIONS(1957), + [aux_sym__val_number_token1] = ACTIONS(1957), + [aux_sym__val_number_token2] = ACTIONS(1957), + [aux_sym__val_number_token3] = ACTIONS(1957), + [anon_sym_DQUOTE] = ACTIONS(1957), + [sym__str_single_quotes] = ACTIONS(1957), + [sym__str_back_ticks] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1957), + [sym__entry_separator] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_POUND] = ACTIONS(3), + }, + [343] = { + [sym_cell_path] = STATE(564), + [sym_path] = STATE(482), + [sym_comment] = STATE(343), + [aux_sym_cell_path_repeat1] = STATE(381), + [anon_sym_export] = ACTIONS(1961), + [anon_sym_alias] = ACTIONS(1961), + [anon_sym_let] = ACTIONS(1961), + [anon_sym_let_DASHenv] = ACTIONS(1961), + [anon_sym_mut] = ACTIONS(1961), + [anon_sym_const] = ACTIONS(1961), + [aux_sym_cmd_identifier_token1] = ACTIONS(1961), + [aux_sym_cmd_identifier_token2] = ACTIONS(1961), + [aux_sym_cmd_identifier_token3] = ACTIONS(1961), + [aux_sym_cmd_identifier_token4] = ACTIONS(1961), + [aux_sym_cmd_identifier_token5] = ACTIONS(1961), + [aux_sym_cmd_identifier_token6] = ACTIONS(1961), + [aux_sym_cmd_identifier_token7] = ACTIONS(1961), + [aux_sym_cmd_identifier_token8] = ACTIONS(1961), + [aux_sym_cmd_identifier_token9] = ACTIONS(1961), + [aux_sym_cmd_identifier_token10] = ACTIONS(1961), + [aux_sym_cmd_identifier_token11] = ACTIONS(1961), + [aux_sym_cmd_identifier_token12] = ACTIONS(1961), + [aux_sym_cmd_identifier_token13] = ACTIONS(1961), + [aux_sym_cmd_identifier_token14] = ACTIONS(1961), + [aux_sym_cmd_identifier_token15] = ACTIONS(1961), + [aux_sym_cmd_identifier_token16] = ACTIONS(1961), + [aux_sym_cmd_identifier_token17] = ACTIONS(1961), + [aux_sym_cmd_identifier_token18] = ACTIONS(1961), + [aux_sym_cmd_identifier_token19] = ACTIONS(1961), + [aux_sym_cmd_identifier_token20] = ACTIONS(1961), + [aux_sym_cmd_identifier_token21] = ACTIONS(1961), + [aux_sym_cmd_identifier_token22] = ACTIONS(1961), + [aux_sym_cmd_identifier_token23] = ACTIONS(1961), + [aux_sym_cmd_identifier_token24] = ACTIONS(1961), + [aux_sym_cmd_identifier_token25] = ACTIONS(1961), + [aux_sym_cmd_identifier_token26] = ACTIONS(1961), + [aux_sym_cmd_identifier_token27] = ACTIONS(1961), + [aux_sym_cmd_identifier_token28] = ACTIONS(1961), + [aux_sym_cmd_identifier_token29] = ACTIONS(1961), + [aux_sym_cmd_identifier_token30] = ACTIONS(1961), + [aux_sym_cmd_identifier_token31] = ACTIONS(1961), + [aux_sym_cmd_identifier_token32] = ACTIONS(1961), + [aux_sym_cmd_identifier_token33] = ACTIONS(1961), + [aux_sym_cmd_identifier_token34] = ACTIONS(1961), + [aux_sym_cmd_identifier_token35] = ACTIONS(1961), + [aux_sym_cmd_identifier_token36] = ACTIONS(1961), + [anon_sym_true] = ACTIONS(1961), + [anon_sym_false] = ACTIONS(1961), + [anon_sym_null] = ACTIONS(1961), + [aux_sym_cmd_identifier_token38] = ACTIONS(1961), + [aux_sym_cmd_identifier_token39] = ACTIONS(1961), + [aux_sym_cmd_identifier_token40] = ACTIONS(1961), + [anon_sym_def] = ACTIONS(1961), + [anon_sym_export_DASHenv] = ACTIONS(1961), + [anon_sym_extern] = ACTIONS(1961), + [anon_sym_module] = ACTIONS(1961), + [anon_sym_use] = ACTIONS(1961), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_DOLLAR] = ACTIONS(1961), + [anon_sym_error] = ACTIONS(1961), + [anon_sym_list] = ACTIONS(1961), + [anon_sym_DASH] = ACTIONS(1961), + [anon_sym_break] = ACTIONS(1961), + [anon_sym_continue] = ACTIONS(1961), + [anon_sym_for] = ACTIONS(1961), + [anon_sym_in] = ACTIONS(1961), + [anon_sym_loop] = ACTIONS(1961), + [anon_sym_make] = ACTIONS(1961), + [anon_sym_while] = ACTIONS(1961), + [anon_sym_do] = ACTIONS(1961), + [anon_sym_if] = ACTIONS(1961), + [anon_sym_else] = ACTIONS(1961), + [anon_sym_match] = ACTIONS(1961), + [anon_sym_RBRACE] = ACTIONS(1961), + [anon_sym_try] = ACTIONS(1961), + [anon_sym_catch] = ACTIONS(1961), + [anon_sym_return] = ACTIONS(1961), + [anon_sym_source] = ACTIONS(1961), + [anon_sym_source_DASHenv] = ACTIONS(1961), + [anon_sym_register] = ACTIONS(1961), + [anon_sym_hide] = ACTIONS(1961), + [anon_sym_hide_DASHenv] = ACTIONS(1961), + [anon_sym_overlay] = ACTIONS(1961), + [anon_sym_new] = ACTIONS(1961), + [anon_sym_as] = ACTIONS(1961), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1961), + [anon_sym_DOT] = ACTIONS(1831), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1961), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1961), + [aux_sym__val_number_decimal_token3] = ACTIONS(1961), + [aux_sym__val_number_decimal_token4] = ACTIONS(1961), + [aux_sym__val_number_token1] = ACTIONS(1961), + [aux_sym__val_number_token2] = ACTIONS(1961), + [aux_sym__val_number_token3] = ACTIONS(1961), + [anon_sym_DQUOTE] = ACTIONS(1961), + [sym__str_single_quotes] = ACTIONS(1961), + [sym__str_back_ticks] = ACTIONS(1961), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1961), + [sym__entry_separator] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1961), + [anon_sym_POUND] = ACTIONS(3), + }, + [344] = { + [sym_cell_path] = STATE(589), + [sym_path] = STATE(482), + [sym_comment] = STATE(344), + [aux_sym_cell_path_repeat1] = STATE(381), + [anon_sym_export] = ACTIONS(1965), + [anon_sym_alias] = ACTIONS(1965), + [anon_sym_let] = ACTIONS(1965), + [anon_sym_let_DASHenv] = ACTIONS(1965), + [anon_sym_mut] = ACTIONS(1965), + [anon_sym_const] = ACTIONS(1965), + [aux_sym_cmd_identifier_token1] = ACTIONS(1965), + [aux_sym_cmd_identifier_token2] = ACTIONS(1965), + [aux_sym_cmd_identifier_token3] = ACTIONS(1965), + [aux_sym_cmd_identifier_token4] = ACTIONS(1965), + [aux_sym_cmd_identifier_token5] = ACTIONS(1965), + [aux_sym_cmd_identifier_token6] = ACTIONS(1965), + [aux_sym_cmd_identifier_token7] = ACTIONS(1965), + [aux_sym_cmd_identifier_token8] = ACTIONS(1965), + [aux_sym_cmd_identifier_token9] = ACTIONS(1965), + [aux_sym_cmd_identifier_token10] = ACTIONS(1965), + [aux_sym_cmd_identifier_token11] = ACTIONS(1965), + [aux_sym_cmd_identifier_token12] = ACTIONS(1965), + [aux_sym_cmd_identifier_token13] = ACTIONS(1965), + [aux_sym_cmd_identifier_token14] = ACTIONS(1965), + [aux_sym_cmd_identifier_token15] = ACTIONS(1965), + [aux_sym_cmd_identifier_token16] = ACTIONS(1965), + [aux_sym_cmd_identifier_token17] = ACTIONS(1965), + [aux_sym_cmd_identifier_token18] = ACTIONS(1965), + [aux_sym_cmd_identifier_token19] = ACTIONS(1965), + [aux_sym_cmd_identifier_token20] = ACTIONS(1965), + [aux_sym_cmd_identifier_token21] = ACTIONS(1965), + [aux_sym_cmd_identifier_token22] = ACTIONS(1965), + [aux_sym_cmd_identifier_token23] = ACTIONS(1965), + [aux_sym_cmd_identifier_token24] = ACTIONS(1965), + [aux_sym_cmd_identifier_token25] = ACTIONS(1965), + [aux_sym_cmd_identifier_token26] = ACTIONS(1965), + [aux_sym_cmd_identifier_token27] = ACTIONS(1965), + [aux_sym_cmd_identifier_token28] = ACTIONS(1965), + [aux_sym_cmd_identifier_token29] = ACTIONS(1965), + [aux_sym_cmd_identifier_token30] = ACTIONS(1965), + [aux_sym_cmd_identifier_token31] = ACTIONS(1965), + [aux_sym_cmd_identifier_token32] = ACTIONS(1965), + [aux_sym_cmd_identifier_token33] = ACTIONS(1965), + [aux_sym_cmd_identifier_token34] = ACTIONS(1965), + [aux_sym_cmd_identifier_token35] = ACTIONS(1965), + [aux_sym_cmd_identifier_token36] = ACTIONS(1965), + [anon_sym_true] = ACTIONS(1965), + [anon_sym_false] = ACTIONS(1965), + [anon_sym_null] = ACTIONS(1965), + [aux_sym_cmd_identifier_token38] = ACTIONS(1965), + [aux_sym_cmd_identifier_token39] = ACTIONS(1965), + [aux_sym_cmd_identifier_token40] = ACTIONS(1965), + [anon_sym_def] = ACTIONS(1965), + [anon_sym_export_DASHenv] = ACTIONS(1965), + [anon_sym_extern] = ACTIONS(1965), + [anon_sym_module] = ACTIONS(1965), + [anon_sym_use] = ACTIONS(1965), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_DOLLAR] = ACTIONS(1965), + [anon_sym_error] = ACTIONS(1965), + [anon_sym_list] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_break] = ACTIONS(1965), + [anon_sym_continue] = ACTIONS(1965), + [anon_sym_for] = ACTIONS(1965), + [anon_sym_in] = ACTIONS(1965), + [anon_sym_loop] = ACTIONS(1965), + [anon_sym_make] = ACTIONS(1965), + [anon_sym_while] = ACTIONS(1965), + [anon_sym_do] = ACTIONS(1965), + [anon_sym_if] = ACTIONS(1965), + [anon_sym_else] = ACTIONS(1965), + [anon_sym_match] = ACTIONS(1965), + [anon_sym_RBRACE] = ACTIONS(1965), + [anon_sym_try] = ACTIONS(1965), + [anon_sym_catch] = ACTIONS(1965), + [anon_sym_return] = ACTIONS(1965), + [anon_sym_source] = ACTIONS(1965), + [anon_sym_source_DASHenv] = ACTIONS(1965), + [anon_sym_register] = ACTIONS(1965), + [anon_sym_hide] = ACTIONS(1965), + [anon_sym_hide_DASHenv] = ACTIONS(1965), + [anon_sym_overlay] = ACTIONS(1965), + [anon_sym_new] = ACTIONS(1965), + [anon_sym_as] = ACTIONS(1965), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1965), + [anon_sym_DOT] = ACTIONS(1831), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1965), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1965), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(1965), + [aux_sym__val_number_token2] = ACTIONS(1965), + [aux_sym__val_number_token3] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1965), + [sym__str_single_quotes] = ACTIONS(1965), + [sym__str_back_ticks] = ACTIONS(1965), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1965), + [sym__entry_separator] = ACTIONS(1967), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_POUND] = ACTIONS(3), + }, + [345] = { + [sym_cell_path] = STATE(535), + [sym_path] = STATE(482), + [sym_comment] = STATE(345), + [aux_sym_cell_path_repeat1] = STATE(381), + [anon_sym_export] = ACTIONS(1969), + [anon_sym_alias] = ACTIONS(1969), + [anon_sym_let] = ACTIONS(1969), + [anon_sym_let_DASHenv] = ACTIONS(1969), + [anon_sym_mut] = ACTIONS(1969), + [anon_sym_const] = ACTIONS(1969), + [aux_sym_cmd_identifier_token1] = ACTIONS(1969), + [aux_sym_cmd_identifier_token2] = ACTIONS(1969), + [aux_sym_cmd_identifier_token3] = ACTIONS(1969), + [aux_sym_cmd_identifier_token4] = ACTIONS(1969), + [aux_sym_cmd_identifier_token5] = ACTIONS(1969), + [aux_sym_cmd_identifier_token6] = ACTIONS(1969), + [aux_sym_cmd_identifier_token7] = ACTIONS(1969), + [aux_sym_cmd_identifier_token8] = ACTIONS(1969), + [aux_sym_cmd_identifier_token9] = ACTIONS(1969), + [aux_sym_cmd_identifier_token10] = ACTIONS(1969), + [aux_sym_cmd_identifier_token11] = ACTIONS(1969), + [aux_sym_cmd_identifier_token12] = ACTIONS(1969), + [aux_sym_cmd_identifier_token13] = ACTIONS(1969), + [aux_sym_cmd_identifier_token14] = ACTIONS(1969), + [aux_sym_cmd_identifier_token15] = ACTIONS(1969), + [aux_sym_cmd_identifier_token16] = ACTIONS(1969), + [aux_sym_cmd_identifier_token17] = ACTIONS(1969), + [aux_sym_cmd_identifier_token18] = ACTIONS(1969), + [aux_sym_cmd_identifier_token19] = ACTIONS(1969), + [aux_sym_cmd_identifier_token20] = ACTIONS(1969), + [aux_sym_cmd_identifier_token21] = ACTIONS(1969), + [aux_sym_cmd_identifier_token22] = ACTIONS(1969), + [aux_sym_cmd_identifier_token23] = ACTIONS(1969), + [aux_sym_cmd_identifier_token24] = ACTIONS(1969), + [aux_sym_cmd_identifier_token25] = ACTIONS(1969), + [aux_sym_cmd_identifier_token26] = ACTIONS(1969), + [aux_sym_cmd_identifier_token27] = ACTIONS(1969), + [aux_sym_cmd_identifier_token28] = ACTIONS(1969), + [aux_sym_cmd_identifier_token29] = ACTIONS(1969), + [aux_sym_cmd_identifier_token30] = ACTIONS(1969), + [aux_sym_cmd_identifier_token31] = ACTIONS(1969), + [aux_sym_cmd_identifier_token32] = ACTIONS(1969), + [aux_sym_cmd_identifier_token33] = ACTIONS(1969), + [aux_sym_cmd_identifier_token34] = ACTIONS(1969), + [aux_sym_cmd_identifier_token35] = ACTIONS(1969), + [aux_sym_cmd_identifier_token36] = ACTIONS(1969), + [anon_sym_true] = ACTIONS(1969), + [anon_sym_false] = ACTIONS(1969), + [anon_sym_null] = ACTIONS(1969), + [aux_sym_cmd_identifier_token38] = ACTIONS(1969), + [aux_sym_cmd_identifier_token39] = ACTIONS(1969), + [aux_sym_cmd_identifier_token40] = ACTIONS(1969), + [anon_sym_def] = ACTIONS(1969), + [anon_sym_export_DASHenv] = ACTIONS(1969), + [anon_sym_extern] = ACTIONS(1969), + [anon_sym_module] = ACTIONS(1969), + [anon_sym_use] = ACTIONS(1969), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_DOLLAR] = ACTIONS(1969), + [anon_sym_error] = ACTIONS(1969), + [anon_sym_list] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1969), + [anon_sym_break] = ACTIONS(1969), + [anon_sym_continue] = ACTIONS(1969), + [anon_sym_for] = ACTIONS(1969), + [anon_sym_in] = ACTIONS(1969), + [anon_sym_loop] = ACTIONS(1969), + [anon_sym_make] = ACTIONS(1969), + [anon_sym_while] = ACTIONS(1969), + [anon_sym_do] = ACTIONS(1969), + [anon_sym_if] = ACTIONS(1969), + [anon_sym_else] = ACTIONS(1969), + [anon_sym_match] = ACTIONS(1969), + [anon_sym_RBRACE] = ACTIONS(1969), + [anon_sym_try] = ACTIONS(1969), + [anon_sym_catch] = ACTIONS(1969), + [anon_sym_return] = ACTIONS(1969), + [anon_sym_source] = ACTIONS(1969), + [anon_sym_source_DASHenv] = ACTIONS(1969), + [anon_sym_register] = ACTIONS(1969), + [anon_sym_hide] = ACTIONS(1969), + [anon_sym_hide_DASHenv] = ACTIONS(1969), + [anon_sym_overlay] = ACTIONS(1969), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_as] = ACTIONS(1969), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1969), + [anon_sym_DOT] = ACTIONS(1831), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1969), + [aux_sym__val_number_decimal_token1] = ACTIONS(1969), + [aux_sym__val_number_decimal_token2] = ACTIONS(1969), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), + [aux_sym__val_number_token1] = ACTIONS(1969), + [aux_sym__val_number_token2] = ACTIONS(1969), + [aux_sym__val_number_token3] = ACTIONS(1969), + [anon_sym_DQUOTE] = ACTIONS(1969), + [sym__str_single_quotes] = ACTIONS(1969), + [sym__str_back_ticks] = ACTIONS(1969), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1969), + [sym__entry_separator] = ACTIONS(1971), + [anon_sym_PLUS] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + }, + [346] = { + [sym_cell_path] = STATE(646), + [sym_path] = STATE(550), + [sym_comment] = STATE(346), + [aux_sym_cell_path_repeat1] = STATE(434), + [anon_sym_export] = ACTIONS(1957), + [anon_sym_alias] = ACTIONS(1957), + [anon_sym_let] = ACTIONS(1957), + [anon_sym_let_DASHenv] = ACTIONS(1957), + [anon_sym_mut] = ACTIONS(1957), + [anon_sym_const] = ACTIONS(1957), + [aux_sym_cmd_identifier_token1] = ACTIONS(1957), + [aux_sym_cmd_identifier_token2] = ACTIONS(1957), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [aux_sym_cmd_identifier_token6] = ACTIONS(1957), + [aux_sym_cmd_identifier_token7] = ACTIONS(1957), + [aux_sym_cmd_identifier_token8] = ACTIONS(1957), + [aux_sym_cmd_identifier_token9] = ACTIONS(1957), + [aux_sym_cmd_identifier_token10] = ACTIONS(1957), + [aux_sym_cmd_identifier_token11] = ACTIONS(1957), + [aux_sym_cmd_identifier_token12] = ACTIONS(1957), + [aux_sym_cmd_identifier_token13] = ACTIONS(1957), + [aux_sym_cmd_identifier_token14] = ACTIONS(1957), + [aux_sym_cmd_identifier_token15] = ACTIONS(1957), + [aux_sym_cmd_identifier_token16] = ACTIONS(1957), + [aux_sym_cmd_identifier_token17] = ACTIONS(1957), + [aux_sym_cmd_identifier_token18] = ACTIONS(1957), + [aux_sym_cmd_identifier_token19] = ACTIONS(1957), + [aux_sym_cmd_identifier_token20] = ACTIONS(1957), + [aux_sym_cmd_identifier_token21] = ACTIONS(1957), + [aux_sym_cmd_identifier_token22] = ACTIONS(1957), + [aux_sym_cmd_identifier_token23] = ACTIONS(1957), + [aux_sym_cmd_identifier_token24] = ACTIONS(1957), + [aux_sym_cmd_identifier_token25] = ACTIONS(1957), + [aux_sym_cmd_identifier_token26] = ACTIONS(1957), + [aux_sym_cmd_identifier_token27] = ACTIONS(1957), + [aux_sym_cmd_identifier_token28] = ACTIONS(1957), + [aux_sym_cmd_identifier_token29] = ACTIONS(1957), + [aux_sym_cmd_identifier_token30] = ACTIONS(1957), + [aux_sym_cmd_identifier_token31] = ACTIONS(1957), + [aux_sym_cmd_identifier_token32] = ACTIONS(1957), + [aux_sym_cmd_identifier_token33] = ACTIONS(1957), + [aux_sym_cmd_identifier_token34] = ACTIONS(1957), + [aux_sym_cmd_identifier_token35] = ACTIONS(1957), + [aux_sym_cmd_identifier_token36] = ACTIONS(1957), + [anon_sym_true] = ACTIONS(1959), + [anon_sym_false] = ACTIONS(1959), + [anon_sym_null] = ACTIONS(1959), + [aux_sym_cmd_identifier_token38] = ACTIONS(1957), + [aux_sym_cmd_identifier_token39] = ACTIONS(1959), + [aux_sym_cmd_identifier_token40] = ACTIONS(1959), + [anon_sym_def] = ACTIONS(1957), + [anon_sym_export_DASHenv] = ACTIONS(1957), + [anon_sym_extern] = ACTIONS(1957), + [anon_sym_module] = ACTIONS(1957), + [anon_sym_use] = ACTIONS(1957), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_DOLLAR] = ACTIONS(1959), + [anon_sym_error] = ACTIONS(1957), + [anon_sym_list] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_break] = ACTIONS(1957), + [anon_sym_continue] = ACTIONS(1957), + [anon_sym_for] = ACTIONS(1957), + [anon_sym_in] = ACTIONS(1957), + [anon_sym_loop] = ACTIONS(1957), + [anon_sym_make] = ACTIONS(1957), + [anon_sym_while] = ACTIONS(1957), + [anon_sym_do] = ACTIONS(1957), + [anon_sym_if] = ACTIONS(1957), + [anon_sym_else] = ACTIONS(1957), + [anon_sym_match] = ACTIONS(1957), + [anon_sym_RBRACE] = ACTIONS(1959), + [anon_sym_try] = ACTIONS(1957), + [anon_sym_catch] = ACTIONS(1957), + [anon_sym_return] = ACTIONS(1957), + [anon_sym_source] = ACTIONS(1957), + [anon_sym_source_DASHenv] = ACTIONS(1957), + [anon_sym_register] = ACTIONS(1957), + [anon_sym_hide] = ACTIONS(1957), + [anon_sym_hide_DASHenv] = ACTIONS(1957), + [anon_sym_overlay] = ACTIONS(1957), + [anon_sym_new] = ACTIONS(1957), + [anon_sym_as] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1959), + [anon_sym_DOT] = ACTIONS(1973), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1957), + [aux_sym__val_number_decimal_token2] = ACTIONS(1959), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [aux_sym__val_number_token1] = ACTIONS(1959), + [aux_sym__val_number_token2] = ACTIONS(1959), + [aux_sym__val_number_token3] = ACTIONS(1959), + [anon_sym_DQUOTE] = ACTIONS(1959), + [sym__str_single_quotes] = ACTIONS(1959), + [sym__str_back_ticks] = ACTIONS(1959), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_POUND] = ACTIONS(247), + }, + [347] = { + [sym_comment] = STATE(347), + [anon_sym_export] = ACTIONS(1643), + [anon_sym_alias] = ACTIONS(1643), + [anon_sym_let] = ACTIONS(1643), + [anon_sym_let_DASHenv] = ACTIONS(1643), + [anon_sym_mut] = ACTIONS(1643), + [anon_sym_const] = ACTIONS(1643), + [aux_sym_cmd_identifier_token1] = ACTIONS(1643), + [aux_sym_cmd_identifier_token2] = ACTIONS(1643), + [aux_sym_cmd_identifier_token3] = ACTIONS(1643), + [aux_sym_cmd_identifier_token4] = ACTIONS(1643), + [aux_sym_cmd_identifier_token5] = ACTIONS(1643), + [aux_sym_cmd_identifier_token6] = ACTIONS(1643), + [aux_sym_cmd_identifier_token7] = ACTIONS(1643), + [aux_sym_cmd_identifier_token8] = ACTIONS(1643), + [aux_sym_cmd_identifier_token9] = ACTIONS(1643), + [aux_sym_cmd_identifier_token10] = ACTIONS(1643), + [aux_sym_cmd_identifier_token11] = ACTIONS(1643), + [aux_sym_cmd_identifier_token12] = ACTIONS(1643), + [aux_sym_cmd_identifier_token13] = ACTIONS(1643), + [aux_sym_cmd_identifier_token14] = ACTIONS(1643), + [aux_sym_cmd_identifier_token15] = ACTIONS(1643), + [aux_sym_cmd_identifier_token16] = ACTIONS(1643), + [aux_sym_cmd_identifier_token17] = ACTIONS(1643), + [aux_sym_cmd_identifier_token18] = ACTIONS(1643), + [aux_sym_cmd_identifier_token19] = ACTIONS(1643), + [aux_sym_cmd_identifier_token20] = ACTIONS(1643), + [aux_sym_cmd_identifier_token21] = ACTIONS(1643), + [aux_sym_cmd_identifier_token22] = ACTIONS(1643), + [aux_sym_cmd_identifier_token23] = ACTIONS(1643), + [aux_sym_cmd_identifier_token24] = ACTIONS(1643), + [aux_sym_cmd_identifier_token25] = ACTIONS(1643), + [aux_sym_cmd_identifier_token26] = ACTIONS(1643), + [aux_sym_cmd_identifier_token27] = ACTIONS(1643), + [aux_sym_cmd_identifier_token28] = ACTIONS(1643), + [aux_sym_cmd_identifier_token29] = ACTIONS(1643), + [aux_sym_cmd_identifier_token30] = ACTIONS(1643), + [aux_sym_cmd_identifier_token31] = ACTIONS(1643), + [aux_sym_cmd_identifier_token32] = ACTIONS(1643), + [aux_sym_cmd_identifier_token33] = ACTIONS(1643), + [aux_sym_cmd_identifier_token34] = ACTIONS(1643), + [aux_sym_cmd_identifier_token35] = ACTIONS(1643), + [aux_sym_cmd_identifier_token36] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_null] = ACTIONS(1643), + [aux_sym_cmd_identifier_token38] = ACTIONS(1643), + [aux_sym_cmd_identifier_token39] = ACTIONS(1643), + [aux_sym_cmd_identifier_token40] = ACTIONS(1643), + [anon_sym_def] = ACTIONS(1643), + [anon_sym_export_DASHenv] = ACTIONS(1643), + [anon_sym_extern] = ACTIONS(1643), + [anon_sym_module] = ACTIONS(1643), + [anon_sym_use] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(1643), + [anon_sym_error] = ACTIONS(1643), + [anon_sym_list] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_break] = ACTIONS(1643), + [anon_sym_continue] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_loop] = ACTIONS(1643), + [anon_sym_make] = ACTIONS(1643), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_do] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_else] = ACTIONS(1643), + [anon_sym_match] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), + [anon_sym_try] = ACTIONS(1643), + [anon_sym_catch] = ACTIONS(1643), + [anon_sym_return] = ACTIONS(1643), + [anon_sym_source] = ACTIONS(1643), + [anon_sym_source_DASHenv] = ACTIONS(1643), + [anon_sym_register] = ACTIONS(1643), + [anon_sym_hide] = ACTIONS(1643), + [anon_sym_hide_DASHenv] = ACTIONS(1643), + [anon_sym_overlay] = ACTIONS(1643), + [anon_sym_new] = ACTIONS(1643), + [anon_sym_as] = ACTIONS(1643), + [anon_sym_LPAREN2] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1643), + [aux_sym__immediate_decimal_token2] = ACTIONS(1819), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1643), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1643), + [aux_sym__val_number_decimal_token3] = ACTIONS(1643), + [aux_sym__val_number_decimal_token4] = ACTIONS(1643), + [aux_sym__val_number_token1] = ACTIONS(1643), + [aux_sym__val_number_token2] = ACTIONS(1643), + [aux_sym__val_number_token3] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1643), + [sym__str_single_quotes] = ACTIONS(1643), + [sym__str_back_ticks] = ACTIONS(1643), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1643), + [sym__entry_separator] = ACTIONS(1645), + [anon_sym_PLUS] = ACTIONS(1643), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1643), + [anon_sym_POUND] = ACTIONS(3), + }, + [348] = { + [sym_comment] = STATE(348), + [anon_sym_export] = ACTIONS(1705), + [anon_sym_alias] = ACTIONS(1705), + [anon_sym_let] = ACTIONS(1705), + [anon_sym_let_DASHenv] = ACTIONS(1705), + [anon_sym_mut] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [aux_sym_cmd_identifier_token1] = ACTIONS(1705), + [aux_sym_cmd_identifier_token2] = ACTIONS(1705), + [aux_sym_cmd_identifier_token3] = ACTIONS(1705), + [aux_sym_cmd_identifier_token4] = ACTIONS(1705), + [aux_sym_cmd_identifier_token5] = ACTIONS(1705), + [aux_sym_cmd_identifier_token6] = ACTIONS(1705), + [aux_sym_cmd_identifier_token7] = ACTIONS(1705), + [aux_sym_cmd_identifier_token8] = ACTIONS(1705), + [aux_sym_cmd_identifier_token9] = ACTIONS(1705), + [aux_sym_cmd_identifier_token10] = ACTIONS(1705), + [aux_sym_cmd_identifier_token11] = ACTIONS(1705), + [aux_sym_cmd_identifier_token12] = ACTIONS(1705), + [aux_sym_cmd_identifier_token13] = ACTIONS(1705), + [aux_sym_cmd_identifier_token14] = ACTIONS(1705), + [aux_sym_cmd_identifier_token15] = ACTIONS(1705), + [aux_sym_cmd_identifier_token16] = ACTIONS(1705), + [aux_sym_cmd_identifier_token17] = ACTIONS(1705), + [aux_sym_cmd_identifier_token18] = ACTIONS(1705), + [aux_sym_cmd_identifier_token19] = ACTIONS(1705), + [aux_sym_cmd_identifier_token20] = ACTIONS(1705), + [aux_sym_cmd_identifier_token21] = ACTIONS(1705), + [aux_sym_cmd_identifier_token22] = ACTIONS(1705), + [aux_sym_cmd_identifier_token23] = ACTIONS(1705), + [aux_sym_cmd_identifier_token24] = ACTIONS(1705), + [aux_sym_cmd_identifier_token25] = ACTIONS(1705), + [aux_sym_cmd_identifier_token26] = ACTIONS(1705), + [aux_sym_cmd_identifier_token27] = ACTIONS(1705), + [aux_sym_cmd_identifier_token28] = ACTIONS(1705), + [aux_sym_cmd_identifier_token29] = ACTIONS(1705), + [aux_sym_cmd_identifier_token30] = ACTIONS(1705), + [aux_sym_cmd_identifier_token31] = ACTIONS(1705), + [aux_sym_cmd_identifier_token32] = ACTIONS(1705), + [aux_sym_cmd_identifier_token33] = ACTIONS(1705), + [aux_sym_cmd_identifier_token34] = ACTIONS(1705), + [aux_sym_cmd_identifier_token35] = ACTIONS(1705), + [aux_sym_cmd_identifier_token36] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1705), + [anon_sym_false] = ACTIONS(1705), + [anon_sym_null] = ACTIONS(1705), + [aux_sym_cmd_identifier_token38] = ACTIONS(1705), + [aux_sym_cmd_identifier_token39] = ACTIONS(1705), + [aux_sym_cmd_identifier_token40] = ACTIONS(1705), + [anon_sym_def] = ACTIONS(1705), + [anon_sym_export_DASHenv] = ACTIONS(1705), + [anon_sym_extern] = ACTIONS(1705), + [anon_sym_module] = ACTIONS(1705), + [anon_sym_use] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1705), + [anon_sym_error] = ACTIONS(1705), + [anon_sym_list] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_break] = ACTIONS(1705), + [anon_sym_continue] = ACTIONS(1705), + [anon_sym_for] = ACTIONS(1705), + [anon_sym_in] = ACTIONS(1705), + [anon_sym_loop] = ACTIONS(1705), + [anon_sym_make] = ACTIONS(1705), + [anon_sym_while] = ACTIONS(1705), + [anon_sym_do] = ACTIONS(1705), + [anon_sym_if] = ACTIONS(1705), + [anon_sym_else] = ACTIONS(1705), + [anon_sym_match] = ACTIONS(1705), + [anon_sym_RBRACE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1705), + [anon_sym_catch] = ACTIONS(1705), + [anon_sym_return] = ACTIONS(1705), + [anon_sym_source] = ACTIONS(1705), + [anon_sym_source_DASHenv] = ACTIONS(1705), + [anon_sym_register] = ACTIONS(1705), + [anon_sym_hide] = ACTIONS(1705), + [anon_sym_hide_DASHenv] = ACTIONS(1705), + [anon_sym_overlay] = ACTIONS(1705), + [anon_sym_new] = ACTIONS(1705), + [anon_sym_as] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1705), + [anon_sym_DOT_DOT2] = ACTIONS(1705), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1707), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1705), + [aux_sym__val_number_decimal_token1] = ACTIONS(1705), + [aux_sym__val_number_decimal_token2] = ACTIONS(1705), + [aux_sym__val_number_decimal_token3] = ACTIONS(1705), + [aux_sym__val_number_decimal_token4] = ACTIONS(1705), + [aux_sym__val_number_token1] = ACTIONS(1705), + [aux_sym__val_number_token2] = ACTIONS(1705), + [aux_sym__val_number_token3] = ACTIONS(1705), + [anon_sym_DQUOTE] = ACTIONS(1705), + [sym__str_single_quotes] = ACTIONS(1705), + [sym__str_back_ticks] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1705), + [sym__entry_separator] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_POUND] = ACTIONS(3), + }, + [349] = { + [sym_cmd_identifier] = STATE(4634), + [sym__expression_parenthesized] = STATE(3753), + [sym_expr_unary] = STATE(2310), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2310), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(1961), + [sym_val_range] = STATE(3744), + [sym__value] = STATE(2310), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2168), + [sym_val_variable] = STATE(1934), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1512), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_env_var] = STATE(6934), + [sym__command_parenthesized] = STATE(5041), + [sym_comment] = STATE(349), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1030), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(453), + [anon_sym_false] = ACTIONS(453), + [anon_sym_null] = ACTIONS(455), + [aux_sym_cmd_identifier_token38] = ACTIONS(457), + [aux_sym_cmd_identifier_token39] = ACTIONS(459), + [aux_sym_cmd_identifier_token40] = ACTIONS(459), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(491), + [aux_sym__val_number_decimal_token2] = ACTIONS(493), + [aux_sym__val_number_decimal_token3] = ACTIONS(495), + [aux_sym__val_number_decimal_token4] = ACTIONS(497), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(515), + [anon_sym_POUND] = ACTIONS(247), + }, + [350] = { + [sym_cell_path] = STATE(613), + [sym_path] = STATE(550), + [sym_comment] = STATE(350), + [aux_sym_cell_path_repeat1] = STATE(434), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_alias] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_let_DASHenv] = ACTIONS(1859), + [anon_sym_mut] = ACTIONS(1859), + [anon_sym_const] = ACTIONS(1859), + [aux_sym_cmd_identifier_token1] = ACTIONS(1859), + [aux_sym_cmd_identifier_token2] = ACTIONS(1859), + [aux_sym_cmd_identifier_token3] = ACTIONS(1859), + [aux_sym_cmd_identifier_token4] = ACTIONS(1859), + [aux_sym_cmd_identifier_token5] = ACTIONS(1859), + [aux_sym_cmd_identifier_token6] = ACTIONS(1859), + [aux_sym_cmd_identifier_token7] = ACTIONS(1859), + [aux_sym_cmd_identifier_token8] = ACTIONS(1859), + [aux_sym_cmd_identifier_token9] = ACTIONS(1859), + [aux_sym_cmd_identifier_token10] = ACTIONS(1859), + [aux_sym_cmd_identifier_token11] = ACTIONS(1859), + [aux_sym_cmd_identifier_token12] = ACTIONS(1859), + [aux_sym_cmd_identifier_token13] = ACTIONS(1859), + [aux_sym_cmd_identifier_token14] = ACTIONS(1859), + [aux_sym_cmd_identifier_token15] = ACTIONS(1859), + [aux_sym_cmd_identifier_token16] = ACTIONS(1859), + [aux_sym_cmd_identifier_token17] = ACTIONS(1859), + [aux_sym_cmd_identifier_token18] = ACTIONS(1859), + [aux_sym_cmd_identifier_token19] = ACTIONS(1859), + [aux_sym_cmd_identifier_token20] = ACTIONS(1859), + [aux_sym_cmd_identifier_token21] = ACTIONS(1859), + [aux_sym_cmd_identifier_token22] = ACTIONS(1859), + [aux_sym_cmd_identifier_token23] = ACTIONS(1859), + [aux_sym_cmd_identifier_token24] = ACTIONS(1859), + [aux_sym_cmd_identifier_token25] = ACTIONS(1859), + [aux_sym_cmd_identifier_token26] = ACTIONS(1859), + [aux_sym_cmd_identifier_token27] = ACTIONS(1859), + [aux_sym_cmd_identifier_token28] = ACTIONS(1859), + [aux_sym_cmd_identifier_token29] = ACTIONS(1859), + [aux_sym_cmd_identifier_token30] = ACTIONS(1859), + [aux_sym_cmd_identifier_token31] = ACTIONS(1859), + [aux_sym_cmd_identifier_token32] = ACTIONS(1859), + [aux_sym_cmd_identifier_token33] = ACTIONS(1859), + [aux_sym_cmd_identifier_token34] = ACTIONS(1859), + [aux_sym_cmd_identifier_token35] = ACTIONS(1859), + [aux_sym_cmd_identifier_token36] = ACTIONS(1859), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1861), + [aux_sym_cmd_identifier_token38] = ACTIONS(1859), + [aux_sym_cmd_identifier_token39] = ACTIONS(1861), + [aux_sym_cmd_identifier_token40] = ACTIONS(1861), + [anon_sym_def] = ACTIONS(1859), + [anon_sym_export_DASHenv] = ACTIONS(1859), + [anon_sym_extern] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_use] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1861), + [anon_sym_DOLLAR] = ACTIONS(1861), + [anon_sym_error] = ACTIONS(1859), + [anon_sym_list] = ACTIONS(1859), + [anon_sym_DASH] = ACTIONS(1859), + [anon_sym_break] = ACTIONS(1859), + [anon_sym_continue] = ACTIONS(1859), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_in] = ACTIONS(1859), + [anon_sym_loop] = ACTIONS(1859), + [anon_sym_make] = ACTIONS(1859), + [anon_sym_while] = ACTIONS(1859), + [anon_sym_do] = ACTIONS(1859), + [anon_sym_if] = ACTIONS(1859), + [anon_sym_else] = ACTIONS(1859), + [anon_sym_match] = ACTIONS(1859), + [anon_sym_RBRACE] = ACTIONS(1861), + [anon_sym_try] = ACTIONS(1859), + [anon_sym_catch] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(1859), + [anon_sym_source] = ACTIONS(1859), + [anon_sym_source_DASHenv] = ACTIONS(1859), + [anon_sym_register] = ACTIONS(1859), + [anon_sym_hide] = ACTIONS(1859), + [anon_sym_hide_DASHenv] = ACTIONS(1859), + [anon_sym_overlay] = ACTIONS(1859), + [anon_sym_new] = ACTIONS(1859), + [anon_sym_as] = ACTIONS(1859), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1861), + [anon_sym_DOT] = ACTIONS(1973), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1861), + [aux_sym__val_number_decimal_token1] = ACTIONS(1859), + [aux_sym__val_number_decimal_token2] = ACTIONS(1861), + [aux_sym__val_number_decimal_token3] = ACTIONS(1861), + [aux_sym__val_number_decimal_token4] = ACTIONS(1861), + [aux_sym__val_number_token1] = ACTIONS(1861), + [aux_sym__val_number_token2] = ACTIONS(1861), + [aux_sym__val_number_token3] = ACTIONS(1861), + [anon_sym_DQUOTE] = ACTIONS(1861), + [sym__str_single_quotes] = ACTIONS(1861), + [sym__str_back_ticks] = ACTIONS(1861), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1861), + [anon_sym_PLUS] = ACTIONS(1859), + [anon_sym_POUND] = ACTIONS(247), + }, + [351] = { + [sym_cell_path] = STATE(654), + [sym_path] = STATE(550), + [sym_comment] = STATE(351), + [aux_sym_cell_path_repeat1] = STATE(434), + [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), + [aux_sym_cmd_identifier_token1] = ACTIONS(1905), + [aux_sym_cmd_identifier_token2] = ACTIONS(1905), + [aux_sym_cmd_identifier_token3] = ACTIONS(1905), + [aux_sym_cmd_identifier_token4] = ACTIONS(1905), + [aux_sym_cmd_identifier_token5] = ACTIONS(1905), + [aux_sym_cmd_identifier_token6] = ACTIONS(1905), + [aux_sym_cmd_identifier_token7] = ACTIONS(1905), + [aux_sym_cmd_identifier_token8] = ACTIONS(1905), + [aux_sym_cmd_identifier_token9] = ACTIONS(1905), + [aux_sym_cmd_identifier_token10] = ACTIONS(1905), + [aux_sym_cmd_identifier_token11] = ACTIONS(1905), + [aux_sym_cmd_identifier_token12] = ACTIONS(1905), + [aux_sym_cmd_identifier_token13] = ACTIONS(1905), + [aux_sym_cmd_identifier_token14] = ACTIONS(1905), + [aux_sym_cmd_identifier_token15] = ACTIONS(1905), + [aux_sym_cmd_identifier_token16] = ACTIONS(1905), + [aux_sym_cmd_identifier_token17] = ACTIONS(1905), + [aux_sym_cmd_identifier_token18] = ACTIONS(1905), + [aux_sym_cmd_identifier_token19] = ACTIONS(1905), + [aux_sym_cmd_identifier_token20] = ACTIONS(1905), + [aux_sym_cmd_identifier_token21] = ACTIONS(1905), + [aux_sym_cmd_identifier_token22] = ACTIONS(1905), + [aux_sym_cmd_identifier_token23] = ACTIONS(1905), + [aux_sym_cmd_identifier_token24] = ACTIONS(1905), + [aux_sym_cmd_identifier_token25] = ACTIONS(1905), + [aux_sym_cmd_identifier_token26] = ACTIONS(1905), + [aux_sym_cmd_identifier_token27] = ACTIONS(1905), + [aux_sym_cmd_identifier_token28] = ACTIONS(1905), + [aux_sym_cmd_identifier_token29] = ACTIONS(1905), + [aux_sym_cmd_identifier_token30] = ACTIONS(1905), + [aux_sym_cmd_identifier_token31] = ACTIONS(1905), + [aux_sym_cmd_identifier_token32] = ACTIONS(1905), + [aux_sym_cmd_identifier_token33] = ACTIONS(1905), + [aux_sym_cmd_identifier_token34] = ACTIONS(1905), + [aux_sym_cmd_identifier_token35] = ACTIONS(1905), + [aux_sym_cmd_identifier_token36] = ACTIONS(1905), + [anon_sym_true] = ACTIONS(1907), + [anon_sym_false] = ACTIONS(1907), + [anon_sym_null] = ACTIONS(1907), + [aux_sym_cmd_identifier_token38] = ACTIONS(1905), + [aux_sym_cmd_identifier_token39] = ACTIONS(1907), + [aux_sym_cmd_identifier_token40] = ACTIONS(1907), + [anon_sym_def] = 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_LPAREN] = ACTIONS(1907), + [anon_sym_DOLLAR] = ACTIONS(1907), + [anon_sym_error] = ACTIONS(1905), + [anon_sym_list] = ACTIONS(1905), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_break] = ACTIONS(1905), + [anon_sym_continue] = ACTIONS(1905), + [anon_sym_for] = ACTIONS(1905), + [anon_sym_in] = ACTIONS(1905), + [anon_sym_loop] = ACTIONS(1905), + [anon_sym_make] = ACTIONS(1905), + [anon_sym_while] = ACTIONS(1905), + [anon_sym_do] = ACTIONS(1905), + [anon_sym_if] = ACTIONS(1905), + [anon_sym_else] = ACTIONS(1905), + [anon_sym_match] = ACTIONS(1905), + [anon_sym_RBRACE] = ACTIONS(1907), + [anon_sym_try] = ACTIONS(1905), + [anon_sym_catch] = 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_new] = ACTIONS(1905), + [anon_sym_as] = ACTIONS(1905), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1907), + [anon_sym_DOT] = ACTIONS(1973), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1907), + [aux_sym__val_number_decimal_token1] = ACTIONS(1905), + [aux_sym__val_number_decimal_token2] = ACTIONS(1907), + [aux_sym__val_number_decimal_token3] = ACTIONS(1907), + [aux_sym__val_number_decimal_token4] = ACTIONS(1907), + [aux_sym__val_number_token1] = ACTIONS(1907), + [aux_sym__val_number_token2] = ACTIONS(1907), + [aux_sym__val_number_token3] = ACTIONS(1907), + [anon_sym_DQUOTE] = ACTIONS(1907), + [sym__str_single_quotes] = ACTIONS(1907), + [sym__str_back_ticks] = ACTIONS(1907), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1907), + [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_POUND] = ACTIONS(247), + }, + [352] = { + [sym_cell_path] = STATE(606), + [sym_path] = STATE(550), + [sym_comment] = STATE(352), + [aux_sym_cell_path_repeat1] = STATE(434), + [anon_sym_export] = ACTIONS(1843), + [anon_sym_alias] = ACTIONS(1843), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_let_DASHenv] = ACTIONS(1843), + [anon_sym_mut] = ACTIONS(1843), + [anon_sym_const] = ACTIONS(1843), + [aux_sym_cmd_identifier_token1] = ACTIONS(1843), + [aux_sym_cmd_identifier_token2] = ACTIONS(1843), + [aux_sym_cmd_identifier_token3] = ACTIONS(1843), + [aux_sym_cmd_identifier_token4] = ACTIONS(1843), + [aux_sym_cmd_identifier_token5] = ACTIONS(1843), + [aux_sym_cmd_identifier_token6] = ACTIONS(1843), + [aux_sym_cmd_identifier_token7] = ACTIONS(1843), + [aux_sym_cmd_identifier_token8] = ACTIONS(1843), + [aux_sym_cmd_identifier_token9] = ACTIONS(1843), + [aux_sym_cmd_identifier_token10] = ACTIONS(1843), + [aux_sym_cmd_identifier_token11] = ACTIONS(1843), + [aux_sym_cmd_identifier_token12] = ACTIONS(1843), + [aux_sym_cmd_identifier_token13] = ACTIONS(1843), + [aux_sym_cmd_identifier_token14] = ACTIONS(1843), + [aux_sym_cmd_identifier_token15] = ACTIONS(1843), + [aux_sym_cmd_identifier_token16] = ACTIONS(1843), + [aux_sym_cmd_identifier_token17] = ACTIONS(1843), + [aux_sym_cmd_identifier_token18] = ACTIONS(1843), + [aux_sym_cmd_identifier_token19] = ACTIONS(1843), + [aux_sym_cmd_identifier_token20] = ACTIONS(1843), + [aux_sym_cmd_identifier_token21] = ACTIONS(1843), + [aux_sym_cmd_identifier_token22] = ACTIONS(1843), + [aux_sym_cmd_identifier_token23] = ACTIONS(1843), + [aux_sym_cmd_identifier_token24] = ACTIONS(1843), + [aux_sym_cmd_identifier_token25] = ACTIONS(1843), + [aux_sym_cmd_identifier_token26] = ACTIONS(1843), + [aux_sym_cmd_identifier_token27] = ACTIONS(1843), + [aux_sym_cmd_identifier_token28] = ACTIONS(1843), + [aux_sym_cmd_identifier_token29] = ACTIONS(1843), + [aux_sym_cmd_identifier_token30] = ACTIONS(1843), + [aux_sym_cmd_identifier_token31] = ACTIONS(1843), + [aux_sym_cmd_identifier_token32] = ACTIONS(1843), + [aux_sym_cmd_identifier_token33] = ACTIONS(1843), + [aux_sym_cmd_identifier_token34] = ACTIONS(1843), + [aux_sym_cmd_identifier_token35] = ACTIONS(1843), + [aux_sym_cmd_identifier_token36] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1845), + [anon_sym_false] = ACTIONS(1845), + [anon_sym_null] = ACTIONS(1845), + [aux_sym_cmd_identifier_token38] = ACTIONS(1843), + [aux_sym_cmd_identifier_token39] = ACTIONS(1845), + [aux_sym_cmd_identifier_token40] = ACTIONS(1845), + [anon_sym_def] = ACTIONS(1843), + [anon_sym_export_DASHenv] = ACTIONS(1843), + [anon_sym_extern] = ACTIONS(1843), + [anon_sym_module] = ACTIONS(1843), + [anon_sym_use] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_DOLLAR] = ACTIONS(1845), + [anon_sym_error] = ACTIONS(1843), + [anon_sym_list] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_break] = ACTIONS(1843), + [anon_sym_continue] = ACTIONS(1843), + [anon_sym_for] = ACTIONS(1843), + [anon_sym_in] = ACTIONS(1843), + [anon_sym_loop] = ACTIONS(1843), + [anon_sym_make] = ACTIONS(1843), + [anon_sym_while] = ACTIONS(1843), + [anon_sym_do] = ACTIONS(1843), + [anon_sym_if] = ACTIONS(1843), + [anon_sym_else] = ACTIONS(1843), + [anon_sym_match] = ACTIONS(1843), + [anon_sym_RBRACE] = ACTIONS(1845), + [anon_sym_try] = ACTIONS(1843), + [anon_sym_catch] = ACTIONS(1843), + [anon_sym_return] = ACTIONS(1843), + [anon_sym_source] = ACTIONS(1843), + [anon_sym_source_DASHenv] = ACTIONS(1843), + [anon_sym_register] = ACTIONS(1843), + [anon_sym_hide] = ACTIONS(1843), + [anon_sym_hide_DASHenv] = ACTIONS(1843), + [anon_sym_overlay] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1843), + [anon_sym_as] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1845), + [anon_sym_DOT] = ACTIONS(1973), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1845), + [aux_sym__val_number_decimal_token1] = ACTIONS(1843), + [aux_sym__val_number_decimal_token2] = ACTIONS(1845), + [aux_sym__val_number_decimal_token3] = ACTIONS(1845), + [aux_sym__val_number_decimal_token4] = ACTIONS(1845), + [aux_sym__val_number_token1] = ACTIONS(1845), + [aux_sym__val_number_token2] = ACTIONS(1845), + [aux_sym__val_number_token3] = ACTIONS(1845), + [anon_sym_DQUOTE] = ACTIONS(1845), + [sym__str_single_quotes] = ACTIONS(1845), + [sym__str_back_ticks] = ACTIONS(1845), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_POUND] = ACTIONS(247), + }, + [353] = { + [sym_cell_path] = STATE(615), + [sym_path] = STATE(550), + [sym_comment] = STATE(353), + [aux_sym_cell_path_repeat1] = STATE(434), [anon_sym_export] = ACTIONS(1863), [anon_sym_alias] = ACTIONS(1863), [anon_sym_let] = ACTIONS(1863), @@ -119289,7 +114991,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(1863), [anon_sym_as] = ACTIONS(1863), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1865), - [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_DOT] = ACTIONS(1973), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1865), [aux_sym__val_number_decimal_token1] = ACTIONS(1863), [aux_sym__val_number_decimal_token2] = ACTIONS(1865), @@ -119305,32 +115007,444 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1863), [anon_sym_POUND] = ACTIONS(247), }, - [356] = { - [sym_cell_path] = STATE(617), - [sym_path] = STATE(532), - [sym_comment] = STATE(356), - [aux_sym_cell_path_repeat1] = STATE(424), - [anon_sym_export] = ACTIONS(1867), - [anon_sym_alias] = ACTIONS(1867), - [anon_sym_let] = ACTIONS(1867), - [anon_sym_let_DASHenv] = ACTIONS(1867), - [anon_sym_mut] = ACTIONS(1867), - [anon_sym_const] = ACTIONS(1867), - [aux_sym_cmd_identifier_token1] = ACTIONS(1867), - [aux_sym_cmd_identifier_token2] = ACTIONS(1867), - [aux_sym_cmd_identifier_token3] = ACTIONS(1867), - [aux_sym_cmd_identifier_token4] = ACTIONS(1867), - [aux_sym_cmd_identifier_token5] = ACTIONS(1867), - [aux_sym_cmd_identifier_token6] = ACTIONS(1867), - [aux_sym_cmd_identifier_token7] = ACTIONS(1867), - [aux_sym_cmd_identifier_token8] = ACTIONS(1867), - [aux_sym_cmd_identifier_token9] = ACTIONS(1867), - [aux_sym_cmd_identifier_token10] = ACTIONS(1867), - [aux_sym_cmd_identifier_token11] = ACTIONS(1867), - [aux_sym_cmd_identifier_token12] = ACTIONS(1867), - [aux_sym_cmd_identifier_token13] = ACTIONS(1867), - [aux_sym_cmd_identifier_token14] = ACTIONS(1867), - [aux_sym_cmd_identifier_token15] = ACTIONS(1867), + [354] = { + [sym_comment] = STATE(354), + [anon_sym_export] = ACTIONS(1064), + [anon_sym_alias] = ACTIONS(1064), + [anon_sym_let] = ACTIONS(1064), + [anon_sym_let_DASHenv] = ACTIONS(1064), + [anon_sym_mut] = ACTIONS(1064), + [anon_sym_const] = ACTIONS(1064), + [aux_sym_cmd_identifier_token1] = ACTIONS(1064), + [aux_sym_cmd_identifier_token2] = ACTIONS(1064), + [aux_sym_cmd_identifier_token3] = ACTIONS(1064), + [aux_sym_cmd_identifier_token4] = ACTIONS(1064), + [aux_sym_cmd_identifier_token5] = ACTIONS(1064), + [aux_sym_cmd_identifier_token6] = ACTIONS(1064), + [aux_sym_cmd_identifier_token7] = ACTIONS(1064), + [aux_sym_cmd_identifier_token8] = ACTIONS(1064), + [aux_sym_cmd_identifier_token9] = ACTIONS(1064), + [aux_sym_cmd_identifier_token10] = ACTIONS(1064), + [aux_sym_cmd_identifier_token11] = ACTIONS(1064), + [aux_sym_cmd_identifier_token12] = ACTIONS(1064), + [aux_sym_cmd_identifier_token13] = ACTIONS(1064), + [aux_sym_cmd_identifier_token14] = ACTIONS(1064), + [aux_sym_cmd_identifier_token15] = ACTIONS(1064), + [aux_sym_cmd_identifier_token16] = ACTIONS(1064), + [aux_sym_cmd_identifier_token17] = ACTIONS(1064), + [aux_sym_cmd_identifier_token18] = ACTIONS(1064), + [aux_sym_cmd_identifier_token19] = ACTIONS(1064), + [aux_sym_cmd_identifier_token20] = ACTIONS(1064), + [aux_sym_cmd_identifier_token21] = ACTIONS(1064), + [aux_sym_cmd_identifier_token22] = ACTIONS(1064), + [aux_sym_cmd_identifier_token23] = ACTIONS(1064), + [aux_sym_cmd_identifier_token24] = ACTIONS(1064), + [aux_sym_cmd_identifier_token25] = ACTIONS(1064), + [aux_sym_cmd_identifier_token26] = ACTIONS(1064), + [aux_sym_cmd_identifier_token27] = ACTIONS(1064), + [aux_sym_cmd_identifier_token28] = ACTIONS(1064), + [aux_sym_cmd_identifier_token29] = ACTIONS(1064), + [aux_sym_cmd_identifier_token30] = ACTIONS(1064), + [aux_sym_cmd_identifier_token31] = ACTIONS(1064), + [aux_sym_cmd_identifier_token32] = ACTIONS(1064), + [aux_sym_cmd_identifier_token33] = ACTIONS(1064), + [aux_sym_cmd_identifier_token34] = ACTIONS(1064), + [aux_sym_cmd_identifier_token35] = ACTIONS(1064), + [aux_sym_cmd_identifier_token36] = ACTIONS(1064), + [anon_sym_true] = ACTIONS(1064), + [anon_sym_false] = ACTIONS(1064), + [anon_sym_null] = ACTIONS(1064), + [aux_sym_cmd_identifier_token38] = ACTIONS(1064), + [aux_sym_cmd_identifier_token39] = ACTIONS(1064), + [aux_sym_cmd_identifier_token40] = ACTIONS(1064), + [anon_sym_def] = ACTIONS(1064), + [anon_sym_export_DASHenv] = ACTIONS(1064), + [anon_sym_extern] = ACTIONS(1064), + [anon_sym_module] = ACTIONS(1064), + [anon_sym_use] = ACTIONS(1064), + [anon_sym_LPAREN] = ACTIONS(1064), + [anon_sym_DOLLAR] = ACTIONS(1064), + [anon_sym_error] = ACTIONS(1064), + [anon_sym_list] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1064), + [anon_sym_for] = ACTIONS(1064), + [anon_sym_in] = ACTIONS(1064), + [anon_sym_loop] = ACTIONS(1064), + [anon_sym_make] = ACTIONS(1064), + [anon_sym_while] = ACTIONS(1064), + [anon_sym_do] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1064), + [anon_sym_else] = ACTIONS(1064), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_RBRACE] = ACTIONS(1064), + [anon_sym_try] = ACTIONS(1064), + [anon_sym_catch] = ACTIONS(1064), + [anon_sym_return] = ACTIONS(1064), + [anon_sym_source] = ACTIONS(1064), + [anon_sym_source_DASHenv] = ACTIONS(1064), + [anon_sym_register] = ACTIONS(1064), + [anon_sym_hide] = ACTIONS(1064), + [anon_sym_hide_DASHenv] = ACTIONS(1064), + [anon_sym_overlay] = ACTIONS(1064), + [anon_sym_new] = ACTIONS(1064), + [anon_sym_as] = ACTIONS(1064), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1064), + [anon_sym_DOT_DOT2] = ACTIONS(1064), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1066), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1066), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1064), + [aux_sym__val_number_decimal_token1] = ACTIONS(1064), + [aux_sym__val_number_decimal_token2] = ACTIONS(1064), + [aux_sym__val_number_decimal_token3] = ACTIONS(1064), + [aux_sym__val_number_decimal_token4] = ACTIONS(1064), + [aux_sym__val_number_token1] = ACTIONS(1064), + [aux_sym__val_number_token2] = ACTIONS(1064), + [aux_sym__val_number_token3] = ACTIONS(1064), + [anon_sym_DQUOTE] = ACTIONS(1064), + [sym__str_single_quotes] = ACTIONS(1064), + [sym__str_back_ticks] = ACTIONS(1064), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1064), + [sym__entry_separator] = ACTIONS(1066), + [anon_sym_PLUS] = ACTIONS(1064), + [anon_sym_POUND] = ACTIONS(3), + }, + [355] = { + [sym_cmd_identifier] = STATE(4558), + [sym_ctrl_if] = STATE(4944), + [sym_block] = STATE(4765), + [sym__expression] = STATE(4765), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3784), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1461), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(2929), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_command] = STATE(4765), + [sym_comment] = STATE(355), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(367), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [aux_sym_cmd_identifier_token38] = ACTIONS(1979), + [aux_sym_cmd_identifier_token39] = ACTIONS(1981), + [aux_sym_cmd_identifier_token40] = ACTIONS(1981), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_if] = ACTIONS(409), + [aux_sym_ctrl_match_token1] = ACTIONS(1983), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1991), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + }, + [356] = { + [sym_cell_path] = STATE(608), + [sym_path] = STATE(550), + [sym_comment] = STATE(356), + [aux_sym_cell_path_repeat1] = STATE(434), + [anon_sym_export] = ACTIONS(1011), + [anon_sym_alias] = ACTIONS(1011), + [anon_sym_let] = ACTIONS(1011), + [anon_sym_let_DASHenv] = ACTIONS(1011), + [anon_sym_mut] = ACTIONS(1011), + [anon_sym_const] = ACTIONS(1011), + [aux_sym_cmd_identifier_token1] = ACTIONS(1011), + [aux_sym_cmd_identifier_token2] = ACTIONS(1011), + [aux_sym_cmd_identifier_token3] = ACTIONS(1011), + [aux_sym_cmd_identifier_token4] = ACTIONS(1011), + [aux_sym_cmd_identifier_token5] = ACTIONS(1011), + [aux_sym_cmd_identifier_token6] = ACTIONS(1011), + [aux_sym_cmd_identifier_token7] = ACTIONS(1011), + [aux_sym_cmd_identifier_token8] = ACTIONS(1011), + [aux_sym_cmd_identifier_token9] = ACTIONS(1011), + [aux_sym_cmd_identifier_token10] = ACTIONS(1011), + [aux_sym_cmd_identifier_token11] = ACTIONS(1011), + [aux_sym_cmd_identifier_token12] = ACTIONS(1011), + [aux_sym_cmd_identifier_token13] = ACTIONS(1011), + [aux_sym_cmd_identifier_token14] = ACTIONS(1011), + [aux_sym_cmd_identifier_token15] = ACTIONS(1011), + [aux_sym_cmd_identifier_token16] = ACTIONS(1011), + [aux_sym_cmd_identifier_token17] = ACTIONS(1011), + [aux_sym_cmd_identifier_token18] = ACTIONS(1011), + [aux_sym_cmd_identifier_token19] = ACTIONS(1011), + [aux_sym_cmd_identifier_token20] = ACTIONS(1011), + [aux_sym_cmd_identifier_token21] = ACTIONS(1011), + [aux_sym_cmd_identifier_token22] = ACTIONS(1011), + [aux_sym_cmd_identifier_token23] = ACTIONS(1011), + [aux_sym_cmd_identifier_token24] = ACTIONS(1011), + [aux_sym_cmd_identifier_token25] = ACTIONS(1011), + [aux_sym_cmd_identifier_token26] = ACTIONS(1011), + [aux_sym_cmd_identifier_token27] = ACTIONS(1011), + [aux_sym_cmd_identifier_token28] = ACTIONS(1011), + [aux_sym_cmd_identifier_token29] = ACTIONS(1011), + [aux_sym_cmd_identifier_token30] = ACTIONS(1011), + [aux_sym_cmd_identifier_token31] = ACTIONS(1011), + [aux_sym_cmd_identifier_token32] = ACTIONS(1011), + [aux_sym_cmd_identifier_token33] = ACTIONS(1011), + [aux_sym_cmd_identifier_token34] = ACTIONS(1011), + [aux_sym_cmd_identifier_token35] = ACTIONS(1011), + [aux_sym_cmd_identifier_token36] = ACTIONS(1011), + [anon_sym_true] = ACTIONS(1013), + [anon_sym_false] = ACTIONS(1013), + [anon_sym_null] = ACTIONS(1013), + [aux_sym_cmd_identifier_token38] = ACTIONS(1011), + [aux_sym_cmd_identifier_token39] = ACTIONS(1013), + [aux_sym_cmd_identifier_token40] = ACTIONS(1013), + [anon_sym_def] = ACTIONS(1011), + [anon_sym_export_DASHenv] = ACTIONS(1011), + [anon_sym_extern] = ACTIONS(1011), + [anon_sym_module] = ACTIONS(1011), + [anon_sym_use] = ACTIONS(1011), + [anon_sym_LPAREN] = ACTIONS(1013), + [anon_sym_DOLLAR] = ACTIONS(1013), + [anon_sym_error] = ACTIONS(1011), + [anon_sym_list] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_break] = ACTIONS(1011), + [anon_sym_continue] = ACTIONS(1011), + [anon_sym_for] = ACTIONS(1011), + [anon_sym_in] = ACTIONS(1011), + [anon_sym_loop] = ACTIONS(1011), + [anon_sym_make] = ACTIONS(1011), + [anon_sym_while] = ACTIONS(1011), + [anon_sym_do] = ACTIONS(1011), + [anon_sym_if] = ACTIONS(1011), + [anon_sym_else] = ACTIONS(1011), + [anon_sym_match] = ACTIONS(1011), + [anon_sym_RBRACE] = ACTIONS(1013), + [anon_sym_try] = ACTIONS(1011), + [anon_sym_catch] = ACTIONS(1011), + [anon_sym_return] = ACTIONS(1011), + [anon_sym_source] = ACTIONS(1011), + [anon_sym_source_DASHenv] = ACTIONS(1011), + [anon_sym_register] = ACTIONS(1011), + [anon_sym_hide] = ACTIONS(1011), + [anon_sym_hide_DASHenv] = ACTIONS(1011), + [anon_sym_overlay] = ACTIONS(1011), + [anon_sym_new] = ACTIONS(1011), + [anon_sym_as] = ACTIONS(1011), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1013), + [anon_sym_DOT] = ACTIONS(1973), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1013), + [aux_sym__val_number_decimal_token1] = ACTIONS(1011), + [aux_sym__val_number_decimal_token2] = ACTIONS(1013), + [aux_sym__val_number_decimal_token3] = ACTIONS(1013), + [aux_sym__val_number_decimal_token4] = ACTIONS(1013), + [aux_sym__val_number_token1] = ACTIONS(1013), + [aux_sym__val_number_token2] = ACTIONS(1013), + [aux_sym__val_number_token3] = ACTIONS(1013), + [anon_sym_DQUOTE] = ACTIONS(1013), + [sym__str_single_quotes] = ACTIONS(1013), + [sym__str_back_ticks] = ACTIONS(1013), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_POUND] = ACTIONS(247), + }, + [357] = { + [sym_cell_path] = STATE(658), + [sym_path] = STATE(550), + [sym_comment] = STATE(357), + [aux_sym_cell_path_repeat1] = STATE(434), + [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), + [aux_sym_cmd_identifier_token1] = ACTIONS(1909), + [aux_sym_cmd_identifier_token2] = ACTIONS(1909), + [aux_sym_cmd_identifier_token3] = ACTIONS(1909), + [aux_sym_cmd_identifier_token4] = ACTIONS(1909), + [aux_sym_cmd_identifier_token5] = ACTIONS(1909), + [aux_sym_cmd_identifier_token6] = ACTIONS(1909), + [aux_sym_cmd_identifier_token7] = ACTIONS(1909), + [aux_sym_cmd_identifier_token8] = ACTIONS(1909), + [aux_sym_cmd_identifier_token9] = ACTIONS(1909), + [aux_sym_cmd_identifier_token10] = ACTIONS(1909), + [aux_sym_cmd_identifier_token11] = ACTIONS(1909), + [aux_sym_cmd_identifier_token12] = ACTIONS(1909), + [aux_sym_cmd_identifier_token13] = ACTIONS(1909), + [aux_sym_cmd_identifier_token14] = ACTIONS(1909), + [aux_sym_cmd_identifier_token15] = ACTIONS(1909), + [aux_sym_cmd_identifier_token16] = ACTIONS(1909), + [aux_sym_cmd_identifier_token17] = ACTIONS(1909), + [aux_sym_cmd_identifier_token18] = ACTIONS(1909), + [aux_sym_cmd_identifier_token19] = ACTIONS(1909), + [aux_sym_cmd_identifier_token20] = ACTIONS(1909), + [aux_sym_cmd_identifier_token21] = ACTIONS(1909), + [aux_sym_cmd_identifier_token22] = ACTIONS(1909), + [aux_sym_cmd_identifier_token23] = ACTIONS(1909), + [aux_sym_cmd_identifier_token24] = ACTIONS(1909), + [aux_sym_cmd_identifier_token25] = ACTIONS(1909), + [aux_sym_cmd_identifier_token26] = ACTIONS(1909), + [aux_sym_cmd_identifier_token27] = ACTIONS(1909), + [aux_sym_cmd_identifier_token28] = ACTIONS(1909), + [aux_sym_cmd_identifier_token29] = ACTIONS(1909), + [aux_sym_cmd_identifier_token30] = ACTIONS(1909), + [aux_sym_cmd_identifier_token31] = ACTIONS(1909), + [aux_sym_cmd_identifier_token32] = ACTIONS(1909), + [aux_sym_cmd_identifier_token33] = ACTIONS(1909), + [aux_sym_cmd_identifier_token34] = ACTIONS(1909), + [aux_sym_cmd_identifier_token35] = ACTIONS(1909), + [aux_sym_cmd_identifier_token36] = ACTIONS(1909), + [anon_sym_true] = ACTIONS(1911), + [anon_sym_false] = ACTIONS(1911), + [anon_sym_null] = ACTIONS(1911), + [aux_sym_cmd_identifier_token38] = ACTIONS(1909), + [aux_sym_cmd_identifier_token39] = ACTIONS(1911), + [aux_sym_cmd_identifier_token40] = ACTIONS(1911), + [anon_sym_def] = 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_LPAREN] = ACTIONS(1911), + [anon_sym_DOLLAR] = ACTIONS(1911), + [anon_sym_error] = ACTIONS(1909), + [anon_sym_list] = ACTIONS(1909), + [anon_sym_DASH] = ACTIONS(1909), + [anon_sym_break] = ACTIONS(1909), + [anon_sym_continue] = ACTIONS(1909), + [anon_sym_for] = ACTIONS(1909), + [anon_sym_in] = ACTIONS(1909), + [anon_sym_loop] = ACTIONS(1909), + [anon_sym_make] = ACTIONS(1909), + [anon_sym_while] = ACTIONS(1909), + [anon_sym_do] = ACTIONS(1909), + [anon_sym_if] = ACTIONS(1909), + [anon_sym_else] = ACTIONS(1909), + [anon_sym_match] = ACTIONS(1909), + [anon_sym_RBRACE] = ACTIONS(1911), + [anon_sym_try] = ACTIONS(1909), + [anon_sym_catch] = 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_new] = ACTIONS(1909), + [anon_sym_as] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1911), + [anon_sym_DOT] = ACTIONS(1973), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1911), + [aux_sym__val_number_decimal_token1] = ACTIONS(1909), + [aux_sym__val_number_decimal_token2] = ACTIONS(1911), + [aux_sym__val_number_decimal_token3] = ACTIONS(1911), + [aux_sym__val_number_decimal_token4] = ACTIONS(1911), + [aux_sym__val_number_token1] = ACTIONS(1911), + [aux_sym__val_number_token2] = ACTIONS(1911), + [aux_sym__val_number_token3] = ACTIONS(1911), + [anon_sym_DQUOTE] = ACTIONS(1911), + [sym__str_single_quotes] = ACTIONS(1911), + [sym__str_back_ticks] = ACTIONS(1911), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1911), + [anon_sym_PLUS] = ACTIONS(1909), + [anon_sym_POUND] = ACTIONS(247), + }, + [358] = { + [sym_cell_path] = STATE(616), + [sym_path] = STATE(550), + [sym_comment] = STATE(358), + [aux_sym_cell_path_repeat1] = STATE(434), + [anon_sym_export] = ACTIONS(1867), + [anon_sym_alias] = ACTIONS(1867), + [anon_sym_let] = ACTIONS(1867), + [anon_sym_let_DASHenv] = ACTIONS(1867), + [anon_sym_mut] = ACTIONS(1867), + [anon_sym_const] = ACTIONS(1867), + [aux_sym_cmd_identifier_token1] = ACTIONS(1867), + [aux_sym_cmd_identifier_token2] = ACTIONS(1867), + [aux_sym_cmd_identifier_token3] = ACTIONS(1867), + [aux_sym_cmd_identifier_token4] = ACTIONS(1867), + [aux_sym_cmd_identifier_token5] = ACTIONS(1867), + [aux_sym_cmd_identifier_token6] = ACTIONS(1867), + [aux_sym_cmd_identifier_token7] = ACTIONS(1867), + [aux_sym_cmd_identifier_token8] = ACTIONS(1867), + [aux_sym_cmd_identifier_token9] = ACTIONS(1867), + [aux_sym_cmd_identifier_token10] = ACTIONS(1867), + [aux_sym_cmd_identifier_token11] = ACTIONS(1867), + [aux_sym_cmd_identifier_token12] = ACTIONS(1867), + [aux_sym_cmd_identifier_token13] = ACTIONS(1867), + [aux_sym_cmd_identifier_token14] = ACTIONS(1867), + [aux_sym_cmd_identifier_token15] = ACTIONS(1867), [aux_sym_cmd_identifier_token16] = ACTIONS(1867), [aux_sym_cmd_identifier_token17] = ACTIONS(1867), [aux_sym_cmd_identifier_token18] = ACTIONS(1867), @@ -119392,7 +115506,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(1867), [anon_sym_as] = ACTIONS(1867), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1869), - [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_DOT] = ACTIONS(1973), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1869), [aux_sym__val_number_decimal_token1] = ACTIONS(1867), [aux_sym__val_number_decimal_token2] = ACTIONS(1869), @@ -119408,11 +115522,1556 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1867), [anon_sym_POUND] = ACTIONS(247), }, - [357] = { - [sym_cell_path] = STATE(630), - [sym_path] = STATE(532), - [sym_comment] = STATE(357), - [aux_sym_cell_path_repeat1] = STATE(424), + [359] = { + [sym_cell_path] = STATE(620), + [sym_path] = STATE(550), + [sym_comment] = STATE(359), + [aux_sym_cell_path_repeat1] = STATE(434), + [anon_sym_export] = ACTIONS(1871), + [anon_sym_alias] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1871), + [anon_sym_let_DASHenv] = ACTIONS(1871), + [anon_sym_mut] = ACTIONS(1871), + [anon_sym_const] = ACTIONS(1871), + [aux_sym_cmd_identifier_token1] = ACTIONS(1871), + [aux_sym_cmd_identifier_token2] = ACTIONS(1871), + [aux_sym_cmd_identifier_token3] = ACTIONS(1871), + [aux_sym_cmd_identifier_token4] = ACTIONS(1871), + [aux_sym_cmd_identifier_token5] = ACTIONS(1871), + [aux_sym_cmd_identifier_token6] = ACTIONS(1871), + [aux_sym_cmd_identifier_token7] = ACTIONS(1871), + [aux_sym_cmd_identifier_token8] = ACTIONS(1871), + [aux_sym_cmd_identifier_token9] = ACTIONS(1871), + [aux_sym_cmd_identifier_token10] = ACTIONS(1871), + [aux_sym_cmd_identifier_token11] = ACTIONS(1871), + [aux_sym_cmd_identifier_token12] = ACTIONS(1871), + [aux_sym_cmd_identifier_token13] = ACTIONS(1871), + [aux_sym_cmd_identifier_token14] = ACTIONS(1871), + [aux_sym_cmd_identifier_token15] = ACTIONS(1871), + [aux_sym_cmd_identifier_token16] = ACTIONS(1871), + [aux_sym_cmd_identifier_token17] = ACTIONS(1871), + [aux_sym_cmd_identifier_token18] = ACTIONS(1871), + [aux_sym_cmd_identifier_token19] = ACTIONS(1871), + [aux_sym_cmd_identifier_token20] = ACTIONS(1871), + [aux_sym_cmd_identifier_token21] = ACTIONS(1871), + [aux_sym_cmd_identifier_token22] = ACTIONS(1871), + [aux_sym_cmd_identifier_token23] = ACTIONS(1871), + [aux_sym_cmd_identifier_token24] = ACTIONS(1871), + [aux_sym_cmd_identifier_token25] = ACTIONS(1871), + [aux_sym_cmd_identifier_token26] = ACTIONS(1871), + [aux_sym_cmd_identifier_token27] = ACTIONS(1871), + [aux_sym_cmd_identifier_token28] = ACTIONS(1871), + [aux_sym_cmd_identifier_token29] = ACTIONS(1871), + [aux_sym_cmd_identifier_token30] = ACTIONS(1871), + [aux_sym_cmd_identifier_token31] = ACTIONS(1871), + [aux_sym_cmd_identifier_token32] = ACTIONS(1871), + [aux_sym_cmd_identifier_token33] = ACTIONS(1871), + [aux_sym_cmd_identifier_token34] = ACTIONS(1871), + [aux_sym_cmd_identifier_token35] = ACTIONS(1871), + [aux_sym_cmd_identifier_token36] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(1873), + [anon_sym_false] = ACTIONS(1873), + [anon_sym_null] = ACTIONS(1873), + [aux_sym_cmd_identifier_token38] = ACTIONS(1871), + [aux_sym_cmd_identifier_token39] = ACTIONS(1873), + [aux_sym_cmd_identifier_token40] = ACTIONS(1873), + [anon_sym_def] = ACTIONS(1871), + [anon_sym_export_DASHenv] = ACTIONS(1871), + [anon_sym_extern] = ACTIONS(1871), + [anon_sym_module] = ACTIONS(1871), + [anon_sym_use] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1873), + [anon_sym_DOLLAR] = ACTIONS(1873), + [anon_sym_error] = ACTIONS(1871), + [anon_sym_list] = ACTIONS(1871), + [anon_sym_DASH] = ACTIONS(1871), + [anon_sym_break] = ACTIONS(1871), + [anon_sym_continue] = ACTIONS(1871), + [anon_sym_for] = ACTIONS(1871), + [anon_sym_in] = ACTIONS(1871), + [anon_sym_loop] = ACTIONS(1871), + [anon_sym_make] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1871), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_if] = ACTIONS(1871), + [anon_sym_else] = ACTIONS(1871), + [anon_sym_match] = ACTIONS(1871), + [anon_sym_RBRACE] = ACTIONS(1873), + [anon_sym_try] = ACTIONS(1871), + [anon_sym_catch] = ACTIONS(1871), + [anon_sym_return] = ACTIONS(1871), + [anon_sym_source] = ACTIONS(1871), + [anon_sym_source_DASHenv] = ACTIONS(1871), + [anon_sym_register] = ACTIONS(1871), + [anon_sym_hide] = ACTIONS(1871), + [anon_sym_hide_DASHenv] = ACTIONS(1871), + [anon_sym_overlay] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1871), + [anon_sym_as] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1873), + [anon_sym_DOT] = ACTIONS(1973), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1873), + [aux_sym__val_number_decimal_token1] = ACTIONS(1871), + [aux_sym__val_number_decimal_token2] = ACTIONS(1873), + [aux_sym__val_number_decimal_token3] = ACTIONS(1873), + [aux_sym__val_number_decimal_token4] = ACTIONS(1873), + [aux_sym__val_number_token1] = ACTIONS(1873), + [aux_sym__val_number_token2] = ACTIONS(1873), + [aux_sym__val_number_token3] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(1873), + [sym__str_single_quotes] = ACTIONS(1873), + [sym__str_back_ticks] = ACTIONS(1873), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1873), + [anon_sym_PLUS] = ACTIONS(1871), + [anon_sym_POUND] = ACTIONS(247), + }, + [360] = { + [sym_comment] = STATE(360), + [anon_sym_export] = ACTIONS(1040), + [anon_sym_alias] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_let_DASHenv] = ACTIONS(1040), + [anon_sym_mut] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(1040), + [aux_sym_cmd_identifier_token1] = ACTIONS(1040), + [aux_sym_cmd_identifier_token2] = ACTIONS(1040), + [aux_sym_cmd_identifier_token3] = ACTIONS(1040), + [aux_sym_cmd_identifier_token4] = ACTIONS(1040), + [aux_sym_cmd_identifier_token5] = ACTIONS(1040), + [aux_sym_cmd_identifier_token6] = ACTIONS(1040), + [aux_sym_cmd_identifier_token7] = ACTIONS(1040), + [aux_sym_cmd_identifier_token8] = ACTIONS(1040), + [aux_sym_cmd_identifier_token9] = ACTIONS(1040), + [aux_sym_cmd_identifier_token10] = ACTIONS(1040), + [aux_sym_cmd_identifier_token11] = ACTIONS(1040), + [aux_sym_cmd_identifier_token12] = ACTIONS(1040), + [aux_sym_cmd_identifier_token13] = ACTIONS(1040), + [aux_sym_cmd_identifier_token14] = ACTIONS(1040), + [aux_sym_cmd_identifier_token15] = ACTIONS(1040), + [aux_sym_cmd_identifier_token16] = ACTIONS(1040), + [aux_sym_cmd_identifier_token17] = ACTIONS(1040), + [aux_sym_cmd_identifier_token18] = ACTIONS(1040), + [aux_sym_cmd_identifier_token19] = ACTIONS(1040), + [aux_sym_cmd_identifier_token20] = ACTIONS(1040), + [aux_sym_cmd_identifier_token21] = ACTIONS(1040), + [aux_sym_cmd_identifier_token22] = ACTIONS(1040), + [aux_sym_cmd_identifier_token23] = ACTIONS(1040), + [aux_sym_cmd_identifier_token24] = ACTIONS(1040), + [aux_sym_cmd_identifier_token25] = ACTIONS(1040), + [aux_sym_cmd_identifier_token26] = ACTIONS(1040), + [aux_sym_cmd_identifier_token27] = ACTIONS(1040), + [aux_sym_cmd_identifier_token28] = ACTIONS(1040), + [aux_sym_cmd_identifier_token29] = ACTIONS(1040), + [aux_sym_cmd_identifier_token30] = ACTIONS(1040), + [aux_sym_cmd_identifier_token31] = ACTIONS(1040), + [aux_sym_cmd_identifier_token32] = ACTIONS(1040), + [aux_sym_cmd_identifier_token33] = ACTIONS(1040), + [aux_sym_cmd_identifier_token34] = ACTIONS(1040), + [aux_sym_cmd_identifier_token35] = ACTIONS(1040), + [aux_sym_cmd_identifier_token36] = ACTIONS(1040), + [anon_sym_true] = ACTIONS(1042), + [anon_sym_false] = ACTIONS(1042), + [anon_sym_null] = ACTIONS(1042), + [aux_sym_cmd_identifier_token38] = ACTIONS(1040), + [aux_sym_cmd_identifier_token39] = ACTIONS(1042), + [aux_sym_cmd_identifier_token40] = ACTIONS(1042), + [anon_sym_def] = ACTIONS(1040), + [anon_sym_export_DASHenv] = ACTIONS(1040), + [anon_sym_extern] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + [anon_sym_use] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1042), + [anon_sym_COMMA] = ACTIONS(1042), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_error] = ACTIONS(1040), + [anon_sym_list] = ACTIONS(1040), + [anon_sym_DASH] = ACTIONS(1040), + [anon_sym_break] = ACTIONS(1040), + [anon_sym_continue] = ACTIONS(1040), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_loop] = ACTIONS(1040), + [anon_sym_make] = ACTIONS(1040), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_do] = ACTIONS(1040), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(1040), + [anon_sym_match] = ACTIONS(1040), + [anon_sym_RBRACE] = ACTIONS(1042), + [anon_sym_try] = ACTIONS(1040), + [anon_sym_catch] = ACTIONS(1040), + [anon_sym_return] = ACTIONS(1040), + [anon_sym_source] = ACTIONS(1040), + [anon_sym_source_DASHenv] = ACTIONS(1040), + [anon_sym_register] = ACTIONS(1040), + [anon_sym_hide] = ACTIONS(1040), + [anon_sym_hide_DASHenv] = ACTIONS(1040), + [anon_sym_overlay] = ACTIONS(1040), + [anon_sym_new] = ACTIONS(1040), + [anon_sym_as] = ACTIONS(1040), + [anon_sym_QMARK2] = ACTIONS(1042), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1042), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1042), + [aux_sym__val_number_decimal_token1] = ACTIONS(1040), + [aux_sym__val_number_decimal_token2] = ACTIONS(1042), + [aux_sym__val_number_decimal_token3] = ACTIONS(1042), + [aux_sym__val_number_decimal_token4] = ACTIONS(1042), + [aux_sym__val_number_token1] = ACTIONS(1042), + [aux_sym__val_number_token2] = ACTIONS(1042), + [aux_sym__val_number_token3] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1042), + [sym__str_single_quotes] = ACTIONS(1042), + [sym__str_back_ticks] = ACTIONS(1042), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1042), + [aux_sym_record_entry_token1] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1040), + [anon_sym_POUND] = ACTIONS(247), + }, + [361] = { + [sym_comment] = STATE(361), + [anon_sym_export] = ACTIONS(1755), + [anon_sym_alias] = ACTIONS(1755), + [anon_sym_let] = ACTIONS(1755), + [anon_sym_let_DASHenv] = ACTIONS(1755), + [anon_sym_mut] = ACTIONS(1755), + [anon_sym_const] = ACTIONS(1755), + [aux_sym_cmd_identifier_token1] = ACTIONS(1755), + [aux_sym_cmd_identifier_token2] = ACTIONS(1755), + [aux_sym_cmd_identifier_token3] = ACTIONS(1755), + [aux_sym_cmd_identifier_token4] = ACTIONS(1755), + [aux_sym_cmd_identifier_token5] = ACTIONS(1755), + [aux_sym_cmd_identifier_token6] = ACTIONS(1755), + [aux_sym_cmd_identifier_token7] = ACTIONS(1755), + [aux_sym_cmd_identifier_token8] = ACTIONS(1755), + [aux_sym_cmd_identifier_token9] = ACTIONS(1755), + [aux_sym_cmd_identifier_token10] = ACTIONS(1755), + [aux_sym_cmd_identifier_token11] = ACTIONS(1755), + [aux_sym_cmd_identifier_token12] = ACTIONS(1755), + [aux_sym_cmd_identifier_token13] = ACTIONS(1755), + [aux_sym_cmd_identifier_token14] = ACTIONS(1755), + [aux_sym_cmd_identifier_token15] = ACTIONS(1755), + [aux_sym_cmd_identifier_token16] = ACTIONS(1755), + [aux_sym_cmd_identifier_token17] = ACTIONS(1755), + [aux_sym_cmd_identifier_token18] = ACTIONS(1755), + [aux_sym_cmd_identifier_token19] = ACTIONS(1755), + [aux_sym_cmd_identifier_token20] = ACTIONS(1755), + [aux_sym_cmd_identifier_token21] = ACTIONS(1755), + [aux_sym_cmd_identifier_token22] = ACTIONS(1755), + [aux_sym_cmd_identifier_token23] = ACTIONS(1755), + [aux_sym_cmd_identifier_token24] = ACTIONS(1755), + [aux_sym_cmd_identifier_token25] = ACTIONS(1755), + [aux_sym_cmd_identifier_token26] = ACTIONS(1755), + [aux_sym_cmd_identifier_token27] = ACTIONS(1755), + [aux_sym_cmd_identifier_token28] = ACTIONS(1755), + [aux_sym_cmd_identifier_token29] = ACTIONS(1755), + [aux_sym_cmd_identifier_token30] = ACTIONS(1755), + [aux_sym_cmd_identifier_token31] = ACTIONS(1755), + [aux_sym_cmd_identifier_token32] = ACTIONS(1755), + [aux_sym_cmd_identifier_token33] = ACTIONS(1755), + [aux_sym_cmd_identifier_token34] = ACTIONS(1755), + [aux_sym_cmd_identifier_token35] = ACTIONS(1755), + [aux_sym_cmd_identifier_token36] = ACTIONS(1755), + [anon_sym_true] = ACTIONS(1755), + [anon_sym_false] = ACTIONS(1755), + [anon_sym_null] = ACTIONS(1755), + [aux_sym_cmd_identifier_token38] = ACTIONS(1755), + [aux_sym_cmd_identifier_token39] = ACTIONS(1755), + [aux_sym_cmd_identifier_token40] = ACTIONS(1755), + [anon_sym_def] = ACTIONS(1755), + [anon_sym_export_DASHenv] = ACTIONS(1755), + [anon_sym_extern] = ACTIONS(1755), + [anon_sym_module] = ACTIONS(1755), + [anon_sym_use] = ACTIONS(1755), + [anon_sym_LPAREN] = ACTIONS(1755), + [anon_sym_DOLLAR] = ACTIONS(1755), + [anon_sym_error] = ACTIONS(1755), + [anon_sym_list] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_in] = ACTIONS(1755), + [anon_sym_loop] = ACTIONS(1755), + [anon_sym_make] = ACTIONS(1755), + [anon_sym_while] = ACTIONS(1755), + [anon_sym_do] = ACTIONS(1755), + [anon_sym_if] = ACTIONS(1755), + [anon_sym_else] = ACTIONS(1755), + [anon_sym_match] = ACTIONS(1755), + [anon_sym_RBRACE] = ACTIONS(1755), + [anon_sym_try] = ACTIONS(1755), + [anon_sym_catch] = ACTIONS(1755), + [anon_sym_return] = ACTIONS(1755), + [anon_sym_source] = ACTIONS(1755), + [anon_sym_source_DASHenv] = ACTIONS(1755), + [anon_sym_register] = ACTIONS(1755), + [anon_sym_hide] = ACTIONS(1755), + [anon_sym_hide_DASHenv] = ACTIONS(1755), + [anon_sym_overlay] = ACTIONS(1755), + [anon_sym_new] = ACTIONS(1755), + [anon_sym_as] = ACTIONS(1755), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1755), + [anon_sym_DOT_DOT2] = ACTIONS(1755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1755), + [aux_sym__val_number_decimal_token1] = ACTIONS(1755), + [aux_sym__val_number_decimal_token2] = ACTIONS(1755), + [aux_sym__val_number_decimal_token3] = ACTIONS(1755), + [aux_sym__val_number_decimal_token4] = ACTIONS(1755), + [aux_sym__val_number_token1] = ACTIONS(1755), + [aux_sym__val_number_token2] = ACTIONS(1755), + [aux_sym__val_number_token3] = ACTIONS(1755), + [anon_sym_DQUOTE] = ACTIONS(1755), + [sym__str_single_quotes] = ACTIONS(1755), + [sym__str_back_ticks] = ACTIONS(1755), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1755), + [sym__entry_separator] = ACTIONS(1757), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_POUND] = ACTIONS(3), + }, + [362] = { + [sym_comment] = STATE(362), + [anon_sym_export] = ACTIONS(1993), + [anon_sym_alias] = ACTIONS(1993), + [anon_sym_let] = ACTIONS(1993), + [anon_sym_let_DASHenv] = ACTIONS(1993), + [anon_sym_mut] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1993), + [aux_sym_cmd_identifier_token1] = ACTIONS(1993), + [aux_sym_cmd_identifier_token2] = ACTIONS(1993), + [aux_sym_cmd_identifier_token3] = ACTIONS(1993), + [aux_sym_cmd_identifier_token4] = ACTIONS(1993), + [aux_sym_cmd_identifier_token5] = ACTIONS(1993), + [aux_sym_cmd_identifier_token6] = ACTIONS(1993), + [aux_sym_cmd_identifier_token7] = ACTIONS(1993), + [aux_sym_cmd_identifier_token8] = ACTIONS(1993), + [aux_sym_cmd_identifier_token9] = ACTIONS(1993), + [aux_sym_cmd_identifier_token10] = ACTIONS(1993), + [aux_sym_cmd_identifier_token11] = ACTIONS(1993), + [aux_sym_cmd_identifier_token12] = ACTIONS(1993), + [aux_sym_cmd_identifier_token13] = ACTIONS(1993), + [aux_sym_cmd_identifier_token14] = ACTIONS(1993), + [aux_sym_cmd_identifier_token15] = ACTIONS(1993), + [aux_sym_cmd_identifier_token16] = ACTIONS(1993), + [aux_sym_cmd_identifier_token17] = ACTIONS(1993), + [aux_sym_cmd_identifier_token18] = ACTIONS(1993), + [aux_sym_cmd_identifier_token19] = ACTIONS(1993), + [aux_sym_cmd_identifier_token20] = ACTIONS(1993), + [aux_sym_cmd_identifier_token21] = ACTIONS(1993), + [aux_sym_cmd_identifier_token22] = ACTIONS(1993), + [aux_sym_cmd_identifier_token23] = ACTIONS(1993), + [aux_sym_cmd_identifier_token24] = ACTIONS(1993), + [aux_sym_cmd_identifier_token25] = ACTIONS(1993), + [aux_sym_cmd_identifier_token26] = ACTIONS(1993), + [aux_sym_cmd_identifier_token27] = ACTIONS(1993), + [aux_sym_cmd_identifier_token28] = ACTIONS(1993), + [aux_sym_cmd_identifier_token29] = ACTIONS(1993), + [aux_sym_cmd_identifier_token30] = ACTIONS(1993), + [aux_sym_cmd_identifier_token31] = ACTIONS(1993), + [aux_sym_cmd_identifier_token32] = ACTIONS(1993), + [aux_sym_cmd_identifier_token33] = ACTIONS(1993), + [aux_sym_cmd_identifier_token34] = ACTIONS(1993), + [aux_sym_cmd_identifier_token35] = ACTIONS(1993), + [aux_sym_cmd_identifier_token36] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(1993), + [anon_sym_false] = ACTIONS(1993), + [anon_sym_null] = ACTIONS(1993), + [aux_sym_cmd_identifier_token38] = ACTIONS(1993), + [aux_sym_cmd_identifier_token39] = ACTIONS(1993), + [aux_sym_cmd_identifier_token40] = ACTIONS(1993), + [anon_sym_def] = ACTIONS(1993), + [anon_sym_export_DASHenv] = ACTIONS(1993), + [anon_sym_extern] = ACTIONS(1993), + [anon_sym_module] = ACTIONS(1993), + [anon_sym_use] = ACTIONS(1993), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_DOLLAR] = ACTIONS(1993), + [anon_sym_error] = ACTIONS(1993), + [anon_sym_list] = ACTIONS(1993), + [anon_sym_DASH] = ACTIONS(1993), + [anon_sym_break] = ACTIONS(1993), + [anon_sym_continue] = ACTIONS(1993), + [anon_sym_for] = ACTIONS(1993), + [anon_sym_in] = ACTIONS(1993), + [anon_sym_loop] = ACTIONS(1993), + [anon_sym_make] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1993), + [anon_sym_do] = ACTIONS(1993), + [anon_sym_if] = ACTIONS(1993), + [anon_sym_else] = ACTIONS(1993), + [anon_sym_match] = ACTIONS(1993), + [anon_sym_RBRACE] = ACTIONS(1993), + [anon_sym_try] = ACTIONS(1993), + [anon_sym_catch] = ACTIONS(1993), + [anon_sym_return] = ACTIONS(1993), + [anon_sym_source] = ACTIONS(1993), + [anon_sym_source_DASHenv] = ACTIONS(1993), + [anon_sym_register] = ACTIONS(1993), + [anon_sym_hide] = ACTIONS(1993), + [anon_sym_hide_DASHenv] = ACTIONS(1993), + [anon_sym_overlay] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_as] = ACTIONS(1993), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1993), + [anon_sym_DOT_DOT2] = ACTIONS(1995), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1997), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1997), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1993), + [aux_sym__val_number_decimal_token1] = ACTIONS(1993), + [aux_sym__val_number_decimal_token2] = ACTIONS(1993), + [aux_sym__val_number_decimal_token3] = ACTIONS(1993), + [aux_sym__val_number_decimal_token4] = ACTIONS(1993), + [aux_sym__val_number_token1] = ACTIONS(1993), + [aux_sym__val_number_token2] = ACTIONS(1993), + [aux_sym__val_number_token3] = ACTIONS(1993), + [anon_sym_DQUOTE] = ACTIONS(1993), + [sym__str_single_quotes] = ACTIONS(1993), + [sym__str_back_ticks] = ACTIONS(1993), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1993), + [sym__entry_separator] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(1993), + [anon_sym_POUND] = ACTIONS(3), + }, + [363] = { + [sym_cmd_identifier] = STATE(4711), + [sym_ctrl_if] = STATE(5031), + [sym_block] = STATE(5032), + [sym__expression] = STATE(5032), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2398), + [sym_expr_binary] = STATE(2381), + [sym__expr_binary_expression] = STATE(3788), + [sym_expr_parenthesized] = STATE(1971), + [sym_val_range] = STATE(3771), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2348), + [sym_val_bool] = STATE(2348), + [sym_val_variable] = STATE(1938), + [sym_val_number] = STATE(2348), + [sym__val_number_decimal] = STATE(3006), + [sym__val_number] = STATE(2401), + [sym_val_duration] = STATE(2348), + [sym_val_filesize] = STATE(2348), + [sym_val_binary] = STATE(2348), + [sym_val_string] = STATE(2348), + [sym__str_double_quotes] = STATE(1984), + [sym_val_interpolated] = STATE(2348), + [sym__inter_single_quotes] = STATE(2404), + [sym__inter_double_quotes] = STATE(2407), + [sym_val_list] = STATE(2348), + [sym_val_record] = STATE(2348), + [sym_val_table] = STATE(2348), + [sym_val_closure] = STATE(2348), + [sym_command] = STATE(5032), + [sym_comment] = STATE(363), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(21), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), + [aux_sym_cmd_identifier_token12] = ACTIONS(21), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(21), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(21), + [aux_sym_cmd_identifier_token19] = ACTIONS(21), + [aux_sym_cmd_identifier_token20] = ACTIONS(21), + [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token22] = ACTIONS(21), + [aux_sym_cmd_identifier_token23] = ACTIONS(19), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(21), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(21), + [aux_sym_cmd_identifier_token28] = ACTIONS(21), + [aux_sym_cmd_identifier_token29] = ACTIONS(21), + [aux_sym_cmd_identifier_token30] = ACTIONS(21), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(21), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(21), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(19), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token38] = ACTIONS(2005), + [aux_sym_cmd_identifier_token39] = ACTIONS(2007), + [aux_sym_cmd_identifier_token40] = ACTIONS(2007), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_if] = ACTIONS(67), + [aux_sym_ctrl_match_token1] = ACTIONS(2009), + [anon_sym_DOT_DOT] = ACTIONS(73), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(93), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [aux_sym__val_number_decimal_token1] = ACTIONS(2011), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2017), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(247), + }, + [364] = { + [sym_comment] = STATE(364), + [anon_sym_export] = ACTIONS(2019), + [anon_sym_alias] = ACTIONS(2019), + [anon_sym_let] = ACTIONS(2019), + [anon_sym_let_DASHenv] = ACTIONS(2019), + [anon_sym_mut] = ACTIONS(2019), + [anon_sym_const] = ACTIONS(2019), + [aux_sym_cmd_identifier_token1] = ACTIONS(2019), + [aux_sym_cmd_identifier_token2] = ACTIONS(2019), + [aux_sym_cmd_identifier_token3] = ACTIONS(2019), + [aux_sym_cmd_identifier_token4] = ACTIONS(2019), + [aux_sym_cmd_identifier_token5] = ACTIONS(2019), + [aux_sym_cmd_identifier_token6] = ACTIONS(2019), + [aux_sym_cmd_identifier_token7] = ACTIONS(2019), + [aux_sym_cmd_identifier_token8] = ACTIONS(2019), + [aux_sym_cmd_identifier_token9] = ACTIONS(2019), + [aux_sym_cmd_identifier_token10] = ACTIONS(2019), + [aux_sym_cmd_identifier_token11] = ACTIONS(2019), + [aux_sym_cmd_identifier_token12] = ACTIONS(2019), + [aux_sym_cmd_identifier_token13] = ACTIONS(2019), + [aux_sym_cmd_identifier_token14] = ACTIONS(2019), + [aux_sym_cmd_identifier_token15] = ACTIONS(2019), + [aux_sym_cmd_identifier_token16] = ACTIONS(2019), + [aux_sym_cmd_identifier_token17] = ACTIONS(2019), + [aux_sym_cmd_identifier_token18] = ACTIONS(2019), + [aux_sym_cmd_identifier_token19] = ACTIONS(2019), + [aux_sym_cmd_identifier_token20] = ACTIONS(2019), + [aux_sym_cmd_identifier_token21] = ACTIONS(2019), + [aux_sym_cmd_identifier_token22] = ACTIONS(2019), + [aux_sym_cmd_identifier_token23] = ACTIONS(2019), + [aux_sym_cmd_identifier_token24] = ACTIONS(2019), + [aux_sym_cmd_identifier_token25] = ACTIONS(2019), + [aux_sym_cmd_identifier_token26] = ACTIONS(2019), + [aux_sym_cmd_identifier_token27] = ACTIONS(2019), + [aux_sym_cmd_identifier_token28] = ACTIONS(2019), + [aux_sym_cmd_identifier_token29] = ACTIONS(2019), + [aux_sym_cmd_identifier_token30] = ACTIONS(2019), + [aux_sym_cmd_identifier_token31] = ACTIONS(2019), + [aux_sym_cmd_identifier_token32] = ACTIONS(2019), + [aux_sym_cmd_identifier_token33] = ACTIONS(2019), + [aux_sym_cmd_identifier_token34] = ACTIONS(2019), + [aux_sym_cmd_identifier_token35] = ACTIONS(2019), + [aux_sym_cmd_identifier_token36] = ACTIONS(2019), + [anon_sym_true] = ACTIONS(2019), + [anon_sym_false] = ACTIONS(2019), + [anon_sym_null] = ACTIONS(2019), + [aux_sym_cmd_identifier_token38] = ACTIONS(2019), + [aux_sym_cmd_identifier_token39] = ACTIONS(2019), + [aux_sym_cmd_identifier_token40] = ACTIONS(2019), + [anon_sym_def] = ACTIONS(2019), + [anon_sym_export_DASHenv] = ACTIONS(2019), + [anon_sym_extern] = ACTIONS(2019), + [anon_sym_module] = ACTIONS(2019), + [anon_sym_use] = ACTIONS(2019), + [anon_sym_LPAREN] = ACTIONS(2019), + [anon_sym_DOLLAR] = ACTIONS(2019), + [anon_sym_error] = ACTIONS(2019), + [anon_sym_list] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_break] = ACTIONS(2019), + [anon_sym_continue] = ACTIONS(2019), + [anon_sym_for] = ACTIONS(2019), + [anon_sym_in] = ACTIONS(2019), + [anon_sym_loop] = ACTIONS(2019), + [anon_sym_make] = ACTIONS(2019), + [anon_sym_while] = ACTIONS(2019), + [anon_sym_do] = ACTIONS(2019), + [anon_sym_if] = ACTIONS(2019), + [anon_sym_else] = ACTIONS(2019), + [anon_sym_match] = ACTIONS(2019), + [anon_sym_RBRACE] = ACTIONS(2019), + [anon_sym_try] = ACTIONS(2019), + [anon_sym_catch] = ACTIONS(2019), + [anon_sym_return] = ACTIONS(2019), + [anon_sym_source] = ACTIONS(2019), + [anon_sym_source_DASHenv] = ACTIONS(2019), + [anon_sym_register] = ACTIONS(2019), + [anon_sym_hide] = ACTIONS(2019), + [anon_sym_hide_DASHenv] = ACTIONS(2019), + [anon_sym_overlay] = ACTIONS(2019), + [anon_sym_new] = ACTIONS(2019), + [anon_sym_as] = ACTIONS(2019), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2019), + [anon_sym_DOT_DOT2] = ACTIONS(2019), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2021), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2021), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2019), + [aux_sym__val_number_decimal_token1] = ACTIONS(2019), + [aux_sym__val_number_decimal_token2] = ACTIONS(2019), + [aux_sym__val_number_decimal_token3] = ACTIONS(2019), + [aux_sym__val_number_decimal_token4] = ACTIONS(2019), + [aux_sym__val_number_token1] = ACTIONS(2019), + [aux_sym__val_number_token2] = ACTIONS(2019), + [aux_sym__val_number_token3] = ACTIONS(2019), + [anon_sym_DQUOTE] = ACTIONS(2019), + [sym__str_single_quotes] = ACTIONS(2019), + [sym__str_back_ticks] = ACTIONS(2019), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2019), + [sym__entry_separator] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_POUND] = ACTIONS(3), + }, + [365] = { + [sym_comment] = STATE(365), + [anon_sym_export] = ACTIONS(2023), + [anon_sym_alias] = ACTIONS(2023), + [anon_sym_let] = ACTIONS(2023), + [anon_sym_let_DASHenv] = ACTIONS(2023), + [anon_sym_mut] = ACTIONS(2023), + [anon_sym_const] = ACTIONS(2023), + [aux_sym_cmd_identifier_token1] = ACTIONS(2023), + [aux_sym_cmd_identifier_token2] = ACTIONS(2023), + [aux_sym_cmd_identifier_token3] = ACTIONS(2023), + [aux_sym_cmd_identifier_token4] = ACTIONS(2023), + [aux_sym_cmd_identifier_token5] = ACTIONS(2023), + [aux_sym_cmd_identifier_token6] = ACTIONS(2023), + [aux_sym_cmd_identifier_token7] = ACTIONS(2023), + [aux_sym_cmd_identifier_token8] = ACTIONS(2023), + [aux_sym_cmd_identifier_token9] = ACTIONS(2023), + [aux_sym_cmd_identifier_token10] = ACTIONS(2023), + [aux_sym_cmd_identifier_token11] = ACTIONS(2023), + [aux_sym_cmd_identifier_token12] = ACTIONS(2023), + [aux_sym_cmd_identifier_token13] = ACTIONS(2023), + [aux_sym_cmd_identifier_token14] = ACTIONS(2023), + [aux_sym_cmd_identifier_token15] = ACTIONS(2023), + [aux_sym_cmd_identifier_token16] = ACTIONS(2023), + [aux_sym_cmd_identifier_token17] = ACTIONS(2023), + [aux_sym_cmd_identifier_token18] = ACTIONS(2023), + [aux_sym_cmd_identifier_token19] = ACTIONS(2023), + [aux_sym_cmd_identifier_token20] = ACTIONS(2023), + [aux_sym_cmd_identifier_token21] = ACTIONS(2023), + [aux_sym_cmd_identifier_token22] = ACTIONS(2023), + [aux_sym_cmd_identifier_token23] = ACTIONS(2023), + [aux_sym_cmd_identifier_token24] = ACTIONS(2023), + [aux_sym_cmd_identifier_token25] = ACTIONS(2023), + [aux_sym_cmd_identifier_token26] = ACTIONS(2023), + [aux_sym_cmd_identifier_token27] = ACTIONS(2023), + [aux_sym_cmd_identifier_token28] = ACTIONS(2023), + [aux_sym_cmd_identifier_token29] = ACTIONS(2023), + [aux_sym_cmd_identifier_token30] = ACTIONS(2023), + [aux_sym_cmd_identifier_token31] = ACTIONS(2023), + [aux_sym_cmd_identifier_token32] = ACTIONS(2023), + [aux_sym_cmd_identifier_token33] = ACTIONS(2023), + [aux_sym_cmd_identifier_token34] = ACTIONS(2023), + [aux_sym_cmd_identifier_token35] = ACTIONS(2023), + [aux_sym_cmd_identifier_token36] = ACTIONS(2023), + [anon_sym_true] = ACTIONS(2023), + [anon_sym_false] = ACTIONS(2023), + [anon_sym_null] = ACTIONS(2023), + [aux_sym_cmd_identifier_token38] = ACTIONS(2023), + [aux_sym_cmd_identifier_token39] = ACTIONS(2023), + [aux_sym_cmd_identifier_token40] = ACTIONS(2023), + [anon_sym_def] = ACTIONS(2023), + [anon_sym_export_DASHenv] = ACTIONS(2023), + [anon_sym_extern] = ACTIONS(2023), + [anon_sym_module] = ACTIONS(2023), + [anon_sym_use] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_DOLLAR] = ACTIONS(2023), + [anon_sym_error] = ACTIONS(2023), + [anon_sym_list] = ACTIONS(2023), + [anon_sym_DASH] = ACTIONS(2023), + [anon_sym_break] = ACTIONS(2023), + [anon_sym_continue] = ACTIONS(2023), + [anon_sym_for] = ACTIONS(2023), + [anon_sym_in] = ACTIONS(2023), + [anon_sym_loop] = ACTIONS(2023), + [anon_sym_make] = ACTIONS(2023), + [anon_sym_while] = ACTIONS(2023), + [anon_sym_do] = ACTIONS(2023), + [anon_sym_if] = ACTIONS(2023), + [anon_sym_else] = ACTIONS(2023), + [anon_sym_match] = ACTIONS(2023), + [anon_sym_RBRACE] = ACTIONS(2023), + [anon_sym_try] = ACTIONS(2023), + [anon_sym_catch] = ACTIONS(2023), + [anon_sym_return] = ACTIONS(2023), + [anon_sym_source] = ACTIONS(2023), + [anon_sym_source_DASHenv] = ACTIONS(2023), + [anon_sym_register] = ACTIONS(2023), + [anon_sym_hide] = ACTIONS(2023), + [anon_sym_hide_DASHenv] = ACTIONS(2023), + [anon_sym_overlay] = ACTIONS(2023), + [anon_sym_new] = ACTIONS(2023), + [anon_sym_as] = ACTIONS(2023), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2023), + [anon_sym_DOT_DOT2] = ACTIONS(1995), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1997), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1997), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2023), + [aux_sym__val_number_decimal_token1] = ACTIONS(2023), + [aux_sym__val_number_decimal_token2] = ACTIONS(2023), + [aux_sym__val_number_decimal_token3] = ACTIONS(2023), + [aux_sym__val_number_decimal_token4] = ACTIONS(2023), + [aux_sym__val_number_token1] = ACTIONS(2023), + [aux_sym__val_number_token2] = ACTIONS(2023), + [aux_sym__val_number_token3] = ACTIONS(2023), + [anon_sym_DQUOTE] = ACTIONS(2023), + [sym__str_single_quotes] = ACTIONS(2023), + [sym__str_back_ticks] = ACTIONS(2023), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2023), + [sym__entry_separator] = ACTIONS(2025), + [anon_sym_PLUS] = ACTIONS(2023), + [anon_sym_POUND] = ACTIONS(3), + }, + [366] = { + [sym_cell_path] = STATE(649), + [sym_path] = STATE(550), + [sym_comment] = STATE(366), + [aux_sym_cell_path_repeat1] = STATE(434), + [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), + [aux_sym_cmd_identifier_token1] = ACTIONS(1913), + [aux_sym_cmd_identifier_token2] = ACTIONS(1913), + [aux_sym_cmd_identifier_token3] = ACTIONS(1913), + [aux_sym_cmd_identifier_token4] = ACTIONS(1913), + [aux_sym_cmd_identifier_token5] = ACTIONS(1913), + [aux_sym_cmd_identifier_token6] = ACTIONS(1913), + [aux_sym_cmd_identifier_token7] = ACTIONS(1913), + [aux_sym_cmd_identifier_token8] = ACTIONS(1913), + [aux_sym_cmd_identifier_token9] = ACTIONS(1913), + [aux_sym_cmd_identifier_token10] = ACTIONS(1913), + [aux_sym_cmd_identifier_token11] = ACTIONS(1913), + [aux_sym_cmd_identifier_token12] = ACTIONS(1913), + [aux_sym_cmd_identifier_token13] = ACTIONS(1913), + [aux_sym_cmd_identifier_token14] = ACTIONS(1913), + [aux_sym_cmd_identifier_token15] = ACTIONS(1913), + [aux_sym_cmd_identifier_token16] = ACTIONS(1913), + [aux_sym_cmd_identifier_token17] = ACTIONS(1913), + [aux_sym_cmd_identifier_token18] = ACTIONS(1913), + [aux_sym_cmd_identifier_token19] = ACTIONS(1913), + [aux_sym_cmd_identifier_token20] = ACTIONS(1913), + [aux_sym_cmd_identifier_token21] = ACTIONS(1913), + [aux_sym_cmd_identifier_token22] = ACTIONS(1913), + [aux_sym_cmd_identifier_token23] = ACTIONS(1913), + [aux_sym_cmd_identifier_token24] = ACTIONS(1913), + [aux_sym_cmd_identifier_token25] = ACTIONS(1913), + [aux_sym_cmd_identifier_token26] = ACTIONS(1913), + [aux_sym_cmd_identifier_token27] = ACTIONS(1913), + [aux_sym_cmd_identifier_token28] = ACTIONS(1913), + [aux_sym_cmd_identifier_token29] = ACTIONS(1913), + [aux_sym_cmd_identifier_token30] = ACTIONS(1913), + [aux_sym_cmd_identifier_token31] = ACTIONS(1913), + [aux_sym_cmd_identifier_token32] = ACTIONS(1913), + [aux_sym_cmd_identifier_token33] = ACTIONS(1913), + [aux_sym_cmd_identifier_token34] = ACTIONS(1913), + [aux_sym_cmd_identifier_token35] = ACTIONS(1913), + [aux_sym_cmd_identifier_token36] = ACTIONS(1913), + [anon_sym_true] = ACTIONS(1915), + [anon_sym_false] = ACTIONS(1915), + [anon_sym_null] = ACTIONS(1915), + [aux_sym_cmd_identifier_token38] = ACTIONS(1913), + [aux_sym_cmd_identifier_token39] = ACTIONS(1915), + [aux_sym_cmd_identifier_token40] = ACTIONS(1915), + [anon_sym_def] = 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_LPAREN] = ACTIONS(1915), + [anon_sym_DOLLAR] = ACTIONS(1915), + [anon_sym_error] = ACTIONS(1913), + [anon_sym_list] = ACTIONS(1913), + [anon_sym_DASH] = ACTIONS(1913), + [anon_sym_break] = ACTIONS(1913), + [anon_sym_continue] = ACTIONS(1913), + [anon_sym_for] = ACTIONS(1913), + [anon_sym_in] = ACTIONS(1913), + [anon_sym_loop] = ACTIONS(1913), + [anon_sym_make] = ACTIONS(1913), + [anon_sym_while] = ACTIONS(1913), + [anon_sym_do] = ACTIONS(1913), + [anon_sym_if] = ACTIONS(1913), + [anon_sym_else] = ACTIONS(1913), + [anon_sym_match] = ACTIONS(1913), + [anon_sym_RBRACE] = ACTIONS(1915), + [anon_sym_try] = ACTIONS(1913), + [anon_sym_catch] = 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_new] = ACTIONS(1913), + [anon_sym_as] = ACTIONS(1913), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1915), + [anon_sym_DOT] = ACTIONS(1973), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1915), + [aux_sym__val_number_decimal_token1] = ACTIONS(1913), + [aux_sym__val_number_decimal_token2] = ACTIONS(1915), + [aux_sym__val_number_decimal_token3] = ACTIONS(1915), + [aux_sym__val_number_decimal_token4] = ACTIONS(1915), + [aux_sym__val_number_token1] = ACTIONS(1915), + [aux_sym__val_number_token2] = ACTIONS(1915), + [aux_sym__val_number_token3] = ACTIONS(1915), + [anon_sym_DQUOTE] = ACTIONS(1915), + [sym__str_single_quotes] = ACTIONS(1915), + [sym__str_back_ticks] = ACTIONS(1915), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1915), + [anon_sym_PLUS] = ACTIONS(1913), + [anon_sym_POUND] = ACTIONS(247), + }, + [367] = { + [sym_cell_path] = STATE(657), + [sym_path] = STATE(550), + [sym_comment] = STATE(367), + [aux_sym_cell_path_repeat1] = STATE(434), + [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), + [aux_sym_cmd_identifier_token1] = ACTIONS(1917), + [aux_sym_cmd_identifier_token2] = ACTIONS(1917), + [aux_sym_cmd_identifier_token3] = ACTIONS(1917), + [aux_sym_cmd_identifier_token4] = ACTIONS(1917), + [aux_sym_cmd_identifier_token5] = ACTIONS(1917), + [aux_sym_cmd_identifier_token6] = ACTIONS(1917), + [aux_sym_cmd_identifier_token7] = ACTIONS(1917), + [aux_sym_cmd_identifier_token8] = ACTIONS(1917), + [aux_sym_cmd_identifier_token9] = ACTIONS(1917), + [aux_sym_cmd_identifier_token10] = ACTIONS(1917), + [aux_sym_cmd_identifier_token11] = ACTIONS(1917), + [aux_sym_cmd_identifier_token12] = ACTIONS(1917), + [aux_sym_cmd_identifier_token13] = ACTIONS(1917), + [aux_sym_cmd_identifier_token14] = ACTIONS(1917), + [aux_sym_cmd_identifier_token15] = ACTIONS(1917), + [aux_sym_cmd_identifier_token16] = ACTIONS(1917), + [aux_sym_cmd_identifier_token17] = ACTIONS(1917), + [aux_sym_cmd_identifier_token18] = ACTIONS(1917), + [aux_sym_cmd_identifier_token19] = ACTIONS(1917), + [aux_sym_cmd_identifier_token20] = ACTIONS(1917), + [aux_sym_cmd_identifier_token21] = ACTIONS(1917), + [aux_sym_cmd_identifier_token22] = ACTIONS(1917), + [aux_sym_cmd_identifier_token23] = ACTIONS(1917), + [aux_sym_cmd_identifier_token24] = ACTIONS(1917), + [aux_sym_cmd_identifier_token25] = ACTIONS(1917), + [aux_sym_cmd_identifier_token26] = ACTIONS(1917), + [aux_sym_cmd_identifier_token27] = ACTIONS(1917), + [aux_sym_cmd_identifier_token28] = ACTIONS(1917), + [aux_sym_cmd_identifier_token29] = ACTIONS(1917), + [aux_sym_cmd_identifier_token30] = ACTIONS(1917), + [aux_sym_cmd_identifier_token31] = ACTIONS(1917), + [aux_sym_cmd_identifier_token32] = ACTIONS(1917), + [aux_sym_cmd_identifier_token33] = ACTIONS(1917), + [aux_sym_cmd_identifier_token34] = ACTIONS(1917), + [aux_sym_cmd_identifier_token35] = ACTIONS(1917), + [aux_sym_cmd_identifier_token36] = ACTIONS(1917), + [anon_sym_true] = ACTIONS(1919), + [anon_sym_false] = ACTIONS(1919), + [anon_sym_null] = ACTIONS(1919), + [aux_sym_cmd_identifier_token38] = ACTIONS(1917), + [aux_sym_cmd_identifier_token39] = ACTIONS(1919), + [aux_sym_cmd_identifier_token40] = ACTIONS(1919), + [anon_sym_def] = 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_LPAREN] = ACTIONS(1919), + [anon_sym_DOLLAR] = ACTIONS(1919), + [anon_sym_error] = ACTIONS(1917), + [anon_sym_list] = ACTIONS(1917), + [anon_sym_DASH] = ACTIONS(1917), + [anon_sym_break] = ACTIONS(1917), + [anon_sym_continue] = ACTIONS(1917), + [anon_sym_for] = ACTIONS(1917), + [anon_sym_in] = ACTIONS(1917), + [anon_sym_loop] = ACTIONS(1917), + [anon_sym_make] = ACTIONS(1917), + [anon_sym_while] = ACTIONS(1917), + [anon_sym_do] = ACTIONS(1917), + [anon_sym_if] = ACTIONS(1917), + [anon_sym_else] = ACTIONS(1917), + [anon_sym_match] = ACTIONS(1917), + [anon_sym_RBRACE] = ACTIONS(1919), + [anon_sym_try] = ACTIONS(1917), + [anon_sym_catch] = 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_new] = ACTIONS(1917), + [anon_sym_as] = ACTIONS(1917), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1919), + [anon_sym_DOT] = ACTIONS(1973), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1919), + [aux_sym__val_number_decimal_token1] = ACTIONS(1917), + [aux_sym__val_number_decimal_token2] = ACTIONS(1919), + [aux_sym__val_number_decimal_token3] = ACTIONS(1919), + [aux_sym__val_number_decimal_token4] = ACTIONS(1919), + [aux_sym__val_number_token1] = ACTIONS(1919), + [aux_sym__val_number_token2] = ACTIONS(1919), + [aux_sym__val_number_token3] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(1919), + [sym__str_single_quotes] = ACTIONS(1919), + [sym__str_back_ticks] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1919), + [anon_sym_PLUS] = ACTIONS(1917), + [anon_sym_POUND] = ACTIONS(247), + }, + [368] = { + [sym_cell_path] = STATE(661), + [sym_path] = STATE(550), + [sym_comment] = STATE(368), + [aux_sym_cell_path_repeat1] = STATE(434), + [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), + [aux_sym_cmd_identifier_token1] = ACTIONS(1921), + [aux_sym_cmd_identifier_token2] = ACTIONS(1921), + [aux_sym_cmd_identifier_token3] = ACTIONS(1921), + [aux_sym_cmd_identifier_token4] = ACTIONS(1921), + [aux_sym_cmd_identifier_token5] = ACTIONS(1921), + [aux_sym_cmd_identifier_token6] = ACTIONS(1921), + [aux_sym_cmd_identifier_token7] = ACTIONS(1921), + [aux_sym_cmd_identifier_token8] = ACTIONS(1921), + [aux_sym_cmd_identifier_token9] = ACTIONS(1921), + [aux_sym_cmd_identifier_token10] = ACTIONS(1921), + [aux_sym_cmd_identifier_token11] = ACTIONS(1921), + [aux_sym_cmd_identifier_token12] = ACTIONS(1921), + [aux_sym_cmd_identifier_token13] = ACTIONS(1921), + [aux_sym_cmd_identifier_token14] = ACTIONS(1921), + [aux_sym_cmd_identifier_token15] = ACTIONS(1921), + [aux_sym_cmd_identifier_token16] = ACTIONS(1921), + [aux_sym_cmd_identifier_token17] = ACTIONS(1921), + [aux_sym_cmd_identifier_token18] = ACTIONS(1921), + [aux_sym_cmd_identifier_token19] = ACTIONS(1921), + [aux_sym_cmd_identifier_token20] = ACTIONS(1921), + [aux_sym_cmd_identifier_token21] = ACTIONS(1921), + [aux_sym_cmd_identifier_token22] = ACTIONS(1921), + [aux_sym_cmd_identifier_token23] = ACTIONS(1921), + [aux_sym_cmd_identifier_token24] = ACTIONS(1921), + [aux_sym_cmd_identifier_token25] = ACTIONS(1921), + [aux_sym_cmd_identifier_token26] = ACTIONS(1921), + [aux_sym_cmd_identifier_token27] = ACTIONS(1921), + [aux_sym_cmd_identifier_token28] = ACTIONS(1921), + [aux_sym_cmd_identifier_token29] = ACTIONS(1921), + [aux_sym_cmd_identifier_token30] = ACTIONS(1921), + [aux_sym_cmd_identifier_token31] = ACTIONS(1921), + [aux_sym_cmd_identifier_token32] = ACTIONS(1921), + [aux_sym_cmd_identifier_token33] = ACTIONS(1921), + [aux_sym_cmd_identifier_token34] = ACTIONS(1921), + [aux_sym_cmd_identifier_token35] = ACTIONS(1921), + [aux_sym_cmd_identifier_token36] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1923), + [aux_sym_cmd_identifier_token38] = ACTIONS(1921), + [aux_sym_cmd_identifier_token39] = ACTIONS(1923), + [aux_sym_cmd_identifier_token40] = ACTIONS(1923), + [anon_sym_def] = 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_LPAREN] = ACTIONS(1923), + [anon_sym_DOLLAR] = ACTIONS(1923), + [anon_sym_error] = ACTIONS(1921), + [anon_sym_list] = ACTIONS(1921), + [anon_sym_DASH] = ACTIONS(1921), + [anon_sym_break] = ACTIONS(1921), + [anon_sym_continue] = ACTIONS(1921), + [anon_sym_for] = ACTIONS(1921), + [anon_sym_in] = ACTIONS(1921), + [anon_sym_loop] = ACTIONS(1921), + [anon_sym_make] = ACTIONS(1921), + [anon_sym_while] = ACTIONS(1921), + [anon_sym_do] = ACTIONS(1921), + [anon_sym_if] = ACTIONS(1921), + [anon_sym_else] = ACTIONS(1921), + [anon_sym_match] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(1923), + [anon_sym_try] = ACTIONS(1921), + [anon_sym_catch] = 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_new] = ACTIONS(1921), + [anon_sym_as] = ACTIONS(1921), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1923), + [anon_sym_DOT] = ACTIONS(1973), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1923), + [aux_sym__val_number_decimal_token1] = ACTIONS(1921), + [aux_sym__val_number_decimal_token2] = ACTIONS(1923), + [aux_sym__val_number_decimal_token3] = ACTIONS(1923), + [aux_sym__val_number_decimal_token4] = ACTIONS(1923), + [aux_sym__val_number_token1] = ACTIONS(1923), + [aux_sym__val_number_token2] = ACTIONS(1923), + [aux_sym__val_number_token3] = ACTIONS(1923), + [anon_sym_DQUOTE] = ACTIONS(1923), + [sym__str_single_quotes] = ACTIONS(1923), + [sym__str_back_ticks] = ACTIONS(1923), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(247), + }, + [369] = { + [sym_comment] = STATE(369), + [anon_sym_export] = ACTIONS(1631), + [anon_sym_alias] = ACTIONS(1631), + [anon_sym_let] = ACTIONS(1631), + [anon_sym_let_DASHenv] = ACTIONS(1631), + [anon_sym_mut] = ACTIONS(1631), + [anon_sym_const] = ACTIONS(1631), + [aux_sym_cmd_identifier_token1] = ACTIONS(1631), + [aux_sym_cmd_identifier_token2] = ACTIONS(1631), + [aux_sym_cmd_identifier_token3] = ACTIONS(1631), + [aux_sym_cmd_identifier_token4] = ACTIONS(1631), + [aux_sym_cmd_identifier_token5] = ACTIONS(1631), + [aux_sym_cmd_identifier_token6] = ACTIONS(1631), + [aux_sym_cmd_identifier_token7] = ACTIONS(1631), + [aux_sym_cmd_identifier_token8] = ACTIONS(1631), + [aux_sym_cmd_identifier_token9] = ACTIONS(1631), + [aux_sym_cmd_identifier_token10] = ACTIONS(1631), + [aux_sym_cmd_identifier_token11] = ACTIONS(1631), + [aux_sym_cmd_identifier_token12] = ACTIONS(1631), + [aux_sym_cmd_identifier_token13] = ACTIONS(1631), + [aux_sym_cmd_identifier_token14] = ACTIONS(1631), + [aux_sym_cmd_identifier_token15] = ACTIONS(1631), + [aux_sym_cmd_identifier_token16] = ACTIONS(1631), + [aux_sym_cmd_identifier_token17] = ACTIONS(1631), + [aux_sym_cmd_identifier_token18] = ACTIONS(1631), + [aux_sym_cmd_identifier_token19] = ACTIONS(1631), + [aux_sym_cmd_identifier_token20] = ACTIONS(1631), + [aux_sym_cmd_identifier_token21] = ACTIONS(1631), + [aux_sym_cmd_identifier_token22] = ACTIONS(1631), + [aux_sym_cmd_identifier_token23] = ACTIONS(1631), + [aux_sym_cmd_identifier_token24] = ACTIONS(1631), + [aux_sym_cmd_identifier_token25] = ACTIONS(1631), + [aux_sym_cmd_identifier_token26] = ACTIONS(1631), + [aux_sym_cmd_identifier_token27] = ACTIONS(1631), + [aux_sym_cmd_identifier_token28] = ACTIONS(1631), + [aux_sym_cmd_identifier_token29] = ACTIONS(1631), + [aux_sym_cmd_identifier_token30] = ACTIONS(1631), + [aux_sym_cmd_identifier_token31] = ACTIONS(1631), + [aux_sym_cmd_identifier_token32] = ACTIONS(1631), + [aux_sym_cmd_identifier_token33] = ACTIONS(1631), + [aux_sym_cmd_identifier_token34] = ACTIONS(1631), + [aux_sym_cmd_identifier_token35] = ACTIONS(1631), + [aux_sym_cmd_identifier_token36] = ACTIONS(1631), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [aux_sym_cmd_identifier_token38] = ACTIONS(1631), + [aux_sym_cmd_identifier_token39] = ACTIONS(1633), + [aux_sym_cmd_identifier_token40] = ACTIONS(1633), + [anon_sym_def] = ACTIONS(1631), + [anon_sym_export_DASHenv] = ACTIONS(1631), + [anon_sym_extern] = ACTIONS(1631), + [anon_sym_module] = ACTIONS(1631), + [anon_sym_use] = ACTIONS(1631), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_DOLLAR] = ACTIONS(1633), + [anon_sym_error] = ACTIONS(1631), + [anon_sym_list] = ACTIONS(1631), + [anon_sym_DASH] = ACTIONS(1631), + [anon_sym_break] = ACTIONS(1631), + [anon_sym_continue] = ACTIONS(1631), + [anon_sym_for] = ACTIONS(1631), + [anon_sym_in] = ACTIONS(1631), + [anon_sym_loop] = ACTIONS(1631), + [anon_sym_make] = ACTIONS(1631), + [anon_sym_while] = ACTIONS(1631), + [anon_sym_do] = ACTIONS(1631), + [anon_sym_if] = ACTIONS(1631), + [anon_sym_else] = ACTIONS(1631), + [anon_sym_match] = ACTIONS(1631), + [anon_sym_RBRACE] = ACTIONS(1633), + [anon_sym_try] = ACTIONS(1631), + [anon_sym_catch] = ACTIONS(1631), + [anon_sym_return] = ACTIONS(1631), + [anon_sym_source] = ACTIONS(1631), + [anon_sym_source_DASHenv] = ACTIONS(1631), + [anon_sym_register] = ACTIONS(1631), + [anon_sym_hide] = ACTIONS(1631), + [anon_sym_hide_DASHenv] = ACTIONS(1631), + [anon_sym_overlay] = ACTIONS(1631), + [anon_sym_new] = ACTIONS(1631), + [anon_sym_as] = ACTIONS(1631), + [anon_sym_LPAREN2] = ACTIONS(1633), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1633), + [aux_sym__immediate_decimal_token1] = ACTIONS(2027), + [aux_sym__immediate_decimal_token2] = ACTIONS(2029), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1633), + [aux_sym__val_number_decimal_token1] = ACTIONS(1631), + [aux_sym__val_number_decimal_token2] = ACTIONS(1633), + [aux_sym__val_number_decimal_token3] = ACTIONS(1633), + [aux_sym__val_number_decimal_token4] = ACTIONS(1633), + [aux_sym__val_number_token1] = ACTIONS(1633), + [aux_sym__val_number_token2] = ACTIONS(1633), + [aux_sym__val_number_token3] = ACTIONS(1633), + [anon_sym_DQUOTE] = ACTIONS(1633), + [sym__str_single_quotes] = ACTIONS(1633), + [sym__str_back_ticks] = ACTIONS(1633), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1631), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1631), + [anon_sym_POUND] = ACTIONS(247), + }, + [370] = { + [sym_comment] = STATE(370), + [anon_sym_export] = ACTIONS(1643), + [anon_sym_alias] = ACTIONS(1643), + [anon_sym_let] = ACTIONS(1643), + [anon_sym_let_DASHenv] = ACTIONS(1643), + [anon_sym_mut] = ACTIONS(1643), + [anon_sym_const] = ACTIONS(1643), + [aux_sym_cmd_identifier_token1] = ACTIONS(1643), + [aux_sym_cmd_identifier_token2] = ACTIONS(1643), + [aux_sym_cmd_identifier_token3] = ACTIONS(1643), + [aux_sym_cmd_identifier_token4] = ACTIONS(1643), + [aux_sym_cmd_identifier_token5] = ACTIONS(1643), + [aux_sym_cmd_identifier_token6] = ACTIONS(1643), + [aux_sym_cmd_identifier_token7] = ACTIONS(1643), + [aux_sym_cmd_identifier_token8] = ACTIONS(1643), + [aux_sym_cmd_identifier_token9] = ACTIONS(1643), + [aux_sym_cmd_identifier_token10] = ACTIONS(1643), + [aux_sym_cmd_identifier_token11] = ACTIONS(1643), + [aux_sym_cmd_identifier_token12] = ACTIONS(1643), + [aux_sym_cmd_identifier_token13] = ACTIONS(1643), + [aux_sym_cmd_identifier_token14] = ACTIONS(1643), + [aux_sym_cmd_identifier_token15] = ACTIONS(1643), + [aux_sym_cmd_identifier_token16] = ACTIONS(1643), + [aux_sym_cmd_identifier_token17] = ACTIONS(1643), + [aux_sym_cmd_identifier_token18] = ACTIONS(1643), + [aux_sym_cmd_identifier_token19] = ACTIONS(1643), + [aux_sym_cmd_identifier_token20] = ACTIONS(1643), + [aux_sym_cmd_identifier_token21] = ACTIONS(1643), + [aux_sym_cmd_identifier_token22] = ACTIONS(1643), + [aux_sym_cmd_identifier_token23] = ACTIONS(1643), + [aux_sym_cmd_identifier_token24] = ACTIONS(1643), + [aux_sym_cmd_identifier_token25] = ACTIONS(1643), + [aux_sym_cmd_identifier_token26] = ACTIONS(1643), + [aux_sym_cmd_identifier_token27] = ACTIONS(1643), + [aux_sym_cmd_identifier_token28] = ACTIONS(1643), + [aux_sym_cmd_identifier_token29] = ACTIONS(1643), + [aux_sym_cmd_identifier_token30] = ACTIONS(1643), + [aux_sym_cmd_identifier_token31] = ACTIONS(1643), + [aux_sym_cmd_identifier_token32] = ACTIONS(1643), + [aux_sym_cmd_identifier_token33] = ACTIONS(1643), + [aux_sym_cmd_identifier_token34] = ACTIONS(1643), + [aux_sym_cmd_identifier_token35] = ACTIONS(1643), + [aux_sym_cmd_identifier_token36] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [aux_sym_cmd_identifier_token38] = ACTIONS(1643), + [aux_sym_cmd_identifier_token39] = ACTIONS(1645), + [aux_sym_cmd_identifier_token40] = ACTIONS(1645), + [anon_sym_def] = ACTIONS(1643), + [anon_sym_export_DASHenv] = ACTIONS(1643), + [anon_sym_extern] = ACTIONS(1643), + [anon_sym_module] = ACTIONS(1643), + [anon_sym_use] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1645), + [anon_sym_DOLLAR] = ACTIONS(1645), + [anon_sym_error] = ACTIONS(1643), + [anon_sym_list] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_break] = ACTIONS(1643), + [anon_sym_continue] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_loop] = ACTIONS(1643), + [anon_sym_make] = ACTIONS(1643), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_do] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_else] = ACTIONS(1643), + [anon_sym_match] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1645), + [anon_sym_try] = ACTIONS(1643), + [anon_sym_catch] = ACTIONS(1643), + [anon_sym_return] = ACTIONS(1643), + [anon_sym_source] = ACTIONS(1643), + [anon_sym_source_DASHenv] = ACTIONS(1643), + [anon_sym_register] = ACTIONS(1643), + [anon_sym_hide] = ACTIONS(1643), + [anon_sym_hide_DASHenv] = ACTIONS(1643), + [anon_sym_overlay] = ACTIONS(1643), + [anon_sym_new] = ACTIONS(1643), + [anon_sym_as] = ACTIONS(1643), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1645), + [anon_sym_DOT_DOT2] = ACTIONS(1643), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), + [aux_sym__immediate_decimal_token2] = ACTIONS(1815), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1645), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1645), + [aux_sym__val_number_decimal_token3] = ACTIONS(1645), + [aux_sym__val_number_decimal_token4] = ACTIONS(1645), + [aux_sym__val_number_token1] = ACTIONS(1645), + [aux_sym__val_number_token2] = ACTIONS(1645), + [aux_sym__val_number_token3] = ACTIONS(1645), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym__str_single_quotes] = ACTIONS(1645), + [sym__str_back_ticks] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1645), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_POUND] = ACTIONS(247), + }, + [371] = { + [sym_cell_path] = STATE(607), + [sym_path] = STATE(550), + [sym_comment] = STATE(371), + [aux_sym_cell_path_repeat1] = STATE(434), + [anon_sym_export] = ACTIONS(1847), + [anon_sym_alias] = ACTIONS(1847), + [anon_sym_let] = ACTIONS(1847), + [anon_sym_let_DASHenv] = ACTIONS(1847), + [anon_sym_mut] = ACTIONS(1847), + [anon_sym_const] = ACTIONS(1847), + [aux_sym_cmd_identifier_token1] = ACTIONS(1847), + [aux_sym_cmd_identifier_token2] = ACTIONS(1847), + [aux_sym_cmd_identifier_token3] = ACTIONS(1847), + [aux_sym_cmd_identifier_token4] = ACTIONS(1847), + [aux_sym_cmd_identifier_token5] = ACTIONS(1847), + [aux_sym_cmd_identifier_token6] = ACTIONS(1847), + [aux_sym_cmd_identifier_token7] = ACTIONS(1847), + [aux_sym_cmd_identifier_token8] = ACTIONS(1847), + [aux_sym_cmd_identifier_token9] = ACTIONS(1847), + [aux_sym_cmd_identifier_token10] = ACTIONS(1847), + [aux_sym_cmd_identifier_token11] = ACTIONS(1847), + [aux_sym_cmd_identifier_token12] = ACTIONS(1847), + [aux_sym_cmd_identifier_token13] = ACTIONS(1847), + [aux_sym_cmd_identifier_token14] = ACTIONS(1847), + [aux_sym_cmd_identifier_token15] = ACTIONS(1847), + [aux_sym_cmd_identifier_token16] = ACTIONS(1847), + [aux_sym_cmd_identifier_token17] = ACTIONS(1847), + [aux_sym_cmd_identifier_token18] = ACTIONS(1847), + [aux_sym_cmd_identifier_token19] = ACTIONS(1847), + [aux_sym_cmd_identifier_token20] = ACTIONS(1847), + [aux_sym_cmd_identifier_token21] = ACTIONS(1847), + [aux_sym_cmd_identifier_token22] = ACTIONS(1847), + [aux_sym_cmd_identifier_token23] = ACTIONS(1847), + [aux_sym_cmd_identifier_token24] = ACTIONS(1847), + [aux_sym_cmd_identifier_token25] = ACTIONS(1847), + [aux_sym_cmd_identifier_token26] = ACTIONS(1847), + [aux_sym_cmd_identifier_token27] = ACTIONS(1847), + [aux_sym_cmd_identifier_token28] = ACTIONS(1847), + [aux_sym_cmd_identifier_token29] = ACTIONS(1847), + [aux_sym_cmd_identifier_token30] = ACTIONS(1847), + [aux_sym_cmd_identifier_token31] = ACTIONS(1847), + [aux_sym_cmd_identifier_token32] = ACTIONS(1847), + [aux_sym_cmd_identifier_token33] = ACTIONS(1847), + [aux_sym_cmd_identifier_token34] = ACTIONS(1847), + [aux_sym_cmd_identifier_token35] = ACTIONS(1847), + [aux_sym_cmd_identifier_token36] = ACTIONS(1847), + [anon_sym_true] = ACTIONS(1849), + [anon_sym_false] = ACTIONS(1849), + [anon_sym_null] = ACTIONS(1849), + [aux_sym_cmd_identifier_token38] = ACTIONS(1847), + [aux_sym_cmd_identifier_token39] = ACTIONS(1849), + [aux_sym_cmd_identifier_token40] = ACTIONS(1849), + [anon_sym_def] = ACTIONS(1847), + [anon_sym_export_DASHenv] = ACTIONS(1847), + [anon_sym_extern] = ACTIONS(1847), + [anon_sym_module] = ACTIONS(1847), + [anon_sym_use] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_DOLLAR] = ACTIONS(1849), + [anon_sym_error] = ACTIONS(1847), + [anon_sym_list] = ACTIONS(1847), + [anon_sym_DASH] = ACTIONS(1847), + [anon_sym_break] = ACTIONS(1847), + [anon_sym_continue] = ACTIONS(1847), + [anon_sym_for] = ACTIONS(1847), + [anon_sym_in] = ACTIONS(1847), + [anon_sym_loop] = ACTIONS(1847), + [anon_sym_make] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1847), + [anon_sym_do] = ACTIONS(1847), + [anon_sym_if] = ACTIONS(1847), + [anon_sym_else] = ACTIONS(1847), + [anon_sym_match] = ACTIONS(1847), + [anon_sym_RBRACE] = ACTIONS(1849), + [anon_sym_try] = ACTIONS(1847), + [anon_sym_catch] = ACTIONS(1847), + [anon_sym_return] = ACTIONS(1847), + [anon_sym_source] = ACTIONS(1847), + [anon_sym_source_DASHenv] = ACTIONS(1847), + [anon_sym_register] = ACTIONS(1847), + [anon_sym_hide] = ACTIONS(1847), + [anon_sym_hide_DASHenv] = ACTIONS(1847), + [anon_sym_overlay] = ACTIONS(1847), + [anon_sym_new] = ACTIONS(1847), + [anon_sym_as] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1849), + [anon_sym_DOT] = ACTIONS(1973), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1849), + [aux_sym__val_number_decimal_token1] = ACTIONS(1847), + [aux_sym__val_number_decimal_token2] = ACTIONS(1849), + [aux_sym__val_number_decimal_token3] = ACTIONS(1849), + [aux_sym__val_number_decimal_token4] = ACTIONS(1849), + [aux_sym__val_number_token1] = ACTIONS(1849), + [aux_sym__val_number_token2] = ACTIONS(1849), + [aux_sym__val_number_token3] = ACTIONS(1849), + [anon_sym_DQUOTE] = ACTIONS(1849), + [sym__str_single_quotes] = ACTIONS(1849), + [sym__str_back_ticks] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1849), + [anon_sym_PLUS] = ACTIONS(1847), + [anon_sym_POUND] = ACTIONS(247), + }, + [372] = { + [sym_comment] = STATE(372), + [anon_sym_export] = ACTIONS(1345), + [anon_sym_alias] = ACTIONS(1345), + [anon_sym_let] = ACTIONS(1345), + [anon_sym_let_DASHenv] = ACTIONS(1345), + [anon_sym_mut] = ACTIONS(1345), + [anon_sym_const] = ACTIONS(1345), + [aux_sym_cmd_identifier_token1] = ACTIONS(1345), + [aux_sym_cmd_identifier_token2] = ACTIONS(1345), + [aux_sym_cmd_identifier_token3] = ACTIONS(1345), + [aux_sym_cmd_identifier_token4] = ACTIONS(1345), + [aux_sym_cmd_identifier_token5] = ACTIONS(1345), + [aux_sym_cmd_identifier_token6] = ACTIONS(1345), + [aux_sym_cmd_identifier_token7] = ACTIONS(1345), + [aux_sym_cmd_identifier_token8] = ACTIONS(1345), + [aux_sym_cmd_identifier_token9] = ACTIONS(1345), + [aux_sym_cmd_identifier_token10] = ACTIONS(1345), + [aux_sym_cmd_identifier_token11] = ACTIONS(1345), + [aux_sym_cmd_identifier_token12] = ACTIONS(1345), + [aux_sym_cmd_identifier_token13] = ACTIONS(1345), + [aux_sym_cmd_identifier_token14] = ACTIONS(1345), + [aux_sym_cmd_identifier_token15] = ACTIONS(1345), + [aux_sym_cmd_identifier_token16] = ACTIONS(1345), + [aux_sym_cmd_identifier_token17] = ACTIONS(1345), + [aux_sym_cmd_identifier_token18] = ACTIONS(1345), + [aux_sym_cmd_identifier_token19] = ACTIONS(1345), + [aux_sym_cmd_identifier_token20] = ACTIONS(1345), + [aux_sym_cmd_identifier_token21] = ACTIONS(1345), + [aux_sym_cmd_identifier_token22] = ACTIONS(1345), + [aux_sym_cmd_identifier_token23] = ACTIONS(1345), + [aux_sym_cmd_identifier_token24] = ACTIONS(1349), + [aux_sym_cmd_identifier_token25] = ACTIONS(1345), + [aux_sym_cmd_identifier_token26] = ACTIONS(1349), + [aux_sym_cmd_identifier_token27] = ACTIONS(1345), + [aux_sym_cmd_identifier_token28] = ACTIONS(1345), + [aux_sym_cmd_identifier_token29] = ACTIONS(1345), + [aux_sym_cmd_identifier_token30] = ACTIONS(1345), + [aux_sym_cmd_identifier_token31] = ACTIONS(1349), + [aux_sym_cmd_identifier_token32] = ACTIONS(1349), + [aux_sym_cmd_identifier_token33] = ACTIONS(1349), + [aux_sym_cmd_identifier_token34] = ACTIONS(1349), + [aux_sym_cmd_identifier_token35] = ACTIONS(1349), + [aux_sym_cmd_identifier_token36] = ACTIONS(1345), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [anon_sym_null] = ACTIONS(1349), + [aux_sym_cmd_identifier_token38] = ACTIONS(1345), + [aux_sym_cmd_identifier_token39] = ACTIONS(1349), + [aux_sym_cmd_identifier_token40] = ACTIONS(1349), + [sym__newline] = ACTIONS(1349), + [anon_sym_def] = ACTIONS(1345), + [anon_sym_export_DASHenv] = ACTIONS(1345), + [anon_sym_extern] = ACTIONS(1345), + [anon_sym_module] = ACTIONS(1345), + [anon_sym_use] = ACTIONS(1345), + [anon_sym_LBRACK] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_DOLLAR] = ACTIONS(1345), + [anon_sym_error] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_break] = ACTIONS(1345), + [anon_sym_continue] = ACTIONS(1345), + [anon_sym_for] = ACTIONS(1345), + [anon_sym_loop] = ACTIONS(1345), + [anon_sym_while] = ACTIONS(1345), + [anon_sym_do] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_match] = ACTIONS(1345), + [aux_sym_ctrl_match_token1] = ACTIONS(1349), + [anon_sym_DOT_DOT] = ACTIONS(1345), + [anon_sym_try] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1345), + [anon_sym_source] = ACTIONS(1345), + [anon_sym_source_DASHenv] = ACTIONS(1345), + [anon_sym_register] = ACTIONS(1345), + [anon_sym_hide] = ACTIONS(1345), + [anon_sym_hide_DASHenv] = ACTIONS(1345), + [anon_sym_overlay] = ACTIONS(1345), + [anon_sym_where] = ACTIONS(1349), + [aux_sym_expr_unary_token1] = ACTIONS(1349), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1349), + [anon_sym_DOT_DOT_LT] = ACTIONS(1349), + [aux_sym__val_number_decimal_token1] = ACTIONS(1345), + [aux_sym__val_number_decimal_token2] = ACTIONS(1349), + [aux_sym__val_number_decimal_token3] = ACTIONS(1349), + [aux_sym__val_number_decimal_token4] = ACTIONS(1349), + [aux_sym__val_number_token1] = ACTIONS(1349), + [aux_sym__val_number_token2] = ACTIONS(1349), + [aux_sym__val_number_token3] = ACTIONS(1349), + [anon_sym_0b] = ACTIONS(1345), + [anon_sym_0o] = ACTIONS(1345), + [anon_sym_0x] = ACTIONS(1345), + [sym_val_date] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1349), + [sym__str_single_quotes] = ACTIONS(1349), + [sym__str_back_ticks] = ACTIONS(1349), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1349), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1349), + [aux_sym_env_var_token1] = ACTIONS(1345), + [anon_sym_CARET] = ACTIONS(1349), + [anon_sym_POUND] = ACTIONS(247), + }, + [373] = { + [sym_comment] = STATE(373), + [anon_sym_export] = ACTIONS(1643), + [anon_sym_alias] = ACTIONS(1643), + [anon_sym_let] = ACTIONS(1643), + [anon_sym_let_DASHenv] = ACTIONS(1643), + [anon_sym_mut] = ACTIONS(1643), + [anon_sym_const] = ACTIONS(1643), + [aux_sym_cmd_identifier_token1] = ACTIONS(1643), + [aux_sym_cmd_identifier_token2] = ACTIONS(1643), + [aux_sym_cmd_identifier_token3] = ACTIONS(1643), + [aux_sym_cmd_identifier_token4] = ACTIONS(1643), + [aux_sym_cmd_identifier_token5] = ACTIONS(1643), + [aux_sym_cmd_identifier_token6] = ACTIONS(1643), + [aux_sym_cmd_identifier_token7] = ACTIONS(1643), + [aux_sym_cmd_identifier_token8] = ACTIONS(1643), + [aux_sym_cmd_identifier_token9] = ACTIONS(1643), + [aux_sym_cmd_identifier_token10] = ACTIONS(1643), + [aux_sym_cmd_identifier_token11] = ACTIONS(1643), + [aux_sym_cmd_identifier_token12] = ACTIONS(1643), + [aux_sym_cmd_identifier_token13] = ACTIONS(1643), + [aux_sym_cmd_identifier_token14] = ACTIONS(1643), + [aux_sym_cmd_identifier_token15] = ACTIONS(1643), + [aux_sym_cmd_identifier_token16] = ACTIONS(1643), + [aux_sym_cmd_identifier_token17] = ACTIONS(1643), + [aux_sym_cmd_identifier_token18] = ACTIONS(1643), + [aux_sym_cmd_identifier_token19] = ACTIONS(1643), + [aux_sym_cmd_identifier_token20] = ACTIONS(1643), + [aux_sym_cmd_identifier_token21] = ACTIONS(1643), + [aux_sym_cmd_identifier_token22] = ACTIONS(1643), + [aux_sym_cmd_identifier_token23] = ACTIONS(1643), + [aux_sym_cmd_identifier_token24] = ACTIONS(1643), + [aux_sym_cmd_identifier_token25] = ACTIONS(1643), + [aux_sym_cmd_identifier_token26] = ACTIONS(1643), + [aux_sym_cmd_identifier_token27] = ACTIONS(1643), + [aux_sym_cmd_identifier_token28] = ACTIONS(1643), + [aux_sym_cmd_identifier_token29] = ACTIONS(1643), + [aux_sym_cmd_identifier_token30] = ACTIONS(1643), + [aux_sym_cmd_identifier_token31] = ACTIONS(1643), + [aux_sym_cmd_identifier_token32] = ACTIONS(1643), + [aux_sym_cmd_identifier_token33] = ACTIONS(1643), + [aux_sym_cmd_identifier_token34] = ACTIONS(1643), + [aux_sym_cmd_identifier_token35] = ACTIONS(1643), + [aux_sym_cmd_identifier_token36] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [aux_sym_cmd_identifier_token38] = ACTIONS(1643), + [aux_sym_cmd_identifier_token39] = ACTIONS(1645), + [aux_sym_cmd_identifier_token40] = ACTIONS(1645), + [anon_sym_def] = ACTIONS(1643), + [anon_sym_export_DASHenv] = ACTIONS(1643), + [anon_sym_extern] = ACTIONS(1643), + [anon_sym_module] = ACTIONS(1643), + [anon_sym_use] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(1645), + [anon_sym_error] = ACTIONS(1643), + [anon_sym_list] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_break] = ACTIONS(1643), + [anon_sym_continue] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_loop] = ACTIONS(1643), + [anon_sym_make] = ACTIONS(1643), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_do] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_else] = ACTIONS(1643), + [anon_sym_match] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1645), + [anon_sym_try] = ACTIONS(1643), + [anon_sym_catch] = ACTIONS(1643), + [anon_sym_return] = ACTIONS(1643), + [anon_sym_source] = ACTIONS(1643), + [anon_sym_source_DASHenv] = ACTIONS(1643), + [anon_sym_register] = ACTIONS(1643), + [anon_sym_hide] = ACTIONS(1643), + [anon_sym_hide_DASHenv] = ACTIONS(1643), + [anon_sym_overlay] = ACTIONS(1643), + [anon_sym_new] = ACTIONS(1643), + [anon_sym_as] = ACTIONS(1643), + [anon_sym_LPAREN2] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1645), + [anon_sym_DOT] = ACTIONS(2031), + [aux_sym__immediate_decimal_token2] = ACTIONS(2033), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1645), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1645), + [aux_sym__val_number_decimal_token3] = ACTIONS(1645), + [aux_sym__val_number_decimal_token4] = ACTIONS(1645), + [aux_sym__val_number_token1] = ACTIONS(1645), + [aux_sym__val_number_token2] = ACTIONS(1645), + [aux_sym__val_number_token3] = ACTIONS(1645), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym__str_single_quotes] = ACTIONS(1645), + [sym__str_back_ticks] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1645), + [anon_sym_PLUS] = ACTIONS(1643), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1643), + [anon_sym_POUND] = ACTIONS(247), + }, + [374] = { + [sym_cell_path] = STATE(624), + [sym_path] = STATE(550), + [sym_comment] = STATE(374), + [aux_sym_cell_path_repeat1] = STATE(434), [anon_sym_export] = ACTIONS(1875), [anon_sym_alias] = ACTIONS(1875), [anon_sym_let] = ACTIONS(1875), @@ -119495,7 +117154,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(1875), [anon_sym_as] = ACTIONS(1875), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1877), - [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_DOT] = ACTIONS(1973), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1877), [aux_sym__val_number_decimal_token1] = ACTIONS(1875), [aux_sym__val_number_decimal_token2] = ACTIONS(1877), @@ -119511,938 +117170,1247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1875), [anon_sym_POUND] = ACTIONS(247), }, - [358] = { - [sym_cell_path] = STATE(631), - [sym_path] = STATE(532), - [sym_comment] = STATE(358), - [aux_sym_cell_path_repeat1] = STATE(424), - [anon_sym_export] = ACTIONS(1879), - [anon_sym_alias] = ACTIONS(1879), - [anon_sym_let] = ACTIONS(1879), - [anon_sym_let_DASHenv] = ACTIONS(1879), - [anon_sym_mut] = ACTIONS(1879), - [anon_sym_const] = ACTIONS(1879), - [aux_sym_cmd_identifier_token1] = ACTIONS(1879), - [aux_sym_cmd_identifier_token2] = ACTIONS(1879), - [aux_sym_cmd_identifier_token3] = ACTIONS(1879), - [aux_sym_cmd_identifier_token4] = ACTIONS(1879), - [aux_sym_cmd_identifier_token5] = ACTIONS(1879), - [aux_sym_cmd_identifier_token6] = ACTIONS(1879), - [aux_sym_cmd_identifier_token7] = ACTIONS(1879), - [aux_sym_cmd_identifier_token8] = ACTIONS(1879), - [aux_sym_cmd_identifier_token9] = ACTIONS(1879), - [aux_sym_cmd_identifier_token10] = ACTIONS(1879), - [aux_sym_cmd_identifier_token11] = ACTIONS(1879), - [aux_sym_cmd_identifier_token12] = ACTIONS(1879), - [aux_sym_cmd_identifier_token13] = ACTIONS(1879), - [aux_sym_cmd_identifier_token14] = ACTIONS(1879), - [aux_sym_cmd_identifier_token15] = ACTIONS(1879), - [aux_sym_cmd_identifier_token16] = ACTIONS(1879), - [aux_sym_cmd_identifier_token17] = ACTIONS(1879), - [aux_sym_cmd_identifier_token18] = ACTIONS(1879), - [aux_sym_cmd_identifier_token19] = ACTIONS(1879), - [aux_sym_cmd_identifier_token20] = ACTIONS(1879), - [aux_sym_cmd_identifier_token21] = ACTIONS(1879), - [aux_sym_cmd_identifier_token22] = ACTIONS(1879), - [aux_sym_cmd_identifier_token23] = ACTIONS(1879), - [aux_sym_cmd_identifier_token24] = ACTIONS(1879), - [aux_sym_cmd_identifier_token25] = ACTIONS(1879), - [aux_sym_cmd_identifier_token26] = ACTIONS(1879), - [aux_sym_cmd_identifier_token27] = ACTIONS(1879), - [aux_sym_cmd_identifier_token28] = ACTIONS(1879), - [aux_sym_cmd_identifier_token29] = ACTIONS(1879), - [aux_sym_cmd_identifier_token30] = ACTIONS(1879), - [aux_sym_cmd_identifier_token31] = ACTIONS(1879), - [aux_sym_cmd_identifier_token32] = ACTIONS(1879), - [aux_sym_cmd_identifier_token33] = ACTIONS(1879), - [aux_sym_cmd_identifier_token34] = ACTIONS(1879), - [aux_sym_cmd_identifier_token35] = ACTIONS(1879), - [aux_sym_cmd_identifier_token36] = ACTIONS(1879), - [anon_sym_true] = ACTIONS(1881), - [anon_sym_false] = ACTIONS(1881), - [anon_sym_null] = ACTIONS(1881), - [aux_sym_cmd_identifier_token38] = ACTIONS(1879), - [aux_sym_cmd_identifier_token39] = ACTIONS(1881), - [aux_sym_cmd_identifier_token40] = ACTIONS(1881), - [anon_sym_def] = ACTIONS(1879), - [anon_sym_export_DASHenv] = ACTIONS(1879), - [anon_sym_extern] = ACTIONS(1879), - [anon_sym_module] = ACTIONS(1879), - [anon_sym_use] = ACTIONS(1879), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_DOLLAR] = ACTIONS(1881), - [anon_sym_error] = ACTIONS(1879), - [anon_sym_list] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_break] = ACTIONS(1879), - [anon_sym_continue] = ACTIONS(1879), - [anon_sym_for] = ACTIONS(1879), - [anon_sym_in] = ACTIONS(1879), - [anon_sym_loop] = ACTIONS(1879), - [anon_sym_make] = ACTIONS(1879), - [anon_sym_while] = ACTIONS(1879), - [anon_sym_do] = ACTIONS(1879), - [anon_sym_if] = ACTIONS(1879), - [anon_sym_else] = ACTIONS(1879), - [anon_sym_match] = ACTIONS(1879), - [anon_sym_RBRACE] = ACTIONS(1881), - [anon_sym_try] = ACTIONS(1879), - [anon_sym_catch] = ACTIONS(1879), - [anon_sym_return] = ACTIONS(1879), - [anon_sym_source] = ACTIONS(1879), - [anon_sym_source_DASHenv] = ACTIONS(1879), - [anon_sym_register] = ACTIONS(1879), - [anon_sym_hide] = ACTIONS(1879), - [anon_sym_hide_DASHenv] = ACTIONS(1879), - [anon_sym_overlay] = ACTIONS(1879), - [anon_sym_new] = ACTIONS(1879), - [anon_sym_as] = ACTIONS(1879), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1881), - [anon_sym_DOT] = ACTIONS(1903), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1881), - [aux_sym__val_number_decimal_token1] = ACTIONS(1879), - [aux_sym__val_number_decimal_token2] = ACTIONS(1881), - [aux_sym__val_number_decimal_token3] = ACTIONS(1881), - [aux_sym__val_number_decimal_token4] = ACTIONS(1881), - [aux_sym__val_number_token1] = ACTIONS(1881), - [aux_sym__val_number_token2] = ACTIONS(1881), - [aux_sym__val_number_token3] = ACTIONS(1881), - [anon_sym_DQUOTE] = ACTIONS(1881), - [sym__str_single_quotes] = ACTIONS(1881), - [sym__str_back_ticks] = ACTIONS(1881), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1879), + [375] = { + [sym_cell_path] = STATE(637), + [sym_path] = STATE(550), + [sym_comment] = STATE(375), + [aux_sym_cell_path_repeat1] = STATE(434), + [anon_sym_export] = ACTIONS(1937), + [anon_sym_alias] = ACTIONS(1937), + [anon_sym_let] = ACTIONS(1937), + [anon_sym_let_DASHenv] = ACTIONS(1937), + [anon_sym_mut] = ACTIONS(1937), + [anon_sym_const] = ACTIONS(1937), + [aux_sym_cmd_identifier_token1] = ACTIONS(1937), + [aux_sym_cmd_identifier_token2] = ACTIONS(1937), + [aux_sym_cmd_identifier_token3] = ACTIONS(1937), + [aux_sym_cmd_identifier_token4] = ACTIONS(1937), + [aux_sym_cmd_identifier_token5] = ACTIONS(1937), + [aux_sym_cmd_identifier_token6] = ACTIONS(1937), + [aux_sym_cmd_identifier_token7] = ACTIONS(1937), + [aux_sym_cmd_identifier_token8] = ACTIONS(1937), + [aux_sym_cmd_identifier_token9] = ACTIONS(1937), + [aux_sym_cmd_identifier_token10] = ACTIONS(1937), + [aux_sym_cmd_identifier_token11] = ACTIONS(1937), + [aux_sym_cmd_identifier_token12] = ACTIONS(1937), + [aux_sym_cmd_identifier_token13] = ACTIONS(1937), + [aux_sym_cmd_identifier_token14] = ACTIONS(1937), + [aux_sym_cmd_identifier_token15] = ACTIONS(1937), + [aux_sym_cmd_identifier_token16] = ACTIONS(1937), + [aux_sym_cmd_identifier_token17] = ACTIONS(1937), + [aux_sym_cmd_identifier_token18] = ACTIONS(1937), + [aux_sym_cmd_identifier_token19] = ACTIONS(1937), + [aux_sym_cmd_identifier_token20] = ACTIONS(1937), + [aux_sym_cmd_identifier_token21] = ACTIONS(1937), + [aux_sym_cmd_identifier_token22] = ACTIONS(1937), + [aux_sym_cmd_identifier_token23] = ACTIONS(1937), + [aux_sym_cmd_identifier_token24] = ACTIONS(1937), + [aux_sym_cmd_identifier_token25] = ACTIONS(1937), + [aux_sym_cmd_identifier_token26] = ACTIONS(1937), + [aux_sym_cmd_identifier_token27] = ACTIONS(1937), + [aux_sym_cmd_identifier_token28] = ACTIONS(1937), + [aux_sym_cmd_identifier_token29] = ACTIONS(1937), + [aux_sym_cmd_identifier_token30] = ACTIONS(1937), + [aux_sym_cmd_identifier_token31] = ACTIONS(1937), + [aux_sym_cmd_identifier_token32] = ACTIONS(1937), + [aux_sym_cmd_identifier_token33] = ACTIONS(1937), + [aux_sym_cmd_identifier_token34] = ACTIONS(1937), + [aux_sym_cmd_identifier_token35] = ACTIONS(1937), + [aux_sym_cmd_identifier_token36] = ACTIONS(1937), + [anon_sym_true] = ACTIONS(1939), + [anon_sym_false] = ACTIONS(1939), + [anon_sym_null] = ACTIONS(1939), + [aux_sym_cmd_identifier_token38] = ACTIONS(1937), + [aux_sym_cmd_identifier_token39] = ACTIONS(1939), + [aux_sym_cmd_identifier_token40] = ACTIONS(1939), + [anon_sym_def] = ACTIONS(1937), + [anon_sym_export_DASHenv] = ACTIONS(1937), + [anon_sym_extern] = ACTIONS(1937), + [anon_sym_module] = ACTIONS(1937), + [anon_sym_use] = ACTIONS(1937), + [anon_sym_LPAREN] = ACTIONS(1939), + [anon_sym_DOLLAR] = ACTIONS(1939), + [anon_sym_error] = ACTIONS(1937), + [anon_sym_list] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1937), + [anon_sym_break] = ACTIONS(1937), + [anon_sym_continue] = ACTIONS(1937), + [anon_sym_for] = ACTIONS(1937), + [anon_sym_in] = ACTIONS(1937), + [anon_sym_loop] = ACTIONS(1937), + [anon_sym_make] = ACTIONS(1937), + [anon_sym_while] = ACTIONS(1937), + [anon_sym_do] = ACTIONS(1937), + [anon_sym_if] = ACTIONS(1937), + [anon_sym_else] = ACTIONS(1937), + [anon_sym_match] = ACTIONS(1937), + [anon_sym_RBRACE] = ACTIONS(1939), + [anon_sym_try] = ACTIONS(1937), + [anon_sym_catch] = ACTIONS(1937), + [anon_sym_return] = ACTIONS(1937), + [anon_sym_source] = ACTIONS(1937), + [anon_sym_source_DASHenv] = ACTIONS(1937), + [anon_sym_register] = ACTIONS(1937), + [anon_sym_hide] = ACTIONS(1937), + [anon_sym_hide_DASHenv] = ACTIONS(1937), + [anon_sym_overlay] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1937), + [anon_sym_as] = ACTIONS(1937), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1939), + [anon_sym_DOT] = ACTIONS(1973), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1939), + [aux_sym__val_number_decimal_token1] = ACTIONS(1937), + [aux_sym__val_number_decimal_token2] = ACTIONS(1939), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [aux_sym__val_number_token1] = ACTIONS(1939), + [aux_sym__val_number_token2] = ACTIONS(1939), + [aux_sym__val_number_token3] = ACTIONS(1939), + [anon_sym_DQUOTE] = ACTIONS(1939), + [sym__str_single_quotes] = ACTIONS(1939), + [sym__str_back_ticks] = ACTIONS(1939), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1937), [anon_sym_POUND] = ACTIONS(247), }, - [359] = { - [sym_cell_path] = STATE(637), - [sym_path] = STATE(532), - [sym_comment] = STATE(359), - [aux_sym_cell_path_repeat1] = STATE(424), - [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), - [aux_sym_cmd_identifier_token1] = ACTIONS(1883), - [aux_sym_cmd_identifier_token2] = ACTIONS(1883), - [aux_sym_cmd_identifier_token3] = ACTIONS(1883), - [aux_sym_cmd_identifier_token4] = ACTIONS(1883), - [aux_sym_cmd_identifier_token5] = ACTIONS(1883), - [aux_sym_cmd_identifier_token6] = ACTIONS(1883), - [aux_sym_cmd_identifier_token7] = ACTIONS(1883), - [aux_sym_cmd_identifier_token8] = ACTIONS(1883), - [aux_sym_cmd_identifier_token9] = ACTIONS(1883), - [aux_sym_cmd_identifier_token10] = ACTIONS(1883), - [aux_sym_cmd_identifier_token11] = ACTIONS(1883), - [aux_sym_cmd_identifier_token12] = ACTIONS(1883), - [aux_sym_cmd_identifier_token13] = ACTIONS(1883), - [aux_sym_cmd_identifier_token14] = ACTIONS(1883), - [aux_sym_cmd_identifier_token15] = ACTIONS(1883), - [aux_sym_cmd_identifier_token16] = ACTIONS(1883), - [aux_sym_cmd_identifier_token17] = ACTIONS(1883), - [aux_sym_cmd_identifier_token18] = ACTIONS(1883), - [aux_sym_cmd_identifier_token19] = ACTIONS(1883), - [aux_sym_cmd_identifier_token20] = ACTIONS(1883), - [aux_sym_cmd_identifier_token21] = ACTIONS(1883), - [aux_sym_cmd_identifier_token22] = ACTIONS(1883), - [aux_sym_cmd_identifier_token23] = ACTIONS(1883), - [aux_sym_cmd_identifier_token24] = ACTIONS(1883), - [aux_sym_cmd_identifier_token25] = ACTIONS(1883), - [aux_sym_cmd_identifier_token26] = ACTIONS(1883), - [aux_sym_cmd_identifier_token27] = ACTIONS(1883), - [aux_sym_cmd_identifier_token28] = ACTIONS(1883), - [aux_sym_cmd_identifier_token29] = ACTIONS(1883), - [aux_sym_cmd_identifier_token30] = ACTIONS(1883), - [aux_sym_cmd_identifier_token31] = ACTIONS(1883), - [aux_sym_cmd_identifier_token32] = ACTIONS(1883), - [aux_sym_cmd_identifier_token33] = ACTIONS(1883), - [aux_sym_cmd_identifier_token34] = ACTIONS(1883), - [aux_sym_cmd_identifier_token35] = ACTIONS(1883), - [aux_sym_cmd_identifier_token36] = ACTIONS(1883), - [anon_sym_true] = ACTIONS(1885), - [anon_sym_false] = ACTIONS(1885), - [anon_sym_null] = ACTIONS(1885), - [aux_sym_cmd_identifier_token38] = ACTIONS(1883), - [aux_sym_cmd_identifier_token39] = ACTIONS(1885), - [aux_sym_cmd_identifier_token40] = ACTIONS(1885), - [anon_sym_def] = 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_LPAREN] = ACTIONS(1885), - [anon_sym_DOLLAR] = ACTIONS(1885), - [anon_sym_error] = ACTIONS(1883), - [anon_sym_list] = ACTIONS(1883), - [anon_sym_DASH] = ACTIONS(1883), - [anon_sym_break] = ACTIONS(1883), - [anon_sym_continue] = ACTIONS(1883), - [anon_sym_for] = ACTIONS(1883), - [anon_sym_in] = ACTIONS(1883), - [anon_sym_loop] = ACTIONS(1883), - [anon_sym_make] = ACTIONS(1883), - [anon_sym_while] = ACTIONS(1883), - [anon_sym_do] = ACTIONS(1883), - [anon_sym_if] = ACTIONS(1883), - [anon_sym_else] = ACTIONS(1883), - [anon_sym_match] = ACTIONS(1883), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_try] = ACTIONS(1883), - [anon_sym_catch] = 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_new] = ACTIONS(1883), - [anon_sym_as] = ACTIONS(1883), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1885), - [anon_sym_DOT] = ACTIONS(1903), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1885), - [aux_sym__val_number_decimal_token1] = ACTIONS(1883), - [aux_sym__val_number_decimal_token2] = ACTIONS(1885), - [aux_sym__val_number_decimal_token3] = ACTIONS(1885), - [aux_sym__val_number_decimal_token4] = ACTIONS(1885), - [aux_sym__val_number_token1] = ACTIONS(1885), - [aux_sym__val_number_token2] = ACTIONS(1885), - [aux_sym__val_number_token3] = ACTIONS(1885), - [anon_sym_DQUOTE] = ACTIONS(1885), - [sym__str_single_quotes] = ACTIONS(1885), - [sym__str_back_ticks] = ACTIONS(1885), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1885), - [anon_sym_PLUS] = ACTIONS(1883), + [376] = { + [sym_comment] = STATE(376), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_alias] = ACTIONS(1044), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_let_DASHenv] = ACTIONS(1044), + [anon_sym_mut] = ACTIONS(1044), + [anon_sym_const] = ACTIONS(1044), + [aux_sym_cmd_identifier_token1] = ACTIONS(1044), + [aux_sym_cmd_identifier_token2] = ACTIONS(1044), + [aux_sym_cmd_identifier_token3] = ACTIONS(1044), + [aux_sym_cmd_identifier_token4] = ACTIONS(1044), + [aux_sym_cmd_identifier_token5] = ACTIONS(1044), + [aux_sym_cmd_identifier_token6] = ACTIONS(1044), + [aux_sym_cmd_identifier_token7] = ACTIONS(1044), + [aux_sym_cmd_identifier_token8] = ACTIONS(1044), + [aux_sym_cmd_identifier_token9] = ACTIONS(1044), + [aux_sym_cmd_identifier_token10] = ACTIONS(1044), + [aux_sym_cmd_identifier_token11] = ACTIONS(1044), + [aux_sym_cmd_identifier_token12] = ACTIONS(1044), + [aux_sym_cmd_identifier_token13] = ACTIONS(1044), + [aux_sym_cmd_identifier_token14] = ACTIONS(1044), + [aux_sym_cmd_identifier_token15] = ACTIONS(1044), + [aux_sym_cmd_identifier_token16] = ACTIONS(1044), + [aux_sym_cmd_identifier_token17] = ACTIONS(1044), + [aux_sym_cmd_identifier_token18] = ACTIONS(1044), + [aux_sym_cmd_identifier_token19] = ACTIONS(1044), + [aux_sym_cmd_identifier_token20] = ACTIONS(1044), + [aux_sym_cmd_identifier_token21] = ACTIONS(1044), + [aux_sym_cmd_identifier_token22] = ACTIONS(1044), + [aux_sym_cmd_identifier_token23] = ACTIONS(1044), + [aux_sym_cmd_identifier_token24] = ACTIONS(1044), + [aux_sym_cmd_identifier_token25] = ACTIONS(1044), + [aux_sym_cmd_identifier_token26] = ACTIONS(1044), + [aux_sym_cmd_identifier_token27] = ACTIONS(1044), + [aux_sym_cmd_identifier_token28] = ACTIONS(1044), + [aux_sym_cmd_identifier_token29] = ACTIONS(1044), + [aux_sym_cmd_identifier_token30] = ACTIONS(1044), + [aux_sym_cmd_identifier_token31] = ACTIONS(1044), + [aux_sym_cmd_identifier_token32] = ACTIONS(1044), + [aux_sym_cmd_identifier_token33] = ACTIONS(1044), + [aux_sym_cmd_identifier_token34] = ACTIONS(1044), + [aux_sym_cmd_identifier_token35] = ACTIONS(1044), + [aux_sym_cmd_identifier_token36] = ACTIONS(1044), + [anon_sym_true] = ACTIONS(1046), + [anon_sym_false] = ACTIONS(1046), + [anon_sym_null] = ACTIONS(1046), + [aux_sym_cmd_identifier_token38] = ACTIONS(1044), + [aux_sym_cmd_identifier_token39] = ACTIONS(1046), + [aux_sym_cmd_identifier_token40] = ACTIONS(1046), + [anon_sym_def] = ACTIONS(1044), + [anon_sym_export_DASHenv] = ACTIONS(1044), + [anon_sym_extern] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_use] = ACTIONS(1044), + [anon_sym_LPAREN] = ACTIONS(1046), + [anon_sym_COMMA] = ACTIONS(1046), + [anon_sym_DOLLAR] = ACTIONS(1046), + [anon_sym_error] = ACTIONS(1044), + [anon_sym_list] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_break] = ACTIONS(1044), + [anon_sym_continue] = ACTIONS(1044), + [anon_sym_for] = ACTIONS(1044), + [anon_sym_in] = ACTIONS(1044), + [anon_sym_loop] = ACTIONS(1044), + [anon_sym_make] = ACTIONS(1044), + [anon_sym_while] = ACTIONS(1044), + [anon_sym_do] = ACTIONS(1044), + [anon_sym_if] = ACTIONS(1044), + [anon_sym_else] = ACTIONS(1044), + [anon_sym_match] = ACTIONS(1044), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_try] = ACTIONS(1044), + [anon_sym_catch] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_source] = ACTIONS(1044), + [anon_sym_source_DASHenv] = ACTIONS(1044), + [anon_sym_register] = ACTIONS(1044), + [anon_sym_hide] = ACTIONS(1044), + [anon_sym_hide_DASHenv] = ACTIONS(1044), + [anon_sym_overlay] = ACTIONS(1044), + [anon_sym_new] = ACTIONS(1044), + [anon_sym_as] = ACTIONS(1044), + [anon_sym_QMARK2] = ACTIONS(1046), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1046), + [anon_sym_DOT] = ACTIONS(1044), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1046), + [aux_sym__val_number_decimal_token1] = ACTIONS(1044), + [aux_sym__val_number_decimal_token2] = ACTIONS(1046), + [aux_sym__val_number_decimal_token3] = ACTIONS(1046), + [aux_sym__val_number_decimal_token4] = ACTIONS(1046), + [aux_sym__val_number_token1] = ACTIONS(1046), + [aux_sym__val_number_token2] = ACTIONS(1046), + [aux_sym__val_number_token3] = ACTIONS(1046), + [anon_sym_DQUOTE] = ACTIONS(1046), + [sym__str_single_quotes] = ACTIONS(1046), + [sym__str_back_ticks] = ACTIONS(1046), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1046), + [aux_sym_record_entry_token1] = ACTIONS(1046), + [anon_sym_PLUS] = ACTIONS(1044), [anon_sym_POUND] = ACTIONS(247), }, - [360] = { - [sym_cell_path] = STATE(638), - [sym_path] = STATE(532), - [sym_comment] = STATE(360), - [aux_sym_cell_path_repeat1] = STATE(424), - [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), - [aux_sym_cmd_identifier_token1] = ACTIONS(1891), - [aux_sym_cmd_identifier_token2] = ACTIONS(1891), - [aux_sym_cmd_identifier_token3] = ACTIONS(1891), - [aux_sym_cmd_identifier_token4] = ACTIONS(1891), - [aux_sym_cmd_identifier_token5] = ACTIONS(1891), - [aux_sym_cmd_identifier_token6] = ACTIONS(1891), - [aux_sym_cmd_identifier_token7] = ACTIONS(1891), - [aux_sym_cmd_identifier_token8] = ACTIONS(1891), - [aux_sym_cmd_identifier_token9] = ACTIONS(1891), - [aux_sym_cmd_identifier_token10] = ACTIONS(1891), - [aux_sym_cmd_identifier_token11] = ACTIONS(1891), - [aux_sym_cmd_identifier_token12] = ACTIONS(1891), - [aux_sym_cmd_identifier_token13] = ACTIONS(1891), - [aux_sym_cmd_identifier_token14] = ACTIONS(1891), - [aux_sym_cmd_identifier_token15] = ACTIONS(1891), - [aux_sym_cmd_identifier_token16] = ACTIONS(1891), - [aux_sym_cmd_identifier_token17] = ACTIONS(1891), - [aux_sym_cmd_identifier_token18] = ACTIONS(1891), - [aux_sym_cmd_identifier_token19] = ACTIONS(1891), - [aux_sym_cmd_identifier_token20] = ACTIONS(1891), - [aux_sym_cmd_identifier_token21] = ACTIONS(1891), - [aux_sym_cmd_identifier_token22] = ACTIONS(1891), - [aux_sym_cmd_identifier_token23] = ACTIONS(1891), - [aux_sym_cmd_identifier_token24] = ACTIONS(1891), - [aux_sym_cmd_identifier_token25] = ACTIONS(1891), - [aux_sym_cmd_identifier_token26] = ACTIONS(1891), - [aux_sym_cmd_identifier_token27] = ACTIONS(1891), - [aux_sym_cmd_identifier_token28] = ACTIONS(1891), - [aux_sym_cmd_identifier_token29] = ACTIONS(1891), - [aux_sym_cmd_identifier_token30] = ACTIONS(1891), - [aux_sym_cmd_identifier_token31] = ACTIONS(1891), - [aux_sym_cmd_identifier_token32] = ACTIONS(1891), - [aux_sym_cmd_identifier_token33] = ACTIONS(1891), - [aux_sym_cmd_identifier_token34] = ACTIONS(1891), - [aux_sym_cmd_identifier_token35] = ACTIONS(1891), - [aux_sym_cmd_identifier_token36] = ACTIONS(1891), - [anon_sym_true] = ACTIONS(1893), - [anon_sym_false] = ACTIONS(1893), - [anon_sym_null] = ACTIONS(1893), - [aux_sym_cmd_identifier_token38] = ACTIONS(1891), - [aux_sym_cmd_identifier_token39] = ACTIONS(1893), - [aux_sym_cmd_identifier_token40] = ACTIONS(1893), - [anon_sym_def] = 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_LPAREN] = ACTIONS(1893), - [anon_sym_DOLLAR] = ACTIONS(1893), - [anon_sym_error] = ACTIONS(1891), - [anon_sym_list] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_break] = ACTIONS(1891), - [anon_sym_continue] = ACTIONS(1891), - [anon_sym_for] = ACTIONS(1891), - [anon_sym_in] = ACTIONS(1891), - [anon_sym_loop] = ACTIONS(1891), - [anon_sym_make] = ACTIONS(1891), - [anon_sym_while] = ACTIONS(1891), - [anon_sym_do] = ACTIONS(1891), - [anon_sym_if] = ACTIONS(1891), - [anon_sym_else] = ACTIONS(1891), - [anon_sym_match] = ACTIONS(1891), - [anon_sym_RBRACE] = ACTIONS(1893), - [anon_sym_try] = ACTIONS(1891), - [anon_sym_catch] = 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_new] = ACTIONS(1891), - [anon_sym_as] = ACTIONS(1891), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1893), - [anon_sym_DOT] = ACTIONS(1903), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1893), - [aux_sym__val_number_decimal_token1] = ACTIONS(1891), - [aux_sym__val_number_decimal_token2] = ACTIONS(1893), - [aux_sym__val_number_decimal_token3] = ACTIONS(1893), - [aux_sym__val_number_decimal_token4] = ACTIONS(1893), - [aux_sym__val_number_token1] = ACTIONS(1893), - [aux_sym__val_number_token2] = ACTIONS(1893), - [aux_sym__val_number_token3] = ACTIONS(1893), - [anon_sym_DQUOTE] = ACTIONS(1893), - [sym__str_single_quotes] = ACTIONS(1893), - [sym__str_back_ticks] = ACTIONS(1893), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1893), - [anon_sym_PLUS] = ACTIONS(1891), + [377] = { + [sym_cell_path] = STATE(626), + [sym_path] = STATE(550), + [sym_comment] = STATE(377), + [aux_sym_cell_path_repeat1] = STATE(434), + [anon_sym_export] = ACTIONS(1969), + [anon_sym_alias] = ACTIONS(1969), + [anon_sym_let] = ACTIONS(1969), + [anon_sym_let_DASHenv] = ACTIONS(1969), + [anon_sym_mut] = ACTIONS(1969), + [anon_sym_const] = ACTIONS(1969), + [aux_sym_cmd_identifier_token1] = ACTIONS(1969), + [aux_sym_cmd_identifier_token2] = ACTIONS(1969), + [aux_sym_cmd_identifier_token3] = ACTIONS(1969), + [aux_sym_cmd_identifier_token4] = ACTIONS(1969), + [aux_sym_cmd_identifier_token5] = ACTIONS(1969), + [aux_sym_cmd_identifier_token6] = ACTIONS(1969), + [aux_sym_cmd_identifier_token7] = ACTIONS(1969), + [aux_sym_cmd_identifier_token8] = ACTIONS(1969), + [aux_sym_cmd_identifier_token9] = ACTIONS(1969), + [aux_sym_cmd_identifier_token10] = ACTIONS(1969), + [aux_sym_cmd_identifier_token11] = ACTIONS(1969), + [aux_sym_cmd_identifier_token12] = ACTIONS(1969), + [aux_sym_cmd_identifier_token13] = ACTIONS(1969), + [aux_sym_cmd_identifier_token14] = ACTIONS(1969), + [aux_sym_cmd_identifier_token15] = ACTIONS(1969), + [aux_sym_cmd_identifier_token16] = ACTIONS(1969), + [aux_sym_cmd_identifier_token17] = ACTIONS(1969), + [aux_sym_cmd_identifier_token18] = ACTIONS(1969), + [aux_sym_cmd_identifier_token19] = ACTIONS(1969), + [aux_sym_cmd_identifier_token20] = ACTIONS(1969), + [aux_sym_cmd_identifier_token21] = ACTIONS(1969), + [aux_sym_cmd_identifier_token22] = ACTIONS(1969), + [aux_sym_cmd_identifier_token23] = ACTIONS(1969), + [aux_sym_cmd_identifier_token24] = ACTIONS(1969), + [aux_sym_cmd_identifier_token25] = ACTIONS(1969), + [aux_sym_cmd_identifier_token26] = ACTIONS(1969), + [aux_sym_cmd_identifier_token27] = ACTIONS(1969), + [aux_sym_cmd_identifier_token28] = ACTIONS(1969), + [aux_sym_cmd_identifier_token29] = ACTIONS(1969), + [aux_sym_cmd_identifier_token30] = ACTIONS(1969), + [aux_sym_cmd_identifier_token31] = ACTIONS(1969), + [aux_sym_cmd_identifier_token32] = ACTIONS(1969), + [aux_sym_cmd_identifier_token33] = ACTIONS(1969), + [aux_sym_cmd_identifier_token34] = ACTIONS(1969), + [aux_sym_cmd_identifier_token35] = ACTIONS(1969), + [aux_sym_cmd_identifier_token36] = ACTIONS(1969), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1971), + [aux_sym_cmd_identifier_token38] = ACTIONS(1969), + [aux_sym_cmd_identifier_token39] = ACTIONS(1971), + [aux_sym_cmd_identifier_token40] = ACTIONS(1971), + [anon_sym_def] = ACTIONS(1969), + [anon_sym_export_DASHenv] = ACTIONS(1969), + [anon_sym_extern] = ACTIONS(1969), + [anon_sym_module] = ACTIONS(1969), + [anon_sym_use] = ACTIONS(1969), + [anon_sym_LPAREN] = ACTIONS(1971), + [anon_sym_DOLLAR] = ACTIONS(1971), + [anon_sym_error] = ACTIONS(1969), + [anon_sym_list] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1969), + [anon_sym_break] = ACTIONS(1969), + [anon_sym_continue] = ACTIONS(1969), + [anon_sym_for] = ACTIONS(1969), + [anon_sym_in] = ACTIONS(1969), + [anon_sym_loop] = ACTIONS(1969), + [anon_sym_make] = ACTIONS(1969), + [anon_sym_while] = ACTIONS(1969), + [anon_sym_do] = ACTIONS(1969), + [anon_sym_if] = ACTIONS(1969), + [anon_sym_else] = ACTIONS(1969), + [anon_sym_match] = ACTIONS(1969), + [anon_sym_RBRACE] = ACTIONS(1971), + [anon_sym_try] = ACTIONS(1969), + [anon_sym_catch] = ACTIONS(1969), + [anon_sym_return] = ACTIONS(1969), + [anon_sym_source] = ACTIONS(1969), + [anon_sym_source_DASHenv] = ACTIONS(1969), + [anon_sym_register] = ACTIONS(1969), + [anon_sym_hide] = ACTIONS(1969), + [anon_sym_hide_DASHenv] = ACTIONS(1969), + [anon_sym_overlay] = ACTIONS(1969), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_as] = ACTIONS(1969), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1971), + [anon_sym_DOT] = ACTIONS(1973), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1971), + [aux_sym__val_number_decimal_token1] = ACTIONS(1969), + [aux_sym__val_number_decimal_token2] = ACTIONS(1971), + [aux_sym__val_number_decimal_token3] = ACTIONS(1971), + [aux_sym__val_number_decimal_token4] = ACTIONS(1971), + [aux_sym__val_number_token1] = ACTIONS(1971), + [aux_sym__val_number_token2] = ACTIONS(1971), + [aux_sym__val_number_token3] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(1971), + [sym__str_single_quotes] = ACTIONS(1971), + [sym__str_back_ticks] = ACTIONS(1971), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1971), + [anon_sym_PLUS] = ACTIONS(1969), [anon_sym_POUND] = ACTIONS(247), }, - [361] = { - [sym_cell_path] = STATE(639), - [sym_path] = STATE(532), - [sym_comment] = STATE(361), - [aux_sym_cell_path_repeat1] = STATE(424), - [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), - [aux_sym_cmd_identifier_token1] = ACTIONS(1895), - [aux_sym_cmd_identifier_token2] = ACTIONS(1895), - [aux_sym_cmd_identifier_token3] = ACTIONS(1895), - [aux_sym_cmd_identifier_token4] = ACTIONS(1895), - [aux_sym_cmd_identifier_token5] = ACTIONS(1895), - [aux_sym_cmd_identifier_token6] = ACTIONS(1895), - [aux_sym_cmd_identifier_token7] = ACTIONS(1895), - [aux_sym_cmd_identifier_token8] = ACTIONS(1895), - [aux_sym_cmd_identifier_token9] = ACTIONS(1895), - [aux_sym_cmd_identifier_token10] = ACTIONS(1895), - [aux_sym_cmd_identifier_token11] = ACTIONS(1895), - [aux_sym_cmd_identifier_token12] = ACTIONS(1895), - [aux_sym_cmd_identifier_token13] = ACTIONS(1895), - [aux_sym_cmd_identifier_token14] = ACTIONS(1895), - [aux_sym_cmd_identifier_token15] = ACTIONS(1895), - [aux_sym_cmd_identifier_token16] = ACTIONS(1895), - [aux_sym_cmd_identifier_token17] = ACTIONS(1895), - [aux_sym_cmd_identifier_token18] = ACTIONS(1895), - [aux_sym_cmd_identifier_token19] = ACTIONS(1895), - [aux_sym_cmd_identifier_token20] = ACTIONS(1895), - [aux_sym_cmd_identifier_token21] = ACTIONS(1895), - [aux_sym_cmd_identifier_token22] = ACTIONS(1895), - [aux_sym_cmd_identifier_token23] = ACTIONS(1895), - [aux_sym_cmd_identifier_token24] = ACTIONS(1895), - [aux_sym_cmd_identifier_token25] = ACTIONS(1895), - [aux_sym_cmd_identifier_token26] = ACTIONS(1895), - [aux_sym_cmd_identifier_token27] = ACTIONS(1895), - [aux_sym_cmd_identifier_token28] = ACTIONS(1895), - [aux_sym_cmd_identifier_token29] = ACTIONS(1895), - [aux_sym_cmd_identifier_token30] = ACTIONS(1895), - [aux_sym_cmd_identifier_token31] = ACTIONS(1895), - [aux_sym_cmd_identifier_token32] = ACTIONS(1895), - [aux_sym_cmd_identifier_token33] = ACTIONS(1895), - [aux_sym_cmd_identifier_token34] = ACTIONS(1895), - [aux_sym_cmd_identifier_token35] = ACTIONS(1895), - [aux_sym_cmd_identifier_token36] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(1897), - [anon_sym_false] = ACTIONS(1897), - [anon_sym_null] = ACTIONS(1897), - [aux_sym_cmd_identifier_token38] = ACTIONS(1895), - [aux_sym_cmd_identifier_token39] = ACTIONS(1897), - [aux_sym_cmd_identifier_token40] = ACTIONS(1897), - [anon_sym_def] = 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_LPAREN] = ACTIONS(1897), - [anon_sym_DOLLAR] = ACTIONS(1897), - [anon_sym_error] = ACTIONS(1895), - [anon_sym_list] = ACTIONS(1895), - [anon_sym_DASH] = ACTIONS(1895), - [anon_sym_break] = ACTIONS(1895), - [anon_sym_continue] = ACTIONS(1895), - [anon_sym_for] = ACTIONS(1895), - [anon_sym_in] = ACTIONS(1895), - [anon_sym_loop] = ACTIONS(1895), - [anon_sym_make] = ACTIONS(1895), - [anon_sym_while] = ACTIONS(1895), - [anon_sym_do] = ACTIONS(1895), - [anon_sym_if] = ACTIONS(1895), - [anon_sym_else] = ACTIONS(1895), - [anon_sym_match] = ACTIONS(1895), - [anon_sym_RBRACE] = ACTIONS(1897), - [anon_sym_try] = ACTIONS(1895), - [anon_sym_catch] = 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_new] = ACTIONS(1895), - [anon_sym_as] = ACTIONS(1895), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1897), - [anon_sym_DOT] = ACTIONS(1903), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1897), - [aux_sym__val_number_decimal_token1] = ACTIONS(1895), - [aux_sym__val_number_decimal_token2] = ACTIONS(1897), - [aux_sym__val_number_decimal_token3] = ACTIONS(1897), - [aux_sym__val_number_decimal_token4] = ACTIONS(1897), - [aux_sym__val_number_token1] = ACTIONS(1897), - [aux_sym__val_number_token2] = ACTIONS(1897), - [aux_sym__val_number_token3] = ACTIONS(1897), - [anon_sym_DQUOTE] = ACTIONS(1897), - [sym__str_single_quotes] = ACTIONS(1897), - [sym__str_back_ticks] = ACTIONS(1897), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1897), - [anon_sym_PLUS] = ACTIONS(1895), + [378] = { + [sym_cell_path] = STATE(640), + [sym_path] = STATE(550), + [sym_comment] = STATE(378), + [aux_sym_cell_path_repeat1] = STATE(434), + [anon_sym_export] = ACTIONS(1945), + [anon_sym_alias] = ACTIONS(1945), + [anon_sym_let] = ACTIONS(1945), + [anon_sym_let_DASHenv] = ACTIONS(1945), + [anon_sym_mut] = ACTIONS(1945), + [anon_sym_const] = ACTIONS(1945), + [aux_sym_cmd_identifier_token1] = ACTIONS(1945), + [aux_sym_cmd_identifier_token2] = ACTIONS(1945), + [aux_sym_cmd_identifier_token3] = ACTIONS(1945), + [aux_sym_cmd_identifier_token4] = ACTIONS(1945), + [aux_sym_cmd_identifier_token5] = ACTIONS(1945), + [aux_sym_cmd_identifier_token6] = ACTIONS(1945), + [aux_sym_cmd_identifier_token7] = ACTIONS(1945), + [aux_sym_cmd_identifier_token8] = ACTIONS(1945), + [aux_sym_cmd_identifier_token9] = ACTIONS(1945), + [aux_sym_cmd_identifier_token10] = ACTIONS(1945), + [aux_sym_cmd_identifier_token11] = ACTIONS(1945), + [aux_sym_cmd_identifier_token12] = ACTIONS(1945), + [aux_sym_cmd_identifier_token13] = ACTIONS(1945), + [aux_sym_cmd_identifier_token14] = ACTIONS(1945), + [aux_sym_cmd_identifier_token15] = ACTIONS(1945), + [aux_sym_cmd_identifier_token16] = ACTIONS(1945), + [aux_sym_cmd_identifier_token17] = ACTIONS(1945), + [aux_sym_cmd_identifier_token18] = ACTIONS(1945), + [aux_sym_cmd_identifier_token19] = ACTIONS(1945), + [aux_sym_cmd_identifier_token20] = ACTIONS(1945), + [aux_sym_cmd_identifier_token21] = ACTIONS(1945), + [aux_sym_cmd_identifier_token22] = ACTIONS(1945), + [aux_sym_cmd_identifier_token23] = ACTIONS(1945), + [aux_sym_cmd_identifier_token24] = ACTIONS(1945), + [aux_sym_cmd_identifier_token25] = ACTIONS(1945), + [aux_sym_cmd_identifier_token26] = ACTIONS(1945), + [aux_sym_cmd_identifier_token27] = ACTIONS(1945), + [aux_sym_cmd_identifier_token28] = ACTIONS(1945), + [aux_sym_cmd_identifier_token29] = ACTIONS(1945), + [aux_sym_cmd_identifier_token30] = ACTIONS(1945), + [aux_sym_cmd_identifier_token31] = ACTIONS(1945), + [aux_sym_cmd_identifier_token32] = ACTIONS(1945), + [aux_sym_cmd_identifier_token33] = ACTIONS(1945), + [aux_sym_cmd_identifier_token34] = ACTIONS(1945), + [aux_sym_cmd_identifier_token35] = ACTIONS(1945), + [aux_sym_cmd_identifier_token36] = ACTIONS(1945), + [anon_sym_true] = ACTIONS(1947), + [anon_sym_false] = ACTIONS(1947), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token38] = ACTIONS(1945), + [aux_sym_cmd_identifier_token39] = ACTIONS(1947), + [aux_sym_cmd_identifier_token40] = ACTIONS(1947), + [anon_sym_def] = ACTIONS(1945), + [anon_sym_export_DASHenv] = ACTIONS(1945), + [anon_sym_extern] = ACTIONS(1945), + [anon_sym_module] = ACTIONS(1945), + [anon_sym_use] = ACTIONS(1945), + [anon_sym_LPAREN] = ACTIONS(1947), + [anon_sym_DOLLAR] = ACTIONS(1947), + [anon_sym_error] = ACTIONS(1945), + [anon_sym_list] = ACTIONS(1945), + [anon_sym_DASH] = ACTIONS(1945), + [anon_sym_break] = ACTIONS(1945), + [anon_sym_continue] = ACTIONS(1945), + [anon_sym_for] = ACTIONS(1945), + [anon_sym_in] = ACTIONS(1945), + [anon_sym_loop] = ACTIONS(1945), + [anon_sym_make] = ACTIONS(1945), + [anon_sym_while] = ACTIONS(1945), + [anon_sym_do] = ACTIONS(1945), + [anon_sym_if] = ACTIONS(1945), + [anon_sym_else] = ACTIONS(1945), + [anon_sym_match] = ACTIONS(1945), + [anon_sym_RBRACE] = ACTIONS(1947), + [anon_sym_try] = ACTIONS(1945), + [anon_sym_catch] = ACTIONS(1945), + [anon_sym_return] = ACTIONS(1945), + [anon_sym_source] = ACTIONS(1945), + [anon_sym_source_DASHenv] = ACTIONS(1945), + [anon_sym_register] = ACTIONS(1945), + [anon_sym_hide] = ACTIONS(1945), + [anon_sym_hide_DASHenv] = ACTIONS(1945), + [anon_sym_overlay] = ACTIONS(1945), + [anon_sym_new] = ACTIONS(1945), + [anon_sym_as] = ACTIONS(1945), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1947), + [anon_sym_DOT] = ACTIONS(1973), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1947), + [aux_sym__val_number_decimal_token1] = ACTIONS(1945), + [aux_sym__val_number_decimal_token2] = ACTIONS(1947), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), + [aux_sym__val_number_token1] = ACTIONS(1947), + [aux_sym__val_number_token2] = ACTIONS(1947), + [aux_sym__val_number_token3] = ACTIONS(1947), + [anon_sym_DQUOTE] = ACTIONS(1947), + [sym__str_single_quotes] = ACTIONS(1947), + [sym__str_back_ticks] = ACTIONS(1947), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1947), + [anon_sym_PLUS] = ACTIONS(1945), [anon_sym_POUND] = ACTIONS(247), }, - [362] = { - [sym_cell_path] = STATE(643), - [sym_path] = STATE(532), - [sym_comment] = STATE(362), - [aux_sym_cell_path_repeat1] = STATE(424), - [anon_sym_export] = ACTIONS(1747), - [anon_sym_alias] = ACTIONS(1747), - [anon_sym_let] = ACTIONS(1747), - [anon_sym_let_DASHenv] = ACTIONS(1747), - [anon_sym_mut] = ACTIONS(1747), - [anon_sym_const] = ACTIONS(1747), - [aux_sym_cmd_identifier_token1] = ACTIONS(1747), - [aux_sym_cmd_identifier_token2] = ACTIONS(1747), - [aux_sym_cmd_identifier_token3] = ACTIONS(1747), - [aux_sym_cmd_identifier_token4] = ACTIONS(1747), - [aux_sym_cmd_identifier_token5] = ACTIONS(1747), - [aux_sym_cmd_identifier_token6] = ACTIONS(1747), - [aux_sym_cmd_identifier_token7] = ACTIONS(1747), - [aux_sym_cmd_identifier_token8] = ACTIONS(1747), - [aux_sym_cmd_identifier_token9] = ACTIONS(1747), - [aux_sym_cmd_identifier_token10] = ACTIONS(1747), - [aux_sym_cmd_identifier_token11] = ACTIONS(1747), - [aux_sym_cmd_identifier_token12] = ACTIONS(1747), - [aux_sym_cmd_identifier_token13] = ACTIONS(1747), - [aux_sym_cmd_identifier_token14] = ACTIONS(1747), - [aux_sym_cmd_identifier_token15] = ACTIONS(1747), - [aux_sym_cmd_identifier_token16] = ACTIONS(1747), - [aux_sym_cmd_identifier_token17] = ACTIONS(1747), - [aux_sym_cmd_identifier_token18] = ACTIONS(1747), - [aux_sym_cmd_identifier_token19] = ACTIONS(1747), - [aux_sym_cmd_identifier_token20] = ACTIONS(1747), - [aux_sym_cmd_identifier_token21] = ACTIONS(1747), - [aux_sym_cmd_identifier_token22] = ACTIONS(1747), - [aux_sym_cmd_identifier_token23] = ACTIONS(1747), - [aux_sym_cmd_identifier_token24] = ACTIONS(1747), - [aux_sym_cmd_identifier_token25] = ACTIONS(1747), - [aux_sym_cmd_identifier_token26] = ACTIONS(1747), - [aux_sym_cmd_identifier_token27] = ACTIONS(1747), - [aux_sym_cmd_identifier_token28] = ACTIONS(1747), - [aux_sym_cmd_identifier_token29] = ACTIONS(1747), - [aux_sym_cmd_identifier_token30] = ACTIONS(1747), - [aux_sym_cmd_identifier_token31] = ACTIONS(1747), - [aux_sym_cmd_identifier_token32] = ACTIONS(1747), - [aux_sym_cmd_identifier_token33] = ACTIONS(1747), - [aux_sym_cmd_identifier_token34] = ACTIONS(1747), - [aux_sym_cmd_identifier_token35] = ACTIONS(1747), - [aux_sym_cmd_identifier_token36] = ACTIONS(1747), - [anon_sym_true] = ACTIONS(1749), - [anon_sym_false] = ACTIONS(1749), - [anon_sym_null] = ACTIONS(1749), - [aux_sym_cmd_identifier_token38] = ACTIONS(1747), - [aux_sym_cmd_identifier_token39] = ACTIONS(1749), - [aux_sym_cmd_identifier_token40] = ACTIONS(1749), - [anon_sym_def] = ACTIONS(1747), - [anon_sym_export_DASHenv] = ACTIONS(1747), - [anon_sym_extern] = ACTIONS(1747), - [anon_sym_module] = ACTIONS(1747), - [anon_sym_use] = ACTIONS(1747), - [anon_sym_LPAREN] = ACTIONS(1749), - [anon_sym_DOLLAR] = ACTIONS(1749), - [anon_sym_error] = ACTIONS(1747), - [anon_sym_list] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_break] = ACTIONS(1747), - [anon_sym_continue] = ACTIONS(1747), - [anon_sym_for] = ACTIONS(1747), - [anon_sym_in] = ACTIONS(1747), - [anon_sym_loop] = ACTIONS(1747), - [anon_sym_make] = ACTIONS(1747), - [anon_sym_while] = ACTIONS(1747), - [anon_sym_do] = ACTIONS(1747), - [anon_sym_if] = ACTIONS(1747), - [anon_sym_else] = ACTIONS(1747), - [anon_sym_match] = ACTIONS(1747), - [anon_sym_RBRACE] = ACTIONS(1749), - [anon_sym_try] = ACTIONS(1747), - [anon_sym_catch] = ACTIONS(1747), - [anon_sym_return] = ACTIONS(1747), - [anon_sym_source] = ACTIONS(1747), - [anon_sym_source_DASHenv] = ACTIONS(1747), - [anon_sym_register] = ACTIONS(1747), - [anon_sym_hide] = ACTIONS(1747), - [anon_sym_hide_DASHenv] = ACTIONS(1747), - [anon_sym_overlay] = ACTIONS(1747), - [anon_sym_new] = ACTIONS(1747), - [anon_sym_as] = ACTIONS(1747), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1749), - [anon_sym_DOT] = ACTIONS(1903), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1749), - [aux_sym__val_number_decimal_token1] = ACTIONS(1747), - [aux_sym__val_number_decimal_token2] = ACTIONS(1749), - [aux_sym__val_number_decimal_token3] = ACTIONS(1749), - [aux_sym__val_number_decimal_token4] = ACTIONS(1749), - [aux_sym__val_number_token1] = ACTIONS(1749), - [aux_sym__val_number_token2] = ACTIONS(1749), - [aux_sym__val_number_token3] = ACTIONS(1749), - [anon_sym_DQUOTE] = ACTIONS(1749), - [sym__str_single_quotes] = ACTIONS(1749), - [sym__str_back_ticks] = ACTIONS(1749), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1749), - [anon_sym_PLUS] = ACTIONS(1747), + [379] = { + [sym_cell_path] = STATE(632), + [sym_path] = STATE(550), + [sym_comment] = STATE(379), + [aux_sym_cell_path_repeat1] = STATE(434), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_alias] = ACTIONS(1890), + [anon_sym_let] = ACTIONS(1890), + [anon_sym_let_DASHenv] = ACTIONS(1890), + [anon_sym_mut] = ACTIONS(1890), + [anon_sym_const] = ACTIONS(1890), + [aux_sym_cmd_identifier_token1] = ACTIONS(1890), + [aux_sym_cmd_identifier_token2] = ACTIONS(1890), + [aux_sym_cmd_identifier_token3] = ACTIONS(1890), + [aux_sym_cmd_identifier_token4] = ACTIONS(1890), + [aux_sym_cmd_identifier_token5] = ACTIONS(1890), + [aux_sym_cmd_identifier_token6] = ACTIONS(1890), + [aux_sym_cmd_identifier_token7] = ACTIONS(1890), + [aux_sym_cmd_identifier_token8] = ACTIONS(1890), + [aux_sym_cmd_identifier_token9] = ACTIONS(1890), + [aux_sym_cmd_identifier_token10] = ACTIONS(1890), + [aux_sym_cmd_identifier_token11] = ACTIONS(1890), + [aux_sym_cmd_identifier_token12] = ACTIONS(1890), + [aux_sym_cmd_identifier_token13] = ACTIONS(1890), + [aux_sym_cmd_identifier_token14] = ACTIONS(1890), + [aux_sym_cmd_identifier_token15] = ACTIONS(1890), + [aux_sym_cmd_identifier_token16] = ACTIONS(1890), + [aux_sym_cmd_identifier_token17] = ACTIONS(1890), + [aux_sym_cmd_identifier_token18] = ACTIONS(1890), + [aux_sym_cmd_identifier_token19] = ACTIONS(1890), + [aux_sym_cmd_identifier_token20] = ACTIONS(1890), + [aux_sym_cmd_identifier_token21] = ACTIONS(1890), + [aux_sym_cmd_identifier_token22] = ACTIONS(1890), + [aux_sym_cmd_identifier_token23] = ACTIONS(1890), + [aux_sym_cmd_identifier_token24] = ACTIONS(1890), + [aux_sym_cmd_identifier_token25] = ACTIONS(1890), + [aux_sym_cmd_identifier_token26] = ACTIONS(1890), + [aux_sym_cmd_identifier_token27] = ACTIONS(1890), + [aux_sym_cmd_identifier_token28] = ACTIONS(1890), + [aux_sym_cmd_identifier_token29] = ACTIONS(1890), + [aux_sym_cmd_identifier_token30] = ACTIONS(1890), + [aux_sym_cmd_identifier_token31] = ACTIONS(1890), + [aux_sym_cmd_identifier_token32] = ACTIONS(1890), + [aux_sym_cmd_identifier_token33] = ACTIONS(1890), + [aux_sym_cmd_identifier_token34] = ACTIONS(1890), + [aux_sym_cmd_identifier_token35] = ACTIONS(1890), + [aux_sym_cmd_identifier_token36] = ACTIONS(1890), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1892), + [aux_sym_cmd_identifier_token38] = ACTIONS(1890), + [aux_sym_cmd_identifier_token39] = ACTIONS(1892), + [aux_sym_cmd_identifier_token40] = ACTIONS(1892), + [anon_sym_def] = ACTIONS(1890), + [anon_sym_export_DASHenv] = ACTIONS(1890), + [anon_sym_extern] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_use] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1892), + [anon_sym_error] = ACTIONS(1890), + [anon_sym_list] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_in] = ACTIONS(1890), + [anon_sym_loop] = ACTIONS(1890), + [anon_sym_make] = ACTIONS(1890), + [anon_sym_while] = ACTIONS(1890), + [anon_sym_do] = ACTIONS(1890), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_else] = ACTIONS(1890), + [anon_sym_match] = ACTIONS(1890), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_try] = ACTIONS(1890), + [anon_sym_catch] = ACTIONS(1890), + [anon_sym_return] = ACTIONS(1890), + [anon_sym_source] = ACTIONS(1890), + [anon_sym_source_DASHenv] = ACTIONS(1890), + [anon_sym_register] = ACTIONS(1890), + [anon_sym_hide] = ACTIONS(1890), + [anon_sym_hide_DASHenv] = ACTIONS(1890), + [anon_sym_overlay] = ACTIONS(1890), + [anon_sym_new] = ACTIONS(1890), + [anon_sym_as] = ACTIONS(1890), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1892), + [anon_sym_DOT] = ACTIONS(1973), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1892), + [aux_sym__val_number_decimal_token1] = ACTIONS(1890), + [aux_sym__val_number_decimal_token2] = ACTIONS(1892), + [aux_sym__val_number_decimal_token3] = ACTIONS(1892), + [aux_sym__val_number_decimal_token4] = ACTIONS(1892), + [aux_sym__val_number_token1] = ACTIONS(1892), + [aux_sym__val_number_token2] = ACTIONS(1892), + [aux_sym__val_number_token3] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [sym__str_single_quotes] = ACTIONS(1892), + [sym__str_back_ticks] = ACTIONS(1892), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1890), [anon_sym_POUND] = ACTIONS(247), }, - [363] = { - [sym_cmd_identifier] = STATE(4953), - [sym__expression_parenthesized] = STATE(4040), - [sym_expr_unary] = STATE(2425), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2425), - [sym__expr_binary_expression_parenthesized] = STATE(3985), - [sym_expr_parenthesized] = STATE(2154), - [sym_val_range] = STATE(4041), - [sym__value] = STATE(2425), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2431), - [sym_val_variable] = STATE(2143), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1693), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_env_var] = STATE(7227), - [sym__command_parenthesized] = STATE(5310), - [sym_comment] = STATE(363), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1242), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), + [380] = { + [sym_cell_path] = STATE(611), + [sym_path] = STATE(550), + [sym_comment] = STATE(380), + [aux_sym_cell_path_repeat1] = STATE(434), + [anon_sym_export] = ACTIONS(1851), + [anon_sym_alias] = ACTIONS(1851), + [anon_sym_let] = ACTIONS(1851), + [anon_sym_let_DASHenv] = ACTIONS(1851), + [anon_sym_mut] = ACTIONS(1851), + [anon_sym_const] = ACTIONS(1851), + [aux_sym_cmd_identifier_token1] = ACTIONS(1851), + [aux_sym_cmd_identifier_token2] = ACTIONS(1851), + [aux_sym_cmd_identifier_token3] = ACTIONS(1851), + [aux_sym_cmd_identifier_token4] = ACTIONS(1851), + [aux_sym_cmd_identifier_token5] = ACTIONS(1851), + [aux_sym_cmd_identifier_token6] = ACTIONS(1851), + [aux_sym_cmd_identifier_token7] = ACTIONS(1851), + [aux_sym_cmd_identifier_token8] = ACTIONS(1851), + [aux_sym_cmd_identifier_token9] = ACTIONS(1851), + [aux_sym_cmd_identifier_token10] = ACTIONS(1851), + [aux_sym_cmd_identifier_token11] = ACTIONS(1851), + [aux_sym_cmd_identifier_token12] = ACTIONS(1851), + [aux_sym_cmd_identifier_token13] = ACTIONS(1851), + [aux_sym_cmd_identifier_token14] = ACTIONS(1851), + [aux_sym_cmd_identifier_token15] = ACTIONS(1851), + [aux_sym_cmd_identifier_token16] = ACTIONS(1851), + [aux_sym_cmd_identifier_token17] = ACTIONS(1851), + [aux_sym_cmd_identifier_token18] = ACTIONS(1851), + [aux_sym_cmd_identifier_token19] = ACTIONS(1851), + [aux_sym_cmd_identifier_token20] = ACTIONS(1851), + [aux_sym_cmd_identifier_token21] = ACTIONS(1851), + [aux_sym_cmd_identifier_token22] = ACTIONS(1851), + [aux_sym_cmd_identifier_token23] = ACTIONS(1851), + [aux_sym_cmd_identifier_token24] = ACTIONS(1851), + [aux_sym_cmd_identifier_token25] = ACTIONS(1851), + [aux_sym_cmd_identifier_token26] = ACTIONS(1851), + [aux_sym_cmd_identifier_token27] = ACTIONS(1851), + [aux_sym_cmd_identifier_token28] = ACTIONS(1851), + [aux_sym_cmd_identifier_token29] = ACTIONS(1851), + [aux_sym_cmd_identifier_token30] = ACTIONS(1851), + [aux_sym_cmd_identifier_token31] = ACTIONS(1851), + [aux_sym_cmd_identifier_token32] = ACTIONS(1851), + [aux_sym_cmd_identifier_token33] = ACTIONS(1851), + [aux_sym_cmd_identifier_token34] = ACTIONS(1851), + [aux_sym_cmd_identifier_token35] = ACTIONS(1851), + [aux_sym_cmd_identifier_token36] = ACTIONS(1851), + [anon_sym_true] = ACTIONS(1853), + [anon_sym_false] = ACTIONS(1853), + [anon_sym_null] = ACTIONS(1853), + [aux_sym_cmd_identifier_token38] = ACTIONS(1851), + [aux_sym_cmd_identifier_token39] = ACTIONS(1853), + [aux_sym_cmd_identifier_token40] = ACTIONS(1853), + [anon_sym_def] = ACTIONS(1851), + [anon_sym_export_DASHenv] = ACTIONS(1851), + [anon_sym_extern] = ACTIONS(1851), + [anon_sym_module] = ACTIONS(1851), + [anon_sym_use] = ACTIONS(1851), + [anon_sym_LPAREN] = ACTIONS(1853), + [anon_sym_DOLLAR] = ACTIONS(1853), + [anon_sym_error] = ACTIONS(1851), + [anon_sym_list] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_break] = ACTIONS(1851), + [anon_sym_continue] = ACTIONS(1851), + [anon_sym_for] = ACTIONS(1851), + [anon_sym_in] = ACTIONS(1851), + [anon_sym_loop] = ACTIONS(1851), + [anon_sym_make] = ACTIONS(1851), + [anon_sym_while] = ACTIONS(1851), + [anon_sym_do] = ACTIONS(1851), + [anon_sym_if] = ACTIONS(1851), + [anon_sym_else] = ACTIONS(1851), + [anon_sym_match] = ACTIONS(1851), + [anon_sym_RBRACE] = ACTIONS(1853), + [anon_sym_try] = ACTIONS(1851), + [anon_sym_catch] = ACTIONS(1851), + [anon_sym_return] = ACTIONS(1851), + [anon_sym_source] = ACTIONS(1851), + [anon_sym_source_DASHenv] = ACTIONS(1851), + [anon_sym_register] = ACTIONS(1851), + [anon_sym_hide] = ACTIONS(1851), + [anon_sym_hide_DASHenv] = ACTIONS(1851), + [anon_sym_overlay] = ACTIONS(1851), + [anon_sym_new] = ACTIONS(1851), + [anon_sym_as] = ACTIONS(1851), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1853), + [anon_sym_DOT] = ACTIONS(1973), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1853), + [aux_sym__val_number_decimal_token1] = ACTIONS(1851), + [aux_sym__val_number_decimal_token2] = ACTIONS(1853), + [aux_sym__val_number_decimal_token3] = ACTIONS(1853), + [aux_sym__val_number_decimal_token4] = ACTIONS(1853), + [aux_sym__val_number_token1] = ACTIONS(1853), + [aux_sym__val_number_token2] = ACTIONS(1853), + [aux_sym__val_number_token3] = ACTIONS(1853), + [anon_sym_DQUOTE] = ACTIONS(1853), + [sym__str_single_quotes] = ACTIONS(1853), + [sym__str_back_ticks] = ACTIONS(1853), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1853), + [anon_sym_PLUS] = ACTIONS(1851), [anon_sym_POUND] = ACTIONS(247), }, - [364] = { - [sym_comment] = STATE(364), - [anon_sym_export] = ACTIONS(1021), - [anon_sym_alias] = ACTIONS(1021), - [anon_sym_let] = ACTIONS(1021), - [anon_sym_let_DASHenv] = ACTIONS(1021), - [anon_sym_mut] = ACTIONS(1021), - [anon_sym_const] = ACTIONS(1021), - [aux_sym_cmd_identifier_token1] = ACTIONS(1021), - [aux_sym_cmd_identifier_token2] = ACTIONS(1021), - [aux_sym_cmd_identifier_token3] = ACTIONS(1021), - [aux_sym_cmd_identifier_token4] = ACTIONS(1021), - [aux_sym_cmd_identifier_token5] = ACTIONS(1021), - [aux_sym_cmd_identifier_token6] = ACTIONS(1021), - [aux_sym_cmd_identifier_token7] = ACTIONS(1021), - [aux_sym_cmd_identifier_token8] = ACTIONS(1021), - [aux_sym_cmd_identifier_token9] = ACTIONS(1021), - [aux_sym_cmd_identifier_token10] = ACTIONS(1021), - [aux_sym_cmd_identifier_token11] = ACTIONS(1021), - [aux_sym_cmd_identifier_token12] = ACTIONS(1021), - [aux_sym_cmd_identifier_token13] = ACTIONS(1021), - [aux_sym_cmd_identifier_token14] = ACTIONS(1021), - [aux_sym_cmd_identifier_token15] = ACTIONS(1021), - [aux_sym_cmd_identifier_token16] = ACTIONS(1021), - [aux_sym_cmd_identifier_token17] = ACTIONS(1021), - [aux_sym_cmd_identifier_token18] = ACTIONS(1021), - [aux_sym_cmd_identifier_token19] = ACTIONS(1021), - [aux_sym_cmd_identifier_token20] = ACTIONS(1021), - [aux_sym_cmd_identifier_token21] = ACTIONS(1021), - [aux_sym_cmd_identifier_token22] = ACTIONS(1021), - [aux_sym_cmd_identifier_token23] = ACTIONS(1021), - [aux_sym_cmd_identifier_token24] = ACTIONS(1021), - [aux_sym_cmd_identifier_token25] = ACTIONS(1021), - [aux_sym_cmd_identifier_token26] = ACTIONS(1021), - [aux_sym_cmd_identifier_token27] = ACTIONS(1021), - [aux_sym_cmd_identifier_token28] = ACTIONS(1021), - [aux_sym_cmd_identifier_token29] = ACTIONS(1021), - [aux_sym_cmd_identifier_token30] = ACTIONS(1021), - [aux_sym_cmd_identifier_token31] = ACTIONS(1021), - [aux_sym_cmd_identifier_token32] = ACTIONS(1021), - [aux_sym_cmd_identifier_token33] = ACTIONS(1021), - [aux_sym_cmd_identifier_token34] = ACTIONS(1021), - [aux_sym_cmd_identifier_token35] = ACTIONS(1021), - [aux_sym_cmd_identifier_token36] = ACTIONS(1021), - [anon_sym_true] = ACTIONS(1021), - [anon_sym_false] = ACTIONS(1021), - [anon_sym_null] = ACTIONS(1021), - [aux_sym_cmd_identifier_token38] = ACTIONS(1021), - [aux_sym_cmd_identifier_token39] = ACTIONS(1021), - [aux_sym_cmd_identifier_token40] = ACTIONS(1021), - [anon_sym_def] = ACTIONS(1021), - [anon_sym_export_DASHenv] = ACTIONS(1021), - [anon_sym_extern] = ACTIONS(1021), - [anon_sym_module] = ACTIONS(1021), - [anon_sym_use] = ACTIONS(1021), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(1021), - [anon_sym_error] = ACTIONS(1021), - [anon_sym_list] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_break] = ACTIONS(1021), - [anon_sym_continue] = ACTIONS(1021), - [anon_sym_for] = ACTIONS(1021), - [anon_sym_in] = ACTIONS(1021), - [anon_sym_loop] = ACTIONS(1021), - [anon_sym_make] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1021), - [anon_sym_do] = ACTIONS(1021), - [anon_sym_if] = ACTIONS(1021), - [anon_sym_else] = ACTIONS(1021), - [anon_sym_match] = ACTIONS(1021), - [anon_sym_RBRACE] = ACTIONS(1021), - [anon_sym_try] = ACTIONS(1021), - [anon_sym_catch] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1021), - [anon_sym_source] = ACTIONS(1021), - [anon_sym_source_DASHenv] = ACTIONS(1021), - [anon_sym_register] = ACTIONS(1021), - [anon_sym_hide] = ACTIONS(1021), - [anon_sym_hide_DASHenv] = ACTIONS(1021), - [anon_sym_overlay] = ACTIONS(1021), - [anon_sym_new] = ACTIONS(1021), - [anon_sym_as] = ACTIONS(1021), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1021), - [anon_sym_DOT_DOT2] = ACTIONS(1021), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1021), - [aux_sym__val_number_decimal_token1] = ACTIONS(1021), - [aux_sym__val_number_decimal_token2] = ACTIONS(1021), - [aux_sym__val_number_decimal_token3] = ACTIONS(1021), - [aux_sym__val_number_decimal_token4] = ACTIONS(1021), - [aux_sym__val_number_token1] = ACTIONS(1021), - [aux_sym__val_number_token2] = ACTIONS(1021), - [aux_sym__val_number_token3] = ACTIONS(1021), - [anon_sym_DQUOTE] = ACTIONS(1021), - [sym__str_single_quotes] = ACTIONS(1021), - [sym__str_back_ticks] = ACTIONS(1021), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1021), - [sym__entry_separator] = ACTIONS(1023), - [anon_sym_PLUS] = ACTIONS(1021), + [381] = { + [sym_path] = STATE(482), + [sym_comment] = STATE(381), + [aux_sym_cell_path_repeat1] = STATE(412), + [anon_sym_export] = ACTIONS(1017), + [anon_sym_alias] = ACTIONS(1017), + [anon_sym_let] = ACTIONS(1017), + [anon_sym_let_DASHenv] = ACTIONS(1017), + [anon_sym_mut] = ACTIONS(1017), + [anon_sym_const] = ACTIONS(1017), + [aux_sym_cmd_identifier_token1] = ACTIONS(1017), + [aux_sym_cmd_identifier_token2] = ACTIONS(1017), + [aux_sym_cmd_identifier_token3] = ACTIONS(1017), + [aux_sym_cmd_identifier_token4] = ACTIONS(1017), + [aux_sym_cmd_identifier_token5] = ACTIONS(1017), + [aux_sym_cmd_identifier_token6] = ACTIONS(1017), + [aux_sym_cmd_identifier_token7] = ACTIONS(1017), + [aux_sym_cmd_identifier_token8] = ACTIONS(1017), + [aux_sym_cmd_identifier_token9] = ACTIONS(1017), + [aux_sym_cmd_identifier_token10] = ACTIONS(1017), + [aux_sym_cmd_identifier_token11] = ACTIONS(1017), + [aux_sym_cmd_identifier_token12] = ACTIONS(1017), + [aux_sym_cmd_identifier_token13] = ACTIONS(1017), + [aux_sym_cmd_identifier_token14] = ACTIONS(1017), + [aux_sym_cmd_identifier_token15] = ACTIONS(1017), + [aux_sym_cmd_identifier_token16] = ACTIONS(1017), + [aux_sym_cmd_identifier_token17] = ACTIONS(1017), + [aux_sym_cmd_identifier_token18] = ACTIONS(1017), + [aux_sym_cmd_identifier_token19] = ACTIONS(1017), + [aux_sym_cmd_identifier_token20] = ACTIONS(1017), + [aux_sym_cmd_identifier_token21] = ACTIONS(1017), + [aux_sym_cmd_identifier_token22] = ACTIONS(1017), + [aux_sym_cmd_identifier_token23] = ACTIONS(1017), + [aux_sym_cmd_identifier_token24] = ACTIONS(1017), + [aux_sym_cmd_identifier_token25] = ACTIONS(1017), + [aux_sym_cmd_identifier_token26] = ACTIONS(1017), + [aux_sym_cmd_identifier_token27] = ACTIONS(1017), + [aux_sym_cmd_identifier_token28] = ACTIONS(1017), + [aux_sym_cmd_identifier_token29] = ACTIONS(1017), + [aux_sym_cmd_identifier_token30] = ACTIONS(1017), + [aux_sym_cmd_identifier_token31] = ACTIONS(1017), + [aux_sym_cmd_identifier_token32] = ACTIONS(1017), + [aux_sym_cmd_identifier_token33] = ACTIONS(1017), + [aux_sym_cmd_identifier_token34] = ACTIONS(1017), + [aux_sym_cmd_identifier_token35] = ACTIONS(1017), + [aux_sym_cmd_identifier_token36] = ACTIONS(1017), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_null] = ACTIONS(1017), + [aux_sym_cmd_identifier_token38] = ACTIONS(1017), + [aux_sym_cmd_identifier_token39] = ACTIONS(1017), + [aux_sym_cmd_identifier_token40] = ACTIONS(1017), + [anon_sym_def] = ACTIONS(1017), + [anon_sym_export_DASHenv] = ACTIONS(1017), + [anon_sym_extern] = ACTIONS(1017), + [anon_sym_module] = ACTIONS(1017), + [anon_sym_use] = ACTIONS(1017), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_DOLLAR] = ACTIONS(1017), + [anon_sym_error] = ACTIONS(1017), + [anon_sym_list] = ACTIONS(1017), + [anon_sym_DASH] = ACTIONS(1017), + [anon_sym_break] = ACTIONS(1017), + [anon_sym_continue] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(1017), + [anon_sym_in] = ACTIONS(1017), + [anon_sym_loop] = ACTIONS(1017), + [anon_sym_make] = ACTIONS(1017), + [anon_sym_while] = ACTIONS(1017), + [anon_sym_do] = ACTIONS(1017), + [anon_sym_if] = ACTIONS(1017), + [anon_sym_else] = ACTIONS(1017), + [anon_sym_match] = ACTIONS(1017), + [anon_sym_RBRACE] = ACTIONS(1017), + [anon_sym_try] = ACTIONS(1017), + [anon_sym_catch] = ACTIONS(1017), + [anon_sym_return] = ACTIONS(1017), + [anon_sym_source] = ACTIONS(1017), + [anon_sym_source_DASHenv] = ACTIONS(1017), + [anon_sym_register] = ACTIONS(1017), + [anon_sym_hide] = ACTIONS(1017), + [anon_sym_hide_DASHenv] = ACTIONS(1017), + [anon_sym_overlay] = ACTIONS(1017), + [anon_sym_new] = ACTIONS(1017), + [anon_sym_as] = ACTIONS(1017), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1017), + [anon_sym_DOT] = ACTIONS(1831), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1017), + [aux_sym__val_number_decimal_token1] = ACTIONS(1017), + [aux_sym__val_number_decimal_token2] = ACTIONS(1017), + [aux_sym__val_number_decimal_token3] = ACTIONS(1017), + [aux_sym__val_number_decimal_token4] = ACTIONS(1017), + [aux_sym__val_number_token1] = ACTIONS(1017), + [aux_sym__val_number_token2] = ACTIONS(1017), + [aux_sym__val_number_token3] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1017), + [sym__str_single_quotes] = ACTIONS(1017), + [sym__str_back_ticks] = ACTIONS(1017), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1017), + [sym__entry_separator] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(1017), [anon_sym_POUND] = ACTIONS(3), }, - [365] = { - [sym_cell_path] = STATE(644), - [sym_path] = STATE(532), - [sym_comment] = STATE(365), - [aux_sym_cell_path_repeat1] = STATE(424), - [anon_sym_export] = ACTIONS(1824), - [anon_sym_alias] = ACTIONS(1824), - [anon_sym_let] = ACTIONS(1824), - [anon_sym_let_DASHenv] = ACTIONS(1824), - [anon_sym_mut] = ACTIONS(1824), - [anon_sym_const] = ACTIONS(1824), - [aux_sym_cmd_identifier_token1] = ACTIONS(1824), - [aux_sym_cmd_identifier_token2] = ACTIONS(1824), - [aux_sym_cmd_identifier_token3] = ACTIONS(1824), - [aux_sym_cmd_identifier_token4] = ACTIONS(1824), - [aux_sym_cmd_identifier_token5] = ACTIONS(1824), - [aux_sym_cmd_identifier_token6] = ACTIONS(1824), - [aux_sym_cmd_identifier_token7] = ACTIONS(1824), - [aux_sym_cmd_identifier_token8] = ACTIONS(1824), - [aux_sym_cmd_identifier_token9] = ACTIONS(1824), - [aux_sym_cmd_identifier_token10] = ACTIONS(1824), - [aux_sym_cmd_identifier_token11] = ACTIONS(1824), - [aux_sym_cmd_identifier_token12] = ACTIONS(1824), - [aux_sym_cmd_identifier_token13] = ACTIONS(1824), - [aux_sym_cmd_identifier_token14] = ACTIONS(1824), - [aux_sym_cmd_identifier_token15] = ACTIONS(1824), - [aux_sym_cmd_identifier_token16] = ACTIONS(1824), - [aux_sym_cmd_identifier_token17] = ACTIONS(1824), - [aux_sym_cmd_identifier_token18] = ACTIONS(1824), - [aux_sym_cmd_identifier_token19] = ACTIONS(1824), - [aux_sym_cmd_identifier_token20] = ACTIONS(1824), - [aux_sym_cmd_identifier_token21] = ACTIONS(1824), - [aux_sym_cmd_identifier_token22] = ACTIONS(1824), - [aux_sym_cmd_identifier_token23] = ACTIONS(1824), - [aux_sym_cmd_identifier_token24] = ACTIONS(1824), - [aux_sym_cmd_identifier_token25] = ACTIONS(1824), - [aux_sym_cmd_identifier_token26] = ACTIONS(1824), - [aux_sym_cmd_identifier_token27] = ACTIONS(1824), - [aux_sym_cmd_identifier_token28] = ACTIONS(1824), - [aux_sym_cmd_identifier_token29] = ACTIONS(1824), - [aux_sym_cmd_identifier_token30] = ACTIONS(1824), - [aux_sym_cmd_identifier_token31] = ACTIONS(1824), - [aux_sym_cmd_identifier_token32] = ACTIONS(1824), - [aux_sym_cmd_identifier_token33] = ACTIONS(1824), - [aux_sym_cmd_identifier_token34] = ACTIONS(1824), - [aux_sym_cmd_identifier_token35] = ACTIONS(1824), - [aux_sym_cmd_identifier_token36] = ACTIONS(1824), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_null] = ACTIONS(1826), - [aux_sym_cmd_identifier_token38] = ACTIONS(1824), - [aux_sym_cmd_identifier_token39] = ACTIONS(1826), - [aux_sym_cmd_identifier_token40] = ACTIONS(1826), - [anon_sym_def] = ACTIONS(1824), - [anon_sym_export_DASHenv] = ACTIONS(1824), - [anon_sym_extern] = ACTIONS(1824), - [anon_sym_module] = ACTIONS(1824), - [anon_sym_use] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1826), - [anon_sym_DOLLAR] = ACTIONS(1826), - [anon_sym_error] = ACTIONS(1824), - [anon_sym_list] = ACTIONS(1824), - [anon_sym_DASH] = ACTIONS(1824), - [anon_sym_break] = ACTIONS(1824), - [anon_sym_continue] = ACTIONS(1824), - [anon_sym_for] = ACTIONS(1824), - [anon_sym_in] = ACTIONS(1824), - [anon_sym_loop] = ACTIONS(1824), - [anon_sym_make] = ACTIONS(1824), - [anon_sym_while] = ACTIONS(1824), - [anon_sym_do] = ACTIONS(1824), - [anon_sym_if] = ACTIONS(1824), - [anon_sym_else] = ACTIONS(1824), - [anon_sym_match] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1824), - [anon_sym_catch] = ACTIONS(1824), - [anon_sym_return] = ACTIONS(1824), - [anon_sym_source] = ACTIONS(1824), - [anon_sym_source_DASHenv] = ACTIONS(1824), - [anon_sym_register] = ACTIONS(1824), - [anon_sym_hide] = ACTIONS(1824), - [anon_sym_hide_DASHenv] = ACTIONS(1824), - [anon_sym_overlay] = ACTIONS(1824), - [anon_sym_new] = ACTIONS(1824), - [anon_sym_as] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1903), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1826), - [aux_sym__val_number_decimal_token1] = ACTIONS(1824), - [aux_sym__val_number_decimal_token2] = ACTIONS(1826), - [aux_sym__val_number_decimal_token3] = ACTIONS(1826), - [aux_sym__val_number_decimal_token4] = ACTIONS(1826), - [aux_sym__val_number_token1] = ACTIONS(1826), - [aux_sym__val_number_token2] = ACTIONS(1826), - [aux_sym__val_number_token3] = ACTIONS(1826), - [anon_sym_DQUOTE] = ACTIONS(1826), - [sym__str_single_quotes] = ACTIONS(1826), - [sym__str_back_ticks] = ACTIONS(1826), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1826), - [anon_sym_PLUS] = ACTIONS(1824), - [anon_sym_POUND] = ACTIONS(247), + [382] = { + [sym_comment] = STATE(382), + [anon_sym_export] = ACTIONS(1643), + [anon_sym_alias] = ACTIONS(1643), + [anon_sym_let] = ACTIONS(1643), + [anon_sym_let_DASHenv] = ACTIONS(1643), + [anon_sym_mut] = ACTIONS(1643), + [anon_sym_const] = ACTIONS(1643), + [aux_sym_cmd_identifier_token1] = ACTIONS(1643), + [aux_sym_cmd_identifier_token2] = ACTIONS(1643), + [aux_sym_cmd_identifier_token3] = ACTIONS(1643), + [aux_sym_cmd_identifier_token4] = ACTIONS(1643), + [aux_sym_cmd_identifier_token5] = ACTIONS(1643), + [aux_sym_cmd_identifier_token6] = ACTIONS(1643), + [aux_sym_cmd_identifier_token7] = ACTIONS(1643), + [aux_sym_cmd_identifier_token8] = ACTIONS(1643), + [aux_sym_cmd_identifier_token9] = ACTIONS(1643), + [aux_sym_cmd_identifier_token10] = ACTIONS(1643), + [aux_sym_cmd_identifier_token11] = ACTIONS(1643), + [aux_sym_cmd_identifier_token12] = ACTIONS(1643), + [aux_sym_cmd_identifier_token13] = ACTIONS(1643), + [aux_sym_cmd_identifier_token14] = ACTIONS(1643), + [aux_sym_cmd_identifier_token15] = ACTIONS(1643), + [aux_sym_cmd_identifier_token16] = ACTIONS(1643), + [aux_sym_cmd_identifier_token17] = ACTIONS(1643), + [aux_sym_cmd_identifier_token18] = ACTIONS(1643), + [aux_sym_cmd_identifier_token19] = ACTIONS(1643), + [aux_sym_cmd_identifier_token20] = ACTIONS(1643), + [aux_sym_cmd_identifier_token21] = ACTIONS(1643), + [aux_sym_cmd_identifier_token22] = ACTIONS(1643), + [aux_sym_cmd_identifier_token23] = ACTIONS(1643), + [aux_sym_cmd_identifier_token24] = ACTIONS(1643), + [aux_sym_cmd_identifier_token25] = ACTIONS(1643), + [aux_sym_cmd_identifier_token26] = ACTIONS(1643), + [aux_sym_cmd_identifier_token27] = ACTIONS(1643), + [aux_sym_cmd_identifier_token28] = ACTIONS(1643), + [aux_sym_cmd_identifier_token29] = ACTIONS(1643), + [aux_sym_cmd_identifier_token30] = ACTIONS(1643), + [aux_sym_cmd_identifier_token31] = ACTIONS(1643), + [aux_sym_cmd_identifier_token32] = ACTIONS(1643), + [aux_sym_cmd_identifier_token33] = ACTIONS(1643), + [aux_sym_cmd_identifier_token34] = ACTIONS(1643), + [aux_sym_cmd_identifier_token35] = ACTIONS(1643), + [aux_sym_cmd_identifier_token36] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_null] = ACTIONS(1643), + [aux_sym_cmd_identifier_token38] = ACTIONS(1643), + [aux_sym_cmd_identifier_token39] = ACTIONS(1643), + [aux_sym_cmd_identifier_token40] = ACTIONS(1643), + [anon_sym_def] = ACTIONS(1643), + [anon_sym_export_DASHenv] = ACTIONS(1643), + [anon_sym_extern] = ACTIONS(1643), + [anon_sym_module] = ACTIONS(1643), + [anon_sym_use] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(1643), + [anon_sym_error] = ACTIONS(1643), + [anon_sym_list] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_break] = ACTIONS(1643), + [anon_sym_continue] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_loop] = ACTIONS(1643), + [anon_sym_make] = ACTIONS(1643), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_do] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_else] = ACTIONS(1643), + [anon_sym_match] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), + [anon_sym_try] = ACTIONS(1643), + [anon_sym_catch] = ACTIONS(1643), + [anon_sym_return] = ACTIONS(1643), + [anon_sym_source] = ACTIONS(1643), + [anon_sym_source_DASHenv] = ACTIONS(1643), + [anon_sym_register] = ACTIONS(1643), + [anon_sym_hide] = ACTIONS(1643), + [anon_sym_hide_DASHenv] = ACTIONS(1643), + [anon_sym_overlay] = ACTIONS(1643), + [anon_sym_new] = ACTIONS(1643), + [anon_sym_as] = ACTIONS(1643), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1643), + [anon_sym_DOT_DOT2] = ACTIONS(1643), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1643), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1643), + [aux_sym__val_number_decimal_token3] = ACTIONS(1643), + [aux_sym__val_number_decimal_token4] = ACTIONS(1643), + [aux_sym__val_number_token1] = ACTIONS(1643), + [aux_sym__val_number_token2] = ACTIONS(1643), + [aux_sym__val_number_token3] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1643), + [sym__str_single_quotes] = ACTIONS(1643), + [sym__str_back_ticks] = ACTIONS(1643), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1643), + [sym__entry_separator] = ACTIONS(1645), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_POUND] = ACTIONS(3), }, - [366] = { - [sym_comment] = STATE(366), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_alias] = ACTIONS(1569), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_let_DASHenv] = ACTIONS(1569), - [anon_sym_mut] = ACTIONS(1569), - [anon_sym_const] = ACTIONS(1569), - [aux_sym_cmd_identifier_token1] = ACTIONS(1569), - [aux_sym_cmd_identifier_token2] = ACTIONS(1569), - [aux_sym_cmd_identifier_token3] = ACTIONS(1569), - [aux_sym_cmd_identifier_token4] = ACTIONS(1569), - [aux_sym_cmd_identifier_token5] = ACTIONS(1569), - [aux_sym_cmd_identifier_token6] = ACTIONS(1569), - [aux_sym_cmd_identifier_token7] = ACTIONS(1569), - [aux_sym_cmd_identifier_token8] = ACTIONS(1569), - [aux_sym_cmd_identifier_token9] = ACTIONS(1569), - [aux_sym_cmd_identifier_token10] = ACTIONS(1569), - [aux_sym_cmd_identifier_token11] = ACTIONS(1569), - [aux_sym_cmd_identifier_token12] = ACTIONS(1569), - [aux_sym_cmd_identifier_token13] = ACTIONS(1569), - [aux_sym_cmd_identifier_token14] = ACTIONS(1569), - [aux_sym_cmd_identifier_token15] = ACTIONS(1569), - [aux_sym_cmd_identifier_token16] = ACTIONS(1569), - [aux_sym_cmd_identifier_token17] = ACTIONS(1569), - [aux_sym_cmd_identifier_token18] = ACTIONS(1569), - [aux_sym_cmd_identifier_token19] = ACTIONS(1569), - [aux_sym_cmd_identifier_token20] = ACTIONS(1569), - [aux_sym_cmd_identifier_token21] = ACTIONS(1569), - [aux_sym_cmd_identifier_token22] = ACTIONS(1569), - [aux_sym_cmd_identifier_token23] = ACTIONS(1569), - [aux_sym_cmd_identifier_token24] = ACTIONS(1569), - [aux_sym_cmd_identifier_token25] = ACTIONS(1569), - [aux_sym_cmd_identifier_token26] = ACTIONS(1569), - [aux_sym_cmd_identifier_token27] = ACTIONS(1569), - [aux_sym_cmd_identifier_token28] = ACTIONS(1569), - [aux_sym_cmd_identifier_token29] = ACTIONS(1569), - [aux_sym_cmd_identifier_token30] = ACTIONS(1569), - [aux_sym_cmd_identifier_token31] = ACTIONS(1569), - [aux_sym_cmd_identifier_token32] = ACTIONS(1569), - [aux_sym_cmd_identifier_token33] = ACTIONS(1569), - [aux_sym_cmd_identifier_token34] = ACTIONS(1569), - [aux_sym_cmd_identifier_token35] = ACTIONS(1569), - [aux_sym_cmd_identifier_token36] = ACTIONS(1569), - [anon_sym_true] = ACTIONS(1571), - [anon_sym_false] = ACTIONS(1571), - [anon_sym_null] = ACTIONS(1571), - [aux_sym_cmd_identifier_token38] = ACTIONS(1569), - [aux_sym_cmd_identifier_token39] = ACTIONS(1571), - [aux_sym_cmd_identifier_token40] = ACTIONS(1571), - [anon_sym_def] = ACTIONS(1569), - [anon_sym_export_DASHenv] = ACTIONS(1569), - [anon_sym_extern] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_use] = ACTIONS(1569), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_DOLLAR] = ACTIONS(1571), - [anon_sym_error] = ACTIONS(1569), - [anon_sym_list] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_break] = ACTIONS(1569), - [anon_sym_continue] = ACTIONS(1569), - [anon_sym_for] = ACTIONS(1569), - [anon_sym_in] = ACTIONS(1569), - [anon_sym_loop] = ACTIONS(1569), - [anon_sym_make] = ACTIONS(1569), - [anon_sym_while] = ACTIONS(1569), - [anon_sym_do] = ACTIONS(1569), - [anon_sym_if] = ACTIONS(1569), - [anon_sym_else] = ACTIONS(1569), - [anon_sym_match] = ACTIONS(1569), - [anon_sym_RBRACE] = ACTIONS(1571), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_catch] = ACTIONS(1569), - [anon_sym_return] = ACTIONS(1569), - [anon_sym_source] = ACTIONS(1569), - [anon_sym_source_DASHenv] = ACTIONS(1569), - [anon_sym_register] = ACTIONS(1569), - [anon_sym_hide] = ACTIONS(1569), - [anon_sym_hide_DASHenv] = ACTIONS(1569), - [anon_sym_overlay] = ACTIONS(1569), - [anon_sym_new] = ACTIONS(1569), - [anon_sym_as] = ACTIONS(1569), - [anon_sym_LPAREN2] = ACTIONS(1571), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1571), - [aux_sym__immediate_decimal_token1] = ACTIONS(1913), - [aux_sym__immediate_decimal_token2] = ACTIONS(1915), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1571), - [aux_sym__val_number_decimal_token1] = ACTIONS(1569), - [aux_sym__val_number_decimal_token2] = ACTIONS(1571), - [aux_sym__val_number_decimal_token3] = ACTIONS(1571), - [aux_sym__val_number_decimal_token4] = ACTIONS(1571), - [aux_sym__val_number_token1] = ACTIONS(1571), - [aux_sym__val_number_token2] = ACTIONS(1571), - [aux_sym__val_number_token3] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [sym__str_single_quotes] = ACTIONS(1571), - [sym__str_back_ticks] = ACTIONS(1571), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1569), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1569), + [383] = { + [sym_comment] = STATE(383), + [anon_sym_export] = ACTIONS(2035), + [anon_sym_alias] = ACTIONS(2035), + [anon_sym_let] = ACTIONS(2035), + [anon_sym_let_DASHenv] = ACTIONS(2035), + [anon_sym_mut] = ACTIONS(2035), + [anon_sym_const] = ACTIONS(2035), + [aux_sym_cmd_identifier_token1] = ACTIONS(2035), + [aux_sym_cmd_identifier_token2] = ACTIONS(2035), + [aux_sym_cmd_identifier_token3] = ACTIONS(2035), + [aux_sym_cmd_identifier_token4] = ACTIONS(2035), + [aux_sym_cmd_identifier_token5] = ACTIONS(2035), + [aux_sym_cmd_identifier_token6] = ACTIONS(2035), + [aux_sym_cmd_identifier_token7] = ACTIONS(2035), + [aux_sym_cmd_identifier_token8] = ACTIONS(2035), + [aux_sym_cmd_identifier_token9] = ACTIONS(2035), + [aux_sym_cmd_identifier_token10] = ACTIONS(2035), + [aux_sym_cmd_identifier_token11] = ACTIONS(2035), + [aux_sym_cmd_identifier_token12] = ACTIONS(2035), + [aux_sym_cmd_identifier_token13] = ACTIONS(2035), + [aux_sym_cmd_identifier_token14] = ACTIONS(2035), + [aux_sym_cmd_identifier_token15] = ACTIONS(2035), + [aux_sym_cmd_identifier_token16] = ACTIONS(2035), + [aux_sym_cmd_identifier_token17] = ACTIONS(2035), + [aux_sym_cmd_identifier_token18] = ACTIONS(2035), + [aux_sym_cmd_identifier_token19] = ACTIONS(2035), + [aux_sym_cmd_identifier_token20] = ACTIONS(2035), + [aux_sym_cmd_identifier_token21] = ACTIONS(2035), + [aux_sym_cmd_identifier_token22] = ACTIONS(2035), + [aux_sym_cmd_identifier_token23] = ACTIONS(2035), + [aux_sym_cmd_identifier_token24] = ACTIONS(2035), + [aux_sym_cmd_identifier_token25] = ACTIONS(2035), + [aux_sym_cmd_identifier_token26] = ACTIONS(2035), + [aux_sym_cmd_identifier_token27] = ACTIONS(2035), + [aux_sym_cmd_identifier_token28] = ACTIONS(2035), + [aux_sym_cmd_identifier_token29] = ACTIONS(2035), + [aux_sym_cmd_identifier_token30] = ACTIONS(2035), + [aux_sym_cmd_identifier_token31] = ACTIONS(2035), + [aux_sym_cmd_identifier_token32] = ACTIONS(2035), + [aux_sym_cmd_identifier_token33] = ACTIONS(2035), + [aux_sym_cmd_identifier_token34] = ACTIONS(2035), + [aux_sym_cmd_identifier_token35] = ACTIONS(2035), + [aux_sym_cmd_identifier_token36] = ACTIONS(2035), + [anon_sym_true] = ACTIONS(2035), + [anon_sym_false] = ACTIONS(2035), + [anon_sym_null] = ACTIONS(2035), + [aux_sym_cmd_identifier_token38] = ACTIONS(2035), + [aux_sym_cmd_identifier_token39] = ACTIONS(2035), + [aux_sym_cmd_identifier_token40] = ACTIONS(2035), + [anon_sym_def] = ACTIONS(2035), + [anon_sym_export_DASHenv] = ACTIONS(2035), + [anon_sym_extern] = ACTIONS(2035), + [anon_sym_module] = ACTIONS(2035), + [anon_sym_use] = ACTIONS(2035), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_DOLLAR] = ACTIONS(2035), + [anon_sym_error] = ACTIONS(2035), + [anon_sym_list] = ACTIONS(2035), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_break] = ACTIONS(2035), + [anon_sym_continue] = ACTIONS(2035), + [anon_sym_for] = ACTIONS(2035), + [anon_sym_in] = ACTIONS(2035), + [anon_sym_loop] = ACTIONS(2035), + [anon_sym_make] = ACTIONS(2035), + [anon_sym_while] = ACTIONS(2035), + [anon_sym_do] = ACTIONS(2035), + [anon_sym_if] = ACTIONS(2035), + [anon_sym_else] = ACTIONS(2035), + [anon_sym_match] = ACTIONS(2035), + [anon_sym_RBRACE] = ACTIONS(2035), + [anon_sym_try] = ACTIONS(2035), + [anon_sym_catch] = ACTIONS(2035), + [anon_sym_return] = ACTIONS(2035), + [anon_sym_source] = ACTIONS(2035), + [anon_sym_source_DASHenv] = ACTIONS(2035), + [anon_sym_register] = ACTIONS(2035), + [anon_sym_hide] = ACTIONS(2035), + [anon_sym_hide_DASHenv] = ACTIONS(2035), + [anon_sym_overlay] = ACTIONS(2035), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_as] = ACTIONS(2035), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2035), + [anon_sym_DOT_DOT2] = ACTIONS(2037), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2039), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2039), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2035), + [aux_sym__val_number_decimal_token1] = ACTIONS(2035), + [aux_sym__val_number_decimal_token2] = ACTIONS(2035), + [aux_sym__val_number_decimal_token3] = ACTIONS(2035), + [aux_sym__val_number_decimal_token4] = ACTIONS(2035), + [aux_sym__val_number_token1] = ACTIONS(2035), + [aux_sym__val_number_token2] = ACTIONS(2035), + [aux_sym__val_number_token3] = ACTIONS(2035), + [anon_sym_DQUOTE] = ACTIONS(2035), + [sym__str_single_quotes] = ACTIONS(2035), + [sym__str_back_ticks] = ACTIONS(2035), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2035), + [sym__entry_separator] = ACTIONS(2041), + [anon_sym_PLUS] = ACTIONS(2035), + [anon_sym_POUND] = ACTIONS(3), + }, + [384] = { + [sym_comment] = STATE(384), + [anon_sym_export] = ACTIONS(2043), + [anon_sym_alias] = ACTIONS(2043), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_DASHenv] = ACTIONS(2043), + [anon_sym_mut] = ACTIONS(2043), + [anon_sym_const] = ACTIONS(2043), + [aux_sym_cmd_identifier_token1] = ACTIONS(2043), + [aux_sym_cmd_identifier_token2] = ACTIONS(2043), + [aux_sym_cmd_identifier_token3] = ACTIONS(2043), + [aux_sym_cmd_identifier_token4] = ACTIONS(2043), + [aux_sym_cmd_identifier_token5] = ACTIONS(2043), + [aux_sym_cmd_identifier_token6] = ACTIONS(2043), + [aux_sym_cmd_identifier_token7] = ACTIONS(2043), + [aux_sym_cmd_identifier_token8] = ACTIONS(2043), + [aux_sym_cmd_identifier_token9] = ACTIONS(2043), + [aux_sym_cmd_identifier_token10] = ACTIONS(2043), + [aux_sym_cmd_identifier_token11] = ACTIONS(2043), + [aux_sym_cmd_identifier_token12] = ACTIONS(2043), + [aux_sym_cmd_identifier_token13] = ACTIONS(2043), + [aux_sym_cmd_identifier_token14] = ACTIONS(2043), + [aux_sym_cmd_identifier_token15] = ACTIONS(2043), + [aux_sym_cmd_identifier_token16] = ACTIONS(2043), + [aux_sym_cmd_identifier_token17] = ACTIONS(2043), + [aux_sym_cmd_identifier_token18] = ACTIONS(2043), + [aux_sym_cmd_identifier_token19] = ACTIONS(2043), + [aux_sym_cmd_identifier_token20] = ACTIONS(2043), + [aux_sym_cmd_identifier_token21] = ACTIONS(2043), + [aux_sym_cmd_identifier_token22] = ACTIONS(2043), + [aux_sym_cmd_identifier_token23] = ACTIONS(2043), + [aux_sym_cmd_identifier_token24] = ACTIONS(2043), + [aux_sym_cmd_identifier_token25] = ACTIONS(2043), + [aux_sym_cmd_identifier_token26] = ACTIONS(2043), + [aux_sym_cmd_identifier_token27] = ACTIONS(2043), + [aux_sym_cmd_identifier_token28] = ACTIONS(2043), + [aux_sym_cmd_identifier_token29] = ACTIONS(2043), + [aux_sym_cmd_identifier_token30] = ACTIONS(2043), + [aux_sym_cmd_identifier_token31] = ACTIONS(2043), + [aux_sym_cmd_identifier_token32] = ACTIONS(2043), + [aux_sym_cmd_identifier_token33] = ACTIONS(2043), + [aux_sym_cmd_identifier_token34] = ACTIONS(2043), + [aux_sym_cmd_identifier_token35] = ACTIONS(2043), + [aux_sym_cmd_identifier_token36] = ACTIONS(2043), + [anon_sym_true] = ACTIONS(2043), + [anon_sym_false] = ACTIONS(2043), + [anon_sym_null] = ACTIONS(2043), + [aux_sym_cmd_identifier_token38] = ACTIONS(2043), + [aux_sym_cmd_identifier_token39] = ACTIONS(2043), + [aux_sym_cmd_identifier_token40] = ACTIONS(2043), + [anon_sym_def] = ACTIONS(2043), + [anon_sym_export_DASHenv] = ACTIONS(2043), + [anon_sym_extern] = ACTIONS(2043), + [anon_sym_module] = ACTIONS(2043), + [anon_sym_use] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_DOLLAR] = ACTIONS(2043), + [anon_sym_error] = ACTIONS(2043), + [anon_sym_list] = ACTIONS(2043), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_break] = ACTIONS(2043), + [anon_sym_continue] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_in] = ACTIONS(2043), + [anon_sym_loop] = ACTIONS(2043), + [anon_sym_make] = ACTIONS(2043), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_do] = ACTIONS(2043), + [anon_sym_if] = ACTIONS(2043), + [anon_sym_else] = ACTIONS(2043), + [anon_sym_match] = ACTIONS(2043), + [anon_sym_RBRACE] = ACTIONS(2043), + [anon_sym_try] = ACTIONS(2043), + [anon_sym_catch] = ACTIONS(2043), + [anon_sym_return] = ACTIONS(2043), + [anon_sym_source] = ACTIONS(2043), + [anon_sym_source_DASHenv] = ACTIONS(2043), + [anon_sym_register] = ACTIONS(2043), + [anon_sym_hide] = ACTIONS(2043), + [anon_sym_hide_DASHenv] = ACTIONS(2043), + [anon_sym_overlay] = ACTIONS(2043), + [anon_sym_new] = ACTIONS(2043), + [anon_sym_as] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2043), + [anon_sym_DOT_DOT2] = ACTIONS(2045), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2047), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2047), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2043), + [aux_sym__val_number_decimal_token1] = ACTIONS(2043), + [aux_sym__val_number_decimal_token2] = ACTIONS(2043), + [aux_sym__val_number_decimal_token3] = ACTIONS(2043), + [aux_sym__val_number_decimal_token4] = ACTIONS(2043), + [aux_sym__val_number_token1] = ACTIONS(2043), + [aux_sym__val_number_token2] = ACTIONS(2043), + [aux_sym__val_number_token3] = ACTIONS(2043), + [anon_sym_DQUOTE] = ACTIONS(2043), + [sym__str_single_quotes] = ACTIONS(2043), + [sym__str_back_ticks] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2043), + [sym__entry_separator] = ACTIONS(2049), + [anon_sym_PLUS] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(3), + }, + [385] = { + [sym_comment] = STATE(385), + [anon_sym_export] = ACTIONS(2051), + [anon_sym_alias] = ACTIONS(2051), + [anon_sym_let] = ACTIONS(2051), + [anon_sym_let_DASHenv] = ACTIONS(2051), + [anon_sym_mut] = ACTIONS(2051), + [anon_sym_const] = ACTIONS(2051), + [aux_sym_cmd_identifier_token1] = ACTIONS(2051), + [aux_sym_cmd_identifier_token2] = ACTIONS(2051), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [aux_sym_cmd_identifier_token6] = ACTIONS(2051), + [aux_sym_cmd_identifier_token7] = ACTIONS(2051), + [aux_sym_cmd_identifier_token8] = ACTIONS(2051), + [aux_sym_cmd_identifier_token9] = ACTIONS(2051), + [aux_sym_cmd_identifier_token10] = ACTIONS(2051), + [aux_sym_cmd_identifier_token11] = ACTIONS(2051), + [aux_sym_cmd_identifier_token12] = ACTIONS(2051), + [aux_sym_cmd_identifier_token13] = ACTIONS(2051), + [aux_sym_cmd_identifier_token14] = ACTIONS(2051), + [aux_sym_cmd_identifier_token15] = ACTIONS(2051), + [aux_sym_cmd_identifier_token16] = ACTIONS(2051), + [aux_sym_cmd_identifier_token17] = ACTIONS(2051), + [aux_sym_cmd_identifier_token18] = ACTIONS(2051), + [aux_sym_cmd_identifier_token19] = ACTIONS(2051), + [aux_sym_cmd_identifier_token20] = ACTIONS(2051), + [aux_sym_cmd_identifier_token21] = ACTIONS(2051), + [aux_sym_cmd_identifier_token22] = ACTIONS(2051), + [aux_sym_cmd_identifier_token23] = ACTIONS(2051), + [aux_sym_cmd_identifier_token24] = ACTIONS(2051), + [aux_sym_cmd_identifier_token25] = ACTIONS(2051), + [aux_sym_cmd_identifier_token26] = ACTIONS(2051), + [aux_sym_cmd_identifier_token27] = ACTIONS(2051), + [aux_sym_cmd_identifier_token28] = ACTIONS(2051), + [aux_sym_cmd_identifier_token29] = ACTIONS(2051), + [aux_sym_cmd_identifier_token30] = ACTIONS(2051), + [aux_sym_cmd_identifier_token31] = ACTIONS(2051), + [aux_sym_cmd_identifier_token32] = ACTIONS(2051), + [aux_sym_cmd_identifier_token33] = ACTIONS(2051), + [aux_sym_cmd_identifier_token34] = ACTIONS(2051), + [aux_sym_cmd_identifier_token35] = ACTIONS(2051), + [aux_sym_cmd_identifier_token36] = ACTIONS(2051), + [anon_sym_true] = ACTIONS(2051), + [anon_sym_false] = ACTIONS(2051), + [anon_sym_null] = ACTIONS(2051), + [aux_sym_cmd_identifier_token38] = ACTIONS(2051), + [aux_sym_cmd_identifier_token39] = ACTIONS(2051), + [aux_sym_cmd_identifier_token40] = ACTIONS(2051), + [anon_sym_def] = ACTIONS(2051), + [anon_sym_export_DASHenv] = ACTIONS(2051), + [anon_sym_extern] = ACTIONS(2051), + [anon_sym_module] = ACTIONS(2051), + [anon_sym_use] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(2051), + [anon_sym_DOLLAR] = ACTIONS(2051), + [anon_sym_error] = ACTIONS(2051), + [anon_sym_list] = ACTIONS(2051), + [anon_sym_DASH] = ACTIONS(2051), + [anon_sym_break] = ACTIONS(2051), + [anon_sym_continue] = ACTIONS(2051), + [anon_sym_for] = ACTIONS(2051), + [anon_sym_in] = ACTIONS(2051), + [anon_sym_loop] = ACTIONS(2051), + [anon_sym_make] = ACTIONS(2051), + [anon_sym_while] = ACTIONS(2051), + [anon_sym_do] = ACTIONS(2051), + [anon_sym_if] = ACTIONS(2051), + [anon_sym_else] = ACTIONS(2051), + [anon_sym_match] = ACTIONS(2051), + [anon_sym_RBRACE] = ACTIONS(2051), + [anon_sym_try] = ACTIONS(2051), + [anon_sym_catch] = ACTIONS(2051), + [anon_sym_return] = ACTIONS(2051), + [anon_sym_source] = ACTIONS(2051), + [anon_sym_source_DASHenv] = ACTIONS(2051), + [anon_sym_register] = ACTIONS(2051), + [anon_sym_hide] = ACTIONS(2051), + [anon_sym_hide_DASHenv] = ACTIONS(2051), + [anon_sym_overlay] = ACTIONS(2051), + [anon_sym_new] = ACTIONS(2051), + [anon_sym_as] = ACTIONS(2051), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2051), + [anon_sym_DOT_DOT2] = ACTIONS(2053), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2055), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2051), + [aux_sym__val_number_decimal_token1] = ACTIONS(2051), + [aux_sym__val_number_decimal_token2] = ACTIONS(2051), + [aux_sym__val_number_decimal_token3] = ACTIONS(2051), + [aux_sym__val_number_decimal_token4] = ACTIONS(2051), + [aux_sym__val_number_token1] = ACTIONS(2051), + [aux_sym__val_number_token2] = ACTIONS(2051), + [aux_sym__val_number_token3] = ACTIONS(2051), + [anon_sym_DQUOTE] = ACTIONS(2051), + [sym__str_single_quotes] = ACTIONS(2051), + [sym__str_back_ticks] = ACTIONS(2051), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2051), + [sym__entry_separator] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2051), + [anon_sym_POUND] = ACTIONS(3), + }, + [386] = { + [sym_comment] = STATE(386), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_alias] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_let_DASHenv] = ACTIONS(1048), + [anon_sym_mut] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1048), + [aux_sym_cmd_identifier_token1] = ACTIONS(1048), + [aux_sym_cmd_identifier_token2] = ACTIONS(1048), + [aux_sym_cmd_identifier_token3] = ACTIONS(1048), + [aux_sym_cmd_identifier_token4] = ACTIONS(1048), + [aux_sym_cmd_identifier_token5] = ACTIONS(1048), + [aux_sym_cmd_identifier_token6] = ACTIONS(1048), + [aux_sym_cmd_identifier_token7] = ACTIONS(1048), + [aux_sym_cmd_identifier_token8] = ACTIONS(1048), + [aux_sym_cmd_identifier_token9] = ACTIONS(1048), + [aux_sym_cmd_identifier_token10] = ACTIONS(1048), + [aux_sym_cmd_identifier_token11] = ACTIONS(1048), + [aux_sym_cmd_identifier_token12] = ACTIONS(1048), + [aux_sym_cmd_identifier_token13] = ACTIONS(1048), + [aux_sym_cmd_identifier_token14] = ACTIONS(1048), + [aux_sym_cmd_identifier_token15] = ACTIONS(1048), + [aux_sym_cmd_identifier_token16] = ACTIONS(1048), + [aux_sym_cmd_identifier_token17] = ACTIONS(1048), + [aux_sym_cmd_identifier_token18] = ACTIONS(1048), + [aux_sym_cmd_identifier_token19] = ACTIONS(1048), + [aux_sym_cmd_identifier_token20] = ACTIONS(1048), + [aux_sym_cmd_identifier_token21] = ACTIONS(1048), + [aux_sym_cmd_identifier_token22] = ACTIONS(1048), + [aux_sym_cmd_identifier_token23] = ACTIONS(1048), + [aux_sym_cmd_identifier_token24] = ACTIONS(1048), + [aux_sym_cmd_identifier_token25] = ACTIONS(1048), + [aux_sym_cmd_identifier_token26] = ACTIONS(1048), + [aux_sym_cmd_identifier_token27] = ACTIONS(1048), + [aux_sym_cmd_identifier_token28] = ACTIONS(1048), + [aux_sym_cmd_identifier_token29] = ACTIONS(1048), + [aux_sym_cmd_identifier_token30] = ACTIONS(1048), + [aux_sym_cmd_identifier_token31] = ACTIONS(1048), + [aux_sym_cmd_identifier_token32] = ACTIONS(1048), + [aux_sym_cmd_identifier_token33] = ACTIONS(1048), + [aux_sym_cmd_identifier_token34] = ACTIONS(1048), + [aux_sym_cmd_identifier_token35] = ACTIONS(1048), + [aux_sym_cmd_identifier_token36] = ACTIONS(1048), + [anon_sym_true] = ACTIONS(1050), + [anon_sym_false] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1050), + [aux_sym_cmd_identifier_token38] = ACTIONS(1048), + [aux_sym_cmd_identifier_token39] = ACTIONS(1050), + [aux_sym_cmd_identifier_token40] = ACTIONS(1050), + [anon_sym_def] = ACTIONS(1048), + [anon_sym_export_DASHenv] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_use] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_error] = ACTIONS(1048), + [anon_sym_list] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_in] = ACTIONS(1048), + [anon_sym_loop] = ACTIONS(1048), + [anon_sym_make] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_else] = ACTIONS(1048), + [anon_sym_match] = ACTIONS(1048), + [anon_sym_RBRACE] = ACTIONS(1050), + [anon_sym_try] = ACTIONS(1048), + [anon_sym_catch] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_source] = ACTIONS(1048), + [anon_sym_source_DASHenv] = ACTIONS(1048), + [anon_sym_register] = ACTIONS(1048), + [anon_sym_hide] = ACTIONS(1048), + [anon_sym_hide_DASHenv] = ACTIONS(1048), + [anon_sym_overlay] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1048), + [anon_sym_as] = ACTIONS(1048), + [anon_sym_QMARK2] = ACTIONS(1050), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1050), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1050), + [aux_sym__val_number_decimal_token1] = ACTIONS(1048), + [aux_sym__val_number_decimal_token2] = ACTIONS(1050), + [aux_sym__val_number_decimal_token3] = ACTIONS(1050), + [aux_sym__val_number_decimal_token4] = ACTIONS(1050), + [aux_sym__val_number_token1] = ACTIONS(1050), + [aux_sym__val_number_token2] = ACTIONS(1050), + [aux_sym__val_number_token3] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym__str_single_quotes] = ACTIONS(1050), + [sym__str_back_ticks] = ACTIONS(1050), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1050), + [aux_sym_record_entry_token1] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1048), [anon_sym_POUND] = ACTIONS(247), }, - [367] = { - [sym_cell_path] = STATE(645), - [sym_path] = STATE(532), - [sym_comment] = STATE(367), - [aux_sym_cell_path_repeat1] = STATE(424), + [387] = { + [sym_cell_path] = STATE(612), + [sym_path] = STATE(550), + [sym_comment] = STATE(387), + [aux_sym_cell_path_repeat1] = STATE(434), [anon_sym_export] = ACTIONS(1855), [anon_sym_alias] = ACTIONS(1855), [anon_sym_let] = ACTIONS(1855), @@ -120525,7 +118493,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(1855), [anon_sym_as] = ACTIONS(1855), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1857), - [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_DOT] = ACTIONS(1973), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1857), [aux_sym__val_number_decimal_token1] = ACTIONS(1855), [aux_sym__val_number_decimal_token2] = ACTIONS(1857), @@ -120541,1244 +118509,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1855), [anon_sym_POUND] = ACTIONS(247), }, - [368] = { - [sym_cell_path] = STATE(649), - [sym_path] = STATE(532), - [sym_comment] = STATE(368), - [aux_sym_cell_path_repeat1] = STATE(424), - [anon_sym_export] = ACTIONS(1796), - [anon_sym_alias] = ACTIONS(1796), - [anon_sym_let] = ACTIONS(1796), - [anon_sym_let_DASHenv] = ACTIONS(1796), - [anon_sym_mut] = ACTIONS(1796), - [anon_sym_const] = ACTIONS(1796), - [aux_sym_cmd_identifier_token1] = ACTIONS(1796), - [aux_sym_cmd_identifier_token2] = ACTIONS(1796), - [aux_sym_cmd_identifier_token3] = ACTIONS(1796), - [aux_sym_cmd_identifier_token4] = ACTIONS(1796), - [aux_sym_cmd_identifier_token5] = ACTIONS(1796), - [aux_sym_cmd_identifier_token6] = ACTIONS(1796), - [aux_sym_cmd_identifier_token7] = ACTIONS(1796), - [aux_sym_cmd_identifier_token8] = ACTIONS(1796), - [aux_sym_cmd_identifier_token9] = ACTIONS(1796), - [aux_sym_cmd_identifier_token10] = ACTIONS(1796), - [aux_sym_cmd_identifier_token11] = ACTIONS(1796), - [aux_sym_cmd_identifier_token12] = ACTIONS(1796), - [aux_sym_cmd_identifier_token13] = ACTIONS(1796), - [aux_sym_cmd_identifier_token14] = ACTIONS(1796), - [aux_sym_cmd_identifier_token15] = ACTIONS(1796), - [aux_sym_cmd_identifier_token16] = ACTIONS(1796), - [aux_sym_cmd_identifier_token17] = ACTIONS(1796), - [aux_sym_cmd_identifier_token18] = ACTIONS(1796), - [aux_sym_cmd_identifier_token19] = ACTIONS(1796), - [aux_sym_cmd_identifier_token20] = ACTIONS(1796), - [aux_sym_cmd_identifier_token21] = ACTIONS(1796), - [aux_sym_cmd_identifier_token22] = ACTIONS(1796), - [aux_sym_cmd_identifier_token23] = ACTIONS(1796), - [aux_sym_cmd_identifier_token24] = ACTIONS(1796), - [aux_sym_cmd_identifier_token25] = ACTIONS(1796), - [aux_sym_cmd_identifier_token26] = ACTIONS(1796), - [aux_sym_cmd_identifier_token27] = ACTIONS(1796), - [aux_sym_cmd_identifier_token28] = ACTIONS(1796), - [aux_sym_cmd_identifier_token29] = ACTIONS(1796), - [aux_sym_cmd_identifier_token30] = ACTIONS(1796), - [aux_sym_cmd_identifier_token31] = ACTIONS(1796), - [aux_sym_cmd_identifier_token32] = ACTIONS(1796), - [aux_sym_cmd_identifier_token33] = ACTIONS(1796), - [aux_sym_cmd_identifier_token34] = ACTIONS(1796), - [aux_sym_cmd_identifier_token35] = ACTIONS(1796), - [aux_sym_cmd_identifier_token36] = ACTIONS(1796), - [anon_sym_true] = ACTIONS(1798), - [anon_sym_false] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1798), - [aux_sym_cmd_identifier_token38] = ACTIONS(1796), - [aux_sym_cmd_identifier_token39] = ACTIONS(1798), - [aux_sym_cmd_identifier_token40] = ACTIONS(1798), - [anon_sym_def] = ACTIONS(1796), - [anon_sym_export_DASHenv] = ACTIONS(1796), - [anon_sym_extern] = ACTIONS(1796), - [anon_sym_module] = ACTIONS(1796), - [anon_sym_use] = ACTIONS(1796), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_DOLLAR] = ACTIONS(1798), - [anon_sym_error] = ACTIONS(1796), - [anon_sym_list] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_for] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_loop] = ACTIONS(1796), - [anon_sym_make] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_do] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_match] = ACTIONS(1796), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_catch] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_source] = ACTIONS(1796), - [anon_sym_source_DASHenv] = ACTIONS(1796), - [anon_sym_register] = ACTIONS(1796), - [anon_sym_hide] = ACTIONS(1796), - [anon_sym_hide_DASHenv] = ACTIONS(1796), - [anon_sym_overlay] = ACTIONS(1796), - [anon_sym_new] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1903), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1798), - [aux_sym__val_number_decimal_token1] = ACTIONS(1796), - [aux_sym__val_number_decimal_token2] = ACTIONS(1798), - [aux_sym__val_number_decimal_token3] = ACTIONS(1798), - [aux_sym__val_number_decimal_token4] = ACTIONS(1798), - [aux_sym__val_number_token1] = ACTIONS(1798), - [aux_sym__val_number_token2] = ACTIONS(1798), - [aux_sym__val_number_token3] = ACTIONS(1798), - [anon_sym_DQUOTE] = ACTIONS(1798), - [sym__str_single_quotes] = ACTIONS(1798), - [sym__str_back_ticks] = ACTIONS(1798), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_POUND] = ACTIONS(247), - }, - [369] = { - [sym_cmd_identifier] = STATE(4982), - [sym_ctrl_if] = STATE(5365), - [sym_block] = STATE(5387), - [sym__expression] = STATE(5387), - [sym_expr_unary] = STATE(2604), - [sym__expr_unary_minus] = STATE(2610), - [sym_expr_binary] = STATE(2604), - [sym__expr_binary_expression] = STATE(4065), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(4062), - [sym__value] = STATE(2604), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2547), - [sym_val_variable] = STATE(2175), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(3316), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__str_double_quotes] = STATE(2144), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2607), - [sym__inter_double_quotes] = STATE(2626), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_command] = STATE(5387), - [sym_comment] = STATE(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(21), - [aux_sym_cmd_identifier_token3] = ACTIONS(21), - [aux_sym_cmd_identifier_token4] = ACTIONS(21), - [aux_sym_cmd_identifier_token5] = ACTIONS(21), - [aux_sym_cmd_identifier_token6] = ACTIONS(21), - [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(21), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(21), - [aux_sym_cmd_identifier_token11] = ACTIONS(21), - [aux_sym_cmd_identifier_token12] = ACTIONS(21), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(21), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(21), - [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(21), - [aux_sym_cmd_identifier_token19] = ACTIONS(21), - [aux_sym_cmd_identifier_token20] = ACTIONS(21), - [aux_sym_cmd_identifier_token21] = ACTIONS(21), - [aux_sym_cmd_identifier_token22] = ACTIONS(21), - [aux_sym_cmd_identifier_token23] = ACTIONS(19), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(21), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(21), - [aux_sym_cmd_identifier_token28] = ACTIONS(21), - [aux_sym_cmd_identifier_token29] = ACTIONS(21), - [aux_sym_cmd_identifier_token30] = ACTIONS(21), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(21), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(21), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(19), - [anon_sym_true] = ACTIONS(1917), - [anon_sym_false] = ACTIONS(1917), - [anon_sym_null] = ACTIONS(1919), - [aux_sym_cmd_identifier_token38] = ACTIONS(1921), - [aux_sym_cmd_identifier_token39] = ACTIONS(1923), - [aux_sym_cmd_identifier_token40] = ACTIONS(1923), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_if] = ACTIONS(67), - [aux_sym_ctrl_match_token1] = ACTIONS(1925), - [anon_sym_DOT_DOT] = ACTIONS(73), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(93), - [anon_sym_DOT_DOT_LT] = ACTIONS(93), - [aux_sym__val_number_decimal_token1] = ACTIONS(1927), - [aux_sym__val_number_decimal_token2] = ACTIONS(1929), - [aux_sym__val_number_decimal_token3] = ACTIONS(1931), - [aux_sym__val_number_decimal_token4] = ACTIONS(1933), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(109), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(247), - }, - [370] = { - [sym_cell_path] = STATE(650), - [sym_path] = STATE(532), - [sym_comment] = STATE(370), - [aux_sym_cell_path_repeat1] = STATE(424), - [anon_sym_export] = ACTIONS(1808), - [anon_sym_alias] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1808), - [anon_sym_let_DASHenv] = ACTIONS(1808), - [anon_sym_mut] = ACTIONS(1808), - [anon_sym_const] = ACTIONS(1808), - [aux_sym_cmd_identifier_token1] = ACTIONS(1808), - [aux_sym_cmd_identifier_token2] = ACTIONS(1808), - [aux_sym_cmd_identifier_token3] = ACTIONS(1808), - [aux_sym_cmd_identifier_token4] = ACTIONS(1808), - [aux_sym_cmd_identifier_token5] = ACTIONS(1808), - [aux_sym_cmd_identifier_token6] = ACTIONS(1808), - [aux_sym_cmd_identifier_token7] = ACTIONS(1808), - [aux_sym_cmd_identifier_token8] = ACTIONS(1808), - [aux_sym_cmd_identifier_token9] = ACTIONS(1808), - [aux_sym_cmd_identifier_token10] = ACTIONS(1808), - [aux_sym_cmd_identifier_token11] = ACTIONS(1808), - [aux_sym_cmd_identifier_token12] = ACTIONS(1808), - [aux_sym_cmd_identifier_token13] = ACTIONS(1808), - [aux_sym_cmd_identifier_token14] = ACTIONS(1808), - [aux_sym_cmd_identifier_token15] = ACTIONS(1808), - [aux_sym_cmd_identifier_token16] = ACTIONS(1808), - [aux_sym_cmd_identifier_token17] = ACTIONS(1808), - [aux_sym_cmd_identifier_token18] = ACTIONS(1808), - [aux_sym_cmd_identifier_token19] = ACTIONS(1808), - [aux_sym_cmd_identifier_token20] = ACTIONS(1808), - [aux_sym_cmd_identifier_token21] = ACTIONS(1808), - [aux_sym_cmd_identifier_token22] = ACTIONS(1808), - [aux_sym_cmd_identifier_token23] = ACTIONS(1808), - [aux_sym_cmd_identifier_token24] = ACTIONS(1808), - [aux_sym_cmd_identifier_token25] = ACTIONS(1808), - [aux_sym_cmd_identifier_token26] = ACTIONS(1808), - [aux_sym_cmd_identifier_token27] = ACTIONS(1808), - [aux_sym_cmd_identifier_token28] = ACTIONS(1808), - [aux_sym_cmd_identifier_token29] = ACTIONS(1808), - [aux_sym_cmd_identifier_token30] = ACTIONS(1808), - [aux_sym_cmd_identifier_token31] = ACTIONS(1808), - [aux_sym_cmd_identifier_token32] = ACTIONS(1808), - [aux_sym_cmd_identifier_token33] = ACTIONS(1808), - [aux_sym_cmd_identifier_token34] = ACTIONS(1808), - [aux_sym_cmd_identifier_token35] = ACTIONS(1808), - [aux_sym_cmd_identifier_token36] = ACTIONS(1808), - [anon_sym_true] = ACTIONS(1810), - [anon_sym_false] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1810), - [aux_sym_cmd_identifier_token38] = ACTIONS(1808), - [aux_sym_cmd_identifier_token39] = ACTIONS(1810), - [aux_sym_cmd_identifier_token40] = ACTIONS(1810), - [anon_sym_def] = ACTIONS(1808), - [anon_sym_export_DASHenv] = ACTIONS(1808), - [anon_sym_extern] = ACTIONS(1808), - [anon_sym_module] = ACTIONS(1808), - [anon_sym_use] = ACTIONS(1808), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_DOLLAR] = ACTIONS(1810), - [anon_sym_error] = ACTIONS(1808), - [anon_sym_list] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_for] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_loop] = ACTIONS(1808), - [anon_sym_make] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_do] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_catch] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_source] = ACTIONS(1808), - [anon_sym_source_DASHenv] = ACTIONS(1808), - [anon_sym_register] = ACTIONS(1808), - [anon_sym_hide] = ACTIONS(1808), - [anon_sym_hide_DASHenv] = ACTIONS(1808), - [anon_sym_overlay] = ACTIONS(1808), - [anon_sym_new] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1903), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1810), - [aux_sym__val_number_decimal_token1] = ACTIONS(1808), - [aux_sym__val_number_decimal_token2] = ACTIONS(1810), - [aux_sym__val_number_decimal_token3] = ACTIONS(1810), - [aux_sym__val_number_decimal_token4] = ACTIONS(1810), - [aux_sym__val_number_token1] = ACTIONS(1810), - [aux_sym__val_number_token2] = ACTIONS(1810), - [aux_sym__val_number_token3] = ACTIONS(1810), - [anon_sym_DQUOTE] = ACTIONS(1810), - [sym__str_single_quotes] = ACTIONS(1810), - [sym__str_back_ticks] = ACTIONS(1810), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_POUND] = ACTIONS(247), - }, - [371] = { - [sym_comment] = STATE(371), - [anon_sym_export] = ACTIONS(962), - [anon_sym_alias] = ACTIONS(962), - [anon_sym_let] = ACTIONS(962), - [anon_sym_let_DASHenv] = ACTIONS(962), - [anon_sym_mut] = ACTIONS(962), - [anon_sym_const] = ACTIONS(962), - [aux_sym_cmd_identifier_token1] = ACTIONS(962), - [aux_sym_cmd_identifier_token2] = ACTIONS(962), - [aux_sym_cmd_identifier_token3] = ACTIONS(962), - [aux_sym_cmd_identifier_token4] = ACTIONS(962), - [aux_sym_cmd_identifier_token5] = ACTIONS(962), - [aux_sym_cmd_identifier_token6] = ACTIONS(962), - [aux_sym_cmd_identifier_token7] = ACTIONS(962), - [aux_sym_cmd_identifier_token8] = ACTIONS(962), - [aux_sym_cmd_identifier_token9] = ACTIONS(962), - [aux_sym_cmd_identifier_token10] = ACTIONS(962), - [aux_sym_cmd_identifier_token11] = ACTIONS(962), - [aux_sym_cmd_identifier_token12] = ACTIONS(962), - [aux_sym_cmd_identifier_token13] = ACTIONS(962), - [aux_sym_cmd_identifier_token14] = ACTIONS(962), - [aux_sym_cmd_identifier_token15] = ACTIONS(962), - [aux_sym_cmd_identifier_token16] = ACTIONS(962), - [aux_sym_cmd_identifier_token17] = ACTIONS(962), - [aux_sym_cmd_identifier_token18] = ACTIONS(962), - [aux_sym_cmd_identifier_token19] = ACTIONS(962), - [aux_sym_cmd_identifier_token20] = ACTIONS(962), - [aux_sym_cmd_identifier_token21] = ACTIONS(962), - [aux_sym_cmd_identifier_token22] = ACTIONS(962), - [aux_sym_cmd_identifier_token23] = ACTIONS(962), - [aux_sym_cmd_identifier_token24] = ACTIONS(962), - [aux_sym_cmd_identifier_token25] = ACTIONS(962), - [aux_sym_cmd_identifier_token26] = ACTIONS(962), - [aux_sym_cmd_identifier_token27] = ACTIONS(962), - [aux_sym_cmd_identifier_token28] = ACTIONS(962), - [aux_sym_cmd_identifier_token29] = ACTIONS(962), - [aux_sym_cmd_identifier_token30] = ACTIONS(962), - [aux_sym_cmd_identifier_token31] = ACTIONS(962), - [aux_sym_cmd_identifier_token32] = ACTIONS(962), - [aux_sym_cmd_identifier_token33] = ACTIONS(962), - [aux_sym_cmd_identifier_token34] = ACTIONS(962), - [aux_sym_cmd_identifier_token35] = ACTIONS(962), - [aux_sym_cmd_identifier_token36] = ACTIONS(962), - [anon_sym_true] = ACTIONS(964), - [anon_sym_false] = ACTIONS(964), - [anon_sym_null] = ACTIONS(964), - [aux_sym_cmd_identifier_token38] = ACTIONS(962), - [aux_sym_cmd_identifier_token39] = ACTIONS(964), - [aux_sym_cmd_identifier_token40] = ACTIONS(964), - [anon_sym_def] = ACTIONS(962), - [anon_sym_export_DASHenv] = ACTIONS(962), - [anon_sym_extern] = ACTIONS(962), - [anon_sym_module] = ACTIONS(962), - [anon_sym_use] = ACTIONS(962), - [anon_sym_LPAREN] = ACTIONS(964), - [anon_sym_COMMA] = ACTIONS(964), - [anon_sym_DOLLAR] = ACTIONS(964), - [anon_sym_error] = ACTIONS(962), - [anon_sym_list] = ACTIONS(962), - [anon_sym_DASH] = ACTIONS(962), - [anon_sym_break] = ACTIONS(962), - [anon_sym_continue] = ACTIONS(962), - [anon_sym_for] = ACTIONS(962), - [anon_sym_in] = ACTIONS(962), - [anon_sym_loop] = ACTIONS(962), - [anon_sym_make] = ACTIONS(962), - [anon_sym_while] = ACTIONS(962), - [anon_sym_do] = ACTIONS(962), - [anon_sym_if] = ACTIONS(962), - [anon_sym_else] = ACTIONS(962), - [anon_sym_match] = ACTIONS(962), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_try] = ACTIONS(962), - [anon_sym_catch] = ACTIONS(962), - [anon_sym_return] = ACTIONS(962), - [anon_sym_source] = ACTIONS(962), - [anon_sym_source_DASHenv] = ACTIONS(962), - [anon_sym_register] = ACTIONS(962), - [anon_sym_hide] = ACTIONS(962), - [anon_sym_hide_DASHenv] = ACTIONS(962), - [anon_sym_overlay] = ACTIONS(962), - [anon_sym_new] = ACTIONS(962), - [anon_sym_as] = ACTIONS(962), - [anon_sym_QMARK2] = ACTIONS(964), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(964), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(964), - [aux_sym__val_number_decimal_token1] = ACTIONS(962), - [aux_sym__val_number_decimal_token2] = ACTIONS(964), - [aux_sym__val_number_decimal_token3] = ACTIONS(964), - [aux_sym__val_number_decimal_token4] = ACTIONS(964), - [aux_sym__val_number_token1] = ACTIONS(964), - [aux_sym__val_number_token2] = ACTIONS(964), - [aux_sym__val_number_token3] = ACTIONS(964), - [anon_sym_DQUOTE] = ACTIONS(964), - [sym__str_single_quotes] = ACTIONS(964), - [sym__str_back_ticks] = ACTIONS(964), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(964), - [aux_sym_record_entry_token1] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(962), - [anon_sym_POUND] = ACTIONS(247), - }, - [372] = { - [sym_cell_path] = STATE(651), - [sym_path] = STATE(532), - [sym_comment] = STATE(372), - [aux_sym_cell_path_repeat1] = STATE(424), - [anon_sym_export] = ACTIONS(1820), - [anon_sym_alias] = ACTIONS(1820), - [anon_sym_let] = ACTIONS(1820), - [anon_sym_let_DASHenv] = ACTIONS(1820), - [anon_sym_mut] = ACTIONS(1820), - [anon_sym_const] = ACTIONS(1820), - [aux_sym_cmd_identifier_token1] = ACTIONS(1820), - [aux_sym_cmd_identifier_token2] = ACTIONS(1820), - [aux_sym_cmd_identifier_token3] = ACTIONS(1820), - [aux_sym_cmd_identifier_token4] = ACTIONS(1820), - [aux_sym_cmd_identifier_token5] = ACTIONS(1820), - [aux_sym_cmd_identifier_token6] = ACTIONS(1820), - [aux_sym_cmd_identifier_token7] = ACTIONS(1820), - [aux_sym_cmd_identifier_token8] = ACTIONS(1820), - [aux_sym_cmd_identifier_token9] = ACTIONS(1820), - [aux_sym_cmd_identifier_token10] = ACTIONS(1820), - [aux_sym_cmd_identifier_token11] = ACTIONS(1820), - [aux_sym_cmd_identifier_token12] = ACTIONS(1820), - [aux_sym_cmd_identifier_token13] = ACTIONS(1820), - [aux_sym_cmd_identifier_token14] = ACTIONS(1820), - [aux_sym_cmd_identifier_token15] = ACTIONS(1820), - [aux_sym_cmd_identifier_token16] = ACTIONS(1820), - [aux_sym_cmd_identifier_token17] = ACTIONS(1820), - [aux_sym_cmd_identifier_token18] = ACTIONS(1820), - [aux_sym_cmd_identifier_token19] = ACTIONS(1820), - [aux_sym_cmd_identifier_token20] = ACTIONS(1820), - [aux_sym_cmd_identifier_token21] = ACTIONS(1820), - [aux_sym_cmd_identifier_token22] = ACTIONS(1820), - [aux_sym_cmd_identifier_token23] = ACTIONS(1820), - [aux_sym_cmd_identifier_token24] = ACTIONS(1820), - [aux_sym_cmd_identifier_token25] = ACTIONS(1820), - [aux_sym_cmd_identifier_token26] = ACTIONS(1820), - [aux_sym_cmd_identifier_token27] = ACTIONS(1820), - [aux_sym_cmd_identifier_token28] = ACTIONS(1820), - [aux_sym_cmd_identifier_token29] = ACTIONS(1820), - [aux_sym_cmd_identifier_token30] = ACTIONS(1820), - [aux_sym_cmd_identifier_token31] = ACTIONS(1820), - [aux_sym_cmd_identifier_token32] = ACTIONS(1820), - [aux_sym_cmd_identifier_token33] = ACTIONS(1820), - [aux_sym_cmd_identifier_token34] = ACTIONS(1820), - [aux_sym_cmd_identifier_token35] = ACTIONS(1820), - [aux_sym_cmd_identifier_token36] = ACTIONS(1820), - [anon_sym_true] = ACTIONS(1822), - [anon_sym_false] = ACTIONS(1822), - [anon_sym_null] = ACTIONS(1822), - [aux_sym_cmd_identifier_token38] = ACTIONS(1820), - [aux_sym_cmd_identifier_token39] = ACTIONS(1822), - [aux_sym_cmd_identifier_token40] = ACTIONS(1822), - [anon_sym_def] = ACTIONS(1820), - [anon_sym_export_DASHenv] = ACTIONS(1820), - [anon_sym_extern] = ACTIONS(1820), - [anon_sym_module] = ACTIONS(1820), - [anon_sym_use] = ACTIONS(1820), - [anon_sym_LPAREN] = ACTIONS(1822), - [anon_sym_DOLLAR] = ACTIONS(1822), - [anon_sym_error] = ACTIONS(1820), - [anon_sym_list] = ACTIONS(1820), - [anon_sym_DASH] = ACTIONS(1820), - [anon_sym_break] = ACTIONS(1820), - [anon_sym_continue] = ACTIONS(1820), - [anon_sym_for] = ACTIONS(1820), - [anon_sym_in] = ACTIONS(1820), - [anon_sym_loop] = ACTIONS(1820), - [anon_sym_make] = ACTIONS(1820), - [anon_sym_while] = ACTIONS(1820), - [anon_sym_do] = ACTIONS(1820), - [anon_sym_if] = ACTIONS(1820), - [anon_sym_else] = ACTIONS(1820), - [anon_sym_match] = ACTIONS(1820), - [anon_sym_RBRACE] = ACTIONS(1822), - [anon_sym_try] = ACTIONS(1820), - [anon_sym_catch] = ACTIONS(1820), - [anon_sym_return] = ACTIONS(1820), - [anon_sym_source] = ACTIONS(1820), - [anon_sym_source_DASHenv] = ACTIONS(1820), - [anon_sym_register] = ACTIONS(1820), - [anon_sym_hide] = ACTIONS(1820), - [anon_sym_hide_DASHenv] = ACTIONS(1820), - [anon_sym_overlay] = ACTIONS(1820), - [anon_sym_new] = ACTIONS(1820), - [anon_sym_as] = ACTIONS(1820), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1822), - [anon_sym_DOT] = ACTIONS(1903), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1822), - [aux_sym__val_number_decimal_token1] = ACTIONS(1820), - [aux_sym__val_number_decimal_token2] = ACTIONS(1822), - [aux_sym__val_number_decimal_token3] = ACTIONS(1822), - [aux_sym__val_number_decimal_token4] = ACTIONS(1822), - [aux_sym__val_number_token1] = ACTIONS(1822), - [aux_sym__val_number_token2] = ACTIONS(1822), - [aux_sym__val_number_token3] = ACTIONS(1822), - [anon_sym_DQUOTE] = ACTIONS(1822), - [sym__str_single_quotes] = ACTIONS(1822), - [sym__str_back_ticks] = ACTIONS(1822), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1822), - [anon_sym_PLUS] = ACTIONS(1820), - [anon_sym_POUND] = ACTIONS(247), - }, - [373] = { - [sym_comment] = STATE(373), - [anon_sym_export] = ACTIONS(1935), - [anon_sym_alias] = ACTIONS(1935), - [anon_sym_let] = ACTIONS(1935), - [anon_sym_let_DASHenv] = ACTIONS(1935), - [anon_sym_mut] = ACTIONS(1935), - [anon_sym_const] = ACTIONS(1935), - [aux_sym_cmd_identifier_token1] = ACTIONS(1935), - [aux_sym_cmd_identifier_token2] = ACTIONS(1935), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [aux_sym_cmd_identifier_token6] = ACTIONS(1935), - [aux_sym_cmd_identifier_token7] = ACTIONS(1935), - [aux_sym_cmd_identifier_token8] = ACTIONS(1935), - [aux_sym_cmd_identifier_token9] = ACTIONS(1935), - [aux_sym_cmd_identifier_token10] = ACTIONS(1935), - [aux_sym_cmd_identifier_token11] = ACTIONS(1935), - [aux_sym_cmd_identifier_token12] = ACTIONS(1935), - [aux_sym_cmd_identifier_token13] = ACTIONS(1935), - [aux_sym_cmd_identifier_token14] = ACTIONS(1935), - [aux_sym_cmd_identifier_token15] = ACTIONS(1935), - [aux_sym_cmd_identifier_token16] = ACTIONS(1935), - [aux_sym_cmd_identifier_token17] = ACTIONS(1935), - [aux_sym_cmd_identifier_token18] = ACTIONS(1935), - [aux_sym_cmd_identifier_token19] = ACTIONS(1935), - [aux_sym_cmd_identifier_token20] = ACTIONS(1935), - [aux_sym_cmd_identifier_token21] = ACTIONS(1935), - [aux_sym_cmd_identifier_token22] = ACTIONS(1935), - [aux_sym_cmd_identifier_token23] = ACTIONS(1935), - [aux_sym_cmd_identifier_token24] = ACTIONS(1935), - [aux_sym_cmd_identifier_token25] = ACTIONS(1935), - [aux_sym_cmd_identifier_token26] = ACTIONS(1935), - [aux_sym_cmd_identifier_token27] = ACTIONS(1935), - [aux_sym_cmd_identifier_token28] = ACTIONS(1935), - [aux_sym_cmd_identifier_token29] = ACTIONS(1935), - [aux_sym_cmd_identifier_token30] = ACTIONS(1935), - [aux_sym_cmd_identifier_token31] = ACTIONS(1935), - [aux_sym_cmd_identifier_token32] = ACTIONS(1935), - [aux_sym_cmd_identifier_token33] = ACTIONS(1935), - [aux_sym_cmd_identifier_token34] = ACTIONS(1935), - [aux_sym_cmd_identifier_token35] = ACTIONS(1935), - [aux_sym_cmd_identifier_token36] = ACTIONS(1935), - [anon_sym_true] = ACTIONS(1935), - [anon_sym_false] = ACTIONS(1935), - [anon_sym_null] = ACTIONS(1935), - [aux_sym_cmd_identifier_token38] = ACTIONS(1935), - [aux_sym_cmd_identifier_token39] = ACTIONS(1935), - [aux_sym_cmd_identifier_token40] = ACTIONS(1935), - [anon_sym_def] = ACTIONS(1935), - [anon_sym_export_DASHenv] = ACTIONS(1935), - [anon_sym_extern] = ACTIONS(1935), - [anon_sym_module] = ACTIONS(1935), - [anon_sym_use] = ACTIONS(1935), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_DOLLAR] = ACTIONS(1935), - [anon_sym_error] = ACTIONS(1935), - [anon_sym_list] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_break] = ACTIONS(1935), - [anon_sym_continue] = ACTIONS(1935), - [anon_sym_for] = ACTIONS(1935), - [anon_sym_in] = ACTIONS(1935), - [anon_sym_loop] = ACTIONS(1935), - [anon_sym_make] = ACTIONS(1935), - [anon_sym_while] = ACTIONS(1935), - [anon_sym_do] = ACTIONS(1935), - [anon_sym_if] = ACTIONS(1935), - [anon_sym_else] = ACTIONS(1935), - [anon_sym_match] = ACTIONS(1935), - [anon_sym_RBRACE] = ACTIONS(1935), - [anon_sym_try] = ACTIONS(1935), - [anon_sym_catch] = ACTIONS(1935), - [anon_sym_return] = ACTIONS(1935), - [anon_sym_source] = ACTIONS(1935), - [anon_sym_source_DASHenv] = ACTIONS(1935), - [anon_sym_register] = ACTIONS(1935), - [anon_sym_hide] = ACTIONS(1935), - [anon_sym_hide_DASHenv] = ACTIONS(1935), - [anon_sym_overlay] = ACTIONS(1935), - [anon_sym_new] = ACTIONS(1935), - [anon_sym_as] = ACTIONS(1935), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1935), - [anon_sym_DOT_DOT2] = ACTIONS(1937), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1939), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1939), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1935), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1935), - [aux_sym__val_number_decimal_token3] = ACTIONS(1935), - [aux_sym__val_number_decimal_token4] = ACTIONS(1935), - [aux_sym__val_number_token1] = ACTIONS(1935), - [aux_sym__val_number_token2] = ACTIONS(1935), - [aux_sym__val_number_token3] = ACTIONS(1935), - [anon_sym_DQUOTE] = ACTIONS(1935), - [sym__str_single_quotes] = ACTIONS(1935), - [sym__str_back_ticks] = ACTIONS(1935), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1935), - [sym__entry_separator] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(1935), - [anon_sym_POUND] = ACTIONS(3), - }, - [374] = { - [sym_cell_path] = STATE(596), - [sym_path] = STATE(532), - [sym_comment] = STATE(374), - [aux_sym_cell_path_repeat1] = STATE(424), - [anon_sym_export] = ACTIONS(1782), - [anon_sym_alias] = ACTIONS(1782), - [anon_sym_let] = ACTIONS(1782), - [anon_sym_let_DASHenv] = ACTIONS(1782), - [anon_sym_mut] = ACTIONS(1782), - [anon_sym_const] = ACTIONS(1782), - [aux_sym_cmd_identifier_token1] = ACTIONS(1782), - [aux_sym_cmd_identifier_token2] = ACTIONS(1782), - [aux_sym_cmd_identifier_token3] = ACTIONS(1782), - [aux_sym_cmd_identifier_token4] = ACTIONS(1782), - [aux_sym_cmd_identifier_token5] = ACTIONS(1782), - [aux_sym_cmd_identifier_token6] = ACTIONS(1782), - [aux_sym_cmd_identifier_token7] = ACTIONS(1782), - [aux_sym_cmd_identifier_token8] = ACTIONS(1782), - [aux_sym_cmd_identifier_token9] = ACTIONS(1782), - [aux_sym_cmd_identifier_token10] = ACTIONS(1782), - [aux_sym_cmd_identifier_token11] = ACTIONS(1782), - [aux_sym_cmd_identifier_token12] = ACTIONS(1782), - [aux_sym_cmd_identifier_token13] = ACTIONS(1782), - [aux_sym_cmd_identifier_token14] = ACTIONS(1782), - [aux_sym_cmd_identifier_token15] = ACTIONS(1782), - [aux_sym_cmd_identifier_token16] = ACTIONS(1782), - [aux_sym_cmd_identifier_token17] = ACTIONS(1782), - [aux_sym_cmd_identifier_token18] = ACTIONS(1782), - [aux_sym_cmd_identifier_token19] = ACTIONS(1782), - [aux_sym_cmd_identifier_token20] = ACTIONS(1782), - [aux_sym_cmd_identifier_token21] = ACTIONS(1782), - [aux_sym_cmd_identifier_token22] = ACTIONS(1782), - [aux_sym_cmd_identifier_token23] = ACTIONS(1782), - [aux_sym_cmd_identifier_token24] = ACTIONS(1782), - [aux_sym_cmd_identifier_token25] = ACTIONS(1782), - [aux_sym_cmd_identifier_token26] = ACTIONS(1782), - [aux_sym_cmd_identifier_token27] = ACTIONS(1782), - [aux_sym_cmd_identifier_token28] = ACTIONS(1782), - [aux_sym_cmd_identifier_token29] = ACTIONS(1782), - [aux_sym_cmd_identifier_token30] = ACTIONS(1782), - [aux_sym_cmd_identifier_token31] = ACTIONS(1782), - [aux_sym_cmd_identifier_token32] = ACTIONS(1782), - [aux_sym_cmd_identifier_token33] = ACTIONS(1782), - [aux_sym_cmd_identifier_token34] = ACTIONS(1782), - [aux_sym_cmd_identifier_token35] = ACTIONS(1782), - [aux_sym_cmd_identifier_token36] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_null] = ACTIONS(1784), - [aux_sym_cmd_identifier_token38] = ACTIONS(1782), - [aux_sym_cmd_identifier_token39] = ACTIONS(1784), - [aux_sym_cmd_identifier_token40] = ACTIONS(1784), - [anon_sym_def] = ACTIONS(1782), - [anon_sym_export_DASHenv] = ACTIONS(1782), - [anon_sym_extern] = ACTIONS(1782), - [anon_sym_module] = ACTIONS(1782), - [anon_sym_use] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_DOLLAR] = ACTIONS(1784), - [anon_sym_error] = ACTIONS(1782), - [anon_sym_list] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_break] = ACTIONS(1782), - [anon_sym_continue] = ACTIONS(1782), - [anon_sym_for] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1782), - [anon_sym_loop] = ACTIONS(1782), - [anon_sym_make] = ACTIONS(1782), - [anon_sym_while] = ACTIONS(1782), - [anon_sym_do] = ACTIONS(1782), - [anon_sym_if] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1782), - [anon_sym_match] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1782), - [anon_sym_catch] = ACTIONS(1782), - [anon_sym_return] = ACTIONS(1782), - [anon_sym_source] = ACTIONS(1782), - [anon_sym_source_DASHenv] = ACTIONS(1782), - [anon_sym_register] = ACTIONS(1782), - [anon_sym_hide] = ACTIONS(1782), - [anon_sym_hide_DASHenv] = ACTIONS(1782), - [anon_sym_overlay] = ACTIONS(1782), - [anon_sym_new] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1782), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1903), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1784), - [aux_sym__val_number_decimal_token1] = ACTIONS(1782), - [aux_sym__val_number_decimal_token2] = ACTIONS(1784), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), - [aux_sym__val_number_token1] = ACTIONS(1784), - [aux_sym__val_number_token2] = ACTIONS(1784), - [aux_sym__val_number_token3] = ACTIONS(1784), - [anon_sym_DQUOTE] = ACTIONS(1784), - [sym__str_single_quotes] = ACTIONS(1784), - [sym__str_back_ticks] = ACTIONS(1784), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_POUND] = ACTIONS(247), - }, - [375] = { - [sym_cell_path] = STATE(653), - [sym_path] = STATE(532), - [sym_comment] = STATE(375), - [aux_sym_cell_path_repeat1] = STATE(424), - [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), - [aux_sym_cmd_identifier_token1] = ACTIONS(1741), - [aux_sym_cmd_identifier_token2] = ACTIONS(1741), - [aux_sym_cmd_identifier_token3] = ACTIONS(1741), - [aux_sym_cmd_identifier_token4] = ACTIONS(1741), - [aux_sym_cmd_identifier_token5] = ACTIONS(1741), - [aux_sym_cmd_identifier_token6] = ACTIONS(1741), - [aux_sym_cmd_identifier_token7] = ACTIONS(1741), - [aux_sym_cmd_identifier_token8] = ACTIONS(1741), - [aux_sym_cmd_identifier_token9] = ACTIONS(1741), - [aux_sym_cmd_identifier_token10] = ACTIONS(1741), - [aux_sym_cmd_identifier_token11] = ACTIONS(1741), - [aux_sym_cmd_identifier_token12] = ACTIONS(1741), - [aux_sym_cmd_identifier_token13] = ACTIONS(1741), - [aux_sym_cmd_identifier_token14] = ACTIONS(1741), - [aux_sym_cmd_identifier_token15] = ACTIONS(1741), - [aux_sym_cmd_identifier_token16] = ACTIONS(1741), - [aux_sym_cmd_identifier_token17] = ACTIONS(1741), - [aux_sym_cmd_identifier_token18] = ACTIONS(1741), - [aux_sym_cmd_identifier_token19] = ACTIONS(1741), - [aux_sym_cmd_identifier_token20] = ACTIONS(1741), - [aux_sym_cmd_identifier_token21] = ACTIONS(1741), - [aux_sym_cmd_identifier_token22] = ACTIONS(1741), - [aux_sym_cmd_identifier_token23] = ACTIONS(1741), - [aux_sym_cmd_identifier_token24] = ACTIONS(1741), - [aux_sym_cmd_identifier_token25] = ACTIONS(1741), - [aux_sym_cmd_identifier_token26] = ACTIONS(1741), - [aux_sym_cmd_identifier_token27] = ACTIONS(1741), - [aux_sym_cmd_identifier_token28] = ACTIONS(1741), - [aux_sym_cmd_identifier_token29] = ACTIONS(1741), - [aux_sym_cmd_identifier_token30] = ACTIONS(1741), - [aux_sym_cmd_identifier_token31] = ACTIONS(1741), - [aux_sym_cmd_identifier_token32] = ACTIONS(1741), - [aux_sym_cmd_identifier_token33] = ACTIONS(1741), - [aux_sym_cmd_identifier_token34] = ACTIONS(1741), - [aux_sym_cmd_identifier_token35] = ACTIONS(1741), - [aux_sym_cmd_identifier_token36] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(1745), - [anon_sym_false] = ACTIONS(1745), - [anon_sym_null] = ACTIONS(1745), - [aux_sym_cmd_identifier_token38] = ACTIONS(1741), - [aux_sym_cmd_identifier_token39] = ACTIONS(1745), - [aux_sym_cmd_identifier_token40] = ACTIONS(1745), - [anon_sym_def] = 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_LPAREN] = ACTIONS(1745), - [anon_sym_DOLLAR] = ACTIONS(1745), - [anon_sym_error] = ACTIONS(1741), - [anon_sym_list] = ACTIONS(1741), - [anon_sym_DASH] = ACTIONS(1741), - [anon_sym_break] = ACTIONS(1741), - [anon_sym_continue] = ACTIONS(1741), - [anon_sym_for] = ACTIONS(1741), - [anon_sym_in] = ACTIONS(1741), - [anon_sym_loop] = ACTIONS(1741), - [anon_sym_make] = ACTIONS(1741), - [anon_sym_while] = ACTIONS(1741), - [anon_sym_do] = ACTIONS(1741), - [anon_sym_if] = ACTIONS(1741), - [anon_sym_else] = ACTIONS(1741), - [anon_sym_match] = ACTIONS(1741), - [anon_sym_RBRACE] = ACTIONS(1745), - [anon_sym_try] = ACTIONS(1741), - [anon_sym_catch] = 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_new] = ACTIONS(1741), - [anon_sym_as] = ACTIONS(1741), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1745), - [anon_sym_DOT] = ACTIONS(1903), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1745), - [aux_sym__val_number_decimal_token1] = ACTIONS(1741), - [aux_sym__val_number_decimal_token2] = ACTIONS(1745), - [aux_sym__val_number_decimal_token3] = ACTIONS(1745), - [aux_sym__val_number_decimal_token4] = ACTIONS(1745), - [aux_sym__val_number_token1] = ACTIONS(1745), - [aux_sym__val_number_token2] = ACTIONS(1745), - [aux_sym__val_number_token3] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1745), - [sym__str_single_quotes] = ACTIONS(1745), - [sym__str_back_ticks] = ACTIONS(1745), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1745), - [anon_sym_PLUS] = ACTIONS(1741), - [anon_sym_POUND] = ACTIONS(247), - }, - [376] = { - [sym_cell_path] = STATE(656), - [sym_path] = STATE(532), - [sym_comment] = STATE(376), - [aux_sym_cell_path_repeat1] = STATE(424), - [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), - [aux_sym_cmd_identifier_token1] = ACTIONS(1899), - [aux_sym_cmd_identifier_token2] = ACTIONS(1899), - [aux_sym_cmd_identifier_token3] = ACTIONS(1899), - [aux_sym_cmd_identifier_token4] = ACTIONS(1899), - [aux_sym_cmd_identifier_token5] = ACTIONS(1899), - [aux_sym_cmd_identifier_token6] = ACTIONS(1899), - [aux_sym_cmd_identifier_token7] = ACTIONS(1899), - [aux_sym_cmd_identifier_token8] = ACTIONS(1899), - [aux_sym_cmd_identifier_token9] = ACTIONS(1899), - [aux_sym_cmd_identifier_token10] = ACTIONS(1899), - [aux_sym_cmd_identifier_token11] = ACTIONS(1899), - [aux_sym_cmd_identifier_token12] = ACTIONS(1899), - [aux_sym_cmd_identifier_token13] = ACTIONS(1899), - [aux_sym_cmd_identifier_token14] = ACTIONS(1899), - [aux_sym_cmd_identifier_token15] = ACTIONS(1899), - [aux_sym_cmd_identifier_token16] = ACTIONS(1899), - [aux_sym_cmd_identifier_token17] = ACTIONS(1899), - [aux_sym_cmd_identifier_token18] = ACTIONS(1899), - [aux_sym_cmd_identifier_token19] = ACTIONS(1899), - [aux_sym_cmd_identifier_token20] = ACTIONS(1899), - [aux_sym_cmd_identifier_token21] = ACTIONS(1899), - [aux_sym_cmd_identifier_token22] = ACTIONS(1899), - [aux_sym_cmd_identifier_token23] = ACTIONS(1899), - [aux_sym_cmd_identifier_token24] = ACTIONS(1899), - [aux_sym_cmd_identifier_token25] = ACTIONS(1899), - [aux_sym_cmd_identifier_token26] = ACTIONS(1899), - [aux_sym_cmd_identifier_token27] = ACTIONS(1899), - [aux_sym_cmd_identifier_token28] = ACTIONS(1899), - [aux_sym_cmd_identifier_token29] = ACTIONS(1899), - [aux_sym_cmd_identifier_token30] = ACTIONS(1899), - [aux_sym_cmd_identifier_token31] = ACTIONS(1899), - [aux_sym_cmd_identifier_token32] = ACTIONS(1899), - [aux_sym_cmd_identifier_token33] = ACTIONS(1899), - [aux_sym_cmd_identifier_token34] = ACTIONS(1899), - [aux_sym_cmd_identifier_token35] = ACTIONS(1899), - [aux_sym_cmd_identifier_token36] = ACTIONS(1899), - [anon_sym_true] = ACTIONS(1901), - [anon_sym_false] = ACTIONS(1901), - [anon_sym_null] = ACTIONS(1901), - [aux_sym_cmd_identifier_token38] = ACTIONS(1899), - [aux_sym_cmd_identifier_token39] = ACTIONS(1901), - [aux_sym_cmd_identifier_token40] = ACTIONS(1901), - [anon_sym_def] = 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_LPAREN] = ACTIONS(1901), - [anon_sym_DOLLAR] = ACTIONS(1901), - [anon_sym_error] = ACTIONS(1899), - [anon_sym_list] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_break] = ACTIONS(1899), - [anon_sym_continue] = ACTIONS(1899), - [anon_sym_for] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(1899), - [anon_sym_loop] = ACTIONS(1899), - [anon_sym_make] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1899), - [anon_sym_do] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_else] = ACTIONS(1899), - [anon_sym_match] = ACTIONS(1899), - [anon_sym_RBRACE] = ACTIONS(1901), - [anon_sym_try] = ACTIONS(1899), - [anon_sym_catch] = 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_new] = ACTIONS(1899), - [anon_sym_as] = ACTIONS(1899), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1901), - [anon_sym_DOT] = ACTIONS(1903), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1901), - [aux_sym__val_number_decimal_token1] = ACTIONS(1899), - [aux_sym__val_number_decimal_token2] = ACTIONS(1901), - [aux_sym__val_number_decimal_token3] = ACTIONS(1901), - [aux_sym__val_number_decimal_token4] = ACTIONS(1901), - [aux_sym__val_number_token1] = ACTIONS(1901), - [aux_sym__val_number_token2] = ACTIONS(1901), - [aux_sym__val_number_token3] = ACTIONS(1901), - [anon_sym_DQUOTE] = ACTIONS(1901), - [sym__str_single_quotes] = ACTIONS(1901), - [sym__str_back_ticks] = ACTIONS(1901), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1901), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_POUND] = ACTIONS(247), - }, - [377] = { - [sym_comment] = STATE(377), - [anon_sym_export] = ACTIONS(1589), - [anon_sym_alias] = ACTIONS(1589), - [anon_sym_let] = ACTIONS(1589), - [anon_sym_let_DASHenv] = ACTIONS(1589), - [anon_sym_mut] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [aux_sym_cmd_identifier_token1] = ACTIONS(1589), - [aux_sym_cmd_identifier_token2] = ACTIONS(1589), - [aux_sym_cmd_identifier_token3] = ACTIONS(1589), - [aux_sym_cmd_identifier_token4] = ACTIONS(1589), - [aux_sym_cmd_identifier_token5] = ACTIONS(1589), - [aux_sym_cmd_identifier_token6] = ACTIONS(1589), - [aux_sym_cmd_identifier_token7] = ACTIONS(1589), - [aux_sym_cmd_identifier_token8] = ACTIONS(1589), - [aux_sym_cmd_identifier_token9] = ACTIONS(1589), - [aux_sym_cmd_identifier_token10] = ACTIONS(1589), - [aux_sym_cmd_identifier_token11] = ACTIONS(1589), - [aux_sym_cmd_identifier_token12] = ACTIONS(1589), - [aux_sym_cmd_identifier_token13] = ACTIONS(1589), - [aux_sym_cmd_identifier_token14] = ACTIONS(1589), - [aux_sym_cmd_identifier_token15] = ACTIONS(1589), - [aux_sym_cmd_identifier_token16] = ACTIONS(1589), - [aux_sym_cmd_identifier_token17] = ACTIONS(1589), - [aux_sym_cmd_identifier_token18] = ACTIONS(1589), - [aux_sym_cmd_identifier_token19] = ACTIONS(1589), - [aux_sym_cmd_identifier_token20] = ACTIONS(1589), - [aux_sym_cmd_identifier_token21] = ACTIONS(1589), - [aux_sym_cmd_identifier_token22] = ACTIONS(1589), - [aux_sym_cmd_identifier_token23] = ACTIONS(1589), - [aux_sym_cmd_identifier_token24] = ACTIONS(1589), - [aux_sym_cmd_identifier_token25] = ACTIONS(1589), - [aux_sym_cmd_identifier_token26] = ACTIONS(1589), - [aux_sym_cmd_identifier_token27] = ACTIONS(1589), - [aux_sym_cmd_identifier_token28] = ACTIONS(1589), - [aux_sym_cmd_identifier_token29] = ACTIONS(1589), - [aux_sym_cmd_identifier_token30] = ACTIONS(1589), - [aux_sym_cmd_identifier_token31] = ACTIONS(1589), - [aux_sym_cmd_identifier_token32] = ACTIONS(1589), - [aux_sym_cmd_identifier_token33] = ACTIONS(1589), - [aux_sym_cmd_identifier_token34] = ACTIONS(1589), - [aux_sym_cmd_identifier_token35] = ACTIONS(1589), - [aux_sym_cmd_identifier_token36] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [anon_sym_null] = ACTIONS(1591), - [aux_sym_cmd_identifier_token38] = ACTIONS(1589), - [aux_sym_cmd_identifier_token39] = ACTIONS(1591), - [aux_sym_cmd_identifier_token40] = ACTIONS(1591), - [anon_sym_def] = ACTIONS(1589), - [anon_sym_export_DASHenv] = ACTIONS(1589), - [anon_sym_extern] = ACTIONS(1589), - [anon_sym_module] = ACTIONS(1589), - [anon_sym_use] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1591), - [anon_sym_DOLLAR] = ACTIONS(1591), - [anon_sym_error] = ACTIONS(1589), - [anon_sym_list] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_loop] = ACTIONS(1589), - [anon_sym_make] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_else] = ACTIONS(1589), - [anon_sym_match] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_try] = ACTIONS(1589), - [anon_sym_catch] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_source] = ACTIONS(1589), - [anon_sym_source_DASHenv] = ACTIONS(1589), - [anon_sym_register] = ACTIONS(1589), - [anon_sym_hide] = ACTIONS(1589), - [anon_sym_hide_DASHenv] = ACTIONS(1589), - [anon_sym_overlay] = ACTIONS(1589), - [anon_sym_new] = ACTIONS(1589), - [anon_sym_as] = ACTIONS(1589), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1591), - [anon_sym_DOT_DOT2] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), - [aux_sym__immediate_decimal_token2] = ACTIONS(1790), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1591), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token3] = ACTIONS(1591), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(1591), - [aux_sym__val_number_token2] = ACTIONS(1591), - [aux_sym__val_number_token3] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym__str_single_quotes] = ACTIONS(1591), - [sym__str_back_ticks] = ACTIONS(1591), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1591), - [anon_sym_PLUS] = ACTIONS(1589), + [388] = { + [sym_comment] = STATE(388), + [anon_sym_export] = ACTIONS(1056), + [anon_sym_alias] = ACTIONS(1056), + [anon_sym_let] = ACTIONS(1056), + [anon_sym_let_DASHenv] = ACTIONS(1056), + [anon_sym_mut] = ACTIONS(1056), + [anon_sym_const] = ACTIONS(1056), + [aux_sym_cmd_identifier_token1] = ACTIONS(1056), + [aux_sym_cmd_identifier_token2] = ACTIONS(1056), + [aux_sym_cmd_identifier_token3] = ACTIONS(1056), + [aux_sym_cmd_identifier_token4] = ACTIONS(1056), + [aux_sym_cmd_identifier_token5] = ACTIONS(1056), + [aux_sym_cmd_identifier_token6] = ACTIONS(1056), + [aux_sym_cmd_identifier_token7] = ACTIONS(1056), + [aux_sym_cmd_identifier_token8] = ACTIONS(1056), + [aux_sym_cmd_identifier_token9] = ACTIONS(1056), + [aux_sym_cmd_identifier_token10] = ACTIONS(1056), + [aux_sym_cmd_identifier_token11] = ACTIONS(1056), + [aux_sym_cmd_identifier_token12] = ACTIONS(1056), + [aux_sym_cmd_identifier_token13] = ACTIONS(1056), + [aux_sym_cmd_identifier_token14] = ACTIONS(1056), + [aux_sym_cmd_identifier_token15] = ACTIONS(1056), + [aux_sym_cmd_identifier_token16] = ACTIONS(1056), + [aux_sym_cmd_identifier_token17] = ACTIONS(1056), + [aux_sym_cmd_identifier_token18] = ACTIONS(1056), + [aux_sym_cmd_identifier_token19] = ACTIONS(1056), + [aux_sym_cmd_identifier_token20] = ACTIONS(1056), + [aux_sym_cmd_identifier_token21] = ACTIONS(1056), + [aux_sym_cmd_identifier_token22] = ACTIONS(1056), + [aux_sym_cmd_identifier_token23] = ACTIONS(1056), + [aux_sym_cmd_identifier_token24] = ACTIONS(1056), + [aux_sym_cmd_identifier_token25] = ACTIONS(1056), + [aux_sym_cmd_identifier_token26] = ACTIONS(1056), + [aux_sym_cmd_identifier_token27] = ACTIONS(1056), + [aux_sym_cmd_identifier_token28] = ACTIONS(1056), + [aux_sym_cmd_identifier_token29] = ACTIONS(1056), + [aux_sym_cmd_identifier_token30] = ACTIONS(1056), + [aux_sym_cmd_identifier_token31] = ACTIONS(1056), + [aux_sym_cmd_identifier_token32] = ACTIONS(1056), + [aux_sym_cmd_identifier_token33] = ACTIONS(1056), + [aux_sym_cmd_identifier_token34] = ACTIONS(1056), + [aux_sym_cmd_identifier_token35] = ACTIONS(1056), + [aux_sym_cmd_identifier_token36] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_null] = ACTIONS(1058), + [aux_sym_cmd_identifier_token38] = ACTIONS(1056), + [aux_sym_cmd_identifier_token39] = ACTIONS(1058), + [aux_sym_cmd_identifier_token40] = ACTIONS(1058), + [anon_sym_def] = ACTIONS(1056), + [anon_sym_export_DASHenv] = ACTIONS(1056), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_module] = ACTIONS(1056), + [anon_sym_use] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(1058), + [anon_sym_DOLLAR] = ACTIONS(1058), + [anon_sym_error] = ACTIONS(1056), + [anon_sym_list] = ACTIONS(1056), + [anon_sym_DASH] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1056), + [anon_sym_continue] = ACTIONS(1056), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_in] = ACTIONS(1056), + [anon_sym_loop] = ACTIONS(1056), + [anon_sym_make] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1056), + [anon_sym_do] = ACTIONS(1056), + [anon_sym_if] = ACTIONS(1056), + [anon_sym_else] = ACTIONS(1056), + [anon_sym_match] = ACTIONS(1056), + [anon_sym_RBRACE] = ACTIONS(1058), + [anon_sym_try] = ACTIONS(1056), + [anon_sym_catch] = ACTIONS(1056), + [anon_sym_return] = ACTIONS(1056), + [anon_sym_source] = ACTIONS(1056), + [anon_sym_source_DASHenv] = ACTIONS(1056), + [anon_sym_register] = ACTIONS(1056), + [anon_sym_hide] = ACTIONS(1056), + [anon_sym_hide_DASHenv] = ACTIONS(1056), + [anon_sym_overlay] = ACTIONS(1056), + [anon_sym_new] = ACTIONS(1056), + [anon_sym_as] = ACTIONS(1056), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1058), + [anon_sym_DOT_DOT2] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1058), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1058), + [aux_sym__val_number_decimal_token1] = ACTIONS(1056), + [aux_sym__val_number_decimal_token2] = ACTIONS(1058), + [aux_sym__val_number_decimal_token3] = ACTIONS(1058), + [aux_sym__val_number_decimal_token4] = ACTIONS(1058), + [aux_sym__val_number_token1] = ACTIONS(1058), + [aux_sym__val_number_token2] = ACTIONS(1058), + [aux_sym__val_number_token3] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [sym__str_single_quotes] = ACTIONS(1058), + [sym__str_back_ticks] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1056), [anon_sym_POUND] = ACTIONS(247), }, - [378] = { - [sym_comment] = STATE(378), - [anon_sym_export] = ACTIONS(1943), - [anon_sym_alias] = ACTIONS(1943), - [anon_sym_let] = ACTIONS(1943), - [anon_sym_let_DASHenv] = ACTIONS(1943), - [anon_sym_mut] = ACTIONS(1943), - [anon_sym_const] = ACTIONS(1943), - [aux_sym_cmd_identifier_token1] = ACTIONS(1943), - [aux_sym_cmd_identifier_token2] = ACTIONS(1943), - [aux_sym_cmd_identifier_token3] = ACTIONS(1943), - [aux_sym_cmd_identifier_token4] = ACTIONS(1943), - [aux_sym_cmd_identifier_token5] = ACTIONS(1943), - [aux_sym_cmd_identifier_token6] = ACTIONS(1943), - [aux_sym_cmd_identifier_token7] = ACTIONS(1943), - [aux_sym_cmd_identifier_token8] = ACTIONS(1943), - [aux_sym_cmd_identifier_token9] = ACTIONS(1943), - [aux_sym_cmd_identifier_token10] = ACTIONS(1943), - [aux_sym_cmd_identifier_token11] = ACTIONS(1943), - [aux_sym_cmd_identifier_token12] = ACTIONS(1943), - [aux_sym_cmd_identifier_token13] = ACTIONS(1943), - [aux_sym_cmd_identifier_token14] = ACTIONS(1943), - [aux_sym_cmd_identifier_token15] = ACTIONS(1943), - [aux_sym_cmd_identifier_token16] = ACTIONS(1943), - [aux_sym_cmd_identifier_token17] = ACTIONS(1943), - [aux_sym_cmd_identifier_token18] = ACTIONS(1943), - [aux_sym_cmd_identifier_token19] = ACTIONS(1943), - [aux_sym_cmd_identifier_token20] = ACTIONS(1943), - [aux_sym_cmd_identifier_token21] = ACTIONS(1943), - [aux_sym_cmd_identifier_token22] = ACTIONS(1943), - [aux_sym_cmd_identifier_token23] = ACTIONS(1943), - [aux_sym_cmd_identifier_token24] = ACTIONS(1943), - [aux_sym_cmd_identifier_token25] = ACTIONS(1943), - [aux_sym_cmd_identifier_token26] = ACTIONS(1943), - [aux_sym_cmd_identifier_token27] = ACTIONS(1943), - [aux_sym_cmd_identifier_token28] = ACTIONS(1943), - [aux_sym_cmd_identifier_token29] = ACTIONS(1943), - [aux_sym_cmd_identifier_token30] = ACTIONS(1943), - [aux_sym_cmd_identifier_token31] = ACTIONS(1943), - [aux_sym_cmd_identifier_token32] = ACTIONS(1943), - [aux_sym_cmd_identifier_token33] = ACTIONS(1943), - [aux_sym_cmd_identifier_token34] = ACTIONS(1943), - [aux_sym_cmd_identifier_token35] = ACTIONS(1943), - [aux_sym_cmd_identifier_token36] = ACTIONS(1943), - [anon_sym_true] = ACTIONS(1943), - [anon_sym_false] = ACTIONS(1943), - [anon_sym_null] = ACTIONS(1943), - [aux_sym_cmd_identifier_token38] = ACTIONS(1943), - [aux_sym_cmd_identifier_token39] = ACTIONS(1943), - [aux_sym_cmd_identifier_token40] = ACTIONS(1943), - [anon_sym_def] = ACTIONS(1943), - [anon_sym_export_DASHenv] = ACTIONS(1943), - [anon_sym_extern] = ACTIONS(1943), - [anon_sym_module] = ACTIONS(1943), - [anon_sym_use] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1943), - [anon_sym_DOLLAR] = ACTIONS(1943), - [anon_sym_error] = ACTIONS(1943), - [anon_sym_list] = ACTIONS(1943), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_break] = ACTIONS(1943), - [anon_sym_continue] = ACTIONS(1943), - [anon_sym_for] = ACTIONS(1943), - [anon_sym_in] = ACTIONS(1943), - [anon_sym_loop] = ACTIONS(1943), - [anon_sym_make] = ACTIONS(1943), - [anon_sym_while] = ACTIONS(1943), - [anon_sym_do] = ACTIONS(1943), - [anon_sym_if] = ACTIONS(1943), - [anon_sym_else] = ACTIONS(1943), - [anon_sym_match] = ACTIONS(1943), - [anon_sym_RBRACE] = ACTIONS(1943), - [anon_sym_try] = ACTIONS(1943), - [anon_sym_catch] = ACTIONS(1943), - [anon_sym_return] = ACTIONS(1943), - [anon_sym_source] = ACTIONS(1943), - [anon_sym_source_DASHenv] = ACTIONS(1943), - [anon_sym_register] = ACTIONS(1943), - [anon_sym_hide] = ACTIONS(1943), - [anon_sym_hide_DASHenv] = ACTIONS(1943), - [anon_sym_overlay] = ACTIONS(1943), - [anon_sym_new] = ACTIONS(1943), - [anon_sym_as] = ACTIONS(1943), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1943), - [anon_sym_DOT_DOT2] = ACTIONS(1943), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1945), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1943), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1943), - [aux_sym__val_number_decimal_token3] = ACTIONS(1943), - [aux_sym__val_number_decimal_token4] = ACTIONS(1943), - [aux_sym__val_number_token1] = ACTIONS(1943), - [aux_sym__val_number_token2] = ACTIONS(1943), - [aux_sym__val_number_token3] = ACTIONS(1943), - [anon_sym_DQUOTE] = ACTIONS(1943), - [sym__str_single_quotes] = ACTIONS(1943), - [sym__str_back_ticks] = ACTIONS(1943), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1943), - [sym__entry_separator] = ACTIONS(1945), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_POUND] = ACTIONS(3), - }, - [379] = { - [sym_comment] = STATE(379), - [anon_sym_export] = ACTIONS(1648), - [anon_sym_alias] = ACTIONS(1648), - [anon_sym_let] = ACTIONS(1648), - [anon_sym_let_DASHenv] = ACTIONS(1648), - [anon_sym_mut] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1648), - [aux_sym_cmd_identifier_token1] = ACTIONS(1648), - [aux_sym_cmd_identifier_token2] = ACTIONS(1648), - [aux_sym_cmd_identifier_token3] = ACTIONS(1648), - [aux_sym_cmd_identifier_token4] = ACTIONS(1648), - [aux_sym_cmd_identifier_token5] = ACTIONS(1648), - [aux_sym_cmd_identifier_token6] = ACTIONS(1648), - [aux_sym_cmd_identifier_token7] = ACTIONS(1648), - [aux_sym_cmd_identifier_token8] = ACTIONS(1648), - [aux_sym_cmd_identifier_token9] = ACTIONS(1648), - [aux_sym_cmd_identifier_token10] = ACTIONS(1648), - [aux_sym_cmd_identifier_token11] = ACTIONS(1648), - [aux_sym_cmd_identifier_token12] = ACTIONS(1648), - [aux_sym_cmd_identifier_token13] = ACTIONS(1648), - [aux_sym_cmd_identifier_token14] = ACTIONS(1648), - [aux_sym_cmd_identifier_token15] = ACTIONS(1648), - [aux_sym_cmd_identifier_token16] = ACTIONS(1648), - [aux_sym_cmd_identifier_token17] = ACTIONS(1648), - [aux_sym_cmd_identifier_token18] = ACTIONS(1648), - [aux_sym_cmd_identifier_token19] = ACTIONS(1648), - [aux_sym_cmd_identifier_token20] = ACTIONS(1648), - [aux_sym_cmd_identifier_token21] = ACTIONS(1648), - [aux_sym_cmd_identifier_token22] = ACTIONS(1648), - [aux_sym_cmd_identifier_token23] = ACTIONS(1648), - [aux_sym_cmd_identifier_token24] = ACTIONS(1648), - [aux_sym_cmd_identifier_token25] = ACTIONS(1648), - [aux_sym_cmd_identifier_token26] = ACTIONS(1648), - [aux_sym_cmd_identifier_token27] = ACTIONS(1648), - [aux_sym_cmd_identifier_token28] = ACTIONS(1648), - [aux_sym_cmd_identifier_token29] = ACTIONS(1648), - [aux_sym_cmd_identifier_token30] = ACTIONS(1648), - [aux_sym_cmd_identifier_token31] = ACTIONS(1648), - [aux_sym_cmd_identifier_token32] = ACTIONS(1648), - [aux_sym_cmd_identifier_token33] = ACTIONS(1648), - [aux_sym_cmd_identifier_token34] = ACTIONS(1648), - [aux_sym_cmd_identifier_token35] = ACTIONS(1648), - [aux_sym_cmd_identifier_token36] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [anon_sym_null] = ACTIONS(1650), - [aux_sym_cmd_identifier_token38] = ACTIONS(1648), - [aux_sym_cmd_identifier_token39] = ACTIONS(1650), - [aux_sym_cmd_identifier_token40] = ACTIONS(1650), - [anon_sym_def] = ACTIONS(1648), - [anon_sym_export_DASHenv] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1648), - [anon_sym_module] = ACTIONS(1648), - [anon_sym_use] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1650), - [anon_sym_error] = ACTIONS(1648), - [anon_sym_list] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_in] = ACTIONS(1648), - [anon_sym_loop] = ACTIONS(1648), - [anon_sym_make] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_do] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1648), - [anon_sym_match] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_try] = ACTIONS(1648), - [anon_sym_catch] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_source] = ACTIONS(1648), - [anon_sym_source_DASHenv] = ACTIONS(1648), - [anon_sym_register] = ACTIONS(1648), - [anon_sym_hide] = ACTIONS(1648), - [anon_sym_hide_DASHenv] = ACTIONS(1648), - [anon_sym_overlay] = ACTIONS(1648), - [anon_sym_new] = ACTIONS(1648), - [anon_sym_as] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1650), - [anon_sym_DOT_DOT2] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), - [aux_sym__immediate_decimal_token2] = ACTIONS(1947), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token3] = ACTIONS(1650), - [aux_sym__val_number_decimal_token4] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1648), + [389] = { + [sym_comment] = STATE(389), + [anon_sym_export] = ACTIONS(1705), + [anon_sym_alias] = ACTIONS(1705), + [anon_sym_let] = ACTIONS(1705), + [anon_sym_let_DASHenv] = ACTIONS(1705), + [anon_sym_mut] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [aux_sym_cmd_identifier_token1] = ACTIONS(1705), + [aux_sym_cmd_identifier_token2] = ACTIONS(1705), + [aux_sym_cmd_identifier_token3] = ACTIONS(1705), + [aux_sym_cmd_identifier_token4] = ACTIONS(1705), + [aux_sym_cmd_identifier_token5] = ACTIONS(1705), + [aux_sym_cmd_identifier_token6] = ACTIONS(1705), + [aux_sym_cmd_identifier_token7] = ACTIONS(1705), + [aux_sym_cmd_identifier_token8] = ACTIONS(1705), + [aux_sym_cmd_identifier_token9] = ACTIONS(1705), + [aux_sym_cmd_identifier_token10] = ACTIONS(1705), + [aux_sym_cmd_identifier_token11] = ACTIONS(1705), + [aux_sym_cmd_identifier_token12] = ACTIONS(1705), + [aux_sym_cmd_identifier_token13] = ACTIONS(1705), + [aux_sym_cmd_identifier_token14] = ACTIONS(1705), + [aux_sym_cmd_identifier_token15] = ACTIONS(1705), + [aux_sym_cmd_identifier_token16] = ACTIONS(1705), + [aux_sym_cmd_identifier_token17] = ACTIONS(1705), + [aux_sym_cmd_identifier_token18] = ACTIONS(1705), + [aux_sym_cmd_identifier_token19] = ACTIONS(1705), + [aux_sym_cmd_identifier_token20] = ACTIONS(1705), + [aux_sym_cmd_identifier_token21] = ACTIONS(1705), + [aux_sym_cmd_identifier_token22] = ACTIONS(1705), + [aux_sym_cmd_identifier_token23] = ACTIONS(1705), + [aux_sym_cmd_identifier_token24] = ACTIONS(1705), + [aux_sym_cmd_identifier_token25] = ACTIONS(1705), + [aux_sym_cmd_identifier_token26] = ACTIONS(1705), + [aux_sym_cmd_identifier_token27] = ACTIONS(1705), + [aux_sym_cmd_identifier_token28] = ACTIONS(1705), + [aux_sym_cmd_identifier_token29] = ACTIONS(1705), + [aux_sym_cmd_identifier_token30] = ACTIONS(1705), + [aux_sym_cmd_identifier_token31] = ACTIONS(1705), + [aux_sym_cmd_identifier_token32] = ACTIONS(1705), + [aux_sym_cmd_identifier_token33] = ACTIONS(1705), + [aux_sym_cmd_identifier_token34] = ACTIONS(1705), + [aux_sym_cmd_identifier_token35] = ACTIONS(1705), + [aux_sym_cmd_identifier_token36] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1707), + [anon_sym_false] = ACTIONS(1707), + [anon_sym_null] = ACTIONS(1707), + [aux_sym_cmd_identifier_token38] = ACTIONS(1705), + [aux_sym_cmd_identifier_token39] = ACTIONS(1707), + [aux_sym_cmd_identifier_token40] = ACTIONS(1707), + [anon_sym_def] = ACTIONS(1705), + [anon_sym_export_DASHenv] = ACTIONS(1705), + [anon_sym_extern] = ACTIONS(1705), + [anon_sym_module] = ACTIONS(1705), + [anon_sym_use] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1707), + [anon_sym_DOLLAR] = ACTIONS(1707), + [anon_sym_error] = ACTIONS(1705), + [anon_sym_list] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_break] = ACTIONS(1705), + [anon_sym_continue] = ACTIONS(1705), + [anon_sym_for] = ACTIONS(1705), + [anon_sym_in] = ACTIONS(1705), + [anon_sym_loop] = ACTIONS(1705), + [anon_sym_make] = ACTIONS(1705), + [anon_sym_while] = ACTIONS(1705), + [anon_sym_do] = ACTIONS(1705), + [anon_sym_if] = ACTIONS(1705), + [anon_sym_else] = ACTIONS(1705), + [anon_sym_match] = ACTIONS(1705), + [anon_sym_RBRACE] = ACTIONS(1707), + [anon_sym_try] = ACTIONS(1705), + [anon_sym_catch] = ACTIONS(1705), + [anon_sym_return] = ACTIONS(1705), + [anon_sym_source] = ACTIONS(1705), + [anon_sym_source_DASHenv] = ACTIONS(1705), + [anon_sym_register] = ACTIONS(1705), + [anon_sym_hide] = ACTIONS(1705), + [anon_sym_hide_DASHenv] = ACTIONS(1705), + [anon_sym_overlay] = ACTIONS(1705), + [anon_sym_new] = ACTIONS(1705), + [anon_sym_as] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1707), + [anon_sym_DOT_DOT2] = ACTIONS(1705), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1707), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1707), + [aux_sym__immediate_decimal_token2] = ACTIONS(2059), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1707), + [aux_sym__val_number_decimal_token1] = ACTIONS(1705), + [aux_sym__val_number_decimal_token2] = ACTIONS(1707), + [aux_sym__val_number_decimal_token3] = ACTIONS(1707), + [aux_sym__val_number_decimal_token4] = ACTIONS(1707), + [aux_sym__val_number_token1] = ACTIONS(1707), + [aux_sym__val_number_token2] = ACTIONS(1707), + [aux_sym__val_number_token3] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1707), + [sym__str_single_quotes] = ACTIONS(1707), + [sym__str_back_ticks] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1705), [anon_sym_POUND] = ACTIONS(247), }, - [380] = { - [sym_comment] = STATE(380), + [390] = { + [sym_cell_path] = STATE(642), + [sym_path] = STATE(550), + [sym_comment] = STATE(390), + [aux_sym_cell_path_repeat1] = STATE(434), [anon_sym_export] = ACTIONS(1949), [anon_sym_alias] = ACTIONS(1949), [anon_sym_let] = ACTIONS(1949), @@ -121821,19 +118762,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(1949), [aux_sym_cmd_identifier_token35] = ACTIONS(1949), [aux_sym_cmd_identifier_token36] = ACTIONS(1949), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1949), + [anon_sym_true] = ACTIONS(1951), + [anon_sym_false] = ACTIONS(1951), + [anon_sym_null] = ACTIONS(1951), [aux_sym_cmd_identifier_token38] = ACTIONS(1949), - [aux_sym_cmd_identifier_token39] = ACTIONS(1949), - [aux_sym_cmd_identifier_token40] = ACTIONS(1949), + [aux_sym_cmd_identifier_token39] = ACTIONS(1951), + [aux_sym_cmd_identifier_token40] = ACTIONS(1951), [anon_sym_def] = ACTIONS(1949), [anon_sym_export_DASHenv] = ACTIONS(1949), [anon_sym_extern] = ACTIONS(1949), [anon_sym_module] = ACTIONS(1949), [anon_sym_use] = ACTIONS(1949), - [anon_sym_LPAREN] = ACTIONS(1949), - [anon_sym_DOLLAR] = ACTIONS(1949), + [anon_sym_LPAREN] = ACTIONS(1951), + [anon_sym_DOLLAR] = ACTIONS(1951), [anon_sym_error] = ACTIONS(1949), [anon_sym_list] = ACTIONS(1949), [anon_sym_DASH] = ACTIONS(1949), @@ -121848,7 +118789,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1949), [anon_sym_else] = ACTIONS(1949), [anon_sym_match] = ACTIONS(1949), - [anon_sym_RBRACE] = ACTIONS(1949), + [anon_sym_RBRACE] = ACTIONS(1951), [anon_sym_try] = ACTIONS(1949), [anon_sym_catch] = ACTIONS(1949), [anon_sym_return] = ACTIONS(1949), @@ -121860,219 +118801,1864 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1949), [anon_sym_new] = ACTIONS(1949), [anon_sym_as] = ACTIONS(1949), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1949), - [anon_sym_DOT_DOT2] = ACTIONS(1907), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1909), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1949), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1951), + [anon_sym_DOT] = ACTIONS(1973), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1951), [aux_sym__val_number_decimal_token1] = ACTIONS(1949), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1949), - [aux_sym__val_number_decimal_token4] = ACTIONS(1949), - [aux_sym__val_number_token1] = ACTIONS(1949), - [aux_sym__val_number_token2] = ACTIONS(1949), - [aux_sym__val_number_token3] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(1949), - [sym__str_single_quotes] = ACTIONS(1949), - [sym__str_back_ticks] = ACTIONS(1949), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1949), - [sym__entry_separator] = ACTIONS(1951), + [aux_sym__val_number_decimal_token2] = ACTIONS(1951), + [aux_sym__val_number_decimal_token3] = ACTIONS(1951), + [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [aux_sym__val_number_token1] = ACTIONS(1951), + [aux_sym__val_number_token2] = ACTIONS(1951), + [aux_sym__val_number_token3] = ACTIONS(1951), + [anon_sym_DQUOTE] = ACTIONS(1951), + [sym__str_single_quotes] = ACTIONS(1951), + [sym__str_back_ticks] = ACTIONS(1951), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1951), [anon_sym_PLUS] = ACTIONS(1949), + [anon_sym_POUND] = ACTIONS(247), + }, + [391] = { + [sym_comment] = STATE(391), + [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), + [aux_sym_cmd_identifier_token1] = ACTIONS(2061), + [aux_sym_cmd_identifier_token2] = ACTIONS(2061), + [aux_sym_cmd_identifier_token3] = ACTIONS(2061), + [aux_sym_cmd_identifier_token4] = ACTIONS(2061), + [aux_sym_cmd_identifier_token5] = ACTIONS(2061), + [aux_sym_cmd_identifier_token6] = ACTIONS(2061), + [aux_sym_cmd_identifier_token7] = ACTIONS(2061), + [aux_sym_cmd_identifier_token8] = ACTIONS(2061), + [aux_sym_cmd_identifier_token9] = ACTIONS(2061), + [aux_sym_cmd_identifier_token10] = ACTIONS(2061), + [aux_sym_cmd_identifier_token11] = ACTIONS(2061), + [aux_sym_cmd_identifier_token12] = ACTIONS(2061), + [aux_sym_cmd_identifier_token13] = ACTIONS(2061), + [aux_sym_cmd_identifier_token14] = ACTIONS(2061), + [aux_sym_cmd_identifier_token15] = ACTIONS(2061), + [aux_sym_cmd_identifier_token16] = ACTIONS(2061), + [aux_sym_cmd_identifier_token17] = ACTIONS(2061), + [aux_sym_cmd_identifier_token18] = ACTIONS(2061), + [aux_sym_cmd_identifier_token19] = ACTIONS(2061), + [aux_sym_cmd_identifier_token20] = ACTIONS(2061), + [aux_sym_cmd_identifier_token21] = ACTIONS(2061), + [aux_sym_cmd_identifier_token22] = ACTIONS(2061), + [aux_sym_cmd_identifier_token23] = ACTIONS(2061), + [aux_sym_cmd_identifier_token24] = ACTIONS(2061), + [aux_sym_cmd_identifier_token25] = ACTIONS(2061), + [aux_sym_cmd_identifier_token26] = ACTIONS(2061), + [aux_sym_cmd_identifier_token27] = ACTIONS(2061), + [aux_sym_cmd_identifier_token28] = ACTIONS(2061), + [aux_sym_cmd_identifier_token29] = ACTIONS(2061), + [aux_sym_cmd_identifier_token30] = ACTIONS(2061), + [aux_sym_cmd_identifier_token31] = ACTIONS(2061), + [aux_sym_cmd_identifier_token32] = ACTIONS(2061), + [aux_sym_cmd_identifier_token33] = ACTIONS(2061), + [aux_sym_cmd_identifier_token34] = ACTIONS(2061), + [aux_sym_cmd_identifier_token35] = ACTIONS(2061), + [aux_sym_cmd_identifier_token36] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2061), + [anon_sym_false] = ACTIONS(2061), + [anon_sym_null] = ACTIONS(2061), + [aux_sym_cmd_identifier_token38] = ACTIONS(2061), + [aux_sym_cmd_identifier_token39] = ACTIONS(2061), + [aux_sym_cmd_identifier_token40] = ACTIONS(2061), + [anon_sym_def] = 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_LPAREN] = ACTIONS(2061), + [anon_sym_DOLLAR] = ACTIONS(2061), + [anon_sym_error] = ACTIONS(2061), + [anon_sym_list] = ACTIONS(2061), + [anon_sym_DASH] = ACTIONS(2061), + [anon_sym_break] = ACTIONS(2061), + [anon_sym_continue] = ACTIONS(2061), + [anon_sym_for] = ACTIONS(2061), + [anon_sym_in] = ACTIONS(2061), + [anon_sym_loop] = ACTIONS(2061), + [anon_sym_make] = ACTIONS(2061), + [anon_sym_while] = ACTIONS(2061), + [anon_sym_do] = ACTIONS(2061), + [anon_sym_if] = ACTIONS(2061), + [anon_sym_else] = ACTIONS(2061), + [anon_sym_match] = ACTIONS(2061), + [anon_sym_RBRACE] = ACTIONS(2061), + [anon_sym_try] = ACTIONS(2061), + [anon_sym_catch] = 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_new] = ACTIONS(2061), + [anon_sym_as] = ACTIONS(2061), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2061), + [anon_sym_DOT_DOT2] = ACTIONS(2063), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2065), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2065), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2061), + [aux_sym__val_number_decimal_token1] = ACTIONS(2061), + [aux_sym__val_number_decimal_token2] = ACTIONS(2061), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), + [aux_sym__val_number_token1] = ACTIONS(2061), + [aux_sym__val_number_token2] = ACTIONS(2061), + [aux_sym__val_number_token3] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(2061), + [sym__str_single_quotes] = ACTIONS(2061), + [sym__str_back_ticks] = ACTIONS(2061), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2061), + [sym__entry_separator] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2061), [anon_sym_POUND] = ACTIONS(3), }, - [381] = { - [sym_comment] = STATE(381), - [anon_sym_export] = ACTIONS(1273), - [anon_sym_alias] = ACTIONS(1273), - [anon_sym_let] = ACTIONS(1273), - [anon_sym_let_DASHenv] = ACTIONS(1273), - [anon_sym_mut] = ACTIONS(1273), - [anon_sym_const] = ACTIONS(1273), - [aux_sym_cmd_identifier_token1] = ACTIONS(1273), - [aux_sym_cmd_identifier_token2] = ACTIONS(1273), - [aux_sym_cmd_identifier_token3] = ACTIONS(1273), - [aux_sym_cmd_identifier_token4] = ACTIONS(1273), - [aux_sym_cmd_identifier_token5] = ACTIONS(1273), - [aux_sym_cmd_identifier_token6] = ACTIONS(1273), - [aux_sym_cmd_identifier_token7] = ACTIONS(1273), - [aux_sym_cmd_identifier_token8] = ACTIONS(1273), - [aux_sym_cmd_identifier_token9] = ACTIONS(1273), - [aux_sym_cmd_identifier_token10] = ACTIONS(1273), - [aux_sym_cmd_identifier_token11] = ACTIONS(1273), - [aux_sym_cmd_identifier_token12] = ACTIONS(1273), - [aux_sym_cmd_identifier_token13] = ACTIONS(1273), - [aux_sym_cmd_identifier_token14] = ACTIONS(1273), - [aux_sym_cmd_identifier_token15] = ACTIONS(1273), - [aux_sym_cmd_identifier_token16] = ACTIONS(1273), - [aux_sym_cmd_identifier_token17] = ACTIONS(1273), - [aux_sym_cmd_identifier_token18] = ACTIONS(1273), - [aux_sym_cmd_identifier_token19] = ACTIONS(1273), - [aux_sym_cmd_identifier_token20] = ACTIONS(1273), - [aux_sym_cmd_identifier_token21] = ACTIONS(1273), - [aux_sym_cmd_identifier_token22] = ACTIONS(1273), - [aux_sym_cmd_identifier_token23] = ACTIONS(1273), - [aux_sym_cmd_identifier_token24] = ACTIONS(1277), - [aux_sym_cmd_identifier_token25] = ACTIONS(1273), - [aux_sym_cmd_identifier_token26] = ACTIONS(1277), - [aux_sym_cmd_identifier_token27] = ACTIONS(1273), - [aux_sym_cmd_identifier_token28] = ACTIONS(1273), - [aux_sym_cmd_identifier_token29] = ACTIONS(1273), - [aux_sym_cmd_identifier_token30] = ACTIONS(1273), - [aux_sym_cmd_identifier_token31] = ACTIONS(1277), - [aux_sym_cmd_identifier_token32] = ACTIONS(1277), - [aux_sym_cmd_identifier_token33] = ACTIONS(1277), - [aux_sym_cmd_identifier_token34] = ACTIONS(1277), - [aux_sym_cmd_identifier_token35] = ACTIONS(1277), - [aux_sym_cmd_identifier_token36] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_null] = ACTIONS(1277), - [aux_sym_cmd_identifier_token38] = ACTIONS(1273), - [aux_sym_cmd_identifier_token39] = ACTIONS(1277), - [aux_sym_cmd_identifier_token40] = ACTIONS(1277), - [sym__newline] = ACTIONS(1277), - [anon_sym_def] = ACTIONS(1273), - [anon_sym_export_DASHenv] = ACTIONS(1273), - [anon_sym_extern] = ACTIONS(1273), - [anon_sym_module] = ACTIONS(1273), - [anon_sym_use] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(1277), - [anon_sym_DOLLAR] = ACTIONS(1273), - [anon_sym_error] = ACTIONS(1273), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_break] = ACTIONS(1273), - [anon_sym_continue] = ACTIONS(1273), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_loop] = ACTIONS(1273), - [anon_sym_while] = ACTIONS(1273), - [anon_sym_do] = ACTIONS(1273), - [anon_sym_if] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [aux_sym_ctrl_match_token1] = ACTIONS(1277), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_try] = ACTIONS(1273), - [anon_sym_return] = ACTIONS(1273), - [anon_sym_source] = ACTIONS(1273), - [anon_sym_source_DASHenv] = ACTIONS(1273), - [anon_sym_register] = ACTIONS(1273), - [anon_sym_hide] = ACTIONS(1273), - [anon_sym_hide_DASHenv] = ACTIONS(1273), - [anon_sym_overlay] = ACTIONS(1273), - [anon_sym_where] = ACTIONS(1277), - [aux_sym_expr_unary_token1] = ACTIONS(1277), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_DOT_DOT_LT] = ACTIONS(1277), - [aux_sym__val_number_decimal_token1] = ACTIONS(1273), - [aux_sym__val_number_decimal_token2] = ACTIONS(1277), - [aux_sym__val_number_decimal_token3] = ACTIONS(1277), - [aux_sym__val_number_decimal_token4] = ACTIONS(1277), - [aux_sym__val_number_token1] = ACTIONS(1277), - [aux_sym__val_number_token2] = ACTIONS(1277), - [aux_sym__val_number_token3] = ACTIONS(1277), - [anon_sym_0b] = ACTIONS(1273), - [anon_sym_0o] = ACTIONS(1273), - [anon_sym_0x] = ACTIONS(1273), - [sym_val_date] = ACTIONS(1277), - [anon_sym_DQUOTE] = ACTIONS(1277), - [sym__str_single_quotes] = ACTIONS(1277), - [sym__str_back_ticks] = ACTIONS(1277), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1277), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1277), - [aux_sym_env_var_token1] = ACTIONS(1273), - [anon_sym_CARET] = ACTIONS(1277), + [392] = { + [sym_comment] = STATE(392), + [anon_sym_export] = ACTIONS(1034), + [anon_sym_alias] = ACTIONS(1034), + [anon_sym_let] = ACTIONS(1034), + [anon_sym_let_DASHenv] = ACTIONS(1034), + [anon_sym_mut] = ACTIONS(1034), + [anon_sym_const] = ACTIONS(1034), + [aux_sym_cmd_identifier_token1] = ACTIONS(1034), + [aux_sym_cmd_identifier_token2] = ACTIONS(1034), + [aux_sym_cmd_identifier_token3] = ACTIONS(1034), + [aux_sym_cmd_identifier_token4] = ACTIONS(1034), + [aux_sym_cmd_identifier_token5] = ACTIONS(1034), + [aux_sym_cmd_identifier_token6] = ACTIONS(1034), + [aux_sym_cmd_identifier_token7] = ACTIONS(1034), + [aux_sym_cmd_identifier_token8] = ACTIONS(1034), + [aux_sym_cmd_identifier_token9] = ACTIONS(1034), + [aux_sym_cmd_identifier_token10] = ACTIONS(1034), + [aux_sym_cmd_identifier_token11] = ACTIONS(1034), + [aux_sym_cmd_identifier_token12] = ACTIONS(1034), + [aux_sym_cmd_identifier_token13] = ACTIONS(1034), + [aux_sym_cmd_identifier_token14] = ACTIONS(1034), + [aux_sym_cmd_identifier_token15] = ACTIONS(1034), + [aux_sym_cmd_identifier_token16] = ACTIONS(1034), + [aux_sym_cmd_identifier_token17] = ACTIONS(1034), + [aux_sym_cmd_identifier_token18] = ACTIONS(1034), + [aux_sym_cmd_identifier_token19] = ACTIONS(1034), + [aux_sym_cmd_identifier_token20] = ACTIONS(1034), + [aux_sym_cmd_identifier_token21] = ACTIONS(1034), + [aux_sym_cmd_identifier_token22] = ACTIONS(1034), + [aux_sym_cmd_identifier_token23] = ACTIONS(1034), + [aux_sym_cmd_identifier_token24] = ACTIONS(1034), + [aux_sym_cmd_identifier_token25] = ACTIONS(1034), + [aux_sym_cmd_identifier_token26] = ACTIONS(1034), + [aux_sym_cmd_identifier_token27] = ACTIONS(1034), + [aux_sym_cmd_identifier_token28] = ACTIONS(1034), + [aux_sym_cmd_identifier_token29] = ACTIONS(1034), + [aux_sym_cmd_identifier_token30] = ACTIONS(1034), + [aux_sym_cmd_identifier_token31] = ACTIONS(1034), + [aux_sym_cmd_identifier_token32] = ACTIONS(1034), + [aux_sym_cmd_identifier_token33] = ACTIONS(1034), + [aux_sym_cmd_identifier_token34] = ACTIONS(1034), + [aux_sym_cmd_identifier_token35] = ACTIONS(1034), + [aux_sym_cmd_identifier_token36] = ACTIONS(1034), + [anon_sym_true] = ACTIONS(1036), + [anon_sym_false] = ACTIONS(1036), + [anon_sym_null] = ACTIONS(1036), + [aux_sym_cmd_identifier_token38] = ACTIONS(1034), + [aux_sym_cmd_identifier_token39] = ACTIONS(1036), + [aux_sym_cmd_identifier_token40] = ACTIONS(1036), + [anon_sym_def] = ACTIONS(1034), + [anon_sym_export_DASHenv] = ACTIONS(1034), + [anon_sym_extern] = ACTIONS(1034), + [anon_sym_module] = ACTIONS(1034), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_LPAREN] = ACTIONS(1036), + [anon_sym_COMMA] = ACTIONS(1036), + [anon_sym_DOLLAR] = ACTIONS(1036), + [anon_sym_error] = ACTIONS(1034), + [anon_sym_list] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_break] = ACTIONS(1034), + [anon_sym_continue] = ACTIONS(1034), + [anon_sym_for] = ACTIONS(1034), + [anon_sym_in] = ACTIONS(1034), + [anon_sym_loop] = ACTIONS(1034), + [anon_sym_make] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1034), + [anon_sym_do] = ACTIONS(1034), + [anon_sym_if] = ACTIONS(1034), + [anon_sym_else] = ACTIONS(1034), + [anon_sym_match] = ACTIONS(1034), + [anon_sym_RBRACE] = ACTIONS(1036), + [anon_sym_try] = ACTIONS(1034), + [anon_sym_catch] = ACTIONS(1034), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_source] = ACTIONS(1034), + [anon_sym_source_DASHenv] = ACTIONS(1034), + [anon_sym_register] = ACTIONS(1034), + [anon_sym_hide] = ACTIONS(1034), + [anon_sym_hide_DASHenv] = ACTIONS(1034), + [anon_sym_overlay] = ACTIONS(1034), + [anon_sym_new] = ACTIONS(1034), + [anon_sym_as] = ACTIONS(1034), + [anon_sym_QMARK2] = ACTIONS(2069), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1036), + [anon_sym_DOT] = ACTIONS(1034), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1036), + [aux_sym__val_number_decimal_token1] = ACTIONS(1034), + [aux_sym__val_number_decimal_token2] = ACTIONS(1036), + [aux_sym__val_number_decimal_token3] = ACTIONS(1036), + [aux_sym__val_number_decimal_token4] = ACTIONS(1036), + [aux_sym__val_number_token1] = ACTIONS(1036), + [aux_sym__val_number_token2] = ACTIONS(1036), + [aux_sym__val_number_token3] = ACTIONS(1036), + [anon_sym_DQUOTE] = ACTIONS(1036), + [sym__str_single_quotes] = ACTIONS(1036), + [sym__str_back_ticks] = ACTIONS(1036), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1036), + [aux_sym_record_entry_token1] = ACTIONS(1036), + [anon_sym_PLUS] = ACTIONS(1034), [anon_sym_POUND] = ACTIONS(247), }, - [382] = { - [sym_cell_path] = STATE(661), - [sym_path] = STATE(532), - [sym_comment] = STATE(382), - [aux_sym_cell_path_repeat1] = STATE(424), - [anon_sym_export] = ACTIONS(1831), - [anon_sym_alias] = ACTIONS(1831), - [anon_sym_let] = ACTIONS(1831), - [anon_sym_let_DASHenv] = ACTIONS(1831), - [anon_sym_mut] = ACTIONS(1831), - [anon_sym_const] = ACTIONS(1831), - [aux_sym_cmd_identifier_token1] = ACTIONS(1831), - [aux_sym_cmd_identifier_token2] = ACTIONS(1831), - [aux_sym_cmd_identifier_token3] = ACTIONS(1831), - [aux_sym_cmd_identifier_token4] = ACTIONS(1831), - [aux_sym_cmd_identifier_token5] = ACTIONS(1831), - [aux_sym_cmd_identifier_token6] = ACTIONS(1831), - [aux_sym_cmd_identifier_token7] = ACTIONS(1831), - [aux_sym_cmd_identifier_token8] = ACTIONS(1831), - [aux_sym_cmd_identifier_token9] = ACTIONS(1831), - [aux_sym_cmd_identifier_token10] = ACTIONS(1831), - [aux_sym_cmd_identifier_token11] = ACTIONS(1831), - [aux_sym_cmd_identifier_token12] = ACTIONS(1831), - [aux_sym_cmd_identifier_token13] = ACTIONS(1831), - [aux_sym_cmd_identifier_token14] = ACTIONS(1831), - [aux_sym_cmd_identifier_token15] = ACTIONS(1831), - [aux_sym_cmd_identifier_token16] = ACTIONS(1831), - [aux_sym_cmd_identifier_token17] = ACTIONS(1831), - [aux_sym_cmd_identifier_token18] = ACTIONS(1831), - [aux_sym_cmd_identifier_token19] = ACTIONS(1831), - [aux_sym_cmd_identifier_token20] = ACTIONS(1831), - [aux_sym_cmd_identifier_token21] = ACTIONS(1831), - [aux_sym_cmd_identifier_token22] = ACTIONS(1831), - [aux_sym_cmd_identifier_token23] = ACTIONS(1831), - [aux_sym_cmd_identifier_token24] = ACTIONS(1831), - [aux_sym_cmd_identifier_token25] = ACTIONS(1831), - [aux_sym_cmd_identifier_token26] = ACTIONS(1831), - [aux_sym_cmd_identifier_token27] = ACTIONS(1831), - [aux_sym_cmd_identifier_token28] = ACTIONS(1831), - [aux_sym_cmd_identifier_token29] = ACTIONS(1831), - [aux_sym_cmd_identifier_token30] = ACTIONS(1831), - [aux_sym_cmd_identifier_token31] = ACTIONS(1831), - [aux_sym_cmd_identifier_token32] = ACTIONS(1831), - [aux_sym_cmd_identifier_token33] = ACTIONS(1831), - [aux_sym_cmd_identifier_token34] = ACTIONS(1831), - [aux_sym_cmd_identifier_token35] = ACTIONS(1831), - [aux_sym_cmd_identifier_token36] = ACTIONS(1831), + [393] = { + [sym_comment] = STATE(393), + [anon_sym_export] = ACTIONS(1705), + [anon_sym_alias] = ACTIONS(1705), + [anon_sym_let] = ACTIONS(1705), + [anon_sym_let_DASHenv] = ACTIONS(1705), + [anon_sym_mut] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [aux_sym_cmd_identifier_token1] = ACTIONS(1705), + [aux_sym_cmd_identifier_token2] = ACTIONS(1705), + [aux_sym_cmd_identifier_token3] = ACTIONS(1705), + [aux_sym_cmd_identifier_token4] = ACTIONS(1705), + [aux_sym_cmd_identifier_token5] = ACTIONS(1705), + [aux_sym_cmd_identifier_token6] = ACTIONS(1705), + [aux_sym_cmd_identifier_token7] = ACTIONS(1705), + [aux_sym_cmd_identifier_token8] = ACTIONS(1705), + [aux_sym_cmd_identifier_token9] = ACTIONS(1705), + [aux_sym_cmd_identifier_token10] = ACTIONS(1705), + [aux_sym_cmd_identifier_token11] = ACTIONS(1705), + [aux_sym_cmd_identifier_token12] = ACTIONS(1705), + [aux_sym_cmd_identifier_token13] = ACTIONS(1705), + [aux_sym_cmd_identifier_token14] = ACTIONS(1705), + [aux_sym_cmd_identifier_token15] = ACTIONS(1705), + [aux_sym_cmd_identifier_token16] = ACTIONS(1705), + [aux_sym_cmd_identifier_token17] = ACTIONS(1705), + [aux_sym_cmd_identifier_token18] = ACTIONS(1705), + [aux_sym_cmd_identifier_token19] = ACTIONS(1705), + [aux_sym_cmd_identifier_token20] = ACTIONS(1705), + [aux_sym_cmd_identifier_token21] = ACTIONS(1705), + [aux_sym_cmd_identifier_token22] = ACTIONS(1705), + [aux_sym_cmd_identifier_token23] = ACTIONS(1705), + [aux_sym_cmd_identifier_token24] = ACTIONS(1705), + [aux_sym_cmd_identifier_token25] = ACTIONS(1705), + [aux_sym_cmd_identifier_token26] = ACTIONS(1705), + [aux_sym_cmd_identifier_token27] = ACTIONS(1705), + [aux_sym_cmd_identifier_token28] = ACTIONS(1705), + [aux_sym_cmd_identifier_token29] = ACTIONS(1705), + [aux_sym_cmd_identifier_token30] = ACTIONS(1705), + [aux_sym_cmd_identifier_token31] = ACTIONS(1705), + [aux_sym_cmd_identifier_token32] = ACTIONS(1705), + [aux_sym_cmd_identifier_token33] = ACTIONS(1705), + [aux_sym_cmd_identifier_token34] = ACTIONS(1705), + [aux_sym_cmd_identifier_token35] = ACTIONS(1705), + [aux_sym_cmd_identifier_token36] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1705), + [anon_sym_false] = ACTIONS(1705), + [anon_sym_null] = ACTIONS(1705), + [aux_sym_cmd_identifier_token38] = ACTIONS(1705), + [aux_sym_cmd_identifier_token39] = ACTIONS(1705), + [aux_sym_cmd_identifier_token40] = ACTIONS(1705), + [anon_sym_def] = ACTIONS(1705), + [anon_sym_export_DASHenv] = ACTIONS(1705), + [anon_sym_extern] = ACTIONS(1705), + [anon_sym_module] = ACTIONS(1705), + [anon_sym_use] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1705), + [anon_sym_error] = ACTIONS(1705), + [anon_sym_list] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_break] = ACTIONS(1705), + [anon_sym_continue] = ACTIONS(1705), + [anon_sym_for] = ACTIONS(1705), + [anon_sym_in] = ACTIONS(1705), + [anon_sym_loop] = ACTIONS(1705), + [anon_sym_make] = ACTIONS(1705), + [anon_sym_while] = ACTIONS(1705), + [anon_sym_do] = ACTIONS(1705), + [anon_sym_if] = ACTIONS(1705), + [anon_sym_else] = ACTIONS(1705), + [anon_sym_match] = ACTIONS(1705), + [anon_sym_RBRACE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1705), + [anon_sym_catch] = ACTIONS(1705), + [anon_sym_return] = ACTIONS(1705), + [anon_sym_source] = ACTIONS(1705), + [anon_sym_source_DASHenv] = ACTIONS(1705), + [anon_sym_register] = ACTIONS(1705), + [anon_sym_hide] = ACTIONS(1705), + [anon_sym_hide_DASHenv] = ACTIONS(1705), + [anon_sym_overlay] = ACTIONS(1705), + [anon_sym_new] = ACTIONS(1705), + [anon_sym_as] = ACTIONS(1705), + [anon_sym_LPAREN2] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1705), + [aux_sym__immediate_decimal_token2] = ACTIONS(2071), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1705), + [aux_sym__val_number_decimal_token1] = ACTIONS(1705), + [aux_sym__val_number_decimal_token2] = ACTIONS(1705), + [aux_sym__val_number_decimal_token3] = ACTIONS(1705), + [aux_sym__val_number_decimal_token4] = ACTIONS(1705), + [aux_sym__val_number_token1] = ACTIONS(1705), + [aux_sym__val_number_token2] = ACTIONS(1705), + [aux_sym__val_number_token3] = ACTIONS(1705), + [anon_sym_DQUOTE] = ACTIONS(1705), + [sym__str_single_quotes] = ACTIONS(1705), + [sym__str_back_ticks] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1705), + [sym__entry_separator] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1705), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1705), + [anon_sym_POUND] = ACTIONS(3), + }, + [394] = { + [sym_comment] = STATE(394), + [anon_sym_export] = ACTIONS(1060), + [anon_sym_alias] = ACTIONS(1060), + [anon_sym_let] = ACTIONS(1060), + [anon_sym_let_DASHenv] = ACTIONS(1060), + [anon_sym_mut] = ACTIONS(1060), + [anon_sym_const] = ACTIONS(1060), + [aux_sym_cmd_identifier_token1] = ACTIONS(1060), + [aux_sym_cmd_identifier_token2] = ACTIONS(1060), + [aux_sym_cmd_identifier_token3] = ACTIONS(1060), + [aux_sym_cmd_identifier_token4] = ACTIONS(1060), + [aux_sym_cmd_identifier_token5] = ACTIONS(1060), + [aux_sym_cmd_identifier_token6] = ACTIONS(1060), + [aux_sym_cmd_identifier_token7] = ACTIONS(1060), + [aux_sym_cmd_identifier_token8] = ACTIONS(1060), + [aux_sym_cmd_identifier_token9] = ACTIONS(1060), + [aux_sym_cmd_identifier_token10] = ACTIONS(1060), + [aux_sym_cmd_identifier_token11] = ACTIONS(1060), + [aux_sym_cmd_identifier_token12] = ACTIONS(1060), + [aux_sym_cmd_identifier_token13] = ACTIONS(1060), + [aux_sym_cmd_identifier_token14] = ACTIONS(1060), + [aux_sym_cmd_identifier_token15] = ACTIONS(1060), + [aux_sym_cmd_identifier_token16] = ACTIONS(1060), + [aux_sym_cmd_identifier_token17] = ACTIONS(1060), + [aux_sym_cmd_identifier_token18] = ACTIONS(1060), + [aux_sym_cmd_identifier_token19] = ACTIONS(1060), + [aux_sym_cmd_identifier_token20] = ACTIONS(1060), + [aux_sym_cmd_identifier_token21] = ACTIONS(1060), + [aux_sym_cmd_identifier_token22] = ACTIONS(1060), + [aux_sym_cmd_identifier_token23] = ACTIONS(1060), + [aux_sym_cmd_identifier_token24] = ACTIONS(1060), + [aux_sym_cmd_identifier_token25] = ACTIONS(1060), + [aux_sym_cmd_identifier_token26] = ACTIONS(1060), + [aux_sym_cmd_identifier_token27] = ACTIONS(1060), + [aux_sym_cmd_identifier_token28] = ACTIONS(1060), + [aux_sym_cmd_identifier_token29] = ACTIONS(1060), + [aux_sym_cmd_identifier_token30] = ACTIONS(1060), + [aux_sym_cmd_identifier_token31] = ACTIONS(1060), + [aux_sym_cmd_identifier_token32] = ACTIONS(1060), + [aux_sym_cmd_identifier_token33] = ACTIONS(1060), + [aux_sym_cmd_identifier_token34] = ACTIONS(1060), + [aux_sym_cmd_identifier_token35] = ACTIONS(1060), + [aux_sym_cmd_identifier_token36] = ACTIONS(1060), + [anon_sym_true] = ACTIONS(1062), + [anon_sym_false] = ACTIONS(1062), + [anon_sym_null] = ACTIONS(1062), + [aux_sym_cmd_identifier_token38] = ACTIONS(1060), + [aux_sym_cmd_identifier_token39] = ACTIONS(1062), + [aux_sym_cmd_identifier_token40] = ACTIONS(1062), + [anon_sym_def] = ACTIONS(1060), + [anon_sym_export_DASHenv] = ACTIONS(1060), + [anon_sym_extern] = ACTIONS(1060), + [anon_sym_module] = ACTIONS(1060), + [anon_sym_use] = ACTIONS(1060), + [anon_sym_LPAREN] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_error] = ACTIONS(1060), + [anon_sym_list] = ACTIONS(1060), + [anon_sym_DASH] = ACTIONS(1060), + [anon_sym_break] = ACTIONS(1060), + [anon_sym_continue] = ACTIONS(1060), + [anon_sym_for] = ACTIONS(1060), + [anon_sym_in] = ACTIONS(1060), + [anon_sym_loop] = ACTIONS(1060), + [anon_sym_make] = ACTIONS(1060), + [anon_sym_while] = ACTIONS(1060), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_if] = ACTIONS(1060), + [anon_sym_else] = ACTIONS(1060), + [anon_sym_match] = ACTIONS(1060), + [anon_sym_RBRACE] = ACTIONS(1062), + [anon_sym_try] = ACTIONS(1060), + [anon_sym_catch] = ACTIONS(1060), + [anon_sym_return] = ACTIONS(1060), + [anon_sym_source] = ACTIONS(1060), + [anon_sym_source_DASHenv] = ACTIONS(1060), + [anon_sym_register] = ACTIONS(1060), + [anon_sym_hide] = ACTIONS(1060), + [anon_sym_hide_DASHenv] = ACTIONS(1060), + [anon_sym_overlay] = ACTIONS(1060), + [anon_sym_new] = ACTIONS(1060), + [anon_sym_as] = ACTIONS(1060), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1062), + [anon_sym_DOT_DOT2] = ACTIONS(1060), + [anon_sym_DOT] = ACTIONS(1060), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1062), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1062), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1062), + [aux_sym__val_number_decimal_token1] = ACTIONS(1060), + [aux_sym__val_number_decimal_token2] = ACTIONS(1062), + [aux_sym__val_number_decimal_token3] = ACTIONS(1062), + [aux_sym__val_number_decimal_token4] = ACTIONS(1062), + [aux_sym__val_number_token1] = ACTIONS(1062), + [aux_sym__val_number_token2] = ACTIONS(1062), + [aux_sym__val_number_token3] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1062), + [sym__str_single_quotes] = ACTIONS(1062), + [sym__str_back_ticks] = ACTIONS(1062), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1060), + [anon_sym_POUND] = ACTIONS(247), + }, + [395] = { + [sym_comment] = STATE(395), + [anon_sym_export] = ACTIONS(1052), + [anon_sym_alias] = ACTIONS(1052), + [anon_sym_let] = ACTIONS(1052), + [anon_sym_let_DASHenv] = ACTIONS(1052), + [anon_sym_mut] = ACTIONS(1052), + [anon_sym_const] = ACTIONS(1052), + [aux_sym_cmd_identifier_token1] = ACTIONS(1052), + [aux_sym_cmd_identifier_token2] = ACTIONS(1052), + [aux_sym_cmd_identifier_token3] = ACTIONS(1052), + [aux_sym_cmd_identifier_token4] = ACTIONS(1052), + [aux_sym_cmd_identifier_token5] = ACTIONS(1052), + [aux_sym_cmd_identifier_token6] = ACTIONS(1052), + [aux_sym_cmd_identifier_token7] = ACTIONS(1052), + [aux_sym_cmd_identifier_token8] = ACTIONS(1052), + [aux_sym_cmd_identifier_token9] = ACTIONS(1052), + [aux_sym_cmd_identifier_token10] = ACTIONS(1052), + [aux_sym_cmd_identifier_token11] = ACTIONS(1052), + [aux_sym_cmd_identifier_token12] = ACTIONS(1052), + [aux_sym_cmd_identifier_token13] = ACTIONS(1052), + [aux_sym_cmd_identifier_token14] = ACTIONS(1052), + [aux_sym_cmd_identifier_token15] = ACTIONS(1052), + [aux_sym_cmd_identifier_token16] = ACTIONS(1052), + [aux_sym_cmd_identifier_token17] = ACTIONS(1052), + [aux_sym_cmd_identifier_token18] = ACTIONS(1052), + [aux_sym_cmd_identifier_token19] = ACTIONS(1052), + [aux_sym_cmd_identifier_token20] = ACTIONS(1052), + [aux_sym_cmd_identifier_token21] = ACTIONS(1052), + [aux_sym_cmd_identifier_token22] = ACTIONS(1052), + [aux_sym_cmd_identifier_token23] = ACTIONS(1052), + [aux_sym_cmd_identifier_token24] = ACTIONS(1052), + [aux_sym_cmd_identifier_token25] = ACTIONS(1052), + [aux_sym_cmd_identifier_token26] = ACTIONS(1052), + [aux_sym_cmd_identifier_token27] = ACTIONS(1052), + [aux_sym_cmd_identifier_token28] = ACTIONS(1052), + [aux_sym_cmd_identifier_token29] = ACTIONS(1052), + [aux_sym_cmd_identifier_token30] = ACTIONS(1052), + [aux_sym_cmd_identifier_token31] = ACTIONS(1052), + [aux_sym_cmd_identifier_token32] = ACTIONS(1052), + [aux_sym_cmd_identifier_token33] = ACTIONS(1052), + [aux_sym_cmd_identifier_token34] = ACTIONS(1052), + [aux_sym_cmd_identifier_token35] = ACTIONS(1052), + [aux_sym_cmd_identifier_token36] = ACTIONS(1052), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_null] = ACTIONS(1054), + [aux_sym_cmd_identifier_token38] = ACTIONS(1052), + [aux_sym_cmd_identifier_token39] = ACTIONS(1054), + [aux_sym_cmd_identifier_token40] = ACTIONS(1054), + [anon_sym_def] = ACTIONS(1052), + [anon_sym_export_DASHenv] = ACTIONS(1052), + [anon_sym_extern] = ACTIONS(1052), + [anon_sym_module] = ACTIONS(1052), + [anon_sym_use] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_DOLLAR] = ACTIONS(1054), + [anon_sym_error] = ACTIONS(1052), + [anon_sym_list] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_break] = ACTIONS(1052), + [anon_sym_continue] = ACTIONS(1052), + [anon_sym_for] = ACTIONS(1052), + [anon_sym_in] = ACTIONS(1052), + [anon_sym_loop] = ACTIONS(1052), + [anon_sym_make] = ACTIONS(1052), + [anon_sym_while] = ACTIONS(1052), + [anon_sym_do] = ACTIONS(1052), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_else] = ACTIONS(1052), + [anon_sym_match] = ACTIONS(1052), + [anon_sym_RBRACE] = ACTIONS(1054), + [anon_sym_try] = ACTIONS(1052), + [anon_sym_catch] = ACTIONS(1052), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_source] = ACTIONS(1052), + [anon_sym_source_DASHenv] = ACTIONS(1052), + [anon_sym_register] = ACTIONS(1052), + [anon_sym_hide] = ACTIONS(1052), + [anon_sym_hide_DASHenv] = ACTIONS(1052), + [anon_sym_overlay] = ACTIONS(1052), + [anon_sym_new] = ACTIONS(1052), + [anon_sym_as] = ACTIONS(1052), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1054), + [anon_sym_DOT_DOT2] = ACTIONS(1052), + [anon_sym_DOT] = ACTIONS(1052), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1054), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1054), + [aux_sym__val_number_decimal_token1] = ACTIONS(1052), + [aux_sym__val_number_decimal_token2] = ACTIONS(1054), + [aux_sym__val_number_decimal_token3] = ACTIONS(1054), + [aux_sym__val_number_decimal_token4] = ACTIONS(1054), + [aux_sym__val_number_token1] = ACTIONS(1054), + [aux_sym__val_number_token2] = ACTIONS(1054), + [aux_sym__val_number_token3] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym__str_single_quotes] = ACTIONS(1054), + [sym__str_back_ticks] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_POUND] = ACTIONS(247), + }, + [396] = { + [sym_comment] = STATE(396), + [anon_sym_export] = ACTIONS(1028), + [anon_sym_alias] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(1028), + [anon_sym_let_DASHenv] = ACTIONS(1028), + [anon_sym_mut] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(1028), + [aux_sym_cmd_identifier_token1] = ACTIONS(1028), + [aux_sym_cmd_identifier_token2] = ACTIONS(1028), + [aux_sym_cmd_identifier_token3] = ACTIONS(1028), + [aux_sym_cmd_identifier_token4] = ACTIONS(1028), + [aux_sym_cmd_identifier_token5] = ACTIONS(1028), + [aux_sym_cmd_identifier_token6] = ACTIONS(1028), + [aux_sym_cmd_identifier_token7] = ACTIONS(1028), + [aux_sym_cmd_identifier_token8] = ACTIONS(1028), + [aux_sym_cmd_identifier_token9] = ACTIONS(1028), + [aux_sym_cmd_identifier_token10] = ACTIONS(1028), + [aux_sym_cmd_identifier_token11] = ACTIONS(1028), + [aux_sym_cmd_identifier_token12] = ACTIONS(1028), + [aux_sym_cmd_identifier_token13] = ACTIONS(1028), + [aux_sym_cmd_identifier_token14] = ACTIONS(1028), + [aux_sym_cmd_identifier_token15] = ACTIONS(1028), + [aux_sym_cmd_identifier_token16] = ACTIONS(1028), + [aux_sym_cmd_identifier_token17] = ACTIONS(1028), + [aux_sym_cmd_identifier_token18] = ACTIONS(1028), + [aux_sym_cmd_identifier_token19] = ACTIONS(1028), + [aux_sym_cmd_identifier_token20] = ACTIONS(1028), + [aux_sym_cmd_identifier_token21] = ACTIONS(1028), + [aux_sym_cmd_identifier_token22] = ACTIONS(1028), + [aux_sym_cmd_identifier_token23] = ACTIONS(1028), + [aux_sym_cmd_identifier_token24] = ACTIONS(1028), + [aux_sym_cmd_identifier_token25] = ACTIONS(1028), + [aux_sym_cmd_identifier_token26] = ACTIONS(1028), + [aux_sym_cmd_identifier_token27] = ACTIONS(1028), + [aux_sym_cmd_identifier_token28] = ACTIONS(1028), + [aux_sym_cmd_identifier_token29] = ACTIONS(1028), + [aux_sym_cmd_identifier_token30] = ACTIONS(1028), + [aux_sym_cmd_identifier_token31] = ACTIONS(1028), + [aux_sym_cmd_identifier_token32] = ACTIONS(1028), + [aux_sym_cmd_identifier_token33] = ACTIONS(1028), + [aux_sym_cmd_identifier_token34] = ACTIONS(1028), + [aux_sym_cmd_identifier_token35] = ACTIONS(1028), + [aux_sym_cmd_identifier_token36] = ACTIONS(1028), + [anon_sym_true] = ACTIONS(1030), + [anon_sym_false] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1030), + [aux_sym_cmd_identifier_token38] = ACTIONS(1028), + [aux_sym_cmd_identifier_token39] = ACTIONS(1030), + [aux_sym_cmd_identifier_token40] = ACTIONS(1030), + [anon_sym_def] = ACTIONS(1028), + [anon_sym_export_DASHenv] = ACTIONS(1028), + [anon_sym_extern] = ACTIONS(1028), + [anon_sym_module] = ACTIONS(1028), + [anon_sym_use] = ACTIONS(1028), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_COMMA] = ACTIONS(1030), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_error] = ACTIONS(1028), + [anon_sym_list] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_in] = ACTIONS(1028), + [anon_sym_loop] = ACTIONS(1028), + [anon_sym_make] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_else] = ACTIONS(1028), + [anon_sym_match] = ACTIONS(1028), + [anon_sym_RBRACE] = ACTIONS(1030), + [anon_sym_try] = ACTIONS(1028), + [anon_sym_catch] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_source] = ACTIONS(1028), + [anon_sym_source_DASHenv] = ACTIONS(1028), + [anon_sym_register] = ACTIONS(1028), + [anon_sym_hide] = ACTIONS(1028), + [anon_sym_hide_DASHenv] = ACTIONS(1028), + [anon_sym_overlay] = ACTIONS(1028), + [anon_sym_new] = ACTIONS(1028), + [anon_sym_as] = ACTIONS(1028), + [anon_sym_QMARK2] = ACTIONS(2073), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1030), + [anon_sym_DOT] = ACTIONS(1028), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1028), + [aux_sym__val_number_decimal_token2] = ACTIONS(1030), + [aux_sym__val_number_decimal_token3] = ACTIONS(1030), + [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_token1] = ACTIONS(1030), + [aux_sym__val_number_token2] = ACTIONS(1030), + [aux_sym__val_number_token3] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym__str_single_quotes] = ACTIONS(1030), + [sym__str_back_ticks] = ACTIONS(1030), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1030), + [aux_sym_record_entry_token1] = ACTIONS(1030), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_POUND] = ACTIONS(247), + }, + [397] = { + [sym_cell_path] = STATE(633), + [sym_path] = STATE(550), + [sym_comment] = STATE(397), + [aux_sym_cell_path_repeat1] = STATE(434), + [anon_sym_export] = ACTIONS(1894), + [anon_sym_alias] = ACTIONS(1894), + [anon_sym_let] = ACTIONS(1894), + [anon_sym_let_DASHenv] = ACTIONS(1894), + [anon_sym_mut] = ACTIONS(1894), + [anon_sym_const] = ACTIONS(1894), + [aux_sym_cmd_identifier_token1] = ACTIONS(1894), + [aux_sym_cmd_identifier_token2] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1894), + [aux_sym_cmd_identifier_token4] = ACTIONS(1894), + [aux_sym_cmd_identifier_token5] = ACTIONS(1894), + [aux_sym_cmd_identifier_token6] = ACTIONS(1894), + [aux_sym_cmd_identifier_token7] = ACTIONS(1894), + [aux_sym_cmd_identifier_token8] = ACTIONS(1894), + [aux_sym_cmd_identifier_token9] = ACTIONS(1894), + [aux_sym_cmd_identifier_token10] = ACTIONS(1894), + [aux_sym_cmd_identifier_token11] = ACTIONS(1894), + [aux_sym_cmd_identifier_token12] = ACTIONS(1894), + [aux_sym_cmd_identifier_token13] = ACTIONS(1894), + [aux_sym_cmd_identifier_token14] = ACTIONS(1894), + [aux_sym_cmd_identifier_token15] = ACTIONS(1894), + [aux_sym_cmd_identifier_token16] = ACTIONS(1894), + [aux_sym_cmd_identifier_token17] = ACTIONS(1894), + [aux_sym_cmd_identifier_token18] = ACTIONS(1894), + [aux_sym_cmd_identifier_token19] = ACTIONS(1894), + [aux_sym_cmd_identifier_token20] = ACTIONS(1894), + [aux_sym_cmd_identifier_token21] = ACTIONS(1894), + [aux_sym_cmd_identifier_token22] = ACTIONS(1894), + [aux_sym_cmd_identifier_token23] = ACTIONS(1894), + [aux_sym_cmd_identifier_token24] = ACTIONS(1894), + [aux_sym_cmd_identifier_token25] = ACTIONS(1894), + [aux_sym_cmd_identifier_token26] = ACTIONS(1894), + [aux_sym_cmd_identifier_token27] = ACTIONS(1894), + [aux_sym_cmd_identifier_token28] = ACTIONS(1894), + [aux_sym_cmd_identifier_token29] = ACTIONS(1894), + [aux_sym_cmd_identifier_token30] = ACTIONS(1894), + [aux_sym_cmd_identifier_token31] = ACTIONS(1894), + [aux_sym_cmd_identifier_token32] = ACTIONS(1894), + [aux_sym_cmd_identifier_token33] = ACTIONS(1894), + [aux_sym_cmd_identifier_token34] = ACTIONS(1894), + [aux_sym_cmd_identifier_token35] = ACTIONS(1894), + [aux_sym_cmd_identifier_token36] = ACTIONS(1894), + [anon_sym_true] = ACTIONS(1896), + [anon_sym_false] = ACTIONS(1896), + [anon_sym_null] = ACTIONS(1896), + [aux_sym_cmd_identifier_token38] = ACTIONS(1894), + [aux_sym_cmd_identifier_token39] = ACTIONS(1896), + [aux_sym_cmd_identifier_token40] = ACTIONS(1896), + [anon_sym_def] = ACTIONS(1894), + [anon_sym_export_DASHenv] = ACTIONS(1894), + [anon_sym_extern] = ACTIONS(1894), + [anon_sym_module] = ACTIONS(1894), + [anon_sym_use] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1896), + [anon_sym_DOLLAR] = ACTIONS(1896), + [anon_sym_error] = ACTIONS(1894), + [anon_sym_list] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_break] = ACTIONS(1894), + [anon_sym_continue] = ACTIONS(1894), + [anon_sym_for] = ACTIONS(1894), + [anon_sym_in] = ACTIONS(1894), + [anon_sym_loop] = ACTIONS(1894), + [anon_sym_make] = ACTIONS(1894), + [anon_sym_while] = ACTIONS(1894), + [anon_sym_do] = ACTIONS(1894), + [anon_sym_if] = ACTIONS(1894), + [anon_sym_else] = ACTIONS(1894), + [anon_sym_match] = ACTIONS(1894), + [anon_sym_RBRACE] = ACTIONS(1896), + [anon_sym_try] = ACTIONS(1894), + [anon_sym_catch] = ACTIONS(1894), + [anon_sym_return] = ACTIONS(1894), + [anon_sym_source] = ACTIONS(1894), + [anon_sym_source_DASHenv] = ACTIONS(1894), + [anon_sym_register] = ACTIONS(1894), + [anon_sym_hide] = ACTIONS(1894), + [anon_sym_hide_DASHenv] = ACTIONS(1894), + [anon_sym_overlay] = ACTIONS(1894), + [anon_sym_new] = ACTIONS(1894), + [anon_sym_as] = ACTIONS(1894), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1896), + [anon_sym_DOT] = ACTIONS(1973), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1896), + [aux_sym__val_number_decimal_token1] = ACTIONS(1894), + [aux_sym__val_number_decimal_token2] = ACTIONS(1896), + [aux_sym__val_number_decimal_token3] = ACTIONS(1896), + [aux_sym__val_number_decimal_token4] = ACTIONS(1896), + [aux_sym__val_number_token1] = ACTIONS(1896), + [aux_sym__val_number_token2] = ACTIONS(1896), + [aux_sym__val_number_token3] = ACTIONS(1896), + [anon_sym_DQUOTE] = ACTIONS(1896), + [sym__str_single_quotes] = ACTIONS(1896), + [sym__str_back_ticks] = ACTIONS(1896), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1896), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_POUND] = ACTIONS(247), + }, + [398] = { + [sym_comment] = STATE(398), + [anon_sym_export] = ACTIONS(1076), + [anon_sym_alias] = ACTIONS(1076), + [anon_sym_let] = ACTIONS(1076), + [anon_sym_let_DASHenv] = ACTIONS(1076), + [anon_sym_mut] = ACTIONS(1076), + [anon_sym_const] = ACTIONS(1076), + [aux_sym_cmd_identifier_token1] = ACTIONS(1076), + [aux_sym_cmd_identifier_token2] = ACTIONS(1076), + [aux_sym_cmd_identifier_token3] = ACTIONS(1076), + [aux_sym_cmd_identifier_token4] = ACTIONS(1076), + [aux_sym_cmd_identifier_token5] = ACTIONS(1076), + [aux_sym_cmd_identifier_token6] = ACTIONS(1076), + [aux_sym_cmd_identifier_token7] = ACTIONS(1076), + [aux_sym_cmd_identifier_token8] = ACTIONS(1076), + [aux_sym_cmd_identifier_token9] = ACTIONS(1076), + [aux_sym_cmd_identifier_token10] = ACTIONS(1076), + [aux_sym_cmd_identifier_token11] = ACTIONS(1076), + [aux_sym_cmd_identifier_token12] = ACTIONS(1076), + [aux_sym_cmd_identifier_token13] = ACTIONS(1076), + [aux_sym_cmd_identifier_token14] = ACTIONS(1076), + [aux_sym_cmd_identifier_token15] = ACTIONS(1076), + [aux_sym_cmd_identifier_token16] = ACTIONS(1076), + [aux_sym_cmd_identifier_token17] = ACTIONS(1076), + [aux_sym_cmd_identifier_token18] = ACTIONS(1076), + [aux_sym_cmd_identifier_token19] = ACTIONS(1076), + [aux_sym_cmd_identifier_token20] = ACTIONS(1076), + [aux_sym_cmd_identifier_token21] = ACTIONS(1076), + [aux_sym_cmd_identifier_token22] = ACTIONS(1076), + [aux_sym_cmd_identifier_token23] = ACTIONS(1076), + [aux_sym_cmd_identifier_token24] = ACTIONS(1076), + [aux_sym_cmd_identifier_token25] = ACTIONS(1076), + [aux_sym_cmd_identifier_token26] = ACTIONS(1076), + [aux_sym_cmd_identifier_token27] = ACTIONS(1076), + [aux_sym_cmd_identifier_token28] = ACTIONS(1076), + [aux_sym_cmd_identifier_token29] = ACTIONS(1076), + [aux_sym_cmd_identifier_token30] = ACTIONS(1076), + [aux_sym_cmd_identifier_token31] = ACTIONS(1076), + [aux_sym_cmd_identifier_token32] = ACTIONS(1076), + [aux_sym_cmd_identifier_token33] = ACTIONS(1076), + [aux_sym_cmd_identifier_token34] = ACTIONS(1076), + [aux_sym_cmd_identifier_token35] = ACTIONS(1076), + [aux_sym_cmd_identifier_token36] = ACTIONS(1076), + [anon_sym_true] = ACTIONS(1076), + [anon_sym_false] = ACTIONS(1076), + [anon_sym_null] = ACTIONS(1076), + [aux_sym_cmd_identifier_token38] = ACTIONS(1076), + [aux_sym_cmd_identifier_token39] = ACTIONS(1076), + [aux_sym_cmd_identifier_token40] = ACTIONS(1076), + [anon_sym_def] = ACTIONS(1076), + [anon_sym_export_DASHenv] = ACTIONS(1076), + [anon_sym_extern] = ACTIONS(1076), + [anon_sym_module] = ACTIONS(1076), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_DOLLAR] = ACTIONS(1076), + [anon_sym_error] = ACTIONS(1076), + [anon_sym_list] = ACTIONS(1076), + [anon_sym_DASH] = ACTIONS(1076), + [anon_sym_break] = ACTIONS(1076), + [anon_sym_continue] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1076), + [anon_sym_in] = ACTIONS(1076), + [anon_sym_loop] = ACTIONS(1076), + [anon_sym_make] = ACTIONS(1076), + [anon_sym_while] = ACTIONS(1076), + [anon_sym_do] = ACTIONS(1076), + [anon_sym_if] = ACTIONS(1076), + [anon_sym_else] = ACTIONS(1076), + [anon_sym_match] = ACTIONS(1076), + [anon_sym_RBRACE] = ACTIONS(1076), + [anon_sym_try] = ACTIONS(1076), + [anon_sym_catch] = ACTIONS(1076), + [anon_sym_return] = ACTIONS(1076), + [anon_sym_source] = ACTIONS(1076), + [anon_sym_source_DASHenv] = ACTIONS(1076), + [anon_sym_register] = ACTIONS(1076), + [anon_sym_hide] = ACTIONS(1076), + [anon_sym_hide_DASHenv] = ACTIONS(1076), + [anon_sym_overlay] = ACTIONS(1076), + [anon_sym_new] = ACTIONS(1076), + [anon_sym_as] = ACTIONS(1076), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1076), + [anon_sym_DOT_DOT2] = ACTIONS(1995), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1997), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1997), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1076), + [aux_sym__val_number_decimal_token1] = ACTIONS(1076), + [aux_sym__val_number_decimal_token2] = ACTIONS(1076), + [aux_sym__val_number_decimal_token3] = ACTIONS(1076), + [aux_sym__val_number_decimal_token4] = ACTIONS(1076), + [aux_sym__val_number_token1] = ACTIONS(1076), + [aux_sym__val_number_token2] = ACTIONS(1076), + [aux_sym__val_number_token3] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1076), + [sym__str_single_quotes] = ACTIONS(1076), + [sym__str_back_ticks] = ACTIONS(1076), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1076), + [sym__entry_separator] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_POUND] = ACTIONS(3), + }, + [399] = { + [sym_cmd_identifier] = STATE(4558), + [sym__expression] = STATE(3729), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3774), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1461), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1442), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4903), + [sym_comment] = STATE(399), + [aux_sym_pipe_element_repeat2] = STATE(1032), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(369), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(369), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(369), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(367), + [anon_sym_true] = ACTIONS(371), + [anon_sym_false] = ACTIONS(371), + [anon_sym_null] = ACTIONS(373), + [aux_sym_cmd_identifier_token38] = ACTIONS(375), + [aux_sym_cmd_identifier_token39] = ACTIONS(377), + [aux_sym_cmd_identifier_token40] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(191), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + }, + [400] = { + [sym_cell_path] = STATE(623), + [sym_path] = STATE(550), + [sym_comment] = STATE(400), + [aux_sym_cell_path_repeat1] = STATE(434), + [anon_sym_export] = ACTIONS(1961), + [anon_sym_alias] = ACTIONS(1961), + [anon_sym_let] = ACTIONS(1961), + [anon_sym_let_DASHenv] = ACTIONS(1961), + [anon_sym_mut] = ACTIONS(1961), + [anon_sym_const] = ACTIONS(1961), + [aux_sym_cmd_identifier_token1] = ACTIONS(1961), + [aux_sym_cmd_identifier_token2] = ACTIONS(1961), + [aux_sym_cmd_identifier_token3] = ACTIONS(1961), + [aux_sym_cmd_identifier_token4] = ACTIONS(1961), + [aux_sym_cmd_identifier_token5] = ACTIONS(1961), + [aux_sym_cmd_identifier_token6] = ACTIONS(1961), + [aux_sym_cmd_identifier_token7] = ACTIONS(1961), + [aux_sym_cmd_identifier_token8] = ACTIONS(1961), + [aux_sym_cmd_identifier_token9] = ACTIONS(1961), + [aux_sym_cmd_identifier_token10] = ACTIONS(1961), + [aux_sym_cmd_identifier_token11] = ACTIONS(1961), + [aux_sym_cmd_identifier_token12] = ACTIONS(1961), + [aux_sym_cmd_identifier_token13] = ACTIONS(1961), + [aux_sym_cmd_identifier_token14] = ACTIONS(1961), + [aux_sym_cmd_identifier_token15] = ACTIONS(1961), + [aux_sym_cmd_identifier_token16] = ACTIONS(1961), + [aux_sym_cmd_identifier_token17] = ACTIONS(1961), + [aux_sym_cmd_identifier_token18] = ACTIONS(1961), + [aux_sym_cmd_identifier_token19] = ACTIONS(1961), + [aux_sym_cmd_identifier_token20] = ACTIONS(1961), + [aux_sym_cmd_identifier_token21] = ACTIONS(1961), + [aux_sym_cmd_identifier_token22] = ACTIONS(1961), + [aux_sym_cmd_identifier_token23] = ACTIONS(1961), + [aux_sym_cmd_identifier_token24] = ACTIONS(1961), + [aux_sym_cmd_identifier_token25] = ACTIONS(1961), + [aux_sym_cmd_identifier_token26] = ACTIONS(1961), + [aux_sym_cmd_identifier_token27] = ACTIONS(1961), + [aux_sym_cmd_identifier_token28] = ACTIONS(1961), + [aux_sym_cmd_identifier_token29] = ACTIONS(1961), + [aux_sym_cmd_identifier_token30] = ACTIONS(1961), + [aux_sym_cmd_identifier_token31] = ACTIONS(1961), + [aux_sym_cmd_identifier_token32] = ACTIONS(1961), + [aux_sym_cmd_identifier_token33] = ACTIONS(1961), + [aux_sym_cmd_identifier_token34] = ACTIONS(1961), + [aux_sym_cmd_identifier_token35] = ACTIONS(1961), + [aux_sym_cmd_identifier_token36] = ACTIONS(1961), + [anon_sym_true] = ACTIONS(1963), + [anon_sym_false] = ACTIONS(1963), + [anon_sym_null] = ACTIONS(1963), + [aux_sym_cmd_identifier_token38] = ACTIONS(1961), + [aux_sym_cmd_identifier_token39] = ACTIONS(1963), + [aux_sym_cmd_identifier_token40] = ACTIONS(1963), + [anon_sym_def] = ACTIONS(1961), + [anon_sym_export_DASHenv] = ACTIONS(1961), + [anon_sym_extern] = ACTIONS(1961), + [anon_sym_module] = ACTIONS(1961), + [anon_sym_use] = ACTIONS(1961), + [anon_sym_LPAREN] = ACTIONS(1963), + [anon_sym_DOLLAR] = ACTIONS(1963), + [anon_sym_error] = ACTIONS(1961), + [anon_sym_list] = ACTIONS(1961), + [anon_sym_DASH] = ACTIONS(1961), + [anon_sym_break] = ACTIONS(1961), + [anon_sym_continue] = ACTIONS(1961), + [anon_sym_for] = ACTIONS(1961), + [anon_sym_in] = ACTIONS(1961), + [anon_sym_loop] = ACTIONS(1961), + [anon_sym_make] = ACTIONS(1961), + [anon_sym_while] = ACTIONS(1961), + [anon_sym_do] = ACTIONS(1961), + [anon_sym_if] = ACTIONS(1961), + [anon_sym_else] = ACTIONS(1961), + [anon_sym_match] = ACTIONS(1961), + [anon_sym_RBRACE] = ACTIONS(1963), + [anon_sym_try] = ACTIONS(1961), + [anon_sym_catch] = ACTIONS(1961), + [anon_sym_return] = ACTIONS(1961), + [anon_sym_source] = ACTIONS(1961), + [anon_sym_source_DASHenv] = ACTIONS(1961), + [anon_sym_register] = ACTIONS(1961), + [anon_sym_hide] = ACTIONS(1961), + [anon_sym_hide_DASHenv] = ACTIONS(1961), + [anon_sym_overlay] = ACTIONS(1961), + [anon_sym_new] = ACTIONS(1961), + [anon_sym_as] = ACTIONS(1961), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1963), + [anon_sym_DOT] = ACTIONS(1973), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1963), + [aux_sym__val_number_decimal_token4] = ACTIONS(1963), + [aux_sym__val_number_token1] = ACTIONS(1963), + [aux_sym__val_number_token2] = ACTIONS(1963), + [aux_sym__val_number_token3] = ACTIONS(1963), + [anon_sym_DQUOTE] = ACTIONS(1963), + [sym__str_single_quotes] = ACTIONS(1963), + [sym__str_back_ticks] = ACTIONS(1963), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1961), + [anon_sym_POUND] = ACTIONS(247), + }, + [401] = { + [sym_cell_path] = STATE(645), + [sym_path] = STATE(550), + [sym_comment] = STATE(401), + [aux_sym_cell_path_repeat1] = STATE(434), + [anon_sym_export] = ACTIONS(1965), + [anon_sym_alias] = ACTIONS(1965), + [anon_sym_let] = ACTIONS(1965), + [anon_sym_let_DASHenv] = ACTIONS(1965), + [anon_sym_mut] = ACTIONS(1965), + [anon_sym_const] = ACTIONS(1965), + [aux_sym_cmd_identifier_token1] = ACTIONS(1965), + [aux_sym_cmd_identifier_token2] = ACTIONS(1965), + [aux_sym_cmd_identifier_token3] = ACTIONS(1965), + [aux_sym_cmd_identifier_token4] = ACTIONS(1965), + [aux_sym_cmd_identifier_token5] = ACTIONS(1965), + [aux_sym_cmd_identifier_token6] = ACTIONS(1965), + [aux_sym_cmd_identifier_token7] = ACTIONS(1965), + [aux_sym_cmd_identifier_token8] = ACTIONS(1965), + [aux_sym_cmd_identifier_token9] = ACTIONS(1965), + [aux_sym_cmd_identifier_token10] = ACTIONS(1965), + [aux_sym_cmd_identifier_token11] = ACTIONS(1965), + [aux_sym_cmd_identifier_token12] = ACTIONS(1965), + [aux_sym_cmd_identifier_token13] = ACTIONS(1965), + [aux_sym_cmd_identifier_token14] = ACTIONS(1965), + [aux_sym_cmd_identifier_token15] = ACTIONS(1965), + [aux_sym_cmd_identifier_token16] = ACTIONS(1965), + [aux_sym_cmd_identifier_token17] = ACTIONS(1965), + [aux_sym_cmd_identifier_token18] = ACTIONS(1965), + [aux_sym_cmd_identifier_token19] = ACTIONS(1965), + [aux_sym_cmd_identifier_token20] = ACTIONS(1965), + [aux_sym_cmd_identifier_token21] = ACTIONS(1965), + [aux_sym_cmd_identifier_token22] = ACTIONS(1965), + [aux_sym_cmd_identifier_token23] = ACTIONS(1965), + [aux_sym_cmd_identifier_token24] = ACTIONS(1965), + [aux_sym_cmd_identifier_token25] = ACTIONS(1965), + [aux_sym_cmd_identifier_token26] = ACTIONS(1965), + [aux_sym_cmd_identifier_token27] = ACTIONS(1965), + [aux_sym_cmd_identifier_token28] = ACTIONS(1965), + [aux_sym_cmd_identifier_token29] = ACTIONS(1965), + [aux_sym_cmd_identifier_token30] = ACTIONS(1965), + [aux_sym_cmd_identifier_token31] = ACTIONS(1965), + [aux_sym_cmd_identifier_token32] = ACTIONS(1965), + [aux_sym_cmd_identifier_token33] = ACTIONS(1965), + [aux_sym_cmd_identifier_token34] = ACTIONS(1965), + [aux_sym_cmd_identifier_token35] = ACTIONS(1965), + [aux_sym_cmd_identifier_token36] = ACTIONS(1965), + [anon_sym_true] = ACTIONS(1967), + [anon_sym_false] = ACTIONS(1967), + [anon_sym_null] = ACTIONS(1967), + [aux_sym_cmd_identifier_token38] = ACTIONS(1965), + [aux_sym_cmd_identifier_token39] = ACTIONS(1967), + [aux_sym_cmd_identifier_token40] = ACTIONS(1967), + [anon_sym_def] = ACTIONS(1965), + [anon_sym_export_DASHenv] = ACTIONS(1965), + [anon_sym_extern] = ACTIONS(1965), + [anon_sym_module] = ACTIONS(1965), + [anon_sym_use] = ACTIONS(1965), + [anon_sym_LPAREN] = ACTIONS(1967), + [anon_sym_DOLLAR] = ACTIONS(1967), + [anon_sym_error] = ACTIONS(1965), + [anon_sym_list] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_break] = ACTIONS(1965), + [anon_sym_continue] = ACTIONS(1965), + [anon_sym_for] = ACTIONS(1965), + [anon_sym_in] = ACTIONS(1965), + [anon_sym_loop] = ACTIONS(1965), + [anon_sym_make] = ACTIONS(1965), + [anon_sym_while] = ACTIONS(1965), + [anon_sym_do] = ACTIONS(1965), + [anon_sym_if] = ACTIONS(1965), + [anon_sym_else] = ACTIONS(1965), + [anon_sym_match] = ACTIONS(1965), + [anon_sym_RBRACE] = ACTIONS(1967), + [anon_sym_try] = ACTIONS(1965), + [anon_sym_catch] = ACTIONS(1965), + [anon_sym_return] = ACTIONS(1965), + [anon_sym_source] = ACTIONS(1965), + [anon_sym_source_DASHenv] = ACTIONS(1965), + [anon_sym_register] = ACTIONS(1965), + [anon_sym_hide] = ACTIONS(1965), + [anon_sym_hide_DASHenv] = ACTIONS(1965), + [anon_sym_overlay] = ACTIONS(1965), + [anon_sym_new] = ACTIONS(1965), + [anon_sym_as] = ACTIONS(1965), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1967), + [anon_sym_DOT] = ACTIONS(1973), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1967), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1967), + [aux_sym__val_number_decimal_token4] = ACTIONS(1967), + [aux_sym__val_number_token1] = ACTIONS(1967), + [aux_sym__val_number_token2] = ACTIONS(1967), + [aux_sym__val_number_token3] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym__str_single_quotes] = ACTIONS(1967), + [sym__str_back_ticks] = ACTIONS(1967), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1967), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_POUND] = ACTIONS(247), + }, + [402] = { + [sym_comment] = STATE(402), + [anon_sym_export] = ACTIONS(1631), + [anon_sym_alias] = ACTIONS(1631), + [anon_sym_let] = ACTIONS(1631), + [anon_sym_let_DASHenv] = ACTIONS(1631), + [anon_sym_mut] = ACTIONS(1631), + [anon_sym_const] = ACTIONS(1631), + [aux_sym_cmd_identifier_token1] = ACTIONS(1631), + [aux_sym_cmd_identifier_token2] = ACTIONS(1631), + [aux_sym_cmd_identifier_token3] = ACTIONS(1631), + [aux_sym_cmd_identifier_token4] = ACTIONS(1631), + [aux_sym_cmd_identifier_token5] = ACTIONS(1631), + [aux_sym_cmd_identifier_token6] = ACTIONS(1631), + [aux_sym_cmd_identifier_token7] = ACTIONS(1631), + [aux_sym_cmd_identifier_token8] = ACTIONS(1631), + [aux_sym_cmd_identifier_token9] = ACTIONS(1631), + [aux_sym_cmd_identifier_token10] = ACTIONS(1631), + [aux_sym_cmd_identifier_token11] = ACTIONS(1631), + [aux_sym_cmd_identifier_token12] = ACTIONS(1631), + [aux_sym_cmd_identifier_token13] = ACTIONS(1631), + [aux_sym_cmd_identifier_token14] = ACTIONS(1631), + [aux_sym_cmd_identifier_token15] = ACTIONS(1631), + [aux_sym_cmd_identifier_token16] = ACTIONS(1631), + [aux_sym_cmd_identifier_token17] = ACTIONS(1631), + [aux_sym_cmd_identifier_token18] = ACTIONS(1631), + [aux_sym_cmd_identifier_token19] = ACTIONS(1631), + [aux_sym_cmd_identifier_token20] = ACTIONS(1631), + [aux_sym_cmd_identifier_token21] = ACTIONS(1631), + [aux_sym_cmd_identifier_token22] = ACTIONS(1631), + [aux_sym_cmd_identifier_token23] = ACTIONS(1631), + [aux_sym_cmd_identifier_token24] = ACTIONS(1631), + [aux_sym_cmd_identifier_token25] = ACTIONS(1631), + [aux_sym_cmd_identifier_token26] = ACTIONS(1631), + [aux_sym_cmd_identifier_token27] = ACTIONS(1631), + [aux_sym_cmd_identifier_token28] = ACTIONS(1631), + [aux_sym_cmd_identifier_token29] = ACTIONS(1631), + [aux_sym_cmd_identifier_token30] = ACTIONS(1631), + [aux_sym_cmd_identifier_token31] = ACTIONS(1631), + [aux_sym_cmd_identifier_token32] = ACTIONS(1631), + [aux_sym_cmd_identifier_token33] = ACTIONS(1631), + [aux_sym_cmd_identifier_token34] = ACTIONS(1631), + [aux_sym_cmd_identifier_token35] = ACTIONS(1631), + [aux_sym_cmd_identifier_token36] = ACTIONS(1631), + [anon_sym_true] = ACTIONS(1631), + [anon_sym_false] = ACTIONS(1631), + [anon_sym_null] = ACTIONS(1631), + [aux_sym_cmd_identifier_token38] = ACTIONS(1631), + [aux_sym_cmd_identifier_token39] = ACTIONS(1631), + [aux_sym_cmd_identifier_token40] = ACTIONS(1631), + [anon_sym_def] = ACTIONS(1631), + [anon_sym_export_DASHenv] = ACTIONS(1631), + [anon_sym_extern] = ACTIONS(1631), + [anon_sym_module] = ACTIONS(1631), + [anon_sym_use] = ACTIONS(1631), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_DOLLAR] = ACTIONS(1631), + [anon_sym_error] = ACTIONS(1631), + [anon_sym_list] = ACTIONS(1631), + [anon_sym_DASH] = ACTIONS(1631), + [anon_sym_break] = ACTIONS(1631), + [anon_sym_continue] = ACTIONS(1631), + [anon_sym_for] = ACTIONS(1631), + [anon_sym_in] = ACTIONS(1631), + [anon_sym_loop] = ACTIONS(1631), + [anon_sym_make] = ACTIONS(1631), + [anon_sym_while] = ACTIONS(1631), + [anon_sym_do] = ACTIONS(1631), + [anon_sym_if] = ACTIONS(1631), + [anon_sym_else] = ACTIONS(1631), + [anon_sym_match] = ACTIONS(1631), + [anon_sym_RBRACE] = ACTIONS(1631), + [anon_sym_try] = ACTIONS(1631), + [anon_sym_catch] = ACTIONS(1631), + [anon_sym_return] = ACTIONS(1631), + [anon_sym_source] = ACTIONS(1631), + [anon_sym_source_DASHenv] = ACTIONS(1631), + [anon_sym_register] = ACTIONS(1631), + [anon_sym_hide] = ACTIONS(1631), + [anon_sym_hide_DASHenv] = ACTIONS(1631), + [anon_sym_overlay] = ACTIONS(1631), + [anon_sym_new] = ACTIONS(1631), + [anon_sym_as] = ACTIONS(1631), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1631), + [anon_sym_DOT_DOT2] = ACTIONS(1631), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1633), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1633), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1631), + [aux_sym__val_number_decimal_token1] = ACTIONS(1631), + [aux_sym__val_number_decimal_token2] = ACTIONS(1631), + [aux_sym__val_number_decimal_token3] = ACTIONS(1631), + [aux_sym__val_number_decimal_token4] = ACTIONS(1631), + [aux_sym__val_number_token1] = ACTIONS(1631), + [aux_sym__val_number_token2] = ACTIONS(1631), + [aux_sym__val_number_token3] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [sym__str_single_quotes] = ACTIONS(1631), + [sym__str_back_ticks] = ACTIONS(1631), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1631), + [sym__entry_separator] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1631), + [anon_sym_POUND] = ACTIONS(3), + }, + [403] = { + [sym_cell_path] = STATE(594), + [sym_path] = STATE(550), + [sym_comment] = STATE(403), + [aux_sym_cell_path_repeat1] = STATE(434), + [anon_sym_export] = ACTIONS(1879), + [anon_sym_alias] = ACTIONS(1879), + [anon_sym_let] = ACTIONS(1879), + [anon_sym_let_DASHenv] = ACTIONS(1879), + [anon_sym_mut] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1879), + [aux_sym_cmd_identifier_token1] = ACTIONS(1879), + [aux_sym_cmd_identifier_token2] = ACTIONS(1879), + [aux_sym_cmd_identifier_token3] = ACTIONS(1879), + [aux_sym_cmd_identifier_token4] = ACTIONS(1879), + [aux_sym_cmd_identifier_token5] = ACTIONS(1879), + [aux_sym_cmd_identifier_token6] = ACTIONS(1879), + [aux_sym_cmd_identifier_token7] = ACTIONS(1879), + [aux_sym_cmd_identifier_token8] = ACTIONS(1879), + [aux_sym_cmd_identifier_token9] = ACTIONS(1879), + [aux_sym_cmd_identifier_token10] = ACTIONS(1879), + [aux_sym_cmd_identifier_token11] = ACTIONS(1879), + [aux_sym_cmd_identifier_token12] = ACTIONS(1879), + [aux_sym_cmd_identifier_token13] = ACTIONS(1879), + [aux_sym_cmd_identifier_token14] = ACTIONS(1879), + [aux_sym_cmd_identifier_token15] = ACTIONS(1879), + [aux_sym_cmd_identifier_token16] = ACTIONS(1879), + [aux_sym_cmd_identifier_token17] = ACTIONS(1879), + [aux_sym_cmd_identifier_token18] = ACTIONS(1879), + [aux_sym_cmd_identifier_token19] = ACTIONS(1879), + [aux_sym_cmd_identifier_token20] = ACTIONS(1879), + [aux_sym_cmd_identifier_token21] = ACTIONS(1879), + [aux_sym_cmd_identifier_token22] = ACTIONS(1879), + [aux_sym_cmd_identifier_token23] = ACTIONS(1879), + [aux_sym_cmd_identifier_token24] = ACTIONS(1879), + [aux_sym_cmd_identifier_token25] = ACTIONS(1879), + [aux_sym_cmd_identifier_token26] = ACTIONS(1879), + [aux_sym_cmd_identifier_token27] = ACTIONS(1879), + [aux_sym_cmd_identifier_token28] = ACTIONS(1879), + [aux_sym_cmd_identifier_token29] = ACTIONS(1879), + [aux_sym_cmd_identifier_token30] = ACTIONS(1879), + [aux_sym_cmd_identifier_token31] = ACTIONS(1879), + [aux_sym_cmd_identifier_token32] = ACTIONS(1879), + [aux_sym_cmd_identifier_token33] = ACTIONS(1879), + [aux_sym_cmd_identifier_token34] = ACTIONS(1879), + [aux_sym_cmd_identifier_token35] = ACTIONS(1879), + [aux_sym_cmd_identifier_token36] = ACTIONS(1879), + [anon_sym_true] = ACTIONS(1881), + [anon_sym_false] = ACTIONS(1881), + [anon_sym_null] = ACTIONS(1881), + [aux_sym_cmd_identifier_token38] = ACTIONS(1879), + [aux_sym_cmd_identifier_token39] = ACTIONS(1881), + [aux_sym_cmd_identifier_token40] = ACTIONS(1881), + [anon_sym_def] = ACTIONS(1879), + [anon_sym_export_DASHenv] = ACTIONS(1879), + [anon_sym_extern] = ACTIONS(1879), + [anon_sym_module] = ACTIONS(1879), + [anon_sym_use] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_DOLLAR] = ACTIONS(1881), + [anon_sym_error] = ACTIONS(1879), + [anon_sym_list] = ACTIONS(1879), + [anon_sym_DASH] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_in] = ACTIONS(1879), + [anon_sym_loop] = ACTIONS(1879), + [anon_sym_make] = ACTIONS(1879), + [anon_sym_while] = ACTIONS(1879), + [anon_sym_do] = ACTIONS(1879), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_else] = ACTIONS(1879), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_RBRACE] = ACTIONS(1881), + [anon_sym_try] = ACTIONS(1879), + [anon_sym_catch] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_source] = ACTIONS(1879), + [anon_sym_source_DASHenv] = ACTIONS(1879), + [anon_sym_register] = ACTIONS(1879), + [anon_sym_hide] = ACTIONS(1879), + [anon_sym_hide_DASHenv] = ACTIONS(1879), + [anon_sym_overlay] = ACTIONS(1879), + [anon_sym_new] = ACTIONS(1879), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1881), + [anon_sym_DOT] = ACTIONS(1973), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1881), + [aux_sym__val_number_decimal_token1] = ACTIONS(1879), + [aux_sym__val_number_decimal_token2] = ACTIONS(1881), + [aux_sym__val_number_decimal_token3] = ACTIONS(1881), + [aux_sym__val_number_decimal_token4] = ACTIONS(1881), + [aux_sym__val_number_token1] = ACTIONS(1881), + [aux_sym__val_number_token2] = ACTIONS(1881), + [aux_sym__val_number_token3] = ACTIONS(1881), + [anon_sym_DQUOTE] = ACTIONS(1881), + [sym__str_single_quotes] = ACTIONS(1881), + [sym__str_back_ticks] = ACTIONS(1881), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(1879), + [anon_sym_POUND] = ACTIONS(247), + }, + [404] = { + [sym_expr_parenthesized] = STATE(4195), + [sym__spread_parenthesized] = STATE(4666), + [sym_val_range] = STATE(4668), + [sym__val_range] = STATE(7733), + [sym__val_range_with_end] = STATE(7391), + [sym__value] = STATE(4668), + [sym_val_nothing] = STATE(4607), + [sym_val_bool] = STATE(4396), + [sym__spread_variable] = STATE(4669), + [sym_val_variable] = STATE(4253), + [sym_val_number] = STATE(4607), + [sym__val_number_decimal] = STATE(3869), + [sym__val_number] = STATE(4724), + [sym_val_duration] = STATE(4607), + [sym_val_filesize] = STATE(4607), + [sym_val_binary] = STATE(4607), + [sym_val_string] = STATE(4607), + [sym__str_double_quotes] = STATE(4321), + [sym_val_interpolated] = STATE(4607), + [sym__inter_single_quotes] = STATE(4619), + [sym__inter_double_quotes] = STATE(4620), + [sym_val_list] = STATE(4607), + [sym__spread_list] = STATE(4666), + [sym_val_record] = STATE(4607), + [sym_val_table] = STATE(4607), + [sym_val_closure] = STATE(4607), + [sym__cmd_arg] = STATE(4672), + [sym_redirection] = STATE(4676), + [sym__flag] = STATE(4681), + [sym_short_flag] = STATE(4627), + [sym_long_flag] = STATE(4627), + [sym_unquoted] = STATE(4290), + [sym__unquoted_with_expr] = STATE(4687), + [sym__unquoted_anonymous_prefix] = STATE(6985), + [sym_comment] = STATE(404), + [anon_sym_true] = ACTIONS(2075), + [anon_sym_false] = ACTIONS(2075), + [anon_sym_null] = ACTIONS(2077), + [aux_sym_cmd_identifier_token38] = ACTIONS(2079), + [aux_sym_cmd_identifier_token39] = ACTIONS(2079), + [aux_sym_cmd_identifier_token40] = ACTIONS(2079), + [sym__newline] = ACTIONS(2081), + [sym__space] = ACTIONS(2083), + [anon_sym_SEMI] = ACTIONS(2081), + [anon_sym_PIPE] = ACTIONS(2081), + [anon_sym_err_GT_PIPE] = ACTIONS(2081), + [anon_sym_out_GT_PIPE] = ACTIONS(2081), + [anon_sym_e_GT_PIPE] = ACTIONS(2081), + [anon_sym_o_GT_PIPE] = ACTIONS(2081), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2081), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2081), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2081), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2081), + [anon_sym_LBRACK] = ACTIONS(2085), + [anon_sym_LPAREN] = ACTIONS(2087), + [anon_sym_RPAREN] = ACTIONS(2081), + [anon_sym_DOLLAR] = ACTIONS(2089), + [anon_sym_DASH_DASH] = ACTIONS(2091), + [anon_sym_DASH] = ACTIONS(2093), + [aux_sym_ctrl_match_token1] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2081), + [anon_sym_DOT_DOT] = ACTIONS(2097), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2099), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2101), + [anon_sym_DOT_DOT_LT] = ACTIONS(2101), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2103), + [aux_sym__val_number_decimal_token1] = ACTIONS(2105), + [aux_sym__val_number_decimal_token2] = ACTIONS(2105), + [aux_sym__val_number_decimal_token3] = ACTIONS(2107), + [aux_sym__val_number_decimal_token4] = ACTIONS(2109), + [aux_sym__val_number_token1] = ACTIONS(2111), + [aux_sym__val_number_token2] = ACTIONS(2111), + [aux_sym__val_number_token3] = ACTIONS(2111), + [anon_sym_0b] = ACTIONS(2113), + [anon_sym_0o] = ACTIONS(2115), + [anon_sym_0x] = ACTIONS(2115), + [sym_val_date] = ACTIONS(2117), + [anon_sym_DQUOTE] = ACTIONS(2119), + [sym__str_single_quotes] = ACTIONS(2121), + [sym__str_back_ticks] = ACTIONS(2121), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2123), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2125), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2127), + [anon_sym_err_GT] = ACTIONS(2129), + [anon_sym_out_GT] = ACTIONS(2129), + [anon_sym_e_GT] = ACTIONS(2129), + [anon_sym_o_GT] = ACTIONS(2129), + [anon_sym_err_PLUSout_GT] = ACTIONS(2129), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2129), + [anon_sym_o_PLUSe_GT] = ACTIONS(2129), + [anon_sym_e_PLUSo_GT] = ACTIONS(2129), + [anon_sym_err_GT_GT] = ACTIONS(2129), + [anon_sym_out_GT_GT] = ACTIONS(2129), + [anon_sym_e_GT_GT] = ACTIONS(2129), + [anon_sym_o_GT_GT] = ACTIONS(2129), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2129), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2129), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2129), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2129), + [aux_sym_unquoted_token1] = ACTIONS(2131), + [anon_sym_POUND] = ACTIONS(3), + }, + [405] = { + [sym_comment] = STATE(405), + [anon_sym_export] = ACTIONS(2133), + [anon_sym_alias] = ACTIONS(2133), + [anon_sym_let] = ACTIONS(2133), + [anon_sym_let_DASHenv] = ACTIONS(2133), + [anon_sym_mut] = ACTIONS(2133), + [anon_sym_const] = ACTIONS(2133), + [aux_sym_cmd_identifier_token1] = ACTIONS(2133), + [aux_sym_cmd_identifier_token2] = ACTIONS(2133), + [aux_sym_cmd_identifier_token3] = ACTIONS(2133), + [aux_sym_cmd_identifier_token4] = ACTIONS(2133), + [aux_sym_cmd_identifier_token5] = ACTIONS(2133), + [aux_sym_cmd_identifier_token6] = ACTIONS(2133), + [aux_sym_cmd_identifier_token7] = ACTIONS(2133), + [aux_sym_cmd_identifier_token8] = ACTIONS(2133), + [aux_sym_cmd_identifier_token9] = ACTIONS(2133), + [aux_sym_cmd_identifier_token10] = ACTIONS(2133), + [aux_sym_cmd_identifier_token11] = ACTIONS(2133), + [aux_sym_cmd_identifier_token12] = ACTIONS(2133), + [aux_sym_cmd_identifier_token13] = ACTIONS(2133), + [aux_sym_cmd_identifier_token14] = ACTIONS(2133), + [aux_sym_cmd_identifier_token15] = ACTIONS(2133), + [aux_sym_cmd_identifier_token16] = ACTIONS(2133), + [aux_sym_cmd_identifier_token17] = ACTIONS(2133), + [aux_sym_cmd_identifier_token18] = ACTIONS(2133), + [aux_sym_cmd_identifier_token19] = ACTIONS(2133), + [aux_sym_cmd_identifier_token20] = ACTIONS(2133), + [aux_sym_cmd_identifier_token21] = ACTIONS(2133), + [aux_sym_cmd_identifier_token22] = ACTIONS(2133), + [aux_sym_cmd_identifier_token23] = ACTIONS(2133), + [aux_sym_cmd_identifier_token24] = ACTIONS(2133), + [aux_sym_cmd_identifier_token25] = ACTIONS(2133), + [aux_sym_cmd_identifier_token26] = ACTIONS(2133), + [aux_sym_cmd_identifier_token27] = ACTIONS(2133), + [aux_sym_cmd_identifier_token28] = ACTIONS(2133), + [aux_sym_cmd_identifier_token29] = ACTIONS(2133), + [aux_sym_cmd_identifier_token30] = ACTIONS(2133), + [aux_sym_cmd_identifier_token31] = ACTIONS(2133), + [aux_sym_cmd_identifier_token32] = ACTIONS(2133), + [aux_sym_cmd_identifier_token33] = ACTIONS(2133), + [aux_sym_cmd_identifier_token34] = ACTIONS(2133), + [aux_sym_cmd_identifier_token35] = ACTIONS(2133), + [aux_sym_cmd_identifier_token36] = ACTIONS(2133), + [anon_sym_true] = ACTIONS(2133), + [anon_sym_false] = ACTIONS(2133), + [anon_sym_null] = ACTIONS(2133), + [aux_sym_cmd_identifier_token38] = ACTIONS(2133), + [aux_sym_cmd_identifier_token39] = ACTIONS(2133), + [aux_sym_cmd_identifier_token40] = ACTIONS(2133), + [anon_sym_def] = ACTIONS(2133), + [anon_sym_export_DASHenv] = ACTIONS(2133), + [anon_sym_extern] = ACTIONS(2133), + [anon_sym_module] = ACTIONS(2133), + [anon_sym_use] = ACTIONS(2133), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_DOLLAR] = ACTIONS(2133), + [anon_sym_error] = ACTIONS(2133), + [anon_sym_list] = ACTIONS(2133), + [anon_sym_DASH] = ACTIONS(2133), + [anon_sym_break] = ACTIONS(2133), + [anon_sym_continue] = ACTIONS(2133), + [anon_sym_for] = ACTIONS(2133), + [anon_sym_in] = ACTIONS(2133), + [anon_sym_loop] = ACTIONS(2133), + [anon_sym_make] = ACTIONS(2133), + [anon_sym_while] = ACTIONS(2133), + [anon_sym_do] = ACTIONS(2133), + [anon_sym_if] = ACTIONS(2133), + [anon_sym_else] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_RBRACE] = ACTIONS(2133), + [anon_sym_try] = ACTIONS(2133), + [anon_sym_catch] = ACTIONS(2133), + [anon_sym_return] = ACTIONS(2133), + [anon_sym_source] = ACTIONS(2133), + [anon_sym_source_DASHenv] = ACTIONS(2133), + [anon_sym_register] = ACTIONS(2133), + [anon_sym_hide] = ACTIONS(2133), + [anon_sym_hide_DASHenv] = ACTIONS(2133), + [anon_sym_overlay] = ACTIONS(2133), + [anon_sym_new] = ACTIONS(2133), + [anon_sym_as] = ACTIONS(2133), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2133), + [anon_sym_DOT_DOT2] = ACTIONS(2133), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2135), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2135), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2133), + [aux_sym__val_number_decimal_token1] = ACTIONS(2133), + [aux_sym__val_number_decimal_token2] = ACTIONS(2133), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), + [aux_sym__val_number_token1] = ACTIONS(2133), + [aux_sym__val_number_token2] = ACTIONS(2133), + [aux_sym__val_number_token3] = ACTIONS(2133), + [anon_sym_DQUOTE] = ACTIONS(2133), + [sym__str_single_quotes] = ACTIONS(2133), + [sym__str_back_ticks] = ACTIONS(2133), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2133), + [sym__entry_separator] = ACTIONS(2135), + [anon_sym_PLUS] = ACTIONS(2133), + [anon_sym_POUND] = ACTIONS(3), + }, + [406] = { + [sym_cmd_identifier] = STATE(4711), + [sym__expression] = STATE(3766), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2398), + [sym_expr_binary] = STATE(2381), + [sym__expr_binary_expression] = STATE(3781), + [sym_expr_parenthesized] = STATE(1971), + [sym_val_range] = STATE(3771), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2348), + [sym_val_bool] = STATE(2348), + [sym_val_variable] = STATE(1938), + [sym_val_number] = STATE(2348), + [sym__val_number_decimal] = STATE(1497), + [sym__val_number] = STATE(2401), + [sym_val_duration] = STATE(2348), + [sym_val_filesize] = STATE(2348), + [sym_val_binary] = STATE(2348), + [sym_val_string] = STATE(2348), + [sym__str_double_quotes] = STATE(1984), + [sym_val_interpolated] = STATE(2348), + [sym__inter_single_quotes] = STATE(2404), + [sym__inter_double_quotes] = STATE(2407), + [sym_val_list] = STATE(2348), + [sym_val_record] = STATE(2348), + [sym_val_table] = STATE(2348), + [sym_val_closure] = STATE(2348), + [sym_env_var] = STATE(7300), + [sym_command] = STATE(4965), + [sym_comment] = STATE(406), + [aux_sym_pipe_element_repeat2] = STATE(1032), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(21), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), + [aux_sym_cmd_identifier_token12] = ACTIONS(21), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(21), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(21), + [aux_sym_cmd_identifier_token19] = ACTIONS(21), + [aux_sym_cmd_identifier_token20] = ACTIONS(21), + [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token22] = ACTIONS(21), + [aux_sym_cmd_identifier_token23] = ACTIONS(21), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(21), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(21), + [aux_sym_cmd_identifier_token28] = ACTIONS(21), + [aux_sym_cmd_identifier_token29] = ACTIONS(21), + [aux_sym_cmd_identifier_token30] = ACTIONS(21), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(21), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(21), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(19), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_null] = ACTIONS(25), + [aux_sym_cmd_identifier_token38] = ACTIONS(27), + [aux_sym_cmd_identifier_token39] = ACTIONS(29), + [aux_sym_cmd_identifier_token40] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(53), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(73), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(93), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [aux_sym__val_number_decimal_token1] = ACTIONS(95), + [aux_sym__val_number_decimal_token2] = ACTIONS(97), + [aux_sym__val_number_decimal_token3] = ACTIONS(99), + [aux_sym__val_number_decimal_token4] = ACTIONS(101), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(247), + }, + [407] = { + [sym_comment] = STATE(407), + [anon_sym_export] = ACTIONS(1625), + [anon_sym_alias] = ACTIONS(1625), + [anon_sym_let] = ACTIONS(1625), + [anon_sym_let_DASHenv] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(1625), + [anon_sym_const] = ACTIONS(1625), + [aux_sym_cmd_identifier_token1] = ACTIONS(1625), + [aux_sym_cmd_identifier_token2] = ACTIONS(1625), + [aux_sym_cmd_identifier_token3] = ACTIONS(1625), + [aux_sym_cmd_identifier_token4] = ACTIONS(1625), + [aux_sym_cmd_identifier_token5] = ACTIONS(1625), + [aux_sym_cmd_identifier_token6] = ACTIONS(1625), + [aux_sym_cmd_identifier_token7] = ACTIONS(1625), + [aux_sym_cmd_identifier_token8] = ACTIONS(1625), + [aux_sym_cmd_identifier_token9] = ACTIONS(1625), + [aux_sym_cmd_identifier_token10] = ACTIONS(1625), + [aux_sym_cmd_identifier_token11] = ACTIONS(1625), + [aux_sym_cmd_identifier_token12] = ACTIONS(1625), + [aux_sym_cmd_identifier_token13] = ACTIONS(1625), + [aux_sym_cmd_identifier_token14] = ACTIONS(1625), + [aux_sym_cmd_identifier_token15] = ACTIONS(1625), + [aux_sym_cmd_identifier_token16] = ACTIONS(1625), + [aux_sym_cmd_identifier_token17] = ACTIONS(1625), + [aux_sym_cmd_identifier_token18] = ACTIONS(1625), + [aux_sym_cmd_identifier_token19] = ACTIONS(1625), + [aux_sym_cmd_identifier_token20] = ACTIONS(1625), + [aux_sym_cmd_identifier_token21] = ACTIONS(1625), + [aux_sym_cmd_identifier_token22] = ACTIONS(1625), + [aux_sym_cmd_identifier_token23] = ACTIONS(1625), + [aux_sym_cmd_identifier_token24] = ACTIONS(1625), + [aux_sym_cmd_identifier_token25] = ACTIONS(1625), + [aux_sym_cmd_identifier_token26] = ACTIONS(1625), + [aux_sym_cmd_identifier_token27] = ACTIONS(1625), + [aux_sym_cmd_identifier_token28] = ACTIONS(1625), + [aux_sym_cmd_identifier_token29] = ACTIONS(1625), + [aux_sym_cmd_identifier_token30] = ACTIONS(1625), + [aux_sym_cmd_identifier_token31] = ACTIONS(1625), + [aux_sym_cmd_identifier_token32] = ACTIONS(1625), + [aux_sym_cmd_identifier_token33] = ACTIONS(1625), + [aux_sym_cmd_identifier_token34] = ACTIONS(1625), + [aux_sym_cmd_identifier_token35] = ACTIONS(1625), + [aux_sym_cmd_identifier_token36] = ACTIONS(1625), + [anon_sym_true] = ACTIONS(1625), + [anon_sym_false] = ACTIONS(1625), + [anon_sym_null] = ACTIONS(1625), + [aux_sym_cmd_identifier_token38] = ACTIONS(1625), + [aux_sym_cmd_identifier_token39] = ACTIONS(1625), + [aux_sym_cmd_identifier_token40] = ACTIONS(1625), + [anon_sym_def] = ACTIONS(1625), + [anon_sym_export_DASHenv] = ACTIONS(1625), + [anon_sym_extern] = ACTIONS(1625), + [anon_sym_module] = ACTIONS(1625), + [anon_sym_use] = ACTIONS(1625), + [anon_sym_LPAREN] = ACTIONS(1625), + [anon_sym_DOLLAR] = ACTIONS(1625), + [anon_sym_error] = ACTIONS(1625), + [anon_sym_list] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_break] = ACTIONS(1625), + [anon_sym_continue] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_in] = ACTIONS(1625), + [anon_sym_loop] = ACTIONS(1625), + [anon_sym_make] = ACTIONS(1625), + [anon_sym_while] = ACTIONS(1625), + [anon_sym_do] = ACTIONS(1625), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_else] = ACTIONS(1625), + [anon_sym_match] = ACTIONS(1625), + [anon_sym_RBRACE] = ACTIONS(1625), + [anon_sym_try] = ACTIONS(1625), + [anon_sym_catch] = ACTIONS(1625), + [anon_sym_return] = ACTIONS(1625), + [anon_sym_source] = ACTIONS(1625), + [anon_sym_source_DASHenv] = ACTIONS(1625), + [anon_sym_register] = ACTIONS(1625), + [anon_sym_hide] = ACTIONS(1625), + [anon_sym_hide_DASHenv] = ACTIONS(1625), + [anon_sym_overlay] = ACTIONS(1625), + [anon_sym_new] = ACTIONS(1625), + [anon_sym_as] = ACTIONS(1625), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1625), + [anon_sym_DOT_DOT2] = ACTIONS(1625), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1629), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1629), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1625), + [aux_sym__val_number_decimal_token1] = ACTIONS(1625), + [aux_sym__val_number_decimal_token2] = ACTIONS(1625), + [aux_sym__val_number_decimal_token3] = ACTIONS(1625), + [aux_sym__val_number_decimal_token4] = ACTIONS(1625), + [aux_sym__val_number_token1] = ACTIONS(1625), + [aux_sym__val_number_token2] = ACTIONS(1625), + [aux_sym__val_number_token3] = ACTIONS(1625), + [anon_sym_DQUOTE] = ACTIONS(1625), + [sym__str_single_quotes] = ACTIONS(1625), + [sym__str_back_ticks] = ACTIONS(1625), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1625), + [sym__entry_separator] = ACTIONS(1629), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_POUND] = ACTIONS(3), + }, + [408] = { + [sym_cell_path] = STATE(600), + [sym_path] = STATE(550), + [sym_comment] = STATE(408), + [aux_sym_cell_path_repeat1] = STATE(434), + [anon_sym_export] = ACTIONS(1829), + [anon_sym_alias] = ACTIONS(1829), + [anon_sym_let] = ACTIONS(1829), + [anon_sym_let_DASHenv] = ACTIONS(1829), + [anon_sym_mut] = ACTIONS(1829), + [anon_sym_const] = ACTIONS(1829), + [aux_sym_cmd_identifier_token1] = ACTIONS(1829), + [aux_sym_cmd_identifier_token2] = ACTIONS(1829), + [aux_sym_cmd_identifier_token3] = ACTIONS(1829), + [aux_sym_cmd_identifier_token4] = ACTIONS(1829), + [aux_sym_cmd_identifier_token5] = ACTIONS(1829), + [aux_sym_cmd_identifier_token6] = ACTIONS(1829), + [aux_sym_cmd_identifier_token7] = ACTIONS(1829), + [aux_sym_cmd_identifier_token8] = ACTIONS(1829), + [aux_sym_cmd_identifier_token9] = ACTIONS(1829), + [aux_sym_cmd_identifier_token10] = ACTIONS(1829), + [aux_sym_cmd_identifier_token11] = ACTIONS(1829), + [aux_sym_cmd_identifier_token12] = ACTIONS(1829), + [aux_sym_cmd_identifier_token13] = ACTIONS(1829), + [aux_sym_cmd_identifier_token14] = ACTIONS(1829), + [aux_sym_cmd_identifier_token15] = ACTIONS(1829), + [aux_sym_cmd_identifier_token16] = ACTIONS(1829), + [aux_sym_cmd_identifier_token17] = ACTIONS(1829), + [aux_sym_cmd_identifier_token18] = ACTIONS(1829), + [aux_sym_cmd_identifier_token19] = ACTIONS(1829), + [aux_sym_cmd_identifier_token20] = ACTIONS(1829), + [aux_sym_cmd_identifier_token21] = ACTIONS(1829), + [aux_sym_cmd_identifier_token22] = ACTIONS(1829), + [aux_sym_cmd_identifier_token23] = ACTIONS(1829), + [aux_sym_cmd_identifier_token24] = ACTIONS(1829), + [aux_sym_cmd_identifier_token25] = ACTIONS(1829), + [aux_sym_cmd_identifier_token26] = ACTIONS(1829), + [aux_sym_cmd_identifier_token27] = ACTIONS(1829), + [aux_sym_cmd_identifier_token28] = ACTIONS(1829), + [aux_sym_cmd_identifier_token29] = ACTIONS(1829), + [aux_sym_cmd_identifier_token30] = ACTIONS(1829), + [aux_sym_cmd_identifier_token31] = ACTIONS(1829), + [aux_sym_cmd_identifier_token32] = ACTIONS(1829), + [aux_sym_cmd_identifier_token33] = ACTIONS(1829), + [aux_sym_cmd_identifier_token34] = ACTIONS(1829), + [aux_sym_cmd_identifier_token35] = ACTIONS(1829), + [aux_sym_cmd_identifier_token36] = ACTIONS(1829), [anon_sym_true] = ACTIONS(1833), [anon_sym_false] = ACTIONS(1833), [anon_sym_null] = ACTIONS(1833), - [aux_sym_cmd_identifier_token38] = ACTIONS(1831), + [aux_sym_cmd_identifier_token38] = ACTIONS(1829), [aux_sym_cmd_identifier_token39] = ACTIONS(1833), [aux_sym_cmd_identifier_token40] = ACTIONS(1833), - [anon_sym_def] = ACTIONS(1831), - [anon_sym_export_DASHenv] = ACTIONS(1831), - [anon_sym_extern] = ACTIONS(1831), - [anon_sym_module] = ACTIONS(1831), - [anon_sym_use] = ACTIONS(1831), + [anon_sym_def] = ACTIONS(1829), + [anon_sym_export_DASHenv] = ACTIONS(1829), + [anon_sym_extern] = ACTIONS(1829), + [anon_sym_module] = ACTIONS(1829), + [anon_sym_use] = ACTIONS(1829), [anon_sym_LPAREN] = ACTIONS(1833), [anon_sym_DOLLAR] = ACTIONS(1833), - [anon_sym_error] = ACTIONS(1831), - [anon_sym_list] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_break] = ACTIONS(1831), - [anon_sym_continue] = ACTIONS(1831), - [anon_sym_for] = ACTIONS(1831), - [anon_sym_in] = ACTIONS(1831), - [anon_sym_loop] = ACTIONS(1831), - [anon_sym_make] = ACTIONS(1831), - [anon_sym_while] = ACTIONS(1831), - [anon_sym_do] = ACTIONS(1831), - [anon_sym_if] = ACTIONS(1831), - [anon_sym_else] = ACTIONS(1831), - [anon_sym_match] = ACTIONS(1831), + [anon_sym_error] = ACTIONS(1829), + [anon_sym_list] = ACTIONS(1829), + [anon_sym_DASH] = ACTIONS(1829), + [anon_sym_break] = ACTIONS(1829), + [anon_sym_continue] = ACTIONS(1829), + [anon_sym_for] = ACTIONS(1829), + [anon_sym_in] = ACTIONS(1829), + [anon_sym_loop] = ACTIONS(1829), + [anon_sym_make] = ACTIONS(1829), + [anon_sym_while] = ACTIONS(1829), + [anon_sym_do] = ACTIONS(1829), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_else] = ACTIONS(1829), + [anon_sym_match] = ACTIONS(1829), [anon_sym_RBRACE] = ACTIONS(1833), - [anon_sym_try] = ACTIONS(1831), - [anon_sym_catch] = ACTIONS(1831), - [anon_sym_return] = ACTIONS(1831), - [anon_sym_source] = ACTIONS(1831), - [anon_sym_source_DASHenv] = ACTIONS(1831), - [anon_sym_register] = ACTIONS(1831), - [anon_sym_hide] = ACTIONS(1831), - [anon_sym_hide_DASHenv] = ACTIONS(1831), - [anon_sym_overlay] = ACTIONS(1831), - [anon_sym_new] = ACTIONS(1831), - [anon_sym_as] = ACTIONS(1831), + [anon_sym_try] = ACTIONS(1829), + [anon_sym_catch] = ACTIONS(1829), + [anon_sym_return] = ACTIONS(1829), + [anon_sym_source] = ACTIONS(1829), + [anon_sym_source_DASHenv] = ACTIONS(1829), + [anon_sym_register] = ACTIONS(1829), + [anon_sym_hide] = ACTIONS(1829), + [anon_sym_hide_DASHenv] = ACTIONS(1829), + [anon_sym_overlay] = ACTIONS(1829), + [anon_sym_new] = ACTIONS(1829), + [anon_sym_as] = ACTIONS(1829), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1833), - [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_DOT] = ACTIONS(1973), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1833), - [aux_sym__val_number_decimal_token1] = ACTIONS(1831), + [aux_sym__val_number_decimal_token1] = ACTIONS(1829), [aux_sym__val_number_decimal_token2] = ACTIONS(1833), [aux_sym__val_number_decimal_token3] = ACTIONS(1833), [aux_sym__val_number_decimal_token4] = ACTIONS(1833), @@ -122083,14 +120669,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(1833), [sym__str_back_ticks] = ACTIONS(1833), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1833), - [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_PLUS] = ACTIONS(1829), [anon_sym_POUND] = ACTIONS(247), }, - [383] = { - [sym_cell_path] = STATE(664), - [sym_path] = STATE(532), - [sym_comment] = STATE(383), - [aux_sym_cell_path_repeat1] = STATE(424), + [409] = { + [sym_comment] = STATE(409), + [anon_sym_export] = ACTIONS(2137), + [anon_sym_alias] = ACTIONS(2137), + [anon_sym_let] = ACTIONS(2137), + [anon_sym_let_DASHenv] = ACTIONS(2137), + [anon_sym_mut] = ACTIONS(2137), + [anon_sym_const] = ACTIONS(2137), + [aux_sym_cmd_identifier_token1] = ACTIONS(2137), + [aux_sym_cmd_identifier_token2] = ACTIONS(2137), + [aux_sym_cmd_identifier_token3] = ACTIONS(2137), + [aux_sym_cmd_identifier_token4] = ACTIONS(2137), + [aux_sym_cmd_identifier_token5] = ACTIONS(2137), + [aux_sym_cmd_identifier_token6] = ACTIONS(2137), + [aux_sym_cmd_identifier_token7] = ACTIONS(2137), + [aux_sym_cmd_identifier_token8] = ACTIONS(2137), + [aux_sym_cmd_identifier_token9] = ACTIONS(2137), + [aux_sym_cmd_identifier_token10] = ACTIONS(2137), + [aux_sym_cmd_identifier_token11] = ACTIONS(2137), + [aux_sym_cmd_identifier_token12] = ACTIONS(2137), + [aux_sym_cmd_identifier_token13] = ACTIONS(2137), + [aux_sym_cmd_identifier_token14] = ACTIONS(2137), + [aux_sym_cmd_identifier_token15] = ACTIONS(2137), + [aux_sym_cmd_identifier_token16] = ACTIONS(2137), + [aux_sym_cmd_identifier_token17] = ACTIONS(2137), + [aux_sym_cmd_identifier_token18] = ACTIONS(2137), + [aux_sym_cmd_identifier_token19] = ACTIONS(2137), + [aux_sym_cmd_identifier_token20] = ACTIONS(2137), + [aux_sym_cmd_identifier_token21] = ACTIONS(2137), + [aux_sym_cmd_identifier_token22] = ACTIONS(2137), + [aux_sym_cmd_identifier_token23] = ACTIONS(2137), + [aux_sym_cmd_identifier_token24] = ACTIONS(2137), + [aux_sym_cmd_identifier_token25] = ACTIONS(2137), + [aux_sym_cmd_identifier_token26] = ACTIONS(2137), + [aux_sym_cmd_identifier_token27] = ACTIONS(2137), + [aux_sym_cmd_identifier_token28] = ACTIONS(2137), + [aux_sym_cmd_identifier_token29] = ACTIONS(2137), + [aux_sym_cmd_identifier_token30] = ACTIONS(2137), + [aux_sym_cmd_identifier_token31] = ACTIONS(2137), + [aux_sym_cmd_identifier_token32] = ACTIONS(2137), + [aux_sym_cmd_identifier_token33] = ACTIONS(2137), + [aux_sym_cmd_identifier_token34] = ACTIONS(2137), + [aux_sym_cmd_identifier_token35] = ACTIONS(2137), + [aux_sym_cmd_identifier_token36] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(2137), + [anon_sym_false] = ACTIONS(2137), + [anon_sym_null] = ACTIONS(2137), + [aux_sym_cmd_identifier_token38] = ACTIONS(2137), + [aux_sym_cmd_identifier_token39] = ACTIONS(2137), + [aux_sym_cmd_identifier_token40] = ACTIONS(2137), + [anon_sym_def] = ACTIONS(2137), + [anon_sym_export_DASHenv] = ACTIONS(2137), + [anon_sym_extern] = ACTIONS(2137), + [anon_sym_module] = ACTIONS(2137), + [anon_sym_use] = ACTIONS(2137), + [anon_sym_LPAREN] = ACTIONS(2137), + [anon_sym_DOLLAR] = ACTIONS(2137), + [anon_sym_error] = ACTIONS(2137), + [anon_sym_list] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2137), + [anon_sym_break] = ACTIONS(2137), + [anon_sym_continue] = ACTIONS(2137), + [anon_sym_for] = ACTIONS(2137), + [anon_sym_in] = ACTIONS(2137), + [anon_sym_loop] = ACTIONS(2137), + [anon_sym_make] = ACTIONS(2137), + [anon_sym_while] = ACTIONS(2137), + [anon_sym_do] = ACTIONS(2137), + [anon_sym_if] = ACTIONS(2137), + [anon_sym_else] = ACTIONS(2137), + [anon_sym_match] = ACTIONS(2137), + [anon_sym_RBRACE] = ACTIONS(2137), + [anon_sym_try] = ACTIONS(2137), + [anon_sym_catch] = ACTIONS(2137), + [anon_sym_return] = ACTIONS(2137), + [anon_sym_source] = ACTIONS(2137), + [anon_sym_source_DASHenv] = ACTIONS(2137), + [anon_sym_register] = ACTIONS(2137), + [anon_sym_hide] = ACTIONS(2137), + [anon_sym_hide_DASHenv] = ACTIONS(2137), + [anon_sym_overlay] = ACTIONS(2137), + [anon_sym_new] = ACTIONS(2137), + [anon_sym_as] = ACTIONS(2137), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2137), + [anon_sym_DOT_DOT2] = ACTIONS(2137), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2139), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2139), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2137), + [aux_sym__val_number_decimal_token1] = ACTIONS(2137), + [aux_sym__val_number_decimal_token2] = ACTIONS(2137), + [aux_sym__val_number_decimal_token3] = ACTIONS(2137), + [aux_sym__val_number_decimal_token4] = ACTIONS(2137), + [aux_sym__val_number_token1] = ACTIONS(2137), + [aux_sym__val_number_token2] = ACTIONS(2137), + [aux_sym__val_number_token3] = ACTIONS(2137), + [anon_sym_DQUOTE] = ACTIONS(2137), + [sym__str_single_quotes] = ACTIONS(2137), + [sym__str_back_ticks] = ACTIONS(2137), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2137), + [sym__entry_separator] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2137), + [anon_sym_POUND] = ACTIONS(3), + }, + [410] = { + [sym_cell_path] = STATE(602), + [sym_path] = STATE(550), + [sym_comment] = STATE(410), + [aux_sym_cell_path_repeat1] = STATE(434), [anon_sym_export] = ACTIONS(1835), [anon_sym_alias] = ACTIONS(1835), [anon_sym_let] = ACTIONS(1835), @@ -122173,7 +120862,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(1835), [anon_sym_as] = ACTIONS(1835), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1837), - [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_DOT] = ACTIONS(1973), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1837), [aux_sym__val_number_decimal_token1] = ACTIONS(1835), [aux_sym__val_number_decimal_token2] = ACTIONS(1837), @@ -122189,732 +120878,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1835), [anon_sym_POUND] = ACTIONS(247), }, - [384] = { - [sym_comment] = STATE(384), - [anon_sym_export] = ACTIONS(1953), - [anon_sym_alias] = ACTIONS(1953), - [anon_sym_let] = ACTIONS(1953), - [anon_sym_let_DASHenv] = ACTIONS(1953), - [anon_sym_mut] = ACTIONS(1953), - [anon_sym_const] = ACTIONS(1953), - [aux_sym_cmd_identifier_token1] = ACTIONS(1953), - [aux_sym_cmd_identifier_token2] = ACTIONS(1953), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [aux_sym_cmd_identifier_token6] = ACTIONS(1953), - [aux_sym_cmd_identifier_token7] = ACTIONS(1953), - [aux_sym_cmd_identifier_token8] = ACTIONS(1953), - [aux_sym_cmd_identifier_token9] = ACTIONS(1953), - [aux_sym_cmd_identifier_token10] = ACTIONS(1953), - [aux_sym_cmd_identifier_token11] = ACTIONS(1953), - [aux_sym_cmd_identifier_token12] = ACTIONS(1953), - [aux_sym_cmd_identifier_token13] = ACTIONS(1953), - [aux_sym_cmd_identifier_token14] = ACTIONS(1953), - [aux_sym_cmd_identifier_token15] = ACTIONS(1953), - [aux_sym_cmd_identifier_token16] = ACTIONS(1953), - [aux_sym_cmd_identifier_token17] = ACTIONS(1953), - [aux_sym_cmd_identifier_token18] = ACTIONS(1953), - [aux_sym_cmd_identifier_token19] = ACTIONS(1953), - [aux_sym_cmd_identifier_token20] = ACTIONS(1953), - [aux_sym_cmd_identifier_token21] = ACTIONS(1953), - [aux_sym_cmd_identifier_token22] = ACTIONS(1953), - [aux_sym_cmd_identifier_token23] = ACTIONS(1953), - [aux_sym_cmd_identifier_token24] = ACTIONS(1953), - [aux_sym_cmd_identifier_token25] = ACTIONS(1953), - [aux_sym_cmd_identifier_token26] = ACTIONS(1953), - [aux_sym_cmd_identifier_token27] = ACTIONS(1953), - [aux_sym_cmd_identifier_token28] = ACTIONS(1953), - [aux_sym_cmd_identifier_token29] = ACTIONS(1953), - [aux_sym_cmd_identifier_token30] = ACTIONS(1953), - [aux_sym_cmd_identifier_token31] = ACTIONS(1953), - [aux_sym_cmd_identifier_token32] = ACTIONS(1953), - [aux_sym_cmd_identifier_token33] = ACTIONS(1953), - [aux_sym_cmd_identifier_token34] = ACTIONS(1953), - [aux_sym_cmd_identifier_token35] = ACTIONS(1953), - [aux_sym_cmd_identifier_token36] = ACTIONS(1953), - [anon_sym_true] = ACTIONS(1953), - [anon_sym_false] = ACTIONS(1953), - [anon_sym_null] = ACTIONS(1953), - [aux_sym_cmd_identifier_token38] = ACTIONS(1953), - [aux_sym_cmd_identifier_token39] = ACTIONS(1953), - [aux_sym_cmd_identifier_token40] = ACTIONS(1953), - [anon_sym_def] = ACTIONS(1953), - [anon_sym_export_DASHenv] = ACTIONS(1953), - [anon_sym_extern] = ACTIONS(1953), - [anon_sym_module] = ACTIONS(1953), - [anon_sym_use] = ACTIONS(1953), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_DOLLAR] = ACTIONS(1953), - [anon_sym_error] = ACTIONS(1953), - [anon_sym_list] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1953), - [anon_sym_break] = ACTIONS(1953), - [anon_sym_continue] = ACTIONS(1953), - [anon_sym_for] = ACTIONS(1953), - [anon_sym_in] = ACTIONS(1953), - [anon_sym_loop] = ACTIONS(1953), - [anon_sym_make] = ACTIONS(1953), - [anon_sym_while] = ACTIONS(1953), - [anon_sym_do] = ACTIONS(1953), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_else] = ACTIONS(1953), - [anon_sym_match] = ACTIONS(1953), - [anon_sym_RBRACE] = ACTIONS(1953), - [anon_sym_try] = ACTIONS(1953), - [anon_sym_catch] = ACTIONS(1953), - [anon_sym_return] = ACTIONS(1953), - [anon_sym_source] = ACTIONS(1953), - [anon_sym_source_DASHenv] = ACTIONS(1953), - [anon_sym_register] = ACTIONS(1953), - [anon_sym_hide] = ACTIONS(1953), - [anon_sym_hide_DASHenv] = ACTIONS(1953), - [anon_sym_overlay] = ACTIONS(1953), - [anon_sym_new] = ACTIONS(1953), - [anon_sym_as] = ACTIONS(1953), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1953), - [anon_sym_DOT_DOT2] = ACTIONS(1953), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1955), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1955), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1953), - [aux_sym__val_number_decimal_token2] = ACTIONS(1953), - [aux_sym__val_number_decimal_token3] = ACTIONS(1953), - [aux_sym__val_number_decimal_token4] = ACTIONS(1953), - [aux_sym__val_number_token1] = ACTIONS(1953), - [aux_sym__val_number_token2] = ACTIONS(1953), - [aux_sym__val_number_token3] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(1953), - [sym__str_single_quotes] = ACTIONS(1953), - [sym__str_back_ticks] = ACTIONS(1953), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1953), - [sym__entry_separator] = ACTIONS(1955), - [anon_sym_PLUS] = ACTIONS(1953), - [anon_sym_POUND] = ACTIONS(3), - }, - [385] = { - [sym_cell_path] = STATE(598), - [sym_path] = STATE(532), - [sym_comment] = STATE(385), - [aux_sym_cell_path_repeat1] = STATE(424), - [anon_sym_export] = ACTIONS(1859), - [anon_sym_alias] = ACTIONS(1859), - [anon_sym_let] = ACTIONS(1859), - [anon_sym_let_DASHenv] = ACTIONS(1859), - [anon_sym_mut] = ACTIONS(1859), - [anon_sym_const] = ACTIONS(1859), - [aux_sym_cmd_identifier_token1] = ACTIONS(1859), - [aux_sym_cmd_identifier_token2] = ACTIONS(1859), - [aux_sym_cmd_identifier_token3] = ACTIONS(1859), - [aux_sym_cmd_identifier_token4] = ACTIONS(1859), - [aux_sym_cmd_identifier_token5] = ACTIONS(1859), - [aux_sym_cmd_identifier_token6] = ACTIONS(1859), - [aux_sym_cmd_identifier_token7] = ACTIONS(1859), - [aux_sym_cmd_identifier_token8] = ACTIONS(1859), - [aux_sym_cmd_identifier_token9] = ACTIONS(1859), - [aux_sym_cmd_identifier_token10] = ACTIONS(1859), - [aux_sym_cmd_identifier_token11] = ACTIONS(1859), - [aux_sym_cmd_identifier_token12] = ACTIONS(1859), - [aux_sym_cmd_identifier_token13] = ACTIONS(1859), - [aux_sym_cmd_identifier_token14] = ACTIONS(1859), - [aux_sym_cmd_identifier_token15] = ACTIONS(1859), - [aux_sym_cmd_identifier_token16] = ACTIONS(1859), - [aux_sym_cmd_identifier_token17] = ACTIONS(1859), - [aux_sym_cmd_identifier_token18] = ACTIONS(1859), - [aux_sym_cmd_identifier_token19] = ACTIONS(1859), - [aux_sym_cmd_identifier_token20] = ACTIONS(1859), - [aux_sym_cmd_identifier_token21] = ACTIONS(1859), - [aux_sym_cmd_identifier_token22] = ACTIONS(1859), - [aux_sym_cmd_identifier_token23] = ACTIONS(1859), - [aux_sym_cmd_identifier_token24] = ACTIONS(1859), - [aux_sym_cmd_identifier_token25] = ACTIONS(1859), - [aux_sym_cmd_identifier_token26] = ACTIONS(1859), - [aux_sym_cmd_identifier_token27] = ACTIONS(1859), - [aux_sym_cmd_identifier_token28] = ACTIONS(1859), - [aux_sym_cmd_identifier_token29] = ACTIONS(1859), - [aux_sym_cmd_identifier_token30] = ACTIONS(1859), - [aux_sym_cmd_identifier_token31] = ACTIONS(1859), - [aux_sym_cmd_identifier_token32] = ACTIONS(1859), - [aux_sym_cmd_identifier_token33] = ACTIONS(1859), - [aux_sym_cmd_identifier_token34] = ACTIONS(1859), - [aux_sym_cmd_identifier_token35] = ACTIONS(1859), - [aux_sym_cmd_identifier_token36] = ACTIONS(1859), - [anon_sym_true] = ACTIONS(1861), - [anon_sym_false] = ACTIONS(1861), - [anon_sym_null] = ACTIONS(1861), - [aux_sym_cmd_identifier_token38] = ACTIONS(1859), - [aux_sym_cmd_identifier_token39] = ACTIONS(1861), - [aux_sym_cmd_identifier_token40] = ACTIONS(1861), - [anon_sym_def] = ACTIONS(1859), - [anon_sym_export_DASHenv] = ACTIONS(1859), - [anon_sym_extern] = ACTIONS(1859), - [anon_sym_module] = ACTIONS(1859), - [anon_sym_use] = ACTIONS(1859), - [anon_sym_LPAREN] = ACTIONS(1861), - [anon_sym_DOLLAR] = ACTIONS(1861), - [anon_sym_error] = ACTIONS(1859), - [anon_sym_list] = ACTIONS(1859), - [anon_sym_DASH] = ACTIONS(1859), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1859), - [anon_sym_for] = ACTIONS(1859), - [anon_sym_in] = ACTIONS(1859), - [anon_sym_loop] = ACTIONS(1859), - [anon_sym_make] = ACTIONS(1859), - [anon_sym_while] = ACTIONS(1859), - [anon_sym_do] = ACTIONS(1859), - [anon_sym_if] = ACTIONS(1859), - [anon_sym_else] = ACTIONS(1859), - [anon_sym_match] = ACTIONS(1859), - [anon_sym_RBRACE] = ACTIONS(1861), - [anon_sym_try] = ACTIONS(1859), - [anon_sym_catch] = ACTIONS(1859), - [anon_sym_return] = ACTIONS(1859), - [anon_sym_source] = ACTIONS(1859), - [anon_sym_source_DASHenv] = ACTIONS(1859), - [anon_sym_register] = ACTIONS(1859), - [anon_sym_hide] = ACTIONS(1859), - [anon_sym_hide_DASHenv] = ACTIONS(1859), - [anon_sym_overlay] = ACTIONS(1859), - [anon_sym_new] = ACTIONS(1859), - [anon_sym_as] = ACTIONS(1859), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1861), - [anon_sym_DOT] = ACTIONS(1903), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1861), - [aux_sym__val_number_decimal_token1] = ACTIONS(1859), - [aux_sym__val_number_decimal_token2] = ACTIONS(1861), - [aux_sym__val_number_decimal_token3] = ACTIONS(1861), - [aux_sym__val_number_decimal_token4] = ACTIONS(1861), - [aux_sym__val_number_token1] = ACTIONS(1861), - [aux_sym__val_number_token2] = ACTIONS(1861), - [aux_sym__val_number_token3] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1861), - [sym__str_single_quotes] = ACTIONS(1861), - [sym__str_back_ticks] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1861), - [anon_sym_PLUS] = ACTIONS(1859), - [anon_sym_POUND] = ACTIONS(247), - }, - [386] = { - [sym_path] = STATE(472), - [sym_comment] = STATE(386), - [aux_sym_cell_path_repeat1] = STATE(387), - [anon_sym_export] = ACTIONS(951), - [anon_sym_alias] = ACTIONS(951), - [anon_sym_let] = ACTIONS(951), - [anon_sym_let_DASHenv] = ACTIONS(951), - [anon_sym_mut] = ACTIONS(951), - [anon_sym_const] = ACTIONS(951), - [aux_sym_cmd_identifier_token1] = ACTIONS(951), - [aux_sym_cmd_identifier_token2] = ACTIONS(951), - [aux_sym_cmd_identifier_token3] = ACTIONS(951), - [aux_sym_cmd_identifier_token4] = ACTIONS(951), - [aux_sym_cmd_identifier_token5] = ACTIONS(951), - [aux_sym_cmd_identifier_token6] = ACTIONS(951), - [aux_sym_cmd_identifier_token7] = ACTIONS(951), - [aux_sym_cmd_identifier_token8] = ACTIONS(951), - [aux_sym_cmd_identifier_token9] = ACTIONS(951), - [aux_sym_cmd_identifier_token10] = ACTIONS(951), - [aux_sym_cmd_identifier_token11] = ACTIONS(951), - [aux_sym_cmd_identifier_token12] = ACTIONS(951), - [aux_sym_cmd_identifier_token13] = ACTIONS(951), - [aux_sym_cmd_identifier_token14] = ACTIONS(951), - [aux_sym_cmd_identifier_token15] = ACTIONS(951), - [aux_sym_cmd_identifier_token16] = ACTIONS(951), - [aux_sym_cmd_identifier_token17] = ACTIONS(951), - [aux_sym_cmd_identifier_token18] = ACTIONS(951), - [aux_sym_cmd_identifier_token19] = ACTIONS(951), - [aux_sym_cmd_identifier_token20] = ACTIONS(951), - [aux_sym_cmd_identifier_token21] = ACTIONS(951), - [aux_sym_cmd_identifier_token22] = ACTIONS(951), - [aux_sym_cmd_identifier_token23] = ACTIONS(951), - [aux_sym_cmd_identifier_token24] = ACTIONS(951), - [aux_sym_cmd_identifier_token25] = ACTIONS(951), - [aux_sym_cmd_identifier_token26] = ACTIONS(951), - [aux_sym_cmd_identifier_token27] = ACTIONS(951), - [aux_sym_cmd_identifier_token28] = ACTIONS(951), - [aux_sym_cmd_identifier_token29] = ACTIONS(951), - [aux_sym_cmd_identifier_token30] = ACTIONS(951), - [aux_sym_cmd_identifier_token31] = ACTIONS(951), - [aux_sym_cmd_identifier_token32] = ACTIONS(951), - [aux_sym_cmd_identifier_token33] = ACTIONS(951), - [aux_sym_cmd_identifier_token34] = ACTIONS(951), - [aux_sym_cmd_identifier_token35] = ACTIONS(951), - [aux_sym_cmd_identifier_token36] = ACTIONS(951), - [anon_sym_true] = ACTIONS(951), - [anon_sym_false] = ACTIONS(951), - [anon_sym_null] = ACTIONS(951), - [aux_sym_cmd_identifier_token38] = ACTIONS(951), - [aux_sym_cmd_identifier_token39] = ACTIONS(951), - [aux_sym_cmd_identifier_token40] = ACTIONS(951), - [anon_sym_def] = ACTIONS(951), - [anon_sym_export_DASHenv] = ACTIONS(951), - [anon_sym_extern] = ACTIONS(951), - [anon_sym_module] = ACTIONS(951), - [anon_sym_use] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(951), - [anon_sym_DOLLAR] = ACTIONS(951), - [anon_sym_error] = ACTIONS(951), - [anon_sym_list] = ACTIONS(951), - [anon_sym_DASH] = ACTIONS(951), - [anon_sym_break] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(951), - [anon_sym_for] = ACTIONS(951), - [anon_sym_in] = ACTIONS(951), - [anon_sym_loop] = ACTIONS(951), - [anon_sym_make] = ACTIONS(951), - [anon_sym_while] = ACTIONS(951), - [anon_sym_do] = ACTIONS(951), - [anon_sym_if] = ACTIONS(951), - [anon_sym_else] = ACTIONS(951), - [anon_sym_match] = ACTIONS(951), - [anon_sym_RBRACE] = ACTIONS(951), - [anon_sym_try] = ACTIONS(951), - [anon_sym_catch] = ACTIONS(951), - [anon_sym_return] = ACTIONS(951), - [anon_sym_source] = ACTIONS(951), - [anon_sym_source_DASHenv] = ACTIONS(951), - [anon_sym_register] = ACTIONS(951), - [anon_sym_hide] = ACTIONS(951), - [anon_sym_hide_DASHenv] = ACTIONS(951), - [anon_sym_overlay] = ACTIONS(951), - [anon_sym_new] = ACTIONS(951), - [anon_sym_as] = ACTIONS(951), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(951), - [anon_sym_DOT] = ACTIONS(1743), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(951), - [aux_sym__val_number_decimal_token1] = ACTIONS(951), - [aux_sym__val_number_decimal_token2] = ACTIONS(951), - [aux_sym__val_number_decimal_token3] = ACTIONS(951), - [aux_sym__val_number_decimal_token4] = ACTIONS(951), - [aux_sym__val_number_token1] = ACTIONS(951), - [aux_sym__val_number_token2] = ACTIONS(951), - [aux_sym__val_number_token3] = ACTIONS(951), - [anon_sym_DQUOTE] = ACTIONS(951), - [sym__str_single_quotes] = ACTIONS(951), - [sym__str_back_ticks] = ACTIONS(951), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(951), - [sym__entry_separator] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(951), - [anon_sym_POUND] = ACTIONS(3), - }, - [387] = { - [sym_path] = STATE(472), - [sym_comment] = STATE(387), - [aux_sym_cell_path_repeat1] = STATE(387), - [anon_sym_export] = ACTIONS(955), - [anon_sym_alias] = ACTIONS(955), - [anon_sym_let] = ACTIONS(955), - [anon_sym_let_DASHenv] = ACTIONS(955), - [anon_sym_mut] = ACTIONS(955), - [anon_sym_const] = ACTIONS(955), - [aux_sym_cmd_identifier_token1] = ACTIONS(955), - [aux_sym_cmd_identifier_token2] = ACTIONS(955), - [aux_sym_cmd_identifier_token3] = ACTIONS(955), - [aux_sym_cmd_identifier_token4] = ACTIONS(955), - [aux_sym_cmd_identifier_token5] = ACTIONS(955), - [aux_sym_cmd_identifier_token6] = ACTIONS(955), - [aux_sym_cmd_identifier_token7] = ACTIONS(955), - [aux_sym_cmd_identifier_token8] = ACTIONS(955), - [aux_sym_cmd_identifier_token9] = ACTIONS(955), - [aux_sym_cmd_identifier_token10] = ACTIONS(955), - [aux_sym_cmd_identifier_token11] = ACTIONS(955), - [aux_sym_cmd_identifier_token12] = ACTIONS(955), - [aux_sym_cmd_identifier_token13] = ACTIONS(955), - [aux_sym_cmd_identifier_token14] = ACTIONS(955), - [aux_sym_cmd_identifier_token15] = ACTIONS(955), - [aux_sym_cmd_identifier_token16] = ACTIONS(955), - [aux_sym_cmd_identifier_token17] = ACTIONS(955), - [aux_sym_cmd_identifier_token18] = ACTIONS(955), - [aux_sym_cmd_identifier_token19] = ACTIONS(955), - [aux_sym_cmd_identifier_token20] = ACTIONS(955), - [aux_sym_cmd_identifier_token21] = ACTIONS(955), - [aux_sym_cmd_identifier_token22] = ACTIONS(955), - [aux_sym_cmd_identifier_token23] = ACTIONS(955), - [aux_sym_cmd_identifier_token24] = ACTIONS(955), - [aux_sym_cmd_identifier_token25] = ACTIONS(955), - [aux_sym_cmd_identifier_token26] = ACTIONS(955), - [aux_sym_cmd_identifier_token27] = ACTIONS(955), - [aux_sym_cmd_identifier_token28] = ACTIONS(955), - [aux_sym_cmd_identifier_token29] = ACTIONS(955), - [aux_sym_cmd_identifier_token30] = ACTIONS(955), - [aux_sym_cmd_identifier_token31] = ACTIONS(955), - [aux_sym_cmd_identifier_token32] = ACTIONS(955), - [aux_sym_cmd_identifier_token33] = ACTIONS(955), - [aux_sym_cmd_identifier_token34] = ACTIONS(955), - [aux_sym_cmd_identifier_token35] = ACTIONS(955), - [aux_sym_cmd_identifier_token36] = ACTIONS(955), - [anon_sym_true] = ACTIONS(955), - [anon_sym_false] = ACTIONS(955), - [anon_sym_null] = ACTIONS(955), - [aux_sym_cmd_identifier_token38] = ACTIONS(955), - [aux_sym_cmd_identifier_token39] = ACTIONS(955), - [aux_sym_cmd_identifier_token40] = ACTIONS(955), - [anon_sym_def] = ACTIONS(955), - [anon_sym_export_DASHenv] = ACTIONS(955), - [anon_sym_extern] = ACTIONS(955), - [anon_sym_module] = ACTIONS(955), - [anon_sym_use] = ACTIONS(955), - [anon_sym_LPAREN] = ACTIONS(955), - [anon_sym_DOLLAR] = ACTIONS(955), - [anon_sym_error] = ACTIONS(955), - [anon_sym_list] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(955), - [anon_sym_break] = ACTIONS(955), - [anon_sym_continue] = ACTIONS(955), - [anon_sym_for] = ACTIONS(955), - [anon_sym_in] = ACTIONS(955), - [anon_sym_loop] = ACTIONS(955), - [anon_sym_make] = ACTIONS(955), - [anon_sym_while] = ACTIONS(955), - [anon_sym_do] = ACTIONS(955), - [anon_sym_if] = ACTIONS(955), - [anon_sym_else] = ACTIONS(955), - [anon_sym_match] = ACTIONS(955), - [anon_sym_RBRACE] = ACTIONS(955), - [anon_sym_try] = ACTIONS(955), - [anon_sym_catch] = ACTIONS(955), - [anon_sym_return] = ACTIONS(955), - [anon_sym_source] = ACTIONS(955), - [anon_sym_source_DASHenv] = ACTIONS(955), - [anon_sym_register] = ACTIONS(955), - [anon_sym_hide] = ACTIONS(955), - [anon_sym_hide_DASHenv] = ACTIONS(955), - [anon_sym_overlay] = ACTIONS(955), - [anon_sym_new] = ACTIONS(955), - [anon_sym_as] = ACTIONS(955), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(955), - [anon_sym_DOT] = ACTIONS(1957), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(955), - [aux_sym__val_number_decimal_token1] = ACTIONS(955), - [aux_sym__val_number_decimal_token2] = ACTIONS(955), - [aux_sym__val_number_decimal_token3] = ACTIONS(955), - [aux_sym__val_number_decimal_token4] = ACTIONS(955), - [aux_sym__val_number_token1] = ACTIONS(955), - [aux_sym__val_number_token2] = ACTIONS(955), - [aux_sym__val_number_token3] = ACTIONS(955), - [anon_sym_DQUOTE] = ACTIONS(955), - [sym__str_single_quotes] = ACTIONS(955), - [sym__str_back_ticks] = ACTIONS(955), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(955), - [sym__entry_separator] = ACTIONS(957), - [anon_sym_PLUS] = ACTIONS(955), - [anon_sym_POUND] = ACTIONS(3), - }, - [388] = { - [sym_comment] = STATE(388), - [anon_sym_export] = ACTIONS(1960), - [anon_sym_alias] = ACTIONS(1960), - [anon_sym_let] = ACTIONS(1960), - [anon_sym_let_DASHenv] = ACTIONS(1960), - [anon_sym_mut] = ACTIONS(1960), - [anon_sym_const] = ACTIONS(1960), - [aux_sym_cmd_identifier_token1] = ACTIONS(1960), - [aux_sym_cmd_identifier_token2] = ACTIONS(1960), - [aux_sym_cmd_identifier_token3] = ACTIONS(1960), - [aux_sym_cmd_identifier_token4] = ACTIONS(1960), - [aux_sym_cmd_identifier_token5] = ACTIONS(1960), - [aux_sym_cmd_identifier_token6] = ACTIONS(1960), - [aux_sym_cmd_identifier_token7] = ACTIONS(1960), - [aux_sym_cmd_identifier_token8] = ACTIONS(1960), - [aux_sym_cmd_identifier_token9] = ACTIONS(1960), - [aux_sym_cmd_identifier_token10] = ACTIONS(1960), - [aux_sym_cmd_identifier_token11] = ACTIONS(1960), - [aux_sym_cmd_identifier_token12] = ACTIONS(1960), - [aux_sym_cmd_identifier_token13] = ACTIONS(1960), - [aux_sym_cmd_identifier_token14] = ACTIONS(1960), - [aux_sym_cmd_identifier_token15] = ACTIONS(1960), - [aux_sym_cmd_identifier_token16] = ACTIONS(1960), - [aux_sym_cmd_identifier_token17] = ACTIONS(1960), - [aux_sym_cmd_identifier_token18] = ACTIONS(1960), - [aux_sym_cmd_identifier_token19] = ACTIONS(1960), - [aux_sym_cmd_identifier_token20] = ACTIONS(1960), - [aux_sym_cmd_identifier_token21] = ACTIONS(1960), - [aux_sym_cmd_identifier_token22] = ACTIONS(1960), - [aux_sym_cmd_identifier_token23] = ACTIONS(1960), - [aux_sym_cmd_identifier_token24] = ACTIONS(1960), - [aux_sym_cmd_identifier_token25] = ACTIONS(1960), - [aux_sym_cmd_identifier_token26] = ACTIONS(1960), - [aux_sym_cmd_identifier_token27] = ACTIONS(1960), - [aux_sym_cmd_identifier_token28] = ACTIONS(1960), - [aux_sym_cmd_identifier_token29] = ACTIONS(1960), - [aux_sym_cmd_identifier_token30] = ACTIONS(1960), - [aux_sym_cmd_identifier_token31] = ACTIONS(1960), - [aux_sym_cmd_identifier_token32] = ACTIONS(1960), - [aux_sym_cmd_identifier_token33] = ACTIONS(1960), - [aux_sym_cmd_identifier_token34] = ACTIONS(1960), - [aux_sym_cmd_identifier_token35] = ACTIONS(1960), - [aux_sym_cmd_identifier_token36] = ACTIONS(1960), - [anon_sym_true] = ACTIONS(1960), - [anon_sym_false] = ACTIONS(1960), - [anon_sym_null] = ACTIONS(1960), - [aux_sym_cmd_identifier_token38] = ACTIONS(1960), - [aux_sym_cmd_identifier_token39] = ACTIONS(1960), - [aux_sym_cmd_identifier_token40] = ACTIONS(1960), - [anon_sym_def] = ACTIONS(1960), - [anon_sym_export_DASHenv] = ACTIONS(1960), - [anon_sym_extern] = ACTIONS(1960), - [anon_sym_module] = ACTIONS(1960), - [anon_sym_use] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1960), - [anon_sym_DOLLAR] = ACTIONS(1960), - [anon_sym_error] = ACTIONS(1960), - [anon_sym_list] = ACTIONS(1960), - [anon_sym_DASH] = ACTIONS(1960), - [anon_sym_break] = ACTIONS(1960), - [anon_sym_continue] = ACTIONS(1960), - [anon_sym_for] = ACTIONS(1960), - [anon_sym_in] = ACTIONS(1960), - [anon_sym_loop] = ACTIONS(1960), - [anon_sym_make] = ACTIONS(1960), - [anon_sym_while] = ACTIONS(1960), - [anon_sym_do] = ACTIONS(1960), - [anon_sym_if] = ACTIONS(1960), - [anon_sym_else] = ACTIONS(1960), - [anon_sym_match] = ACTIONS(1960), - [anon_sym_RBRACE] = ACTIONS(1960), - [anon_sym_try] = ACTIONS(1960), - [anon_sym_catch] = ACTIONS(1960), - [anon_sym_return] = ACTIONS(1960), - [anon_sym_source] = ACTIONS(1960), - [anon_sym_source_DASHenv] = ACTIONS(1960), - [anon_sym_register] = ACTIONS(1960), - [anon_sym_hide] = ACTIONS(1960), - [anon_sym_hide_DASHenv] = ACTIONS(1960), - [anon_sym_overlay] = ACTIONS(1960), - [anon_sym_new] = ACTIONS(1960), - [anon_sym_as] = ACTIONS(1960), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1960), - [anon_sym_DOT_DOT2] = ACTIONS(1962), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1964), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1964), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1960), - [aux_sym__val_number_decimal_token1] = ACTIONS(1960), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [aux_sym__val_number_decimal_token3] = ACTIONS(1960), - [aux_sym__val_number_decimal_token4] = ACTIONS(1960), - [aux_sym__val_number_token1] = ACTIONS(1960), - [aux_sym__val_number_token2] = ACTIONS(1960), - [aux_sym__val_number_token3] = ACTIONS(1960), - [anon_sym_DQUOTE] = ACTIONS(1960), - [sym__str_single_quotes] = ACTIONS(1960), - [sym__str_back_ticks] = ACTIONS(1960), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1960), - [sym__entry_separator] = ACTIONS(1966), - [anon_sym_PLUS] = ACTIONS(1960), - [anon_sym_POUND] = ACTIONS(3), - }, - [389] = { - [sym_cell_path] = STATE(636), - [sym_path] = STATE(532), - [sym_comment] = STATE(389), - [aux_sym_cell_path_repeat1] = STATE(424), - [anon_sym_export] = ACTIONS(945), - [anon_sym_alias] = ACTIONS(945), - [anon_sym_let] = ACTIONS(945), - [anon_sym_let_DASHenv] = ACTIONS(945), - [anon_sym_mut] = ACTIONS(945), - [anon_sym_const] = ACTIONS(945), - [aux_sym_cmd_identifier_token1] = ACTIONS(945), - [aux_sym_cmd_identifier_token2] = ACTIONS(945), - [aux_sym_cmd_identifier_token3] = ACTIONS(945), - [aux_sym_cmd_identifier_token4] = ACTIONS(945), - [aux_sym_cmd_identifier_token5] = ACTIONS(945), - [aux_sym_cmd_identifier_token6] = ACTIONS(945), - [aux_sym_cmd_identifier_token7] = ACTIONS(945), - [aux_sym_cmd_identifier_token8] = ACTIONS(945), - [aux_sym_cmd_identifier_token9] = ACTIONS(945), - [aux_sym_cmd_identifier_token10] = ACTIONS(945), - [aux_sym_cmd_identifier_token11] = ACTIONS(945), - [aux_sym_cmd_identifier_token12] = ACTIONS(945), - [aux_sym_cmd_identifier_token13] = ACTIONS(945), - [aux_sym_cmd_identifier_token14] = ACTIONS(945), - [aux_sym_cmd_identifier_token15] = ACTIONS(945), - [aux_sym_cmd_identifier_token16] = ACTIONS(945), - [aux_sym_cmd_identifier_token17] = ACTIONS(945), - [aux_sym_cmd_identifier_token18] = ACTIONS(945), - [aux_sym_cmd_identifier_token19] = ACTIONS(945), - [aux_sym_cmd_identifier_token20] = ACTIONS(945), - [aux_sym_cmd_identifier_token21] = ACTIONS(945), - [aux_sym_cmd_identifier_token22] = ACTIONS(945), - [aux_sym_cmd_identifier_token23] = ACTIONS(945), - [aux_sym_cmd_identifier_token24] = ACTIONS(945), - [aux_sym_cmd_identifier_token25] = ACTIONS(945), - [aux_sym_cmd_identifier_token26] = ACTIONS(945), - [aux_sym_cmd_identifier_token27] = ACTIONS(945), - [aux_sym_cmd_identifier_token28] = ACTIONS(945), - [aux_sym_cmd_identifier_token29] = ACTIONS(945), - [aux_sym_cmd_identifier_token30] = ACTIONS(945), - [aux_sym_cmd_identifier_token31] = ACTIONS(945), - [aux_sym_cmd_identifier_token32] = ACTIONS(945), - [aux_sym_cmd_identifier_token33] = ACTIONS(945), - [aux_sym_cmd_identifier_token34] = ACTIONS(945), - [aux_sym_cmd_identifier_token35] = ACTIONS(945), - [aux_sym_cmd_identifier_token36] = ACTIONS(945), - [anon_sym_true] = ACTIONS(947), - [anon_sym_false] = ACTIONS(947), - [anon_sym_null] = ACTIONS(947), - [aux_sym_cmd_identifier_token38] = ACTIONS(945), - [aux_sym_cmd_identifier_token39] = ACTIONS(947), - [aux_sym_cmd_identifier_token40] = ACTIONS(947), - [anon_sym_def] = ACTIONS(945), - [anon_sym_export_DASHenv] = ACTIONS(945), - [anon_sym_extern] = ACTIONS(945), - [anon_sym_module] = ACTIONS(945), - [anon_sym_use] = ACTIONS(945), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_DOLLAR] = ACTIONS(947), - [anon_sym_error] = ACTIONS(945), - [anon_sym_list] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_break] = ACTIONS(945), - [anon_sym_continue] = ACTIONS(945), - [anon_sym_for] = ACTIONS(945), - [anon_sym_in] = ACTIONS(945), - [anon_sym_loop] = ACTIONS(945), - [anon_sym_make] = ACTIONS(945), - [anon_sym_while] = ACTIONS(945), - [anon_sym_do] = ACTIONS(945), - [anon_sym_if] = ACTIONS(945), - [anon_sym_else] = ACTIONS(945), - [anon_sym_match] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(947), - [anon_sym_try] = ACTIONS(945), - [anon_sym_catch] = ACTIONS(945), - [anon_sym_return] = ACTIONS(945), - [anon_sym_source] = ACTIONS(945), - [anon_sym_source_DASHenv] = ACTIONS(945), - [anon_sym_register] = ACTIONS(945), - [anon_sym_hide] = ACTIONS(945), - [anon_sym_hide_DASHenv] = ACTIONS(945), - [anon_sym_overlay] = ACTIONS(945), - [anon_sym_new] = ACTIONS(945), - [anon_sym_as] = ACTIONS(945), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(947), - [anon_sym_DOT] = ACTIONS(1903), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(947), - [aux_sym__val_number_decimal_token1] = ACTIONS(945), - [aux_sym__val_number_decimal_token2] = ACTIONS(947), - [aux_sym__val_number_decimal_token3] = ACTIONS(947), - [aux_sym__val_number_decimal_token4] = ACTIONS(947), - [aux_sym__val_number_token1] = ACTIONS(947), - [aux_sym__val_number_token2] = ACTIONS(947), - [aux_sym__val_number_token3] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(947), - [sym__str_single_quotes] = ACTIONS(947), - [sym__str_back_ticks] = ACTIONS(947), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(947), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_POUND] = ACTIONS(247), - }, - [390] = { - [sym_comment] = STATE(390), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_alias] = ACTIONS(1006), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_let_DASHenv] = ACTIONS(1006), - [anon_sym_mut] = ACTIONS(1006), - [anon_sym_const] = ACTIONS(1006), - [aux_sym_cmd_identifier_token1] = ACTIONS(1006), - [aux_sym_cmd_identifier_token2] = ACTIONS(1006), - [aux_sym_cmd_identifier_token3] = ACTIONS(1006), - [aux_sym_cmd_identifier_token4] = ACTIONS(1006), - [aux_sym_cmd_identifier_token5] = ACTIONS(1006), - [aux_sym_cmd_identifier_token6] = ACTIONS(1006), - [aux_sym_cmd_identifier_token7] = ACTIONS(1006), - [aux_sym_cmd_identifier_token8] = ACTIONS(1006), - [aux_sym_cmd_identifier_token9] = ACTIONS(1006), - [aux_sym_cmd_identifier_token10] = ACTIONS(1006), - [aux_sym_cmd_identifier_token11] = ACTIONS(1006), - [aux_sym_cmd_identifier_token12] = ACTIONS(1006), - [aux_sym_cmd_identifier_token13] = ACTIONS(1006), - [aux_sym_cmd_identifier_token14] = ACTIONS(1006), - [aux_sym_cmd_identifier_token15] = ACTIONS(1006), - [aux_sym_cmd_identifier_token16] = ACTIONS(1006), - [aux_sym_cmd_identifier_token17] = ACTIONS(1006), - [aux_sym_cmd_identifier_token18] = ACTIONS(1006), - [aux_sym_cmd_identifier_token19] = ACTIONS(1006), - [aux_sym_cmd_identifier_token20] = ACTIONS(1006), - [aux_sym_cmd_identifier_token21] = ACTIONS(1006), - [aux_sym_cmd_identifier_token22] = ACTIONS(1006), - [aux_sym_cmd_identifier_token23] = ACTIONS(1006), - [aux_sym_cmd_identifier_token24] = ACTIONS(1006), - [aux_sym_cmd_identifier_token25] = ACTIONS(1006), - [aux_sym_cmd_identifier_token26] = ACTIONS(1006), - [aux_sym_cmd_identifier_token27] = ACTIONS(1006), - [aux_sym_cmd_identifier_token28] = ACTIONS(1006), - [aux_sym_cmd_identifier_token29] = ACTIONS(1006), - [aux_sym_cmd_identifier_token30] = ACTIONS(1006), - [aux_sym_cmd_identifier_token31] = ACTIONS(1006), - [aux_sym_cmd_identifier_token32] = ACTIONS(1006), - [aux_sym_cmd_identifier_token33] = ACTIONS(1006), - [aux_sym_cmd_identifier_token34] = ACTIONS(1006), - [aux_sym_cmd_identifier_token35] = ACTIONS(1006), - [aux_sym_cmd_identifier_token36] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [anon_sym_null] = ACTIONS(1006), - [aux_sym_cmd_identifier_token38] = ACTIONS(1006), - [aux_sym_cmd_identifier_token39] = ACTIONS(1006), - [aux_sym_cmd_identifier_token40] = ACTIONS(1006), - [anon_sym_def] = ACTIONS(1006), - [anon_sym_export_DASHenv] = ACTIONS(1006), - [anon_sym_extern] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_use] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_error] = ACTIONS(1006), - [anon_sym_list] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_in] = ACTIONS(1006), - [anon_sym_loop] = ACTIONS(1006), - [anon_sym_make] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_else] = ACTIONS(1006), - [anon_sym_match] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_try] = ACTIONS(1006), - [anon_sym_catch] = ACTIONS(1006), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_source] = ACTIONS(1006), - [anon_sym_source_DASHenv] = ACTIONS(1006), - [anon_sym_register] = ACTIONS(1006), - [anon_sym_hide] = ACTIONS(1006), - [anon_sym_hide_DASHenv] = ACTIONS(1006), - [anon_sym_overlay] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1006), - [anon_sym_as] = ACTIONS(1006), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1006), - [anon_sym_DOT_DOT2] = ACTIONS(1907), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1909), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1006), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1006), - [aux_sym__val_number_decimal_token4] = ACTIONS(1006), - [aux_sym__val_number_token1] = ACTIONS(1006), - [aux_sym__val_number_token2] = ACTIONS(1006), - [aux_sym__val_number_token3] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym__str_single_quotes] = ACTIONS(1006), - [sym__str_back_ticks] = ACTIONS(1006), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1006), - [sym__entry_separator] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(3), - }, - [391] = { - [sym_cell_path] = STATE(665), - [sym_path] = STATE(532), - [sym_comment] = STATE(391), - [aux_sym_cell_path_repeat1] = STATE(424), + [411] = { + [sym_cell_path] = STATE(605), + [sym_path] = STATE(550), + [sym_comment] = STATE(411), + [aux_sym_cell_path_repeat1] = STATE(434), [anon_sym_export] = ACTIONS(1839), [anon_sym_alias] = ACTIONS(1839), [anon_sym_let] = ACTIONS(1839), @@ -122997,7 +120965,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(1839), [anon_sym_as] = ACTIONS(1839), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1841), - [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_DOT] = ACTIONS(1973), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1841), [aux_sym__val_number_decimal_token1] = ACTIONS(1839), [aux_sym__val_number_decimal_token2] = ACTIONS(1841), @@ -123013,3502 +120981,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1839), [anon_sym_POUND] = ACTIONS(247), }, - [392] = { - [sym_cell_path] = STATE(663), - [sym_path] = STATE(532), - [sym_comment] = STATE(392), - [aux_sym_cell_path_repeat1] = STATE(424), - [anon_sym_export] = ACTIONS(1762), - [anon_sym_alias] = ACTIONS(1762), - [anon_sym_let] = ACTIONS(1762), - [anon_sym_let_DASHenv] = ACTIONS(1762), - [anon_sym_mut] = ACTIONS(1762), - [anon_sym_const] = ACTIONS(1762), - [aux_sym_cmd_identifier_token1] = ACTIONS(1762), - [aux_sym_cmd_identifier_token2] = ACTIONS(1762), - [aux_sym_cmd_identifier_token3] = ACTIONS(1762), - [aux_sym_cmd_identifier_token4] = ACTIONS(1762), - [aux_sym_cmd_identifier_token5] = ACTIONS(1762), - [aux_sym_cmd_identifier_token6] = ACTIONS(1762), - [aux_sym_cmd_identifier_token7] = ACTIONS(1762), - [aux_sym_cmd_identifier_token8] = ACTIONS(1762), - [aux_sym_cmd_identifier_token9] = ACTIONS(1762), - [aux_sym_cmd_identifier_token10] = ACTIONS(1762), - [aux_sym_cmd_identifier_token11] = ACTIONS(1762), - [aux_sym_cmd_identifier_token12] = ACTIONS(1762), - [aux_sym_cmd_identifier_token13] = ACTIONS(1762), - [aux_sym_cmd_identifier_token14] = ACTIONS(1762), - [aux_sym_cmd_identifier_token15] = ACTIONS(1762), - [aux_sym_cmd_identifier_token16] = ACTIONS(1762), - [aux_sym_cmd_identifier_token17] = ACTIONS(1762), - [aux_sym_cmd_identifier_token18] = ACTIONS(1762), - [aux_sym_cmd_identifier_token19] = ACTIONS(1762), - [aux_sym_cmd_identifier_token20] = ACTIONS(1762), - [aux_sym_cmd_identifier_token21] = ACTIONS(1762), - [aux_sym_cmd_identifier_token22] = ACTIONS(1762), - [aux_sym_cmd_identifier_token23] = ACTIONS(1762), - [aux_sym_cmd_identifier_token24] = ACTIONS(1762), - [aux_sym_cmd_identifier_token25] = ACTIONS(1762), - [aux_sym_cmd_identifier_token26] = ACTIONS(1762), - [aux_sym_cmd_identifier_token27] = ACTIONS(1762), - [aux_sym_cmd_identifier_token28] = ACTIONS(1762), - [aux_sym_cmd_identifier_token29] = ACTIONS(1762), - [aux_sym_cmd_identifier_token30] = ACTIONS(1762), - [aux_sym_cmd_identifier_token31] = ACTIONS(1762), - [aux_sym_cmd_identifier_token32] = ACTIONS(1762), - [aux_sym_cmd_identifier_token33] = ACTIONS(1762), - [aux_sym_cmd_identifier_token34] = ACTIONS(1762), - [aux_sym_cmd_identifier_token35] = ACTIONS(1762), - [aux_sym_cmd_identifier_token36] = ACTIONS(1762), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_null] = ACTIONS(1764), - [aux_sym_cmd_identifier_token38] = ACTIONS(1762), - [aux_sym_cmd_identifier_token39] = ACTIONS(1764), - [aux_sym_cmd_identifier_token40] = ACTIONS(1764), - [anon_sym_def] = ACTIONS(1762), - [anon_sym_export_DASHenv] = ACTIONS(1762), - [anon_sym_extern] = ACTIONS(1762), - [anon_sym_module] = ACTIONS(1762), - [anon_sym_use] = ACTIONS(1762), - [anon_sym_LPAREN] = ACTIONS(1764), - [anon_sym_DOLLAR] = ACTIONS(1764), - [anon_sym_error] = ACTIONS(1762), - [anon_sym_list] = ACTIONS(1762), - [anon_sym_DASH] = ACTIONS(1762), - [anon_sym_break] = ACTIONS(1762), - [anon_sym_continue] = ACTIONS(1762), - [anon_sym_for] = ACTIONS(1762), - [anon_sym_in] = ACTIONS(1762), - [anon_sym_loop] = ACTIONS(1762), - [anon_sym_make] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1762), - [anon_sym_do] = ACTIONS(1762), - [anon_sym_if] = ACTIONS(1762), - [anon_sym_else] = ACTIONS(1762), - [anon_sym_match] = ACTIONS(1762), - [anon_sym_RBRACE] = ACTIONS(1764), - [anon_sym_try] = ACTIONS(1762), - [anon_sym_catch] = ACTIONS(1762), - [anon_sym_return] = ACTIONS(1762), - [anon_sym_source] = ACTIONS(1762), - [anon_sym_source_DASHenv] = ACTIONS(1762), - [anon_sym_register] = ACTIONS(1762), - [anon_sym_hide] = ACTIONS(1762), - [anon_sym_hide_DASHenv] = ACTIONS(1762), - [anon_sym_overlay] = ACTIONS(1762), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_as] = ACTIONS(1762), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1903), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1764), - [aux_sym__val_number_decimal_token1] = ACTIONS(1762), - [aux_sym__val_number_decimal_token2] = ACTIONS(1764), - [aux_sym__val_number_decimal_token3] = ACTIONS(1764), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), - [aux_sym__val_number_token1] = ACTIONS(1764), - [aux_sym__val_number_token2] = ACTIONS(1764), - [aux_sym__val_number_token3] = ACTIONS(1764), - [anon_sym_DQUOTE] = ACTIONS(1764), - [sym__str_single_quotes] = ACTIONS(1764), - [sym__str_back_ticks] = ACTIONS(1764), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1764), - [anon_sym_PLUS] = ACTIONS(1762), - [anon_sym_POUND] = ACTIONS(247), - }, - [393] = { - [sym_cell_path] = STATE(642), - [sym_path] = STATE(532), - [sym_comment] = STATE(393), - [aux_sym_cell_path_repeat1] = STATE(424), - [anon_sym_export] = ACTIONS(1770), - [anon_sym_alias] = ACTIONS(1770), - [anon_sym_let] = ACTIONS(1770), - [anon_sym_let_DASHenv] = ACTIONS(1770), - [anon_sym_mut] = ACTIONS(1770), - [anon_sym_const] = ACTIONS(1770), - [aux_sym_cmd_identifier_token1] = ACTIONS(1770), - [aux_sym_cmd_identifier_token2] = ACTIONS(1770), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [aux_sym_cmd_identifier_token6] = ACTIONS(1770), - [aux_sym_cmd_identifier_token7] = ACTIONS(1770), - [aux_sym_cmd_identifier_token8] = ACTIONS(1770), - [aux_sym_cmd_identifier_token9] = ACTIONS(1770), - [aux_sym_cmd_identifier_token10] = ACTIONS(1770), - [aux_sym_cmd_identifier_token11] = ACTIONS(1770), - [aux_sym_cmd_identifier_token12] = ACTIONS(1770), - [aux_sym_cmd_identifier_token13] = ACTIONS(1770), - [aux_sym_cmd_identifier_token14] = ACTIONS(1770), - [aux_sym_cmd_identifier_token15] = ACTIONS(1770), - [aux_sym_cmd_identifier_token16] = ACTIONS(1770), - [aux_sym_cmd_identifier_token17] = ACTIONS(1770), - [aux_sym_cmd_identifier_token18] = ACTIONS(1770), - [aux_sym_cmd_identifier_token19] = ACTIONS(1770), - [aux_sym_cmd_identifier_token20] = ACTIONS(1770), - [aux_sym_cmd_identifier_token21] = ACTIONS(1770), - [aux_sym_cmd_identifier_token22] = ACTIONS(1770), - [aux_sym_cmd_identifier_token23] = ACTIONS(1770), - [aux_sym_cmd_identifier_token24] = ACTIONS(1770), - [aux_sym_cmd_identifier_token25] = ACTIONS(1770), - [aux_sym_cmd_identifier_token26] = ACTIONS(1770), - [aux_sym_cmd_identifier_token27] = ACTIONS(1770), - [aux_sym_cmd_identifier_token28] = ACTIONS(1770), - [aux_sym_cmd_identifier_token29] = ACTIONS(1770), - [aux_sym_cmd_identifier_token30] = ACTIONS(1770), - [aux_sym_cmd_identifier_token31] = ACTIONS(1770), - [aux_sym_cmd_identifier_token32] = ACTIONS(1770), - [aux_sym_cmd_identifier_token33] = ACTIONS(1770), - [aux_sym_cmd_identifier_token34] = ACTIONS(1770), - [aux_sym_cmd_identifier_token35] = ACTIONS(1770), - [aux_sym_cmd_identifier_token36] = ACTIONS(1770), - [anon_sym_true] = ACTIONS(1772), - [anon_sym_false] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1772), - [aux_sym_cmd_identifier_token38] = ACTIONS(1770), - [aux_sym_cmd_identifier_token39] = ACTIONS(1772), - [aux_sym_cmd_identifier_token40] = ACTIONS(1772), - [anon_sym_def] = ACTIONS(1770), - [anon_sym_export_DASHenv] = ACTIONS(1770), - [anon_sym_extern] = ACTIONS(1770), - [anon_sym_module] = ACTIONS(1770), - [anon_sym_use] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_DOLLAR] = ACTIONS(1772), - [anon_sym_error] = ACTIONS(1770), - [anon_sym_list] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_for] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_loop] = ACTIONS(1770), - [anon_sym_make] = ACTIONS(1770), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_do] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_match] = ACTIONS(1770), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_catch] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_source] = ACTIONS(1770), - [anon_sym_source_DASHenv] = ACTIONS(1770), - [anon_sym_register] = ACTIONS(1770), - [anon_sym_hide] = ACTIONS(1770), - [anon_sym_hide_DASHenv] = ACTIONS(1770), - [anon_sym_overlay] = ACTIONS(1770), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1772), - [anon_sym_DOT] = ACTIONS(1903), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1772), - [aux_sym__val_number_decimal_token1] = ACTIONS(1770), - [aux_sym__val_number_decimal_token2] = ACTIONS(1772), - [aux_sym__val_number_decimal_token3] = ACTIONS(1772), - [aux_sym__val_number_decimal_token4] = ACTIONS(1772), - [aux_sym__val_number_token1] = ACTIONS(1772), - [aux_sym__val_number_token2] = ACTIONS(1772), - [aux_sym__val_number_token3] = ACTIONS(1772), - [anon_sym_DQUOTE] = ACTIONS(1772), - [sym__str_single_quotes] = ACTIONS(1772), - [sym__str_back_ticks] = ACTIONS(1772), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_POUND] = ACTIONS(247), - }, - [394] = { - [sym_comment] = STATE(394), - [anon_sym_export] = ACTIONS(1589), - [anon_sym_alias] = ACTIONS(1589), - [anon_sym_let] = ACTIONS(1589), - [anon_sym_let_DASHenv] = ACTIONS(1589), - [anon_sym_mut] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [aux_sym_cmd_identifier_token1] = ACTIONS(1589), - [aux_sym_cmd_identifier_token2] = ACTIONS(1589), - [aux_sym_cmd_identifier_token3] = ACTIONS(1589), - [aux_sym_cmd_identifier_token4] = ACTIONS(1589), - [aux_sym_cmd_identifier_token5] = ACTIONS(1589), - [aux_sym_cmd_identifier_token6] = ACTIONS(1589), - [aux_sym_cmd_identifier_token7] = ACTIONS(1589), - [aux_sym_cmd_identifier_token8] = ACTIONS(1589), - [aux_sym_cmd_identifier_token9] = ACTIONS(1589), - [aux_sym_cmd_identifier_token10] = ACTIONS(1589), - [aux_sym_cmd_identifier_token11] = ACTIONS(1589), - [aux_sym_cmd_identifier_token12] = ACTIONS(1589), - [aux_sym_cmd_identifier_token13] = ACTIONS(1589), - [aux_sym_cmd_identifier_token14] = ACTIONS(1589), - [aux_sym_cmd_identifier_token15] = ACTIONS(1589), - [aux_sym_cmd_identifier_token16] = ACTIONS(1589), - [aux_sym_cmd_identifier_token17] = ACTIONS(1589), - [aux_sym_cmd_identifier_token18] = ACTIONS(1589), - [aux_sym_cmd_identifier_token19] = ACTIONS(1589), - [aux_sym_cmd_identifier_token20] = ACTIONS(1589), - [aux_sym_cmd_identifier_token21] = ACTIONS(1589), - [aux_sym_cmd_identifier_token22] = ACTIONS(1589), - [aux_sym_cmd_identifier_token23] = ACTIONS(1589), - [aux_sym_cmd_identifier_token24] = ACTIONS(1589), - [aux_sym_cmd_identifier_token25] = ACTIONS(1589), - [aux_sym_cmd_identifier_token26] = ACTIONS(1589), - [aux_sym_cmd_identifier_token27] = ACTIONS(1589), - [aux_sym_cmd_identifier_token28] = ACTIONS(1589), - [aux_sym_cmd_identifier_token29] = ACTIONS(1589), - [aux_sym_cmd_identifier_token30] = ACTIONS(1589), - [aux_sym_cmd_identifier_token31] = ACTIONS(1589), - [aux_sym_cmd_identifier_token32] = ACTIONS(1589), - [aux_sym_cmd_identifier_token33] = ACTIONS(1589), - [aux_sym_cmd_identifier_token34] = ACTIONS(1589), - [aux_sym_cmd_identifier_token35] = ACTIONS(1589), - [aux_sym_cmd_identifier_token36] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1589), - [anon_sym_false] = ACTIONS(1589), - [anon_sym_null] = ACTIONS(1589), - [aux_sym_cmd_identifier_token38] = ACTIONS(1589), - [aux_sym_cmd_identifier_token39] = ACTIONS(1589), - [aux_sym_cmd_identifier_token40] = ACTIONS(1589), - [anon_sym_def] = ACTIONS(1589), - [anon_sym_export_DASHenv] = ACTIONS(1589), - [anon_sym_extern] = ACTIONS(1589), - [anon_sym_module] = ACTIONS(1589), - [anon_sym_use] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_error] = ACTIONS(1589), - [anon_sym_list] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_loop] = ACTIONS(1589), - [anon_sym_make] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_else] = ACTIONS(1589), - [anon_sym_match] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1589), - [anon_sym_try] = ACTIONS(1589), - [anon_sym_catch] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_source] = ACTIONS(1589), - [anon_sym_source_DASHenv] = ACTIONS(1589), - [anon_sym_register] = ACTIONS(1589), - [anon_sym_hide] = ACTIONS(1589), - [anon_sym_hide_DASHenv] = ACTIONS(1589), - [anon_sym_overlay] = ACTIONS(1589), - [anon_sym_new] = ACTIONS(1589), - [anon_sym_as] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1591), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(1794), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1589), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1589), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1589), - [aux_sym__val_number_token1] = ACTIONS(1589), - [aux_sym__val_number_token2] = ACTIONS(1589), - [aux_sym__val_number_token3] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [sym__str_single_quotes] = ACTIONS(1589), - [sym__str_back_ticks] = ACTIONS(1589), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1589), - [sym__entry_separator] = ACTIONS(1591), - [anon_sym_PLUS] = ACTIONS(1589), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(3), - }, - [395] = { - [sym_cell_path] = STATE(607), - [sym_path] = STATE(532), - [sym_comment] = STATE(395), - [aux_sym_cell_path_repeat1] = STATE(424), - [anon_sym_export] = ACTIONS(1774), - [anon_sym_alias] = ACTIONS(1774), - [anon_sym_let] = ACTIONS(1774), - [anon_sym_let_DASHenv] = ACTIONS(1774), - [anon_sym_mut] = ACTIONS(1774), - [anon_sym_const] = ACTIONS(1774), - [aux_sym_cmd_identifier_token1] = ACTIONS(1774), - [aux_sym_cmd_identifier_token2] = ACTIONS(1774), - [aux_sym_cmd_identifier_token3] = ACTIONS(1774), - [aux_sym_cmd_identifier_token4] = ACTIONS(1774), - [aux_sym_cmd_identifier_token5] = ACTIONS(1774), - [aux_sym_cmd_identifier_token6] = ACTIONS(1774), - [aux_sym_cmd_identifier_token7] = ACTIONS(1774), - [aux_sym_cmd_identifier_token8] = ACTIONS(1774), - [aux_sym_cmd_identifier_token9] = ACTIONS(1774), - [aux_sym_cmd_identifier_token10] = ACTIONS(1774), - [aux_sym_cmd_identifier_token11] = ACTIONS(1774), - [aux_sym_cmd_identifier_token12] = ACTIONS(1774), - [aux_sym_cmd_identifier_token13] = ACTIONS(1774), - [aux_sym_cmd_identifier_token14] = ACTIONS(1774), - [aux_sym_cmd_identifier_token15] = ACTIONS(1774), - [aux_sym_cmd_identifier_token16] = ACTIONS(1774), - [aux_sym_cmd_identifier_token17] = ACTIONS(1774), - [aux_sym_cmd_identifier_token18] = ACTIONS(1774), - [aux_sym_cmd_identifier_token19] = ACTIONS(1774), - [aux_sym_cmd_identifier_token20] = ACTIONS(1774), - [aux_sym_cmd_identifier_token21] = ACTIONS(1774), - [aux_sym_cmd_identifier_token22] = ACTIONS(1774), - [aux_sym_cmd_identifier_token23] = ACTIONS(1774), - [aux_sym_cmd_identifier_token24] = ACTIONS(1774), - [aux_sym_cmd_identifier_token25] = ACTIONS(1774), - [aux_sym_cmd_identifier_token26] = ACTIONS(1774), - [aux_sym_cmd_identifier_token27] = ACTIONS(1774), - [aux_sym_cmd_identifier_token28] = ACTIONS(1774), - [aux_sym_cmd_identifier_token29] = ACTIONS(1774), - [aux_sym_cmd_identifier_token30] = ACTIONS(1774), - [aux_sym_cmd_identifier_token31] = ACTIONS(1774), - [aux_sym_cmd_identifier_token32] = ACTIONS(1774), - [aux_sym_cmd_identifier_token33] = ACTIONS(1774), - [aux_sym_cmd_identifier_token34] = ACTIONS(1774), - [aux_sym_cmd_identifier_token35] = ACTIONS(1774), - [aux_sym_cmd_identifier_token36] = ACTIONS(1774), - [anon_sym_true] = ACTIONS(1776), - [anon_sym_false] = ACTIONS(1776), - [anon_sym_null] = ACTIONS(1776), - [aux_sym_cmd_identifier_token38] = ACTIONS(1774), - [aux_sym_cmd_identifier_token39] = ACTIONS(1776), - [aux_sym_cmd_identifier_token40] = ACTIONS(1776), - [anon_sym_def] = ACTIONS(1774), - [anon_sym_export_DASHenv] = ACTIONS(1774), - [anon_sym_extern] = ACTIONS(1774), - [anon_sym_module] = ACTIONS(1774), - [anon_sym_use] = ACTIONS(1774), - [anon_sym_LPAREN] = ACTIONS(1776), - [anon_sym_DOLLAR] = ACTIONS(1776), - [anon_sym_error] = ACTIONS(1774), - [anon_sym_list] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_break] = ACTIONS(1774), - [anon_sym_continue] = ACTIONS(1774), - [anon_sym_for] = ACTIONS(1774), - [anon_sym_in] = ACTIONS(1774), - [anon_sym_loop] = ACTIONS(1774), - [anon_sym_make] = ACTIONS(1774), - [anon_sym_while] = ACTIONS(1774), - [anon_sym_do] = ACTIONS(1774), - [anon_sym_if] = ACTIONS(1774), - [anon_sym_else] = ACTIONS(1774), - [anon_sym_match] = ACTIONS(1774), - [anon_sym_RBRACE] = ACTIONS(1776), - [anon_sym_try] = ACTIONS(1774), - [anon_sym_catch] = ACTIONS(1774), - [anon_sym_return] = ACTIONS(1774), - [anon_sym_source] = ACTIONS(1774), - [anon_sym_source_DASHenv] = ACTIONS(1774), - [anon_sym_register] = ACTIONS(1774), - [anon_sym_hide] = ACTIONS(1774), - [anon_sym_hide_DASHenv] = ACTIONS(1774), - [anon_sym_overlay] = ACTIONS(1774), - [anon_sym_new] = ACTIONS(1774), - [anon_sym_as] = ACTIONS(1774), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1776), - [anon_sym_DOT] = ACTIONS(1903), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1776), - [aux_sym__val_number_decimal_token1] = ACTIONS(1774), - [aux_sym__val_number_decimal_token2] = ACTIONS(1776), - [aux_sym__val_number_decimal_token3] = ACTIONS(1776), - [aux_sym__val_number_decimal_token4] = ACTIONS(1776), - [aux_sym__val_number_token1] = ACTIONS(1776), - [aux_sym__val_number_token2] = ACTIONS(1776), - [aux_sym__val_number_token3] = ACTIONS(1776), - [anon_sym_DQUOTE] = ACTIONS(1776), - [sym__str_single_quotes] = ACTIONS(1776), - [sym__str_back_ticks] = ACTIONS(1776), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_POUND] = ACTIONS(247), - }, - [396] = { - [sym_comment] = STATE(396), - [anon_sym_export] = ACTIONS(994), - [anon_sym_alias] = ACTIONS(994), - [anon_sym_let] = ACTIONS(994), - [anon_sym_let_DASHenv] = ACTIONS(994), - [anon_sym_mut] = ACTIONS(994), - [anon_sym_const] = ACTIONS(994), - [aux_sym_cmd_identifier_token1] = ACTIONS(994), - [aux_sym_cmd_identifier_token2] = ACTIONS(994), - [aux_sym_cmd_identifier_token3] = ACTIONS(994), - [aux_sym_cmd_identifier_token4] = ACTIONS(994), - [aux_sym_cmd_identifier_token5] = ACTIONS(994), - [aux_sym_cmd_identifier_token6] = ACTIONS(994), - [aux_sym_cmd_identifier_token7] = ACTIONS(994), - [aux_sym_cmd_identifier_token8] = ACTIONS(994), - [aux_sym_cmd_identifier_token9] = ACTIONS(994), - [aux_sym_cmd_identifier_token10] = ACTIONS(994), - [aux_sym_cmd_identifier_token11] = ACTIONS(994), - [aux_sym_cmd_identifier_token12] = ACTIONS(994), - [aux_sym_cmd_identifier_token13] = ACTIONS(994), - [aux_sym_cmd_identifier_token14] = ACTIONS(994), - [aux_sym_cmd_identifier_token15] = ACTIONS(994), - [aux_sym_cmd_identifier_token16] = ACTIONS(994), - [aux_sym_cmd_identifier_token17] = ACTIONS(994), - [aux_sym_cmd_identifier_token18] = ACTIONS(994), - [aux_sym_cmd_identifier_token19] = ACTIONS(994), - [aux_sym_cmd_identifier_token20] = ACTIONS(994), - [aux_sym_cmd_identifier_token21] = ACTIONS(994), - [aux_sym_cmd_identifier_token22] = ACTIONS(994), - [aux_sym_cmd_identifier_token23] = ACTIONS(994), - [aux_sym_cmd_identifier_token24] = ACTIONS(994), - [aux_sym_cmd_identifier_token25] = ACTIONS(994), - [aux_sym_cmd_identifier_token26] = ACTIONS(994), - [aux_sym_cmd_identifier_token27] = ACTIONS(994), - [aux_sym_cmd_identifier_token28] = ACTIONS(994), - [aux_sym_cmd_identifier_token29] = ACTIONS(994), - [aux_sym_cmd_identifier_token30] = ACTIONS(994), - [aux_sym_cmd_identifier_token31] = ACTIONS(994), - [aux_sym_cmd_identifier_token32] = ACTIONS(994), - [aux_sym_cmd_identifier_token33] = ACTIONS(994), - [aux_sym_cmd_identifier_token34] = ACTIONS(994), - [aux_sym_cmd_identifier_token35] = ACTIONS(994), - [aux_sym_cmd_identifier_token36] = ACTIONS(994), - [anon_sym_true] = ACTIONS(996), - [anon_sym_false] = ACTIONS(996), - [anon_sym_null] = ACTIONS(996), - [aux_sym_cmd_identifier_token38] = ACTIONS(994), - [aux_sym_cmd_identifier_token39] = ACTIONS(996), - [aux_sym_cmd_identifier_token40] = ACTIONS(996), - [anon_sym_def] = ACTIONS(994), - [anon_sym_export_DASHenv] = ACTIONS(994), - [anon_sym_extern] = ACTIONS(994), - [anon_sym_module] = ACTIONS(994), - [anon_sym_use] = ACTIONS(994), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(996), - [anon_sym_error] = ACTIONS(994), - [anon_sym_list] = ACTIONS(994), - [anon_sym_DASH] = ACTIONS(994), - [anon_sym_break] = ACTIONS(994), - [anon_sym_continue] = ACTIONS(994), - [anon_sym_for] = ACTIONS(994), - [anon_sym_in] = ACTIONS(994), - [anon_sym_loop] = ACTIONS(994), - [anon_sym_make] = ACTIONS(994), - [anon_sym_while] = ACTIONS(994), - [anon_sym_do] = ACTIONS(994), - [anon_sym_if] = ACTIONS(994), - [anon_sym_else] = ACTIONS(994), - [anon_sym_match] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_try] = ACTIONS(994), - [anon_sym_catch] = ACTIONS(994), - [anon_sym_return] = ACTIONS(994), - [anon_sym_source] = ACTIONS(994), - [anon_sym_source_DASHenv] = ACTIONS(994), - [anon_sym_register] = ACTIONS(994), - [anon_sym_hide] = ACTIONS(994), - [anon_sym_hide_DASHenv] = ACTIONS(994), - [anon_sym_overlay] = ACTIONS(994), - [anon_sym_new] = ACTIONS(994), - [anon_sym_as] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(996), - [anon_sym_DOT_DOT2] = ACTIONS(994), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), - [anon_sym_DOT_DOT_LT2] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(996), - [aux_sym__val_number_decimal_token1] = ACTIONS(994), - [aux_sym__val_number_decimal_token2] = ACTIONS(996), - [aux_sym__val_number_decimal_token3] = ACTIONS(996), - [aux_sym__val_number_decimal_token4] = ACTIONS(996), - [aux_sym__val_number_token1] = ACTIONS(996), - [aux_sym__val_number_token2] = ACTIONS(996), - [aux_sym__val_number_token3] = ACTIONS(996), - [anon_sym_DQUOTE] = ACTIONS(996), - [sym__str_single_quotes] = ACTIONS(996), - [sym__str_back_ticks] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(994), - [anon_sym_POUND] = ACTIONS(247), - }, - [397] = { - [sym_cell_path] = STATE(612), - [sym_path] = STATE(532), - [sym_comment] = STATE(397), - [aux_sym_cell_path_repeat1] = STATE(424), - [anon_sym_export] = ACTIONS(1778), - [anon_sym_alias] = ACTIONS(1778), - [anon_sym_let] = ACTIONS(1778), - [anon_sym_let_DASHenv] = ACTIONS(1778), - [anon_sym_mut] = ACTIONS(1778), - [anon_sym_const] = ACTIONS(1778), - [aux_sym_cmd_identifier_token1] = ACTIONS(1778), - [aux_sym_cmd_identifier_token2] = ACTIONS(1778), - [aux_sym_cmd_identifier_token3] = ACTIONS(1778), - [aux_sym_cmd_identifier_token4] = ACTIONS(1778), - [aux_sym_cmd_identifier_token5] = ACTIONS(1778), - [aux_sym_cmd_identifier_token6] = ACTIONS(1778), - [aux_sym_cmd_identifier_token7] = ACTIONS(1778), - [aux_sym_cmd_identifier_token8] = ACTIONS(1778), - [aux_sym_cmd_identifier_token9] = ACTIONS(1778), - [aux_sym_cmd_identifier_token10] = ACTIONS(1778), - [aux_sym_cmd_identifier_token11] = ACTIONS(1778), - [aux_sym_cmd_identifier_token12] = ACTIONS(1778), - [aux_sym_cmd_identifier_token13] = ACTIONS(1778), - [aux_sym_cmd_identifier_token14] = ACTIONS(1778), - [aux_sym_cmd_identifier_token15] = ACTIONS(1778), - [aux_sym_cmd_identifier_token16] = ACTIONS(1778), - [aux_sym_cmd_identifier_token17] = ACTIONS(1778), - [aux_sym_cmd_identifier_token18] = ACTIONS(1778), - [aux_sym_cmd_identifier_token19] = ACTIONS(1778), - [aux_sym_cmd_identifier_token20] = ACTIONS(1778), - [aux_sym_cmd_identifier_token21] = ACTIONS(1778), - [aux_sym_cmd_identifier_token22] = ACTIONS(1778), - [aux_sym_cmd_identifier_token23] = ACTIONS(1778), - [aux_sym_cmd_identifier_token24] = ACTIONS(1778), - [aux_sym_cmd_identifier_token25] = ACTIONS(1778), - [aux_sym_cmd_identifier_token26] = ACTIONS(1778), - [aux_sym_cmd_identifier_token27] = ACTIONS(1778), - [aux_sym_cmd_identifier_token28] = ACTIONS(1778), - [aux_sym_cmd_identifier_token29] = ACTIONS(1778), - [aux_sym_cmd_identifier_token30] = ACTIONS(1778), - [aux_sym_cmd_identifier_token31] = ACTIONS(1778), - [aux_sym_cmd_identifier_token32] = ACTIONS(1778), - [aux_sym_cmd_identifier_token33] = ACTIONS(1778), - [aux_sym_cmd_identifier_token34] = ACTIONS(1778), - [aux_sym_cmd_identifier_token35] = ACTIONS(1778), - [aux_sym_cmd_identifier_token36] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_null] = ACTIONS(1780), - [aux_sym_cmd_identifier_token38] = ACTIONS(1778), - [aux_sym_cmd_identifier_token39] = ACTIONS(1780), - [aux_sym_cmd_identifier_token40] = ACTIONS(1780), - [anon_sym_def] = ACTIONS(1778), - [anon_sym_export_DASHenv] = ACTIONS(1778), - [anon_sym_extern] = ACTIONS(1778), - [anon_sym_module] = ACTIONS(1778), - [anon_sym_use] = ACTIONS(1778), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_DOLLAR] = ACTIONS(1780), - [anon_sym_error] = ACTIONS(1778), - [anon_sym_list] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_break] = ACTIONS(1778), - [anon_sym_continue] = ACTIONS(1778), - [anon_sym_for] = ACTIONS(1778), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_loop] = ACTIONS(1778), - [anon_sym_make] = ACTIONS(1778), - [anon_sym_while] = ACTIONS(1778), - [anon_sym_do] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_match] = ACTIONS(1778), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1778), - [anon_sym_catch] = ACTIONS(1778), - [anon_sym_return] = ACTIONS(1778), - [anon_sym_source] = ACTIONS(1778), - [anon_sym_source_DASHenv] = ACTIONS(1778), - [anon_sym_register] = ACTIONS(1778), - [anon_sym_hide] = ACTIONS(1778), - [anon_sym_hide_DASHenv] = ACTIONS(1778), - [anon_sym_overlay] = ACTIONS(1778), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_as] = ACTIONS(1778), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1903), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1780), - [aux_sym__val_number_decimal_token1] = ACTIONS(1778), - [aux_sym__val_number_decimal_token2] = ACTIONS(1780), - [aux_sym__val_number_decimal_token3] = ACTIONS(1780), - [aux_sym__val_number_decimal_token4] = ACTIONS(1780), - [aux_sym__val_number_token1] = ACTIONS(1780), - [aux_sym__val_number_token2] = ACTIONS(1780), - [aux_sym__val_number_token3] = ACTIONS(1780), - [anon_sym_DQUOTE] = ACTIONS(1780), - [sym__str_single_quotes] = ACTIONS(1780), - [sym__str_back_ticks] = ACTIONS(1780), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_POUND] = ACTIONS(247), - }, - [398] = { - [sym_comment] = STATE(398), - [anon_sym_export] = ACTIONS(970), - [anon_sym_alias] = ACTIONS(970), - [anon_sym_let] = ACTIONS(970), - [anon_sym_let_DASHenv] = ACTIONS(970), - [anon_sym_mut] = ACTIONS(970), - [anon_sym_const] = ACTIONS(970), - [aux_sym_cmd_identifier_token1] = ACTIONS(970), - [aux_sym_cmd_identifier_token2] = ACTIONS(970), - [aux_sym_cmd_identifier_token3] = ACTIONS(970), - [aux_sym_cmd_identifier_token4] = ACTIONS(970), - [aux_sym_cmd_identifier_token5] = ACTIONS(970), - [aux_sym_cmd_identifier_token6] = ACTIONS(970), - [aux_sym_cmd_identifier_token7] = ACTIONS(970), - [aux_sym_cmd_identifier_token8] = ACTIONS(970), - [aux_sym_cmd_identifier_token9] = ACTIONS(970), - [aux_sym_cmd_identifier_token10] = ACTIONS(970), - [aux_sym_cmd_identifier_token11] = ACTIONS(970), - [aux_sym_cmd_identifier_token12] = ACTIONS(970), - [aux_sym_cmd_identifier_token13] = ACTIONS(970), - [aux_sym_cmd_identifier_token14] = ACTIONS(970), - [aux_sym_cmd_identifier_token15] = ACTIONS(970), - [aux_sym_cmd_identifier_token16] = ACTIONS(970), - [aux_sym_cmd_identifier_token17] = ACTIONS(970), - [aux_sym_cmd_identifier_token18] = ACTIONS(970), - [aux_sym_cmd_identifier_token19] = ACTIONS(970), - [aux_sym_cmd_identifier_token20] = ACTIONS(970), - [aux_sym_cmd_identifier_token21] = ACTIONS(970), - [aux_sym_cmd_identifier_token22] = ACTIONS(970), - [aux_sym_cmd_identifier_token23] = ACTIONS(970), - [aux_sym_cmd_identifier_token24] = ACTIONS(970), - [aux_sym_cmd_identifier_token25] = ACTIONS(970), - [aux_sym_cmd_identifier_token26] = ACTIONS(970), - [aux_sym_cmd_identifier_token27] = ACTIONS(970), - [aux_sym_cmd_identifier_token28] = ACTIONS(970), - [aux_sym_cmd_identifier_token29] = ACTIONS(970), - [aux_sym_cmd_identifier_token30] = ACTIONS(970), - [aux_sym_cmd_identifier_token31] = ACTIONS(970), - [aux_sym_cmd_identifier_token32] = ACTIONS(970), - [aux_sym_cmd_identifier_token33] = ACTIONS(970), - [aux_sym_cmd_identifier_token34] = ACTIONS(970), - [aux_sym_cmd_identifier_token35] = ACTIONS(970), - [aux_sym_cmd_identifier_token36] = ACTIONS(970), - [anon_sym_true] = ACTIONS(972), - [anon_sym_false] = ACTIONS(972), - [anon_sym_null] = ACTIONS(972), - [aux_sym_cmd_identifier_token38] = ACTIONS(970), - [aux_sym_cmd_identifier_token39] = ACTIONS(972), - [aux_sym_cmd_identifier_token40] = ACTIONS(972), - [anon_sym_def] = ACTIONS(970), - [anon_sym_export_DASHenv] = ACTIONS(970), - [anon_sym_extern] = ACTIONS(970), - [anon_sym_module] = ACTIONS(970), - [anon_sym_use] = ACTIONS(970), - [anon_sym_LPAREN] = ACTIONS(972), - [anon_sym_COMMA] = ACTIONS(972), - [anon_sym_DOLLAR] = ACTIONS(972), - [anon_sym_error] = ACTIONS(970), - [anon_sym_list] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_break] = ACTIONS(970), - [anon_sym_continue] = ACTIONS(970), - [anon_sym_for] = ACTIONS(970), - [anon_sym_in] = ACTIONS(970), - [anon_sym_loop] = ACTIONS(970), - [anon_sym_make] = ACTIONS(970), - [anon_sym_while] = ACTIONS(970), - [anon_sym_do] = ACTIONS(970), - [anon_sym_if] = ACTIONS(970), - [anon_sym_else] = ACTIONS(970), - [anon_sym_match] = ACTIONS(970), - [anon_sym_RBRACE] = ACTIONS(972), - [anon_sym_try] = ACTIONS(970), - [anon_sym_catch] = ACTIONS(970), - [anon_sym_return] = ACTIONS(970), - [anon_sym_source] = ACTIONS(970), - [anon_sym_source_DASHenv] = ACTIONS(970), - [anon_sym_register] = ACTIONS(970), - [anon_sym_hide] = ACTIONS(970), - [anon_sym_hide_DASHenv] = ACTIONS(970), - [anon_sym_overlay] = ACTIONS(970), - [anon_sym_new] = ACTIONS(970), - [anon_sym_as] = ACTIONS(970), - [anon_sym_QMARK2] = ACTIONS(1968), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(972), - [anon_sym_DOT] = ACTIONS(970), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(972), - [aux_sym__val_number_decimal_token1] = ACTIONS(970), - [aux_sym__val_number_decimal_token2] = ACTIONS(972), - [aux_sym__val_number_decimal_token3] = ACTIONS(972), - [aux_sym__val_number_decimal_token4] = ACTIONS(972), - [aux_sym__val_number_token1] = ACTIONS(972), - [aux_sym__val_number_token2] = ACTIONS(972), - [aux_sym__val_number_token3] = ACTIONS(972), - [anon_sym_DQUOTE] = ACTIONS(972), - [sym__str_single_quotes] = ACTIONS(972), - [sym__str_back_ticks] = ACTIONS(972), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(972), - [aux_sym_record_entry_token1] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(970), - [anon_sym_POUND] = ACTIONS(247), - }, - [399] = { - [sym_comment] = STATE(399), - [anon_sym_export] = ACTIONS(980), - [anon_sym_alias] = ACTIONS(980), - [anon_sym_let] = ACTIONS(980), - [anon_sym_let_DASHenv] = ACTIONS(980), - [anon_sym_mut] = ACTIONS(980), - [anon_sym_const] = ACTIONS(980), - [aux_sym_cmd_identifier_token1] = ACTIONS(980), - [aux_sym_cmd_identifier_token2] = ACTIONS(980), - [aux_sym_cmd_identifier_token3] = ACTIONS(980), - [aux_sym_cmd_identifier_token4] = ACTIONS(980), - [aux_sym_cmd_identifier_token5] = ACTIONS(980), - [aux_sym_cmd_identifier_token6] = ACTIONS(980), - [aux_sym_cmd_identifier_token7] = ACTIONS(980), - [aux_sym_cmd_identifier_token8] = ACTIONS(980), - [aux_sym_cmd_identifier_token9] = ACTIONS(980), - [aux_sym_cmd_identifier_token10] = ACTIONS(980), - [aux_sym_cmd_identifier_token11] = ACTIONS(980), - [aux_sym_cmd_identifier_token12] = ACTIONS(980), - [aux_sym_cmd_identifier_token13] = ACTIONS(980), - [aux_sym_cmd_identifier_token14] = ACTIONS(980), - [aux_sym_cmd_identifier_token15] = ACTIONS(980), - [aux_sym_cmd_identifier_token16] = ACTIONS(980), - [aux_sym_cmd_identifier_token17] = ACTIONS(980), - [aux_sym_cmd_identifier_token18] = ACTIONS(980), - [aux_sym_cmd_identifier_token19] = ACTIONS(980), - [aux_sym_cmd_identifier_token20] = ACTIONS(980), - [aux_sym_cmd_identifier_token21] = ACTIONS(980), - [aux_sym_cmd_identifier_token22] = ACTIONS(980), - [aux_sym_cmd_identifier_token23] = ACTIONS(980), - [aux_sym_cmd_identifier_token24] = ACTIONS(980), - [aux_sym_cmd_identifier_token25] = ACTIONS(980), - [aux_sym_cmd_identifier_token26] = ACTIONS(980), - [aux_sym_cmd_identifier_token27] = ACTIONS(980), - [aux_sym_cmd_identifier_token28] = ACTIONS(980), - [aux_sym_cmd_identifier_token29] = ACTIONS(980), - [aux_sym_cmd_identifier_token30] = ACTIONS(980), - [aux_sym_cmd_identifier_token31] = ACTIONS(980), - [aux_sym_cmd_identifier_token32] = ACTIONS(980), - [aux_sym_cmd_identifier_token33] = ACTIONS(980), - [aux_sym_cmd_identifier_token34] = ACTIONS(980), - [aux_sym_cmd_identifier_token35] = ACTIONS(980), - [aux_sym_cmd_identifier_token36] = ACTIONS(980), - [anon_sym_true] = ACTIONS(982), - [anon_sym_false] = ACTIONS(982), - [anon_sym_null] = ACTIONS(982), - [aux_sym_cmd_identifier_token38] = ACTIONS(980), - [aux_sym_cmd_identifier_token39] = ACTIONS(982), - [aux_sym_cmd_identifier_token40] = ACTIONS(982), - [anon_sym_def] = ACTIONS(980), - [anon_sym_export_DASHenv] = ACTIONS(980), - [anon_sym_extern] = ACTIONS(980), - [anon_sym_module] = ACTIONS(980), - [anon_sym_use] = ACTIONS(980), - [anon_sym_LPAREN] = ACTIONS(982), - [anon_sym_COMMA] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(982), - [anon_sym_error] = ACTIONS(980), - [anon_sym_list] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_break] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_for] = ACTIONS(980), - [anon_sym_in] = ACTIONS(980), - [anon_sym_loop] = ACTIONS(980), - [anon_sym_make] = ACTIONS(980), - [anon_sym_while] = ACTIONS(980), - [anon_sym_do] = ACTIONS(980), - [anon_sym_if] = ACTIONS(980), - [anon_sym_else] = ACTIONS(980), - [anon_sym_match] = ACTIONS(980), - [anon_sym_RBRACE] = ACTIONS(982), - [anon_sym_try] = ACTIONS(980), - [anon_sym_catch] = ACTIONS(980), - [anon_sym_return] = ACTIONS(980), - [anon_sym_source] = ACTIONS(980), - [anon_sym_source_DASHenv] = ACTIONS(980), - [anon_sym_register] = ACTIONS(980), - [anon_sym_hide] = ACTIONS(980), - [anon_sym_hide_DASHenv] = ACTIONS(980), - [anon_sym_overlay] = ACTIONS(980), - [anon_sym_new] = ACTIONS(980), - [anon_sym_as] = ACTIONS(980), - [anon_sym_QMARK2] = ACTIONS(1970), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(982), - [anon_sym_DOT] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(982), - [aux_sym__val_number_decimal_token1] = ACTIONS(980), - [aux_sym__val_number_decimal_token2] = ACTIONS(982), - [aux_sym__val_number_decimal_token3] = ACTIONS(982), - [aux_sym__val_number_decimal_token4] = ACTIONS(982), - [aux_sym__val_number_token1] = ACTIONS(982), - [aux_sym__val_number_token2] = ACTIONS(982), - [aux_sym__val_number_token3] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(982), - [sym__str_single_quotes] = ACTIONS(982), - [sym__str_back_ticks] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(982), - [aux_sym_record_entry_token1] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_POUND] = ACTIONS(247), - }, - [400] = { - [sym_comment] = STATE(400), - [anon_sym_export] = ACTIONS(1972), - [anon_sym_alias] = ACTIONS(1972), - [anon_sym_let] = ACTIONS(1972), - [anon_sym_let_DASHenv] = ACTIONS(1972), - [anon_sym_mut] = ACTIONS(1972), - [anon_sym_const] = ACTIONS(1972), - [aux_sym_cmd_identifier_token1] = ACTIONS(1972), - [aux_sym_cmd_identifier_token2] = ACTIONS(1972), - [aux_sym_cmd_identifier_token3] = ACTIONS(1972), - [aux_sym_cmd_identifier_token4] = ACTIONS(1972), - [aux_sym_cmd_identifier_token5] = ACTIONS(1972), - [aux_sym_cmd_identifier_token6] = ACTIONS(1972), - [aux_sym_cmd_identifier_token7] = ACTIONS(1972), - [aux_sym_cmd_identifier_token8] = ACTIONS(1972), - [aux_sym_cmd_identifier_token9] = ACTIONS(1972), - [aux_sym_cmd_identifier_token10] = ACTIONS(1972), - [aux_sym_cmd_identifier_token11] = ACTIONS(1972), - [aux_sym_cmd_identifier_token12] = ACTIONS(1972), - [aux_sym_cmd_identifier_token13] = ACTIONS(1972), - [aux_sym_cmd_identifier_token14] = ACTIONS(1972), - [aux_sym_cmd_identifier_token15] = ACTIONS(1972), - [aux_sym_cmd_identifier_token16] = ACTIONS(1972), - [aux_sym_cmd_identifier_token17] = ACTIONS(1972), - [aux_sym_cmd_identifier_token18] = ACTIONS(1972), - [aux_sym_cmd_identifier_token19] = ACTIONS(1972), - [aux_sym_cmd_identifier_token20] = ACTIONS(1972), - [aux_sym_cmd_identifier_token21] = ACTIONS(1972), - [aux_sym_cmd_identifier_token22] = ACTIONS(1972), - [aux_sym_cmd_identifier_token23] = ACTIONS(1972), - [aux_sym_cmd_identifier_token24] = ACTIONS(1972), - [aux_sym_cmd_identifier_token25] = ACTIONS(1972), - [aux_sym_cmd_identifier_token26] = ACTIONS(1972), - [aux_sym_cmd_identifier_token27] = ACTIONS(1972), - [aux_sym_cmd_identifier_token28] = ACTIONS(1972), - [aux_sym_cmd_identifier_token29] = ACTIONS(1972), - [aux_sym_cmd_identifier_token30] = ACTIONS(1972), - [aux_sym_cmd_identifier_token31] = ACTIONS(1972), - [aux_sym_cmd_identifier_token32] = ACTIONS(1972), - [aux_sym_cmd_identifier_token33] = ACTIONS(1972), - [aux_sym_cmd_identifier_token34] = ACTIONS(1972), - [aux_sym_cmd_identifier_token35] = ACTIONS(1972), - [aux_sym_cmd_identifier_token36] = ACTIONS(1972), - [anon_sym_true] = ACTIONS(1972), - [anon_sym_false] = ACTIONS(1972), - [anon_sym_null] = ACTIONS(1972), - [aux_sym_cmd_identifier_token38] = ACTIONS(1972), - [aux_sym_cmd_identifier_token39] = ACTIONS(1972), - [aux_sym_cmd_identifier_token40] = ACTIONS(1972), - [anon_sym_def] = ACTIONS(1972), - [anon_sym_export_DASHenv] = ACTIONS(1972), - [anon_sym_extern] = ACTIONS(1972), - [anon_sym_module] = ACTIONS(1972), - [anon_sym_use] = ACTIONS(1972), - [anon_sym_LPAREN] = ACTIONS(1972), - [anon_sym_DOLLAR] = ACTIONS(1972), - [anon_sym_error] = ACTIONS(1972), - [anon_sym_list] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_break] = ACTIONS(1972), - [anon_sym_continue] = ACTIONS(1972), - [anon_sym_for] = ACTIONS(1972), - [anon_sym_in] = ACTIONS(1972), - [anon_sym_loop] = ACTIONS(1972), - [anon_sym_make] = ACTIONS(1972), - [anon_sym_while] = ACTIONS(1972), - [anon_sym_do] = ACTIONS(1972), - [anon_sym_if] = ACTIONS(1972), - [anon_sym_else] = ACTIONS(1972), - [anon_sym_match] = ACTIONS(1972), - [anon_sym_RBRACE] = ACTIONS(1972), - [anon_sym_try] = ACTIONS(1972), - [anon_sym_catch] = ACTIONS(1972), - [anon_sym_return] = ACTIONS(1972), - [anon_sym_source] = ACTIONS(1972), - [anon_sym_source_DASHenv] = ACTIONS(1972), - [anon_sym_register] = ACTIONS(1972), - [anon_sym_hide] = ACTIONS(1972), - [anon_sym_hide_DASHenv] = ACTIONS(1972), - [anon_sym_overlay] = ACTIONS(1972), - [anon_sym_new] = ACTIONS(1972), - [anon_sym_as] = ACTIONS(1972), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1972), - [anon_sym_DOT_DOT2] = ACTIONS(1974), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1976), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1976), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1972), - [aux_sym__val_number_decimal_token1] = ACTIONS(1972), - [aux_sym__val_number_decimal_token2] = ACTIONS(1972), - [aux_sym__val_number_decimal_token3] = ACTIONS(1972), - [aux_sym__val_number_decimal_token4] = ACTIONS(1972), - [aux_sym__val_number_token1] = ACTIONS(1972), - [aux_sym__val_number_token2] = ACTIONS(1972), - [aux_sym__val_number_token3] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(1972), - [sym__str_single_quotes] = ACTIONS(1972), - [sym__str_back_ticks] = ACTIONS(1972), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1972), - [sym__entry_separator] = ACTIONS(1978), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_POUND] = ACTIONS(3), - }, - [401] = { - [sym_comment] = STATE(401), - [anon_sym_export] = ACTIONS(1648), - [anon_sym_alias] = ACTIONS(1648), - [anon_sym_let] = ACTIONS(1648), - [anon_sym_let_DASHenv] = ACTIONS(1648), - [anon_sym_mut] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1648), - [aux_sym_cmd_identifier_token1] = ACTIONS(1648), - [aux_sym_cmd_identifier_token2] = ACTIONS(1648), - [aux_sym_cmd_identifier_token3] = ACTIONS(1648), - [aux_sym_cmd_identifier_token4] = ACTIONS(1648), - [aux_sym_cmd_identifier_token5] = ACTIONS(1648), - [aux_sym_cmd_identifier_token6] = ACTIONS(1648), - [aux_sym_cmd_identifier_token7] = ACTIONS(1648), - [aux_sym_cmd_identifier_token8] = ACTIONS(1648), - [aux_sym_cmd_identifier_token9] = ACTIONS(1648), - [aux_sym_cmd_identifier_token10] = ACTIONS(1648), - [aux_sym_cmd_identifier_token11] = ACTIONS(1648), - [aux_sym_cmd_identifier_token12] = ACTIONS(1648), - [aux_sym_cmd_identifier_token13] = ACTIONS(1648), - [aux_sym_cmd_identifier_token14] = ACTIONS(1648), - [aux_sym_cmd_identifier_token15] = ACTIONS(1648), - [aux_sym_cmd_identifier_token16] = ACTIONS(1648), - [aux_sym_cmd_identifier_token17] = ACTIONS(1648), - [aux_sym_cmd_identifier_token18] = ACTIONS(1648), - [aux_sym_cmd_identifier_token19] = ACTIONS(1648), - [aux_sym_cmd_identifier_token20] = ACTIONS(1648), - [aux_sym_cmd_identifier_token21] = ACTIONS(1648), - [aux_sym_cmd_identifier_token22] = ACTIONS(1648), - [aux_sym_cmd_identifier_token23] = ACTIONS(1648), - [aux_sym_cmd_identifier_token24] = ACTIONS(1648), - [aux_sym_cmd_identifier_token25] = ACTIONS(1648), - [aux_sym_cmd_identifier_token26] = ACTIONS(1648), - [aux_sym_cmd_identifier_token27] = ACTIONS(1648), - [aux_sym_cmd_identifier_token28] = ACTIONS(1648), - [aux_sym_cmd_identifier_token29] = ACTIONS(1648), - [aux_sym_cmd_identifier_token30] = ACTIONS(1648), - [aux_sym_cmd_identifier_token31] = ACTIONS(1648), - [aux_sym_cmd_identifier_token32] = ACTIONS(1648), - [aux_sym_cmd_identifier_token33] = ACTIONS(1648), - [aux_sym_cmd_identifier_token34] = ACTIONS(1648), - [aux_sym_cmd_identifier_token35] = ACTIONS(1648), - [aux_sym_cmd_identifier_token36] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1648), - [anon_sym_false] = ACTIONS(1648), - [anon_sym_null] = ACTIONS(1648), - [aux_sym_cmd_identifier_token38] = ACTIONS(1648), - [aux_sym_cmd_identifier_token39] = ACTIONS(1648), - [aux_sym_cmd_identifier_token40] = ACTIONS(1648), - [anon_sym_def] = ACTIONS(1648), - [anon_sym_export_DASHenv] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1648), - [anon_sym_module] = ACTIONS(1648), - [anon_sym_use] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_error] = ACTIONS(1648), - [anon_sym_list] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_in] = ACTIONS(1648), - [anon_sym_loop] = ACTIONS(1648), - [anon_sym_make] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_do] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1648), - [anon_sym_match] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1648), - [anon_sym_try] = ACTIONS(1648), - [anon_sym_catch] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_source] = ACTIONS(1648), - [anon_sym_source_DASHenv] = ACTIONS(1648), - [anon_sym_register] = ACTIONS(1648), - [anon_sym_hide] = ACTIONS(1648), - [anon_sym_hide_DASHenv] = ACTIONS(1648), - [anon_sym_overlay] = ACTIONS(1648), - [anon_sym_new] = ACTIONS(1648), - [anon_sym_as] = ACTIONS(1648), - [anon_sym_LPAREN2] = ACTIONS(1650), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1648), - [aux_sym__immediate_decimal_token2] = ACTIONS(1980), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1648), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1648), - [aux_sym__val_number_decimal_token3] = ACTIONS(1648), - [aux_sym__val_number_decimal_token4] = ACTIONS(1648), - [aux_sym__val_number_token1] = ACTIONS(1648), - [aux_sym__val_number_token2] = ACTIONS(1648), - [aux_sym__val_number_token3] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1648), - [sym__str_single_quotes] = ACTIONS(1648), - [sym__str_back_ticks] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1648), - [sym__entry_separator] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1648), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(3), - }, - [402] = { - [sym_comment] = STATE(402), - [anon_sym_export] = ACTIONS(966), - [anon_sym_alias] = ACTIONS(966), - [anon_sym_let] = ACTIONS(966), - [anon_sym_let_DASHenv] = ACTIONS(966), - [anon_sym_mut] = ACTIONS(966), - [anon_sym_const] = ACTIONS(966), - [aux_sym_cmd_identifier_token1] = ACTIONS(966), - [aux_sym_cmd_identifier_token2] = ACTIONS(966), - [aux_sym_cmd_identifier_token3] = ACTIONS(966), - [aux_sym_cmd_identifier_token4] = ACTIONS(966), - [aux_sym_cmd_identifier_token5] = ACTIONS(966), - [aux_sym_cmd_identifier_token6] = ACTIONS(966), - [aux_sym_cmd_identifier_token7] = ACTIONS(966), - [aux_sym_cmd_identifier_token8] = ACTIONS(966), - [aux_sym_cmd_identifier_token9] = ACTIONS(966), - [aux_sym_cmd_identifier_token10] = ACTIONS(966), - [aux_sym_cmd_identifier_token11] = ACTIONS(966), - [aux_sym_cmd_identifier_token12] = ACTIONS(966), - [aux_sym_cmd_identifier_token13] = ACTIONS(966), - [aux_sym_cmd_identifier_token14] = ACTIONS(966), - [aux_sym_cmd_identifier_token15] = ACTIONS(966), - [aux_sym_cmd_identifier_token16] = ACTIONS(966), - [aux_sym_cmd_identifier_token17] = ACTIONS(966), - [aux_sym_cmd_identifier_token18] = ACTIONS(966), - [aux_sym_cmd_identifier_token19] = ACTIONS(966), - [aux_sym_cmd_identifier_token20] = ACTIONS(966), - [aux_sym_cmd_identifier_token21] = ACTIONS(966), - [aux_sym_cmd_identifier_token22] = ACTIONS(966), - [aux_sym_cmd_identifier_token23] = ACTIONS(966), - [aux_sym_cmd_identifier_token24] = ACTIONS(966), - [aux_sym_cmd_identifier_token25] = ACTIONS(966), - [aux_sym_cmd_identifier_token26] = ACTIONS(966), - [aux_sym_cmd_identifier_token27] = ACTIONS(966), - [aux_sym_cmd_identifier_token28] = ACTIONS(966), - [aux_sym_cmd_identifier_token29] = ACTIONS(966), - [aux_sym_cmd_identifier_token30] = ACTIONS(966), - [aux_sym_cmd_identifier_token31] = ACTIONS(966), - [aux_sym_cmd_identifier_token32] = ACTIONS(966), - [aux_sym_cmd_identifier_token33] = ACTIONS(966), - [aux_sym_cmd_identifier_token34] = ACTIONS(966), - [aux_sym_cmd_identifier_token35] = ACTIONS(966), - [aux_sym_cmd_identifier_token36] = ACTIONS(966), - [anon_sym_true] = ACTIONS(968), - [anon_sym_false] = ACTIONS(968), - [anon_sym_null] = ACTIONS(968), - [aux_sym_cmd_identifier_token38] = ACTIONS(966), - [aux_sym_cmd_identifier_token39] = ACTIONS(968), - [aux_sym_cmd_identifier_token40] = ACTIONS(968), - [anon_sym_def] = ACTIONS(966), - [anon_sym_export_DASHenv] = ACTIONS(966), - [anon_sym_extern] = ACTIONS(966), - [anon_sym_module] = ACTIONS(966), - [anon_sym_use] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_COMMA] = ACTIONS(968), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_error] = ACTIONS(966), - [anon_sym_list] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_break] = ACTIONS(966), - [anon_sym_continue] = ACTIONS(966), - [anon_sym_for] = ACTIONS(966), - [anon_sym_in] = ACTIONS(966), - [anon_sym_loop] = ACTIONS(966), - [anon_sym_make] = ACTIONS(966), - [anon_sym_while] = ACTIONS(966), - [anon_sym_do] = ACTIONS(966), - [anon_sym_if] = ACTIONS(966), - [anon_sym_else] = ACTIONS(966), - [anon_sym_match] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_try] = ACTIONS(966), - [anon_sym_catch] = ACTIONS(966), - [anon_sym_return] = ACTIONS(966), - [anon_sym_source] = ACTIONS(966), - [anon_sym_source_DASHenv] = ACTIONS(966), - [anon_sym_register] = ACTIONS(966), - [anon_sym_hide] = ACTIONS(966), - [anon_sym_hide_DASHenv] = ACTIONS(966), - [anon_sym_overlay] = ACTIONS(966), - [anon_sym_new] = ACTIONS(966), - [anon_sym_as] = ACTIONS(966), - [anon_sym_QMARK2] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(968), - [anon_sym_DOT] = ACTIONS(966), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(968), - [aux_sym__val_number_decimal_token1] = ACTIONS(966), - [aux_sym__val_number_decimal_token2] = ACTIONS(968), - [aux_sym__val_number_decimal_token3] = ACTIONS(968), - [aux_sym__val_number_decimal_token4] = ACTIONS(968), - [aux_sym__val_number_token1] = ACTIONS(968), - [aux_sym__val_number_token2] = ACTIONS(968), - [aux_sym__val_number_token3] = ACTIONS(968), - [anon_sym_DQUOTE] = ACTIONS(968), - [sym__str_single_quotes] = ACTIONS(968), - [sym__str_back_ticks] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(968), - [aux_sym_record_entry_token1] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_POUND] = ACTIONS(247), - }, - [403] = { - [sym_comment] = STATE(403), - [anon_sym_export] = ACTIONS(1589), - [anon_sym_alias] = ACTIONS(1589), - [anon_sym_let] = ACTIONS(1589), - [anon_sym_let_DASHenv] = ACTIONS(1589), - [anon_sym_mut] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [aux_sym_cmd_identifier_token1] = ACTIONS(1589), - [aux_sym_cmd_identifier_token2] = ACTIONS(1589), - [aux_sym_cmd_identifier_token3] = ACTIONS(1589), - [aux_sym_cmd_identifier_token4] = ACTIONS(1589), - [aux_sym_cmd_identifier_token5] = ACTIONS(1589), - [aux_sym_cmd_identifier_token6] = ACTIONS(1589), - [aux_sym_cmd_identifier_token7] = ACTIONS(1589), - [aux_sym_cmd_identifier_token8] = ACTIONS(1589), - [aux_sym_cmd_identifier_token9] = ACTIONS(1589), - [aux_sym_cmd_identifier_token10] = ACTIONS(1589), - [aux_sym_cmd_identifier_token11] = ACTIONS(1589), - [aux_sym_cmd_identifier_token12] = ACTIONS(1589), - [aux_sym_cmd_identifier_token13] = ACTIONS(1589), - [aux_sym_cmd_identifier_token14] = ACTIONS(1589), - [aux_sym_cmd_identifier_token15] = ACTIONS(1589), - [aux_sym_cmd_identifier_token16] = ACTIONS(1589), - [aux_sym_cmd_identifier_token17] = ACTIONS(1589), - [aux_sym_cmd_identifier_token18] = ACTIONS(1589), - [aux_sym_cmd_identifier_token19] = ACTIONS(1589), - [aux_sym_cmd_identifier_token20] = ACTIONS(1589), - [aux_sym_cmd_identifier_token21] = ACTIONS(1589), - [aux_sym_cmd_identifier_token22] = ACTIONS(1589), - [aux_sym_cmd_identifier_token23] = ACTIONS(1589), - [aux_sym_cmd_identifier_token24] = ACTIONS(1589), - [aux_sym_cmd_identifier_token25] = ACTIONS(1589), - [aux_sym_cmd_identifier_token26] = ACTIONS(1589), - [aux_sym_cmd_identifier_token27] = ACTIONS(1589), - [aux_sym_cmd_identifier_token28] = ACTIONS(1589), - [aux_sym_cmd_identifier_token29] = ACTIONS(1589), - [aux_sym_cmd_identifier_token30] = ACTIONS(1589), - [aux_sym_cmd_identifier_token31] = ACTIONS(1589), - [aux_sym_cmd_identifier_token32] = ACTIONS(1589), - [aux_sym_cmd_identifier_token33] = ACTIONS(1589), - [aux_sym_cmd_identifier_token34] = ACTIONS(1589), - [aux_sym_cmd_identifier_token35] = ACTIONS(1589), - [aux_sym_cmd_identifier_token36] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1589), - [anon_sym_false] = ACTIONS(1589), - [anon_sym_null] = ACTIONS(1589), - [aux_sym_cmd_identifier_token38] = ACTIONS(1589), - [aux_sym_cmd_identifier_token39] = ACTIONS(1589), - [aux_sym_cmd_identifier_token40] = ACTIONS(1589), - [anon_sym_def] = ACTIONS(1589), - [anon_sym_export_DASHenv] = ACTIONS(1589), - [anon_sym_extern] = ACTIONS(1589), - [anon_sym_module] = ACTIONS(1589), - [anon_sym_use] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_error] = ACTIONS(1589), - [anon_sym_list] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_loop] = ACTIONS(1589), - [anon_sym_make] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_else] = ACTIONS(1589), - [anon_sym_match] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1589), - [anon_sym_try] = ACTIONS(1589), - [anon_sym_catch] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_source] = ACTIONS(1589), - [anon_sym_source_DASHenv] = ACTIONS(1589), - [anon_sym_register] = ACTIONS(1589), - [anon_sym_hide] = ACTIONS(1589), - [anon_sym_hide_DASHenv] = ACTIONS(1589), - [anon_sym_overlay] = ACTIONS(1589), - [anon_sym_new] = ACTIONS(1589), - [anon_sym_as] = ACTIONS(1589), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1589), - [anon_sym_DOT_DOT2] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1589), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1589), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1589), - [aux_sym__val_number_token1] = ACTIONS(1589), - [aux_sym__val_number_token2] = ACTIONS(1589), - [aux_sym__val_number_token3] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [sym__str_single_quotes] = ACTIONS(1589), - [sym__str_back_ticks] = ACTIONS(1589), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1589), - [sym__entry_separator] = ACTIONS(1591), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(3), - }, - [404] = { - [sym_comment] = STATE(404), - [anon_sym_export] = ACTIONS(976), - [anon_sym_alias] = ACTIONS(976), - [anon_sym_let] = ACTIONS(976), - [anon_sym_let_DASHenv] = ACTIONS(976), - [anon_sym_mut] = ACTIONS(976), - [anon_sym_const] = ACTIONS(976), - [aux_sym_cmd_identifier_token1] = ACTIONS(976), - [aux_sym_cmd_identifier_token2] = ACTIONS(976), - [aux_sym_cmd_identifier_token3] = ACTIONS(976), - [aux_sym_cmd_identifier_token4] = ACTIONS(976), - [aux_sym_cmd_identifier_token5] = ACTIONS(976), - [aux_sym_cmd_identifier_token6] = ACTIONS(976), - [aux_sym_cmd_identifier_token7] = ACTIONS(976), - [aux_sym_cmd_identifier_token8] = ACTIONS(976), - [aux_sym_cmd_identifier_token9] = ACTIONS(976), - [aux_sym_cmd_identifier_token10] = ACTIONS(976), - [aux_sym_cmd_identifier_token11] = ACTIONS(976), - [aux_sym_cmd_identifier_token12] = ACTIONS(976), - [aux_sym_cmd_identifier_token13] = ACTIONS(976), - [aux_sym_cmd_identifier_token14] = ACTIONS(976), - [aux_sym_cmd_identifier_token15] = ACTIONS(976), - [aux_sym_cmd_identifier_token16] = ACTIONS(976), - [aux_sym_cmd_identifier_token17] = ACTIONS(976), - [aux_sym_cmd_identifier_token18] = ACTIONS(976), - [aux_sym_cmd_identifier_token19] = ACTIONS(976), - [aux_sym_cmd_identifier_token20] = ACTIONS(976), - [aux_sym_cmd_identifier_token21] = ACTIONS(976), - [aux_sym_cmd_identifier_token22] = ACTIONS(976), - [aux_sym_cmd_identifier_token23] = ACTIONS(976), - [aux_sym_cmd_identifier_token24] = ACTIONS(976), - [aux_sym_cmd_identifier_token25] = ACTIONS(976), - [aux_sym_cmd_identifier_token26] = ACTIONS(976), - [aux_sym_cmd_identifier_token27] = ACTIONS(976), - [aux_sym_cmd_identifier_token28] = ACTIONS(976), - [aux_sym_cmd_identifier_token29] = ACTIONS(976), - [aux_sym_cmd_identifier_token30] = ACTIONS(976), - [aux_sym_cmd_identifier_token31] = ACTIONS(976), - [aux_sym_cmd_identifier_token32] = ACTIONS(976), - [aux_sym_cmd_identifier_token33] = ACTIONS(976), - [aux_sym_cmd_identifier_token34] = ACTIONS(976), - [aux_sym_cmd_identifier_token35] = ACTIONS(976), - [aux_sym_cmd_identifier_token36] = ACTIONS(976), - [anon_sym_true] = ACTIONS(978), - [anon_sym_false] = ACTIONS(978), - [anon_sym_null] = ACTIONS(978), - [aux_sym_cmd_identifier_token38] = ACTIONS(976), - [aux_sym_cmd_identifier_token39] = ACTIONS(978), - [aux_sym_cmd_identifier_token40] = ACTIONS(978), - [anon_sym_def] = ACTIONS(976), - [anon_sym_export_DASHenv] = ACTIONS(976), - [anon_sym_extern] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_use] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(978), - [anon_sym_COMMA] = ACTIONS(978), - [anon_sym_DOLLAR] = ACTIONS(978), - [anon_sym_error] = ACTIONS(976), - [anon_sym_list] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_break] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_in] = ACTIONS(976), - [anon_sym_loop] = ACTIONS(976), - [anon_sym_make] = ACTIONS(976), - [anon_sym_while] = ACTIONS(976), - [anon_sym_do] = ACTIONS(976), - [anon_sym_if] = ACTIONS(976), - [anon_sym_else] = ACTIONS(976), - [anon_sym_match] = ACTIONS(976), - [anon_sym_RBRACE] = ACTIONS(978), - [anon_sym_try] = ACTIONS(976), - [anon_sym_catch] = ACTIONS(976), - [anon_sym_return] = ACTIONS(976), - [anon_sym_source] = ACTIONS(976), - [anon_sym_source_DASHenv] = ACTIONS(976), - [anon_sym_register] = ACTIONS(976), - [anon_sym_hide] = ACTIONS(976), - [anon_sym_hide_DASHenv] = ACTIONS(976), - [anon_sym_overlay] = ACTIONS(976), - [anon_sym_new] = ACTIONS(976), - [anon_sym_as] = ACTIONS(976), - [anon_sym_QMARK2] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(978), - [anon_sym_DOT] = ACTIONS(976), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(978), - [aux_sym__val_number_decimal_token1] = ACTIONS(976), - [aux_sym__val_number_decimal_token2] = ACTIONS(978), - [aux_sym__val_number_decimal_token3] = ACTIONS(978), - [aux_sym__val_number_decimal_token4] = ACTIONS(978), - [aux_sym__val_number_token1] = ACTIONS(978), - [aux_sym__val_number_token2] = ACTIONS(978), - [aux_sym__val_number_token3] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(978), - [sym__str_single_quotes] = ACTIONS(978), - [sym__str_back_ticks] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(978), - [aux_sym_record_entry_token1] = ACTIONS(978), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(247), - }, - [405] = { - [sym_comment] = STATE(405), - [anon_sym_export] = ACTIONS(1982), - [anon_sym_alias] = ACTIONS(1982), - [anon_sym_let] = ACTIONS(1982), - [anon_sym_let_DASHenv] = ACTIONS(1982), - [anon_sym_mut] = ACTIONS(1982), - [anon_sym_const] = ACTIONS(1982), - [aux_sym_cmd_identifier_token1] = ACTIONS(1982), - [aux_sym_cmd_identifier_token2] = ACTIONS(1982), - [aux_sym_cmd_identifier_token3] = ACTIONS(1982), - [aux_sym_cmd_identifier_token4] = ACTIONS(1982), - [aux_sym_cmd_identifier_token5] = ACTIONS(1982), - [aux_sym_cmd_identifier_token6] = ACTIONS(1982), - [aux_sym_cmd_identifier_token7] = ACTIONS(1982), - [aux_sym_cmd_identifier_token8] = ACTIONS(1982), - [aux_sym_cmd_identifier_token9] = ACTIONS(1982), - [aux_sym_cmd_identifier_token10] = ACTIONS(1982), - [aux_sym_cmd_identifier_token11] = ACTIONS(1982), - [aux_sym_cmd_identifier_token12] = ACTIONS(1982), - [aux_sym_cmd_identifier_token13] = ACTIONS(1982), - [aux_sym_cmd_identifier_token14] = ACTIONS(1982), - [aux_sym_cmd_identifier_token15] = ACTIONS(1982), - [aux_sym_cmd_identifier_token16] = ACTIONS(1982), - [aux_sym_cmd_identifier_token17] = ACTIONS(1982), - [aux_sym_cmd_identifier_token18] = ACTIONS(1982), - [aux_sym_cmd_identifier_token19] = ACTIONS(1982), - [aux_sym_cmd_identifier_token20] = ACTIONS(1982), - [aux_sym_cmd_identifier_token21] = ACTIONS(1982), - [aux_sym_cmd_identifier_token22] = ACTIONS(1982), - [aux_sym_cmd_identifier_token23] = ACTIONS(1982), - [aux_sym_cmd_identifier_token24] = ACTIONS(1982), - [aux_sym_cmd_identifier_token25] = ACTIONS(1982), - [aux_sym_cmd_identifier_token26] = ACTIONS(1982), - [aux_sym_cmd_identifier_token27] = ACTIONS(1982), - [aux_sym_cmd_identifier_token28] = ACTIONS(1982), - [aux_sym_cmd_identifier_token29] = ACTIONS(1982), - [aux_sym_cmd_identifier_token30] = ACTIONS(1982), - [aux_sym_cmd_identifier_token31] = ACTIONS(1982), - [aux_sym_cmd_identifier_token32] = ACTIONS(1982), - [aux_sym_cmd_identifier_token33] = ACTIONS(1982), - [aux_sym_cmd_identifier_token34] = ACTIONS(1982), - [aux_sym_cmd_identifier_token35] = ACTIONS(1982), - [aux_sym_cmd_identifier_token36] = ACTIONS(1982), - [anon_sym_true] = ACTIONS(1982), - [anon_sym_false] = ACTIONS(1982), - [anon_sym_null] = ACTIONS(1982), - [aux_sym_cmd_identifier_token38] = ACTIONS(1982), - [aux_sym_cmd_identifier_token39] = ACTIONS(1982), - [aux_sym_cmd_identifier_token40] = ACTIONS(1982), - [anon_sym_def] = ACTIONS(1982), - [anon_sym_export_DASHenv] = ACTIONS(1982), - [anon_sym_extern] = ACTIONS(1982), - [anon_sym_module] = ACTIONS(1982), - [anon_sym_use] = ACTIONS(1982), - [anon_sym_LPAREN] = ACTIONS(1982), - [anon_sym_DOLLAR] = ACTIONS(1982), - [anon_sym_error] = ACTIONS(1982), - [anon_sym_list] = ACTIONS(1982), - [anon_sym_DASH] = ACTIONS(1982), - [anon_sym_break] = ACTIONS(1982), - [anon_sym_continue] = ACTIONS(1982), - [anon_sym_for] = ACTIONS(1982), - [anon_sym_in] = ACTIONS(1982), - [anon_sym_loop] = ACTIONS(1982), - [anon_sym_make] = ACTIONS(1982), - [anon_sym_while] = ACTIONS(1982), - [anon_sym_do] = ACTIONS(1982), - [anon_sym_if] = ACTIONS(1982), - [anon_sym_else] = ACTIONS(1982), - [anon_sym_match] = ACTIONS(1982), - [anon_sym_RBRACE] = ACTIONS(1982), - [anon_sym_try] = ACTIONS(1982), - [anon_sym_catch] = ACTIONS(1982), - [anon_sym_return] = ACTIONS(1982), - [anon_sym_source] = ACTIONS(1982), - [anon_sym_source_DASHenv] = ACTIONS(1982), - [anon_sym_register] = ACTIONS(1982), - [anon_sym_hide] = ACTIONS(1982), - [anon_sym_hide_DASHenv] = ACTIONS(1982), - [anon_sym_overlay] = ACTIONS(1982), - [anon_sym_new] = ACTIONS(1982), - [anon_sym_as] = ACTIONS(1982), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1982), - [anon_sym_DOT_DOT2] = ACTIONS(1982), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1984), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1984), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1982), - [aux_sym__val_number_decimal_token1] = ACTIONS(1982), - [aux_sym__val_number_decimal_token2] = ACTIONS(1982), - [aux_sym__val_number_decimal_token3] = ACTIONS(1982), - [aux_sym__val_number_decimal_token4] = ACTIONS(1982), - [aux_sym__val_number_token1] = ACTIONS(1982), - [aux_sym__val_number_token2] = ACTIONS(1982), - [aux_sym__val_number_token3] = ACTIONS(1982), - [anon_sym_DQUOTE] = ACTIONS(1982), - [sym__str_single_quotes] = ACTIONS(1982), - [sym__str_back_ticks] = ACTIONS(1982), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1982), - [sym__entry_separator] = ACTIONS(1984), - [anon_sym_PLUS] = ACTIONS(1982), - [anon_sym_POUND] = ACTIONS(3), - }, - [406] = { - [sym_comment] = STATE(406), - [anon_sym_export] = ACTIONS(986), - [anon_sym_alias] = ACTIONS(986), - [anon_sym_let] = ACTIONS(986), - [anon_sym_let_DASHenv] = ACTIONS(986), - [anon_sym_mut] = ACTIONS(986), - [anon_sym_const] = ACTIONS(986), - [aux_sym_cmd_identifier_token1] = ACTIONS(986), - [aux_sym_cmd_identifier_token2] = ACTIONS(986), - [aux_sym_cmd_identifier_token3] = ACTIONS(986), - [aux_sym_cmd_identifier_token4] = ACTIONS(986), - [aux_sym_cmd_identifier_token5] = ACTIONS(986), - [aux_sym_cmd_identifier_token6] = ACTIONS(986), - [aux_sym_cmd_identifier_token7] = ACTIONS(986), - [aux_sym_cmd_identifier_token8] = ACTIONS(986), - [aux_sym_cmd_identifier_token9] = ACTIONS(986), - [aux_sym_cmd_identifier_token10] = ACTIONS(986), - [aux_sym_cmd_identifier_token11] = ACTIONS(986), - [aux_sym_cmd_identifier_token12] = ACTIONS(986), - [aux_sym_cmd_identifier_token13] = ACTIONS(986), - [aux_sym_cmd_identifier_token14] = ACTIONS(986), - [aux_sym_cmd_identifier_token15] = ACTIONS(986), - [aux_sym_cmd_identifier_token16] = ACTIONS(986), - [aux_sym_cmd_identifier_token17] = ACTIONS(986), - [aux_sym_cmd_identifier_token18] = ACTIONS(986), - [aux_sym_cmd_identifier_token19] = ACTIONS(986), - [aux_sym_cmd_identifier_token20] = ACTIONS(986), - [aux_sym_cmd_identifier_token21] = ACTIONS(986), - [aux_sym_cmd_identifier_token22] = ACTIONS(986), - [aux_sym_cmd_identifier_token23] = ACTIONS(986), - [aux_sym_cmd_identifier_token24] = ACTIONS(986), - [aux_sym_cmd_identifier_token25] = ACTIONS(986), - [aux_sym_cmd_identifier_token26] = ACTIONS(986), - [aux_sym_cmd_identifier_token27] = ACTIONS(986), - [aux_sym_cmd_identifier_token28] = ACTIONS(986), - [aux_sym_cmd_identifier_token29] = ACTIONS(986), - [aux_sym_cmd_identifier_token30] = ACTIONS(986), - [aux_sym_cmd_identifier_token31] = ACTIONS(986), - [aux_sym_cmd_identifier_token32] = ACTIONS(986), - [aux_sym_cmd_identifier_token33] = ACTIONS(986), - [aux_sym_cmd_identifier_token34] = ACTIONS(986), - [aux_sym_cmd_identifier_token35] = ACTIONS(986), - [aux_sym_cmd_identifier_token36] = ACTIONS(986), - [anon_sym_true] = ACTIONS(988), - [anon_sym_false] = ACTIONS(988), - [anon_sym_null] = ACTIONS(988), - [aux_sym_cmd_identifier_token38] = ACTIONS(986), - [aux_sym_cmd_identifier_token39] = ACTIONS(988), - [aux_sym_cmd_identifier_token40] = ACTIONS(988), - [anon_sym_def] = ACTIONS(986), - [anon_sym_export_DASHenv] = ACTIONS(986), - [anon_sym_extern] = ACTIONS(986), - [anon_sym_module] = ACTIONS(986), - [anon_sym_use] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(988), - [anon_sym_DOLLAR] = ACTIONS(988), - [anon_sym_error] = ACTIONS(986), - [anon_sym_list] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_break] = ACTIONS(986), - [anon_sym_continue] = ACTIONS(986), - [anon_sym_for] = ACTIONS(986), - [anon_sym_in] = ACTIONS(986), - [anon_sym_loop] = ACTIONS(986), - [anon_sym_make] = ACTIONS(986), - [anon_sym_while] = ACTIONS(986), - [anon_sym_do] = ACTIONS(986), - [anon_sym_if] = ACTIONS(986), - [anon_sym_else] = ACTIONS(986), - [anon_sym_match] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(988), - [anon_sym_try] = ACTIONS(986), - [anon_sym_catch] = ACTIONS(986), - [anon_sym_return] = ACTIONS(986), - [anon_sym_source] = ACTIONS(986), - [anon_sym_source_DASHenv] = ACTIONS(986), - [anon_sym_register] = ACTIONS(986), - [anon_sym_hide] = ACTIONS(986), - [anon_sym_hide_DASHenv] = ACTIONS(986), - [anon_sym_overlay] = ACTIONS(986), - [anon_sym_new] = ACTIONS(986), - [anon_sym_as] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(988), - [anon_sym_DOT_DOT2] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(986), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), - [anon_sym_DOT_DOT_LT2] = ACTIONS(988), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(988), - [aux_sym__val_number_decimal_token1] = ACTIONS(986), - [aux_sym__val_number_decimal_token2] = ACTIONS(988), - [aux_sym__val_number_decimal_token3] = ACTIONS(988), - [aux_sym__val_number_decimal_token4] = ACTIONS(988), - [aux_sym__val_number_token1] = ACTIONS(988), - [aux_sym__val_number_token2] = ACTIONS(988), - [aux_sym__val_number_token3] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym__str_single_quotes] = ACTIONS(988), - [sym__str_back_ticks] = ACTIONS(988), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(988), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_POUND] = ACTIONS(247), - }, - [407] = { - [sym_cmd_identifier] = STATE(4982), - [sym__expression] = STATE(4033), - [sym_expr_unary] = STATE(2604), - [sym__expr_unary_minus] = STATE(2610), - [sym_expr_binary] = STATE(2604), - [sym__expr_binary_expression] = STATE(4069), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(4062), - [sym__value] = STATE(2604), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2547), - [sym_val_variable] = STATE(2175), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(1742), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__str_double_quotes] = STATE(2144), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2607), - [sym__inter_double_quotes] = STATE(2626), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5289), - [sym_comment] = STATE(407), - [aux_sym_pipe_element_repeat2] = STATE(1234), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(21), - [aux_sym_cmd_identifier_token3] = ACTIONS(21), - [aux_sym_cmd_identifier_token4] = ACTIONS(21), - [aux_sym_cmd_identifier_token5] = ACTIONS(21), - [aux_sym_cmd_identifier_token6] = ACTIONS(21), - [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(21), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(21), - [aux_sym_cmd_identifier_token11] = ACTIONS(21), - [aux_sym_cmd_identifier_token12] = ACTIONS(21), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(21), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(21), - [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(21), - [aux_sym_cmd_identifier_token19] = ACTIONS(21), - [aux_sym_cmd_identifier_token20] = ACTIONS(21), - [aux_sym_cmd_identifier_token21] = ACTIONS(21), - [aux_sym_cmd_identifier_token22] = ACTIONS(21), - [aux_sym_cmd_identifier_token23] = ACTIONS(21), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(21), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(21), - [aux_sym_cmd_identifier_token28] = ACTIONS(21), - [aux_sym_cmd_identifier_token29] = ACTIONS(21), - [aux_sym_cmd_identifier_token30] = ACTIONS(21), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(21), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(21), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(19), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_null] = ACTIONS(25), - [aux_sym_cmd_identifier_token38] = ACTIONS(27), - [aux_sym_cmd_identifier_token39] = ACTIONS(29), - [aux_sym_cmd_identifier_token40] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(73), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(93), - [anon_sym_DOT_DOT_LT] = ACTIONS(93), - [aux_sym__val_number_decimal_token1] = ACTIONS(95), - [aux_sym__val_number_decimal_token2] = ACTIONS(97), - [aux_sym__val_number_decimal_token3] = ACTIONS(99), - [aux_sym__val_number_decimal_token4] = ACTIONS(101), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(109), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(247), - }, - [408] = { - [sym_cmd_identifier] = STATE(4804), - [sym__expression] = STATE(4003), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4066), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1541), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1666), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_env_var] = STATE(7550), - [sym_command] = STATE(5120), - [sym_comment] = STATE(408), - [aux_sym_pipe_element_repeat2] = STATE(1234), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_null] = ACTIONS(375), - [aux_sym_cmd_identifier_token38] = ACTIONS(377), - [aux_sym_cmd_identifier_token39] = ACTIONS(379), - [aux_sym_cmd_identifier_token40] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - }, - [409] = { - [sym_cmd_identifier] = STATE(4804), - [sym_ctrl_if] = STATE(5190), - [sym_block] = STATE(5194), - [sym__expression] = STATE(5194), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4073), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1541), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3224), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_command] = STATE(5194), - [sym_comment] = STATE(409), - [aux_sym_cmd_identifier_token1] = ACTIONS(369), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(369), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(369), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(369), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(371), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(371), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(371), - [aux_sym_cmd_identifier_token32] = ACTIONS(371), - [aux_sym_cmd_identifier_token33] = ACTIONS(371), - [aux_sym_cmd_identifier_token34] = ACTIONS(371), - [aux_sym_cmd_identifier_token35] = ACTIONS(371), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [anon_sym_true] = ACTIONS(1986), - [anon_sym_false] = ACTIONS(1986), - [anon_sym_null] = ACTIONS(1988), - [aux_sym_cmd_identifier_token38] = ACTIONS(1990), - [aux_sym_cmd_identifier_token39] = ACTIONS(1992), - [aux_sym_cmd_identifier_token40] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_if] = ACTIONS(411), - [aux_sym_ctrl_match_token1] = ACTIONS(1994), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1996), - [aux_sym__val_number_decimal_token2] = ACTIONS(1998), - [aux_sym__val_number_decimal_token3] = ACTIONS(2000), - [aux_sym__val_number_decimal_token4] = ACTIONS(2002), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - }, - [410] = { - [sym_expr_parenthesized] = STATE(4523), - [sym__spread_parenthesized] = STATE(4877), - [sym_val_range] = STATE(4895), - [sym__val_range] = STATE(7816), - [sym__val_range_with_end] = STATE(7649), - [sym__value] = STATE(4895), - [sym_val_nothing] = STATE(4994), - [sym_val_bool] = STATE(4669), - [sym__spread_variable] = STATE(4899), - [sym_val_variable] = STATE(4441), - [sym_val_number] = STATE(4994), - [sym__val_number_decimal] = STATE(4161), - [sym__val_number] = STATE(4878), - [sym_val_duration] = STATE(4994), - [sym_val_filesize] = STATE(4994), - [sym_val_binary] = STATE(4994), - [sym_val_string] = STATE(4994), - [sym__str_double_quotes] = STATE(4660), - [sym_val_interpolated] = STATE(4994), - [sym__inter_single_quotes] = STATE(4902), - [sym__inter_double_quotes] = STATE(4928), - [sym_val_list] = STATE(4994), - [sym__spread_list] = STATE(4877), - [sym_val_record] = STATE(4994), - [sym_val_table] = STATE(4994), - [sym_val_closure] = STATE(4994), - [sym__cmd_arg] = STATE(4909), - [sym_redirection] = STATE(4914), - [sym__flag] = STATE(4915), - [sym_short_flag] = STATE(4979), - [sym_long_flag] = STATE(4979), - [sym_unquoted] = STATE(4557), - [sym__unquoted_with_expr] = STATE(4922), - [sym__unquoted_anonymous_prefix] = STATE(7231), - [sym_comment] = STATE(410), - [anon_sym_true] = ACTIONS(2004), - [anon_sym_false] = ACTIONS(2004), - [anon_sym_null] = ACTIONS(2006), - [aux_sym_cmd_identifier_token38] = ACTIONS(2008), - [aux_sym_cmd_identifier_token39] = ACTIONS(2008), - [aux_sym_cmd_identifier_token40] = ACTIONS(2008), - [sym__newline] = ACTIONS(2010), - [sym__space] = ACTIONS(2012), - [anon_sym_SEMI] = ACTIONS(2010), - [anon_sym_PIPE] = ACTIONS(2010), - [anon_sym_err_GT_PIPE] = ACTIONS(2010), - [anon_sym_out_GT_PIPE] = ACTIONS(2010), - [anon_sym_e_GT_PIPE] = ACTIONS(2010), - [anon_sym_o_GT_PIPE] = ACTIONS(2010), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2010), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2010), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2010), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2010), - [anon_sym_LBRACK] = ACTIONS(2014), - [anon_sym_LPAREN] = ACTIONS(2016), - [anon_sym_RPAREN] = ACTIONS(2010), - [anon_sym_DOLLAR] = ACTIONS(2018), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_DASH] = ACTIONS(2022), - [aux_sym_ctrl_match_token1] = ACTIONS(2024), - [anon_sym_RBRACE] = ACTIONS(2010), - [anon_sym_DOT_DOT] = ACTIONS(2026), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2028), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2030), - [anon_sym_DOT_DOT_LT] = ACTIONS(2030), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2032), - [aux_sym__val_number_decimal_token1] = ACTIONS(2034), - [aux_sym__val_number_decimal_token2] = ACTIONS(2034), - [aux_sym__val_number_decimal_token3] = ACTIONS(2036), - [aux_sym__val_number_decimal_token4] = ACTIONS(2038), - [aux_sym__val_number_token1] = ACTIONS(2040), - [aux_sym__val_number_token2] = ACTIONS(2040), - [aux_sym__val_number_token3] = ACTIONS(2040), - [anon_sym_0b] = ACTIONS(2042), - [anon_sym_0o] = ACTIONS(2044), - [anon_sym_0x] = ACTIONS(2044), - [sym_val_date] = ACTIONS(2046), - [anon_sym_DQUOTE] = ACTIONS(2048), - [sym__str_single_quotes] = ACTIONS(2050), - [sym__str_back_ticks] = ACTIONS(2050), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2052), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2054), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2056), - [anon_sym_err_GT] = ACTIONS(2058), - [anon_sym_out_GT] = ACTIONS(2058), - [anon_sym_e_GT] = ACTIONS(2058), - [anon_sym_o_GT] = ACTIONS(2058), - [anon_sym_err_PLUSout_GT] = ACTIONS(2058), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2058), - [anon_sym_o_PLUSe_GT] = ACTIONS(2058), - [anon_sym_e_PLUSo_GT] = ACTIONS(2058), - [anon_sym_err_GT_GT] = ACTIONS(2058), - [anon_sym_out_GT_GT] = ACTIONS(2058), - [anon_sym_e_GT_GT] = ACTIONS(2058), - [anon_sym_o_GT_GT] = ACTIONS(2058), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2058), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2058), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2058), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2058), - [aux_sym_unquoted_token1] = ACTIONS(2060), - [anon_sym_POUND] = ACTIONS(3), - }, - [411] = { - [sym_comment] = STATE(411), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [aux_sym_cmd_identifier_token1] = ACTIONS(990), - [aux_sym_cmd_identifier_token2] = ACTIONS(990), - [aux_sym_cmd_identifier_token3] = ACTIONS(990), - [aux_sym_cmd_identifier_token4] = ACTIONS(990), - [aux_sym_cmd_identifier_token5] = ACTIONS(990), - [aux_sym_cmd_identifier_token6] = ACTIONS(990), - [aux_sym_cmd_identifier_token7] = ACTIONS(990), - [aux_sym_cmd_identifier_token8] = ACTIONS(990), - [aux_sym_cmd_identifier_token9] = ACTIONS(990), - [aux_sym_cmd_identifier_token10] = ACTIONS(990), - [aux_sym_cmd_identifier_token11] = ACTIONS(990), - [aux_sym_cmd_identifier_token12] = ACTIONS(990), - [aux_sym_cmd_identifier_token13] = ACTIONS(990), - [aux_sym_cmd_identifier_token14] = ACTIONS(990), - [aux_sym_cmd_identifier_token15] = ACTIONS(990), - [aux_sym_cmd_identifier_token16] = ACTIONS(990), - [aux_sym_cmd_identifier_token17] = ACTIONS(990), - [aux_sym_cmd_identifier_token18] = ACTIONS(990), - [aux_sym_cmd_identifier_token19] = ACTIONS(990), - [aux_sym_cmd_identifier_token20] = ACTIONS(990), - [aux_sym_cmd_identifier_token21] = ACTIONS(990), - [aux_sym_cmd_identifier_token22] = ACTIONS(990), - [aux_sym_cmd_identifier_token23] = ACTIONS(990), - [aux_sym_cmd_identifier_token24] = ACTIONS(990), - [aux_sym_cmd_identifier_token25] = ACTIONS(990), - [aux_sym_cmd_identifier_token26] = ACTIONS(990), - [aux_sym_cmd_identifier_token27] = ACTIONS(990), - [aux_sym_cmd_identifier_token28] = ACTIONS(990), - [aux_sym_cmd_identifier_token29] = ACTIONS(990), - [aux_sym_cmd_identifier_token30] = ACTIONS(990), - [aux_sym_cmd_identifier_token31] = ACTIONS(990), - [aux_sym_cmd_identifier_token32] = ACTIONS(990), - [aux_sym_cmd_identifier_token33] = ACTIONS(990), - [aux_sym_cmd_identifier_token34] = ACTIONS(990), - [aux_sym_cmd_identifier_token35] = ACTIONS(990), - [aux_sym_cmd_identifier_token36] = ACTIONS(990), - [anon_sym_true] = ACTIONS(992), - [anon_sym_false] = ACTIONS(992), - [anon_sym_null] = ACTIONS(992), - [aux_sym_cmd_identifier_token38] = ACTIONS(990), - [aux_sym_cmd_identifier_token39] = ACTIONS(992), - [aux_sym_cmd_identifier_token40] = ACTIONS(992), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(992), - [anon_sym_error] = ACTIONS(990), - [anon_sym_list] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_in] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_make] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_try] = ACTIONS(990), - [anon_sym_catch] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_new] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(992), - [anon_sym_DOT_DOT2] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), - [anon_sym_DOT_DOT_LT2] = ACTIONS(992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(992), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(992), - [aux_sym__val_number_decimal_token3] = ACTIONS(992), - [aux_sym__val_number_decimal_token4] = ACTIONS(992), - [aux_sym__val_number_token1] = ACTIONS(992), - [aux_sym__val_number_token2] = ACTIONS(992), - [aux_sym__val_number_token3] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(992), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_POUND] = ACTIONS(247), - }, [412] = { + [sym_path] = STATE(482), [sym_comment] = STATE(412), - [anon_sym_export] = ACTIONS(1648), - [anon_sym_alias] = ACTIONS(1648), - [anon_sym_let] = ACTIONS(1648), - [anon_sym_let_DASHenv] = ACTIONS(1648), - [anon_sym_mut] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1648), - [aux_sym_cmd_identifier_token1] = ACTIONS(1648), - [aux_sym_cmd_identifier_token2] = ACTIONS(1648), - [aux_sym_cmd_identifier_token3] = ACTIONS(1648), - [aux_sym_cmd_identifier_token4] = ACTIONS(1648), - [aux_sym_cmd_identifier_token5] = ACTIONS(1648), - [aux_sym_cmd_identifier_token6] = ACTIONS(1648), - [aux_sym_cmd_identifier_token7] = ACTIONS(1648), - [aux_sym_cmd_identifier_token8] = ACTIONS(1648), - [aux_sym_cmd_identifier_token9] = ACTIONS(1648), - [aux_sym_cmd_identifier_token10] = ACTIONS(1648), - [aux_sym_cmd_identifier_token11] = ACTIONS(1648), - [aux_sym_cmd_identifier_token12] = ACTIONS(1648), - [aux_sym_cmd_identifier_token13] = ACTIONS(1648), - [aux_sym_cmd_identifier_token14] = ACTIONS(1648), - [aux_sym_cmd_identifier_token15] = ACTIONS(1648), - [aux_sym_cmd_identifier_token16] = ACTIONS(1648), - [aux_sym_cmd_identifier_token17] = ACTIONS(1648), - [aux_sym_cmd_identifier_token18] = ACTIONS(1648), - [aux_sym_cmd_identifier_token19] = ACTIONS(1648), - [aux_sym_cmd_identifier_token20] = ACTIONS(1648), - [aux_sym_cmd_identifier_token21] = ACTIONS(1648), - [aux_sym_cmd_identifier_token22] = ACTIONS(1648), - [aux_sym_cmd_identifier_token23] = ACTIONS(1648), - [aux_sym_cmd_identifier_token24] = ACTIONS(1648), - [aux_sym_cmd_identifier_token25] = ACTIONS(1648), - [aux_sym_cmd_identifier_token26] = ACTIONS(1648), - [aux_sym_cmd_identifier_token27] = ACTIONS(1648), - [aux_sym_cmd_identifier_token28] = ACTIONS(1648), - [aux_sym_cmd_identifier_token29] = ACTIONS(1648), - [aux_sym_cmd_identifier_token30] = ACTIONS(1648), - [aux_sym_cmd_identifier_token31] = ACTIONS(1648), - [aux_sym_cmd_identifier_token32] = ACTIONS(1648), - [aux_sym_cmd_identifier_token33] = ACTIONS(1648), - [aux_sym_cmd_identifier_token34] = ACTIONS(1648), - [aux_sym_cmd_identifier_token35] = ACTIONS(1648), - [aux_sym_cmd_identifier_token36] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1648), - [anon_sym_false] = ACTIONS(1648), - [anon_sym_null] = ACTIONS(1648), - [aux_sym_cmd_identifier_token38] = ACTIONS(1648), - [aux_sym_cmd_identifier_token39] = ACTIONS(1648), - [aux_sym_cmd_identifier_token40] = ACTIONS(1648), - [anon_sym_def] = ACTIONS(1648), - [anon_sym_export_DASHenv] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1648), - [anon_sym_module] = ACTIONS(1648), - [anon_sym_use] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_error] = ACTIONS(1648), - [anon_sym_list] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_in] = ACTIONS(1648), - [anon_sym_loop] = ACTIONS(1648), - [anon_sym_make] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_do] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1648), - [anon_sym_match] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1648), - [anon_sym_try] = ACTIONS(1648), - [anon_sym_catch] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_source] = ACTIONS(1648), - [anon_sym_source_DASHenv] = ACTIONS(1648), - [anon_sym_register] = ACTIONS(1648), - [anon_sym_hide] = ACTIONS(1648), - [anon_sym_hide_DASHenv] = ACTIONS(1648), - [anon_sym_overlay] = ACTIONS(1648), - [anon_sym_new] = ACTIONS(1648), - [anon_sym_as] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1648), - [anon_sym_DOT_DOT2] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1648), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1648), - [aux_sym__val_number_decimal_token3] = ACTIONS(1648), - [aux_sym__val_number_decimal_token4] = ACTIONS(1648), - [aux_sym__val_number_token1] = ACTIONS(1648), - [aux_sym__val_number_token2] = ACTIONS(1648), - [aux_sym__val_number_token3] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1648), - [sym__str_single_quotes] = ACTIONS(1648), - [sym__str_back_ticks] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1648), - [sym__entry_separator] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(3), - }, - [413] = { - [sym_comment] = STATE(413), - [anon_sym_export] = ACTIONS(1721), - [anon_sym_alias] = ACTIONS(1721), - [anon_sym_let] = ACTIONS(1721), - [anon_sym_let_DASHenv] = ACTIONS(1721), - [anon_sym_mut] = ACTIONS(1721), - [anon_sym_const] = ACTIONS(1721), - [aux_sym_cmd_identifier_token1] = ACTIONS(1721), - [aux_sym_cmd_identifier_token2] = ACTIONS(1721), - [aux_sym_cmd_identifier_token3] = ACTIONS(1721), - [aux_sym_cmd_identifier_token4] = ACTIONS(1721), - [aux_sym_cmd_identifier_token5] = ACTIONS(1721), - [aux_sym_cmd_identifier_token6] = ACTIONS(1721), - [aux_sym_cmd_identifier_token7] = ACTIONS(1721), - [aux_sym_cmd_identifier_token8] = ACTIONS(1721), - [aux_sym_cmd_identifier_token9] = ACTIONS(1721), - [aux_sym_cmd_identifier_token10] = ACTIONS(1721), - [aux_sym_cmd_identifier_token11] = ACTIONS(1721), - [aux_sym_cmd_identifier_token12] = ACTIONS(1721), - [aux_sym_cmd_identifier_token13] = ACTIONS(1721), - [aux_sym_cmd_identifier_token14] = ACTIONS(1721), - [aux_sym_cmd_identifier_token15] = ACTIONS(1721), - [aux_sym_cmd_identifier_token16] = ACTIONS(1721), - [aux_sym_cmd_identifier_token17] = ACTIONS(1721), - [aux_sym_cmd_identifier_token18] = ACTIONS(1721), - [aux_sym_cmd_identifier_token19] = ACTIONS(1721), - [aux_sym_cmd_identifier_token20] = ACTIONS(1721), - [aux_sym_cmd_identifier_token21] = ACTIONS(1721), - [aux_sym_cmd_identifier_token22] = ACTIONS(1721), - [aux_sym_cmd_identifier_token23] = ACTIONS(1721), - [aux_sym_cmd_identifier_token24] = ACTIONS(1721), - [aux_sym_cmd_identifier_token25] = ACTIONS(1721), - [aux_sym_cmd_identifier_token26] = ACTIONS(1721), - [aux_sym_cmd_identifier_token27] = ACTIONS(1721), - [aux_sym_cmd_identifier_token28] = ACTIONS(1721), - [aux_sym_cmd_identifier_token29] = ACTIONS(1721), - [aux_sym_cmd_identifier_token30] = ACTIONS(1721), - [aux_sym_cmd_identifier_token31] = ACTIONS(1721), - [aux_sym_cmd_identifier_token32] = ACTIONS(1721), - [aux_sym_cmd_identifier_token33] = ACTIONS(1721), - [aux_sym_cmd_identifier_token34] = ACTIONS(1721), - [aux_sym_cmd_identifier_token35] = ACTIONS(1721), - [aux_sym_cmd_identifier_token36] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_null] = ACTIONS(1721), - [aux_sym_cmd_identifier_token38] = ACTIONS(1721), - [aux_sym_cmd_identifier_token39] = ACTIONS(1721), - [aux_sym_cmd_identifier_token40] = ACTIONS(1721), - [anon_sym_def] = ACTIONS(1721), - [anon_sym_export_DASHenv] = ACTIONS(1721), - [anon_sym_extern] = ACTIONS(1721), - [anon_sym_module] = ACTIONS(1721), - [anon_sym_use] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1721), - [anon_sym_error] = ACTIONS(1721), - [anon_sym_list] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_break] = ACTIONS(1721), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_for] = ACTIONS(1721), - [anon_sym_in] = ACTIONS(1721), - [anon_sym_loop] = ACTIONS(1721), - [anon_sym_make] = ACTIONS(1721), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_do] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_else] = ACTIONS(1721), - [anon_sym_match] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_try] = ACTIONS(1721), - [anon_sym_catch] = ACTIONS(1721), - [anon_sym_return] = ACTIONS(1721), - [anon_sym_source] = ACTIONS(1721), - [anon_sym_source_DASHenv] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1721), - [anon_sym_hide] = ACTIONS(1721), - [anon_sym_hide_DASHenv] = ACTIONS(1721), - [anon_sym_overlay] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1721), - [anon_sym_as] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), - [anon_sym_DOT_DOT2] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1721), - [aux_sym__val_number_decimal_token3] = ACTIONS(1721), - [aux_sym__val_number_decimal_token4] = ACTIONS(1721), - [aux_sym__val_number_token1] = ACTIONS(1721), - [aux_sym__val_number_token2] = ACTIONS(1721), - [aux_sym__val_number_token3] = ACTIONS(1721), - [anon_sym_DQUOTE] = ACTIONS(1721), - [sym__str_single_quotes] = ACTIONS(1721), - [sym__str_back_ticks] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1721), - [sym__entry_separator] = ACTIONS(1723), - [anon_sym_PLUS] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(3), - }, - [414] = { - [sym_cell_path] = STATE(622), - [sym_path] = STATE(532), - [sym_comment] = STATE(414), - [aux_sym_cell_path_repeat1] = STATE(424), - [anon_sym_export] = ACTIONS(1847), - [anon_sym_alias] = ACTIONS(1847), - [anon_sym_let] = ACTIONS(1847), - [anon_sym_let_DASHenv] = ACTIONS(1847), - [anon_sym_mut] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1847), - [aux_sym_cmd_identifier_token1] = ACTIONS(1847), - [aux_sym_cmd_identifier_token2] = ACTIONS(1847), - [aux_sym_cmd_identifier_token3] = ACTIONS(1847), - [aux_sym_cmd_identifier_token4] = ACTIONS(1847), - [aux_sym_cmd_identifier_token5] = ACTIONS(1847), - [aux_sym_cmd_identifier_token6] = ACTIONS(1847), - [aux_sym_cmd_identifier_token7] = ACTIONS(1847), - [aux_sym_cmd_identifier_token8] = ACTIONS(1847), - [aux_sym_cmd_identifier_token9] = ACTIONS(1847), - [aux_sym_cmd_identifier_token10] = ACTIONS(1847), - [aux_sym_cmd_identifier_token11] = ACTIONS(1847), - [aux_sym_cmd_identifier_token12] = ACTIONS(1847), - [aux_sym_cmd_identifier_token13] = ACTIONS(1847), - [aux_sym_cmd_identifier_token14] = ACTIONS(1847), - [aux_sym_cmd_identifier_token15] = ACTIONS(1847), - [aux_sym_cmd_identifier_token16] = ACTIONS(1847), - [aux_sym_cmd_identifier_token17] = ACTIONS(1847), - [aux_sym_cmd_identifier_token18] = ACTIONS(1847), - [aux_sym_cmd_identifier_token19] = ACTIONS(1847), - [aux_sym_cmd_identifier_token20] = ACTIONS(1847), - [aux_sym_cmd_identifier_token21] = ACTIONS(1847), - [aux_sym_cmd_identifier_token22] = ACTIONS(1847), - [aux_sym_cmd_identifier_token23] = ACTIONS(1847), - [aux_sym_cmd_identifier_token24] = ACTIONS(1847), - [aux_sym_cmd_identifier_token25] = ACTIONS(1847), - [aux_sym_cmd_identifier_token26] = ACTIONS(1847), - [aux_sym_cmd_identifier_token27] = ACTIONS(1847), - [aux_sym_cmd_identifier_token28] = ACTIONS(1847), - [aux_sym_cmd_identifier_token29] = ACTIONS(1847), - [aux_sym_cmd_identifier_token30] = ACTIONS(1847), - [aux_sym_cmd_identifier_token31] = ACTIONS(1847), - [aux_sym_cmd_identifier_token32] = ACTIONS(1847), - [aux_sym_cmd_identifier_token33] = ACTIONS(1847), - [aux_sym_cmd_identifier_token34] = ACTIONS(1847), - [aux_sym_cmd_identifier_token35] = ACTIONS(1847), - [aux_sym_cmd_identifier_token36] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1849), - [anon_sym_false] = ACTIONS(1849), - [anon_sym_null] = ACTIONS(1849), - [aux_sym_cmd_identifier_token38] = ACTIONS(1847), - [aux_sym_cmd_identifier_token39] = ACTIONS(1849), - [aux_sym_cmd_identifier_token40] = ACTIONS(1849), - [anon_sym_def] = ACTIONS(1847), - [anon_sym_export_DASHenv] = ACTIONS(1847), - [anon_sym_extern] = ACTIONS(1847), - [anon_sym_module] = ACTIONS(1847), - [anon_sym_use] = ACTIONS(1847), - [anon_sym_LPAREN] = ACTIONS(1849), - [anon_sym_DOLLAR] = ACTIONS(1849), - [anon_sym_error] = ACTIONS(1847), - [anon_sym_list] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_break] = ACTIONS(1847), - [anon_sym_continue] = ACTIONS(1847), - [anon_sym_for] = ACTIONS(1847), - [anon_sym_in] = ACTIONS(1847), - [anon_sym_loop] = ACTIONS(1847), - [anon_sym_make] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1847), - [anon_sym_do] = ACTIONS(1847), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_else] = ACTIONS(1847), - [anon_sym_match] = ACTIONS(1847), - [anon_sym_RBRACE] = ACTIONS(1849), - [anon_sym_try] = ACTIONS(1847), - [anon_sym_catch] = ACTIONS(1847), - [anon_sym_return] = ACTIONS(1847), - [anon_sym_source] = ACTIONS(1847), - [anon_sym_source_DASHenv] = ACTIONS(1847), - [anon_sym_register] = ACTIONS(1847), - [anon_sym_hide] = ACTIONS(1847), - [anon_sym_hide_DASHenv] = ACTIONS(1847), - [anon_sym_overlay] = ACTIONS(1847), - [anon_sym_new] = ACTIONS(1847), - [anon_sym_as] = ACTIONS(1847), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1849), - [anon_sym_DOT] = ACTIONS(1903), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1849), - [aux_sym__val_number_decimal_token1] = ACTIONS(1847), - [aux_sym__val_number_decimal_token2] = ACTIONS(1849), - [aux_sym__val_number_decimal_token3] = ACTIONS(1849), - [aux_sym__val_number_decimal_token4] = ACTIONS(1849), - [aux_sym__val_number_token1] = ACTIONS(1849), - [aux_sym__val_number_token2] = ACTIONS(1849), - [aux_sym__val_number_token3] = ACTIONS(1849), - [anon_sym_DQUOTE] = ACTIONS(1849), - [sym__str_single_quotes] = ACTIONS(1849), - [sym__str_back_ticks] = ACTIONS(1849), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1849), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_POUND] = ACTIONS(247), - }, - [415] = { - [sym_comment] = STATE(415), - [anon_sym_export] = ACTIONS(1589), - [anon_sym_alias] = ACTIONS(1589), - [anon_sym_let] = ACTIONS(1589), - [anon_sym_let_DASHenv] = ACTIONS(1589), - [anon_sym_mut] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [aux_sym_cmd_identifier_token1] = ACTIONS(1589), - [aux_sym_cmd_identifier_token2] = ACTIONS(1589), - [aux_sym_cmd_identifier_token3] = ACTIONS(1589), - [aux_sym_cmd_identifier_token4] = ACTIONS(1589), - [aux_sym_cmd_identifier_token5] = ACTIONS(1589), - [aux_sym_cmd_identifier_token6] = ACTIONS(1589), - [aux_sym_cmd_identifier_token7] = ACTIONS(1589), - [aux_sym_cmd_identifier_token8] = ACTIONS(1589), - [aux_sym_cmd_identifier_token9] = ACTIONS(1589), - [aux_sym_cmd_identifier_token10] = ACTIONS(1589), - [aux_sym_cmd_identifier_token11] = ACTIONS(1589), - [aux_sym_cmd_identifier_token12] = ACTIONS(1589), - [aux_sym_cmd_identifier_token13] = ACTIONS(1589), - [aux_sym_cmd_identifier_token14] = ACTIONS(1589), - [aux_sym_cmd_identifier_token15] = ACTIONS(1589), - [aux_sym_cmd_identifier_token16] = ACTIONS(1589), - [aux_sym_cmd_identifier_token17] = ACTIONS(1589), - [aux_sym_cmd_identifier_token18] = ACTIONS(1589), - [aux_sym_cmd_identifier_token19] = ACTIONS(1589), - [aux_sym_cmd_identifier_token20] = ACTIONS(1589), - [aux_sym_cmd_identifier_token21] = ACTIONS(1589), - [aux_sym_cmd_identifier_token22] = ACTIONS(1589), - [aux_sym_cmd_identifier_token23] = ACTIONS(1589), - [aux_sym_cmd_identifier_token24] = ACTIONS(1589), - [aux_sym_cmd_identifier_token25] = ACTIONS(1589), - [aux_sym_cmd_identifier_token26] = ACTIONS(1589), - [aux_sym_cmd_identifier_token27] = ACTIONS(1589), - [aux_sym_cmd_identifier_token28] = ACTIONS(1589), - [aux_sym_cmd_identifier_token29] = ACTIONS(1589), - [aux_sym_cmd_identifier_token30] = ACTIONS(1589), - [aux_sym_cmd_identifier_token31] = ACTIONS(1589), - [aux_sym_cmd_identifier_token32] = ACTIONS(1589), - [aux_sym_cmd_identifier_token33] = ACTIONS(1589), - [aux_sym_cmd_identifier_token34] = ACTIONS(1589), - [aux_sym_cmd_identifier_token35] = ACTIONS(1589), - [aux_sym_cmd_identifier_token36] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [anon_sym_null] = ACTIONS(1591), - [aux_sym_cmd_identifier_token38] = ACTIONS(1589), - [aux_sym_cmd_identifier_token39] = ACTIONS(1591), - [aux_sym_cmd_identifier_token40] = ACTIONS(1591), - [anon_sym_def] = ACTIONS(1589), - [anon_sym_export_DASHenv] = ACTIONS(1589), - [anon_sym_extern] = ACTIONS(1589), - [anon_sym_module] = ACTIONS(1589), - [anon_sym_use] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_DOLLAR] = ACTIONS(1591), - [anon_sym_error] = ACTIONS(1589), - [anon_sym_list] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_loop] = ACTIONS(1589), - [anon_sym_make] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_else] = ACTIONS(1589), - [anon_sym_match] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_try] = ACTIONS(1589), - [anon_sym_catch] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_source] = ACTIONS(1589), - [anon_sym_source_DASHenv] = ACTIONS(1589), - [anon_sym_register] = ACTIONS(1589), - [anon_sym_hide] = ACTIONS(1589), - [anon_sym_hide_DASHenv] = ACTIONS(1589), - [anon_sym_overlay] = ACTIONS(1589), - [anon_sym_new] = ACTIONS(1589), - [anon_sym_as] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1591), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1591), - [anon_sym_DOT] = ACTIONS(2062), - [aux_sym__immediate_decimal_token2] = ACTIONS(2064), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1591), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token3] = ACTIONS(1591), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(1591), - [aux_sym__val_number_token2] = ACTIONS(1591), - [aux_sym__val_number_token3] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym__str_single_quotes] = ACTIONS(1591), - [sym__str_back_ticks] = ACTIONS(1591), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1591), - [anon_sym_PLUS] = ACTIONS(1589), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(247), - }, - [416] = { - [sym_cell_path] = STATE(648), - [sym_path] = STATE(532), - [sym_comment] = STATE(416), - [aux_sym_cell_path_repeat1] = STATE(424), - [anon_sym_export] = ACTIONS(1843), - [anon_sym_alias] = ACTIONS(1843), - [anon_sym_let] = ACTIONS(1843), - [anon_sym_let_DASHenv] = ACTIONS(1843), - [anon_sym_mut] = ACTIONS(1843), - [anon_sym_const] = ACTIONS(1843), - [aux_sym_cmd_identifier_token1] = ACTIONS(1843), - [aux_sym_cmd_identifier_token2] = ACTIONS(1843), - [aux_sym_cmd_identifier_token3] = ACTIONS(1843), - [aux_sym_cmd_identifier_token4] = ACTIONS(1843), - [aux_sym_cmd_identifier_token5] = ACTIONS(1843), - [aux_sym_cmd_identifier_token6] = ACTIONS(1843), - [aux_sym_cmd_identifier_token7] = ACTIONS(1843), - [aux_sym_cmd_identifier_token8] = ACTIONS(1843), - [aux_sym_cmd_identifier_token9] = ACTIONS(1843), - [aux_sym_cmd_identifier_token10] = ACTIONS(1843), - [aux_sym_cmd_identifier_token11] = ACTIONS(1843), - [aux_sym_cmd_identifier_token12] = ACTIONS(1843), - [aux_sym_cmd_identifier_token13] = ACTIONS(1843), - [aux_sym_cmd_identifier_token14] = ACTIONS(1843), - [aux_sym_cmd_identifier_token15] = ACTIONS(1843), - [aux_sym_cmd_identifier_token16] = ACTIONS(1843), - [aux_sym_cmd_identifier_token17] = ACTIONS(1843), - [aux_sym_cmd_identifier_token18] = ACTIONS(1843), - [aux_sym_cmd_identifier_token19] = ACTIONS(1843), - [aux_sym_cmd_identifier_token20] = ACTIONS(1843), - [aux_sym_cmd_identifier_token21] = ACTIONS(1843), - [aux_sym_cmd_identifier_token22] = ACTIONS(1843), - [aux_sym_cmd_identifier_token23] = ACTIONS(1843), - [aux_sym_cmd_identifier_token24] = ACTIONS(1843), - [aux_sym_cmd_identifier_token25] = ACTIONS(1843), - [aux_sym_cmd_identifier_token26] = ACTIONS(1843), - [aux_sym_cmd_identifier_token27] = ACTIONS(1843), - [aux_sym_cmd_identifier_token28] = ACTIONS(1843), - [aux_sym_cmd_identifier_token29] = ACTIONS(1843), - [aux_sym_cmd_identifier_token30] = ACTIONS(1843), - [aux_sym_cmd_identifier_token31] = ACTIONS(1843), - [aux_sym_cmd_identifier_token32] = ACTIONS(1843), - [aux_sym_cmd_identifier_token33] = ACTIONS(1843), - [aux_sym_cmd_identifier_token34] = ACTIONS(1843), - [aux_sym_cmd_identifier_token35] = ACTIONS(1843), - [aux_sym_cmd_identifier_token36] = ACTIONS(1843), - [anon_sym_true] = ACTIONS(1845), - [anon_sym_false] = ACTIONS(1845), - [anon_sym_null] = ACTIONS(1845), - [aux_sym_cmd_identifier_token38] = ACTIONS(1843), - [aux_sym_cmd_identifier_token39] = ACTIONS(1845), - [aux_sym_cmd_identifier_token40] = ACTIONS(1845), - [anon_sym_def] = ACTIONS(1843), - [anon_sym_export_DASHenv] = ACTIONS(1843), - [anon_sym_extern] = ACTIONS(1843), - [anon_sym_module] = ACTIONS(1843), - [anon_sym_use] = ACTIONS(1843), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_DOLLAR] = ACTIONS(1845), - [anon_sym_error] = ACTIONS(1843), - [anon_sym_list] = ACTIONS(1843), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_break] = ACTIONS(1843), - [anon_sym_continue] = ACTIONS(1843), - [anon_sym_for] = ACTIONS(1843), - [anon_sym_in] = ACTIONS(1843), - [anon_sym_loop] = ACTIONS(1843), - [anon_sym_make] = ACTIONS(1843), - [anon_sym_while] = ACTIONS(1843), - [anon_sym_do] = ACTIONS(1843), - [anon_sym_if] = ACTIONS(1843), - [anon_sym_else] = ACTIONS(1843), - [anon_sym_match] = ACTIONS(1843), - [anon_sym_RBRACE] = ACTIONS(1845), - [anon_sym_try] = ACTIONS(1843), - [anon_sym_catch] = ACTIONS(1843), - [anon_sym_return] = ACTIONS(1843), - [anon_sym_source] = ACTIONS(1843), - [anon_sym_source_DASHenv] = ACTIONS(1843), - [anon_sym_register] = ACTIONS(1843), - [anon_sym_hide] = ACTIONS(1843), - [anon_sym_hide_DASHenv] = ACTIONS(1843), - [anon_sym_overlay] = ACTIONS(1843), - [anon_sym_new] = ACTIONS(1843), - [anon_sym_as] = ACTIONS(1843), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1845), - [anon_sym_DOT] = ACTIONS(1903), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1845), - [aux_sym__val_number_decimal_token1] = ACTIONS(1843), - [aux_sym__val_number_decimal_token2] = ACTIONS(1845), - [aux_sym__val_number_decimal_token3] = ACTIONS(1845), - [aux_sym__val_number_decimal_token4] = ACTIONS(1845), - [aux_sym__val_number_token1] = ACTIONS(1845), - [aux_sym__val_number_token2] = ACTIONS(1845), - [aux_sym__val_number_token3] = ACTIONS(1845), - [anon_sym_DQUOTE] = ACTIONS(1845), - [sym__str_single_quotes] = ACTIONS(1845), - [sym__str_back_ticks] = ACTIONS(1845), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1845), - [anon_sym_PLUS] = ACTIONS(1843), - [anon_sym_POUND] = ACTIONS(247), - }, - [417] = { - [sym_comment] = STATE(417), - [anon_sym_export] = ACTIONS(2066), - [anon_sym_alias] = ACTIONS(2066), - [anon_sym_let] = ACTIONS(2066), - [anon_sym_let_DASHenv] = ACTIONS(2066), - [anon_sym_mut] = ACTIONS(2066), - [anon_sym_const] = ACTIONS(2066), - [aux_sym_cmd_identifier_token1] = ACTIONS(2066), - [aux_sym_cmd_identifier_token2] = ACTIONS(2066), - [aux_sym_cmd_identifier_token3] = ACTIONS(2066), - [aux_sym_cmd_identifier_token4] = ACTIONS(2066), - [aux_sym_cmd_identifier_token5] = ACTIONS(2066), - [aux_sym_cmd_identifier_token6] = ACTIONS(2066), - [aux_sym_cmd_identifier_token7] = ACTIONS(2066), - [aux_sym_cmd_identifier_token8] = ACTIONS(2066), - [aux_sym_cmd_identifier_token9] = ACTIONS(2066), - [aux_sym_cmd_identifier_token10] = ACTIONS(2066), - [aux_sym_cmd_identifier_token11] = ACTIONS(2066), - [aux_sym_cmd_identifier_token12] = ACTIONS(2066), - [aux_sym_cmd_identifier_token13] = ACTIONS(2066), - [aux_sym_cmd_identifier_token14] = ACTIONS(2066), - [aux_sym_cmd_identifier_token15] = ACTIONS(2066), - [aux_sym_cmd_identifier_token16] = ACTIONS(2066), - [aux_sym_cmd_identifier_token17] = ACTIONS(2066), - [aux_sym_cmd_identifier_token18] = ACTIONS(2066), - [aux_sym_cmd_identifier_token19] = ACTIONS(2066), - [aux_sym_cmd_identifier_token20] = ACTIONS(2066), - [aux_sym_cmd_identifier_token21] = ACTIONS(2066), - [aux_sym_cmd_identifier_token22] = ACTIONS(2066), - [aux_sym_cmd_identifier_token23] = ACTIONS(2066), - [aux_sym_cmd_identifier_token24] = ACTIONS(2066), - [aux_sym_cmd_identifier_token25] = ACTIONS(2066), - [aux_sym_cmd_identifier_token26] = ACTIONS(2066), - [aux_sym_cmd_identifier_token27] = ACTIONS(2066), - [aux_sym_cmd_identifier_token28] = ACTIONS(2066), - [aux_sym_cmd_identifier_token29] = ACTIONS(2066), - [aux_sym_cmd_identifier_token30] = ACTIONS(2066), - [aux_sym_cmd_identifier_token31] = ACTIONS(2066), - [aux_sym_cmd_identifier_token32] = ACTIONS(2066), - [aux_sym_cmd_identifier_token33] = ACTIONS(2066), - [aux_sym_cmd_identifier_token34] = ACTIONS(2066), - [aux_sym_cmd_identifier_token35] = ACTIONS(2066), - [aux_sym_cmd_identifier_token36] = ACTIONS(2066), - [anon_sym_true] = ACTIONS(2066), - [anon_sym_false] = ACTIONS(2066), - [anon_sym_null] = ACTIONS(2066), - [aux_sym_cmd_identifier_token38] = ACTIONS(2066), - [aux_sym_cmd_identifier_token39] = ACTIONS(2066), - [aux_sym_cmd_identifier_token40] = ACTIONS(2066), - [anon_sym_def] = ACTIONS(2066), - [anon_sym_export_DASHenv] = ACTIONS(2066), - [anon_sym_extern] = ACTIONS(2066), - [anon_sym_module] = ACTIONS(2066), - [anon_sym_use] = ACTIONS(2066), - [anon_sym_LPAREN] = ACTIONS(2066), - [anon_sym_DOLLAR] = ACTIONS(2066), - [anon_sym_error] = ACTIONS(2066), - [anon_sym_list] = ACTIONS(2066), - [anon_sym_DASH] = ACTIONS(2066), - [anon_sym_break] = ACTIONS(2066), - [anon_sym_continue] = ACTIONS(2066), - [anon_sym_for] = ACTIONS(2066), - [anon_sym_in] = ACTIONS(2066), - [anon_sym_loop] = ACTIONS(2066), - [anon_sym_make] = ACTIONS(2066), - [anon_sym_while] = ACTIONS(2066), - [anon_sym_do] = ACTIONS(2066), - [anon_sym_if] = ACTIONS(2066), - [anon_sym_else] = ACTIONS(2066), - [anon_sym_match] = ACTIONS(2066), - [anon_sym_RBRACE] = ACTIONS(2066), - [anon_sym_try] = ACTIONS(2066), - [anon_sym_catch] = ACTIONS(2066), - [anon_sym_return] = ACTIONS(2066), - [anon_sym_source] = ACTIONS(2066), - [anon_sym_source_DASHenv] = ACTIONS(2066), - [anon_sym_register] = ACTIONS(2066), - [anon_sym_hide] = ACTIONS(2066), - [anon_sym_hide_DASHenv] = ACTIONS(2066), - [anon_sym_overlay] = ACTIONS(2066), - [anon_sym_new] = ACTIONS(2066), - [anon_sym_as] = ACTIONS(2066), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2066), - [anon_sym_DOT_DOT2] = ACTIONS(2068), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2070), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2070), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2066), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2066), - [aux_sym__val_number_decimal_token3] = ACTIONS(2066), - [aux_sym__val_number_decimal_token4] = ACTIONS(2066), - [aux_sym__val_number_token1] = ACTIONS(2066), - [aux_sym__val_number_token2] = ACTIONS(2066), - [aux_sym__val_number_token3] = ACTIONS(2066), - [anon_sym_DQUOTE] = ACTIONS(2066), - [sym__str_single_quotes] = ACTIONS(2066), - [sym__str_back_ticks] = ACTIONS(2066), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2066), - [sym__entry_separator] = ACTIONS(2072), - [anon_sym_PLUS] = ACTIONS(2066), - [anon_sym_POUND] = ACTIONS(3), - }, - [418] = { - [sym_comment] = STATE(418), - [anon_sym_export] = ACTIONS(962), - [anon_sym_alias] = ACTIONS(962), - [anon_sym_let] = ACTIONS(962), - [anon_sym_let_DASHenv] = ACTIONS(962), - [anon_sym_mut] = ACTIONS(962), - [anon_sym_const] = ACTIONS(962), - [aux_sym_cmd_identifier_token1] = ACTIONS(962), - [aux_sym_cmd_identifier_token2] = ACTIONS(962), - [aux_sym_cmd_identifier_token3] = ACTIONS(962), - [aux_sym_cmd_identifier_token4] = ACTIONS(962), - [aux_sym_cmd_identifier_token5] = ACTIONS(962), - [aux_sym_cmd_identifier_token6] = ACTIONS(962), - [aux_sym_cmd_identifier_token7] = ACTIONS(962), - [aux_sym_cmd_identifier_token8] = ACTIONS(962), - [aux_sym_cmd_identifier_token9] = ACTIONS(962), - [aux_sym_cmd_identifier_token10] = ACTIONS(962), - [aux_sym_cmd_identifier_token11] = ACTIONS(962), - [aux_sym_cmd_identifier_token12] = ACTIONS(962), - [aux_sym_cmd_identifier_token13] = ACTIONS(962), - [aux_sym_cmd_identifier_token14] = ACTIONS(962), - [aux_sym_cmd_identifier_token15] = ACTIONS(962), - [aux_sym_cmd_identifier_token16] = ACTIONS(962), - [aux_sym_cmd_identifier_token17] = ACTIONS(962), - [aux_sym_cmd_identifier_token18] = ACTIONS(962), - [aux_sym_cmd_identifier_token19] = ACTIONS(962), - [aux_sym_cmd_identifier_token20] = ACTIONS(962), - [aux_sym_cmd_identifier_token21] = ACTIONS(962), - [aux_sym_cmd_identifier_token22] = ACTIONS(962), - [aux_sym_cmd_identifier_token23] = ACTIONS(962), - [aux_sym_cmd_identifier_token24] = ACTIONS(962), - [aux_sym_cmd_identifier_token25] = ACTIONS(962), - [aux_sym_cmd_identifier_token26] = ACTIONS(962), - [aux_sym_cmd_identifier_token27] = ACTIONS(962), - [aux_sym_cmd_identifier_token28] = ACTIONS(962), - [aux_sym_cmd_identifier_token29] = ACTIONS(962), - [aux_sym_cmd_identifier_token30] = ACTIONS(962), - [aux_sym_cmd_identifier_token31] = ACTIONS(962), - [aux_sym_cmd_identifier_token32] = ACTIONS(962), - [aux_sym_cmd_identifier_token33] = ACTIONS(962), - [aux_sym_cmd_identifier_token34] = ACTIONS(962), - [aux_sym_cmd_identifier_token35] = ACTIONS(962), - [aux_sym_cmd_identifier_token36] = ACTIONS(962), - [anon_sym_true] = ACTIONS(962), - [anon_sym_false] = ACTIONS(962), - [anon_sym_null] = ACTIONS(962), - [aux_sym_cmd_identifier_token38] = ACTIONS(962), - [aux_sym_cmd_identifier_token39] = ACTIONS(962), - [aux_sym_cmd_identifier_token40] = ACTIONS(962), - [anon_sym_def] = ACTIONS(962), - [anon_sym_export_DASHenv] = ACTIONS(962), - [anon_sym_extern] = ACTIONS(962), - [anon_sym_module] = ACTIONS(962), - [anon_sym_use] = ACTIONS(962), - [anon_sym_LPAREN] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(962), - [anon_sym_error] = ACTIONS(962), - [anon_sym_list] = ACTIONS(962), - [anon_sym_DASH] = ACTIONS(962), - [anon_sym_break] = ACTIONS(962), - [anon_sym_continue] = ACTIONS(962), - [anon_sym_for] = ACTIONS(962), - [anon_sym_in] = ACTIONS(962), - [anon_sym_loop] = ACTIONS(962), - [anon_sym_make] = ACTIONS(962), - [anon_sym_while] = ACTIONS(962), - [anon_sym_do] = ACTIONS(962), - [anon_sym_if] = ACTIONS(962), - [anon_sym_else] = ACTIONS(962), - [anon_sym_match] = ACTIONS(962), - [anon_sym_RBRACE] = ACTIONS(962), - [anon_sym_try] = ACTIONS(962), - [anon_sym_catch] = ACTIONS(962), - [anon_sym_return] = ACTIONS(962), - [anon_sym_source] = ACTIONS(962), - [anon_sym_source_DASHenv] = ACTIONS(962), - [anon_sym_register] = ACTIONS(962), - [anon_sym_hide] = ACTIONS(962), - [anon_sym_hide_DASHenv] = ACTIONS(962), - [anon_sym_overlay] = ACTIONS(962), - [anon_sym_new] = ACTIONS(962), - [anon_sym_as] = ACTIONS(962), - [anon_sym_QMARK2] = ACTIONS(962), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(962), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(962), - [aux_sym__val_number_decimal_token1] = ACTIONS(962), - [aux_sym__val_number_decimal_token2] = ACTIONS(962), - [aux_sym__val_number_decimal_token3] = ACTIONS(962), - [aux_sym__val_number_decimal_token4] = ACTIONS(962), - [aux_sym__val_number_token1] = ACTIONS(962), - [aux_sym__val_number_token2] = ACTIONS(962), - [aux_sym__val_number_token3] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(962), - [sym__str_single_quotes] = ACTIONS(962), - [sym__str_back_ticks] = ACTIONS(962), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(962), - [sym__entry_separator] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(962), - [anon_sym_POUND] = ACTIONS(3), - }, - [419] = { - [sym_expr_parenthesized] = STATE(4523), - [sym__spread_parenthesized] = STATE(4877), - [sym_val_range] = STATE(4895), - [sym__val_range] = STATE(7816), - [sym__val_range_with_end] = STATE(7649), - [sym__value] = STATE(4895), - [sym_val_nothing] = STATE(4994), - [sym_val_bool] = STATE(4669), - [sym__spread_variable] = STATE(4899), - [sym_val_variable] = STATE(4441), - [sym_val_number] = STATE(4994), - [sym__val_number_decimal] = STATE(4161), - [sym__val_number] = STATE(4878), - [sym_val_duration] = STATE(4994), - [sym_val_filesize] = STATE(4994), - [sym_val_binary] = STATE(4994), - [sym_val_string] = STATE(4994), - [sym__str_double_quotes] = STATE(4660), - [sym_val_interpolated] = STATE(4994), - [sym__inter_single_quotes] = STATE(4902), - [sym__inter_double_quotes] = STATE(4928), - [sym_val_list] = STATE(4994), - [sym__spread_list] = STATE(4877), - [sym_val_record] = STATE(4994), - [sym_val_table] = STATE(4994), - [sym_val_closure] = STATE(4994), - [sym__cmd_arg] = STATE(5029), - [sym_redirection] = STATE(4914), - [sym__flag] = STATE(4915), - [sym_short_flag] = STATE(4979), - [sym_long_flag] = STATE(4979), - [sym_unquoted] = STATE(4557), - [sym__unquoted_with_expr] = STATE(4922), - [sym__unquoted_anonymous_prefix] = STATE(7231), - [sym_comment] = STATE(419), - [anon_sym_true] = ACTIONS(2004), - [anon_sym_false] = ACTIONS(2004), - [anon_sym_null] = ACTIONS(2006), - [aux_sym_cmd_identifier_token38] = ACTIONS(2008), - [aux_sym_cmd_identifier_token39] = ACTIONS(2008), - [aux_sym_cmd_identifier_token40] = ACTIONS(2008), - [sym__newline] = ACTIONS(2074), - [sym__space] = ACTIONS(2076), - [anon_sym_SEMI] = ACTIONS(2074), - [anon_sym_PIPE] = ACTIONS(2074), - [anon_sym_err_GT_PIPE] = ACTIONS(2074), - [anon_sym_out_GT_PIPE] = ACTIONS(2074), - [anon_sym_e_GT_PIPE] = ACTIONS(2074), - [anon_sym_o_GT_PIPE] = ACTIONS(2074), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2074), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2074), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2074), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2014), - [anon_sym_LPAREN] = ACTIONS(2016), - [anon_sym_RPAREN] = ACTIONS(2074), - [anon_sym_DOLLAR] = ACTIONS(2018), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_DASH] = ACTIONS(2022), - [aux_sym_ctrl_match_token1] = ACTIONS(2024), - [anon_sym_DOT_DOT] = ACTIONS(2026), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2028), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2030), - [anon_sym_DOT_DOT_LT] = ACTIONS(2030), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2032), - [aux_sym__val_number_decimal_token1] = ACTIONS(2034), - [aux_sym__val_number_decimal_token2] = ACTIONS(2034), - [aux_sym__val_number_decimal_token3] = ACTIONS(2036), - [aux_sym__val_number_decimal_token4] = ACTIONS(2038), - [aux_sym__val_number_token1] = ACTIONS(2040), - [aux_sym__val_number_token2] = ACTIONS(2040), - [aux_sym__val_number_token3] = ACTIONS(2040), - [anon_sym_0b] = ACTIONS(2042), - [anon_sym_0o] = ACTIONS(2044), - [anon_sym_0x] = ACTIONS(2044), - [sym_val_date] = ACTIONS(2046), - [anon_sym_DQUOTE] = ACTIONS(2048), - [sym__str_single_quotes] = ACTIONS(2050), - [sym__str_back_ticks] = ACTIONS(2050), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2052), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2054), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2056), - [anon_sym_err_GT] = ACTIONS(2058), - [anon_sym_out_GT] = ACTIONS(2058), - [anon_sym_e_GT] = ACTIONS(2058), - [anon_sym_o_GT] = ACTIONS(2058), - [anon_sym_err_PLUSout_GT] = ACTIONS(2058), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2058), - [anon_sym_o_PLUSe_GT] = ACTIONS(2058), - [anon_sym_e_PLUSo_GT] = ACTIONS(2058), - [anon_sym_err_GT_GT] = ACTIONS(2058), - [anon_sym_out_GT_GT] = ACTIONS(2058), - [anon_sym_e_GT_GT] = ACTIONS(2058), - [anon_sym_o_GT_GT] = ACTIONS(2058), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2058), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2058), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2058), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2058), - [aux_sym_unquoted_token1] = ACTIONS(2060), - [anon_sym_POUND] = ACTIONS(3), - }, - [420] = { - [sym_comment] = STATE(420), - [anon_sym_export] = ACTIONS(994), - [anon_sym_alias] = ACTIONS(994), - [anon_sym_let] = ACTIONS(994), - [anon_sym_let_DASHenv] = ACTIONS(994), - [anon_sym_mut] = ACTIONS(994), - [anon_sym_const] = ACTIONS(994), - [aux_sym_cmd_identifier_token1] = ACTIONS(994), - [aux_sym_cmd_identifier_token2] = ACTIONS(994), - [aux_sym_cmd_identifier_token3] = ACTIONS(994), - [aux_sym_cmd_identifier_token4] = ACTIONS(994), - [aux_sym_cmd_identifier_token5] = ACTIONS(994), - [aux_sym_cmd_identifier_token6] = ACTIONS(994), - [aux_sym_cmd_identifier_token7] = ACTIONS(994), - [aux_sym_cmd_identifier_token8] = ACTIONS(994), - [aux_sym_cmd_identifier_token9] = ACTIONS(994), - [aux_sym_cmd_identifier_token10] = ACTIONS(994), - [aux_sym_cmd_identifier_token11] = ACTIONS(994), - [aux_sym_cmd_identifier_token12] = ACTIONS(994), - [aux_sym_cmd_identifier_token13] = ACTIONS(994), - [aux_sym_cmd_identifier_token14] = ACTIONS(994), - [aux_sym_cmd_identifier_token15] = ACTIONS(994), - [aux_sym_cmd_identifier_token16] = ACTIONS(994), - [aux_sym_cmd_identifier_token17] = ACTIONS(994), - [aux_sym_cmd_identifier_token18] = ACTIONS(994), - [aux_sym_cmd_identifier_token19] = ACTIONS(994), - [aux_sym_cmd_identifier_token20] = ACTIONS(994), - [aux_sym_cmd_identifier_token21] = ACTIONS(994), - [aux_sym_cmd_identifier_token22] = ACTIONS(994), - [aux_sym_cmd_identifier_token23] = ACTIONS(994), - [aux_sym_cmd_identifier_token24] = ACTIONS(994), - [aux_sym_cmd_identifier_token25] = ACTIONS(994), - [aux_sym_cmd_identifier_token26] = ACTIONS(994), - [aux_sym_cmd_identifier_token27] = ACTIONS(994), - [aux_sym_cmd_identifier_token28] = ACTIONS(994), - [aux_sym_cmd_identifier_token29] = ACTIONS(994), - [aux_sym_cmd_identifier_token30] = ACTIONS(994), - [aux_sym_cmd_identifier_token31] = ACTIONS(994), - [aux_sym_cmd_identifier_token32] = ACTIONS(994), - [aux_sym_cmd_identifier_token33] = ACTIONS(994), - [aux_sym_cmd_identifier_token34] = ACTIONS(994), - [aux_sym_cmd_identifier_token35] = ACTIONS(994), - [aux_sym_cmd_identifier_token36] = ACTIONS(994), - [anon_sym_true] = ACTIONS(996), - [anon_sym_false] = ACTIONS(996), - [anon_sym_null] = ACTIONS(996), - [aux_sym_cmd_identifier_token38] = ACTIONS(994), - [aux_sym_cmd_identifier_token39] = ACTIONS(996), - [aux_sym_cmd_identifier_token40] = ACTIONS(996), - [anon_sym_def] = ACTIONS(994), - [anon_sym_export_DASHenv] = ACTIONS(994), - [anon_sym_extern] = ACTIONS(994), - [anon_sym_module] = ACTIONS(994), - [anon_sym_use] = ACTIONS(994), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_COMMA] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(996), - [anon_sym_error] = ACTIONS(994), - [anon_sym_list] = ACTIONS(994), - [anon_sym_DASH] = ACTIONS(994), - [anon_sym_break] = ACTIONS(994), - [anon_sym_continue] = ACTIONS(994), - [anon_sym_for] = ACTIONS(994), - [anon_sym_in] = ACTIONS(994), - [anon_sym_loop] = ACTIONS(994), - [anon_sym_make] = ACTIONS(994), - [anon_sym_while] = ACTIONS(994), - [anon_sym_do] = ACTIONS(994), - [anon_sym_if] = ACTIONS(994), - [anon_sym_else] = ACTIONS(994), - [anon_sym_match] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_try] = ACTIONS(994), - [anon_sym_catch] = ACTIONS(994), - [anon_sym_return] = ACTIONS(994), - [anon_sym_source] = ACTIONS(994), - [anon_sym_source_DASHenv] = ACTIONS(994), - [anon_sym_register] = ACTIONS(994), - [anon_sym_hide] = ACTIONS(994), - [anon_sym_hide_DASHenv] = ACTIONS(994), - [anon_sym_overlay] = ACTIONS(994), - [anon_sym_new] = ACTIONS(994), - [anon_sym_as] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(996), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(996), - [aux_sym__val_number_decimal_token1] = ACTIONS(994), - [aux_sym__val_number_decimal_token2] = ACTIONS(996), - [aux_sym__val_number_decimal_token3] = ACTIONS(996), - [aux_sym__val_number_decimal_token4] = ACTIONS(996), - [aux_sym__val_number_token1] = ACTIONS(996), - [aux_sym__val_number_token2] = ACTIONS(996), - [aux_sym__val_number_token3] = ACTIONS(996), - [anon_sym_DQUOTE] = ACTIONS(996), - [sym__str_single_quotes] = ACTIONS(996), - [sym__str_back_ticks] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(996), - [aux_sym_record_entry_token1] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(994), - [anon_sym_POUND] = ACTIONS(247), - }, - [421] = { - [sym_comment] = STATE(421), - [anon_sym_export] = ACTIONS(1690), - [anon_sym_alias] = ACTIONS(1690), - [anon_sym_let] = ACTIONS(1690), - [anon_sym_let_DASHenv] = ACTIONS(1690), - [anon_sym_mut] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1690), - [aux_sym_cmd_identifier_token1] = ACTIONS(1690), - [aux_sym_cmd_identifier_token2] = ACTIONS(1690), - [aux_sym_cmd_identifier_token3] = ACTIONS(1690), - [aux_sym_cmd_identifier_token4] = ACTIONS(1690), - [aux_sym_cmd_identifier_token5] = ACTIONS(1690), - [aux_sym_cmd_identifier_token6] = ACTIONS(1690), - [aux_sym_cmd_identifier_token7] = ACTIONS(1690), - [aux_sym_cmd_identifier_token8] = ACTIONS(1690), - [aux_sym_cmd_identifier_token9] = ACTIONS(1690), - [aux_sym_cmd_identifier_token10] = ACTIONS(1690), - [aux_sym_cmd_identifier_token11] = ACTIONS(1690), - [aux_sym_cmd_identifier_token12] = ACTIONS(1690), - [aux_sym_cmd_identifier_token13] = ACTIONS(1690), - [aux_sym_cmd_identifier_token14] = ACTIONS(1690), - [aux_sym_cmd_identifier_token15] = ACTIONS(1690), - [aux_sym_cmd_identifier_token16] = ACTIONS(1690), - [aux_sym_cmd_identifier_token17] = ACTIONS(1690), - [aux_sym_cmd_identifier_token18] = ACTIONS(1690), - [aux_sym_cmd_identifier_token19] = ACTIONS(1690), - [aux_sym_cmd_identifier_token20] = ACTIONS(1690), - [aux_sym_cmd_identifier_token21] = ACTIONS(1690), - [aux_sym_cmd_identifier_token22] = ACTIONS(1690), - [aux_sym_cmd_identifier_token23] = ACTIONS(1690), - [aux_sym_cmd_identifier_token24] = ACTIONS(1690), - [aux_sym_cmd_identifier_token25] = ACTIONS(1690), - [aux_sym_cmd_identifier_token26] = ACTIONS(1690), - [aux_sym_cmd_identifier_token27] = ACTIONS(1690), - [aux_sym_cmd_identifier_token28] = ACTIONS(1690), - [aux_sym_cmd_identifier_token29] = ACTIONS(1690), - [aux_sym_cmd_identifier_token30] = ACTIONS(1690), - [aux_sym_cmd_identifier_token31] = ACTIONS(1690), - [aux_sym_cmd_identifier_token32] = ACTIONS(1690), - [aux_sym_cmd_identifier_token33] = ACTIONS(1690), - [aux_sym_cmd_identifier_token34] = ACTIONS(1690), - [aux_sym_cmd_identifier_token35] = ACTIONS(1690), - [aux_sym_cmd_identifier_token36] = ACTIONS(1690), - [anon_sym_true] = ACTIONS(1690), - [anon_sym_false] = ACTIONS(1690), - [anon_sym_null] = ACTIONS(1690), - [aux_sym_cmd_identifier_token38] = ACTIONS(1690), - [aux_sym_cmd_identifier_token39] = ACTIONS(1690), - [aux_sym_cmd_identifier_token40] = ACTIONS(1690), - [anon_sym_def] = ACTIONS(1690), - [anon_sym_export_DASHenv] = ACTIONS(1690), - [anon_sym_extern] = ACTIONS(1690), - [anon_sym_module] = ACTIONS(1690), - [anon_sym_use] = ACTIONS(1690), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_DOLLAR] = ACTIONS(1690), - [anon_sym_error] = ACTIONS(1690), - [anon_sym_list] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1690), - [anon_sym_break] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(1690), - [anon_sym_for] = ACTIONS(1690), - [anon_sym_in] = ACTIONS(1690), - [anon_sym_loop] = ACTIONS(1690), - [anon_sym_make] = ACTIONS(1690), - [anon_sym_while] = ACTIONS(1690), - [anon_sym_do] = ACTIONS(1690), - [anon_sym_if] = ACTIONS(1690), - [anon_sym_else] = ACTIONS(1690), - [anon_sym_match] = ACTIONS(1690), - [anon_sym_RBRACE] = ACTIONS(1690), - [anon_sym_try] = ACTIONS(1690), - [anon_sym_catch] = ACTIONS(1690), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_source] = ACTIONS(1690), - [anon_sym_source_DASHenv] = ACTIONS(1690), - [anon_sym_register] = ACTIONS(1690), - [anon_sym_hide] = ACTIONS(1690), - [anon_sym_hide_DASHenv] = ACTIONS(1690), - [anon_sym_overlay] = ACTIONS(1690), - [anon_sym_new] = ACTIONS(1690), - [anon_sym_as] = ACTIONS(1690), - [anon_sym_LPAREN2] = ACTIONS(1692), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1690), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1690), - [aux_sym__val_number_decimal_token1] = ACTIONS(1690), - [aux_sym__val_number_decimal_token2] = ACTIONS(1690), - [aux_sym__val_number_decimal_token3] = ACTIONS(1690), - [aux_sym__val_number_decimal_token4] = ACTIONS(1690), - [aux_sym__val_number_token1] = ACTIONS(1690), - [aux_sym__val_number_token2] = ACTIONS(1690), - [aux_sym__val_number_token3] = ACTIONS(1690), - [anon_sym_DQUOTE] = ACTIONS(1690), - [sym__str_single_quotes] = ACTIONS(1690), - [sym__str_back_ticks] = ACTIONS(1690), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1690), - [sym__entry_separator] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1690), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1429), - [anon_sym_POUND] = ACTIONS(3), - }, - [422] = { - [sym_comment] = STATE(422), - [anon_sym_export] = ACTIONS(986), - [anon_sym_alias] = ACTIONS(986), - [anon_sym_let] = ACTIONS(986), - [anon_sym_let_DASHenv] = ACTIONS(986), - [anon_sym_mut] = ACTIONS(986), - [anon_sym_const] = ACTIONS(986), - [aux_sym_cmd_identifier_token1] = ACTIONS(986), - [aux_sym_cmd_identifier_token2] = ACTIONS(986), - [aux_sym_cmd_identifier_token3] = ACTIONS(986), - [aux_sym_cmd_identifier_token4] = ACTIONS(986), - [aux_sym_cmd_identifier_token5] = ACTIONS(986), - [aux_sym_cmd_identifier_token6] = ACTIONS(986), - [aux_sym_cmd_identifier_token7] = ACTIONS(986), - [aux_sym_cmd_identifier_token8] = ACTIONS(986), - [aux_sym_cmd_identifier_token9] = ACTIONS(986), - [aux_sym_cmd_identifier_token10] = ACTIONS(986), - [aux_sym_cmd_identifier_token11] = ACTIONS(986), - [aux_sym_cmd_identifier_token12] = ACTIONS(986), - [aux_sym_cmd_identifier_token13] = ACTIONS(986), - [aux_sym_cmd_identifier_token14] = ACTIONS(986), - [aux_sym_cmd_identifier_token15] = ACTIONS(986), - [aux_sym_cmd_identifier_token16] = ACTIONS(986), - [aux_sym_cmd_identifier_token17] = ACTIONS(986), - [aux_sym_cmd_identifier_token18] = ACTIONS(986), - [aux_sym_cmd_identifier_token19] = ACTIONS(986), - [aux_sym_cmd_identifier_token20] = ACTIONS(986), - [aux_sym_cmd_identifier_token21] = ACTIONS(986), - [aux_sym_cmd_identifier_token22] = ACTIONS(986), - [aux_sym_cmd_identifier_token23] = ACTIONS(986), - [aux_sym_cmd_identifier_token24] = ACTIONS(986), - [aux_sym_cmd_identifier_token25] = ACTIONS(986), - [aux_sym_cmd_identifier_token26] = ACTIONS(986), - [aux_sym_cmd_identifier_token27] = ACTIONS(986), - [aux_sym_cmd_identifier_token28] = ACTIONS(986), - [aux_sym_cmd_identifier_token29] = ACTIONS(986), - [aux_sym_cmd_identifier_token30] = ACTIONS(986), - [aux_sym_cmd_identifier_token31] = ACTIONS(986), - [aux_sym_cmd_identifier_token32] = ACTIONS(986), - [aux_sym_cmd_identifier_token33] = ACTIONS(986), - [aux_sym_cmd_identifier_token34] = ACTIONS(986), - [aux_sym_cmd_identifier_token35] = ACTIONS(986), - [aux_sym_cmd_identifier_token36] = ACTIONS(986), - [anon_sym_true] = ACTIONS(988), - [anon_sym_false] = ACTIONS(988), - [anon_sym_null] = ACTIONS(988), - [aux_sym_cmd_identifier_token38] = ACTIONS(986), - [aux_sym_cmd_identifier_token39] = ACTIONS(988), - [aux_sym_cmd_identifier_token40] = ACTIONS(988), - [anon_sym_def] = ACTIONS(986), - [anon_sym_export_DASHenv] = ACTIONS(986), - [anon_sym_extern] = ACTIONS(986), - [anon_sym_module] = ACTIONS(986), - [anon_sym_use] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(988), - [anon_sym_COMMA] = ACTIONS(988), - [anon_sym_DOLLAR] = ACTIONS(988), - [anon_sym_error] = ACTIONS(986), - [anon_sym_list] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_break] = ACTIONS(986), - [anon_sym_continue] = ACTIONS(986), - [anon_sym_for] = ACTIONS(986), - [anon_sym_in] = ACTIONS(986), - [anon_sym_loop] = ACTIONS(986), - [anon_sym_make] = ACTIONS(986), - [anon_sym_while] = ACTIONS(986), - [anon_sym_do] = ACTIONS(986), - [anon_sym_if] = ACTIONS(986), - [anon_sym_else] = ACTIONS(986), - [anon_sym_match] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(988), - [anon_sym_try] = ACTIONS(986), - [anon_sym_catch] = ACTIONS(986), - [anon_sym_return] = ACTIONS(986), - [anon_sym_source] = ACTIONS(986), - [anon_sym_source_DASHenv] = ACTIONS(986), - [anon_sym_register] = ACTIONS(986), - [anon_sym_hide] = ACTIONS(986), - [anon_sym_hide_DASHenv] = ACTIONS(986), - [anon_sym_overlay] = ACTIONS(986), - [anon_sym_new] = ACTIONS(986), - [anon_sym_as] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(988), - [anon_sym_DOT] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(988), - [aux_sym__val_number_decimal_token1] = ACTIONS(986), - [aux_sym__val_number_decimal_token2] = ACTIONS(988), - [aux_sym__val_number_decimal_token3] = ACTIONS(988), - [aux_sym__val_number_decimal_token4] = ACTIONS(988), - [aux_sym__val_number_token1] = ACTIONS(988), - [aux_sym__val_number_token2] = ACTIONS(988), - [aux_sym__val_number_token3] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym__str_single_quotes] = ACTIONS(988), - [sym__str_back_ticks] = ACTIONS(988), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(988), - [aux_sym_record_entry_token1] = ACTIONS(988), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_POUND] = ACTIONS(247), - }, - [423] = { - [sym_comment] = STATE(423), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [aux_sym_cmd_identifier_token1] = ACTIONS(990), - [aux_sym_cmd_identifier_token2] = ACTIONS(990), - [aux_sym_cmd_identifier_token3] = ACTIONS(990), - [aux_sym_cmd_identifier_token4] = ACTIONS(990), - [aux_sym_cmd_identifier_token5] = ACTIONS(990), - [aux_sym_cmd_identifier_token6] = ACTIONS(990), - [aux_sym_cmd_identifier_token7] = ACTIONS(990), - [aux_sym_cmd_identifier_token8] = ACTIONS(990), - [aux_sym_cmd_identifier_token9] = ACTIONS(990), - [aux_sym_cmd_identifier_token10] = ACTIONS(990), - [aux_sym_cmd_identifier_token11] = ACTIONS(990), - [aux_sym_cmd_identifier_token12] = ACTIONS(990), - [aux_sym_cmd_identifier_token13] = ACTIONS(990), - [aux_sym_cmd_identifier_token14] = ACTIONS(990), - [aux_sym_cmd_identifier_token15] = ACTIONS(990), - [aux_sym_cmd_identifier_token16] = ACTIONS(990), - [aux_sym_cmd_identifier_token17] = ACTIONS(990), - [aux_sym_cmd_identifier_token18] = ACTIONS(990), - [aux_sym_cmd_identifier_token19] = ACTIONS(990), - [aux_sym_cmd_identifier_token20] = ACTIONS(990), - [aux_sym_cmd_identifier_token21] = ACTIONS(990), - [aux_sym_cmd_identifier_token22] = ACTIONS(990), - [aux_sym_cmd_identifier_token23] = ACTIONS(990), - [aux_sym_cmd_identifier_token24] = ACTIONS(990), - [aux_sym_cmd_identifier_token25] = ACTIONS(990), - [aux_sym_cmd_identifier_token26] = ACTIONS(990), - [aux_sym_cmd_identifier_token27] = ACTIONS(990), - [aux_sym_cmd_identifier_token28] = ACTIONS(990), - [aux_sym_cmd_identifier_token29] = ACTIONS(990), - [aux_sym_cmd_identifier_token30] = ACTIONS(990), - [aux_sym_cmd_identifier_token31] = ACTIONS(990), - [aux_sym_cmd_identifier_token32] = ACTIONS(990), - [aux_sym_cmd_identifier_token33] = ACTIONS(990), - [aux_sym_cmd_identifier_token34] = ACTIONS(990), - [aux_sym_cmd_identifier_token35] = ACTIONS(990), - [aux_sym_cmd_identifier_token36] = ACTIONS(990), - [anon_sym_true] = ACTIONS(992), - [anon_sym_false] = ACTIONS(992), - [anon_sym_null] = ACTIONS(992), - [aux_sym_cmd_identifier_token38] = ACTIONS(990), - [aux_sym_cmd_identifier_token39] = ACTIONS(992), - [aux_sym_cmd_identifier_token40] = ACTIONS(992), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_COMMA] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(992), - [anon_sym_error] = ACTIONS(990), - [anon_sym_list] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_in] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_make] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_try] = ACTIONS(990), - [anon_sym_catch] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_new] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(992), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(992), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(992), - [aux_sym__val_number_decimal_token3] = ACTIONS(992), - [aux_sym__val_number_decimal_token4] = ACTIONS(992), - [aux_sym__val_number_token1] = ACTIONS(992), - [aux_sym__val_number_token2] = ACTIONS(992), - [aux_sym__val_number_token3] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(992), - [aux_sym_record_entry_token1] = ACTIONS(992), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_POUND] = ACTIONS(247), - }, - [424] = { - [sym_path] = STATE(532), - [sym_comment] = STATE(424), - [aux_sym_cell_path_repeat1] = STATE(425), - [anon_sym_export] = ACTIONS(951), - [anon_sym_alias] = ACTIONS(951), - [anon_sym_let] = ACTIONS(951), - [anon_sym_let_DASHenv] = ACTIONS(951), - [anon_sym_mut] = ACTIONS(951), - [anon_sym_const] = ACTIONS(951), - [aux_sym_cmd_identifier_token1] = ACTIONS(951), - [aux_sym_cmd_identifier_token2] = ACTIONS(951), - [aux_sym_cmd_identifier_token3] = ACTIONS(951), - [aux_sym_cmd_identifier_token4] = ACTIONS(951), - [aux_sym_cmd_identifier_token5] = ACTIONS(951), - [aux_sym_cmd_identifier_token6] = ACTIONS(951), - [aux_sym_cmd_identifier_token7] = ACTIONS(951), - [aux_sym_cmd_identifier_token8] = ACTIONS(951), - [aux_sym_cmd_identifier_token9] = ACTIONS(951), - [aux_sym_cmd_identifier_token10] = ACTIONS(951), - [aux_sym_cmd_identifier_token11] = ACTIONS(951), - [aux_sym_cmd_identifier_token12] = ACTIONS(951), - [aux_sym_cmd_identifier_token13] = ACTIONS(951), - [aux_sym_cmd_identifier_token14] = ACTIONS(951), - [aux_sym_cmd_identifier_token15] = ACTIONS(951), - [aux_sym_cmd_identifier_token16] = ACTIONS(951), - [aux_sym_cmd_identifier_token17] = ACTIONS(951), - [aux_sym_cmd_identifier_token18] = ACTIONS(951), - [aux_sym_cmd_identifier_token19] = ACTIONS(951), - [aux_sym_cmd_identifier_token20] = ACTIONS(951), - [aux_sym_cmd_identifier_token21] = ACTIONS(951), - [aux_sym_cmd_identifier_token22] = ACTIONS(951), - [aux_sym_cmd_identifier_token23] = ACTIONS(951), - [aux_sym_cmd_identifier_token24] = ACTIONS(951), - [aux_sym_cmd_identifier_token25] = ACTIONS(951), - [aux_sym_cmd_identifier_token26] = ACTIONS(951), - [aux_sym_cmd_identifier_token27] = ACTIONS(951), - [aux_sym_cmd_identifier_token28] = ACTIONS(951), - [aux_sym_cmd_identifier_token29] = ACTIONS(951), - [aux_sym_cmd_identifier_token30] = ACTIONS(951), - [aux_sym_cmd_identifier_token31] = ACTIONS(951), - [aux_sym_cmd_identifier_token32] = ACTIONS(951), - [aux_sym_cmd_identifier_token33] = ACTIONS(951), - [aux_sym_cmd_identifier_token34] = ACTIONS(951), - [aux_sym_cmd_identifier_token35] = ACTIONS(951), - [aux_sym_cmd_identifier_token36] = ACTIONS(951), - [anon_sym_true] = ACTIONS(953), - [anon_sym_false] = ACTIONS(953), - [anon_sym_null] = ACTIONS(953), - [aux_sym_cmd_identifier_token38] = ACTIONS(951), - [aux_sym_cmd_identifier_token39] = ACTIONS(953), - [aux_sym_cmd_identifier_token40] = ACTIONS(953), - [anon_sym_def] = ACTIONS(951), - [anon_sym_export_DASHenv] = ACTIONS(951), - [anon_sym_extern] = ACTIONS(951), - [anon_sym_module] = ACTIONS(951), - [anon_sym_use] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_DOLLAR] = ACTIONS(953), - [anon_sym_error] = ACTIONS(951), - [anon_sym_list] = ACTIONS(951), - [anon_sym_DASH] = ACTIONS(951), - [anon_sym_break] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(951), - [anon_sym_for] = ACTIONS(951), - [anon_sym_in] = ACTIONS(951), - [anon_sym_loop] = ACTIONS(951), - [anon_sym_make] = ACTIONS(951), - [anon_sym_while] = ACTIONS(951), - [anon_sym_do] = ACTIONS(951), - [anon_sym_if] = ACTIONS(951), - [anon_sym_else] = ACTIONS(951), - [anon_sym_match] = ACTIONS(951), - [anon_sym_RBRACE] = ACTIONS(953), - [anon_sym_try] = ACTIONS(951), - [anon_sym_catch] = ACTIONS(951), - [anon_sym_return] = ACTIONS(951), - [anon_sym_source] = ACTIONS(951), - [anon_sym_source_DASHenv] = ACTIONS(951), - [anon_sym_register] = ACTIONS(951), - [anon_sym_hide] = ACTIONS(951), - [anon_sym_hide_DASHenv] = ACTIONS(951), - [anon_sym_overlay] = ACTIONS(951), - [anon_sym_new] = ACTIONS(951), - [anon_sym_as] = ACTIONS(951), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(953), - [anon_sym_DOT] = ACTIONS(1903), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(953), - [aux_sym__val_number_decimal_token1] = ACTIONS(951), - [aux_sym__val_number_decimal_token2] = ACTIONS(953), - [aux_sym__val_number_decimal_token3] = ACTIONS(953), - [aux_sym__val_number_decimal_token4] = ACTIONS(953), - [aux_sym__val_number_token1] = ACTIONS(953), - [aux_sym__val_number_token2] = ACTIONS(953), - [aux_sym__val_number_token3] = ACTIONS(953), - [anon_sym_DQUOTE] = ACTIONS(953), - [sym__str_single_quotes] = ACTIONS(953), - [sym__str_back_ticks] = ACTIONS(953), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(951), - [anon_sym_POUND] = ACTIONS(247), - }, - [425] = { - [sym_path] = STATE(532), - [sym_comment] = STATE(425), - [aux_sym_cell_path_repeat1] = STATE(425), - [anon_sym_export] = ACTIONS(955), - [anon_sym_alias] = ACTIONS(955), - [anon_sym_let] = ACTIONS(955), - [anon_sym_let_DASHenv] = ACTIONS(955), - [anon_sym_mut] = ACTIONS(955), - [anon_sym_const] = ACTIONS(955), - [aux_sym_cmd_identifier_token1] = ACTIONS(955), - [aux_sym_cmd_identifier_token2] = ACTIONS(955), - [aux_sym_cmd_identifier_token3] = ACTIONS(955), - [aux_sym_cmd_identifier_token4] = ACTIONS(955), - [aux_sym_cmd_identifier_token5] = ACTIONS(955), - [aux_sym_cmd_identifier_token6] = ACTIONS(955), - [aux_sym_cmd_identifier_token7] = ACTIONS(955), - [aux_sym_cmd_identifier_token8] = ACTIONS(955), - [aux_sym_cmd_identifier_token9] = ACTIONS(955), - [aux_sym_cmd_identifier_token10] = ACTIONS(955), - [aux_sym_cmd_identifier_token11] = ACTIONS(955), - [aux_sym_cmd_identifier_token12] = ACTIONS(955), - [aux_sym_cmd_identifier_token13] = ACTIONS(955), - [aux_sym_cmd_identifier_token14] = ACTIONS(955), - [aux_sym_cmd_identifier_token15] = ACTIONS(955), - [aux_sym_cmd_identifier_token16] = ACTIONS(955), - [aux_sym_cmd_identifier_token17] = ACTIONS(955), - [aux_sym_cmd_identifier_token18] = ACTIONS(955), - [aux_sym_cmd_identifier_token19] = ACTIONS(955), - [aux_sym_cmd_identifier_token20] = ACTIONS(955), - [aux_sym_cmd_identifier_token21] = ACTIONS(955), - [aux_sym_cmd_identifier_token22] = ACTIONS(955), - [aux_sym_cmd_identifier_token23] = ACTIONS(955), - [aux_sym_cmd_identifier_token24] = ACTIONS(955), - [aux_sym_cmd_identifier_token25] = ACTIONS(955), - [aux_sym_cmd_identifier_token26] = ACTIONS(955), - [aux_sym_cmd_identifier_token27] = ACTIONS(955), - [aux_sym_cmd_identifier_token28] = ACTIONS(955), - [aux_sym_cmd_identifier_token29] = ACTIONS(955), - [aux_sym_cmd_identifier_token30] = ACTIONS(955), - [aux_sym_cmd_identifier_token31] = ACTIONS(955), - [aux_sym_cmd_identifier_token32] = ACTIONS(955), - [aux_sym_cmd_identifier_token33] = ACTIONS(955), - [aux_sym_cmd_identifier_token34] = ACTIONS(955), - [aux_sym_cmd_identifier_token35] = ACTIONS(955), - [aux_sym_cmd_identifier_token36] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_null] = ACTIONS(957), - [aux_sym_cmd_identifier_token38] = ACTIONS(955), - [aux_sym_cmd_identifier_token39] = ACTIONS(957), - [aux_sym_cmd_identifier_token40] = ACTIONS(957), - [anon_sym_def] = ACTIONS(955), - [anon_sym_export_DASHenv] = ACTIONS(955), - [anon_sym_extern] = ACTIONS(955), - [anon_sym_module] = ACTIONS(955), - [anon_sym_use] = ACTIONS(955), - [anon_sym_LPAREN] = ACTIONS(957), - [anon_sym_DOLLAR] = ACTIONS(957), - [anon_sym_error] = ACTIONS(955), - [anon_sym_list] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(955), - [anon_sym_break] = ACTIONS(955), - [anon_sym_continue] = ACTIONS(955), - [anon_sym_for] = ACTIONS(955), - [anon_sym_in] = ACTIONS(955), - [anon_sym_loop] = ACTIONS(955), - [anon_sym_make] = ACTIONS(955), - [anon_sym_while] = ACTIONS(955), - [anon_sym_do] = ACTIONS(955), - [anon_sym_if] = ACTIONS(955), - [anon_sym_else] = ACTIONS(955), - [anon_sym_match] = ACTIONS(955), - [anon_sym_RBRACE] = ACTIONS(957), - [anon_sym_try] = ACTIONS(955), - [anon_sym_catch] = ACTIONS(955), - [anon_sym_return] = ACTIONS(955), - [anon_sym_source] = ACTIONS(955), - [anon_sym_source_DASHenv] = ACTIONS(955), - [anon_sym_register] = ACTIONS(955), - [anon_sym_hide] = ACTIONS(955), - [anon_sym_hide_DASHenv] = ACTIONS(955), - [anon_sym_overlay] = ACTIONS(955), - [anon_sym_new] = ACTIONS(955), - [anon_sym_as] = ACTIONS(955), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(2078), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(957), - [aux_sym__val_number_decimal_token1] = ACTIONS(955), - [aux_sym__val_number_decimal_token2] = ACTIONS(957), - [aux_sym__val_number_decimal_token3] = ACTIONS(957), - [aux_sym__val_number_decimal_token4] = ACTIONS(957), - [aux_sym__val_number_token1] = ACTIONS(957), - [aux_sym__val_number_token2] = ACTIONS(957), - [aux_sym__val_number_token3] = ACTIONS(957), - [anon_sym_DQUOTE] = ACTIONS(957), - [sym__str_single_quotes] = ACTIONS(957), - [sym__str_back_ticks] = ACTIONS(957), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(957), - [anon_sym_PLUS] = ACTIONS(955), - [anon_sym_POUND] = ACTIONS(247), - }, - [426] = { - [sym_comment] = STATE(426), + [aux_sym_cell_path_repeat1] = STATE(412), [anon_sym_export] = ACTIONS(1021), [anon_sym_alias] = ACTIONS(1021), [anon_sym_let] = ACTIONS(1021), @@ -126551,19 +121027,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(1021), [aux_sym_cmd_identifier_token35] = ACTIONS(1021), [aux_sym_cmd_identifier_token36] = ACTIONS(1021), - [anon_sym_true] = ACTIONS(1023), - [anon_sym_false] = ACTIONS(1023), - [anon_sym_null] = ACTIONS(1023), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_null] = ACTIONS(1021), [aux_sym_cmd_identifier_token38] = ACTIONS(1021), - [aux_sym_cmd_identifier_token39] = ACTIONS(1023), - [aux_sym_cmd_identifier_token40] = ACTIONS(1023), + [aux_sym_cmd_identifier_token39] = ACTIONS(1021), + [aux_sym_cmd_identifier_token40] = ACTIONS(1021), [anon_sym_def] = ACTIONS(1021), [anon_sym_export_DASHenv] = ACTIONS(1021), [anon_sym_extern] = ACTIONS(1021), [anon_sym_module] = ACTIONS(1021), [anon_sym_use] = ACTIONS(1021), - [anon_sym_LPAREN] = ACTIONS(1023), - [anon_sym_DOLLAR] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1021), + [anon_sym_DOLLAR] = ACTIONS(1021), [anon_sym_error] = ACTIONS(1021), [anon_sym_list] = ACTIONS(1021), [anon_sym_DASH] = ACTIONS(1021), @@ -126578,7 +121054,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1021), [anon_sym_else] = ACTIONS(1021), [anon_sym_match] = ACTIONS(1021), - [anon_sym_RBRACE] = ACTIONS(1023), + [anon_sym_RBRACE] = ACTIONS(1021), [anon_sym_try] = ACTIONS(1021), [anon_sym_catch] = ACTIONS(1021), [anon_sym_return] = ACTIONS(1021), @@ -126590,6028 +121066,6845 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1021), [anon_sym_new] = ACTIONS(1021), [anon_sym_as] = ACTIONS(1021), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1023), - [anon_sym_DOT_DOT2] = ACTIONS(1021), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1023), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(2141), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1021), [aux_sym__val_number_decimal_token1] = ACTIONS(1021), - [aux_sym__val_number_decimal_token2] = ACTIONS(1023), - [aux_sym__val_number_decimal_token3] = ACTIONS(1023), - [aux_sym__val_number_decimal_token4] = ACTIONS(1023), - [aux_sym__val_number_token1] = ACTIONS(1023), - [aux_sym__val_number_token2] = ACTIONS(1023), - [aux_sym__val_number_token3] = ACTIONS(1023), - [anon_sym_DQUOTE] = ACTIONS(1023), - [sym__str_single_quotes] = ACTIONS(1023), - [sym__str_back_ticks] = ACTIONS(1023), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1023), + [aux_sym__val_number_decimal_token2] = ACTIONS(1021), + [aux_sym__val_number_decimal_token3] = ACTIONS(1021), + [aux_sym__val_number_decimal_token4] = ACTIONS(1021), + [aux_sym__val_number_token1] = ACTIONS(1021), + [aux_sym__val_number_token2] = ACTIONS(1021), + [aux_sym__val_number_token3] = ACTIONS(1021), + [anon_sym_DQUOTE] = ACTIONS(1021), + [sym__str_single_quotes] = ACTIONS(1021), + [sym__str_back_ticks] = ACTIONS(1021), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1021), + [sym__entry_separator] = ACTIONS(1023), [anon_sym_PLUS] = ACTIONS(1021), + [anon_sym_POUND] = ACTIONS(3), + }, + [413] = { + [sym__expr_parenthesized_immediate] = STATE(7343), + [sym_comment] = STATE(413), + [anon_sym_export] = ACTIONS(1993), + [anon_sym_alias] = ACTIONS(1993), + [anon_sym_let] = ACTIONS(1993), + [anon_sym_let_DASHenv] = ACTIONS(1993), + [anon_sym_mut] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1993), + [aux_sym_cmd_identifier_token1] = ACTIONS(1993), + [aux_sym_cmd_identifier_token2] = ACTIONS(1993), + [aux_sym_cmd_identifier_token3] = ACTIONS(1993), + [aux_sym_cmd_identifier_token4] = ACTIONS(1993), + [aux_sym_cmd_identifier_token5] = ACTIONS(1993), + [aux_sym_cmd_identifier_token6] = ACTIONS(1993), + [aux_sym_cmd_identifier_token7] = ACTIONS(1993), + [aux_sym_cmd_identifier_token8] = ACTIONS(1993), + [aux_sym_cmd_identifier_token9] = ACTIONS(1993), + [aux_sym_cmd_identifier_token10] = ACTIONS(1993), + [aux_sym_cmd_identifier_token11] = ACTIONS(1993), + [aux_sym_cmd_identifier_token12] = ACTIONS(1993), + [aux_sym_cmd_identifier_token13] = ACTIONS(1993), + [aux_sym_cmd_identifier_token14] = ACTIONS(1993), + [aux_sym_cmd_identifier_token15] = ACTIONS(1993), + [aux_sym_cmd_identifier_token16] = ACTIONS(1993), + [aux_sym_cmd_identifier_token17] = ACTIONS(1993), + [aux_sym_cmd_identifier_token18] = ACTIONS(1993), + [aux_sym_cmd_identifier_token19] = ACTIONS(1993), + [aux_sym_cmd_identifier_token20] = ACTIONS(1993), + [aux_sym_cmd_identifier_token21] = ACTIONS(1993), + [aux_sym_cmd_identifier_token22] = ACTIONS(1993), + [aux_sym_cmd_identifier_token23] = ACTIONS(1993), + [aux_sym_cmd_identifier_token24] = ACTIONS(1993), + [aux_sym_cmd_identifier_token25] = ACTIONS(1993), + [aux_sym_cmd_identifier_token26] = ACTIONS(1993), + [aux_sym_cmd_identifier_token27] = ACTIONS(1993), + [aux_sym_cmd_identifier_token28] = ACTIONS(1993), + [aux_sym_cmd_identifier_token29] = ACTIONS(1993), + [aux_sym_cmd_identifier_token30] = ACTIONS(1993), + [aux_sym_cmd_identifier_token31] = ACTIONS(1993), + [aux_sym_cmd_identifier_token32] = ACTIONS(1993), + [aux_sym_cmd_identifier_token33] = ACTIONS(1993), + [aux_sym_cmd_identifier_token34] = ACTIONS(1993), + [aux_sym_cmd_identifier_token35] = ACTIONS(1993), + [aux_sym_cmd_identifier_token36] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(1993), + [anon_sym_false] = ACTIONS(1993), + [anon_sym_null] = ACTIONS(1993), + [aux_sym_cmd_identifier_token38] = ACTIONS(1993), + [aux_sym_cmd_identifier_token39] = ACTIONS(1993), + [aux_sym_cmd_identifier_token40] = ACTIONS(1993), + [anon_sym_def] = ACTIONS(1993), + [anon_sym_export_DASHenv] = ACTIONS(1993), + [anon_sym_extern] = ACTIONS(1993), + [anon_sym_module] = ACTIONS(1993), + [anon_sym_use] = ACTIONS(1993), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_DOLLAR] = ACTIONS(1993), + [anon_sym_error] = ACTIONS(1993), + [anon_sym_list] = ACTIONS(1993), + [anon_sym_DASH] = ACTIONS(1993), + [anon_sym_break] = ACTIONS(1993), + [anon_sym_continue] = ACTIONS(1993), + [anon_sym_for] = ACTIONS(1993), + [anon_sym_in] = ACTIONS(1993), + [anon_sym_loop] = ACTIONS(1993), + [anon_sym_make] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1993), + [anon_sym_do] = ACTIONS(1993), + [anon_sym_if] = ACTIONS(1993), + [anon_sym_else] = ACTIONS(1993), + [anon_sym_match] = ACTIONS(1993), + [anon_sym_RBRACE] = ACTIONS(1993), + [anon_sym_try] = ACTIONS(1993), + [anon_sym_catch] = ACTIONS(1993), + [anon_sym_return] = ACTIONS(1993), + [anon_sym_source] = ACTIONS(1993), + [anon_sym_source_DASHenv] = ACTIONS(1993), + [anon_sym_register] = ACTIONS(1993), + [anon_sym_hide] = ACTIONS(1993), + [anon_sym_hide_DASHenv] = ACTIONS(1993), + [anon_sym_overlay] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_as] = ACTIONS(1993), + [anon_sym_LPAREN2] = ACTIONS(1577), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1993), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1993), + [aux_sym__val_number_decimal_token1] = ACTIONS(1993), + [aux_sym__val_number_decimal_token2] = ACTIONS(1993), + [aux_sym__val_number_decimal_token3] = ACTIONS(1993), + [aux_sym__val_number_decimal_token4] = ACTIONS(1993), + [aux_sym__val_number_token1] = ACTIONS(1993), + [aux_sym__val_number_token2] = ACTIONS(1993), + [aux_sym__val_number_token3] = ACTIONS(1993), + [anon_sym_DQUOTE] = ACTIONS(1993), + [sym__str_single_quotes] = ACTIONS(1993), + [sym__str_back_ticks] = ACTIONS(1993), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1993), + [sym__entry_separator] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(1993), + [anon_sym_POUND] = ACTIONS(3), + }, + [414] = { + [sym_comment] = STATE(414), + [anon_sym_export] = ACTIONS(2035), + [anon_sym_alias] = ACTIONS(2035), + [anon_sym_let] = ACTIONS(2035), + [anon_sym_let_DASHenv] = ACTIONS(2035), + [anon_sym_mut] = ACTIONS(2035), + [anon_sym_const] = ACTIONS(2035), + [aux_sym_cmd_identifier_token1] = ACTIONS(2035), + [aux_sym_cmd_identifier_token2] = ACTIONS(2035), + [aux_sym_cmd_identifier_token3] = ACTIONS(2035), + [aux_sym_cmd_identifier_token4] = ACTIONS(2035), + [aux_sym_cmd_identifier_token5] = ACTIONS(2035), + [aux_sym_cmd_identifier_token6] = ACTIONS(2035), + [aux_sym_cmd_identifier_token7] = ACTIONS(2035), + [aux_sym_cmd_identifier_token8] = ACTIONS(2035), + [aux_sym_cmd_identifier_token9] = ACTIONS(2035), + [aux_sym_cmd_identifier_token10] = ACTIONS(2035), + [aux_sym_cmd_identifier_token11] = ACTIONS(2035), + [aux_sym_cmd_identifier_token12] = ACTIONS(2035), + [aux_sym_cmd_identifier_token13] = ACTIONS(2035), + [aux_sym_cmd_identifier_token14] = ACTIONS(2035), + [aux_sym_cmd_identifier_token15] = ACTIONS(2035), + [aux_sym_cmd_identifier_token16] = ACTIONS(2035), + [aux_sym_cmd_identifier_token17] = ACTIONS(2035), + [aux_sym_cmd_identifier_token18] = ACTIONS(2035), + [aux_sym_cmd_identifier_token19] = ACTIONS(2035), + [aux_sym_cmd_identifier_token20] = ACTIONS(2035), + [aux_sym_cmd_identifier_token21] = ACTIONS(2035), + [aux_sym_cmd_identifier_token22] = ACTIONS(2035), + [aux_sym_cmd_identifier_token23] = ACTIONS(2035), + [aux_sym_cmd_identifier_token24] = ACTIONS(2035), + [aux_sym_cmd_identifier_token25] = ACTIONS(2035), + [aux_sym_cmd_identifier_token26] = ACTIONS(2035), + [aux_sym_cmd_identifier_token27] = ACTIONS(2035), + [aux_sym_cmd_identifier_token28] = ACTIONS(2035), + [aux_sym_cmd_identifier_token29] = ACTIONS(2035), + [aux_sym_cmd_identifier_token30] = ACTIONS(2035), + [aux_sym_cmd_identifier_token31] = ACTIONS(2035), + [aux_sym_cmd_identifier_token32] = ACTIONS(2035), + [aux_sym_cmd_identifier_token33] = ACTIONS(2035), + [aux_sym_cmd_identifier_token34] = ACTIONS(2035), + [aux_sym_cmd_identifier_token35] = ACTIONS(2035), + [aux_sym_cmd_identifier_token36] = ACTIONS(2035), + [anon_sym_true] = ACTIONS(2041), + [anon_sym_false] = ACTIONS(2041), + [anon_sym_null] = ACTIONS(2041), + [aux_sym_cmd_identifier_token38] = ACTIONS(2035), + [aux_sym_cmd_identifier_token39] = ACTIONS(2041), + [aux_sym_cmd_identifier_token40] = ACTIONS(2041), + [anon_sym_def] = ACTIONS(2035), + [anon_sym_export_DASHenv] = ACTIONS(2035), + [anon_sym_extern] = ACTIONS(2035), + [anon_sym_module] = ACTIONS(2035), + [anon_sym_use] = ACTIONS(2035), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_DOLLAR] = ACTIONS(2041), + [anon_sym_error] = ACTIONS(2035), + [anon_sym_list] = ACTIONS(2035), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_break] = ACTIONS(2035), + [anon_sym_continue] = ACTIONS(2035), + [anon_sym_for] = ACTIONS(2035), + [anon_sym_in] = ACTIONS(2035), + [anon_sym_loop] = ACTIONS(2035), + [anon_sym_make] = ACTIONS(2035), + [anon_sym_while] = ACTIONS(2035), + [anon_sym_do] = ACTIONS(2035), + [anon_sym_if] = ACTIONS(2035), + [anon_sym_else] = ACTIONS(2035), + [anon_sym_match] = ACTIONS(2035), + [anon_sym_RBRACE] = ACTIONS(2041), + [anon_sym_try] = ACTIONS(2035), + [anon_sym_catch] = ACTIONS(2035), + [anon_sym_return] = ACTIONS(2035), + [anon_sym_source] = ACTIONS(2035), + [anon_sym_source_DASHenv] = ACTIONS(2035), + [anon_sym_register] = ACTIONS(2035), + [anon_sym_hide] = ACTIONS(2035), + [anon_sym_hide_DASHenv] = ACTIONS(2035), + [anon_sym_overlay] = ACTIONS(2035), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_as] = ACTIONS(2035), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2041), + [anon_sym_DOT_DOT2] = ACTIONS(2144), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2146), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2146), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2041), + [aux_sym__val_number_decimal_token1] = ACTIONS(2035), + [aux_sym__val_number_decimal_token2] = ACTIONS(2041), + [aux_sym__val_number_decimal_token3] = ACTIONS(2041), + [aux_sym__val_number_decimal_token4] = ACTIONS(2041), + [aux_sym__val_number_token1] = ACTIONS(2041), + [aux_sym__val_number_token2] = ACTIONS(2041), + [aux_sym__val_number_token3] = ACTIONS(2041), + [anon_sym_DQUOTE] = ACTIONS(2041), + [sym__str_single_quotes] = ACTIONS(2041), + [sym__str_back_ticks] = ACTIONS(2041), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2041), + [anon_sym_PLUS] = ACTIONS(2035), + [anon_sym_POUND] = ACTIONS(247), + }, + [415] = { + [sym_comment] = STATE(415), + [anon_sym_export] = ACTIONS(2043), + [anon_sym_alias] = ACTIONS(2043), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_DASHenv] = ACTIONS(2043), + [anon_sym_mut] = ACTIONS(2043), + [anon_sym_const] = ACTIONS(2043), + [aux_sym_cmd_identifier_token1] = ACTIONS(2043), + [aux_sym_cmd_identifier_token2] = ACTIONS(2043), + [aux_sym_cmd_identifier_token3] = ACTIONS(2043), + [aux_sym_cmd_identifier_token4] = ACTIONS(2043), + [aux_sym_cmd_identifier_token5] = ACTIONS(2043), + [aux_sym_cmd_identifier_token6] = ACTIONS(2043), + [aux_sym_cmd_identifier_token7] = ACTIONS(2043), + [aux_sym_cmd_identifier_token8] = ACTIONS(2043), + [aux_sym_cmd_identifier_token9] = ACTIONS(2043), + [aux_sym_cmd_identifier_token10] = ACTIONS(2043), + [aux_sym_cmd_identifier_token11] = ACTIONS(2043), + [aux_sym_cmd_identifier_token12] = ACTIONS(2043), + [aux_sym_cmd_identifier_token13] = ACTIONS(2043), + [aux_sym_cmd_identifier_token14] = ACTIONS(2043), + [aux_sym_cmd_identifier_token15] = ACTIONS(2043), + [aux_sym_cmd_identifier_token16] = ACTIONS(2043), + [aux_sym_cmd_identifier_token17] = ACTIONS(2043), + [aux_sym_cmd_identifier_token18] = ACTIONS(2043), + [aux_sym_cmd_identifier_token19] = ACTIONS(2043), + [aux_sym_cmd_identifier_token20] = ACTIONS(2043), + [aux_sym_cmd_identifier_token21] = ACTIONS(2043), + [aux_sym_cmd_identifier_token22] = ACTIONS(2043), + [aux_sym_cmd_identifier_token23] = ACTIONS(2043), + [aux_sym_cmd_identifier_token24] = ACTIONS(2043), + [aux_sym_cmd_identifier_token25] = ACTIONS(2043), + [aux_sym_cmd_identifier_token26] = ACTIONS(2043), + [aux_sym_cmd_identifier_token27] = ACTIONS(2043), + [aux_sym_cmd_identifier_token28] = ACTIONS(2043), + [aux_sym_cmd_identifier_token29] = ACTIONS(2043), + [aux_sym_cmd_identifier_token30] = ACTIONS(2043), + [aux_sym_cmd_identifier_token31] = ACTIONS(2043), + [aux_sym_cmd_identifier_token32] = ACTIONS(2043), + [aux_sym_cmd_identifier_token33] = ACTIONS(2043), + [aux_sym_cmd_identifier_token34] = ACTIONS(2043), + [aux_sym_cmd_identifier_token35] = ACTIONS(2043), + [aux_sym_cmd_identifier_token36] = ACTIONS(2043), + [anon_sym_true] = ACTIONS(2049), + [anon_sym_false] = ACTIONS(2049), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token38] = ACTIONS(2043), + [aux_sym_cmd_identifier_token39] = ACTIONS(2049), + [aux_sym_cmd_identifier_token40] = ACTIONS(2049), + [anon_sym_def] = ACTIONS(2043), + [anon_sym_export_DASHenv] = ACTIONS(2043), + [anon_sym_extern] = ACTIONS(2043), + [anon_sym_module] = ACTIONS(2043), + [anon_sym_use] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_DOLLAR] = ACTIONS(2049), + [anon_sym_error] = ACTIONS(2043), + [anon_sym_list] = ACTIONS(2043), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_break] = ACTIONS(2043), + [anon_sym_continue] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_in] = ACTIONS(2043), + [anon_sym_loop] = ACTIONS(2043), + [anon_sym_make] = ACTIONS(2043), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_do] = ACTIONS(2043), + [anon_sym_if] = ACTIONS(2043), + [anon_sym_else] = ACTIONS(2043), + [anon_sym_match] = ACTIONS(2043), + [anon_sym_RBRACE] = ACTIONS(2049), + [anon_sym_try] = ACTIONS(2043), + [anon_sym_catch] = ACTIONS(2043), + [anon_sym_return] = ACTIONS(2043), + [anon_sym_source] = ACTIONS(2043), + [anon_sym_source_DASHenv] = ACTIONS(2043), + [anon_sym_register] = ACTIONS(2043), + [anon_sym_hide] = ACTIONS(2043), + [anon_sym_hide_DASHenv] = ACTIONS(2043), + [anon_sym_overlay] = ACTIONS(2043), + [anon_sym_new] = ACTIONS(2043), + [anon_sym_as] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2049), + [anon_sym_DOT_DOT2] = ACTIONS(2148), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2150), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2150), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2049), + [aux_sym__val_number_decimal_token1] = ACTIONS(2043), + [aux_sym__val_number_decimal_token2] = ACTIONS(2049), + [aux_sym__val_number_decimal_token3] = ACTIONS(2049), + [aux_sym__val_number_decimal_token4] = ACTIONS(2049), + [aux_sym__val_number_token1] = ACTIONS(2049), + [aux_sym__val_number_token2] = ACTIONS(2049), + [aux_sym__val_number_token3] = ACTIONS(2049), + [anon_sym_DQUOTE] = ACTIONS(2049), + [sym__str_single_quotes] = ACTIONS(2049), + [sym__str_back_ticks] = ACTIONS(2049), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2049), + [anon_sym_PLUS] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(247), + }, + [416] = { + [sym_comment] = STATE(416), + [anon_sym_export] = ACTIONS(2051), + [anon_sym_alias] = ACTIONS(2051), + [anon_sym_let] = ACTIONS(2051), + [anon_sym_let_DASHenv] = ACTIONS(2051), + [anon_sym_mut] = ACTIONS(2051), + [anon_sym_const] = ACTIONS(2051), + [aux_sym_cmd_identifier_token1] = ACTIONS(2051), + [aux_sym_cmd_identifier_token2] = ACTIONS(2051), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [aux_sym_cmd_identifier_token6] = ACTIONS(2051), + [aux_sym_cmd_identifier_token7] = ACTIONS(2051), + [aux_sym_cmd_identifier_token8] = ACTIONS(2051), + [aux_sym_cmd_identifier_token9] = ACTIONS(2051), + [aux_sym_cmd_identifier_token10] = ACTIONS(2051), + [aux_sym_cmd_identifier_token11] = ACTIONS(2051), + [aux_sym_cmd_identifier_token12] = ACTIONS(2051), + [aux_sym_cmd_identifier_token13] = ACTIONS(2051), + [aux_sym_cmd_identifier_token14] = ACTIONS(2051), + [aux_sym_cmd_identifier_token15] = ACTIONS(2051), + [aux_sym_cmd_identifier_token16] = ACTIONS(2051), + [aux_sym_cmd_identifier_token17] = ACTIONS(2051), + [aux_sym_cmd_identifier_token18] = ACTIONS(2051), + [aux_sym_cmd_identifier_token19] = ACTIONS(2051), + [aux_sym_cmd_identifier_token20] = ACTIONS(2051), + [aux_sym_cmd_identifier_token21] = ACTIONS(2051), + [aux_sym_cmd_identifier_token22] = ACTIONS(2051), + [aux_sym_cmd_identifier_token23] = ACTIONS(2051), + [aux_sym_cmd_identifier_token24] = ACTIONS(2051), + [aux_sym_cmd_identifier_token25] = ACTIONS(2051), + [aux_sym_cmd_identifier_token26] = ACTIONS(2051), + [aux_sym_cmd_identifier_token27] = ACTIONS(2051), + [aux_sym_cmd_identifier_token28] = ACTIONS(2051), + [aux_sym_cmd_identifier_token29] = ACTIONS(2051), + [aux_sym_cmd_identifier_token30] = ACTIONS(2051), + [aux_sym_cmd_identifier_token31] = ACTIONS(2051), + [aux_sym_cmd_identifier_token32] = ACTIONS(2051), + [aux_sym_cmd_identifier_token33] = ACTIONS(2051), + [aux_sym_cmd_identifier_token34] = ACTIONS(2051), + [aux_sym_cmd_identifier_token35] = ACTIONS(2051), + [aux_sym_cmd_identifier_token36] = ACTIONS(2051), + [anon_sym_true] = ACTIONS(2057), + [anon_sym_false] = ACTIONS(2057), + [anon_sym_null] = ACTIONS(2057), + [aux_sym_cmd_identifier_token38] = ACTIONS(2051), + [aux_sym_cmd_identifier_token39] = ACTIONS(2057), + [aux_sym_cmd_identifier_token40] = ACTIONS(2057), + [anon_sym_def] = ACTIONS(2051), + [anon_sym_export_DASHenv] = ACTIONS(2051), + [anon_sym_extern] = ACTIONS(2051), + [anon_sym_module] = ACTIONS(2051), + [anon_sym_use] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_DOLLAR] = ACTIONS(2057), + [anon_sym_error] = ACTIONS(2051), + [anon_sym_list] = ACTIONS(2051), + [anon_sym_DASH] = ACTIONS(2051), + [anon_sym_break] = ACTIONS(2051), + [anon_sym_continue] = ACTIONS(2051), + [anon_sym_for] = ACTIONS(2051), + [anon_sym_in] = ACTIONS(2051), + [anon_sym_loop] = ACTIONS(2051), + [anon_sym_make] = ACTIONS(2051), + [anon_sym_while] = ACTIONS(2051), + [anon_sym_do] = ACTIONS(2051), + [anon_sym_if] = ACTIONS(2051), + [anon_sym_else] = ACTIONS(2051), + [anon_sym_match] = ACTIONS(2051), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2051), + [anon_sym_catch] = ACTIONS(2051), + [anon_sym_return] = ACTIONS(2051), + [anon_sym_source] = ACTIONS(2051), + [anon_sym_source_DASHenv] = ACTIONS(2051), + [anon_sym_register] = ACTIONS(2051), + [anon_sym_hide] = ACTIONS(2051), + [anon_sym_hide_DASHenv] = ACTIONS(2051), + [anon_sym_overlay] = ACTIONS(2051), + [anon_sym_new] = ACTIONS(2051), + [anon_sym_as] = ACTIONS(2051), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2057), + [anon_sym_DOT_DOT2] = ACTIONS(2152), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2154), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2154), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2057), + [aux_sym__val_number_decimal_token1] = ACTIONS(2051), + [aux_sym__val_number_decimal_token2] = ACTIONS(2057), + [aux_sym__val_number_decimal_token3] = ACTIONS(2057), + [aux_sym__val_number_decimal_token4] = ACTIONS(2057), + [aux_sym__val_number_token1] = ACTIONS(2057), + [aux_sym__val_number_token2] = ACTIONS(2057), + [aux_sym__val_number_token3] = ACTIONS(2057), + [anon_sym_DQUOTE] = ACTIONS(2057), + [sym__str_single_quotes] = ACTIONS(2057), + [sym__str_back_ticks] = ACTIONS(2057), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2051), + [anon_sym_POUND] = ACTIONS(247), + }, + [417] = { + [sym_comment] = STATE(417), + [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), + [aux_sym_cmd_identifier_token1] = ACTIONS(2061), + [aux_sym_cmd_identifier_token2] = ACTIONS(2061), + [aux_sym_cmd_identifier_token3] = ACTIONS(2061), + [aux_sym_cmd_identifier_token4] = ACTIONS(2061), + [aux_sym_cmd_identifier_token5] = ACTIONS(2061), + [aux_sym_cmd_identifier_token6] = ACTIONS(2061), + [aux_sym_cmd_identifier_token7] = ACTIONS(2061), + [aux_sym_cmd_identifier_token8] = ACTIONS(2061), + [aux_sym_cmd_identifier_token9] = ACTIONS(2061), + [aux_sym_cmd_identifier_token10] = ACTIONS(2061), + [aux_sym_cmd_identifier_token11] = ACTIONS(2061), + [aux_sym_cmd_identifier_token12] = ACTIONS(2061), + [aux_sym_cmd_identifier_token13] = ACTIONS(2061), + [aux_sym_cmd_identifier_token14] = ACTIONS(2061), + [aux_sym_cmd_identifier_token15] = ACTIONS(2061), + [aux_sym_cmd_identifier_token16] = ACTIONS(2061), + [aux_sym_cmd_identifier_token17] = ACTIONS(2061), + [aux_sym_cmd_identifier_token18] = ACTIONS(2061), + [aux_sym_cmd_identifier_token19] = ACTIONS(2061), + [aux_sym_cmd_identifier_token20] = ACTIONS(2061), + [aux_sym_cmd_identifier_token21] = ACTIONS(2061), + [aux_sym_cmd_identifier_token22] = ACTIONS(2061), + [aux_sym_cmd_identifier_token23] = ACTIONS(2061), + [aux_sym_cmd_identifier_token24] = ACTIONS(2061), + [aux_sym_cmd_identifier_token25] = ACTIONS(2061), + [aux_sym_cmd_identifier_token26] = ACTIONS(2061), + [aux_sym_cmd_identifier_token27] = ACTIONS(2061), + [aux_sym_cmd_identifier_token28] = ACTIONS(2061), + [aux_sym_cmd_identifier_token29] = ACTIONS(2061), + [aux_sym_cmd_identifier_token30] = ACTIONS(2061), + [aux_sym_cmd_identifier_token31] = ACTIONS(2061), + [aux_sym_cmd_identifier_token32] = ACTIONS(2061), + [aux_sym_cmd_identifier_token33] = ACTIONS(2061), + [aux_sym_cmd_identifier_token34] = ACTIONS(2061), + [aux_sym_cmd_identifier_token35] = ACTIONS(2061), + [aux_sym_cmd_identifier_token36] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2067), + [anon_sym_false] = ACTIONS(2067), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token38] = ACTIONS(2061), + [aux_sym_cmd_identifier_token39] = ACTIONS(2067), + [aux_sym_cmd_identifier_token40] = ACTIONS(2067), + [anon_sym_def] = 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_LPAREN] = ACTIONS(2067), + [anon_sym_DOLLAR] = ACTIONS(2067), + [anon_sym_error] = ACTIONS(2061), + [anon_sym_list] = ACTIONS(2061), + [anon_sym_DASH] = ACTIONS(2061), + [anon_sym_break] = ACTIONS(2061), + [anon_sym_continue] = ACTIONS(2061), + [anon_sym_for] = ACTIONS(2061), + [anon_sym_in] = ACTIONS(2061), + [anon_sym_loop] = ACTIONS(2061), + [anon_sym_make] = ACTIONS(2061), + [anon_sym_while] = ACTIONS(2061), + [anon_sym_do] = ACTIONS(2061), + [anon_sym_if] = ACTIONS(2061), + [anon_sym_else] = ACTIONS(2061), + [anon_sym_match] = ACTIONS(2061), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_try] = ACTIONS(2061), + [anon_sym_catch] = 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_new] = ACTIONS(2061), + [anon_sym_as] = ACTIONS(2061), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2067), + [anon_sym_DOT_DOT2] = ACTIONS(2156), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2158), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2158), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2067), + [aux_sym__val_number_decimal_token1] = ACTIONS(2061), + [aux_sym__val_number_decimal_token2] = ACTIONS(2067), + [aux_sym__val_number_decimal_token3] = ACTIONS(2067), + [aux_sym__val_number_decimal_token4] = ACTIONS(2067), + [aux_sym__val_number_token1] = ACTIONS(2067), + [aux_sym__val_number_token2] = ACTIONS(2067), + [aux_sym__val_number_token3] = ACTIONS(2067), + [anon_sym_DQUOTE] = ACTIONS(2067), + [sym__str_single_quotes] = ACTIONS(2067), + [sym__str_back_ticks] = ACTIONS(2067), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2061), + [anon_sym_POUND] = ACTIONS(247), + }, + [418] = { + [sym_comment] = STATE(418), + [anon_sym_export] = ACTIONS(1786), + [anon_sym_alias] = ACTIONS(1786), + [anon_sym_let] = ACTIONS(1786), + [anon_sym_let_DASHenv] = ACTIONS(1786), + [anon_sym_mut] = ACTIONS(1786), + [anon_sym_const] = ACTIONS(1786), + [aux_sym_cmd_identifier_token1] = ACTIONS(1786), + [aux_sym_cmd_identifier_token2] = ACTIONS(1786), + [aux_sym_cmd_identifier_token3] = ACTIONS(1786), + [aux_sym_cmd_identifier_token4] = ACTIONS(1786), + [aux_sym_cmd_identifier_token5] = ACTIONS(1786), + [aux_sym_cmd_identifier_token6] = ACTIONS(1786), + [aux_sym_cmd_identifier_token7] = ACTIONS(1786), + [aux_sym_cmd_identifier_token8] = ACTIONS(1786), + [aux_sym_cmd_identifier_token9] = ACTIONS(1786), + [aux_sym_cmd_identifier_token10] = ACTIONS(1786), + [aux_sym_cmd_identifier_token11] = ACTIONS(1786), + [aux_sym_cmd_identifier_token12] = ACTIONS(1786), + [aux_sym_cmd_identifier_token13] = ACTIONS(1786), + [aux_sym_cmd_identifier_token14] = ACTIONS(1786), + [aux_sym_cmd_identifier_token15] = ACTIONS(1786), + [aux_sym_cmd_identifier_token16] = ACTIONS(1786), + [aux_sym_cmd_identifier_token17] = ACTIONS(1786), + [aux_sym_cmd_identifier_token18] = ACTIONS(1786), + [aux_sym_cmd_identifier_token19] = ACTIONS(1786), + [aux_sym_cmd_identifier_token20] = ACTIONS(1786), + [aux_sym_cmd_identifier_token21] = ACTIONS(1786), + [aux_sym_cmd_identifier_token22] = ACTIONS(1786), + [aux_sym_cmd_identifier_token23] = ACTIONS(1786), + [aux_sym_cmd_identifier_token24] = ACTIONS(1786), + [aux_sym_cmd_identifier_token25] = ACTIONS(1786), + [aux_sym_cmd_identifier_token26] = ACTIONS(1786), + [aux_sym_cmd_identifier_token27] = ACTIONS(1786), + [aux_sym_cmd_identifier_token28] = ACTIONS(1786), + [aux_sym_cmd_identifier_token29] = ACTIONS(1786), + [aux_sym_cmd_identifier_token30] = ACTIONS(1786), + [aux_sym_cmd_identifier_token31] = ACTIONS(1786), + [aux_sym_cmd_identifier_token32] = ACTIONS(1786), + [aux_sym_cmd_identifier_token33] = ACTIONS(1786), + [aux_sym_cmd_identifier_token34] = ACTIONS(1786), + [aux_sym_cmd_identifier_token35] = ACTIONS(1786), + [aux_sym_cmd_identifier_token36] = ACTIONS(1786), + [anon_sym_true] = ACTIONS(1786), + [anon_sym_false] = ACTIONS(1786), + [anon_sym_null] = ACTIONS(1786), + [aux_sym_cmd_identifier_token38] = ACTIONS(1786), + [aux_sym_cmd_identifier_token39] = ACTIONS(1786), + [aux_sym_cmd_identifier_token40] = ACTIONS(1786), + [anon_sym_def] = ACTIONS(1786), + [anon_sym_export_DASHenv] = ACTIONS(1786), + [anon_sym_extern] = ACTIONS(1786), + [anon_sym_module] = ACTIONS(1786), + [anon_sym_use] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_DOLLAR] = ACTIONS(1786), + [anon_sym_error] = ACTIONS(1786), + [anon_sym_list] = ACTIONS(1786), + [anon_sym_DASH] = ACTIONS(1786), + [anon_sym_break] = ACTIONS(1786), + [anon_sym_continue] = ACTIONS(1786), + [anon_sym_for] = ACTIONS(1786), + [anon_sym_in] = ACTIONS(1786), + [anon_sym_loop] = ACTIONS(1786), + [anon_sym_make] = ACTIONS(1786), + [anon_sym_while] = ACTIONS(1786), + [anon_sym_do] = ACTIONS(1786), + [anon_sym_if] = ACTIONS(1786), + [anon_sym_else] = ACTIONS(1786), + [anon_sym_match] = ACTIONS(1786), + [anon_sym_RBRACE] = ACTIONS(1786), + [anon_sym_try] = ACTIONS(1786), + [anon_sym_catch] = ACTIONS(1786), + [anon_sym_return] = ACTIONS(1786), + [anon_sym_source] = ACTIONS(1786), + [anon_sym_source_DASHenv] = ACTIONS(1786), + [anon_sym_register] = ACTIONS(1786), + [anon_sym_hide] = ACTIONS(1786), + [anon_sym_hide_DASHenv] = ACTIONS(1786), + [anon_sym_overlay] = ACTIONS(1786), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_as] = ACTIONS(1786), + [anon_sym_LPAREN2] = ACTIONS(1788), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1786), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1786), + [aux_sym__val_number_decimal_token1] = ACTIONS(1786), + [aux_sym__val_number_decimal_token2] = ACTIONS(1786), + [aux_sym__val_number_decimal_token3] = ACTIONS(1786), + [aux_sym__val_number_decimal_token4] = ACTIONS(1786), + [aux_sym__val_number_token1] = ACTIONS(1786), + [aux_sym__val_number_token2] = ACTIONS(1786), + [aux_sym__val_number_token3] = ACTIONS(1786), + [anon_sym_DQUOTE] = ACTIONS(1786), + [sym__str_single_quotes] = ACTIONS(1786), + [sym__str_back_ticks] = ACTIONS(1786), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1786), + [sym__entry_separator] = ACTIONS(1794), + [anon_sym_PLUS] = ACTIONS(1786), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1495), + [anon_sym_POUND] = ACTIONS(3), + }, + [419] = { + [sym_comment] = STATE(419), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_alias] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_let_DASHenv] = ACTIONS(2160), + [anon_sym_mut] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [aux_sym_cmd_identifier_token1] = ACTIONS(2160), + [aux_sym_cmd_identifier_token2] = ACTIONS(2160), + [aux_sym_cmd_identifier_token3] = ACTIONS(2160), + [aux_sym_cmd_identifier_token4] = ACTIONS(2160), + [aux_sym_cmd_identifier_token5] = ACTIONS(2160), + [aux_sym_cmd_identifier_token6] = ACTIONS(2160), + [aux_sym_cmd_identifier_token7] = ACTIONS(2160), + [aux_sym_cmd_identifier_token8] = ACTIONS(2160), + [aux_sym_cmd_identifier_token9] = ACTIONS(2160), + [aux_sym_cmd_identifier_token10] = ACTIONS(2160), + [aux_sym_cmd_identifier_token11] = ACTIONS(2160), + [aux_sym_cmd_identifier_token12] = ACTIONS(2160), + [aux_sym_cmd_identifier_token13] = ACTIONS(2160), + [aux_sym_cmd_identifier_token14] = ACTIONS(2160), + [aux_sym_cmd_identifier_token15] = ACTIONS(2160), + [aux_sym_cmd_identifier_token16] = ACTIONS(2160), + [aux_sym_cmd_identifier_token17] = ACTIONS(2160), + [aux_sym_cmd_identifier_token18] = ACTIONS(2160), + [aux_sym_cmd_identifier_token19] = ACTIONS(2160), + [aux_sym_cmd_identifier_token20] = ACTIONS(2160), + [aux_sym_cmd_identifier_token21] = ACTIONS(2160), + [aux_sym_cmd_identifier_token22] = ACTIONS(2160), + [aux_sym_cmd_identifier_token23] = ACTIONS(2160), + [aux_sym_cmd_identifier_token24] = ACTIONS(2160), + [aux_sym_cmd_identifier_token25] = ACTIONS(2160), + [aux_sym_cmd_identifier_token26] = ACTIONS(2160), + [aux_sym_cmd_identifier_token27] = ACTIONS(2160), + [aux_sym_cmd_identifier_token28] = ACTIONS(2160), + [aux_sym_cmd_identifier_token29] = ACTIONS(2160), + [aux_sym_cmd_identifier_token30] = ACTIONS(2160), + [aux_sym_cmd_identifier_token31] = ACTIONS(2160), + [aux_sym_cmd_identifier_token32] = ACTIONS(2160), + [aux_sym_cmd_identifier_token33] = ACTIONS(2160), + [aux_sym_cmd_identifier_token34] = ACTIONS(2160), + [aux_sym_cmd_identifier_token35] = ACTIONS(2160), + [aux_sym_cmd_identifier_token36] = ACTIONS(2160), + [anon_sym_true] = ACTIONS(2160), + [anon_sym_false] = ACTIONS(2160), + [anon_sym_null] = ACTIONS(2160), + [aux_sym_cmd_identifier_token38] = ACTIONS(2160), + [aux_sym_cmd_identifier_token39] = ACTIONS(2160), + [aux_sym_cmd_identifier_token40] = ACTIONS(2160), + [anon_sym_def] = ACTIONS(2160), + [anon_sym_export_DASHenv] = ACTIONS(2160), + [anon_sym_extern] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_use] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_DOLLAR] = ACTIONS(2160), + [anon_sym_error] = ACTIONS(2160), + [anon_sym_list] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_in] = ACTIONS(2160), + [anon_sym_loop] = ACTIONS(2160), + [anon_sym_make] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_else] = ACTIONS(2160), + [anon_sym_match] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_catch] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_source] = ACTIONS(2160), + [anon_sym_source_DASHenv] = ACTIONS(2160), + [anon_sym_register] = ACTIONS(2160), + [anon_sym_hide] = ACTIONS(2160), + [anon_sym_hide_DASHenv] = ACTIONS(2160), + [anon_sym_overlay] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_as] = ACTIONS(2160), + [anon_sym_LPAREN2] = ACTIONS(1798), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2160), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2160), + [aux_sym__val_number_decimal_token1] = ACTIONS(2160), + [aux_sym__val_number_decimal_token2] = ACTIONS(2160), + [aux_sym__val_number_decimal_token3] = ACTIONS(2160), + [aux_sym__val_number_decimal_token4] = ACTIONS(2160), + [aux_sym__val_number_token1] = ACTIONS(2160), + [aux_sym__val_number_token2] = ACTIONS(2160), + [aux_sym__val_number_token3] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [sym__str_single_quotes] = ACTIONS(2160), + [sym__str_back_ticks] = ACTIONS(2160), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2160), + [sym__entry_separator] = ACTIONS(2162), + [anon_sym_PLUS] = ACTIONS(2160), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1806), + [anon_sym_POUND] = ACTIONS(3), + }, + [420] = { + [sym_expr_parenthesized] = STATE(4326), + [sym__spread_parenthesized] = STATE(4835), + [sym_val_range] = STATE(4912), + [sym__val_range] = STATE(7672), + [sym__val_range_with_end] = STATE(7329), + [sym__value] = STATE(4912), + [sym_val_nothing] = STATE(4945), + [sym_val_bool] = STATE(4563), + [sym__spread_variable] = STATE(4913), + [sym_val_variable] = STATE(4405), + [sym_val_number] = STATE(4945), + [sym__val_number_decimal] = STATE(3918), + [sym__val_number] = STATE(4892), + [sym_val_duration] = STATE(4945), + [sym_val_filesize] = STATE(4945), + [sym_val_binary] = STATE(4945), + [sym_val_string] = STATE(4945), + [sym__str_double_quotes] = STATE(4462), + [sym_val_interpolated] = STATE(4945), + [sym__inter_single_quotes] = STATE(4775), + [sym__inter_double_quotes] = STATE(4778), + [sym_val_list] = STATE(4945), + [sym__spread_list] = STATE(4835), + [sym_val_record] = STATE(4945), + [sym_val_table] = STATE(4945), + [sym_val_closure] = STATE(4945), + [sym__cmd_arg] = STATE(4840), + [sym_redirection] = STATE(4858), + [sym__flag] = STATE(4933), + [sym_short_flag] = STATE(4829), + [sym_long_flag] = STATE(4829), + [sym_unquoted] = STATE(4465), + [sym__unquoted_with_expr] = STATE(4917), + [sym__unquoted_anonymous_prefix] = STATE(6762), + [sym_comment] = STATE(420), + [ts_builtin_sym_end] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(2164), + [anon_sym_false] = ACTIONS(2164), + [anon_sym_null] = ACTIONS(2166), + [aux_sym_cmd_identifier_token38] = ACTIONS(2168), + [aux_sym_cmd_identifier_token39] = ACTIONS(2168), + [aux_sym_cmd_identifier_token40] = ACTIONS(2168), + [sym__newline] = ACTIONS(2081), + [sym__space] = ACTIONS(2083), + [anon_sym_SEMI] = ACTIONS(2081), + [anon_sym_PIPE] = ACTIONS(2081), + [anon_sym_err_GT_PIPE] = ACTIONS(2081), + [anon_sym_out_GT_PIPE] = ACTIONS(2081), + [anon_sym_e_GT_PIPE] = ACTIONS(2081), + [anon_sym_o_GT_PIPE] = ACTIONS(2081), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2081), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2081), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2081), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2081), + [anon_sym_LBRACK] = ACTIONS(2170), + [anon_sym_LPAREN] = ACTIONS(2172), + [anon_sym_DOLLAR] = ACTIONS(2174), + [anon_sym_DASH_DASH] = ACTIONS(2176), + [anon_sym_DASH] = ACTIONS(2178), + [aux_sym_ctrl_match_token1] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(2182), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2184), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2186), + [anon_sym_DOT_DOT_LT] = ACTIONS(2186), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2188), + [aux_sym__val_number_decimal_token1] = ACTIONS(2190), + [aux_sym__val_number_decimal_token2] = ACTIONS(2190), + [aux_sym__val_number_decimal_token3] = ACTIONS(2192), + [aux_sym__val_number_decimal_token4] = ACTIONS(2194), + [aux_sym__val_number_token1] = ACTIONS(2196), + [aux_sym__val_number_token2] = ACTIONS(2196), + [aux_sym__val_number_token3] = ACTIONS(2196), + [anon_sym_0b] = ACTIONS(2198), + [anon_sym_0o] = ACTIONS(2200), + [anon_sym_0x] = ACTIONS(2200), + [sym_val_date] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2204), + [sym__str_single_quotes] = ACTIONS(2206), + [sym__str_back_ticks] = ACTIONS(2206), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2208), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2210), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2212), + [anon_sym_err_GT] = ACTIONS(2214), + [anon_sym_out_GT] = ACTIONS(2214), + [anon_sym_e_GT] = ACTIONS(2214), + [anon_sym_o_GT] = ACTIONS(2214), + [anon_sym_err_PLUSout_GT] = ACTIONS(2214), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2214), + [anon_sym_o_PLUSe_GT] = ACTIONS(2214), + [anon_sym_e_PLUSo_GT] = ACTIONS(2214), + [anon_sym_err_GT_GT] = ACTIONS(2214), + [anon_sym_out_GT_GT] = ACTIONS(2214), + [anon_sym_e_GT_GT] = ACTIONS(2214), + [anon_sym_o_GT_GT] = ACTIONS(2214), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2214), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2214), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2214), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2214), + [aux_sym_unquoted_token1] = ACTIONS(2216), + [anon_sym_POUND] = ACTIONS(3), + }, + [421] = { + [sym_comment] = STATE(421), + [anon_sym_export] = ACTIONS(1796), + [anon_sym_alias] = ACTIONS(1796), + [anon_sym_let] = ACTIONS(1796), + [anon_sym_let_DASHenv] = ACTIONS(1796), + [anon_sym_mut] = ACTIONS(1796), + [anon_sym_const] = ACTIONS(1796), + [aux_sym_cmd_identifier_token1] = ACTIONS(1796), + [aux_sym_cmd_identifier_token2] = ACTIONS(1796), + [aux_sym_cmd_identifier_token3] = ACTIONS(1796), + [aux_sym_cmd_identifier_token4] = ACTIONS(1796), + [aux_sym_cmd_identifier_token5] = ACTIONS(1796), + [aux_sym_cmd_identifier_token6] = ACTIONS(1796), + [aux_sym_cmd_identifier_token7] = ACTIONS(1796), + [aux_sym_cmd_identifier_token8] = ACTIONS(1796), + [aux_sym_cmd_identifier_token9] = ACTIONS(1796), + [aux_sym_cmd_identifier_token10] = ACTIONS(1796), + [aux_sym_cmd_identifier_token11] = ACTIONS(1796), + [aux_sym_cmd_identifier_token12] = ACTIONS(1796), + [aux_sym_cmd_identifier_token13] = ACTIONS(1796), + [aux_sym_cmd_identifier_token14] = ACTIONS(1796), + [aux_sym_cmd_identifier_token15] = ACTIONS(1796), + [aux_sym_cmd_identifier_token16] = ACTIONS(1796), + [aux_sym_cmd_identifier_token17] = ACTIONS(1796), + [aux_sym_cmd_identifier_token18] = ACTIONS(1796), + [aux_sym_cmd_identifier_token19] = ACTIONS(1796), + [aux_sym_cmd_identifier_token20] = ACTIONS(1796), + [aux_sym_cmd_identifier_token21] = ACTIONS(1796), + [aux_sym_cmd_identifier_token22] = ACTIONS(1796), + [aux_sym_cmd_identifier_token23] = ACTIONS(1796), + [aux_sym_cmd_identifier_token24] = ACTIONS(1796), + [aux_sym_cmd_identifier_token25] = ACTIONS(1796), + [aux_sym_cmd_identifier_token26] = ACTIONS(1796), + [aux_sym_cmd_identifier_token27] = ACTIONS(1796), + [aux_sym_cmd_identifier_token28] = ACTIONS(1796), + [aux_sym_cmd_identifier_token29] = ACTIONS(1796), + [aux_sym_cmd_identifier_token30] = ACTIONS(1796), + [aux_sym_cmd_identifier_token31] = ACTIONS(1796), + [aux_sym_cmd_identifier_token32] = ACTIONS(1796), + [aux_sym_cmd_identifier_token33] = ACTIONS(1796), + [aux_sym_cmd_identifier_token34] = ACTIONS(1796), + [aux_sym_cmd_identifier_token35] = ACTIONS(1796), + [aux_sym_cmd_identifier_token36] = ACTIONS(1796), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_null] = ACTIONS(1796), + [aux_sym_cmd_identifier_token38] = ACTIONS(1796), + [aux_sym_cmd_identifier_token39] = ACTIONS(1796), + [aux_sym_cmd_identifier_token40] = ACTIONS(1796), + [anon_sym_def] = ACTIONS(1796), + [anon_sym_export_DASHenv] = ACTIONS(1796), + [anon_sym_extern] = ACTIONS(1796), + [anon_sym_module] = ACTIONS(1796), + [anon_sym_use] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(1796), + [anon_sym_DOLLAR] = ACTIONS(1796), + [anon_sym_error] = ACTIONS(1796), + [anon_sym_list] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_for] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_loop] = ACTIONS(1796), + [anon_sym_make] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_do] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_match] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_catch] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_source] = ACTIONS(1796), + [anon_sym_source_DASHenv] = ACTIONS(1796), + [anon_sym_register] = ACTIONS(1796), + [anon_sym_hide] = ACTIONS(1796), + [anon_sym_hide_DASHenv] = ACTIONS(1796), + [anon_sym_overlay] = ACTIONS(1796), + [anon_sym_new] = ACTIONS(1796), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LPAREN2] = ACTIONS(1798), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1796), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1796), + [aux_sym__val_number_decimal_token1] = ACTIONS(1796), + [aux_sym__val_number_decimal_token2] = ACTIONS(1796), + [aux_sym__val_number_decimal_token3] = ACTIONS(1796), + [aux_sym__val_number_decimal_token4] = ACTIONS(1796), + [aux_sym__val_number_token1] = ACTIONS(1796), + [aux_sym__val_number_token2] = ACTIONS(1796), + [aux_sym__val_number_token3] = ACTIONS(1796), + [anon_sym_DQUOTE] = ACTIONS(1796), + [sym__str_single_quotes] = ACTIONS(1796), + [sym__str_back_ticks] = ACTIONS(1796), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1796), + [sym__entry_separator] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1796), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1806), + [anon_sym_POUND] = ACTIONS(3), + }, + [422] = { + [sym_comment] = STATE(422), + [anon_sym_export] = ACTIONS(2218), + [anon_sym_alias] = ACTIONS(2218), + [anon_sym_let] = ACTIONS(2218), + [anon_sym_let_DASHenv] = ACTIONS(2218), + [anon_sym_mut] = ACTIONS(2218), + [anon_sym_const] = ACTIONS(2218), + [aux_sym_cmd_identifier_token1] = ACTIONS(2218), + [aux_sym_cmd_identifier_token2] = ACTIONS(2218), + [aux_sym_cmd_identifier_token3] = ACTIONS(2218), + [aux_sym_cmd_identifier_token4] = ACTIONS(2218), + [aux_sym_cmd_identifier_token5] = ACTIONS(2218), + [aux_sym_cmd_identifier_token6] = ACTIONS(2218), + [aux_sym_cmd_identifier_token7] = ACTIONS(2218), + [aux_sym_cmd_identifier_token8] = ACTIONS(2218), + [aux_sym_cmd_identifier_token9] = ACTIONS(2218), + [aux_sym_cmd_identifier_token10] = ACTIONS(2218), + [aux_sym_cmd_identifier_token11] = ACTIONS(2218), + [aux_sym_cmd_identifier_token12] = ACTIONS(2218), + [aux_sym_cmd_identifier_token13] = ACTIONS(2218), + [aux_sym_cmd_identifier_token14] = ACTIONS(2218), + [aux_sym_cmd_identifier_token15] = ACTIONS(2218), + [aux_sym_cmd_identifier_token16] = ACTIONS(2218), + [aux_sym_cmd_identifier_token17] = ACTIONS(2218), + [aux_sym_cmd_identifier_token18] = ACTIONS(2218), + [aux_sym_cmd_identifier_token19] = ACTIONS(2218), + [aux_sym_cmd_identifier_token20] = ACTIONS(2218), + [aux_sym_cmd_identifier_token21] = ACTIONS(2218), + [aux_sym_cmd_identifier_token22] = ACTIONS(2218), + [aux_sym_cmd_identifier_token23] = ACTIONS(2218), + [aux_sym_cmd_identifier_token24] = ACTIONS(2218), + [aux_sym_cmd_identifier_token25] = ACTIONS(2218), + [aux_sym_cmd_identifier_token26] = ACTIONS(2218), + [aux_sym_cmd_identifier_token27] = ACTIONS(2218), + [aux_sym_cmd_identifier_token28] = ACTIONS(2218), + [aux_sym_cmd_identifier_token29] = ACTIONS(2218), + [aux_sym_cmd_identifier_token30] = ACTIONS(2218), + [aux_sym_cmd_identifier_token31] = ACTIONS(2218), + [aux_sym_cmd_identifier_token32] = ACTIONS(2218), + [aux_sym_cmd_identifier_token33] = ACTIONS(2218), + [aux_sym_cmd_identifier_token34] = ACTIONS(2218), + [aux_sym_cmd_identifier_token35] = ACTIONS(2218), + [aux_sym_cmd_identifier_token36] = ACTIONS(2218), + [anon_sym_true] = ACTIONS(2218), + [anon_sym_false] = ACTIONS(2218), + [anon_sym_null] = ACTIONS(2218), + [aux_sym_cmd_identifier_token38] = ACTIONS(2218), + [aux_sym_cmd_identifier_token39] = ACTIONS(2218), + [aux_sym_cmd_identifier_token40] = ACTIONS(2218), + [anon_sym_def] = ACTIONS(2218), + [anon_sym_export_DASHenv] = ACTIONS(2218), + [anon_sym_extern] = ACTIONS(2218), + [anon_sym_module] = ACTIONS(2218), + [anon_sym_use] = ACTIONS(2218), + [anon_sym_LPAREN] = ACTIONS(2218), + [anon_sym_DOLLAR] = ACTIONS(2218), + [anon_sym_error] = ACTIONS(2218), + [anon_sym_list] = ACTIONS(2218), + [anon_sym_DASH] = ACTIONS(2218), + [anon_sym_break] = ACTIONS(2218), + [anon_sym_continue] = ACTIONS(2218), + [anon_sym_for] = ACTIONS(2218), + [anon_sym_in] = ACTIONS(2218), + [anon_sym_loop] = ACTIONS(2218), + [anon_sym_make] = ACTIONS(2218), + [anon_sym_while] = ACTIONS(2218), + [anon_sym_do] = ACTIONS(2218), + [anon_sym_if] = ACTIONS(2218), + [anon_sym_else] = ACTIONS(2218), + [anon_sym_match] = ACTIONS(2218), + [anon_sym_RBRACE] = ACTIONS(2218), + [anon_sym_try] = ACTIONS(2218), + [anon_sym_catch] = ACTIONS(2218), + [anon_sym_return] = ACTIONS(2218), + [anon_sym_source] = ACTIONS(2218), + [anon_sym_source_DASHenv] = ACTIONS(2218), + [anon_sym_register] = ACTIONS(2218), + [anon_sym_hide] = ACTIONS(2218), + [anon_sym_hide_DASHenv] = ACTIONS(2218), + [anon_sym_overlay] = ACTIONS(2218), + [anon_sym_new] = ACTIONS(2218), + [anon_sym_as] = ACTIONS(2218), + [anon_sym_LPAREN2] = ACTIONS(2220), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2218), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2218), + [aux_sym__val_number_decimal_token1] = ACTIONS(2218), + [aux_sym__val_number_decimal_token2] = ACTIONS(2218), + [aux_sym__val_number_decimal_token3] = ACTIONS(2218), + [aux_sym__val_number_decimal_token4] = ACTIONS(2218), + [aux_sym__val_number_token1] = ACTIONS(2218), + [aux_sym__val_number_token2] = ACTIONS(2218), + [aux_sym__val_number_token3] = ACTIONS(2218), + [anon_sym_DQUOTE] = ACTIONS(2218), + [sym__str_single_quotes] = ACTIONS(2218), + [sym__str_back_ticks] = ACTIONS(2218), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2218), + [sym__entry_separator] = ACTIONS(2222), + [anon_sym_PLUS] = ACTIONS(2218), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1553), + [anon_sym_POUND] = ACTIONS(3), + }, + [423] = { + [sym_comment] = STATE(423), + [anon_sym_export] = ACTIONS(2224), + [anon_sym_alias] = ACTIONS(2224), + [anon_sym_let] = ACTIONS(2224), + [anon_sym_let_DASHenv] = ACTIONS(2224), + [anon_sym_mut] = ACTIONS(2224), + [anon_sym_const] = ACTIONS(2224), + [aux_sym_cmd_identifier_token1] = ACTIONS(2224), + [aux_sym_cmd_identifier_token2] = ACTIONS(2224), + [aux_sym_cmd_identifier_token3] = ACTIONS(2224), + [aux_sym_cmd_identifier_token4] = ACTIONS(2224), + [aux_sym_cmd_identifier_token5] = ACTIONS(2224), + [aux_sym_cmd_identifier_token6] = ACTIONS(2224), + [aux_sym_cmd_identifier_token7] = ACTIONS(2224), + [aux_sym_cmd_identifier_token8] = ACTIONS(2224), + [aux_sym_cmd_identifier_token9] = ACTIONS(2224), + [aux_sym_cmd_identifier_token10] = ACTIONS(2224), + [aux_sym_cmd_identifier_token11] = ACTIONS(2224), + [aux_sym_cmd_identifier_token12] = ACTIONS(2224), + [aux_sym_cmd_identifier_token13] = ACTIONS(2224), + [aux_sym_cmd_identifier_token14] = ACTIONS(2224), + [aux_sym_cmd_identifier_token15] = ACTIONS(2224), + [aux_sym_cmd_identifier_token16] = ACTIONS(2224), + [aux_sym_cmd_identifier_token17] = ACTIONS(2224), + [aux_sym_cmd_identifier_token18] = ACTIONS(2224), + [aux_sym_cmd_identifier_token19] = ACTIONS(2224), + [aux_sym_cmd_identifier_token20] = ACTIONS(2224), + [aux_sym_cmd_identifier_token21] = ACTIONS(2224), + [aux_sym_cmd_identifier_token22] = ACTIONS(2224), + [aux_sym_cmd_identifier_token23] = ACTIONS(2224), + [aux_sym_cmd_identifier_token24] = ACTIONS(2224), + [aux_sym_cmd_identifier_token25] = ACTIONS(2224), + [aux_sym_cmd_identifier_token26] = ACTIONS(2224), + [aux_sym_cmd_identifier_token27] = ACTIONS(2224), + [aux_sym_cmd_identifier_token28] = ACTIONS(2224), + [aux_sym_cmd_identifier_token29] = ACTIONS(2224), + [aux_sym_cmd_identifier_token30] = ACTIONS(2224), + [aux_sym_cmd_identifier_token31] = ACTIONS(2224), + [aux_sym_cmd_identifier_token32] = ACTIONS(2224), + [aux_sym_cmd_identifier_token33] = ACTIONS(2224), + [aux_sym_cmd_identifier_token34] = ACTIONS(2224), + [aux_sym_cmd_identifier_token35] = ACTIONS(2224), + [aux_sym_cmd_identifier_token36] = ACTIONS(2224), + [anon_sym_true] = ACTIONS(2224), + [anon_sym_false] = ACTIONS(2224), + [anon_sym_null] = ACTIONS(2224), + [aux_sym_cmd_identifier_token38] = ACTIONS(2224), + [aux_sym_cmd_identifier_token39] = ACTIONS(2224), + [aux_sym_cmd_identifier_token40] = ACTIONS(2224), + [anon_sym_def] = ACTIONS(2224), + [anon_sym_export_DASHenv] = ACTIONS(2224), + [anon_sym_extern] = ACTIONS(2224), + [anon_sym_module] = ACTIONS(2224), + [anon_sym_use] = ACTIONS(2224), + [anon_sym_LPAREN] = ACTIONS(2224), + [anon_sym_DOLLAR] = ACTIONS(2224), + [anon_sym_error] = ACTIONS(2224), + [anon_sym_list] = ACTIONS(2224), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_break] = ACTIONS(2224), + [anon_sym_continue] = ACTIONS(2224), + [anon_sym_for] = ACTIONS(2224), + [anon_sym_in] = ACTIONS(2224), + [anon_sym_loop] = ACTIONS(2224), + [anon_sym_make] = ACTIONS(2224), + [anon_sym_while] = ACTIONS(2224), + [anon_sym_do] = ACTIONS(2224), + [anon_sym_if] = ACTIONS(2224), + [anon_sym_else] = ACTIONS(2224), + [anon_sym_match] = ACTIONS(2224), + [anon_sym_RBRACE] = ACTIONS(2224), + [anon_sym_try] = ACTIONS(2224), + [anon_sym_catch] = ACTIONS(2224), + [anon_sym_return] = ACTIONS(2224), + [anon_sym_source] = ACTIONS(2224), + [anon_sym_source_DASHenv] = ACTIONS(2224), + [anon_sym_register] = ACTIONS(2224), + [anon_sym_hide] = ACTIONS(2224), + [anon_sym_hide_DASHenv] = ACTIONS(2224), + [anon_sym_overlay] = ACTIONS(2224), + [anon_sym_new] = ACTIONS(2224), + [anon_sym_as] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2226), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2224), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2224), + [aux_sym__val_number_decimal_token1] = ACTIONS(2224), + [aux_sym__val_number_decimal_token2] = ACTIONS(2224), + [aux_sym__val_number_decimal_token3] = ACTIONS(2224), + [aux_sym__val_number_decimal_token4] = ACTIONS(2224), + [aux_sym__val_number_token1] = ACTIONS(2224), + [aux_sym__val_number_token2] = ACTIONS(2224), + [aux_sym__val_number_token3] = ACTIONS(2224), + [anon_sym_DQUOTE] = ACTIONS(2224), + [sym__str_single_quotes] = ACTIONS(2224), + [sym__str_back_ticks] = ACTIONS(2224), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2224), + [sym__entry_separator] = ACTIONS(2228), + [anon_sym_PLUS] = ACTIONS(2224), + [aux_sym__unquoted_in_record_token2] = ACTIONS(2230), + [anon_sym_POUND] = ACTIONS(3), + }, + [424] = { + [sym_comment] = STATE(424), + [anon_sym_export] = ACTIONS(1076), + [anon_sym_alias] = ACTIONS(1076), + [anon_sym_let] = ACTIONS(1076), + [anon_sym_let_DASHenv] = ACTIONS(1076), + [anon_sym_mut] = ACTIONS(1076), + [anon_sym_const] = ACTIONS(1076), + [aux_sym_cmd_identifier_token1] = ACTIONS(1076), + [aux_sym_cmd_identifier_token2] = ACTIONS(1076), + [aux_sym_cmd_identifier_token3] = ACTIONS(1076), + [aux_sym_cmd_identifier_token4] = ACTIONS(1076), + [aux_sym_cmd_identifier_token5] = ACTIONS(1076), + [aux_sym_cmd_identifier_token6] = ACTIONS(1076), + [aux_sym_cmd_identifier_token7] = ACTIONS(1076), + [aux_sym_cmd_identifier_token8] = ACTIONS(1076), + [aux_sym_cmd_identifier_token9] = ACTIONS(1076), + [aux_sym_cmd_identifier_token10] = ACTIONS(1076), + [aux_sym_cmd_identifier_token11] = ACTIONS(1076), + [aux_sym_cmd_identifier_token12] = ACTIONS(1076), + [aux_sym_cmd_identifier_token13] = ACTIONS(1076), + [aux_sym_cmd_identifier_token14] = ACTIONS(1076), + [aux_sym_cmd_identifier_token15] = ACTIONS(1076), + [aux_sym_cmd_identifier_token16] = ACTIONS(1076), + [aux_sym_cmd_identifier_token17] = ACTIONS(1076), + [aux_sym_cmd_identifier_token18] = ACTIONS(1076), + [aux_sym_cmd_identifier_token19] = ACTIONS(1076), + [aux_sym_cmd_identifier_token20] = ACTIONS(1076), + [aux_sym_cmd_identifier_token21] = ACTIONS(1076), + [aux_sym_cmd_identifier_token22] = ACTIONS(1076), + [aux_sym_cmd_identifier_token23] = ACTIONS(1076), + [aux_sym_cmd_identifier_token24] = ACTIONS(1076), + [aux_sym_cmd_identifier_token25] = ACTIONS(1076), + [aux_sym_cmd_identifier_token26] = ACTIONS(1076), + [aux_sym_cmd_identifier_token27] = ACTIONS(1076), + [aux_sym_cmd_identifier_token28] = ACTIONS(1076), + [aux_sym_cmd_identifier_token29] = ACTIONS(1076), + [aux_sym_cmd_identifier_token30] = ACTIONS(1076), + [aux_sym_cmd_identifier_token31] = ACTIONS(1076), + [aux_sym_cmd_identifier_token32] = ACTIONS(1076), + [aux_sym_cmd_identifier_token33] = ACTIONS(1076), + [aux_sym_cmd_identifier_token34] = ACTIONS(1076), + [aux_sym_cmd_identifier_token35] = ACTIONS(1076), + [aux_sym_cmd_identifier_token36] = ACTIONS(1076), + [anon_sym_true] = ACTIONS(1078), + [anon_sym_false] = ACTIONS(1078), + [anon_sym_null] = ACTIONS(1078), + [aux_sym_cmd_identifier_token38] = ACTIONS(1076), + [aux_sym_cmd_identifier_token39] = ACTIONS(1078), + [aux_sym_cmd_identifier_token40] = ACTIONS(1078), + [anon_sym_def] = ACTIONS(1076), + [anon_sym_export_DASHenv] = ACTIONS(1076), + [anon_sym_extern] = ACTIONS(1076), + [anon_sym_module] = ACTIONS(1076), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_DOLLAR] = ACTIONS(1078), + [anon_sym_error] = ACTIONS(1076), + [anon_sym_list] = ACTIONS(1076), + [anon_sym_DASH] = ACTIONS(1076), + [anon_sym_break] = ACTIONS(1076), + [anon_sym_continue] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1076), + [anon_sym_in] = ACTIONS(1076), + [anon_sym_loop] = ACTIONS(1076), + [anon_sym_make] = ACTIONS(1076), + [anon_sym_while] = ACTIONS(1076), + [anon_sym_do] = ACTIONS(1076), + [anon_sym_if] = ACTIONS(1076), + [anon_sym_else] = ACTIONS(1076), + [anon_sym_match] = ACTIONS(1076), + [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_try] = ACTIONS(1076), + [anon_sym_catch] = ACTIONS(1076), + [anon_sym_return] = ACTIONS(1076), + [anon_sym_source] = ACTIONS(1076), + [anon_sym_source_DASHenv] = ACTIONS(1076), + [anon_sym_register] = ACTIONS(1076), + [anon_sym_hide] = ACTIONS(1076), + [anon_sym_hide_DASHenv] = ACTIONS(1076), + [anon_sym_overlay] = ACTIONS(1076), + [anon_sym_new] = ACTIONS(1076), + [anon_sym_as] = ACTIONS(1076), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1078), + [anon_sym_DOT_DOT2] = ACTIONS(2232), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2234), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2234), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1078), + [aux_sym__val_number_decimal_token1] = ACTIONS(1076), + [aux_sym__val_number_decimal_token2] = ACTIONS(1078), + [aux_sym__val_number_decimal_token3] = ACTIONS(1078), + [aux_sym__val_number_decimal_token4] = ACTIONS(1078), + [aux_sym__val_number_token1] = ACTIONS(1078), + [aux_sym__val_number_token2] = ACTIONS(1078), + [aux_sym__val_number_token3] = ACTIONS(1078), + [anon_sym_DQUOTE] = ACTIONS(1078), + [sym__str_single_quotes] = ACTIONS(1078), + [sym__str_back_ticks] = ACTIONS(1078), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1076), + [anon_sym_POUND] = ACTIONS(247), + }, + [425] = { + [sym_comment] = STATE(425), + [anon_sym_export] = ACTIONS(1625), + [anon_sym_alias] = ACTIONS(1625), + [anon_sym_let] = ACTIONS(1625), + [anon_sym_let_DASHenv] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(1625), + [anon_sym_const] = ACTIONS(1625), + [aux_sym_cmd_identifier_token1] = ACTIONS(1625), + [aux_sym_cmd_identifier_token2] = ACTIONS(1625), + [aux_sym_cmd_identifier_token3] = ACTIONS(1625), + [aux_sym_cmd_identifier_token4] = ACTIONS(1625), + [aux_sym_cmd_identifier_token5] = ACTIONS(1625), + [aux_sym_cmd_identifier_token6] = ACTIONS(1625), + [aux_sym_cmd_identifier_token7] = ACTIONS(1625), + [aux_sym_cmd_identifier_token8] = ACTIONS(1625), + [aux_sym_cmd_identifier_token9] = ACTIONS(1625), + [aux_sym_cmd_identifier_token10] = ACTIONS(1625), + [aux_sym_cmd_identifier_token11] = ACTIONS(1625), + [aux_sym_cmd_identifier_token12] = ACTIONS(1625), + [aux_sym_cmd_identifier_token13] = ACTIONS(1625), + [aux_sym_cmd_identifier_token14] = ACTIONS(1625), + [aux_sym_cmd_identifier_token15] = ACTIONS(1625), + [aux_sym_cmd_identifier_token16] = ACTIONS(1625), + [aux_sym_cmd_identifier_token17] = ACTIONS(1625), + [aux_sym_cmd_identifier_token18] = ACTIONS(1625), + [aux_sym_cmd_identifier_token19] = ACTIONS(1625), + [aux_sym_cmd_identifier_token20] = ACTIONS(1625), + [aux_sym_cmd_identifier_token21] = ACTIONS(1625), + [aux_sym_cmd_identifier_token22] = ACTIONS(1625), + [aux_sym_cmd_identifier_token23] = ACTIONS(1625), + [aux_sym_cmd_identifier_token24] = ACTIONS(1625), + [aux_sym_cmd_identifier_token25] = ACTIONS(1625), + [aux_sym_cmd_identifier_token26] = ACTIONS(1625), + [aux_sym_cmd_identifier_token27] = ACTIONS(1625), + [aux_sym_cmd_identifier_token28] = ACTIONS(1625), + [aux_sym_cmd_identifier_token29] = ACTIONS(1625), + [aux_sym_cmd_identifier_token30] = ACTIONS(1625), + [aux_sym_cmd_identifier_token31] = ACTIONS(1625), + [aux_sym_cmd_identifier_token32] = ACTIONS(1625), + [aux_sym_cmd_identifier_token33] = ACTIONS(1625), + [aux_sym_cmd_identifier_token34] = ACTIONS(1625), + [aux_sym_cmd_identifier_token35] = ACTIONS(1625), + [aux_sym_cmd_identifier_token36] = ACTIONS(1625), + [anon_sym_true] = ACTIONS(1629), + [anon_sym_false] = ACTIONS(1629), + [anon_sym_null] = ACTIONS(1629), + [aux_sym_cmd_identifier_token38] = ACTIONS(1625), + [aux_sym_cmd_identifier_token39] = ACTIONS(1629), + [aux_sym_cmd_identifier_token40] = ACTIONS(1629), + [anon_sym_def] = ACTIONS(1625), + [anon_sym_export_DASHenv] = ACTIONS(1625), + [anon_sym_extern] = ACTIONS(1625), + [anon_sym_module] = ACTIONS(1625), + [anon_sym_use] = ACTIONS(1625), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_error] = ACTIONS(1625), + [anon_sym_list] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_break] = ACTIONS(1625), + [anon_sym_continue] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_in] = ACTIONS(1625), + [anon_sym_loop] = ACTIONS(1625), + [anon_sym_make] = ACTIONS(1625), + [anon_sym_while] = ACTIONS(1625), + [anon_sym_do] = ACTIONS(1625), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_else] = ACTIONS(1625), + [anon_sym_match] = ACTIONS(1625), + [anon_sym_RBRACE] = ACTIONS(1629), + [anon_sym_try] = ACTIONS(1625), + [anon_sym_catch] = ACTIONS(1625), + [anon_sym_return] = ACTIONS(1625), + [anon_sym_source] = ACTIONS(1625), + [anon_sym_source_DASHenv] = ACTIONS(1625), + [anon_sym_register] = ACTIONS(1625), + [anon_sym_hide] = ACTIONS(1625), + [anon_sym_hide_DASHenv] = ACTIONS(1625), + [anon_sym_overlay] = ACTIONS(1625), + [anon_sym_new] = ACTIONS(1625), + [anon_sym_as] = ACTIONS(1625), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1629), + [anon_sym_DOT_DOT2] = ACTIONS(1625), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1629), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1629), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1629), + [aux_sym__val_number_decimal_token1] = ACTIONS(1625), + [aux_sym__val_number_decimal_token2] = ACTIONS(1629), + [aux_sym__val_number_decimal_token3] = ACTIONS(1629), + [aux_sym__val_number_decimal_token4] = ACTIONS(1629), + [aux_sym__val_number_token1] = ACTIONS(1629), + [aux_sym__val_number_token2] = ACTIONS(1629), + [aux_sym__val_number_token3] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1629), + [sym__str_single_quotes] = ACTIONS(1629), + [sym__str_back_ticks] = ACTIONS(1629), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1629), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_POUND] = ACTIONS(247), + }, + [426] = { + [sym_comment] = STATE(426), + [anon_sym_export] = ACTIONS(2137), + [anon_sym_alias] = ACTIONS(2137), + [anon_sym_let] = ACTIONS(2137), + [anon_sym_let_DASHenv] = ACTIONS(2137), + [anon_sym_mut] = ACTIONS(2137), + [anon_sym_const] = ACTIONS(2137), + [aux_sym_cmd_identifier_token1] = ACTIONS(2137), + [aux_sym_cmd_identifier_token2] = ACTIONS(2137), + [aux_sym_cmd_identifier_token3] = ACTIONS(2137), + [aux_sym_cmd_identifier_token4] = ACTIONS(2137), + [aux_sym_cmd_identifier_token5] = ACTIONS(2137), + [aux_sym_cmd_identifier_token6] = ACTIONS(2137), + [aux_sym_cmd_identifier_token7] = ACTIONS(2137), + [aux_sym_cmd_identifier_token8] = ACTIONS(2137), + [aux_sym_cmd_identifier_token9] = ACTIONS(2137), + [aux_sym_cmd_identifier_token10] = ACTIONS(2137), + [aux_sym_cmd_identifier_token11] = ACTIONS(2137), + [aux_sym_cmd_identifier_token12] = ACTIONS(2137), + [aux_sym_cmd_identifier_token13] = ACTIONS(2137), + [aux_sym_cmd_identifier_token14] = ACTIONS(2137), + [aux_sym_cmd_identifier_token15] = ACTIONS(2137), + [aux_sym_cmd_identifier_token16] = ACTIONS(2137), + [aux_sym_cmd_identifier_token17] = ACTIONS(2137), + [aux_sym_cmd_identifier_token18] = ACTIONS(2137), + [aux_sym_cmd_identifier_token19] = ACTIONS(2137), + [aux_sym_cmd_identifier_token20] = ACTIONS(2137), + [aux_sym_cmd_identifier_token21] = ACTIONS(2137), + [aux_sym_cmd_identifier_token22] = ACTIONS(2137), + [aux_sym_cmd_identifier_token23] = ACTIONS(2137), + [aux_sym_cmd_identifier_token24] = ACTIONS(2137), + [aux_sym_cmd_identifier_token25] = ACTIONS(2137), + [aux_sym_cmd_identifier_token26] = ACTIONS(2137), + [aux_sym_cmd_identifier_token27] = ACTIONS(2137), + [aux_sym_cmd_identifier_token28] = ACTIONS(2137), + [aux_sym_cmd_identifier_token29] = ACTIONS(2137), + [aux_sym_cmd_identifier_token30] = ACTIONS(2137), + [aux_sym_cmd_identifier_token31] = ACTIONS(2137), + [aux_sym_cmd_identifier_token32] = ACTIONS(2137), + [aux_sym_cmd_identifier_token33] = ACTIONS(2137), + [aux_sym_cmd_identifier_token34] = ACTIONS(2137), + [aux_sym_cmd_identifier_token35] = ACTIONS(2137), + [aux_sym_cmd_identifier_token36] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(2139), + [anon_sym_false] = ACTIONS(2139), + [anon_sym_null] = ACTIONS(2139), + [aux_sym_cmd_identifier_token38] = ACTIONS(2137), + [aux_sym_cmd_identifier_token39] = ACTIONS(2139), + [aux_sym_cmd_identifier_token40] = ACTIONS(2139), + [anon_sym_def] = ACTIONS(2137), + [anon_sym_export_DASHenv] = ACTIONS(2137), + [anon_sym_extern] = ACTIONS(2137), + [anon_sym_module] = ACTIONS(2137), + [anon_sym_use] = ACTIONS(2137), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_DOLLAR] = ACTIONS(2139), + [anon_sym_error] = ACTIONS(2137), + [anon_sym_list] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2137), + [anon_sym_break] = ACTIONS(2137), + [anon_sym_continue] = ACTIONS(2137), + [anon_sym_for] = ACTIONS(2137), + [anon_sym_in] = ACTIONS(2137), + [anon_sym_loop] = ACTIONS(2137), + [anon_sym_make] = ACTIONS(2137), + [anon_sym_while] = ACTIONS(2137), + [anon_sym_do] = ACTIONS(2137), + [anon_sym_if] = ACTIONS(2137), + [anon_sym_else] = ACTIONS(2137), + [anon_sym_match] = ACTIONS(2137), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(2137), + [anon_sym_catch] = ACTIONS(2137), + [anon_sym_return] = ACTIONS(2137), + [anon_sym_source] = ACTIONS(2137), + [anon_sym_source_DASHenv] = ACTIONS(2137), + [anon_sym_register] = ACTIONS(2137), + [anon_sym_hide] = ACTIONS(2137), + [anon_sym_hide_DASHenv] = ACTIONS(2137), + [anon_sym_overlay] = ACTIONS(2137), + [anon_sym_new] = ACTIONS(2137), + [anon_sym_as] = ACTIONS(2137), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2139), + [anon_sym_DOT_DOT2] = ACTIONS(2137), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2139), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2139), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2139), + [aux_sym__val_number_decimal_token1] = ACTIONS(2137), + [aux_sym__val_number_decimal_token2] = ACTIONS(2139), + [aux_sym__val_number_decimal_token3] = ACTIONS(2139), + [aux_sym__val_number_decimal_token4] = ACTIONS(2139), + [aux_sym__val_number_token1] = ACTIONS(2139), + [aux_sym__val_number_token2] = ACTIONS(2139), + [aux_sym__val_number_token3] = ACTIONS(2139), + [anon_sym_DQUOTE] = ACTIONS(2139), + [sym__str_single_quotes] = ACTIONS(2139), + [sym__str_back_ticks] = ACTIONS(2139), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2137), [anon_sym_POUND] = ACTIONS(247), }, [427] = { [sym_comment] = STATE(427), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_alias] = ACTIONS(1006), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_let_DASHenv] = ACTIONS(1006), - [anon_sym_mut] = ACTIONS(1006), - [anon_sym_const] = ACTIONS(1006), - [aux_sym_cmd_identifier_token1] = ACTIONS(1006), - [aux_sym_cmd_identifier_token2] = ACTIONS(1006), - [aux_sym_cmd_identifier_token3] = ACTIONS(1006), - [aux_sym_cmd_identifier_token4] = ACTIONS(1006), - [aux_sym_cmd_identifier_token5] = ACTIONS(1006), - [aux_sym_cmd_identifier_token6] = ACTIONS(1006), - [aux_sym_cmd_identifier_token7] = ACTIONS(1006), - [aux_sym_cmd_identifier_token8] = ACTIONS(1006), - [aux_sym_cmd_identifier_token9] = ACTIONS(1006), - [aux_sym_cmd_identifier_token10] = ACTIONS(1006), - [aux_sym_cmd_identifier_token11] = ACTIONS(1006), - [aux_sym_cmd_identifier_token12] = ACTIONS(1006), - [aux_sym_cmd_identifier_token13] = ACTIONS(1006), - [aux_sym_cmd_identifier_token14] = ACTIONS(1006), - [aux_sym_cmd_identifier_token15] = ACTIONS(1006), - [aux_sym_cmd_identifier_token16] = ACTIONS(1006), - [aux_sym_cmd_identifier_token17] = ACTIONS(1006), - [aux_sym_cmd_identifier_token18] = ACTIONS(1006), - [aux_sym_cmd_identifier_token19] = ACTIONS(1006), - [aux_sym_cmd_identifier_token20] = ACTIONS(1006), - [aux_sym_cmd_identifier_token21] = ACTIONS(1006), - [aux_sym_cmd_identifier_token22] = ACTIONS(1006), - [aux_sym_cmd_identifier_token23] = ACTIONS(1006), - [aux_sym_cmd_identifier_token24] = ACTIONS(1006), - [aux_sym_cmd_identifier_token25] = ACTIONS(1006), - [aux_sym_cmd_identifier_token26] = ACTIONS(1006), - [aux_sym_cmd_identifier_token27] = ACTIONS(1006), - [aux_sym_cmd_identifier_token28] = ACTIONS(1006), - [aux_sym_cmd_identifier_token29] = ACTIONS(1006), - [aux_sym_cmd_identifier_token30] = ACTIONS(1006), - [aux_sym_cmd_identifier_token31] = ACTIONS(1006), - [aux_sym_cmd_identifier_token32] = ACTIONS(1006), - [aux_sym_cmd_identifier_token33] = ACTIONS(1006), - [aux_sym_cmd_identifier_token34] = ACTIONS(1006), - [aux_sym_cmd_identifier_token35] = ACTIONS(1006), - [aux_sym_cmd_identifier_token36] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [anon_sym_null] = ACTIONS(1006), - [aux_sym_cmd_identifier_token38] = ACTIONS(1006), - [aux_sym_cmd_identifier_token39] = ACTIONS(1006), - [aux_sym_cmd_identifier_token40] = ACTIONS(1006), - [anon_sym_def] = ACTIONS(1006), - [anon_sym_export_DASHenv] = ACTIONS(1006), - [anon_sym_extern] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_use] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_error] = ACTIONS(1006), - [anon_sym_list] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_in] = ACTIONS(1006), - [anon_sym_loop] = ACTIONS(1006), - [anon_sym_make] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_else] = ACTIONS(1006), - [anon_sym_match] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_try] = ACTIONS(1006), - [anon_sym_catch] = ACTIONS(1006), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_source] = ACTIONS(1006), - [anon_sym_source_DASHenv] = ACTIONS(1006), - [anon_sym_register] = ACTIONS(1006), - [anon_sym_hide] = ACTIONS(1006), - [anon_sym_hide_DASHenv] = ACTIONS(1006), - [anon_sym_overlay] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1006), - [anon_sym_as] = ACTIONS(1006), - [anon_sym_LPAREN2] = ACTIONS(2081), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1006), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1006), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1006), - [aux_sym__val_number_decimal_token4] = ACTIONS(1006), - [aux_sym__val_number_token1] = ACTIONS(1006), - [aux_sym__val_number_token2] = ACTIONS(1006), - [aux_sym__val_number_token3] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym__str_single_quotes] = ACTIONS(1006), - [sym__str_back_ticks] = ACTIONS(1006), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1006), - [sym__entry_separator] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(1006), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2083), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2019), + [anon_sym_alias] = ACTIONS(2019), + [anon_sym_let] = ACTIONS(2019), + [anon_sym_let_DASHenv] = ACTIONS(2019), + [anon_sym_mut] = ACTIONS(2019), + [anon_sym_const] = ACTIONS(2019), + [aux_sym_cmd_identifier_token1] = ACTIONS(2019), + [aux_sym_cmd_identifier_token2] = ACTIONS(2019), + [aux_sym_cmd_identifier_token3] = ACTIONS(2019), + [aux_sym_cmd_identifier_token4] = ACTIONS(2019), + [aux_sym_cmd_identifier_token5] = ACTIONS(2019), + [aux_sym_cmd_identifier_token6] = ACTIONS(2019), + [aux_sym_cmd_identifier_token7] = ACTIONS(2019), + [aux_sym_cmd_identifier_token8] = ACTIONS(2019), + [aux_sym_cmd_identifier_token9] = ACTIONS(2019), + [aux_sym_cmd_identifier_token10] = ACTIONS(2019), + [aux_sym_cmd_identifier_token11] = ACTIONS(2019), + [aux_sym_cmd_identifier_token12] = ACTIONS(2019), + [aux_sym_cmd_identifier_token13] = ACTIONS(2019), + [aux_sym_cmd_identifier_token14] = ACTIONS(2019), + [aux_sym_cmd_identifier_token15] = ACTIONS(2019), + [aux_sym_cmd_identifier_token16] = ACTIONS(2019), + [aux_sym_cmd_identifier_token17] = ACTIONS(2019), + [aux_sym_cmd_identifier_token18] = ACTIONS(2019), + [aux_sym_cmd_identifier_token19] = ACTIONS(2019), + [aux_sym_cmd_identifier_token20] = ACTIONS(2019), + [aux_sym_cmd_identifier_token21] = ACTIONS(2019), + [aux_sym_cmd_identifier_token22] = ACTIONS(2019), + [aux_sym_cmd_identifier_token23] = ACTIONS(2019), + [aux_sym_cmd_identifier_token24] = ACTIONS(2019), + [aux_sym_cmd_identifier_token25] = ACTIONS(2019), + [aux_sym_cmd_identifier_token26] = ACTIONS(2019), + [aux_sym_cmd_identifier_token27] = ACTIONS(2019), + [aux_sym_cmd_identifier_token28] = ACTIONS(2019), + [aux_sym_cmd_identifier_token29] = ACTIONS(2019), + [aux_sym_cmd_identifier_token30] = ACTIONS(2019), + [aux_sym_cmd_identifier_token31] = ACTIONS(2019), + [aux_sym_cmd_identifier_token32] = ACTIONS(2019), + [aux_sym_cmd_identifier_token33] = ACTIONS(2019), + [aux_sym_cmd_identifier_token34] = ACTIONS(2019), + [aux_sym_cmd_identifier_token35] = ACTIONS(2019), + [aux_sym_cmd_identifier_token36] = ACTIONS(2019), + [anon_sym_true] = ACTIONS(2021), + [anon_sym_false] = ACTIONS(2021), + [anon_sym_null] = ACTIONS(2021), + [aux_sym_cmd_identifier_token38] = ACTIONS(2019), + [aux_sym_cmd_identifier_token39] = ACTIONS(2021), + [aux_sym_cmd_identifier_token40] = ACTIONS(2021), + [anon_sym_def] = ACTIONS(2019), + [anon_sym_export_DASHenv] = ACTIONS(2019), + [anon_sym_extern] = ACTIONS(2019), + [anon_sym_module] = ACTIONS(2019), + [anon_sym_use] = ACTIONS(2019), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_DOLLAR] = ACTIONS(2021), + [anon_sym_error] = ACTIONS(2019), + [anon_sym_list] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_break] = ACTIONS(2019), + [anon_sym_continue] = ACTIONS(2019), + [anon_sym_for] = ACTIONS(2019), + [anon_sym_in] = ACTIONS(2019), + [anon_sym_loop] = ACTIONS(2019), + [anon_sym_make] = ACTIONS(2019), + [anon_sym_while] = ACTIONS(2019), + [anon_sym_do] = ACTIONS(2019), + [anon_sym_if] = ACTIONS(2019), + [anon_sym_else] = ACTIONS(2019), + [anon_sym_match] = ACTIONS(2019), + [anon_sym_RBRACE] = ACTIONS(2021), + [anon_sym_try] = ACTIONS(2019), + [anon_sym_catch] = ACTIONS(2019), + [anon_sym_return] = ACTIONS(2019), + [anon_sym_source] = ACTIONS(2019), + [anon_sym_source_DASHenv] = ACTIONS(2019), + [anon_sym_register] = ACTIONS(2019), + [anon_sym_hide] = ACTIONS(2019), + [anon_sym_hide_DASHenv] = ACTIONS(2019), + [anon_sym_overlay] = ACTIONS(2019), + [anon_sym_new] = ACTIONS(2019), + [anon_sym_as] = ACTIONS(2019), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2021), + [anon_sym_DOT_DOT2] = ACTIONS(2019), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2021), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2021), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2021), + [aux_sym__val_number_decimal_token1] = ACTIONS(2019), + [aux_sym__val_number_decimal_token2] = ACTIONS(2021), + [aux_sym__val_number_decimal_token3] = ACTIONS(2021), + [aux_sym__val_number_decimal_token4] = ACTIONS(2021), + [aux_sym__val_number_token1] = ACTIONS(2021), + [aux_sym__val_number_token2] = ACTIONS(2021), + [aux_sym__val_number_token3] = ACTIONS(2021), + [anon_sym_DQUOTE] = ACTIONS(2021), + [sym__str_single_quotes] = ACTIONS(2021), + [sym__str_back_ticks] = ACTIONS(2021), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_POUND] = ACTIONS(247), }, [428] = { [sym_comment] = STATE(428), - [anon_sym_export] = ACTIONS(2085), - [anon_sym_alias] = ACTIONS(2085), - [anon_sym_let] = ACTIONS(2085), - [anon_sym_let_DASHenv] = ACTIONS(2085), - [anon_sym_mut] = ACTIONS(2085), - [anon_sym_const] = ACTIONS(2085), - [aux_sym_cmd_identifier_token1] = ACTIONS(2085), - [aux_sym_cmd_identifier_token2] = ACTIONS(2085), - [aux_sym_cmd_identifier_token3] = ACTIONS(2085), - [aux_sym_cmd_identifier_token4] = ACTIONS(2085), - [aux_sym_cmd_identifier_token5] = ACTIONS(2085), - [aux_sym_cmd_identifier_token6] = ACTIONS(2085), - [aux_sym_cmd_identifier_token7] = ACTIONS(2085), - [aux_sym_cmd_identifier_token8] = ACTIONS(2085), - [aux_sym_cmd_identifier_token9] = ACTIONS(2085), - [aux_sym_cmd_identifier_token10] = ACTIONS(2085), - [aux_sym_cmd_identifier_token11] = ACTIONS(2085), - [aux_sym_cmd_identifier_token12] = ACTIONS(2085), - [aux_sym_cmd_identifier_token13] = ACTIONS(2085), - [aux_sym_cmd_identifier_token14] = ACTIONS(2085), - [aux_sym_cmd_identifier_token15] = ACTIONS(2085), - [aux_sym_cmd_identifier_token16] = ACTIONS(2085), - [aux_sym_cmd_identifier_token17] = ACTIONS(2085), - [aux_sym_cmd_identifier_token18] = ACTIONS(2085), - [aux_sym_cmd_identifier_token19] = ACTIONS(2085), - [aux_sym_cmd_identifier_token20] = ACTIONS(2085), - [aux_sym_cmd_identifier_token21] = ACTIONS(2085), - [aux_sym_cmd_identifier_token22] = ACTIONS(2085), - [aux_sym_cmd_identifier_token23] = ACTIONS(2085), - [aux_sym_cmd_identifier_token24] = ACTIONS(2085), - [aux_sym_cmd_identifier_token25] = ACTIONS(2085), - [aux_sym_cmd_identifier_token26] = ACTIONS(2085), - [aux_sym_cmd_identifier_token27] = ACTIONS(2085), - [aux_sym_cmd_identifier_token28] = ACTIONS(2085), - [aux_sym_cmd_identifier_token29] = ACTIONS(2085), - [aux_sym_cmd_identifier_token30] = ACTIONS(2085), - [aux_sym_cmd_identifier_token31] = ACTIONS(2085), - [aux_sym_cmd_identifier_token32] = ACTIONS(2085), - [aux_sym_cmd_identifier_token33] = ACTIONS(2085), - [aux_sym_cmd_identifier_token34] = ACTIONS(2085), - [aux_sym_cmd_identifier_token35] = ACTIONS(2085), - [aux_sym_cmd_identifier_token36] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2085), - [anon_sym_false] = ACTIONS(2085), - [anon_sym_null] = ACTIONS(2085), - [aux_sym_cmd_identifier_token38] = ACTIONS(2085), - [aux_sym_cmd_identifier_token39] = ACTIONS(2085), - [aux_sym_cmd_identifier_token40] = ACTIONS(2085), - [anon_sym_def] = ACTIONS(2085), - [anon_sym_export_DASHenv] = ACTIONS(2085), - [anon_sym_extern] = ACTIONS(2085), - [anon_sym_module] = ACTIONS(2085), - [anon_sym_use] = ACTIONS(2085), - [anon_sym_LPAREN] = ACTIONS(2085), - [anon_sym_DOLLAR] = ACTIONS(2085), - [anon_sym_error] = ACTIONS(2085), - [anon_sym_list] = ACTIONS(2085), - [anon_sym_DASH] = ACTIONS(2085), - [anon_sym_break] = ACTIONS(2085), - [anon_sym_continue] = ACTIONS(2085), - [anon_sym_for] = ACTIONS(2085), - [anon_sym_in] = ACTIONS(2085), - [anon_sym_loop] = ACTIONS(2085), - [anon_sym_make] = ACTIONS(2085), - [anon_sym_while] = ACTIONS(2085), - [anon_sym_do] = ACTIONS(2085), - [anon_sym_if] = ACTIONS(2085), - [anon_sym_else] = ACTIONS(2085), - [anon_sym_match] = ACTIONS(2085), - [anon_sym_RBRACE] = ACTIONS(2085), - [anon_sym_try] = ACTIONS(2085), - [anon_sym_catch] = ACTIONS(2085), - [anon_sym_return] = ACTIONS(2085), - [anon_sym_source] = ACTIONS(2085), - [anon_sym_source_DASHenv] = ACTIONS(2085), - [anon_sym_register] = ACTIONS(2085), - [anon_sym_hide] = ACTIONS(2085), - [anon_sym_hide_DASHenv] = ACTIONS(2085), - [anon_sym_overlay] = ACTIONS(2085), - [anon_sym_new] = ACTIONS(2085), - [anon_sym_as] = ACTIONS(2085), - [anon_sym_LPAREN2] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2085), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2085), - [aux_sym__val_number_decimal_token2] = ACTIONS(2085), - [aux_sym__val_number_decimal_token3] = ACTIONS(2085), - [aux_sym__val_number_decimal_token4] = ACTIONS(2085), - [aux_sym__val_number_token1] = ACTIONS(2085), - [aux_sym__val_number_token2] = ACTIONS(2085), - [aux_sym__val_number_token3] = ACTIONS(2085), - [anon_sym_DQUOTE] = ACTIONS(2085), - [sym__str_single_quotes] = ACTIONS(2085), - [sym__str_back_ticks] = ACTIONS(2085), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2085), - [sym__entry_separator] = ACTIONS(2087), - [anon_sym_PLUS] = ACTIONS(2085), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1719), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2133), + [anon_sym_alias] = ACTIONS(2133), + [anon_sym_let] = ACTIONS(2133), + [anon_sym_let_DASHenv] = ACTIONS(2133), + [anon_sym_mut] = ACTIONS(2133), + [anon_sym_const] = ACTIONS(2133), + [aux_sym_cmd_identifier_token1] = ACTIONS(2133), + [aux_sym_cmd_identifier_token2] = ACTIONS(2133), + [aux_sym_cmd_identifier_token3] = ACTIONS(2133), + [aux_sym_cmd_identifier_token4] = ACTIONS(2133), + [aux_sym_cmd_identifier_token5] = ACTIONS(2133), + [aux_sym_cmd_identifier_token6] = ACTIONS(2133), + [aux_sym_cmd_identifier_token7] = ACTIONS(2133), + [aux_sym_cmd_identifier_token8] = ACTIONS(2133), + [aux_sym_cmd_identifier_token9] = ACTIONS(2133), + [aux_sym_cmd_identifier_token10] = ACTIONS(2133), + [aux_sym_cmd_identifier_token11] = ACTIONS(2133), + [aux_sym_cmd_identifier_token12] = ACTIONS(2133), + [aux_sym_cmd_identifier_token13] = ACTIONS(2133), + [aux_sym_cmd_identifier_token14] = ACTIONS(2133), + [aux_sym_cmd_identifier_token15] = ACTIONS(2133), + [aux_sym_cmd_identifier_token16] = ACTIONS(2133), + [aux_sym_cmd_identifier_token17] = ACTIONS(2133), + [aux_sym_cmd_identifier_token18] = ACTIONS(2133), + [aux_sym_cmd_identifier_token19] = ACTIONS(2133), + [aux_sym_cmd_identifier_token20] = ACTIONS(2133), + [aux_sym_cmd_identifier_token21] = ACTIONS(2133), + [aux_sym_cmd_identifier_token22] = ACTIONS(2133), + [aux_sym_cmd_identifier_token23] = ACTIONS(2133), + [aux_sym_cmd_identifier_token24] = ACTIONS(2133), + [aux_sym_cmd_identifier_token25] = ACTIONS(2133), + [aux_sym_cmd_identifier_token26] = ACTIONS(2133), + [aux_sym_cmd_identifier_token27] = ACTIONS(2133), + [aux_sym_cmd_identifier_token28] = ACTIONS(2133), + [aux_sym_cmd_identifier_token29] = ACTIONS(2133), + [aux_sym_cmd_identifier_token30] = ACTIONS(2133), + [aux_sym_cmd_identifier_token31] = ACTIONS(2133), + [aux_sym_cmd_identifier_token32] = ACTIONS(2133), + [aux_sym_cmd_identifier_token33] = ACTIONS(2133), + [aux_sym_cmd_identifier_token34] = ACTIONS(2133), + [aux_sym_cmd_identifier_token35] = ACTIONS(2133), + [aux_sym_cmd_identifier_token36] = ACTIONS(2133), + [anon_sym_true] = ACTIONS(2135), + [anon_sym_false] = ACTIONS(2135), + [anon_sym_null] = ACTIONS(2135), + [aux_sym_cmd_identifier_token38] = ACTIONS(2133), + [aux_sym_cmd_identifier_token39] = ACTIONS(2135), + [aux_sym_cmd_identifier_token40] = ACTIONS(2135), + [anon_sym_def] = ACTIONS(2133), + [anon_sym_export_DASHenv] = ACTIONS(2133), + [anon_sym_extern] = ACTIONS(2133), + [anon_sym_module] = ACTIONS(2133), + [anon_sym_use] = ACTIONS(2133), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_DOLLAR] = ACTIONS(2135), + [anon_sym_error] = ACTIONS(2133), + [anon_sym_list] = ACTIONS(2133), + [anon_sym_DASH] = ACTIONS(2133), + [anon_sym_break] = ACTIONS(2133), + [anon_sym_continue] = ACTIONS(2133), + [anon_sym_for] = ACTIONS(2133), + [anon_sym_in] = ACTIONS(2133), + [anon_sym_loop] = ACTIONS(2133), + [anon_sym_make] = ACTIONS(2133), + [anon_sym_while] = ACTIONS(2133), + [anon_sym_do] = ACTIONS(2133), + [anon_sym_if] = ACTIONS(2133), + [anon_sym_else] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_RBRACE] = ACTIONS(2135), + [anon_sym_try] = ACTIONS(2133), + [anon_sym_catch] = ACTIONS(2133), + [anon_sym_return] = ACTIONS(2133), + [anon_sym_source] = ACTIONS(2133), + [anon_sym_source_DASHenv] = ACTIONS(2133), + [anon_sym_register] = ACTIONS(2133), + [anon_sym_hide] = ACTIONS(2133), + [anon_sym_hide_DASHenv] = ACTIONS(2133), + [anon_sym_overlay] = ACTIONS(2133), + [anon_sym_new] = ACTIONS(2133), + [anon_sym_as] = ACTIONS(2133), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2135), + [anon_sym_DOT_DOT2] = ACTIONS(2133), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2135), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2135), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2135), + [aux_sym__val_number_decimal_token1] = ACTIONS(2133), + [aux_sym__val_number_decimal_token2] = ACTIONS(2135), + [aux_sym__val_number_decimal_token3] = ACTIONS(2135), + [aux_sym__val_number_decimal_token4] = ACTIONS(2135), + [aux_sym__val_number_token1] = ACTIONS(2135), + [aux_sym__val_number_token2] = ACTIONS(2135), + [aux_sym__val_number_token3] = ACTIONS(2135), + [anon_sym_DQUOTE] = ACTIONS(2135), + [sym__str_single_quotes] = ACTIONS(2135), + [sym__str_back_ticks] = ACTIONS(2135), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2135), + [anon_sym_PLUS] = ACTIONS(2133), + [anon_sym_POUND] = ACTIONS(247), }, [429] = { + [sym__expr_parenthesized_immediate] = STATE(7343), [sym_comment] = STATE(429), - [anon_sym_export] = ACTIONS(2089), - [anon_sym_alias] = ACTIONS(2089), - [anon_sym_let] = ACTIONS(2089), - [anon_sym_let_DASHenv] = ACTIONS(2089), - [anon_sym_mut] = ACTIONS(2089), - [anon_sym_const] = ACTIONS(2089), - [aux_sym_cmd_identifier_token1] = ACTIONS(2089), - [aux_sym_cmd_identifier_token2] = ACTIONS(2089), - [aux_sym_cmd_identifier_token3] = ACTIONS(2089), - [aux_sym_cmd_identifier_token4] = ACTIONS(2089), - [aux_sym_cmd_identifier_token5] = ACTIONS(2089), - [aux_sym_cmd_identifier_token6] = ACTIONS(2089), - [aux_sym_cmd_identifier_token7] = ACTIONS(2089), - [aux_sym_cmd_identifier_token8] = ACTIONS(2089), - [aux_sym_cmd_identifier_token9] = ACTIONS(2089), - [aux_sym_cmd_identifier_token10] = ACTIONS(2089), - [aux_sym_cmd_identifier_token11] = ACTIONS(2089), - [aux_sym_cmd_identifier_token12] = ACTIONS(2089), - [aux_sym_cmd_identifier_token13] = ACTIONS(2089), - [aux_sym_cmd_identifier_token14] = ACTIONS(2089), - [aux_sym_cmd_identifier_token15] = ACTIONS(2089), - [aux_sym_cmd_identifier_token16] = ACTIONS(2089), - [aux_sym_cmd_identifier_token17] = ACTIONS(2089), - [aux_sym_cmd_identifier_token18] = ACTIONS(2089), - [aux_sym_cmd_identifier_token19] = ACTIONS(2089), - [aux_sym_cmd_identifier_token20] = ACTIONS(2089), - [aux_sym_cmd_identifier_token21] = ACTIONS(2089), - [aux_sym_cmd_identifier_token22] = ACTIONS(2089), - [aux_sym_cmd_identifier_token23] = ACTIONS(2089), - [aux_sym_cmd_identifier_token24] = ACTIONS(2089), - [aux_sym_cmd_identifier_token25] = ACTIONS(2089), - [aux_sym_cmd_identifier_token26] = ACTIONS(2089), - [aux_sym_cmd_identifier_token27] = ACTIONS(2089), - [aux_sym_cmd_identifier_token28] = ACTIONS(2089), - [aux_sym_cmd_identifier_token29] = ACTIONS(2089), - [aux_sym_cmd_identifier_token30] = ACTIONS(2089), - [aux_sym_cmd_identifier_token31] = ACTIONS(2089), - [aux_sym_cmd_identifier_token32] = ACTIONS(2089), - [aux_sym_cmd_identifier_token33] = ACTIONS(2089), - [aux_sym_cmd_identifier_token34] = ACTIONS(2089), - [aux_sym_cmd_identifier_token35] = ACTIONS(2089), - [aux_sym_cmd_identifier_token36] = ACTIONS(2089), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [anon_sym_null] = ACTIONS(2089), - [aux_sym_cmd_identifier_token38] = ACTIONS(2089), - [aux_sym_cmd_identifier_token39] = ACTIONS(2089), - [aux_sym_cmd_identifier_token40] = ACTIONS(2089), - [anon_sym_def] = ACTIONS(2089), - [anon_sym_export_DASHenv] = ACTIONS(2089), - [anon_sym_extern] = ACTIONS(2089), - [anon_sym_module] = ACTIONS(2089), - [anon_sym_use] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(2089), - [anon_sym_DOLLAR] = ACTIONS(2089), - [anon_sym_error] = ACTIONS(2089), - [anon_sym_list] = ACTIONS(2089), - [anon_sym_DASH] = ACTIONS(2089), - [anon_sym_break] = ACTIONS(2089), - [anon_sym_continue] = ACTIONS(2089), - [anon_sym_for] = ACTIONS(2089), - [anon_sym_in] = ACTIONS(2089), - [anon_sym_loop] = ACTIONS(2089), - [anon_sym_make] = ACTIONS(2089), - [anon_sym_while] = ACTIONS(2089), - [anon_sym_do] = ACTIONS(2089), - [anon_sym_if] = ACTIONS(2089), - [anon_sym_else] = ACTIONS(2089), - [anon_sym_match] = ACTIONS(2089), - [anon_sym_RBRACE] = ACTIONS(2089), - [anon_sym_try] = ACTIONS(2089), - [anon_sym_catch] = ACTIONS(2089), - [anon_sym_return] = ACTIONS(2089), - [anon_sym_source] = ACTIONS(2089), - [anon_sym_source_DASHenv] = ACTIONS(2089), - [anon_sym_register] = ACTIONS(2089), - [anon_sym_hide] = ACTIONS(2089), - [anon_sym_hide_DASHenv] = ACTIONS(2089), - [anon_sym_overlay] = ACTIONS(2089), - [anon_sym_new] = ACTIONS(2089), - [anon_sym_as] = ACTIONS(2089), - [anon_sym_LPAREN2] = ACTIONS(2091), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2089), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2089), - [aux_sym__val_number_decimal_token1] = ACTIONS(2089), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2089), - [aux_sym__val_number_decimal_token4] = ACTIONS(2089), - [aux_sym__val_number_token1] = ACTIONS(2089), - [aux_sym__val_number_token2] = ACTIONS(2089), - [aux_sym__val_number_token3] = ACTIONS(2089), - [anon_sym_DQUOTE] = ACTIONS(2089), - [sym__str_single_quotes] = ACTIONS(2089), - [sym__str_back_ticks] = ACTIONS(2089), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2089), - [sym__entry_separator] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2089), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2095), + [anon_sym_export] = ACTIONS(2023), + [anon_sym_alias] = ACTIONS(2023), + [anon_sym_let] = ACTIONS(2023), + [anon_sym_let_DASHenv] = ACTIONS(2023), + [anon_sym_mut] = ACTIONS(2023), + [anon_sym_const] = ACTIONS(2023), + [aux_sym_cmd_identifier_token1] = ACTIONS(2023), + [aux_sym_cmd_identifier_token2] = ACTIONS(2023), + [aux_sym_cmd_identifier_token3] = ACTIONS(2023), + [aux_sym_cmd_identifier_token4] = ACTIONS(2023), + [aux_sym_cmd_identifier_token5] = ACTIONS(2023), + [aux_sym_cmd_identifier_token6] = ACTIONS(2023), + [aux_sym_cmd_identifier_token7] = ACTIONS(2023), + [aux_sym_cmd_identifier_token8] = ACTIONS(2023), + [aux_sym_cmd_identifier_token9] = ACTIONS(2023), + [aux_sym_cmd_identifier_token10] = ACTIONS(2023), + [aux_sym_cmd_identifier_token11] = ACTIONS(2023), + [aux_sym_cmd_identifier_token12] = ACTIONS(2023), + [aux_sym_cmd_identifier_token13] = ACTIONS(2023), + [aux_sym_cmd_identifier_token14] = ACTIONS(2023), + [aux_sym_cmd_identifier_token15] = ACTIONS(2023), + [aux_sym_cmd_identifier_token16] = ACTIONS(2023), + [aux_sym_cmd_identifier_token17] = ACTIONS(2023), + [aux_sym_cmd_identifier_token18] = ACTIONS(2023), + [aux_sym_cmd_identifier_token19] = ACTIONS(2023), + [aux_sym_cmd_identifier_token20] = ACTIONS(2023), + [aux_sym_cmd_identifier_token21] = ACTIONS(2023), + [aux_sym_cmd_identifier_token22] = ACTIONS(2023), + [aux_sym_cmd_identifier_token23] = ACTIONS(2023), + [aux_sym_cmd_identifier_token24] = ACTIONS(2023), + [aux_sym_cmd_identifier_token25] = ACTIONS(2023), + [aux_sym_cmd_identifier_token26] = ACTIONS(2023), + [aux_sym_cmd_identifier_token27] = ACTIONS(2023), + [aux_sym_cmd_identifier_token28] = ACTIONS(2023), + [aux_sym_cmd_identifier_token29] = ACTIONS(2023), + [aux_sym_cmd_identifier_token30] = ACTIONS(2023), + [aux_sym_cmd_identifier_token31] = ACTIONS(2023), + [aux_sym_cmd_identifier_token32] = ACTIONS(2023), + [aux_sym_cmd_identifier_token33] = ACTIONS(2023), + [aux_sym_cmd_identifier_token34] = ACTIONS(2023), + [aux_sym_cmd_identifier_token35] = ACTIONS(2023), + [aux_sym_cmd_identifier_token36] = ACTIONS(2023), + [anon_sym_true] = ACTIONS(2023), + [anon_sym_false] = ACTIONS(2023), + [anon_sym_null] = ACTIONS(2023), + [aux_sym_cmd_identifier_token38] = ACTIONS(2023), + [aux_sym_cmd_identifier_token39] = ACTIONS(2023), + [aux_sym_cmd_identifier_token40] = ACTIONS(2023), + [anon_sym_def] = ACTIONS(2023), + [anon_sym_export_DASHenv] = ACTIONS(2023), + [anon_sym_extern] = ACTIONS(2023), + [anon_sym_module] = ACTIONS(2023), + [anon_sym_use] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_DOLLAR] = ACTIONS(2023), + [anon_sym_error] = ACTIONS(2023), + [anon_sym_list] = ACTIONS(2023), + [anon_sym_DASH] = ACTIONS(2023), + [anon_sym_break] = ACTIONS(2023), + [anon_sym_continue] = ACTIONS(2023), + [anon_sym_for] = ACTIONS(2023), + [anon_sym_in] = ACTIONS(2023), + [anon_sym_loop] = ACTIONS(2023), + [anon_sym_make] = ACTIONS(2023), + [anon_sym_while] = ACTIONS(2023), + [anon_sym_do] = ACTIONS(2023), + [anon_sym_if] = ACTIONS(2023), + [anon_sym_else] = ACTIONS(2023), + [anon_sym_match] = ACTIONS(2023), + [anon_sym_RBRACE] = ACTIONS(2023), + [anon_sym_try] = ACTIONS(2023), + [anon_sym_catch] = ACTIONS(2023), + [anon_sym_return] = ACTIONS(2023), + [anon_sym_source] = ACTIONS(2023), + [anon_sym_source_DASHenv] = ACTIONS(2023), + [anon_sym_register] = ACTIONS(2023), + [anon_sym_hide] = ACTIONS(2023), + [anon_sym_hide_DASHenv] = ACTIONS(2023), + [anon_sym_overlay] = ACTIONS(2023), + [anon_sym_new] = ACTIONS(2023), + [anon_sym_as] = ACTIONS(2023), + [anon_sym_LPAREN2] = ACTIONS(1577), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2023), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2023), + [aux_sym__val_number_decimal_token1] = ACTIONS(2023), + [aux_sym__val_number_decimal_token2] = ACTIONS(2023), + [aux_sym__val_number_decimal_token3] = ACTIONS(2023), + [aux_sym__val_number_decimal_token4] = ACTIONS(2023), + [aux_sym__val_number_token1] = ACTIONS(2023), + [aux_sym__val_number_token2] = ACTIONS(2023), + [aux_sym__val_number_token3] = ACTIONS(2023), + [anon_sym_DQUOTE] = ACTIONS(2023), + [sym__str_single_quotes] = ACTIONS(2023), + [sym__str_back_ticks] = ACTIONS(2023), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2023), + [sym__entry_separator] = ACTIONS(2025), + [anon_sym_PLUS] = ACTIONS(2023), [anon_sym_POUND] = ACTIONS(3), }, [430] = { [sym_comment] = STATE(430), - [anon_sym_export] = ACTIONS(2097), - [anon_sym_alias] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_let_DASHenv] = ACTIONS(2097), - [anon_sym_mut] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [aux_sym_cmd_identifier_token1] = ACTIONS(2097), - [aux_sym_cmd_identifier_token2] = ACTIONS(2097), - [aux_sym_cmd_identifier_token3] = ACTIONS(2097), - [aux_sym_cmd_identifier_token4] = ACTIONS(2097), - [aux_sym_cmd_identifier_token5] = ACTIONS(2097), - [aux_sym_cmd_identifier_token6] = ACTIONS(2097), - [aux_sym_cmd_identifier_token7] = ACTIONS(2097), - [aux_sym_cmd_identifier_token8] = ACTIONS(2097), - [aux_sym_cmd_identifier_token9] = ACTIONS(2097), - [aux_sym_cmd_identifier_token10] = ACTIONS(2097), - [aux_sym_cmd_identifier_token11] = ACTIONS(2097), - [aux_sym_cmd_identifier_token12] = ACTIONS(2097), - [aux_sym_cmd_identifier_token13] = ACTIONS(2097), - [aux_sym_cmd_identifier_token14] = ACTIONS(2097), - [aux_sym_cmd_identifier_token15] = ACTIONS(2097), - [aux_sym_cmd_identifier_token16] = ACTIONS(2097), - [aux_sym_cmd_identifier_token17] = ACTIONS(2097), - [aux_sym_cmd_identifier_token18] = ACTIONS(2097), - [aux_sym_cmd_identifier_token19] = ACTIONS(2097), - [aux_sym_cmd_identifier_token20] = ACTIONS(2097), - [aux_sym_cmd_identifier_token21] = ACTIONS(2097), - [aux_sym_cmd_identifier_token22] = ACTIONS(2097), - [aux_sym_cmd_identifier_token23] = ACTIONS(2097), - [aux_sym_cmd_identifier_token24] = ACTIONS(2097), - [aux_sym_cmd_identifier_token25] = ACTIONS(2097), - [aux_sym_cmd_identifier_token26] = ACTIONS(2097), - [aux_sym_cmd_identifier_token27] = ACTIONS(2097), - [aux_sym_cmd_identifier_token28] = ACTIONS(2097), - [aux_sym_cmd_identifier_token29] = ACTIONS(2097), - [aux_sym_cmd_identifier_token30] = ACTIONS(2097), - [aux_sym_cmd_identifier_token31] = ACTIONS(2097), - [aux_sym_cmd_identifier_token32] = ACTIONS(2097), - [aux_sym_cmd_identifier_token33] = ACTIONS(2097), - [aux_sym_cmd_identifier_token34] = ACTIONS(2097), - [aux_sym_cmd_identifier_token35] = ACTIONS(2097), - [aux_sym_cmd_identifier_token36] = ACTIONS(2097), - [anon_sym_true] = ACTIONS(2097), - [anon_sym_false] = ACTIONS(2097), - [anon_sym_null] = ACTIONS(2097), - [aux_sym_cmd_identifier_token38] = ACTIONS(2097), - [aux_sym_cmd_identifier_token39] = ACTIONS(2097), - [aux_sym_cmd_identifier_token40] = ACTIONS(2097), - [anon_sym_def] = ACTIONS(2097), - [anon_sym_export_DASHenv] = ACTIONS(2097), - [anon_sym_extern] = ACTIONS(2097), - [anon_sym_module] = ACTIONS(2097), - [anon_sym_use] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym_DOLLAR] = ACTIONS(2097), - [anon_sym_error] = ACTIONS(2097), - [anon_sym_list] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_in] = ACTIONS(2097), - [anon_sym_loop] = ACTIONS(2097), - [anon_sym_make] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [anon_sym_do] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_else] = ACTIONS(2097), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_RBRACE] = ACTIONS(2097), - [anon_sym_try] = ACTIONS(2097), - [anon_sym_catch] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_source] = ACTIONS(2097), - [anon_sym_source_DASHenv] = ACTIONS(2097), - [anon_sym_register] = ACTIONS(2097), - [anon_sym_hide] = ACTIONS(2097), - [anon_sym_hide_DASHenv] = ACTIONS(2097), - [anon_sym_overlay] = ACTIONS(2097), - [anon_sym_new] = ACTIONS(2097), - [anon_sym_as] = ACTIONS(2097), - [anon_sym_LPAREN2] = ACTIONS(2099), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2097), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2097), - [aux_sym__val_number_decimal_token1] = ACTIONS(2097), - [aux_sym__val_number_decimal_token2] = ACTIONS(2097), - [aux_sym__val_number_decimal_token3] = ACTIONS(2097), - [aux_sym__val_number_decimal_token4] = ACTIONS(2097), - [aux_sym__val_number_token1] = ACTIONS(2097), - [aux_sym__val_number_token2] = ACTIONS(2097), - [aux_sym__val_number_token3] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2097), - [sym__str_single_quotes] = ACTIONS(2097), - [sym__str_back_ticks] = ACTIONS(2097), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2097), - [sym__entry_separator] = ACTIONS(2101), - [anon_sym_PLUS] = ACTIONS(2097), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2103), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1064), + [anon_sym_alias] = ACTIONS(1064), + [anon_sym_let] = ACTIONS(1064), + [anon_sym_let_DASHenv] = ACTIONS(1064), + [anon_sym_mut] = ACTIONS(1064), + [anon_sym_const] = ACTIONS(1064), + [aux_sym_cmd_identifier_token1] = ACTIONS(1064), + [aux_sym_cmd_identifier_token2] = ACTIONS(1064), + [aux_sym_cmd_identifier_token3] = ACTIONS(1064), + [aux_sym_cmd_identifier_token4] = ACTIONS(1064), + [aux_sym_cmd_identifier_token5] = ACTIONS(1064), + [aux_sym_cmd_identifier_token6] = ACTIONS(1064), + [aux_sym_cmd_identifier_token7] = ACTIONS(1064), + [aux_sym_cmd_identifier_token8] = ACTIONS(1064), + [aux_sym_cmd_identifier_token9] = ACTIONS(1064), + [aux_sym_cmd_identifier_token10] = ACTIONS(1064), + [aux_sym_cmd_identifier_token11] = ACTIONS(1064), + [aux_sym_cmd_identifier_token12] = ACTIONS(1064), + [aux_sym_cmd_identifier_token13] = ACTIONS(1064), + [aux_sym_cmd_identifier_token14] = ACTIONS(1064), + [aux_sym_cmd_identifier_token15] = ACTIONS(1064), + [aux_sym_cmd_identifier_token16] = ACTIONS(1064), + [aux_sym_cmd_identifier_token17] = ACTIONS(1064), + [aux_sym_cmd_identifier_token18] = ACTIONS(1064), + [aux_sym_cmd_identifier_token19] = ACTIONS(1064), + [aux_sym_cmd_identifier_token20] = ACTIONS(1064), + [aux_sym_cmd_identifier_token21] = ACTIONS(1064), + [aux_sym_cmd_identifier_token22] = ACTIONS(1064), + [aux_sym_cmd_identifier_token23] = ACTIONS(1064), + [aux_sym_cmd_identifier_token24] = ACTIONS(1064), + [aux_sym_cmd_identifier_token25] = ACTIONS(1064), + [aux_sym_cmd_identifier_token26] = ACTIONS(1064), + [aux_sym_cmd_identifier_token27] = ACTIONS(1064), + [aux_sym_cmd_identifier_token28] = ACTIONS(1064), + [aux_sym_cmd_identifier_token29] = ACTIONS(1064), + [aux_sym_cmd_identifier_token30] = ACTIONS(1064), + [aux_sym_cmd_identifier_token31] = ACTIONS(1064), + [aux_sym_cmd_identifier_token32] = ACTIONS(1064), + [aux_sym_cmd_identifier_token33] = ACTIONS(1064), + [aux_sym_cmd_identifier_token34] = ACTIONS(1064), + [aux_sym_cmd_identifier_token35] = ACTIONS(1064), + [aux_sym_cmd_identifier_token36] = ACTIONS(1064), + [anon_sym_true] = ACTIONS(1066), + [anon_sym_false] = ACTIONS(1066), + [anon_sym_null] = ACTIONS(1066), + [aux_sym_cmd_identifier_token38] = ACTIONS(1064), + [aux_sym_cmd_identifier_token39] = ACTIONS(1066), + [aux_sym_cmd_identifier_token40] = ACTIONS(1066), + [anon_sym_def] = ACTIONS(1064), + [anon_sym_export_DASHenv] = ACTIONS(1064), + [anon_sym_extern] = ACTIONS(1064), + [anon_sym_module] = ACTIONS(1064), + [anon_sym_use] = ACTIONS(1064), + [anon_sym_LPAREN] = ACTIONS(1066), + [anon_sym_DOLLAR] = ACTIONS(1066), + [anon_sym_error] = ACTIONS(1064), + [anon_sym_list] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1064), + [anon_sym_for] = ACTIONS(1064), + [anon_sym_in] = ACTIONS(1064), + [anon_sym_loop] = ACTIONS(1064), + [anon_sym_make] = ACTIONS(1064), + [anon_sym_while] = ACTIONS(1064), + [anon_sym_do] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1064), + [anon_sym_else] = ACTIONS(1064), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_RBRACE] = ACTIONS(1066), + [anon_sym_try] = ACTIONS(1064), + [anon_sym_catch] = ACTIONS(1064), + [anon_sym_return] = ACTIONS(1064), + [anon_sym_source] = ACTIONS(1064), + [anon_sym_source_DASHenv] = ACTIONS(1064), + [anon_sym_register] = ACTIONS(1064), + [anon_sym_hide] = ACTIONS(1064), + [anon_sym_hide_DASHenv] = ACTIONS(1064), + [anon_sym_overlay] = ACTIONS(1064), + [anon_sym_new] = ACTIONS(1064), + [anon_sym_as] = ACTIONS(1064), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1066), + [anon_sym_DOT_DOT2] = ACTIONS(1064), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1066), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1066), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1066), + [aux_sym__val_number_decimal_token1] = ACTIONS(1064), + [aux_sym__val_number_decimal_token2] = ACTIONS(1066), + [aux_sym__val_number_decimal_token3] = ACTIONS(1066), + [aux_sym__val_number_decimal_token4] = ACTIONS(1066), + [aux_sym__val_number_token1] = ACTIONS(1066), + [aux_sym__val_number_token2] = ACTIONS(1066), + [aux_sym__val_number_token3] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [sym__str_single_quotes] = ACTIONS(1066), + [sym__str_back_ticks] = ACTIONS(1066), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1066), + [anon_sym_PLUS] = ACTIONS(1064), + [anon_sym_POUND] = ACTIONS(247), }, [431] = { [sym_comment] = STATE(431), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_alias] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_let_DASHenv] = ACTIONS(2105), - [anon_sym_mut] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [aux_sym_cmd_identifier_token1] = ACTIONS(2105), - [aux_sym_cmd_identifier_token2] = ACTIONS(2105), - [aux_sym_cmd_identifier_token3] = ACTIONS(2105), - [aux_sym_cmd_identifier_token4] = ACTIONS(2105), - [aux_sym_cmd_identifier_token5] = ACTIONS(2105), - [aux_sym_cmd_identifier_token6] = ACTIONS(2105), - [aux_sym_cmd_identifier_token7] = ACTIONS(2105), - [aux_sym_cmd_identifier_token8] = ACTIONS(2105), - [aux_sym_cmd_identifier_token9] = ACTIONS(2105), - [aux_sym_cmd_identifier_token10] = ACTIONS(2105), - [aux_sym_cmd_identifier_token11] = ACTIONS(2105), - [aux_sym_cmd_identifier_token12] = ACTIONS(2105), - [aux_sym_cmd_identifier_token13] = ACTIONS(2105), - [aux_sym_cmd_identifier_token14] = ACTIONS(2105), - [aux_sym_cmd_identifier_token15] = ACTIONS(2105), - [aux_sym_cmd_identifier_token16] = ACTIONS(2105), - [aux_sym_cmd_identifier_token17] = ACTIONS(2105), - [aux_sym_cmd_identifier_token18] = ACTIONS(2105), - [aux_sym_cmd_identifier_token19] = ACTIONS(2105), - [aux_sym_cmd_identifier_token20] = ACTIONS(2105), - [aux_sym_cmd_identifier_token21] = ACTIONS(2105), - [aux_sym_cmd_identifier_token22] = ACTIONS(2105), - [aux_sym_cmd_identifier_token23] = ACTIONS(2105), - [aux_sym_cmd_identifier_token24] = ACTIONS(2105), - [aux_sym_cmd_identifier_token25] = ACTIONS(2105), - [aux_sym_cmd_identifier_token26] = ACTIONS(2105), - [aux_sym_cmd_identifier_token27] = ACTIONS(2105), - [aux_sym_cmd_identifier_token28] = ACTIONS(2105), - [aux_sym_cmd_identifier_token29] = ACTIONS(2105), - [aux_sym_cmd_identifier_token30] = ACTIONS(2105), - [aux_sym_cmd_identifier_token31] = ACTIONS(2105), - [aux_sym_cmd_identifier_token32] = ACTIONS(2105), - [aux_sym_cmd_identifier_token33] = ACTIONS(2105), - [aux_sym_cmd_identifier_token34] = ACTIONS(2105), - [aux_sym_cmd_identifier_token35] = ACTIONS(2105), - [aux_sym_cmd_identifier_token36] = ACTIONS(2105), - [anon_sym_true] = ACTIONS(2105), - [anon_sym_false] = ACTIONS(2105), - [anon_sym_null] = ACTIONS(2105), - [aux_sym_cmd_identifier_token38] = ACTIONS(2105), - [aux_sym_cmd_identifier_token39] = ACTIONS(2105), - [aux_sym_cmd_identifier_token40] = ACTIONS(2105), - [anon_sym_def] = ACTIONS(2105), - [anon_sym_export_DASHenv] = ACTIONS(2105), - [anon_sym_extern] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_use] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_DOLLAR] = ACTIONS(2105), - [anon_sym_error] = ACTIONS(2105), - [anon_sym_list] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_in] = ACTIONS(2105), - [anon_sym_loop] = ACTIONS(2105), - [anon_sym_make] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_else] = ACTIONS(2105), - [anon_sym_match] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_catch] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_source] = ACTIONS(2105), - [anon_sym_source_DASHenv] = ACTIONS(2105), - [anon_sym_register] = ACTIONS(2105), - [anon_sym_hide] = ACTIONS(2105), - [anon_sym_hide_DASHenv] = ACTIONS(2105), - [anon_sym_overlay] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_as] = ACTIONS(2105), - [anon_sym_LPAREN2] = ACTIONS(2099), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2105), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2105), - [aux_sym__val_number_decimal_token1] = ACTIONS(2105), - [aux_sym__val_number_decimal_token2] = ACTIONS(2105), - [aux_sym__val_number_decimal_token3] = ACTIONS(2105), - [aux_sym__val_number_decimal_token4] = ACTIONS(2105), - [aux_sym__val_number_token1] = ACTIONS(2105), - [aux_sym__val_number_token2] = ACTIONS(2105), - [aux_sym__val_number_token3] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [sym__str_single_quotes] = ACTIONS(2105), - [sym__str_back_ticks] = ACTIONS(2105), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2105), - [sym__entry_separator] = ACTIONS(2107), - [anon_sym_PLUS] = ACTIONS(2105), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2103), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1056), + [anon_sym_alias] = ACTIONS(1056), + [anon_sym_let] = ACTIONS(1056), + [anon_sym_let_DASHenv] = ACTIONS(1056), + [anon_sym_mut] = ACTIONS(1056), + [anon_sym_const] = ACTIONS(1056), + [aux_sym_cmd_identifier_token1] = ACTIONS(1056), + [aux_sym_cmd_identifier_token2] = ACTIONS(1056), + [aux_sym_cmd_identifier_token3] = ACTIONS(1056), + [aux_sym_cmd_identifier_token4] = ACTIONS(1056), + [aux_sym_cmd_identifier_token5] = ACTIONS(1056), + [aux_sym_cmd_identifier_token6] = ACTIONS(1056), + [aux_sym_cmd_identifier_token7] = ACTIONS(1056), + [aux_sym_cmd_identifier_token8] = ACTIONS(1056), + [aux_sym_cmd_identifier_token9] = ACTIONS(1056), + [aux_sym_cmd_identifier_token10] = ACTIONS(1056), + [aux_sym_cmd_identifier_token11] = ACTIONS(1056), + [aux_sym_cmd_identifier_token12] = ACTIONS(1056), + [aux_sym_cmd_identifier_token13] = ACTIONS(1056), + [aux_sym_cmd_identifier_token14] = ACTIONS(1056), + [aux_sym_cmd_identifier_token15] = ACTIONS(1056), + [aux_sym_cmd_identifier_token16] = ACTIONS(1056), + [aux_sym_cmd_identifier_token17] = ACTIONS(1056), + [aux_sym_cmd_identifier_token18] = ACTIONS(1056), + [aux_sym_cmd_identifier_token19] = ACTIONS(1056), + [aux_sym_cmd_identifier_token20] = ACTIONS(1056), + [aux_sym_cmd_identifier_token21] = ACTIONS(1056), + [aux_sym_cmd_identifier_token22] = ACTIONS(1056), + [aux_sym_cmd_identifier_token23] = ACTIONS(1056), + [aux_sym_cmd_identifier_token24] = ACTIONS(1056), + [aux_sym_cmd_identifier_token25] = ACTIONS(1056), + [aux_sym_cmd_identifier_token26] = ACTIONS(1056), + [aux_sym_cmd_identifier_token27] = ACTIONS(1056), + [aux_sym_cmd_identifier_token28] = ACTIONS(1056), + [aux_sym_cmd_identifier_token29] = ACTIONS(1056), + [aux_sym_cmd_identifier_token30] = ACTIONS(1056), + [aux_sym_cmd_identifier_token31] = ACTIONS(1056), + [aux_sym_cmd_identifier_token32] = ACTIONS(1056), + [aux_sym_cmd_identifier_token33] = ACTIONS(1056), + [aux_sym_cmd_identifier_token34] = ACTIONS(1056), + [aux_sym_cmd_identifier_token35] = ACTIONS(1056), + [aux_sym_cmd_identifier_token36] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_null] = ACTIONS(1058), + [aux_sym_cmd_identifier_token38] = ACTIONS(1056), + [aux_sym_cmd_identifier_token39] = ACTIONS(1058), + [aux_sym_cmd_identifier_token40] = ACTIONS(1058), + [anon_sym_def] = ACTIONS(1056), + [anon_sym_export_DASHenv] = ACTIONS(1056), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_module] = ACTIONS(1056), + [anon_sym_use] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(1058), + [anon_sym_COMMA] = ACTIONS(1058), + [anon_sym_DOLLAR] = ACTIONS(1058), + [anon_sym_error] = ACTIONS(1056), + [anon_sym_list] = ACTIONS(1056), + [anon_sym_DASH] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1056), + [anon_sym_continue] = ACTIONS(1056), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_in] = ACTIONS(1056), + [anon_sym_loop] = ACTIONS(1056), + [anon_sym_make] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1056), + [anon_sym_do] = ACTIONS(1056), + [anon_sym_if] = ACTIONS(1056), + [anon_sym_else] = ACTIONS(1056), + [anon_sym_match] = ACTIONS(1056), + [anon_sym_RBRACE] = ACTIONS(1058), + [anon_sym_try] = ACTIONS(1056), + [anon_sym_catch] = ACTIONS(1056), + [anon_sym_return] = ACTIONS(1056), + [anon_sym_source] = ACTIONS(1056), + [anon_sym_source_DASHenv] = ACTIONS(1056), + [anon_sym_register] = ACTIONS(1056), + [anon_sym_hide] = ACTIONS(1056), + [anon_sym_hide_DASHenv] = ACTIONS(1056), + [anon_sym_overlay] = ACTIONS(1056), + [anon_sym_new] = ACTIONS(1056), + [anon_sym_as] = ACTIONS(1056), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1058), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1058), + [aux_sym__val_number_decimal_token1] = ACTIONS(1056), + [aux_sym__val_number_decimal_token2] = ACTIONS(1058), + [aux_sym__val_number_decimal_token3] = ACTIONS(1058), + [aux_sym__val_number_decimal_token4] = ACTIONS(1058), + [aux_sym__val_number_token1] = ACTIONS(1058), + [aux_sym__val_number_token2] = ACTIONS(1058), + [aux_sym__val_number_token3] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [sym__str_single_quotes] = ACTIONS(1058), + [sym__str_back_ticks] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1058), + [aux_sym_record_entry_token1] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1056), + [anon_sym_POUND] = ACTIONS(247), }, [432] = { [sym_comment] = STATE(432), - [anon_sym_export] = ACTIONS(970), - [anon_sym_alias] = ACTIONS(970), - [anon_sym_let] = ACTIONS(970), - [anon_sym_let_DASHenv] = ACTIONS(970), - [anon_sym_mut] = ACTIONS(970), - [anon_sym_const] = ACTIONS(970), - [aux_sym_cmd_identifier_token1] = ACTIONS(970), - [aux_sym_cmd_identifier_token2] = ACTIONS(970), - [aux_sym_cmd_identifier_token3] = ACTIONS(970), - [aux_sym_cmd_identifier_token4] = ACTIONS(970), - [aux_sym_cmd_identifier_token5] = ACTIONS(970), - [aux_sym_cmd_identifier_token6] = ACTIONS(970), - [aux_sym_cmd_identifier_token7] = ACTIONS(970), - [aux_sym_cmd_identifier_token8] = ACTIONS(970), - [aux_sym_cmd_identifier_token9] = ACTIONS(970), - [aux_sym_cmd_identifier_token10] = ACTIONS(970), - [aux_sym_cmd_identifier_token11] = ACTIONS(970), - [aux_sym_cmd_identifier_token12] = ACTIONS(970), - [aux_sym_cmd_identifier_token13] = ACTIONS(970), - [aux_sym_cmd_identifier_token14] = ACTIONS(970), - [aux_sym_cmd_identifier_token15] = ACTIONS(970), - [aux_sym_cmd_identifier_token16] = ACTIONS(970), - [aux_sym_cmd_identifier_token17] = ACTIONS(970), - [aux_sym_cmd_identifier_token18] = ACTIONS(970), - [aux_sym_cmd_identifier_token19] = ACTIONS(970), - [aux_sym_cmd_identifier_token20] = ACTIONS(970), - [aux_sym_cmd_identifier_token21] = ACTIONS(970), - [aux_sym_cmd_identifier_token22] = ACTIONS(970), - [aux_sym_cmd_identifier_token23] = ACTIONS(970), - [aux_sym_cmd_identifier_token24] = ACTIONS(970), - [aux_sym_cmd_identifier_token25] = ACTIONS(970), - [aux_sym_cmd_identifier_token26] = ACTIONS(970), - [aux_sym_cmd_identifier_token27] = ACTIONS(970), - [aux_sym_cmd_identifier_token28] = ACTIONS(970), - [aux_sym_cmd_identifier_token29] = ACTIONS(970), - [aux_sym_cmd_identifier_token30] = ACTIONS(970), - [aux_sym_cmd_identifier_token31] = ACTIONS(970), - [aux_sym_cmd_identifier_token32] = ACTIONS(970), - [aux_sym_cmd_identifier_token33] = ACTIONS(970), - [aux_sym_cmd_identifier_token34] = ACTIONS(970), - [aux_sym_cmd_identifier_token35] = ACTIONS(970), - [aux_sym_cmd_identifier_token36] = ACTIONS(970), - [anon_sym_true] = ACTIONS(970), - [anon_sym_false] = ACTIONS(970), - [anon_sym_null] = ACTIONS(970), - [aux_sym_cmd_identifier_token38] = ACTIONS(970), - [aux_sym_cmd_identifier_token39] = ACTIONS(970), - [aux_sym_cmd_identifier_token40] = ACTIONS(970), - [anon_sym_def] = ACTIONS(970), - [anon_sym_export_DASHenv] = ACTIONS(970), - [anon_sym_extern] = ACTIONS(970), - [anon_sym_module] = ACTIONS(970), - [anon_sym_use] = ACTIONS(970), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_DOLLAR] = ACTIONS(970), - [anon_sym_error] = ACTIONS(970), - [anon_sym_list] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_break] = ACTIONS(970), - [anon_sym_continue] = ACTIONS(970), - [anon_sym_for] = ACTIONS(970), - [anon_sym_in] = ACTIONS(970), - [anon_sym_loop] = ACTIONS(970), - [anon_sym_make] = ACTIONS(970), - [anon_sym_while] = ACTIONS(970), - [anon_sym_do] = ACTIONS(970), - [anon_sym_if] = ACTIONS(970), - [anon_sym_else] = ACTIONS(970), - [anon_sym_match] = ACTIONS(970), - [anon_sym_RBRACE] = ACTIONS(970), - [anon_sym_try] = ACTIONS(970), - [anon_sym_catch] = ACTIONS(970), - [anon_sym_return] = ACTIONS(970), - [anon_sym_source] = ACTIONS(970), - [anon_sym_source_DASHenv] = ACTIONS(970), - [anon_sym_register] = ACTIONS(970), - [anon_sym_hide] = ACTIONS(970), - [anon_sym_hide_DASHenv] = ACTIONS(970), - [anon_sym_overlay] = ACTIONS(970), - [anon_sym_new] = ACTIONS(970), - [anon_sym_as] = ACTIONS(970), - [anon_sym_QMARK2] = ACTIONS(2109), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(970), - [anon_sym_DOT] = ACTIONS(970), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(970), - [aux_sym__val_number_decimal_token1] = ACTIONS(970), - [aux_sym__val_number_decimal_token2] = ACTIONS(970), - [aux_sym__val_number_decimal_token3] = ACTIONS(970), - [aux_sym__val_number_decimal_token4] = ACTIONS(970), - [aux_sym__val_number_token1] = ACTIONS(970), - [aux_sym__val_number_token2] = ACTIONS(970), - [aux_sym__val_number_token3] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(970), - [sym__str_single_quotes] = ACTIONS(970), - [sym__str_back_ticks] = ACTIONS(970), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(970), - [sym__entry_separator] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(970), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1060), + [anon_sym_alias] = ACTIONS(1060), + [anon_sym_let] = ACTIONS(1060), + [anon_sym_let_DASHenv] = ACTIONS(1060), + [anon_sym_mut] = ACTIONS(1060), + [anon_sym_const] = ACTIONS(1060), + [aux_sym_cmd_identifier_token1] = ACTIONS(1060), + [aux_sym_cmd_identifier_token2] = ACTIONS(1060), + [aux_sym_cmd_identifier_token3] = ACTIONS(1060), + [aux_sym_cmd_identifier_token4] = ACTIONS(1060), + [aux_sym_cmd_identifier_token5] = ACTIONS(1060), + [aux_sym_cmd_identifier_token6] = ACTIONS(1060), + [aux_sym_cmd_identifier_token7] = ACTIONS(1060), + [aux_sym_cmd_identifier_token8] = ACTIONS(1060), + [aux_sym_cmd_identifier_token9] = ACTIONS(1060), + [aux_sym_cmd_identifier_token10] = ACTIONS(1060), + [aux_sym_cmd_identifier_token11] = ACTIONS(1060), + [aux_sym_cmd_identifier_token12] = ACTIONS(1060), + [aux_sym_cmd_identifier_token13] = ACTIONS(1060), + [aux_sym_cmd_identifier_token14] = ACTIONS(1060), + [aux_sym_cmd_identifier_token15] = ACTIONS(1060), + [aux_sym_cmd_identifier_token16] = ACTIONS(1060), + [aux_sym_cmd_identifier_token17] = ACTIONS(1060), + [aux_sym_cmd_identifier_token18] = ACTIONS(1060), + [aux_sym_cmd_identifier_token19] = ACTIONS(1060), + [aux_sym_cmd_identifier_token20] = ACTIONS(1060), + [aux_sym_cmd_identifier_token21] = ACTIONS(1060), + [aux_sym_cmd_identifier_token22] = ACTIONS(1060), + [aux_sym_cmd_identifier_token23] = ACTIONS(1060), + [aux_sym_cmd_identifier_token24] = ACTIONS(1060), + [aux_sym_cmd_identifier_token25] = ACTIONS(1060), + [aux_sym_cmd_identifier_token26] = ACTIONS(1060), + [aux_sym_cmd_identifier_token27] = ACTIONS(1060), + [aux_sym_cmd_identifier_token28] = ACTIONS(1060), + [aux_sym_cmd_identifier_token29] = ACTIONS(1060), + [aux_sym_cmd_identifier_token30] = ACTIONS(1060), + [aux_sym_cmd_identifier_token31] = ACTIONS(1060), + [aux_sym_cmd_identifier_token32] = ACTIONS(1060), + [aux_sym_cmd_identifier_token33] = ACTIONS(1060), + [aux_sym_cmd_identifier_token34] = ACTIONS(1060), + [aux_sym_cmd_identifier_token35] = ACTIONS(1060), + [aux_sym_cmd_identifier_token36] = ACTIONS(1060), + [anon_sym_true] = ACTIONS(1062), + [anon_sym_false] = ACTIONS(1062), + [anon_sym_null] = ACTIONS(1062), + [aux_sym_cmd_identifier_token38] = ACTIONS(1060), + [aux_sym_cmd_identifier_token39] = ACTIONS(1062), + [aux_sym_cmd_identifier_token40] = ACTIONS(1062), + [anon_sym_def] = ACTIONS(1060), + [anon_sym_export_DASHenv] = ACTIONS(1060), + [anon_sym_extern] = ACTIONS(1060), + [anon_sym_module] = ACTIONS(1060), + [anon_sym_use] = ACTIONS(1060), + [anon_sym_LPAREN] = ACTIONS(1062), + [anon_sym_COMMA] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_error] = ACTIONS(1060), + [anon_sym_list] = ACTIONS(1060), + [anon_sym_DASH] = ACTIONS(1060), + [anon_sym_break] = ACTIONS(1060), + [anon_sym_continue] = ACTIONS(1060), + [anon_sym_for] = ACTIONS(1060), + [anon_sym_in] = ACTIONS(1060), + [anon_sym_loop] = ACTIONS(1060), + [anon_sym_make] = ACTIONS(1060), + [anon_sym_while] = ACTIONS(1060), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_if] = ACTIONS(1060), + [anon_sym_else] = ACTIONS(1060), + [anon_sym_match] = ACTIONS(1060), + [anon_sym_RBRACE] = ACTIONS(1062), + [anon_sym_try] = ACTIONS(1060), + [anon_sym_catch] = ACTIONS(1060), + [anon_sym_return] = ACTIONS(1060), + [anon_sym_source] = ACTIONS(1060), + [anon_sym_source_DASHenv] = ACTIONS(1060), + [anon_sym_register] = ACTIONS(1060), + [anon_sym_hide] = ACTIONS(1060), + [anon_sym_hide_DASHenv] = ACTIONS(1060), + [anon_sym_overlay] = ACTIONS(1060), + [anon_sym_new] = ACTIONS(1060), + [anon_sym_as] = ACTIONS(1060), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1062), + [anon_sym_DOT] = ACTIONS(1060), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1062), + [aux_sym__val_number_decimal_token1] = ACTIONS(1060), + [aux_sym__val_number_decimal_token2] = ACTIONS(1062), + [aux_sym__val_number_decimal_token3] = ACTIONS(1062), + [aux_sym__val_number_decimal_token4] = ACTIONS(1062), + [aux_sym__val_number_token1] = ACTIONS(1062), + [aux_sym__val_number_token2] = ACTIONS(1062), + [aux_sym__val_number_token3] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1062), + [sym__str_single_quotes] = ACTIONS(1062), + [sym__str_back_ticks] = ACTIONS(1062), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1062), + [aux_sym_record_entry_token1] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1060), + [anon_sym_POUND] = ACTIONS(247), }, [433] = { [sym_comment] = STATE(433), - [anon_sym_export] = ACTIONS(980), - [anon_sym_alias] = ACTIONS(980), - [anon_sym_let] = ACTIONS(980), - [anon_sym_let_DASHenv] = ACTIONS(980), - [anon_sym_mut] = ACTIONS(980), - [anon_sym_const] = ACTIONS(980), - [aux_sym_cmd_identifier_token1] = ACTIONS(980), - [aux_sym_cmd_identifier_token2] = ACTIONS(980), - [aux_sym_cmd_identifier_token3] = ACTIONS(980), - [aux_sym_cmd_identifier_token4] = ACTIONS(980), - [aux_sym_cmd_identifier_token5] = ACTIONS(980), - [aux_sym_cmd_identifier_token6] = ACTIONS(980), - [aux_sym_cmd_identifier_token7] = ACTIONS(980), - [aux_sym_cmd_identifier_token8] = ACTIONS(980), - [aux_sym_cmd_identifier_token9] = ACTIONS(980), - [aux_sym_cmd_identifier_token10] = ACTIONS(980), - [aux_sym_cmd_identifier_token11] = ACTIONS(980), - [aux_sym_cmd_identifier_token12] = ACTIONS(980), - [aux_sym_cmd_identifier_token13] = ACTIONS(980), - [aux_sym_cmd_identifier_token14] = ACTIONS(980), - [aux_sym_cmd_identifier_token15] = ACTIONS(980), - [aux_sym_cmd_identifier_token16] = ACTIONS(980), - [aux_sym_cmd_identifier_token17] = ACTIONS(980), - [aux_sym_cmd_identifier_token18] = ACTIONS(980), - [aux_sym_cmd_identifier_token19] = ACTIONS(980), - [aux_sym_cmd_identifier_token20] = ACTIONS(980), - [aux_sym_cmd_identifier_token21] = ACTIONS(980), - [aux_sym_cmd_identifier_token22] = ACTIONS(980), - [aux_sym_cmd_identifier_token23] = ACTIONS(980), - [aux_sym_cmd_identifier_token24] = ACTIONS(980), - [aux_sym_cmd_identifier_token25] = ACTIONS(980), - [aux_sym_cmd_identifier_token26] = ACTIONS(980), - [aux_sym_cmd_identifier_token27] = ACTIONS(980), - [aux_sym_cmd_identifier_token28] = ACTIONS(980), - [aux_sym_cmd_identifier_token29] = ACTIONS(980), - [aux_sym_cmd_identifier_token30] = ACTIONS(980), - [aux_sym_cmd_identifier_token31] = ACTIONS(980), - [aux_sym_cmd_identifier_token32] = ACTIONS(980), - [aux_sym_cmd_identifier_token33] = ACTIONS(980), - [aux_sym_cmd_identifier_token34] = ACTIONS(980), - [aux_sym_cmd_identifier_token35] = ACTIONS(980), - [aux_sym_cmd_identifier_token36] = ACTIONS(980), - [anon_sym_true] = ACTIONS(980), - [anon_sym_false] = ACTIONS(980), - [anon_sym_null] = ACTIONS(980), - [aux_sym_cmd_identifier_token38] = ACTIONS(980), - [aux_sym_cmd_identifier_token39] = ACTIONS(980), - [aux_sym_cmd_identifier_token40] = ACTIONS(980), - [anon_sym_def] = ACTIONS(980), - [anon_sym_export_DASHenv] = ACTIONS(980), - [anon_sym_extern] = ACTIONS(980), - [anon_sym_module] = ACTIONS(980), - [anon_sym_use] = ACTIONS(980), - [anon_sym_LPAREN] = ACTIONS(980), - [anon_sym_DOLLAR] = ACTIONS(980), - [anon_sym_error] = ACTIONS(980), - [anon_sym_list] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_break] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_for] = ACTIONS(980), - [anon_sym_in] = ACTIONS(980), - [anon_sym_loop] = ACTIONS(980), - [anon_sym_make] = ACTIONS(980), - [anon_sym_while] = ACTIONS(980), - [anon_sym_do] = ACTIONS(980), - [anon_sym_if] = ACTIONS(980), - [anon_sym_else] = ACTIONS(980), - [anon_sym_match] = ACTIONS(980), - [anon_sym_RBRACE] = ACTIONS(980), - [anon_sym_try] = ACTIONS(980), - [anon_sym_catch] = ACTIONS(980), - [anon_sym_return] = ACTIONS(980), - [anon_sym_source] = ACTIONS(980), - [anon_sym_source_DASHenv] = ACTIONS(980), - [anon_sym_register] = ACTIONS(980), - [anon_sym_hide] = ACTIONS(980), - [anon_sym_hide_DASHenv] = ACTIONS(980), - [anon_sym_overlay] = ACTIONS(980), - [anon_sym_new] = ACTIONS(980), - [anon_sym_as] = ACTIONS(980), - [anon_sym_QMARK2] = ACTIONS(2111), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(980), - [anon_sym_DOT] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(980), - [aux_sym__val_number_decimal_token1] = ACTIONS(980), - [aux_sym__val_number_decimal_token2] = ACTIONS(980), - [aux_sym__val_number_decimal_token3] = ACTIONS(980), - [aux_sym__val_number_decimal_token4] = ACTIONS(980), - [aux_sym__val_number_token1] = ACTIONS(980), - [aux_sym__val_number_token2] = ACTIONS(980), - [aux_sym__val_number_token3] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(980), - [sym__str_single_quotes] = ACTIONS(980), - [sym__str_back_ticks] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(980), - [sym__entry_separator] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1052), + [anon_sym_alias] = ACTIONS(1052), + [anon_sym_let] = ACTIONS(1052), + [anon_sym_let_DASHenv] = ACTIONS(1052), + [anon_sym_mut] = ACTIONS(1052), + [anon_sym_const] = ACTIONS(1052), + [aux_sym_cmd_identifier_token1] = ACTIONS(1052), + [aux_sym_cmd_identifier_token2] = ACTIONS(1052), + [aux_sym_cmd_identifier_token3] = ACTIONS(1052), + [aux_sym_cmd_identifier_token4] = ACTIONS(1052), + [aux_sym_cmd_identifier_token5] = ACTIONS(1052), + [aux_sym_cmd_identifier_token6] = ACTIONS(1052), + [aux_sym_cmd_identifier_token7] = ACTIONS(1052), + [aux_sym_cmd_identifier_token8] = ACTIONS(1052), + [aux_sym_cmd_identifier_token9] = ACTIONS(1052), + [aux_sym_cmd_identifier_token10] = ACTIONS(1052), + [aux_sym_cmd_identifier_token11] = ACTIONS(1052), + [aux_sym_cmd_identifier_token12] = ACTIONS(1052), + [aux_sym_cmd_identifier_token13] = ACTIONS(1052), + [aux_sym_cmd_identifier_token14] = ACTIONS(1052), + [aux_sym_cmd_identifier_token15] = ACTIONS(1052), + [aux_sym_cmd_identifier_token16] = ACTIONS(1052), + [aux_sym_cmd_identifier_token17] = ACTIONS(1052), + [aux_sym_cmd_identifier_token18] = ACTIONS(1052), + [aux_sym_cmd_identifier_token19] = ACTIONS(1052), + [aux_sym_cmd_identifier_token20] = ACTIONS(1052), + [aux_sym_cmd_identifier_token21] = ACTIONS(1052), + [aux_sym_cmd_identifier_token22] = ACTIONS(1052), + [aux_sym_cmd_identifier_token23] = ACTIONS(1052), + [aux_sym_cmd_identifier_token24] = ACTIONS(1052), + [aux_sym_cmd_identifier_token25] = ACTIONS(1052), + [aux_sym_cmd_identifier_token26] = ACTIONS(1052), + [aux_sym_cmd_identifier_token27] = ACTIONS(1052), + [aux_sym_cmd_identifier_token28] = ACTIONS(1052), + [aux_sym_cmd_identifier_token29] = ACTIONS(1052), + [aux_sym_cmd_identifier_token30] = ACTIONS(1052), + [aux_sym_cmd_identifier_token31] = ACTIONS(1052), + [aux_sym_cmd_identifier_token32] = ACTIONS(1052), + [aux_sym_cmd_identifier_token33] = ACTIONS(1052), + [aux_sym_cmd_identifier_token34] = ACTIONS(1052), + [aux_sym_cmd_identifier_token35] = ACTIONS(1052), + [aux_sym_cmd_identifier_token36] = ACTIONS(1052), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_null] = ACTIONS(1054), + [aux_sym_cmd_identifier_token38] = ACTIONS(1052), + [aux_sym_cmd_identifier_token39] = ACTIONS(1054), + [aux_sym_cmd_identifier_token40] = ACTIONS(1054), + [anon_sym_def] = ACTIONS(1052), + [anon_sym_export_DASHenv] = ACTIONS(1052), + [anon_sym_extern] = ACTIONS(1052), + [anon_sym_module] = ACTIONS(1052), + [anon_sym_use] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_COMMA] = ACTIONS(1054), + [anon_sym_DOLLAR] = ACTIONS(1054), + [anon_sym_error] = ACTIONS(1052), + [anon_sym_list] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_break] = ACTIONS(1052), + [anon_sym_continue] = ACTIONS(1052), + [anon_sym_for] = ACTIONS(1052), + [anon_sym_in] = ACTIONS(1052), + [anon_sym_loop] = ACTIONS(1052), + [anon_sym_make] = ACTIONS(1052), + [anon_sym_while] = ACTIONS(1052), + [anon_sym_do] = ACTIONS(1052), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_else] = ACTIONS(1052), + [anon_sym_match] = ACTIONS(1052), + [anon_sym_RBRACE] = ACTIONS(1054), + [anon_sym_try] = ACTIONS(1052), + [anon_sym_catch] = ACTIONS(1052), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_source] = ACTIONS(1052), + [anon_sym_source_DASHenv] = ACTIONS(1052), + [anon_sym_register] = ACTIONS(1052), + [anon_sym_hide] = ACTIONS(1052), + [anon_sym_hide_DASHenv] = ACTIONS(1052), + [anon_sym_overlay] = ACTIONS(1052), + [anon_sym_new] = ACTIONS(1052), + [anon_sym_as] = ACTIONS(1052), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1054), + [anon_sym_DOT] = ACTIONS(1052), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1054), + [aux_sym__val_number_decimal_token1] = ACTIONS(1052), + [aux_sym__val_number_decimal_token2] = ACTIONS(1054), + [aux_sym__val_number_decimal_token3] = ACTIONS(1054), + [aux_sym__val_number_decimal_token4] = ACTIONS(1054), + [aux_sym__val_number_token1] = ACTIONS(1054), + [aux_sym__val_number_token2] = ACTIONS(1054), + [aux_sym__val_number_token3] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym__str_single_quotes] = ACTIONS(1054), + [sym__str_back_ticks] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1054), + [aux_sym_record_entry_token1] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_POUND] = ACTIONS(247), }, [434] = { + [sym_path] = STATE(550), [sym_comment] = STATE(434), - [anon_sym_export] = ACTIONS(1709), - [anon_sym_alias] = ACTIONS(1709), - [anon_sym_let] = ACTIONS(1709), - [anon_sym_let_DASHenv] = ACTIONS(1709), - [anon_sym_mut] = ACTIONS(1709), - [anon_sym_const] = ACTIONS(1709), - [aux_sym_cmd_identifier_token1] = ACTIONS(1709), - [aux_sym_cmd_identifier_token2] = ACTIONS(1709), - [aux_sym_cmd_identifier_token3] = ACTIONS(1709), - [aux_sym_cmd_identifier_token4] = ACTIONS(1709), - [aux_sym_cmd_identifier_token5] = ACTIONS(1709), - [aux_sym_cmd_identifier_token6] = ACTIONS(1709), - [aux_sym_cmd_identifier_token7] = ACTIONS(1709), - [aux_sym_cmd_identifier_token8] = ACTIONS(1709), - [aux_sym_cmd_identifier_token9] = ACTIONS(1709), - [aux_sym_cmd_identifier_token10] = ACTIONS(1709), - [aux_sym_cmd_identifier_token11] = ACTIONS(1709), - [aux_sym_cmd_identifier_token12] = ACTIONS(1709), - [aux_sym_cmd_identifier_token13] = ACTIONS(1709), - [aux_sym_cmd_identifier_token14] = ACTIONS(1709), - [aux_sym_cmd_identifier_token15] = ACTIONS(1709), - [aux_sym_cmd_identifier_token16] = ACTIONS(1709), - [aux_sym_cmd_identifier_token17] = ACTIONS(1709), - [aux_sym_cmd_identifier_token18] = ACTIONS(1709), - [aux_sym_cmd_identifier_token19] = ACTIONS(1709), - [aux_sym_cmd_identifier_token20] = ACTIONS(1709), - [aux_sym_cmd_identifier_token21] = ACTIONS(1709), - [aux_sym_cmd_identifier_token22] = ACTIONS(1709), - [aux_sym_cmd_identifier_token23] = ACTIONS(1709), - [aux_sym_cmd_identifier_token24] = ACTIONS(1709), - [aux_sym_cmd_identifier_token25] = ACTIONS(1709), - [aux_sym_cmd_identifier_token26] = ACTIONS(1709), - [aux_sym_cmd_identifier_token27] = ACTIONS(1709), - [aux_sym_cmd_identifier_token28] = ACTIONS(1709), - [aux_sym_cmd_identifier_token29] = ACTIONS(1709), - [aux_sym_cmd_identifier_token30] = ACTIONS(1709), - [aux_sym_cmd_identifier_token31] = ACTIONS(1709), - [aux_sym_cmd_identifier_token32] = ACTIONS(1709), - [aux_sym_cmd_identifier_token33] = ACTIONS(1709), - [aux_sym_cmd_identifier_token34] = ACTIONS(1709), - [aux_sym_cmd_identifier_token35] = ACTIONS(1709), - [aux_sym_cmd_identifier_token36] = ACTIONS(1709), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_null] = ACTIONS(1709), - [aux_sym_cmd_identifier_token38] = ACTIONS(1709), - [aux_sym_cmd_identifier_token39] = ACTIONS(1709), - [aux_sym_cmd_identifier_token40] = ACTIONS(1709), - [anon_sym_def] = ACTIONS(1709), - [anon_sym_export_DASHenv] = ACTIONS(1709), - [anon_sym_extern] = ACTIONS(1709), - [anon_sym_module] = ACTIONS(1709), - [anon_sym_use] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_error] = ACTIONS(1709), - [anon_sym_list] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_break] = ACTIONS(1709), - [anon_sym_continue] = ACTIONS(1709), - [anon_sym_for] = ACTIONS(1709), - [anon_sym_in] = ACTIONS(1709), - [anon_sym_loop] = ACTIONS(1709), - [anon_sym_make] = ACTIONS(1709), - [anon_sym_while] = ACTIONS(1709), - [anon_sym_do] = ACTIONS(1709), - [anon_sym_if] = ACTIONS(1709), - [anon_sym_else] = ACTIONS(1709), - [anon_sym_match] = ACTIONS(1709), - [anon_sym_RBRACE] = ACTIONS(1709), - [anon_sym_try] = ACTIONS(1709), - [anon_sym_catch] = ACTIONS(1709), - [anon_sym_return] = ACTIONS(1709), - [anon_sym_source] = ACTIONS(1709), - [anon_sym_source_DASHenv] = ACTIONS(1709), - [anon_sym_register] = ACTIONS(1709), - [anon_sym_hide] = ACTIONS(1709), - [anon_sym_hide_DASHenv] = ACTIONS(1709), - [anon_sym_overlay] = ACTIONS(1709), - [anon_sym_new] = ACTIONS(1709), - [anon_sym_as] = ACTIONS(1709), - [anon_sym_LPAREN2] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1709), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1709), - [aux_sym__val_number_decimal_token1] = ACTIONS(1709), - [aux_sym__val_number_decimal_token2] = ACTIONS(1709), - [aux_sym__val_number_decimal_token3] = ACTIONS(1709), - [aux_sym__val_number_decimal_token4] = ACTIONS(1709), - [aux_sym__val_number_token1] = ACTIONS(1709), - [aux_sym__val_number_token2] = ACTIONS(1709), - [aux_sym__val_number_token3] = ACTIONS(1709), - [anon_sym_DQUOTE] = ACTIONS(1709), - [sym__str_single_quotes] = ACTIONS(1709), - [sym__str_back_ticks] = ACTIONS(1709), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1709), - [sym__entry_separator] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1709), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1719), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(435), + [anon_sym_export] = ACTIONS(1017), + [anon_sym_alias] = ACTIONS(1017), + [anon_sym_let] = ACTIONS(1017), + [anon_sym_let_DASHenv] = ACTIONS(1017), + [anon_sym_mut] = ACTIONS(1017), + [anon_sym_const] = ACTIONS(1017), + [aux_sym_cmd_identifier_token1] = ACTIONS(1017), + [aux_sym_cmd_identifier_token2] = ACTIONS(1017), + [aux_sym_cmd_identifier_token3] = ACTIONS(1017), + [aux_sym_cmd_identifier_token4] = ACTIONS(1017), + [aux_sym_cmd_identifier_token5] = ACTIONS(1017), + [aux_sym_cmd_identifier_token6] = ACTIONS(1017), + [aux_sym_cmd_identifier_token7] = ACTIONS(1017), + [aux_sym_cmd_identifier_token8] = ACTIONS(1017), + [aux_sym_cmd_identifier_token9] = ACTIONS(1017), + [aux_sym_cmd_identifier_token10] = ACTIONS(1017), + [aux_sym_cmd_identifier_token11] = ACTIONS(1017), + [aux_sym_cmd_identifier_token12] = ACTIONS(1017), + [aux_sym_cmd_identifier_token13] = ACTIONS(1017), + [aux_sym_cmd_identifier_token14] = ACTIONS(1017), + [aux_sym_cmd_identifier_token15] = ACTIONS(1017), + [aux_sym_cmd_identifier_token16] = ACTIONS(1017), + [aux_sym_cmd_identifier_token17] = ACTIONS(1017), + [aux_sym_cmd_identifier_token18] = ACTIONS(1017), + [aux_sym_cmd_identifier_token19] = ACTIONS(1017), + [aux_sym_cmd_identifier_token20] = ACTIONS(1017), + [aux_sym_cmd_identifier_token21] = ACTIONS(1017), + [aux_sym_cmd_identifier_token22] = ACTIONS(1017), + [aux_sym_cmd_identifier_token23] = ACTIONS(1017), + [aux_sym_cmd_identifier_token24] = ACTIONS(1017), + [aux_sym_cmd_identifier_token25] = ACTIONS(1017), + [aux_sym_cmd_identifier_token26] = ACTIONS(1017), + [aux_sym_cmd_identifier_token27] = ACTIONS(1017), + [aux_sym_cmd_identifier_token28] = ACTIONS(1017), + [aux_sym_cmd_identifier_token29] = ACTIONS(1017), + [aux_sym_cmd_identifier_token30] = ACTIONS(1017), + [aux_sym_cmd_identifier_token31] = ACTIONS(1017), + [aux_sym_cmd_identifier_token32] = ACTIONS(1017), + [aux_sym_cmd_identifier_token33] = ACTIONS(1017), + [aux_sym_cmd_identifier_token34] = ACTIONS(1017), + [aux_sym_cmd_identifier_token35] = ACTIONS(1017), + [aux_sym_cmd_identifier_token36] = ACTIONS(1017), + [anon_sym_true] = ACTIONS(1019), + [anon_sym_false] = ACTIONS(1019), + [anon_sym_null] = ACTIONS(1019), + [aux_sym_cmd_identifier_token38] = ACTIONS(1017), + [aux_sym_cmd_identifier_token39] = ACTIONS(1019), + [aux_sym_cmd_identifier_token40] = ACTIONS(1019), + [anon_sym_def] = ACTIONS(1017), + [anon_sym_export_DASHenv] = ACTIONS(1017), + [anon_sym_extern] = ACTIONS(1017), + [anon_sym_module] = ACTIONS(1017), + [anon_sym_use] = ACTIONS(1017), + [anon_sym_LPAREN] = ACTIONS(1019), + [anon_sym_DOLLAR] = ACTIONS(1019), + [anon_sym_error] = ACTIONS(1017), + [anon_sym_list] = ACTIONS(1017), + [anon_sym_DASH] = ACTIONS(1017), + [anon_sym_break] = ACTIONS(1017), + [anon_sym_continue] = ACTIONS(1017), + [anon_sym_for] = ACTIONS(1017), + [anon_sym_in] = ACTIONS(1017), + [anon_sym_loop] = ACTIONS(1017), + [anon_sym_make] = ACTIONS(1017), + [anon_sym_while] = ACTIONS(1017), + [anon_sym_do] = ACTIONS(1017), + [anon_sym_if] = ACTIONS(1017), + [anon_sym_else] = ACTIONS(1017), + [anon_sym_match] = ACTIONS(1017), + [anon_sym_RBRACE] = ACTIONS(1019), + [anon_sym_try] = ACTIONS(1017), + [anon_sym_catch] = ACTIONS(1017), + [anon_sym_return] = ACTIONS(1017), + [anon_sym_source] = ACTIONS(1017), + [anon_sym_source_DASHenv] = ACTIONS(1017), + [anon_sym_register] = ACTIONS(1017), + [anon_sym_hide] = ACTIONS(1017), + [anon_sym_hide_DASHenv] = ACTIONS(1017), + [anon_sym_overlay] = ACTIONS(1017), + [anon_sym_new] = ACTIONS(1017), + [anon_sym_as] = ACTIONS(1017), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1019), + [anon_sym_DOT] = ACTIONS(1973), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1019), + [aux_sym__val_number_decimal_token1] = ACTIONS(1017), + [aux_sym__val_number_decimal_token2] = ACTIONS(1019), + [aux_sym__val_number_decimal_token3] = ACTIONS(1019), + [aux_sym__val_number_decimal_token4] = ACTIONS(1019), + [aux_sym__val_number_token1] = ACTIONS(1019), + [aux_sym__val_number_token2] = ACTIONS(1019), + [aux_sym__val_number_token3] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1019), + [sym__str_single_quotes] = ACTIONS(1019), + [sym__str_back_ticks] = ACTIONS(1019), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(1017), + [anon_sym_POUND] = ACTIONS(247), }, [435] = { + [sym_path] = STATE(550), [sym_comment] = STATE(435), - [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), - [aux_sym_cmd_identifier_token1] = ACTIONS(1905), - [aux_sym_cmd_identifier_token2] = ACTIONS(1905), - [aux_sym_cmd_identifier_token3] = ACTIONS(1905), - [aux_sym_cmd_identifier_token4] = ACTIONS(1905), - [aux_sym_cmd_identifier_token5] = ACTIONS(1905), - [aux_sym_cmd_identifier_token6] = ACTIONS(1905), - [aux_sym_cmd_identifier_token7] = ACTIONS(1905), - [aux_sym_cmd_identifier_token8] = ACTIONS(1905), - [aux_sym_cmd_identifier_token9] = ACTIONS(1905), - [aux_sym_cmd_identifier_token10] = ACTIONS(1905), - [aux_sym_cmd_identifier_token11] = ACTIONS(1905), - [aux_sym_cmd_identifier_token12] = ACTIONS(1905), - [aux_sym_cmd_identifier_token13] = ACTIONS(1905), - [aux_sym_cmd_identifier_token14] = ACTIONS(1905), - [aux_sym_cmd_identifier_token15] = ACTIONS(1905), - [aux_sym_cmd_identifier_token16] = ACTIONS(1905), - [aux_sym_cmd_identifier_token17] = ACTIONS(1905), - [aux_sym_cmd_identifier_token18] = ACTIONS(1905), - [aux_sym_cmd_identifier_token19] = ACTIONS(1905), - [aux_sym_cmd_identifier_token20] = ACTIONS(1905), - [aux_sym_cmd_identifier_token21] = ACTIONS(1905), - [aux_sym_cmd_identifier_token22] = ACTIONS(1905), - [aux_sym_cmd_identifier_token23] = ACTIONS(1905), - [aux_sym_cmd_identifier_token24] = ACTIONS(1905), - [aux_sym_cmd_identifier_token25] = ACTIONS(1905), - [aux_sym_cmd_identifier_token26] = ACTIONS(1905), - [aux_sym_cmd_identifier_token27] = ACTIONS(1905), - [aux_sym_cmd_identifier_token28] = ACTIONS(1905), - [aux_sym_cmd_identifier_token29] = ACTIONS(1905), - [aux_sym_cmd_identifier_token30] = ACTIONS(1905), - [aux_sym_cmd_identifier_token31] = ACTIONS(1905), - [aux_sym_cmd_identifier_token32] = ACTIONS(1905), - [aux_sym_cmd_identifier_token33] = ACTIONS(1905), - [aux_sym_cmd_identifier_token34] = ACTIONS(1905), - [aux_sym_cmd_identifier_token35] = ACTIONS(1905), - [aux_sym_cmd_identifier_token36] = ACTIONS(1905), - [anon_sym_true] = ACTIONS(1911), - [anon_sym_false] = ACTIONS(1911), - [anon_sym_null] = ACTIONS(1911), - [aux_sym_cmd_identifier_token38] = ACTIONS(1905), - [aux_sym_cmd_identifier_token39] = ACTIONS(1911), - [aux_sym_cmd_identifier_token40] = ACTIONS(1911), - [anon_sym_def] = 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_LPAREN] = ACTIONS(1911), - [anon_sym_DOLLAR] = ACTIONS(1911), - [anon_sym_error] = ACTIONS(1905), - [anon_sym_list] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_break] = ACTIONS(1905), - [anon_sym_continue] = ACTIONS(1905), - [anon_sym_for] = ACTIONS(1905), - [anon_sym_in] = ACTIONS(1905), - [anon_sym_loop] = ACTIONS(1905), - [anon_sym_make] = ACTIONS(1905), - [anon_sym_while] = ACTIONS(1905), - [anon_sym_do] = ACTIONS(1905), - [anon_sym_if] = ACTIONS(1905), - [anon_sym_else] = ACTIONS(1905), - [anon_sym_match] = ACTIONS(1905), - [anon_sym_RBRACE] = ACTIONS(1911), - [anon_sym_try] = ACTIONS(1905), - [anon_sym_catch] = 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_new] = ACTIONS(1905), - [anon_sym_as] = ACTIONS(1905), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1911), - [anon_sym_DOT_DOT2] = ACTIONS(2113), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2115), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2115), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1911), - [aux_sym__val_number_decimal_token1] = ACTIONS(1905), - [aux_sym__val_number_decimal_token2] = ACTIONS(1911), - [aux_sym__val_number_decimal_token3] = ACTIONS(1911), - [aux_sym__val_number_decimal_token4] = ACTIONS(1911), - [aux_sym__val_number_token1] = ACTIONS(1911), - [aux_sym__val_number_token2] = ACTIONS(1911), - [aux_sym__val_number_token3] = ACTIONS(1911), - [anon_sym_DQUOTE] = ACTIONS(1911), - [sym__str_single_quotes] = ACTIONS(1911), - [sym__str_back_ticks] = ACTIONS(1911), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1911), - [anon_sym_PLUS] = ACTIONS(1905), + [aux_sym_cell_path_repeat1] = STATE(435), + [anon_sym_export] = ACTIONS(1021), + [anon_sym_alias] = ACTIONS(1021), + [anon_sym_let] = ACTIONS(1021), + [anon_sym_let_DASHenv] = ACTIONS(1021), + [anon_sym_mut] = ACTIONS(1021), + [anon_sym_const] = ACTIONS(1021), + [aux_sym_cmd_identifier_token1] = ACTIONS(1021), + [aux_sym_cmd_identifier_token2] = ACTIONS(1021), + [aux_sym_cmd_identifier_token3] = ACTIONS(1021), + [aux_sym_cmd_identifier_token4] = ACTIONS(1021), + [aux_sym_cmd_identifier_token5] = ACTIONS(1021), + [aux_sym_cmd_identifier_token6] = ACTIONS(1021), + [aux_sym_cmd_identifier_token7] = ACTIONS(1021), + [aux_sym_cmd_identifier_token8] = ACTIONS(1021), + [aux_sym_cmd_identifier_token9] = ACTIONS(1021), + [aux_sym_cmd_identifier_token10] = ACTIONS(1021), + [aux_sym_cmd_identifier_token11] = ACTIONS(1021), + [aux_sym_cmd_identifier_token12] = ACTIONS(1021), + [aux_sym_cmd_identifier_token13] = ACTIONS(1021), + [aux_sym_cmd_identifier_token14] = ACTIONS(1021), + [aux_sym_cmd_identifier_token15] = ACTIONS(1021), + [aux_sym_cmd_identifier_token16] = ACTIONS(1021), + [aux_sym_cmd_identifier_token17] = ACTIONS(1021), + [aux_sym_cmd_identifier_token18] = ACTIONS(1021), + [aux_sym_cmd_identifier_token19] = ACTIONS(1021), + [aux_sym_cmd_identifier_token20] = ACTIONS(1021), + [aux_sym_cmd_identifier_token21] = ACTIONS(1021), + [aux_sym_cmd_identifier_token22] = ACTIONS(1021), + [aux_sym_cmd_identifier_token23] = ACTIONS(1021), + [aux_sym_cmd_identifier_token24] = ACTIONS(1021), + [aux_sym_cmd_identifier_token25] = ACTIONS(1021), + [aux_sym_cmd_identifier_token26] = ACTIONS(1021), + [aux_sym_cmd_identifier_token27] = ACTIONS(1021), + [aux_sym_cmd_identifier_token28] = ACTIONS(1021), + [aux_sym_cmd_identifier_token29] = ACTIONS(1021), + [aux_sym_cmd_identifier_token30] = ACTIONS(1021), + [aux_sym_cmd_identifier_token31] = ACTIONS(1021), + [aux_sym_cmd_identifier_token32] = ACTIONS(1021), + [aux_sym_cmd_identifier_token33] = ACTIONS(1021), + [aux_sym_cmd_identifier_token34] = ACTIONS(1021), + [aux_sym_cmd_identifier_token35] = ACTIONS(1021), + [aux_sym_cmd_identifier_token36] = ACTIONS(1021), + [anon_sym_true] = ACTIONS(1023), + [anon_sym_false] = ACTIONS(1023), + [anon_sym_null] = ACTIONS(1023), + [aux_sym_cmd_identifier_token38] = ACTIONS(1021), + [aux_sym_cmd_identifier_token39] = ACTIONS(1023), + [aux_sym_cmd_identifier_token40] = ACTIONS(1023), + [anon_sym_def] = ACTIONS(1021), + [anon_sym_export_DASHenv] = ACTIONS(1021), + [anon_sym_extern] = ACTIONS(1021), + [anon_sym_module] = ACTIONS(1021), + [anon_sym_use] = ACTIONS(1021), + [anon_sym_LPAREN] = ACTIONS(1023), + [anon_sym_DOLLAR] = ACTIONS(1023), + [anon_sym_error] = ACTIONS(1021), + [anon_sym_list] = ACTIONS(1021), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_break] = ACTIONS(1021), + [anon_sym_continue] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1021), + [anon_sym_in] = ACTIONS(1021), + [anon_sym_loop] = ACTIONS(1021), + [anon_sym_make] = ACTIONS(1021), + [anon_sym_while] = ACTIONS(1021), + [anon_sym_do] = ACTIONS(1021), + [anon_sym_if] = ACTIONS(1021), + [anon_sym_else] = ACTIONS(1021), + [anon_sym_match] = ACTIONS(1021), + [anon_sym_RBRACE] = ACTIONS(1023), + [anon_sym_try] = ACTIONS(1021), + [anon_sym_catch] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1021), + [anon_sym_source] = ACTIONS(1021), + [anon_sym_source_DASHenv] = ACTIONS(1021), + [anon_sym_register] = ACTIONS(1021), + [anon_sym_hide] = ACTIONS(1021), + [anon_sym_hide_DASHenv] = ACTIONS(1021), + [anon_sym_overlay] = ACTIONS(1021), + [anon_sym_new] = ACTIONS(1021), + [anon_sym_as] = ACTIONS(1021), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1023), + [anon_sym_DOT] = ACTIONS(2236), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1023), + [aux_sym__val_number_decimal_token1] = ACTIONS(1021), + [aux_sym__val_number_decimal_token2] = ACTIONS(1023), + [aux_sym__val_number_decimal_token3] = ACTIONS(1023), + [aux_sym__val_number_decimal_token4] = ACTIONS(1023), + [aux_sym__val_number_token1] = ACTIONS(1023), + [aux_sym__val_number_token2] = ACTIONS(1023), + [aux_sym__val_number_token3] = ACTIONS(1023), + [anon_sym_DQUOTE] = ACTIONS(1023), + [sym__str_single_quotes] = ACTIONS(1023), + [sym__str_back_ticks] = ACTIONS(1023), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(1021), [anon_sym_POUND] = ACTIONS(247), }, [436] = { [sym_comment] = STATE(436), - [anon_sym_export] = ACTIONS(2117), - [anon_sym_alias] = ACTIONS(2117), - [anon_sym_let] = ACTIONS(2117), - [anon_sym_let_DASHenv] = ACTIONS(2117), - [anon_sym_mut] = ACTIONS(2117), - [anon_sym_const] = ACTIONS(2117), - [aux_sym_cmd_identifier_token1] = ACTIONS(2117), - [aux_sym_cmd_identifier_token2] = ACTIONS(2117), - [aux_sym_cmd_identifier_token3] = ACTIONS(2117), - [aux_sym_cmd_identifier_token4] = ACTIONS(2117), - [aux_sym_cmd_identifier_token5] = ACTIONS(2117), - [aux_sym_cmd_identifier_token6] = ACTIONS(2117), - [aux_sym_cmd_identifier_token7] = ACTIONS(2117), - [aux_sym_cmd_identifier_token8] = ACTIONS(2117), - [aux_sym_cmd_identifier_token9] = ACTIONS(2117), - [aux_sym_cmd_identifier_token10] = ACTIONS(2117), - [aux_sym_cmd_identifier_token11] = ACTIONS(2117), - [aux_sym_cmd_identifier_token12] = ACTIONS(2117), - [aux_sym_cmd_identifier_token13] = ACTIONS(2117), - [aux_sym_cmd_identifier_token14] = ACTIONS(2117), - [aux_sym_cmd_identifier_token15] = ACTIONS(2117), - [aux_sym_cmd_identifier_token16] = ACTIONS(2117), - [aux_sym_cmd_identifier_token17] = ACTIONS(2117), - [aux_sym_cmd_identifier_token18] = ACTIONS(2117), - [aux_sym_cmd_identifier_token19] = ACTIONS(2117), - [aux_sym_cmd_identifier_token20] = ACTIONS(2117), - [aux_sym_cmd_identifier_token21] = ACTIONS(2117), - [aux_sym_cmd_identifier_token22] = ACTIONS(2117), - [aux_sym_cmd_identifier_token23] = ACTIONS(2117), - [aux_sym_cmd_identifier_token24] = ACTIONS(2117), - [aux_sym_cmd_identifier_token25] = ACTIONS(2117), - [aux_sym_cmd_identifier_token26] = ACTIONS(2117), - [aux_sym_cmd_identifier_token27] = ACTIONS(2117), - [aux_sym_cmd_identifier_token28] = ACTIONS(2117), - [aux_sym_cmd_identifier_token29] = ACTIONS(2117), - [aux_sym_cmd_identifier_token30] = ACTIONS(2117), - [aux_sym_cmd_identifier_token31] = ACTIONS(2117), - [aux_sym_cmd_identifier_token32] = ACTIONS(2117), - [aux_sym_cmd_identifier_token33] = ACTIONS(2117), - [aux_sym_cmd_identifier_token34] = ACTIONS(2117), - [aux_sym_cmd_identifier_token35] = ACTIONS(2117), - [aux_sym_cmd_identifier_token36] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(2117), - [anon_sym_false] = ACTIONS(2117), - [anon_sym_null] = ACTIONS(2117), - [aux_sym_cmd_identifier_token38] = ACTIONS(2117), - [aux_sym_cmd_identifier_token39] = ACTIONS(2117), - [aux_sym_cmd_identifier_token40] = ACTIONS(2117), - [anon_sym_def] = ACTIONS(2117), - [anon_sym_export_DASHenv] = ACTIONS(2117), - [anon_sym_extern] = ACTIONS(2117), - [anon_sym_module] = ACTIONS(2117), - [anon_sym_use] = ACTIONS(2117), - [anon_sym_LPAREN] = ACTIONS(2117), - [anon_sym_DOLLAR] = ACTIONS(2117), - [anon_sym_error] = ACTIONS(2117), - [anon_sym_list] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_break] = ACTIONS(2117), - [anon_sym_continue] = ACTIONS(2117), - [anon_sym_for] = ACTIONS(2117), - [anon_sym_in] = ACTIONS(2117), - [anon_sym_loop] = ACTIONS(2117), - [anon_sym_make] = ACTIONS(2117), - [anon_sym_while] = ACTIONS(2117), - [anon_sym_do] = ACTIONS(2117), - [anon_sym_if] = ACTIONS(2117), - [anon_sym_else] = ACTIONS(2117), - [anon_sym_match] = ACTIONS(2117), - [anon_sym_RBRACE] = ACTIONS(2117), - [anon_sym_try] = ACTIONS(2117), - [anon_sym_catch] = ACTIONS(2117), - [anon_sym_return] = ACTIONS(2117), - [anon_sym_source] = ACTIONS(2117), - [anon_sym_source_DASHenv] = ACTIONS(2117), - [anon_sym_register] = ACTIONS(2117), - [anon_sym_hide] = ACTIONS(2117), - [anon_sym_hide_DASHenv] = ACTIONS(2117), - [anon_sym_overlay] = ACTIONS(2117), - [anon_sym_new] = ACTIONS(2117), - [anon_sym_as] = ACTIONS(2117), - [anon_sym_LPAREN2] = ACTIONS(2119), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2117), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2117), - [aux_sym__val_number_decimal_token1] = ACTIONS(2117), - [aux_sym__val_number_decimal_token2] = ACTIONS(2117), - [aux_sym__val_number_decimal_token3] = ACTIONS(2117), - [aux_sym__val_number_decimal_token4] = ACTIONS(2117), - [aux_sym__val_number_token1] = ACTIONS(2117), - [aux_sym__val_number_token2] = ACTIONS(2117), - [aux_sym__val_number_token3] = ACTIONS(2117), - [anon_sym_DQUOTE] = ACTIONS(2117), - [sym__str_single_quotes] = ACTIONS(2117), - [sym__str_back_ticks] = ACTIONS(2117), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2117), - [sym__entry_separator] = ACTIONS(2121), - [anon_sym_PLUS] = ACTIONS(2117), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1457), + [anon_sym_export] = ACTIONS(1076), + [anon_sym_alias] = ACTIONS(1076), + [anon_sym_let] = ACTIONS(1076), + [anon_sym_let_DASHenv] = ACTIONS(1076), + [anon_sym_mut] = ACTIONS(1076), + [anon_sym_const] = ACTIONS(1076), + [aux_sym_cmd_identifier_token1] = ACTIONS(1076), + [aux_sym_cmd_identifier_token2] = ACTIONS(1076), + [aux_sym_cmd_identifier_token3] = ACTIONS(1076), + [aux_sym_cmd_identifier_token4] = ACTIONS(1076), + [aux_sym_cmd_identifier_token5] = ACTIONS(1076), + [aux_sym_cmd_identifier_token6] = ACTIONS(1076), + [aux_sym_cmd_identifier_token7] = ACTIONS(1076), + [aux_sym_cmd_identifier_token8] = ACTIONS(1076), + [aux_sym_cmd_identifier_token9] = ACTIONS(1076), + [aux_sym_cmd_identifier_token10] = ACTIONS(1076), + [aux_sym_cmd_identifier_token11] = ACTIONS(1076), + [aux_sym_cmd_identifier_token12] = ACTIONS(1076), + [aux_sym_cmd_identifier_token13] = ACTIONS(1076), + [aux_sym_cmd_identifier_token14] = ACTIONS(1076), + [aux_sym_cmd_identifier_token15] = ACTIONS(1076), + [aux_sym_cmd_identifier_token16] = ACTIONS(1076), + [aux_sym_cmd_identifier_token17] = ACTIONS(1076), + [aux_sym_cmd_identifier_token18] = ACTIONS(1076), + [aux_sym_cmd_identifier_token19] = ACTIONS(1076), + [aux_sym_cmd_identifier_token20] = ACTIONS(1076), + [aux_sym_cmd_identifier_token21] = ACTIONS(1076), + [aux_sym_cmd_identifier_token22] = ACTIONS(1076), + [aux_sym_cmd_identifier_token23] = ACTIONS(1076), + [aux_sym_cmd_identifier_token24] = ACTIONS(1076), + [aux_sym_cmd_identifier_token25] = ACTIONS(1076), + [aux_sym_cmd_identifier_token26] = ACTIONS(1076), + [aux_sym_cmd_identifier_token27] = ACTIONS(1076), + [aux_sym_cmd_identifier_token28] = ACTIONS(1076), + [aux_sym_cmd_identifier_token29] = ACTIONS(1076), + [aux_sym_cmd_identifier_token30] = ACTIONS(1076), + [aux_sym_cmd_identifier_token31] = ACTIONS(1076), + [aux_sym_cmd_identifier_token32] = ACTIONS(1076), + [aux_sym_cmd_identifier_token33] = ACTIONS(1076), + [aux_sym_cmd_identifier_token34] = ACTIONS(1076), + [aux_sym_cmd_identifier_token35] = ACTIONS(1076), + [aux_sym_cmd_identifier_token36] = ACTIONS(1076), + [anon_sym_true] = ACTIONS(1076), + [anon_sym_false] = ACTIONS(1076), + [anon_sym_null] = ACTIONS(1076), + [aux_sym_cmd_identifier_token38] = ACTIONS(1076), + [aux_sym_cmd_identifier_token39] = ACTIONS(1076), + [aux_sym_cmd_identifier_token40] = ACTIONS(1076), + [anon_sym_def] = ACTIONS(1076), + [anon_sym_export_DASHenv] = ACTIONS(1076), + [anon_sym_extern] = ACTIONS(1076), + [anon_sym_module] = ACTIONS(1076), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_DOLLAR] = ACTIONS(1076), + [anon_sym_error] = ACTIONS(1076), + [anon_sym_list] = ACTIONS(1076), + [anon_sym_DASH] = ACTIONS(1076), + [anon_sym_break] = ACTIONS(1076), + [anon_sym_continue] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1076), + [anon_sym_in] = ACTIONS(1076), + [anon_sym_loop] = ACTIONS(1076), + [anon_sym_make] = ACTIONS(1076), + [anon_sym_while] = ACTIONS(1076), + [anon_sym_do] = ACTIONS(1076), + [anon_sym_if] = ACTIONS(1076), + [anon_sym_else] = ACTIONS(1076), + [anon_sym_match] = ACTIONS(1076), + [anon_sym_RBRACE] = ACTIONS(1076), + [anon_sym_try] = ACTIONS(1076), + [anon_sym_catch] = ACTIONS(1076), + [anon_sym_return] = ACTIONS(1076), + [anon_sym_source] = ACTIONS(1076), + [anon_sym_source_DASHenv] = ACTIONS(1076), + [anon_sym_register] = ACTIONS(1076), + [anon_sym_hide] = ACTIONS(1076), + [anon_sym_hide_DASHenv] = ACTIONS(1076), + [anon_sym_overlay] = ACTIONS(1076), + [anon_sym_new] = ACTIONS(1076), + [anon_sym_as] = ACTIONS(1076), + [anon_sym_LPAREN2] = ACTIONS(2239), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1076), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1076), + [aux_sym__val_number_decimal_token1] = ACTIONS(1076), + [aux_sym__val_number_decimal_token2] = ACTIONS(1076), + [aux_sym__val_number_decimal_token3] = ACTIONS(1076), + [aux_sym__val_number_decimal_token4] = ACTIONS(1076), + [aux_sym__val_number_token1] = ACTIONS(1076), + [aux_sym__val_number_token2] = ACTIONS(1076), + [aux_sym__val_number_token3] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1076), + [sym__str_single_quotes] = ACTIONS(1076), + [sym__str_back_ticks] = ACTIONS(1076), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1076), + [sym__entry_separator] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1076), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2241), [anon_sym_POUND] = ACTIONS(3), }, [437] = { [sym_comment] = STATE(437), - [anon_sym_export] = ACTIONS(2123), - [anon_sym_alias] = ACTIONS(2123), - [anon_sym_let] = ACTIONS(2123), - [anon_sym_let_DASHenv] = ACTIONS(2123), - [anon_sym_mut] = ACTIONS(2123), - [anon_sym_const] = ACTIONS(2123), - [aux_sym_cmd_identifier_token1] = ACTIONS(2123), - [aux_sym_cmd_identifier_token2] = ACTIONS(2123), - [aux_sym_cmd_identifier_token3] = ACTIONS(2123), - [aux_sym_cmd_identifier_token4] = ACTIONS(2123), - [aux_sym_cmd_identifier_token5] = ACTIONS(2123), - [aux_sym_cmd_identifier_token6] = ACTIONS(2123), - [aux_sym_cmd_identifier_token7] = ACTIONS(2123), - [aux_sym_cmd_identifier_token8] = ACTIONS(2123), - [aux_sym_cmd_identifier_token9] = ACTIONS(2123), - [aux_sym_cmd_identifier_token10] = ACTIONS(2123), - [aux_sym_cmd_identifier_token11] = ACTIONS(2123), - [aux_sym_cmd_identifier_token12] = ACTIONS(2123), - [aux_sym_cmd_identifier_token13] = ACTIONS(2123), - [aux_sym_cmd_identifier_token14] = ACTIONS(2123), - [aux_sym_cmd_identifier_token15] = ACTIONS(2123), - [aux_sym_cmd_identifier_token16] = ACTIONS(2123), - [aux_sym_cmd_identifier_token17] = ACTIONS(2123), - [aux_sym_cmd_identifier_token18] = ACTIONS(2123), - [aux_sym_cmd_identifier_token19] = ACTIONS(2123), - [aux_sym_cmd_identifier_token20] = ACTIONS(2123), - [aux_sym_cmd_identifier_token21] = ACTIONS(2123), - [aux_sym_cmd_identifier_token22] = ACTIONS(2123), - [aux_sym_cmd_identifier_token23] = ACTIONS(2123), - [aux_sym_cmd_identifier_token24] = ACTIONS(2123), - [aux_sym_cmd_identifier_token25] = ACTIONS(2123), - [aux_sym_cmd_identifier_token26] = ACTIONS(2123), - [aux_sym_cmd_identifier_token27] = ACTIONS(2123), - [aux_sym_cmd_identifier_token28] = ACTIONS(2123), - [aux_sym_cmd_identifier_token29] = ACTIONS(2123), - [aux_sym_cmd_identifier_token30] = ACTIONS(2123), - [aux_sym_cmd_identifier_token31] = ACTIONS(2123), - [aux_sym_cmd_identifier_token32] = ACTIONS(2123), - [aux_sym_cmd_identifier_token33] = ACTIONS(2123), - [aux_sym_cmd_identifier_token34] = ACTIONS(2123), - [aux_sym_cmd_identifier_token35] = ACTIONS(2123), - [aux_sym_cmd_identifier_token36] = ACTIONS(2123), - [anon_sym_true] = ACTIONS(2123), - [anon_sym_false] = ACTIONS(2123), - [anon_sym_null] = ACTIONS(2123), - [aux_sym_cmd_identifier_token38] = ACTIONS(2123), - [aux_sym_cmd_identifier_token39] = ACTIONS(2123), - [aux_sym_cmd_identifier_token40] = ACTIONS(2123), - [anon_sym_def] = ACTIONS(2123), - [anon_sym_export_DASHenv] = ACTIONS(2123), - [anon_sym_extern] = ACTIONS(2123), - [anon_sym_module] = ACTIONS(2123), - [anon_sym_use] = ACTIONS(2123), - [anon_sym_LPAREN] = ACTIONS(2123), - [anon_sym_DOLLAR] = ACTIONS(2123), - [anon_sym_error] = ACTIONS(2123), - [anon_sym_list] = ACTIONS(2123), - [anon_sym_DASH] = ACTIONS(2123), - [anon_sym_break] = ACTIONS(2123), - [anon_sym_continue] = ACTIONS(2123), - [anon_sym_for] = ACTIONS(2123), - [anon_sym_in] = ACTIONS(2123), - [anon_sym_loop] = ACTIONS(2123), - [anon_sym_make] = ACTIONS(2123), - [anon_sym_while] = ACTIONS(2123), - [anon_sym_do] = ACTIONS(2123), - [anon_sym_if] = ACTIONS(2123), - [anon_sym_else] = ACTIONS(2123), - [anon_sym_match] = ACTIONS(2123), - [anon_sym_RBRACE] = ACTIONS(2123), - [anon_sym_try] = ACTIONS(2123), - [anon_sym_catch] = ACTIONS(2123), - [anon_sym_return] = ACTIONS(2123), - [anon_sym_source] = ACTIONS(2123), - [anon_sym_source_DASHenv] = ACTIONS(2123), - [anon_sym_register] = ACTIONS(2123), - [anon_sym_hide] = ACTIONS(2123), - [anon_sym_hide_DASHenv] = ACTIONS(2123), - [anon_sym_overlay] = ACTIONS(2123), - [anon_sym_new] = ACTIONS(2123), - [anon_sym_as] = ACTIONS(2123), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2123), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2123), - [aux_sym__val_number_decimal_token1] = ACTIONS(2123), - [aux_sym__val_number_decimal_token2] = ACTIONS(2123), - [aux_sym__val_number_decimal_token3] = ACTIONS(2123), - [aux_sym__val_number_decimal_token4] = ACTIONS(2123), - [aux_sym__val_number_token1] = ACTIONS(2123), - [aux_sym__val_number_token2] = ACTIONS(2123), - [aux_sym__val_number_token3] = ACTIONS(2123), - [anon_sym_DQUOTE] = ACTIONS(2123), - [sym__str_single_quotes] = ACTIONS(2123), - [sym__str_back_ticks] = ACTIONS(2123), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2123), - [sym__entry_separator] = ACTIONS(2127), - [anon_sym_PLUS] = ACTIONS(2123), - [aux_sym__unquoted_in_record_token2] = ACTIONS(2129), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2023), + [anon_sym_alias] = ACTIONS(2023), + [anon_sym_let] = ACTIONS(2023), + [anon_sym_let_DASHenv] = ACTIONS(2023), + [anon_sym_mut] = ACTIONS(2023), + [anon_sym_const] = ACTIONS(2023), + [aux_sym_cmd_identifier_token1] = ACTIONS(2023), + [aux_sym_cmd_identifier_token2] = ACTIONS(2023), + [aux_sym_cmd_identifier_token3] = ACTIONS(2023), + [aux_sym_cmd_identifier_token4] = ACTIONS(2023), + [aux_sym_cmd_identifier_token5] = ACTIONS(2023), + [aux_sym_cmd_identifier_token6] = ACTIONS(2023), + [aux_sym_cmd_identifier_token7] = ACTIONS(2023), + [aux_sym_cmd_identifier_token8] = ACTIONS(2023), + [aux_sym_cmd_identifier_token9] = ACTIONS(2023), + [aux_sym_cmd_identifier_token10] = ACTIONS(2023), + [aux_sym_cmd_identifier_token11] = ACTIONS(2023), + [aux_sym_cmd_identifier_token12] = ACTIONS(2023), + [aux_sym_cmd_identifier_token13] = ACTIONS(2023), + [aux_sym_cmd_identifier_token14] = ACTIONS(2023), + [aux_sym_cmd_identifier_token15] = ACTIONS(2023), + [aux_sym_cmd_identifier_token16] = ACTIONS(2023), + [aux_sym_cmd_identifier_token17] = ACTIONS(2023), + [aux_sym_cmd_identifier_token18] = ACTIONS(2023), + [aux_sym_cmd_identifier_token19] = ACTIONS(2023), + [aux_sym_cmd_identifier_token20] = ACTIONS(2023), + [aux_sym_cmd_identifier_token21] = ACTIONS(2023), + [aux_sym_cmd_identifier_token22] = ACTIONS(2023), + [aux_sym_cmd_identifier_token23] = ACTIONS(2023), + [aux_sym_cmd_identifier_token24] = ACTIONS(2023), + [aux_sym_cmd_identifier_token25] = ACTIONS(2023), + [aux_sym_cmd_identifier_token26] = ACTIONS(2023), + [aux_sym_cmd_identifier_token27] = ACTIONS(2023), + [aux_sym_cmd_identifier_token28] = ACTIONS(2023), + [aux_sym_cmd_identifier_token29] = ACTIONS(2023), + [aux_sym_cmd_identifier_token30] = ACTIONS(2023), + [aux_sym_cmd_identifier_token31] = ACTIONS(2023), + [aux_sym_cmd_identifier_token32] = ACTIONS(2023), + [aux_sym_cmd_identifier_token33] = ACTIONS(2023), + [aux_sym_cmd_identifier_token34] = ACTIONS(2023), + [aux_sym_cmd_identifier_token35] = ACTIONS(2023), + [aux_sym_cmd_identifier_token36] = ACTIONS(2023), + [anon_sym_true] = ACTIONS(2025), + [anon_sym_false] = ACTIONS(2025), + [anon_sym_null] = ACTIONS(2025), + [aux_sym_cmd_identifier_token38] = ACTIONS(2023), + [aux_sym_cmd_identifier_token39] = ACTIONS(2025), + [aux_sym_cmd_identifier_token40] = ACTIONS(2025), + [anon_sym_def] = ACTIONS(2023), + [anon_sym_export_DASHenv] = ACTIONS(2023), + [anon_sym_extern] = ACTIONS(2023), + [anon_sym_module] = ACTIONS(2023), + [anon_sym_use] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(2025), + [anon_sym_DOLLAR] = ACTIONS(2025), + [anon_sym_error] = ACTIONS(2023), + [anon_sym_list] = ACTIONS(2023), + [anon_sym_DASH] = ACTIONS(2023), + [anon_sym_break] = ACTIONS(2023), + [anon_sym_continue] = ACTIONS(2023), + [anon_sym_for] = ACTIONS(2023), + [anon_sym_in] = ACTIONS(2023), + [anon_sym_loop] = ACTIONS(2023), + [anon_sym_make] = ACTIONS(2023), + [anon_sym_while] = ACTIONS(2023), + [anon_sym_do] = ACTIONS(2023), + [anon_sym_if] = ACTIONS(2023), + [anon_sym_else] = ACTIONS(2023), + [anon_sym_match] = ACTIONS(2023), + [anon_sym_RBRACE] = ACTIONS(2025), + [anon_sym_try] = ACTIONS(2023), + [anon_sym_catch] = ACTIONS(2023), + [anon_sym_return] = ACTIONS(2023), + [anon_sym_source] = ACTIONS(2023), + [anon_sym_source_DASHenv] = ACTIONS(2023), + [anon_sym_register] = ACTIONS(2023), + [anon_sym_hide] = ACTIONS(2023), + [anon_sym_hide_DASHenv] = ACTIONS(2023), + [anon_sym_overlay] = ACTIONS(2023), + [anon_sym_new] = ACTIONS(2023), + [anon_sym_as] = ACTIONS(2023), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2025), + [anon_sym_DOT_DOT2] = ACTIONS(2232), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2234), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2234), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2025), + [aux_sym__val_number_decimal_token1] = ACTIONS(2023), + [aux_sym__val_number_decimal_token2] = ACTIONS(2025), + [aux_sym__val_number_decimal_token3] = ACTIONS(2025), + [aux_sym__val_number_decimal_token4] = ACTIONS(2025), + [aux_sym__val_number_token1] = ACTIONS(2025), + [aux_sym__val_number_token2] = ACTIONS(2025), + [aux_sym__val_number_token3] = ACTIONS(2025), + [anon_sym_DQUOTE] = ACTIONS(2025), + [sym__str_single_quotes] = ACTIONS(2025), + [sym__str_back_ticks] = ACTIONS(2025), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2025), + [anon_sym_PLUS] = ACTIONS(2023), + [anon_sym_POUND] = ACTIONS(247), }, [438] = { [sym_comment] = STATE(438), - [anon_sym_export] = ACTIONS(966), - [anon_sym_alias] = ACTIONS(966), - [anon_sym_let] = ACTIONS(966), - [anon_sym_let_DASHenv] = ACTIONS(966), - [anon_sym_mut] = ACTIONS(966), - [anon_sym_const] = ACTIONS(966), - [aux_sym_cmd_identifier_token1] = ACTIONS(966), - [aux_sym_cmd_identifier_token2] = ACTIONS(966), - [aux_sym_cmd_identifier_token3] = ACTIONS(966), - [aux_sym_cmd_identifier_token4] = ACTIONS(966), - [aux_sym_cmd_identifier_token5] = ACTIONS(966), - [aux_sym_cmd_identifier_token6] = ACTIONS(966), - [aux_sym_cmd_identifier_token7] = ACTIONS(966), - [aux_sym_cmd_identifier_token8] = ACTIONS(966), - [aux_sym_cmd_identifier_token9] = ACTIONS(966), - [aux_sym_cmd_identifier_token10] = ACTIONS(966), - [aux_sym_cmd_identifier_token11] = ACTIONS(966), - [aux_sym_cmd_identifier_token12] = ACTIONS(966), - [aux_sym_cmd_identifier_token13] = ACTIONS(966), - [aux_sym_cmd_identifier_token14] = ACTIONS(966), - [aux_sym_cmd_identifier_token15] = ACTIONS(966), - [aux_sym_cmd_identifier_token16] = ACTIONS(966), - [aux_sym_cmd_identifier_token17] = ACTIONS(966), - [aux_sym_cmd_identifier_token18] = ACTIONS(966), - [aux_sym_cmd_identifier_token19] = ACTIONS(966), - [aux_sym_cmd_identifier_token20] = ACTIONS(966), - [aux_sym_cmd_identifier_token21] = ACTIONS(966), - [aux_sym_cmd_identifier_token22] = ACTIONS(966), - [aux_sym_cmd_identifier_token23] = ACTIONS(966), - [aux_sym_cmd_identifier_token24] = ACTIONS(966), - [aux_sym_cmd_identifier_token25] = ACTIONS(966), - [aux_sym_cmd_identifier_token26] = ACTIONS(966), - [aux_sym_cmd_identifier_token27] = ACTIONS(966), - [aux_sym_cmd_identifier_token28] = ACTIONS(966), - [aux_sym_cmd_identifier_token29] = ACTIONS(966), - [aux_sym_cmd_identifier_token30] = ACTIONS(966), - [aux_sym_cmd_identifier_token31] = ACTIONS(966), - [aux_sym_cmd_identifier_token32] = ACTIONS(966), - [aux_sym_cmd_identifier_token33] = ACTIONS(966), - [aux_sym_cmd_identifier_token34] = ACTIONS(966), - [aux_sym_cmd_identifier_token35] = ACTIONS(966), - [aux_sym_cmd_identifier_token36] = ACTIONS(966), - [anon_sym_true] = ACTIONS(966), - [anon_sym_false] = ACTIONS(966), - [anon_sym_null] = ACTIONS(966), - [aux_sym_cmd_identifier_token38] = ACTIONS(966), - [aux_sym_cmd_identifier_token39] = ACTIONS(966), - [aux_sym_cmd_identifier_token40] = ACTIONS(966), - [anon_sym_def] = ACTIONS(966), - [anon_sym_export_DASHenv] = ACTIONS(966), - [anon_sym_extern] = ACTIONS(966), - [anon_sym_module] = ACTIONS(966), - [anon_sym_use] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(966), - [anon_sym_DOLLAR] = ACTIONS(966), - [anon_sym_error] = ACTIONS(966), - [anon_sym_list] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_break] = ACTIONS(966), - [anon_sym_continue] = ACTIONS(966), - [anon_sym_for] = ACTIONS(966), - [anon_sym_in] = ACTIONS(966), - [anon_sym_loop] = ACTIONS(966), - [anon_sym_make] = ACTIONS(966), - [anon_sym_while] = ACTIONS(966), - [anon_sym_do] = ACTIONS(966), - [anon_sym_if] = ACTIONS(966), - [anon_sym_else] = ACTIONS(966), - [anon_sym_match] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(966), - [anon_sym_try] = ACTIONS(966), - [anon_sym_catch] = ACTIONS(966), - [anon_sym_return] = ACTIONS(966), - [anon_sym_source] = ACTIONS(966), - [anon_sym_source_DASHenv] = ACTIONS(966), - [anon_sym_register] = ACTIONS(966), - [anon_sym_hide] = ACTIONS(966), - [anon_sym_hide_DASHenv] = ACTIONS(966), - [anon_sym_overlay] = ACTIONS(966), - [anon_sym_new] = ACTIONS(966), - [anon_sym_as] = ACTIONS(966), - [anon_sym_QMARK2] = ACTIONS(966), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(966), - [anon_sym_DOT] = ACTIONS(966), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(966), - [aux_sym__val_number_decimal_token1] = ACTIONS(966), - [aux_sym__val_number_decimal_token2] = ACTIONS(966), - [aux_sym__val_number_decimal_token3] = ACTIONS(966), - [aux_sym__val_number_decimal_token4] = ACTIONS(966), - [aux_sym__val_number_token1] = ACTIONS(966), - [aux_sym__val_number_token2] = ACTIONS(966), - [aux_sym__val_number_token3] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(966), - [sym__str_single_quotes] = ACTIONS(966), - [sym__str_back_ticks] = ACTIONS(966), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(966), - [sym__entry_separator] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_export] = ACTIONS(2243), + [anon_sym_alias] = ACTIONS(2243), + [anon_sym_let] = ACTIONS(2243), + [anon_sym_let_DASHenv] = ACTIONS(2243), + [anon_sym_mut] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(2243), + [aux_sym_cmd_identifier_token1] = ACTIONS(2243), + [aux_sym_cmd_identifier_token2] = ACTIONS(2243), + [aux_sym_cmd_identifier_token3] = ACTIONS(2243), + [aux_sym_cmd_identifier_token4] = ACTIONS(2243), + [aux_sym_cmd_identifier_token5] = ACTIONS(2243), + [aux_sym_cmd_identifier_token6] = ACTIONS(2243), + [aux_sym_cmd_identifier_token7] = ACTIONS(2243), + [aux_sym_cmd_identifier_token8] = ACTIONS(2243), + [aux_sym_cmd_identifier_token9] = ACTIONS(2243), + [aux_sym_cmd_identifier_token10] = ACTIONS(2243), + [aux_sym_cmd_identifier_token11] = ACTIONS(2243), + [aux_sym_cmd_identifier_token12] = ACTIONS(2243), + [aux_sym_cmd_identifier_token13] = ACTIONS(2243), + [aux_sym_cmd_identifier_token14] = ACTIONS(2243), + [aux_sym_cmd_identifier_token15] = ACTIONS(2243), + [aux_sym_cmd_identifier_token16] = ACTIONS(2243), + [aux_sym_cmd_identifier_token17] = ACTIONS(2243), + [aux_sym_cmd_identifier_token18] = ACTIONS(2243), + [aux_sym_cmd_identifier_token19] = ACTIONS(2243), + [aux_sym_cmd_identifier_token20] = ACTIONS(2243), + [aux_sym_cmd_identifier_token21] = ACTIONS(2243), + [aux_sym_cmd_identifier_token22] = ACTIONS(2243), + [aux_sym_cmd_identifier_token23] = ACTIONS(2243), + [aux_sym_cmd_identifier_token24] = ACTIONS(2243), + [aux_sym_cmd_identifier_token25] = ACTIONS(2243), + [aux_sym_cmd_identifier_token26] = ACTIONS(2243), + [aux_sym_cmd_identifier_token27] = ACTIONS(2243), + [aux_sym_cmd_identifier_token28] = ACTIONS(2243), + [aux_sym_cmd_identifier_token29] = ACTIONS(2243), + [aux_sym_cmd_identifier_token30] = ACTIONS(2243), + [aux_sym_cmd_identifier_token31] = ACTIONS(2243), + [aux_sym_cmd_identifier_token32] = ACTIONS(2243), + [aux_sym_cmd_identifier_token33] = ACTIONS(2243), + [aux_sym_cmd_identifier_token34] = ACTIONS(2243), + [aux_sym_cmd_identifier_token35] = ACTIONS(2243), + [aux_sym_cmd_identifier_token36] = ACTIONS(2243), + [anon_sym_true] = ACTIONS(2243), + [anon_sym_false] = ACTIONS(2243), + [anon_sym_null] = ACTIONS(2243), + [aux_sym_cmd_identifier_token38] = ACTIONS(2243), + [aux_sym_cmd_identifier_token39] = ACTIONS(2243), + [aux_sym_cmd_identifier_token40] = ACTIONS(2243), + [anon_sym_def] = ACTIONS(2243), + [anon_sym_export_DASHenv] = ACTIONS(2243), + [anon_sym_extern] = ACTIONS(2243), + [anon_sym_module] = ACTIONS(2243), + [anon_sym_use] = ACTIONS(2243), + [anon_sym_LPAREN] = ACTIONS(2243), + [anon_sym_DOLLAR] = ACTIONS(2243), + [anon_sym_error] = ACTIONS(2243), + [anon_sym_list] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_break] = ACTIONS(2243), + [anon_sym_continue] = ACTIONS(2243), + [anon_sym_for] = ACTIONS(2243), + [anon_sym_in] = ACTIONS(2243), + [anon_sym_loop] = ACTIONS(2243), + [anon_sym_make] = ACTIONS(2243), + [anon_sym_while] = ACTIONS(2243), + [anon_sym_do] = ACTIONS(2243), + [anon_sym_if] = ACTIONS(2243), + [anon_sym_else] = ACTIONS(2243), + [anon_sym_match] = ACTIONS(2243), + [anon_sym_RBRACE] = ACTIONS(2243), + [anon_sym_try] = ACTIONS(2243), + [anon_sym_catch] = ACTIONS(2243), + [anon_sym_return] = ACTIONS(2243), + [anon_sym_source] = ACTIONS(2243), + [anon_sym_source_DASHenv] = ACTIONS(2243), + [anon_sym_register] = ACTIONS(2243), + [anon_sym_hide] = ACTIONS(2243), + [anon_sym_hide_DASHenv] = ACTIONS(2243), + [anon_sym_overlay] = ACTIONS(2243), + [anon_sym_new] = ACTIONS(2243), + [anon_sym_as] = ACTIONS(2243), + [anon_sym_LPAREN2] = ACTIONS(2245), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2243), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2243), + [aux_sym__val_number_decimal_token1] = ACTIONS(2243), + [aux_sym__val_number_decimal_token2] = ACTIONS(2243), + [aux_sym__val_number_decimal_token3] = ACTIONS(2243), + [aux_sym__val_number_decimal_token4] = ACTIONS(2243), + [aux_sym__val_number_token1] = ACTIONS(2243), + [aux_sym__val_number_token2] = ACTIONS(2243), + [aux_sym__val_number_token3] = ACTIONS(2243), + [anon_sym_DQUOTE] = ACTIONS(2243), + [sym__str_single_quotes] = ACTIONS(2243), + [sym__str_back_ticks] = ACTIONS(2243), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2243), + [sym__entry_separator] = ACTIONS(2247), + [anon_sym_PLUS] = ACTIONS(2243), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2249), [anon_sym_POUND] = ACTIONS(3), }, [439] = { [sym_comment] = STATE(439), - [anon_sym_export] = ACTIONS(976), - [anon_sym_alias] = ACTIONS(976), - [anon_sym_let] = ACTIONS(976), - [anon_sym_let_DASHenv] = ACTIONS(976), - [anon_sym_mut] = ACTIONS(976), - [anon_sym_const] = ACTIONS(976), - [aux_sym_cmd_identifier_token1] = ACTIONS(976), - [aux_sym_cmd_identifier_token2] = ACTIONS(976), - [aux_sym_cmd_identifier_token3] = ACTIONS(976), - [aux_sym_cmd_identifier_token4] = ACTIONS(976), - [aux_sym_cmd_identifier_token5] = ACTIONS(976), - [aux_sym_cmd_identifier_token6] = ACTIONS(976), - [aux_sym_cmd_identifier_token7] = ACTIONS(976), - [aux_sym_cmd_identifier_token8] = ACTIONS(976), - [aux_sym_cmd_identifier_token9] = ACTIONS(976), - [aux_sym_cmd_identifier_token10] = ACTIONS(976), - [aux_sym_cmd_identifier_token11] = ACTIONS(976), - [aux_sym_cmd_identifier_token12] = ACTIONS(976), - [aux_sym_cmd_identifier_token13] = ACTIONS(976), - [aux_sym_cmd_identifier_token14] = ACTIONS(976), - [aux_sym_cmd_identifier_token15] = ACTIONS(976), - [aux_sym_cmd_identifier_token16] = ACTIONS(976), - [aux_sym_cmd_identifier_token17] = ACTIONS(976), - [aux_sym_cmd_identifier_token18] = ACTIONS(976), - [aux_sym_cmd_identifier_token19] = ACTIONS(976), - [aux_sym_cmd_identifier_token20] = ACTIONS(976), - [aux_sym_cmd_identifier_token21] = ACTIONS(976), - [aux_sym_cmd_identifier_token22] = ACTIONS(976), - [aux_sym_cmd_identifier_token23] = ACTIONS(976), - [aux_sym_cmd_identifier_token24] = ACTIONS(976), - [aux_sym_cmd_identifier_token25] = ACTIONS(976), - [aux_sym_cmd_identifier_token26] = ACTIONS(976), - [aux_sym_cmd_identifier_token27] = ACTIONS(976), - [aux_sym_cmd_identifier_token28] = ACTIONS(976), - [aux_sym_cmd_identifier_token29] = ACTIONS(976), - [aux_sym_cmd_identifier_token30] = ACTIONS(976), - [aux_sym_cmd_identifier_token31] = ACTIONS(976), - [aux_sym_cmd_identifier_token32] = ACTIONS(976), - [aux_sym_cmd_identifier_token33] = ACTIONS(976), - [aux_sym_cmd_identifier_token34] = ACTIONS(976), - [aux_sym_cmd_identifier_token35] = ACTIONS(976), - [aux_sym_cmd_identifier_token36] = ACTIONS(976), - [anon_sym_true] = ACTIONS(976), - [anon_sym_false] = ACTIONS(976), - [anon_sym_null] = ACTIONS(976), - [aux_sym_cmd_identifier_token38] = ACTIONS(976), - [aux_sym_cmd_identifier_token39] = ACTIONS(976), - [aux_sym_cmd_identifier_token40] = ACTIONS(976), - [anon_sym_def] = ACTIONS(976), - [anon_sym_export_DASHenv] = ACTIONS(976), - [anon_sym_extern] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_use] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(976), - [anon_sym_DOLLAR] = ACTIONS(976), - [anon_sym_error] = ACTIONS(976), - [anon_sym_list] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_break] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_in] = ACTIONS(976), - [anon_sym_loop] = ACTIONS(976), - [anon_sym_make] = ACTIONS(976), - [anon_sym_while] = ACTIONS(976), - [anon_sym_do] = ACTIONS(976), - [anon_sym_if] = ACTIONS(976), - [anon_sym_else] = ACTIONS(976), - [anon_sym_match] = ACTIONS(976), - [anon_sym_RBRACE] = ACTIONS(976), - [anon_sym_try] = ACTIONS(976), - [anon_sym_catch] = ACTIONS(976), - [anon_sym_return] = ACTIONS(976), - [anon_sym_source] = ACTIONS(976), - [anon_sym_source_DASHenv] = ACTIONS(976), - [anon_sym_register] = ACTIONS(976), - [anon_sym_hide] = ACTIONS(976), - [anon_sym_hide_DASHenv] = ACTIONS(976), - [anon_sym_overlay] = ACTIONS(976), - [anon_sym_new] = ACTIONS(976), - [anon_sym_as] = ACTIONS(976), - [anon_sym_QMARK2] = ACTIONS(976), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(976), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(976), - [aux_sym__val_number_decimal_token1] = ACTIONS(976), - [aux_sym__val_number_decimal_token2] = ACTIONS(976), - [aux_sym__val_number_decimal_token3] = ACTIONS(976), - [aux_sym__val_number_decimal_token4] = ACTIONS(976), - [aux_sym__val_number_token1] = ACTIONS(976), - [aux_sym__val_number_token2] = ACTIONS(976), - [aux_sym__val_number_token3] = ACTIONS(976), - [anon_sym_DQUOTE] = ACTIONS(976), - [sym__str_single_quotes] = ACTIONS(976), - [sym__str_back_ticks] = ACTIONS(976), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(976), - [sym__entry_separator] = ACTIONS(978), - [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_export] = ACTIONS(2251), + [anon_sym_alias] = ACTIONS(2251), + [anon_sym_let] = ACTIONS(2251), + [anon_sym_let_DASHenv] = ACTIONS(2251), + [anon_sym_mut] = ACTIONS(2251), + [anon_sym_const] = ACTIONS(2251), + [aux_sym_cmd_identifier_token1] = ACTIONS(2251), + [aux_sym_cmd_identifier_token2] = ACTIONS(2251), + [aux_sym_cmd_identifier_token3] = ACTIONS(2251), + [aux_sym_cmd_identifier_token4] = ACTIONS(2251), + [aux_sym_cmd_identifier_token5] = ACTIONS(2251), + [aux_sym_cmd_identifier_token6] = ACTIONS(2251), + [aux_sym_cmd_identifier_token7] = ACTIONS(2251), + [aux_sym_cmd_identifier_token8] = ACTIONS(2251), + [aux_sym_cmd_identifier_token9] = ACTIONS(2251), + [aux_sym_cmd_identifier_token10] = ACTIONS(2251), + [aux_sym_cmd_identifier_token11] = ACTIONS(2251), + [aux_sym_cmd_identifier_token12] = ACTIONS(2251), + [aux_sym_cmd_identifier_token13] = ACTIONS(2251), + [aux_sym_cmd_identifier_token14] = ACTIONS(2251), + [aux_sym_cmd_identifier_token15] = ACTIONS(2251), + [aux_sym_cmd_identifier_token16] = ACTIONS(2251), + [aux_sym_cmd_identifier_token17] = ACTIONS(2251), + [aux_sym_cmd_identifier_token18] = ACTIONS(2251), + [aux_sym_cmd_identifier_token19] = ACTIONS(2251), + [aux_sym_cmd_identifier_token20] = ACTIONS(2251), + [aux_sym_cmd_identifier_token21] = ACTIONS(2251), + [aux_sym_cmd_identifier_token22] = ACTIONS(2251), + [aux_sym_cmd_identifier_token23] = ACTIONS(2251), + [aux_sym_cmd_identifier_token24] = ACTIONS(2251), + [aux_sym_cmd_identifier_token25] = ACTIONS(2251), + [aux_sym_cmd_identifier_token26] = ACTIONS(2251), + [aux_sym_cmd_identifier_token27] = ACTIONS(2251), + [aux_sym_cmd_identifier_token28] = ACTIONS(2251), + [aux_sym_cmd_identifier_token29] = ACTIONS(2251), + [aux_sym_cmd_identifier_token30] = ACTIONS(2251), + [aux_sym_cmd_identifier_token31] = ACTIONS(2251), + [aux_sym_cmd_identifier_token32] = ACTIONS(2251), + [aux_sym_cmd_identifier_token33] = ACTIONS(2251), + [aux_sym_cmd_identifier_token34] = ACTIONS(2251), + [aux_sym_cmd_identifier_token35] = ACTIONS(2251), + [aux_sym_cmd_identifier_token36] = ACTIONS(2251), + [anon_sym_true] = ACTIONS(2251), + [anon_sym_false] = ACTIONS(2251), + [anon_sym_null] = ACTIONS(2251), + [aux_sym_cmd_identifier_token38] = ACTIONS(2251), + [aux_sym_cmd_identifier_token39] = ACTIONS(2251), + [aux_sym_cmd_identifier_token40] = ACTIONS(2251), + [anon_sym_def] = ACTIONS(2251), + [anon_sym_export_DASHenv] = ACTIONS(2251), + [anon_sym_extern] = ACTIONS(2251), + [anon_sym_module] = ACTIONS(2251), + [anon_sym_use] = ACTIONS(2251), + [anon_sym_LPAREN] = ACTIONS(2251), + [anon_sym_DOLLAR] = ACTIONS(2251), + [anon_sym_error] = ACTIONS(2251), + [anon_sym_list] = ACTIONS(2251), + [anon_sym_DASH] = ACTIONS(2251), + [anon_sym_break] = ACTIONS(2251), + [anon_sym_continue] = ACTIONS(2251), + [anon_sym_for] = ACTIONS(2251), + [anon_sym_in] = ACTIONS(2251), + [anon_sym_loop] = ACTIONS(2251), + [anon_sym_make] = ACTIONS(2251), + [anon_sym_while] = ACTIONS(2251), + [anon_sym_do] = ACTIONS(2251), + [anon_sym_if] = ACTIONS(2251), + [anon_sym_else] = ACTIONS(2251), + [anon_sym_match] = ACTIONS(2251), + [anon_sym_RBRACE] = ACTIONS(2251), + [anon_sym_try] = ACTIONS(2251), + [anon_sym_catch] = ACTIONS(2251), + [anon_sym_return] = ACTIONS(2251), + [anon_sym_source] = ACTIONS(2251), + [anon_sym_source_DASHenv] = ACTIONS(2251), + [anon_sym_register] = ACTIONS(2251), + [anon_sym_hide] = ACTIONS(2251), + [anon_sym_hide_DASHenv] = ACTIONS(2251), + [anon_sym_overlay] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2251), + [anon_sym_as] = ACTIONS(2251), + [anon_sym_LPAREN2] = ACTIONS(2245), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2251), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2251), + [aux_sym__val_number_decimal_token1] = ACTIONS(2251), + [aux_sym__val_number_decimal_token2] = ACTIONS(2251), + [aux_sym__val_number_decimal_token3] = ACTIONS(2251), + [aux_sym__val_number_decimal_token4] = ACTIONS(2251), + [aux_sym__val_number_token1] = ACTIONS(2251), + [aux_sym__val_number_token2] = ACTIONS(2251), + [aux_sym__val_number_token3] = ACTIONS(2251), + [anon_sym_DQUOTE] = ACTIONS(2251), + [sym__str_single_quotes] = ACTIONS(2251), + [sym__str_back_ticks] = ACTIONS(2251), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2251), + [sym__entry_separator] = ACTIONS(2253), + [anon_sym_PLUS] = ACTIONS(2251), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2249), [anon_sym_POUND] = ACTIONS(3), }, [440] = { [sym_comment] = STATE(440), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_alias] = ACTIONS(1006), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_let_DASHenv] = ACTIONS(1006), - [anon_sym_mut] = ACTIONS(1006), - [anon_sym_const] = ACTIONS(1006), - [aux_sym_cmd_identifier_token1] = ACTIONS(1006), - [aux_sym_cmd_identifier_token2] = ACTIONS(1006), - [aux_sym_cmd_identifier_token3] = ACTIONS(1006), - [aux_sym_cmd_identifier_token4] = ACTIONS(1006), - [aux_sym_cmd_identifier_token5] = ACTIONS(1006), - [aux_sym_cmd_identifier_token6] = ACTIONS(1006), - [aux_sym_cmd_identifier_token7] = ACTIONS(1006), - [aux_sym_cmd_identifier_token8] = ACTIONS(1006), - [aux_sym_cmd_identifier_token9] = ACTIONS(1006), - [aux_sym_cmd_identifier_token10] = ACTIONS(1006), - [aux_sym_cmd_identifier_token11] = ACTIONS(1006), - [aux_sym_cmd_identifier_token12] = ACTIONS(1006), - [aux_sym_cmd_identifier_token13] = ACTIONS(1006), - [aux_sym_cmd_identifier_token14] = ACTIONS(1006), - [aux_sym_cmd_identifier_token15] = ACTIONS(1006), - [aux_sym_cmd_identifier_token16] = ACTIONS(1006), - [aux_sym_cmd_identifier_token17] = ACTIONS(1006), - [aux_sym_cmd_identifier_token18] = ACTIONS(1006), - [aux_sym_cmd_identifier_token19] = ACTIONS(1006), - [aux_sym_cmd_identifier_token20] = ACTIONS(1006), - [aux_sym_cmd_identifier_token21] = ACTIONS(1006), - [aux_sym_cmd_identifier_token22] = ACTIONS(1006), - [aux_sym_cmd_identifier_token23] = ACTIONS(1006), - [aux_sym_cmd_identifier_token24] = ACTIONS(1006), - [aux_sym_cmd_identifier_token25] = ACTIONS(1006), - [aux_sym_cmd_identifier_token26] = ACTIONS(1006), - [aux_sym_cmd_identifier_token27] = ACTIONS(1006), - [aux_sym_cmd_identifier_token28] = ACTIONS(1006), - [aux_sym_cmd_identifier_token29] = ACTIONS(1006), - [aux_sym_cmd_identifier_token30] = ACTIONS(1006), - [aux_sym_cmd_identifier_token31] = ACTIONS(1006), - [aux_sym_cmd_identifier_token32] = ACTIONS(1006), - [aux_sym_cmd_identifier_token33] = ACTIONS(1006), - [aux_sym_cmd_identifier_token34] = ACTIONS(1006), - [aux_sym_cmd_identifier_token35] = ACTIONS(1006), - [aux_sym_cmd_identifier_token36] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1008), - [anon_sym_false] = ACTIONS(1008), - [anon_sym_null] = ACTIONS(1008), - [aux_sym_cmd_identifier_token38] = ACTIONS(1006), - [aux_sym_cmd_identifier_token39] = ACTIONS(1008), - [aux_sym_cmd_identifier_token40] = ACTIONS(1008), - [anon_sym_def] = ACTIONS(1006), - [anon_sym_export_DASHenv] = ACTIONS(1006), - [anon_sym_extern] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_use] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_DOLLAR] = ACTIONS(1008), - [anon_sym_error] = ACTIONS(1006), - [anon_sym_list] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_in] = ACTIONS(1006), - [anon_sym_loop] = ACTIONS(1006), - [anon_sym_make] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_else] = ACTIONS(1006), - [anon_sym_match] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1008), - [anon_sym_try] = ACTIONS(1006), - [anon_sym_catch] = ACTIONS(1006), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_source] = ACTIONS(1006), - [anon_sym_source_DASHenv] = ACTIONS(1006), - [anon_sym_register] = ACTIONS(1006), - [anon_sym_hide] = ACTIONS(1006), - [anon_sym_hide_DASHenv] = ACTIONS(1006), - [anon_sym_overlay] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1006), - [anon_sym_as] = ACTIONS(1006), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1008), - [anon_sym_DOT_DOT2] = ACTIONS(2113), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2115), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2115), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1008), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1008), - [aux_sym__val_number_decimal_token3] = ACTIONS(1008), - [aux_sym__val_number_decimal_token4] = ACTIONS(1008), - [aux_sym__val_number_token1] = ACTIONS(1008), - [aux_sym__val_number_token2] = ACTIONS(1008), - [aux_sym__val_number_token3] = ACTIONS(1008), - [anon_sym_DQUOTE] = ACTIONS(1008), - [sym__str_single_quotes] = ACTIONS(1008), - [sym__str_back_ticks] = ACTIONS(1008), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1034), + [anon_sym_alias] = ACTIONS(1034), + [anon_sym_let] = ACTIONS(1034), + [anon_sym_let_DASHenv] = ACTIONS(1034), + [anon_sym_mut] = ACTIONS(1034), + [anon_sym_const] = ACTIONS(1034), + [aux_sym_cmd_identifier_token1] = ACTIONS(1034), + [aux_sym_cmd_identifier_token2] = ACTIONS(1034), + [aux_sym_cmd_identifier_token3] = ACTIONS(1034), + [aux_sym_cmd_identifier_token4] = ACTIONS(1034), + [aux_sym_cmd_identifier_token5] = ACTIONS(1034), + [aux_sym_cmd_identifier_token6] = ACTIONS(1034), + [aux_sym_cmd_identifier_token7] = ACTIONS(1034), + [aux_sym_cmd_identifier_token8] = ACTIONS(1034), + [aux_sym_cmd_identifier_token9] = ACTIONS(1034), + [aux_sym_cmd_identifier_token10] = ACTIONS(1034), + [aux_sym_cmd_identifier_token11] = ACTIONS(1034), + [aux_sym_cmd_identifier_token12] = ACTIONS(1034), + [aux_sym_cmd_identifier_token13] = ACTIONS(1034), + [aux_sym_cmd_identifier_token14] = ACTIONS(1034), + [aux_sym_cmd_identifier_token15] = ACTIONS(1034), + [aux_sym_cmd_identifier_token16] = ACTIONS(1034), + [aux_sym_cmd_identifier_token17] = ACTIONS(1034), + [aux_sym_cmd_identifier_token18] = ACTIONS(1034), + [aux_sym_cmd_identifier_token19] = ACTIONS(1034), + [aux_sym_cmd_identifier_token20] = ACTIONS(1034), + [aux_sym_cmd_identifier_token21] = ACTIONS(1034), + [aux_sym_cmd_identifier_token22] = ACTIONS(1034), + [aux_sym_cmd_identifier_token23] = ACTIONS(1034), + [aux_sym_cmd_identifier_token24] = ACTIONS(1034), + [aux_sym_cmd_identifier_token25] = ACTIONS(1034), + [aux_sym_cmd_identifier_token26] = ACTIONS(1034), + [aux_sym_cmd_identifier_token27] = ACTIONS(1034), + [aux_sym_cmd_identifier_token28] = ACTIONS(1034), + [aux_sym_cmd_identifier_token29] = ACTIONS(1034), + [aux_sym_cmd_identifier_token30] = ACTIONS(1034), + [aux_sym_cmd_identifier_token31] = ACTIONS(1034), + [aux_sym_cmd_identifier_token32] = ACTIONS(1034), + [aux_sym_cmd_identifier_token33] = ACTIONS(1034), + [aux_sym_cmd_identifier_token34] = ACTIONS(1034), + [aux_sym_cmd_identifier_token35] = ACTIONS(1034), + [aux_sym_cmd_identifier_token36] = ACTIONS(1034), + [anon_sym_true] = ACTIONS(1034), + [anon_sym_false] = ACTIONS(1034), + [anon_sym_null] = ACTIONS(1034), + [aux_sym_cmd_identifier_token38] = ACTIONS(1034), + [aux_sym_cmd_identifier_token39] = ACTIONS(1034), + [aux_sym_cmd_identifier_token40] = ACTIONS(1034), + [anon_sym_def] = ACTIONS(1034), + [anon_sym_export_DASHenv] = ACTIONS(1034), + [anon_sym_extern] = ACTIONS(1034), + [anon_sym_module] = ACTIONS(1034), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_LPAREN] = ACTIONS(1034), + [anon_sym_DOLLAR] = ACTIONS(1034), + [anon_sym_error] = ACTIONS(1034), + [anon_sym_list] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_break] = ACTIONS(1034), + [anon_sym_continue] = ACTIONS(1034), + [anon_sym_for] = ACTIONS(1034), + [anon_sym_in] = ACTIONS(1034), + [anon_sym_loop] = ACTIONS(1034), + [anon_sym_make] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1034), + [anon_sym_do] = ACTIONS(1034), + [anon_sym_if] = ACTIONS(1034), + [anon_sym_else] = ACTIONS(1034), + [anon_sym_match] = ACTIONS(1034), + [anon_sym_RBRACE] = ACTIONS(1034), + [anon_sym_try] = ACTIONS(1034), + [anon_sym_catch] = ACTIONS(1034), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_source] = ACTIONS(1034), + [anon_sym_source_DASHenv] = ACTIONS(1034), + [anon_sym_register] = ACTIONS(1034), + [anon_sym_hide] = ACTIONS(1034), + [anon_sym_hide_DASHenv] = ACTIONS(1034), + [anon_sym_overlay] = ACTIONS(1034), + [anon_sym_new] = ACTIONS(1034), + [anon_sym_as] = ACTIONS(1034), + [anon_sym_QMARK2] = ACTIONS(2255), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1034), + [anon_sym_DOT] = ACTIONS(1034), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1034), + [aux_sym__val_number_decimal_token1] = ACTIONS(1034), + [aux_sym__val_number_decimal_token2] = ACTIONS(1034), + [aux_sym__val_number_decimal_token3] = ACTIONS(1034), + [aux_sym__val_number_decimal_token4] = ACTIONS(1034), + [aux_sym__val_number_token1] = ACTIONS(1034), + [aux_sym__val_number_token2] = ACTIONS(1034), + [aux_sym__val_number_token3] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1034), + [sym__str_single_quotes] = ACTIONS(1034), + [sym__str_back_ticks] = ACTIONS(1034), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1034), + [sym__entry_separator] = ACTIONS(1036), + [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_POUND] = ACTIONS(3), }, [441] = { [sym_comment] = STATE(441), - [anon_sym_export] = ACTIONS(2131), - [anon_sym_alias] = ACTIONS(2131), - [anon_sym_let] = ACTIONS(2131), - [anon_sym_let_DASHenv] = ACTIONS(2131), - [anon_sym_mut] = ACTIONS(2131), - [anon_sym_const] = ACTIONS(2131), - [aux_sym_cmd_identifier_token1] = ACTIONS(2131), - [aux_sym_cmd_identifier_token2] = ACTIONS(2131), - [aux_sym_cmd_identifier_token3] = ACTIONS(2131), - [aux_sym_cmd_identifier_token4] = ACTIONS(2131), - [aux_sym_cmd_identifier_token5] = ACTIONS(2131), - [aux_sym_cmd_identifier_token6] = ACTIONS(2131), - [aux_sym_cmd_identifier_token7] = ACTIONS(2131), - [aux_sym_cmd_identifier_token8] = ACTIONS(2131), - [aux_sym_cmd_identifier_token9] = ACTIONS(2131), - [aux_sym_cmd_identifier_token10] = ACTIONS(2131), - [aux_sym_cmd_identifier_token11] = ACTIONS(2131), - [aux_sym_cmd_identifier_token12] = ACTIONS(2131), - [aux_sym_cmd_identifier_token13] = ACTIONS(2131), - [aux_sym_cmd_identifier_token14] = ACTIONS(2131), - [aux_sym_cmd_identifier_token15] = ACTIONS(2131), - [aux_sym_cmd_identifier_token16] = ACTIONS(2131), - [aux_sym_cmd_identifier_token17] = ACTIONS(2131), - [aux_sym_cmd_identifier_token18] = ACTIONS(2131), - [aux_sym_cmd_identifier_token19] = ACTIONS(2131), - [aux_sym_cmd_identifier_token20] = ACTIONS(2131), - [aux_sym_cmd_identifier_token21] = ACTIONS(2131), - [aux_sym_cmd_identifier_token22] = ACTIONS(2131), - [aux_sym_cmd_identifier_token23] = ACTIONS(2131), - [aux_sym_cmd_identifier_token24] = ACTIONS(2131), - [aux_sym_cmd_identifier_token25] = ACTIONS(2131), - [aux_sym_cmd_identifier_token26] = ACTIONS(2131), - [aux_sym_cmd_identifier_token27] = ACTIONS(2131), - [aux_sym_cmd_identifier_token28] = ACTIONS(2131), - [aux_sym_cmd_identifier_token29] = ACTIONS(2131), - [aux_sym_cmd_identifier_token30] = ACTIONS(2131), - [aux_sym_cmd_identifier_token31] = ACTIONS(2131), - [aux_sym_cmd_identifier_token32] = ACTIONS(2131), - [aux_sym_cmd_identifier_token33] = ACTIONS(2131), - [aux_sym_cmd_identifier_token34] = ACTIONS(2131), - [aux_sym_cmd_identifier_token35] = ACTIONS(2131), - [aux_sym_cmd_identifier_token36] = ACTIONS(2131), - [anon_sym_true] = ACTIONS(2131), - [anon_sym_false] = ACTIONS(2131), - [anon_sym_null] = ACTIONS(2131), - [aux_sym_cmd_identifier_token38] = ACTIONS(2131), - [aux_sym_cmd_identifier_token39] = ACTIONS(2131), - [aux_sym_cmd_identifier_token40] = ACTIONS(2131), - [anon_sym_def] = ACTIONS(2131), - [anon_sym_export_DASHenv] = ACTIONS(2131), - [anon_sym_extern] = ACTIONS(2131), - [anon_sym_module] = ACTIONS(2131), - [anon_sym_use] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_DOLLAR] = ACTIONS(2131), - [anon_sym_error] = ACTIONS(2131), - [anon_sym_list] = ACTIONS(2131), - [anon_sym_DASH] = ACTIONS(2131), - [anon_sym_break] = ACTIONS(2131), - [anon_sym_continue] = ACTIONS(2131), - [anon_sym_for] = ACTIONS(2131), - [anon_sym_in] = ACTIONS(2131), - [anon_sym_loop] = ACTIONS(2131), - [anon_sym_make] = ACTIONS(2131), - [anon_sym_while] = ACTIONS(2131), - [anon_sym_do] = ACTIONS(2131), - [anon_sym_if] = ACTIONS(2131), - [anon_sym_else] = ACTIONS(2131), - [anon_sym_match] = ACTIONS(2131), - [anon_sym_RBRACE] = ACTIONS(2131), - [anon_sym_try] = ACTIONS(2131), - [anon_sym_catch] = ACTIONS(2131), - [anon_sym_return] = ACTIONS(2131), - [anon_sym_source] = ACTIONS(2131), - [anon_sym_source_DASHenv] = ACTIONS(2131), - [anon_sym_register] = ACTIONS(2131), - [anon_sym_hide] = ACTIONS(2131), - [anon_sym_hide_DASHenv] = ACTIONS(2131), - [anon_sym_overlay] = ACTIONS(2131), - [anon_sym_new] = ACTIONS(2131), - [anon_sym_as] = ACTIONS(2131), - [anon_sym_LPAREN2] = ACTIONS(2133), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2131), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2131), - [aux_sym__val_number_decimal_token1] = ACTIONS(2131), - [aux_sym__val_number_decimal_token2] = ACTIONS(2131), - [aux_sym__val_number_decimal_token3] = ACTIONS(2131), - [aux_sym__val_number_decimal_token4] = ACTIONS(2131), - [aux_sym__val_number_token1] = ACTIONS(2131), - [aux_sym__val_number_token2] = ACTIONS(2131), - [aux_sym__val_number_token3] = ACTIONS(2131), - [anon_sym_DQUOTE] = ACTIONS(2131), - [sym__str_single_quotes] = ACTIONS(2131), - [sym__str_back_ticks] = ACTIONS(2131), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2131), - [sym__entry_separator] = ACTIONS(2133), - [anon_sym_PLUS] = ACTIONS(2131), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2131), + [anon_sym_export] = ACTIONS(1028), + [anon_sym_alias] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(1028), + [anon_sym_let_DASHenv] = ACTIONS(1028), + [anon_sym_mut] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(1028), + [aux_sym_cmd_identifier_token1] = ACTIONS(1028), + [aux_sym_cmd_identifier_token2] = ACTIONS(1028), + [aux_sym_cmd_identifier_token3] = ACTIONS(1028), + [aux_sym_cmd_identifier_token4] = ACTIONS(1028), + [aux_sym_cmd_identifier_token5] = ACTIONS(1028), + [aux_sym_cmd_identifier_token6] = ACTIONS(1028), + [aux_sym_cmd_identifier_token7] = ACTIONS(1028), + [aux_sym_cmd_identifier_token8] = ACTIONS(1028), + [aux_sym_cmd_identifier_token9] = ACTIONS(1028), + [aux_sym_cmd_identifier_token10] = ACTIONS(1028), + [aux_sym_cmd_identifier_token11] = ACTIONS(1028), + [aux_sym_cmd_identifier_token12] = ACTIONS(1028), + [aux_sym_cmd_identifier_token13] = ACTIONS(1028), + [aux_sym_cmd_identifier_token14] = ACTIONS(1028), + [aux_sym_cmd_identifier_token15] = ACTIONS(1028), + [aux_sym_cmd_identifier_token16] = ACTIONS(1028), + [aux_sym_cmd_identifier_token17] = ACTIONS(1028), + [aux_sym_cmd_identifier_token18] = ACTIONS(1028), + [aux_sym_cmd_identifier_token19] = ACTIONS(1028), + [aux_sym_cmd_identifier_token20] = ACTIONS(1028), + [aux_sym_cmd_identifier_token21] = ACTIONS(1028), + [aux_sym_cmd_identifier_token22] = ACTIONS(1028), + [aux_sym_cmd_identifier_token23] = ACTIONS(1028), + [aux_sym_cmd_identifier_token24] = ACTIONS(1028), + [aux_sym_cmd_identifier_token25] = ACTIONS(1028), + [aux_sym_cmd_identifier_token26] = ACTIONS(1028), + [aux_sym_cmd_identifier_token27] = ACTIONS(1028), + [aux_sym_cmd_identifier_token28] = ACTIONS(1028), + [aux_sym_cmd_identifier_token29] = ACTIONS(1028), + [aux_sym_cmd_identifier_token30] = ACTIONS(1028), + [aux_sym_cmd_identifier_token31] = ACTIONS(1028), + [aux_sym_cmd_identifier_token32] = ACTIONS(1028), + [aux_sym_cmd_identifier_token33] = ACTIONS(1028), + [aux_sym_cmd_identifier_token34] = ACTIONS(1028), + [aux_sym_cmd_identifier_token35] = ACTIONS(1028), + [aux_sym_cmd_identifier_token36] = ACTIONS(1028), + [anon_sym_true] = ACTIONS(1028), + [anon_sym_false] = ACTIONS(1028), + [anon_sym_null] = ACTIONS(1028), + [aux_sym_cmd_identifier_token38] = ACTIONS(1028), + [aux_sym_cmd_identifier_token39] = ACTIONS(1028), + [aux_sym_cmd_identifier_token40] = ACTIONS(1028), + [anon_sym_def] = ACTIONS(1028), + [anon_sym_export_DASHenv] = ACTIONS(1028), + [anon_sym_extern] = ACTIONS(1028), + [anon_sym_module] = ACTIONS(1028), + [anon_sym_use] = ACTIONS(1028), + [anon_sym_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR] = ACTIONS(1028), + [anon_sym_error] = ACTIONS(1028), + [anon_sym_list] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_in] = ACTIONS(1028), + [anon_sym_loop] = ACTIONS(1028), + [anon_sym_make] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_else] = ACTIONS(1028), + [anon_sym_match] = ACTIONS(1028), + [anon_sym_RBRACE] = ACTIONS(1028), + [anon_sym_try] = ACTIONS(1028), + [anon_sym_catch] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_source] = ACTIONS(1028), + [anon_sym_source_DASHenv] = ACTIONS(1028), + [anon_sym_register] = ACTIONS(1028), + [anon_sym_hide] = ACTIONS(1028), + [anon_sym_hide_DASHenv] = ACTIONS(1028), + [anon_sym_overlay] = ACTIONS(1028), + [anon_sym_new] = ACTIONS(1028), + [anon_sym_as] = ACTIONS(1028), + [anon_sym_QMARK2] = ACTIONS(2257), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1028), + [anon_sym_DOT] = ACTIONS(1028), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1028), + [aux_sym__val_number_decimal_token1] = ACTIONS(1028), + [aux_sym__val_number_decimal_token2] = ACTIONS(1028), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), + [aux_sym__val_number_token1] = ACTIONS(1028), + [aux_sym__val_number_token2] = ACTIONS(1028), + [aux_sym__val_number_token3] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(1028), + [sym__str_single_quotes] = ACTIONS(1028), + [sym__str_back_ticks] = ACTIONS(1028), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1028), + [sym__entry_separator] = ACTIONS(1030), + [anon_sym_PLUS] = ACTIONS(1028), [anon_sym_POUND] = ACTIONS(3), }, [442] = { [sym_comment] = STATE(442), - [anon_sym_export] = ACTIONS(1589), - [anon_sym_alias] = ACTIONS(1589), - [anon_sym_let] = ACTIONS(1589), - [anon_sym_let_DASHenv] = ACTIONS(1589), - [anon_sym_mut] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [aux_sym_cmd_identifier_token1] = ACTIONS(1589), - [aux_sym_cmd_identifier_token2] = ACTIONS(1589), - [aux_sym_cmd_identifier_token3] = ACTIONS(1589), - [aux_sym_cmd_identifier_token4] = ACTIONS(1589), - [aux_sym_cmd_identifier_token5] = ACTIONS(1589), - [aux_sym_cmd_identifier_token6] = ACTIONS(1589), - [aux_sym_cmd_identifier_token7] = ACTIONS(1589), - [aux_sym_cmd_identifier_token8] = ACTIONS(1589), - [aux_sym_cmd_identifier_token9] = ACTIONS(1589), - [aux_sym_cmd_identifier_token10] = ACTIONS(1589), - [aux_sym_cmd_identifier_token11] = ACTIONS(1589), - [aux_sym_cmd_identifier_token12] = ACTIONS(1589), - [aux_sym_cmd_identifier_token13] = ACTIONS(1589), - [aux_sym_cmd_identifier_token14] = ACTIONS(1589), - [aux_sym_cmd_identifier_token15] = ACTIONS(1589), - [aux_sym_cmd_identifier_token16] = ACTIONS(1589), - [aux_sym_cmd_identifier_token17] = ACTIONS(1589), - [aux_sym_cmd_identifier_token18] = ACTIONS(1589), - [aux_sym_cmd_identifier_token19] = ACTIONS(1589), - [aux_sym_cmd_identifier_token20] = ACTIONS(1589), - [aux_sym_cmd_identifier_token21] = ACTIONS(1589), - [aux_sym_cmd_identifier_token22] = ACTIONS(1589), - [aux_sym_cmd_identifier_token23] = ACTIONS(1589), - [aux_sym_cmd_identifier_token24] = ACTIONS(1589), - [aux_sym_cmd_identifier_token25] = ACTIONS(1589), - [aux_sym_cmd_identifier_token26] = ACTIONS(1589), - [aux_sym_cmd_identifier_token27] = ACTIONS(1589), - [aux_sym_cmd_identifier_token28] = ACTIONS(1589), - [aux_sym_cmd_identifier_token29] = ACTIONS(1589), - [aux_sym_cmd_identifier_token30] = ACTIONS(1589), - [aux_sym_cmd_identifier_token31] = ACTIONS(1589), - [aux_sym_cmd_identifier_token32] = ACTIONS(1589), - [aux_sym_cmd_identifier_token33] = ACTIONS(1589), - [aux_sym_cmd_identifier_token34] = ACTIONS(1589), - [aux_sym_cmd_identifier_token35] = ACTIONS(1589), - [aux_sym_cmd_identifier_token36] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [anon_sym_null] = ACTIONS(1591), - [aux_sym_cmd_identifier_token38] = ACTIONS(1589), - [aux_sym_cmd_identifier_token39] = ACTIONS(1591), - [aux_sym_cmd_identifier_token40] = ACTIONS(1591), - [anon_sym_def] = ACTIONS(1589), - [anon_sym_export_DASHenv] = ACTIONS(1589), - [anon_sym_extern] = ACTIONS(1589), - [anon_sym_module] = ACTIONS(1589), - [anon_sym_use] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_DOLLAR] = ACTIONS(1591), - [anon_sym_error] = ACTIONS(1589), - [anon_sym_list] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_loop] = ACTIONS(1589), - [anon_sym_make] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_else] = ACTIONS(1589), - [anon_sym_match] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_try] = ACTIONS(1589), - [anon_sym_catch] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_source] = ACTIONS(1589), - [anon_sym_source_DASHenv] = ACTIONS(1589), - [anon_sym_register] = ACTIONS(1589), - [anon_sym_hide] = ACTIONS(1589), - [anon_sym_hide_DASHenv] = ACTIONS(1589), - [anon_sym_overlay] = ACTIONS(1589), - [anon_sym_new] = ACTIONS(1589), - [anon_sym_as] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1591), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1591), - [aux_sym__immediate_decimal_token2] = ACTIONS(2064), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1591), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token3] = ACTIONS(1591), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(1591), - [aux_sym__val_number_token2] = ACTIONS(1591), - [aux_sym__val_number_token3] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym__str_single_quotes] = ACTIONS(1591), - [sym__str_back_ticks] = ACTIONS(1591), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1591), - [anon_sym_PLUS] = ACTIONS(1589), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1040), + [anon_sym_alias] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_let_DASHenv] = ACTIONS(1040), + [anon_sym_mut] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(1040), + [aux_sym_cmd_identifier_token1] = ACTIONS(1040), + [aux_sym_cmd_identifier_token2] = ACTIONS(1040), + [aux_sym_cmd_identifier_token3] = ACTIONS(1040), + [aux_sym_cmd_identifier_token4] = ACTIONS(1040), + [aux_sym_cmd_identifier_token5] = ACTIONS(1040), + [aux_sym_cmd_identifier_token6] = ACTIONS(1040), + [aux_sym_cmd_identifier_token7] = ACTIONS(1040), + [aux_sym_cmd_identifier_token8] = ACTIONS(1040), + [aux_sym_cmd_identifier_token9] = ACTIONS(1040), + [aux_sym_cmd_identifier_token10] = ACTIONS(1040), + [aux_sym_cmd_identifier_token11] = ACTIONS(1040), + [aux_sym_cmd_identifier_token12] = ACTIONS(1040), + [aux_sym_cmd_identifier_token13] = ACTIONS(1040), + [aux_sym_cmd_identifier_token14] = ACTIONS(1040), + [aux_sym_cmd_identifier_token15] = ACTIONS(1040), + [aux_sym_cmd_identifier_token16] = ACTIONS(1040), + [aux_sym_cmd_identifier_token17] = ACTIONS(1040), + [aux_sym_cmd_identifier_token18] = ACTIONS(1040), + [aux_sym_cmd_identifier_token19] = ACTIONS(1040), + [aux_sym_cmd_identifier_token20] = ACTIONS(1040), + [aux_sym_cmd_identifier_token21] = ACTIONS(1040), + [aux_sym_cmd_identifier_token22] = ACTIONS(1040), + [aux_sym_cmd_identifier_token23] = ACTIONS(1040), + [aux_sym_cmd_identifier_token24] = ACTIONS(1040), + [aux_sym_cmd_identifier_token25] = ACTIONS(1040), + [aux_sym_cmd_identifier_token26] = ACTIONS(1040), + [aux_sym_cmd_identifier_token27] = ACTIONS(1040), + [aux_sym_cmd_identifier_token28] = ACTIONS(1040), + [aux_sym_cmd_identifier_token29] = ACTIONS(1040), + [aux_sym_cmd_identifier_token30] = ACTIONS(1040), + [aux_sym_cmd_identifier_token31] = ACTIONS(1040), + [aux_sym_cmd_identifier_token32] = ACTIONS(1040), + [aux_sym_cmd_identifier_token33] = ACTIONS(1040), + [aux_sym_cmd_identifier_token34] = ACTIONS(1040), + [aux_sym_cmd_identifier_token35] = ACTIONS(1040), + [aux_sym_cmd_identifier_token36] = ACTIONS(1040), + [anon_sym_true] = ACTIONS(1040), + [anon_sym_false] = ACTIONS(1040), + [anon_sym_null] = ACTIONS(1040), + [aux_sym_cmd_identifier_token38] = ACTIONS(1040), + [aux_sym_cmd_identifier_token39] = ACTIONS(1040), + [aux_sym_cmd_identifier_token40] = ACTIONS(1040), + [anon_sym_def] = ACTIONS(1040), + [anon_sym_export_DASHenv] = ACTIONS(1040), + [anon_sym_extern] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + [anon_sym_use] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1040), + [anon_sym_error] = ACTIONS(1040), + [anon_sym_list] = ACTIONS(1040), + [anon_sym_DASH] = ACTIONS(1040), + [anon_sym_break] = ACTIONS(1040), + [anon_sym_continue] = ACTIONS(1040), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_loop] = ACTIONS(1040), + [anon_sym_make] = ACTIONS(1040), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_do] = ACTIONS(1040), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(1040), + [anon_sym_match] = ACTIONS(1040), + [anon_sym_RBRACE] = ACTIONS(1040), + [anon_sym_try] = ACTIONS(1040), + [anon_sym_catch] = ACTIONS(1040), + [anon_sym_return] = ACTIONS(1040), + [anon_sym_source] = ACTIONS(1040), + [anon_sym_source_DASHenv] = ACTIONS(1040), + [anon_sym_register] = ACTIONS(1040), + [anon_sym_hide] = ACTIONS(1040), + [anon_sym_hide_DASHenv] = ACTIONS(1040), + [anon_sym_overlay] = ACTIONS(1040), + [anon_sym_new] = ACTIONS(1040), + [anon_sym_as] = ACTIONS(1040), + [anon_sym_QMARK2] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1040), + [aux_sym__val_number_decimal_token1] = ACTIONS(1040), + [aux_sym__val_number_decimal_token2] = ACTIONS(1040), + [aux_sym__val_number_decimal_token3] = ACTIONS(1040), + [aux_sym__val_number_decimal_token4] = ACTIONS(1040), + [aux_sym__val_number_token1] = ACTIONS(1040), + [aux_sym__val_number_token2] = ACTIONS(1040), + [aux_sym__val_number_token3] = ACTIONS(1040), + [anon_sym_DQUOTE] = ACTIONS(1040), + [sym__str_single_quotes] = ACTIONS(1040), + [sym__str_back_ticks] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1040), + [sym__entry_separator] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1040), + [anon_sym_POUND] = ACTIONS(3), }, [443] = { [sym_comment] = STATE(443), - [anon_sym_export] = ACTIONS(1648), - [anon_sym_alias] = ACTIONS(1648), - [anon_sym_let] = ACTIONS(1648), - [anon_sym_let_DASHenv] = ACTIONS(1648), - [anon_sym_mut] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1648), - [aux_sym_cmd_identifier_token1] = ACTIONS(1648), - [aux_sym_cmd_identifier_token2] = ACTIONS(1648), - [aux_sym_cmd_identifier_token3] = ACTIONS(1648), - [aux_sym_cmd_identifier_token4] = ACTIONS(1648), - [aux_sym_cmd_identifier_token5] = ACTIONS(1648), - [aux_sym_cmd_identifier_token6] = ACTIONS(1648), - [aux_sym_cmd_identifier_token7] = ACTIONS(1648), - [aux_sym_cmd_identifier_token8] = ACTIONS(1648), - [aux_sym_cmd_identifier_token9] = ACTIONS(1648), - [aux_sym_cmd_identifier_token10] = ACTIONS(1648), - [aux_sym_cmd_identifier_token11] = ACTIONS(1648), - [aux_sym_cmd_identifier_token12] = ACTIONS(1648), - [aux_sym_cmd_identifier_token13] = ACTIONS(1648), - [aux_sym_cmd_identifier_token14] = ACTIONS(1648), - [aux_sym_cmd_identifier_token15] = ACTIONS(1648), - [aux_sym_cmd_identifier_token16] = ACTIONS(1648), - [aux_sym_cmd_identifier_token17] = ACTIONS(1648), - [aux_sym_cmd_identifier_token18] = ACTIONS(1648), - [aux_sym_cmd_identifier_token19] = ACTIONS(1648), - [aux_sym_cmd_identifier_token20] = ACTIONS(1648), - [aux_sym_cmd_identifier_token21] = ACTIONS(1648), - [aux_sym_cmd_identifier_token22] = ACTIONS(1648), - [aux_sym_cmd_identifier_token23] = ACTIONS(1648), - [aux_sym_cmd_identifier_token24] = ACTIONS(1648), - [aux_sym_cmd_identifier_token25] = ACTIONS(1648), - [aux_sym_cmd_identifier_token26] = ACTIONS(1648), - [aux_sym_cmd_identifier_token27] = ACTIONS(1648), - [aux_sym_cmd_identifier_token28] = ACTIONS(1648), - [aux_sym_cmd_identifier_token29] = ACTIONS(1648), - [aux_sym_cmd_identifier_token30] = ACTIONS(1648), - [aux_sym_cmd_identifier_token31] = ACTIONS(1648), - [aux_sym_cmd_identifier_token32] = ACTIONS(1648), - [aux_sym_cmd_identifier_token33] = ACTIONS(1648), - [aux_sym_cmd_identifier_token34] = ACTIONS(1648), - [aux_sym_cmd_identifier_token35] = ACTIONS(1648), - [aux_sym_cmd_identifier_token36] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [anon_sym_null] = ACTIONS(1650), - [aux_sym_cmd_identifier_token38] = ACTIONS(1648), - [aux_sym_cmd_identifier_token39] = ACTIONS(1650), - [aux_sym_cmd_identifier_token40] = ACTIONS(1650), - [anon_sym_def] = ACTIONS(1648), - [anon_sym_export_DASHenv] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1648), - [anon_sym_module] = ACTIONS(1648), - [anon_sym_use] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_DOLLAR] = ACTIONS(1650), - [anon_sym_error] = ACTIONS(1648), - [anon_sym_list] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_in] = ACTIONS(1648), - [anon_sym_loop] = ACTIONS(1648), - [anon_sym_make] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_do] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1648), - [anon_sym_match] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_try] = ACTIONS(1648), - [anon_sym_catch] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_source] = ACTIONS(1648), - [anon_sym_source_DASHenv] = ACTIONS(1648), - [anon_sym_register] = ACTIONS(1648), - [anon_sym_hide] = ACTIONS(1648), - [anon_sym_hide_DASHenv] = ACTIONS(1648), - [anon_sym_overlay] = ACTIONS(1648), - [anon_sym_new] = ACTIONS(1648), - [anon_sym_as] = ACTIONS(1648), - [anon_sym_LPAREN2] = ACTIONS(1650), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1650), - [aux_sym__immediate_decimal_token2] = ACTIONS(2135), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token3] = ACTIONS(1650), - [aux_sym__val_number_decimal_token4] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1648), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_alias] = ACTIONS(1044), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_let_DASHenv] = ACTIONS(1044), + [anon_sym_mut] = ACTIONS(1044), + [anon_sym_const] = ACTIONS(1044), + [aux_sym_cmd_identifier_token1] = ACTIONS(1044), + [aux_sym_cmd_identifier_token2] = ACTIONS(1044), + [aux_sym_cmd_identifier_token3] = ACTIONS(1044), + [aux_sym_cmd_identifier_token4] = ACTIONS(1044), + [aux_sym_cmd_identifier_token5] = ACTIONS(1044), + [aux_sym_cmd_identifier_token6] = ACTIONS(1044), + [aux_sym_cmd_identifier_token7] = ACTIONS(1044), + [aux_sym_cmd_identifier_token8] = ACTIONS(1044), + [aux_sym_cmd_identifier_token9] = ACTIONS(1044), + [aux_sym_cmd_identifier_token10] = ACTIONS(1044), + [aux_sym_cmd_identifier_token11] = ACTIONS(1044), + [aux_sym_cmd_identifier_token12] = ACTIONS(1044), + [aux_sym_cmd_identifier_token13] = ACTIONS(1044), + [aux_sym_cmd_identifier_token14] = ACTIONS(1044), + [aux_sym_cmd_identifier_token15] = ACTIONS(1044), + [aux_sym_cmd_identifier_token16] = ACTIONS(1044), + [aux_sym_cmd_identifier_token17] = ACTIONS(1044), + [aux_sym_cmd_identifier_token18] = ACTIONS(1044), + [aux_sym_cmd_identifier_token19] = ACTIONS(1044), + [aux_sym_cmd_identifier_token20] = ACTIONS(1044), + [aux_sym_cmd_identifier_token21] = ACTIONS(1044), + [aux_sym_cmd_identifier_token22] = ACTIONS(1044), + [aux_sym_cmd_identifier_token23] = ACTIONS(1044), + [aux_sym_cmd_identifier_token24] = ACTIONS(1044), + [aux_sym_cmd_identifier_token25] = ACTIONS(1044), + [aux_sym_cmd_identifier_token26] = ACTIONS(1044), + [aux_sym_cmd_identifier_token27] = ACTIONS(1044), + [aux_sym_cmd_identifier_token28] = ACTIONS(1044), + [aux_sym_cmd_identifier_token29] = ACTIONS(1044), + [aux_sym_cmd_identifier_token30] = ACTIONS(1044), + [aux_sym_cmd_identifier_token31] = ACTIONS(1044), + [aux_sym_cmd_identifier_token32] = ACTIONS(1044), + [aux_sym_cmd_identifier_token33] = ACTIONS(1044), + [aux_sym_cmd_identifier_token34] = ACTIONS(1044), + [aux_sym_cmd_identifier_token35] = ACTIONS(1044), + [aux_sym_cmd_identifier_token36] = ACTIONS(1044), + [anon_sym_true] = ACTIONS(1044), + [anon_sym_false] = ACTIONS(1044), + [anon_sym_null] = ACTIONS(1044), + [aux_sym_cmd_identifier_token38] = ACTIONS(1044), + [aux_sym_cmd_identifier_token39] = ACTIONS(1044), + [aux_sym_cmd_identifier_token40] = ACTIONS(1044), + [anon_sym_def] = ACTIONS(1044), + [anon_sym_export_DASHenv] = ACTIONS(1044), + [anon_sym_extern] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_use] = ACTIONS(1044), + [anon_sym_LPAREN] = ACTIONS(1044), + [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_error] = ACTIONS(1044), + [anon_sym_list] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_break] = ACTIONS(1044), + [anon_sym_continue] = ACTIONS(1044), + [anon_sym_for] = ACTIONS(1044), + [anon_sym_in] = ACTIONS(1044), + [anon_sym_loop] = ACTIONS(1044), + [anon_sym_make] = ACTIONS(1044), + [anon_sym_while] = ACTIONS(1044), + [anon_sym_do] = ACTIONS(1044), + [anon_sym_if] = ACTIONS(1044), + [anon_sym_else] = ACTIONS(1044), + [anon_sym_match] = ACTIONS(1044), + [anon_sym_RBRACE] = ACTIONS(1044), + [anon_sym_try] = ACTIONS(1044), + [anon_sym_catch] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_source] = ACTIONS(1044), + [anon_sym_source_DASHenv] = ACTIONS(1044), + [anon_sym_register] = ACTIONS(1044), + [anon_sym_hide] = ACTIONS(1044), + [anon_sym_hide_DASHenv] = ACTIONS(1044), + [anon_sym_overlay] = ACTIONS(1044), + [anon_sym_new] = ACTIONS(1044), + [anon_sym_as] = ACTIONS(1044), + [anon_sym_QMARK2] = ACTIONS(1044), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1044), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1044), + [aux_sym__val_number_decimal_token1] = ACTIONS(1044), + [aux_sym__val_number_decimal_token2] = ACTIONS(1044), + [aux_sym__val_number_decimal_token3] = ACTIONS(1044), + [aux_sym__val_number_decimal_token4] = ACTIONS(1044), + [aux_sym__val_number_token1] = ACTIONS(1044), + [aux_sym__val_number_token2] = ACTIONS(1044), + [aux_sym__val_number_token3] = ACTIONS(1044), + [anon_sym_DQUOTE] = ACTIONS(1044), + [sym__str_single_quotes] = ACTIONS(1044), + [sym__str_back_ticks] = ACTIONS(1044), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1044), + [sym__entry_separator] = ACTIONS(1046), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_POUND] = ACTIONS(3), }, [444] = { [sym_comment] = STATE(444), - [anon_sym_export] = ACTIONS(1935), - [anon_sym_alias] = ACTIONS(1935), - [anon_sym_let] = ACTIONS(1935), - [anon_sym_let_DASHenv] = ACTIONS(1935), - [anon_sym_mut] = ACTIONS(1935), - [anon_sym_const] = ACTIONS(1935), - [aux_sym_cmd_identifier_token1] = ACTIONS(1935), - [aux_sym_cmd_identifier_token2] = ACTIONS(1935), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [aux_sym_cmd_identifier_token6] = ACTIONS(1935), - [aux_sym_cmd_identifier_token7] = ACTIONS(1935), - [aux_sym_cmd_identifier_token8] = ACTIONS(1935), - [aux_sym_cmd_identifier_token9] = ACTIONS(1935), - [aux_sym_cmd_identifier_token10] = ACTIONS(1935), - [aux_sym_cmd_identifier_token11] = ACTIONS(1935), - [aux_sym_cmd_identifier_token12] = ACTIONS(1935), - [aux_sym_cmd_identifier_token13] = ACTIONS(1935), - [aux_sym_cmd_identifier_token14] = ACTIONS(1935), - [aux_sym_cmd_identifier_token15] = ACTIONS(1935), - [aux_sym_cmd_identifier_token16] = ACTIONS(1935), - [aux_sym_cmd_identifier_token17] = ACTIONS(1935), - [aux_sym_cmd_identifier_token18] = ACTIONS(1935), - [aux_sym_cmd_identifier_token19] = ACTIONS(1935), - [aux_sym_cmd_identifier_token20] = ACTIONS(1935), - [aux_sym_cmd_identifier_token21] = ACTIONS(1935), - [aux_sym_cmd_identifier_token22] = ACTIONS(1935), - [aux_sym_cmd_identifier_token23] = ACTIONS(1935), - [aux_sym_cmd_identifier_token24] = ACTIONS(1935), - [aux_sym_cmd_identifier_token25] = ACTIONS(1935), - [aux_sym_cmd_identifier_token26] = ACTIONS(1935), - [aux_sym_cmd_identifier_token27] = ACTIONS(1935), - [aux_sym_cmd_identifier_token28] = ACTIONS(1935), - [aux_sym_cmd_identifier_token29] = ACTIONS(1935), - [aux_sym_cmd_identifier_token30] = ACTIONS(1935), - [aux_sym_cmd_identifier_token31] = ACTIONS(1935), - [aux_sym_cmd_identifier_token32] = ACTIONS(1935), - [aux_sym_cmd_identifier_token33] = ACTIONS(1935), - [aux_sym_cmd_identifier_token34] = ACTIONS(1935), - [aux_sym_cmd_identifier_token35] = ACTIONS(1935), - [aux_sym_cmd_identifier_token36] = ACTIONS(1935), - [anon_sym_true] = ACTIONS(1941), - [anon_sym_false] = ACTIONS(1941), - [anon_sym_null] = ACTIONS(1941), - [aux_sym_cmd_identifier_token38] = ACTIONS(1935), - [aux_sym_cmd_identifier_token39] = ACTIONS(1941), - [aux_sym_cmd_identifier_token40] = ACTIONS(1941), - [anon_sym_def] = ACTIONS(1935), - [anon_sym_export_DASHenv] = ACTIONS(1935), - [anon_sym_extern] = ACTIONS(1935), - [anon_sym_module] = ACTIONS(1935), - [anon_sym_use] = ACTIONS(1935), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_DOLLAR] = ACTIONS(1941), - [anon_sym_error] = ACTIONS(1935), - [anon_sym_list] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_break] = ACTIONS(1935), - [anon_sym_continue] = ACTIONS(1935), - [anon_sym_for] = ACTIONS(1935), - [anon_sym_in] = ACTIONS(1935), - [anon_sym_loop] = ACTIONS(1935), - [anon_sym_make] = ACTIONS(1935), - [anon_sym_while] = ACTIONS(1935), - [anon_sym_do] = ACTIONS(1935), - [anon_sym_if] = ACTIONS(1935), - [anon_sym_else] = ACTIONS(1935), - [anon_sym_match] = ACTIONS(1935), - [anon_sym_RBRACE] = ACTIONS(1941), - [anon_sym_try] = ACTIONS(1935), - [anon_sym_catch] = ACTIONS(1935), - [anon_sym_return] = ACTIONS(1935), - [anon_sym_source] = ACTIONS(1935), - [anon_sym_source_DASHenv] = ACTIONS(1935), - [anon_sym_register] = ACTIONS(1935), - [anon_sym_hide] = ACTIONS(1935), - [anon_sym_hide_DASHenv] = ACTIONS(1935), - [anon_sym_overlay] = ACTIONS(1935), - [anon_sym_new] = ACTIONS(1935), - [anon_sym_as] = ACTIONS(1935), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1941), - [anon_sym_DOT_DOT2] = ACTIONS(2137), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2139), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2139), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1941), - [aux_sym__val_number_decimal_token3] = ACTIONS(1941), - [aux_sym__val_number_decimal_token4] = ACTIONS(1941), - [aux_sym__val_number_token1] = ACTIONS(1941), - [aux_sym__val_number_token2] = ACTIONS(1941), - [aux_sym__val_number_token3] = ACTIONS(1941), - [anon_sym_DQUOTE] = ACTIONS(1941), - [sym__str_single_quotes] = ACTIONS(1941), - [sym__str_back_ticks] = ACTIONS(1941), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(1935), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_alias] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_let_DASHenv] = ACTIONS(1048), + [anon_sym_mut] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1048), + [aux_sym_cmd_identifier_token1] = ACTIONS(1048), + [aux_sym_cmd_identifier_token2] = ACTIONS(1048), + [aux_sym_cmd_identifier_token3] = ACTIONS(1048), + [aux_sym_cmd_identifier_token4] = ACTIONS(1048), + [aux_sym_cmd_identifier_token5] = ACTIONS(1048), + [aux_sym_cmd_identifier_token6] = ACTIONS(1048), + [aux_sym_cmd_identifier_token7] = ACTIONS(1048), + [aux_sym_cmd_identifier_token8] = ACTIONS(1048), + [aux_sym_cmd_identifier_token9] = ACTIONS(1048), + [aux_sym_cmd_identifier_token10] = ACTIONS(1048), + [aux_sym_cmd_identifier_token11] = ACTIONS(1048), + [aux_sym_cmd_identifier_token12] = ACTIONS(1048), + [aux_sym_cmd_identifier_token13] = ACTIONS(1048), + [aux_sym_cmd_identifier_token14] = ACTIONS(1048), + [aux_sym_cmd_identifier_token15] = ACTIONS(1048), + [aux_sym_cmd_identifier_token16] = ACTIONS(1048), + [aux_sym_cmd_identifier_token17] = ACTIONS(1048), + [aux_sym_cmd_identifier_token18] = ACTIONS(1048), + [aux_sym_cmd_identifier_token19] = ACTIONS(1048), + [aux_sym_cmd_identifier_token20] = ACTIONS(1048), + [aux_sym_cmd_identifier_token21] = ACTIONS(1048), + [aux_sym_cmd_identifier_token22] = ACTIONS(1048), + [aux_sym_cmd_identifier_token23] = ACTIONS(1048), + [aux_sym_cmd_identifier_token24] = ACTIONS(1048), + [aux_sym_cmd_identifier_token25] = ACTIONS(1048), + [aux_sym_cmd_identifier_token26] = ACTIONS(1048), + [aux_sym_cmd_identifier_token27] = ACTIONS(1048), + [aux_sym_cmd_identifier_token28] = ACTIONS(1048), + [aux_sym_cmd_identifier_token29] = ACTIONS(1048), + [aux_sym_cmd_identifier_token30] = ACTIONS(1048), + [aux_sym_cmd_identifier_token31] = ACTIONS(1048), + [aux_sym_cmd_identifier_token32] = ACTIONS(1048), + [aux_sym_cmd_identifier_token33] = ACTIONS(1048), + [aux_sym_cmd_identifier_token34] = ACTIONS(1048), + [aux_sym_cmd_identifier_token35] = ACTIONS(1048), + [aux_sym_cmd_identifier_token36] = ACTIONS(1048), + [anon_sym_true] = ACTIONS(1048), + [anon_sym_false] = ACTIONS(1048), + [anon_sym_null] = ACTIONS(1048), + [aux_sym_cmd_identifier_token38] = ACTIONS(1048), + [aux_sym_cmd_identifier_token39] = ACTIONS(1048), + [aux_sym_cmd_identifier_token40] = ACTIONS(1048), + [anon_sym_def] = ACTIONS(1048), + [anon_sym_export_DASHenv] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_use] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_error] = ACTIONS(1048), + [anon_sym_list] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_in] = ACTIONS(1048), + [anon_sym_loop] = ACTIONS(1048), + [anon_sym_make] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_else] = ACTIONS(1048), + [anon_sym_match] = ACTIONS(1048), + [anon_sym_RBRACE] = ACTIONS(1048), + [anon_sym_try] = ACTIONS(1048), + [anon_sym_catch] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_source] = ACTIONS(1048), + [anon_sym_source_DASHenv] = ACTIONS(1048), + [anon_sym_register] = ACTIONS(1048), + [anon_sym_hide] = ACTIONS(1048), + [anon_sym_hide_DASHenv] = ACTIONS(1048), + [anon_sym_overlay] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1048), + [anon_sym_as] = ACTIONS(1048), + [anon_sym_QMARK2] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1048), + [aux_sym__val_number_decimal_token1] = ACTIONS(1048), + [aux_sym__val_number_decimal_token2] = ACTIONS(1048), + [aux_sym__val_number_decimal_token3] = ACTIONS(1048), + [aux_sym__val_number_decimal_token4] = ACTIONS(1048), + [aux_sym__val_number_token1] = ACTIONS(1048), + [aux_sym__val_number_token2] = ACTIONS(1048), + [aux_sym__val_number_token3] = ACTIONS(1048), + [anon_sym_DQUOTE] = ACTIONS(1048), + [sym__str_single_quotes] = ACTIONS(1048), + [sym__str_back_ticks] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1048), + [sym__entry_separator] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_POUND] = ACTIONS(3), }, [445] = { [sym_comment] = STATE(445), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_alias] = ACTIONS(1569), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_let_DASHenv] = ACTIONS(1569), - [anon_sym_mut] = ACTIONS(1569), - [anon_sym_const] = ACTIONS(1569), - [aux_sym_cmd_identifier_token1] = ACTIONS(1569), - [aux_sym_cmd_identifier_token2] = ACTIONS(1569), - [aux_sym_cmd_identifier_token3] = ACTIONS(1569), - [aux_sym_cmd_identifier_token4] = ACTIONS(1569), - [aux_sym_cmd_identifier_token5] = ACTIONS(1569), - [aux_sym_cmd_identifier_token6] = ACTIONS(1569), - [aux_sym_cmd_identifier_token7] = ACTIONS(1569), - [aux_sym_cmd_identifier_token8] = ACTIONS(1569), - [aux_sym_cmd_identifier_token9] = ACTIONS(1569), - [aux_sym_cmd_identifier_token10] = ACTIONS(1569), - [aux_sym_cmd_identifier_token11] = ACTIONS(1569), - [aux_sym_cmd_identifier_token12] = ACTIONS(1569), - [aux_sym_cmd_identifier_token13] = ACTIONS(1569), - [aux_sym_cmd_identifier_token14] = ACTIONS(1569), - [aux_sym_cmd_identifier_token15] = ACTIONS(1569), - [aux_sym_cmd_identifier_token16] = ACTIONS(1569), - [aux_sym_cmd_identifier_token17] = ACTIONS(1569), - [aux_sym_cmd_identifier_token18] = ACTIONS(1569), - [aux_sym_cmd_identifier_token19] = ACTIONS(1569), - [aux_sym_cmd_identifier_token20] = ACTIONS(1569), - [aux_sym_cmd_identifier_token21] = ACTIONS(1569), - [aux_sym_cmd_identifier_token22] = ACTIONS(1569), - [aux_sym_cmd_identifier_token23] = ACTIONS(1569), - [aux_sym_cmd_identifier_token24] = ACTIONS(1569), - [aux_sym_cmd_identifier_token25] = ACTIONS(1569), - [aux_sym_cmd_identifier_token26] = ACTIONS(1569), - [aux_sym_cmd_identifier_token27] = ACTIONS(1569), - [aux_sym_cmd_identifier_token28] = ACTIONS(1569), - [aux_sym_cmd_identifier_token29] = ACTIONS(1569), - [aux_sym_cmd_identifier_token30] = ACTIONS(1569), - [aux_sym_cmd_identifier_token31] = ACTIONS(1569), - [aux_sym_cmd_identifier_token32] = ACTIONS(1569), - [aux_sym_cmd_identifier_token33] = ACTIONS(1569), - [aux_sym_cmd_identifier_token34] = ACTIONS(1569), - [aux_sym_cmd_identifier_token35] = ACTIONS(1569), - [aux_sym_cmd_identifier_token36] = ACTIONS(1569), - [anon_sym_true] = ACTIONS(1571), - [anon_sym_false] = ACTIONS(1571), - [anon_sym_null] = ACTIONS(1571), - [aux_sym_cmd_identifier_token38] = ACTIONS(1569), - [aux_sym_cmd_identifier_token39] = ACTIONS(1571), - [aux_sym_cmd_identifier_token40] = ACTIONS(1571), - [anon_sym_def] = ACTIONS(1569), - [anon_sym_export_DASHenv] = ACTIONS(1569), - [anon_sym_extern] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_use] = ACTIONS(1569), - [anon_sym_LPAREN] = ACTIONS(1571), - [anon_sym_DOLLAR] = ACTIONS(1571), - [anon_sym_error] = ACTIONS(1569), - [anon_sym_list] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_break] = ACTIONS(1569), - [anon_sym_continue] = ACTIONS(1569), - [anon_sym_for] = ACTIONS(1569), - [anon_sym_in] = ACTIONS(1569), - [anon_sym_loop] = ACTIONS(1569), - [anon_sym_make] = ACTIONS(1569), - [anon_sym_while] = ACTIONS(1569), - [anon_sym_do] = ACTIONS(1569), - [anon_sym_if] = ACTIONS(1569), - [anon_sym_else] = ACTIONS(1569), - [anon_sym_match] = ACTIONS(1569), - [anon_sym_RBRACE] = ACTIONS(1571), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_catch] = ACTIONS(1569), - [anon_sym_return] = ACTIONS(1569), - [anon_sym_source] = ACTIONS(1569), - [anon_sym_source_DASHenv] = ACTIONS(1569), - [anon_sym_register] = ACTIONS(1569), - [anon_sym_hide] = ACTIONS(1569), - [anon_sym_hide_DASHenv] = ACTIONS(1569), - [anon_sym_overlay] = ACTIONS(1569), - [anon_sym_new] = ACTIONS(1569), - [anon_sym_as] = ACTIONS(1569), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1571), - [anon_sym_DOT_DOT2] = ACTIONS(1569), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1571), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1571), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1571), - [aux_sym__val_number_decimal_token1] = ACTIONS(1569), - [aux_sym__val_number_decimal_token2] = ACTIONS(1571), - [aux_sym__val_number_decimal_token3] = ACTIONS(1571), - [aux_sym__val_number_decimal_token4] = ACTIONS(1571), - [aux_sym__val_number_token1] = ACTIONS(1571), - [aux_sym__val_number_token2] = ACTIONS(1571), - [aux_sym__val_number_token3] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [sym__str_single_quotes] = ACTIONS(1571), - [sym__str_back_ticks] = ACTIONS(1571), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(2259), + [anon_sym_alias] = ACTIONS(2259), + [anon_sym_let] = ACTIONS(2259), + [anon_sym_let_DASHenv] = ACTIONS(2259), + [anon_sym_mut] = ACTIONS(2259), + [anon_sym_const] = ACTIONS(2259), + [aux_sym_cmd_identifier_token1] = ACTIONS(2259), + [aux_sym_cmd_identifier_token2] = ACTIONS(2259), + [aux_sym_cmd_identifier_token3] = ACTIONS(2259), + [aux_sym_cmd_identifier_token4] = ACTIONS(2259), + [aux_sym_cmd_identifier_token5] = ACTIONS(2259), + [aux_sym_cmd_identifier_token6] = ACTIONS(2259), + [aux_sym_cmd_identifier_token7] = ACTIONS(2259), + [aux_sym_cmd_identifier_token8] = ACTIONS(2259), + [aux_sym_cmd_identifier_token9] = ACTIONS(2259), + [aux_sym_cmd_identifier_token10] = ACTIONS(2259), + [aux_sym_cmd_identifier_token11] = ACTIONS(2259), + [aux_sym_cmd_identifier_token12] = ACTIONS(2259), + [aux_sym_cmd_identifier_token13] = ACTIONS(2259), + [aux_sym_cmd_identifier_token14] = ACTIONS(2259), + [aux_sym_cmd_identifier_token15] = ACTIONS(2259), + [aux_sym_cmd_identifier_token16] = ACTIONS(2259), + [aux_sym_cmd_identifier_token17] = ACTIONS(2259), + [aux_sym_cmd_identifier_token18] = ACTIONS(2259), + [aux_sym_cmd_identifier_token19] = ACTIONS(2259), + [aux_sym_cmd_identifier_token20] = ACTIONS(2259), + [aux_sym_cmd_identifier_token21] = ACTIONS(2259), + [aux_sym_cmd_identifier_token22] = ACTIONS(2259), + [aux_sym_cmd_identifier_token23] = ACTIONS(2259), + [aux_sym_cmd_identifier_token24] = ACTIONS(2259), + [aux_sym_cmd_identifier_token25] = ACTIONS(2259), + [aux_sym_cmd_identifier_token26] = ACTIONS(2259), + [aux_sym_cmd_identifier_token27] = ACTIONS(2259), + [aux_sym_cmd_identifier_token28] = ACTIONS(2259), + [aux_sym_cmd_identifier_token29] = ACTIONS(2259), + [aux_sym_cmd_identifier_token30] = ACTIONS(2259), + [aux_sym_cmd_identifier_token31] = ACTIONS(2259), + [aux_sym_cmd_identifier_token32] = ACTIONS(2259), + [aux_sym_cmd_identifier_token33] = ACTIONS(2259), + [aux_sym_cmd_identifier_token34] = ACTIONS(2259), + [aux_sym_cmd_identifier_token35] = ACTIONS(2259), + [aux_sym_cmd_identifier_token36] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(2259), + [anon_sym_false] = ACTIONS(2259), + [anon_sym_null] = ACTIONS(2259), + [aux_sym_cmd_identifier_token38] = ACTIONS(2259), + [aux_sym_cmd_identifier_token39] = ACTIONS(2259), + [aux_sym_cmd_identifier_token40] = ACTIONS(2259), + [anon_sym_def] = ACTIONS(2259), + [anon_sym_export_DASHenv] = ACTIONS(2259), + [anon_sym_extern] = ACTIONS(2259), + [anon_sym_module] = ACTIONS(2259), + [anon_sym_use] = ACTIONS(2259), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_DOLLAR] = ACTIONS(2259), + [anon_sym_error] = ACTIONS(2259), + [anon_sym_list] = ACTIONS(2259), + [anon_sym_DASH] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2259), + [anon_sym_continue] = ACTIONS(2259), + [anon_sym_for] = ACTIONS(2259), + [anon_sym_in] = ACTIONS(2259), + [anon_sym_loop] = ACTIONS(2259), + [anon_sym_make] = ACTIONS(2259), + [anon_sym_while] = ACTIONS(2259), + [anon_sym_do] = ACTIONS(2259), + [anon_sym_if] = ACTIONS(2259), + [anon_sym_else] = ACTIONS(2259), + [anon_sym_match] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_try] = ACTIONS(2259), + [anon_sym_catch] = ACTIONS(2259), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_source] = ACTIONS(2259), + [anon_sym_source_DASHenv] = ACTIONS(2259), + [anon_sym_register] = ACTIONS(2259), + [anon_sym_hide] = ACTIONS(2259), + [anon_sym_hide_DASHenv] = ACTIONS(2259), + [anon_sym_overlay] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(2259), + [anon_sym_as] = ACTIONS(2259), + [anon_sym_LPAREN2] = ACTIONS(2261), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2259), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2259), + [aux_sym__val_number_decimal_token1] = ACTIONS(2259), + [aux_sym__val_number_decimal_token2] = ACTIONS(2259), + [aux_sym__val_number_decimal_token3] = ACTIONS(2259), + [aux_sym__val_number_decimal_token4] = ACTIONS(2259), + [aux_sym__val_number_token1] = ACTIONS(2259), + [aux_sym__val_number_token2] = ACTIONS(2259), + [aux_sym__val_number_token3] = ACTIONS(2259), + [anon_sym_DQUOTE] = ACTIONS(2259), + [sym__str_single_quotes] = ACTIONS(2259), + [sym__str_back_ticks] = ACTIONS(2259), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2259), + [sym__entry_separator] = ACTIONS(2261), + [anon_sym_PLUS] = ACTIONS(2259), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2259), + [anon_sym_POUND] = ACTIONS(3), }, [446] = { + [sym__expr_parenthesized_immediate] = STATE(7795), [sym_comment] = STATE(446), - [anon_sym_export] = ACTIONS(1648), - [anon_sym_alias] = ACTIONS(1648), - [anon_sym_let] = ACTIONS(1648), - [anon_sym_let_DASHenv] = ACTIONS(1648), - [anon_sym_mut] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1648), - [aux_sym_cmd_identifier_token1] = ACTIONS(1648), - [aux_sym_cmd_identifier_token2] = ACTIONS(1648), - [aux_sym_cmd_identifier_token3] = ACTIONS(1648), - [aux_sym_cmd_identifier_token4] = ACTIONS(1648), - [aux_sym_cmd_identifier_token5] = ACTIONS(1648), - [aux_sym_cmd_identifier_token6] = ACTIONS(1648), - [aux_sym_cmd_identifier_token7] = ACTIONS(1648), - [aux_sym_cmd_identifier_token8] = ACTIONS(1648), - [aux_sym_cmd_identifier_token9] = ACTIONS(1648), - [aux_sym_cmd_identifier_token10] = ACTIONS(1648), - [aux_sym_cmd_identifier_token11] = ACTIONS(1648), - [aux_sym_cmd_identifier_token12] = ACTIONS(1648), - [aux_sym_cmd_identifier_token13] = ACTIONS(1648), - [aux_sym_cmd_identifier_token14] = ACTIONS(1648), - [aux_sym_cmd_identifier_token15] = ACTIONS(1648), - [aux_sym_cmd_identifier_token16] = ACTIONS(1648), - [aux_sym_cmd_identifier_token17] = ACTIONS(1648), - [aux_sym_cmd_identifier_token18] = ACTIONS(1648), - [aux_sym_cmd_identifier_token19] = ACTIONS(1648), - [aux_sym_cmd_identifier_token20] = ACTIONS(1648), - [aux_sym_cmd_identifier_token21] = ACTIONS(1648), - [aux_sym_cmd_identifier_token22] = ACTIONS(1648), - [aux_sym_cmd_identifier_token23] = ACTIONS(1648), - [aux_sym_cmd_identifier_token24] = ACTIONS(1648), - [aux_sym_cmd_identifier_token25] = ACTIONS(1648), - [aux_sym_cmd_identifier_token26] = ACTIONS(1648), - [aux_sym_cmd_identifier_token27] = ACTIONS(1648), - [aux_sym_cmd_identifier_token28] = ACTIONS(1648), - [aux_sym_cmd_identifier_token29] = ACTIONS(1648), - [aux_sym_cmd_identifier_token30] = ACTIONS(1648), - [aux_sym_cmd_identifier_token31] = ACTIONS(1648), - [aux_sym_cmd_identifier_token32] = ACTIONS(1648), - [aux_sym_cmd_identifier_token33] = ACTIONS(1648), - [aux_sym_cmd_identifier_token34] = ACTIONS(1648), - [aux_sym_cmd_identifier_token35] = ACTIONS(1648), - [aux_sym_cmd_identifier_token36] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [anon_sym_null] = ACTIONS(1650), - [aux_sym_cmd_identifier_token38] = ACTIONS(1648), - [aux_sym_cmd_identifier_token39] = ACTIONS(1650), - [aux_sym_cmd_identifier_token40] = ACTIONS(1650), - [anon_sym_def] = ACTIONS(1648), - [anon_sym_export_DASHenv] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1648), - [anon_sym_module] = ACTIONS(1648), - [anon_sym_use] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1650), - [anon_sym_error] = ACTIONS(1648), - [anon_sym_list] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_in] = ACTIONS(1648), - [anon_sym_loop] = ACTIONS(1648), - [anon_sym_make] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_do] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1648), - [anon_sym_match] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_try] = ACTIONS(1648), - [anon_sym_catch] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_source] = ACTIONS(1648), - [anon_sym_source_DASHenv] = ACTIONS(1648), - [anon_sym_register] = ACTIONS(1648), - [anon_sym_hide] = ACTIONS(1648), - [anon_sym_hide_DASHenv] = ACTIONS(1648), - [anon_sym_overlay] = ACTIONS(1648), - [anon_sym_new] = ACTIONS(1648), - [anon_sym_as] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1650), - [anon_sym_DOT_DOT2] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token3] = ACTIONS(1650), - [aux_sym__val_number_decimal_token4] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(2263), + [anon_sym_alias] = ACTIONS(2263), + [anon_sym_let] = ACTIONS(2263), + [anon_sym_let_DASHenv] = ACTIONS(2263), + [anon_sym_mut] = ACTIONS(2263), + [anon_sym_const] = ACTIONS(2263), + [aux_sym_cmd_identifier_token1] = ACTIONS(2263), + [aux_sym_cmd_identifier_token2] = ACTIONS(2263), + [aux_sym_cmd_identifier_token3] = ACTIONS(2263), + [aux_sym_cmd_identifier_token4] = ACTIONS(2263), + [aux_sym_cmd_identifier_token5] = ACTIONS(2263), + [aux_sym_cmd_identifier_token6] = ACTIONS(2263), + [aux_sym_cmd_identifier_token7] = ACTIONS(2263), + [aux_sym_cmd_identifier_token8] = ACTIONS(2263), + [aux_sym_cmd_identifier_token9] = ACTIONS(2263), + [aux_sym_cmd_identifier_token10] = ACTIONS(2263), + [aux_sym_cmd_identifier_token11] = ACTIONS(2263), + [aux_sym_cmd_identifier_token12] = ACTIONS(2263), + [aux_sym_cmd_identifier_token13] = ACTIONS(2263), + [aux_sym_cmd_identifier_token14] = ACTIONS(2263), + [aux_sym_cmd_identifier_token15] = ACTIONS(2263), + [aux_sym_cmd_identifier_token16] = ACTIONS(2263), + [aux_sym_cmd_identifier_token17] = ACTIONS(2263), + [aux_sym_cmd_identifier_token18] = ACTIONS(2263), + [aux_sym_cmd_identifier_token19] = ACTIONS(2263), + [aux_sym_cmd_identifier_token20] = ACTIONS(2263), + [aux_sym_cmd_identifier_token21] = ACTIONS(2263), + [aux_sym_cmd_identifier_token22] = ACTIONS(2263), + [aux_sym_cmd_identifier_token23] = ACTIONS(2263), + [aux_sym_cmd_identifier_token24] = ACTIONS(2263), + [aux_sym_cmd_identifier_token25] = ACTIONS(2263), + [aux_sym_cmd_identifier_token26] = ACTIONS(2263), + [aux_sym_cmd_identifier_token27] = ACTIONS(2263), + [aux_sym_cmd_identifier_token28] = ACTIONS(2263), + [aux_sym_cmd_identifier_token29] = ACTIONS(2263), + [aux_sym_cmd_identifier_token30] = ACTIONS(2263), + [aux_sym_cmd_identifier_token31] = ACTIONS(2263), + [aux_sym_cmd_identifier_token32] = ACTIONS(2263), + [aux_sym_cmd_identifier_token33] = ACTIONS(2263), + [aux_sym_cmd_identifier_token34] = ACTIONS(2263), + [aux_sym_cmd_identifier_token35] = ACTIONS(2263), + [aux_sym_cmd_identifier_token36] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(2263), + [anon_sym_false] = ACTIONS(2263), + [anon_sym_null] = ACTIONS(2263), + [aux_sym_cmd_identifier_token38] = ACTIONS(2263), + [aux_sym_cmd_identifier_token39] = ACTIONS(2263), + [aux_sym_cmd_identifier_token40] = ACTIONS(2263), + [anon_sym_def] = ACTIONS(2263), + [anon_sym_export_DASHenv] = ACTIONS(2263), + [anon_sym_extern] = ACTIONS(2263), + [anon_sym_module] = ACTIONS(2263), + [anon_sym_use] = ACTIONS(2263), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_DOLLAR] = ACTIONS(2263), + [anon_sym_error] = ACTIONS(2263), + [anon_sym_list] = ACTIONS(2263), + [anon_sym_DASH] = ACTIONS(2263), + [anon_sym_break] = ACTIONS(2263), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_for] = ACTIONS(2263), + [anon_sym_in] = ACTIONS(2263), + [anon_sym_loop] = ACTIONS(2263), + [anon_sym_make] = ACTIONS(2263), + [anon_sym_while] = ACTIONS(2263), + [anon_sym_do] = ACTIONS(2263), + [anon_sym_if] = ACTIONS(2263), + [anon_sym_else] = ACTIONS(2263), + [anon_sym_match] = ACTIONS(2263), + [anon_sym_RBRACE] = ACTIONS(2263), + [anon_sym_try] = ACTIONS(2263), + [anon_sym_catch] = ACTIONS(2263), + [anon_sym_return] = ACTIONS(2263), + [anon_sym_source] = ACTIONS(2263), + [anon_sym_source_DASHenv] = ACTIONS(2263), + [anon_sym_register] = ACTIONS(2263), + [anon_sym_hide] = ACTIONS(2263), + [anon_sym_hide_DASHenv] = ACTIONS(2263), + [anon_sym_overlay] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2263), + [anon_sym_as] = ACTIONS(2263), + [anon_sym_LPAREN2] = ACTIONS(1577), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2263), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2263), + [aux_sym__val_number_decimal_token1] = ACTIONS(2263), + [aux_sym__val_number_decimal_token2] = ACTIONS(2263), + [aux_sym__val_number_decimal_token3] = ACTIONS(2263), + [aux_sym__val_number_decimal_token4] = ACTIONS(2263), + [aux_sym__val_number_token1] = ACTIONS(2263), + [aux_sym__val_number_token2] = ACTIONS(2263), + [aux_sym__val_number_token3] = ACTIONS(2263), + [anon_sym_DQUOTE] = ACTIONS(2263), + [sym__str_single_quotes] = ACTIONS(2263), + [sym__str_back_ticks] = ACTIONS(2263), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2263), + [sym__entry_separator] = ACTIONS(2265), + [anon_sym_PLUS] = ACTIONS(2263), + [anon_sym_POUND] = ACTIONS(3), }, [447] = { + [sym__expr_parenthesized_immediate] = STATE(7795), [sym_comment] = STATE(447), - [anon_sym_export] = ACTIONS(1721), - [anon_sym_alias] = ACTIONS(1721), - [anon_sym_let] = ACTIONS(1721), - [anon_sym_let_DASHenv] = ACTIONS(1721), - [anon_sym_mut] = ACTIONS(1721), - [anon_sym_const] = ACTIONS(1721), - [aux_sym_cmd_identifier_token1] = ACTIONS(1721), - [aux_sym_cmd_identifier_token2] = ACTIONS(1721), - [aux_sym_cmd_identifier_token3] = ACTIONS(1721), - [aux_sym_cmd_identifier_token4] = ACTIONS(1721), - [aux_sym_cmd_identifier_token5] = ACTIONS(1721), - [aux_sym_cmd_identifier_token6] = ACTIONS(1721), - [aux_sym_cmd_identifier_token7] = ACTIONS(1721), - [aux_sym_cmd_identifier_token8] = ACTIONS(1721), - [aux_sym_cmd_identifier_token9] = ACTIONS(1721), - [aux_sym_cmd_identifier_token10] = ACTIONS(1721), - [aux_sym_cmd_identifier_token11] = ACTIONS(1721), - [aux_sym_cmd_identifier_token12] = ACTIONS(1721), - [aux_sym_cmd_identifier_token13] = ACTIONS(1721), - [aux_sym_cmd_identifier_token14] = ACTIONS(1721), - [aux_sym_cmd_identifier_token15] = ACTIONS(1721), - [aux_sym_cmd_identifier_token16] = ACTIONS(1721), - [aux_sym_cmd_identifier_token17] = ACTIONS(1721), - [aux_sym_cmd_identifier_token18] = ACTIONS(1721), - [aux_sym_cmd_identifier_token19] = ACTIONS(1721), - [aux_sym_cmd_identifier_token20] = ACTIONS(1721), - [aux_sym_cmd_identifier_token21] = ACTIONS(1721), - [aux_sym_cmd_identifier_token22] = ACTIONS(1721), - [aux_sym_cmd_identifier_token23] = ACTIONS(1721), - [aux_sym_cmd_identifier_token24] = ACTIONS(1721), - [aux_sym_cmd_identifier_token25] = ACTIONS(1721), - [aux_sym_cmd_identifier_token26] = ACTIONS(1721), - [aux_sym_cmd_identifier_token27] = ACTIONS(1721), - [aux_sym_cmd_identifier_token28] = ACTIONS(1721), - [aux_sym_cmd_identifier_token29] = ACTIONS(1721), - [aux_sym_cmd_identifier_token30] = ACTIONS(1721), - [aux_sym_cmd_identifier_token31] = ACTIONS(1721), - [aux_sym_cmd_identifier_token32] = ACTIONS(1721), - [aux_sym_cmd_identifier_token33] = ACTIONS(1721), - [aux_sym_cmd_identifier_token34] = ACTIONS(1721), - [aux_sym_cmd_identifier_token35] = ACTIONS(1721), - [aux_sym_cmd_identifier_token36] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1723), - [aux_sym_cmd_identifier_token38] = ACTIONS(1721), - [aux_sym_cmd_identifier_token39] = ACTIONS(1723), - [aux_sym_cmd_identifier_token40] = ACTIONS(1723), - [anon_sym_def] = ACTIONS(1721), - [anon_sym_export_DASHenv] = ACTIONS(1721), - [anon_sym_extern] = ACTIONS(1721), - [anon_sym_module] = ACTIONS(1721), - [anon_sym_use] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1723), - [anon_sym_DOLLAR] = ACTIONS(1723), - [anon_sym_error] = ACTIONS(1721), - [anon_sym_list] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_break] = ACTIONS(1721), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_for] = ACTIONS(1721), - [anon_sym_in] = ACTIONS(1721), - [anon_sym_loop] = ACTIONS(1721), - [anon_sym_make] = ACTIONS(1721), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_do] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_else] = ACTIONS(1721), - [anon_sym_match] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_try] = ACTIONS(1721), - [anon_sym_catch] = ACTIONS(1721), - [anon_sym_return] = ACTIONS(1721), - [anon_sym_source] = ACTIONS(1721), - [anon_sym_source_DASHenv] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1721), - [anon_sym_hide] = ACTIONS(1721), - [anon_sym_hide_DASHenv] = ACTIONS(1721), - [anon_sym_overlay] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1721), - [anon_sym_as] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1723), - [anon_sym_DOT_DOT2] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1723), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token3] = ACTIONS(1723), - [aux_sym__val_number_decimal_token4] = ACTIONS(1723), - [aux_sym__val_number_token1] = ACTIONS(1723), - [aux_sym__val_number_token2] = ACTIONS(1723), - [aux_sym__val_number_token3] = ACTIONS(1723), - [anon_sym_DQUOTE] = ACTIONS(1723), - [sym__str_single_quotes] = ACTIONS(1723), - [sym__str_back_ticks] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1723), - [anon_sym_PLUS] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(2267), + [anon_sym_alias] = ACTIONS(2267), + [anon_sym_let] = ACTIONS(2267), + [anon_sym_let_DASHenv] = ACTIONS(2267), + [anon_sym_mut] = ACTIONS(2267), + [anon_sym_const] = ACTIONS(2267), + [aux_sym_cmd_identifier_token1] = ACTIONS(2267), + [aux_sym_cmd_identifier_token2] = ACTIONS(2267), + [aux_sym_cmd_identifier_token3] = ACTIONS(2267), + [aux_sym_cmd_identifier_token4] = ACTIONS(2267), + [aux_sym_cmd_identifier_token5] = ACTIONS(2267), + [aux_sym_cmd_identifier_token6] = ACTIONS(2267), + [aux_sym_cmd_identifier_token7] = ACTIONS(2267), + [aux_sym_cmd_identifier_token8] = ACTIONS(2267), + [aux_sym_cmd_identifier_token9] = ACTIONS(2267), + [aux_sym_cmd_identifier_token10] = ACTIONS(2267), + [aux_sym_cmd_identifier_token11] = ACTIONS(2267), + [aux_sym_cmd_identifier_token12] = ACTIONS(2267), + [aux_sym_cmd_identifier_token13] = ACTIONS(2267), + [aux_sym_cmd_identifier_token14] = ACTIONS(2267), + [aux_sym_cmd_identifier_token15] = ACTIONS(2267), + [aux_sym_cmd_identifier_token16] = ACTIONS(2267), + [aux_sym_cmd_identifier_token17] = ACTIONS(2267), + [aux_sym_cmd_identifier_token18] = ACTIONS(2267), + [aux_sym_cmd_identifier_token19] = ACTIONS(2267), + [aux_sym_cmd_identifier_token20] = ACTIONS(2267), + [aux_sym_cmd_identifier_token21] = ACTIONS(2267), + [aux_sym_cmd_identifier_token22] = ACTIONS(2267), + [aux_sym_cmd_identifier_token23] = ACTIONS(2267), + [aux_sym_cmd_identifier_token24] = ACTIONS(2267), + [aux_sym_cmd_identifier_token25] = ACTIONS(2267), + [aux_sym_cmd_identifier_token26] = ACTIONS(2267), + [aux_sym_cmd_identifier_token27] = ACTIONS(2267), + [aux_sym_cmd_identifier_token28] = ACTIONS(2267), + [aux_sym_cmd_identifier_token29] = ACTIONS(2267), + [aux_sym_cmd_identifier_token30] = ACTIONS(2267), + [aux_sym_cmd_identifier_token31] = ACTIONS(2267), + [aux_sym_cmd_identifier_token32] = ACTIONS(2267), + [aux_sym_cmd_identifier_token33] = ACTIONS(2267), + [aux_sym_cmd_identifier_token34] = ACTIONS(2267), + [aux_sym_cmd_identifier_token35] = ACTIONS(2267), + [aux_sym_cmd_identifier_token36] = ACTIONS(2267), + [anon_sym_true] = ACTIONS(2267), + [anon_sym_false] = ACTIONS(2267), + [anon_sym_null] = ACTIONS(2267), + [aux_sym_cmd_identifier_token38] = ACTIONS(2267), + [aux_sym_cmd_identifier_token39] = ACTIONS(2267), + [aux_sym_cmd_identifier_token40] = ACTIONS(2267), + [anon_sym_def] = ACTIONS(2267), + [anon_sym_export_DASHenv] = ACTIONS(2267), + [anon_sym_extern] = ACTIONS(2267), + [anon_sym_module] = ACTIONS(2267), + [anon_sym_use] = ACTIONS(2267), + [anon_sym_LPAREN] = ACTIONS(2267), + [anon_sym_DOLLAR] = ACTIONS(2267), + [anon_sym_error] = ACTIONS(2267), + [anon_sym_list] = ACTIONS(2267), + [anon_sym_DASH] = ACTIONS(2267), + [anon_sym_break] = ACTIONS(2267), + [anon_sym_continue] = ACTIONS(2267), + [anon_sym_for] = ACTIONS(2267), + [anon_sym_in] = ACTIONS(2267), + [anon_sym_loop] = ACTIONS(2267), + [anon_sym_make] = ACTIONS(2267), + [anon_sym_while] = ACTIONS(2267), + [anon_sym_do] = ACTIONS(2267), + [anon_sym_if] = ACTIONS(2267), + [anon_sym_else] = ACTIONS(2267), + [anon_sym_match] = ACTIONS(2267), + [anon_sym_RBRACE] = ACTIONS(2267), + [anon_sym_try] = ACTIONS(2267), + [anon_sym_catch] = ACTIONS(2267), + [anon_sym_return] = ACTIONS(2267), + [anon_sym_source] = ACTIONS(2267), + [anon_sym_source_DASHenv] = ACTIONS(2267), + [anon_sym_register] = ACTIONS(2267), + [anon_sym_hide] = ACTIONS(2267), + [anon_sym_hide_DASHenv] = ACTIONS(2267), + [anon_sym_overlay] = ACTIONS(2267), + [anon_sym_new] = ACTIONS(2267), + [anon_sym_as] = ACTIONS(2267), + [anon_sym_LPAREN2] = ACTIONS(1577), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2267), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2267), + [aux_sym__val_number_decimal_token1] = ACTIONS(2267), + [aux_sym__val_number_decimal_token2] = ACTIONS(2267), + [aux_sym__val_number_decimal_token3] = ACTIONS(2267), + [aux_sym__val_number_decimal_token4] = ACTIONS(2267), + [aux_sym__val_number_token1] = ACTIONS(2267), + [aux_sym__val_number_token2] = ACTIONS(2267), + [aux_sym__val_number_token3] = ACTIONS(2267), + [anon_sym_DQUOTE] = ACTIONS(2267), + [sym__str_single_quotes] = ACTIONS(2267), + [sym__str_back_ticks] = ACTIONS(2267), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2267), + [sym__entry_separator] = ACTIONS(2269), + [anon_sym_PLUS] = ACTIONS(2267), + [anon_sym_POUND] = ACTIONS(3), }, [448] = { [sym_comment] = STATE(448), - [anon_sym_export] = ACTIONS(1949), - [anon_sym_alias] = ACTIONS(1949), - [anon_sym_let] = ACTIONS(1949), - [anon_sym_let_DASHenv] = ACTIONS(1949), - [anon_sym_mut] = ACTIONS(1949), - [anon_sym_const] = ACTIONS(1949), - [aux_sym_cmd_identifier_token1] = ACTIONS(1949), - [aux_sym_cmd_identifier_token2] = ACTIONS(1949), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [aux_sym_cmd_identifier_token6] = ACTIONS(1949), - [aux_sym_cmd_identifier_token7] = ACTIONS(1949), - [aux_sym_cmd_identifier_token8] = ACTIONS(1949), - [aux_sym_cmd_identifier_token9] = ACTIONS(1949), - [aux_sym_cmd_identifier_token10] = ACTIONS(1949), - [aux_sym_cmd_identifier_token11] = ACTIONS(1949), - [aux_sym_cmd_identifier_token12] = ACTIONS(1949), - [aux_sym_cmd_identifier_token13] = ACTIONS(1949), - [aux_sym_cmd_identifier_token14] = ACTIONS(1949), - [aux_sym_cmd_identifier_token15] = ACTIONS(1949), - [aux_sym_cmd_identifier_token16] = ACTIONS(1949), - [aux_sym_cmd_identifier_token17] = ACTIONS(1949), - [aux_sym_cmd_identifier_token18] = ACTIONS(1949), - [aux_sym_cmd_identifier_token19] = ACTIONS(1949), - [aux_sym_cmd_identifier_token20] = ACTIONS(1949), - [aux_sym_cmd_identifier_token21] = ACTIONS(1949), - [aux_sym_cmd_identifier_token22] = ACTIONS(1949), - [aux_sym_cmd_identifier_token23] = ACTIONS(1949), - [aux_sym_cmd_identifier_token24] = ACTIONS(1949), - [aux_sym_cmd_identifier_token25] = ACTIONS(1949), - [aux_sym_cmd_identifier_token26] = ACTIONS(1949), - [aux_sym_cmd_identifier_token27] = ACTIONS(1949), - [aux_sym_cmd_identifier_token28] = ACTIONS(1949), - [aux_sym_cmd_identifier_token29] = ACTIONS(1949), - [aux_sym_cmd_identifier_token30] = ACTIONS(1949), - [aux_sym_cmd_identifier_token31] = ACTIONS(1949), - [aux_sym_cmd_identifier_token32] = ACTIONS(1949), - [aux_sym_cmd_identifier_token33] = ACTIONS(1949), - [aux_sym_cmd_identifier_token34] = ACTIONS(1949), - [aux_sym_cmd_identifier_token35] = ACTIONS(1949), - [aux_sym_cmd_identifier_token36] = ACTIONS(1949), - [anon_sym_true] = ACTIONS(1951), - [anon_sym_false] = ACTIONS(1951), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token38] = ACTIONS(1949), - [aux_sym_cmd_identifier_token39] = ACTIONS(1951), - [aux_sym_cmd_identifier_token40] = ACTIONS(1951), - [anon_sym_def] = ACTIONS(1949), - [anon_sym_export_DASHenv] = ACTIONS(1949), - [anon_sym_extern] = ACTIONS(1949), - [anon_sym_module] = ACTIONS(1949), - [anon_sym_use] = ACTIONS(1949), - [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym_DOLLAR] = ACTIONS(1951), - [anon_sym_error] = ACTIONS(1949), - [anon_sym_list] = ACTIONS(1949), - [anon_sym_DASH] = ACTIONS(1949), - [anon_sym_break] = ACTIONS(1949), - [anon_sym_continue] = ACTIONS(1949), - [anon_sym_for] = ACTIONS(1949), - [anon_sym_in] = ACTIONS(1949), - [anon_sym_loop] = ACTIONS(1949), - [anon_sym_make] = ACTIONS(1949), - [anon_sym_while] = ACTIONS(1949), - [anon_sym_do] = ACTIONS(1949), - [anon_sym_if] = ACTIONS(1949), - [anon_sym_else] = ACTIONS(1949), - [anon_sym_match] = ACTIONS(1949), - [anon_sym_RBRACE] = ACTIONS(1951), - [anon_sym_try] = ACTIONS(1949), - [anon_sym_catch] = ACTIONS(1949), - [anon_sym_return] = ACTIONS(1949), - [anon_sym_source] = ACTIONS(1949), - [anon_sym_source_DASHenv] = ACTIONS(1949), - [anon_sym_register] = ACTIONS(1949), - [anon_sym_hide] = ACTIONS(1949), - [anon_sym_hide_DASHenv] = ACTIONS(1949), - [anon_sym_overlay] = ACTIONS(1949), - [anon_sym_new] = ACTIONS(1949), - [anon_sym_as] = ACTIONS(1949), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1951), - [anon_sym_DOT_DOT2] = ACTIONS(2113), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2115), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2115), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1951), - [aux_sym__val_number_decimal_token1] = ACTIONS(1949), - [aux_sym__val_number_decimal_token2] = ACTIONS(1951), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), - [aux_sym__val_number_token1] = ACTIONS(1951), - [aux_sym__val_number_token2] = ACTIONS(1951), - [aux_sym__val_number_token3] = ACTIONS(1951), - [anon_sym_DQUOTE] = ACTIONS(1951), - [sym__str_single_quotes] = ACTIONS(1951), - [sym__str_back_ticks] = ACTIONS(1951), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1951), - [anon_sym_PLUS] = ACTIONS(1949), + [anon_sym_export] = ACTIONS(1643), + [anon_sym_alias] = ACTIONS(1643), + [anon_sym_let] = ACTIONS(1643), + [anon_sym_let_DASHenv] = ACTIONS(1643), + [anon_sym_mut] = ACTIONS(1643), + [anon_sym_const] = ACTIONS(1643), + [aux_sym_cmd_identifier_token1] = ACTIONS(1643), + [aux_sym_cmd_identifier_token2] = ACTIONS(1643), + [aux_sym_cmd_identifier_token3] = ACTIONS(1643), + [aux_sym_cmd_identifier_token4] = ACTIONS(1643), + [aux_sym_cmd_identifier_token5] = ACTIONS(1643), + [aux_sym_cmd_identifier_token6] = ACTIONS(1643), + [aux_sym_cmd_identifier_token7] = ACTIONS(1643), + [aux_sym_cmd_identifier_token8] = ACTIONS(1643), + [aux_sym_cmd_identifier_token9] = ACTIONS(1643), + [aux_sym_cmd_identifier_token10] = ACTIONS(1643), + [aux_sym_cmd_identifier_token11] = ACTIONS(1643), + [aux_sym_cmd_identifier_token12] = ACTIONS(1643), + [aux_sym_cmd_identifier_token13] = ACTIONS(1643), + [aux_sym_cmd_identifier_token14] = ACTIONS(1643), + [aux_sym_cmd_identifier_token15] = ACTIONS(1643), + [aux_sym_cmd_identifier_token16] = ACTIONS(1643), + [aux_sym_cmd_identifier_token17] = ACTIONS(1643), + [aux_sym_cmd_identifier_token18] = ACTIONS(1643), + [aux_sym_cmd_identifier_token19] = ACTIONS(1643), + [aux_sym_cmd_identifier_token20] = ACTIONS(1643), + [aux_sym_cmd_identifier_token21] = ACTIONS(1643), + [aux_sym_cmd_identifier_token22] = ACTIONS(1643), + [aux_sym_cmd_identifier_token23] = ACTIONS(1643), + [aux_sym_cmd_identifier_token24] = ACTIONS(1643), + [aux_sym_cmd_identifier_token25] = ACTIONS(1643), + [aux_sym_cmd_identifier_token26] = ACTIONS(1643), + [aux_sym_cmd_identifier_token27] = ACTIONS(1643), + [aux_sym_cmd_identifier_token28] = ACTIONS(1643), + [aux_sym_cmd_identifier_token29] = ACTIONS(1643), + [aux_sym_cmd_identifier_token30] = ACTIONS(1643), + [aux_sym_cmd_identifier_token31] = ACTIONS(1643), + [aux_sym_cmd_identifier_token32] = ACTIONS(1643), + [aux_sym_cmd_identifier_token33] = ACTIONS(1643), + [aux_sym_cmd_identifier_token34] = ACTIONS(1643), + [aux_sym_cmd_identifier_token35] = ACTIONS(1643), + [aux_sym_cmd_identifier_token36] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [aux_sym_cmd_identifier_token38] = ACTIONS(1643), + [aux_sym_cmd_identifier_token39] = ACTIONS(1645), + [aux_sym_cmd_identifier_token40] = ACTIONS(1645), + [anon_sym_def] = ACTIONS(1643), + [anon_sym_export_DASHenv] = ACTIONS(1643), + [anon_sym_extern] = ACTIONS(1643), + [anon_sym_module] = ACTIONS(1643), + [anon_sym_use] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(1645), + [anon_sym_error] = ACTIONS(1643), + [anon_sym_list] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_break] = ACTIONS(1643), + [anon_sym_continue] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_loop] = ACTIONS(1643), + [anon_sym_make] = ACTIONS(1643), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_do] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_else] = ACTIONS(1643), + [anon_sym_match] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1645), + [anon_sym_try] = ACTIONS(1643), + [anon_sym_catch] = ACTIONS(1643), + [anon_sym_return] = ACTIONS(1643), + [anon_sym_source] = ACTIONS(1643), + [anon_sym_source_DASHenv] = ACTIONS(1643), + [anon_sym_register] = ACTIONS(1643), + [anon_sym_hide] = ACTIONS(1643), + [anon_sym_hide_DASHenv] = ACTIONS(1643), + [anon_sym_overlay] = ACTIONS(1643), + [anon_sym_new] = ACTIONS(1643), + [anon_sym_as] = ACTIONS(1643), + [anon_sym_LPAREN2] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1645), + [aux_sym__immediate_decimal_token2] = ACTIONS(2033), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1645), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1645), + [aux_sym__val_number_decimal_token3] = ACTIONS(1645), + [aux_sym__val_number_decimal_token4] = ACTIONS(1645), + [aux_sym__val_number_token1] = ACTIONS(1645), + [aux_sym__val_number_token2] = ACTIONS(1645), + [aux_sym__val_number_token3] = ACTIONS(1645), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym__str_single_quotes] = ACTIONS(1645), + [sym__str_back_ticks] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1645), + [anon_sym_PLUS] = ACTIONS(1643), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1643), [anon_sym_POUND] = ACTIONS(247), }, [449] = { [sym_comment] = STATE(449), - [anon_sym_export] = ACTIONS(1589), - [anon_sym_alias] = ACTIONS(1589), - [anon_sym_let] = ACTIONS(1589), - [anon_sym_let_DASHenv] = ACTIONS(1589), - [anon_sym_mut] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [aux_sym_cmd_identifier_token1] = ACTIONS(1589), - [aux_sym_cmd_identifier_token2] = ACTIONS(1589), - [aux_sym_cmd_identifier_token3] = ACTIONS(1589), - [aux_sym_cmd_identifier_token4] = ACTIONS(1589), - [aux_sym_cmd_identifier_token5] = ACTIONS(1589), - [aux_sym_cmd_identifier_token6] = ACTIONS(1589), - [aux_sym_cmd_identifier_token7] = ACTIONS(1589), - [aux_sym_cmd_identifier_token8] = ACTIONS(1589), - [aux_sym_cmd_identifier_token9] = ACTIONS(1589), - [aux_sym_cmd_identifier_token10] = ACTIONS(1589), - [aux_sym_cmd_identifier_token11] = ACTIONS(1589), - [aux_sym_cmd_identifier_token12] = ACTIONS(1589), - [aux_sym_cmd_identifier_token13] = ACTIONS(1589), - [aux_sym_cmd_identifier_token14] = ACTIONS(1589), - [aux_sym_cmd_identifier_token15] = ACTIONS(1589), - [aux_sym_cmd_identifier_token16] = ACTIONS(1589), - [aux_sym_cmd_identifier_token17] = ACTIONS(1589), - [aux_sym_cmd_identifier_token18] = ACTIONS(1589), - [aux_sym_cmd_identifier_token19] = ACTIONS(1589), - [aux_sym_cmd_identifier_token20] = ACTIONS(1589), - [aux_sym_cmd_identifier_token21] = ACTIONS(1589), - [aux_sym_cmd_identifier_token22] = ACTIONS(1589), - [aux_sym_cmd_identifier_token23] = ACTIONS(1589), - [aux_sym_cmd_identifier_token24] = ACTIONS(1589), - [aux_sym_cmd_identifier_token25] = ACTIONS(1589), - [aux_sym_cmd_identifier_token26] = ACTIONS(1589), - [aux_sym_cmd_identifier_token27] = ACTIONS(1589), - [aux_sym_cmd_identifier_token28] = ACTIONS(1589), - [aux_sym_cmd_identifier_token29] = ACTIONS(1589), - [aux_sym_cmd_identifier_token30] = ACTIONS(1589), - [aux_sym_cmd_identifier_token31] = ACTIONS(1589), - [aux_sym_cmd_identifier_token32] = ACTIONS(1589), - [aux_sym_cmd_identifier_token33] = ACTIONS(1589), - [aux_sym_cmd_identifier_token34] = ACTIONS(1589), - [aux_sym_cmd_identifier_token35] = ACTIONS(1589), - [aux_sym_cmd_identifier_token36] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1589), - [anon_sym_false] = ACTIONS(1589), - [anon_sym_null] = ACTIONS(1589), - [aux_sym_cmd_identifier_token38] = ACTIONS(1589), - [aux_sym_cmd_identifier_token39] = ACTIONS(1589), - [aux_sym_cmd_identifier_token40] = ACTIONS(1589), - [anon_sym_def] = ACTIONS(1589), - [anon_sym_export_DASHenv] = ACTIONS(1589), - [anon_sym_extern] = ACTIONS(1589), - [anon_sym_module] = ACTIONS(1589), - [anon_sym_use] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_error] = ACTIONS(1589), - [anon_sym_list] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_loop] = ACTIONS(1589), - [anon_sym_make] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_else] = ACTIONS(1589), - [anon_sym_match] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1589), - [anon_sym_try] = ACTIONS(1589), - [anon_sym_catch] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_source] = ACTIONS(1589), - [anon_sym_source_DASHenv] = ACTIONS(1589), - [anon_sym_register] = ACTIONS(1589), - [anon_sym_hide] = ACTIONS(1589), - [anon_sym_hide_DASHenv] = ACTIONS(1589), - [anon_sym_overlay] = ACTIONS(1589), - [anon_sym_new] = ACTIONS(1589), - [anon_sym_as] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1591), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1589), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1589), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1589), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1589), - [aux_sym__val_number_token1] = ACTIONS(1589), - [aux_sym__val_number_token2] = ACTIONS(1589), - [aux_sym__val_number_token3] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [sym__str_single_quotes] = ACTIONS(1589), - [sym__str_back_ticks] = ACTIONS(1589), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1589), - [sym__entry_separator] = ACTIONS(1591), - [anon_sym_PLUS] = ACTIONS(1589), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1705), + [anon_sym_alias] = ACTIONS(1705), + [anon_sym_let] = ACTIONS(1705), + [anon_sym_let_DASHenv] = ACTIONS(1705), + [anon_sym_mut] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [aux_sym_cmd_identifier_token1] = ACTIONS(1705), + [aux_sym_cmd_identifier_token2] = ACTIONS(1705), + [aux_sym_cmd_identifier_token3] = ACTIONS(1705), + [aux_sym_cmd_identifier_token4] = ACTIONS(1705), + [aux_sym_cmd_identifier_token5] = ACTIONS(1705), + [aux_sym_cmd_identifier_token6] = ACTIONS(1705), + [aux_sym_cmd_identifier_token7] = ACTIONS(1705), + [aux_sym_cmd_identifier_token8] = ACTIONS(1705), + [aux_sym_cmd_identifier_token9] = ACTIONS(1705), + [aux_sym_cmd_identifier_token10] = ACTIONS(1705), + [aux_sym_cmd_identifier_token11] = ACTIONS(1705), + [aux_sym_cmd_identifier_token12] = ACTIONS(1705), + [aux_sym_cmd_identifier_token13] = ACTIONS(1705), + [aux_sym_cmd_identifier_token14] = ACTIONS(1705), + [aux_sym_cmd_identifier_token15] = ACTIONS(1705), + [aux_sym_cmd_identifier_token16] = ACTIONS(1705), + [aux_sym_cmd_identifier_token17] = ACTIONS(1705), + [aux_sym_cmd_identifier_token18] = ACTIONS(1705), + [aux_sym_cmd_identifier_token19] = ACTIONS(1705), + [aux_sym_cmd_identifier_token20] = ACTIONS(1705), + [aux_sym_cmd_identifier_token21] = ACTIONS(1705), + [aux_sym_cmd_identifier_token22] = ACTIONS(1705), + [aux_sym_cmd_identifier_token23] = ACTIONS(1705), + [aux_sym_cmd_identifier_token24] = ACTIONS(1705), + [aux_sym_cmd_identifier_token25] = ACTIONS(1705), + [aux_sym_cmd_identifier_token26] = ACTIONS(1705), + [aux_sym_cmd_identifier_token27] = ACTIONS(1705), + [aux_sym_cmd_identifier_token28] = ACTIONS(1705), + [aux_sym_cmd_identifier_token29] = ACTIONS(1705), + [aux_sym_cmd_identifier_token30] = ACTIONS(1705), + [aux_sym_cmd_identifier_token31] = ACTIONS(1705), + [aux_sym_cmd_identifier_token32] = ACTIONS(1705), + [aux_sym_cmd_identifier_token33] = ACTIONS(1705), + [aux_sym_cmd_identifier_token34] = ACTIONS(1705), + [aux_sym_cmd_identifier_token35] = ACTIONS(1705), + [aux_sym_cmd_identifier_token36] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1707), + [anon_sym_false] = ACTIONS(1707), + [anon_sym_null] = ACTIONS(1707), + [aux_sym_cmd_identifier_token38] = ACTIONS(1705), + [aux_sym_cmd_identifier_token39] = ACTIONS(1707), + [aux_sym_cmd_identifier_token40] = ACTIONS(1707), + [anon_sym_def] = ACTIONS(1705), + [anon_sym_export_DASHenv] = ACTIONS(1705), + [anon_sym_extern] = ACTIONS(1705), + [anon_sym_module] = ACTIONS(1705), + [anon_sym_use] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1707), + [anon_sym_error] = ACTIONS(1705), + [anon_sym_list] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_break] = ACTIONS(1705), + [anon_sym_continue] = ACTIONS(1705), + [anon_sym_for] = ACTIONS(1705), + [anon_sym_in] = ACTIONS(1705), + [anon_sym_loop] = ACTIONS(1705), + [anon_sym_make] = ACTIONS(1705), + [anon_sym_while] = ACTIONS(1705), + [anon_sym_do] = ACTIONS(1705), + [anon_sym_if] = ACTIONS(1705), + [anon_sym_else] = ACTIONS(1705), + [anon_sym_match] = ACTIONS(1705), + [anon_sym_RBRACE] = ACTIONS(1707), + [anon_sym_try] = ACTIONS(1705), + [anon_sym_catch] = ACTIONS(1705), + [anon_sym_return] = ACTIONS(1705), + [anon_sym_source] = ACTIONS(1705), + [anon_sym_source_DASHenv] = ACTIONS(1705), + [anon_sym_register] = ACTIONS(1705), + [anon_sym_hide] = ACTIONS(1705), + [anon_sym_hide_DASHenv] = ACTIONS(1705), + [anon_sym_overlay] = ACTIONS(1705), + [anon_sym_new] = ACTIONS(1705), + [anon_sym_as] = ACTIONS(1705), + [anon_sym_LPAREN2] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1707), + [aux_sym__immediate_decimal_token2] = ACTIONS(2271), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1707), + [aux_sym__val_number_decimal_token1] = ACTIONS(1705), + [aux_sym__val_number_decimal_token2] = ACTIONS(1707), + [aux_sym__val_number_decimal_token3] = ACTIONS(1707), + [aux_sym__val_number_decimal_token4] = ACTIONS(1707), + [aux_sym__val_number_token1] = ACTIONS(1707), + [aux_sym__val_number_token2] = ACTIONS(1707), + [aux_sym__val_number_token3] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1707), + [sym__str_single_quotes] = ACTIONS(1707), + [sym__str_back_ticks] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1705), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1705), + [anon_sym_POUND] = ACTIONS(247), }, [450] = { [sym_comment] = STATE(450), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_alias] = ACTIONS(1569), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_let_DASHenv] = ACTIONS(1569), - [anon_sym_mut] = ACTIONS(1569), - [anon_sym_const] = ACTIONS(1569), - [aux_sym_cmd_identifier_token1] = ACTIONS(1569), - [aux_sym_cmd_identifier_token2] = ACTIONS(1569), - [aux_sym_cmd_identifier_token3] = ACTIONS(1569), - [aux_sym_cmd_identifier_token4] = ACTIONS(1569), - [aux_sym_cmd_identifier_token5] = ACTIONS(1569), - [aux_sym_cmd_identifier_token6] = ACTIONS(1569), - [aux_sym_cmd_identifier_token7] = ACTIONS(1569), - [aux_sym_cmd_identifier_token8] = ACTIONS(1569), - [aux_sym_cmd_identifier_token9] = ACTIONS(1569), - [aux_sym_cmd_identifier_token10] = ACTIONS(1569), - [aux_sym_cmd_identifier_token11] = ACTIONS(1569), - [aux_sym_cmd_identifier_token12] = ACTIONS(1569), - [aux_sym_cmd_identifier_token13] = ACTIONS(1569), - [aux_sym_cmd_identifier_token14] = ACTIONS(1569), - [aux_sym_cmd_identifier_token15] = ACTIONS(1569), - [aux_sym_cmd_identifier_token16] = ACTIONS(1569), - [aux_sym_cmd_identifier_token17] = ACTIONS(1569), - [aux_sym_cmd_identifier_token18] = ACTIONS(1569), - [aux_sym_cmd_identifier_token19] = ACTIONS(1569), - [aux_sym_cmd_identifier_token20] = ACTIONS(1569), - [aux_sym_cmd_identifier_token21] = ACTIONS(1569), - [aux_sym_cmd_identifier_token22] = ACTIONS(1569), - [aux_sym_cmd_identifier_token23] = ACTIONS(1569), - [aux_sym_cmd_identifier_token24] = ACTIONS(1569), - [aux_sym_cmd_identifier_token25] = ACTIONS(1569), - [aux_sym_cmd_identifier_token26] = ACTIONS(1569), - [aux_sym_cmd_identifier_token27] = ACTIONS(1569), - [aux_sym_cmd_identifier_token28] = ACTIONS(1569), - [aux_sym_cmd_identifier_token29] = ACTIONS(1569), - [aux_sym_cmd_identifier_token30] = ACTIONS(1569), - [aux_sym_cmd_identifier_token31] = ACTIONS(1569), - [aux_sym_cmd_identifier_token32] = ACTIONS(1569), - [aux_sym_cmd_identifier_token33] = ACTIONS(1569), - [aux_sym_cmd_identifier_token34] = ACTIONS(1569), - [aux_sym_cmd_identifier_token35] = ACTIONS(1569), - [aux_sym_cmd_identifier_token36] = ACTIONS(1569), - [anon_sym_true] = ACTIONS(1569), - [anon_sym_false] = ACTIONS(1569), - [anon_sym_null] = ACTIONS(1569), - [aux_sym_cmd_identifier_token38] = ACTIONS(1569), - [aux_sym_cmd_identifier_token39] = ACTIONS(1569), - [aux_sym_cmd_identifier_token40] = ACTIONS(1569), - [anon_sym_def] = ACTIONS(1569), - [anon_sym_export_DASHenv] = ACTIONS(1569), - [anon_sym_extern] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_use] = ACTIONS(1569), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_DOLLAR] = ACTIONS(1569), - [anon_sym_error] = ACTIONS(1569), - [anon_sym_list] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_break] = ACTIONS(1569), - [anon_sym_continue] = ACTIONS(1569), - [anon_sym_for] = ACTIONS(1569), - [anon_sym_in] = ACTIONS(1569), - [anon_sym_loop] = ACTIONS(1569), - [anon_sym_make] = ACTIONS(1569), - [anon_sym_while] = ACTIONS(1569), - [anon_sym_do] = ACTIONS(1569), - [anon_sym_if] = ACTIONS(1569), - [anon_sym_else] = ACTIONS(1569), - [anon_sym_match] = ACTIONS(1569), - [anon_sym_RBRACE] = ACTIONS(1569), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_catch] = ACTIONS(1569), - [anon_sym_return] = ACTIONS(1569), - [anon_sym_source] = ACTIONS(1569), - [anon_sym_source_DASHenv] = ACTIONS(1569), - [anon_sym_register] = ACTIONS(1569), - [anon_sym_hide] = ACTIONS(1569), - [anon_sym_hide_DASHenv] = ACTIONS(1569), - [anon_sym_overlay] = ACTIONS(1569), - [anon_sym_new] = ACTIONS(1569), - [anon_sym_as] = ACTIONS(1569), - [anon_sym_LPAREN2] = ACTIONS(1571), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1569), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1569), - [aux_sym__val_number_decimal_token1] = ACTIONS(1569), - [aux_sym__val_number_decimal_token2] = ACTIONS(1569), - [aux_sym__val_number_decimal_token3] = ACTIONS(1569), - [aux_sym__val_number_decimal_token4] = ACTIONS(1569), - [aux_sym__val_number_token1] = ACTIONS(1569), - [aux_sym__val_number_token2] = ACTIONS(1569), - [aux_sym__val_number_token3] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(1569), - [sym__str_single_quotes] = ACTIONS(1569), - [sym__str_back_ticks] = ACTIONS(1569), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1569), - [sym__entry_separator] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1569), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1569), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1643), + [anon_sym_alias] = ACTIONS(1643), + [anon_sym_let] = ACTIONS(1643), + [anon_sym_let_DASHenv] = ACTIONS(1643), + [anon_sym_mut] = ACTIONS(1643), + [anon_sym_const] = ACTIONS(1643), + [aux_sym_cmd_identifier_token1] = ACTIONS(1643), + [aux_sym_cmd_identifier_token2] = ACTIONS(1643), + [aux_sym_cmd_identifier_token3] = ACTIONS(1643), + [aux_sym_cmd_identifier_token4] = ACTIONS(1643), + [aux_sym_cmd_identifier_token5] = ACTIONS(1643), + [aux_sym_cmd_identifier_token6] = ACTIONS(1643), + [aux_sym_cmd_identifier_token7] = ACTIONS(1643), + [aux_sym_cmd_identifier_token8] = ACTIONS(1643), + [aux_sym_cmd_identifier_token9] = ACTIONS(1643), + [aux_sym_cmd_identifier_token10] = ACTIONS(1643), + [aux_sym_cmd_identifier_token11] = ACTIONS(1643), + [aux_sym_cmd_identifier_token12] = ACTIONS(1643), + [aux_sym_cmd_identifier_token13] = ACTIONS(1643), + [aux_sym_cmd_identifier_token14] = ACTIONS(1643), + [aux_sym_cmd_identifier_token15] = ACTIONS(1643), + [aux_sym_cmd_identifier_token16] = ACTIONS(1643), + [aux_sym_cmd_identifier_token17] = ACTIONS(1643), + [aux_sym_cmd_identifier_token18] = ACTIONS(1643), + [aux_sym_cmd_identifier_token19] = ACTIONS(1643), + [aux_sym_cmd_identifier_token20] = ACTIONS(1643), + [aux_sym_cmd_identifier_token21] = ACTIONS(1643), + [aux_sym_cmd_identifier_token22] = ACTIONS(1643), + [aux_sym_cmd_identifier_token23] = ACTIONS(1643), + [aux_sym_cmd_identifier_token24] = ACTIONS(1643), + [aux_sym_cmd_identifier_token25] = ACTIONS(1643), + [aux_sym_cmd_identifier_token26] = ACTIONS(1643), + [aux_sym_cmd_identifier_token27] = ACTIONS(1643), + [aux_sym_cmd_identifier_token28] = ACTIONS(1643), + [aux_sym_cmd_identifier_token29] = ACTIONS(1643), + [aux_sym_cmd_identifier_token30] = ACTIONS(1643), + [aux_sym_cmd_identifier_token31] = ACTIONS(1643), + [aux_sym_cmd_identifier_token32] = ACTIONS(1643), + [aux_sym_cmd_identifier_token33] = ACTIONS(1643), + [aux_sym_cmd_identifier_token34] = ACTIONS(1643), + [aux_sym_cmd_identifier_token35] = ACTIONS(1643), + [aux_sym_cmd_identifier_token36] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [aux_sym_cmd_identifier_token38] = ACTIONS(1643), + [aux_sym_cmd_identifier_token39] = ACTIONS(1645), + [aux_sym_cmd_identifier_token40] = ACTIONS(1645), + [anon_sym_def] = ACTIONS(1643), + [anon_sym_export_DASHenv] = ACTIONS(1643), + [anon_sym_extern] = ACTIONS(1643), + [anon_sym_module] = ACTIONS(1643), + [anon_sym_use] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1645), + [anon_sym_DOLLAR] = ACTIONS(1645), + [anon_sym_error] = ACTIONS(1643), + [anon_sym_list] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_break] = ACTIONS(1643), + [anon_sym_continue] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_loop] = ACTIONS(1643), + [anon_sym_make] = ACTIONS(1643), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_do] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_else] = ACTIONS(1643), + [anon_sym_match] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1645), + [anon_sym_try] = ACTIONS(1643), + [anon_sym_catch] = ACTIONS(1643), + [anon_sym_return] = ACTIONS(1643), + [anon_sym_source] = ACTIONS(1643), + [anon_sym_source_DASHenv] = ACTIONS(1643), + [anon_sym_register] = ACTIONS(1643), + [anon_sym_hide] = ACTIONS(1643), + [anon_sym_hide_DASHenv] = ACTIONS(1643), + [anon_sym_overlay] = ACTIONS(1643), + [anon_sym_new] = ACTIONS(1643), + [anon_sym_as] = ACTIONS(1643), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1645), + [anon_sym_DOT_DOT2] = ACTIONS(1643), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1645), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1645), + [aux_sym__val_number_decimal_token3] = ACTIONS(1645), + [aux_sym__val_number_decimal_token4] = ACTIONS(1645), + [aux_sym__val_number_token1] = ACTIONS(1645), + [aux_sym__val_number_token2] = ACTIONS(1645), + [aux_sym__val_number_token3] = ACTIONS(1645), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym__str_single_quotes] = ACTIONS(1645), + [sym__str_back_ticks] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1645), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_POUND] = ACTIONS(247), }, [451] = { [sym_comment] = STATE(451), - [anon_sym_export] = ACTIONS(1648), - [anon_sym_alias] = ACTIONS(1648), - [anon_sym_let] = ACTIONS(1648), - [anon_sym_let_DASHenv] = ACTIONS(1648), - [anon_sym_mut] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1648), - [aux_sym_cmd_identifier_token1] = ACTIONS(1648), - [aux_sym_cmd_identifier_token2] = ACTIONS(1648), - [aux_sym_cmd_identifier_token3] = ACTIONS(1648), - [aux_sym_cmd_identifier_token4] = ACTIONS(1648), - [aux_sym_cmd_identifier_token5] = ACTIONS(1648), - [aux_sym_cmd_identifier_token6] = ACTIONS(1648), - [aux_sym_cmd_identifier_token7] = ACTIONS(1648), - [aux_sym_cmd_identifier_token8] = ACTIONS(1648), - [aux_sym_cmd_identifier_token9] = ACTIONS(1648), - [aux_sym_cmd_identifier_token10] = ACTIONS(1648), - [aux_sym_cmd_identifier_token11] = ACTIONS(1648), - [aux_sym_cmd_identifier_token12] = ACTIONS(1648), - [aux_sym_cmd_identifier_token13] = ACTIONS(1648), - [aux_sym_cmd_identifier_token14] = ACTIONS(1648), - [aux_sym_cmd_identifier_token15] = ACTIONS(1648), - [aux_sym_cmd_identifier_token16] = ACTIONS(1648), - [aux_sym_cmd_identifier_token17] = ACTIONS(1648), - [aux_sym_cmd_identifier_token18] = ACTIONS(1648), - [aux_sym_cmd_identifier_token19] = ACTIONS(1648), - [aux_sym_cmd_identifier_token20] = ACTIONS(1648), - [aux_sym_cmd_identifier_token21] = ACTIONS(1648), - [aux_sym_cmd_identifier_token22] = ACTIONS(1648), - [aux_sym_cmd_identifier_token23] = ACTIONS(1648), - [aux_sym_cmd_identifier_token24] = ACTIONS(1648), - [aux_sym_cmd_identifier_token25] = ACTIONS(1648), - [aux_sym_cmd_identifier_token26] = ACTIONS(1648), - [aux_sym_cmd_identifier_token27] = ACTIONS(1648), - [aux_sym_cmd_identifier_token28] = ACTIONS(1648), - [aux_sym_cmd_identifier_token29] = ACTIONS(1648), - [aux_sym_cmd_identifier_token30] = ACTIONS(1648), - [aux_sym_cmd_identifier_token31] = ACTIONS(1648), - [aux_sym_cmd_identifier_token32] = ACTIONS(1648), - [aux_sym_cmd_identifier_token33] = ACTIONS(1648), - [aux_sym_cmd_identifier_token34] = ACTIONS(1648), - [aux_sym_cmd_identifier_token35] = ACTIONS(1648), - [aux_sym_cmd_identifier_token36] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1648), - [anon_sym_false] = ACTIONS(1648), - [anon_sym_null] = ACTIONS(1648), - [aux_sym_cmd_identifier_token38] = ACTIONS(1648), - [aux_sym_cmd_identifier_token39] = ACTIONS(1648), - [aux_sym_cmd_identifier_token40] = ACTIONS(1648), - [anon_sym_def] = ACTIONS(1648), - [anon_sym_export_DASHenv] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1648), - [anon_sym_module] = ACTIONS(1648), - [anon_sym_use] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_error] = ACTIONS(1648), - [anon_sym_list] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_in] = ACTIONS(1648), - [anon_sym_loop] = ACTIONS(1648), - [anon_sym_make] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_do] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1648), - [anon_sym_match] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1648), - [anon_sym_try] = ACTIONS(1648), - [anon_sym_catch] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_source] = ACTIONS(1648), - [anon_sym_source_DASHenv] = ACTIONS(1648), - [anon_sym_register] = ACTIONS(1648), - [anon_sym_hide] = ACTIONS(1648), - [anon_sym_hide_DASHenv] = ACTIONS(1648), - [anon_sym_overlay] = ACTIONS(1648), - [anon_sym_new] = ACTIONS(1648), - [anon_sym_as] = ACTIONS(1648), - [anon_sym_LPAREN2] = ACTIONS(1650), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1648), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1648), - [aux_sym__val_number_decimal_token3] = ACTIONS(1648), - [aux_sym__val_number_decimal_token4] = ACTIONS(1648), - [aux_sym__val_number_token1] = ACTIONS(1648), - [aux_sym__val_number_token2] = ACTIONS(1648), - [aux_sym__val_number_token3] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1648), - [sym__str_single_quotes] = ACTIONS(1648), - [sym__str_back_ticks] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1648), - [sym__entry_separator] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1648), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1631), + [anon_sym_alias] = ACTIONS(1631), + [anon_sym_let] = ACTIONS(1631), + [anon_sym_let_DASHenv] = ACTIONS(1631), + [anon_sym_mut] = ACTIONS(1631), + [anon_sym_const] = ACTIONS(1631), + [aux_sym_cmd_identifier_token1] = ACTIONS(1631), + [aux_sym_cmd_identifier_token2] = ACTIONS(1631), + [aux_sym_cmd_identifier_token3] = ACTIONS(1631), + [aux_sym_cmd_identifier_token4] = ACTIONS(1631), + [aux_sym_cmd_identifier_token5] = ACTIONS(1631), + [aux_sym_cmd_identifier_token6] = ACTIONS(1631), + [aux_sym_cmd_identifier_token7] = ACTIONS(1631), + [aux_sym_cmd_identifier_token8] = ACTIONS(1631), + [aux_sym_cmd_identifier_token9] = ACTIONS(1631), + [aux_sym_cmd_identifier_token10] = ACTIONS(1631), + [aux_sym_cmd_identifier_token11] = ACTIONS(1631), + [aux_sym_cmd_identifier_token12] = ACTIONS(1631), + [aux_sym_cmd_identifier_token13] = ACTIONS(1631), + [aux_sym_cmd_identifier_token14] = ACTIONS(1631), + [aux_sym_cmd_identifier_token15] = ACTIONS(1631), + [aux_sym_cmd_identifier_token16] = ACTIONS(1631), + [aux_sym_cmd_identifier_token17] = ACTIONS(1631), + [aux_sym_cmd_identifier_token18] = ACTIONS(1631), + [aux_sym_cmd_identifier_token19] = ACTIONS(1631), + [aux_sym_cmd_identifier_token20] = ACTIONS(1631), + [aux_sym_cmd_identifier_token21] = ACTIONS(1631), + [aux_sym_cmd_identifier_token22] = ACTIONS(1631), + [aux_sym_cmd_identifier_token23] = ACTIONS(1631), + [aux_sym_cmd_identifier_token24] = ACTIONS(1631), + [aux_sym_cmd_identifier_token25] = ACTIONS(1631), + [aux_sym_cmd_identifier_token26] = ACTIONS(1631), + [aux_sym_cmd_identifier_token27] = ACTIONS(1631), + [aux_sym_cmd_identifier_token28] = ACTIONS(1631), + [aux_sym_cmd_identifier_token29] = ACTIONS(1631), + [aux_sym_cmd_identifier_token30] = ACTIONS(1631), + [aux_sym_cmd_identifier_token31] = ACTIONS(1631), + [aux_sym_cmd_identifier_token32] = ACTIONS(1631), + [aux_sym_cmd_identifier_token33] = ACTIONS(1631), + [aux_sym_cmd_identifier_token34] = ACTIONS(1631), + [aux_sym_cmd_identifier_token35] = ACTIONS(1631), + [aux_sym_cmd_identifier_token36] = ACTIONS(1631), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [aux_sym_cmd_identifier_token38] = ACTIONS(1631), + [aux_sym_cmd_identifier_token39] = ACTIONS(1633), + [aux_sym_cmd_identifier_token40] = ACTIONS(1633), + [anon_sym_def] = ACTIONS(1631), + [anon_sym_export_DASHenv] = ACTIONS(1631), + [anon_sym_extern] = ACTIONS(1631), + [anon_sym_module] = ACTIONS(1631), + [anon_sym_use] = ACTIONS(1631), + [anon_sym_LPAREN] = ACTIONS(1633), + [anon_sym_DOLLAR] = ACTIONS(1633), + [anon_sym_error] = ACTIONS(1631), + [anon_sym_list] = ACTIONS(1631), + [anon_sym_DASH] = ACTIONS(1631), + [anon_sym_break] = ACTIONS(1631), + [anon_sym_continue] = ACTIONS(1631), + [anon_sym_for] = ACTIONS(1631), + [anon_sym_in] = ACTIONS(1631), + [anon_sym_loop] = ACTIONS(1631), + [anon_sym_make] = ACTIONS(1631), + [anon_sym_while] = ACTIONS(1631), + [anon_sym_do] = ACTIONS(1631), + [anon_sym_if] = ACTIONS(1631), + [anon_sym_else] = ACTIONS(1631), + [anon_sym_match] = ACTIONS(1631), + [anon_sym_RBRACE] = ACTIONS(1633), + [anon_sym_try] = ACTIONS(1631), + [anon_sym_catch] = ACTIONS(1631), + [anon_sym_return] = ACTIONS(1631), + [anon_sym_source] = ACTIONS(1631), + [anon_sym_source_DASHenv] = ACTIONS(1631), + [anon_sym_register] = ACTIONS(1631), + [anon_sym_hide] = ACTIONS(1631), + [anon_sym_hide_DASHenv] = ACTIONS(1631), + [anon_sym_overlay] = ACTIONS(1631), + [anon_sym_new] = ACTIONS(1631), + [anon_sym_as] = ACTIONS(1631), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1633), + [anon_sym_DOT_DOT2] = ACTIONS(1631), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1633), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1633), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1633), + [aux_sym__val_number_decimal_token1] = ACTIONS(1631), + [aux_sym__val_number_decimal_token2] = ACTIONS(1633), + [aux_sym__val_number_decimal_token3] = ACTIONS(1633), + [aux_sym__val_number_decimal_token4] = ACTIONS(1633), + [aux_sym__val_number_token1] = ACTIONS(1633), + [aux_sym__val_number_token2] = ACTIONS(1633), + [aux_sym__val_number_token3] = ACTIONS(1633), + [anon_sym_DQUOTE] = ACTIONS(1633), + [sym__str_single_quotes] = ACTIONS(1633), + [sym__str_back_ticks] = ACTIONS(1633), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1631), + [anon_sym_POUND] = ACTIONS(247), }, [452] = { [sym_comment] = STATE(452), - [anon_sym_export] = ACTIONS(1721), - [anon_sym_alias] = ACTIONS(1721), - [anon_sym_let] = ACTIONS(1721), - [anon_sym_let_DASHenv] = ACTIONS(1721), - [anon_sym_mut] = ACTIONS(1721), - [anon_sym_const] = ACTIONS(1721), - [aux_sym_cmd_identifier_token1] = ACTIONS(1721), - [aux_sym_cmd_identifier_token2] = ACTIONS(1721), - [aux_sym_cmd_identifier_token3] = ACTIONS(1721), - [aux_sym_cmd_identifier_token4] = ACTIONS(1721), - [aux_sym_cmd_identifier_token5] = ACTIONS(1721), - [aux_sym_cmd_identifier_token6] = ACTIONS(1721), - [aux_sym_cmd_identifier_token7] = ACTIONS(1721), - [aux_sym_cmd_identifier_token8] = ACTIONS(1721), - [aux_sym_cmd_identifier_token9] = ACTIONS(1721), - [aux_sym_cmd_identifier_token10] = ACTIONS(1721), - [aux_sym_cmd_identifier_token11] = ACTIONS(1721), - [aux_sym_cmd_identifier_token12] = ACTIONS(1721), - [aux_sym_cmd_identifier_token13] = ACTIONS(1721), - [aux_sym_cmd_identifier_token14] = ACTIONS(1721), - [aux_sym_cmd_identifier_token15] = ACTIONS(1721), - [aux_sym_cmd_identifier_token16] = ACTIONS(1721), - [aux_sym_cmd_identifier_token17] = ACTIONS(1721), - [aux_sym_cmd_identifier_token18] = ACTIONS(1721), - [aux_sym_cmd_identifier_token19] = ACTIONS(1721), - [aux_sym_cmd_identifier_token20] = ACTIONS(1721), - [aux_sym_cmd_identifier_token21] = ACTIONS(1721), - [aux_sym_cmd_identifier_token22] = ACTIONS(1721), - [aux_sym_cmd_identifier_token23] = ACTIONS(1721), - [aux_sym_cmd_identifier_token24] = ACTIONS(1721), - [aux_sym_cmd_identifier_token25] = ACTIONS(1721), - [aux_sym_cmd_identifier_token26] = ACTIONS(1721), - [aux_sym_cmd_identifier_token27] = ACTIONS(1721), - [aux_sym_cmd_identifier_token28] = ACTIONS(1721), - [aux_sym_cmd_identifier_token29] = ACTIONS(1721), - [aux_sym_cmd_identifier_token30] = ACTIONS(1721), - [aux_sym_cmd_identifier_token31] = ACTIONS(1721), - [aux_sym_cmd_identifier_token32] = ACTIONS(1721), - [aux_sym_cmd_identifier_token33] = ACTIONS(1721), - [aux_sym_cmd_identifier_token34] = ACTIONS(1721), - [aux_sym_cmd_identifier_token35] = ACTIONS(1721), - [aux_sym_cmd_identifier_token36] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_null] = ACTIONS(1721), - [aux_sym_cmd_identifier_token38] = ACTIONS(1721), - [aux_sym_cmd_identifier_token39] = ACTIONS(1721), - [aux_sym_cmd_identifier_token40] = ACTIONS(1721), - [anon_sym_def] = ACTIONS(1721), - [anon_sym_export_DASHenv] = ACTIONS(1721), - [anon_sym_extern] = ACTIONS(1721), - [anon_sym_module] = ACTIONS(1721), - [anon_sym_use] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1721), - [anon_sym_error] = ACTIONS(1721), - [anon_sym_list] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_break] = ACTIONS(1721), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_for] = ACTIONS(1721), - [anon_sym_in] = ACTIONS(1721), - [anon_sym_loop] = ACTIONS(1721), - [anon_sym_make] = ACTIONS(1721), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_do] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_else] = ACTIONS(1721), - [anon_sym_match] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_try] = ACTIONS(1721), - [anon_sym_catch] = ACTIONS(1721), - [anon_sym_return] = ACTIONS(1721), - [anon_sym_source] = ACTIONS(1721), - [anon_sym_source_DASHenv] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1721), - [anon_sym_hide] = ACTIONS(1721), - [anon_sym_hide_DASHenv] = ACTIONS(1721), - [anon_sym_overlay] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1721), - [anon_sym_as] = ACTIONS(1721), - [anon_sym_LPAREN2] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1721), - [aux_sym__val_number_decimal_token3] = ACTIONS(1721), - [aux_sym__val_number_decimal_token4] = ACTIONS(1721), - [aux_sym__val_number_token1] = ACTIONS(1721), - [aux_sym__val_number_token2] = ACTIONS(1721), - [aux_sym__val_number_token3] = ACTIONS(1721), - [anon_sym_DQUOTE] = ACTIONS(1721), - [sym__str_single_quotes] = ACTIONS(1721), - [sym__str_back_ticks] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1721), - [sym__entry_separator] = ACTIONS(1723), - [anon_sym_PLUS] = ACTIONS(1721), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1705), + [anon_sym_alias] = ACTIONS(1705), + [anon_sym_let] = ACTIONS(1705), + [anon_sym_let_DASHenv] = ACTIONS(1705), + [anon_sym_mut] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [aux_sym_cmd_identifier_token1] = ACTIONS(1705), + [aux_sym_cmd_identifier_token2] = ACTIONS(1705), + [aux_sym_cmd_identifier_token3] = ACTIONS(1705), + [aux_sym_cmd_identifier_token4] = ACTIONS(1705), + [aux_sym_cmd_identifier_token5] = ACTIONS(1705), + [aux_sym_cmd_identifier_token6] = ACTIONS(1705), + [aux_sym_cmd_identifier_token7] = ACTIONS(1705), + [aux_sym_cmd_identifier_token8] = ACTIONS(1705), + [aux_sym_cmd_identifier_token9] = ACTIONS(1705), + [aux_sym_cmd_identifier_token10] = ACTIONS(1705), + [aux_sym_cmd_identifier_token11] = ACTIONS(1705), + [aux_sym_cmd_identifier_token12] = ACTIONS(1705), + [aux_sym_cmd_identifier_token13] = ACTIONS(1705), + [aux_sym_cmd_identifier_token14] = ACTIONS(1705), + [aux_sym_cmd_identifier_token15] = ACTIONS(1705), + [aux_sym_cmd_identifier_token16] = ACTIONS(1705), + [aux_sym_cmd_identifier_token17] = ACTIONS(1705), + [aux_sym_cmd_identifier_token18] = ACTIONS(1705), + [aux_sym_cmd_identifier_token19] = ACTIONS(1705), + [aux_sym_cmd_identifier_token20] = ACTIONS(1705), + [aux_sym_cmd_identifier_token21] = ACTIONS(1705), + [aux_sym_cmd_identifier_token22] = ACTIONS(1705), + [aux_sym_cmd_identifier_token23] = ACTIONS(1705), + [aux_sym_cmd_identifier_token24] = ACTIONS(1705), + [aux_sym_cmd_identifier_token25] = ACTIONS(1705), + [aux_sym_cmd_identifier_token26] = ACTIONS(1705), + [aux_sym_cmd_identifier_token27] = ACTIONS(1705), + [aux_sym_cmd_identifier_token28] = ACTIONS(1705), + [aux_sym_cmd_identifier_token29] = ACTIONS(1705), + [aux_sym_cmd_identifier_token30] = ACTIONS(1705), + [aux_sym_cmd_identifier_token31] = ACTIONS(1705), + [aux_sym_cmd_identifier_token32] = ACTIONS(1705), + [aux_sym_cmd_identifier_token33] = ACTIONS(1705), + [aux_sym_cmd_identifier_token34] = ACTIONS(1705), + [aux_sym_cmd_identifier_token35] = ACTIONS(1705), + [aux_sym_cmd_identifier_token36] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1707), + [anon_sym_false] = ACTIONS(1707), + [anon_sym_null] = ACTIONS(1707), + [aux_sym_cmd_identifier_token38] = ACTIONS(1705), + [aux_sym_cmd_identifier_token39] = ACTIONS(1707), + [aux_sym_cmd_identifier_token40] = ACTIONS(1707), + [anon_sym_def] = ACTIONS(1705), + [anon_sym_export_DASHenv] = ACTIONS(1705), + [anon_sym_extern] = ACTIONS(1705), + [anon_sym_module] = ACTIONS(1705), + [anon_sym_use] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1707), + [anon_sym_DOLLAR] = ACTIONS(1707), + [anon_sym_error] = ACTIONS(1705), + [anon_sym_list] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_break] = ACTIONS(1705), + [anon_sym_continue] = ACTIONS(1705), + [anon_sym_for] = ACTIONS(1705), + [anon_sym_in] = ACTIONS(1705), + [anon_sym_loop] = ACTIONS(1705), + [anon_sym_make] = ACTIONS(1705), + [anon_sym_while] = ACTIONS(1705), + [anon_sym_do] = ACTIONS(1705), + [anon_sym_if] = ACTIONS(1705), + [anon_sym_else] = ACTIONS(1705), + [anon_sym_match] = ACTIONS(1705), + [anon_sym_RBRACE] = ACTIONS(1707), + [anon_sym_try] = ACTIONS(1705), + [anon_sym_catch] = ACTIONS(1705), + [anon_sym_return] = ACTIONS(1705), + [anon_sym_source] = ACTIONS(1705), + [anon_sym_source_DASHenv] = ACTIONS(1705), + [anon_sym_register] = ACTIONS(1705), + [anon_sym_hide] = ACTIONS(1705), + [anon_sym_hide_DASHenv] = ACTIONS(1705), + [anon_sym_overlay] = ACTIONS(1705), + [anon_sym_new] = ACTIONS(1705), + [anon_sym_as] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1707), + [anon_sym_DOT_DOT2] = ACTIONS(1705), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1707), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1707), + [aux_sym__val_number_decimal_token1] = ACTIONS(1705), + [aux_sym__val_number_decimal_token2] = ACTIONS(1707), + [aux_sym__val_number_decimal_token3] = ACTIONS(1707), + [aux_sym__val_number_decimal_token4] = ACTIONS(1707), + [aux_sym__val_number_token1] = ACTIONS(1707), + [aux_sym__val_number_token2] = ACTIONS(1707), + [aux_sym__val_number_token3] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1707), + [sym__str_single_quotes] = ACTIONS(1707), + [sym__str_back_ticks] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_POUND] = ACTIONS(247), }, [453] = { [sym_comment] = STATE(453), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_alias] = ACTIONS(1569), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_let_DASHenv] = ACTIONS(1569), - [anon_sym_mut] = ACTIONS(1569), - [anon_sym_const] = ACTIONS(1569), - [aux_sym_cmd_identifier_token1] = ACTIONS(1569), - [aux_sym_cmd_identifier_token2] = ACTIONS(1569), - [aux_sym_cmd_identifier_token3] = ACTIONS(1569), - [aux_sym_cmd_identifier_token4] = ACTIONS(1569), - [aux_sym_cmd_identifier_token5] = ACTIONS(1569), - [aux_sym_cmd_identifier_token6] = ACTIONS(1569), - [aux_sym_cmd_identifier_token7] = ACTIONS(1569), - [aux_sym_cmd_identifier_token8] = ACTIONS(1569), - [aux_sym_cmd_identifier_token9] = ACTIONS(1569), - [aux_sym_cmd_identifier_token10] = ACTIONS(1569), - [aux_sym_cmd_identifier_token11] = ACTIONS(1569), - [aux_sym_cmd_identifier_token12] = ACTIONS(1569), - [aux_sym_cmd_identifier_token13] = ACTIONS(1569), - [aux_sym_cmd_identifier_token14] = ACTIONS(1569), - [aux_sym_cmd_identifier_token15] = ACTIONS(1569), - [aux_sym_cmd_identifier_token16] = ACTIONS(1569), - [aux_sym_cmd_identifier_token17] = ACTIONS(1569), - [aux_sym_cmd_identifier_token18] = ACTIONS(1569), - [aux_sym_cmd_identifier_token19] = ACTIONS(1569), - [aux_sym_cmd_identifier_token20] = ACTIONS(1569), - [aux_sym_cmd_identifier_token21] = ACTIONS(1569), - [aux_sym_cmd_identifier_token22] = ACTIONS(1569), - [aux_sym_cmd_identifier_token23] = ACTIONS(1569), - [aux_sym_cmd_identifier_token24] = ACTIONS(1569), - [aux_sym_cmd_identifier_token25] = ACTIONS(1569), - [aux_sym_cmd_identifier_token26] = ACTIONS(1569), - [aux_sym_cmd_identifier_token27] = ACTIONS(1569), - [aux_sym_cmd_identifier_token28] = ACTIONS(1569), - [aux_sym_cmd_identifier_token29] = ACTIONS(1569), - [aux_sym_cmd_identifier_token30] = ACTIONS(1569), - [aux_sym_cmd_identifier_token31] = ACTIONS(1569), - [aux_sym_cmd_identifier_token32] = ACTIONS(1569), - [aux_sym_cmd_identifier_token33] = ACTIONS(1569), - [aux_sym_cmd_identifier_token34] = ACTIONS(1569), - [aux_sym_cmd_identifier_token35] = ACTIONS(1569), - [aux_sym_cmd_identifier_token36] = ACTIONS(1569), - [anon_sym_true] = ACTIONS(1569), - [anon_sym_false] = ACTIONS(1569), - [anon_sym_null] = ACTIONS(1569), - [aux_sym_cmd_identifier_token38] = ACTIONS(1569), - [aux_sym_cmd_identifier_token39] = ACTIONS(1569), - [aux_sym_cmd_identifier_token40] = ACTIONS(1569), - [anon_sym_def] = ACTIONS(1569), - [anon_sym_export_DASHenv] = ACTIONS(1569), - [anon_sym_extern] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_use] = ACTIONS(1569), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_DOLLAR] = ACTIONS(1569), - [anon_sym_error] = ACTIONS(1569), - [anon_sym_list] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_break] = ACTIONS(1569), - [anon_sym_continue] = ACTIONS(1569), - [anon_sym_for] = ACTIONS(1569), - [anon_sym_in] = ACTIONS(1569), - [anon_sym_loop] = ACTIONS(1569), - [anon_sym_make] = ACTIONS(1569), - [anon_sym_while] = ACTIONS(1569), - [anon_sym_do] = ACTIONS(1569), - [anon_sym_if] = ACTIONS(1569), - [anon_sym_else] = ACTIONS(1569), - [anon_sym_match] = ACTIONS(1569), - [anon_sym_RBRACE] = ACTIONS(1569), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_catch] = ACTIONS(1569), - [anon_sym_return] = ACTIONS(1569), - [anon_sym_source] = ACTIONS(1569), - [anon_sym_source_DASHenv] = ACTIONS(1569), - [anon_sym_register] = ACTIONS(1569), - [anon_sym_hide] = ACTIONS(1569), - [anon_sym_hide_DASHenv] = ACTIONS(1569), - [anon_sym_overlay] = ACTIONS(1569), - [anon_sym_new] = ACTIONS(1569), - [anon_sym_as] = ACTIONS(1569), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1569), - [aux_sym__immediate_decimal_token1] = ACTIONS(2141), - [aux_sym__immediate_decimal_token2] = ACTIONS(2143), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1569), - [aux_sym__val_number_decimal_token1] = ACTIONS(1569), - [aux_sym__val_number_decimal_token2] = ACTIONS(1569), - [aux_sym__val_number_decimal_token3] = ACTIONS(1569), - [aux_sym__val_number_decimal_token4] = ACTIONS(1569), - [aux_sym__val_number_token1] = ACTIONS(1569), - [aux_sym__val_number_token2] = ACTIONS(1569), - [aux_sym__val_number_token3] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(1569), - [sym__str_single_quotes] = ACTIONS(1569), - [sym__str_back_ticks] = ACTIONS(1569), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1569), - [sym__entry_separator] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1755), + [anon_sym_alias] = ACTIONS(1755), + [anon_sym_let] = ACTIONS(1755), + [anon_sym_let_DASHenv] = ACTIONS(1755), + [anon_sym_mut] = ACTIONS(1755), + [anon_sym_const] = ACTIONS(1755), + [aux_sym_cmd_identifier_token1] = ACTIONS(1755), + [aux_sym_cmd_identifier_token2] = ACTIONS(1755), + [aux_sym_cmd_identifier_token3] = ACTIONS(1755), + [aux_sym_cmd_identifier_token4] = ACTIONS(1755), + [aux_sym_cmd_identifier_token5] = ACTIONS(1755), + [aux_sym_cmd_identifier_token6] = ACTIONS(1755), + [aux_sym_cmd_identifier_token7] = ACTIONS(1755), + [aux_sym_cmd_identifier_token8] = ACTIONS(1755), + [aux_sym_cmd_identifier_token9] = ACTIONS(1755), + [aux_sym_cmd_identifier_token10] = ACTIONS(1755), + [aux_sym_cmd_identifier_token11] = ACTIONS(1755), + [aux_sym_cmd_identifier_token12] = ACTIONS(1755), + [aux_sym_cmd_identifier_token13] = ACTIONS(1755), + [aux_sym_cmd_identifier_token14] = ACTIONS(1755), + [aux_sym_cmd_identifier_token15] = ACTIONS(1755), + [aux_sym_cmd_identifier_token16] = ACTIONS(1755), + [aux_sym_cmd_identifier_token17] = ACTIONS(1755), + [aux_sym_cmd_identifier_token18] = ACTIONS(1755), + [aux_sym_cmd_identifier_token19] = ACTIONS(1755), + [aux_sym_cmd_identifier_token20] = ACTIONS(1755), + [aux_sym_cmd_identifier_token21] = ACTIONS(1755), + [aux_sym_cmd_identifier_token22] = ACTIONS(1755), + [aux_sym_cmd_identifier_token23] = ACTIONS(1755), + [aux_sym_cmd_identifier_token24] = ACTIONS(1755), + [aux_sym_cmd_identifier_token25] = ACTIONS(1755), + [aux_sym_cmd_identifier_token26] = ACTIONS(1755), + [aux_sym_cmd_identifier_token27] = ACTIONS(1755), + [aux_sym_cmd_identifier_token28] = ACTIONS(1755), + [aux_sym_cmd_identifier_token29] = ACTIONS(1755), + [aux_sym_cmd_identifier_token30] = ACTIONS(1755), + [aux_sym_cmd_identifier_token31] = ACTIONS(1755), + [aux_sym_cmd_identifier_token32] = ACTIONS(1755), + [aux_sym_cmd_identifier_token33] = ACTIONS(1755), + [aux_sym_cmd_identifier_token34] = ACTIONS(1755), + [aux_sym_cmd_identifier_token35] = ACTIONS(1755), + [aux_sym_cmd_identifier_token36] = ACTIONS(1755), + [anon_sym_true] = ACTIONS(1757), + [anon_sym_false] = ACTIONS(1757), + [anon_sym_null] = ACTIONS(1757), + [aux_sym_cmd_identifier_token38] = ACTIONS(1755), + [aux_sym_cmd_identifier_token39] = ACTIONS(1757), + [aux_sym_cmd_identifier_token40] = ACTIONS(1757), + [anon_sym_def] = ACTIONS(1755), + [anon_sym_export_DASHenv] = ACTIONS(1755), + [anon_sym_extern] = ACTIONS(1755), + [anon_sym_module] = ACTIONS(1755), + [anon_sym_use] = ACTIONS(1755), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_DOLLAR] = ACTIONS(1757), + [anon_sym_error] = ACTIONS(1755), + [anon_sym_list] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_in] = ACTIONS(1755), + [anon_sym_loop] = ACTIONS(1755), + [anon_sym_make] = ACTIONS(1755), + [anon_sym_while] = ACTIONS(1755), + [anon_sym_do] = ACTIONS(1755), + [anon_sym_if] = ACTIONS(1755), + [anon_sym_else] = ACTIONS(1755), + [anon_sym_match] = ACTIONS(1755), + [anon_sym_RBRACE] = ACTIONS(1757), + [anon_sym_try] = ACTIONS(1755), + [anon_sym_catch] = ACTIONS(1755), + [anon_sym_return] = ACTIONS(1755), + [anon_sym_source] = ACTIONS(1755), + [anon_sym_source_DASHenv] = ACTIONS(1755), + [anon_sym_register] = ACTIONS(1755), + [anon_sym_hide] = ACTIONS(1755), + [anon_sym_hide_DASHenv] = ACTIONS(1755), + [anon_sym_overlay] = ACTIONS(1755), + [anon_sym_new] = ACTIONS(1755), + [anon_sym_as] = ACTIONS(1755), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), + [anon_sym_DOT_DOT2] = ACTIONS(1755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1757), + [aux_sym__val_number_decimal_token1] = ACTIONS(1755), + [aux_sym__val_number_decimal_token2] = ACTIONS(1757), + [aux_sym__val_number_decimal_token3] = ACTIONS(1757), + [aux_sym__val_number_decimal_token4] = ACTIONS(1757), + [aux_sym__val_number_token1] = ACTIONS(1757), + [aux_sym__val_number_token2] = ACTIONS(1757), + [aux_sym__val_number_token3] = ACTIONS(1757), + [anon_sym_DQUOTE] = ACTIONS(1757), + [sym__str_single_quotes] = ACTIONS(1757), + [sym__str_back_ticks] = ACTIONS(1757), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_POUND] = ACTIONS(247), }, [454] = { + [sym__expr_parenthesized_immediate] = STATE(7795), [sym_comment] = STATE(454), - [anon_sym_export] = ACTIONS(1589), - [anon_sym_alias] = ACTIONS(1589), - [anon_sym_let] = ACTIONS(1589), - [anon_sym_let_DASHenv] = ACTIONS(1589), - [anon_sym_mut] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [aux_sym_cmd_identifier_token1] = ACTIONS(1589), - [aux_sym_cmd_identifier_token2] = ACTIONS(1589), - [aux_sym_cmd_identifier_token3] = ACTIONS(1589), - [aux_sym_cmd_identifier_token4] = ACTIONS(1589), - [aux_sym_cmd_identifier_token5] = ACTIONS(1589), - [aux_sym_cmd_identifier_token6] = ACTIONS(1589), - [aux_sym_cmd_identifier_token7] = ACTIONS(1589), - [aux_sym_cmd_identifier_token8] = ACTIONS(1589), - [aux_sym_cmd_identifier_token9] = ACTIONS(1589), - [aux_sym_cmd_identifier_token10] = ACTIONS(1589), - [aux_sym_cmd_identifier_token11] = ACTIONS(1589), - [aux_sym_cmd_identifier_token12] = ACTIONS(1589), - [aux_sym_cmd_identifier_token13] = ACTIONS(1589), - [aux_sym_cmd_identifier_token14] = ACTIONS(1589), - [aux_sym_cmd_identifier_token15] = ACTIONS(1589), - [aux_sym_cmd_identifier_token16] = ACTIONS(1589), - [aux_sym_cmd_identifier_token17] = ACTIONS(1589), - [aux_sym_cmd_identifier_token18] = ACTIONS(1589), - [aux_sym_cmd_identifier_token19] = ACTIONS(1589), - [aux_sym_cmd_identifier_token20] = ACTIONS(1589), - [aux_sym_cmd_identifier_token21] = ACTIONS(1589), - [aux_sym_cmd_identifier_token22] = ACTIONS(1589), - [aux_sym_cmd_identifier_token23] = ACTIONS(1589), - [aux_sym_cmd_identifier_token24] = ACTIONS(1589), - [aux_sym_cmd_identifier_token25] = ACTIONS(1589), - [aux_sym_cmd_identifier_token26] = ACTIONS(1589), - [aux_sym_cmd_identifier_token27] = ACTIONS(1589), - [aux_sym_cmd_identifier_token28] = ACTIONS(1589), - [aux_sym_cmd_identifier_token29] = ACTIONS(1589), - [aux_sym_cmd_identifier_token30] = ACTIONS(1589), - [aux_sym_cmd_identifier_token31] = ACTIONS(1589), - [aux_sym_cmd_identifier_token32] = ACTIONS(1589), - [aux_sym_cmd_identifier_token33] = ACTIONS(1589), - [aux_sym_cmd_identifier_token34] = ACTIONS(1589), - [aux_sym_cmd_identifier_token35] = ACTIONS(1589), - [aux_sym_cmd_identifier_token36] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1589), - [anon_sym_false] = ACTIONS(1589), - [anon_sym_null] = ACTIONS(1589), - [aux_sym_cmd_identifier_token38] = ACTIONS(1589), - [aux_sym_cmd_identifier_token39] = ACTIONS(1589), - [aux_sym_cmd_identifier_token40] = ACTIONS(1589), - [anon_sym_def] = ACTIONS(1589), - [anon_sym_export_DASHenv] = ACTIONS(1589), - [anon_sym_extern] = ACTIONS(1589), - [anon_sym_module] = ACTIONS(1589), - [anon_sym_use] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_error] = ACTIONS(1589), - [anon_sym_list] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_loop] = ACTIONS(1589), - [anon_sym_make] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_else] = ACTIONS(1589), - [anon_sym_match] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1589), - [anon_sym_try] = ACTIONS(1589), - [anon_sym_catch] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_source] = ACTIONS(1589), - [anon_sym_source_DASHenv] = ACTIONS(1589), - [anon_sym_register] = ACTIONS(1589), - [anon_sym_hide] = ACTIONS(1589), - [anon_sym_hide_DASHenv] = ACTIONS(1589), - [anon_sym_overlay] = ACTIONS(1589), - [anon_sym_new] = ACTIONS(1589), - [anon_sym_as] = ACTIONS(1589), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1589), - [anon_sym_DOT] = ACTIONS(2145), - [aux_sym__immediate_decimal_token2] = ACTIONS(2147), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1589), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1589), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1589), - [aux_sym__val_number_token1] = ACTIONS(1589), - [aux_sym__val_number_token2] = ACTIONS(1589), - [aux_sym__val_number_token3] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [sym__str_single_quotes] = ACTIONS(1589), - [sym__str_back_ticks] = ACTIONS(1589), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1589), - [sym__entry_separator] = ACTIONS(1591), - [anon_sym_PLUS] = ACTIONS(1589), + [anon_sym_export] = ACTIONS(2273), + [anon_sym_alias] = ACTIONS(2273), + [anon_sym_let] = ACTIONS(2273), + [anon_sym_let_DASHenv] = ACTIONS(2273), + [anon_sym_mut] = ACTIONS(2273), + [anon_sym_const] = ACTIONS(2273), + [aux_sym_cmd_identifier_token1] = ACTIONS(2273), + [aux_sym_cmd_identifier_token2] = ACTIONS(2273), + [aux_sym_cmd_identifier_token3] = ACTIONS(2273), + [aux_sym_cmd_identifier_token4] = ACTIONS(2273), + [aux_sym_cmd_identifier_token5] = ACTIONS(2273), + [aux_sym_cmd_identifier_token6] = ACTIONS(2273), + [aux_sym_cmd_identifier_token7] = ACTIONS(2273), + [aux_sym_cmd_identifier_token8] = ACTIONS(2273), + [aux_sym_cmd_identifier_token9] = ACTIONS(2273), + [aux_sym_cmd_identifier_token10] = ACTIONS(2273), + [aux_sym_cmd_identifier_token11] = ACTIONS(2273), + [aux_sym_cmd_identifier_token12] = ACTIONS(2273), + [aux_sym_cmd_identifier_token13] = ACTIONS(2273), + [aux_sym_cmd_identifier_token14] = ACTIONS(2273), + [aux_sym_cmd_identifier_token15] = ACTIONS(2273), + [aux_sym_cmd_identifier_token16] = ACTIONS(2273), + [aux_sym_cmd_identifier_token17] = ACTIONS(2273), + [aux_sym_cmd_identifier_token18] = ACTIONS(2273), + [aux_sym_cmd_identifier_token19] = ACTIONS(2273), + [aux_sym_cmd_identifier_token20] = ACTIONS(2273), + [aux_sym_cmd_identifier_token21] = ACTIONS(2273), + [aux_sym_cmd_identifier_token22] = ACTIONS(2273), + [aux_sym_cmd_identifier_token23] = ACTIONS(2273), + [aux_sym_cmd_identifier_token24] = ACTIONS(2273), + [aux_sym_cmd_identifier_token25] = ACTIONS(2273), + [aux_sym_cmd_identifier_token26] = ACTIONS(2273), + [aux_sym_cmd_identifier_token27] = ACTIONS(2273), + [aux_sym_cmd_identifier_token28] = ACTIONS(2273), + [aux_sym_cmd_identifier_token29] = ACTIONS(2273), + [aux_sym_cmd_identifier_token30] = ACTIONS(2273), + [aux_sym_cmd_identifier_token31] = ACTIONS(2273), + [aux_sym_cmd_identifier_token32] = ACTIONS(2273), + [aux_sym_cmd_identifier_token33] = ACTIONS(2273), + [aux_sym_cmd_identifier_token34] = ACTIONS(2273), + [aux_sym_cmd_identifier_token35] = ACTIONS(2273), + [aux_sym_cmd_identifier_token36] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(2273), + [anon_sym_false] = ACTIONS(2273), + [anon_sym_null] = ACTIONS(2273), + [aux_sym_cmd_identifier_token38] = ACTIONS(2273), + [aux_sym_cmd_identifier_token39] = ACTIONS(2273), + [aux_sym_cmd_identifier_token40] = ACTIONS(2273), + [anon_sym_def] = ACTIONS(2273), + [anon_sym_export_DASHenv] = ACTIONS(2273), + [anon_sym_extern] = ACTIONS(2273), + [anon_sym_module] = ACTIONS(2273), + [anon_sym_use] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2273), + [anon_sym_DOLLAR] = ACTIONS(2273), + [anon_sym_error] = ACTIONS(2273), + [anon_sym_list] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_break] = ACTIONS(2273), + [anon_sym_continue] = ACTIONS(2273), + [anon_sym_for] = ACTIONS(2273), + [anon_sym_in] = ACTIONS(2273), + [anon_sym_loop] = ACTIONS(2273), + [anon_sym_make] = ACTIONS(2273), + [anon_sym_while] = ACTIONS(2273), + [anon_sym_do] = ACTIONS(2273), + [anon_sym_if] = ACTIONS(2273), + [anon_sym_else] = ACTIONS(2273), + [anon_sym_match] = ACTIONS(2273), + [anon_sym_RBRACE] = ACTIONS(2273), + [anon_sym_try] = ACTIONS(2273), + [anon_sym_catch] = ACTIONS(2273), + [anon_sym_return] = ACTIONS(2273), + [anon_sym_source] = ACTIONS(2273), + [anon_sym_source_DASHenv] = ACTIONS(2273), + [anon_sym_register] = ACTIONS(2273), + [anon_sym_hide] = ACTIONS(2273), + [anon_sym_hide_DASHenv] = ACTIONS(2273), + [anon_sym_overlay] = ACTIONS(2273), + [anon_sym_new] = ACTIONS(2273), + [anon_sym_as] = ACTIONS(2273), + [anon_sym_LPAREN2] = ACTIONS(1577), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2273), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2273), + [aux_sym__val_number_decimal_token1] = ACTIONS(2273), + [aux_sym__val_number_decimal_token2] = ACTIONS(2273), + [aux_sym__val_number_decimal_token3] = ACTIONS(2273), + [aux_sym__val_number_decimal_token4] = ACTIONS(2273), + [aux_sym__val_number_token1] = ACTIONS(2273), + [aux_sym__val_number_token2] = ACTIONS(2273), + [aux_sym__val_number_token3] = ACTIONS(2273), + [anon_sym_DQUOTE] = ACTIONS(2273), + [sym__str_single_quotes] = ACTIONS(2273), + [sym__str_back_ticks] = ACTIONS(2273), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2273), + [sym__entry_separator] = ACTIONS(2275), + [anon_sym_PLUS] = ACTIONS(2273), [anon_sym_POUND] = ACTIONS(3), }, [455] = { + [sym__expr_parenthesized_immediate] = STATE(7795), [sym_comment] = STATE(455), - [anon_sym_export] = ACTIONS(1982), - [anon_sym_alias] = ACTIONS(1982), - [anon_sym_let] = ACTIONS(1982), - [anon_sym_let_DASHenv] = ACTIONS(1982), - [anon_sym_mut] = ACTIONS(1982), - [anon_sym_const] = ACTIONS(1982), - [aux_sym_cmd_identifier_token1] = ACTIONS(1982), - [aux_sym_cmd_identifier_token2] = ACTIONS(1982), - [aux_sym_cmd_identifier_token3] = ACTIONS(1982), - [aux_sym_cmd_identifier_token4] = ACTIONS(1982), - [aux_sym_cmd_identifier_token5] = ACTIONS(1982), - [aux_sym_cmd_identifier_token6] = ACTIONS(1982), - [aux_sym_cmd_identifier_token7] = ACTIONS(1982), - [aux_sym_cmd_identifier_token8] = ACTIONS(1982), - [aux_sym_cmd_identifier_token9] = ACTIONS(1982), - [aux_sym_cmd_identifier_token10] = ACTIONS(1982), - [aux_sym_cmd_identifier_token11] = ACTIONS(1982), - [aux_sym_cmd_identifier_token12] = ACTIONS(1982), - [aux_sym_cmd_identifier_token13] = ACTIONS(1982), - [aux_sym_cmd_identifier_token14] = ACTIONS(1982), - [aux_sym_cmd_identifier_token15] = ACTIONS(1982), - [aux_sym_cmd_identifier_token16] = ACTIONS(1982), - [aux_sym_cmd_identifier_token17] = ACTIONS(1982), - [aux_sym_cmd_identifier_token18] = ACTIONS(1982), - [aux_sym_cmd_identifier_token19] = ACTIONS(1982), - [aux_sym_cmd_identifier_token20] = ACTIONS(1982), - [aux_sym_cmd_identifier_token21] = ACTIONS(1982), - [aux_sym_cmd_identifier_token22] = ACTIONS(1982), - [aux_sym_cmd_identifier_token23] = ACTIONS(1982), - [aux_sym_cmd_identifier_token24] = ACTIONS(1982), - [aux_sym_cmd_identifier_token25] = ACTIONS(1982), - [aux_sym_cmd_identifier_token26] = ACTIONS(1982), - [aux_sym_cmd_identifier_token27] = ACTIONS(1982), - [aux_sym_cmd_identifier_token28] = ACTIONS(1982), - [aux_sym_cmd_identifier_token29] = ACTIONS(1982), - [aux_sym_cmd_identifier_token30] = ACTIONS(1982), - [aux_sym_cmd_identifier_token31] = ACTIONS(1982), - [aux_sym_cmd_identifier_token32] = ACTIONS(1982), - [aux_sym_cmd_identifier_token33] = ACTIONS(1982), - [aux_sym_cmd_identifier_token34] = ACTIONS(1982), - [aux_sym_cmd_identifier_token35] = ACTIONS(1982), - [aux_sym_cmd_identifier_token36] = ACTIONS(1982), - [anon_sym_true] = ACTIONS(1984), - [anon_sym_false] = ACTIONS(1984), - [anon_sym_null] = ACTIONS(1984), - [aux_sym_cmd_identifier_token38] = ACTIONS(1982), - [aux_sym_cmd_identifier_token39] = ACTIONS(1984), - [aux_sym_cmd_identifier_token40] = ACTIONS(1984), - [anon_sym_def] = ACTIONS(1982), - [anon_sym_export_DASHenv] = ACTIONS(1982), - [anon_sym_extern] = ACTIONS(1982), - [anon_sym_module] = ACTIONS(1982), - [anon_sym_use] = ACTIONS(1982), - [anon_sym_LPAREN] = ACTIONS(1984), - [anon_sym_DOLLAR] = ACTIONS(1984), - [anon_sym_error] = ACTIONS(1982), - [anon_sym_list] = ACTIONS(1982), - [anon_sym_DASH] = ACTIONS(1982), - [anon_sym_break] = ACTIONS(1982), - [anon_sym_continue] = ACTIONS(1982), - [anon_sym_for] = ACTIONS(1982), - [anon_sym_in] = ACTIONS(1982), - [anon_sym_loop] = ACTIONS(1982), - [anon_sym_make] = ACTIONS(1982), - [anon_sym_while] = ACTIONS(1982), - [anon_sym_do] = ACTIONS(1982), - [anon_sym_if] = ACTIONS(1982), - [anon_sym_else] = ACTIONS(1982), - [anon_sym_match] = ACTIONS(1982), - [anon_sym_RBRACE] = ACTIONS(1984), - [anon_sym_try] = ACTIONS(1982), - [anon_sym_catch] = ACTIONS(1982), - [anon_sym_return] = ACTIONS(1982), - [anon_sym_source] = ACTIONS(1982), - [anon_sym_source_DASHenv] = ACTIONS(1982), - [anon_sym_register] = ACTIONS(1982), - [anon_sym_hide] = ACTIONS(1982), - [anon_sym_hide_DASHenv] = ACTIONS(1982), - [anon_sym_overlay] = ACTIONS(1982), - [anon_sym_new] = ACTIONS(1982), - [anon_sym_as] = ACTIONS(1982), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1984), - [anon_sym_DOT_DOT2] = ACTIONS(1982), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1984), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1984), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1984), - [aux_sym__val_number_decimal_token1] = ACTIONS(1982), - [aux_sym__val_number_decimal_token2] = ACTIONS(1984), - [aux_sym__val_number_decimal_token3] = ACTIONS(1984), - [aux_sym__val_number_decimal_token4] = ACTIONS(1984), - [aux_sym__val_number_token1] = ACTIONS(1984), - [aux_sym__val_number_token2] = ACTIONS(1984), - [aux_sym__val_number_token3] = ACTIONS(1984), - [anon_sym_DQUOTE] = ACTIONS(1984), - [sym__str_single_quotes] = ACTIONS(1984), - [sym__str_back_ticks] = ACTIONS(1984), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1984), - [anon_sym_PLUS] = ACTIONS(1982), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(2277), + [anon_sym_alias] = ACTIONS(2277), + [anon_sym_let] = ACTIONS(2277), + [anon_sym_let_DASHenv] = ACTIONS(2277), + [anon_sym_mut] = ACTIONS(2277), + [anon_sym_const] = ACTIONS(2277), + [aux_sym_cmd_identifier_token1] = ACTIONS(2277), + [aux_sym_cmd_identifier_token2] = ACTIONS(2277), + [aux_sym_cmd_identifier_token3] = ACTIONS(2277), + [aux_sym_cmd_identifier_token4] = ACTIONS(2277), + [aux_sym_cmd_identifier_token5] = ACTIONS(2277), + [aux_sym_cmd_identifier_token6] = ACTIONS(2277), + [aux_sym_cmd_identifier_token7] = ACTIONS(2277), + [aux_sym_cmd_identifier_token8] = ACTIONS(2277), + [aux_sym_cmd_identifier_token9] = ACTIONS(2277), + [aux_sym_cmd_identifier_token10] = ACTIONS(2277), + [aux_sym_cmd_identifier_token11] = ACTIONS(2277), + [aux_sym_cmd_identifier_token12] = ACTIONS(2277), + [aux_sym_cmd_identifier_token13] = ACTIONS(2277), + [aux_sym_cmd_identifier_token14] = ACTIONS(2277), + [aux_sym_cmd_identifier_token15] = ACTIONS(2277), + [aux_sym_cmd_identifier_token16] = ACTIONS(2277), + [aux_sym_cmd_identifier_token17] = ACTIONS(2277), + [aux_sym_cmd_identifier_token18] = ACTIONS(2277), + [aux_sym_cmd_identifier_token19] = ACTIONS(2277), + [aux_sym_cmd_identifier_token20] = ACTIONS(2277), + [aux_sym_cmd_identifier_token21] = ACTIONS(2277), + [aux_sym_cmd_identifier_token22] = ACTIONS(2277), + [aux_sym_cmd_identifier_token23] = ACTIONS(2277), + [aux_sym_cmd_identifier_token24] = ACTIONS(2277), + [aux_sym_cmd_identifier_token25] = ACTIONS(2277), + [aux_sym_cmd_identifier_token26] = ACTIONS(2277), + [aux_sym_cmd_identifier_token27] = ACTIONS(2277), + [aux_sym_cmd_identifier_token28] = ACTIONS(2277), + [aux_sym_cmd_identifier_token29] = ACTIONS(2277), + [aux_sym_cmd_identifier_token30] = ACTIONS(2277), + [aux_sym_cmd_identifier_token31] = ACTIONS(2277), + [aux_sym_cmd_identifier_token32] = ACTIONS(2277), + [aux_sym_cmd_identifier_token33] = ACTIONS(2277), + [aux_sym_cmd_identifier_token34] = ACTIONS(2277), + [aux_sym_cmd_identifier_token35] = ACTIONS(2277), + [aux_sym_cmd_identifier_token36] = ACTIONS(2277), + [anon_sym_true] = ACTIONS(2277), + [anon_sym_false] = ACTIONS(2277), + [anon_sym_null] = ACTIONS(2277), + [aux_sym_cmd_identifier_token38] = ACTIONS(2277), + [aux_sym_cmd_identifier_token39] = ACTIONS(2277), + [aux_sym_cmd_identifier_token40] = ACTIONS(2277), + [anon_sym_def] = ACTIONS(2277), + [anon_sym_export_DASHenv] = ACTIONS(2277), + [anon_sym_extern] = ACTIONS(2277), + [anon_sym_module] = ACTIONS(2277), + [anon_sym_use] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(2277), + [anon_sym_DOLLAR] = ACTIONS(2277), + [anon_sym_error] = ACTIONS(2277), + [anon_sym_list] = ACTIONS(2277), + [anon_sym_DASH] = ACTIONS(2277), + [anon_sym_break] = ACTIONS(2277), + [anon_sym_continue] = ACTIONS(2277), + [anon_sym_for] = ACTIONS(2277), + [anon_sym_in] = ACTIONS(2277), + [anon_sym_loop] = ACTIONS(2277), + [anon_sym_make] = ACTIONS(2277), + [anon_sym_while] = ACTIONS(2277), + [anon_sym_do] = ACTIONS(2277), + [anon_sym_if] = ACTIONS(2277), + [anon_sym_else] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_RBRACE] = ACTIONS(2277), + [anon_sym_try] = ACTIONS(2277), + [anon_sym_catch] = ACTIONS(2277), + [anon_sym_return] = ACTIONS(2277), + [anon_sym_source] = ACTIONS(2277), + [anon_sym_source_DASHenv] = ACTIONS(2277), + [anon_sym_register] = ACTIONS(2277), + [anon_sym_hide] = ACTIONS(2277), + [anon_sym_hide_DASHenv] = ACTIONS(2277), + [anon_sym_overlay] = ACTIONS(2277), + [anon_sym_new] = ACTIONS(2277), + [anon_sym_as] = ACTIONS(2277), + [anon_sym_LPAREN2] = ACTIONS(1577), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2277), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2277), + [aux_sym__val_number_decimal_token1] = ACTIONS(2277), + [aux_sym__val_number_decimal_token2] = ACTIONS(2277), + [aux_sym__val_number_decimal_token3] = ACTIONS(2277), + [aux_sym__val_number_decimal_token4] = ACTIONS(2277), + [aux_sym__val_number_token1] = ACTIONS(2277), + [aux_sym__val_number_token2] = ACTIONS(2277), + [aux_sym__val_number_token3] = ACTIONS(2277), + [anon_sym_DQUOTE] = ACTIONS(2277), + [sym__str_single_quotes] = ACTIONS(2277), + [sym__str_back_ticks] = ACTIONS(2277), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2277), + [sym__entry_separator] = ACTIONS(2279), + [anon_sym_PLUS] = ACTIONS(2277), + [anon_sym_POUND] = ACTIONS(3), }, [456] = { - [sym_expr_parenthesized] = STATE(4691), - [sym__spread_parenthesized] = STATE(5143), - [sym_val_range] = STATE(5187), - [sym__val_range] = STATE(7916), - [sym__val_range_with_end] = STATE(7587), - [sym__value] = STATE(5187), - [sym_val_nothing] = STATE(5122), - [sym_val_bool] = STATE(4803), - [sym__spread_variable] = STATE(5022), - [sym_val_variable] = STATE(4677), - [sym_val_number] = STATE(5122), - [sym__val_number_decimal] = STATE(4195), - [sym__val_number] = STATE(5127), - [sym_val_duration] = STATE(5122), - [sym_val_filesize] = STATE(5122), - [sym_val_binary] = STATE(5122), - [sym_val_string] = STATE(5122), - [sym__str_double_quotes] = STATE(4755), - [sym_val_interpolated] = STATE(5122), - [sym__inter_single_quotes] = STATE(5169), - [sym__inter_double_quotes] = STATE(5023), - [sym_val_list] = STATE(5122), - [sym__spread_list] = STATE(5143), - [sym_val_record] = STATE(5122), - [sym_val_table] = STATE(5122), - [sym_val_closure] = STATE(5122), - [sym__cmd_arg] = STATE(5025), - [sym_redirection] = STATE(5036), - [sym__flag] = STATE(5079), - [sym_short_flag] = STATE(5067), - [sym_long_flag] = STATE(5067), - [sym_unquoted] = STATE(4819), - [sym__unquoted_with_expr] = STATE(5026), - [sym__unquoted_anonymous_prefix] = STATE(7308), + [sym_expr_parenthesized] = STATE(4195), + [sym__spread_parenthesized] = STATE(4666), + [sym_val_range] = STATE(4668), + [sym__val_range] = STATE(7733), + [sym__val_range_with_end] = STATE(7391), + [sym__value] = STATE(4668), + [sym_val_nothing] = STATE(4607), + [sym_val_bool] = STATE(4396), + [sym__spread_variable] = STATE(4669), + [sym_val_variable] = STATE(4253), + [sym_val_number] = STATE(4607), + [sym__val_number_decimal] = STATE(3869), + [sym__val_number] = STATE(4724), + [sym_val_duration] = STATE(4607), + [sym_val_filesize] = STATE(4607), + [sym_val_binary] = STATE(4607), + [sym_val_string] = STATE(4607), + [sym__str_double_quotes] = STATE(4321), + [sym_val_interpolated] = STATE(4607), + [sym__inter_single_quotes] = STATE(4619), + [sym__inter_double_quotes] = STATE(4620), + [sym_val_list] = STATE(4607), + [sym__spread_list] = STATE(4666), + [sym_val_record] = STATE(4607), + [sym_val_table] = STATE(4607), + [sym_val_closure] = STATE(4607), + [sym__cmd_arg] = STATE(4920), + [sym_redirection] = STATE(4676), + [sym__flag] = STATE(4681), + [sym_short_flag] = STATE(4627), + [sym_long_flag] = STATE(4627), + [sym_unquoted] = STATE(4290), + [sym__unquoted_with_expr] = STATE(4687), + [sym__unquoted_anonymous_prefix] = STATE(6985), [sym_comment] = STATE(456), - [ts_builtin_sym_end] = ACTIONS(2012), - [anon_sym_true] = ACTIONS(2149), - [anon_sym_false] = ACTIONS(2149), - [anon_sym_null] = ACTIONS(2151), - [aux_sym_cmd_identifier_token38] = ACTIONS(2153), - [aux_sym_cmd_identifier_token39] = ACTIONS(2153), - [aux_sym_cmd_identifier_token40] = ACTIONS(2153), - [sym__newline] = ACTIONS(2010), - [sym__space] = ACTIONS(2012), - [anon_sym_SEMI] = ACTIONS(2010), - [anon_sym_PIPE] = ACTIONS(2010), - [anon_sym_err_GT_PIPE] = ACTIONS(2010), - [anon_sym_out_GT_PIPE] = ACTIONS(2010), - [anon_sym_e_GT_PIPE] = ACTIONS(2010), - [anon_sym_o_GT_PIPE] = ACTIONS(2010), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2010), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2010), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2010), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2010), - [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_LPAREN] = ACTIONS(2157), - [anon_sym_DOLLAR] = ACTIONS(2159), - [anon_sym_DASH_DASH] = ACTIONS(2161), - [anon_sym_DASH] = ACTIONS(2163), - [aux_sym_ctrl_match_token1] = ACTIONS(2165), - [anon_sym_DOT_DOT] = ACTIONS(2167), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2169), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2171), - [anon_sym_DOT_DOT_LT] = ACTIONS(2171), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2173), - [aux_sym__val_number_decimal_token1] = ACTIONS(2175), - [aux_sym__val_number_decimal_token2] = ACTIONS(2175), - [aux_sym__val_number_decimal_token3] = ACTIONS(2177), - [aux_sym__val_number_decimal_token4] = ACTIONS(2179), - [aux_sym__val_number_token1] = ACTIONS(2181), - [aux_sym__val_number_token2] = ACTIONS(2181), - [aux_sym__val_number_token3] = ACTIONS(2181), - [anon_sym_0b] = ACTIONS(2183), - [anon_sym_0o] = ACTIONS(2185), - [anon_sym_0x] = ACTIONS(2185), - [sym_val_date] = ACTIONS(2187), - [anon_sym_DQUOTE] = ACTIONS(2189), - [sym__str_single_quotes] = ACTIONS(2191), - [sym__str_back_ticks] = ACTIONS(2191), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2193), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2195), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2197), - [anon_sym_err_GT] = ACTIONS(2199), - [anon_sym_out_GT] = ACTIONS(2199), - [anon_sym_e_GT] = ACTIONS(2199), - [anon_sym_o_GT] = ACTIONS(2199), - [anon_sym_err_PLUSout_GT] = ACTIONS(2199), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2199), - [anon_sym_o_PLUSe_GT] = ACTIONS(2199), - [anon_sym_e_PLUSo_GT] = ACTIONS(2199), - [anon_sym_err_GT_GT] = ACTIONS(2199), - [anon_sym_out_GT_GT] = ACTIONS(2199), - [anon_sym_e_GT_GT] = ACTIONS(2199), - [anon_sym_o_GT_GT] = ACTIONS(2199), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2199), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2199), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2199), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2199), - [aux_sym_unquoted_token1] = ACTIONS(2201), + [anon_sym_true] = ACTIONS(2075), + [anon_sym_false] = ACTIONS(2075), + [anon_sym_null] = ACTIONS(2077), + [aux_sym_cmd_identifier_token38] = ACTIONS(2079), + [aux_sym_cmd_identifier_token39] = ACTIONS(2079), + [aux_sym_cmd_identifier_token40] = ACTIONS(2079), + [sym__newline] = ACTIONS(2281), + [sym__space] = ACTIONS(2283), + [anon_sym_SEMI] = ACTIONS(2281), + [anon_sym_PIPE] = ACTIONS(2281), + [anon_sym_err_GT_PIPE] = ACTIONS(2281), + [anon_sym_out_GT_PIPE] = ACTIONS(2281), + [anon_sym_e_GT_PIPE] = ACTIONS(2281), + [anon_sym_o_GT_PIPE] = ACTIONS(2281), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2281), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2281), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2281), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2281), + [anon_sym_LBRACK] = ACTIONS(2085), + [anon_sym_LPAREN] = ACTIONS(2087), + [anon_sym_RPAREN] = ACTIONS(2281), + [anon_sym_DOLLAR] = ACTIONS(2089), + [anon_sym_DASH_DASH] = ACTIONS(2091), + [anon_sym_DASH] = ACTIONS(2093), + [aux_sym_ctrl_match_token1] = ACTIONS(2095), + [anon_sym_DOT_DOT] = ACTIONS(2097), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2099), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2101), + [anon_sym_DOT_DOT_LT] = ACTIONS(2101), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2103), + [aux_sym__val_number_decimal_token1] = ACTIONS(2105), + [aux_sym__val_number_decimal_token2] = ACTIONS(2105), + [aux_sym__val_number_decimal_token3] = ACTIONS(2107), + [aux_sym__val_number_decimal_token4] = ACTIONS(2109), + [aux_sym__val_number_token1] = ACTIONS(2111), + [aux_sym__val_number_token2] = ACTIONS(2111), + [aux_sym__val_number_token3] = ACTIONS(2111), + [anon_sym_0b] = ACTIONS(2113), + [anon_sym_0o] = ACTIONS(2115), + [anon_sym_0x] = ACTIONS(2115), + [sym_val_date] = ACTIONS(2117), + [anon_sym_DQUOTE] = ACTIONS(2119), + [sym__str_single_quotes] = ACTIONS(2121), + [sym__str_back_ticks] = ACTIONS(2121), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2123), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2125), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2127), + [anon_sym_err_GT] = ACTIONS(2129), + [anon_sym_out_GT] = ACTIONS(2129), + [anon_sym_e_GT] = ACTIONS(2129), + [anon_sym_o_GT] = ACTIONS(2129), + [anon_sym_err_PLUSout_GT] = ACTIONS(2129), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2129), + [anon_sym_o_PLUSe_GT] = ACTIONS(2129), + [anon_sym_e_PLUSo_GT] = ACTIONS(2129), + [anon_sym_err_GT_GT] = ACTIONS(2129), + [anon_sym_out_GT_GT] = ACTIONS(2129), + [anon_sym_e_GT_GT] = ACTIONS(2129), + [anon_sym_o_GT_GT] = ACTIONS(2129), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2129), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2129), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2129), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2129), + [aux_sym_unquoted_token1] = ACTIONS(2131), [anon_sym_POUND] = ACTIONS(3), }, [457] = { - [sym__expr_parenthesized_immediate] = STATE(7603), [sym_comment] = STATE(457), - [anon_sym_export] = ACTIONS(1949), - [anon_sym_alias] = ACTIONS(1949), - [anon_sym_let] = ACTIONS(1949), - [anon_sym_let_DASHenv] = ACTIONS(1949), - [anon_sym_mut] = ACTIONS(1949), - [anon_sym_const] = ACTIONS(1949), - [aux_sym_cmd_identifier_token1] = ACTIONS(1949), - [aux_sym_cmd_identifier_token2] = ACTIONS(1949), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [aux_sym_cmd_identifier_token6] = ACTIONS(1949), - [aux_sym_cmd_identifier_token7] = ACTIONS(1949), - [aux_sym_cmd_identifier_token8] = ACTIONS(1949), - [aux_sym_cmd_identifier_token9] = ACTIONS(1949), - [aux_sym_cmd_identifier_token10] = ACTIONS(1949), - [aux_sym_cmd_identifier_token11] = ACTIONS(1949), - [aux_sym_cmd_identifier_token12] = ACTIONS(1949), - [aux_sym_cmd_identifier_token13] = ACTIONS(1949), - [aux_sym_cmd_identifier_token14] = ACTIONS(1949), - [aux_sym_cmd_identifier_token15] = ACTIONS(1949), - [aux_sym_cmd_identifier_token16] = ACTIONS(1949), - [aux_sym_cmd_identifier_token17] = ACTIONS(1949), - [aux_sym_cmd_identifier_token18] = ACTIONS(1949), - [aux_sym_cmd_identifier_token19] = ACTIONS(1949), - [aux_sym_cmd_identifier_token20] = ACTIONS(1949), - [aux_sym_cmd_identifier_token21] = ACTIONS(1949), - [aux_sym_cmd_identifier_token22] = ACTIONS(1949), - [aux_sym_cmd_identifier_token23] = ACTIONS(1949), - [aux_sym_cmd_identifier_token24] = ACTIONS(1949), - [aux_sym_cmd_identifier_token25] = ACTIONS(1949), - [aux_sym_cmd_identifier_token26] = ACTIONS(1949), - [aux_sym_cmd_identifier_token27] = ACTIONS(1949), - [aux_sym_cmd_identifier_token28] = ACTIONS(1949), - [aux_sym_cmd_identifier_token29] = ACTIONS(1949), - [aux_sym_cmd_identifier_token30] = ACTIONS(1949), - [aux_sym_cmd_identifier_token31] = ACTIONS(1949), - [aux_sym_cmd_identifier_token32] = ACTIONS(1949), - [aux_sym_cmd_identifier_token33] = ACTIONS(1949), - [aux_sym_cmd_identifier_token34] = ACTIONS(1949), - [aux_sym_cmd_identifier_token35] = ACTIONS(1949), - [aux_sym_cmd_identifier_token36] = ACTIONS(1949), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1949), - [aux_sym_cmd_identifier_token38] = ACTIONS(1949), - [aux_sym_cmd_identifier_token39] = ACTIONS(1949), - [aux_sym_cmd_identifier_token40] = ACTIONS(1949), - [anon_sym_def] = ACTIONS(1949), - [anon_sym_export_DASHenv] = ACTIONS(1949), - [anon_sym_extern] = ACTIONS(1949), - [anon_sym_module] = ACTIONS(1949), - [anon_sym_use] = ACTIONS(1949), - [anon_sym_LPAREN] = ACTIONS(1949), - [anon_sym_DOLLAR] = ACTIONS(1949), - [anon_sym_error] = ACTIONS(1949), - [anon_sym_list] = ACTIONS(1949), - [anon_sym_DASH] = ACTIONS(1949), - [anon_sym_break] = ACTIONS(1949), - [anon_sym_continue] = ACTIONS(1949), - [anon_sym_for] = ACTIONS(1949), - [anon_sym_in] = ACTIONS(1949), - [anon_sym_loop] = ACTIONS(1949), - [anon_sym_make] = ACTIONS(1949), - [anon_sym_while] = ACTIONS(1949), - [anon_sym_do] = ACTIONS(1949), - [anon_sym_if] = ACTIONS(1949), - [anon_sym_else] = ACTIONS(1949), - [anon_sym_match] = ACTIONS(1949), - [anon_sym_RBRACE] = ACTIONS(1949), - [anon_sym_try] = ACTIONS(1949), - [anon_sym_catch] = ACTIONS(1949), - [anon_sym_return] = ACTIONS(1949), - [anon_sym_source] = ACTIONS(1949), - [anon_sym_source_DASHenv] = ACTIONS(1949), - [anon_sym_register] = ACTIONS(1949), - [anon_sym_hide] = ACTIONS(1949), - [anon_sym_hide_DASHenv] = ACTIONS(1949), - [anon_sym_overlay] = ACTIONS(1949), - [anon_sym_new] = ACTIONS(1949), - [anon_sym_as] = ACTIONS(1949), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1949), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1949), - [aux_sym__val_number_decimal_token1] = ACTIONS(1949), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1949), - [aux_sym__val_number_decimal_token4] = ACTIONS(1949), - [aux_sym__val_number_token1] = ACTIONS(1949), - [aux_sym__val_number_token2] = ACTIONS(1949), - [aux_sym__val_number_token3] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(1949), - [sym__str_single_quotes] = ACTIONS(1949), - [sym__str_back_ticks] = ACTIONS(1949), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1949), - [sym__entry_separator] = ACTIONS(1951), - [anon_sym_PLUS] = ACTIONS(1949), + [anon_sym_export] = ACTIONS(1643), + [anon_sym_alias] = ACTIONS(1643), + [anon_sym_let] = ACTIONS(1643), + [anon_sym_let_DASHenv] = ACTIONS(1643), + [anon_sym_mut] = ACTIONS(1643), + [anon_sym_const] = ACTIONS(1643), + [aux_sym_cmd_identifier_token1] = ACTIONS(1643), + [aux_sym_cmd_identifier_token2] = ACTIONS(1643), + [aux_sym_cmd_identifier_token3] = ACTIONS(1643), + [aux_sym_cmd_identifier_token4] = ACTIONS(1643), + [aux_sym_cmd_identifier_token5] = ACTIONS(1643), + [aux_sym_cmd_identifier_token6] = ACTIONS(1643), + [aux_sym_cmd_identifier_token7] = ACTIONS(1643), + [aux_sym_cmd_identifier_token8] = ACTIONS(1643), + [aux_sym_cmd_identifier_token9] = ACTIONS(1643), + [aux_sym_cmd_identifier_token10] = ACTIONS(1643), + [aux_sym_cmd_identifier_token11] = ACTIONS(1643), + [aux_sym_cmd_identifier_token12] = ACTIONS(1643), + [aux_sym_cmd_identifier_token13] = ACTIONS(1643), + [aux_sym_cmd_identifier_token14] = ACTIONS(1643), + [aux_sym_cmd_identifier_token15] = ACTIONS(1643), + [aux_sym_cmd_identifier_token16] = ACTIONS(1643), + [aux_sym_cmd_identifier_token17] = ACTIONS(1643), + [aux_sym_cmd_identifier_token18] = ACTIONS(1643), + [aux_sym_cmd_identifier_token19] = ACTIONS(1643), + [aux_sym_cmd_identifier_token20] = ACTIONS(1643), + [aux_sym_cmd_identifier_token21] = ACTIONS(1643), + [aux_sym_cmd_identifier_token22] = ACTIONS(1643), + [aux_sym_cmd_identifier_token23] = ACTIONS(1643), + [aux_sym_cmd_identifier_token24] = ACTIONS(1643), + [aux_sym_cmd_identifier_token25] = ACTIONS(1643), + [aux_sym_cmd_identifier_token26] = ACTIONS(1643), + [aux_sym_cmd_identifier_token27] = ACTIONS(1643), + [aux_sym_cmd_identifier_token28] = ACTIONS(1643), + [aux_sym_cmd_identifier_token29] = ACTIONS(1643), + [aux_sym_cmd_identifier_token30] = ACTIONS(1643), + [aux_sym_cmd_identifier_token31] = ACTIONS(1643), + [aux_sym_cmd_identifier_token32] = ACTIONS(1643), + [aux_sym_cmd_identifier_token33] = ACTIONS(1643), + [aux_sym_cmd_identifier_token34] = ACTIONS(1643), + [aux_sym_cmd_identifier_token35] = ACTIONS(1643), + [aux_sym_cmd_identifier_token36] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_null] = ACTIONS(1643), + [aux_sym_cmd_identifier_token38] = ACTIONS(1643), + [aux_sym_cmd_identifier_token39] = ACTIONS(1643), + [aux_sym_cmd_identifier_token40] = ACTIONS(1643), + [anon_sym_def] = ACTIONS(1643), + [anon_sym_export_DASHenv] = ACTIONS(1643), + [anon_sym_extern] = ACTIONS(1643), + [anon_sym_module] = ACTIONS(1643), + [anon_sym_use] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(1643), + [anon_sym_error] = ACTIONS(1643), + [anon_sym_list] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_break] = ACTIONS(1643), + [anon_sym_continue] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_loop] = ACTIONS(1643), + [anon_sym_make] = ACTIONS(1643), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_do] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_else] = ACTIONS(1643), + [anon_sym_match] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), + [anon_sym_try] = ACTIONS(1643), + [anon_sym_catch] = ACTIONS(1643), + [anon_sym_return] = ACTIONS(1643), + [anon_sym_source] = ACTIONS(1643), + [anon_sym_source_DASHenv] = ACTIONS(1643), + [anon_sym_register] = ACTIONS(1643), + [anon_sym_hide] = ACTIONS(1643), + [anon_sym_hide_DASHenv] = ACTIONS(1643), + [anon_sym_overlay] = ACTIONS(1643), + [anon_sym_new] = ACTIONS(1643), + [anon_sym_as] = ACTIONS(1643), + [anon_sym_LPAREN2] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1643), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1643), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1643), + [aux_sym__val_number_decimal_token3] = ACTIONS(1643), + [aux_sym__val_number_decimal_token4] = ACTIONS(1643), + [aux_sym__val_number_token1] = ACTIONS(1643), + [aux_sym__val_number_token2] = ACTIONS(1643), + [aux_sym__val_number_token3] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1643), + [sym__str_single_quotes] = ACTIONS(1643), + [sym__str_back_ticks] = ACTIONS(1643), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1643), + [sym__entry_separator] = ACTIONS(1645), + [anon_sym_PLUS] = ACTIONS(1643), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1643), [anon_sym_POUND] = ACTIONS(3), }, [458] = { - [sym__expr_parenthesized_immediate] = STATE(7603), [sym_comment] = STATE(458), - [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), - [aux_sym_cmd_identifier_token1] = ACTIONS(1905), - [aux_sym_cmd_identifier_token2] = ACTIONS(1905), - [aux_sym_cmd_identifier_token3] = ACTIONS(1905), - [aux_sym_cmd_identifier_token4] = ACTIONS(1905), - [aux_sym_cmd_identifier_token5] = ACTIONS(1905), - [aux_sym_cmd_identifier_token6] = ACTIONS(1905), - [aux_sym_cmd_identifier_token7] = ACTIONS(1905), - [aux_sym_cmd_identifier_token8] = ACTIONS(1905), - [aux_sym_cmd_identifier_token9] = ACTIONS(1905), - [aux_sym_cmd_identifier_token10] = ACTIONS(1905), - [aux_sym_cmd_identifier_token11] = ACTIONS(1905), - [aux_sym_cmd_identifier_token12] = ACTIONS(1905), - [aux_sym_cmd_identifier_token13] = ACTIONS(1905), - [aux_sym_cmd_identifier_token14] = ACTIONS(1905), - [aux_sym_cmd_identifier_token15] = ACTIONS(1905), - [aux_sym_cmd_identifier_token16] = ACTIONS(1905), - [aux_sym_cmd_identifier_token17] = ACTIONS(1905), - [aux_sym_cmd_identifier_token18] = ACTIONS(1905), - [aux_sym_cmd_identifier_token19] = ACTIONS(1905), - [aux_sym_cmd_identifier_token20] = ACTIONS(1905), - [aux_sym_cmd_identifier_token21] = ACTIONS(1905), - [aux_sym_cmd_identifier_token22] = ACTIONS(1905), - [aux_sym_cmd_identifier_token23] = ACTIONS(1905), - [aux_sym_cmd_identifier_token24] = ACTIONS(1905), - [aux_sym_cmd_identifier_token25] = ACTIONS(1905), - [aux_sym_cmd_identifier_token26] = ACTIONS(1905), - [aux_sym_cmd_identifier_token27] = ACTIONS(1905), - [aux_sym_cmd_identifier_token28] = ACTIONS(1905), - [aux_sym_cmd_identifier_token29] = ACTIONS(1905), - [aux_sym_cmd_identifier_token30] = ACTIONS(1905), - [aux_sym_cmd_identifier_token31] = ACTIONS(1905), - [aux_sym_cmd_identifier_token32] = ACTIONS(1905), - [aux_sym_cmd_identifier_token33] = ACTIONS(1905), - [aux_sym_cmd_identifier_token34] = ACTIONS(1905), - [aux_sym_cmd_identifier_token35] = ACTIONS(1905), - [aux_sym_cmd_identifier_token36] = ACTIONS(1905), - [anon_sym_true] = ACTIONS(1905), - [anon_sym_false] = ACTIONS(1905), - [anon_sym_null] = ACTIONS(1905), - [aux_sym_cmd_identifier_token38] = ACTIONS(1905), - [aux_sym_cmd_identifier_token39] = ACTIONS(1905), - [aux_sym_cmd_identifier_token40] = ACTIONS(1905), - [anon_sym_def] = 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_LPAREN] = ACTIONS(1905), - [anon_sym_DOLLAR] = ACTIONS(1905), - [anon_sym_error] = ACTIONS(1905), - [anon_sym_list] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_break] = ACTIONS(1905), - [anon_sym_continue] = ACTIONS(1905), - [anon_sym_for] = ACTIONS(1905), - [anon_sym_in] = ACTIONS(1905), - [anon_sym_loop] = ACTIONS(1905), - [anon_sym_make] = ACTIONS(1905), - [anon_sym_while] = ACTIONS(1905), - [anon_sym_do] = ACTIONS(1905), - [anon_sym_if] = ACTIONS(1905), - [anon_sym_else] = ACTIONS(1905), - [anon_sym_match] = ACTIONS(1905), - [anon_sym_RBRACE] = ACTIONS(1905), - [anon_sym_try] = ACTIONS(1905), - [anon_sym_catch] = 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_new] = ACTIONS(1905), - [anon_sym_as] = ACTIONS(1905), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1905), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1905), - [aux_sym__val_number_decimal_token1] = ACTIONS(1905), - [aux_sym__val_number_decimal_token2] = ACTIONS(1905), - [aux_sym__val_number_decimal_token3] = ACTIONS(1905), - [aux_sym__val_number_decimal_token4] = ACTIONS(1905), - [aux_sym__val_number_token1] = ACTIONS(1905), - [aux_sym__val_number_token2] = ACTIONS(1905), - [aux_sym__val_number_token3] = ACTIONS(1905), - [anon_sym_DQUOTE] = ACTIONS(1905), - [sym__str_single_quotes] = ACTIONS(1905), - [sym__str_back_ticks] = ACTIONS(1905), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1905), - [sym__entry_separator] = ACTIONS(1911), - [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_export] = ACTIONS(1631), + [anon_sym_alias] = ACTIONS(1631), + [anon_sym_let] = ACTIONS(1631), + [anon_sym_let_DASHenv] = ACTIONS(1631), + [anon_sym_mut] = ACTIONS(1631), + [anon_sym_const] = ACTIONS(1631), + [aux_sym_cmd_identifier_token1] = ACTIONS(1631), + [aux_sym_cmd_identifier_token2] = ACTIONS(1631), + [aux_sym_cmd_identifier_token3] = ACTIONS(1631), + [aux_sym_cmd_identifier_token4] = ACTIONS(1631), + [aux_sym_cmd_identifier_token5] = ACTIONS(1631), + [aux_sym_cmd_identifier_token6] = ACTIONS(1631), + [aux_sym_cmd_identifier_token7] = ACTIONS(1631), + [aux_sym_cmd_identifier_token8] = ACTIONS(1631), + [aux_sym_cmd_identifier_token9] = ACTIONS(1631), + [aux_sym_cmd_identifier_token10] = ACTIONS(1631), + [aux_sym_cmd_identifier_token11] = ACTIONS(1631), + [aux_sym_cmd_identifier_token12] = ACTIONS(1631), + [aux_sym_cmd_identifier_token13] = ACTIONS(1631), + [aux_sym_cmd_identifier_token14] = ACTIONS(1631), + [aux_sym_cmd_identifier_token15] = ACTIONS(1631), + [aux_sym_cmd_identifier_token16] = ACTIONS(1631), + [aux_sym_cmd_identifier_token17] = ACTIONS(1631), + [aux_sym_cmd_identifier_token18] = ACTIONS(1631), + [aux_sym_cmd_identifier_token19] = ACTIONS(1631), + [aux_sym_cmd_identifier_token20] = ACTIONS(1631), + [aux_sym_cmd_identifier_token21] = ACTIONS(1631), + [aux_sym_cmd_identifier_token22] = ACTIONS(1631), + [aux_sym_cmd_identifier_token23] = ACTIONS(1631), + [aux_sym_cmd_identifier_token24] = ACTIONS(1631), + [aux_sym_cmd_identifier_token25] = ACTIONS(1631), + [aux_sym_cmd_identifier_token26] = ACTIONS(1631), + [aux_sym_cmd_identifier_token27] = ACTIONS(1631), + [aux_sym_cmd_identifier_token28] = ACTIONS(1631), + [aux_sym_cmd_identifier_token29] = ACTIONS(1631), + [aux_sym_cmd_identifier_token30] = ACTIONS(1631), + [aux_sym_cmd_identifier_token31] = ACTIONS(1631), + [aux_sym_cmd_identifier_token32] = ACTIONS(1631), + [aux_sym_cmd_identifier_token33] = ACTIONS(1631), + [aux_sym_cmd_identifier_token34] = ACTIONS(1631), + [aux_sym_cmd_identifier_token35] = ACTIONS(1631), + [aux_sym_cmd_identifier_token36] = ACTIONS(1631), + [anon_sym_true] = ACTIONS(1631), + [anon_sym_false] = ACTIONS(1631), + [anon_sym_null] = ACTIONS(1631), + [aux_sym_cmd_identifier_token38] = ACTIONS(1631), + [aux_sym_cmd_identifier_token39] = ACTIONS(1631), + [aux_sym_cmd_identifier_token40] = ACTIONS(1631), + [anon_sym_def] = ACTIONS(1631), + [anon_sym_export_DASHenv] = ACTIONS(1631), + [anon_sym_extern] = ACTIONS(1631), + [anon_sym_module] = ACTIONS(1631), + [anon_sym_use] = ACTIONS(1631), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_DOLLAR] = ACTIONS(1631), + [anon_sym_error] = ACTIONS(1631), + [anon_sym_list] = ACTIONS(1631), + [anon_sym_DASH] = ACTIONS(1631), + [anon_sym_break] = ACTIONS(1631), + [anon_sym_continue] = ACTIONS(1631), + [anon_sym_for] = ACTIONS(1631), + [anon_sym_in] = ACTIONS(1631), + [anon_sym_loop] = ACTIONS(1631), + [anon_sym_make] = ACTIONS(1631), + [anon_sym_while] = ACTIONS(1631), + [anon_sym_do] = ACTIONS(1631), + [anon_sym_if] = ACTIONS(1631), + [anon_sym_else] = ACTIONS(1631), + [anon_sym_match] = ACTIONS(1631), + [anon_sym_RBRACE] = ACTIONS(1631), + [anon_sym_try] = ACTIONS(1631), + [anon_sym_catch] = ACTIONS(1631), + [anon_sym_return] = ACTIONS(1631), + [anon_sym_source] = ACTIONS(1631), + [anon_sym_source_DASHenv] = ACTIONS(1631), + [anon_sym_register] = ACTIONS(1631), + [anon_sym_hide] = ACTIONS(1631), + [anon_sym_hide_DASHenv] = ACTIONS(1631), + [anon_sym_overlay] = ACTIONS(1631), + [anon_sym_new] = ACTIONS(1631), + [anon_sym_as] = ACTIONS(1631), + [anon_sym_LPAREN2] = ACTIONS(1633), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1631), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1631), + [aux_sym__val_number_decimal_token1] = ACTIONS(1631), + [aux_sym__val_number_decimal_token2] = ACTIONS(1631), + [aux_sym__val_number_decimal_token3] = ACTIONS(1631), + [aux_sym__val_number_decimal_token4] = ACTIONS(1631), + [aux_sym__val_number_token1] = ACTIONS(1631), + [aux_sym__val_number_token2] = ACTIONS(1631), + [aux_sym__val_number_token3] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [sym__str_single_quotes] = ACTIONS(1631), + [sym__str_back_ticks] = ACTIONS(1631), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1631), + [sym__entry_separator] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1631), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1631), [anon_sym_POUND] = ACTIONS(3), }, [459] = { - [sym__expr_parenthesized_immediate] = STATE(7950), [sym_comment] = STATE(459), - [anon_sym_export] = ACTIONS(2203), - [anon_sym_alias] = ACTIONS(2203), - [anon_sym_let] = ACTIONS(2203), - [anon_sym_let_DASHenv] = ACTIONS(2203), - [anon_sym_mut] = ACTIONS(2203), - [anon_sym_const] = ACTIONS(2203), - [aux_sym_cmd_identifier_token1] = ACTIONS(2203), - [aux_sym_cmd_identifier_token2] = ACTIONS(2203), - [aux_sym_cmd_identifier_token3] = ACTIONS(2203), - [aux_sym_cmd_identifier_token4] = ACTIONS(2203), - [aux_sym_cmd_identifier_token5] = ACTIONS(2203), - [aux_sym_cmd_identifier_token6] = ACTIONS(2203), - [aux_sym_cmd_identifier_token7] = ACTIONS(2203), - [aux_sym_cmd_identifier_token8] = ACTIONS(2203), - [aux_sym_cmd_identifier_token9] = ACTIONS(2203), - [aux_sym_cmd_identifier_token10] = ACTIONS(2203), - [aux_sym_cmd_identifier_token11] = ACTIONS(2203), - [aux_sym_cmd_identifier_token12] = ACTIONS(2203), - [aux_sym_cmd_identifier_token13] = ACTIONS(2203), - [aux_sym_cmd_identifier_token14] = ACTIONS(2203), - [aux_sym_cmd_identifier_token15] = ACTIONS(2203), - [aux_sym_cmd_identifier_token16] = ACTIONS(2203), - [aux_sym_cmd_identifier_token17] = ACTIONS(2203), - [aux_sym_cmd_identifier_token18] = ACTIONS(2203), - [aux_sym_cmd_identifier_token19] = ACTIONS(2203), - [aux_sym_cmd_identifier_token20] = ACTIONS(2203), - [aux_sym_cmd_identifier_token21] = ACTIONS(2203), - [aux_sym_cmd_identifier_token22] = ACTIONS(2203), - [aux_sym_cmd_identifier_token23] = ACTIONS(2203), - [aux_sym_cmd_identifier_token24] = ACTIONS(2203), - [aux_sym_cmd_identifier_token25] = ACTIONS(2203), - [aux_sym_cmd_identifier_token26] = ACTIONS(2203), - [aux_sym_cmd_identifier_token27] = ACTIONS(2203), - [aux_sym_cmd_identifier_token28] = ACTIONS(2203), - [aux_sym_cmd_identifier_token29] = ACTIONS(2203), - [aux_sym_cmd_identifier_token30] = ACTIONS(2203), - [aux_sym_cmd_identifier_token31] = ACTIONS(2203), - [aux_sym_cmd_identifier_token32] = ACTIONS(2203), - [aux_sym_cmd_identifier_token33] = ACTIONS(2203), - [aux_sym_cmd_identifier_token34] = ACTIONS(2203), - [aux_sym_cmd_identifier_token35] = ACTIONS(2203), - [aux_sym_cmd_identifier_token36] = ACTIONS(2203), - [anon_sym_true] = ACTIONS(2203), - [anon_sym_false] = ACTIONS(2203), - [anon_sym_null] = ACTIONS(2203), - [aux_sym_cmd_identifier_token38] = ACTIONS(2203), - [aux_sym_cmd_identifier_token39] = ACTIONS(2203), - [aux_sym_cmd_identifier_token40] = ACTIONS(2203), - [anon_sym_def] = ACTIONS(2203), - [anon_sym_export_DASHenv] = ACTIONS(2203), - [anon_sym_extern] = ACTIONS(2203), - [anon_sym_module] = ACTIONS(2203), - [anon_sym_use] = ACTIONS(2203), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_DOLLAR] = ACTIONS(2203), - [anon_sym_error] = ACTIONS(2203), - [anon_sym_list] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_break] = ACTIONS(2203), - [anon_sym_continue] = ACTIONS(2203), - [anon_sym_for] = ACTIONS(2203), - [anon_sym_in] = ACTIONS(2203), - [anon_sym_loop] = ACTIONS(2203), - [anon_sym_make] = ACTIONS(2203), - [anon_sym_while] = ACTIONS(2203), - [anon_sym_do] = ACTIONS(2203), - [anon_sym_if] = ACTIONS(2203), - [anon_sym_else] = ACTIONS(2203), - [anon_sym_match] = ACTIONS(2203), - [anon_sym_RBRACE] = ACTIONS(2203), - [anon_sym_try] = ACTIONS(2203), - [anon_sym_catch] = ACTIONS(2203), - [anon_sym_return] = ACTIONS(2203), - [anon_sym_source] = ACTIONS(2203), - [anon_sym_source_DASHenv] = ACTIONS(2203), - [anon_sym_register] = ACTIONS(2203), - [anon_sym_hide] = ACTIONS(2203), - [anon_sym_hide_DASHenv] = ACTIONS(2203), - [anon_sym_overlay] = ACTIONS(2203), - [anon_sym_new] = ACTIONS(2203), - [anon_sym_as] = ACTIONS(2203), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2203), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2203), - [aux_sym__val_number_decimal_token1] = ACTIONS(2203), - [aux_sym__val_number_decimal_token2] = ACTIONS(2203), - [aux_sym__val_number_decimal_token3] = ACTIONS(2203), - [aux_sym__val_number_decimal_token4] = ACTIONS(2203), - [aux_sym__val_number_token1] = ACTIONS(2203), - [aux_sym__val_number_token2] = ACTIONS(2203), - [aux_sym__val_number_token3] = ACTIONS(2203), - [anon_sym_DQUOTE] = ACTIONS(2203), - [sym__str_single_quotes] = ACTIONS(2203), - [sym__str_back_ticks] = ACTIONS(2203), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2203), - [sym__entry_separator] = ACTIONS(2205), - [anon_sym_PLUS] = ACTIONS(2203), + [anon_sym_export] = ACTIONS(1705), + [anon_sym_alias] = ACTIONS(1705), + [anon_sym_let] = ACTIONS(1705), + [anon_sym_let_DASHenv] = ACTIONS(1705), + [anon_sym_mut] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [aux_sym_cmd_identifier_token1] = ACTIONS(1705), + [aux_sym_cmd_identifier_token2] = ACTIONS(1705), + [aux_sym_cmd_identifier_token3] = ACTIONS(1705), + [aux_sym_cmd_identifier_token4] = ACTIONS(1705), + [aux_sym_cmd_identifier_token5] = ACTIONS(1705), + [aux_sym_cmd_identifier_token6] = ACTIONS(1705), + [aux_sym_cmd_identifier_token7] = ACTIONS(1705), + [aux_sym_cmd_identifier_token8] = ACTIONS(1705), + [aux_sym_cmd_identifier_token9] = ACTIONS(1705), + [aux_sym_cmd_identifier_token10] = ACTIONS(1705), + [aux_sym_cmd_identifier_token11] = ACTIONS(1705), + [aux_sym_cmd_identifier_token12] = ACTIONS(1705), + [aux_sym_cmd_identifier_token13] = ACTIONS(1705), + [aux_sym_cmd_identifier_token14] = ACTIONS(1705), + [aux_sym_cmd_identifier_token15] = ACTIONS(1705), + [aux_sym_cmd_identifier_token16] = ACTIONS(1705), + [aux_sym_cmd_identifier_token17] = ACTIONS(1705), + [aux_sym_cmd_identifier_token18] = ACTIONS(1705), + [aux_sym_cmd_identifier_token19] = ACTIONS(1705), + [aux_sym_cmd_identifier_token20] = ACTIONS(1705), + [aux_sym_cmd_identifier_token21] = ACTIONS(1705), + [aux_sym_cmd_identifier_token22] = ACTIONS(1705), + [aux_sym_cmd_identifier_token23] = ACTIONS(1705), + [aux_sym_cmd_identifier_token24] = ACTIONS(1705), + [aux_sym_cmd_identifier_token25] = ACTIONS(1705), + [aux_sym_cmd_identifier_token26] = ACTIONS(1705), + [aux_sym_cmd_identifier_token27] = ACTIONS(1705), + [aux_sym_cmd_identifier_token28] = ACTIONS(1705), + [aux_sym_cmd_identifier_token29] = ACTIONS(1705), + [aux_sym_cmd_identifier_token30] = ACTIONS(1705), + [aux_sym_cmd_identifier_token31] = ACTIONS(1705), + [aux_sym_cmd_identifier_token32] = ACTIONS(1705), + [aux_sym_cmd_identifier_token33] = ACTIONS(1705), + [aux_sym_cmd_identifier_token34] = ACTIONS(1705), + [aux_sym_cmd_identifier_token35] = ACTIONS(1705), + [aux_sym_cmd_identifier_token36] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1705), + [anon_sym_false] = ACTIONS(1705), + [anon_sym_null] = ACTIONS(1705), + [aux_sym_cmd_identifier_token38] = ACTIONS(1705), + [aux_sym_cmd_identifier_token39] = ACTIONS(1705), + [aux_sym_cmd_identifier_token40] = ACTIONS(1705), + [anon_sym_def] = ACTIONS(1705), + [anon_sym_export_DASHenv] = ACTIONS(1705), + [anon_sym_extern] = ACTIONS(1705), + [anon_sym_module] = ACTIONS(1705), + [anon_sym_use] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1705), + [anon_sym_error] = ACTIONS(1705), + [anon_sym_list] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_break] = ACTIONS(1705), + [anon_sym_continue] = ACTIONS(1705), + [anon_sym_for] = ACTIONS(1705), + [anon_sym_in] = ACTIONS(1705), + [anon_sym_loop] = ACTIONS(1705), + [anon_sym_make] = ACTIONS(1705), + [anon_sym_while] = ACTIONS(1705), + [anon_sym_do] = ACTIONS(1705), + [anon_sym_if] = ACTIONS(1705), + [anon_sym_else] = ACTIONS(1705), + [anon_sym_match] = ACTIONS(1705), + [anon_sym_RBRACE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1705), + [anon_sym_catch] = ACTIONS(1705), + [anon_sym_return] = ACTIONS(1705), + [anon_sym_source] = ACTIONS(1705), + [anon_sym_source_DASHenv] = ACTIONS(1705), + [anon_sym_register] = ACTIONS(1705), + [anon_sym_hide] = ACTIONS(1705), + [anon_sym_hide_DASHenv] = ACTIONS(1705), + [anon_sym_overlay] = ACTIONS(1705), + [anon_sym_new] = ACTIONS(1705), + [anon_sym_as] = ACTIONS(1705), + [anon_sym_LPAREN2] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1705), + [aux_sym__val_number_decimal_token1] = ACTIONS(1705), + [aux_sym__val_number_decimal_token2] = ACTIONS(1705), + [aux_sym__val_number_decimal_token3] = ACTIONS(1705), + [aux_sym__val_number_decimal_token4] = ACTIONS(1705), + [aux_sym__val_number_token1] = ACTIONS(1705), + [aux_sym__val_number_token2] = ACTIONS(1705), + [aux_sym__val_number_token3] = ACTIONS(1705), + [anon_sym_DQUOTE] = ACTIONS(1705), + [sym__str_single_quotes] = ACTIONS(1705), + [sym__str_back_ticks] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1705), + [sym__entry_separator] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1705), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1705), [anon_sym_POUND] = ACTIONS(3), }, [460] = { - [sym__expr_parenthesized_immediate] = STATE(7950), [sym_comment] = STATE(460), - [anon_sym_export] = ACTIONS(2207), - [anon_sym_alias] = ACTIONS(2207), - [anon_sym_let] = ACTIONS(2207), - [anon_sym_let_DASHenv] = ACTIONS(2207), - [anon_sym_mut] = ACTIONS(2207), - [anon_sym_const] = ACTIONS(2207), - [aux_sym_cmd_identifier_token1] = ACTIONS(2207), - [aux_sym_cmd_identifier_token2] = ACTIONS(2207), - [aux_sym_cmd_identifier_token3] = ACTIONS(2207), - [aux_sym_cmd_identifier_token4] = ACTIONS(2207), - [aux_sym_cmd_identifier_token5] = ACTIONS(2207), - [aux_sym_cmd_identifier_token6] = ACTIONS(2207), - [aux_sym_cmd_identifier_token7] = ACTIONS(2207), - [aux_sym_cmd_identifier_token8] = ACTIONS(2207), - [aux_sym_cmd_identifier_token9] = ACTIONS(2207), - [aux_sym_cmd_identifier_token10] = ACTIONS(2207), - [aux_sym_cmd_identifier_token11] = ACTIONS(2207), - [aux_sym_cmd_identifier_token12] = ACTIONS(2207), - [aux_sym_cmd_identifier_token13] = ACTIONS(2207), - [aux_sym_cmd_identifier_token14] = ACTIONS(2207), - [aux_sym_cmd_identifier_token15] = ACTIONS(2207), - [aux_sym_cmd_identifier_token16] = ACTIONS(2207), - [aux_sym_cmd_identifier_token17] = ACTIONS(2207), - [aux_sym_cmd_identifier_token18] = ACTIONS(2207), - [aux_sym_cmd_identifier_token19] = ACTIONS(2207), - [aux_sym_cmd_identifier_token20] = ACTIONS(2207), - [aux_sym_cmd_identifier_token21] = ACTIONS(2207), - [aux_sym_cmd_identifier_token22] = ACTIONS(2207), - [aux_sym_cmd_identifier_token23] = ACTIONS(2207), - [aux_sym_cmd_identifier_token24] = ACTIONS(2207), - [aux_sym_cmd_identifier_token25] = ACTIONS(2207), - [aux_sym_cmd_identifier_token26] = ACTIONS(2207), - [aux_sym_cmd_identifier_token27] = ACTIONS(2207), - [aux_sym_cmd_identifier_token28] = ACTIONS(2207), - [aux_sym_cmd_identifier_token29] = ACTIONS(2207), - [aux_sym_cmd_identifier_token30] = ACTIONS(2207), - [aux_sym_cmd_identifier_token31] = ACTIONS(2207), - [aux_sym_cmd_identifier_token32] = ACTIONS(2207), - [aux_sym_cmd_identifier_token33] = ACTIONS(2207), - [aux_sym_cmd_identifier_token34] = ACTIONS(2207), - [aux_sym_cmd_identifier_token35] = ACTIONS(2207), - [aux_sym_cmd_identifier_token36] = ACTIONS(2207), - [anon_sym_true] = ACTIONS(2207), - [anon_sym_false] = ACTIONS(2207), - [anon_sym_null] = ACTIONS(2207), - [aux_sym_cmd_identifier_token38] = ACTIONS(2207), - [aux_sym_cmd_identifier_token39] = ACTIONS(2207), - [aux_sym_cmd_identifier_token40] = ACTIONS(2207), - [anon_sym_def] = ACTIONS(2207), - [anon_sym_export_DASHenv] = ACTIONS(2207), - [anon_sym_extern] = ACTIONS(2207), - [anon_sym_module] = ACTIONS(2207), - [anon_sym_use] = ACTIONS(2207), - [anon_sym_LPAREN] = ACTIONS(2207), - [anon_sym_DOLLAR] = ACTIONS(2207), - [anon_sym_error] = ACTIONS(2207), - [anon_sym_list] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_break] = ACTIONS(2207), - [anon_sym_continue] = ACTIONS(2207), - [anon_sym_for] = ACTIONS(2207), - [anon_sym_in] = ACTIONS(2207), - [anon_sym_loop] = ACTIONS(2207), - [anon_sym_make] = ACTIONS(2207), - [anon_sym_while] = ACTIONS(2207), - [anon_sym_do] = ACTIONS(2207), - [anon_sym_if] = ACTIONS(2207), - [anon_sym_else] = ACTIONS(2207), - [anon_sym_match] = ACTIONS(2207), - [anon_sym_RBRACE] = ACTIONS(2207), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_catch] = ACTIONS(2207), - [anon_sym_return] = ACTIONS(2207), - [anon_sym_source] = ACTIONS(2207), - [anon_sym_source_DASHenv] = ACTIONS(2207), - [anon_sym_register] = ACTIONS(2207), - [anon_sym_hide] = ACTIONS(2207), - [anon_sym_hide_DASHenv] = ACTIONS(2207), - [anon_sym_overlay] = ACTIONS(2207), - [anon_sym_new] = ACTIONS(2207), - [anon_sym_as] = ACTIONS(2207), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2207), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2207), - [aux_sym__val_number_decimal_token1] = ACTIONS(2207), - [aux_sym__val_number_decimal_token2] = ACTIONS(2207), - [aux_sym__val_number_decimal_token3] = ACTIONS(2207), - [aux_sym__val_number_decimal_token4] = ACTIONS(2207), - [aux_sym__val_number_token1] = ACTIONS(2207), - [aux_sym__val_number_token2] = ACTIONS(2207), - [aux_sym__val_number_token3] = ACTIONS(2207), - [anon_sym_DQUOTE] = ACTIONS(2207), - [sym__str_single_quotes] = ACTIONS(2207), - [sym__str_back_ticks] = ACTIONS(2207), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2207), - [sym__entry_separator] = ACTIONS(2209), - [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_export] = ACTIONS(1755), + [anon_sym_alias] = ACTIONS(1755), + [anon_sym_let] = ACTIONS(1755), + [anon_sym_let_DASHenv] = ACTIONS(1755), + [anon_sym_mut] = ACTIONS(1755), + [anon_sym_const] = ACTIONS(1755), + [aux_sym_cmd_identifier_token1] = ACTIONS(1755), + [aux_sym_cmd_identifier_token2] = ACTIONS(1755), + [aux_sym_cmd_identifier_token3] = ACTIONS(1755), + [aux_sym_cmd_identifier_token4] = ACTIONS(1755), + [aux_sym_cmd_identifier_token5] = ACTIONS(1755), + [aux_sym_cmd_identifier_token6] = ACTIONS(1755), + [aux_sym_cmd_identifier_token7] = ACTIONS(1755), + [aux_sym_cmd_identifier_token8] = ACTIONS(1755), + [aux_sym_cmd_identifier_token9] = ACTIONS(1755), + [aux_sym_cmd_identifier_token10] = ACTIONS(1755), + [aux_sym_cmd_identifier_token11] = ACTIONS(1755), + [aux_sym_cmd_identifier_token12] = ACTIONS(1755), + [aux_sym_cmd_identifier_token13] = ACTIONS(1755), + [aux_sym_cmd_identifier_token14] = ACTIONS(1755), + [aux_sym_cmd_identifier_token15] = ACTIONS(1755), + [aux_sym_cmd_identifier_token16] = ACTIONS(1755), + [aux_sym_cmd_identifier_token17] = ACTIONS(1755), + [aux_sym_cmd_identifier_token18] = ACTIONS(1755), + [aux_sym_cmd_identifier_token19] = ACTIONS(1755), + [aux_sym_cmd_identifier_token20] = ACTIONS(1755), + [aux_sym_cmd_identifier_token21] = ACTIONS(1755), + [aux_sym_cmd_identifier_token22] = ACTIONS(1755), + [aux_sym_cmd_identifier_token23] = ACTIONS(1755), + [aux_sym_cmd_identifier_token24] = ACTIONS(1755), + [aux_sym_cmd_identifier_token25] = ACTIONS(1755), + [aux_sym_cmd_identifier_token26] = ACTIONS(1755), + [aux_sym_cmd_identifier_token27] = ACTIONS(1755), + [aux_sym_cmd_identifier_token28] = ACTIONS(1755), + [aux_sym_cmd_identifier_token29] = ACTIONS(1755), + [aux_sym_cmd_identifier_token30] = ACTIONS(1755), + [aux_sym_cmd_identifier_token31] = ACTIONS(1755), + [aux_sym_cmd_identifier_token32] = ACTIONS(1755), + [aux_sym_cmd_identifier_token33] = ACTIONS(1755), + [aux_sym_cmd_identifier_token34] = ACTIONS(1755), + [aux_sym_cmd_identifier_token35] = ACTIONS(1755), + [aux_sym_cmd_identifier_token36] = ACTIONS(1755), + [anon_sym_true] = ACTIONS(1755), + [anon_sym_false] = ACTIONS(1755), + [anon_sym_null] = ACTIONS(1755), + [aux_sym_cmd_identifier_token38] = ACTIONS(1755), + [aux_sym_cmd_identifier_token39] = ACTIONS(1755), + [aux_sym_cmd_identifier_token40] = ACTIONS(1755), + [anon_sym_def] = ACTIONS(1755), + [anon_sym_export_DASHenv] = ACTIONS(1755), + [anon_sym_extern] = ACTIONS(1755), + [anon_sym_module] = ACTIONS(1755), + [anon_sym_use] = ACTIONS(1755), + [anon_sym_LPAREN] = ACTIONS(1755), + [anon_sym_DOLLAR] = ACTIONS(1755), + [anon_sym_error] = ACTIONS(1755), + [anon_sym_list] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_in] = ACTIONS(1755), + [anon_sym_loop] = ACTIONS(1755), + [anon_sym_make] = ACTIONS(1755), + [anon_sym_while] = ACTIONS(1755), + [anon_sym_do] = ACTIONS(1755), + [anon_sym_if] = ACTIONS(1755), + [anon_sym_else] = ACTIONS(1755), + [anon_sym_match] = ACTIONS(1755), + [anon_sym_RBRACE] = ACTIONS(1755), + [anon_sym_try] = ACTIONS(1755), + [anon_sym_catch] = ACTIONS(1755), + [anon_sym_return] = ACTIONS(1755), + [anon_sym_source] = ACTIONS(1755), + [anon_sym_source_DASHenv] = ACTIONS(1755), + [anon_sym_register] = ACTIONS(1755), + [anon_sym_hide] = ACTIONS(1755), + [anon_sym_hide_DASHenv] = ACTIONS(1755), + [anon_sym_overlay] = ACTIONS(1755), + [anon_sym_new] = ACTIONS(1755), + [anon_sym_as] = ACTIONS(1755), + [anon_sym_LPAREN2] = ACTIONS(1757), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1755), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1755), + [aux_sym__val_number_decimal_token1] = ACTIONS(1755), + [aux_sym__val_number_decimal_token2] = ACTIONS(1755), + [aux_sym__val_number_decimal_token3] = ACTIONS(1755), + [aux_sym__val_number_decimal_token4] = ACTIONS(1755), + [aux_sym__val_number_token1] = ACTIONS(1755), + [aux_sym__val_number_token2] = ACTIONS(1755), + [aux_sym__val_number_token3] = ACTIONS(1755), + [anon_sym_DQUOTE] = ACTIONS(1755), + [sym__str_single_quotes] = ACTIONS(1755), + [sym__str_back_ticks] = ACTIONS(1755), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1755), + [sym__entry_separator] = ACTIONS(1757), + [anon_sym_PLUS] = ACTIONS(1755), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), [anon_sym_POUND] = ACTIONS(3), }, [461] = { - [sym__expr_parenthesized_immediate] = STATE(7950), [sym_comment] = STATE(461), - [anon_sym_export] = ACTIONS(2211), - [anon_sym_alias] = ACTIONS(2211), - [anon_sym_let] = ACTIONS(2211), - [anon_sym_let_DASHenv] = ACTIONS(2211), - [anon_sym_mut] = ACTIONS(2211), - [anon_sym_const] = ACTIONS(2211), - [aux_sym_cmd_identifier_token1] = ACTIONS(2211), - [aux_sym_cmd_identifier_token2] = ACTIONS(2211), - [aux_sym_cmd_identifier_token3] = ACTIONS(2211), - [aux_sym_cmd_identifier_token4] = ACTIONS(2211), - [aux_sym_cmd_identifier_token5] = ACTIONS(2211), - [aux_sym_cmd_identifier_token6] = ACTIONS(2211), - [aux_sym_cmd_identifier_token7] = ACTIONS(2211), - [aux_sym_cmd_identifier_token8] = ACTIONS(2211), - [aux_sym_cmd_identifier_token9] = ACTIONS(2211), - [aux_sym_cmd_identifier_token10] = ACTIONS(2211), - [aux_sym_cmd_identifier_token11] = ACTIONS(2211), - [aux_sym_cmd_identifier_token12] = ACTIONS(2211), - [aux_sym_cmd_identifier_token13] = ACTIONS(2211), - [aux_sym_cmd_identifier_token14] = ACTIONS(2211), - [aux_sym_cmd_identifier_token15] = ACTIONS(2211), - [aux_sym_cmd_identifier_token16] = ACTIONS(2211), - [aux_sym_cmd_identifier_token17] = ACTIONS(2211), - [aux_sym_cmd_identifier_token18] = ACTIONS(2211), - [aux_sym_cmd_identifier_token19] = ACTIONS(2211), - [aux_sym_cmd_identifier_token20] = ACTIONS(2211), - [aux_sym_cmd_identifier_token21] = ACTIONS(2211), - [aux_sym_cmd_identifier_token22] = ACTIONS(2211), - [aux_sym_cmd_identifier_token23] = ACTIONS(2211), - [aux_sym_cmd_identifier_token24] = ACTIONS(2211), - [aux_sym_cmd_identifier_token25] = ACTIONS(2211), - [aux_sym_cmd_identifier_token26] = ACTIONS(2211), - [aux_sym_cmd_identifier_token27] = ACTIONS(2211), - [aux_sym_cmd_identifier_token28] = ACTIONS(2211), - [aux_sym_cmd_identifier_token29] = ACTIONS(2211), - [aux_sym_cmd_identifier_token30] = ACTIONS(2211), - [aux_sym_cmd_identifier_token31] = ACTIONS(2211), - [aux_sym_cmd_identifier_token32] = ACTIONS(2211), - [aux_sym_cmd_identifier_token33] = ACTIONS(2211), - [aux_sym_cmd_identifier_token34] = ACTIONS(2211), - [aux_sym_cmd_identifier_token35] = ACTIONS(2211), - [aux_sym_cmd_identifier_token36] = ACTIONS(2211), - [anon_sym_true] = ACTIONS(2211), - [anon_sym_false] = ACTIONS(2211), - [anon_sym_null] = ACTIONS(2211), - [aux_sym_cmd_identifier_token38] = ACTIONS(2211), - [aux_sym_cmd_identifier_token39] = ACTIONS(2211), - [aux_sym_cmd_identifier_token40] = ACTIONS(2211), - [anon_sym_def] = ACTIONS(2211), - [anon_sym_export_DASHenv] = ACTIONS(2211), - [anon_sym_extern] = ACTIONS(2211), - [anon_sym_module] = ACTIONS(2211), - [anon_sym_use] = ACTIONS(2211), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_DOLLAR] = ACTIONS(2211), - [anon_sym_error] = ACTIONS(2211), - [anon_sym_list] = ACTIONS(2211), - [anon_sym_DASH] = ACTIONS(2211), - [anon_sym_break] = ACTIONS(2211), - [anon_sym_continue] = ACTIONS(2211), - [anon_sym_for] = ACTIONS(2211), - [anon_sym_in] = ACTIONS(2211), - [anon_sym_loop] = ACTIONS(2211), - [anon_sym_make] = ACTIONS(2211), - [anon_sym_while] = ACTIONS(2211), - [anon_sym_do] = ACTIONS(2211), - [anon_sym_if] = ACTIONS(2211), - [anon_sym_else] = ACTIONS(2211), - [anon_sym_match] = ACTIONS(2211), - [anon_sym_RBRACE] = ACTIONS(2211), - [anon_sym_try] = ACTIONS(2211), - [anon_sym_catch] = ACTIONS(2211), - [anon_sym_return] = ACTIONS(2211), - [anon_sym_source] = ACTIONS(2211), - [anon_sym_source_DASHenv] = ACTIONS(2211), - [anon_sym_register] = ACTIONS(2211), - [anon_sym_hide] = ACTIONS(2211), - [anon_sym_hide_DASHenv] = ACTIONS(2211), - [anon_sym_overlay] = ACTIONS(2211), - [anon_sym_new] = ACTIONS(2211), - [anon_sym_as] = ACTIONS(2211), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2211), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2211), - [aux_sym__val_number_decimal_token1] = ACTIONS(2211), - [aux_sym__val_number_decimal_token2] = ACTIONS(2211), - [aux_sym__val_number_decimal_token3] = ACTIONS(2211), - [aux_sym__val_number_decimal_token4] = ACTIONS(2211), - [aux_sym__val_number_token1] = ACTIONS(2211), - [aux_sym__val_number_token2] = ACTIONS(2211), - [aux_sym__val_number_token3] = ACTIONS(2211), - [anon_sym_DQUOTE] = ACTIONS(2211), - [sym__str_single_quotes] = ACTIONS(2211), - [sym__str_back_ticks] = ACTIONS(2211), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2211), - [sym__entry_separator] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2211), + [anon_sym_export] = ACTIONS(1631), + [anon_sym_alias] = ACTIONS(1631), + [anon_sym_let] = ACTIONS(1631), + [anon_sym_let_DASHenv] = ACTIONS(1631), + [anon_sym_mut] = ACTIONS(1631), + [anon_sym_const] = ACTIONS(1631), + [aux_sym_cmd_identifier_token1] = ACTIONS(1631), + [aux_sym_cmd_identifier_token2] = ACTIONS(1631), + [aux_sym_cmd_identifier_token3] = ACTIONS(1631), + [aux_sym_cmd_identifier_token4] = ACTIONS(1631), + [aux_sym_cmd_identifier_token5] = ACTIONS(1631), + [aux_sym_cmd_identifier_token6] = ACTIONS(1631), + [aux_sym_cmd_identifier_token7] = ACTIONS(1631), + [aux_sym_cmd_identifier_token8] = ACTIONS(1631), + [aux_sym_cmd_identifier_token9] = ACTIONS(1631), + [aux_sym_cmd_identifier_token10] = ACTIONS(1631), + [aux_sym_cmd_identifier_token11] = ACTIONS(1631), + [aux_sym_cmd_identifier_token12] = ACTIONS(1631), + [aux_sym_cmd_identifier_token13] = ACTIONS(1631), + [aux_sym_cmd_identifier_token14] = ACTIONS(1631), + [aux_sym_cmd_identifier_token15] = ACTIONS(1631), + [aux_sym_cmd_identifier_token16] = ACTIONS(1631), + [aux_sym_cmd_identifier_token17] = ACTIONS(1631), + [aux_sym_cmd_identifier_token18] = ACTIONS(1631), + [aux_sym_cmd_identifier_token19] = ACTIONS(1631), + [aux_sym_cmd_identifier_token20] = ACTIONS(1631), + [aux_sym_cmd_identifier_token21] = ACTIONS(1631), + [aux_sym_cmd_identifier_token22] = ACTIONS(1631), + [aux_sym_cmd_identifier_token23] = ACTIONS(1631), + [aux_sym_cmd_identifier_token24] = ACTIONS(1631), + [aux_sym_cmd_identifier_token25] = ACTIONS(1631), + [aux_sym_cmd_identifier_token26] = ACTIONS(1631), + [aux_sym_cmd_identifier_token27] = ACTIONS(1631), + [aux_sym_cmd_identifier_token28] = ACTIONS(1631), + [aux_sym_cmd_identifier_token29] = ACTIONS(1631), + [aux_sym_cmd_identifier_token30] = ACTIONS(1631), + [aux_sym_cmd_identifier_token31] = ACTIONS(1631), + [aux_sym_cmd_identifier_token32] = ACTIONS(1631), + [aux_sym_cmd_identifier_token33] = ACTIONS(1631), + [aux_sym_cmd_identifier_token34] = ACTIONS(1631), + [aux_sym_cmd_identifier_token35] = ACTIONS(1631), + [aux_sym_cmd_identifier_token36] = ACTIONS(1631), + [anon_sym_true] = ACTIONS(1631), + [anon_sym_false] = ACTIONS(1631), + [anon_sym_null] = ACTIONS(1631), + [aux_sym_cmd_identifier_token38] = ACTIONS(1631), + [aux_sym_cmd_identifier_token39] = ACTIONS(1631), + [aux_sym_cmd_identifier_token40] = ACTIONS(1631), + [anon_sym_def] = ACTIONS(1631), + [anon_sym_export_DASHenv] = ACTIONS(1631), + [anon_sym_extern] = ACTIONS(1631), + [anon_sym_module] = ACTIONS(1631), + [anon_sym_use] = ACTIONS(1631), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_DOLLAR] = ACTIONS(1631), + [anon_sym_error] = ACTIONS(1631), + [anon_sym_list] = ACTIONS(1631), + [anon_sym_DASH] = ACTIONS(1631), + [anon_sym_break] = ACTIONS(1631), + [anon_sym_continue] = ACTIONS(1631), + [anon_sym_for] = ACTIONS(1631), + [anon_sym_in] = ACTIONS(1631), + [anon_sym_loop] = ACTIONS(1631), + [anon_sym_make] = ACTIONS(1631), + [anon_sym_while] = ACTIONS(1631), + [anon_sym_do] = ACTIONS(1631), + [anon_sym_if] = ACTIONS(1631), + [anon_sym_else] = ACTIONS(1631), + [anon_sym_match] = ACTIONS(1631), + [anon_sym_RBRACE] = ACTIONS(1631), + [anon_sym_try] = ACTIONS(1631), + [anon_sym_catch] = ACTIONS(1631), + [anon_sym_return] = ACTIONS(1631), + [anon_sym_source] = ACTIONS(1631), + [anon_sym_source_DASHenv] = ACTIONS(1631), + [anon_sym_register] = ACTIONS(1631), + [anon_sym_hide] = ACTIONS(1631), + [anon_sym_hide_DASHenv] = ACTIONS(1631), + [anon_sym_overlay] = ACTIONS(1631), + [anon_sym_new] = ACTIONS(1631), + [anon_sym_as] = ACTIONS(1631), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1631), + [aux_sym__immediate_decimal_token1] = ACTIONS(2285), + [aux_sym__immediate_decimal_token2] = ACTIONS(2287), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1631), + [aux_sym__val_number_decimal_token1] = ACTIONS(1631), + [aux_sym__val_number_decimal_token2] = ACTIONS(1631), + [aux_sym__val_number_decimal_token3] = ACTIONS(1631), + [aux_sym__val_number_decimal_token4] = ACTIONS(1631), + [aux_sym__val_number_token1] = ACTIONS(1631), + [aux_sym__val_number_token2] = ACTIONS(1631), + [aux_sym__val_number_token3] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [sym__str_single_quotes] = ACTIONS(1631), + [sym__str_back_ticks] = ACTIONS(1631), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1631), + [sym__entry_separator] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1631), [anon_sym_POUND] = ACTIONS(3), }, [462] = { - [sym__expr_parenthesized_immediate] = STATE(7950), [sym_comment] = STATE(462), - [anon_sym_export] = ACTIONS(2215), - [anon_sym_alias] = ACTIONS(2215), - [anon_sym_let] = ACTIONS(2215), - [anon_sym_let_DASHenv] = ACTIONS(2215), - [anon_sym_mut] = ACTIONS(2215), - [anon_sym_const] = ACTIONS(2215), - [aux_sym_cmd_identifier_token1] = ACTIONS(2215), - [aux_sym_cmd_identifier_token2] = ACTIONS(2215), - [aux_sym_cmd_identifier_token3] = ACTIONS(2215), - [aux_sym_cmd_identifier_token4] = ACTIONS(2215), - [aux_sym_cmd_identifier_token5] = ACTIONS(2215), - [aux_sym_cmd_identifier_token6] = ACTIONS(2215), - [aux_sym_cmd_identifier_token7] = ACTIONS(2215), - [aux_sym_cmd_identifier_token8] = ACTIONS(2215), - [aux_sym_cmd_identifier_token9] = ACTIONS(2215), - [aux_sym_cmd_identifier_token10] = ACTIONS(2215), - [aux_sym_cmd_identifier_token11] = ACTIONS(2215), - [aux_sym_cmd_identifier_token12] = ACTIONS(2215), - [aux_sym_cmd_identifier_token13] = ACTIONS(2215), - [aux_sym_cmd_identifier_token14] = ACTIONS(2215), - [aux_sym_cmd_identifier_token15] = ACTIONS(2215), - [aux_sym_cmd_identifier_token16] = ACTIONS(2215), - [aux_sym_cmd_identifier_token17] = ACTIONS(2215), - [aux_sym_cmd_identifier_token18] = ACTIONS(2215), - [aux_sym_cmd_identifier_token19] = ACTIONS(2215), - [aux_sym_cmd_identifier_token20] = ACTIONS(2215), - [aux_sym_cmd_identifier_token21] = ACTIONS(2215), - [aux_sym_cmd_identifier_token22] = ACTIONS(2215), - [aux_sym_cmd_identifier_token23] = ACTIONS(2215), - [aux_sym_cmd_identifier_token24] = ACTIONS(2215), - [aux_sym_cmd_identifier_token25] = ACTIONS(2215), - [aux_sym_cmd_identifier_token26] = ACTIONS(2215), - [aux_sym_cmd_identifier_token27] = ACTIONS(2215), - [aux_sym_cmd_identifier_token28] = ACTIONS(2215), - [aux_sym_cmd_identifier_token29] = ACTIONS(2215), - [aux_sym_cmd_identifier_token30] = ACTIONS(2215), - [aux_sym_cmd_identifier_token31] = ACTIONS(2215), - [aux_sym_cmd_identifier_token32] = ACTIONS(2215), - [aux_sym_cmd_identifier_token33] = ACTIONS(2215), - [aux_sym_cmd_identifier_token34] = ACTIONS(2215), - [aux_sym_cmd_identifier_token35] = ACTIONS(2215), - [aux_sym_cmd_identifier_token36] = ACTIONS(2215), - [anon_sym_true] = ACTIONS(2215), - [anon_sym_false] = ACTIONS(2215), - [anon_sym_null] = ACTIONS(2215), - [aux_sym_cmd_identifier_token38] = ACTIONS(2215), - [aux_sym_cmd_identifier_token39] = ACTIONS(2215), - [aux_sym_cmd_identifier_token40] = ACTIONS(2215), - [anon_sym_def] = ACTIONS(2215), - [anon_sym_export_DASHenv] = ACTIONS(2215), - [anon_sym_extern] = ACTIONS(2215), - [anon_sym_module] = ACTIONS(2215), - [anon_sym_use] = ACTIONS(2215), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_DOLLAR] = ACTIONS(2215), - [anon_sym_error] = ACTIONS(2215), - [anon_sym_list] = ACTIONS(2215), - [anon_sym_DASH] = ACTIONS(2215), - [anon_sym_break] = ACTIONS(2215), - [anon_sym_continue] = ACTIONS(2215), - [anon_sym_for] = ACTIONS(2215), - [anon_sym_in] = ACTIONS(2215), - [anon_sym_loop] = ACTIONS(2215), - [anon_sym_make] = ACTIONS(2215), - [anon_sym_while] = ACTIONS(2215), - [anon_sym_do] = ACTIONS(2215), - [anon_sym_if] = ACTIONS(2215), - [anon_sym_else] = ACTIONS(2215), - [anon_sym_match] = ACTIONS(2215), - [anon_sym_RBRACE] = ACTIONS(2215), - [anon_sym_try] = ACTIONS(2215), - [anon_sym_catch] = ACTIONS(2215), - [anon_sym_return] = ACTIONS(2215), - [anon_sym_source] = ACTIONS(2215), - [anon_sym_source_DASHenv] = ACTIONS(2215), - [anon_sym_register] = ACTIONS(2215), - [anon_sym_hide] = ACTIONS(2215), - [anon_sym_hide_DASHenv] = ACTIONS(2215), - [anon_sym_overlay] = ACTIONS(2215), - [anon_sym_new] = ACTIONS(2215), - [anon_sym_as] = ACTIONS(2215), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2215), - [aux_sym__val_number_decimal_token1] = ACTIONS(2215), - [aux_sym__val_number_decimal_token2] = ACTIONS(2215), - [aux_sym__val_number_decimal_token3] = ACTIONS(2215), - [aux_sym__val_number_decimal_token4] = ACTIONS(2215), - [aux_sym__val_number_token1] = ACTIONS(2215), - [aux_sym__val_number_token2] = ACTIONS(2215), - [aux_sym__val_number_token3] = ACTIONS(2215), - [anon_sym_DQUOTE] = ACTIONS(2215), - [sym__str_single_quotes] = ACTIONS(2215), - [sym__str_back_ticks] = ACTIONS(2215), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2215), - [sym__entry_separator] = ACTIONS(2217), - [anon_sym_PLUS] = ACTIONS(2215), + [anon_sym_export] = ACTIONS(1643), + [anon_sym_alias] = ACTIONS(1643), + [anon_sym_let] = ACTIONS(1643), + [anon_sym_let_DASHenv] = ACTIONS(1643), + [anon_sym_mut] = ACTIONS(1643), + [anon_sym_const] = ACTIONS(1643), + [aux_sym_cmd_identifier_token1] = ACTIONS(1643), + [aux_sym_cmd_identifier_token2] = ACTIONS(1643), + [aux_sym_cmd_identifier_token3] = ACTIONS(1643), + [aux_sym_cmd_identifier_token4] = ACTIONS(1643), + [aux_sym_cmd_identifier_token5] = ACTIONS(1643), + [aux_sym_cmd_identifier_token6] = ACTIONS(1643), + [aux_sym_cmd_identifier_token7] = ACTIONS(1643), + [aux_sym_cmd_identifier_token8] = ACTIONS(1643), + [aux_sym_cmd_identifier_token9] = ACTIONS(1643), + [aux_sym_cmd_identifier_token10] = ACTIONS(1643), + [aux_sym_cmd_identifier_token11] = ACTIONS(1643), + [aux_sym_cmd_identifier_token12] = ACTIONS(1643), + [aux_sym_cmd_identifier_token13] = ACTIONS(1643), + [aux_sym_cmd_identifier_token14] = ACTIONS(1643), + [aux_sym_cmd_identifier_token15] = ACTIONS(1643), + [aux_sym_cmd_identifier_token16] = ACTIONS(1643), + [aux_sym_cmd_identifier_token17] = ACTIONS(1643), + [aux_sym_cmd_identifier_token18] = ACTIONS(1643), + [aux_sym_cmd_identifier_token19] = ACTIONS(1643), + [aux_sym_cmd_identifier_token20] = ACTIONS(1643), + [aux_sym_cmd_identifier_token21] = ACTIONS(1643), + [aux_sym_cmd_identifier_token22] = ACTIONS(1643), + [aux_sym_cmd_identifier_token23] = ACTIONS(1643), + [aux_sym_cmd_identifier_token24] = ACTIONS(1643), + [aux_sym_cmd_identifier_token25] = ACTIONS(1643), + [aux_sym_cmd_identifier_token26] = ACTIONS(1643), + [aux_sym_cmd_identifier_token27] = ACTIONS(1643), + [aux_sym_cmd_identifier_token28] = ACTIONS(1643), + [aux_sym_cmd_identifier_token29] = ACTIONS(1643), + [aux_sym_cmd_identifier_token30] = ACTIONS(1643), + [aux_sym_cmd_identifier_token31] = ACTIONS(1643), + [aux_sym_cmd_identifier_token32] = ACTIONS(1643), + [aux_sym_cmd_identifier_token33] = ACTIONS(1643), + [aux_sym_cmd_identifier_token34] = ACTIONS(1643), + [aux_sym_cmd_identifier_token35] = ACTIONS(1643), + [aux_sym_cmd_identifier_token36] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_null] = ACTIONS(1643), + [aux_sym_cmd_identifier_token38] = ACTIONS(1643), + [aux_sym_cmd_identifier_token39] = ACTIONS(1643), + [aux_sym_cmd_identifier_token40] = ACTIONS(1643), + [anon_sym_def] = ACTIONS(1643), + [anon_sym_export_DASHenv] = ACTIONS(1643), + [anon_sym_extern] = ACTIONS(1643), + [anon_sym_module] = ACTIONS(1643), + [anon_sym_use] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(1643), + [anon_sym_error] = ACTIONS(1643), + [anon_sym_list] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_break] = ACTIONS(1643), + [anon_sym_continue] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_loop] = ACTIONS(1643), + [anon_sym_make] = ACTIONS(1643), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_do] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_else] = ACTIONS(1643), + [anon_sym_match] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), + [anon_sym_try] = ACTIONS(1643), + [anon_sym_catch] = ACTIONS(1643), + [anon_sym_return] = ACTIONS(1643), + [anon_sym_source] = ACTIONS(1643), + [anon_sym_source_DASHenv] = ACTIONS(1643), + [anon_sym_register] = ACTIONS(1643), + [anon_sym_hide] = ACTIONS(1643), + [anon_sym_hide_DASHenv] = ACTIONS(1643), + [anon_sym_overlay] = ACTIONS(1643), + [anon_sym_new] = ACTIONS(1643), + [anon_sym_as] = ACTIONS(1643), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(2289), + [aux_sym__immediate_decimal_token2] = ACTIONS(2291), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1643), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1643), + [aux_sym__val_number_decimal_token3] = ACTIONS(1643), + [aux_sym__val_number_decimal_token4] = ACTIONS(1643), + [aux_sym__val_number_token1] = ACTIONS(1643), + [aux_sym__val_number_token2] = ACTIONS(1643), + [aux_sym__val_number_token3] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1643), + [sym__str_single_quotes] = ACTIONS(1643), + [sym__str_back_ticks] = ACTIONS(1643), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1643), + [sym__entry_separator] = ACTIONS(1645), + [anon_sym_PLUS] = ACTIONS(1643), [anon_sym_POUND] = ACTIONS(3), }, [463] = { [sym_comment] = STATE(463), - [anon_sym_export] = ACTIONS(2066), - [anon_sym_alias] = ACTIONS(2066), - [anon_sym_let] = ACTIONS(2066), - [anon_sym_let_DASHenv] = ACTIONS(2066), - [anon_sym_mut] = ACTIONS(2066), - [anon_sym_const] = ACTIONS(2066), - [aux_sym_cmd_identifier_token1] = ACTIONS(2066), - [aux_sym_cmd_identifier_token2] = ACTIONS(2066), - [aux_sym_cmd_identifier_token3] = ACTIONS(2066), - [aux_sym_cmd_identifier_token4] = ACTIONS(2066), - [aux_sym_cmd_identifier_token5] = ACTIONS(2066), - [aux_sym_cmd_identifier_token6] = ACTIONS(2066), - [aux_sym_cmd_identifier_token7] = ACTIONS(2066), - [aux_sym_cmd_identifier_token8] = ACTIONS(2066), - [aux_sym_cmd_identifier_token9] = ACTIONS(2066), - [aux_sym_cmd_identifier_token10] = ACTIONS(2066), - [aux_sym_cmd_identifier_token11] = ACTIONS(2066), - [aux_sym_cmd_identifier_token12] = ACTIONS(2066), - [aux_sym_cmd_identifier_token13] = ACTIONS(2066), - [aux_sym_cmd_identifier_token14] = ACTIONS(2066), - [aux_sym_cmd_identifier_token15] = ACTIONS(2066), - [aux_sym_cmd_identifier_token16] = ACTIONS(2066), - [aux_sym_cmd_identifier_token17] = ACTIONS(2066), - [aux_sym_cmd_identifier_token18] = ACTIONS(2066), - [aux_sym_cmd_identifier_token19] = ACTIONS(2066), - [aux_sym_cmd_identifier_token20] = ACTIONS(2066), - [aux_sym_cmd_identifier_token21] = ACTIONS(2066), - [aux_sym_cmd_identifier_token22] = ACTIONS(2066), - [aux_sym_cmd_identifier_token23] = ACTIONS(2066), - [aux_sym_cmd_identifier_token24] = ACTIONS(2066), - [aux_sym_cmd_identifier_token25] = ACTIONS(2066), - [aux_sym_cmd_identifier_token26] = ACTIONS(2066), - [aux_sym_cmd_identifier_token27] = ACTIONS(2066), - [aux_sym_cmd_identifier_token28] = ACTIONS(2066), - [aux_sym_cmd_identifier_token29] = ACTIONS(2066), - [aux_sym_cmd_identifier_token30] = ACTIONS(2066), - [aux_sym_cmd_identifier_token31] = ACTIONS(2066), - [aux_sym_cmd_identifier_token32] = ACTIONS(2066), - [aux_sym_cmd_identifier_token33] = ACTIONS(2066), - [aux_sym_cmd_identifier_token34] = ACTIONS(2066), - [aux_sym_cmd_identifier_token35] = ACTIONS(2066), - [aux_sym_cmd_identifier_token36] = ACTIONS(2066), - [anon_sym_true] = ACTIONS(2072), - [anon_sym_false] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2072), - [aux_sym_cmd_identifier_token38] = ACTIONS(2066), - [aux_sym_cmd_identifier_token39] = ACTIONS(2072), - [aux_sym_cmd_identifier_token40] = ACTIONS(2072), - [anon_sym_def] = ACTIONS(2066), - [anon_sym_export_DASHenv] = ACTIONS(2066), - [anon_sym_extern] = ACTIONS(2066), - [anon_sym_module] = ACTIONS(2066), - [anon_sym_use] = ACTIONS(2066), - [anon_sym_LPAREN] = ACTIONS(2072), - [anon_sym_DOLLAR] = ACTIONS(2072), - [anon_sym_error] = ACTIONS(2066), - [anon_sym_list] = ACTIONS(2066), - [anon_sym_DASH] = ACTIONS(2066), - [anon_sym_break] = ACTIONS(2066), - [anon_sym_continue] = ACTIONS(2066), - [anon_sym_for] = ACTIONS(2066), - [anon_sym_in] = ACTIONS(2066), - [anon_sym_loop] = ACTIONS(2066), - [anon_sym_make] = ACTIONS(2066), - [anon_sym_while] = ACTIONS(2066), - [anon_sym_do] = ACTIONS(2066), - [anon_sym_if] = ACTIONS(2066), - [anon_sym_else] = ACTIONS(2066), - [anon_sym_match] = ACTIONS(2066), - [anon_sym_RBRACE] = ACTIONS(2072), - [anon_sym_try] = ACTIONS(2066), - [anon_sym_catch] = ACTIONS(2066), - [anon_sym_return] = ACTIONS(2066), - [anon_sym_source] = ACTIONS(2066), - [anon_sym_source_DASHenv] = ACTIONS(2066), - [anon_sym_register] = ACTIONS(2066), - [anon_sym_hide] = ACTIONS(2066), - [anon_sym_hide_DASHenv] = ACTIONS(2066), - [anon_sym_overlay] = ACTIONS(2066), - [anon_sym_new] = ACTIONS(2066), - [anon_sym_as] = ACTIONS(2066), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2072), - [anon_sym_DOT_DOT2] = ACTIONS(2219), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2221), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2221), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2072), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2072), - [aux_sym__val_number_decimal_token3] = ACTIONS(2072), - [aux_sym__val_number_decimal_token4] = ACTIONS(2072), - [aux_sym__val_number_token1] = ACTIONS(2072), - [aux_sym__val_number_token2] = ACTIONS(2072), - [aux_sym__val_number_token3] = ACTIONS(2072), - [anon_sym_DQUOTE] = ACTIONS(2072), - [sym__str_single_quotes] = ACTIONS(2072), - [sym__str_back_ticks] = ACTIONS(2072), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2072), - [anon_sym_PLUS] = ACTIONS(2066), + [anon_sym_export] = ACTIONS(1993), + [anon_sym_alias] = ACTIONS(1993), + [anon_sym_let] = ACTIONS(1993), + [anon_sym_let_DASHenv] = ACTIONS(1993), + [anon_sym_mut] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1993), + [aux_sym_cmd_identifier_token1] = ACTIONS(1993), + [aux_sym_cmd_identifier_token2] = ACTIONS(1993), + [aux_sym_cmd_identifier_token3] = ACTIONS(1993), + [aux_sym_cmd_identifier_token4] = ACTIONS(1993), + [aux_sym_cmd_identifier_token5] = ACTIONS(1993), + [aux_sym_cmd_identifier_token6] = ACTIONS(1993), + [aux_sym_cmd_identifier_token7] = ACTIONS(1993), + [aux_sym_cmd_identifier_token8] = ACTIONS(1993), + [aux_sym_cmd_identifier_token9] = ACTIONS(1993), + [aux_sym_cmd_identifier_token10] = ACTIONS(1993), + [aux_sym_cmd_identifier_token11] = ACTIONS(1993), + [aux_sym_cmd_identifier_token12] = ACTIONS(1993), + [aux_sym_cmd_identifier_token13] = ACTIONS(1993), + [aux_sym_cmd_identifier_token14] = ACTIONS(1993), + [aux_sym_cmd_identifier_token15] = ACTIONS(1993), + [aux_sym_cmd_identifier_token16] = ACTIONS(1993), + [aux_sym_cmd_identifier_token17] = ACTIONS(1993), + [aux_sym_cmd_identifier_token18] = ACTIONS(1993), + [aux_sym_cmd_identifier_token19] = ACTIONS(1993), + [aux_sym_cmd_identifier_token20] = ACTIONS(1993), + [aux_sym_cmd_identifier_token21] = ACTIONS(1993), + [aux_sym_cmd_identifier_token22] = ACTIONS(1993), + [aux_sym_cmd_identifier_token23] = ACTIONS(1993), + [aux_sym_cmd_identifier_token24] = ACTIONS(1993), + [aux_sym_cmd_identifier_token25] = ACTIONS(1993), + [aux_sym_cmd_identifier_token26] = ACTIONS(1993), + [aux_sym_cmd_identifier_token27] = ACTIONS(1993), + [aux_sym_cmd_identifier_token28] = ACTIONS(1993), + [aux_sym_cmd_identifier_token29] = ACTIONS(1993), + [aux_sym_cmd_identifier_token30] = ACTIONS(1993), + [aux_sym_cmd_identifier_token31] = ACTIONS(1993), + [aux_sym_cmd_identifier_token32] = ACTIONS(1993), + [aux_sym_cmd_identifier_token33] = ACTIONS(1993), + [aux_sym_cmd_identifier_token34] = ACTIONS(1993), + [aux_sym_cmd_identifier_token35] = ACTIONS(1993), + [aux_sym_cmd_identifier_token36] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(1999), + [anon_sym_false] = ACTIONS(1999), + [anon_sym_null] = ACTIONS(1999), + [aux_sym_cmd_identifier_token38] = ACTIONS(1993), + [aux_sym_cmd_identifier_token39] = ACTIONS(1999), + [aux_sym_cmd_identifier_token40] = ACTIONS(1999), + [anon_sym_def] = ACTIONS(1993), + [anon_sym_export_DASHenv] = ACTIONS(1993), + [anon_sym_extern] = ACTIONS(1993), + [anon_sym_module] = ACTIONS(1993), + [anon_sym_use] = ACTIONS(1993), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(1999), + [anon_sym_error] = ACTIONS(1993), + [anon_sym_list] = ACTIONS(1993), + [anon_sym_DASH] = ACTIONS(1993), + [anon_sym_break] = ACTIONS(1993), + [anon_sym_continue] = ACTIONS(1993), + [anon_sym_for] = ACTIONS(1993), + [anon_sym_in] = ACTIONS(1993), + [anon_sym_loop] = ACTIONS(1993), + [anon_sym_make] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1993), + [anon_sym_do] = ACTIONS(1993), + [anon_sym_if] = ACTIONS(1993), + [anon_sym_else] = ACTIONS(1993), + [anon_sym_match] = ACTIONS(1993), + [anon_sym_RBRACE] = ACTIONS(1999), + [anon_sym_try] = ACTIONS(1993), + [anon_sym_catch] = ACTIONS(1993), + [anon_sym_return] = ACTIONS(1993), + [anon_sym_source] = ACTIONS(1993), + [anon_sym_source_DASHenv] = ACTIONS(1993), + [anon_sym_register] = ACTIONS(1993), + [anon_sym_hide] = ACTIONS(1993), + [anon_sym_hide_DASHenv] = ACTIONS(1993), + [anon_sym_overlay] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_as] = ACTIONS(1993), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1999), + [anon_sym_DOT_DOT2] = ACTIONS(2232), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2234), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2234), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1999), + [aux_sym__val_number_decimal_token1] = ACTIONS(1993), + [aux_sym__val_number_decimal_token2] = ACTIONS(1999), + [aux_sym__val_number_decimal_token3] = ACTIONS(1999), + [aux_sym__val_number_decimal_token4] = ACTIONS(1999), + [aux_sym__val_number_token1] = ACTIONS(1999), + [aux_sym__val_number_token2] = ACTIONS(1999), + [aux_sym__val_number_token3] = ACTIONS(1999), + [anon_sym_DQUOTE] = ACTIONS(1999), + [sym__str_single_quotes] = ACTIONS(1999), + [sym__str_back_ticks] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(1993), [anon_sym_POUND] = ACTIONS(247), }, [464] = { [sym_comment] = STATE(464), - [anon_sym_export] = ACTIONS(1972), - [anon_sym_alias] = ACTIONS(1972), - [anon_sym_let] = ACTIONS(1972), - [anon_sym_let_DASHenv] = ACTIONS(1972), - [anon_sym_mut] = ACTIONS(1972), - [anon_sym_const] = ACTIONS(1972), - [aux_sym_cmd_identifier_token1] = ACTIONS(1972), - [aux_sym_cmd_identifier_token2] = ACTIONS(1972), - [aux_sym_cmd_identifier_token3] = ACTIONS(1972), - [aux_sym_cmd_identifier_token4] = ACTIONS(1972), - [aux_sym_cmd_identifier_token5] = ACTIONS(1972), - [aux_sym_cmd_identifier_token6] = ACTIONS(1972), - [aux_sym_cmd_identifier_token7] = ACTIONS(1972), - [aux_sym_cmd_identifier_token8] = ACTIONS(1972), - [aux_sym_cmd_identifier_token9] = ACTIONS(1972), - [aux_sym_cmd_identifier_token10] = ACTIONS(1972), - [aux_sym_cmd_identifier_token11] = ACTIONS(1972), - [aux_sym_cmd_identifier_token12] = ACTIONS(1972), - [aux_sym_cmd_identifier_token13] = ACTIONS(1972), - [aux_sym_cmd_identifier_token14] = ACTIONS(1972), - [aux_sym_cmd_identifier_token15] = ACTIONS(1972), - [aux_sym_cmd_identifier_token16] = ACTIONS(1972), - [aux_sym_cmd_identifier_token17] = ACTIONS(1972), - [aux_sym_cmd_identifier_token18] = ACTIONS(1972), - [aux_sym_cmd_identifier_token19] = ACTIONS(1972), - [aux_sym_cmd_identifier_token20] = ACTIONS(1972), - [aux_sym_cmd_identifier_token21] = ACTIONS(1972), - [aux_sym_cmd_identifier_token22] = ACTIONS(1972), - [aux_sym_cmd_identifier_token23] = ACTIONS(1972), - [aux_sym_cmd_identifier_token24] = ACTIONS(1972), - [aux_sym_cmd_identifier_token25] = ACTIONS(1972), - [aux_sym_cmd_identifier_token26] = ACTIONS(1972), - [aux_sym_cmd_identifier_token27] = ACTIONS(1972), - [aux_sym_cmd_identifier_token28] = ACTIONS(1972), - [aux_sym_cmd_identifier_token29] = ACTIONS(1972), - [aux_sym_cmd_identifier_token30] = ACTIONS(1972), - [aux_sym_cmd_identifier_token31] = ACTIONS(1972), - [aux_sym_cmd_identifier_token32] = ACTIONS(1972), - [aux_sym_cmd_identifier_token33] = ACTIONS(1972), - [aux_sym_cmd_identifier_token34] = ACTIONS(1972), - [aux_sym_cmd_identifier_token35] = ACTIONS(1972), - [aux_sym_cmd_identifier_token36] = ACTIONS(1972), - [anon_sym_true] = ACTIONS(1978), - [anon_sym_false] = ACTIONS(1978), - [anon_sym_null] = ACTIONS(1978), - [aux_sym_cmd_identifier_token38] = ACTIONS(1972), - [aux_sym_cmd_identifier_token39] = ACTIONS(1978), - [aux_sym_cmd_identifier_token40] = ACTIONS(1978), - [anon_sym_def] = ACTIONS(1972), - [anon_sym_export_DASHenv] = ACTIONS(1972), - [anon_sym_extern] = ACTIONS(1972), - [anon_sym_module] = ACTIONS(1972), - [anon_sym_use] = ACTIONS(1972), - [anon_sym_LPAREN] = ACTIONS(1978), - [anon_sym_DOLLAR] = ACTIONS(1978), - [anon_sym_error] = ACTIONS(1972), - [anon_sym_list] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_break] = ACTIONS(1972), - [anon_sym_continue] = ACTIONS(1972), - [anon_sym_for] = ACTIONS(1972), - [anon_sym_in] = ACTIONS(1972), - [anon_sym_loop] = ACTIONS(1972), - [anon_sym_make] = ACTIONS(1972), - [anon_sym_while] = ACTIONS(1972), - [anon_sym_do] = ACTIONS(1972), - [anon_sym_if] = ACTIONS(1972), - [anon_sym_else] = ACTIONS(1972), - [anon_sym_match] = ACTIONS(1972), - [anon_sym_RBRACE] = ACTIONS(1978), - [anon_sym_try] = ACTIONS(1972), - [anon_sym_catch] = ACTIONS(1972), - [anon_sym_return] = ACTIONS(1972), - [anon_sym_source] = ACTIONS(1972), - [anon_sym_source_DASHenv] = ACTIONS(1972), - [anon_sym_register] = ACTIONS(1972), - [anon_sym_hide] = ACTIONS(1972), - [anon_sym_hide_DASHenv] = ACTIONS(1972), - [anon_sym_overlay] = ACTIONS(1972), - [anon_sym_new] = ACTIONS(1972), - [anon_sym_as] = ACTIONS(1972), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1978), - [anon_sym_DOT_DOT2] = ACTIONS(2223), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2225), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2225), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1978), - [aux_sym__val_number_decimal_token1] = ACTIONS(1972), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1978), - [aux_sym__val_number_decimal_token4] = ACTIONS(1978), - [aux_sym__val_number_token1] = ACTIONS(1978), - [aux_sym__val_number_token2] = ACTIONS(1978), - [aux_sym__val_number_token3] = ACTIONS(1978), - [anon_sym_DQUOTE] = ACTIONS(1978), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1978), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(2293), + [anon_sym_alias] = ACTIONS(2293), + [anon_sym_let] = ACTIONS(2293), + [anon_sym_let_DASHenv] = ACTIONS(2293), + [anon_sym_mut] = ACTIONS(2293), + [anon_sym_const] = ACTIONS(2293), + [aux_sym_cmd_identifier_token1] = ACTIONS(2293), + [aux_sym_cmd_identifier_token2] = ACTIONS(2293), + [aux_sym_cmd_identifier_token3] = ACTIONS(2293), + [aux_sym_cmd_identifier_token4] = ACTIONS(2293), + [aux_sym_cmd_identifier_token5] = ACTIONS(2293), + [aux_sym_cmd_identifier_token6] = ACTIONS(2293), + [aux_sym_cmd_identifier_token7] = ACTIONS(2293), + [aux_sym_cmd_identifier_token8] = ACTIONS(2293), + [aux_sym_cmd_identifier_token9] = ACTIONS(2293), + [aux_sym_cmd_identifier_token10] = ACTIONS(2293), + [aux_sym_cmd_identifier_token11] = ACTIONS(2293), + [aux_sym_cmd_identifier_token12] = ACTIONS(2293), + [aux_sym_cmd_identifier_token13] = ACTIONS(2293), + [aux_sym_cmd_identifier_token14] = ACTIONS(2293), + [aux_sym_cmd_identifier_token15] = ACTIONS(2293), + [aux_sym_cmd_identifier_token16] = ACTIONS(2293), + [aux_sym_cmd_identifier_token17] = ACTIONS(2293), + [aux_sym_cmd_identifier_token18] = ACTIONS(2293), + [aux_sym_cmd_identifier_token19] = ACTIONS(2293), + [aux_sym_cmd_identifier_token20] = ACTIONS(2293), + [aux_sym_cmd_identifier_token21] = ACTIONS(2293), + [aux_sym_cmd_identifier_token22] = ACTIONS(2293), + [aux_sym_cmd_identifier_token23] = ACTIONS(2293), + [aux_sym_cmd_identifier_token24] = ACTIONS(2293), + [aux_sym_cmd_identifier_token25] = ACTIONS(2293), + [aux_sym_cmd_identifier_token26] = ACTIONS(2293), + [aux_sym_cmd_identifier_token27] = ACTIONS(2293), + [aux_sym_cmd_identifier_token28] = ACTIONS(2293), + [aux_sym_cmd_identifier_token29] = ACTIONS(2293), + [aux_sym_cmd_identifier_token30] = ACTIONS(2293), + [aux_sym_cmd_identifier_token31] = ACTIONS(2293), + [aux_sym_cmd_identifier_token32] = ACTIONS(2293), + [aux_sym_cmd_identifier_token33] = ACTIONS(2293), + [aux_sym_cmd_identifier_token34] = ACTIONS(2293), + [aux_sym_cmd_identifier_token35] = ACTIONS(2293), + [aux_sym_cmd_identifier_token36] = ACTIONS(2293), + [anon_sym_true] = ACTIONS(2293), + [anon_sym_false] = ACTIONS(2293), + [anon_sym_null] = ACTIONS(2293), + [aux_sym_cmd_identifier_token38] = ACTIONS(2293), + [aux_sym_cmd_identifier_token39] = ACTIONS(2293), + [aux_sym_cmd_identifier_token40] = ACTIONS(2293), + [anon_sym_def] = ACTIONS(2293), + [anon_sym_export_DASHenv] = ACTIONS(2293), + [anon_sym_extern] = ACTIONS(2293), + [anon_sym_module] = ACTIONS(2293), + [anon_sym_use] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(2293), + [anon_sym_DOLLAR] = ACTIONS(2293), + [anon_sym_error] = ACTIONS(2293), + [anon_sym_list] = ACTIONS(2293), + [anon_sym_DASH] = ACTIONS(2293), + [anon_sym_break] = ACTIONS(2293), + [anon_sym_continue] = ACTIONS(2293), + [anon_sym_for] = ACTIONS(2293), + [anon_sym_in] = ACTIONS(2293), + [anon_sym_loop] = ACTIONS(2293), + [anon_sym_make] = ACTIONS(2293), + [anon_sym_while] = ACTIONS(2293), + [anon_sym_do] = ACTIONS(2293), + [anon_sym_if] = ACTIONS(2293), + [anon_sym_else] = ACTIONS(2293), + [anon_sym_match] = ACTIONS(2293), + [anon_sym_RBRACE] = ACTIONS(2293), + [anon_sym_try] = ACTIONS(2293), + [anon_sym_catch] = ACTIONS(2293), + [anon_sym_return] = ACTIONS(2293), + [anon_sym_source] = ACTIONS(2293), + [anon_sym_source_DASHenv] = ACTIONS(2293), + [anon_sym_register] = ACTIONS(2293), + [anon_sym_hide] = ACTIONS(2293), + [anon_sym_hide_DASHenv] = ACTIONS(2293), + [anon_sym_overlay] = ACTIONS(2293), + [anon_sym_new] = ACTIONS(2293), + [anon_sym_as] = ACTIONS(2293), + [anon_sym_LPAREN2] = ACTIONS(2295), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2293), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2293), + [aux_sym__val_number_decimal_token1] = ACTIONS(2293), + [aux_sym__val_number_decimal_token2] = ACTIONS(2293), + [aux_sym__val_number_decimal_token3] = ACTIONS(2293), + [aux_sym__val_number_decimal_token4] = ACTIONS(2293), + [aux_sym__val_number_token1] = ACTIONS(2293), + [aux_sym__val_number_token2] = ACTIONS(2293), + [aux_sym__val_number_token3] = ACTIONS(2293), + [anon_sym_DQUOTE] = ACTIONS(2293), + [sym__str_single_quotes] = ACTIONS(2293), + [sym__str_back_ticks] = ACTIONS(2293), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2293), + [sym__entry_separator] = ACTIONS(2297), + [anon_sym_PLUS] = ACTIONS(2293), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2299), + [anon_sym_POUND] = ACTIONS(3), }, [465] = { [sym_comment] = STATE(465), - [anon_sym_export] = ACTIONS(1960), - [anon_sym_alias] = ACTIONS(1960), - [anon_sym_let] = ACTIONS(1960), - [anon_sym_let_DASHenv] = ACTIONS(1960), - [anon_sym_mut] = ACTIONS(1960), - [anon_sym_const] = ACTIONS(1960), - [aux_sym_cmd_identifier_token1] = ACTIONS(1960), - [aux_sym_cmd_identifier_token2] = ACTIONS(1960), - [aux_sym_cmd_identifier_token3] = ACTIONS(1960), - [aux_sym_cmd_identifier_token4] = ACTIONS(1960), - [aux_sym_cmd_identifier_token5] = ACTIONS(1960), - [aux_sym_cmd_identifier_token6] = ACTIONS(1960), - [aux_sym_cmd_identifier_token7] = ACTIONS(1960), - [aux_sym_cmd_identifier_token8] = ACTIONS(1960), - [aux_sym_cmd_identifier_token9] = ACTIONS(1960), - [aux_sym_cmd_identifier_token10] = ACTIONS(1960), - [aux_sym_cmd_identifier_token11] = ACTIONS(1960), - [aux_sym_cmd_identifier_token12] = ACTIONS(1960), - [aux_sym_cmd_identifier_token13] = ACTIONS(1960), - [aux_sym_cmd_identifier_token14] = ACTIONS(1960), - [aux_sym_cmd_identifier_token15] = ACTIONS(1960), - [aux_sym_cmd_identifier_token16] = ACTIONS(1960), - [aux_sym_cmd_identifier_token17] = ACTIONS(1960), - [aux_sym_cmd_identifier_token18] = ACTIONS(1960), - [aux_sym_cmd_identifier_token19] = ACTIONS(1960), - [aux_sym_cmd_identifier_token20] = ACTIONS(1960), - [aux_sym_cmd_identifier_token21] = ACTIONS(1960), - [aux_sym_cmd_identifier_token22] = ACTIONS(1960), - [aux_sym_cmd_identifier_token23] = ACTIONS(1960), - [aux_sym_cmd_identifier_token24] = ACTIONS(1960), - [aux_sym_cmd_identifier_token25] = ACTIONS(1960), - [aux_sym_cmd_identifier_token26] = ACTIONS(1960), - [aux_sym_cmd_identifier_token27] = ACTIONS(1960), - [aux_sym_cmd_identifier_token28] = ACTIONS(1960), - [aux_sym_cmd_identifier_token29] = ACTIONS(1960), - [aux_sym_cmd_identifier_token30] = ACTIONS(1960), - [aux_sym_cmd_identifier_token31] = ACTIONS(1960), - [aux_sym_cmd_identifier_token32] = ACTIONS(1960), - [aux_sym_cmd_identifier_token33] = ACTIONS(1960), - [aux_sym_cmd_identifier_token34] = ACTIONS(1960), - [aux_sym_cmd_identifier_token35] = ACTIONS(1960), - [aux_sym_cmd_identifier_token36] = ACTIONS(1960), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1966), - [aux_sym_cmd_identifier_token38] = ACTIONS(1960), - [aux_sym_cmd_identifier_token39] = ACTIONS(1966), - [aux_sym_cmd_identifier_token40] = ACTIONS(1966), - [anon_sym_def] = ACTIONS(1960), - [anon_sym_export_DASHenv] = ACTIONS(1960), - [anon_sym_extern] = ACTIONS(1960), - [anon_sym_module] = ACTIONS(1960), - [anon_sym_use] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1966), - [anon_sym_DOLLAR] = ACTIONS(1966), - [anon_sym_error] = ACTIONS(1960), - [anon_sym_list] = ACTIONS(1960), - [anon_sym_DASH] = ACTIONS(1960), - [anon_sym_break] = ACTIONS(1960), - [anon_sym_continue] = ACTIONS(1960), - [anon_sym_for] = ACTIONS(1960), - [anon_sym_in] = ACTIONS(1960), - [anon_sym_loop] = ACTIONS(1960), - [anon_sym_make] = ACTIONS(1960), - [anon_sym_while] = ACTIONS(1960), - [anon_sym_do] = ACTIONS(1960), - [anon_sym_if] = ACTIONS(1960), - [anon_sym_else] = ACTIONS(1960), - [anon_sym_match] = ACTIONS(1960), - [anon_sym_RBRACE] = ACTIONS(1966), - [anon_sym_try] = ACTIONS(1960), - [anon_sym_catch] = ACTIONS(1960), - [anon_sym_return] = ACTIONS(1960), - [anon_sym_source] = ACTIONS(1960), - [anon_sym_source_DASHenv] = ACTIONS(1960), - [anon_sym_register] = ACTIONS(1960), - [anon_sym_hide] = ACTIONS(1960), - [anon_sym_hide_DASHenv] = ACTIONS(1960), - [anon_sym_overlay] = ACTIONS(1960), - [anon_sym_new] = ACTIONS(1960), - [anon_sym_as] = ACTIONS(1960), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1966), - [anon_sym_DOT_DOT2] = ACTIONS(2227), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2229), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2229), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1966), - [aux_sym__val_number_decimal_token1] = ACTIONS(1960), - [aux_sym__val_number_decimal_token2] = ACTIONS(1966), - [aux_sym__val_number_decimal_token3] = ACTIONS(1966), - [aux_sym__val_number_decimal_token4] = ACTIONS(1966), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [anon_sym_DQUOTE] = ACTIONS(1966), - [sym__str_single_quotes] = ACTIONS(1966), - [sym__str_back_ticks] = ACTIONS(1966), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1966), - [anon_sym_PLUS] = ACTIONS(1960), + [anon_sym_export] = ACTIONS(1034), + [anon_sym_alias] = ACTIONS(1034), + [anon_sym_let] = ACTIONS(1034), + [anon_sym_let_DASHenv] = ACTIONS(1034), + [anon_sym_mut] = ACTIONS(1034), + [anon_sym_const] = ACTIONS(1034), + [aux_sym_cmd_identifier_token1] = ACTIONS(1034), + [aux_sym_cmd_identifier_token2] = ACTIONS(1034), + [aux_sym_cmd_identifier_token3] = ACTIONS(1034), + [aux_sym_cmd_identifier_token4] = ACTIONS(1034), + [aux_sym_cmd_identifier_token5] = ACTIONS(1034), + [aux_sym_cmd_identifier_token6] = ACTIONS(1034), + [aux_sym_cmd_identifier_token7] = ACTIONS(1034), + [aux_sym_cmd_identifier_token8] = ACTIONS(1034), + [aux_sym_cmd_identifier_token9] = ACTIONS(1034), + [aux_sym_cmd_identifier_token10] = ACTIONS(1034), + [aux_sym_cmd_identifier_token11] = ACTIONS(1034), + [aux_sym_cmd_identifier_token12] = ACTIONS(1034), + [aux_sym_cmd_identifier_token13] = ACTIONS(1034), + [aux_sym_cmd_identifier_token14] = ACTIONS(1034), + [aux_sym_cmd_identifier_token15] = ACTIONS(1034), + [aux_sym_cmd_identifier_token16] = ACTIONS(1034), + [aux_sym_cmd_identifier_token17] = ACTIONS(1034), + [aux_sym_cmd_identifier_token18] = ACTIONS(1034), + [aux_sym_cmd_identifier_token19] = ACTIONS(1034), + [aux_sym_cmd_identifier_token20] = ACTIONS(1034), + [aux_sym_cmd_identifier_token21] = ACTIONS(1034), + [aux_sym_cmd_identifier_token22] = ACTIONS(1034), + [aux_sym_cmd_identifier_token23] = ACTIONS(1034), + [aux_sym_cmd_identifier_token24] = ACTIONS(1034), + [aux_sym_cmd_identifier_token25] = ACTIONS(1034), + [aux_sym_cmd_identifier_token26] = ACTIONS(1034), + [aux_sym_cmd_identifier_token27] = ACTIONS(1034), + [aux_sym_cmd_identifier_token28] = ACTIONS(1034), + [aux_sym_cmd_identifier_token29] = ACTIONS(1034), + [aux_sym_cmd_identifier_token30] = ACTIONS(1034), + [aux_sym_cmd_identifier_token31] = ACTIONS(1034), + [aux_sym_cmd_identifier_token32] = ACTIONS(1034), + [aux_sym_cmd_identifier_token33] = ACTIONS(1034), + [aux_sym_cmd_identifier_token34] = ACTIONS(1034), + [aux_sym_cmd_identifier_token35] = ACTIONS(1034), + [aux_sym_cmd_identifier_token36] = ACTIONS(1034), + [anon_sym_true] = ACTIONS(1036), + [anon_sym_false] = ACTIONS(1036), + [anon_sym_null] = ACTIONS(1036), + [aux_sym_cmd_identifier_token38] = ACTIONS(1034), + [aux_sym_cmd_identifier_token39] = ACTIONS(1036), + [aux_sym_cmd_identifier_token40] = ACTIONS(1036), + [anon_sym_def] = ACTIONS(1034), + [anon_sym_export_DASHenv] = ACTIONS(1034), + [anon_sym_extern] = ACTIONS(1034), + [anon_sym_module] = ACTIONS(1034), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_LPAREN] = ACTIONS(1036), + [anon_sym_DOLLAR] = ACTIONS(1036), + [anon_sym_error] = ACTIONS(1034), + [anon_sym_list] = ACTIONS(1034), + [anon_sym_DASH] = ACTIONS(1034), + [anon_sym_break] = ACTIONS(1034), + [anon_sym_continue] = ACTIONS(1034), + [anon_sym_for] = ACTIONS(1034), + [anon_sym_in] = ACTIONS(1034), + [anon_sym_loop] = ACTIONS(1034), + [anon_sym_make] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1034), + [anon_sym_do] = ACTIONS(1034), + [anon_sym_if] = ACTIONS(1034), + [anon_sym_else] = ACTIONS(1034), + [anon_sym_match] = ACTIONS(1034), + [anon_sym_RBRACE] = ACTIONS(1036), + [anon_sym_try] = ACTIONS(1034), + [anon_sym_catch] = ACTIONS(1034), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_source] = ACTIONS(1034), + [anon_sym_source_DASHenv] = ACTIONS(1034), + [anon_sym_register] = ACTIONS(1034), + [anon_sym_hide] = ACTIONS(1034), + [anon_sym_hide_DASHenv] = ACTIONS(1034), + [anon_sym_overlay] = ACTIONS(1034), + [anon_sym_new] = ACTIONS(1034), + [anon_sym_as] = ACTIONS(1034), + [anon_sym_QMARK2] = ACTIONS(2301), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1036), + [anon_sym_DOT] = ACTIONS(1034), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1036), + [aux_sym__val_number_decimal_token1] = ACTIONS(1034), + [aux_sym__val_number_decimal_token2] = ACTIONS(1036), + [aux_sym__val_number_decimal_token3] = ACTIONS(1036), + [aux_sym__val_number_decimal_token4] = ACTIONS(1036), + [aux_sym__val_number_token1] = ACTIONS(1036), + [aux_sym__val_number_token2] = ACTIONS(1036), + [aux_sym__val_number_token3] = ACTIONS(1036), + [anon_sym_DQUOTE] = ACTIONS(1036), + [sym__str_single_quotes] = ACTIONS(1036), + [sym__str_back_ticks] = ACTIONS(1036), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1036), + [anon_sym_PLUS] = ACTIONS(1034), [anon_sym_POUND] = ACTIONS(247), }, [466] = { [sym_comment] = STATE(466), - [anon_sym_export] = ACTIONS(1953), - [anon_sym_alias] = ACTIONS(1953), - [anon_sym_let] = ACTIONS(1953), - [anon_sym_let_DASHenv] = ACTIONS(1953), - [anon_sym_mut] = ACTIONS(1953), - [anon_sym_const] = ACTIONS(1953), - [aux_sym_cmd_identifier_token1] = ACTIONS(1953), - [aux_sym_cmd_identifier_token2] = ACTIONS(1953), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [aux_sym_cmd_identifier_token6] = ACTIONS(1953), - [aux_sym_cmd_identifier_token7] = ACTIONS(1953), - [aux_sym_cmd_identifier_token8] = ACTIONS(1953), - [aux_sym_cmd_identifier_token9] = ACTIONS(1953), - [aux_sym_cmd_identifier_token10] = ACTIONS(1953), - [aux_sym_cmd_identifier_token11] = ACTIONS(1953), - [aux_sym_cmd_identifier_token12] = ACTIONS(1953), - [aux_sym_cmd_identifier_token13] = ACTIONS(1953), - [aux_sym_cmd_identifier_token14] = ACTIONS(1953), - [aux_sym_cmd_identifier_token15] = ACTIONS(1953), - [aux_sym_cmd_identifier_token16] = ACTIONS(1953), - [aux_sym_cmd_identifier_token17] = ACTIONS(1953), - [aux_sym_cmd_identifier_token18] = ACTIONS(1953), - [aux_sym_cmd_identifier_token19] = ACTIONS(1953), - [aux_sym_cmd_identifier_token20] = ACTIONS(1953), - [aux_sym_cmd_identifier_token21] = ACTIONS(1953), - [aux_sym_cmd_identifier_token22] = ACTIONS(1953), - [aux_sym_cmd_identifier_token23] = ACTIONS(1953), - [aux_sym_cmd_identifier_token24] = ACTIONS(1953), - [aux_sym_cmd_identifier_token25] = ACTIONS(1953), - [aux_sym_cmd_identifier_token26] = ACTIONS(1953), - [aux_sym_cmd_identifier_token27] = ACTIONS(1953), - [aux_sym_cmd_identifier_token28] = ACTIONS(1953), - [aux_sym_cmd_identifier_token29] = ACTIONS(1953), - [aux_sym_cmd_identifier_token30] = ACTIONS(1953), - [aux_sym_cmd_identifier_token31] = ACTIONS(1953), - [aux_sym_cmd_identifier_token32] = ACTIONS(1953), - [aux_sym_cmd_identifier_token33] = ACTIONS(1953), - [aux_sym_cmd_identifier_token34] = ACTIONS(1953), - [aux_sym_cmd_identifier_token35] = ACTIONS(1953), - [aux_sym_cmd_identifier_token36] = ACTIONS(1953), - [anon_sym_true] = ACTIONS(1955), - [anon_sym_false] = ACTIONS(1955), - [anon_sym_null] = ACTIONS(1955), - [aux_sym_cmd_identifier_token38] = ACTIONS(1953), - [aux_sym_cmd_identifier_token39] = ACTIONS(1955), - [aux_sym_cmd_identifier_token40] = ACTIONS(1955), - [anon_sym_def] = ACTIONS(1953), - [anon_sym_export_DASHenv] = ACTIONS(1953), - [anon_sym_extern] = ACTIONS(1953), - [anon_sym_module] = ACTIONS(1953), - [anon_sym_use] = ACTIONS(1953), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_DOLLAR] = ACTIONS(1955), - [anon_sym_error] = ACTIONS(1953), - [anon_sym_list] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1953), - [anon_sym_break] = ACTIONS(1953), - [anon_sym_continue] = ACTIONS(1953), - [anon_sym_for] = ACTIONS(1953), - [anon_sym_in] = ACTIONS(1953), - [anon_sym_loop] = ACTIONS(1953), - [anon_sym_make] = ACTIONS(1953), - [anon_sym_while] = ACTIONS(1953), - [anon_sym_do] = ACTIONS(1953), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_else] = ACTIONS(1953), - [anon_sym_match] = ACTIONS(1953), - [anon_sym_RBRACE] = ACTIONS(1955), - [anon_sym_try] = ACTIONS(1953), - [anon_sym_catch] = ACTIONS(1953), - [anon_sym_return] = ACTIONS(1953), - [anon_sym_source] = ACTIONS(1953), - [anon_sym_source_DASHenv] = ACTIONS(1953), - [anon_sym_register] = ACTIONS(1953), - [anon_sym_hide] = ACTIONS(1953), - [anon_sym_hide_DASHenv] = ACTIONS(1953), - [anon_sym_overlay] = ACTIONS(1953), - [anon_sym_new] = ACTIONS(1953), - [anon_sym_as] = ACTIONS(1953), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1955), - [anon_sym_DOT_DOT2] = ACTIONS(1953), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1955), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1955), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1955), - [aux_sym__val_number_decimal_token1] = ACTIONS(1953), - [aux_sym__val_number_decimal_token2] = ACTIONS(1955), - [aux_sym__val_number_decimal_token3] = ACTIONS(1955), - [aux_sym__val_number_decimal_token4] = ACTIONS(1955), - [aux_sym__val_number_token1] = ACTIONS(1955), - [aux_sym__val_number_token2] = ACTIONS(1955), - [aux_sym__val_number_token3] = ACTIONS(1955), - [anon_sym_DQUOTE] = ACTIONS(1955), - [sym__str_single_quotes] = ACTIONS(1955), - [sym__str_back_ticks] = ACTIONS(1955), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1955), - [anon_sym_PLUS] = ACTIONS(1953), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(2303), + [anon_sym_alias] = ACTIONS(2303), + [anon_sym_let] = ACTIONS(2303), + [anon_sym_let_DASHenv] = ACTIONS(2303), + [anon_sym_mut] = ACTIONS(2303), + [anon_sym_const] = ACTIONS(2303), + [aux_sym_cmd_identifier_token1] = ACTIONS(2303), + [aux_sym_cmd_identifier_token2] = ACTIONS(2303), + [aux_sym_cmd_identifier_token3] = ACTIONS(2303), + [aux_sym_cmd_identifier_token4] = ACTIONS(2303), + [aux_sym_cmd_identifier_token5] = ACTIONS(2303), + [aux_sym_cmd_identifier_token6] = ACTIONS(2303), + [aux_sym_cmd_identifier_token7] = ACTIONS(2303), + [aux_sym_cmd_identifier_token8] = ACTIONS(2303), + [aux_sym_cmd_identifier_token9] = ACTIONS(2303), + [aux_sym_cmd_identifier_token10] = ACTIONS(2303), + [aux_sym_cmd_identifier_token11] = ACTIONS(2303), + [aux_sym_cmd_identifier_token12] = ACTIONS(2303), + [aux_sym_cmd_identifier_token13] = ACTIONS(2303), + [aux_sym_cmd_identifier_token14] = ACTIONS(2303), + [aux_sym_cmd_identifier_token15] = ACTIONS(2303), + [aux_sym_cmd_identifier_token16] = ACTIONS(2303), + [aux_sym_cmd_identifier_token17] = ACTIONS(2303), + [aux_sym_cmd_identifier_token18] = ACTIONS(2303), + [aux_sym_cmd_identifier_token19] = ACTIONS(2303), + [aux_sym_cmd_identifier_token20] = ACTIONS(2303), + [aux_sym_cmd_identifier_token21] = ACTIONS(2303), + [aux_sym_cmd_identifier_token22] = ACTIONS(2303), + [aux_sym_cmd_identifier_token23] = ACTIONS(2303), + [aux_sym_cmd_identifier_token24] = ACTIONS(2303), + [aux_sym_cmd_identifier_token25] = ACTIONS(2303), + [aux_sym_cmd_identifier_token26] = ACTIONS(2303), + [aux_sym_cmd_identifier_token27] = ACTIONS(2303), + [aux_sym_cmd_identifier_token28] = ACTIONS(2303), + [aux_sym_cmd_identifier_token29] = ACTIONS(2303), + [aux_sym_cmd_identifier_token30] = ACTIONS(2303), + [aux_sym_cmd_identifier_token31] = ACTIONS(2303), + [aux_sym_cmd_identifier_token32] = ACTIONS(2303), + [aux_sym_cmd_identifier_token33] = ACTIONS(2303), + [aux_sym_cmd_identifier_token34] = ACTIONS(2303), + [aux_sym_cmd_identifier_token35] = ACTIONS(2303), + [aux_sym_cmd_identifier_token36] = ACTIONS(2303), + [anon_sym_true] = ACTIONS(2303), + [anon_sym_false] = ACTIONS(2303), + [anon_sym_null] = ACTIONS(2303), + [aux_sym_cmd_identifier_token38] = ACTIONS(2303), + [aux_sym_cmd_identifier_token39] = ACTIONS(2303), + [aux_sym_cmd_identifier_token40] = ACTIONS(2303), + [anon_sym_def] = ACTIONS(2303), + [anon_sym_export_DASHenv] = ACTIONS(2303), + [anon_sym_extern] = ACTIONS(2303), + [anon_sym_module] = ACTIONS(2303), + [anon_sym_use] = ACTIONS(2303), + [anon_sym_LPAREN] = ACTIONS(2303), + [anon_sym_DOLLAR] = ACTIONS(2303), + [anon_sym_error] = ACTIONS(2303), + [anon_sym_list] = ACTIONS(2303), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_break] = ACTIONS(2303), + [anon_sym_continue] = ACTIONS(2303), + [anon_sym_for] = ACTIONS(2303), + [anon_sym_in] = ACTIONS(2303), + [anon_sym_loop] = ACTIONS(2303), + [anon_sym_make] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(2303), + [anon_sym_do] = ACTIONS(2303), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_else] = ACTIONS(2303), + [anon_sym_match] = ACTIONS(2303), + [anon_sym_RBRACE] = ACTIONS(2303), + [anon_sym_try] = ACTIONS(2303), + [anon_sym_catch] = ACTIONS(2303), + [anon_sym_return] = ACTIONS(2303), + [anon_sym_source] = ACTIONS(2303), + [anon_sym_source_DASHenv] = ACTIONS(2303), + [anon_sym_register] = ACTIONS(2303), + [anon_sym_hide] = ACTIONS(2303), + [anon_sym_hide_DASHenv] = ACTIONS(2303), + [anon_sym_overlay] = ACTIONS(2303), + [anon_sym_new] = ACTIONS(2303), + [anon_sym_as] = ACTIONS(2303), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2303), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2303), + [aux_sym__val_number_decimal_token1] = ACTIONS(2303), + [aux_sym__val_number_decimal_token2] = ACTIONS(2303), + [aux_sym__val_number_decimal_token3] = ACTIONS(2303), + [aux_sym__val_number_decimal_token4] = ACTIONS(2303), + [aux_sym__val_number_token1] = ACTIONS(2303), + [aux_sym__val_number_token2] = ACTIONS(2303), + [aux_sym__val_number_token3] = ACTIONS(2303), + [anon_sym_LBRACK2] = ACTIONS(2305), + [anon_sym_DQUOTE] = ACTIONS(2303), + [sym__str_single_quotes] = ACTIONS(2303), + [sym__str_back_ticks] = ACTIONS(2303), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2303), + [sym__entry_separator] = ACTIONS(2307), + [anon_sym_PLUS] = ACTIONS(2303), + [anon_sym_POUND] = ACTIONS(3), }, [467] = { [sym_comment] = STATE(467), - [anon_sym_export] = ACTIONS(1943), - [anon_sym_alias] = ACTIONS(1943), - [anon_sym_let] = ACTIONS(1943), - [anon_sym_let_DASHenv] = ACTIONS(1943), - [anon_sym_mut] = ACTIONS(1943), - [anon_sym_const] = ACTIONS(1943), - [aux_sym_cmd_identifier_token1] = ACTIONS(1943), - [aux_sym_cmd_identifier_token2] = ACTIONS(1943), - [aux_sym_cmd_identifier_token3] = ACTIONS(1943), - [aux_sym_cmd_identifier_token4] = ACTIONS(1943), - [aux_sym_cmd_identifier_token5] = ACTIONS(1943), - [aux_sym_cmd_identifier_token6] = ACTIONS(1943), - [aux_sym_cmd_identifier_token7] = ACTIONS(1943), - [aux_sym_cmd_identifier_token8] = ACTIONS(1943), - [aux_sym_cmd_identifier_token9] = ACTIONS(1943), - [aux_sym_cmd_identifier_token10] = ACTIONS(1943), - [aux_sym_cmd_identifier_token11] = ACTIONS(1943), - [aux_sym_cmd_identifier_token12] = ACTIONS(1943), - [aux_sym_cmd_identifier_token13] = ACTIONS(1943), - [aux_sym_cmd_identifier_token14] = ACTIONS(1943), - [aux_sym_cmd_identifier_token15] = ACTIONS(1943), - [aux_sym_cmd_identifier_token16] = ACTIONS(1943), - [aux_sym_cmd_identifier_token17] = ACTIONS(1943), - [aux_sym_cmd_identifier_token18] = ACTIONS(1943), - [aux_sym_cmd_identifier_token19] = ACTIONS(1943), - [aux_sym_cmd_identifier_token20] = ACTIONS(1943), - [aux_sym_cmd_identifier_token21] = ACTIONS(1943), - [aux_sym_cmd_identifier_token22] = ACTIONS(1943), - [aux_sym_cmd_identifier_token23] = ACTIONS(1943), - [aux_sym_cmd_identifier_token24] = ACTIONS(1943), - [aux_sym_cmd_identifier_token25] = ACTIONS(1943), - [aux_sym_cmd_identifier_token26] = ACTIONS(1943), - [aux_sym_cmd_identifier_token27] = ACTIONS(1943), - [aux_sym_cmd_identifier_token28] = ACTIONS(1943), - [aux_sym_cmd_identifier_token29] = ACTIONS(1943), - [aux_sym_cmd_identifier_token30] = ACTIONS(1943), - [aux_sym_cmd_identifier_token31] = ACTIONS(1943), - [aux_sym_cmd_identifier_token32] = ACTIONS(1943), - [aux_sym_cmd_identifier_token33] = ACTIONS(1943), - [aux_sym_cmd_identifier_token34] = ACTIONS(1943), - [aux_sym_cmd_identifier_token35] = ACTIONS(1943), - [aux_sym_cmd_identifier_token36] = ACTIONS(1943), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1945), - [aux_sym_cmd_identifier_token38] = ACTIONS(1943), - [aux_sym_cmd_identifier_token39] = ACTIONS(1945), - [aux_sym_cmd_identifier_token40] = ACTIONS(1945), - [anon_sym_def] = ACTIONS(1943), - [anon_sym_export_DASHenv] = ACTIONS(1943), - [anon_sym_extern] = ACTIONS(1943), - [anon_sym_module] = ACTIONS(1943), - [anon_sym_use] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_DOLLAR] = ACTIONS(1945), - [anon_sym_error] = ACTIONS(1943), - [anon_sym_list] = ACTIONS(1943), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_break] = ACTIONS(1943), - [anon_sym_continue] = ACTIONS(1943), - [anon_sym_for] = ACTIONS(1943), - [anon_sym_in] = ACTIONS(1943), - [anon_sym_loop] = ACTIONS(1943), - [anon_sym_make] = ACTIONS(1943), - [anon_sym_while] = ACTIONS(1943), - [anon_sym_do] = ACTIONS(1943), - [anon_sym_if] = ACTIONS(1943), - [anon_sym_else] = ACTIONS(1943), - [anon_sym_match] = ACTIONS(1943), - [anon_sym_RBRACE] = ACTIONS(1945), - [anon_sym_try] = ACTIONS(1943), - [anon_sym_catch] = ACTIONS(1943), - [anon_sym_return] = ACTIONS(1943), - [anon_sym_source] = ACTIONS(1943), - [anon_sym_source_DASHenv] = ACTIONS(1943), - [anon_sym_register] = ACTIONS(1943), - [anon_sym_hide] = ACTIONS(1943), - [anon_sym_hide_DASHenv] = ACTIONS(1943), - [anon_sym_overlay] = ACTIONS(1943), - [anon_sym_new] = ACTIONS(1943), - [anon_sym_as] = ACTIONS(1943), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1945), - [anon_sym_DOT_DOT2] = ACTIONS(1943), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1945), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1945), - [aux_sym__val_number_decimal_token4] = ACTIONS(1945), - [aux_sym__val_number_token1] = ACTIONS(1945), - [aux_sym__val_number_token2] = ACTIONS(1945), - [aux_sym__val_number_token3] = ACTIONS(1945), - [anon_sym_DQUOTE] = ACTIONS(1945), - [sym__str_single_quotes] = ACTIONS(1945), - [sym__str_back_ticks] = ACTIONS(1945), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1945), - [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_export] = ACTIONS(1064), + [anon_sym_alias] = ACTIONS(1064), + [anon_sym_let] = ACTIONS(1064), + [anon_sym_let_DASHenv] = ACTIONS(1064), + [anon_sym_mut] = ACTIONS(1064), + [anon_sym_const] = ACTIONS(1064), + [aux_sym_cmd_identifier_token1] = ACTIONS(1064), + [aux_sym_cmd_identifier_token2] = ACTIONS(1064), + [aux_sym_cmd_identifier_token3] = ACTIONS(1064), + [aux_sym_cmd_identifier_token4] = ACTIONS(1064), + [aux_sym_cmd_identifier_token5] = ACTIONS(1064), + [aux_sym_cmd_identifier_token6] = ACTIONS(1064), + [aux_sym_cmd_identifier_token7] = ACTIONS(1064), + [aux_sym_cmd_identifier_token8] = ACTIONS(1064), + [aux_sym_cmd_identifier_token9] = ACTIONS(1064), + [aux_sym_cmd_identifier_token10] = ACTIONS(1064), + [aux_sym_cmd_identifier_token11] = ACTIONS(1064), + [aux_sym_cmd_identifier_token12] = ACTIONS(1064), + [aux_sym_cmd_identifier_token13] = ACTIONS(1064), + [aux_sym_cmd_identifier_token14] = ACTIONS(1064), + [aux_sym_cmd_identifier_token15] = ACTIONS(1064), + [aux_sym_cmd_identifier_token16] = ACTIONS(1064), + [aux_sym_cmd_identifier_token17] = ACTIONS(1064), + [aux_sym_cmd_identifier_token18] = ACTIONS(1064), + [aux_sym_cmd_identifier_token19] = ACTIONS(1064), + [aux_sym_cmd_identifier_token20] = ACTIONS(1064), + [aux_sym_cmd_identifier_token21] = ACTIONS(1064), + [aux_sym_cmd_identifier_token22] = ACTIONS(1064), + [aux_sym_cmd_identifier_token23] = ACTIONS(1064), + [aux_sym_cmd_identifier_token24] = ACTIONS(1064), + [aux_sym_cmd_identifier_token25] = ACTIONS(1064), + [aux_sym_cmd_identifier_token26] = ACTIONS(1064), + [aux_sym_cmd_identifier_token27] = ACTIONS(1064), + [aux_sym_cmd_identifier_token28] = ACTIONS(1064), + [aux_sym_cmd_identifier_token29] = ACTIONS(1064), + [aux_sym_cmd_identifier_token30] = ACTIONS(1064), + [aux_sym_cmd_identifier_token31] = ACTIONS(1064), + [aux_sym_cmd_identifier_token32] = ACTIONS(1064), + [aux_sym_cmd_identifier_token33] = ACTIONS(1064), + [aux_sym_cmd_identifier_token34] = ACTIONS(1064), + [aux_sym_cmd_identifier_token35] = ACTIONS(1064), + [aux_sym_cmd_identifier_token36] = ACTIONS(1064), + [anon_sym_true] = ACTIONS(1066), + [anon_sym_false] = ACTIONS(1066), + [anon_sym_null] = ACTIONS(1066), + [aux_sym_cmd_identifier_token38] = ACTIONS(1064), + [aux_sym_cmd_identifier_token39] = ACTIONS(1066), + [aux_sym_cmd_identifier_token40] = ACTIONS(1066), + [anon_sym_def] = ACTIONS(1064), + [anon_sym_export_DASHenv] = ACTIONS(1064), + [anon_sym_extern] = ACTIONS(1064), + [anon_sym_module] = ACTIONS(1064), + [anon_sym_use] = ACTIONS(1064), + [anon_sym_LPAREN] = ACTIONS(1066), + [anon_sym_COMMA] = ACTIONS(1066), + [anon_sym_DOLLAR] = ACTIONS(1066), + [anon_sym_error] = ACTIONS(1064), + [anon_sym_list] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1064), + [anon_sym_for] = ACTIONS(1064), + [anon_sym_in] = ACTIONS(1064), + [anon_sym_loop] = ACTIONS(1064), + [anon_sym_make] = ACTIONS(1064), + [anon_sym_while] = ACTIONS(1064), + [anon_sym_do] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1064), + [anon_sym_else] = ACTIONS(1064), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_RBRACE] = ACTIONS(1066), + [anon_sym_try] = ACTIONS(1064), + [anon_sym_catch] = ACTIONS(1064), + [anon_sym_return] = ACTIONS(1064), + [anon_sym_source] = ACTIONS(1064), + [anon_sym_source_DASHenv] = ACTIONS(1064), + [anon_sym_register] = ACTIONS(1064), + [anon_sym_hide] = ACTIONS(1064), + [anon_sym_hide_DASHenv] = ACTIONS(1064), + [anon_sym_overlay] = ACTIONS(1064), + [anon_sym_new] = ACTIONS(1064), + [anon_sym_as] = ACTIONS(1064), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1066), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1066), + [aux_sym__val_number_decimal_token1] = ACTIONS(1064), + [aux_sym__val_number_decimal_token2] = ACTIONS(1066), + [aux_sym__val_number_decimal_token3] = ACTIONS(1066), + [aux_sym__val_number_decimal_token4] = ACTIONS(1066), + [aux_sym__val_number_token1] = ACTIONS(1066), + [aux_sym__val_number_token2] = ACTIONS(1066), + [aux_sym__val_number_token3] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [sym__str_single_quotes] = ACTIONS(1066), + [sym__str_back_ticks] = ACTIONS(1066), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1066), + [aux_sym_record_entry_token1] = ACTIONS(1066), + [anon_sym_PLUS] = ACTIONS(1064), [anon_sym_POUND] = ACTIONS(247), }, [468] = { [sym_comment] = STATE(468), - [anon_sym_export] = ACTIONS(1589), - [anon_sym_alias] = ACTIONS(1589), - [anon_sym_let] = ACTIONS(1589), - [anon_sym_let_DASHenv] = ACTIONS(1589), - [anon_sym_mut] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [aux_sym_cmd_identifier_token1] = ACTIONS(1589), - [aux_sym_cmd_identifier_token2] = ACTIONS(1589), - [aux_sym_cmd_identifier_token3] = ACTIONS(1589), - [aux_sym_cmd_identifier_token4] = ACTIONS(1589), - [aux_sym_cmd_identifier_token5] = ACTIONS(1589), - [aux_sym_cmd_identifier_token6] = ACTIONS(1589), - [aux_sym_cmd_identifier_token7] = ACTIONS(1589), - [aux_sym_cmd_identifier_token8] = ACTIONS(1589), - [aux_sym_cmd_identifier_token9] = ACTIONS(1589), - [aux_sym_cmd_identifier_token10] = ACTIONS(1589), - [aux_sym_cmd_identifier_token11] = ACTIONS(1589), - [aux_sym_cmd_identifier_token12] = ACTIONS(1589), - [aux_sym_cmd_identifier_token13] = ACTIONS(1589), - [aux_sym_cmd_identifier_token14] = ACTIONS(1589), - [aux_sym_cmd_identifier_token15] = ACTIONS(1589), - [aux_sym_cmd_identifier_token16] = ACTIONS(1589), - [aux_sym_cmd_identifier_token17] = ACTIONS(1589), - [aux_sym_cmd_identifier_token18] = ACTIONS(1589), - [aux_sym_cmd_identifier_token19] = ACTIONS(1589), - [aux_sym_cmd_identifier_token20] = ACTIONS(1589), - [aux_sym_cmd_identifier_token21] = ACTIONS(1589), - [aux_sym_cmd_identifier_token22] = ACTIONS(1589), - [aux_sym_cmd_identifier_token23] = ACTIONS(1589), - [aux_sym_cmd_identifier_token24] = ACTIONS(1589), - [aux_sym_cmd_identifier_token25] = ACTIONS(1589), - [aux_sym_cmd_identifier_token26] = ACTIONS(1589), - [aux_sym_cmd_identifier_token27] = ACTIONS(1589), - [aux_sym_cmd_identifier_token28] = ACTIONS(1589), - [aux_sym_cmd_identifier_token29] = ACTIONS(1589), - [aux_sym_cmd_identifier_token30] = ACTIONS(1589), - [aux_sym_cmd_identifier_token31] = ACTIONS(1589), - [aux_sym_cmd_identifier_token32] = ACTIONS(1589), - [aux_sym_cmd_identifier_token33] = ACTIONS(1589), - [aux_sym_cmd_identifier_token34] = ACTIONS(1589), - [aux_sym_cmd_identifier_token35] = ACTIONS(1589), - [aux_sym_cmd_identifier_token36] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [anon_sym_null] = ACTIONS(1591), - [aux_sym_cmd_identifier_token38] = ACTIONS(1589), - [aux_sym_cmd_identifier_token39] = ACTIONS(1591), - [aux_sym_cmd_identifier_token40] = ACTIONS(1591), - [anon_sym_def] = ACTIONS(1589), - [anon_sym_export_DASHenv] = ACTIONS(1589), - [anon_sym_extern] = ACTIONS(1589), - [anon_sym_module] = ACTIONS(1589), - [anon_sym_use] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1591), - [anon_sym_DOLLAR] = ACTIONS(1591), - [anon_sym_error] = ACTIONS(1589), - [anon_sym_list] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_loop] = ACTIONS(1589), - [anon_sym_make] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_else] = ACTIONS(1589), - [anon_sym_match] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_try] = ACTIONS(1589), - [anon_sym_catch] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_source] = ACTIONS(1589), - [anon_sym_source_DASHenv] = ACTIONS(1589), - [anon_sym_register] = ACTIONS(1589), - [anon_sym_hide] = ACTIONS(1589), - [anon_sym_hide_DASHenv] = ACTIONS(1589), - [anon_sym_overlay] = ACTIONS(1589), - [anon_sym_new] = ACTIONS(1589), - [anon_sym_as] = ACTIONS(1589), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1591), - [anon_sym_DOT_DOT2] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1591), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token3] = ACTIONS(1591), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(1591), - [aux_sym__val_number_token2] = ACTIONS(1591), - [aux_sym__val_number_token3] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym__str_single_quotes] = ACTIONS(1591), - [sym__str_back_ticks] = ACTIONS(1591), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1591), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(2309), + [anon_sym_alias] = ACTIONS(2309), + [anon_sym_let] = ACTIONS(2309), + [anon_sym_let_DASHenv] = ACTIONS(2309), + [anon_sym_mut] = ACTIONS(2309), + [anon_sym_const] = ACTIONS(2309), + [aux_sym_cmd_identifier_token1] = ACTIONS(2309), + [aux_sym_cmd_identifier_token2] = ACTIONS(2309), + [aux_sym_cmd_identifier_token3] = ACTIONS(2309), + [aux_sym_cmd_identifier_token4] = ACTIONS(2309), + [aux_sym_cmd_identifier_token5] = ACTIONS(2309), + [aux_sym_cmd_identifier_token6] = ACTIONS(2309), + [aux_sym_cmd_identifier_token7] = ACTIONS(2309), + [aux_sym_cmd_identifier_token8] = ACTIONS(2309), + [aux_sym_cmd_identifier_token9] = ACTIONS(2309), + [aux_sym_cmd_identifier_token10] = ACTIONS(2309), + [aux_sym_cmd_identifier_token11] = ACTIONS(2309), + [aux_sym_cmd_identifier_token12] = ACTIONS(2309), + [aux_sym_cmd_identifier_token13] = ACTIONS(2309), + [aux_sym_cmd_identifier_token14] = ACTIONS(2309), + [aux_sym_cmd_identifier_token15] = ACTIONS(2309), + [aux_sym_cmd_identifier_token16] = ACTIONS(2309), + [aux_sym_cmd_identifier_token17] = ACTIONS(2309), + [aux_sym_cmd_identifier_token18] = ACTIONS(2309), + [aux_sym_cmd_identifier_token19] = ACTIONS(2309), + [aux_sym_cmd_identifier_token20] = ACTIONS(2309), + [aux_sym_cmd_identifier_token21] = ACTIONS(2309), + [aux_sym_cmd_identifier_token22] = ACTIONS(2309), + [aux_sym_cmd_identifier_token23] = ACTIONS(2309), + [aux_sym_cmd_identifier_token24] = ACTIONS(2309), + [aux_sym_cmd_identifier_token25] = ACTIONS(2309), + [aux_sym_cmd_identifier_token26] = ACTIONS(2309), + [aux_sym_cmd_identifier_token27] = ACTIONS(2309), + [aux_sym_cmd_identifier_token28] = ACTIONS(2309), + [aux_sym_cmd_identifier_token29] = ACTIONS(2309), + [aux_sym_cmd_identifier_token30] = ACTIONS(2309), + [aux_sym_cmd_identifier_token31] = ACTIONS(2309), + [aux_sym_cmd_identifier_token32] = ACTIONS(2309), + [aux_sym_cmd_identifier_token33] = ACTIONS(2309), + [aux_sym_cmd_identifier_token34] = ACTIONS(2309), + [aux_sym_cmd_identifier_token35] = ACTIONS(2309), + [aux_sym_cmd_identifier_token36] = ACTIONS(2309), + [anon_sym_true] = ACTIONS(2309), + [anon_sym_false] = ACTIONS(2309), + [anon_sym_null] = ACTIONS(2309), + [aux_sym_cmd_identifier_token38] = ACTIONS(2309), + [aux_sym_cmd_identifier_token39] = ACTIONS(2309), + [aux_sym_cmd_identifier_token40] = ACTIONS(2309), + [anon_sym_def] = ACTIONS(2309), + [anon_sym_export_DASHenv] = ACTIONS(2309), + [anon_sym_extern] = ACTIONS(2309), + [anon_sym_module] = ACTIONS(2309), + [anon_sym_use] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(2309), + [anon_sym_DOLLAR] = ACTIONS(2309), + [anon_sym_error] = ACTIONS(2309), + [anon_sym_list] = ACTIONS(2309), + [anon_sym_DASH] = ACTIONS(2309), + [anon_sym_break] = ACTIONS(2309), + [anon_sym_continue] = ACTIONS(2309), + [anon_sym_for] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2309), + [anon_sym_loop] = ACTIONS(2309), + [anon_sym_make] = ACTIONS(2309), + [anon_sym_while] = ACTIONS(2309), + [anon_sym_do] = ACTIONS(2309), + [anon_sym_if] = ACTIONS(2309), + [anon_sym_else] = ACTIONS(2309), + [anon_sym_match] = ACTIONS(2309), + [anon_sym_RBRACE] = ACTIONS(2309), + [anon_sym_try] = ACTIONS(2309), + [anon_sym_catch] = ACTIONS(2309), + [anon_sym_return] = ACTIONS(2309), + [anon_sym_source] = ACTIONS(2309), + [anon_sym_source_DASHenv] = ACTIONS(2309), + [anon_sym_register] = ACTIONS(2309), + [anon_sym_hide] = ACTIONS(2309), + [anon_sym_hide_DASHenv] = ACTIONS(2309), + [anon_sym_overlay] = ACTIONS(2309), + [anon_sym_new] = ACTIONS(2309), + [anon_sym_as] = ACTIONS(2309), + [anon_sym_LPAREN2] = ACTIONS(2311), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2309), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2309), + [aux_sym__val_number_decimal_token2] = ACTIONS(2309), + [aux_sym__val_number_decimal_token3] = ACTIONS(2309), + [aux_sym__val_number_decimal_token4] = ACTIONS(2309), + [aux_sym__val_number_token1] = ACTIONS(2309), + [aux_sym__val_number_token2] = ACTIONS(2309), + [aux_sym__val_number_token3] = ACTIONS(2309), + [anon_sym_DQUOTE] = ACTIONS(2309), + [sym__str_single_quotes] = ACTIONS(2309), + [sym__str_back_ticks] = ACTIONS(2309), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2309), + [sym__entry_separator] = ACTIONS(2311), + [anon_sym_PLUS] = ACTIONS(2309), + [anon_sym_POUND] = ACTIONS(3), }, [469] = { [sym_comment] = STATE(469), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_alias] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_let_DASHenv] = ACTIONS(2105), - [anon_sym_mut] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [aux_sym_cmd_identifier_token1] = ACTIONS(2105), - [aux_sym_cmd_identifier_token2] = ACTIONS(2105), - [aux_sym_cmd_identifier_token3] = ACTIONS(2105), - [aux_sym_cmd_identifier_token4] = ACTIONS(2105), - [aux_sym_cmd_identifier_token5] = ACTIONS(2105), - [aux_sym_cmd_identifier_token6] = ACTIONS(2105), - [aux_sym_cmd_identifier_token7] = ACTIONS(2105), - [aux_sym_cmd_identifier_token8] = ACTIONS(2105), - [aux_sym_cmd_identifier_token9] = ACTIONS(2105), - [aux_sym_cmd_identifier_token10] = ACTIONS(2105), - [aux_sym_cmd_identifier_token11] = ACTIONS(2105), - [aux_sym_cmd_identifier_token12] = ACTIONS(2105), - [aux_sym_cmd_identifier_token13] = ACTIONS(2105), - [aux_sym_cmd_identifier_token14] = ACTIONS(2105), - [aux_sym_cmd_identifier_token15] = ACTIONS(2105), - [aux_sym_cmd_identifier_token16] = ACTIONS(2105), - [aux_sym_cmd_identifier_token17] = ACTIONS(2105), - [aux_sym_cmd_identifier_token18] = ACTIONS(2105), - [aux_sym_cmd_identifier_token19] = ACTIONS(2105), - [aux_sym_cmd_identifier_token20] = ACTIONS(2105), - [aux_sym_cmd_identifier_token21] = ACTIONS(2105), - [aux_sym_cmd_identifier_token22] = ACTIONS(2105), - [aux_sym_cmd_identifier_token23] = ACTIONS(2105), - [aux_sym_cmd_identifier_token24] = ACTIONS(2105), - [aux_sym_cmd_identifier_token25] = ACTIONS(2105), - [aux_sym_cmd_identifier_token26] = ACTIONS(2105), - [aux_sym_cmd_identifier_token27] = ACTIONS(2105), - [aux_sym_cmd_identifier_token28] = ACTIONS(2105), - [aux_sym_cmd_identifier_token29] = ACTIONS(2105), - [aux_sym_cmd_identifier_token30] = ACTIONS(2105), - [aux_sym_cmd_identifier_token31] = ACTIONS(2105), - [aux_sym_cmd_identifier_token32] = ACTIONS(2105), - [aux_sym_cmd_identifier_token33] = ACTIONS(2105), - [aux_sym_cmd_identifier_token34] = ACTIONS(2105), - [aux_sym_cmd_identifier_token35] = ACTIONS(2105), - [aux_sym_cmd_identifier_token36] = ACTIONS(2105), - [anon_sym_true] = ACTIONS(2105), - [anon_sym_false] = ACTIONS(2105), - [anon_sym_null] = ACTIONS(2105), - [aux_sym_cmd_identifier_token38] = ACTIONS(2105), - [aux_sym_cmd_identifier_token39] = ACTIONS(2105), - [aux_sym_cmd_identifier_token40] = ACTIONS(2105), - [anon_sym_def] = ACTIONS(2105), - [anon_sym_export_DASHenv] = ACTIONS(2105), - [anon_sym_extern] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_use] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_DOLLAR] = ACTIONS(2105), - [anon_sym_error] = ACTIONS(2105), - [anon_sym_list] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_in] = ACTIONS(2105), - [anon_sym_loop] = ACTIONS(2105), - [anon_sym_make] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_else] = ACTIONS(2105), - [anon_sym_match] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2107), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_catch] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_source] = ACTIONS(2105), - [anon_sym_source_DASHenv] = ACTIONS(2105), - [anon_sym_register] = ACTIONS(2105), - [anon_sym_hide] = ACTIONS(2105), - [anon_sym_hide_DASHenv] = ACTIONS(2105), - [anon_sym_overlay] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_as] = ACTIONS(2105), - [anon_sym_LPAREN2] = ACTIONS(2099), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2105), - [aux_sym__val_number_decimal_token1] = ACTIONS(2105), - [aux_sym__val_number_decimal_token2] = ACTIONS(2105), - [aux_sym__val_number_decimal_token3] = ACTIONS(2105), - [aux_sym__val_number_decimal_token4] = ACTIONS(2105), - [aux_sym__val_number_token1] = ACTIONS(2105), - [aux_sym__val_number_token2] = ACTIONS(2105), - [aux_sym__val_number_token3] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2107), - [sym__str_single_quotes] = ACTIONS(2107), - [sym__str_back_ticks] = ACTIONS(2107), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2107), - [anon_sym_PLUS] = ACTIONS(2105), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2103), + [aux_sym__multiple_types_repeat1] = STATE(504), + [anon_sym_export] = ACTIONS(2313), + [anon_sym_alias] = ACTIONS(2313), + [anon_sym_let] = ACTIONS(2313), + [anon_sym_let_DASHenv] = ACTIONS(2313), + [anon_sym_mut] = ACTIONS(2313), + [anon_sym_const] = ACTIONS(2313), + [aux_sym_cmd_identifier_token1] = ACTIONS(2313), + [aux_sym_cmd_identifier_token2] = ACTIONS(2313), + [aux_sym_cmd_identifier_token3] = ACTIONS(2313), + [aux_sym_cmd_identifier_token4] = ACTIONS(2313), + [aux_sym_cmd_identifier_token5] = ACTIONS(2313), + [aux_sym_cmd_identifier_token6] = ACTIONS(2313), + [aux_sym_cmd_identifier_token7] = ACTIONS(2313), + [aux_sym_cmd_identifier_token8] = ACTIONS(2313), + [aux_sym_cmd_identifier_token9] = ACTIONS(2313), + [aux_sym_cmd_identifier_token10] = ACTIONS(2313), + [aux_sym_cmd_identifier_token11] = ACTIONS(2313), + [aux_sym_cmd_identifier_token12] = ACTIONS(2313), + [aux_sym_cmd_identifier_token13] = ACTIONS(2313), + [aux_sym_cmd_identifier_token14] = ACTIONS(2313), + [aux_sym_cmd_identifier_token15] = ACTIONS(2313), + [aux_sym_cmd_identifier_token16] = ACTIONS(2313), + [aux_sym_cmd_identifier_token17] = ACTIONS(2313), + [aux_sym_cmd_identifier_token18] = ACTIONS(2313), + [aux_sym_cmd_identifier_token19] = ACTIONS(2313), + [aux_sym_cmd_identifier_token20] = ACTIONS(2313), + [aux_sym_cmd_identifier_token21] = ACTIONS(2313), + [aux_sym_cmd_identifier_token22] = ACTIONS(2313), + [aux_sym_cmd_identifier_token23] = ACTIONS(2313), + [aux_sym_cmd_identifier_token24] = ACTIONS(2313), + [aux_sym_cmd_identifier_token25] = ACTIONS(2313), + [aux_sym_cmd_identifier_token26] = ACTIONS(2313), + [aux_sym_cmd_identifier_token27] = ACTIONS(2313), + [aux_sym_cmd_identifier_token28] = ACTIONS(2313), + [aux_sym_cmd_identifier_token29] = ACTIONS(2313), + [aux_sym_cmd_identifier_token30] = ACTIONS(2313), + [aux_sym_cmd_identifier_token31] = ACTIONS(2313), + [aux_sym_cmd_identifier_token32] = ACTIONS(2313), + [aux_sym_cmd_identifier_token33] = ACTIONS(2313), + [aux_sym_cmd_identifier_token34] = ACTIONS(2313), + [aux_sym_cmd_identifier_token35] = ACTIONS(2313), + [aux_sym_cmd_identifier_token36] = ACTIONS(2313), + [anon_sym_true] = ACTIONS(2313), + [anon_sym_false] = ACTIONS(2313), + [anon_sym_null] = ACTIONS(2313), + [aux_sym_cmd_identifier_token38] = ACTIONS(2313), + [aux_sym_cmd_identifier_token39] = ACTIONS(2313), + [aux_sym_cmd_identifier_token40] = ACTIONS(2313), + [anon_sym_def] = ACTIONS(2313), + [anon_sym_export_DASHenv] = ACTIONS(2313), + [anon_sym_extern] = ACTIONS(2313), + [anon_sym_module] = ACTIONS(2313), + [anon_sym_use] = ACTIONS(2313), + [anon_sym_LPAREN] = ACTIONS(2313), + [anon_sym_DOLLAR] = ACTIONS(2313), + [anon_sym_error] = ACTIONS(2313), + [anon_sym_list] = ACTIONS(2313), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_break] = ACTIONS(2313), + [anon_sym_continue] = ACTIONS(2313), + [anon_sym_for] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2313), + [anon_sym_loop] = ACTIONS(2313), + [anon_sym_make] = ACTIONS(2313), + [anon_sym_while] = ACTIONS(2313), + [anon_sym_do] = ACTIONS(2313), + [anon_sym_if] = ACTIONS(2313), + [anon_sym_else] = ACTIONS(2313), + [anon_sym_match] = ACTIONS(2313), + [anon_sym_RBRACE] = ACTIONS(2315), + [anon_sym_try] = ACTIONS(2313), + [anon_sym_catch] = ACTIONS(2313), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_source] = ACTIONS(2313), + [anon_sym_source_DASHenv] = ACTIONS(2313), + [anon_sym_register] = ACTIONS(2313), + [anon_sym_hide] = ACTIONS(2313), + [anon_sym_hide_DASHenv] = ACTIONS(2313), + [anon_sym_overlay] = ACTIONS(2313), + [anon_sym_new] = ACTIONS(2313), + [anon_sym_as] = ACTIONS(2313), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2313), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2313), + [aux_sym__val_number_decimal_token1] = ACTIONS(2313), + [aux_sym__val_number_decimal_token2] = ACTIONS(2313), + [aux_sym__val_number_decimal_token3] = ACTIONS(2313), + [aux_sym__val_number_decimal_token4] = ACTIONS(2313), + [aux_sym__val_number_token1] = ACTIONS(2313), + [aux_sym__val_number_token2] = ACTIONS(2313), + [aux_sym__val_number_token3] = ACTIONS(2313), + [anon_sym_DQUOTE] = ACTIONS(2313), + [sym__str_single_quotes] = ACTIONS(2313), + [sym__str_back_ticks] = ACTIONS(2313), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2313), + [sym__entry_separator] = ACTIONS(2317), + [anon_sym_PLUS] = ACTIONS(2313), [anon_sym_POUND] = ACTIONS(3), }, [470] = { [sym_comment] = STATE(470), - [anon_sym_export] = ACTIONS(2131), - [anon_sym_alias] = ACTIONS(2131), - [anon_sym_let] = ACTIONS(2131), - [anon_sym_let_DASHenv] = ACTIONS(2131), - [anon_sym_mut] = ACTIONS(2131), - [anon_sym_const] = ACTIONS(2131), - [aux_sym_cmd_identifier_token1] = ACTIONS(2131), - [aux_sym_cmd_identifier_token2] = ACTIONS(2131), - [aux_sym_cmd_identifier_token3] = ACTIONS(2131), - [aux_sym_cmd_identifier_token4] = ACTIONS(2131), - [aux_sym_cmd_identifier_token5] = ACTIONS(2131), - [aux_sym_cmd_identifier_token6] = ACTIONS(2131), - [aux_sym_cmd_identifier_token7] = ACTIONS(2131), - [aux_sym_cmd_identifier_token8] = ACTIONS(2131), - [aux_sym_cmd_identifier_token9] = ACTIONS(2131), - [aux_sym_cmd_identifier_token10] = ACTIONS(2131), - [aux_sym_cmd_identifier_token11] = ACTIONS(2131), - [aux_sym_cmd_identifier_token12] = ACTIONS(2131), - [aux_sym_cmd_identifier_token13] = ACTIONS(2131), - [aux_sym_cmd_identifier_token14] = ACTIONS(2131), - [aux_sym_cmd_identifier_token15] = ACTIONS(2131), - [aux_sym_cmd_identifier_token16] = ACTIONS(2131), - [aux_sym_cmd_identifier_token17] = ACTIONS(2131), - [aux_sym_cmd_identifier_token18] = ACTIONS(2131), - [aux_sym_cmd_identifier_token19] = ACTIONS(2131), - [aux_sym_cmd_identifier_token20] = ACTIONS(2131), - [aux_sym_cmd_identifier_token21] = ACTIONS(2131), - [aux_sym_cmd_identifier_token22] = ACTIONS(2131), - [aux_sym_cmd_identifier_token23] = ACTIONS(2131), - [aux_sym_cmd_identifier_token24] = ACTIONS(2131), - [aux_sym_cmd_identifier_token25] = ACTIONS(2131), - [aux_sym_cmd_identifier_token26] = ACTIONS(2131), - [aux_sym_cmd_identifier_token27] = ACTIONS(2131), - [aux_sym_cmd_identifier_token28] = ACTIONS(2131), - [aux_sym_cmd_identifier_token29] = ACTIONS(2131), - [aux_sym_cmd_identifier_token30] = ACTIONS(2131), - [aux_sym_cmd_identifier_token31] = ACTIONS(2131), - [aux_sym_cmd_identifier_token32] = ACTIONS(2131), - [aux_sym_cmd_identifier_token33] = ACTIONS(2131), - [aux_sym_cmd_identifier_token34] = ACTIONS(2131), - [aux_sym_cmd_identifier_token35] = ACTIONS(2131), - [aux_sym_cmd_identifier_token36] = ACTIONS(2131), - [anon_sym_true] = ACTIONS(2131), - [anon_sym_false] = ACTIONS(2131), - [anon_sym_null] = ACTIONS(2131), - [aux_sym_cmd_identifier_token38] = ACTIONS(2131), - [aux_sym_cmd_identifier_token39] = ACTIONS(2131), - [aux_sym_cmd_identifier_token40] = ACTIONS(2131), - [anon_sym_def] = ACTIONS(2131), - [anon_sym_export_DASHenv] = ACTIONS(2131), - [anon_sym_extern] = ACTIONS(2131), - [anon_sym_module] = ACTIONS(2131), - [anon_sym_use] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_DOLLAR] = ACTIONS(2131), - [anon_sym_error] = ACTIONS(2131), - [anon_sym_list] = ACTIONS(2131), - [anon_sym_DASH] = ACTIONS(2131), - [anon_sym_break] = ACTIONS(2131), - [anon_sym_continue] = ACTIONS(2131), - [anon_sym_for] = ACTIONS(2131), - [anon_sym_in] = ACTIONS(2131), - [anon_sym_loop] = ACTIONS(2131), - [anon_sym_make] = ACTIONS(2131), - [anon_sym_while] = ACTIONS(2131), - [anon_sym_do] = ACTIONS(2131), - [anon_sym_if] = ACTIONS(2131), - [anon_sym_else] = ACTIONS(2131), - [anon_sym_match] = ACTIONS(2131), - [anon_sym_RBRACE] = ACTIONS(2133), - [anon_sym_try] = ACTIONS(2131), - [anon_sym_catch] = ACTIONS(2131), - [anon_sym_return] = ACTIONS(2131), - [anon_sym_source] = ACTIONS(2131), - [anon_sym_source_DASHenv] = ACTIONS(2131), - [anon_sym_register] = ACTIONS(2131), - [anon_sym_hide] = ACTIONS(2131), - [anon_sym_hide_DASHenv] = ACTIONS(2131), - [anon_sym_overlay] = ACTIONS(2131), - [anon_sym_new] = ACTIONS(2131), - [anon_sym_as] = ACTIONS(2131), - [anon_sym_LPAREN2] = ACTIONS(2133), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2133), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2131), - [aux_sym__val_number_decimal_token1] = ACTIONS(2131), - [aux_sym__val_number_decimal_token2] = ACTIONS(2131), - [aux_sym__val_number_decimal_token3] = ACTIONS(2131), - [aux_sym__val_number_decimal_token4] = ACTIONS(2131), - [aux_sym__val_number_token1] = ACTIONS(2131), - [aux_sym__val_number_token2] = ACTIONS(2131), - [aux_sym__val_number_token3] = ACTIONS(2131), - [anon_sym_DQUOTE] = ACTIONS(2133), - [sym__str_single_quotes] = ACTIONS(2133), - [sym__str_back_ticks] = ACTIONS(2133), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2133), - [anon_sym_PLUS] = ACTIONS(2131), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2131), + [aux_sym__multiple_types_repeat1] = STATE(504), + [anon_sym_export] = ACTIONS(2313), + [anon_sym_alias] = ACTIONS(2313), + [anon_sym_let] = ACTIONS(2313), + [anon_sym_let_DASHenv] = ACTIONS(2313), + [anon_sym_mut] = ACTIONS(2313), + [anon_sym_const] = ACTIONS(2313), + [aux_sym_cmd_identifier_token1] = ACTIONS(2313), + [aux_sym_cmd_identifier_token2] = ACTIONS(2313), + [aux_sym_cmd_identifier_token3] = ACTIONS(2313), + [aux_sym_cmd_identifier_token4] = ACTIONS(2313), + [aux_sym_cmd_identifier_token5] = ACTIONS(2313), + [aux_sym_cmd_identifier_token6] = ACTIONS(2313), + [aux_sym_cmd_identifier_token7] = ACTIONS(2313), + [aux_sym_cmd_identifier_token8] = ACTIONS(2313), + [aux_sym_cmd_identifier_token9] = ACTIONS(2313), + [aux_sym_cmd_identifier_token10] = ACTIONS(2313), + [aux_sym_cmd_identifier_token11] = ACTIONS(2313), + [aux_sym_cmd_identifier_token12] = ACTIONS(2313), + [aux_sym_cmd_identifier_token13] = ACTIONS(2313), + [aux_sym_cmd_identifier_token14] = ACTIONS(2313), + [aux_sym_cmd_identifier_token15] = ACTIONS(2313), + [aux_sym_cmd_identifier_token16] = ACTIONS(2313), + [aux_sym_cmd_identifier_token17] = ACTIONS(2313), + [aux_sym_cmd_identifier_token18] = ACTIONS(2313), + [aux_sym_cmd_identifier_token19] = ACTIONS(2313), + [aux_sym_cmd_identifier_token20] = ACTIONS(2313), + [aux_sym_cmd_identifier_token21] = ACTIONS(2313), + [aux_sym_cmd_identifier_token22] = ACTIONS(2313), + [aux_sym_cmd_identifier_token23] = ACTIONS(2313), + [aux_sym_cmd_identifier_token24] = ACTIONS(2313), + [aux_sym_cmd_identifier_token25] = ACTIONS(2313), + [aux_sym_cmd_identifier_token26] = ACTIONS(2313), + [aux_sym_cmd_identifier_token27] = ACTIONS(2313), + [aux_sym_cmd_identifier_token28] = ACTIONS(2313), + [aux_sym_cmd_identifier_token29] = ACTIONS(2313), + [aux_sym_cmd_identifier_token30] = ACTIONS(2313), + [aux_sym_cmd_identifier_token31] = ACTIONS(2313), + [aux_sym_cmd_identifier_token32] = ACTIONS(2313), + [aux_sym_cmd_identifier_token33] = ACTIONS(2313), + [aux_sym_cmd_identifier_token34] = ACTIONS(2313), + [aux_sym_cmd_identifier_token35] = ACTIONS(2313), + [aux_sym_cmd_identifier_token36] = ACTIONS(2313), + [anon_sym_true] = ACTIONS(2313), + [anon_sym_false] = ACTIONS(2313), + [anon_sym_null] = ACTIONS(2313), + [aux_sym_cmd_identifier_token38] = ACTIONS(2313), + [aux_sym_cmd_identifier_token39] = ACTIONS(2313), + [aux_sym_cmd_identifier_token40] = ACTIONS(2313), + [anon_sym_def] = ACTIONS(2313), + [anon_sym_export_DASHenv] = ACTIONS(2313), + [anon_sym_extern] = ACTIONS(2313), + [anon_sym_module] = ACTIONS(2313), + [anon_sym_use] = ACTIONS(2313), + [anon_sym_LPAREN] = ACTIONS(2313), + [anon_sym_DOLLAR] = ACTIONS(2313), + [anon_sym_error] = ACTIONS(2313), + [anon_sym_list] = ACTIONS(2313), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_break] = ACTIONS(2313), + [anon_sym_continue] = ACTIONS(2313), + [anon_sym_for] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2313), + [anon_sym_loop] = ACTIONS(2313), + [anon_sym_make] = ACTIONS(2313), + [anon_sym_while] = ACTIONS(2313), + [anon_sym_do] = ACTIONS(2313), + [anon_sym_if] = ACTIONS(2313), + [anon_sym_else] = ACTIONS(2313), + [anon_sym_match] = ACTIONS(2313), + [anon_sym_RBRACE] = ACTIONS(2319), + [anon_sym_try] = ACTIONS(2313), + [anon_sym_catch] = ACTIONS(2313), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_source] = ACTIONS(2313), + [anon_sym_source_DASHenv] = ACTIONS(2313), + [anon_sym_register] = ACTIONS(2313), + [anon_sym_hide] = ACTIONS(2313), + [anon_sym_hide_DASHenv] = ACTIONS(2313), + [anon_sym_overlay] = ACTIONS(2313), + [anon_sym_new] = ACTIONS(2313), + [anon_sym_as] = ACTIONS(2313), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2313), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2313), + [aux_sym__val_number_decimal_token1] = ACTIONS(2313), + [aux_sym__val_number_decimal_token2] = ACTIONS(2313), + [aux_sym__val_number_decimal_token3] = ACTIONS(2313), + [aux_sym__val_number_decimal_token4] = ACTIONS(2313), + [aux_sym__val_number_token1] = ACTIONS(2313), + [aux_sym__val_number_token2] = ACTIONS(2313), + [aux_sym__val_number_token3] = ACTIONS(2313), + [anon_sym_DQUOTE] = ACTIONS(2313), + [sym__str_single_quotes] = ACTIONS(2313), + [sym__str_back_ticks] = ACTIONS(2313), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2313), + [sym__entry_separator] = ACTIONS(2317), + [anon_sym_PLUS] = ACTIONS(2313), [anon_sym_POUND] = ACTIONS(3), }, [471] = { - [sym__expr_parenthesized_immediate] = STATE(7628), [sym_comment] = STATE(471), - [anon_sym_export] = ACTIONS(1949), - [anon_sym_alias] = ACTIONS(1949), - [anon_sym_let] = ACTIONS(1949), - [anon_sym_let_DASHenv] = ACTIONS(1949), - [anon_sym_mut] = ACTIONS(1949), - [anon_sym_const] = ACTIONS(1949), - [aux_sym_cmd_identifier_token1] = ACTIONS(1949), - [aux_sym_cmd_identifier_token2] = ACTIONS(1949), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [aux_sym_cmd_identifier_token6] = ACTIONS(1949), - [aux_sym_cmd_identifier_token7] = ACTIONS(1949), - [aux_sym_cmd_identifier_token8] = ACTIONS(1949), - [aux_sym_cmd_identifier_token9] = ACTIONS(1949), - [aux_sym_cmd_identifier_token10] = ACTIONS(1949), - [aux_sym_cmd_identifier_token11] = ACTIONS(1949), - [aux_sym_cmd_identifier_token12] = ACTIONS(1949), - [aux_sym_cmd_identifier_token13] = ACTIONS(1949), - [aux_sym_cmd_identifier_token14] = ACTIONS(1949), - [aux_sym_cmd_identifier_token15] = ACTIONS(1949), - [aux_sym_cmd_identifier_token16] = ACTIONS(1949), - [aux_sym_cmd_identifier_token17] = ACTIONS(1949), - [aux_sym_cmd_identifier_token18] = ACTIONS(1949), - [aux_sym_cmd_identifier_token19] = ACTIONS(1949), - [aux_sym_cmd_identifier_token20] = ACTIONS(1949), - [aux_sym_cmd_identifier_token21] = ACTIONS(1949), - [aux_sym_cmd_identifier_token22] = ACTIONS(1949), - [aux_sym_cmd_identifier_token23] = ACTIONS(1949), - [aux_sym_cmd_identifier_token24] = ACTIONS(1949), - [aux_sym_cmd_identifier_token25] = ACTIONS(1949), - [aux_sym_cmd_identifier_token26] = ACTIONS(1949), - [aux_sym_cmd_identifier_token27] = ACTIONS(1949), - [aux_sym_cmd_identifier_token28] = ACTIONS(1949), - [aux_sym_cmd_identifier_token29] = ACTIONS(1949), - [aux_sym_cmd_identifier_token30] = ACTIONS(1949), - [aux_sym_cmd_identifier_token31] = ACTIONS(1949), - [aux_sym_cmd_identifier_token32] = ACTIONS(1949), - [aux_sym_cmd_identifier_token33] = ACTIONS(1949), - [aux_sym_cmd_identifier_token34] = ACTIONS(1949), - [aux_sym_cmd_identifier_token35] = ACTIONS(1949), - [aux_sym_cmd_identifier_token36] = ACTIONS(1949), - [anon_sym_true] = ACTIONS(1951), - [anon_sym_false] = ACTIONS(1951), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token38] = ACTIONS(1949), - [aux_sym_cmd_identifier_token39] = ACTIONS(1951), - [aux_sym_cmd_identifier_token40] = ACTIONS(1951), - [anon_sym_def] = ACTIONS(1949), - [anon_sym_export_DASHenv] = ACTIONS(1949), - [anon_sym_extern] = ACTIONS(1949), - [anon_sym_module] = ACTIONS(1949), - [anon_sym_use] = ACTIONS(1949), - [anon_sym_LPAREN] = ACTIONS(1949), - [anon_sym_DOLLAR] = ACTIONS(1951), - [anon_sym_error] = ACTIONS(1949), - [anon_sym_list] = ACTIONS(1949), - [anon_sym_DASH] = ACTIONS(1949), - [anon_sym_break] = ACTIONS(1949), - [anon_sym_continue] = ACTIONS(1949), - [anon_sym_for] = ACTIONS(1949), - [anon_sym_in] = ACTIONS(1949), - [anon_sym_loop] = ACTIONS(1949), - [anon_sym_make] = ACTIONS(1949), - [anon_sym_while] = ACTIONS(1949), - [anon_sym_do] = ACTIONS(1949), - [anon_sym_if] = ACTIONS(1949), - [anon_sym_else] = ACTIONS(1949), - [anon_sym_match] = ACTIONS(1949), - [anon_sym_RBRACE] = ACTIONS(1951), - [anon_sym_try] = ACTIONS(1949), - [anon_sym_catch] = ACTIONS(1949), - [anon_sym_return] = ACTIONS(1949), - [anon_sym_source] = ACTIONS(1949), - [anon_sym_source_DASHenv] = ACTIONS(1949), - [anon_sym_register] = ACTIONS(1949), - [anon_sym_hide] = ACTIONS(1949), - [anon_sym_hide_DASHenv] = ACTIONS(1949), - [anon_sym_overlay] = ACTIONS(1949), - [anon_sym_new] = ACTIONS(1949), - [anon_sym_as] = ACTIONS(1949), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1951), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1951), - [aux_sym__val_number_decimal_token1] = ACTIONS(1949), - [aux_sym__val_number_decimal_token2] = ACTIONS(1951), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), - [aux_sym__val_number_token1] = ACTIONS(1951), - [aux_sym__val_number_token2] = ACTIONS(1951), - [aux_sym__val_number_token3] = ACTIONS(1951), - [anon_sym_DQUOTE] = ACTIONS(1951), - [sym__str_single_quotes] = ACTIONS(1951), - [sym__str_back_ticks] = ACTIONS(1951), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1951), - [anon_sym_PLUS] = ACTIONS(1949), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(2321), + [anon_sym_alias] = ACTIONS(2321), + [anon_sym_let] = ACTIONS(2321), + [anon_sym_let_DASHenv] = ACTIONS(2321), + [anon_sym_mut] = ACTIONS(2321), + [anon_sym_const] = ACTIONS(2321), + [aux_sym_cmd_identifier_token1] = ACTIONS(2321), + [aux_sym_cmd_identifier_token2] = ACTIONS(2321), + [aux_sym_cmd_identifier_token3] = ACTIONS(2321), + [aux_sym_cmd_identifier_token4] = ACTIONS(2321), + [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [aux_sym_cmd_identifier_token6] = ACTIONS(2321), + [aux_sym_cmd_identifier_token7] = ACTIONS(2321), + [aux_sym_cmd_identifier_token8] = ACTIONS(2321), + [aux_sym_cmd_identifier_token9] = ACTIONS(2321), + [aux_sym_cmd_identifier_token10] = ACTIONS(2321), + [aux_sym_cmd_identifier_token11] = ACTIONS(2321), + [aux_sym_cmd_identifier_token12] = ACTIONS(2321), + [aux_sym_cmd_identifier_token13] = ACTIONS(2321), + [aux_sym_cmd_identifier_token14] = ACTIONS(2321), + [aux_sym_cmd_identifier_token15] = ACTIONS(2321), + [aux_sym_cmd_identifier_token16] = ACTIONS(2321), + [aux_sym_cmd_identifier_token17] = ACTIONS(2321), + [aux_sym_cmd_identifier_token18] = ACTIONS(2321), + [aux_sym_cmd_identifier_token19] = ACTIONS(2321), + [aux_sym_cmd_identifier_token20] = ACTIONS(2321), + [aux_sym_cmd_identifier_token21] = ACTIONS(2321), + [aux_sym_cmd_identifier_token22] = ACTIONS(2321), + [aux_sym_cmd_identifier_token23] = ACTIONS(2321), + [aux_sym_cmd_identifier_token24] = ACTIONS(2321), + [aux_sym_cmd_identifier_token25] = ACTIONS(2321), + [aux_sym_cmd_identifier_token26] = ACTIONS(2321), + [aux_sym_cmd_identifier_token27] = ACTIONS(2321), + [aux_sym_cmd_identifier_token28] = ACTIONS(2321), + [aux_sym_cmd_identifier_token29] = ACTIONS(2321), + [aux_sym_cmd_identifier_token30] = ACTIONS(2321), + [aux_sym_cmd_identifier_token31] = ACTIONS(2321), + [aux_sym_cmd_identifier_token32] = ACTIONS(2321), + [aux_sym_cmd_identifier_token33] = ACTIONS(2321), + [aux_sym_cmd_identifier_token34] = ACTIONS(2321), + [aux_sym_cmd_identifier_token35] = ACTIONS(2321), + [aux_sym_cmd_identifier_token36] = ACTIONS(2321), + [anon_sym_true] = ACTIONS(2321), + [anon_sym_false] = ACTIONS(2321), + [anon_sym_null] = ACTIONS(2321), + [aux_sym_cmd_identifier_token38] = ACTIONS(2321), + [aux_sym_cmd_identifier_token39] = ACTIONS(2321), + [aux_sym_cmd_identifier_token40] = ACTIONS(2321), + [anon_sym_def] = ACTIONS(2321), + [anon_sym_export_DASHenv] = ACTIONS(2321), + [anon_sym_extern] = ACTIONS(2321), + [anon_sym_module] = ACTIONS(2321), + [anon_sym_use] = ACTIONS(2321), + [anon_sym_RBRACK] = ACTIONS(2321), + [anon_sym_LPAREN] = ACTIONS(2321), + [anon_sym_DOLLAR] = ACTIONS(2321), + [anon_sym_error] = ACTIONS(2321), + [anon_sym_list] = ACTIONS(2321), + [anon_sym_DASH] = ACTIONS(2321), + [anon_sym_break] = ACTIONS(2321), + [anon_sym_continue] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2321), + [anon_sym_in] = ACTIONS(2321), + [anon_sym_loop] = ACTIONS(2321), + [anon_sym_make] = ACTIONS(2321), + [anon_sym_while] = ACTIONS(2321), + [anon_sym_do] = ACTIONS(2321), + [anon_sym_if] = ACTIONS(2321), + [anon_sym_else] = ACTIONS(2321), + [anon_sym_match] = ACTIONS(2321), + [anon_sym_RBRACE] = ACTIONS(2321), + [anon_sym_try] = ACTIONS(2321), + [anon_sym_catch] = ACTIONS(2321), + [anon_sym_return] = ACTIONS(2321), + [anon_sym_source] = ACTIONS(2321), + [anon_sym_source_DASHenv] = ACTIONS(2321), + [anon_sym_register] = ACTIONS(2321), + [anon_sym_hide] = ACTIONS(2321), + [anon_sym_hide_DASHenv] = ACTIONS(2321), + [anon_sym_overlay] = ACTIONS(2321), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_as] = ACTIONS(2321), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2321), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2321), + [aux_sym__val_number_decimal_token1] = ACTIONS(2321), + [aux_sym__val_number_decimal_token2] = ACTIONS(2321), + [aux_sym__val_number_decimal_token3] = ACTIONS(2321), + [aux_sym__val_number_decimal_token4] = ACTIONS(2321), + [aux_sym__val_number_token1] = ACTIONS(2321), + [aux_sym__val_number_token2] = ACTIONS(2321), + [aux_sym__val_number_token3] = ACTIONS(2321), + [anon_sym_DQUOTE] = ACTIONS(2321), + [sym__str_single_quotes] = ACTIONS(2321), + [sym__str_back_ticks] = ACTIONS(2321), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2321), + [sym__entry_separator] = ACTIONS(2323), + [anon_sym_PLUS] = ACTIONS(2321), + [anon_sym_POUND] = ACTIONS(3), }, [472] = { [sym_comment] = STATE(472), - [anon_sym_export] = ACTIONS(994), - [anon_sym_alias] = ACTIONS(994), - [anon_sym_let] = ACTIONS(994), - [anon_sym_let_DASHenv] = ACTIONS(994), - [anon_sym_mut] = ACTIONS(994), - [anon_sym_const] = ACTIONS(994), - [aux_sym_cmd_identifier_token1] = ACTIONS(994), - [aux_sym_cmd_identifier_token2] = ACTIONS(994), - [aux_sym_cmd_identifier_token3] = ACTIONS(994), - [aux_sym_cmd_identifier_token4] = ACTIONS(994), - [aux_sym_cmd_identifier_token5] = ACTIONS(994), - [aux_sym_cmd_identifier_token6] = ACTIONS(994), - [aux_sym_cmd_identifier_token7] = ACTIONS(994), - [aux_sym_cmd_identifier_token8] = ACTIONS(994), - [aux_sym_cmd_identifier_token9] = ACTIONS(994), - [aux_sym_cmd_identifier_token10] = ACTIONS(994), - [aux_sym_cmd_identifier_token11] = ACTIONS(994), - [aux_sym_cmd_identifier_token12] = ACTIONS(994), - [aux_sym_cmd_identifier_token13] = ACTIONS(994), - [aux_sym_cmd_identifier_token14] = ACTIONS(994), - [aux_sym_cmd_identifier_token15] = ACTIONS(994), - [aux_sym_cmd_identifier_token16] = ACTIONS(994), - [aux_sym_cmd_identifier_token17] = ACTIONS(994), - [aux_sym_cmd_identifier_token18] = ACTIONS(994), - [aux_sym_cmd_identifier_token19] = ACTIONS(994), - [aux_sym_cmd_identifier_token20] = ACTIONS(994), - [aux_sym_cmd_identifier_token21] = ACTIONS(994), - [aux_sym_cmd_identifier_token22] = ACTIONS(994), - [aux_sym_cmd_identifier_token23] = ACTIONS(994), - [aux_sym_cmd_identifier_token24] = ACTIONS(994), - [aux_sym_cmd_identifier_token25] = ACTIONS(994), - [aux_sym_cmd_identifier_token26] = ACTIONS(994), - [aux_sym_cmd_identifier_token27] = ACTIONS(994), - [aux_sym_cmd_identifier_token28] = ACTIONS(994), - [aux_sym_cmd_identifier_token29] = ACTIONS(994), - [aux_sym_cmd_identifier_token30] = ACTIONS(994), - [aux_sym_cmd_identifier_token31] = ACTIONS(994), - [aux_sym_cmd_identifier_token32] = ACTIONS(994), - [aux_sym_cmd_identifier_token33] = ACTIONS(994), - [aux_sym_cmd_identifier_token34] = ACTIONS(994), - [aux_sym_cmd_identifier_token35] = ACTIONS(994), - [aux_sym_cmd_identifier_token36] = ACTIONS(994), - [anon_sym_true] = ACTIONS(994), - [anon_sym_false] = ACTIONS(994), - [anon_sym_null] = ACTIONS(994), - [aux_sym_cmd_identifier_token38] = ACTIONS(994), - [aux_sym_cmd_identifier_token39] = ACTIONS(994), - [aux_sym_cmd_identifier_token40] = ACTIONS(994), - [anon_sym_def] = ACTIONS(994), - [anon_sym_export_DASHenv] = ACTIONS(994), - [anon_sym_extern] = ACTIONS(994), - [anon_sym_module] = ACTIONS(994), - [anon_sym_use] = ACTIONS(994), - [anon_sym_LPAREN] = ACTIONS(994), - [anon_sym_DOLLAR] = ACTIONS(994), - [anon_sym_error] = ACTIONS(994), - [anon_sym_list] = ACTIONS(994), - [anon_sym_DASH] = ACTIONS(994), - [anon_sym_break] = ACTIONS(994), - [anon_sym_continue] = ACTIONS(994), - [anon_sym_for] = ACTIONS(994), - [anon_sym_in] = ACTIONS(994), - [anon_sym_loop] = ACTIONS(994), - [anon_sym_make] = ACTIONS(994), - [anon_sym_while] = ACTIONS(994), - [anon_sym_do] = ACTIONS(994), - [anon_sym_if] = ACTIONS(994), - [anon_sym_else] = ACTIONS(994), - [anon_sym_match] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(994), - [anon_sym_try] = ACTIONS(994), - [anon_sym_catch] = ACTIONS(994), - [anon_sym_return] = ACTIONS(994), - [anon_sym_source] = ACTIONS(994), - [anon_sym_source_DASHenv] = ACTIONS(994), - [anon_sym_register] = ACTIONS(994), - [anon_sym_hide] = ACTIONS(994), - [anon_sym_hide_DASHenv] = ACTIONS(994), - [anon_sym_overlay] = ACTIONS(994), - [anon_sym_new] = ACTIONS(994), - [anon_sym_as] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(994), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(994), - [aux_sym__val_number_decimal_token1] = ACTIONS(994), - [aux_sym__val_number_decimal_token2] = ACTIONS(994), - [aux_sym__val_number_decimal_token3] = ACTIONS(994), - [aux_sym__val_number_decimal_token4] = ACTIONS(994), - [aux_sym__val_number_token1] = ACTIONS(994), - [aux_sym__val_number_token2] = ACTIONS(994), - [aux_sym__val_number_token3] = ACTIONS(994), - [anon_sym_DQUOTE] = ACTIONS(994), - [sym__str_single_quotes] = ACTIONS(994), - [sym__str_back_ticks] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(994), - [sym__entry_separator] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_export] = ACTIONS(1076), + [anon_sym_alias] = ACTIONS(1076), + [anon_sym_let] = ACTIONS(1076), + [anon_sym_let_DASHenv] = ACTIONS(1076), + [anon_sym_mut] = ACTIONS(1076), + [anon_sym_const] = ACTIONS(1076), + [aux_sym_cmd_identifier_token1] = ACTIONS(1076), + [aux_sym_cmd_identifier_token2] = ACTIONS(1076), + [aux_sym_cmd_identifier_token3] = ACTIONS(1076), + [aux_sym_cmd_identifier_token4] = ACTIONS(1076), + [aux_sym_cmd_identifier_token5] = ACTIONS(1076), + [aux_sym_cmd_identifier_token6] = ACTIONS(1076), + [aux_sym_cmd_identifier_token7] = ACTIONS(1076), + [aux_sym_cmd_identifier_token8] = ACTIONS(1076), + [aux_sym_cmd_identifier_token9] = ACTIONS(1076), + [aux_sym_cmd_identifier_token10] = ACTIONS(1076), + [aux_sym_cmd_identifier_token11] = ACTIONS(1076), + [aux_sym_cmd_identifier_token12] = ACTIONS(1076), + [aux_sym_cmd_identifier_token13] = ACTIONS(1076), + [aux_sym_cmd_identifier_token14] = ACTIONS(1076), + [aux_sym_cmd_identifier_token15] = ACTIONS(1076), + [aux_sym_cmd_identifier_token16] = ACTIONS(1076), + [aux_sym_cmd_identifier_token17] = ACTIONS(1076), + [aux_sym_cmd_identifier_token18] = ACTIONS(1076), + [aux_sym_cmd_identifier_token19] = ACTIONS(1076), + [aux_sym_cmd_identifier_token20] = ACTIONS(1076), + [aux_sym_cmd_identifier_token21] = ACTIONS(1076), + [aux_sym_cmd_identifier_token22] = ACTIONS(1076), + [aux_sym_cmd_identifier_token23] = ACTIONS(1076), + [aux_sym_cmd_identifier_token24] = ACTIONS(1076), + [aux_sym_cmd_identifier_token25] = ACTIONS(1076), + [aux_sym_cmd_identifier_token26] = ACTIONS(1076), + [aux_sym_cmd_identifier_token27] = ACTIONS(1076), + [aux_sym_cmd_identifier_token28] = ACTIONS(1076), + [aux_sym_cmd_identifier_token29] = ACTIONS(1076), + [aux_sym_cmd_identifier_token30] = ACTIONS(1076), + [aux_sym_cmd_identifier_token31] = ACTIONS(1076), + [aux_sym_cmd_identifier_token32] = ACTIONS(1076), + [aux_sym_cmd_identifier_token33] = ACTIONS(1076), + [aux_sym_cmd_identifier_token34] = ACTIONS(1076), + [aux_sym_cmd_identifier_token35] = ACTIONS(1076), + [aux_sym_cmd_identifier_token36] = ACTIONS(1076), + [anon_sym_true] = ACTIONS(1076), + [anon_sym_false] = ACTIONS(1076), + [anon_sym_null] = ACTIONS(1076), + [aux_sym_cmd_identifier_token38] = ACTIONS(1076), + [aux_sym_cmd_identifier_token39] = ACTIONS(1076), + [aux_sym_cmd_identifier_token40] = ACTIONS(1076), + [anon_sym_def] = ACTIONS(1076), + [anon_sym_export_DASHenv] = ACTIONS(1076), + [anon_sym_extern] = ACTIONS(1076), + [anon_sym_module] = ACTIONS(1076), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_DOLLAR] = ACTIONS(1076), + [anon_sym_error] = ACTIONS(1076), + [anon_sym_list] = ACTIONS(1076), + [anon_sym_DASH] = ACTIONS(1076), + [anon_sym_break] = ACTIONS(1076), + [anon_sym_continue] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1076), + [anon_sym_in] = ACTIONS(1076), + [anon_sym_loop] = ACTIONS(1076), + [anon_sym_make] = ACTIONS(1076), + [anon_sym_while] = ACTIONS(1076), + [anon_sym_do] = ACTIONS(1076), + [anon_sym_if] = ACTIONS(1076), + [anon_sym_else] = ACTIONS(1076), + [anon_sym_match] = ACTIONS(1076), + [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_try] = ACTIONS(1076), + [anon_sym_catch] = ACTIONS(1076), + [anon_sym_return] = ACTIONS(1076), + [anon_sym_source] = ACTIONS(1076), + [anon_sym_source_DASHenv] = ACTIONS(1076), + [anon_sym_register] = ACTIONS(1076), + [anon_sym_hide] = ACTIONS(1076), + [anon_sym_hide_DASHenv] = ACTIONS(1076), + [anon_sym_overlay] = ACTIONS(1076), + [anon_sym_new] = ACTIONS(1076), + [anon_sym_as] = ACTIONS(1076), + [anon_sym_LPAREN2] = ACTIONS(2239), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1078), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1076), + [aux_sym__val_number_decimal_token1] = ACTIONS(1076), + [aux_sym__val_number_decimal_token2] = ACTIONS(1076), + [aux_sym__val_number_decimal_token3] = ACTIONS(1076), + [aux_sym__val_number_decimal_token4] = ACTIONS(1076), + [aux_sym__val_number_token1] = ACTIONS(1076), + [aux_sym__val_number_token2] = ACTIONS(1076), + [aux_sym__val_number_token3] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1078), + [sym__str_single_quotes] = ACTIONS(1078), + [sym__str_back_ticks] = ACTIONS(1078), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1076), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2241), [anon_sym_POUND] = ACTIONS(3), }, [473] = { [sym_comment] = STATE(473), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_alias] = ACTIONS(1006), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_let_DASHenv] = ACTIONS(1006), - [anon_sym_mut] = ACTIONS(1006), - [anon_sym_const] = ACTIONS(1006), - [aux_sym_cmd_identifier_token1] = ACTIONS(1006), - [aux_sym_cmd_identifier_token2] = ACTIONS(1006), - [aux_sym_cmd_identifier_token3] = ACTIONS(1006), - [aux_sym_cmd_identifier_token4] = ACTIONS(1006), - [aux_sym_cmd_identifier_token5] = ACTIONS(1006), - [aux_sym_cmd_identifier_token6] = ACTIONS(1006), - [aux_sym_cmd_identifier_token7] = ACTIONS(1006), - [aux_sym_cmd_identifier_token8] = ACTIONS(1006), - [aux_sym_cmd_identifier_token9] = ACTIONS(1006), - [aux_sym_cmd_identifier_token10] = ACTIONS(1006), - [aux_sym_cmd_identifier_token11] = ACTIONS(1006), - [aux_sym_cmd_identifier_token12] = ACTIONS(1006), - [aux_sym_cmd_identifier_token13] = ACTIONS(1006), - [aux_sym_cmd_identifier_token14] = ACTIONS(1006), - [aux_sym_cmd_identifier_token15] = ACTIONS(1006), - [aux_sym_cmd_identifier_token16] = ACTIONS(1006), - [aux_sym_cmd_identifier_token17] = ACTIONS(1006), - [aux_sym_cmd_identifier_token18] = ACTIONS(1006), - [aux_sym_cmd_identifier_token19] = ACTIONS(1006), - [aux_sym_cmd_identifier_token20] = ACTIONS(1006), - [aux_sym_cmd_identifier_token21] = ACTIONS(1006), - [aux_sym_cmd_identifier_token22] = ACTIONS(1006), - [aux_sym_cmd_identifier_token23] = ACTIONS(1006), - [aux_sym_cmd_identifier_token24] = ACTIONS(1006), - [aux_sym_cmd_identifier_token25] = ACTIONS(1006), - [aux_sym_cmd_identifier_token26] = ACTIONS(1006), - [aux_sym_cmd_identifier_token27] = ACTIONS(1006), - [aux_sym_cmd_identifier_token28] = ACTIONS(1006), - [aux_sym_cmd_identifier_token29] = ACTIONS(1006), - [aux_sym_cmd_identifier_token30] = ACTIONS(1006), - [aux_sym_cmd_identifier_token31] = ACTIONS(1006), - [aux_sym_cmd_identifier_token32] = ACTIONS(1006), - [aux_sym_cmd_identifier_token33] = ACTIONS(1006), - [aux_sym_cmd_identifier_token34] = ACTIONS(1006), - [aux_sym_cmd_identifier_token35] = ACTIONS(1006), - [aux_sym_cmd_identifier_token36] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [anon_sym_null] = ACTIONS(1006), - [aux_sym_cmd_identifier_token38] = ACTIONS(1006), - [aux_sym_cmd_identifier_token39] = ACTIONS(1006), - [aux_sym_cmd_identifier_token40] = ACTIONS(1006), - [anon_sym_def] = ACTIONS(1006), - [anon_sym_export_DASHenv] = ACTIONS(1006), - [anon_sym_extern] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_use] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_error] = ACTIONS(1006), - [anon_sym_list] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_in] = ACTIONS(1006), - [anon_sym_loop] = ACTIONS(1006), - [anon_sym_make] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_else] = ACTIONS(1006), - [anon_sym_match] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1008), - [anon_sym_try] = ACTIONS(1006), - [anon_sym_catch] = ACTIONS(1006), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_source] = ACTIONS(1006), - [anon_sym_source_DASHenv] = ACTIONS(1006), - [anon_sym_register] = ACTIONS(1006), - [anon_sym_hide] = ACTIONS(1006), - [anon_sym_hide_DASHenv] = ACTIONS(1006), - [anon_sym_overlay] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1006), - [anon_sym_as] = ACTIONS(1006), - [anon_sym_LPAREN2] = ACTIONS(2081), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1008), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1006), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1006), - [aux_sym__val_number_decimal_token4] = ACTIONS(1006), - [aux_sym__val_number_token1] = ACTIONS(1006), - [aux_sym__val_number_token2] = ACTIONS(1006), - [aux_sym__val_number_token3] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1008), - [sym__str_single_quotes] = ACTIONS(1008), - [sym__str_back_ticks] = ACTIONS(1008), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(1006), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2083), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1028), + [anon_sym_alias] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(1028), + [anon_sym_let_DASHenv] = ACTIONS(1028), + [anon_sym_mut] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(1028), + [aux_sym_cmd_identifier_token1] = ACTIONS(1028), + [aux_sym_cmd_identifier_token2] = ACTIONS(1028), + [aux_sym_cmd_identifier_token3] = ACTIONS(1028), + [aux_sym_cmd_identifier_token4] = ACTIONS(1028), + [aux_sym_cmd_identifier_token5] = ACTIONS(1028), + [aux_sym_cmd_identifier_token6] = ACTIONS(1028), + [aux_sym_cmd_identifier_token7] = ACTIONS(1028), + [aux_sym_cmd_identifier_token8] = ACTIONS(1028), + [aux_sym_cmd_identifier_token9] = ACTIONS(1028), + [aux_sym_cmd_identifier_token10] = ACTIONS(1028), + [aux_sym_cmd_identifier_token11] = ACTIONS(1028), + [aux_sym_cmd_identifier_token12] = ACTIONS(1028), + [aux_sym_cmd_identifier_token13] = ACTIONS(1028), + [aux_sym_cmd_identifier_token14] = ACTIONS(1028), + [aux_sym_cmd_identifier_token15] = ACTIONS(1028), + [aux_sym_cmd_identifier_token16] = ACTIONS(1028), + [aux_sym_cmd_identifier_token17] = ACTIONS(1028), + [aux_sym_cmd_identifier_token18] = ACTIONS(1028), + [aux_sym_cmd_identifier_token19] = ACTIONS(1028), + [aux_sym_cmd_identifier_token20] = ACTIONS(1028), + [aux_sym_cmd_identifier_token21] = ACTIONS(1028), + [aux_sym_cmd_identifier_token22] = ACTIONS(1028), + [aux_sym_cmd_identifier_token23] = ACTIONS(1028), + [aux_sym_cmd_identifier_token24] = ACTIONS(1028), + [aux_sym_cmd_identifier_token25] = ACTIONS(1028), + [aux_sym_cmd_identifier_token26] = ACTIONS(1028), + [aux_sym_cmd_identifier_token27] = ACTIONS(1028), + [aux_sym_cmd_identifier_token28] = ACTIONS(1028), + [aux_sym_cmd_identifier_token29] = ACTIONS(1028), + [aux_sym_cmd_identifier_token30] = ACTIONS(1028), + [aux_sym_cmd_identifier_token31] = ACTIONS(1028), + [aux_sym_cmd_identifier_token32] = ACTIONS(1028), + [aux_sym_cmd_identifier_token33] = ACTIONS(1028), + [aux_sym_cmd_identifier_token34] = ACTIONS(1028), + [aux_sym_cmd_identifier_token35] = ACTIONS(1028), + [aux_sym_cmd_identifier_token36] = ACTIONS(1028), + [anon_sym_true] = ACTIONS(1030), + [anon_sym_false] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1030), + [aux_sym_cmd_identifier_token38] = ACTIONS(1028), + [aux_sym_cmd_identifier_token39] = ACTIONS(1030), + [aux_sym_cmd_identifier_token40] = ACTIONS(1030), + [anon_sym_def] = ACTIONS(1028), + [anon_sym_export_DASHenv] = ACTIONS(1028), + [anon_sym_extern] = ACTIONS(1028), + [anon_sym_module] = ACTIONS(1028), + [anon_sym_use] = ACTIONS(1028), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_error] = ACTIONS(1028), + [anon_sym_list] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_in] = ACTIONS(1028), + [anon_sym_loop] = ACTIONS(1028), + [anon_sym_make] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_else] = ACTIONS(1028), + [anon_sym_match] = ACTIONS(1028), + [anon_sym_RBRACE] = ACTIONS(1030), + [anon_sym_try] = ACTIONS(1028), + [anon_sym_catch] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_source] = ACTIONS(1028), + [anon_sym_source_DASHenv] = ACTIONS(1028), + [anon_sym_register] = ACTIONS(1028), + [anon_sym_hide] = ACTIONS(1028), + [anon_sym_hide_DASHenv] = ACTIONS(1028), + [anon_sym_overlay] = ACTIONS(1028), + [anon_sym_new] = ACTIONS(1028), + [anon_sym_as] = ACTIONS(1028), + [anon_sym_QMARK2] = ACTIONS(2325), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1030), + [anon_sym_DOT] = ACTIONS(1028), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1028), + [aux_sym__val_number_decimal_token2] = ACTIONS(1030), + [aux_sym__val_number_decimal_token3] = ACTIONS(1030), + [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_token1] = ACTIONS(1030), + [aux_sym__val_number_token2] = ACTIONS(1030), + [aux_sym__val_number_token3] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym__str_single_quotes] = ACTIONS(1030), + [sym__str_back_ticks] = ACTIONS(1030), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1030), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_POUND] = ACTIONS(247), }, [474] = { [sym_comment] = STATE(474), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_alias] = ACTIONS(1569), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_let_DASHenv] = ACTIONS(1569), - [anon_sym_mut] = ACTIONS(1569), - [anon_sym_const] = ACTIONS(1569), - [aux_sym_cmd_identifier_token1] = ACTIONS(1569), - [aux_sym_cmd_identifier_token2] = ACTIONS(1569), - [aux_sym_cmd_identifier_token3] = ACTIONS(1569), - [aux_sym_cmd_identifier_token4] = ACTIONS(1569), - [aux_sym_cmd_identifier_token5] = ACTIONS(1569), - [aux_sym_cmd_identifier_token6] = ACTIONS(1569), - [aux_sym_cmd_identifier_token7] = ACTIONS(1569), - [aux_sym_cmd_identifier_token8] = ACTIONS(1569), - [aux_sym_cmd_identifier_token9] = ACTIONS(1569), - [aux_sym_cmd_identifier_token10] = ACTIONS(1569), - [aux_sym_cmd_identifier_token11] = ACTIONS(1569), - [aux_sym_cmd_identifier_token12] = ACTIONS(1569), - [aux_sym_cmd_identifier_token13] = ACTIONS(1569), - [aux_sym_cmd_identifier_token14] = ACTIONS(1569), - [aux_sym_cmd_identifier_token15] = ACTIONS(1569), - [aux_sym_cmd_identifier_token16] = ACTIONS(1569), - [aux_sym_cmd_identifier_token17] = ACTIONS(1569), - [aux_sym_cmd_identifier_token18] = ACTIONS(1569), - [aux_sym_cmd_identifier_token19] = ACTIONS(1569), - [aux_sym_cmd_identifier_token20] = ACTIONS(1569), - [aux_sym_cmd_identifier_token21] = ACTIONS(1569), - [aux_sym_cmd_identifier_token22] = ACTIONS(1569), - [aux_sym_cmd_identifier_token23] = ACTIONS(1569), - [aux_sym_cmd_identifier_token24] = ACTIONS(1569), - [aux_sym_cmd_identifier_token25] = ACTIONS(1569), - [aux_sym_cmd_identifier_token26] = ACTIONS(1569), - [aux_sym_cmd_identifier_token27] = ACTIONS(1569), - [aux_sym_cmd_identifier_token28] = ACTIONS(1569), - [aux_sym_cmd_identifier_token29] = ACTIONS(1569), - [aux_sym_cmd_identifier_token30] = ACTIONS(1569), - [aux_sym_cmd_identifier_token31] = ACTIONS(1569), - [aux_sym_cmd_identifier_token32] = ACTIONS(1569), - [aux_sym_cmd_identifier_token33] = ACTIONS(1569), - [aux_sym_cmd_identifier_token34] = ACTIONS(1569), - [aux_sym_cmd_identifier_token35] = ACTIONS(1569), - [aux_sym_cmd_identifier_token36] = ACTIONS(1569), - [anon_sym_true] = ACTIONS(1571), - [anon_sym_false] = ACTIONS(1571), - [anon_sym_null] = ACTIONS(1571), - [aux_sym_cmd_identifier_token38] = ACTIONS(1569), - [aux_sym_cmd_identifier_token39] = ACTIONS(1571), - [aux_sym_cmd_identifier_token40] = ACTIONS(1571), - [anon_sym_def] = ACTIONS(1569), - [anon_sym_export_DASHenv] = ACTIONS(1569), - [anon_sym_extern] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_use] = ACTIONS(1569), - [anon_sym_LPAREN] = ACTIONS(1571), - [anon_sym_DOLLAR] = ACTIONS(1571), - [anon_sym_error] = ACTIONS(1569), - [anon_sym_list] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_break] = ACTIONS(1569), - [anon_sym_continue] = ACTIONS(1569), - [anon_sym_for] = ACTIONS(1569), - [anon_sym_in] = ACTIONS(1569), - [anon_sym_loop] = ACTIONS(1569), - [anon_sym_make] = ACTIONS(1569), - [anon_sym_while] = ACTIONS(1569), - [anon_sym_do] = ACTIONS(1569), - [anon_sym_if] = ACTIONS(1569), - [anon_sym_else] = ACTIONS(1569), - [anon_sym_match] = ACTIONS(1569), - [anon_sym_RBRACE] = ACTIONS(1571), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_catch] = ACTIONS(1569), - [anon_sym_return] = ACTIONS(1569), - [anon_sym_source] = ACTIONS(1569), - [anon_sym_source_DASHenv] = ACTIONS(1569), - [anon_sym_register] = ACTIONS(1569), - [anon_sym_hide] = ACTIONS(1569), - [anon_sym_hide_DASHenv] = ACTIONS(1569), - [anon_sym_overlay] = ACTIONS(1569), - [anon_sym_new] = ACTIONS(1569), - [anon_sym_as] = ACTIONS(1569), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1571), - [aux_sym__immediate_decimal_token1] = ACTIONS(2231), - [aux_sym__immediate_decimal_token2] = ACTIONS(2233), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1571), - [aux_sym__val_number_decimal_token1] = ACTIONS(1569), - [aux_sym__val_number_decimal_token2] = ACTIONS(1571), - [aux_sym__val_number_decimal_token3] = ACTIONS(1571), - [aux_sym__val_number_decimal_token4] = ACTIONS(1571), - [aux_sym__val_number_token1] = ACTIONS(1571), - [aux_sym__val_number_token2] = ACTIONS(1571), - [aux_sym__val_number_token3] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [sym__str_single_quotes] = ACTIONS(1571), - [sym__str_back_ticks] = ACTIONS(1571), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_export] = ACTIONS(1786), + [anon_sym_alias] = ACTIONS(1786), + [anon_sym_let] = ACTIONS(1786), + [anon_sym_let_DASHenv] = ACTIONS(1786), + [anon_sym_mut] = ACTIONS(1786), + [anon_sym_const] = ACTIONS(1786), + [aux_sym_cmd_identifier_token1] = ACTIONS(1786), + [aux_sym_cmd_identifier_token2] = ACTIONS(1786), + [aux_sym_cmd_identifier_token3] = ACTIONS(1786), + [aux_sym_cmd_identifier_token4] = ACTIONS(1786), + [aux_sym_cmd_identifier_token5] = ACTIONS(1786), + [aux_sym_cmd_identifier_token6] = ACTIONS(1786), + [aux_sym_cmd_identifier_token7] = ACTIONS(1786), + [aux_sym_cmd_identifier_token8] = ACTIONS(1786), + [aux_sym_cmd_identifier_token9] = ACTIONS(1786), + [aux_sym_cmd_identifier_token10] = ACTIONS(1786), + [aux_sym_cmd_identifier_token11] = ACTIONS(1786), + [aux_sym_cmd_identifier_token12] = ACTIONS(1786), + [aux_sym_cmd_identifier_token13] = ACTIONS(1786), + [aux_sym_cmd_identifier_token14] = ACTIONS(1786), + [aux_sym_cmd_identifier_token15] = ACTIONS(1786), + [aux_sym_cmd_identifier_token16] = ACTIONS(1786), + [aux_sym_cmd_identifier_token17] = ACTIONS(1786), + [aux_sym_cmd_identifier_token18] = ACTIONS(1786), + [aux_sym_cmd_identifier_token19] = ACTIONS(1786), + [aux_sym_cmd_identifier_token20] = ACTIONS(1786), + [aux_sym_cmd_identifier_token21] = ACTIONS(1786), + [aux_sym_cmd_identifier_token22] = ACTIONS(1786), + [aux_sym_cmd_identifier_token23] = ACTIONS(1786), + [aux_sym_cmd_identifier_token24] = ACTIONS(1786), + [aux_sym_cmd_identifier_token25] = ACTIONS(1786), + [aux_sym_cmd_identifier_token26] = ACTIONS(1786), + [aux_sym_cmd_identifier_token27] = ACTIONS(1786), + [aux_sym_cmd_identifier_token28] = ACTIONS(1786), + [aux_sym_cmd_identifier_token29] = ACTIONS(1786), + [aux_sym_cmd_identifier_token30] = ACTIONS(1786), + [aux_sym_cmd_identifier_token31] = ACTIONS(1786), + [aux_sym_cmd_identifier_token32] = ACTIONS(1786), + [aux_sym_cmd_identifier_token33] = ACTIONS(1786), + [aux_sym_cmd_identifier_token34] = ACTIONS(1786), + [aux_sym_cmd_identifier_token35] = ACTIONS(1786), + [aux_sym_cmd_identifier_token36] = ACTIONS(1786), + [anon_sym_true] = ACTIONS(1794), + [anon_sym_false] = ACTIONS(1794), + [anon_sym_null] = ACTIONS(1794), + [aux_sym_cmd_identifier_token38] = ACTIONS(1786), + [aux_sym_cmd_identifier_token39] = ACTIONS(1794), + [aux_sym_cmd_identifier_token40] = ACTIONS(1794), + [anon_sym_def] = ACTIONS(1786), + [anon_sym_export_DASHenv] = ACTIONS(1786), + [anon_sym_extern] = ACTIONS(1786), + [anon_sym_module] = ACTIONS(1786), + [anon_sym_use] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_error] = ACTIONS(1786), + [anon_sym_list] = ACTIONS(1786), + [anon_sym_DASH] = ACTIONS(1786), + [anon_sym_break] = ACTIONS(1786), + [anon_sym_continue] = ACTIONS(1786), + [anon_sym_for] = ACTIONS(1786), + [anon_sym_in] = ACTIONS(1786), + [anon_sym_loop] = ACTIONS(1786), + [anon_sym_make] = ACTIONS(1786), + [anon_sym_while] = ACTIONS(1786), + [anon_sym_do] = ACTIONS(1786), + [anon_sym_if] = ACTIONS(1786), + [anon_sym_else] = ACTIONS(1786), + [anon_sym_match] = ACTIONS(1786), + [anon_sym_RBRACE] = ACTIONS(1794), + [anon_sym_try] = ACTIONS(1786), + [anon_sym_catch] = ACTIONS(1786), + [anon_sym_return] = ACTIONS(1786), + [anon_sym_source] = ACTIONS(1786), + [anon_sym_source_DASHenv] = ACTIONS(1786), + [anon_sym_register] = ACTIONS(1786), + [anon_sym_hide] = ACTIONS(1786), + [anon_sym_hide_DASHenv] = ACTIONS(1786), + [anon_sym_overlay] = ACTIONS(1786), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_as] = ACTIONS(1786), + [anon_sym_LPAREN2] = ACTIONS(1788), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1794), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1794), + [aux_sym__val_number_decimal_token1] = ACTIONS(1786), + [aux_sym__val_number_decimal_token2] = ACTIONS(1794), + [aux_sym__val_number_decimal_token3] = ACTIONS(1794), + [aux_sym__val_number_decimal_token4] = ACTIONS(1794), + [aux_sym__val_number_token1] = ACTIONS(1794), + [aux_sym__val_number_token2] = ACTIONS(1794), + [aux_sym__val_number_token3] = ACTIONS(1794), + [anon_sym_DQUOTE] = ACTIONS(1794), + [sym__str_single_quotes] = ACTIONS(1794), + [sym__str_back_ticks] = ACTIONS(1794), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1794), + [anon_sym_PLUS] = ACTIONS(1786), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1495), [anon_sym_POUND] = ACTIONS(247), }, [475] = { [sym_comment] = STATE(475), - [anon_sym_export] = ACTIONS(2235), - [anon_sym_alias] = ACTIONS(2235), - [anon_sym_let] = ACTIONS(2235), - [anon_sym_let_DASHenv] = ACTIONS(2235), - [anon_sym_mut] = ACTIONS(2235), - [anon_sym_const] = ACTIONS(2235), - [aux_sym_cmd_identifier_token1] = ACTIONS(2235), - [aux_sym_cmd_identifier_token2] = ACTIONS(2235), - [aux_sym_cmd_identifier_token3] = ACTIONS(2235), - [aux_sym_cmd_identifier_token4] = ACTIONS(2235), - [aux_sym_cmd_identifier_token5] = ACTIONS(2235), - [aux_sym_cmd_identifier_token6] = ACTIONS(2235), - [aux_sym_cmd_identifier_token7] = ACTIONS(2235), - [aux_sym_cmd_identifier_token8] = ACTIONS(2235), - [aux_sym_cmd_identifier_token9] = ACTIONS(2235), - [aux_sym_cmd_identifier_token10] = ACTIONS(2235), - [aux_sym_cmd_identifier_token11] = ACTIONS(2235), - [aux_sym_cmd_identifier_token12] = ACTIONS(2235), - [aux_sym_cmd_identifier_token13] = ACTIONS(2235), - [aux_sym_cmd_identifier_token14] = ACTIONS(2235), - [aux_sym_cmd_identifier_token15] = ACTIONS(2235), - [aux_sym_cmd_identifier_token16] = ACTIONS(2235), - [aux_sym_cmd_identifier_token17] = ACTIONS(2235), - [aux_sym_cmd_identifier_token18] = ACTIONS(2235), - [aux_sym_cmd_identifier_token19] = ACTIONS(2235), - [aux_sym_cmd_identifier_token20] = ACTIONS(2235), - [aux_sym_cmd_identifier_token21] = ACTIONS(2235), - [aux_sym_cmd_identifier_token22] = ACTIONS(2235), - [aux_sym_cmd_identifier_token23] = ACTIONS(2235), - [aux_sym_cmd_identifier_token24] = ACTIONS(2235), - [aux_sym_cmd_identifier_token25] = ACTIONS(2235), - [aux_sym_cmd_identifier_token26] = ACTIONS(2235), - [aux_sym_cmd_identifier_token27] = ACTIONS(2235), - [aux_sym_cmd_identifier_token28] = ACTIONS(2235), - [aux_sym_cmd_identifier_token29] = ACTIONS(2235), - [aux_sym_cmd_identifier_token30] = ACTIONS(2235), - [aux_sym_cmd_identifier_token31] = ACTIONS(2235), - [aux_sym_cmd_identifier_token32] = ACTIONS(2235), - [aux_sym_cmd_identifier_token33] = ACTIONS(2235), - [aux_sym_cmd_identifier_token34] = ACTIONS(2235), - [aux_sym_cmd_identifier_token35] = ACTIONS(2235), - [aux_sym_cmd_identifier_token36] = ACTIONS(2235), - [anon_sym_true] = ACTIONS(2235), - [anon_sym_false] = ACTIONS(2235), - [anon_sym_null] = ACTIONS(2235), - [aux_sym_cmd_identifier_token38] = ACTIONS(2235), - [aux_sym_cmd_identifier_token39] = ACTIONS(2235), - [aux_sym_cmd_identifier_token40] = ACTIONS(2235), - [anon_sym_def] = ACTIONS(2235), - [anon_sym_export_DASHenv] = ACTIONS(2235), - [anon_sym_extern] = ACTIONS(2235), - [anon_sym_module] = ACTIONS(2235), - [anon_sym_use] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2235), - [anon_sym_DOLLAR] = ACTIONS(2235), - [anon_sym_error] = ACTIONS(2235), - [anon_sym_list] = ACTIONS(2235), - [anon_sym_DASH] = ACTIONS(2235), - [anon_sym_break] = ACTIONS(2235), - [anon_sym_continue] = ACTIONS(2235), - [anon_sym_for] = ACTIONS(2235), - [anon_sym_in] = ACTIONS(2235), - [anon_sym_loop] = ACTIONS(2235), - [anon_sym_make] = ACTIONS(2235), - [anon_sym_while] = ACTIONS(2235), - [anon_sym_do] = ACTIONS(2235), - [anon_sym_if] = ACTIONS(2235), - [anon_sym_else] = ACTIONS(2235), - [anon_sym_match] = ACTIONS(2235), - [anon_sym_RBRACE] = ACTIONS(2235), - [anon_sym_try] = ACTIONS(2235), - [anon_sym_catch] = ACTIONS(2235), - [anon_sym_return] = ACTIONS(2235), - [anon_sym_source] = ACTIONS(2235), - [anon_sym_source_DASHenv] = ACTIONS(2235), - [anon_sym_register] = ACTIONS(2235), - [anon_sym_hide] = ACTIONS(2235), - [anon_sym_hide_DASHenv] = ACTIONS(2235), - [anon_sym_overlay] = ACTIONS(2235), - [anon_sym_new] = ACTIONS(2235), - [anon_sym_as] = ACTIONS(2235), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2235), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2235), - [aux_sym__val_number_decimal_token1] = ACTIONS(2235), - [aux_sym__val_number_decimal_token2] = ACTIONS(2235), - [aux_sym__val_number_decimal_token3] = ACTIONS(2235), - [aux_sym__val_number_decimal_token4] = ACTIONS(2235), - [aux_sym__val_number_token1] = ACTIONS(2235), - [aux_sym__val_number_token2] = ACTIONS(2235), - [aux_sym__val_number_token3] = ACTIONS(2235), - [anon_sym_LBRACK2] = ACTIONS(2237), - [anon_sym_DQUOTE] = ACTIONS(2235), - [sym__str_single_quotes] = ACTIONS(2235), - [sym__str_back_ticks] = ACTIONS(2235), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2235), - [sym__entry_separator] = ACTIONS(2239), - [anon_sym_PLUS] = ACTIONS(2235), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1040), + [anon_sym_alias] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_let_DASHenv] = ACTIONS(1040), + [anon_sym_mut] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(1040), + [aux_sym_cmd_identifier_token1] = ACTIONS(1040), + [aux_sym_cmd_identifier_token2] = ACTIONS(1040), + [aux_sym_cmd_identifier_token3] = ACTIONS(1040), + [aux_sym_cmd_identifier_token4] = ACTIONS(1040), + [aux_sym_cmd_identifier_token5] = ACTIONS(1040), + [aux_sym_cmd_identifier_token6] = ACTIONS(1040), + [aux_sym_cmd_identifier_token7] = ACTIONS(1040), + [aux_sym_cmd_identifier_token8] = ACTIONS(1040), + [aux_sym_cmd_identifier_token9] = ACTIONS(1040), + [aux_sym_cmd_identifier_token10] = ACTIONS(1040), + [aux_sym_cmd_identifier_token11] = ACTIONS(1040), + [aux_sym_cmd_identifier_token12] = ACTIONS(1040), + [aux_sym_cmd_identifier_token13] = ACTIONS(1040), + [aux_sym_cmd_identifier_token14] = ACTIONS(1040), + [aux_sym_cmd_identifier_token15] = ACTIONS(1040), + [aux_sym_cmd_identifier_token16] = ACTIONS(1040), + [aux_sym_cmd_identifier_token17] = ACTIONS(1040), + [aux_sym_cmd_identifier_token18] = ACTIONS(1040), + [aux_sym_cmd_identifier_token19] = ACTIONS(1040), + [aux_sym_cmd_identifier_token20] = ACTIONS(1040), + [aux_sym_cmd_identifier_token21] = ACTIONS(1040), + [aux_sym_cmd_identifier_token22] = ACTIONS(1040), + [aux_sym_cmd_identifier_token23] = ACTIONS(1040), + [aux_sym_cmd_identifier_token24] = ACTIONS(1040), + [aux_sym_cmd_identifier_token25] = ACTIONS(1040), + [aux_sym_cmd_identifier_token26] = ACTIONS(1040), + [aux_sym_cmd_identifier_token27] = ACTIONS(1040), + [aux_sym_cmd_identifier_token28] = ACTIONS(1040), + [aux_sym_cmd_identifier_token29] = ACTIONS(1040), + [aux_sym_cmd_identifier_token30] = ACTIONS(1040), + [aux_sym_cmd_identifier_token31] = ACTIONS(1040), + [aux_sym_cmd_identifier_token32] = ACTIONS(1040), + [aux_sym_cmd_identifier_token33] = ACTIONS(1040), + [aux_sym_cmd_identifier_token34] = ACTIONS(1040), + [aux_sym_cmd_identifier_token35] = ACTIONS(1040), + [aux_sym_cmd_identifier_token36] = ACTIONS(1040), + [anon_sym_true] = ACTIONS(1042), + [anon_sym_false] = ACTIONS(1042), + [anon_sym_null] = ACTIONS(1042), + [aux_sym_cmd_identifier_token38] = ACTIONS(1040), + [aux_sym_cmd_identifier_token39] = ACTIONS(1042), + [aux_sym_cmd_identifier_token40] = ACTIONS(1042), + [anon_sym_def] = ACTIONS(1040), + [anon_sym_export_DASHenv] = ACTIONS(1040), + [anon_sym_extern] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + [anon_sym_use] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1042), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_error] = ACTIONS(1040), + [anon_sym_list] = ACTIONS(1040), + [anon_sym_DASH] = ACTIONS(1040), + [anon_sym_break] = ACTIONS(1040), + [anon_sym_continue] = ACTIONS(1040), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_loop] = ACTIONS(1040), + [anon_sym_make] = ACTIONS(1040), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_do] = ACTIONS(1040), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(1040), + [anon_sym_match] = ACTIONS(1040), + [anon_sym_RBRACE] = ACTIONS(1042), + [anon_sym_try] = ACTIONS(1040), + [anon_sym_catch] = ACTIONS(1040), + [anon_sym_return] = ACTIONS(1040), + [anon_sym_source] = ACTIONS(1040), + [anon_sym_source_DASHenv] = ACTIONS(1040), + [anon_sym_register] = ACTIONS(1040), + [anon_sym_hide] = ACTIONS(1040), + [anon_sym_hide_DASHenv] = ACTIONS(1040), + [anon_sym_overlay] = ACTIONS(1040), + [anon_sym_new] = ACTIONS(1040), + [anon_sym_as] = ACTIONS(1040), + [anon_sym_QMARK2] = ACTIONS(1042), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1042), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1042), + [aux_sym__val_number_decimal_token1] = ACTIONS(1040), + [aux_sym__val_number_decimal_token2] = ACTIONS(1042), + [aux_sym__val_number_decimal_token3] = ACTIONS(1042), + [aux_sym__val_number_decimal_token4] = ACTIONS(1042), + [aux_sym__val_number_token1] = ACTIONS(1042), + [aux_sym__val_number_token2] = ACTIONS(1042), + [aux_sym__val_number_token3] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1042), + [sym__str_single_quotes] = ACTIONS(1042), + [sym__str_back_ticks] = ACTIONS(1042), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1040), + [anon_sym_POUND] = ACTIONS(247), }, [476] = { [sym_comment] = STATE(476), - [anon_sym_export] = ACTIONS(1778), - [anon_sym_alias] = ACTIONS(1778), - [anon_sym_let] = ACTIONS(1778), - [anon_sym_let_DASHenv] = ACTIONS(1778), - [anon_sym_mut] = ACTIONS(1778), - [anon_sym_const] = ACTIONS(1778), - [aux_sym_cmd_identifier_token1] = ACTIONS(1778), - [aux_sym_cmd_identifier_token2] = ACTIONS(1778), - [aux_sym_cmd_identifier_token3] = ACTIONS(1778), - [aux_sym_cmd_identifier_token4] = ACTIONS(1778), - [aux_sym_cmd_identifier_token5] = ACTIONS(1778), - [aux_sym_cmd_identifier_token6] = ACTIONS(1778), - [aux_sym_cmd_identifier_token7] = ACTIONS(1778), - [aux_sym_cmd_identifier_token8] = ACTIONS(1778), - [aux_sym_cmd_identifier_token9] = ACTIONS(1778), - [aux_sym_cmd_identifier_token10] = ACTIONS(1778), - [aux_sym_cmd_identifier_token11] = ACTIONS(1778), - [aux_sym_cmd_identifier_token12] = ACTIONS(1778), - [aux_sym_cmd_identifier_token13] = ACTIONS(1778), - [aux_sym_cmd_identifier_token14] = ACTIONS(1778), - [aux_sym_cmd_identifier_token15] = ACTIONS(1778), - [aux_sym_cmd_identifier_token16] = ACTIONS(1778), - [aux_sym_cmd_identifier_token17] = ACTIONS(1778), - [aux_sym_cmd_identifier_token18] = ACTIONS(1778), - [aux_sym_cmd_identifier_token19] = ACTIONS(1778), - [aux_sym_cmd_identifier_token20] = ACTIONS(1778), - [aux_sym_cmd_identifier_token21] = ACTIONS(1778), - [aux_sym_cmd_identifier_token22] = ACTIONS(1778), - [aux_sym_cmd_identifier_token23] = ACTIONS(1778), - [aux_sym_cmd_identifier_token24] = ACTIONS(1778), - [aux_sym_cmd_identifier_token25] = ACTIONS(1778), - [aux_sym_cmd_identifier_token26] = ACTIONS(1778), - [aux_sym_cmd_identifier_token27] = ACTIONS(1778), - [aux_sym_cmd_identifier_token28] = ACTIONS(1778), - [aux_sym_cmd_identifier_token29] = ACTIONS(1778), - [aux_sym_cmd_identifier_token30] = ACTIONS(1778), - [aux_sym_cmd_identifier_token31] = ACTIONS(1778), - [aux_sym_cmd_identifier_token32] = ACTIONS(1778), - [aux_sym_cmd_identifier_token33] = ACTIONS(1778), - [aux_sym_cmd_identifier_token34] = ACTIONS(1778), - [aux_sym_cmd_identifier_token35] = ACTIONS(1778), - [aux_sym_cmd_identifier_token36] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_null] = ACTIONS(1778), - [aux_sym_cmd_identifier_token38] = ACTIONS(1778), - [aux_sym_cmd_identifier_token39] = ACTIONS(1778), - [aux_sym_cmd_identifier_token40] = ACTIONS(1778), - [anon_sym_def] = ACTIONS(1778), - [anon_sym_export_DASHenv] = ACTIONS(1778), - [anon_sym_extern] = ACTIONS(1778), - [anon_sym_module] = ACTIONS(1778), - [anon_sym_use] = ACTIONS(1778), - [anon_sym_RBRACK] = ACTIONS(1778), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_DOLLAR] = ACTIONS(1778), - [anon_sym_error] = ACTIONS(1778), - [anon_sym_list] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_break] = ACTIONS(1778), - [anon_sym_continue] = ACTIONS(1778), - [anon_sym_for] = ACTIONS(1778), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_loop] = ACTIONS(1778), - [anon_sym_make] = ACTIONS(1778), - [anon_sym_while] = ACTIONS(1778), - [anon_sym_do] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_match] = ACTIONS(1778), - [anon_sym_RBRACE] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1778), - [anon_sym_catch] = ACTIONS(1778), - [anon_sym_return] = ACTIONS(1778), - [anon_sym_source] = ACTIONS(1778), - [anon_sym_source_DASHenv] = ACTIONS(1778), - [anon_sym_register] = ACTIONS(1778), - [anon_sym_hide] = ACTIONS(1778), - [anon_sym_hide_DASHenv] = ACTIONS(1778), - [anon_sym_overlay] = ACTIONS(1778), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_as] = ACTIONS(1778), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1778), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1778), - [aux_sym__val_number_decimal_token1] = ACTIONS(1778), - [aux_sym__val_number_decimal_token2] = ACTIONS(1778), - [aux_sym__val_number_decimal_token3] = ACTIONS(1778), - [aux_sym__val_number_decimal_token4] = ACTIONS(1778), - [aux_sym__val_number_token1] = ACTIONS(1778), - [aux_sym__val_number_token2] = ACTIONS(1778), - [aux_sym__val_number_token3] = ACTIONS(1778), - [anon_sym_DQUOTE] = ACTIONS(1778), - [sym__str_single_quotes] = ACTIONS(1778), - [sym__str_back_ticks] = ACTIONS(1778), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1778), - [sym__entry_separator] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_alias] = ACTIONS(1044), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_let_DASHenv] = ACTIONS(1044), + [anon_sym_mut] = ACTIONS(1044), + [anon_sym_const] = ACTIONS(1044), + [aux_sym_cmd_identifier_token1] = ACTIONS(1044), + [aux_sym_cmd_identifier_token2] = ACTIONS(1044), + [aux_sym_cmd_identifier_token3] = ACTIONS(1044), + [aux_sym_cmd_identifier_token4] = ACTIONS(1044), + [aux_sym_cmd_identifier_token5] = ACTIONS(1044), + [aux_sym_cmd_identifier_token6] = ACTIONS(1044), + [aux_sym_cmd_identifier_token7] = ACTIONS(1044), + [aux_sym_cmd_identifier_token8] = ACTIONS(1044), + [aux_sym_cmd_identifier_token9] = ACTIONS(1044), + [aux_sym_cmd_identifier_token10] = ACTIONS(1044), + [aux_sym_cmd_identifier_token11] = ACTIONS(1044), + [aux_sym_cmd_identifier_token12] = ACTIONS(1044), + [aux_sym_cmd_identifier_token13] = ACTIONS(1044), + [aux_sym_cmd_identifier_token14] = ACTIONS(1044), + [aux_sym_cmd_identifier_token15] = ACTIONS(1044), + [aux_sym_cmd_identifier_token16] = ACTIONS(1044), + [aux_sym_cmd_identifier_token17] = ACTIONS(1044), + [aux_sym_cmd_identifier_token18] = ACTIONS(1044), + [aux_sym_cmd_identifier_token19] = ACTIONS(1044), + [aux_sym_cmd_identifier_token20] = ACTIONS(1044), + [aux_sym_cmd_identifier_token21] = ACTIONS(1044), + [aux_sym_cmd_identifier_token22] = ACTIONS(1044), + [aux_sym_cmd_identifier_token23] = ACTIONS(1044), + [aux_sym_cmd_identifier_token24] = ACTIONS(1044), + [aux_sym_cmd_identifier_token25] = ACTIONS(1044), + [aux_sym_cmd_identifier_token26] = ACTIONS(1044), + [aux_sym_cmd_identifier_token27] = ACTIONS(1044), + [aux_sym_cmd_identifier_token28] = ACTIONS(1044), + [aux_sym_cmd_identifier_token29] = ACTIONS(1044), + [aux_sym_cmd_identifier_token30] = ACTIONS(1044), + [aux_sym_cmd_identifier_token31] = ACTIONS(1044), + [aux_sym_cmd_identifier_token32] = ACTIONS(1044), + [aux_sym_cmd_identifier_token33] = ACTIONS(1044), + [aux_sym_cmd_identifier_token34] = ACTIONS(1044), + [aux_sym_cmd_identifier_token35] = ACTIONS(1044), + [aux_sym_cmd_identifier_token36] = ACTIONS(1044), + [anon_sym_true] = ACTIONS(1046), + [anon_sym_false] = ACTIONS(1046), + [anon_sym_null] = ACTIONS(1046), + [aux_sym_cmd_identifier_token38] = ACTIONS(1044), + [aux_sym_cmd_identifier_token39] = ACTIONS(1046), + [aux_sym_cmd_identifier_token40] = ACTIONS(1046), + [anon_sym_def] = ACTIONS(1044), + [anon_sym_export_DASHenv] = ACTIONS(1044), + [anon_sym_extern] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_use] = ACTIONS(1044), + [anon_sym_LPAREN] = ACTIONS(1046), + [anon_sym_DOLLAR] = ACTIONS(1046), + [anon_sym_error] = ACTIONS(1044), + [anon_sym_list] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_break] = ACTIONS(1044), + [anon_sym_continue] = ACTIONS(1044), + [anon_sym_for] = ACTIONS(1044), + [anon_sym_in] = ACTIONS(1044), + [anon_sym_loop] = ACTIONS(1044), + [anon_sym_make] = ACTIONS(1044), + [anon_sym_while] = ACTIONS(1044), + [anon_sym_do] = ACTIONS(1044), + [anon_sym_if] = ACTIONS(1044), + [anon_sym_else] = ACTIONS(1044), + [anon_sym_match] = ACTIONS(1044), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_try] = ACTIONS(1044), + [anon_sym_catch] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_source] = ACTIONS(1044), + [anon_sym_source_DASHenv] = ACTIONS(1044), + [anon_sym_register] = ACTIONS(1044), + [anon_sym_hide] = ACTIONS(1044), + [anon_sym_hide_DASHenv] = ACTIONS(1044), + [anon_sym_overlay] = ACTIONS(1044), + [anon_sym_new] = ACTIONS(1044), + [anon_sym_as] = ACTIONS(1044), + [anon_sym_QMARK2] = ACTIONS(1046), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1046), + [anon_sym_DOT] = ACTIONS(1044), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1046), + [aux_sym__val_number_decimal_token1] = ACTIONS(1044), + [aux_sym__val_number_decimal_token2] = ACTIONS(1046), + [aux_sym__val_number_decimal_token3] = ACTIONS(1046), + [aux_sym__val_number_decimal_token4] = ACTIONS(1046), + [aux_sym__val_number_token1] = ACTIONS(1046), + [aux_sym__val_number_token2] = ACTIONS(1046), + [aux_sym__val_number_token3] = ACTIONS(1046), + [anon_sym_DQUOTE] = ACTIONS(1046), + [sym__str_single_quotes] = ACTIONS(1046), + [sym__str_back_ticks] = ACTIONS(1046), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1046), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_POUND] = ACTIONS(247), }, [477] = { [sym_comment] = STATE(477), - [anon_sym_export] = ACTIONS(2241), - [anon_sym_alias] = ACTIONS(2241), - [anon_sym_let] = ACTIONS(2241), - [anon_sym_let_DASHenv] = ACTIONS(2241), - [anon_sym_mut] = ACTIONS(2241), - [anon_sym_const] = ACTIONS(2241), - [aux_sym_cmd_identifier_token1] = ACTIONS(2241), - [aux_sym_cmd_identifier_token2] = ACTIONS(2241), - [aux_sym_cmd_identifier_token3] = ACTIONS(2241), - [aux_sym_cmd_identifier_token4] = ACTIONS(2241), - [aux_sym_cmd_identifier_token5] = ACTIONS(2241), - [aux_sym_cmd_identifier_token6] = ACTIONS(2241), - [aux_sym_cmd_identifier_token7] = ACTIONS(2241), - [aux_sym_cmd_identifier_token8] = ACTIONS(2241), - [aux_sym_cmd_identifier_token9] = ACTIONS(2241), - [aux_sym_cmd_identifier_token10] = ACTIONS(2241), - [aux_sym_cmd_identifier_token11] = ACTIONS(2241), - [aux_sym_cmd_identifier_token12] = ACTIONS(2241), - [aux_sym_cmd_identifier_token13] = ACTIONS(2241), - [aux_sym_cmd_identifier_token14] = ACTIONS(2241), - [aux_sym_cmd_identifier_token15] = ACTIONS(2241), - [aux_sym_cmd_identifier_token16] = ACTIONS(2241), - [aux_sym_cmd_identifier_token17] = ACTIONS(2241), - [aux_sym_cmd_identifier_token18] = ACTIONS(2241), - [aux_sym_cmd_identifier_token19] = ACTIONS(2241), - [aux_sym_cmd_identifier_token20] = ACTIONS(2241), - [aux_sym_cmd_identifier_token21] = ACTIONS(2241), - [aux_sym_cmd_identifier_token22] = ACTIONS(2241), - [aux_sym_cmd_identifier_token23] = ACTIONS(2241), - [aux_sym_cmd_identifier_token24] = ACTIONS(2241), - [aux_sym_cmd_identifier_token25] = ACTIONS(2241), - [aux_sym_cmd_identifier_token26] = ACTIONS(2241), - [aux_sym_cmd_identifier_token27] = ACTIONS(2241), - [aux_sym_cmd_identifier_token28] = ACTIONS(2241), - [aux_sym_cmd_identifier_token29] = ACTIONS(2241), - [aux_sym_cmd_identifier_token30] = ACTIONS(2241), - [aux_sym_cmd_identifier_token31] = ACTIONS(2241), - [aux_sym_cmd_identifier_token32] = ACTIONS(2241), - [aux_sym_cmd_identifier_token33] = ACTIONS(2241), - [aux_sym_cmd_identifier_token34] = ACTIONS(2241), - [aux_sym_cmd_identifier_token35] = ACTIONS(2241), - [aux_sym_cmd_identifier_token36] = ACTIONS(2241), - [anon_sym_true] = ACTIONS(2241), - [anon_sym_false] = ACTIONS(2241), - [anon_sym_null] = ACTIONS(2241), - [aux_sym_cmd_identifier_token38] = ACTIONS(2241), - [aux_sym_cmd_identifier_token39] = ACTIONS(2241), - [aux_sym_cmd_identifier_token40] = ACTIONS(2241), - [anon_sym_def] = ACTIONS(2241), - [anon_sym_export_DASHenv] = ACTIONS(2241), - [anon_sym_extern] = ACTIONS(2241), - [anon_sym_module] = ACTIONS(2241), - [anon_sym_use] = ACTIONS(2241), - [anon_sym_RBRACK] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2241), - [anon_sym_DOLLAR] = ACTIONS(2241), - [anon_sym_error] = ACTIONS(2241), - [anon_sym_list] = ACTIONS(2241), - [anon_sym_DASH] = ACTIONS(2241), - [anon_sym_break] = ACTIONS(2241), - [anon_sym_continue] = ACTIONS(2241), - [anon_sym_for] = ACTIONS(2241), - [anon_sym_in] = ACTIONS(2241), - [anon_sym_loop] = ACTIONS(2241), - [anon_sym_make] = ACTIONS(2241), - [anon_sym_while] = ACTIONS(2241), - [anon_sym_do] = ACTIONS(2241), - [anon_sym_if] = ACTIONS(2241), - [anon_sym_else] = ACTIONS(2241), - [anon_sym_match] = ACTIONS(2241), - [anon_sym_RBRACE] = ACTIONS(2241), - [anon_sym_try] = ACTIONS(2241), - [anon_sym_catch] = ACTIONS(2241), - [anon_sym_return] = ACTIONS(2241), - [anon_sym_source] = ACTIONS(2241), - [anon_sym_source_DASHenv] = ACTIONS(2241), - [anon_sym_register] = ACTIONS(2241), - [anon_sym_hide] = ACTIONS(2241), - [anon_sym_hide_DASHenv] = ACTIONS(2241), - [anon_sym_overlay] = ACTIONS(2241), - [anon_sym_new] = ACTIONS(2241), - [anon_sym_as] = ACTIONS(2241), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2241), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2241), - [aux_sym__val_number_decimal_token1] = ACTIONS(2241), - [aux_sym__val_number_decimal_token2] = ACTIONS(2241), - [aux_sym__val_number_decimal_token3] = ACTIONS(2241), - [aux_sym__val_number_decimal_token4] = ACTIONS(2241), - [aux_sym__val_number_token1] = ACTIONS(2241), - [aux_sym__val_number_token2] = ACTIONS(2241), - [aux_sym__val_number_token3] = ACTIONS(2241), - [anon_sym_DQUOTE] = ACTIONS(2241), - [sym__str_single_quotes] = ACTIONS(2241), - [sym__str_back_ticks] = ACTIONS(2241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2241), - [sym__entry_separator] = ACTIONS(2243), - [anon_sym_PLUS] = ACTIONS(2241), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_alias] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_let_DASHenv] = ACTIONS(1048), + [anon_sym_mut] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1048), + [aux_sym_cmd_identifier_token1] = ACTIONS(1048), + [aux_sym_cmd_identifier_token2] = ACTIONS(1048), + [aux_sym_cmd_identifier_token3] = ACTIONS(1048), + [aux_sym_cmd_identifier_token4] = ACTIONS(1048), + [aux_sym_cmd_identifier_token5] = ACTIONS(1048), + [aux_sym_cmd_identifier_token6] = ACTIONS(1048), + [aux_sym_cmd_identifier_token7] = ACTIONS(1048), + [aux_sym_cmd_identifier_token8] = ACTIONS(1048), + [aux_sym_cmd_identifier_token9] = ACTIONS(1048), + [aux_sym_cmd_identifier_token10] = ACTIONS(1048), + [aux_sym_cmd_identifier_token11] = ACTIONS(1048), + [aux_sym_cmd_identifier_token12] = ACTIONS(1048), + [aux_sym_cmd_identifier_token13] = ACTIONS(1048), + [aux_sym_cmd_identifier_token14] = ACTIONS(1048), + [aux_sym_cmd_identifier_token15] = ACTIONS(1048), + [aux_sym_cmd_identifier_token16] = ACTIONS(1048), + [aux_sym_cmd_identifier_token17] = ACTIONS(1048), + [aux_sym_cmd_identifier_token18] = ACTIONS(1048), + [aux_sym_cmd_identifier_token19] = ACTIONS(1048), + [aux_sym_cmd_identifier_token20] = ACTIONS(1048), + [aux_sym_cmd_identifier_token21] = ACTIONS(1048), + [aux_sym_cmd_identifier_token22] = ACTIONS(1048), + [aux_sym_cmd_identifier_token23] = ACTIONS(1048), + [aux_sym_cmd_identifier_token24] = ACTIONS(1048), + [aux_sym_cmd_identifier_token25] = ACTIONS(1048), + [aux_sym_cmd_identifier_token26] = ACTIONS(1048), + [aux_sym_cmd_identifier_token27] = ACTIONS(1048), + [aux_sym_cmd_identifier_token28] = ACTIONS(1048), + [aux_sym_cmd_identifier_token29] = ACTIONS(1048), + [aux_sym_cmd_identifier_token30] = ACTIONS(1048), + [aux_sym_cmd_identifier_token31] = ACTIONS(1048), + [aux_sym_cmd_identifier_token32] = ACTIONS(1048), + [aux_sym_cmd_identifier_token33] = ACTIONS(1048), + [aux_sym_cmd_identifier_token34] = ACTIONS(1048), + [aux_sym_cmd_identifier_token35] = ACTIONS(1048), + [aux_sym_cmd_identifier_token36] = ACTIONS(1048), + [anon_sym_true] = ACTIONS(1050), + [anon_sym_false] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1050), + [aux_sym_cmd_identifier_token38] = ACTIONS(1048), + [aux_sym_cmd_identifier_token39] = ACTIONS(1050), + [aux_sym_cmd_identifier_token40] = ACTIONS(1050), + [anon_sym_def] = ACTIONS(1048), + [anon_sym_export_DASHenv] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_use] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_error] = ACTIONS(1048), + [anon_sym_list] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_in] = ACTIONS(1048), + [anon_sym_loop] = ACTIONS(1048), + [anon_sym_make] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_else] = ACTIONS(1048), + [anon_sym_match] = ACTIONS(1048), + [anon_sym_RBRACE] = ACTIONS(1050), + [anon_sym_try] = ACTIONS(1048), + [anon_sym_catch] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_source] = ACTIONS(1048), + [anon_sym_source_DASHenv] = ACTIONS(1048), + [anon_sym_register] = ACTIONS(1048), + [anon_sym_hide] = ACTIONS(1048), + [anon_sym_hide_DASHenv] = ACTIONS(1048), + [anon_sym_overlay] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1048), + [anon_sym_as] = ACTIONS(1048), + [anon_sym_QMARK2] = ACTIONS(1050), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1050), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1050), + [aux_sym__val_number_decimal_token1] = ACTIONS(1048), + [aux_sym__val_number_decimal_token2] = ACTIONS(1050), + [aux_sym__val_number_decimal_token3] = ACTIONS(1050), + [aux_sym__val_number_decimal_token4] = ACTIONS(1050), + [aux_sym__val_number_token1] = ACTIONS(1050), + [aux_sym__val_number_token2] = ACTIONS(1050), + [aux_sym__val_number_token3] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym__str_single_quotes] = ACTIONS(1050), + [sym__str_back_ticks] = ACTIONS(1050), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_POUND] = ACTIONS(247), }, [478] = { [sym_comment] = STATE(478), - [anon_sym_export] = ACTIONS(966), - [anon_sym_alias] = ACTIONS(966), - [anon_sym_let] = ACTIONS(966), - [anon_sym_let_DASHenv] = ACTIONS(966), - [anon_sym_mut] = ACTIONS(966), - [anon_sym_const] = ACTIONS(966), - [aux_sym_cmd_identifier_token1] = ACTIONS(966), - [aux_sym_cmd_identifier_token2] = ACTIONS(966), - [aux_sym_cmd_identifier_token3] = ACTIONS(966), - [aux_sym_cmd_identifier_token4] = ACTIONS(966), - [aux_sym_cmd_identifier_token5] = ACTIONS(966), - [aux_sym_cmd_identifier_token6] = ACTIONS(966), - [aux_sym_cmd_identifier_token7] = ACTIONS(966), - [aux_sym_cmd_identifier_token8] = ACTIONS(966), - [aux_sym_cmd_identifier_token9] = ACTIONS(966), - [aux_sym_cmd_identifier_token10] = ACTIONS(966), - [aux_sym_cmd_identifier_token11] = ACTIONS(966), - [aux_sym_cmd_identifier_token12] = ACTIONS(966), - [aux_sym_cmd_identifier_token13] = ACTIONS(966), - [aux_sym_cmd_identifier_token14] = ACTIONS(966), - [aux_sym_cmd_identifier_token15] = ACTIONS(966), - [aux_sym_cmd_identifier_token16] = ACTIONS(966), - [aux_sym_cmd_identifier_token17] = ACTIONS(966), - [aux_sym_cmd_identifier_token18] = ACTIONS(966), - [aux_sym_cmd_identifier_token19] = ACTIONS(966), - [aux_sym_cmd_identifier_token20] = ACTIONS(966), - [aux_sym_cmd_identifier_token21] = ACTIONS(966), - [aux_sym_cmd_identifier_token22] = ACTIONS(966), - [aux_sym_cmd_identifier_token23] = ACTIONS(966), - [aux_sym_cmd_identifier_token24] = ACTIONS(966), - [aux_sym_cmd_identifier_token25] = ACTIONS(966), - [aux_sym_cmd_identifier_token26] = ACTIONS(966), - [aux_sym_cmd_identifier_token27] = ACTIONS(966), - [aux_sym_cmd_identifier_token28] = ACTIONS(966), - [aux_sym_cmd_identifier_token29] = ACTIONS(966), - [aux_sym_cmd_identifier_token30] = ACTIONS(966), - [aux_sym_cmd_identifier_token31] = ACTIONS(966), - [aux_sym_cmd_identifier_token32] = ACTIONS(966), - [aux_sym_cmd_identifier_token33] = ACTIONS(966), - [aux_sym_cmd_identifier_token34] = ACTIONS(966), - [aux_sym_cmd_identifier_token35] = ACTIONS(966), - [aux_sym_cmd_identifier_token36] = ACTIONS(966), - [anon_sym_true] = ACTIONS(968), - [anon_sym_false] = ACTIONS(968), - [anon_sym_null] = ACTIONS(968), - [aux_sym_cmd_identifier_token38] = ACTIONS(966), - [aux_sym_cmd_identifier_token39] = ACTIONS(968), - [aux_sym_cmd_identifier_token40] = ACTIONS(968), - [anon_sym_def] = ACTIONS(966), - [anon_sym_export_DASHenv] = ACTIONS(966), - [anon_sym_extern] = ACTIONS(966), - [anon_sym_module] = ACTIONS(966), - [anon_sym_use] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_error] = ACTIONS(966), - [anon_sym_list] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_break] = ACTIONS(966), - [anon_sym_continue] = ACTIONS(966), - [anon_sym_for] = ACTIONS(966), - [anon_sym_in] = ACTIONS(966), - [anon_sym_loop] = ACTIONS(966), - [anon_sym_make] = ACTIONS(966), - [anon_sym_while] = ACTIONS(966), - [anon_sym_do] = ACTIONS(966), - [anon_sym_if] = ACTIONS(966), - [anon_sym_else] = ACTIONS(966), - [anon_sym_match] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_try] = ACTIONS(966), - [anon_sym_catch] = ACTIONS(966), - [anon_sym_return] = ACTIONS(966), - [anon_sym_source] = ACTIONS(966), - [anon_sym_source_DASHenv] = ACTIONS(966), - [anon_sym_register] = ACTIONS(966), - [anon_sym_hide] = ACTIONS(966), - [anon_sym_hide_DASHenv] = ACTIONS(966), - [anon_sym_overlay] = ACTIONS(966), - [anon_sym_new] = ACTIONS(966), - [anon_sym_as] = ACTIONS(966), - [anon_sym_QMARK2] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(968), - [anon_sym_DOT] = ACTIONS(966), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(968), - [aux_sym__val_number_decimal_token1] = ACTIONS(966), - [aux_sym__val_number_decimal_token2] = ACTIONS(968), - [aux_sym__val_number_decimal_token3] = ACTIONS(968), - [aux_sym__val_number_decimal_token4] = ACTIONS(968), - [aux_sym__val_number_token1] = ACTIONS(968), - [aux_sym__val_number_token2] = ACTIONS(968), - [aux_sym__val_number_token3] = ACTIONS(968), - [anon_sym_DQUOTE] = ACTIONS(968), - [sym__str_single_quotes] = ACTIONS(968), - [sym__str_back_ticks] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(2293), + [anon_sym_alias] = ACTIONS(2293), + [anon_sym_let] = ACTIONS(2293), + [anon_sym_let_DASHenv] = ACTIONS(2293), + [anon_sym_mut] = ACTIONS(2293), + [anon_sym_const] = ACTIONS(2293), + [aux_sym_cmd_identifier_token1] = ACTIONS(2293), + [aux_sym_cmd_identifier_token2] = ACTIONS(2293), + [aux_sym_cmd_identifier_token3] = ACTIONS(2293), + [aux_sym_cmd_identifier_token4] = ACTIONS(2293), + [aux_sym_cmd_identifier_token5] = ACTIONS(2293), + [aux_sym_cmd_identifier_token6] = ACTIONS(2293), + [aux_sym_cmd_identifier_token7] = ACTIONS(2293), + [aux_sym_cmd_identifier_token8] = ACTIONS(2293), + [aux_sym_cmd_identifier_token9] = ACTIONS(2293), + [aux_sym_cmd_identifier_token10] = ACTIONS(2293), + [aux_sym_cmd_identifier_token11] = ACTIONS(2293), + [aux_sym_cmd_identifier_token12] = ACTIONS(2293), + [aux_sym_cmd_identifier_token13] = ACTIONS(2293), + [aux_sym_cmd_identifier_token14] = ACTIONS(2293), + [aux_sym_cmd_identifier_token15] = ACTIONS(2293), + [aux_sym_cmd_identifier_token16] = ACTIONS(2293), + [aux_sym_cmd_identifier_token17] = ACTIONS(2293), + [aux_sym_cmd_identifier_token18] = ACTIONS(2293), + [aux_sym_cmd_identifier_token19] = ACTIONS(2293), + [aux_sym_cmd_identifier_token20] = ACTIONS(2293), + [aux_sym_cmd_identifier_token21] = ACTIONS(2293), + [aux_sym_cmd_identifier_token22] = ACTIONS(2293), + [aux_sym_cmd_identifier_token23] = ACTIONS(2293), + [aux_sym_cmd_identifier_token24] = ACTIONS(2293), + [aux_sym_cmd_identifier_token25] = ACTIONS(2293), + [aux_sym_cmd_identifier_token26] = ACTIONS(2293), + [aux_sym_cmd_identifier_token27] = ACTIONS(2293), + [aux_sym_cmd_identifier_token28] = ACTIONS(2293), + [aux_sym_cmd_identifier_token29] = ACTIONS(2293), + [aux_sym_cmd_identifier_token30] = ACTIONS(2293), + [aux_sym_cmd_identifier_token31] = ACTIONS(2293), + [aux_sym_cmd_identifier_token32] = ACTIONS(2293), + [aux_sym_cmd_identifier_token33] = ACTIONS(2293), + [aux_sym_cmd_identifier_token34] = ACTIONS(2293), + [aux_sym_cmd_identifier_token35] = ACTIONS(2293), + [aux_sym_cmd_identifier_token36] = ACTIONS(2293), + [anon_sym_true] = ACTIONS(2293), + [anon_sym_false] = ACTIONS(2293), + [anon_sym_null] = ACTIONS(2293), + [aux_sym_cmd_identifier_token38] = ACTIONS(2293), + [aux_sym_cmd_identifier_token39] = ACTIONS(2293), + [aux_sym_cmd_identifier_token40] = ACTIONS(2293), + [anon_sym_def] = ACTIONS(2293), + [anon_sym_export_DASHenv] = ACTIONS(2293), + [anon_sym_extern] = ACTIONS(2293), + [anon_sym_module] = ACTIONS(2293), + [anon_sym_use] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(2293), + [anon_sym_DOLLAR] = ACTIONS(2293), + [anon_sym_error] = ACTIONS(2293), + [anon_sym_list] = ACTIONS(2293), + [anon_sym_DASH] = ACTIONS(2293), + [anon_sym_break] = ACTIONS(2293), + [anon_sym_continue] = ACTIONS(2293), + [anon_sym_for] = ACTIONS(2293), + [anon_sym_in] = ACTIONS(2293), + [anon_sym_loop] = ACTIONS(2293), + [anon_sym_make] = ACTIONS(2293), + [anon_sym_while] = ACTIONS(2293), + [anon_sym_do] = ACTIONS(2293), + [anon_sym_if] = ACTIONS(2293), + [anon_sym_else] = ACTIONS(2293), + [anon_sym_match] = ACTIONS(2293), + [anon_sym_RBRACE] = ACTIONS(2297), + [anon_sym_try] = ACTIONS(2293), + [anon_sym_catch] = ACTIONS(2293), + [anon_sym_return] = ACTIONS(2293), + [anon_sym_source] = ACTIONS(2293), + [anon_sym_source_DASHenv] = ACTIONS(2293), + [anon_sym_register] = ACTIONS(2293), + [anon_sym_hide] = ACTIONS(2293), + [anon_sym_hide_DASHenv] = ACTIONS(2293), + [anon_sym_overlay] = ACTIONS(2293), + [anon_sym_new] = ACTIONS(2293), + [anon_sym_as] = ACTIONS(2293), + [anon_sym_LPAREN2] = ACTIONS(2295), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2297), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2293), + [aux_sym__val_number_decimal_token1] = ACTIONS(2293), + [aux_sym__val_number_decimal_token2] = ACTIONS(2293), + [aux_sym__val_number_decimal_token3] = ACTIONS(2293), + [aux_sym__val_number_decimal_token4] = ACTIONS(2293), + [aux_sym__val_number_token1] = ACTIONS(2293), + [aux_sym__val_number_token2] = ACTIONS(2293), + [aux_sym__val_number_token3] = ACTIONS(2293), + [anon_sym_DQUOTE] = ACTIONS(2297), + [sym__str_single_quotes] = ACTIONS(2297), + [sym__str_back_ticks] = ACTIONS(2297), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2297), + [anon_sym_PLUS] = ACTIONS(2293), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2299), + [anon_sym_POUND] = ACTIONS(3), }, [479] = { [sym_comment] = STATE(479), - [anon_sym_export] = ACTIONS(976), - [anon_sym_alias] = ACTIONS(976), - [anon_sym_let] = ACTIONS(976), - [anon_sym_let_DASHenv] = ACTIONS(976), - [anon_sym_mut] = ACTIONS(976), - [anon_sym_const] = ACTIONS(976), - [aux_sym_cmd_identifier_token1] = ACTIONS(976), - [aux_sym_cmd_identifier_token2] = ACTIONS(976), - [aux_sym_cmd_identifier_token3] = ACTIONS(976), - [aux_sym_cmd_identifier_token4] = ACTIONS(976), - [aux_sym_cmd_identifier_token5] = ACTIONS(976), - [aux_sym_cmd_identifier_token6] = ACTIONS(976), - [aux_sym_cmd_identifier_token7] = ACTIONS(976), - [aux_sym_cmd_identifier_token8] = ACTIONS(976), - [aux_sym_cmd_identifier_token9] = ACTIONS(976), - [aux_sym_cmd_identifier_token10] = ACTIONS(976), - [aux_sym_cmd_identifier_token11] = ACTIONS(976), - [aux_sym_cmd_identifier_token12] = ACTIONS(976), - [aux_sym_cmd_identifier_token13] = ACTIONS(976), - [aux_sym_cmd_identifier_token14] = ACTIONS(976), - [aux_sym_cmd_identifier_token15] = ACTIONS(976), - [aux_sym_cmd_identifier_token16] = ACTIONS(976), - [aux_sym_cmd_identifier_token17] = ACTIONS(976), - [aux_sym_cmd_identifier_token18] = ACTIONS(976), - [aux_sym_cmd_identifier_token19] = ACTIONS(976), - [aux_sym_cmd_identifier_token20] = ACTIONS(976), - [aux_sym_cmd_identifier_token21] = ACTIONS(976), - [aux_sym_cmd_identifier_token22] = ACTIONS(976), - [aux_sym_cmd_identifier_token23] = ACTIONS(976), - [aux_sym_cmd_identifier_token24] = ACTIONS(976), - [aux_sym_cmd_identifier_token25] = ACTIONS(976), - [aux_sym_cmd_identifier_token26] = ACTIONS(976), - [aux_sym_cmd_identifier_token27] = ACTIONS(976), - [aux_sym_cmd_identifier_token28] = ACTIONS(976), - [aux_sym_cmd_identifier_token29] = ACTIONS(976), - [aux_sym_cmd_identifier_token30] = ACTIONS(976), - [aux_sym_cmd_identifier_token31] = ACTIONS(976), - [aux_sym_cmd_identifier_token32] = ACTIONS(976), - [aux_sym_cmd_identifier_token33] = ACTIONS(976), - [aux_sym_cmd_identifier_token34] = ACTIONS(976), - [aux_sym_cmd_identifier_token35] = ACTIONS(976), - [aux_sym_cmd_identifier_token36] = ACTIONS(976), - [anon_sym_true] = ACTIONS(978), - [anon_sym_false] = ACTIONS(978), - [anon_sym_null] = ACTIONS(978), - [aux_sym_cmd_identifier_token38] = ACTIONS(976), - [aux_sym_cmd_identifier_token39] = ACTIONS(978), - [aux_sym_cmd_identifier_token40] = ACTIONS(978), - [anon_sym_def] = ACTIONS(976), - [anon_sym_export_DASHenv] = ACTIONS(976), - [anon_sym_extern] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_use] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(978), - [anon_sym_DOLLAR] = ACTIONS(978), - [anon_sym_error] = ACTIONS(976), - [anon_sym_list] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_break] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_in] = ACTIONS(976), - [anon_sym_loop] = ACTIONS(976), - [anon_sym_make] = ACTIONS(976), - [anon_sym_while] = ACTIONS(976), - [anon_sym_do] = ACTIONS(976), - [anon_sym_if] = ACTIONS(976), - [anon_sym_else] = ACTIONS(976), - [anon_sym_match] = ACTIONS(976), - [anon_sym_RBRACE] = ACTIONS(978), - [anon_sym_try] = ACTIONS(976), - [anon_sym_catch] = ACTIONS(976), - [anon_sym_return] = ACTIONS(976), - [anon_sym_source] = ACTIONS(976), - [anon_sym_source_DASHenv] = ACTIONS(976), - [anon_sym_register] = ACTIONS(976), - [anon_sym_hide] = ACTIONS(976), - [anon_sym_hide_DASHenv] = ACTIONS(976), - [anon_sym_overlay] = ACTIONS(976), - [anon_sym_new] = ACTIONS(976), - [anon_sym_as] = ACTIONS(976), - [anon_sym_QMARK2] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(978), - [anon_sym_DOT] = ACTIONS(976), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(978), - [aux_sym__val_number_decimal_token1] = ACTIONS(976), - [aux_sym__val_number_decimal_token2] = ACTIONS(978), - [aux_sym__val_number_decimal_token3] = ACTIONS(978), - [aux_sym__val_number_decimal_token4] = ACTIONS(978), - [aux_sym__val_number_token1] = ACTIONS(978), - [aux_sym__val_number_token2] = ACTIONS(978), - [aux_sym__val_number_token3] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(978), - [sym__str_single_quotes] = ACTIONS(978), - [sym__str_back_ticks] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(978), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(2243), + [anon_sym_alias] = ACTIONS(2243), + [anon_sym_let] = ACTIONS(2243), + [anon_sym_let_DASHenv] = ACTIONS(2243), + [anon_sym_mut] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(2243), + [aux_sym_cmd_identifier_token1] = ACTIONS(2243), + [aux_sym_cmd_identifier_token2] = ACTIONS(2243), + [aux_sym_cmd_identifier_token3] = ACTIONS(2243), + [aux_sym_cmd_identifier_token4] = ACTIONS(2243), + [aux_sym_cmd_identifier_token5] = ACTIONS(2243), + [aux_sym_cmd_identifier_token6] = ACTIONS(2243), + [aux_sym_cmd_identifier_token7] = ACTIONS(2243), + [aux_sym_cmd_identifier_token8] = ACTIONS(2243), + [aux_sym_cmd_identifier_token9] = ACTIONS(2243), + [aux_sym_cmd_identifier_token10] = ACTIONS(2243), + [aux_sym_cmd_identifier_token11] = ACTIONS(2243), + [aux_sym_cmd_identifier_token12] = ACTIONS(2243), + [aux_sym_cmd_identifier_token13] = ACTIONS(2243), + [aux_sym_cmd_identifier_token14] = ACTIONS(2243), + [aux_sym_cmd_identifier_token15] = ACTIONS(2243), + [aux_sym_cmd_identifier_token16] = ACTIONS(2243), + [aux_sym_cmd_identifier_token17] = ACTIONS(2243), + [aux_sym_cmd_identifier_token18] = ACTIONS(2243), + [aux_sym_cmd_identifier_token19] = ACTIONS(2243), + [aux_sym_cmd_identifier_token20] = ACTIONS(2243), + [aux_sym_cmd_identifier_token21] = ACTIONS(2243), + [aux_sym_cmd_identifier_token22] = ACTIONS(2243), + [aux_sym_cmd_identifier_token23] = ACTIONS(2243), + [aux_sym_cmd_identifier_token24] = ACTIONS(2243), + [aux_sym_cmd_identifier_token25] = ACTIONS(2243), + [aux_sym_cmd_identifier_token26] = ACTIONS(2243), + [aux_sym_cmd_identifier_token27] = ACTIONS(2243), + [aux_sym_cmd_identifier_token28] = ACTIONS(2243), + [aux_sym_cmd_identifier_token29] = ACTIONS(2243), + [aux_sym_cmd_identifier_token30] = ACTIONS(2243), + [aux_sym_cmd_identifier_token31] = ACTIONS(2243), + [aux_sym_cmd_identifier_token32] = ACTIONS(2243), + [aux_sym_cmd_identifier_token33] = ACTIONS(2243), + [aux_sym_cmd_identifier_token34] = ACTIONS(2243), + [aux_sym_cmd_identifier_token35] = ACTIONS(2243), + [aux_sym_cmd_identifier_token36] = ACTIONS(2243), + [anon_sym_true] = ACTIONS(2243), + [anon_sym_false] = ACTIONS(2243), + [anon_sym_null] = ACTIONS(2243), + [aux_sym_cmd_identifier_token38] = ACTIONS(2243), + [aux_sym_cmd_identifier_token39] = ACTIONS(2243), + [aux_sym_cmd_identifier_token40] = ACTIONS(2243), + [anon_sym_def] = ACTIONS(2243), + [anon_sym_export_DASHenv] = ACTIONS(2243), + [anon_sym_extern] = ACTIONS(2243), + [anon_sym_module] = ACTIONS(2243), + [anon_sym_use] = ACTIONS(2243), + [anon_sym_LPAREN] = ACTIONS(2243), + [anon_sym_DOLLAR] = ACTIONS(2243), + [anon_sym_error] = ACTIONS(2243), + [anon_sym_list] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_break] = ACTIONS(2243), + [anon_sym_continue] = ACTIONS(2243), + [anon_sym_for] = ACTIONS(2243), + [anon_sym_in] = ACTIONS(2243), + [anon_sym_loop] = ACTIONS(2243), + [anon_sym_make] = ACTIONS(2243), + [anon_sym_while] = ACTIONS(2243), + [anon_sym_do] = ACTIONS(2243), + [anon_sym_if] = ACTIONS(2243), + [anon_sym_else] = ACTIONS(2243), + [anon_sym_match] = ACTIONS(2243), + [anon_sym_RBRACE] = ACTIONS(2247), + [anon_sym_try] = ACTIONS(2243), + [anon_sym_catch] = ACTIONS(2243), + [anon_sym_return] = ACTIONS(2243), + [anon_sym_source] = ACTIONS(2243), + [anon_sym_source_DASHenv] = ACTIONS(2243), + [anon_sym_register] = ACTIONS(2243), + [anon_sym_hide] = ACTIONS(2243), + [anon_sym_hide_DASHenv] = ACTIONS(2243), + [anon_sym_overlay] = ACTIONS(2243), + [anon_sym_new] = ACTIONS(2243), + [anon_sym_as] = ACTIONS(2243), + [anon_sym_LPAREN2] = ACTIONS(2245), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2247), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2243), + [aux_sym__val_number_decimal_token1] = ACTIONS(2243), + [aux_sym__val_number_decimal_token2] = ACTIONS(2243), + [aux_sym__val_number_decimal_token3] = ACTIONS(2243), + [aux_sym__val_number_decimal_token4] = ACTIONS(2243), + [aux_sym__val_number_token1] = ACTIONS(2243), + [aux_sym__val_number_token2] = ACTIONS(2243), + [aux_sym__val_number_token3] = ACTIONS(2243), + [anon_sym_DQUOTE] = ACTIONS(2247), + [sym__str_single_quotes] = ACTIONS(2247), + [sym__str_back_ticks] = ACTIONS(2247), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2247), + [anon_sym_PLUS] = ACTIONS(2243), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2249), + [anon_sym_POUND] = ACTIONS(3), }, [480] = { [sym_comment] = STATE(480), - [anon_sym_export] = ACTIONS(962), - [anon_sym_alias] = ACTIONS(962), - [anon_sym_let] = ACTIONS(962), - [anon_sym_let_DASHenv] = ACTIONS(962), - [anon_sym_mut] = ACTIONS(962), - [anon_sym_const] = ACTIONS(962), - [aux_sym_cmd_identifier_token1] = ACTIONS(962), - [aux_sym_cmd_identifier_token2] = ACTIONS(962), - [aux_sym_cmd_identifier_token3] = ACTIONS(962), - [aux_sym_cmd_identifier_token4] = ACTIONS(962), - [aux_sym_cmd_identifier_token5] = ACTIONS(962), - [aux_sym_cmd_identifier_token6] = ACTIONS(962), - [aux_sym_cmd_identifier_token7] = ACTIONS(962), - [aux_sym_cmd_identifier_token8] = ACTIONS(962), - [aux_sym_cmd_identifier_token9] = ACTIONS(962), - [aux_sym_cmd_identifier_token10] = ACTIONS(962), - [aux_sym_cmd_identifier_token11] = ACTIONS(962), - [aux_sym_cmd_identifier_token12] = ACTIONS(962), - [aux_sym_cmd_identifier_token13] = ACTIONS(962), - [aux_sym_cmd_identifier_token14] = ACTIONS(962), - [aux_sym_cmd_identifier_token15] = ACTIONS(962), - [aux_sym_cmd_identifier_token16] = ACTIONS(962), - [aux_sym_cmd_identifier_token17] = ACTIONS(962), - [aux_sym_cmd_identifier_token18] = ACTIONS(962), - [aux_sym_cmd_identifier_token19] = ACTIONS(962), - [aux_sym_cmd_identifier_token20] = ACTIONS(962), - [aux_sym_cmd_identifier_token21] = ACTIONS(962), - [aux_sym_cmd_identifier_token22] = ACTIONS(962), - [aux_sym_cmd_identifier_token23] = ACTIONS(962), - [aux_sym_cmd_identifier_token24] = ACTIONS(962), - [aux_sym_cmd_identifier_token25] = ACTIONS(962), - [aux_sym_cmd_identifier_token26] = ACTIONS(962), - [aux_sym_cmd_identifier_token27] = ACTIONS(962), - [aux_sym_cmd_identifier_token28] = ACTIONS(962), - [aux_sym_cmd_identifier_token29] = ACTIONS(962), - [aux_sym_cmd_identifier_token30] = ACTIONS(962), - [aux_sym_cmd_identifier_token31] = ACTIONS(962), - [aux_sym_cmd_identifier_token32] = ACTIONS(962), - [aux_sym_cmd_identifier_token33] = ACTIONS(962), - [aux_sym_cmd_identifier_token34] = ACTIONS(962), - [aux_sym_cmd_identifier_token35] = ACTIONS(962), - [aux_sym_cmd_identifier_token36] = ACTIONS(962), - [anon_sym_true] = ACTIONS(964), - [anon_sym_false] = ACTIONS(964), - [anon_sym_null] = ACTIONS(964), - [aux_sym_cmd_identifier_token38] = ACTIONS(962), - [aux_sym_cmd_identifier_token39] = ACTIONS(964), - [aux_sym_cmd_identifier_token40] = ACTIONS(964), - [anon_sym_def] = ACTIONS(962), - [anon_sym_export_DASHenv] = ACTIONS(962), - [anon_sym_extern] = ACTIONS(962), - [anon_sym_module] = ACTIONS(962), - [anon_sym_use] = ACTIONS(962), - [anon_sym_LPAREN] = ACTIONS(964), - [anon_sym_DOLLAR] = ACTIONS(964), - [anon_sym_error] = ACTIONS(962), - [anon_sym_list] = ACTIONS(962), - [anon_sym_DASH] = ACTIONS(962), - [anon_sym_break] = ACTIONS(962), - [anon_sym_continue] = ACTIONS(962), - [anon_sym_for] = ACTIONS(962), - [anon_sym_in] = ACTIONS(962), - [anon_sym_loop] = ACTIONS(962), - [anon_sym_make] = ACTIONS(962), - [anon_sym_while] = ACTIONS(962), - [anon_sym_do] = ACTIONS(962), - [anon_sym_if] = ACTIONS(962), - [anon_sym_else] = ACTIONS(962), - [anon_sym_match] = ACTIONS(962), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_try] = ACTIONS(962), - [anon_sym_catch] = ACTIONS(962), - [anon_sym_return] = ACTIONS(962), - [anon_sym_source] = ACTIONS(962), - [anon_sym_source_DASHenv] = ACTIONS(962), - [anon_sym_register] = ACTIONS(962), - [anon_sym_hide] = ACTIONS(962), - [anon_sym_hide_DASHenv] = ACTIONS(962), - [anon_sym_overlay] = ACTIONS(962), - [anon_sym_new] = ACTIONS(962), - [anon_sym_as] = ACTIONS(962), - [anon_sym_QMARK2] = ACTIONS(964), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(964), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(964), - [aux_sym__val_number_decimal_token1] = ACTIONS(962), - [aux_sym__val_number_decimal_token2] = ACTIONS(964), - [aux_sym__val_number_decimal_token3] = ACTIONS(964), - [aux_sym__val_number_decimal_token4] = ACTIONS(964), - [aux_sym__val_number_token1] = ACTIONS(964), - [aux_sym__val_number_token2] = ACTIONS(964), - [aux_sym__val_number_token3] = ACTIONS(964), - [anon_sym_DQUOTE] = ACTIONS(964), - [sym__str_single_quotes] = ACTIONS(964), - [sym__str_back_ticks] = ACTIONS(964), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(962), - [anon_sym_POUND] = ACTIONS(247), - }, - [481] = { - [sym_comment] = STATE(481), - [anon_sym_export] = ACTIONS(986), - [anon_sym_alias] = ACTIONS(986), - [anon_sym_let] = ACTIONS(986), - [anon_sym_let_DASHenv] = ACTIONS(986), - [anon_sym_mut] = ACTIONS(986), - [anon_sym_const] = ACTIONS(986), - [aux_sym_cmd_identifier_token1] = ACTIONS(986), - [aux_sym_cmd_identifier_token2] = ACTIONS(986), - [aux_sym_cmd_identifier_token3] = ACTIONS(986), - [aux_sym_cmd_identifier_token4] = ACTIONS(986), - [aux_sym_cmd_identifier_token5] = ACTIONS(986), - [aux_sym_cmd_identifier_token6] = ACTIONS(986), - [aux_sym_cmd_identifier_token7] = ACTIONS(986), - [aux_sym_cmd_identifier_token8] = ACTIONS(986), - [aux_sym_cmd_identifier_token9] = ACTIONS(986), - [aux_sym_cmd_identifier_token10] = ACTIONS(986), - [aux_sym_cmd_identifier_token11] = ACTIONS(986), - [aux_sym_cmd_identifier_token12] = ACTIONS(986), - [aux_sym_cmd_identifier_token13] = ACTIONS(986), - [aux_sym_cmd_identifier_token14] = ACTIONS(986), - [aux_sym_cmd_identifier_token15] = ACTIONS(986), - [aux_sym_cmd_identifier_token16] = ACTIONS(986), - [aux_sym_cmd_identifier_token17] = ACTIONS(986), - [aux_sym_cmd_identifier_token18] = ACTIONS(986), - [aux_sym_cmd_identifier_token19] = ACTIONS(986), - [aux_sym_cmd_identifier_token20] = ACTIONS(986), - [aux_sym_cmd_identifier_token21] = ACTIONS(986), - [aux_sym_cmd_identifier_token22] = ACTIONS(986), - [aux_sym_cmd_identifier_token23] = ACTIONS(986), - [aux_sym_cmd_identifier_token24] = ACTIONS(986), - [aux_sym_cmd_identifier_token25] = ACTIONS(986), - [aux_sym_cmd_identifier_token26] = ACTIONS(986), - [aux_sym_cmd_identifier_token27] = ACTIONS(986), - [aux_sym_cmd_identifier_token28] = ACTIONS(986), - [aux_sym_cmd_identifier_token29] = ACTIONS(986), - [aux_sym_cmd_identifier_token30] = ACTIONS(986), - [aux_sym_cmd_identifier_token31] = ACTIONS(986), - [aux_sym_cmd_identifier_token32] = ACTIONS(986), - [aux_sym_cmd_identifier_token33] = ACTIONS(986), - [aux_sym_cmd_identifier_token34] = ACTIONS(986), - [aux_sym_cmd_identifier_token35] = ACTIONS(986), - [aux_sym_cmd_identifier_token36] = ACTIONS(986), - [anon_sym_true] = ACTIONS(986), - [anon_sym_false] = ACTIONS(986), - [anon_sym_null] = ACTIONS(986), - [aux_sym_cmd_identifier_token38] = ACTIONS(986), - [aux_sym_cmd_identifier_token39] = ACTIONS(986), - [aux_sym_cmd_identifier_token40] = ACTIONS(986), - [anon_sym_def] = ACTIONS(986), - [anon_sym_export_DASHenv] = ACTIONS(986), - [anon_sym_extern] = ACTIONS(986), - [anon_sym_module] = ACTIONS(986), - [anon_sym_use] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(986), - [anon_sym_error] = ACTIONS(986), - [anon_sym_list] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_break] = ACTIONS(986), - [anon_sym_continue] = ACTIONS(986), - [anon_sym_for] = ACTIONS(986), - [anon_sym_in] = ACTIONS(986), - [anon_sym_loop] = ACTIONS(986), - [anon_sym_make] = ACTIONS(986), - [anon_sym_while] = ACTIONS(986), - [anon_sym_do] = ACTIONS(986), - [anon_sym_if] = ACTIONS(986), - [anon_sym_else] = ACTIONS(986), - [anon_sym_match] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_try] = ACTIONS(986), - [anon_sym_catch] = ACTIONS(986), - [anon_sym_return] = ACTIONS(986), - [anon_sym_source] = ACTIONS(986), - [anon_sym_source_DASHenv] = ACTIONS(986), - [anon_sym_register] = ACTIONS(986), - [anon_sym_hide] = ACTIONS(986), - [anon_sym_hide_DASHenv] = ACTIONS(986), - [anon_sym_overlay] = ACTIONS(986), - [anon_sym_new] = ACTIONS(986), - [anon_sym_as] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(986), - [aux_sym__val_number_decimal_token1] = ACTIONS(986), - [aux_sym__val_number_decimal_token2] = ACTIONS(986), - [aux_sym__val_number_decimal_token3] = ACTIONS(986), - [aux_sym__val_number_decimal_token4] = ACTIONS(986), - [aux_sym__val_number_token1] = ACTIONS(986), - [aux_sym__val_number_token2] = ACTIONS(986), - [aux_sym__val_number_token3] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym__str_single_quotes] = ACTIONS(986), - [sym__str_back_ticks] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(986), - [sym__entry_separator] = ACTIONS(988), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_POUND] = ACTIONS(3), - }, - [482] = { - [sym_comment] = STATE(482), - [anon_sym_export] = ACTIONS(1589), - [anon_sym_alias] = ACTIONS(1589), - [anon_sym_let] = ACTIONS(1589), - [anon_sym_let_DASHenv] = ACTIONS(1589), - [anon_sym_mut] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [aux_sym_cmd_identifier_token1] = ACTIONS(1589), - [aux_sym_cmd_identifier_token2] = ACTIONS(1589), - [aux_sym_cmd_identifier_token3] = ACTIONS(1589), - [aux_sym_cmd_identifier_token4] = ACTIONS(1589), - [aux_sym_cmd_identifier_token5] = ACTIONS(1589), - [aux_sym_cmd_identifier_token6] = ACTIONS(1589), - [aux_sym_cmd_identifier_token7] = ACTIONS(1589), - [aux_sym_cmd_identifier_token8] = ACTIONS(1589), - [aux_sym_cmd_identifier_token9] = ACTIONS(1589), - [aux_sym_cmd_identifier_token10] = ACTIONS(1589), - [aux_sym_cmd_identifier_token11] = ACTIONS(1589), - [aux_sym_cmd_identifier_token12] = ACTIONS(1589), - [aux_sym_cmd_identifier_token13] = ACTIONS(1589), - [aux_sym_cmd_identifier_token14] = ACTIONS(1589), - [aux_sym_cmd_identifier_token15] = ACTIONS(1589), - [aux_sym_cmd_identifier_token16] = ACTIONS(1589), - [aux_sym_cmd_identifier_token17] = ACTIONS(1589), - [aux_sym_cmd_identifier_token18] = ACTIONS(1589), - [aux_sym_cmd_identifier_token19] = ACTIONS(1589), - [aux_sym_cmd_identifier_token20] = ACTIONS(1589), - [aux_sym_cmd_identifier_token21] = ACTIONS(1589), - [aux_sym_cmd_identifier_token22] = ACTIONS(1589), - [aux_sym_cmd_identifier_token23] = ACTIONS(1589), - [aux_sym_cmd_identifier_token24] = ACTIONS(1589), - [aux_sym_cmd_identifier_token25] = ACTIONS(1589), - [aux_sym_cmd_identifier_token26] = ACTIONS(1589), - [aux_sym_cmd_identifier_token27] = ACTIONS(1589), - [aux_sym_cmd_identifier_token28] = ACTIONS(1589), - [aux_sym_cmd_identifier_token29] = ACTIONS(1589), - [aux_sym_cmd_identifier_token30] = ACTIONS(1589), - [aux_sym_cmd_identifier_token31] = ACTIONS(1589), - [aux_sym_cmd_identifier_token32] = ACTIONS(1589), - [aux_sym_cmd_identifier_token33] = ACTIONS(1589), - [aux_sym_cmd_identifier_token34] = ACTIONS(1589), - [aux_sym_cmd_identifier_token35] = ACTIONS(1589), - [aux_sym_cmd_identifier_token36] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1589), - [anon_sym_false] = ACTIONS(1589), - [anon_sym_null] = ACTIONS(1589), - [aux_sym_cmd_identifier_token38] = ACTIONS(1589), - [aux_sym_cmd_identifier_token39] = ACTIONS(1589), - [aux_sym_cmd_identifier_token40] = ACTIONS(1589), - [anon_sym_def] = ACTIONS(1589), - [anon_sym_export_DASHenv] = ACTIONS(1589), - [anon_sym_extern] = ACTIONS(1589), - [anon_sym_module] = ACTIONS(1589), - [anon_sym_use] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_error] = ACTIONS(1589), - [anon_sym_list] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_loop] = ACTIONS(1589), - [anon_sym_make] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_else] = ACTIONS(1589), - [anon_sym_match] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1589), - [anon_sym_try] = ACTIONS(1589), - [anon_sym_catch] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_source] = ACTIONS(1589), - [anon_sym_source_DASHenv] = ACTIONS(1589), - [anon_sym_register] = ACTIONS(1589), - [anon_sym_hide] = ACTIONS(1589), - [anon_sym_hide_DASHenv] = ACTIONS(1589), - [anon_sym_overlay] = ACTIONS(1589), - [anon_sym_new] = ACTIONS(1589), - [anon_sym_as] = ACTIONS(1589), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(2147), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1589), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1589), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1589), - [aux_sym__val_number_token1] = ACTIONS(1589), - [aux_sym__val_number_token2] = ACTIONS(1589), - [aux_sym__val_number_token3] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [sym__str_single_quotes] = ACTIONS(1589), - [sym__str_back_ticks] = ACTIONS(1589), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1589), - [sym__entry_separator] = ACTIONS(1591), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(3), - }, - [483] = { - [sym_comment] = STATE(483), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [aux_sym_cmd_identifier_token1] = ACTIONS(990), - [aux_sym_cmd_identifier_token2] = ACTIONS(990), - [aux_sym_cmd_identifier_token3] = ACTIONS(990), - [aux_sym_cmd_identifier_token4] = ACTIONS(990), - [aux_sym_cmd_identifier_token5] = ACTIONS(990), - [aux_sym_cmd_identifier_token6] = ACTIONS(990), - [aux_sym_cmd_identifier_token7] = ACTIONS(990), - [aux_sym_cmd_identifier_token8] = ACTIONS(990), - [aux_sym_cmd_identifier_token9] = ACTIONS(990), - [aux_sym_cmd_identifier_token10] = ACTIONS(990), - [aux_sym_cmd_identifier_token11] = ACTIONS(990), - [aux_sym_cmd_identifier_token12] = ACTIONS(990), - [aux_sym_cmd_identifier_token13] = ACTIONS(990), - [aux_sym_cmd_identifier_token14] = ACTIONS(990), - [aux_sym_cmd_identifier_token15] = ACTIONS(990), - [aux_sym_cmd_identifier_token16] = ACTIONS(990), - [aux_sym_cmd_identifier_token17] = ACTIONS(990), - [aux_sym_cmd_identifier_token18] = ACTIONS(990), - [aux_sym_cmd_identifier_token19] = ACTIONS(990), - [aux_sym_cmd_identifier_token20] = ACTIONS(990), - [aux_sym_cmd_identifier_token21] = ACTIONS(990), - [aux_sym_cmd_identifier_token22] = ACTIONS(990), - [aux_sym_cmd_identifier_token23] = ACTIONS(990), - [aux_sym_cmd_identifier_token24] = ACTIONS(990), - [aux_sym_cmd_identifier_token25] = ACTIONS(990), - [aux_sym_cmd_identifier_token26] = ACTIONS(990), - [aux_sym_cmd_identifier_token27] = ACTIONS(990), - [aux_sym_cmd_identifier_token28] = ACTIONS(990), - [aux_sym_cmd_identifier_token29] = ACTIONS(990), - [aux_sym_cmd_identifier_token30] = ACTIONS(990), - [aux_sym_cmd_identifier_token31] = ACTIONS(990), - [aux_sym_cmd_identifier_token32] = ACTIONS(990), - [aux_sym_cmd_identifier_token33] = ACTIONS(990), - [aux_sym_cmd_identifier_token34] = ACTIONS(990), - [aux_sym_cmd_identifier_token35] = ACTIONS(990), - [aux_sym_cmd_identifier_token36] = ACTIONS(990), - [anon_sym_true] = ACTIONS(990), - [anon_sym_false] = ACTIONS(990), - [anon_sym_null] = ACTIONS(990), - [aux_sym_cmd_identifier_token38] = ACTIONS(990), - [aux_sym_cmd_identifier_token39] = ACTIONS(990), - [aux_sym_cmd_identifier_token40] = ACTIONS(990), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_error] = ACTIONS(990), - [anon_sym_list] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_in] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_make] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_try] = ACTIONS(990), - [anon_sym_catch] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_new] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(990), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(990), - [aux_sym__val_number_decimal_token3] = ACTIONS(990), - [aux_sym__val_number_decimal_token4] = ACTIONS(990), - [aux_sym__val_number_token1] = ACTIONS(990), - [aux_sym__val_number_token2] = ACTIONS(990), - [aux_sym__val_number_token3] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym__str_single_quotes] = ACTIONS(990), - [sym__str_back_ticks] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(990), - [sym__entry_separator] = ACTIONS(992), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_POUND] = ACTIONS(3), - }, - [484] = { - [sym_comment] = STATE(484), - [anon_sym_export] = ACTIONS(1648), - [anon_sym_alias] = ACTIONS(1648), - [anon_sym_let] = ACTIONS(1648), - [anon_sym_let_DASHenv] = ACTIONS(1648), - [anon_sym_mut] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1648), - [aux_sym_cmd_identifier_token1] = ACTIONS(1648), - [aux_sym_cmd_identifier_token2] = ACTIONS(1648), - [aux_sym_cmd_identifier_token3] = ACTIONS(1648), - [aux_sym_cmd_identifier_token4] = ACTIONS(1648), - [aux_sym_cmd_identifier_token5] = ACTIONS(1648), - [aux_sym_cmd_identifier_token6] = ACTIONS(1648), - [aux_sym_cmd_identifier_token7] = ACTIONS(1648), - [aux_sym_cmd_identifier_token8] = ACTIONS(1648), - [aux_sym_cmd_identifier_token9] = ACTIONS(1648), - [aux_sym_cmd_identifier_token10] = ACTIONS(1648), - [aux_sym_cmd_identifier_token11] = ACTIONS(1648), - [aux_sym_cmd_identifier_token12] = ACTIONS(1648), - [aux_sym_cmd_identifier_token13] = ACTIONS(1648), - [aux_sym_cmd_identifier_token14] = ACTIONS(1648), - [aux_sym_cmd_identifier_token15] = ACTIONS(1648), - [aux_sym_cmd_identifier_token16] = ACTIONS(1648), - [aux_sym_cmd_identifier_token17] = ACTIONS(1648), - [aux_sym_cmd_identifier_token18] = ACTIONS(1648), - [aux_sym_cmd_identifier_token19] = ACTIONS(1648), - [aux_sym_cmd_identifier_token20] = ACTIONS(1648), - [aux_sym_cmd_identifier_token21] = ACTIONS(1648), - [aux_sym_cmd_identifier_token22] = ACTIONS(1648), - [aux_sym_cmd_identifier_token23] = ACTIONS(1648), - [aux_sym_cmd_identifier_token24] = ACTIONS(1648), - [aux_sym_cmd_identifier_token25] = ACTIONS(1648), - [aux_sym_cmd_identifier_token26] = ACTIONS(1648), - [aux_sym_cmd_identifier_token27] = ACTIONS(1648), - [aux_sym_cmd_identifier_token28] = ACTIONS(1648), - [aux_sym_cmd_identifier_token29] = ACTIONS(1648), - [aux_sym_cmd_identifier_token30] = ACTIONS(1648), - [aux_sym_cmd_identifier_token31] = ACTIONS(1648), - [aux_sym_cmd_identifier_token32] = ACTIONS(1648), - [aux_sym_cmd_identifier_token33] = ACTIONS(1648), - [aux_sym_cmd_identifier_token34] = ACTIONS(1648), - [aux_sym_cmd_identifier_token35] = ACTIONS(1648), - [aux_sym_cmd_identifier_token36] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1648), - [anon_sym_false] = ACTIONS(1648), - [anon_sym_null] = ACTIONS(1648), - [aux_sym_cmd_identifier_token38] = ACTIONS(1648), - [aux_sym_cmd_identifier_token39] = ACTIONS(1648), - [aux_sym_cmd_identifier_token40] = ACTIONS(1648), - [anon_sym_def] = ACTIONS(1648), - [anon_sym_export_DASHenv] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1648), - [anon_sym_module] = ACTIONS(1648), - [anon_sym_use] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_error] = ACTIONS(1648), - [anon_sym_list] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_in] = ACTIONS(1648), - [anon_sym_loop] = ACTIONS(1648), - [anon_sym_make] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_do] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1648), - [anon_sym_match] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1648), - [anon_sym_try] = ACTIONS(1648), - [anon_sym_catch] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_source] = ACTIONS(1648), - [anon_sym_source_DASHenv] = ACTIONS(1648), - [anon_sym_register] = ACTIONS(1648), - [anon_sym_hide] = ACTIONS(1648), - [anon_sym_hide_DASHenv] = ACTIONS(1648), - [anon_sym_overlay] = ACTIONS(1648), - [anon_sym_new] = ACTIONS(1648), - [anon_sym_as] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1648), - [aux_sym__immediate_decimal_token2] = ACTIONS(2245), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1648), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1648), - [aux_sym__val_number_decimal_token3] = ACTIONS(1648), - [aux_sym__val_number_decimal_token4] = ACTIONS(1648), - [aux_sym__val_number_token1] = ACTIONS(1648), - [aux_sym__val_number_token2] = ACTIONS(1648), - [aux_sym__val_number_token3] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1648), - [sym__str_single_quotes] = ACTIONS(1648), - [sym__str_back_ticks] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1648), - [sym__entry_separator] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(3), - }, - [485] = { - [sym_comment] = STATE(485), - [anon_sym_export] = ACTIONS(1589), - [anon_sym_alias] = ACTIONS(1589), - [anon_sym_let] = ACTIONS(1589), - [anon_sym_let_DASHenv] = ACTIONS(1589), - [anon_sym_mut] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [aux_sym_cmd_identifier_token1] = ACTIONS(1589), - [aux_sym_cmd_identifier_token2] = ACTIONS(1589), - [aux_sym_cmd_identifier_token3] = ACTIONS(1589), - [aux_sym_cmd_identifier_token4] = ACTIONS(1589), - [aux_sym_cmd_identifier_token5] = ACTIONS(1589), - [aux_sym_cmd_identifier_token6] = ACTIONS(1589), - [aux_sym_cmd_identifier_token7] = ACTIONS(1589), - [aux_sym_cmd_identifier_token8] = ACTIONS(1589), - [aux_sym_cmd_identifier_token9] = ACTIONS(1589), - [aux_sym_cmd_identifier_token10] = ACTIONS(1589), - [aux_sym_cmd_identifier_token11] = ACTIONS(1589), - [aux_sym_cmd_identifier_token12] = ACTIONS(1589), - [aux_sym_cmd_identifier_token13] = ACTIONS(1589), - [aux_sym_cmd_identifier_token14] = ACTIONS(1589), - [aux_sym_cmd_identifier_token15] = ACTIONS(1589), - [aux_sym_cmd_identifier_token16] = ACTIONS(1589), - [aux_sym_cmd_identifier_token17] = ACTIONS(1589), - [aux_sym_cmd_identifier_token18] = ACTIONS(1589), - [aux_sym_cmd_identifier_token19] = ACTIONS(1589), - [aux_sym_cmd_identifier_token20] = ACTIONS(1589), - [aux_sym_cmd_identifier_token21] = ACTIONS(1589), - [aux_sym_cmd_identifier_token22] = ACTIONS(1589), - [aux_sym_cmd_identifier_token23] = ACTIONS(1589), - [aux_sym_cmd_identifier_token24] = ACTIONS(1589), - [aux_sym_cmd_identifier_token25] = ACTIONS(1589), - [aux_sym_cmd_identifier_token26] = ACTIONS(1589), - [aux_sym_cmd_identifier_token27] = ACTIONS(1589), - [aux_sym_cmd_identifier_token28] = ACTIONS(1589), - [aux_sym_cmd_identifier_token29] = ACTIONS(1589), - [aux_sym_cmd_identifier_token30] = ACTIONS(1589), - [aux_sym_cmd_identifier_token31] = ACTIONS(1589), - [aux_sym_cmd_identifier_token32] = ACTIONS(1589), - [aux_sym_cmd_identifier_token33] = ACTIONS(1589), - [aux_sym_cmd_identifier_token34] = ACTIONS(1589), - [aux_sym_cmd_identifier_token35] = ACTIONS(1589), - [aux_sym_cmd_identifier_token36] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [anon_sym_null] = ACTIONS(1591), - [aux_sym_cmd_identifier_token38] = ACTIONS(1589), - [aux_sym_cmd_identifier_token39] = ACTIONS(1591), - [aux_sym_cmd_identifier_token40] = ACTIONS(1591), - [anon_sym_def] = ACTIONS(1589), - [anon_sym_export_DASHenv] = ACTIONS(1589), - [anon_sym_extern] = ACTIONS(1589), - [anon_sym_module] = ACTIONS(1589), - [anon_sym_use] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1591), - [anon_sym_DOLLAR] = ACTIONS(1591), - [anon_sym_error] = ACTIONS(1589), - [anon_sym_list] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_loop] = ACTIONS(1589), - [anon_sym_make] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_else] = ACTIONS(1589), - [anon_sym_match] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_try] = ACTIONS(1589), - [anon_sym_catch] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_source] = ACTIONS(1589), - [anon_sym_source_DASHenv] = ACTIONS(1589), - [anon_sym_register] = ACTIONS(1589), - [anon_sym_hide] = ACTIONS(1589), - [anon_sym_hide_DASHenv] = ACTIONS(1589), - [anon_sym_overlay] = ACTIONS(1589), - [anon_sym_new] = ACTIONS(1589), - [anon_sym_as] = ACTIONS(1589), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1591), - [anon_sym_DOT] = ACTIONS(2247), - [aux_sym__immediate_decimal_token2] = ACTIONS(2249), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1591), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token3] = ACTIONS(1591), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(1591), - [aux_sym__val_number_token2] = ACTIONS(1591), - [aux_sym__val_number_token3] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym__str_single_quotes] = ACTIONS(1591), - [sym__str_back_ticks] = ACTIONS(1591), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1591), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(247), - }, - [486] = { - [sym_comment] = STATE(486), [anon_sym_export] = ACTIONS(2251), [anon_sym_alias] = ACTIONS(2251), [anon_sym_let] = ACTIONS(2251), @@ -132665,7 +127958,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(2251), [anon_sym_module] = ACTIONS(2251), [anon_sym_use] = ACTIONS(2251), - [anon_sym_RBRACK] = ACTIONS(2251), [anon_sym_LPAREN] = ACTIONS(2251), [anon_sym_DOLLAR] = ACTIONS(2251), [anon_sym_error] = ACTIONS(2251), @@ -132682,7 +127974,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(2251), [anon_sym_else] = ACTIONS(2251), [anon_sym_match] = ACTIONS(2251), - [anon_sym_RBRACE] = ACTIONS(2251), + [anon_sym_RBRACE] = ACTIONS(2253), [anon_sym_try] = ACTIONS(2251), [anon_sym_catch] = ACTIONS(2251), [anon_sym_return] = ACTIONS(2251), @@ -132694,7 +127986,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(2251), [anon_sym_new] = ACTIONS(2251), [anon_sym_as] = ACTIONS(2251), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2251), + [anon_sym_LPAREN2] = ACTIONS(2245), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2253), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2251), [aux_sym__val_number_decimal_token1] = ACTIONS(2251), [aux_sym__val_number_decimal_token2] = ACTIONS(2251), @@ -132703,420 +127996,622 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token1] = ACTIONS(2251), [aux_sym__val_number_token2] = ACTIONS(2251), [aux_sym__val_number_token3] = ACTIONS(2251), - [anon_sym_DQUOTE] = ACTIONS(2251), - [sym__str_single_quotes] = ACTIONS(2251), - [sym__str_back_ticks] = ACTIONS(2251), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2251), - [sym__entry_separator] = ACTIONS(2253), + [anon_sym_DQUOTE] = ACTIONS(2253), + [sym__str_single_quotes] = ACTIONS(2253), + [sym__str_back_ticks] = ACTIONS(2253), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2253), [anon_sym_PLUS] = ACTIONS(2251), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2249), [anon_sym_POUND] = ACTIONS(3), }, - [487] = { - [sym_comment] = STATE(487), - [anon_sym_export] = ACTIONS(1021), - [anon_sym_alias] = ACTIONS(1021), - [anon_sym_let] = ACTIONS(1021), - [anon_sym_let_DASHenv] = ACTIONS(1021), - [anon_sym_mut] = ACTIONS(1021), - [anon_sym_const] = ACTIONS(1021), - [aux_sym_cmd_identifier_token1] = ACTIONS(1021), - [aux_sym_cmd_identifier_token2] = ACTIONS(1021), - [aux_sym_cmd_identifier_token3] = ACTIONS(1021), - [aux_sym_cmd_identifier_token4] = ACTIONS(1021), - [aux_sym_cmd_identifier_token5] = ACTIONS(1021), - [aux_sym_cmd_identifier_token6] = ACTIONS(1021), - [aux_sym_cmd_identifier_token7] = ACTIONS(1021), - [aux_sym_cmd_identifier_token8] = ACTIONS(1021), - [aux_sym_cmd_identifier_token9] = ACTIONS(1021), - [aux_sym_cmd_identifier_token10] = ACTIONS(1021), - [aux_sym_cmd_identifier_token11] = ACTIONS(1021), - [aux_sym_cmd_identifier_token12] = ACTIONS(1021), - [aux_sym_cmd_identifier_token13] = ACTIONS(1021), - [aux_sym_cmd_identifier_token14] = ACTIONS(1021), - [aux_sym_cmd_identifier_token15] = ACTIONS(1021), - [aux_sym_cmd_identifier_token16] = ACTIONS(1021), - [aux_sym_cmd_identifier_token17] = ACTIONS(1021), - [aux_sym_cmd_identifier_token18] = ACTIONS(1021), - [aux_sym_cmd_identifier_token19] = ACTIONS(1021), - [aux_sym_cmd_identifier_token20] = ACTIONS(1021), - [aux_sym_cmd_identifier_token21] = ACTIONS(1021), - [aux_sym_cmd_identifier_token22] = ACTIONS(1021), - [aux_sym_cmd_identifier_token23] = ACTIONS(1021), - [aux_sym_cmd_identifier_token24] = ACTIONS(1021), - [aux_sym_cmd_identifier_token25] = ACTIONS(1021), - [aux_sym_cmd_identifier_token26] = ACTIONS(1021), - [aux_sym_cmd_identifier_token27] = ACTIONS(1021), - [aux_sym_cmd_identifier_token28] = ACTIONS(1021), - [aux_sym_cmd_identifier_token29] = ACTIONS(1021), - [aux_sym_cmd_identifier_token30] = ACTIONS(1021), - [aux_sym_cmd_identifier_token31] = ACTIONS(1021), - [aux_sym_cmd_identifier_token32] = ACTIONS(1021), - [aux_sym_cmd_identifier_token33] = ACTIONS(1021), - [aux_sym_cmd_identifier_token34] = ACTIONS(1021), - [aux_sym_cmd_identifier_token35] = ACTIONS(1021), - [aux_sym_cmd_identifier_token36] = ACTIONS(1021), - [anon_sym_true] = ACTIONS(1023), - [anon_sym_false] = ACTIONS(1023), - [anon_sym_null] = ACTIONS(1023), - [aux_sym_cmd_identifier_token38] = ACTIONS(1021), - [aux_sym_cmd_identifier_token39] = ACTIONS(1023), - [aux_sym_cmd_identifier_token40] = ACTIONS(1023), - [anon_sym_def] = ACTIONS(1021), - [anon_sym_export_DASHenv] = ACTIONS(1021), - [anon_sym_extern] = ACTIONS(1021), - [anon_sym_module] = ACTIONS(1021), - [anon_sym_use] = ACTIONS(1021), - [anon_sym_LPAREN] = ACTIONS(1023), - [anon_sym_COMMA] = ACTIONS(1023), - [anon_sym_DOLLAR] = ACTIONS(1023), - [anon_sym_error] = ACTIONS(1021), - [anon_sym_list] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_break] = ACTIONS(1021), - [anon_sym_continue] = ACTIONS(1021), - [anon_sym_for] = ACTIONS(1021), - [anon_sym_in] = ACTIONS(1021), - [anon_sym_loop] = ACTIONS(1021), - [anon_sym_make] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1021), - [anon_sym_do] = ACTIONS(1021), - [anon_sym_if] = ACTIONS(1021), - [anon_sym_else] = ACTIONS(1021), - [anon_sym_match] = ACTIONS(1021), - [anon_sym_RBRACE] = ACTIONS(1023), - [anon_sym_try] = ACTIONS(1021), - [anon_sym_catch] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1021), - [anon_sym_source] = ACTIONS(1021), - [anon_sym_source_DASHenv] = ACTIONS(1021), - [anon_sym_register] = ACTIONS(1021), - [anon_sym_hide] = ACTIONS(1021), - [anon_sym_hide_DASHenv] = ACTIONS(1021), - [anon_sym_overlay] = ACTIONS(1021), - [anon_sym_new] = ACTIONS(1021), - [anon_sym_as] = ACTIONS(1021), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1023), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1023), - [aux_sym__val_number_decimal_token1] = ACTIONS(1021), - [aux_sym__val_number_decimal_token2] = ACTIONS(1023), - [aux_sym__val_number_decimal_token3] = ACTIONS(1023), - [aux_sym__val_number_decimal_token4] = ACTIONS(1023), - [aux_sym__val_number_token1] = ACTIONS(1023), - [aux_sym__val_number_token2] = ACTIONS(1023), - [aux_sym__val_number_token3] = ACTIONS(1023), - [anon_sym_DQUOTE] = ACTIONS(1023), - [sym__str_single_quotes] = ACTIONS(1023), - [sym__str_back_ticks] = ACTIONS(1023), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1023), - [aux_sym_record_entry_token1] = ACTIONS(1023), - [anon_sym_PLUS] = ACTIONS(1021), + [481] = { + [sym_comment] = STATE(481), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_alias] = ACTIONS(1068), + [anon_sym_let] = ACTIONS(1068), + [anon_sym_let_DASHenv] = ACTIONS(1068), + [anon_sym_mut] = ACTIONS(1068), + [anon_sym_const] = ACTIONS(1068), + [aux_sym_cmd_identifier_token1] = ACTIONS(1068), + [aux_sym_cmd_identifier_token2] = ACTIONS(1068), + [aux_sym_cmd_identifier_token3] = ACTIONS(1068), + [aux_sym_cmd_identifier_token4] = ACTIONS(1068), + [aux_sym_cmd_identifier_token5] = ACTIONS(1068), + [aux_sym_cmd_identifier_token6] = ACTIONS(1068), + [aux_sym_cmd_identifier_token7] = ACTIONS(1068), + [aux_sym_cmd_identifier_token8] = ACTIONS(1068), + [aux_sym_cmd_identifier_token9] = ACTIONS(1068), + [aux_sym_cmd_identifier_token10] = ACTIONS(1068), + [aux_sym_cmd_identifier_token11] = ACTIONS(1068), + [aux_sym_cmd_identifier_token12] = ACTIONS(1068), + [aux_sym_cmd_identifier_token13] = ACTIONS(1068), + [aux_sym_cmd_identifier_token14] = ACTIONS(1068), + [aux_sym_cmd_identifier_token15] = ACTIONS(1068), + [aux_sym_cmd_identifier_token16] = ACTIONS(1068), + [aux_sym_cmd_identifier_token17] = ACTIONS(1068), + [aux_sym_cmd_identifier_token18] = ACTIONS(1068), + [aux_sym_cmd_identifier_token19] = ACTIONS(1068), + [aux_sym_cmd_identifier_token20] = ACTIONS(1068), + [aux_sym_cmd_identifier_token21] = ACTIONS(1068), + [aux_sym_cmd_identifier_token22] = ACTIONS(1068), + [aux_sym_cmd_identifier_token23] = ACTIONS(1068), + [aux_sym_cmd_identifier_token24] = ACTIONS(1068), + [aux_sym_cmd_identifier_token25] = ACTIONS(1068), + [aux_sym_cmd_identifier_token26] = ACTIONS(1068), + [aux_sym_cmd_identifier_token27] = ACTIONS(1068), + [aux_sym_cmd_identifier_token28] = ACTIONS(1068), + [aux_sym_cmd_identifier_token29] = ACTIONS(1068), + [aux_sym_cmd_identifier_token30] = ACTIONS(1068), + [aux_sym_cmd_identifier_token31] = ACTIONS(1068), + [aux_sym_cmd_identifier_token32] = ACTIONS(1068), + [aux_sym_cmd_identifier_token33] = ACTIONS(1068), + [aux_sym_cmd_identifier_token34] = ACTIONS(1068), + [aux_sym_cmd_identifier_token35] = ACTIONS(1068), + [aux_sym_cmd_identifier_token36] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1074), + [anon_sym_false] = ACTIONS(1074), + [anon_sym_null] = ACTIONS(1074), + [aux_sym_cmd_identifier_token38] = ACTIONS(1068), + [aux_sym_cmd_identifier_token39] = ACTIONS(1074), + [aux_sym_cmd_identifier_token40] = ACTIONS(1074), + [anon_sym_def] = ACTIONS(1068), + [anon_sym_export_DASHenv] = ACTIONS(1068), + [anon_sym_extern] = ACTIONS(1068), + [anon_sym_module] = ACTIONS(1068), + [anon_sym_use] = ACTIONS(1068), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_COMMA] = ACTIONS(1080), + [anon_sym_DOLLAR] = ACTIONS(1074), + [anon_sym_error] = ACTIONS(1068), + [anon_sym_list] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1068), + [anon_sym_break] = ACTIONS(1068), + [anon_sym_continue] = ACTIONS(1068), + [anon_sym_for] = ACTIONS(1068), + [anon_sym_in] = ACTIONS(1068), + [anon_sym_loop] = ACTIONS(1068), + [anon_sym_make] = ACTIONS(1068), + [anon_sym_while] = ACTIONS(1068), + [anon_sym_do] = ACTIONS(1068), + [anon_sym_if] = ACTIONS(1068), + [anon_sym_else] = ACTIONS(1068), + [anon_sym_match] = ACTIONS(1068), + [anon_sym_RBRACE] = ACTIONS(1074), + [anon_sym_try] = ACTIONS(1068), + [anon_sym_catch] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1068), + [anon_sym_source] = ACTIONS(1068), + [anon_sym_source_DASHenv] = ACTIONS(1068), + [anon_sym_register] = ACTIONS(1068), + [anon_sym_hide] = ACTIONS(1068), + [anon_sym_hide_DASHenv] = ACTIONS(1068), + [anon_sym_overlay] = ACTIONS(1068), + [anon_sym_new] = ACTIONS(1068), + [anon_sym_as] = ACTIONS(1068), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1074), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1074), + [aux_sym__val_number_decimal_token1] = ACTIONS(1068), + [aux_sym__val_number_decimal_token2] = ACTIONS(1074), + [aux_sym__val_number_decimal_token3] = ACTIONS(1074), + [aux_sym__val_number_decimal_token4] = ACTIONS(1074), + [aux_sym__val_number_token1] = ACTIONS(1074), + [aux_sym__val_number_token2] = ACTIONS(1074), + [aux_sym__val_number_token3] = ACTIONS(1074), + [anon_sym_DQUOTE] = ACTIONS(1074), + [sym__str_single_quotes] = ACTIONS(1074), + [sym__str_back_ticks] = ACTIONS(1074), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1074), + [aux_sym_record_entry_token1] = ACTIONS(2327), + [anon_sym_PLUS] = ACTIONS(1068), [anon_sym_POUND] = ACTIONS(247), }, - [488] = { - [sym_comment] = STATE(488), - [anon_sym_export] = ACTIONS(2255), - [anon_sym_alias] = ACTIONS(2255), - [anon_sym_let] = ACTIONS(2255), - [anon_sym_let_DASHenv] = ACTIONS(2255), - [anon_sym_mut] = ACTIONS(2255), - [anon_sym_const] = ACTIONS(2255), - [aux_sym_cmd_identifier_token1] = ACTIONS(2255), - [aux_sym_cmd_identifier_token2] = ACTIONS(2255), - [aux_sym_cmd_identifier_token3] = ACTIONS(2255), - [aux_sym_cmd_identifier_token4] = ACTIONS(2255), - [aux_sym_cmd_identifier_token5] = ACTIONS(2255), - [aux_sym_cmd_identifier_token6] = ACTIONS(2255), - [aux_sym_cmd_identifier_token7] = ACTIONS(2255), - [aux_sym_cmd_identifier_token8] = ACTIONS(2255), - [aux_sym_cmd_identifier_token9] = ACTIONS(2255), - [aux_sym_cmd_identifier_token10] = ACTIONS(2255), - [aux_sym_cmd_identifier_token11] = ACTIONS(2255), - [aux_sym_cmd_identifier_token12] = ACTIONS(2255), - [aux_sym_cmd_identifier_token13] = ACTIONS(2255), - [aux_sym_cmd_identifier_token14] = ACTIONS(2255), - [aux_sym_cmd_identifier_token15] = ACTIONS(2255), - [aux_sym_cmd_identifier_token16] = ACTIONS(2255), - [aux_sym_cmd_identifier_token17] = ACTIONS(2255), - [aux_sym_cmd_identifier_token18] = ACTIONS(2255), - [aux_sym_cmd_identifier_token19] = ACTIONS(2255), - [aux_sym_cmd_identifier_token20] = ACTIONS(2255), - [aux_sym_cmd_identifier_token21] = ACTIONS(2255), - [aux_sym_cmd_identifier_token22] = ACTIONS(2255), - [aux_sym_cmd_identifier_token23] = ACTIONS(2255), - [aux_sym_cmd_identifier_token24] = ACTIONS(2255), - [aux_sym_cmd_identifier_token25] = ACTIONS(2255), - [aux_sym_cmd_identifier_token26] = ACTIONS(2255), - [aux_sym_cmd_identifier_token27] = ACTIONS(2255), - [aux_sym_cmd_identifier_token28] = ACTIONS(2255), - [aux_sym_cmd_identifier_token29] = ACTIONS(2255), - [aux_sym_cmd_identifier_token30] = ACTIONS(2255), - [aux_sym_cmd_identifier_token31] = ACTIONS(2255), - [aux_sym_cmd_identifier_token32] = ACTIONS(2255), - [aux_sym_cmd_identifier_token33] = ACTIONS(2255), - [aux_sym_cmd_identifier_token34] = ACTIONS(2255), - [aux_sym_cmd_identifier_token35] = ACTIONS(2255), - [aux_sym_cmd_identifier_token36] = ACTIONS(2255), - [anon_sym_true] = ACTIONS(2255), - [anon_sym_false] = ACTIONS(2255), - [anon_sym_null] = ACTIONS(2255), - [aux_sym_cmd_identifier_token38] = ACTIONS(2255), - [aux_sym_cmd_identifier_token39] = ACTIONS(2255), - [aux_sym_cmd_identifier_token40] = ACTIONS(2255), - [anon_sym_def] = ACTIONS(2255), - [anon_sym_export_DASHenv] = ACTIONS(2255), - [anon_sym_extern] = ACTIONS(2255), - [anon_sym_module] = ACTIONS(2255), - [anon_sym_use] = ACTIONS(2255), - [anon_sym_RBRACK] = ACTIONS(2255), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_DOLLAR] = ACTIONS(2255), - [anon_sym_error] = ACTIONS(2255), - [anon_sym_list] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_break] = ACTIONS(2255), - [anon_sym_continue] = ACTIONS(2255), - [anon_sym_for] = ACTIONS(2255), - [anon_sym_in] = ACTIONS(2255), - [anon_sym_loop] = ACTIONS(2255), - [anon_sym_make] = ACTIONS(2255), - [anon_sym_while] = ACTIONS(2255), - [anon_sym_do] = ACTIONS(2255), - [anon_sym_if] = ACTIONS(2255), - [anon_sym_else] = ACTIONS(2255), - [anon_sym_match] = ACTIONS(2255), - [anon_sym_RBRACE] = ACTIONS(2255), - [anon_sym_try] = ACTIONS(2255), - [anon_sym_catch] = ACTIONS(2255), - [anon_sym_return] = ACTIONS(2255), - [anon_sym_source] = ACTIONS(2255), - [anon_sym_source_DASHenv] = ACTIONS(2255), - [anon_sym_register] = ACTIONS(2255), - [anon_sym_hide] = ACTIONS(2255), - [anon_sym_hide_DASHenv] = ACTIONS(2255), - [anon_sym_overlay] = ACTIONS(2255), - [anon_sym_new] = ACTIONS(2255), - [anon_sym_as] = ACTIONS(2255), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2255), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2255), - [aux_sym__val_number_decimal_token1] = ACTIONS(2255), - [aux_sym__val_number_decimal_token2] = ACTIONS(2255), - [aux_sym__val_number_decimal_token3] = ACTIONS(2255), - [aux_sym__val_number_decimal_token4] = ACTIONS(2255), - [aux_sym__val_number_token1] = ACTIONS(2255), - [aux_sym__val_number_token2] = ACTIONS(2255), - [aux_sym__val_number_token3] = ACTIONS(2255), - [anon_sym_DQUOTE] = ACTIONS(2255), - [sym__str_single_quotes] = ACTIONS(2255), - [sym__str_back_ticks] = ACTIONS(2255), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2255), - [sym__entry_separator] = ACTIONS(2257), - [anon_sym_PLUS] = ACTIONS(2255), + [482] = { + [sym_comment] = STATE(482), + [anon_sym_export] = ACTIONS(1056), + [anon_sym_alias] = ACTIONS(1056), + [anon_sym_let] = ACTIONS(1056), + [anon_sym_let_DASHenv] = ACTIONS(1056), + [anon_sym_mut] = ACTIONS(1056), + [anon_sym_const] = ACTIONS(1056), + [aux_sym_cmd_identifier_token1] = ACTIONS(1056), + [aux_sym_cmd_identifier_token2] = ACTIONS(1056), + [aux_sym_cmd_identifier_token3] = ACTIONS(1056), + [aux_sym_cmd_identifier_token4] = ACTIONS(1056), + [aux_sym_cmd_identifier_token5] = ACTIONS(1056), + [aux_sym_cmd_identifier_token6] = ACTIONS(1056), + [aux_sym_cmd_identifier_token7] = ACTIONS(1056), + [aux_sym_cmd_identifier_token8] = ACTIONS(1056), + [aux_sym_cmd_identifier_token9] = ACTIONS(1056), + [aux_sym_cmd_identifier_token10] = ACTIONS(1056), + [aux_sym_cmd_identifier_token11] = ACTIONS(1056), + [aux_sym_cmd_identifier_token12] = ACTIONS(1056), + [aux_sym_cmd_identifier_token13] = ACTIONS(1056), + [aux_sym_cmd_identifier_token14] = ACTIONS(1056), + [aux_sym_cmd_identifier_token15] = ACTIONS(1056), + [aux_sym_cmd_identifier_token16] = ACTIONS(1056), + [aux_sym_cmd_identifier_token17] = ACTIONS(1056), + [aux_sym_cmd_identifier_token18] = ACTIONS(1056), + [aux_sym_cmd_identifier_token19] = ACTIONS(1056), + [aux_sym_cmd_identifier_token20] = ACTIONS(1056), + [aux_sym_cmd_identifier_token21] = ACTIONS(1056), + [aux_sym_cmd_identifier_token22] = ACTIONS(1056), + [aux_sym_cmd_identifier_token23] = ACTIONS(1056), + [aux_sym_cmd_identifier_token24] = ACTIONS(1056), + [aux_sym_cmd_identifier_token25] = ACTIONS(1056), + [aux_sym_cmd_identifier_token26] = ACTIONS(1056), + [aux_sym_cmd_identifier_token27] = ACTIONS(1056), + [aux_sym_cmd_identifier_token28] = ACTIONS(1056), + [aux_sym_cmd_identifier_token29] = ACTIONS(1056), + [aux_sym_cmd_identifier_token30] = ACTIONS(1056), + [aux_sym_cmd_identifier_token31] = ACTIONS(1056), + [aux_sym_cmd_identifier_token32] = ACTIONS(1056), + [aux_sym_cmd_identifier_token33] = ACTIONS(1056), + [aux_sym_cmd_identifier_token34] = ACTIONS(1056), + [aux_sym_cmd_identifier_token35] = ACTIONS(1056), + [aux_sym_cmd_identifier_token36] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1056), + [anon_sym_false] = ACTIONS(1056), + [anon_sym_null] = ACTIONS(1056), + [aux_sym_cmd_identifier_token38] = ACTIONS(1056), + [aux_sym_cmd_identifier_token39] = ACTIONS(1056), + [aux_sym_cmd_identifier_token40] = ACTIONS(1056), + [anon_sym_def] = ACTIONS(1056), + [anon_sym_export_DASHenv] = ACTIONS(1056), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_module] = ACTIONS(1056), + [anon_sym_use] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_DOLLAR] = ACTIONS(1056), + [anon_sym_error] = ACTIONS(1056), + [anon_sym_list] = ACTIONS(1056), + [anon_sym_DASH] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1056), + [anon_sym_continue] = ACTIONS(1056), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_in] = ACTIONS(1056), + [anon_sym_loop] = ACTIONS(1056), + [anon_sym_make] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1056), + [anon_sym_do] = ACTIONS(1056), + [anon_sym_if] = ACTIONS(1056), + [anon_sym_else] = ACTIONS(1056), + [anon_sym_match] = ACTIONS(1056), + [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_try] = ACTIONS(1056), + [anon_sym_catch] = ACTIONS(1056), + [anon_sym_return] = ACTIONS(1056), + [anon_sym_source] = ACTIONS(1056), + [anon_sym_source_DASHenv] = ACTIONS(1056), + [anon_sym_register] = ACTIONS(1056), + [anon_sym_hide] = ACTIONS(1056), + [anon_sym_hide_DASHenv] = ACTIONS(1056), + [anon_sym_overlay] = ACTIONS(1056), + [anon_sym_new] = ACTIONS(1056), + [anon_sym_as] = ACTIONS(1056), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1056), + [aux_sym__val_number_decimal_token1] = ACTIONS(1056), + [aux_sym__val_number_decimal_token2] = ACTIONS(1056), + [aux_sym__val_number_decimal_token3] = ACTIONS(1056), + [aux_sym__val_number_decimal_token4] = ACTIONS(1056), + [aux_sym__val_number_token1] = ACTIONS(1056), + [aux_sym__val_number_token2] = ACTIONS(1056), + [aux_sym__val_number_token3] = ACTIONS(1056), + [anon_sym_DQUOTE] = ACTIONS(1056), + [sym__str_single_quotes] = ACTIONS(1056), + [sym__str_back_ticks] = ACTIONS(1056), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1056), + [sym__entry_separator] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1056), [anon_sym_POUND] = ACTIONS(3), }, - [489] = { - [sym_comment] = STATE(489), - [anon_sym_export] = ACTIONS(1867), - [anon_sym_alias] = ACTIONS(1867), - [anon_sym_let] = ACTIONS(1867), - [anon_sym_let_DASHenv] = ACTIONS(1867), - [anon_sym_mut] = ACTIONS(1867), - [anon_sym_const] = ACTIONS(1867), - [aux_sym_cmd_identifier_token1] = ACTIONS(1867), - [aux_sym_cmd_identifier_token2] = ACTIONS(1867), - [aux_sym_cmd_identifier_token3] = ACTIONS(1867), - [aux_sym_cmd_identifier_token4] = ACTIONS(1867), - [aux_sym_cmd_identifier_token5] = ACTIONS(1867), - [aux_sym_cmd_identifier_token6] = ACTIONS(1867), - [aux_sym_cmd_identifier_token7] = ACTIONS(1867), - [aux_sym_cmd_identifier_token8] = ACTIONS(1867), - [aux_sym_cmd_identifier_token9] = ACTIONS(1867), - [aux_sym_cmd_identifier_token10] = ACTIONS(1867), - [aux_sym_cmd_identifier_token11] = ACTIONS(1867), - [aux_sym_cmd_identifier_token12] = ACTIONS(1867), - [aux_sym_cmd_identifier_token13] = ACTIONS(1867), - [aux_sym_cmd_identifier_token14] = ACTIONS(1867), - [aux_sym_cmd_identifier_token15] = ACTIONS(1867), - [aux_sym_cmd_identifier_token16] = ACTIONS(1867), - [aux_sym_cmd_identifier_token17] = ACTIONS(1867), - [aux_sym_cmd_identifier_token18] = ACTIONS(1867), - [aux_sym_cmd_identifier_token19] = ACTIONS(1867), - [aux_sym_cmd_identifier_token20] = ACTIONS(1867), - [aux_sym_cmd_identifier_token21] = ACTIONS(1867), - [aux_sym_cmd_identifier_token22] = ACTIONS(1867), - [aux_sym_cmd_identifier_token23] = ACTIONS(1867), - [aux_sym_cmd_identifier_token24] = ACTIONS(1867), - [aux_sym_cmd_identifier_token25] = ACTIONS(1867), - [aux_sym_cmd_identifier_token26] = ACTIONS(1867), - [aux_sym_cmd_identifier_token27] = ACTIONS(1867), - [aux_sym_cmd_identifier_token28] = ACTIONS(1867), - [aux_sym_cmd_identifier_token29] = ACTIONS(1867), - [aux_sym_cmd_identifier_token30] = ACTIONS(1867), - [aux_sym_cmd_identifier_token31] = ACTIONS(1867), - [aux_sym_cmd_identifier_token32] = ACTIONS(1867), - [aux_sym_cmd_identifier_token33] = ACTIONS(1867), - [aux_sym_cmd_identifier_token34] = ACTIONS(1867), - [aux_sym_cmd_identifier_token35] = ACTIONS(1867), - [aux_sym_cmd_identifier_token36] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1867), - [anon_sym_false] = ACTIONS(1867), - [anon_sym_null] = ACTIONS(1867), - [aux_sym_cmd_identifier_token38] = ACTIONS(1867), - [aux_sym_cmd_identifier_token39] = ACTIONS(1867), - [aux_sym_cmd_identifier_token40] = ACTIONS(1867), - [anon_sym_def] = ACTIONS(1867), - [anon_sym_export_DASHenv] = ACTIONS(1867), - [anon_sym_extern] = ACTIONS(1867), - [anon_sym_module] = ACTIONS(1867), - [anon_sym_use] = ACTIONS(1867), - [anon_sym_RBRACK] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_DOLLAR] = ACTIONS(1867), - [anon_sym_error] = ACTIONS(1867), - [anon_sym_list] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_break] = ACTIONS(1867), - [anon_sym_continue] = ACTIONS(1867), - [anon_sym_for] = ACTIONS(1867), - [anon_sym_in] = ACTIONS(1867), - [anon_sym_loop] = ACTIONS(1867), - [anon_sym_make] = ACTIONS(1867), - [anon_sym_while] = ACTIONS(1867), - [anon_sym_do] = ACTIONS(1867), - [anon_sym_if] = ACTIONS(1867), - [anon_sym_else] = ACTIONS(1867), - [anon_sym_match] = ACTIONS(1867), - [anon_sym_RBRACE] = ACTIONS(1867), - [anon_sym_try] = ACTIONS(1867), - [anon_sym_catch] = ACTIONS(1867), - [anon_sym_return] = ACTIONS(1867), - [anon_sym_source] = ACTIONS(1867), - [anon_sym_source_DASHenv] = ACTIONS(1867), - [anon_sym_register] = ACTIONS(1867), - [anon_sym_hide] = ACTIONS(1867), - [anon_sym_hide_DASHenv] = ACTIONS(1867), - [anon_sym_overlay] = ACTIONS(1867), - [anon_sym_new] = ACTIONS(1867), - [anon_sym_as] = ACTIONS(1867), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1867), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1867), - [aux_sym__val_number_decimal_token1] = ACTIONS(1867), - [aux_sym__val_number_decimal_token2] = ACTIONS(1867), - [aux_sym__val_number_decimal_token3] = ACTIONS(1867), - [aux_sym__val_number_decimal_token4] = ACTIONS(1867), - [aux_sym__val_number_token1] = ACTIONS(1867), - [aux_sym__val_number_token2] = ACTIONS(1867), - [aux_sym__val_number_token3] = ACTIONS(1867), - [anon_sym_DQUOTE] = ACTIONS(1867), - [sym__str_single_quotes] = ACTIONS(1867), - [sym__str_back_ticks] = ACTIONS(1867), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1867), - [sym__entry_separator] = ACTIONS(1869), - [anon_sym_PLUS] = ACTIONS(1867), + [483] = { + [sym_comment] = STATE(483), + [anon_sym_export] = ACTIONS(2329), + [anon_sym_alias] = ACTIONS(2329), + [anon_sym_let] = ACTIONS(2329), + [anon_sym_let_DASHenv] = ACTIONS(2329), + [anon_sym_mut] = ACTIONS(2329), + [anon_sym_const] = ACTIONS(2329), + [aux_sym_cmd_identifier_token1] = ACTIONS(2329), + [aux_sym_cmd_identifier_token2] = ACTIONS(2329), + [aux_sym_cmd_identifier_token3] = ACTIONS(2329), + [aux_sym_cmd_identifier_token4] = ACTIONS(2329), + [aux_sym_cmd_identifier_token5] = ACTIONS(2329), + [aux_sym_cmd_identifier_token6] = ACTIONS(2329), + [aux_sym_cmd_identifier_token7] = ACTIONS(2329), + [aux_sym_cmd_identifier_token8] = ACTIONS(2329), + [aux_sym_cmd_identifier_token9] = ACTIONS(2329), + [aux_sym_cmd_identifier_token10] = ACTIONS(2329), + [aux_sym_cmd_identifier_token11] = ACTIONS(2329), + [aux_sym_cmd_identifier_token12] = ACTIONS(2329), + [aux_sym_cmd_identifier_token13] = ACTIONS(2329), + [aux_sym_cmd_identifier_token14] = ACTIONS(2329), + [aux_sym_cmd_identifier_token15] = ACTIONS(2329), + [aux_sym_cmd_identifier_token16] = ACTIONS(2329), + [aux_sym_cmd_identifier_token17] = ACTIONS(2329), + [aux_sym_cmd_identifier_token18] = ACTIONS(2329), + [aux_sym_cmd_identifier_token19] = ACTIONS(2329), + [aux_sym_cmd_identifier_token20] = ACTIONS(2329), + [aux_sym_cmd_identifier_token21] = ACTIONS(2329), + [aux_sym_cmd_identifier_token22] = ACTIONS(2329), + [aux_sym_cmd_identifier_token23] = ACTIONS(2329), + [aux_sym_cmd_identifier_token24] = ACTIONS(2329), + [aux_sym_cmd_identifier_token25] = ACTIONS(2329), + [aux_sym_cmd_identifier_token26] = ACTIONS(2329), + [aux_sym_cmd_identifier_token27] = ACTIONS(2329), + [aux_sym_cmd_identifier_token28] = ACTIONS(2329), + [aux_sym_cmd_identifier_token29] = ACTIONS(2329), + [aux_sym_cmd_identifier_token30] = ACTIONS(2329), + [aux_sym_cmd_identifier_token31] = ACTIONS(2329), + [aux_sym_cmd_identifier_token32] = ACTIONS(2329), + [aux_sym_cmd_identifier_token33] = ACTIONS(2329), + [aux_sym_cmd_identifier_token34] = ACTIONS(2329), + [aux_sym_cmd_identifier_token35] = ACTIONS(2329), + [aux_sym_cmd_identifier_token36] = ACTIONS(2329), + [anon_sym_true] = ACTIONS(2329), + [anon_sym_false] = ACTIONS(2329), + [anon_sym_null] = ACTIONS(2329), + [aux_sym_cmd_identifier_token38] = ACTIONS(2329), + [aux_sym_cmd_identifier_token39] = ACTIONS(2329), + [aux_sym_cmd_identifier_token40] = ACTIONS(2329), + [anon_sym_def] = ACTIONS(2329), + [anon_sym_export_DASHenv] = ACTIONS(2329), + [anon_sym_extern] = ACTIONS(2329), + [anon_sym_module] = ACTIONS(2329), + [anon_sym_use] = ACTIONS(2329), + [anon_sym_LPAREN] = ACTIONS(2329), + [anon_sym_DOLLAR] = ACTIONS(2329), + [anon_sym_error] = ACTIONS(2329), + [anon_sym_list] = ACTIONS(2329), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_break] = ACTIONS(2329), + [anon_sym_continue] = ACTIONS(2329), + [anon_sym_for] = ACTIONS(2329), + [anon_sym_in] = ACTIONS(2329), + [anon_sym_loop] = ACTIONS(2329), + [anon_sym_make] = ACTIONS(2329), + [anon_sym_while] = ACTIONS(2329), + [anon_sym_do] = ACTIONS(2329), + [anon_sym_if] = ACTIONS(2329), + [anon_sym_else] = ACTIONS(2329), + [anon_sym_match] = ACTIONS(2329), + [anon_sym_RBRACE] = ACTIONS(2329), + [anon_sym_try] = ACTIONS(2329), + [anon_sym_catch] = ACTIONS(2329), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_source] = ACTIONS(2329), + [anon_sym_source_DASHenv] = ACTIONS(2329), + [anon_sym_register] = ACTIONS(2329), + [anon_sym_hide] = ACTIONS(2329), + [anon_sym_hide_DASHenv] = ACTIONS(2329), + [anon_sym_overlay] = ACTIONS(2329), + [anon_sym_new] = ACTIONS(2329), + [anon_sym_as] = ACTIONS(2329), + [anon_sym_LPAREN2] = ACTIONS(2331), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2329), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2329), + [aux_sym__val_number_decimal_token1] = ACTIONS(2329), + [aux_sym__val_number_decimal_token2] = ACTIONS(2329), + [aux_sym__val_number_decimal_token3] = ACTIONS(2329), + [aux_sym__val_number_decimal_token4] = ACTIONS(2329), + [aux_sym__val_number_token1] = ACTIONS(2329), + [aux_sym__val_number_token2] = ACTIONS(2329), + [aux_sym__val_number_token3] = ACTIONS(2329), + [anon_sym_DQUOTE] = ACTIONS(2329), + [sym__str_single_quotes] = ACTIONS(2329), + [sym__str_back_ticks] = ACTIONS(2329), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2329), + [sym__entry_separator] = ACTIONS(2331), + [anon_sym_PLUS] = ACTIONS(2329), [anon_sym_POUND] = ACTIONS(3), }, - [490] = { - [sym__expr_parenthesized_immediate] = STATE(7950), - [sym_comment] = STATE(490), - [anon_sym_export] = ACTIONS(2203), - [anon_sym_alias] = ACTIONS(2203), - [anon_sym_let] = ACTIONS(2203), - [anon_sym_let_DASHenv] = ACTIONS(2203), - [anon_sym_mut] = ACTIONS(2203), - [anon_sym_const] = ACTIONS(2203), - [aux_sym_cmd_identifier_token1] = ACTIONS(2203), - [aux_sym_cmd_identifier_token2] = ACTIONS(2203), - [aux_sym_cmd_identifier_token3] = ACTIONS(2203), - [aux_sym_cmd_identifier_token4] = ACTIONS(2203), - [aux_sym_cmd_identifier_token5] = ACTIONS(2203), - [aux_sym_cmd_identifier_token6] = ACTIONS(2203), - [aux_sym_cmd_identifier_token7] = ACTIONS(2203), - [aux_sym_cmd_identifier_token8] = ACTIONS(2203), - [aux_sym_cmd_identifier_token9] = ACTIONS(2203), - [aux_sym_cmd_identifier_token10] = ACTIONS(2203), - [aux_sym_cmd_identifier_token11] = ACTIONS(2203), - [aux_sym_cmd_identifier_token12] = ACTIONS(2203), - [aux_sym_cmd_identifier_token13] = ACTIONS(2203), - [aux_sym_cmd_identifier_token14] = ACTIONS(2203), - [aux_sym_cmd_identifier_token15] = ACTIONS(2203), - [aux_sym_cmd_identifier_token16] = ACTIONS(2203), - [aux_sym_cmd_identifier_token17] = ACTIONS(2203), - [aux_sym_cmd_identifier_token18] = ACTIONS(2203), - [aux_sym_cmd_identifier_token19] = ACTIONS(2203), - [aux_sym_cmd_identifier_token20] = ACTIONS(2203), - [aux_sym_cmd_identifier_token21] = ACTIONS(2203), - [aux_sym_cmd_identifier_token22] = ACTIONS(2203), - [aux_sym_cmd_identifier_token23] = ACTIONS(2203), - [aux_sym_cmd_identifier_token24] = ACTIONS(2203), - [aux_sym_cmd_identifier_token25] = ACTIONS(2203), - [aux_sym_cmd_identifier_token26] = ACTIONS(2203), - [aux_sym_cmd_identifier_token27] = ACTIONS(2203), - [aux_sym_cmd_identifier_token28] = ACTIONS(2203), - [aux_sym_cmd_identifier_token29] = ACTIONS(2203), - [aux_sym_cmd_identifier_token30] = ACTIONS(2203), - [aux_sym_cmd_identifier_token31] = ACTIONS(2203), - [aux_sym_cmd_identifier_token32] = ACTIONS(2203), - [aux_sym_cmd_identifier_token33] = ACTIONS(2203), - [aux_sym_cmd_identifier_token34] = ACTIONS(2203), - [aux_sym_cmd_identifier_token35] = ACTIONS(2203), - [aux_sym_cmd_identifier_token36] = ACTIONS(2203), - [anon_sym_true] = ACTIONS(2205), - [anon_sym_false] = ACTIONS(2205), - [anon_sym_null] = ACTIONS(2205), - [aux_sym_cmd_identifier_token38] = ACTIONS(2203), - [aux_sym_cmd_identifier_token39] = ACTIONS(2205), - [aux_sym_cmd_identifier_token40] = ACTIONS(2205), - [anon_sym_def] = ACTIONS(2203), - [anon_sym_export_DASHenv] = ACTIONS(2203), - [anon_sym_extern] = ACTIONS(2203), - [anon_sym_module] = ACTIONS(2203), - [anon_sym_use] = ACTIONS(2203), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_DOLLAR] = ACTIONS(2205), - [anon_sym_error] = ACTIONS(2203), - [anon_sym_list] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_break] = ACTIONS(2203), - [anon_sym_continue] = ACTIONS(2203), - [anon_sym_for] = ACTIONS(2203), - [anon_sym_in] = ACTIONS(2203), - [anon_sym_loop] = ACTIONS(2203), - [anon_sym_make] = ACTIONS(2203), - [anon_sym_while] = ACTIONS(2203), - [anon_sym_do] = ACTIONS(2203), - [anon_sym_if] = ACTIONS(2203), - [anon_sym_else] = ACTIONS(2203), - [anon_sym_match] = ACTIONS(2203), - [anon_sym_RBRACE] = ACTIONS(2205), - [anon_sym_try] = ACTIONS(2203), - [anon_sym_catch] = ACTIONS(2203), - [anon_sym_return] = ACTIONS(2203), - [anon_sym_source] = ACTIONS(2203), - [anon_sym_source_DASHenv] = ACTIONS(2203), - [anon_sym_register] = ACTIONS(2203), - [anon_sym_hide] = ACTIONS(2203), - [anon_sym_hide_DASHenv] = ACTIONS(2203), - [anon_sym_overlay] = ACTIONS(2203), - [anon_sym_new] = ACTIONS(2203), - [anon_sym_as] = ACTIONS(2203), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2205), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2205), - [aux_sym__val_number_decimal_token1] = ACTIONS(2203), - [aux_sym__val_number_decimal_token2] = ACTIONS(2205), - [aux_sym__val_number_decimal_token3] = ACTIONS(2205), - [aux_sym__val_number_decimal_token4] = ACTIONS(2205), - [aux_sym__val_number_token1] = ACTIONS(2205), - [aux_sym__val_number_token2] = ACTIONS(2205), - [aux_sym__val_number_token3] = ACTIONS(2205), - [anon_sym_DQUOTE] = ACTIONS(2205), - [sym__str_single_quotes] = ACTIONS(2205), - [sym__str_back_ticks] = ACTIONS(2205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2205), - [anon_sym_PLUS] = ACTIONS(2203), - [anon_sym_POUND] = ACTIONS(247), + [484] = { + [sym_comment] = STATE(484), + [anon_sym_export] = ACTIONS(1060), + [anon_sym_alias] = ACTIONS(1060), + [anon_sym_let] = ACTIONS(1060), + [anon_sym_let_DASHenv] = ACTIONS(1060), + [anon_sym_mut] = ACTIONS(1060), + [anon_sym_const] = ACTIONS(1060), + [aux_sym_cmd_identifier_token1] = ACTIONS(1060), + [aux_sym_cmd_identifier_token2] = ACTIONS(1060), + [aux_sym_cmd_identifier_token3] = ACTIONS(1060), + [aux_sym_cmd_identifier_token4] = ACTIONS(1060), + [aux_sym_cmd_identifier_token5] = ACTIONS(1060), + [aux_sym_cmd_identifier_token6] = ACTIONS(1060), + [aux_sym_cmd_identifier_token7] = ACTIONS(1060), + [aux_sym_cmd_identifier_token8] = ACTIONS(1060), + [aux_sym_cmd_identifier_token9] = ACTIONS(1060), + [aux_sym_cmd_identifier_token10] = ACTIONS(1060), + [aux_sym_cmd_identifier_token11] = ACTIONS(1060), + [aux_sym_cmd_identifier_token12] = ACTIONS(1060), + [aux_sym_cmd_identifier_token13] = ACTIONS(1060), + [aux_sym_cmd_identifier_token14] = ACTIONS(1060), + [aux_sym_cmd_identifier_token15] = ACTIONS(1060), + [aux_sym_cmd_identifier_token16] = ACTIONS(1060), + [aux_sym_cmd_identifier_token17] = ACTIONS(1060), + [aux_sym_cmd_identifier_token18] = ACTIONS(1060), + [aux_sym_cmd_identifier_token19] = ACTIONS(1060), + [aux_sym_cmd_identifier_token20] = ACTIONS(1060), + [aux_sym_cmd_identifier_token21] = ACTIONS(1060), + [aux_sym_cmd_identifier_token22] = ACTIONS(1060), + [aux_sym_cmd_identifier_token23] = ACTIONS(1060), + [aux_sym_cmd_identifier_token24] = ACTIONS(1060), + [aux_sym_cmd_identifier_token25] = ACTIONS(1060), + [aux_sym_cmd_identifier_token26] = ACTIONS(1060), + [aux_sym_cmd_identifier_token27] = ACTIONS(1060), + [aux_sym_cmd_identifier_token28] = ACTIONS(1060), + [aux_sym_cmd_identifier_token29] = ACTIONS(1060), + [aux_sym_cmd_identifier_token30] = ACTIONS(1060), + [aux_sym_cmd_identifier_token31] = ACTIONS(1060), + [aux_sym_cmd_identifier_token32] = ACTIONS(1060), + [aux_sym_cmd_identifier_token33] = ACTIONS(1060), + [aux_sym_cmd_identifier_token34] = ACTIONS(1060), + [aux_sym_cmd_identifier_token35] = ACTIONS(1060), + [aux_sym_cmd_identifier_token36] = ACTIONS(1060), + [anon_sym_true] = ACTIONS(1060), + [anon_sym_false] = ACTIONS(1060), + [anon_sym_null] = ACTIONS(1060), + [aux_sym_cmd_identifier_token38] = ACTIONS(1060), + [aux_sym_cmd_identifier_token39] = ACTIONS(1060), + [aux_sym_cmd_identifier_token40] = ACTIONS(1060), + [anon_sym_def] = ACTIONS(1060), + [anon_sym_export_DASHenv] = ACTIONS(1060), + [anon_sym_extern] = ACTIONS(1060), + [anon_sym_module] = ACTIONS(1060), + [anon_sym_use] = ACTIONS(1060), + [anon_sym_LPAREN] = ACTIONS(1060), + [anon_sym_DOLLAR] = ACTIONS(1060), + [anon_sym_error] = ACTIONS(1060), + [anon_sym_list] = ACTIONS(1060), + [anon_sym_DASH] = ACTIONS(1060), + [anon_sym_break] = ACTIONS(1060), + [anon_sym_continue] = ACTIONS(1060), + [anon_sym_for] = ACTIONS(1060), + [anon_sym_in] = ACTIONS(1060), + [anon_sym_loop] = ACTIONS(1060), + [anon_sym_make] = ACTIONS(1060), + [anon_sym_while] = ACTIONS(1060), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_if] = ACTIONS(1060), + [anon_sym_else] = ACTIONS(1060), + [anon_sym_match] = ACTIONS(1060), + [anon_sym_RBRACE] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1060), + [anon_sym_catch] = ACTIONS(1060), + [anon_sym_return] = ACTIONS(1060), + [anon_sym_source] = ACTIONS(1060), + [anon_sym_source_DASHenv] = ACTIONS(1060), + [anon_sym_register] = ACTIONS(1060), + [anon_sym_hide] = ACTIONS(1060), + [anon_sym_hide_DASHenv] = ACTIONS(1060), + [anon_sym_overlay] = ACTIONS(1060), + [anon_sym_new] = ACTIONS(1060), + [anon_sym_as] = ACTIONS(1060), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1060), + [anon_sym_DOT] = ACTIONS(1060), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1060), + [aux_sym__val_number_decimal_token1] = ACTIONS(1060), + [aux_sym__val_number_decimal_token2] = ACTIONS(1060), + [aux_sym__val_number_decimal_token3] = ACTIONS(1060), + [aux_sym__val_number_decimal_token4] = ACTIONS(1060), + [aux_sym__val_number_token1] = ACTIONS(1060), + [aux_sym__val_number_token2] = ACTIONS(1060), + [aux_sym__val_number_token3] = ACTIONS(1060), + [anon_sym_DQUOTE] = ACTIONS(1060), + [sym__str_single_quotes] = ACTIONS(1060), + [sym__str_back_ticks] = ACTIONS(1060), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1060), + [sym__entry_separator] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1060), + [anon_sym_POUND] = ACTIONS(3), }, - [491] = { - [sym_comment] = STATE(491), + [485] = { + [sym_comment] = STATE(485), + [aux_sym__multiple_types_repeat1] = STATE(504), + [anon_sym_export] = ACTIONS(2313), + [anon_sym_alias] = ACTIONS(2313), + [anon_sym_let] = ACTIONS(2313), + [anon_sym_let_DASHenv] = ACTIONS(2313), + [anon_sym_mut] = ACTIONS(2313), + [anon_sym_const] = ACTIONS(2313), + [aux_sym_cmd_identifier_token1] = ACTIONS(2313), + [aux_sym_cmd_identifier_token2] = ACTIONS(2313), + [aux_sym_cmd_identifier_token3] = ACTIONS(2313), + [aux_sym_cmd_identifier_token4] = ACTIONS(2313), + [aux_sym_cmd_identifier_token5] = ACTIONS(2313), + [aux_sym_cmd_identifier_token6] = ACTIONS(2313), + [aux_sym_cmd_identifier_token7] = ACTIONS(2313), + [aux_sym_cmd_identifier_token8] = ACTIONS(2313), + [aux_sym_cmd_identifier_token9] = ACTIONS(2313), + [aux_sym_cmd_identifier_token10] = ACTIONS(2313), + [aux_sym_cmd_identifier_token11] = ACTIONS(2313), + [aux_sym_cmd_identifier_token12] = ACTIONS(2313), + [aux_sym_cmd_identifier_token13] = ACTIONS(2313), + [aux_sym_cmd_identifier_token14] = ACTIONS(2313), + [aux_sym_cmd_identifier_token15] = ACTIONS(2313), + [aux_sym_cmd_identifier_token16] = ACTIONS(2313), + [aux_sym_cmd_identifier_token17] = ACTIONS(2313), + [aux_sym_cmd_identifier_token18] = ACTIONS(2313), + [aux_sym_cmd_identifier_token19] = ACTIONS(2313), + [aux_sym_cmd_identifier_token20] = ACTIONS(2313), + [aux_sym_cmd_identifier_token21] = ACTIONS(2313), + [aux_sym_cmd_identifier_token22] = ACTIONS(2313), + [aux_sym_cmd_identifier_token23] = ACTIONS(2313), + [aux_sym_cmd_identifier_token24] = ACTIONS(2313), + [aux_sym_cmd_identifier_token25] = ACTIONS(2313), + [aux_sym_cmd_identifier_token26] = ACTIONS(2313), + [aux_sym_cmd_identifier_token27] = ACTIONS(2313), + [aux_sym_cmd_identifier_token28] = ACTIONS(2313), + [aux_sym_cmd_identifier_token29] = ACTIONS(2313), + [aux_sym_cmd_identifier_token30] = ACTIONS(2313), + [aux_sym_cmd_identifier_token31] = ACTIONS(2313), + [aux_sym_cmd_identifier_token32] = ACTIONS(2313), + [aux_sym_cmd_identifier_token33] = ACTIONS(2313), + [aux_sym_cmd_identifier_token34] = ACTIONS(2313), + [aux_sym_cmd_identifier_token35] = ACTIONS(2313), + [aux_sym_cmd_identifier_token36] = ACTIONS(2313), + [anon_sym_true] = ACTIONS(2313), + [anon_sym_false] = ACTIONS(2313), + [anon_sym_null] = ACTIONS(2313), + [aux_sym_cmd_identifier_token38] = ACTIONS(2313), + [aux_sym_cmd_identifier_token39] = ACTIONS(2313), + [aux_sym_cmd_identifier_token40] = ACTIONS(2313), + [anon_sym_def] = ACTIONS(2313), + [anon_sym_export_DASHenv] = ACTIONS(2313), + [anon_sym_extern] = ACTIONS(2313), + [anon_sym_module] = ACTIONS(2313), + [anon_sym_use] = ACTIONS(2313), + [anon_sym_LPAREN] = ACTIONS(2313), + [anon_sym_DOLLAR] = ACTIONS(2313), + [anon_sym_error] = ACTIONS(2313), + [anon_sym_list] = ACTIONS(2313), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_break] = ACTIONS(2313), + [anon_sym_continue] = ACTIONS(2313), + [anon_sym_for] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2313), + [anon_sym_loop] = ACTIONS(2313), + [anon_sym_make] = ACTIONS(2313), + [anon_sym_while] = ACTIONS(2313), + [anon_sym_do] = ACTIONS(2313), + [anon_sym_if] = ACTIONS(2313), + [anon_sym_else] = ACTIONS(2313), + [anon_sym_match] = ACTIONS(2313), + [anon_sym_RBRACE] = ACTIONS(2333), + [anon_sym_try] = ACTIONS(2313), + [anon_sym_catch] = ACTIONS(2313), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_source] = ACTIONS(2313), + [anon_sym_source_DASHenv] = ACTIONS(2313), + [anon_sym_register] = ACTIONS(2313), + [anon_sym_hide] = ACTIONS(2313), + [anon_sym_hide_DASHenv] = ACTIONS(2313), + [anon_sym_overlay] = ACTIONS(2313), + [anon_sym_new] = ACTIONS(2313), + [anon_sym_as] = ACTIONS(2313), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2313), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2313), + [aux_sym__val_number_decimal_token1] = ACTIONS(2313), + [aux_sym__val_number_decimal_token2] = ACTIONS(2313), + [aux_sym__val_number_decimal_token3] = ACTIONS(2313), + [aux_sym__val_number_decimal_token4] = ACTIONS(2313), + [aux_sym__val_number_token1] = ACTIONS(2313), + [aux_sym__val_number_token2] = ACTIONS(2313), + [aux_sym__val_number_token3] = ACTIONS(2313), + [anon_sym_DQUOTE] = ACTIONS(2313), + [sym__str_single_quotes] = ACTIONS(2313), + [sym__str_back_ticks] = ACTIONS(2313), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2313), + [sym__entry_separator] = ACTIONS(2317), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_POUND] = ACTIONS(3), + }, + [486] = { + [sym_comment] = STATE(486), + [aux_sym__multiple_types_repeat1] = STATE(504), + [anon_sym_export] = ACTIONS(2313), + [anon_sym_alias] = ACTIONS(2313), + [anon_sym_let] = ACTIONS(2313), + [anon_sym_let_DASHenv] = ACTIONS(2313), + [anon_sym_mut] = ACTIONS(2313), + [anon_sym_const] = ACTIONS(2313), + [aux_sym_cmd_identifier_token1] = ACTIONS(2313), + [aux_sym_cmd_identifier_token2] = ACTIONS(2313), + [aux_sym_cmd_identifier_token3] = ACTIONS(2313), + [aux_sym_cmd_identifier_token4] = ACTIONS(2313), + [aux_sym_cmd_identifier_token5] = ACTIONS(2313), + [aux_sym_cmd_identifier_token6] = ACTIONS(2313), + [aux_sym_cmd_identifier_token7] = ACTIONS(2313), + [aux_sym_cmd_identifier_token8] = ACTIONS(2313), + [aux_sym_cmd_identifier_token9] = ACTIONS(2313), + [aux_sym_cmd_identifier_token10] = ACTIONS(2313), + [aux_sym_cmd_identifier_token11] = ACTIONS(2313), + [aux_sym_cmd_identifier_token12] = ACTIONS(2313), + [aux_sym_cmd_identifier_token13] = ACTIONS(2313), + [aux_sym_cmd_identifier_token14] = ACTIONS(2313), + [aux_sym_cmd_identifier_token15] = ACTIONS(2313), + [aux_sym_cmd_identifier_token16] = ACTIONS(2313), + [aux_sym_cmd_identifier_token17] = ACTIONS(2313), + [aux_sym_cmd_identifier_token18] = ACTIONS(2313), + [aux_sym_cmd_identifier_token19] = ACTIONS(2313), + [aux_sym_cmd_identifier_token20] = ACTIONS(2313), + [aux_sym_cmd_identifier_token21] = ACTIONS(2313), + [aux_sym_cmd_identifier_token22] = ACTIONS(2313), + [aux_sym_cmd_identifier_token23] = ACTIONS(2313), + [aux_sym_cmd_identifier_token24] = ACTIONS(2313), + [aux_sym_cmd_identifier_token25] = ACTIONS(2313), + [aux_sym_cmd_identifier_token26] = ACTIONS(2313), + [aux_sym_cmd_identifier_token27] = ACTIONS(2313), + [aux_sym_cmd_identifier_token28] = ACTIONS(2313), + [aux_sym_cmd_identifier_token29] = ACTIONS(2313), + [aux_sym_cmd_identifier_token30] = ACTIONS(2313), + [aux_sym_cmd_identifier_token31] = ACTIONS(2313), + [aux_sym_cmd_identifier_token32] = ACTIONS(2313), + [aux_sym_cmd_identifier_token33] = ACTIONS(2313), + [aux_sym_cmd_identifier_token34] = ACTIONS(2313), + [aux_sym_cmd_identifier_token35] = ACTIONS(2313), + [aux_sym_cmd_identifier_token36] = ACTIONS(2313), + [anon_sym_true] = ACTIONS(2313), + [anon_sym_false] = ACTIONS(2313), + [anon_sym_null] = ACTIONS(2313), + [aux_sym_cmd_identifier_token38] = ACTIONS(2313), + [aux_sym_cmd_identifier_token39] = ACTIONS(2313), + [aux_sym_cmd_identifier_token40] = ACTIONS(2313), + [anon_sym_def] = ACTIONS(2313), + [anon_sym_export_DASHenv] = ACTIONS(2313), + [anon_sym_extern] = ACTIONS(2313), + [anon_sym_module] = ACTIONS(2313), + [anon_sym_use] = ACTIONS(2313), + [anon_sym_LPAREN] = ACTIONS(2313), + [anon_sym_DOLLAR] = ACTIONS(2313), + [anon_sym_error] = ACTIONS(2313), + [anon_sym_list] = ACTIONS(2313), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_break] = ACTIONS(2313), + [anon_sym_continue] = ACTIONS(2313), + [anon_sym_for] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2313), + [anon_sym_loop] = ACTIONS(2313), + [anon_sym_make] = ACTIONS(2313), + [anon_sym_while] = ACTIONS(2313), + [anon_sym_do] = ACTIONS(2313), + [anon_sym_if] = ACTIONS(2313), + [anon_sym_else] = ACTIONS(2313), + [anon_sym_match] = ACTIONS(2313), + [anon_sym_RBRACE] = ACTIONS(2335), + [anon_sym_try] = ACTIONS(2313), + [anon_sym_catch] = ACTIONS(2313), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_source] = ACTIONS(2313), + [anon_sym_source_DASHenv] = ACTIONS(2313), + [anon_sym_register] = ACTIONS(2313), + [anon_sym_hide] = ACTIONS(2313), + [anon_sym_hide_DASHenv] = ACTIONS(2313), + [anon_sym_overlay] = ACTIONS(2313), + [anon_sym_new] = ACTIONS(2313), + [anon_sym_as] = ACTIONS(2313), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2313), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2313), + [aux_sym__val_number_decimal_token1] = ACTIONS(2313), + [aux_sym__val_number_decimal_token2] = ACTIONS(2313), + [aux_sym__val_number_decimal_token3] = ACTIONS(2313), + [aux_sym__val_number_decimal_token4] = ACTIONS(2313), + [aux_sym__val_number_token1] = ACTIONS(2313), + [aux_sym__val_number_token2] = ACTIONS(2313), + [aux_sym__val_number_token3] = ACTIONS(2313), + [anon_sym_DQUOTE] = ACTIONS(2313), + [sym__str_single_quotes] = ACTIONS(2313), + [sym__str_back_ticks] = ACTIONS(2313), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2313), + [sym__entry_separator] = ACTIONS(2317), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_POUND] = ACTIONS(3), + }, + [487] = { + [sym_comment] = STATE(487), [anon_sym_export] = ACTIONS(2259), [anon_sym_alias] = ACTIONS(2259), [anon_sym_let] = ACTIONS(2259), @@ -133170,7 +128665,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(2259), [anon_sym_module] = ACTIONS(2259), [anon_sym_use] = ACTIONS(2259), - [anon_sym_RBRACK] = ACTIONS(2259), [anon_sym_LPAREN] = ACTIONS(2259), [anon_sym_DOLLAR] = ACTIONS(2259), [anon_sym_error] = ACTIONS(2259), @@ -133187,7 +128681,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(2259), [anon_sym_else] = ACTIONS(2259), [anon_sym_match] = ACTIONS(2259), - [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2261), [anon_sym_try] = ACTIONS(2259), [anon_sym_catch] = ACTIONS(2259), [anon_sym_return] = ACTIONS(2259), @@ -133199,7 +128693,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(2259), [anon_sym_new] = ACTIONS(2259), [anon_sym_as] = ACTIONS(2259), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2259), + [anon_sym_LPAREN2] = ACTIONS(2261), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2261), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2259), [aux_sym__val_number_decimal_token1] = ACTIONS(2259), [aux_sym__val_number_decimal_token2] = ACTIONS(2259), @@ -133208,16 +128703,1936 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token1] = ACTIONS(2259), [aux_sym__val_number_token2] = ACTIONS(2259), [aux_sym__val_number_token3] = ACTIONS(2259), - [anon_sym_DQUOTE] = ACTIONS(2259), - [sym__str_single_quotes] = ACTIONS(2259), - [sym__str_back_ticks] = ACTIONS(2259), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2259), - [sym__entry_separator] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2261), + [sym__str_single_quotes] = ACTIONS(2261), + [sym__str_back_ticks] = ACTIONS(2261), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2261), [anon_sym_PLUS] = ACTIONS(2259), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2259), [anon_sym_POUND] = ACTIONS(3), }, + [488] = { + [sym_comment] = STATE(488), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_alias] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_let_DASHenv] = ACTIONS(2160), + [anon_sym_mut] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [aux_sym_cmd_identifier_token1] = ACTIONS(2160), + [aux_sym_cmd_identifier_token2] = ACTIONS(2160), + [aux_sym_cmd_identifier_token3] = ACTIONS(2160), + [aux_sym_cmd_identifier_token4] = ACTIONS(2160), + [aux_sym_cmd_identifier_token5] = ACTIONS(2160), + [aux_sym_cmd_identifier_token6] = ACTIONS(2160), + [aux_sym_cmd_identifier_token7] = ACTIONS(2160), + [aux_sym_cmd_identifier_token8] = ACTIONS(2160), + [aux_sym_cmd_identifier_token9] = ACTIONS(2160), + [aux_sym_cmd_identifier_token10] = ACTIONS(2160), + [aux_sym_cmd_identifier_token11] = ACTIONS(2160), + [aux_sym_cmd_identifier_token12] = ACTIONS(2160), + [aux_sym_cmd_identifier_token13] = ACTIONS(2160), + [aux_sym_cmd_identifier_token14] = ACTIONS(2160), + [aux_sym_cmd_identifier_token15] = ACTIONS(2160), + [aux_sym_cmd_identifier_token16] = ACTIONS(2160), + [aux_sym_cmd_identifier_token17] = ACTIONS(2160), + [aux_sym_cmd_identifier_token18] = ACTIONS(2160), + [aux_sym_cmd_identifier_token19] = ACTIONS(2160), + [aux_sym_cmd_identifier_token20] = ACTIONS(2160), + [aux_sym_cmd_identifier_token21] = ACTIONS(2160), + [aux_sym_cmd_identifier_token22] = ACTIONS(2160), + [aux_sym_cmd_identifier_token23] = ACTIONS(2160), + [aux_sym_cmd_identifier_token24] = ACTIONS(2160), + [aux_sym_cmd_identifier_token25] = ACTIONS(2160), + [aux_sym_cmd_identifier_token26] = ACTIONS(2160), + [aux_sym_cmd_identifier_token27] = ACTIONS(2160), + [aux_sym_cmd_identifier_token28] = ACTIONS(2160), + [aux_sym_cmd_identifier_token29] = ACTIONS(2160), + [aux_sym_cmd_identifier_token30] = ACTIONS(2160), + [aux_sym_cmd_identifier_token31] = ACTIONS(2160), + [aux_sym_cmd_identifier_token32] = ACTIONS(2160), + [aux_sym_cmd_identifier_token33] = ACTIONS(2160), + [aux_sym_cmd_identifier_token34] = ACTIONS(2160), + [aux_sym_cmd_identifier_token35] = ACTIONS(2160), + [aux_sym_cmd_identifier_token36] = ACTIONS(2160), + [anon_sym_true] = ACTIONS(2162), + [anon_sym_false] = ACTIONS(2162), + [anon_sym_null] = ACTIONS(2162), + [aux_sym_cmd_identifier_token38] = ACTIONS(2160), + [aux_sym_cmd_identifier_token39] = ACTIONS(2162), + [aux_sym_cmd_identifier_token40] = ACTIONS(2162), + [anon_sym_def] = ACTIONS(2160), + [anon_sym_export_DASHenv] = ACTIONS(2160), + [anon_sym_extern] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_use] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_DOLLAR] = ACTIONS(2162), + [anon_sym_error] = ACTIONS(2160), + [anon_sym_list] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_in] = ACTIONS(2160), + [anon_sym_loop] = ACTIONS(2160), + [anon_sym_make] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_else] = ACTIONS(2160), + [anon_sym_match] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2162), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_catch] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_source] = ACTIONS(2160), + [anon_sym_source_DASHenv] = ACTIONS(2160), + [anon_sym_register] = ACTIONS(2160), + [anon_sym_hide] = ACTIONS(2160), + [anon_sym_hide_DASHenv] = ACTIONS(2160), + [anon_sym_overlay] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_as] = ACTIONS(2160), + [anon_sym_LPAREN2] = ACTIONS(1798), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2162), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2162), + [aux_sym__val_number_decimal_token1] = ACTIONS(2160), + [aux_sym__val_number_decimal_token2] = ACTIONS(2162), + [aux_sym__val_number_decimal_token3] = ACTIONS(2162), + [aux_sym__val_number_decimal_token4] = ACTIONS(2162), + [aux_sym__val_number_token1] = ACTIONS(2162), + [aux_sym__val_number_token2] = ACTIONS(2162), + [aux_sym__val_number_token3] = ACTIONS(2162), + [anon_sym_DQUOTE] = ACTIONS(2162), + [sym__str_single_quotes] = ACTIONS(2162), + [sym__str_back_ticks] = ACTIONS(2162), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2162), + [anon_sym_PLUS] = ACTIONS(2160), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1806), + [anon_sym_POUND] = ACTIONS(247), + }, + [489] = { + [sym_comment] = STATE(489), + [anon_sym_export] = ACTIONS(1796), + [anon_sym_alias] = ACTIONS(1796), + [anon_sym_let] = ACTIONS(1796), + [anon_sym_let_DASHenv] = ACTIONS(1796), + [anon_sym_mut] = ACTIONS(1796), + [anon_sym_const] = ACTIONS(1796), + [aux_sym_cmd_identifier_token1] = ACTIONS(1796), + [aux_sym_cmd_identifier_token2] = ACTIONS(1796), + [aux_sym_cmd_identifier_token3] = ACTIONS(1796), + [aux_sym_cmd_identifier_token4] = ACTIONS(1796), + [aux_sym_cmd_identifier_token5] = ACTIONS(1796), + [aux_sym_cmd_identifier_token6] = ACTIONS(1796), + [aux_sym_cmd_identifier_token7] = ACTIONS(1796), + [aux_sym_cmd_identifier_token8] = ACTIONS(1796), + [aux_sym_cmd_identifier_token9] = ACTIONS(1796), + [aux_sym_cmd_identifier_token10] = ACTIONS(1796), + [aux_sym_cmd_identifier_token11] = ACTIONS(1796), + [aux_sym_cmd_identifier_token12] = ACTIONS(1796), + [aux_sym_cmd_identifier_token13] = ACTIONS(1796), + [aux_sym_cmd_identifier_token14] = ACTIONS(1796), + [aux_sym_cmd_identifier_token15] = ACTIONS(1796), + [aux_sym_cmd_identifier_token16] = ACTIONS(1796), + [aux_sym_cmd_identifier_token17] = ACTIONS(1796), + [aux_sym_cmd_identifier_token18] = ACTIONS(1796), + [aux_sym_cmd_identifier_token19] = ACTIONS(1796), + [aux_sym_cmd_identifier_token20] = ACTIONS(1796), + [aux_sym_cmd_identifier_token21] = ACTIONS(1796), + [aux_sym_cmd_identifier_token22] = ACTIONS(1796), + [aux_sym_cmd_identifier_token23] = ACTIONS(1796), + [aux_sym_cmd_identifier_token24] = ACTIONS(1796), + [aux_sym_cmd_identifier_token25] = ACTIONS(1796), + [aux_sym_cmd_identifier_token26] = ACTIONS(1796), + [aux_sym_cmd_identifier_token27] = ACTIONS(1796), + [aux_sym_cmd_identifier_token28] = ACTIONS(1796), + [aux_sym_cmd_identifier_token29] = ACTIONS(1796), + [aux_sym_cmd_identifier_token30] = ACTIONS(1796), + [aux_sym_cmd_identifier_token31] = ACTIONS(1796), + [aux_sym_cmd_identifier_token32] = ACTIONS(1796), + [aux_sym_cmd_identifier_token33] = ACTIONS(1796), + [aux_sym_cmd_identifier_token34] = ACTIONS(1796), + [aux_sym_cmd_identifier_token35] = ACTIONS(1796), + [aux_sym_cmd_identifier_token36] = ACTIONS(1796), + [anon_sym_true] = ACTIONS(1804), + [anon_sym_false] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1804), + [aux_sym_cmd_identifier_token38] = ACTIONS(1796), + [aux_sym_cmd_identifier_token39] = ACTIONS(1804), + [aux_sym_cmd_identifier_token40] = ACTIONS(1804), + [anon_sym_def] = ACTIONS(1796), + [anon_sym_export_DASHenv] = ACTIONS(1796), + [anon_sym_extern] = ACTIONS(1796), + [anon_sym_module] = ACTIONS(1796), + [anon_sym_use] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(1796), + [anon_sym_DOLLAR] = ACTIONS(1804), + [anon_sym_error] = ACTIONS(1796), + [anon_sym_list] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_for] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_loop] = ACTIONS(1796), + [anon_sym_make] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_do] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1796), + [anon_sym_match] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_try] = ACTIONS(1796), + [anon_sym_catch] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_source] = ACTIONS(1796), + [anon_sym_source_DASHenv] = ACTIONS(1796), + [anon_sym_register] = ACTIONS(1796), + [anon_sym_hide] = ACTIONS(1796), + [anon_sym_hide_DASHenv] = ACTIONS(1796), + [anon_sym_overlay] = ACTIONS(1796), + [anon_sym_new] = ACTIONS(1796), + [anon_sym_as] = ACTIONS(1796), + [anon_sym_LPAREN2] = ACTIONS(1798), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1804), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1804), + [aux_sym__val_number_decimal_token1] = ACTIONS(1796), + [aux_sym__val_number_decimal_token2] = ACTIONS(1804), + [aux_sym__val_number_decimal_token3] = ACTIONS(1804), + [aux_sym__val_number_decimal_token4] = ACTIONS(1804), + [aux_sym__val_number_token1] = ACTIONS(1804), + [aux_sym__val_number_token2] = ACTIONS(1804), + [aux_sym__val_number_token3] = ACTIONS(1804), + [anon_sym_DQUOTE] = ACTIONS(1804), + [sym__str_single_quotes] = ACTIONS(1804), + [sym__str_back_ticks] = ACTIONS(1804), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1796), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1806), + [anon_sym_POUND] = ACTIONS(247), + }, + [490] = { + [sym_comment] = STATE(490), + [anon_sym_export] = ACTIONS(1643), + [anon_sym_alias] = ACTIONS(1643), + [anon_sym_let] = ACTIONS(1643), + [anon_sym_let_DASHenv] = ACTIONS(1643), + [anon_sym_mut] = ACTIONS(1643), + [anon_sym_const] = ACTIONS(1643), + [aux_sym_cmd_identifier_token1] = ACTIONS(1643), + [aux_sym_cmd_identifier_token2] = ACTIONS(1643), + [aux_sym_cmd_identifier_token3] = ACTIONS(1643), + [aux_sym_cmd_identifier_token4] = ACTIONS(1643), + [aux_sym_cmd_identifier_token5] = ACTIONS(1643), + [aux_sym_cmd_identifier_token6] = ACTIONS(1643), + [aux_sym_cmd_identifier_token7] = ACTIONS(1643), + [aux_sym_cmd_identifier_token8] = ACTIONS(1643), + [aux_sym_cmd_identifier_token9] = ACTIONS(1643), + [aux_sym_cmd_identifier_token10] = ACTIONS(1643), + [aux_sym_cmd_identifier_token11] = ACTIONS(1643), + [aux_sym_cmd_identifier_token12] = ACTIONS(1643), + [aux_sym_cmd_identifier_token13] = ACTIONS(1643), + [aux_sym_cmd_identifier_token14] = ACTIONS(1643), + [aux_sym_cmd_identifier_token15] = ACTIONS(1643), + [aux_sym_cmd_identifier_token16] = ACTIONS(1643), + [aux_sym_cmd_identifier_token17] = ACTIONS(1643), + [aux_sym_cmd_identifier_token18] = ACTIONS(1643), + [aux_sym_cmd_identifier_token19] = ACTIONS(1643), + [aux_sym_cmd_identifier_token20] = ACTIONS(1643), + [aux_sym_cmd_identifier_token21] = ACTIONS(1643), + [aux_sym_cmd_identifier_token22] = ACTIONS(1643), + [aux_sym_cmd_identifier_token23] = ACTIONS(1643), + [aux_sym_cmd_identifier_token24] = ACTIONS(1643), + [aux_sym_cmd_identifier_token25] = ACTIONS(1643), + [aux_sym_cmd_identifier_token26] = ACTIONS(1643), + [aux_sym_cmd_identifier_token27] = ACTIONS(1643), + [aux_sym_cmd_identifier_token28] = ACTIONS(1643), + [aux_sym_cmd_identifier_token29] = ACTIONS(1643), + [aux_sym_cmd_identifier_token30] = ACTIONS(1643), + [aux_sym_cmd_identifier_token31] = ACTIONS(1643), + [aux_sym_cmd_identifier_token32] = ACTIONS(1643), + [aux_sym_cmd_identifier_token33] = ACTIONS(1643), + [aux_sym_cmd_identifier_token34] = ACTIONS(1643), + [aux_sym_cmd_identifier_token35] = ACTIONS(1643), + [aux_sym_cmd_identifier_token36] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [aux_sym_cmd_identifier_token38] = ACTIONS(1643), + [aux_sym_cmd_identifier_token39] = ACTIONS(1645), + [aux_sym_cmd_identifier_token40] = ACTIONS(1645), + [anon_sym_def] = ACTIONS(1643), + [anon_sym_export_DASHenv] = ACTIONS(1643), + [anon_sym_extern] = ACTIONS(1643), + [anon_sym_module] = ACTIONS(1643), + [anon_sym_use] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(1645), + [anon_sym_error] = ACTIONS(1643), + [anon_sym_list] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_break] = ACTIONS(1643), + [anon_sym_continue] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_loop] = ACTIONS(1643), + [anon_sym_make] = ACTIONS(1643), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_do] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_else] = ACTIONS(1643), + [anon_sym_match] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1645), + [anon_sym_try] = ACTIONS(1643), + [anon_sym_catch] = ACTIONS(1643), + [anon_sym_return] = ACTIONS(1643), + [anon_sym_source] = ACTIONS(1643), + [anon_sym_source_DASHenv] = ACTIONS(1643), + [anon_sym_register] = ACTIONS(1643), + [anon_sym_hide] = ACTIONS(1643), + [anon_sym_hide_DASHenv] = ACTIONS(1643), + [anon_sym_overlay] = ACTIONS(1643), + [anon_sym_new] = ACTIONS(1643), + [anon_sym_as] = ACTIONS(1643), + [anon_sym_LPAREN2] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1645), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1645), + [aux_sym__val_number_decimal_token3] = ACTIONS(1645), + [aux_sym__val_number_decimal_token4] = ACTIONS(1645), + [aux_sym__val_number_token1] = ACTIONS(1645), + [aux_sym__val_number_token2] = ACTIONS(1645), + [aux_sym__val_number_token3] = ACTIONS(1645), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym__str_single_quotes] = ACTIONS(1645), + [sym__str_back_ticks] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1645), + [anon_sym_PLUS] = ACTIONS(1643), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1643), + [anon_sym_POUND] = ACTIONS(247), + }, + [491] = { + [sym_comment] = STATE(491), + [anon_sym_export] = ACTIONS(2218), + [anon_sym_alias] = ACTIONS(2218), + [anon_sym_let] = ACTIONS(2218), + [anon_sym_let_DASHenv] = ACTIONS(2218), + [anon_sym_mut] = ACTIONS(2218), + [anon_sym_const] = ACTIONS(2218), + [aux_sym_cmd_identifier_token1] = ACTIONS(2218), + [aux_sym_cmd_identifier_token2] = ACTIONS(2218), + [aux_sym_cmd_identifier_token3] = ACTIONS(2218), + [aux_sym_cmd_identifier_token4] = ACTIONS(2218), + [aux_sym_cmd_identifier_token5] = ACTIONS(2218), + [aux_sym_cmd_identifier_token6] = ACTIONS(2218), + [aux_sym_cmd_identifier_token7] = ACTIONS(2218), + [aux_sym_cmd_identifier_token8] = ACTIONS(2218), + [aux_sym_cmd_identifier_token9] = ACTIONS(2218), + [aux_sym_cmd_identifier_token10] = ACTIONS(2218), + [aux_sym_cmd_identifier_token11] = ACTIONS(2218), + [aux_sym_cmd_identifier_token12] = ACTIONS(2218), + [aux_sym_cmd_identifier_token13] = ACTIONS(2218), + [aux_sym_cmd_identifier_token14] = ACTIONS(2218), + [aux_sym_cmd_identifier_token15] = ACTIONS(2218), + [aux_sym_cmd_identifier_token16] = ACTIONS(2218), + [aux_sym_cmd_identifier_token17] = ACTIONS(2218), + [aux_sym_cmd_identifier_token18] = ACTIONS(2218), + [aux_sym_cmd_identifier_token19] = ACTIONS(2218), + [aux_sym_cmd_identifier_token20] = ACTIONS(2218), + [aux_sym_cmd_identifier_token21] = ACTIONS(2218), + [aux_sym_cmd_identifier_token22] = ACTIONS(2218), + [aux_sym_cmd_identifier_token23] = ACTIONS(2218), + [aux_sym_cmd_identifier_token24] = ACTIONS(2218), + [aux_sym_cmd_identifier_token25] = ACTIONS(2218), + [aux_sym_cmd_identifier_token26] = ACTIONS(2218), + [aux_sym_cmd_identifier_token27] = ACTIONS(2218), + [aux_sym_cmd_identifier_token28] = ACTIONS(2218), + [aux_sym_cmd_identifier_token29] = ACTIONS(2218), + [aux_sym_cmd_identifier_token30] = ACTIONS(2218), + [aux_sym_cmd_identifier_token31] = ACTIONS(2218), + [aux_sym_cmd_identifier_token32] = ACTIONS(2218), + [aux_sym_cmd_identifier_token33] = ACTIONS(2218), + [aux_sym_cmd_identifier_token34] = ACTIONS(2218), + [aux_sym_cmd_identifier_token35] = ACTIONS(2218), + [aux_sym_cmd_identifier_token36] = ACTIONS(2218), + [anon_sym_true] = ACTIONS(2222), + [anon_sym_false] = ACTIONS(2222), + [anon_sym_null] = ACTIONS(2222), + [aux_sym_cmd_identifier_token38] = ACTIONS(2218), + [aux_sym_cmd_identifier_token39] = ACTIONS(2222), + [aux_sym_cmd_identifier_token40] = ACTIONS(2222), + [anon_sym_def] = ACTIONS(2218), + [anon_sym_export_DASHenv] = ACTIONS(2218), + [anon_sym_extern] = ACTIONS(2218), + [anon_sym_module] = ACTIONS(2218), + [anon_sym_use] = ACTIONS(2218), + [anon_sym_LPAREN] = ACTIONS(2218), + [anon_sym_DOLLAR] = ACTIONS(2222), + [anon_sym_error] = ACTIONS(2218), + [anon_sym_list] = ACTIONS(2218), + [anon_sym_DASH] = ACTIONS(2218), + [anon_sym_break] = ACTIONS(2218), + [anon_sym_continue] = ACTIONS(2218), + [anon_sym_for] = ACTIONS(2218), + [anon_sym_in] = ACTIONS(2218), + [anon_sym_loop] = ACTIONS(2218), + [anon_sym_make] = ACTIONS(2218), + [anon_sym_while] = ACTIONS(2218), + [anon_sym_do] = ACTIONS(2218), + [anon_sym_if] = ACTIONS(2218), + [anon_sym_else] = ACTIONS(2218), + [anon_sym_match] = ACTIONS(2218), + [anon_sym_RBRACE] = ACTIONS(2222), + [anon_sym_try] = ACTIONS(2218), + [anon_sym_catch] = ACTIONS(2218), + [anon_sym_return] = ACTIONS(2218), + [anon_sym_source] = ACTIONS(2218), + [anon_sym_source_DASHenv] = ACTIONS(2218), + [anon_sym_register] = ACTIONS(2218), + [anon_sym_hide] = ACTIONS(2218), + [anon_sym_hide_DASHenv] = ACTIONS(2218), + [anon_sym_overlay] = ACTIONS(2218), + [anon_sym_new] = ACTIONS(2218), + [anon_sym_as] = ACTIONS(2218), + [anon_sym_LPAREN2] = ACTIONS(2220), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2222), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2222), + [aux_sym__val_number_decimal_token1] = ACTIONS(2218), + [aux_sym__val_number_decimal_token2] = ACTIONS(2222), + [aux_sym__val_number_decimal_token3] = ACTIONS(2222), + [aux_sym__val_number_decimal_token4] = ACTIONS(2222), + [aux_sym__val_number_token1] = ACTIONS(2222), + [aux_sym__val_number_token2] = ACTIONS(2222), + [aux_sym__val_number_token3] = ACTIONS(2222), + [anon_sym_DQUOTE] = ACTIONS(2222), + [sym__str_single_quotes] = ACTIONS(2222), + [sym__str_back_ticks] = ACTIONS(2222), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2222), + [anon_sym_PLUS] = ACTIONS(2218), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1553), + [anon_sym_POUND] = ACTIONS(247), + }, [492] = { [sym_comment] = STATE(492), + [anon_sym_export] = ACTIONS(1631), + [anon_sym_alias] = ACTIONS(1631), + [anon_sym_let] = ACTIONS(1631), + [anon_sym_let_DASHenv] = ACTIONS(1631), + [anon_sym_mut] = ACTIONS(1631), + [anon_sym_const] = ACTIONS(1631), + [aux_sym_cmd_identifier_token1] = ACTIONS(1631), + [aux_sym_cmd_identifier_token2] = ACTIONS(1631), + [aux_sym_cmd_identifier_token3] = ACTIONS(1631), + [aux_sym_cmd_identifier_token4] = ACTIONS(1631), + [aux_sym_cmd_identifier_token5] = ACTIONS(1631), + [aux_sym_cmd_identifier_token6] = ACTIONS(1631), + [aux_sym_cmd_identifier_token7] = ACTIONS(1631), + [aux_sym_cmd_identifier_token8] = ACTIONS(1631), + [aux_sym_cmd_identifier_token9] = ACTIONS(1631), + [aux_sym_cmd_identifier_token10] = ACTIONS(1631), + [aux_sym_cmd_identifier_token11] = ACTIONS(1631), + [aux_sym_cmd_identifier_token12] = ACTIONS(1631), + [aux_sym_cmd_identifier_token13] = ACTIONS(1631), + [aux_sym_cmd_identifier_token14] = ACTIONS(1631), + [aux_sym_cmd_identifier_token15] = ACTIONS(1631), + [aux_sym_cmd_identifier_token16] = ACTIONS(1631), + [aux_sym_cmd_identifier_token17] = ACTIONS(1631), + [aux_sym_cmd_identifier_token18] = ACTIONS(1631), + [aux_sym_cmd_identifier_token19] = ACTIONS(1631), + [aux_sym_cmd_identifier_token20] = ACTIONS(1631), + [aux_sym_cmd_identifier_token21] = ACTIONS(1631), + [aux_sym_cmd_identifier_token22] = ACTIONS(1631), + [aux_sym_cmd_identifier_token23] = ACTIONS(1631), + [aux_sym_cmd_identifier_token24] = ACTIONS(1631), + [aux_sym_cmd_identifier_token25] = ACTIONS(1631), + [aux_sym_cmd_identifier_token26] = ACTIONS(1631), + [aux_sym_cmd_identifier_token27] = ACTIONS(1631), + [aux_sym_cmd_identifier_token28] = ACTIONS(1631), + [aux_sym_cmd_identifier_token29] = ACTIONS(1631), + [aux_sym_cmd_identifier_token30] = ACTIONS(1631), + [aux_sym_cmd_identifier_token31] = ACTIONS(1631), + [aux_sym_cmd_identifier_token32] = ACTIONS(1631), + [aux_sym_cmd_identifier_token33] = ACTIONS(1631), + [aux_sym_cmd_identifier_token34] = ACTIONS(1631), + [aux_sym_cmd_identifier_token35] = ACTIONS(1631), + [aux_sym_cmd_identifier_token36] = ACTIONS(1631), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [aux_sym_cmd_identifier_token38] = ACTIONS(1631), + [aux_sym_cmd_identifier_token39] = ACTIONS(1633), + [aux_sym_cmd_identifier_token40] = ACTIONS(1633), + [anon_sym_def] = ACTIONS(1631), + [anon_sym_export_DASHenv] = ACTIONS(1631), + [anon_sym_extern] = ACTIONS(1631), + [anon_sym_module] = ACTIONS(1631), + [anon_sym_use] = ACTIONS(1631), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_DOLLAR] = ACTIONS(1633), + [anon_sym_error] = ACTIONS(1631), + [anon_sym_list] = ACTIONS(1631), + [anon_sym_DASH] = ACTIONS(1631), + [anon_sym_break] = ACTIONS(1631), + [anon_sym_continue] = ACTIONS(1631), + [anon_sym_for] = ACTIONS(1631), + [anon_sym_in] = ACTIONS(1631), + [anon_sym_loop] = ACTIONS(1631), + [anon_sym_make] = ACTIONS(1631), + [anon_sym_while] = ACTIONS(1631), + [anon_sym_do] = ACTIONS(1631), + [anon_sym_if] = ACTIONS(1631), + [anon_sym_else] = ACTIONS(1631), + [anon_sym_match] = ACTIONS(1631), + [anon_sym_RBRACE] = ACTIONS(1633), + [anon_sym_try] = ACTIONS(1631), + [anon_sym_catch] = ACTIONS(1631), + [anon_sym_return] = ACTIONS(1631), + [anon_sym_source] = ACTIONS(1631), + [anon_sym_source_DASHenv] = ACTIONS(1631), + [anon_sym_register] = ACTIONS(1631), + [anon_sym_hide] = ACTIONS(1631), + [anon_sym_hide_DASHenv] = ACTIONS(1631), + [anon_sym_overlay] = ACTIONS(1631), + [anon_sym_new] = ACTIONS(1631), + [anon_sym_as] = ACTIONS(1631), + [anon_sym_LPAREN2] = ACTIONS(1633), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1633), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1633), + [aux_sym__val_number_decimal_token1] = ACTIONS(1631), + [aux_sym__val_number_decimal_token2] = ACTIONS(1633), + [aux_sym__val_number_decimal_token3] = ACTIONS(1633), + [aux_sym__val_number_decimal_token4] = ACTIONS(1633), + [aux_sym__val_number_token1] = ACTIONS(1633), + [aux_sym__val_number_token2] = ACTIONS(1633), + [aux_sym__val_number_token3] = ACTIONS(1633), + [anon_sym_DQUOTE] = ACTIONS(1633), + [sym__str_single_quotes] = ACTIONS(1633), + [sym__str_back_ticks] = ACTIONS(1633), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1631), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1631), + [anon_sym_POUND] = ACTIONS(247), + }, + [493] = { + [sym_comment] = STATE(493), + [anon_sym_export] = ACTIONS(1705), + [anon_sym_alias] = ACTIONS(1705), + [anon_sym_let] = ACTIONS(1705), + [anon_sym_let_DASHenv] = ACTIONS(1705), + [anon_sym_mut] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [aux_sym_cmd_identifier_token1] = ACTIONS(1705), + [aux_sym_cmd_identifier_token2] = ACTIONS(1705), + [aux_sym_cmd_identifier_token3] = ACTIONS(1705), + [aux_sym_cmd_identifier_token4] = ACTIONS(1705), + [aux_sym_cmd_identifier_token5] = ACTIONS(1705), + [aux_sym_cmd_identifier_token6] = ACTIONS(1705), + [aux_sym_cmd_identifier_token7] = ACTIONS(1705), + [aux_sym_cmd_identifier_token8] = ACTIONS(1705), + [aux_sym_cmd_identifier_token9] = ACTIONS(1705), + [aux_sym_cmd_identifier_token10] = ACTIONS(1705), + [aux_sym_cmd_identifier_token11] = ACTIONS(1705), + [aux_sym_cmd_identifier_token12] = ACTIONS(1705), + [aux_sym_cmd_identifier_token13] = ACTIONS(1705), + [aux_sym_cmd_identifier_token14] = ACTIONS(1705), + [aux_sym_cmd_identifier_token15] = ACTIONS(1705), + [aux_sym_cmd_identifier_token16] = ACTIONS(1705), + [aux_sym_cmd_identifier_token17] = ACTIONS(1705), + [aux_sym_cmd_identifier_token18] = ACTIONS(1705), + [aux_sym_cmd_identifier_token19] = ACTIONS(1705), + [aux_sym_cmd_identifier_token20] = ACTIONS(1705), + [aux_sym_cmd_identifier_token21] = ACTIONS(1705), + [aux_sym_cmd_identifier_token22] = ACTIONS(1705), + [aux_sym_cmd_identifier_token23] = ACTIONS(1705), + [aux_sym_cmd_identifier_token24] = ACTIONS(1705), + [aux_sym_cmd_identifier_token25] = ACTIONS(1705), + [aux_sym_cmd_identifier_token26] = ACTIONS(1705), + [aux_sym_cmd_identifier_token27] = ACTIONS(1705), + [aux_sym_cmd_identifier_token28] = ACTIONS(1705), + [aux_sym_cmd_identifier_token29] = ACTIONS(1705), + [aux_sym_cmd_identifier_token30] = ACTIONS(1705), + [aux_sym_cmd_identifier_token31] = ACTIONS(1705), + [aux_sym_cmd_identifier_token32] = ACTIONS(1705), + [aux_sym_cmd_identifier_token33] = ACTIONS(1705), + [aux_sym_cmd_identifier_token34] = ACTIONS(1705), + [aux_sym_cmd_identifier_token35] = ACTIONS(1705), + [aux_sym_cmd_identifier_token36] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1707), + [anon_sym_false] = ACTIONS(1707), + [anon_sym_null] = ACTIONS(1707), + [aux_sym_cmd_identifier_token38] = ACTIONS(1705), + [aux_sym_cmd_identifier_token39] = ACTIONS(1707), + [aux_sym_cmd_identifier_token40] = ACTIONS(1707), + [anon_sym_def] = ACTIONS(1705), + [anon_sym_export_DASHenv] = ACTIONS(1705), + [anon_sym_extern] = ACTIONS(1705), + [anon_sym_module] = ACTIONS(1705), + [anon_sym_use] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1707), + [anon_sym_error] = ACTIONS(1705), + [anon_sym_list] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_break] = ACTIONS(1705), + [anon_sym_continue] = ACTIONS(1705), + [anon_sym_for] = ACTIONS(1705), + [anon_sym_in] = ACTIONS(1705), + [anon_sym_loop] = ACTIONS(1705), + [anon_sym_make] = ACTIONS(1705), + [anon_sym_while] = ACTIONS(1705), + [anon_sym_do] = ACTIONS(1705), + [anon_sym_if] = ACTIONS(1705), + [anon_sym_else] = ACTIONS(1705), + [anon_sym_match] = ACTIONS(1705), + [anon_sym_RBRACE] = ACTIONS(1707), + [anon_sym_try] = ACTIONS(1705), + [anon_sym_catch] = ACTIONS(1705), + [anon_sym_return] = ACTIONS(1705), + [anon_sym_source] = ACTIONS(1705), + [anon_sym_source_DASHenv] = ACTIONS(1705), + [anon_sym_register] = ACTIONS(1705), + [anon_sym_hide] = ACTIONS(1705), + [anon_sym_hide_DASHenv] = ACTIONS(1705), + [anon_sym_overlay] = ACTIONS(1705), + [anon_sym_new] = ACTIONS(1705), + [anon_sym_as] = ACTIONS(1705), + [anon_sym_LPAREN2] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1707), + [aux_sym__val_number_decimal_token1] = ACTIONS(1705), + [aux_sym__val_number_decimal_token2] = ACTIONS(1707), + [aux_sym__val_number_decimal_token3] = ACTIONS(1707), + [aux_sym__val_number_decimal_token4] = ACTIONS(1707), + [aux_sym__val_number_token1] = ACTIONS(1707), + [aux_sym__val_number_token2] = ACTIONS(1707), + [aux_sym__val_number_token3] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1707), + [sym__str_single_quotes] = ACTIONS(1707), + [sym__str_back_ticks] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1705), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1705), + [anon_sym_POUND] = ACTIONS(247), + }, + [494] = { + [sym_comment] = STATE(494), + [anon_sym_export] = ACTIONS(1755), + [anon_sym_alias] = ACTIONS(1755), + [anon_sym_let] = ACTIONS(1755), + [anon_sym_let_DASHenv] = ACTIONS(1755), + [anon_sym_mut] = ACTIONS(1755), + [anon_sym_const] = ACTIONS(1755), + [aux_sym_cmd_identifier_token1] = ACTIONS(1755), + [aux_sym_cmd_identifier_token2] = ACTIONS(1755), + [aux_sym_cmd_identifier_token3] = ACTIONS(1755), + [aux_sym_cmd_identifier_token4] = ACTIONS(1755), + [aux_sym_cmd_identifier_token5] = ACTIONS(1755), + [aux_sym_cmd_identifier_token6] = ACTIONS(1755), + [aux_sym_cmd_identifier_token7] = ACTIONS(1755), + [aux_sym_cmd_identifier_token8] = ACTIONS(1755), + [aux_sym_cmd_identifier_token9] = ACTIONS(1755), + [aux_sym_cmd_identifier_token10] = ACTIONS(1755), + [aux_sym_cmd_identifier_token11] = ACTIONS(1755), + [aux_sym_cmd_identifier_token12] = ACTIONS(1755), + [aux_sym_cmd_identifier_token13] = ACTIONS(1755), + [aux_sym_cmd_identifier_token14] = ACTIONS(1755), + [aux_sym_cmd_identifier_token15] = ACTIONS(1755), + [aux_sym_cmd_identifier_token16] = ACTIONS(1755), + [aux_sym_cmd_identifier_token17] = ACTIONS(1755), + [aux_sym_cmd_identifier_token18] = ACTIONS(1755), + [aux_sym_cmd_identifier_token19] = ACTIONS(1755), + [aux_sym_cmd_identifier_token20] = ACTIONS(1755), + [aux_sym_cmd_identifier_token21] = ACTIONS(1755), + [aux_sym_cmd_identifier_token22] = ACTIONS(1755), + [aux_sym_cmd_identifier_token23] = ACTIONS(1755), + [aux_sym_cmd_identifier_token24] = ACTIONS(1755), + [aux_sym_cmd_identifier_token25] = ACTIONS(1755), + [aux_sym_cmd_identifier_token26] = ACTIONS(1755), + [aux_sym_cmd_identifier_token27] = ACTIONS(1755), + [aux_sym_cmd_identifier_token28] = ACTIONS(1755), + [aux_sym_cmd_identifier_token29] = ACTIONS(1755), + [aux_sym_cmd_identifier_token30] = ACTIONS(1755), + [aux_sym_cmd_identifier_token31] = ACTIONS(1755), + [aux_sym_cmd_identifier_token32] = ACTIONS(1755), + [aux_sym_cmd_identifier_token33] = ACTIONS(1755), + [aux_sym_cmd_identifier_token34] = ACTIONS(1755), + [aux_sym_cmd_identifier_token35] = ACTIONS(1755), + [aux_sym_cmd_identifier_token36] = ACTIONS(1755), + [anon_sym_true] = ACTIONS(1757), + [anon_sym_false] = ACTIONS(1757), + [anon_sym_null] = ACTIONS(1757), + [aux_sym_cmd_identifier_token38] = ACTIONS(1755), + [aux_sym_cmd_identifier_token39] = ACTIONS(1757), + [aux_sym_cmd_identifier_token40] = ACTIONS(1757), + [anon_sym_def] = ACTIONS(1755), + [anon_sym_export_DASHenv] = ACTIONS(1755), + [anon_sym_extern] = ACTIONS(1755), + [anon_sym_module] = ACTIONS(1755), + [anon_sym_use] = ACTIONS(1755), + [anon_sym_LPAREN] = ACTIONS(1755), + [anon_sym_DOLLAR] = ACTIONS(1757), + [anon_sym_error] = ACTIONS(1755), + [anon_sym_list] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_in] = ACTIONS(1755), + [anon_sym_loop] = ACTIONS(1755), + [anon_sym_make] = ACTIONS(1755), + [anon_sym_while] = ACTIONS(1755), + [anon_sym_do] = ACTIONS(1755), + [anon_sym_if] = ACTIONS(1755), + [anon_sym_else] = ACTIONS(1755), + [anon_sym_match] = ACTIONS(1755), + [anon_sym_RBRACE] = ACTIONS(1757), + [anon_sym_try] = ACTIONS(1755), + [anon_sym_catch] = ACTIONS(1755), + [anon_sym_return] = ACTIONS(1755), + [anon_sym_source] = ACTIONS(1755), + [anon_sym_source_DASHenv] = ACTIONS(1755), + [anon_sym_register] = ACTIONS(1755), + [anon_sym_hide] = ACTIONS(1755), + [anon_sym_hide_DASHenv] = ACTIONS(1755), + [anon_sym_overlay] = ACTIONS(1755), + [anon_sym_new] = ACTIONS(1755), + [anon_sym_as] = ACTIONS(1755), + [anon_sym_LPAREN2] = ACTIONS(1757), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1757), + [aux_sym__val_number_decimal_token1] = ACTIONS(1755), + [aux_sym__val_number_decimal_token2] = ACTIONS(1757), + [aux_sym__val_number_decimal_token3] = ACTIONS(1757), + [aux_sym__val_number_decimal_token4] = ACTIONS(1757), + [aux_sym__val_number_token1] = ACTIONS(1757), + [aux_sym__val_number_token2] = ACTIONS(1757), + [aux_sym__val_number_token3] = ACTIONS(1757), + [anon_sym_DQUOTE] = ACTIONS(1757), + [sym__str_single_quotes] = ACTIONS(1757), + [sym__str_back_ticks] = ACTIONS(1757), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), + [anon_sym_PLUS] = ACTIONS(1755), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), + [anon_sym_POUND] = ACTIONS(247), + }, + [495] = { + [sym_comment] = STATE(495), + [aux_sym__multiple_types_repeat1] = STATE(485), + [anon_sym_export] = ACTIONS(2337), + [anon_sym_alias] = ACTIONS(2337), + [anon_sym_let] = ACTIONS(2337), + [anon_sym_let_DASHenv] = ACTIONS(2337), + [anon_sym_mut] = ACTIONS(2337), + [anon_sym_const] = ACTIONS(2337), + [aux_sym_cmd_identifier_token1] = ACTIONS(2337), + [aux_sym_cmd_identifier_token2] = ACTIONS(2337), + [aux_sym_cmd_identifier_token3] = ACTIONS(2337), + [aux_sym_cmd_identifier_token4] = ACTIONS(2337), + [aux_sym_cmd_identifier_token5] = ACTIONS(2337), + [aux_sym_cmd_identifier_token6] = ACTIONS(2337), + [aux_sym_cmd_identifier_token7] = ACTIONS(2337), + [aux_sym_cmd_identifier_token8] = ACTIONS(2337), + [aux_sym_cmd_identifier_token9] = ACTIONS(2337), + [aux_sym_cmd_identifier_token10] = ACTIONS(2337), + [aux_sym_cmd_identifier_token11] = ACTIONS(2337), + [aux_sym_cmd_identifier_token12] = ACTIONS(2337), + [aux_sym_cmd_identifier_token13] = ACTIONS(2337), + [aux_sym_cmd_identifier_token14] = ACTIONS(2337), + [aux_sym_cmd_identifier_token15] = ACTIONS(2337), + [aux_sym_cmd_identifier_token16] = ACTIONS(2337), + [aux_sym_cmd_identifier_token17] = ACTIONS(2337), + [aux_sym_cmd_identifier_token18] = ACTIONS(2337), + [aux_sym_cmd_identifier_token19] = ACTIONS(2337), + [aux_sym_cmd_identifier_token20] = ACTIONS(2337), + [aux_sym_cmd_identifier_token21] = ACTIONS(2337), + [aux_sym_cmd_identifier_token22] = ACTIONS(2337), + [aux_sym_cmd_identifier_token23] = ACTIONS(2337), + [aux_sym_cmd_identifier_token24] = ACTIONS(2337), + [aux_sym_cmd_identifier_token25] = ACTIONS(2337), + [aux_sym_cmd_identifier_token26] = ACTIONS(2337), + [aux_sym_cmd_identifier_token27] = ACTIONS(2337), + [aux_sym_cmd_identifier_token28] = ACTIONS(2337), + [aux_sym_cmd_identifier_token29] = ACTIONS(2337), + [aux_sym_cmd_identifier_token30] = ACTIONS(2337), + [aux_sym_cmd_identifier_token31] = ACTIONS(2337), + [aux_sym_cmd_identifier_token32] = ACTIONS(2337), + [aux_sym_cmd_identifier_token33] = ACTIONS(2337), + [aux_sym_cmd_identifier_token34] = ACTIONS(2337), + [aux_sym_cmd_identifier_token35] = ACTIONS(2337), + [aux_sym_cmd_identifier_token36] = ACTIONS(2337), + [anon_sym_true] = ACTIONS(2337), + [anon_sym_false] = ACTIONS(2337), + [anon_sym_null] = ACTIONS(2337), + [aux_sym_cmd_identifier_token38] = ACTIONS(2337), + [aux_sym_cmd_identifier_token39] = ACTIONS(2337), + [aux_sym_cmd_identifier_token40] = ACTIONS(2337), + [anon_sym_def] = ACTIONS(2337), + [anon_sym_export_DASHenv] = ACTIONS(2337), + [anon_sym_extern] = ACTIONS(2337), + [anon_sym_module] = ACTIONS(2337), + [anon_sym_use] = ACTIONS(2337), + [anon_sym_LPAREN] = ACTIONS(2337), + [anon_sym_DOLLAR] = ACTIONS(2337), + [anon_sym_error] = ACTIONS(2337), + [anon_sym_list] = ACTIONS(2337), + [anon_sym_DASH] = ACTIONS(2337), + [anon_sym_break] = ACTIONS(2337), + [anon_sym_continue] = ACTIONS(2337), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_in] = ACTIONS(2337), + [anon_sym_loop] = ACTIONS(2337), + [anon_sym_make] = ACTIONS(2337), + [anon_sym_while] = ACTIONS(2337), + [anon_sym_do] = ACTIONS(2337), + [anon_sym_if] = ACTIONS(2337), + [anon_sym_else] = ACTIONS(2337), + [anon_sym_match] = ACTIONS(2337), + [anon_sym_RBRACE] = ACTIONS(2339), + [anon_sym_try] = ACTIONS(2337), + [anon_sym_catch] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2337), + [anon_sym_source] = ACTIONS(2337), + [anon_sym_source_DASHenv] = ACTIONS(2337), + [anon_sym_register] = ACTIONS(2337), + [anon_sym_hide] = ACTIONS(2337), + [anon_sym_hide_DASHenv] = ACTIONS(2337), + [anon_sym_overlay] = ACTIONS(2337), + [anon_sym_new] = ACTIONS(2337), + [anon_sym_as] = ACTIONS(2337), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2337), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2337), + [aux_sym__val_number_decimal_token1] = ACTIONS(2337), + [aux_sym__val_number_decimal_token2] = ACTIONS(2337), + [aux_sym__val_number_decimal_token3] = ACTIONS(2337), + [aux_sym__val_number_decimal_token4] = ACTIONS(2337), + [aux_sym__val_number_token1] = ACTIONS(2337), + [aux_sym__val_number_token2] = ACTIONS(2337), + [aux_sym__val_number_token3] = ACTIONS(2337), + [anon_sym_DQUOTE] = ACTIONS(2337), + [sym__str_single_quotes] = ACTIONS(2337), + [sym__str_back_ticks] = ACTIONS(2337), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2337), + [sym__entry_separator] = ACTIONS(2317), + [anon_sym_PLUS] = ACTIONS(2337), + [anon_sym_POUND] = ACTIONS(3), + }, + [496] = { + [sym_comment] = STATE(496), + [anon_sym_export] = ACTIONS(1631), + [anon_sym_alias] = ACTIONS(1631), + [anon_sym_let] = ACTIONS(1631), + [anon_sym_let_DASHenv] = ACTIONS(1631), + [anon_sym_mut] = ACTIONS(1631), + [anon_sym_const] = ACTIONS(1631), + [aux_sym_cmd_identifier_token1] = ACTIONS(1631), + [aux_sym_cmd_identifier_token2] = ACTIONS(1631), + [aux_sym_cmd_identifier_token3] = ACTIONS(1631), + [aux_sym_cmd_identifier_token4] = ACTIONS(1631), + [aux_sym_cmd_identifier_token5] = ACTIONS(1631), + [aux_sym_cmd_identifier_token6] = ACTIONS(1631), + [aux_sym_cmd_identifier_token7] = ACTIONS(1631), + [aux_sym_cmd_identifier_token8] = ACTIONS(1631), + [aux_sym_cmd_identifier_token9] = ACTIONS(1631), + [aux_sym_cmd_identifier_token10] = ACTIONS(1631), + [aux_sym_cmd_identifier_token11] = ACTIONS(1631), + [aux_sym_cmd_identifier_token12] = ACTIONS(1631), + [aux_sym_cmd_identifier_token13] = ACTIONS(1631), + [aux_sym_cmd_identifier_token14] = ACTIONS(1631), + [aux_sym_cmd_identifier_token15] = ACTIONS(1631), + [aux_sym_cmd_identifier_token16] = ACTIONS(1631), + [aux_sym_cmd_identifier_token17] = ACTIONS(1631), + [aux_sym_cmd_identifier_token18] = ACTIONS(1631), + [aux_sym_cmd_identifier_token19] = ACTIONS(1631), + [aux_sym_cmd_identifier_token20] = ACTIONS(1631), + [aux_sym_cmd_identifier_token21] = ACTIONS(1631), + [aux_sym_cmd_identifier_token22] = ACTIONS(1631), + [aux_sym_cmd_identifier_token23] = ACTIONS(1631), + [aux_sym_cmd_identifier_token24] = ACTIONS(1631), + [aux_sym_cmd_identifier_token25] = ACTIONS(1631), + [aux_sym_cmd_identifier_token26] = ACTIONS(1631), + [aux_sym_cmd_identifier_token27] = ACTIONS(1631), + [aux_sym_cmd_identifier_token28] = ACTIONS(1631), + [aux_sym_cmd_identifier_token29] = ACTIONS(1631), + [aux_sym_cmd_identifier_token30] = ACTIONS(1631), + [aux_sym_cmd_identifier_token31] = ACTIONS(1631), + [aux_sym_cmd_identifier_token32] = ACTIONS(1631), + [aux_sym_cmd_identifier_token33] = ACTIONS(1631), + [aux_sym_cmd_identifier_token34] = ACTIONS(1631), + [aux_sym_cmd_identifier_token35] = ACTIONS(1631), + [aux_sym_cmd_identifier_token36] = ACTIONS(1631), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [aux_sym_cmd_identifier_token38] = ACTIONS(1631), + [aux_sym_cmd_identifier_token39] = ACTIONS(1633), + [aux_sym_cmd_identifier_token40] = ACTIONS(1633), + [anon_sym_def] = ACTIONS(1631), + [anon_sym_export_DASHenv] = ACTIONS(1631), + [anon_sym_extern] = ACTIONS(1631), + [anon_sym_module] = ACTIONS(1631), + [anon_sym_use] = ACTIONS(1631), + [anon_sym_LPAREN] = ACTIONS(1633), + [anon_sym_DOLLAR] = ACTIONS(1633), + [anon_sym_error] = ACTIONS(1631), + [anon_sym_list] = ACTIONS(1631), + [anon_sym_DASH] = ACTIONS(1631), + [anon_sym_break] = ACTIONS(1631), + [anon_sym_continue] = ACTIONS(1631), + [anon_sym_for] = ACTIONS(1631), + [anon_sym_in] = ACTIONS(1631), + [anon_sym_loop] = ACTIONS(1631), + [anon_sym_make] = ACTIONS(1631), + [anon_sym_while] = ACTIONS(1631), + [anon_sym_do] = ACTIONS(1631), + [anon_sym_if] = ACTIONS(1631), + [anon_sym_else] = ACTIONS(1631), + [anon_sym_match] = ACTIONS(1631), + [anon_sym_RBRACE] = ACTIONS(1633), + [anon_sym_try] = ACTIONS(1631), + [anon_sym_catch] = ACTIONS(1631), + [anon_sym_return] = ACTIONS(1631), + [anon_sym_source] = ACTIONS(1631), + [anon_sym_source_DASHenv] = ACTIONS(1631), + [anon_sym_register] = ACTIONS(1631), + [anon_sym_hide] = ACTIONS(1631), + [anon_sym_hide_DASHenv] = ACTIONS(1631), + [anon_sym_overlay] = ACTIONS(1631), + [anon_sym_new] = ACTIONS(1631), + [anon_sym_as] = ACTIONS(1631), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1633), + [aux_sym__immediate_decimal_token1] = ACTIONS(2341), + [aux_sym__immediate_decimal_token2] = ACTIONS(2343), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1633), + [aux_sym__val_number_decimal_token1] = ACTIONS(1631), + [aux_sym__val_number_decimal_token2] = ACTIONS(1633), + [aux_sym__val_number_decimal_token3] = ACTIONS(1633), + [aux_sym__val_number_decimal_token4] = ACTIONS(1633), + [aux_sym__val_number_token1] = ACTIONS(1633), + [aux_sym__val_number_token2] = ACTIONS(1633), + [aux_sym__val_number_token3] = ACTIONS(1633), + [anon_sym_DQUOTE] = ACTIONS(1633), + [sym__str_single_quotes] = ACTIONS(1633), + [sym__str_back_ticks] = ACTIONS(1633), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1631), + [anon_sym_POUND] = ACTIONS(247), + }, + [497] = { + [sym_comment] = STATE(497), + [anon_sym_export] = ACTIONS(2224), + [anon_sym_alias] = ACTIONS(2224), + [anon_sym_let] = ACTIONS(2224), + [anon_sym_let_DASHenv] = ACTIONS(2224), + [anon_sym_mut] = ACTIONS(2224), + [anon_sym_const] = ACTIONS(2224), + [aux_sym_cmd_identifier_token1] = ACTIONS(2224), + [aux_sym_cmd_identifier_token2] = ACTIONS(2224), + [aux_sym_cmd_identifier_token3] = ACTIONS(2224), + [aux_sym_cmd_identifier_token4] = ACTIONS(2224), + [aux_sym_cmd_identifier_token5] = ACTIONS(2224), + [aux_sym_cmd_identifier_token6] = ACTIONS(2224), + [aux_sym_cmd_identifier_token7] = ACTIONS(2224), + [aux_sym_cmd_identifier_token8] = ACTIONS(2224), + [aux_sym_cmd_identifier_token9] = ACTIONS(2224), + [aux_sym_cmd_identifier_token10] = ACTIONS(2224), + [aux_sym_cmd_identifier_token11] = ACTIONS(2224), + [aux_sym_cmd_identifier_token12] = ACTIONS(2224), + [aux_sym_cmd_identifier_token13] = ACTIONS(2224), + [aux_sym_cmd_identifier_token14] = ACTIONS(2224), + [aux_sym_cmd_identifier_token15] = ACTIONS(2224), + [aux_sym_cmd_identifier_token16] = ACTIONS(2224), + [aux_sym_cmd_identifier_token17] = ACTIONS(2224), + [aux_sym_cmd_identifier_token18] = ACTIONS(2224), + [aux_sym_cmd_identifier_token19] = ACTIONS(2224), + [aux_sym_cmd_identifier_token20] = ACTIONS(2224), + [aux_sym_cmd_identifier_token21] = ACTIONS(2224), + [aux_sym_cmd_identifier_token22] = ACTIONS(2224), + [aux_sym_cmd_identifier_token23] = ACTIONS(2224), + [aux_sym_cmd_identifier_token24] = ACTIONS(2224), + [aux_sym_cmd_identifier_token25] = ACTIONS(2224), + [aux_sym_cmd_identifier_token26] = ACTIONS(2224), + [aux_sym_cmd_identifier_token27] = ACTIONS(2224), + [aux_sym_cmd_identifier_token28] = ACTIONS(2224), + [aux_sym_cmd_identifier_token29] = ACTIONS(2224), + [aux_sym_cmd_identifier_token30] = ACTIONS(2224), + [aux_sym_cmd_identifier_token31] = ACTIONS(2224), + [aux_sym_cmd_identifier_token32] = ACTIONS(2224), + [aux_sym_cmd_identifier_token33] = ACTIONS(2224), + [aux_sym_cmd_identifier_token34] = ACTIONS(2224), + [aux_sym_cmd_identifier_token35] = ACTIONS(2224), + [aux_sym_cmd_identifier_token36] = ACTIONS(2224), + [anon_sym_true] = ACTIONS(2228), + [anon_sym_false] = ACTIONS(2228), + [anon_sym_null] = ACTIONS(2228), + [aux_sym_cmd_identifier_token38] = ACTIONS(2224), + [aux_sym_cmd_identifier_token39] = ACTIONS(2228), + [aux_sym_cmd_identifier_token40] = ACTIONS(2228), + [anon_sym_def] = ACTIONS(2224), + [anon_sym_export_DASHenv] = ACTIONS(2224), + [anon_sym_extern] = ACTIONS(2224), + [anon_sym_module] = ACTIONS(2224), + [anon_sym_use] = ACTIONS(2224), + [anon_sym_LPAREN] = ACTIONS(2224), + [anon_sym_DOLLAR] = ACTIONS(2228), + [anon_sym_error] = ACTIONS(2224), + [anon_sym_list] = ACTIONS(2224), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_break] = ACTIONS(2224), + [anon_sym_continue] = ACTIONS(2224), + [anon_sym_for] = ACTIONS(2224), + [anon_sym_in] = ACTIONS(2224), + [anon_sym_loop] = ACTIONS(2224), + [anon_sym_make] = ACTIONS(2224), + [anon_sym_while] = ACTIONS(2224), + [anon_sym_do] = ACTIONS(2224), + [anon_sym_if] = ACTIONS(2224), + [anon_sym_else] = ACTIONS(2224), + [anon_sym_match] = ACTIONS(2224), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_try] = ACTIONS(2224), + [anon_sym_catch] = ACTIONS(2224), + [anon_sym_return] = ACTIONS(2224), + [anon_sym_source] = ACTIONS(2224), + [anon_sym_source_DASHenv] = ACTIONS(2224), + [anon_sym_register] = ACTIONS(2224), + [anon_sym_hide] = ACTIONS(2224), + [anon_sym_hide_DASHenv] = ACTIONS(2224), + [anon_sym_overlay] = ACTIONS(2224), + [anon_sym_new] = ACTIONS(2224), + [anon_sym_as] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2226), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2228), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2228), + [aux_sym__val_number_decimal_token1] = ACTIONS(2224), + [aux_sym__val_number_decimal_token2] = ACTIONS(2228), + [aux_sym__val_number_decimal_token3] = ACTIONS(2228), + [aux_sym__val_number_decimal_token4] = ACTIONS(2228), + [aux_sym__val_number_token1] = ACTIONS(2228), + [aux_sym__val_number_token2] = ACTIONS(2228), + [aux_sym__val_number_token3] = ACTIONS(2228), + [anon_sym_DQUOTE] = ACTIONS(2228), + [sym__str_single_quotes] = ACTIONS(2228), + [sym__str_back_ticks] = ACTIONS(2228), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2228), + [anon_sym_PLUS] = ACTIONS(2224), + [aux_sym__unquoted_in_record_token2] = ACTIONS(2230), + [anon_sym_POUND] = ACTIONS(247), + }, + [498] = { + [sym_comment] = STATE(498), + [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), + [aux_sym_cmd_identifier_token1] = ACTIONS(1921), + [aux_sym_cmd_identifier_token2] = ACTIONS(1921), + [aux_sym_cmd_identifier_token3] = ACTIONS(1921), + [aux_sym_cmd_identifier_token4] = ACTIONS(1921), + [aux_sym_cmd_identifier_token5] = ACTIONS(1921), + [aux_sym_cmd_identifier_token6] = ACTIONS(1921), + [aux_sym_cmd_identifier_token7] = ACTIONS(1921), + [aux_sym_cmd_identifier_token8] = ACTIONS(1921), + [aux_sym_cmd_identifier_token9] = ACTIONS(1921), + [aux_sym_cmd_identifier_token10] = ACTIONS(1921), + [aux_sym_cmd_identifier_token11] = ACTIONS(1921), + [aux_sym_cmd_identifier_token12] = ACTIONS(1921), + [aux_sym_cmd_identifier_token13] = ACTIONS(1921), + [aux_sym_cmd_identifier_token14] = ACTIONS(1921), + [aux_sym_cmd_identifier_token15] = ACTIONS(1921), + [aux_sym_cmd_identifier_token16] = ACTIONS(1921), + [aux_sym_cmd_identifier_token17] = ACTIONS(1921), + [aux_sym_cmd_identifier_token18] = ACTIONS(1921), + [aux_sym_cmd_identifier_token19] = ACTIONS(1921), + [aux_sym_cmd_identifier_token20] = ACTIONS(1921), + [aux_sym_cmd_identifier_token21] = ACTIONS(1921), + [aux_sym_cmd_identifier_token22] = ACTIONS(1921), + [aux_sym_cmd_identifier_token23] = ACTIONS(1921), + [aux_sym_cmd_identifier_token24] = ACTIONS(1921), + [aux_sym_cmd_identifier_token25] = ACTIONS(1921), + [aux_sym_cmd_identifier_token26] = ACTIONS(1921), + [aux_sym_cmd_identifier_token27] = ACTIONS(1921), + [aux_sym_cmd_identifier_token28] = ACTIONS(1921), + [aux_sym_cmd_identifier_token29] = ACTIONS(1921), + [aux_sym_cmd_identifier_token30] = ACTIONS(1921), + [aux_sym_cmd_identifier_token31] = ACTIONS(1921), + [aux_sym_cmd_identifier_token32] = ACTIONS(1921), + [aux_sym_cmd_identifier_token33] = ACTIONS(1921), + [aux_sym_cmd_identifier_token34] = ACTIONS(1921), + [aux_sym_cmd_identifier_token35] = ACTIONS(1921), + [aux_sym_cmd_identifier_token36] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1921), + [anon_sym_false] = ACTIONS(1921), + [anon_sym_null] = ACTIONS(1921), + [aux_sym_cmd_identifier_token38] = ACTIONS(1921), + [aux_sym_cmd_identifier_token39] = ACTIONS(1921), + [aux_sym_cmd_identifier_token40] = ACTIONS(1921), + [anon_sym_def] = 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_RBRACK] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1921), + [anon_sym_DOLLAR] = ACTIONS(1921), + [anon_sym_error] = ACTIONS(1921), + [anon_sym_list] = ACTIONS(1921), + [anon_sym_DASH] = ACTIONS(1921), + [anon_sym_break] = ACTIONS(1921), + [anon_sym_continue] = ACTIONS(1921), + [anon_sym_for] = ACTIONS(1921), + [anon_sym_in] = ACTIONS(1921), + [anon_sym_loop] = ACTIONS(1921), + [anon_sym_make] = ACTIONS(1921), + [anon_sym_while] = ACTIONS(1921), + [anon_sym_do] = ACTIONS(1921), + [anon_sym_if] = ACTIONS(1921), + [anon_sym_else] = ACTIONS(1921), + [anon_sym_match] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(1921), + [anon_sym_try] = ACTIONS(1921), + [anon_sym_catch] = 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_new] = ACTIONS(1921), + [anon_sym_as] = ACTIONS(1921), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1921), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1921), + [aux_sym__val_number_decimal_token1] = ACTIONS(1921), + [aux_sym__val_number_decimal_token2] = ACTIONS(1921), + [aux_sym__val_number_decimal_token3] = ACTIONS(1921), + [aux_sym__val_number_decimal_token4] = ACTIONS(1921), + [aux_sym__val_number_token1] = ACTIONS(1921), + [aux_sym__val_number_token2] = ACTIONS(1921), + [aux_sym__val_number_token3] = ACTIONS(1921), + [anon_sym_DQUOTE] = ACTIONS(1921), + [sym__str_single_quotes] = ACTIONS(1921), + [sym__str_back_ticks] = ACTIONS(1921), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1921), + [sym__entry_separator] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(3), + }, + [499] = { + [sym_comment] = STATE(499), + [anon_sym_export] = ACTIONS(2345), + [anon_sym_alias] = ACTIONS(2345), + [anon_sym_let] = ACTIONS(2345), + [anon_sym_let_DASHenv] = ACTIONS(2345), + [anon_sym_mut] = ACTIONS(2345), + [anon_sym_const] = ACTIONS(2345), + [aux_sym_cmd_identifier_token1] = ACTIONS(2345), + [aux_sym_cmd_identifier_token2] = ACTIONS(2345), + [aux_sym_cmd_identifier_token3] = ACTIONS(2345), + [aux_sym_cmd_identifier_token4] = ACTIONS(2345), + [aux_sym_cmd_identifier_token5] = ACTIONS(2345), + [aux_sym_cmd_identifier_token6] = ACTIONS(2345), + [aux_sym_cmd_identifier_token7] = ACTIONS(2345), + [aux_sym_cmd_identifier_token8] = ACTIONS(2345), + [aux_sym_cmd_identifier_token9] = ACTIONS(2345), + [aux_sym_cmd_identifier_token10] = ACTIONS(2345), + [aux_sym_cmd_identifier_token11] = ACTIONS(2345), + [aux_sym_cmd_identifier_token12] = ACTIONS(2345), + [aux_sym_cmd_identifier_token13] = ACTIONS(2345), + [aux_sym_cmd_identifier_token14] = ACTIONS(2345), + [aux_sym_cmd_identifier_token15] = ACTIONS(2345), + [aux_sym_cmd_identifier_token16] = ACTIONS(2345), + [aux_sym_cmd_identifier_token17] = ACTIONS(2345), + [aux_sym_cmd_identifier_token18] = ACTIONS(2345), + [aux_sym_cmd_identifier_token19] = ACTIONS(2345), + [aux_sym_cmd_identifier_token20] = ACTIONS(2345), + [aux_sym_cmd_identifier_token21] = ACTIONS(2345), + [aux_sym_cmd_identifier_token22] = ACTIONS(2345), + [aux_sym_cmd_identifier_token23] = ACTIONS(2345), + [aux_sym_cmd_identifier_token24] = ACTIONS(2345), + [aux_sym_cmd_identifier_token25] = ACTIONS(2345), + [aux_sym_cmd_identifier_token26] = ACTIONS(2345), + [aux_sym_cmd_identifier_token27] = ACTIONS(2345), + [aux_sym_cmd_identifier_token28] = ACTIONS(2345), + [aux_sym_cmd_identifier_token29] = ACTIONS(2345), + [aux_sym_cmd_identifier_token30] = ACTIONS(2345), + [aux_sym_cmd_identifier_token31] = ACTIONS(2345), + [aux_sym_cmd_identifier_token32] = ACTIONS(2345), + [aux_sym_cmd_identifier_token33] = ACTIONS(2345), + [aux_sym_cmd_identifier_token34] = ACTIONS(2345), + [aux_sym_cmd_identifier_token35] = ACTIONS(2345), + [aux_sym_cmd_identifier_token36] = ACTIONS(2345), + [anon_sym_true] = ACTIONS(2345), + [anon_sym_false] = ACTIONS(2345), + [anon_sym_null] = ACTIONS(2345), + [aux_sym_cmd_identifier_token38] = ACTIONS(2345), + [aux_sym_cmd_identifier_token39] = ACTIONS(2345), + [aux_sym_cmd_identifier_token40] = ACTIONS(2345), + [anon_sym_def] = ACTIONS(2345), + [anon_sym_export_DASHenv] = ACTIONS(2345), + [anon_sym_extern] = ACTIONS(2345), + [anon_sym_module] = ACTIONS(2345), + [anon_sym_use] = ACTIONS(2345), + [anon_sym_RBRACK] = ACTIONS(2345), + [anon_sym_LPAREN] = ACTIONS(2345), + [anon_sym_DOLLAR] = ACTIONS(2345), + [anon_sym_error] = ACTIONS(2345), + [anon_sym_list] = ACTIONS(2345), + [anon_sym_DASH] = ACTIONS(2345), + [anon_sym_break] = ACTIONS(2345), + [anon_sym_continue] = ACTIONS(2345), + [anon_sym_for] = ACTIONS(2345), + [anon_sym_in] = ACTIONS(2345), + [anon_sym_loop] = ACTIONS(2345), + [anon_sym_make] = ACTIONS(2345), + [anon_sym_while] = ACTIONS(2345), + [anon_sym_do] = ACTIONS(2345), + [anon_sym_if] = ACTIONS(2345), + [anon_sym_else] = ACTIONS(2345), + [anon_sym_match] = ACTIONS(2345), + [anon_sym_RBRACE] = ACTIONS(2345), + [anon_sym_try] = ACTIONS(2345), + [anon_sym_catch] = ACTIONS(2345), + [anon_sym_return] = ACTIONS(2345), + [anon_sym_source] = ACTIONS(2345), + [anon_sym_source_DASHenv] = ACTIONS(2345), + [anon_sym_register] = ACTIONS(2345), + [anon_sym_hide] = ACTIONS(2345), + [anon_sym_hide_DASHenv] = ACTIONS(2345), + [anon_sym_overlay] = ACTIONS(2345), + [anon_sym_new] = ACTIONS(2345), + [anon_sym_as] = ACTIONS(2345), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2345), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2345), + [aux_sym__val_number_decimal_token1] = ACTIONS(2345), + [aux_sym__val_number_decimal_token2] = ACTIONS(2345), + [aux_sym__val_number_decimal_token3] = ACTIONS(2345), + [aux_sym__val_number_decimal_token4] = ACTIONS(2345), + [aux_sym__val_number_token1] = ACTIONS(2345), + [aux_sym__val_number_token2] = ACTIONS(2345), + [aux_sym__val_number_token3] = ACTIONS(2345), + [anon_sym_DQUOTE] = ACTIONS(2345), + [sym__str_single_quotes] = ACTIONS(2345), + [sym__str_back_ticks] = ACTIONS(2345), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2345), + [sym__entry_separator] = ACTIONS(2347), + [anon_sym_PLUS] = ACTIONS(2345), + [anon_sym_POUND] = ACTIONS(3), + }, + [500] = { + [sym_comment] = STATE(500), + [anon_sym_export] = ACTIONS(1643), + [anon_sym_alias] = ACTIONS(1643), + [anon_sym_let] = ACTIONS(1643), + [anon_sym_let_DASHenv] = ACTIONS(1643), + [anon_sym_mut] = ACTIONS(1643), + [anon_sym_const] = ACTIONS(1643), + [aux_sym_cmd_identifier_token1] = ACTIONS(1643), + [aux_sym_cmd_identifier_token2] = ACTIONS(1643), + [aux_sym_cmd_identifier_token3] = ACTIONS(1643), + [aux_sym_cmd_identifier_token4] = ACTIONS(1643), + [aux_sym_cmd_identifier_token5] = ACTIONS(1643), + [aux_sym_cmd_identifier_token6] = ACTIONS(1643), + [aux_sym_cmd_identifier_token7] = ACTIONS(1643), + [aux_sym_cmd_identifier_token8] = ACTIONS(1643), + [aux_sym_cmd_identifier_token9] = ACTIONS(1643), + [aux_sym_cmd_identifier_token10] = ACTIONS(1643), + [aux_sym_cmd_identifier_token11] = ACTIONS(1643), + [aux_sym_cmd_identifier_token12] = ACTIONS(1643), + [aux_sym_cmd_identifier_token13] = ACTIONS(1643), + [aux_sym_cmd_identifier_token14] = ACTIONS(1643), + [aux_sym_cmd_identifier_token15] = ACTIONS(1643), + [aux_sym_cmd_identifier_token16] = ACTIONS(1643), + [aux_sym_cmd_identifier_token17] = ACTIONS(1643), + [aux_sym_cmd_identifier_token18] = ACTIONS(1643), + [aux_sym_cmd_identifier_token19] = ACTIONS(1643), + [aux_sym_cmd_identifier_token20] = ACTIONS(1643), + [aux_sym_cmd_identifier_token21] = ACTIONS(1643), + [aux_sym_cmd_identifier_token22] = ACTIONS(1643), + [aux_sym_cmd_identifier_token23] = ACTIONS(1643), + [aux_sym_cmd_identifier_token24] = ACTIONS(1643), + [aux_sym_cmd_identifier_token25] = ACTIONS(1643), + [aux_sym_cmd_identifier_token26] = ACTIONS(1643), + [aux_sym_cmd_identifier_token27] = ACTIONS(1643), + [aux_sym_cmd_identifier_token28] = ACTIONS(1643), + [aux_sym_cmd_identifier_token29] = ACTIONS(1643), + [aux_sym_cmd_identifier_token30] = ACTIONS(1643), + [aux_sym_cmd_identifier_token31] = ACTIONS(1643), + [aux_sym_cmd_identifier_token32] = ACTIONS(1643), + [aux_sym_cmd_identifier_token33] = ACTIONS(1643), + [aux_sym_cmd_identifier_token34] = ACTIONS(1643), + [aux_sym_cmd_identifier_token35] = ACTIONS(1643), + [aux_sym_cmd_identifier_token36] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_null] = ACTIONS(1643), + [aux_sym_cmd_identifier_token38] = ACTIONS(1643), + [aux_sym_cmd_identifier_token39] = ACTIONS(1643), + [aux_sym_cmd_identifier_token40] = ACTIONS(1643), + [anon_sym_def] = ACTIONS(1643), + [anon_sym_export_DASHenv] = ACTIONS(1643), + [anon_sym_extern] = ACTIONS(1643), + [anon_sym_module] = ACTIONS(1643), + [anon_sym_use] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(1643), + [anon_sym_error] = ACTIONS(1643), + [anon_sym_list] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_break] = ACTIONS(1643), + [anon_sym_continue] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_loop] = ACTIONS(1643), + [anon_sym_make] = ACTIONS(1643), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_do] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_else] = ACTIONS(1643), + [anon_sym_match] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), + [anon_sym_try] = ACTIONS(1643), + [anon_sym_catch] = ACTIONS(1643), + [anon_sym_return] = ACTIONS(1643), + [anon_sym_source] = ACTIONS(1643), + [anon_sym_source_DASHenv] = ACTIONS(1643), + [anon_sym_register] = ACTIONS(1643), + [anon_sym_hide] = ACTIONS(1643), + [anon_sym_hide_DASHenv] = ACTIONS(1643), + [anon_sym_overlay] = ACTIONS(1643), + [anon_sym_new] = ACTIONS(1643), + [anon_sym_as] = ACTIONS(1643), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1643), + [aux_sym__immediate_decimal_token2] = ACTIONS(2291), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1643), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1643), + [aux_sym__val_number_decimal_token3] = ACTIONS(1643), + [aux_sym__val_number_decimal_token4] = ACTIONS(1643), + [aux_sym__val_number_token1] = ACTIONS(1643), + [aux_sym__val_number_token2] = ACTIONS(1643), + [aux_sym__val_number_token3] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1643), + [sym__str_single_quotes] = ACTIONS(1643), + [sym__str_back_ticks] = ACTIONS(1643), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1643), + [sym__entry_separator] = ACTIONS(1645), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_POUND] = ACTIONS(3), + }, + [501] = { + [sym_comment] = STATE(501), + [anon_sym_export] = ACTIONS(1705), + [anon_sym_alias] = ACTIONS(1705), + [anon_sym_let] = ACTIONS(1705), + [anon_sym_let_DASHenv] = ACTIONS(1705), + [anon_sym_mut] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [aux_sym_cmd_identifier_token1] = ACTIONS(1705), + [aux_sym_cmd_identifier_token2] = ACTIONS(1705), + [aux_sym_cmd_identifier_token3] = ACTIONS(1705), + [aux_sym_cmd_identifier_token4] = ACTIONS(1705), + [aux_sym_cmd_identifier_token5] = ACTIONS(1705), + [aux_sym_cmd_identifier_token6] = ACTIONS(1705), + [aux_sym_cmd_identifier_token7] = ACTIONS(1705), + [aux_sym_cmd_identifier_token8] = ACTIONS(1705), + [aux_sym_cmd_identifier_token9] = ACTIONS(1705), + [aux_sym_cmd_identifier_token10] = ACTIONS(1705), + [aux_sym_cmd_identifier_token11] = ACTIONS(1705), + [aux_sym_cmd_identifier_token12] = ACTIONS(1705), + [aux_sym_cmd_identifier_token13] = ACTIONS(1705), + [aux_sym_cmd_identifier_token14] = ACTIONS(1705), + [aux_sym_cmd_identifier_token15] = ACTIONS(1705), + [aux_sym_cmd_identifier_token16] = ACTIONS(1705), + [aux_sym_cmd_identifier_token17] = ACTIONS(1705), + [aux_sym_cmd_identifier_token18] = ACTIONS(1705), + [aux_sym_cmd_identifier_token19] = ACTIONS(1705), + [aux_sym_cmd_identifier_token20] = ACTIONS(1705), + [aux_sym_cmd_identifier_token21] = ACTIONS(1705), + [aux_sym_cmd_identifier_token22] = ACTIONS(1705), + [aux_sym_cmd_identifier_token23] = ACTIONS(1705), + [aux_sym_cmd_identifier_token24] = ACTIONS(1705), + [aux_sym_cmd_identifier_token25] = ACTIONS(1705), + [aux_sym_cmd_identifier_token26] = ACTIONS(1705), + [aux_sym_cmd_identifier_token27] = ACTIONS(1705), + [aux_sym_cmd_identifier_token28] = ACTIONS(1705), + [aux_sym_cmd_identifier_token29] = ACTIONS(1705), + [aux_sym_cmd_identifier_token30] = ACTIONS(1705), + [aux_sym_cmd_identifier_token31] = ACTIONS(1705), + [aux_sym_cmd_identifier_token32] = ACTIONS(1705), + [aux_sym_cmd_identifier_token33] = ACTIONS(1705), + [aux_sym_cmd_identifier_token34] = ACTIONS(1705), + [aux_sym_cmd_identifier_token35] = ACTIONS(1705), + [aux_sym_cmd_identifier_token36] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1705), + [anon_sym_false] = ACTIONS(1705), + [anon_sym_null] = ACTIONS(1705), + [aux_sym_cmd_identifier_token38] = ACTIONS(1705), + [aux_sym_cmd_identifier_token39] = ACTIONS(1705), + [aux_sym_cmd_identifier_token40] = ACTIONS(1705), + [anon_sym_def] = ACTIONS(1705), + [anon_sym_export_DASHenv] = ACTIONS(1705), + [anon_sym_extern] = ACTIONS(1705), + [anon_sym_module] = ACTIONS(1705), + [anon_sym_use] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1705), + [anon_sym_error] = ACTIONS(1705), + [anon_sym_list] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_break] = ACTIONS(1705), + [anon_sym_continue] = ACTIONS(1705), + [anon_sym_for] = ACTIONS(1705), + [anon_sym_in] = ACTIONS(1705), + [anon_sym_loop] = ACTIONS(1705), + [anon_sym_make] = ACTIONS(1705), + [anon_sym_while] = ACTIONS(1705), + [anon_sym_do] = ACTIONS(1705), + [anon_sym_if] = ACTIONS(1705), + [anon_sym_else] = ACTIONS(1705), + [anon_sym_match] = ACTIONS(1705), + [anon_sym_RBRACE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1705), + [anon_sym_catch] = ACTIONS(1705), + [anon_sym_return] = ACTIONS(1705), + [anon_sym_source] = ACTIONS(1705), + [anon_sym_source_DASHenv] = ACTIONS(1705), + [anon_sym_register] = ACTIONS(1705), + [anon_sym_hide] = ACTIONS(1705), + [anon_sym_hide_DASHenv] = ACTIONS(1705), + [anon_sym_overlay] = ACTIONS(1705), + [anon_sym_new] = ACTIONS(1705), + [anon_sym_as] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1705), + [aux_sym__immediate_decimal_token2] = ACTIONS(2349), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1705), + [aux_sym__val_number_decimal_token1] = ACTIONS(1705), + [aux_sym__val_number_decimal_token2] = ACTIONS(1705), + [aux_sym__val_number_decimal_token3] = ACTIONS(1705), + [aux_sym__val_number_decimal_token4] = ACTIONS(1705), + [aux_sym__val_number_token1] = ACTIONS(1705), + [aux_sym__val_number_token2] = ACTIONS(1705), + [aux_sym__val_number_token3] = ACTIONS(1705), + [anon_sym_DQUOTE] = ACTIONS(1705), + [sym__str_single_quotes] = ACTIONS(1705), + [sym__str_back_ticks] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1705), + [sym__entry_separator] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_POUND] = ACTIONS(3), + }, + [502] = { + [sym_comment] = STATE(502), + [anon_sym_export] = ACTIONS(1643), + [anon_sym_alias] = ACTIONS(1643), + [anon_sym_let] = ACTIONS(1643), + [anon_sym_let_DASHenv] = ACTIONS(1643), + [anon_sym_mut] = ACTIONS(1643), + [anon_sym_const] = ACTIONS(1643), + [aux_sym_cmd_identifier_token1] = ACTIONS(1643), + [aux_sym_cmd_identifier_token2] = ACTIONS(1643), + [aux_sym_cmd_identifier_token3] = ACTIONS(1643), + [aux_sym_cmd_identifier_token4] = ACTIONS(1643), + [aux_sym_cmd_identifier_token5] = ACTIONS(1643), + [aux_sym_cmd_identifier_token6] = ACTIONS(1643), + [aux_sym_cmd_identifier_token7] = ACTIONS(1643), + [aux_sym_cmd_identifier_token8] = ACTIONS(1643), + [aux_sym_cmd_identifier_token9] = ACTIONS(1643), + [aux_sym_cmd_identifier_token10] = ACTIONS(1643), + [aux_sym_cmd_identifier_token11] = ACTIONS(1643), + [aux_sym_cmd_identifier_token12] = ACTIONS(1643), + [aux_sym_cmd_identifier_token13] = ACTIONS(1643), + [aux_sym_cmd_identifier_token14] = ACTIONS(1643), + [aux_sym_cmd_identifier_token15] = ACTIONS(1643), + [aux_sym_cmd_identifier_token16] = ACTIONS(1643), + [aux_sym_cmd_identifier_token17] = ACTIONS(1643), + [aux_sym_cmd_identifier_token18] = ACTIONS(1643), + [aux_sym_cmd_identifier_token19] = ACTIONS(1643), + [aux_sym_cmd_identifier_token20] = ACTIONS(1643), + [aux_sym_cmd_identifier_token21] = ACTIONS(1643), + [aux_sym_cmd_identifier_token22] = ACTIONS(1643), + [aux_sym_cmd_identifier_token23] = ACTIONS(1643), + [aux_sym_cmd_identifier_token24] = ACTIONS(1643), + [aux_sym_cmd_identifier_token25] = ACTIONS(1643), + [aux_sym_cmd_identifier_token26] = ACTIONS(1643), + [aux_sym_cmd_identifier_token27] = ACTIONS(1643), + [aux_sym_cmd_identifier_token28] = ACTIONS(1643), + [aux_sym_cmd_identifier_token29] = ACTIONS(1643), + [aux_sym_cmd_identifier_token30] = ACTIONS(1643), + [aux_sym_cmd_identifier_token31] = ACTIONS(1643), + [aux_sym_cmd_identifier_token32] = ACTIONS(1643), + [aux_sym_cmd_identifier_token33] = ACTIONS(1643), + [aux_sym_cmd_identifier_token34] = ACTIONS(1643), + [aux_sym_cmd_identifier_token35] = ACTIONS(1643), + [aux_sym_cmd_identifier_token36] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [aux_sym_cmd_identifier_token38] = ACTIONS(1643), + [aux_sym_cmd_identifier_token39] = ACTIONS(1645), + [aux_sym_cmd_identifier_token40] = ACTIONS(1645), + [anon_sym_def] = ACTIONS(1643), + [anon_sym_export_DASHenv] = ACTIONS(1643), + [anon_sym_extern] = ACTIONS(1643), + [anon_sym_module] = ACTIONS(1643), + [anon_sym_use] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1645), + [anon_sym_DOLLAR] = ACTIONS(1645), + [anon_sym_error] = ACTIONS(1643), + [anon_sym_list] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_break] = ACTIONS(1643), + [anon_sym_continue] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_loop] = ACTIONS(1643), + [anon_sym_make] = ACTIONS(1643), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_do] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_else] = ACTIONS(1643), + [anon_sym_match] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1645), + [anon_sym_try] = ACTIONS(1643), + [anon_sym_catch] = ACTIONS(1643), + [anon_sym_return] = ACTIONS(1643), + [anon_sym_source] = ACTIONS(1643), + [anon_sym_source_DASHenv] = ACTIONS(1643), + [anon_sym_register] = ACTIONS(1643), + [anon_sym_hide] = ACTIONS(1643), + [anon_sym_hide_DASHenv] = ACTIONS(1643), + [anon_sym_overlay] = ACTIONS(1643), + [anon_sym_new] = ACTIONS(1643), + [anon_sym_as] = ACTIONS(1643), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1645), + [anon_sym_DOT] = ACTIONS(2351), + [aux_sym__immediate_decimal_token2] = ACTIONS(2353), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1645), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1645), + [aux_sym__val_number_decimal_token3] = ACTIONS(1645), + [aux_sym__val_number_decimal_token4] = ACTIONS(1645), + [aux_sym__val_number_token1] = ACTIONS(1645), + [aux_sym__val_number_token2] = ACTIONS(1645), + [aux_sym__val_number_token3] = ACTIONS(1645), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym__str_single_quotes] = ACTIONS(1645), + [sym__str_back_ticks] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1645), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_POUND] = ACTIONS(247), + }, + [503] = { + [sym_comment] = STATE(503), + [anon_sym_export] = ACTIONS(2355), + [anon_sym_alias] = ACTIONS(2355), + [anon_sym_let] = ACTIONS(2355), + [anon_sym_let_DASHenv] = ACTIONS(2355), + [anon_sym_mut] = ACTIONS(2355), + [anon_sym_const] = ACTIONS(2355), + [aux_sym_cmd_identifier_token1] = ACTIONS(2355), + [aux_sym_cmd_identifier_token2] = ACTIONS(2355), + [aux_sym_cmd_identifier_token3] = ACTIONS(2355), + [aux_sym_cmd_identifier_token4] = ACTIONS(2355), + [aux_sym_cmd_identifier_token5] = ACTIONS(2355), + [aux_sym_cmd_identifier_token6] = ACTIONS(2355), + [aux_sym_cmd_identifier_token7] = ACTIONS(2355), + [aux_sym_cmd_identifier_token8] = ACTIONS(2355), + [aux_sym_cmd_identifier_token9] = ACTIONS(2355), + [aux_sym_cmd_identifier_token10] = ACTIONS(2355), + [aux_sym_cmd_identifier_token11] = ACTIONS(2355), + [aux_sym_cmd_identifier_token12] = ACTIONS(2355), + [aux_sym_cmd_identifier_token13] = ACTIONS(2355), + [aux_sym_cmd_identifier_token14] = ACTIONS(2355), + [aux_sym_cmd_identifier_token15] = ACTIONS(2355), + [aux_sym_cmd_identifier_token16] = ACTIONS(2355), + [aux_sym_cmd_identifier_token17] = ACTIONS(2355), + [aux_sym_cmd_identifier_token18] = ACTIONS(2355), + [aux_sym_cmd_identifier_token19] = ACTIONS(2355), + [aux_sym_cmd_identifier_token20] = ACTIONS(2355), + [aux_sym_cmd_identifier_token21] = ACTIONS(2355), + [aux_sym_cmd_identifier_token22] = ACTIONS(2355), + [aux_sym_cmd_identifier_token23] = ACTIONS(2355), + [aux_sym_cmd_identifier_token24] = ACTIONS(2355), + [aux_sym_cmd_identifier_token25] = ACTIONS(2355), + [aux_sym_cmd_identifier_token26] = ACTIONS(2355), + [aux_sym_cmd_identifier_token27] = ACTIONS(2355), + [aux_sym_cmd_identifier_token28] = ACTIONS(2355), + [aux_sym_cmd_identifier_token29] = ACTIONS(2355), + [aux_sym_cmd_identifier_token30] = ACTIONS(2355), + [aux_sym_cmd_identifier_token31] = ACTIONS(2355), + [aux_sym_cmd_identifier_token32] = ACTIONS(2355), + [aux_sym_cmd_identifier_token33] = ACTIONS(2355), + [aux_sym_cmd_identifier_token34] = ACTIONS(2355), + [aux_sym_cmd_identifier_token35] = ACTIONS(2355), + [aux_sym_cmd_identifier_token36] = ACTIONS(2355), + [anon_sym_true] = ACTIONS(2355), + [anon_sym_false] = ACTIONS(2355), + [anon_sym_null] = ACTIONS(2355), + [aux_sym_cmd_identifier_token38] = ACTIONS(2355), + [aux_sym_cmd_identifier_token39] = ACTIONS(2355), + [aux_sym_cmd_identifier_token40] = ACTIONS(2355), + [anon_sym_def] = ACTIONS(2355), + [anon_sym_export_DASHenv] = ACTIONS(2355), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym_module] = ACTIONS(2355), + [anon_sym_use] = ACTIONS(2355), + [anon_sym_RBRACK] = ACTIONS(2355), + [anon_sym_LPAREN] = ACTIONS(2355), + [anon_sym_DOLLAR] = ACTIONS(2355), + [anon_sym_error] = ACTIONS(2355), + [anon_sym_list] = ACTIONS(2355), + [anon_sym_DASH] = ACTIONS(2355), + [anon_sym_break] = ACTIONS(2355), + [anon_sym_continue] = ACTIONS(2355), + [anon_sym_for] = ACTIONS(2355), + [anon_sym_in] = ACTIONS(2355), + [anon_sym_loop] = ACTIONS(2355), + [anon_sym_make] = ACTIONS(2355), + [anon_sym_while] = ACTIONS(2355), + [anon_sym_do] = ACTIONS(2355), + [anon_sym_if] = ACTIONS(2355), + [anon_sym_else] = ACTIONS(2355), + [anon_sym_match] = ACTIONS(2355), + [anon_sym_RBRACE] = ACTIONS(2355), + [anon_sym_try] = ACTIONS(2355), + [anon_sym_catch] = ACTIONS(2355), + [anon_sym_return] = ACTIONS(2355), + [anon_sym_source] = ACTIONS(2355), + [anon_sym_source_DASHenv] = ACTIONS(2355), + [anon_sym_register] = ACTIONS(2355), + [anon_sym_hide] = ACTIONS(2355), + [anon_sym_hide_DASHenv] = ACTIONS(2355), + [anon_sym_overlay] = ACTIONS(2355), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_as] = ACTIONS(2355), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2355), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2355), + [aux_sym__val_number_decimal_token1] = ACTIONS(2355), + [aux_sym__val_number_decimal_token2] = ACTIONS(2355), + [aux_sym__val_number_decimal_token3] = ACTIONS(2355), + [aux_sym__val_number_decimal_token4] = ACTIONS(2355), + [aux_sym__val_number_token1] = ACTIONS(2355), + [aux_sym__val_number_token2] = ACTIONS(2355), + [aux_sym__val_number_token3] = ACTIONS(2355), + [anon_sym_DQUOTE] = ACTIONS(2355), + [sym__str_single_quotes] = ACTIONS(2355), + [sym__str_back_ticks] = ACTIONS(2355), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2355), + [sym__entry_separator] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2355), + [anon_sym_POUND] = ACTIONS(3), + }, + [504] = { + [sym_comment] = STATE(504), + [aux_sym__multiple_types_repeat1] = STATE(504), + [anon_sym_export] = ACTIONS(2359), + [anon_sym_alias] = ACTIONS(2359), + [anon_sym_let] = ACTIONS(2359), + [anon_sym_let_DASHenv] = ACTIONS(2359), + [anon_sym_mut] = ACTIONS(2359), + [anon_sym_const] = ACTIONS(2359), + [aux_sym_cmd_identifier_token1] = ACTIONS(2359), + [aux_sym_cmd_identifier_token2] = ACTIONS(2359), + [aux_sym_cmd_identifier_token3] = ACTIONS(2359), + [aux_sym_cmd_identifier_token4] = ACTIONS(2359), + [aux_sym_cmd_identifier_token5] = ACTIONS(2359), + [aux_sym_cmd_identifier_token6] = ACTIONS(2359), + [aux_sym_cmd_identifier_token7] = ACTIONS(2359), + [aux_sym_cmd_identifier_token8] = ACTIONS(2359), + [aux_sym_cmd_identifier_token9] = ACTIONS(2359), + [aux_sym_cmd_identifier_token10] = ACTIONS(2359), + [aux_sym_cmd_identifier_token11] = ACTIONS(2359), + [aux_sym_cmd_identifier_token12] = ACTIONS(2359), + [aux_sym_cmd_identifier_token13] = ACTIONS(2359), + [aux_sym_cmd_identifier_token14] = ACTIONS(2359), + [aux_sym_cmd_identifier_token15] = ACTIONS(2359), + [aux_sym_cmd_identifier_token16] = ACTIONS(2359), + [aux_sym_cmd_identifier_token17] = ACTIONS(2359), + [aux_sym_cmd_identifier_token18] = ACTIONS(2359), + [aux_sym_cmd_identifier_token19] = ACTIONS(2359), + [aux_sym_cmd_identifier_token20] = ACTIONS(2359), + [aux_sym_cmd_identifier_token21] = ACTIONS(2359), + [aux_sym_cmd_identifier_token22] = ACTIONS(2359), + [aux_sym_cmd_identifier_token23] = ACTIONS(2359), + [aux_sym_cmd_identifier_token24] = ACTIONS(2359), + [aux_sym_cmd_identifier_token25] = ACTIONS(2359), + [aux_sym_cmd_identifier_token26] = ACTIONS(2359), + [aux_sym_cmd_identifier_token27] = ACTIONS(2359), + [aux_sym_cmd_identifier_token28] = ACTIONS(2359), + [aux_sym_cmd_identifier_token29] = ACTIONS(2359), + [aux_sym_cmd_identifier_token30] = ACTIONS(2359), + [aux_sym_cmd_identifier_token31] = ACTIONS(2359), + [aux_sym_cmd_identifier_token32] = ACTIONS(2359), + [aux_sym_cmd_identifier_token33] = ACTIONS(2359), + [aux_sym_cmd_identifier_token34] = ACTIONS(2359), + [aux_sym_cmd_identifier_token35] = ACTIONS(2359), + [aux_sym_cmd_identifier_token36] = ACTIONS(2359), + [anon_sym_true] = ACTIONS(2359), + [anon_sym_false] = ACTIONS(2359), + [anon_sym_null] = ACTIONS(2359), + [aux_sym_cmd_identifier_token38] = ACTIONS(2359), + [aux_sym_cmd_identifier_token39] = ACTIONS(2359), + [aux_sym_cmd_identifier_token40] = ACTIONS(2359), + [anon_sym_def] = ACTIONS(2359), + [anon_sym_export_DASHenv] = ACTIONS(2359), + [anon_sym_extern] = ACTIONS(2359), + [anon_sym_module] = ACTIONS(2359), + [anon_sym_use] = ACTIONS(2359), + [anon_sym_LPAREN] = ACTIONS(2359), + [anon_sym_DOLLAR] = ACTIONS(2359), + [anon_sym_error] = ACTIONS(2359), + [anon_sym_list] = ACTIONS(2359), + [anon_sym_DASH] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(2359), + [anon_sym_continue] = ACTIONS(2359), + [anon_sym_for] = ACTIONS(2359), + [anon_sym_in] = ACTIONS(2359), + [anon_sym_loop] = ACTIONS(2359), + [anon_sym_make] = ACTIONS(2359), + [anon_sym_while] = ACTIONS(2359), + [anon_sym_do] = ACTIONS(2359), + [anon_sym_if] = ACTIONS(2359), + [anon_sym_else] = ACTIONS(2359), + [anon_sym_match] = ACTIONS(2359), + [anon_sym_RBRACE] = ACTIONS(2359), + [anon_sym_try] = ACTIONS(2359), + [anon_sym_catch] = ACTIONS(2359), + [anon_sym_return] = ACTIONS(2359), + [anon_sym_source] = ACTIONS(2359), + [anon_sym_source_DASHenv] = ACTIONS(2359), + [anon_sym_register] = ACTIONS(2359), + [anon_sym_hide] = ACTIONS(2359), + [anon_sym_hide_DASHenv] = ACTIONS(2359), + [anon_sym_overlay] = ACTIONS(2359), + [anon_sym_new] = ACTIONS(2359), + [anon_sym_as] = ACTIONS(2359), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2359), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2359), + [aux_sym__val_number_decimal_token1] = ACTIONS(2359), + [aux_sym__val_number_decimal_token2] = ACTIONS(2359), + [aux_sym__val_number_decimal_token3] = ACTIONS(2359), + [aux_sym__val_number_decimal_token4] = ACTIONS(2359), + [aux_sym__val_number_token1] = ACTIONS(2359), + [aux_sym__val_number_token2] = ACTIONS(2359), + [aux_sym__val_number_token3] = ACTIONS(2359), + [anon_sym_DQUOTE] = ACTIONS(2359), + [sym__str_single_quotes] = ACTIONS(2359), + [sym__str_back_ticks] = ACTIONS(2359), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2359), + [sym__entry_separator] = ACTIONS(2361), + [anon_sym_PLUS] = ACTIONS(2359), + [anon_sym_POUND] = ACTIONS(3), + }, + [505] = { + [sym__expr_parenthesized_immediate] = STATE(7305), + [sym_comment] = STATE(505), + [anon_sym_export] = ACTIONS(1993), + [anon_sym_alias] = ACTIONS(1993), + [anon_sym_let] = ACTIONS(1993), + [anon_sym_let_DASHenv] = ACTIONS(1993), + [anon_sym_mut] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1993), + [aux_sym_cmd_identifier_token1] = ACTIONS(1993), + [aux_sym_cmd_identifier_token2] = ACTIONS(1993), + [aux_sym_cmd_identifier_token3] = ACTIONS(1993), + [aux_sym_cmd_identifier_token4] = ACTIONS(1993), + [aux_sym_cmd_identifier_token5] = ACTIONS(1993), + [aux_sym_cmd_identifier_token6] = ACTIONS(1993), + [aux_sym_cmd_identifier_token7] = ACTIONS(1993), + [aux_sym_cmd_identifier_token8] = ACTIONS(1993), + [aux_sym_cmd_identifier_token9] = ACTIONS(1993), + [aux_sym_cmd_identifier_token10] = ACTIONS(1993), + [aux_sym_cmd_identifier_token11] = ACTIONS(1993), + [aux_sym_cmd_identifier_token12] = ACTIONS(1993), + [aux_sym_cmd_identifier_token13] = ACTIONS(1993), + [aux_sym_cmd_identifier_token14] = ACTIONS(1993), + [aux_sym_cmd_identifier_token15] = ACTIONS(1993), + [aux_sym_cmd_identifier_token16] = ACTIONS(1993), + [aux_sym_cmd_identifier_token17] = ACTIONS(1993), + [aux_sym_cmd_identifier_token18] = ACTIONS(1993), + [aux_sym_cmd_identifier_token19] = ACTIONS(1993), + [aux_sym_cmd_identifier_token20] = ACTIONS(1993), + [aux_sym_cmd_identifier_token21] = ACTIONS(1993), + [aux_sym_cmd_identifier_token22] = ACTIONS(1993), + [aux_sym_cmd_identifier_token23] = ACTIONS(1993), + [aux_sym_cmd_identifier_token24] = ACTIONS(1993), + [aux_sym_cmd_identifier_token25] = ACTIONS(1993), + [aux_sym_cmd_identifier_token26] = ACTIONS(1993), + [aux_sym_cmd_identifier_token27] = ACTIONS(1993), + [aux_sym_cmd_identifier_token28] = ACTIONS(1993), + [aux_sym_cmd_identifier_token29] = ACTIONS(1993), + [aux_sym_cmd_identifier_token30] = ACTIONS(1993), + [aux_sym_cmd_identifier_token31] = ACTIONS(1993), + [aux_sym_cmd_identifier_token32] = ACTIONS(1993), + [aux_sym_cmd_identifier_token33] = ACTIONS(1993), + [aux_sym_cmd_identifier_token34] = ACTIONS(1993), + [aux_sym_cmd_identifier_token35] = ACTIONS(1993), + [aux_sym_cmd_identifier_token36] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(1999), + [anon_sym_false] = ACTIONS(1999), + [anon_sym_null] = ACTIONS(1999), + [aux_sym_cmd_identifier_token38] = ACTIONS(1993), + [aux_sym_cmd_identifier_token39] = ACTIONS(1999), + [aux_sym_cmd_identifier_token40] = ACTIONS(1999), + [anon_sym_def] = ACTIONS(1993), + [anon_sym_export_DASHenv] = ACTIONS(1993), + [anon_sym_extern] = ACTIONS(1993), + [anon_sym_module] = ACTIONS(1993), + [anon_sym_use] = ACTIONS(1993), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_DOLLAR] = ACTIONS(1999), + [anon_sym_error] = ACTIONS(1993), + [anon_sym_list] = ACTIONS(1993), + [anon_sym_DASH] = ACTIONS(1993), + [anon_sym_break] = ACTIONS(1993), + [anon_sym_continue] = ACTIONS(1993), + [anon_sym_for] = ACTIONS(1993), + [anon_sym_in] = ACTIONS(1993), + [anon_sym_loop] = ACTIONS(1993), + [anon_sym_make] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1993), + [anon_sym_do] = ACTIONS(1993), + [anon_sym_if] = ACTIONS(1993), + [anon_sym_else] = ACTIONS(1993), + [anon_sym_match] = ACTIONS(1993), + [anon_sym_RBRACE] = ACTIONS(1999), + [anon_sym_try] = ACTIONS(1993), + [anon_sym_catch] = ACTIONS(1993), + [anon_sym_return] = ACTIONS(1993), + [anon_sym_source] = ACTIONS(1993), + [anon_sym_source_DASHenv] = ACTIONS(1993), + [anon_sym_register] = ACTIONS(1993), + [anon_sym_hide] = ACTIONS(1993), + [anon_sym_hide_DASHenv] = ACTIONS(1993), + [anon_sym_overlay] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_as] = ACTIONS(1993), + [anon_sym_LPAREN2] = ACTIONS(1577), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1999), + [aux_sym__val_number_decimal_token1] = ACTIONS(1993), + [aux_sym__val_number_decimal_token2] = ACTIONS(1999), + [aux_sym__val_number_decimal_token3] = ACTIONS(1999), + [aux_sym__val_number_decimal_token4] = ACTIONS(1999), + [aux_sym__val_number_token1] = ACTIONS(1999), + [aux_sym__val_number_token2] = ACTIONS(1999), + [aux_sym__val_number_token3] = ACTIONS(1999), + [anon_sym_DQUOTE] = ACTIONS(1999), + [sym__str_single_quotes] = ACTIONS(1999), + [sym__str_back_ticks] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(1993), + [anon_sym_POUND] = ACTIONS(247), + }, + [506] = { + [sym__expr_parenthesized_immediate] = STATE(7305), + [sym_comment] = STATE(506), + [anon_sym_export] = ACTIONS(2023), + [anon_sym_alias] = ACTIONS(2023), + [anon_sym_let] = ACTIONS(2023), + [anon_sym_let_DASHenv] = ACTIONS(2023), + [anon_sym_mut] = ACTIONS(2023), + [anon_sym_const] = ACTIONS(2023), + [aux_sym_cmd_identifier_token1] = ACTIONS(2023), + [aux_sym_cmd_identifier_token2] = ACTIONS(2023), + [aux_sym_cmd_identifier_token3] = ACTIONS(2023), + [aux_sym_cmd_identifier_token4] = ACTIONS(2023), + [aux_sym_cmd_identifier_token5] = ACTIONS(2023), + [aux_sym_cmd_identifier_token6] = ACTIONS(2023), + [aux_sym_cmd_identifier_token7] = ACTIONS(2023), + [aux_sym_cmd_identifier_token8] = ACTIONS(2023), + [aux_sym_cmd_identifier_token9] = ACTIONS(2023), + [aux_sym_cmd_identifier_token10] = ACTIONS(2023), + [aux_sym_cmd_identifier_token11] = ACTIONS(2023), + [aux_sym_cmd_identifier_token12] = ACTIONS(2023), + [aux_sym_cmd_identifier_token13] = ACTIONS(2023), + [aux_sym_cmd_identifier_token14] = ACTIONS(2023), + [aux_sym_cmd_identifier_token15] = ACTIONS(2023), + [aux_sym_cmd_identifier_token16] = ACTIONS(2023), + [aux_sym_cmd_identifier_token17] = ACTIONS(2023), + [aux_sym_cmd_identifier_token18] = ACTIONS(2023), + [aux_sym_cmd_identifier_token19] = ACTIONS(2023), + [aux_sym_cmd_identifier_token20] = ACTIONS(2023), + [aux_sym_cmd_identifier_token21] = ACTIONS(2023), + [aux_sym_cmd_identifier_token22] = ACTIONS(2023), + [aux_sym_cmd_identifier_token23] = ACTIONS(2023), + [aux_sym_cmd_identifier_token24] = ACTIONS(2023), + [aux_sym_cmd_identifier_token25] = ACTIONS(2023), + [aux_sym_cmd_identifier_token26] = ACTIONS(2023), + [aux_sym_cmd_identifier_token27] = ACTIONS(2023), + [aux_sym_cmd_identifier_token28] = ACTIONS(2023), + [aux_sym_cmd_identifier_token29] = ACTIONS(2023), + [aux_sym_cmd_identifier_token30] = ACTIONS(2023), + [aux_sym_cmd_identifier_token31] = ACTIONS(2023), + [aux_sym_cmd_identifier_token32] = ACTIONS(2023), + [aux_sym_cmd_identifier_token33] = ACTIONS(2023), + [aux_sym_cmd_identifier_token34] = ACTIONS(2023), + [aux_sym_cmd_identifier_token35] = ACTIONS(2023), + [aux_sym_cmd_identifier_token36] = ACTIONS(2023), + [anon_sym_true] = ACTIONS(2025), + [anon_sym_false] = ACTIONS(2025), + [anon_sym_null] = ACTIONS(2025), + [aux_sym_cmd_identifier_token38] = ACTIONS(2023), + [aux_sym_cmd_identifier_token39] = ACTIONS(2025), + [aux_sym_cmd_identifier_token40] = ACTIONS(2025), + [anon_sym_def] = ACTIONS(2023), + [anon_sym_export_DASHenv] = ACTIONS(2023), + [anon_sym_extern] = ACTIONS(2023), + [anon_sym_module] = ACTIONS(2023), + [anon_sym_use] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_DOLLAR] = ACTIONS(2025), + [anon_sym_error] = ACTIONS(2023), + [anon_sym_list] = ACTIONS(2023), + [anon_sym_DASH] = ACTIONS(2023), + [anon_sym_break] = ACTIONS(2023), + [anon_sym_continue] = ACTIONS(2023), + [anon_sym_for] = ACTIONS(2023), + [anon_sym_in] = ACTIONS(2023), + [anon_sym_loop] = ACTIONS(2023), + [anon_sym_make] = ACTIONS(2023), + [anon_sym_while] = ACTIONS(2023), + [anon_sym_do] = ACTIONS(2023), + [anon_sym_if] = ACTIONS(2023), + [anon_sym_else] = ACTIONS(2023), + [anon_sym_match] = ACTIONS(2023), + [anon_sym_RBRACE] = ACTIONS(2025), + [anon_sym_try] = ACTIONS(2023), + [anon_sym_catch] = ACTIONS(2023), + [anon_sym_return] = ACTIONS(2023), + [anon_sym_source] = ACTIONS(2023), + [anon_sym_source_DASHenv] = ACTIONS(2023), + [anon_sym_register] = ACTIONS(2023), + [anon_sym_hide] = ACTIONS(2023), + [anon_sym_hide_DASHenv] = ACTIONS(2023), + [anon_sym_overlay] = ACTIONS(2023), + [anon_sym_new] = ACTIONS(2023), + [anon_sym_as] = ACTIONS(2023), + [anon_sym_LPAREN2] = ACTIONS(1577), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2025), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2025), + [aux_sym__val_number_decimal_token1] = ACTIONS(2023), + [aux_sym__val_number_decimal_token2] = ACTIONS(2025), + [aux_sym__val_number_decimal_token3] = ACTIONS(2025), + [aux_sym__val_number_decimal_token4] = ACTIONS(2025), + [aux_sym__val_number_token1] = ACTIONS(2025), + [aux_sym__val_number_token2] = ACTIONS(2025), + [aux_sym__val_number_token3] = ACTIONS(2025), + [anon_sym_DQUOTE] = ACTIONS(2025), + [sym__str_single_quotes] = ACTIONS(2025), + [sym__str_back_ticks] = ACTIONS(2025), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2025), + [anon_sym_PLUS] = ACTIONS(2023), + [anon_sym_POUND] = ACTIONS(247), + }, + [507] = { + [sym__expr_parenthesized_immediate] = STATE(7795), + [sym_comment] = STATE(507), [anon_sym_export] = ACTIONS(2263), [anon_sym_alias] = ACTIONS(2263), [anon_sym_let] = ACTIONS(2263), @@ -133260,20 +130675,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(2263), [aux_sym_cmd_identifier_token35] = ACTIONS(2263), [aux_sym_cmd_identifier_token36] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(2263), - [anon_sym_false] = ACTIONS(2263), - [anon_sym_null] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(2265), + [anon_sym_false] = ACTIONS(2265), + [anon_sym_null] = ACTIONS(2265), [aux_sym_cmd_identifier_token38] = ACTIONS(2263), - [aux_sym_cmd_identifier_token39] = ACTIONS(2263), - [aux_sym_cmd_identifier_token40] = ACTIONS(2263), + [aux_sym_cmd_identifier_token39] = ACTIONS(2265), + [aux_sym_cmd_identifier_token40] = ACTIONS(2265), [anon_sym_def] = ACTIONS(2263), [anon_sym_export_DASHenv] = ACTIONS(2263), [anon_sym_extern] = ACTIONS(2263), [anon_sym_module] = ACTIONS(2263), [anon_sym_use] = ACTIONS(2263), - [anon_sym_RBRACK] = ACTIONS(2263), [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_DOLLAR] = ACTIONS(2263), + [anon_sym_DOLLAR] = ACTIONS(2265), [anon_sym_error] = ACTIONS(2263), [anon_sym_list] = ACTIONS(2263), [anon_sym_DASH] = ACTIONS(2263), @@ -133288,7 +130702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(2263), [anon_sym_else] = ACTIONS(2263), [anon_sym_match] = ACTIONS(2263), - [anon_sym_RBRACE] = ACTIONS(2263), + [anon_sym_RBRACE] = ACTIONS(2265), [anon_sym_try] = ACTIONS(2263), [anon_sym_catch] = ACTIONS(2263), [anon_sym_return] = ACTIONS(2263), @@ -133300,126 +130714,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(2263), [anon_sym_new] = ACTIONS(2263), [anon_sym_as] = ACTIONS(2263), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2263), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2263), + [anon_sym_LPAREN2] = ACTIONS(1577), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2265), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2265), [aux_sym__val_number_decimal_token1] = ACTIONS(2263), - [aux_sym__val_number_decimal_token2] = ACTIONS(2263), - [aux_sym__val_number_decimal_token3] = ACTIONS(2263), - [aux_sym__val_number_decimal_token4] = ACTIONS(2263), - [aux_sym__val_number_token1] = ACTIONS(2263), - [aux_sym__val_number_token2] = ACTIONS(2263), - [aux_sym__val_number_token3] = ACTIONS(2263), - [anon_sym_DQUOTE] = ACTIONS(2263), - [sym__str_single_quotes] = ACTIONS(2263), - [sym__str_back_ticks] = ACTIONS(2263), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2263), - [sym__entry_separator] = ACTIONS(2265), + [aux_sym__val_number_decimal_token2] = ACTIONS(2265), + [aux_sym__val_number_decimal_token3] = ACTIONS(2265), + [aux_sym__val_number_decimal_token4] = ACTIONS(2265), + [aux_sym__val_number_token1] = ACTIONS(2265), + [aux_sym__val_number_token2] = ACTIONS(2265), + [aux_sym__val_number_token3] = ACTIONS(2265), + [anon_sym_DQUOTE] = ACTIONS(2265), + [sym__str_single_quotes] = ACTIONS(2265), + [sym__str_back_ticks] = ACTIONS(2265), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2265), [anon_sym_PLUS] = ACTIONS(2263), - [anon_sym_POUND] = ACTIONS(3), - }, - [493] = { - [sym_comment] = STATE(493), - [anon_sym_export] = ACTIONS(2089), - [anon_sym_alias] = ACTIONS(2089), - [anon_sym_let] = ACTIONS(2089), - [anon_sym_let_DASHenv] = ACTIONS(2089), - [anon_sym_mut] = ACTIONS(2089), - [anon_sym_const] = ACTIONS(2089), - [aux_sym_cmd_identifier_token1] = ACTIONS(2089), - [aux_sym_cmd_identifier_token2] = ACTIONS(2089), - [aux_sym_cmd_identifier_token3] = ACTIONS(2089), - [aux_sym_cmd_identifier_token4] = ACTIONS(2089), - [aux_sym_cmd_identifier_token5] = ACTIONS(2089), - [aux_sym_cmd_identifier_token6] = ACTIONS(2089), - [aux_sym_cmd_identifier_token7] = ACTIONS(2089), - [aux_sym_cmd_identifier_token8] = ACTIONS(2089), - [aux_sym_cmd_identifier_token9] = ACTIONS(2089), - [aux_sym_cmd_identifier_token10] = ACTIONS(2089), - [aux_sym_cmd_identifier_token11] = ACTIONS(2089), - [aux_sym_cmd_identifier_token12] = ACTIONS(2089), - [aux_sym_cmd_identifier_token13] = ACTIONS(2089), - [aux_sym_cmd_identifier_token14] = ACTIONS(2089), - [aux_sym_cmd_identifier_token15] = ACTIONS(2089), - [aux_sym_cmd_identifier_token16] = ACTIONS(2089), - [aux_sym_cmd_identifier_token17] = ACTIONS(2089), - [aux_sym_cmd_identifier_token18] = ACTIONS(2089), - [aux_sym_cmd_identifier_token19] = ACTIONS(2089), - [aux_sym_cmd_identifier_token20] = ACTIONS(2089), - [aux_sym_cmd_identifier_token21] = ACTIONS(2089), - [aux_sym_cmd_identifier_token22] = ACTIONS(2089), - [aux_sym_cmd_identifier_token23] = ACTIONS(2089), - [aux_sym_cmd_identifier_token24] = ACTIONS(2089), - [aux_sym_cmd_identifier_token25] = ACTIONS(2089), - [aux_sym_cmd_identifier_token26] = ACTIONS(2089), - [aux_sym_cmd_identifier_token27] = ACTIONS(2089), - [aux_sym_cmd_identifier_token28] = ACTIONS(2089), - [aux_sym_cmd_identifier_token29] = ACTIONS(2089), - [aux_sym_cmd_identifier_token30] = ACTIONS(2089), - [aux_sym_cmd_identifier_token31] = ACTIONS(2089), - [aux_sym_cmd_identifier_token32] = ACTIONS(2089), - [aux_sym_cmd_identifier_token33] = ACTIONS(2089), - [aux_sym_cmd_identifier_token34] = ACTIONS(2089), - [aux_sym_cmd_identifier_token35] = ACTIONS(2089), - [aux_sym_cmd_identifier_token36] = ACTIONS(2089), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [anon_sym_null] = ACTIONS(2089), - [aux_sym_cmd_identifier_token38] = ACTIONS(2089), - [aux_sym_cmd_identifier_token39] = ACTIONS(2089), - [aux_sym_cmd_identifier_token40] = ACTIONS(2089), - [anon_sym_def] = ACTIONS(2089), - [anon_sym_export_DASHenv] = ACTIONS(2089), - [anon_sym_extern] = ACTIONS(2089), - [anon_sym_module] = ACTIONS(2089), - [anon_sym_use] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(2089), - [anon_sym_DOLLAR] = ACTIONS(2089), - [anon_sym_error] = ACTIONS(2089), - [anon_sym_list] = ACTIONS(2089), - [anon_sym_DASH] = ACTIONS(2089), - [anon_sym_break] = ACTIONS(2089), - [anon_sym_continue] = ACTIONS(2089), - [anon_sym_for] = ACTIONS(2089), - [anon_sym_in] = ACTIONS(2089), - [anon_sym_loop] = ACTIONS(2089), - [anon_sym_make] = ACTIONS(2089), - [anon_sym_while] = ACTIONS(2089), - [anon_sym_do] = ACTIONS(2089), - [anon_sym_if] = ACTIONS(2089), - [anon_sym_else] = ACTIONS(2089), - [anon_sym_match] = ACTIONS(2089), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2089), - [anon_sym_catch] = ACTIONS(2089), - [anon_sym_return] = ACTIONS(2089), - [anon_sym_source] = ACTIONS(2089), - [anon_sym_source_DASHenv] = ACTIONS(2089), - [anon_sym_register] = ACTIONS(2089), - [anon_sym_hide] = ACTIONS(2089), - [anon_sym_hide_DASHenv] = ACTIONS(2089), - [anon_sym_overlay] = ACTIONS(2089), - [anon_sym_new] = ACTIONS(2089), - [anon_sym_as] = ACTIONS(2089), - [anon_sym_LPAREN2] = ACTIONS(2091), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2093), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2089), - [aux_sym__val_number_decimal_token1] = ACTIONS(2089), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2089), - [aux_sym__val_number_decimal_token4] = ACTIONS(2089), - [aux_sym__val_number_token1] = ACTIONS(2089), - [aux_sym__val_number_token2] = ACTIONS(2089), - [aux_sym__val_number_token3] = ACTIONS(2089), - [anon_sym_DQUOTE] = ACTIONS(2093), - [sym__str_single_quotes] = ACTIONS(2093), - [sym__str_back_ticks] = ACTIONS(2093), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2089), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2095), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(247), }, - [494] = { - [sym_comment] = STATE(494), + [508] = { + [sym__expr_parenthesized_immediate] = STATE(7795), + [sym_comment] = STATE(508), [anon_sym_export] = ACTIONS(2267), [anon_sym_alias] = ACTIONS(2267), [anon_sym_let] = ACTIONS(2267), @@ -133462,19 +130776,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(2267), [aux_sym_cmd_identifier_token35] = ACTIONS(2267), [aux_sym_cmd_identifier_token36] = ACTIONS(2267), - [anon_sym_true] = ACTIONS(2267), - [anon_sym_false] = ACTIONS(2267), - [anon_sym_null] = ACTIONS(2267), + [anon_sym_true] = ACTIONS(2269), + [anon_sym_false] = ACTIONS(2269), + [anon_sym_null] = ACTIONS(2269), [aux_sym_cmd_identifier_token38] = ACTIONS(2267), - [aux_sym_cmd_identifier_token39] = ACTIONS(2267), - [aux_sym_cmd_identifier_token40] = ACTIONS(2267), + [aux_sym_cmd_identifier_token39] = ACTIONS(2269), + [aux_sym_cmd_identifier_token40] = ACTIONS(2269), [anon_sym_def] = ACTIONS(2267), [anon_sym_export_DASHenv] = ACTIONS(2267), [anon_sym_extern] = ACTIONS(2267), [anon_sym_module] = ACTIONS(2267), [anon_sym_use] = ACTIONS(2267), [anon_sym_LPAREN] = ACTIONS(2267), - [anon_sym_DOLLAR] = ACTIONS(2267), + [anon_sym_DOLLAR] = ACTIONS(2269), [anon_sym_error] = ACTIONS(2267), [anon_sym_list] = ACTIONS(2267), [anon_sym_DASH] = ACTIONS(2267), @@ -133489,7 +130803,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(2267), [anon_sym_else] = ACTIONS(2267), [anon_sym_match] = ACTIONS(2267), - [anon_sym_RBRACE] = ACTIONS(2267), + [anon_sym_RBRACE] = ACTIONS(2269), [anon_sym_try] = ACTIONS(2267), [anon_sym_catch] = ACTIONS(2267), [anon_sym_return] = ACTIONS(2267), @@ -133501,818 +130815,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(2267), [anon_sym_new] = ACTIONS(2267), [anon_sym_as] = ACTIONS(2267), - [anon_sym_LPAREN2] = ACTIONS(2269), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2267), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2267), + [anon_sym_LPAREN2] = ACTIONS(1577), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2269), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2269), [aux_sym__val_number_decimal_token1] = ACTIONS(2267), - [aux_sym__val_number_decimal_token2] = ACTIONS(2267), - [aux_sym__val_number_decimal_token3] = ACTIONS(2267), - [aux_sym__val_number_decimal_token4] = ACTIONS(2267), - [aux_sym__val_number_token1] = ACTIONS(2267), - [aux_sym__val_number_token2] = ACTIONS(2267), - [aux_sym__val_number_token3] = ACTIONS(2267), - [anon_sym_DQUOTE] = ACTIONS(2267), - [sym__str_single_quotes] = ACTIONS(2267), - [sym__str_back_ticks] = ACTIONS(2267), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2267), - [sym__entry_separator] = ACTIONS(2269), + [aux_sym__val_number_decimal_token2] = ACTIONS(2269), + [aux_sym__val_number_decimal_token3] = ACTIONS(2269), + [aux_sym__val_number_decimal_token4] = ACTIONS(2269), + [aux_sym__val_number_token1] = ACTIONS(2269), + [aux_sym__val_number_token2] = ACTIONS(2269), + [aux_sym__val_number_token3] = ACTIONS(2269), + [anon_sym_DQUOTE] = ACTIONS(2269), + [sym__str_single_quotes] = ACTIONS(2269), + [sym__str_back_ticks] = ACTIONS(2269), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2269), [anon_sym_PLUS] = ACTIONS(2267), - [anon_sym_POUND] = ACTIONS(3), - }, - [495] = { - [sym_comment] = STATE(495), - [anon_sym_export] = ACTIONS(2097), - [anon_sym_alias] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_let_DASHenv] = ACTIONS(2097), - [anon_sym_mut] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [aux_sym_cmd_identifier_token1] = ACTIONS(2097), - [aux_sym_cmd_identifier_token2] = ACTIONS(2097), - [aux_sym_cmd_identifier_token3] = ACTIONS(2097), - [aux_sym_cmd_identifier_token4] = ACTIONS(2097), - [aux_sym_cmd_identifier_token5] = ACTIONS(2097), - [aux_sym_cmd_identifier_token6] = ACTIONS(2097), - [aux_sym_cmd_identifier_token7] = ACTIONS(2097), - [aux_sym_cmd_identifier_token8] = ACTIONS(2097), - [aux_sym_cmd_identifier_token9] = ACTIONS(2097), - [aux_sym_cmd_identifier_token10] = ACTIONS(2097), - [aux_sym_cmd_identifier_token11] = ACTIONS(2097), - [aux_sym_cmd_identifier_token12] = ACTIONS(2097), - [aux_sym_cmd_identifier_token13] = ACTIONS(2097), - [aux_sym_cmd_identifier_token14] = ACTIONS(2097), - [aux_sym_cmd_identifier_token15] = ACTIONS(2097), - [aux_sym_cmd_identifier_token16] = ACTIONS(2097), - [aux_sym_cmd_identifier_token17] = ACTIONS(2097), - [aux_sym_cmd_identifier_token18] = ACTIONS(2097), - [aux_sym_cmd_identifier_token19] = ACTIONS(2097), - [aux_sym_cmd_identifier_token20] = ACTIONS(2097), - [aux_sym_cmd_identifier_token21] = ACTIONS(2097), - [aux_sym_cmd_identifier_token22] = ACTIONS(2097), - [aux_sym_cmd_identifier_token23] = ACTIONS(2097), - [aux_sym_cmd_identifier_token24] = ACTIONS(2097), - [aux_sym_cmd_identifier_token25] = ACTIONS(2097), - [aux_sym_cmd_identifier_token26] = ACTIONS(2097), - [aux_sym_cmd_identifier_token27] = ACTIONS(2097), - [aux_sym_cmd_identifier_token28] = ACTIONS(2097), - [aux_sym_cmd_identifier_token29] = ACTIONS(2097), - [aux_sym_cmd_identifier_token30] = ACTIONS(2097), - [aux_sym_cmd_identifier_token31] = ACTIONS(2097), - [aux_sym_cmd_identifier_token32] = ACTIONS(2097), - [aux_sym_cmd_identifier_token33] = ACTIONS(2097), - [aux_sym_cmd_identifier_token34] = ACTIONS(2097), - [aux_sym_cmd_identifier_token35] = ACTIONS(2097), - [aux_sym_cmd_identifier_token36] = ACTIONS(2097), - [anon_sym_true] = ACTIONS(2097), - [anon_sym_false] = ACTIONS(2097), - [anon_sym_null] = ACTIONS(2097), - [aux_sym_cmd_identifier_token38] = ACTIONS(2097), - [aux_sym_cmd_identifier_token39] = ACTIONS(2097), - [aux_sym_cmd_identifier_token40] = ACTIONS(2097), - [anon_sym_def] = ACTIONS(2097), - [anon_sym_export_DASHenv] = ACTIONS(2097), - [anon_sym_extern] = ACTIONS(2097), - [anon_sym_module] = ACTIONS(2097), - [anon_sym_use] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym_DOLLAR] = ACTIONS(2097), - [anon_sym_error] = ACTIONS(2097), - [anon_sym_list] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_in] = ACTIONS(2097), - [anon_sym_loop] = ACTIONS(2097), - [anon_sym_make] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [anon_sym_do] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_else] = ACTIONS(2097), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_RBRACE] = ACTIONS(2101), - [anon_sym_try] = ACTIONS(2097), - [anon_sym_catch] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_source] = ACTIONS(2097), - [anon_sym_source_DASHenv] = ACTIONS(2097), - [anon_sym_register] = ACTIONS(2097), - [anon_sym_hide] = ACTIONS(2097), - [anon_sym_hide_DASHenv] = ACTIONS(2097), - [anon_sym_overlay] = ACTIONS(2097), - [anon_sym_new] = ACTIONS(2097), - [anon_sym_as] = ACTIONS(2097), - [anon_sym_LPAREN2] = ACTIONS(2099), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2101), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2097), - [aux_sym__val_number_decimal_token1] = ACTIONS(2097), - [aux_sym__val_number_decimal_token2] = ACTIONS(2097), - [aux_sym__val_number_decimal_token3] = ACTIONS(2097), - [aux_sym__val_number_decimal_token4] = ACTIONS(2097), - [aux_sym__val_number_token1] = ACTIONS(2097), - [aux_sym__val_number_token2] = ACTIONS(2097), - [aux_sym__val_number_token3] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2101), - [sym__str_single_quotes] = ACTIONS(2101), - [sym__str_back_ticks] = ACTIONS(2101), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2101), - [anon_sym_PLUS] = ACTIONS(2097), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2103), - [anon_sym_POUND] = ACTIONS(3), - }, - [496] = { - [sym_comment] = STATE(496), - [anon_sym_export] = ACTIONS(2271), - [anon_sym_alias] = ACTIONS(2271), - [anon_sym_let] = ACTIONS(2271), - [anon_sym_let_DASHenv] = ACTIONS(2271), - [anon_sym_mut] = ACTIONS(2271), - [anon_sym_const] = ACTIONS(2271), - [aux_sym_cmd_identifier_token1] = ACTIONS(2271), - [aux_sym_cmd_identifier_token2] = ACTIONS(2271), - [aux_sym_cmd_identifier_token3] = ACTIONS(2271), - [aux_sym_cmd_identifier_token4] = ACTIONS(2271), - [aux_sym_cmd_identifier_token5] = ACTIONS(2271), - [aux_sym_cmd_identifier_token6] = ACTIONS(2271), - [aux_sym_cmd_identifier_token7] = ACTIONS(2271), - [aux_sym_cmd_identifier_token8] = ACTIONS(2271), - [aux_sym_cmd_identifier_token9] = ACTIONS(2271), - [aux_sym_cmd_identifier_token10] = ACTIONS(2271), - [aux_sym_cmd_identifier_token11] = ACTIONS(2271), - [aux_sym_cmd_identifier_token12] = ACTIONS(2271), - [aux_sym_cmd_identifier_token13] = ACTIONS(2271), - [aux_sym_cmd_identifier_token14] = ACTIONS(2271), - [aux_sym_cmd_identifier_token15] = ACTIONS(2271), - [aux_sym_cmd_identifier_token16] = ACTIONS(2271), - [aux_sym_cmd_identifier_token17] = ACTIONS(2271), - [aux_sym_cmd_identifier_token18] = ACTIONS(2271), - [aux_sym_cmd_identifier_token19] = ACTIONS(2271), - [aux_sym_cmd_identifier_token20] = ACTIONS(2271), - [aux_sym_cmd_identifier_token21] = ACTIONS(2271), - [aux_sym_cmd_identifier_token22] = ACTIONS(2271), - [aux_sym_cmd_identifier_token23] = ACTIONS(2271), - [aux_sym_cmd_identifier_token24] = ACTIONS(2271), - [aux_sym_cmd_identifier_token25] = ACTIONS(2271), - [aux_sym_cmd_identifier_token26] = ACTIONS(2271), - [aux_sym_cmd_identifier_token27] = ACTIONS(2271), - [aux_sym_cmd_identifier_token28] = ACTIONS(2271), - [aux_sym_cmd_identifier_token29] = ACTIONS(2271), - [aux_sym_cmd_identifier_token30] = ACTIONS(2271), - [aux_sym_cmd_identifier_token31] = ACTIONS(2271), - [aux_sym_cmd_identifier_token32] = ACTIONS(2271), - [aux_sym_cmd_identifier_token33] = ACTIONS(2271), - [aux_sym_cmd_identifier_token34] = ACTIONS(2271), - [aux_sym_cmd_identifier_token35] = ACTIONS(2271), - [aux_sym_cmd_identifier_token36] = ACTIONS(2271), - [anon_sym_true] = ACTIONS(2271), - [anon_sym_false] = ACTIONS(2271), - [anon_sym_null] = ACTIONS(2271), - [aux_sym_cmd_identifier_token38] = ACTIONS(2271), - [aux_sym_cmd_identifier_token39] = ACTIONS(2271), - [aux_sym_cmd_identifier_token40] = ACTIONS(2271), - [anon_sym_def] = ACTIONS(2271), - [anon_sym_export_DASHenv] = ACTIONS(2271), - [anon_sym_extern] = ACTIONS(2271), - [anon_sym_module] = ACTIONS(2271), - [anon_sym_use] = ACTIONS(2271), - [anon_sym_RBRACK] = ACTIONS(2271), - [anon_sym_LPAREN] = ACTIONS(2271), - [anon_sym_DOLLAR] = ACTIONS(2271), - [anon_sym_error] = ACTIONS(2271), - [anon_sym_list] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_break] = ACTIONS(2271), - [anon_sym_continue] = ACTIONS(2271), - [anon_sym_for] = ACTIONS(2271), - [anon_sym_in] = ACTIONS(2271), - [anon_sym_loop] = ACTIONS(2271), - [anon_sym_make] = ACTIONS(2271), - [anon_sym_while] = ACTIONS(2271), - [anon_sym_do] = ACTIONS(2271), - [anon_sym_if] = ACTIONS(2271), - [anon_sym_else] = ACTIONS(2271), - [anon_sym_match] = ACTIONS(2271), - [anon_sym_RBRACE] = ACTIONS(2271), - [anon_sym_try] = ACTIONS(2271), - [anon_sym_catch] = ACTIONS(2271), - [anon_sym_return] = ACTIONS(2271), - [anon_sym_source] = ACTIONS(2271), - [anon_sym_source_DASHenv] = ACTIONS(2271), - [anon_sym_register] = ACTIONS(2271), - [anon_sym_hide] = ACTIONS(2271), - [anon_sym_hide_DASHenv] = ACTIONS(2271), - [anon_sym_overlay] = ACTIONS(2271), - [anon_sym_new] = ACTIONS(2271), - [anon_sym_as] = ACTIONS(2271), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2271), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2271), - [aux_sym__val_number_decimal_token1] = ACTIONS(2271), - [aux_sym__val_number_decimal_token2] = ACTIONS(2271), - [aux_sym__val_number_decimal_token3] = ACTIONS(2271), - [aux_sym__val_number_decimal_token4] = ACTIONS(2271), - [aux_sym__val_number_token1] = ACTIONS(2271), - [aux_sym__val_number_token2] = ACTIONS(2271), - [aux_sym__val_number_token3] = ACTIONS(2271), - [anon_sym_DQUOTE] = ACTIONS(2271), - [sym__str_single_quotes] = ACTIONS(2271), - [sym__str_back_ticks] = ACTIONS(2271), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2271), - [sym__entry_separator] = ACTIONS(2273), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_POUND] = ACTIONS(3), - }, - [497] = { - [sym_comment] = STATE(497), - [anon_sym_export] = ACTIONS(1721), - [anon_sym_alias] = ACTIONS(1721), - [anon_sym_let] = ACTIONS(1721), - [anon_sym_let_DASHenv] = ACTIONS(1721), - [anon_sym_mut] = ACTIONS(1721), - [anon_sym_const] = ACTIONS(1721), - [aux_sym_cmd_identifier_token1] = ACTIONS(1721), - [aux_sym_cmd_identifier_token2] = ACTIONS(1721), - [aux_sym_cmd_identifier_token3] = ACTIONS(1721), - [aux_sym_cmd_identifier_token4] = ACTIONS(1721), - [aux_sym_cmd_identifier_token5] = ACTIONS(1721), - [aux_sym_cmd_identifier_token6] = ACTIONS(1721), - [aux_sym_cmd_identifier_token7] = ACTIONS(1721), - [aux_sym_cmd_identifier_token8] = ACTIONS(1721), - [aux_sym_cmd_identifier_token9] = ACTIONS(1721), - [aux_sym_cmd_identifier_token10] = ACTIONS(1721), - [aux_sym_cmd_identifier_token11] = ACTIONS(1721), - [aux_sym_cmd_identifier_token12] = ACTIONS(1721), - [aux_sym_cmd_identifier_token13] = ACTIONS(1721), - [aux_sym_cmd_identifier_token14] = ACTIONS(1721), - [aux_sym_cmd_identifier_token15] = ACTIONS(1721), - [aux_sym_cmd_identifier_token16] = ACTIONS(1721), - [aux_sym_cmd_identifier_token17] = ACTIONS(1721), - [aux_sym_cmd_identifier_token18] = ACTIONS(1721), - [aux_sym_cmd_identifier_token19] = ACTIONS(1721), - [aux_sym_cmd_identifier_token20] = ACTIONS(1721), - [aux_sym_cmd_identifier_token21] = ACTIONS(1721), - [aux_sym_cmd_identifier_token22] = ACTIONS(1721), - [aux_sym_cmd_identifier_token23] = ACTIONS(1721), - [aux_sym_cmd_identifier_token24] = ACTIONS(1721), - [aux_sym_cmd_identifier_token25] = ACTIONS(1721), - [aux_sym_cmd_identifier_token26] = ACTIONS(1721), - [aux_sym_cmd_identifier_token27] = ACTIONS(1721), - [aux_sym_cmd_identifier_token28] = ACTIONS(1721), - [aux_sym_cmd_identifier_token29] = ACTIONS(1721), - [aux_sym_cmd_identifier_token30] = ACTIONS(1721), - [aux_sym_cmd_identifier_token31] = ACTIONS(1721), - [aux_sym_cmd_identifier_token32] = ACTIONS(1721), - [aux_sym_cmd_identifier_token33] = ACTIONS(1721), - [aux_sym_cmd_identifier_token34] = ACTIONS(1721), - [aux_sym_cmd_identifier_token35] = ACTIONS(1721), - [aux_sym_cmd_identifier_token36] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1723), - [aux_sym_cmd_identifier_token38] = ACTIONS(1721), - [aux_sym_cmd_identifier_token39] = ACTIONS(1723), - [aux_sym_cmd_identifier_token40] = ACTIONS(1723), - [anon_sym_def] = ACTIONS(1721), - [anon_sym_export_DASHenv] = ACTIONS(1721), - [anon_sym_extern] = ACTIONS(1721), - [anon_sym_module] = ACTIONS(1721), - [anon_sym_use] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1723), - [anon_sym_error] = ACTIONS(1721), - [anon_sym_list] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_break] = ACTIONS(1721), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_for] = ACTIONS(1721), - [anon_sym_in] = ACTIONS(1721), - [anon_sym_loop] = ACTIONS(1721), - [anon_sym_make] = ACTIONS(1721), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_do] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_else] = ACTIONS(1721), - [anon_sym_match] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_try] = ACTIONS(1721), - [anon_sym_catch] = ACTIONS(1721), - [anon_sym_return] = ACTIONS(1721), - [anon_sym_source] = ACTIONS(1721), - [anon_sym_source_DASHenv] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1721), - [anon_sym_hide] = ACTIONS(1721), - [anon_sym_hide_DASHenv] = ACTIONS(1721), - [anon_sym_overlay] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1721), - [anon_sym_as] = ACTIONS(1721), - [anon_sym_LPAREN2] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1723), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token3] = ACTIONS(1723), - [aux_sym__val_number_decimal_token4] = ACTIONS(1723), - [aux_sym__val_number_token1] = ACTIONS(1723), - [aux_sym__val_number_token2] = ACTIONS(1723), - [aux_sym__val_number_token3] = ACTIONS(1723), - [anon_sym_DQUOTE] = ACTIONS(1723), - [sym__str_single_quotes] = ACTIONS(1723), - [sym__str_back_ticks] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1723), - [anon_sym_PLUS] = ACTIONS(1721), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(247), - }, - [498] = { - [sym_comment] = STATE(498), - [aux_sym__multiple_types_repeat1] = STATE(527), - [anon_sym_export] = ACTIONS(2275), - [anon_sym_alias] = ACTIONS(2275), - [anon_sym_let] = ACTIONS(2275), - [anon_sym_let_DASHenv] = ACTIONS(2275), - [anon_sym_mut] = ACTIONS(2275), - [anon_sym_const] = ACTIONS(2275), - [aux_sym_cmd_identifier_token1] = ACTIONS(2275), - [aux_sym_cmd_identifier_token2] = ACTIONS(2275), - [aux_sym_cmd_identifier_token3] = ACTIONS(2275), - [aux_sym_cmd_identifier_token4] = ACTIONS(2275), - [aux_sym_cmd_identifier_token5] = ACTIONS(2275), - [aux_sym_cmd_identifier_token6] = ACTIONS(2275), - [aux_sym_cmd_identifier_token7] = ACTIONS(2275), - [aux_sym_cmd_identifier_token8] = ACTIONS(2275), - [aux_sym_cmd_identifier_token9] = ACTIONS(2275), - [aux_sym_cmd_identifier_token10] = ACTIONS(2275), - [aux_sym_cmd_identifier_token11] = ACTIONS(2275), - [aux_sym_cmd_identifier_token12] = ACTIONS(2275), - [aux_sym_cmd_identifier_token13] = ACTIONS(2275), - [aux_sym_cmd_identifier_token14] = ACTIONS(2275), - [aux_sym_cmd_identifier_token15] = ACTIONS(2275), - [aux_sym_cmd_identifier_token16] = ACTIONS(2275), - [aux_sym_cmd_identifier_token17] = ACTIONS(2275), - [aux_sym_cmd_identifier_token18] = ACTIONS(2275), - [aux_sym_cmd_identifier_token19] = ACTIONS(2275), - [aux_sym_cmd_identifier_token20] = ACTIONS(2275), - [aux_sym_cmd_identifier_token21] = ACTIONS(2275), - [aux_sym_cmd_identifier_token22] = ACTIONS(2275), - [aux_sym_cmd_identifier_token23] = ACTIONS(2275), - [aux_sym_cmd_identifier_token24] = ACTIONS(2275), - [aux_sym_cmd_identifier_token25] = ACTIONS(2275), - [aux_sym_cmd_identifier_token26] = ACTIONS(2275), - [aux_sym_cmd_identifier_token27] = ACTIONS(2275), - [aux_sym_cmd_identifier_token28] = ACTIONS(2275), - [aux_sym_cmd_identifier_token29] = ACTIONS(2275), - [aux_sym_cmd_identifier_token30] = ACTIONS(2275), - [aux_sym_cmd_identifier_token31] = ACTIONS(2275), - [aux_sym_cmd_identifier_token32] = ACTIONS(2275), - [aux_sym_cmd_identifier_token33] = ACTIONS(2275), - [aux_sym_cmd_identifier_token34] = ACTIONS(2275), - [aux_sym_cmd_identifier_token35] = ACTIONS(2275), - [aux_sym_cmd_identifier_token36] = ACTIONS(2275), - [anon_sym_true] = ACTIONS(2275), - [anon_sym_false] = ACTIONS(2275), - [anon_sym_null] = ACTIONS(2275), - [aux_sym_cmd_identifier_token38] = ACTIONS(2275), - [aux_sym_cmd_identifier_token39] = ACTIONS(2275), - [aux_sym_cmd_identifier_token40] = ACTIONS(2275), - [anon_sym_def] = ACTIONS(2275), - [anon_sym_export_DASHenv] = ACTIONS(2275), - [anon_sym_extern] = ACTIONS(2275), - [anon_sym_module] = ACTIONS(2275), - [anon_sym_use] = ACTIONS(2275), - [anon_sym_LPAREN] = ACTIONS(2275), - [anon_sym_DOLLAR] = ACTIONS(2275), - [anon_sym_error] = ACTIONS(2275), - [anon_sym_list] = ACTIONS(2275), - [anon_sym_DASH] = ACTIONS(2275), - [anon_sym_break] = ACTIONS(2275), - [anon_sym_continue] = ACTIONS(2275), - [anon_sym_for] = ACTIONS(2275), - [anon_sym_in] = ACTIONS(2275), - [anon_sym_loop] = ACTIONS(2275), - [anon_sym_make] = ACTIONS(2275), - [anon_sym_while] = ACTIONS(2275), - [anon_sym_do] = ACTIONS(2275), - [anon_sym_if] = ACTIONS(2275), - [anon_sym_else] = ACTIONS(2275), - [anon_sym_match] = ACTIONS(2275), - [anon_sym_RBRACE] = ACTIONS(2277), - [anon_sym_try] = ACTIONS(2275), - [anon_sym_catch] = ACTIONS(2275), - [anon_sym_return] = ACTIONS(2275), - [anon_sym_source] = ACTIONS(2275), - [anon_sym_source_DASHenv] = ACTIONS(2275), - [anon_sym_register] = ACTIONS(2275), - [anon_sym_hide] = ACTIONS(2275), - [anon_sym_hide_DASHenv] = ACTIONS(2275), - [anon_sym_overlay] = ACTIONS(2275), - [anon_sym_new] = ACTIONS(2275), - [anon_sym_as] = ACTIONS(2275), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2275), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2275), - [aux_sym__val_number_decimal_token1] = ACTIONS(2275), - [aux_sym__val_number_decimal_token2] = ACTIONS(2275), - [aux_sym__val_number_decimal_token3] = ACTIONS(2275), - [aux_sym__val_number_decimal_token4] = ACTIONS(2275), - [aux_sym__val_number_token1] = ACTIONS(2275), - [aux_sym__val_number_token2] = ACTIONS(2275), - [aux_sym__val_number_token3] = ACTIONS(2275), - [anon_sym_DQUOTE] = ACTIONS(2275), - [sym__str_single_quotes] = ACTIONS(2275), - [sym__str_back_ticks] = ACTIONS(2275), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2275), - [sym__entry_separator] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2275), - [anon_sym_POUND] = ACTIONS(3), - }, - [499] = { - [sym_comment] = STATE(499), - [anon_sym_export] = ACTIONS(2281), - [anon_sym_alias] = ACTIONS(2281), - [anon_sym_let] = ACTIONS(2281), - [anon_sym_let_DASHenv] = ACTIONS(2281), - [anon_sym_mut] = ACTIONS(2281), - [anon_sym_const] = ACTIONS(2281), - [aux_sym_cmd_identifier_token1] = ACTIONS(2281), - [aux_sym_cmd_identifier_token2] = ACTIONS(2281), - [aux_sym_cmd_identifier_token3] = ACTIONS(2281), - [aux_sym_cmd_identifier_token4] = ACTIONS(2281), - [aux_sym_cmd_identifier_token5] = ACTIONS(2281), - [aux_sym_cmd_identifier_token6] = ACTIONS(2281), - [aux_sym_cmd_identifier_token7] = ACTIONS(2281), - [aux_sym_cmd_identifier_token8] = ACTIONS(2281), - [aux_sym_cmd_identifier_token9] = ACTIONS(2281), - [aux_sym_cmd_identifier_token10] = ACTIONS(2281), - [aux_sym_cmd_identifier_token11] = ACTIONS(2281), - [aux_sym_cmd_identifier_token12] = ACTIONS(2281), - [aux_sym_cmd_identifier_token13] = ACTIONS(2281), - [aux_sym_cmd_identifier_token14] = ACTIONS(2281), - [aux_sym_cmd_identifier_token15] = ACTIONS(2281), - [aux_sym_cmd_identifier_token16] = ACTIONS(2281), - [aux_sym_cmd_identifier_token17] = ACTIONS(2281), - [aux_sym_cmd_identifier_token18] = ACTIONS(2281), - [aux_sym_cmd_identifier_token19] = ACTIONS(2281), - [aux_sym_cmd_identifier_token20] = ACTIONS(2281), - [aux_sym_cmd_identifier_token21] = ACTIONS(2281), - [aux_sym_cmd_identifier_token22] = ACTIONS(2281), - [aux_sym_cmd_identifier_token23] = ACTIONS(2281), - [aux_sym_cmd_identifier_token24] = ACTIONS(2281), - [aux_sym_cmd_identifier_token25] = ACTIONS(2281), - [aux_sym_cmd_identifier_token26] = ACTIONS(2281), - [aux_sym_cmd_identifier_token27] = ACTIONS(2281), - [aux_sym_cmd_identifier_token28] = ACTIONS(2281), - [aux_sym_cmd_identifier_token29] = ACTIONS(2281), - [aux_sym_cmd_identifier_token30] = ACTIONS(2281), - [aux_sym_cmd_identifier_token31] = ACTIONS(2281), - [aux_sym_cmd_identifier_token32] = ACTIONS(2281), - [aux_sym_cmd_identifier_token33] = ACTIONS(2281), - [aux_sym_cmd_identifier_token34] = ACTIONS(2281), - [aux_sym_cmd_identifier_token35] = ACTIONS(2281), - [aux_sym_cmd_identifier_token36] = ACTIONS(2281), - [anon_sym_true] = ACTIONS(2281), - [anon_sym_false] = ACTIONS(2281), - [anon_sym_null] = ACTIONS(2281), - [aux_sym_cmd_identifier_token38] = ACTIONS(2281), - [aux_sym_cmd_identifier_token39] = ACTIONS(2281), - [aux_sym_cmd_identifier_token40] = ACTIONS(2281), - [anon_sym_def] = ACTIONS(2281), - [anon_sym_export_DASHenv] = ACTIONS(2281), - [anon_sym_extern] = ACTIONS(2281), - [anon_sym_module] = ACTIONS(2281), - [anon_sym_use] = ACTIONS(2281), - [anon_sym_RBRACK] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_DOLLAR] = ACTIONS(2281), - [anon_sym_error] = ACTIONS(2281), - [anon_sym_list] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_break] = ACTIONS(2281), - [anon_sym_continue] = ACTIONS(2281), - [anon_sym_for] = ACTIONS(2281), - [anon_sym_in] = ACTIONS(2281), - [anon_sym_loop] = ACTIONS(2281), - [anon_sym_make] = ACTIONS(2281), - [anon_sym_while] = ACTIONS(2281), - [anon_sym_do] = ACTIONS(2281), - [anon_sym_if] = ACTIONS(2281), - [anon_sym_else] = ACTIONS(2281), - [anon_sym_match] = ACTIONS(2281), - [anon_sym_RBRACE] = ACTIONS(2281), - [anon_sym_try] = ACTIONS(2281), - [anon_sym_catch] = ACTIONS(2281), - [anon_sym_return] = ACTIONS(2281), - [anon_sym_source] = ACTIONS(2281), - [anon_sym_source_DASHenv] = ACTIONS(2281), - [anon_sym_register] = ACTIONS(2281), - [anon_sym_hide] = ACTIONS(2281), - [anon_sym_hide_DASHenv] = ACTIONS(2281), - [anon_sym_overlay] = ACTIONS(2281), - [anon_sym_new] = ACTIONS(2281), - [anon_sym_as] = ACTIONS(2281), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2281), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2281), - [aux_sym__val_number_decimal_token1] = ACTIONS(2281), - [aux_sym__val_number_decimal_token2] = ACTIONS(2281), - [aux_sym__val_number_decimal_token3] = ACTIONS(2281), - [aux_sym__val_number_decimal_token4] = ACTIONS(2281), - [aux_sym__val_number_token1] = ACTIONS(2281), - [aux_sym__val_number_token2] = ACTIONS(2281), - [aux_sym__val_number_token3] = ACTIONS(2281), - [anon_sym_DQUOTE] = ACTIONS(2281), - [sym__str_single_quotes] = ACTIONS(2281), - [sym__str_back_ticks] = ACTIONS(2281), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2281), - [sym__entry_separator] = ACTIONS(2283), - [anon_sym_PLUS] = ACTIONS(2281), - [anon_sym_POUND] = ACTIONS(3), - }, - [500] = { - [sym_comment] = STATE(500), - [anon_sym_export] = ACTIONS(998), - [anon_sym_alias] = ACTIONS(998), - [anon_sym_let] = ACTIONS(998), - [anon_sym_let_DASHenv] = ACTIONS(998), - [anon_sym_mut] = ACTIONS(998), - [anon_sym_const] = ACTIONS(998), - [aux_sym_cmd_identifier_token1] = ACTIONS(998), - [aux_sym_cmd_identifier_token2] = ACTIONS(998), - [aux_sym_cmd_identifier_token3] = ACTIONS(998), - [aux_sym_cmd_identifier_token4] = ACTIONS(998), - [aux_sym_cmd_identifier_token5] = ACTIONS(998), - [aux_sym_cmd_identifier_token6] = ACTIONS(998), - [aux_sym_cmd_identifier_token7] = ACTIONS(998), - [aux_sym_cmd_identifier_token8] = ACTIONS(998), - [aux_sym_cmd_identifier_token9] = ACTIONS(998), - [aux_sym_cmd_identifier_token10] = ACTIONS(998), - [aux_sym_cmd_identifier_token11] = ACTIONS(998), - [aux_sym_cmd_identifier_token12] = ACTIONS(998), - [aux_sym_cmd_identifier_token13] = ACTIONS(998), - [aux_sym_cmd_identifier_token14] = ACTIONS(998), - [aux_sym_cmd_identifier_token15] = ACTIONS(998), - [aux_sym_cmd_identifier_token16] = ACTIONS(998), - [aux_sym_cmd_identifier_token17] = ACTIONS(998), - [aux_sym_cmd_identifier_token18] = ACTIONS(998), - [aux_sym_cmd_identifier_token19] = ACTIONS(998), - [aux_sym_cmd_identifier_token20] = ACTIONS(998), - [aux_sym_cmd_identifier_token21] = ACTIONS(998), - [aux_sym_cmd_identifier_token22] = ACTIONS(998), - [aux_sym_cmd_identifier_token23] = ACTIONS(998), - [aux_sym_cmd_identifier_token24] = ACTIONS(998), - [aux_sym_cmd_identifier_token25] = ACTIONS(998), - [aux_sym_cmd_identifier_token26] = ACTIONS(998), - [aux_sym_cmd_identifier_token27] = ACTIONS(998), - [aux_sym_cmd_identifier_token28] = ACTIONS(998), - [aux_sym_cmd_identifier_token29] = ACTIONS(998), - [aux_sym_cmd_identifier_token30] = ACTIONS(998), - [aux_sym_cmd_identifier_token31] = ACTIONS(998), - [aux_sym_cmd_identifier_token32] = ACTIONS(998), - [aux_sym_cmd_identifier_token33] = ACTIONS(998), - [aux_sym_cmd_identifier_token34] = ACTIONS(998), - [aux_sym_cmd_identifier_token35] = ACTIONS(998), - [aux_sym_cmd_identifier_token36] = ACTIONS(998), - [anon_sym_true] = ACTIONS(1004), - [anon_sym_false] = ACTIONS(1004), - [anon_sym_null] = ACTIONS(1004), - [aux_sym_cmd_identifier_token38] = ACTIONS(998), - [aux_sym_cmd_identifier_token39] = ACTIONS(1004), - [aux_sym_cmd_identifier_token40] = ACTIONS(1004), - [anon_sym_def] = ACTIONS(998), - [anon_sym_export_DASHenv] = ACTIONS(998), - [anon_sym_extern] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_use] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1004), - [anon_sym_COMMA] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_error] = ACTIONS(998), - [anon_sym_list] = ACTIONS(998), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_break] = ACTIONS(998), - [anon_sym_continue] = ACTIONS(998), - [anon_sym_for] = ACTIONS(998), - [anon_sym_in] = ACTIONS(998), - [anon_sym_loop] = ACTIONS(998), - [anon_sym_make] = ACTIONS(998), - [anon_sym_while] = ACTIONS(998), - [anon_sym_do] = ACTIONS(998), - [anon_sym_if] = ACTIONS(998), - [anon_sym_else] = ACTIONS(998), - [anon_sym_match] = ACTIONS(998), - [anon_sym_RBRACE] = ACTIONS(1004), - [anon_sym_try] = ACTIONS(998), - [anon_sym_catch] = ACTIONS(998), - [anon_sym_return] = ACTIONS(998), - [anon_sym_source] = ACTIONS(998), - [anon_sym_source_DASHenv] = ACTIONS(998), - [anon_sym_register] = ACTIONS(998), - [anon_sym_hide] = ACTIONS(998), - [anon_sym_hide_DASHenv] = ACTIONS(998), - [anon_sym_overlay] = ACTIONS(998), - [anon_sym_new] = ACTIONS(998), - [anon_sym_as] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1004), - [aux_sym__val_number_decimal_token1] = ACTIONS(998), - [aux_sym__val_number_decimal_token2] = ACTIONS(1004), - [aux_sym__val_number_decimal_token3] = ACTIONS(1004), - [aux_sym__val_number_decimal_token4] = ACTIONS(1004), - [aux_sym__val_number_token1] = ACTIONS(1004), - [aux_sym__val_number_token2] = ACTIONS(1004), - [aux_sym__val_number_token3] = ACTIONS(1004), - [anon_sym_DQUOTE] = ACTIONS(1004), - [sym__str_single_quotes] = ACTIONS(1004), - [sym__str_back_ticks] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1004), - [aux_sym_record_entry_token1] = ACTIONS(2285), - [anon_sym_PLUS] = ACTIONS(998), [anon_sym_POUND] = ACTIONS(247), }, - [501] = { - [sym_comment] = STATE(501), - [anon_sym_export] = ACTIONS(2287), - [anon_sym_alias] = ACTIONS(2287), - [anon_sym_let] = ACTIONS(2287), - [anon_sym_let_DASHenv] = ACTIONS(2287), - [anon_sym_mut] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [aux_sym_cmd_identifier_token1] = ACTIONS(2287), - [aux_sym_cmd_identifier_token2] = ACTIONS(2287), - [aux_sym_cmd_identifier_token3] = ACTIONS(2287), - [aux_sym_cmd_identifier_token4] = ACTIONS(2287), - [aux_sym_cmd_identifier_token5] = ACTIONS(2287), - [aux_sym_cmd_identifier_token6] = ACTIONS(2287), - [aux_sym_cmd_identifier_token7] = ACTIONS(2287), - [aux_sym_cmd_identifier_token8] = ACTIONS(2287), - [aux_sym_cmd_identifier_token9] = ACTIONS(2287), - [aux_sym_cmd_identifier_token10] = ACTIONS(2287), - [aux_sym_cmd_identifier_token11] = ACTIONS(2287), - [aux_sym_cmd_identifier_token12] = ACTIONS(2287), - [aux_sym_cmd_identifier_token13] = ACTIONS(2287), - [aux_sym_cmd_identifier_token14] = ACTIONS(2287), - [aux_sym_cmd_identifier_token15] = ACTIONS(2287), - [aux_sym_cmd_identifier_token16] = ACTIONS(2287), - [aux_sym_cmd_identifier_token17] = ACTIONS(2287), - [aux_sym_cmd_identifier_token18] = ACTIONS(2287), - [aux_sym_cmd_identifier_token19] = ACTIONS(2287), - [aux_sym_cmd_identifier_token20] = ACTIONS(2287), - [aux_sym_cmd_identifier_token21] = ACTIONS(2287), - [aux_sym_cmd_identifier_token22] = ACTIONS(2287), - [aux_sym_cmd_identifier_token23] = ACTIONS(2287), - [aux_sym_cmd_identifier_token24] = ACTIONS(2287), - [aux_sym_cmd_identifier_token25] = ACTIONS(2287), - [aux_sym_cmd_identifier_token26] = ACTIONS(2287), - [aux_sym_cmd_identifier_token27] = ACTIONS(2287), - [aux_sym_cmd_identifier_token28] = ACTIONS(2287), - [aux_sym_cmd_identifier_token29] = ACTIONS(2287), - [aux_sym_cmd_identifier_token30] = ACTIONS(2287), - [aux_sym_cmd_identifier_token31] = ACTIONS(2287), - [aux_sym_cmd_identifier_token32] = ACTIONS(2287), - [aux_sym_cmd_identifier_token33] = ACTIONS(2287), - [aux_sym_cmd_identifier_token34] = ACTIONS(2287), - [aux_sym_cmd_identifier_token35] = ACTIONS(2287), - [aux_sym_cmd_identifier_token36] = ACTIONS(2287), - [anon_sym_true] = ACTIONS(2287), - [anon_sym_false] = ACTIONS(2287), - [anon_sym_null] = ACTIONS(2287), - [aux_sym_cmd_identifier_token38] = ACTIONS(2287), - [aux_sym_cmd_identifier_token39] = ACTIONS(2287), - [aux_sym_cmd_identifier_token40] = ACTIONS(2287), - [anon_sym_def] = ACTIONS(2287), - [anon_sym_export_DASHenv] = ACTIONS(2287), - [anon_sym_extern] = ACTIONS(2287), - [anon_sym_module] = ACTIONS(2287), - [anon_sym_use] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_DOLLAR] = ACTIONS(2287), - [anon_sym_error] = ACTIONS(2287), - [anon_sym_list] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_in] = ACTIONS(2287), - [anon_sym_loop] = ACTIONS(2287), - [anon_sym_make] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2287), - [anon_sym_match] = ACTIONS(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_catch] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_source] = ACTIONS(2287), - [anon_sym_source_DASHenv] = ACTIONS(2287), - [anon_sym_register] = ACTIONS(2287), - [anon_sym_hide] = ACTIONS(2287), - [anon_sym_hide_DASHenv] = ACTIONS(2287), - [anon_sym_overlay] = ACTIONS(2287), - [anon_sym_new] = ACTIONS(2287), - [anon_sym_as] = ACTIONS(2287), - [anon_sym_LPAREN2] = ACTIONS(2289), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2287), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2287), - [aux_sym__val_number_decimal_token1] = ACTIONS(2287), - [aux_sym__val_number_decimal_token2] = ACTIONS(2287), - [aux_sym__val_number_decimal_token3] = ACTIONS(2287), - [aux_sym__val_number_decimal_token4] = ACTIONS(2287), - [aux_sym__val_number_token1] = ACTIONS(2287), - [aux_sym__val_number_token2] = ACTIONS(2287), - [aux_sym__val_number_token3] = ACTIONS(2287), - [anon_sym_DQUOTE] = ACTIONS(2287), - [sym__str_single_quotes] = ACTIONS(2287), - [sym__str_back_ticks] = ACTIONS(2287), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2287), - [sym__entry_separator] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_POUND] = ACTIONS(3), - }, - [502] = { - [sym_comment] = STATE(502), - [aux_sym__multiple_types_repeat1] = STATE(527), - [anon_sym_export] = ACTIONS(2275), - [anon_sym_alias] = ACTIONS(2275), - [anon_sym_let] = ACTIONS(2275), - [anon_sym_let_DASHenv] = ACTIONS(2275), - [anon_sym_mut] = ACTIONS(2275), - [anon_sym_const] = ACTIONS(2275), - [aux_sym_cmd_identifier_token1] = ACTIONS(2275), - [aux_sym_cmd_identifier_token2] = ACTIONS(2275), - [aux_sym_cmd_identifier_token3] = ACTIONS(2275), - [aux_sym_cmd_identifier_token4] = ACTIONS(2275), - [aux_sym_cmd_identifier_token5] = ACTIONS(2275), - [aux_sym_cmd_identifier_token6] = ACTIONS(2275), - [aux_sym_cmd_identifier_token7] = ACTIONS(2275), - [aux_sym_cmd_identifier_token8] = ACTIONS(2275), - [aux_sym_cmd_identifier_token9] = ACTIONS(2275), - [aux_sym_cmd_identifier_token10] = ACTIONS(2275), - [aux_sym_cmd_identifier_token11] = ACTIONS(2275), - [aux_sym_cmd_identifier_token12] = ACTIONS(2275), - [aux_sym_cmd_identifier_token13] = ACTIONS(2275), - [aux_sym_cmd_identifier_token14] = ACTIONS(2275), - [aux_sym_cmd_identifier_token15] = ACTIONS(2275), - [aux_sym_cmd_identifier_token16] = ACTIONS(2275), - [aux_sym_cmd_identifier_token17] = ACTIONS(2275), - [aux_sym_cmd_identifier_token18] = ACTIONS(2275), - [aux_sym_cmd_identifier_token19] = ACTIONS(2275), - [aux_sym_cmd_identifier_token20] = ACTIONS(2275), - [aux_sym_cmd_identifier_token21] = ACTIONS(2275), - [aux_sym_cmd_identifier_token22] = ACTIONS(2275), - [aux_sym_cmd_identifier_token23] = ACTIONS(2275), - [aux_sym_cmd_identifier_token24] = ACTIONS(2275), - [aux_sym_cmd_identifier_token25] = ACTIONS(2275), - [aux_sym_cmd_identifier_token26] = ACTIONS(2275), - [aux_sym_cmd_identifier_token27] = ACTIONS(2275), - [aux_sym_cmd_identifier_token28] = ACTIONS(2275), - [aux_sym_cmd_identifier_token29] = ACTIONS(2275), - [aux_sym_cmd_identifier_token30] = ACTIONS(2275), - [aux_sym_cmd_identifier_token31] = ACTIONS(2275), - [aux_sym_cmd_identifier_token32] = ACTIONS(2275), - [aux_sym_cmd_identifier_token33] = ACTIONS(2275), - [aux_sym_cmd_identifier_token34] = ACTIONS(2275), - [aux_sym_cmd_identifier_token35] = ACTIONS(2275), - [aux_sym_cmd_identifier_token36] = ACTIONS(2275), + [509] = { + [sym__expr_parenthesized_immediate] = STATE(7795), + [sym_comment] = STATE(509), + [anon_sym_export] = ACTIONS(2273), + [anon_sym_alias] = ACTIONS(2273), + [anon_sym_let] = ACTIONS(2273), + [anon_sym_let_DASHenv] = ACTIONS(2273), + [anon_sym_mut] = ACTIONS(2273), + [anon_sym_const] = ACTIONS(2273), + [aux_sym_cmd_identifier_token1] = ACTIONS(2273), + [aux_sym_cmd_identifier_token2] = ACTIONS(2273), + [aux_sym_cmd_identifier_token3] = ACTIONS(2273), + [aux_sym_cmd_identifier_token4] = ACTIONS(2273), + [aux_sym_cmd_identifier_token5] = ACTIONS(2273), + [aux_sym_cmd_identifier_token6] = ACTIONS(2273), + [aux_sym_cmd_identifier_token7] = ACTIONS(2273), + [aux_sym_cmd_identifier_token8] = ACTIONS(2273), + [aux_sym_cmd_identifier_token9] = ACTIONS(2273), + [aux_sym_cmd_identifier_token10] = ACTIONS(2273), + [aux_sym_cmd_identifier_token11] = ACTIONS(2273), + [aux_sym_cmd_identifier_token12] = ACTIONS(2273), + [aux_sym_cmd_identifier_token13] = ACTIONS(2273), + [aux_sym_cmd_identifier_token14] = ACTIONS(2273), + [aux_sym_cmd_identifier_token15] = ACTIONS(2273), + [aux_sym_cmd_identifier_token16] = ACTIONS(2273), + [aux_sym_cmd_identifier_token17] = ACTIONS(2273), + [aux_sym_cmd_identifier_token18] = ACTIONS(2273), + [aux_sym_cmd_identifier_token19] = ACTIONS(2273), + [aux_sym_cmd_identifier_token20] = ACTIONS(2273), + [aux_sym_cmd_identifier_token21] = ACTIONS(2273), + [aux_sym_cmd_identifier_token22] = ACTIONS(2273), + [aux_sym_cmd_identifier_token23] = ACTIONS(2273), + [aux_sym_cmd_identifier_token24] = ACTIONS(2273), + [aux_sym_cmd_identifier_token25] = ACTIONS(2273), + [aux_sym_cmd_identifier_token26] = ACTIONS(2273), + [aux_sym_cmd_identifier_token27] = ACTIONS(2273), + [aux_sym_cmd_identifier_token28] = ACTIONS(2273), + [aux_sym_cmd_identifier_token29] = ACTIONS(2273), + [aux_sym_cmd_identifier_token30] = ACTIONS(2273), + [aux_sym_cmd_identifier_token31] = ACTIONS(2273), + [aux_sym_cmd_identifier_token32] = ACTIONS(2273), + [aux_sym_cmd_identifier_token33] = ACTIONS(2273), + [aux_sym_cmd_identifier_token34] = ACTIONS(2273), + [aux_sym_cmd_identifier_token35] = ACTIONS(2273), + [aux_sym_cmd_identifier_token36] = ACTIONS(2273), [anon_sym_true] = ACTIONS(2275), [anon_sym_false] = ACTIONS(2275), [anon_sym_null] = ACTIONS(2275), - [aux_sym_cmd_identifier_token38] = ACTIONS(2275), + [aux_sym_cmd_identifier_token38] = ACTIONS(2273), [aux_sym_cmd_identifier_token39] = ACTIONS(2275), [aux_sym_cmd_identifier_token40] = ACTIONS(2275), - [anon_sym_def] = ACTIONS(2275), - [anon_sym_export_DASHenv] = ACTIONS(2275), - [anon_sym_extern] = ACTIONS(2275), - [anon_sym_module] = ACTIONS(2275), - [anon_sym_use] = ACTIONS(2275), - [anon_sym_LPAREN] = ACTIONS(2275), + [anon_sym_def] = ACTIONS(2273), + [anon_sym_export_DASHenv] = ACTIONS(2273), + [anon_sym_extern] = ACTIONS(2273), + [anon_sym_module] = ACTIONS(2273), + [anon_sym_use] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2273), [anon_sym_DOLLAR] = ACTIONS(2275), - [anon_sym_error] = ACTIONS(2275), - [anon_sym_list] = ACTIONS(2275), - [anon_sym_DASH] = ACTIONS(2275), - [anon_sym_break] = ACTIONS(2275), - [anon_sym_continue] = ACTIONS(2275), - [anon_sym_for] = ACTIONS(2275), - [anon_sym_in] = ACTIONS(2275), - [anon_sym_loop] = ACTIONS(2275), - [anon_sym_make] = ACTIONS(2275), - [anon_sym_while] = ACTIONS(2275), - [anon_sym_do] = ACTIONS(2275), - [anon_sym_if] = ACTIONS(2275), - [anon_sym_else] = ACTIONS(2275), - [anon_sym_match] = ACTIONS(2275), - [anon_sym_RBRACE] = ACTIONS(2291), - [anon_sym_try] = ACTIONS(2275), - [anon_sym_catch] = ACTIONS(2275), - [anon_sym_return] = ACTIONS(2275), - [anon_sym_source] = ACTIONS(2275), - [anon_sym_source_DASHenv] = ACTIONS(2275), - [anon_sym_register] = ACTIONS(2275), - [anon_sym_hide] = ACTIONS(2275), - [anon_sym_hide_DASHenv] = ACTIONS(2275), - [anon_sym_overlay] = ACTIONS(2275), - [anon_sym_new] = ACTIONS(2275), - [anon_sym_as] = ACTIONS(2275), + [anon_sym_error] = ACTIONS(2273), + [anon_sym_list] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_break] = ACTIONS(2273), + [anon_sym_continue] = ACTIONS(2273), + [anon_sym_for] = ACTIONS(2273), + [anon_sym_in] = ACTIONS(2273), + [anon_sym_loop] = ACTIONS(2273), + [anon_sym_make] = ACTIONS(2273), + [anon_sym_while] = ACTIONS(2273), + [anon_sym_do] = ACTIONS(2273), + [anon_sym_if] = ACTIONS(2273), + [anon_sym_else] = ACTIONS(2273), + [anon_sym_match] = ACTIONS(2273), + [anon_sym_RBRACE] = ACTIONS(2275), + [anon_sym_try] = ACTIONS(2273), + [anon_sym_catch] = ACTIONS(2273), + [anon_sym_return] = ACTIONS(2273), + [anon_sym_source] = ACTIONS(2273), + [anon_sym_source_DASHenv] = ACTIONS(2273), + [anon_sym_register] = ACTIONS(2273), + [anon_sym_hide] = ACTIONS(2273), + [anon_sym_hide_DASHenv] = ACTIONS(2273), + [anon_sym_overlay] = ACTIONS(2273), + [anon_sym_new] = ACTIONS(2273), + [anon_sym_as] = ACTIONS(2273), + [anon_sym_LPAREN2] = ACTIONS(1577), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2275), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2275), - [aux_sym__val_number_decimal_token1] = ACTIONS(2275), + [aux_sym__val_number_decimal_token1] = ACTIONS(2273), [aux_sym__val_number_decimal_token2] = ACTIONS(2275), [aux_sym__val_number_decimal_token3] = ACTIONS(2275), [aux_sym__val_number_decimal_token4] = ACTIONS(2275), @@ -134323,9122 +130930,8495 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(2275), [sym__str_back_ticks] = ACTIONS(2275), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2275), - [sym__entry_separator] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2275), - [anon_sym_POUND] = ACTIONS(3), - }, - [503] = { - [sym_comment] = STATE(503), - [anon_sym_export] = ACTIONS(970), - [anon_sym_alias] = ACTIONS(970), - [anon_sym_let] = ACTIONS(970), - [anon_sym_let_DASHenv] = ACTIONS(970), - [anon_sym_mut] = ACTIONS(970), - [anon_sym_const] = ACTIONS(970), - [aux_sym_cmd_identifier_token1] = ACTIONS(970), - [aux_sym_cmd_identifier_token2] = ACTIONS(970), - [aux_sym_cmd_identifier_token3] = ACTIONS(970), - [aux_sym_cmd_identifier_token4] = ACTIONS(970), - [aux_sym_cmd_identifier_token5] = ACTIONS(970), - [aux_sym_cmd_identifier_token6] = ACTIONS(970), - [aux_sym_cmd_identifier_token7] = ACTIONS(970), - [aux_sym_cmd_identifier_token8] = ACTIONS(970), - [aux_sym_cmd_identifier_token9] = ACTIONS(970), - [aux_sym_cmd_identifier_token10] = ACTIONS(970), - [aux_sym_cmd_identifier_token11] = ACTIONS(970), - [aux_sym_cmd_identifier_token12] = ACTIONS(970), - [aux_sym_cmd_identifier_token13] = ACTIONS(970), - [aux_sym_cmd_identifier_token14] = ACTIONS(970), - [aux_sym_cmd_identifier_token15] = ACTIONS(970), - [aux_sym_cmd_identifier_token16] = ACTIONS(970), - [aux_sym_cmd_identifier_token17] = ACTIONS(970), - [aux_sym_cmd_identifier_token18] = ACTIONS(970), - [aux_sym_cmd_identifier_token19] = ACTIONS(970), - [aux_sym_cmd_identifier_token20] = ACTIONS(970), - [aux_sym_cmd_identifier_token21] = ACTIONS(970), - [aux_sym_cmd_identifier_token22] = ACTIONS(970), - [aux_sym_cmd_identifier_token23] = ACTIONS(970), - [aux_sym_cmd_identifier_token24] = ACTIONS(970), - [aux_sym_cmd_identifier_token25] = ACTIONS(970), - [aux_sym_cmd_identifier_token26] = ACTIONS(970), - [aux_sym_cmd_identifier_token27] = ACTIONS(970), - [aux_sym_cmd_identifier_token28] = ACTIONS(970), - [aux_sym_cmd_identifier_token29] = ACTIONS(970), - [aux_sym_cmd_identifier_token30] = ACTIONS(970), - [aux_sym_cmd_identifier_token31] = ACTIONS(970), - [aux_sym_cmd_identifier_token32] = ACTIONS(970), - [aux_sym_cmd_identifier_token33] = ACTIONS(970), - [aux_sym_cmd_identifier_token34] = ACTIONS(970), - [aux_sym_cmd_identifier_token35] = ACTIONS(970), - [aux_sym_cmd_identifier_token36] = ACTIONS(970), - [anon_sym_true] = ACTIONS(972), - [anon_sym_false] = ACTIONS(972), - [anon_sym_null] = ACTIONS(972), - [aux_sym_cmd_identifier_token38] = ACTIONS(970), - [aux_sym_cmd_identifier_token39] = ACTIONS(972), - [aux_sym_cmd_identifier_token40] = ACTIONS(972), - [anon_sym_def] = ACTIONS(970), - [anon_sym_export_DASHenv] = ACTIONS(970), - [anon_sym_extern] = ACTIONS(970), - [anon_sym_module] = ACTIONS(970), - [anon_sym_use] = ACTIONS(970), - [anon_sym_LPAREN] = ACTIONS(972), - [anon_sym_DOLLAR] = ACTIONS(972), - [anon_sym_error] = ACTIONS(970), - [anon_sym_list] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_break] = ACTIONS(970), - [anon_sym_continue] = ACTIONS(970), - [anon_sym_for] = ACTIONS(970), - [anon_sym_in] = ACTIONS(970), - [anon_sym_loop] = ACTIONS(970), - [anon_sym_make] = ACTIONS(970), - [anon_sym_while] = ACTIONS(970), - [anon_sym_do] = ACTIONS(970), - [anon_sym_if] = ACTIONS(970), - [anon_sym_else] = ACTIONS(970), - [anon_sym_match] = ACTIONS(970), - [anon_sym_RBRACE] = ACTIONS(972), - [anon_sym_try] = ACTIONS(970), - [anon_sym_catch] = ACTIONS(970), - [anon_sym_return] = ACTIONS(970), - [anon_sym_source] = ACTIONS(970), - [anon_sym_source_DASHenv] = ACTIONS(970), - [anon_sym_register] = ACTIONS(970), - [anon_sym_hide] = ACTIONS(970), - [anon_sym_hide_DASHenv] = ACTIONS(970), - [anon_sym_overlay] = ACTIONS(970), - [anon_sym_new] = ACTIONS(970), - [anon_sym_as] = ACTIONS(970), - [anon_sym_QMARK2] = ACTIONS(2293), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(972), - [anon_sym_DOT] = ACTIONS(970), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(972), - [aux_sym__val_number_decimal_token1] = ACTIONS(970), - [aux_sym__val_number_decimal_token2] = ACTIONS(972), - [aux_sym__val_number_decimal_token3] = ACTIONS(972), - [aux_sym__val_number_decimal_token4] = ACTIONS(972), - [aux_sym__val_number_token1] = ACTIONS(972), - [aux_sym__val_number_token2] = ACTIONS(972), - [aux_sym__val_number_token3] = ACTIONS(972), - [anon_sym_DQUOTE] = ACTIONS(972), - [sym__str_single_quotes] = ACTIONS(972), - [sym__str_back_ticks] = ACTIONS(972), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(970), - [anon_sym_POUND] = ACTIONS(247), - }, - [504] = { - [sym_comment] = STATE(504), - [anon_sym_export] = ACTIONS(2295), - [anon_sym_alias] = ACTIONS(2295), - [anon_sym_let] = ACTIONS(2295), - [anon_sym_let_DASHenv] = ACTIONS(2295), - [anon_sym_mut] = ACTIONS(2295), - [anon_sym_const] = ACTIONS(2295), - [aux_sym_cmd_identifier_token1] = ACTIONS(2295), - [aux_sym_cmd_identifier_token2] = ACTIONS(2295), - [aux_sym_cmd_identifier_token3] = ACTIONS(2295), - [aux_sym_cmd_identifier_token4] = ACTIONS(2295), - [aux_sym_cmd_identifier_token5] = ACTIONS(2295), - [aux_sym_cmd_identifier_token6] = ACTIONS(2295), - [aux_sym_cmd_identifier_token7] = ACTIONS(2295), - [aux_sym_cmd_identifier_token8] = ACTIONS(2295), - [aux_sym_cmd_identifier_token9] = ACTIONS(2295), - [aux_sym_cmd_identifier_token10] = ACTIONS(2295), - [aux_sym_cmd_identifier_token11] = ACTIONS(2295), - [aux_sym_cmd_identifier_token12] = ACTIONS(2295), - [aux_sym_cmd_identifier_token13] = ACTIONS(2295), - [aux_sym_cmd_identifier_token14] = ACTIONS(2295), - [aux_sym_cmd_identifier_token15] = ACTIONS(2295), - [aux_sym_cmd_identifier_token16] = ACTIONS(2295), - [aux_sym_cmd_identifier_token17] = ACTIONS(2295), - [aux_sym_cmd_identifier_token18] = ACTIONS(2295), - [aux_sym_cmd_identifier_token19] = ACTIONS(2295), - [aux_sym_cmd_identifier_token20] = ACTIONS(2295), - [aux_sym_cmd_identifier_token21] = ACTIONS(2295), - [aux_sym_cmd_identifier_token22] = ACTIONS(2295), - [aux_sym_cmd_identifier_token23] = ACTIONS(2295), - [aux_sym_cmd_identifier_token24] = ACTIONS(2295), - [aux_sym_cmd_identifier_token25] = ACTIONS(2295), - [aux_sym_cmd_identifier_token26] = ACTIONS(2295), - [aux_sym_cmd_identifier_token27] = ACTIONS(2295), - [aux_sym_cmd_identifier_token28] = ACTIONS(2295), - [aux_sym_cmd_identifier_token29] = ACTIONS(2295), - [aux_sym_cmd_identifier_token30] = ACTIONS(2295), - [aux_sym_cmd_identifier_token31] = ACTIONS(2295), - [aux_sym_cmd_identifier_token32] = ACTIONS(2295), - [aux_sym_cmd_identifier_token33] = ACTIONS(2295), - [aux_sym_cmd_identifier_token34] = ACTIONS(2295), - [aux_sym_cmd_identifier_token35] = ACTIONS(2295), - [aux_sym_cmd_identifier_token36] = ACTIONS(2295), - [anon_sym_true] = ACTIONS(2295), - [anon_sym_false] = ACTIONS(2295), - [anon_sym_null] = ACTIONS(2295), - [aux_sym_cmd_identifier_token38] = ACTIONS(2295), - [aux_sym_cmd_identifier_token39] = ACTIONS(2295), - [aux_sym_cmd_identifier_token40] = ACTIONS(2295), - [anon_sym_def] = ACTIONS(2295), - [anon_sym_export_DASHenv] = ACTIONS(2295), - [anon_sym_extern] = ACTIONS(2295), - [anon_sym_module] = ACTIONS(2295), - [anon_sym_use] = ACTIONS(2295), - [anon_sym_RBRACK] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(2295), - [anon_sym_DOLLAR] = ACTIONS(2295), - [anon_sym_error] = ACTIONS(2295), - [anon_sym_list] = ACTIONS(2295), - [anon_sym_DASH] = ACTIONS(2295), - [anon_sym_break] = ACTIONS(2295), - [anon_sym_continue] = ACTIONS(2295), - [anon_sym_for] = ACTIONS(2295), - [anon_sym_in] = ACTIONS(2295), - [anon_sym_loop] = ACTIONS(2295), - [anon_sym_make] = ACTIONS(2295), - [anon_sym_while] = ACTIONS(2295), - [anon_sym_do] = ACTIONS(2295), - [anon_sym_if] = ACTIONS(2295), - [anon_sym_else] = ACTIONS(2295), - [anon_sym_match] = ACTIONS(2295), - [anon_sym_RBRACE] = ACTIONS(2295), - [anon_sym_try] = ACTIONS(2295), - [anon_sym_catch] = ACTIONS(2295), - [anon_sym_return] = ACTIONS(2295), - [anon_sym_source] = ACTIONS(2295), - [anon_sym_source_DASHenv] = ACTIONS(2295), - [anon_sym_register] = ACTIONS(2295), - [anon_sym_hide] = ACTIONS(2295), - [anon_sym_hide_DASHenv] = ACTIONS(2295), - [anon_sym_overlay] = ACTIONS(2295), - [anon_sym_new] = ACTIONS(2295), - [anon_sym_as] = ACTIONS(2295), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2295), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2295), - [aux_sym__val_number_decimal_token1] = ACTIONS(2295), - [aux_sym__val_number_decimal_token2] = ACTIONS(2295), - [aux_sym__val_number_decimal_token3] = ACTIONS(2295), - [aux_sym__val_number_decimal_token4] = ACTIONS(2295), - [aux_sym__val_number_token1] = ACTIONS(2295), - [aux_sym__val_number_token2] = ACTIONS(2295), - [aux_sym__val_number_token3] = ACTIONS(2295), - [anon_sym_DQUOTE] = ACTIONS(2295), - [sym__str_single_quotes] = ACTIONS(2295), - [sym__str_back_ticks] = ACTIONS(2295), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2295), - [sym__entry_separator] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2295), - [anon_sym_POUND] = ACTIONS(3), - }, - [505] = { - [sym_comment] = STATE(505), - [aux_sym__multiple_types_repeat1] = STATE(516), - [anon_sym_export] = ACTIONS(2299), - [anon_sym_alias] = ACTIONS(2299), - [anon_sym_let] = ACTIONS(2299), - [anon_sym_let_DASHenv] = ACTIONS(2299), - [anon_sym_mut] = ACTIONS(2299), - [anon_sym_const] = ACTIONS(2299), - [aux_sym_cmd_identifier_token1] = ACTIONS(2299), - [aux_sym_cmd_identifier_token2] = ACTIONS(2299), - [aux_sym_cmd_identifier_token3] = ACTIONS(2299), - [aux_sym_cmd_identifier_token4] = ACTIONS(2299), - [aux_sym_cmd_identifier_token5] = ACTIONS(2299), - [aux_sym_cmd_identifier_token6] = ACTIONS(2299), - [aux_sym_cmd_identifier_token7] = ACTIONS(2299), - [aux_sym_cmd_identifier_token8] = ACTIONS(2299), - [aux_sym_cmd_identifier_token9] = ACTIONS(2299), - [aux_sym_cmd_identifier_token10] = ACTIONS(2299), - [aux_sym_cmd_identifier_token11] = ACTIONS(2299), - [aux_sym_cmd_identifier_token12] = ACTIONS(2299), - [aux_sym_cmd_identifier_token13] = ACTIONS(2299), - [aux_sym_cmd_identifier_token14] = ACTIONS(2299), - [aux_sym_cmd_identifier_token15] = ACTIONS(2299), - [aux_sym_cmd_identifier_token16] = ACTIONS(2299), - [aux_sym_cmd_identifier_token17] = ACTIONS(2299), - [aux_sym_cmd_identifier_token18] = ACTIONS(2299), - [aux_sym_cmd_identifier_token19] = ACTIONS(2299), - [aux_sym_cmd_identifier_token20] = ACTIONS(2299), - [aux_sym_cmd_identifier_token21] = ACTIONS(2299), - [aux_sym_cmd_identifier_token22] = ACTIONS(2299), - [aux_sym_cmd_identifier_token23] = ACTIONS(2299), - [aux_sym_cmd_identifier_token24] = ACTIONS(2299), - [aux_sym_cmd_identifier_token25] = ACTIONS(2299), - [aux_sym_cmd_identifier_token26] = ACTIONS(2299), - [aux_sym_cmd_identifier_token27] = ACTIONS(2299), - [aux_sym_cmd_identifier_token28] = ACTIONS(2299), - [aux_sym_cmd_identifier_token29] = ACTIONS(2299), - [aux_sym_cmd_identifier_token30] = ACTIONS(2299), - [aux_sym_cmd_identifier_token31] = ACTIONS(2299), - [aux_sym_cmd_identifier_token32] = ACTIONS(2299), - [aux_sym_cmd_identifier_token33] = ACTIONS(2299), - [aux_sym_cmd_identifier_token34] = ACTIONS(2299), - [aux_sym_cmd_identifier_token35] = ACTIONS(2299), - [aux_sym_cmd_identifier_token36] = ACTIONS(2299), - [anon_sym_true] = ACTIONS(2299), - [anon_sym_false] = ACTIONS(2299), - [anon_sym_null] = ACTIONS(2299), - [aux_sym_cmd_identifier_token38] = ACTIONS(2299), - [aux_sym_cmd_identifier_token39] = ACTIONS(2299), - [aux_sym_cmd_identifier_token40] = ACTIONS(2299), - [anon_sym_def] = ACTIONS(2299), - [anon_sym_export_DASHenv] = ACTIONS(2299), - [anon_sym_extern] = ACTIONS(2299), - [anon_sym_module] = ACTIONS(2299), - [anon_sym_use] = ACTIONS(2299), - [anon_sym_LPAREN] = ACTIONS(2299), - [anon_sym_DOLLAR] = ACTIONS(2299), - [anon_sym_error] = ACTIONS(2299), - [anon_sym_list] = ACTIONS(2299), - [anon_sym_DASH] = ACTIONS(2299), - [anon_sym_break] = ACTIONS(2299), - [anon_sym_continue] = ACTIONS(2299), - [anon_sym_for] = ACTIONS(2299), - [anon_sym_in] = ACTIONS(2299), - [anon_sym_loop] = ACTIONS(2299), - [anon_sym_make] = ACTIONS(2299), - [anon_sym_while] = ACTIONS(2299), - [anon_sym_do] = ACTIONS(2299), - [anon_sym_if] = ACTIONS(2299), - [anon_sym_else] = ACTIONS(2299), - [anon_sym_match] = ACTIONS(2299), - [anon_sym_RBRACE] = ACTIONS(2301), - [anon_sym_try] = ACTIONS(2299), - [anon_sym_catch] = ACTIONS(2299), - [anon_sym_return] = ACTIONS(2299), - [anon_sym_source] = ACTIONS(2299), - [anon_sym_source_DASHenv] = ACTIONS(2299), - [anon_sym_register] = ACTIONS(2299), - [anon_sym_hide] = ACTIONS(2299), - [anon_sym_hide_DASHenv] = ACTIONS(2299), - [anon_sym_overlay] = ACTIONS(2299), - [anon_sym_new] = ACTIONS(2299), - [anon_sym_as] = ACTIONS(2299), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2299), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2299), - [aux_sym__val_number_decimal_token1] = ACTIONS(2299), - [aux_sym__val_number_decimal_token2] = ACTIONS(2299), - [aux_sym__val_number_decimal_token3] = ACTIONS(2299), - [aux_sym__val_number_decimal_token4] = ACTIONS(2299), - [aux_sym__val_number_token1] = ACTIONS(2299), - [aux_sym__val_number_token2] = ACTIONS(2299), - [aux_sym__val_number_token3] = ACTIONS(2299), - [anon_sym_DQUOTE] = ACTIONS(2299), - [sym__str_single_quotes] = ACTIONS(2299), - [sym__str_back_ticks] = ACTIONS(2299), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2299), - [sym__entry_separator] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2299), - [anon_sym_POUND] = ACTIONS(3), - }, - [506] = { - [sym__expr_parenthesized_immediate] = STATE(7628), - [sym_comment] = STATE(506), - [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), - [aux_sym_cmd_identifier_token1] = ACTIONS(1905), - [aux_sym_cmd_identifier_token2] = ACTIONS(1905), - [aux_sym_cmd_identifier_token3] = ACTIONS(1905), - [aux_sym_cmd_identifier_token4] = ACTIONS(1905), - [aux_sym_cmd_identifier_token5] = ACTIONS(1905), - [aux_sym_cmd_identifier_token6] = ACTIONS(1905), - [aux_sym_cmd_identifier_token7] = ACTIONS(1905), - [aux_sym_cmd_identifier_token8] = ACTIONS(1905), - [aux_sym_cmd_identifier_token9] = ACTIONS(1905), - [aux_sym_cmd_identifier_token10] = ACTIONS(1905), - [aux_sym_cmd_identifier_token11] = ACTIONS(1905), - [aux_sym_cmd_identifier_token12] = ACTIONS(1905), - [aux_sym_cmd_identifier_token13] = ACTIONS(1905), - [aux_sym_cmd_identifier_token14] = ACTIONS(1905), - [aux_sym_cmd_identifier_token15] = ACTIONS(1905), - [aux_sym_cmd_identifier_token16] = ACTIONS(1905), - [aux_sym_cmd_identifier_token17] = ACTIONS(1905), - [aux_sym_cmd_identifier_token18] = ACTIONS(1905), - [aux_sym_cmd_identifier_token19] = ACTIONS(1905), - [aux_sym_cmd_identifier_token20] = ACTIONS(1905), - [aux_sym_cmd_identifier_token21] = ACTIONS(1905), - [aux_sym_cmd_identifier_token22] = ACTIONS(1905), - [aux_sym_cmd_identifier_token23] = ACTIONS(1905), - [aux_sym_cmd_identifier_token24] = ACTIONS(1905), - [aux_sym_cmd_identifier_token25] = ACTIONS(1905), - [aux_sym_cmd_identifier_token26] = ACTIONS(1905), - [aux_sym_cmd_identifier_token27] = ACTIONS(1905), - [aux_sym_cmd_identifier_token28] = ACTIONS(1905), - [aux_sym_cmd_identifier_token29] = ACTIONS(1905), - [aux_sym_cmd_identifier_token30] = ACTIONS(1905), - [aux_sym_cmd_identifier_token31] = ACTIONS(1905), - [aux_sym_cmd_identifier_token32] = ACTIONS(1905), - [aux_sym_cmd_identifier_token33] = ACTIONS(1905), - [aux_sym_cmd_identifier_token34] = ACTIONS(1905), - [aux_sym_cmd_identifier_token35] = ACTIONS(1905), - [aux_sym_cmd_identifier_token36] = ACTIONS(1905), - [anon_sym_true] = ACTIONS(1911), - [anon_sym_false] = ACTIONS(1911), - [anon_sym_null] = ACTIONS(1911), - [aux_sym_cmd_identifier_token38] = ACTIONS(1905), - [aux_sym_cmd_identifier_token39] = ACTIONS(1911), - [aux_sym_cmd_identifier_token40] = ACTIONS(1911), - [anon_sym_def] = 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_LPAREN] = ACTIONS(1905), - [anon_sym_DOLLAR] = ACTIONS(1911), - [anon_sym_error] = ACTIONS(1905), - [anon_sym_list] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_break] = ACTIONS(1905), - [anon_sym_continue] = ACTIONS(1905), - [anon_sym_for] = ACTIONS(1905), - [anon_sym_in] = ACTIONS(1905), - [anon_sym_loop] = ACTIONS(1905), - [anon_sym_make] = ACTIONS(1905), - [anon_sym_while] = ACTIONS(1905), - [anon_sym_do] = ACTIONS(1905), - [anon_sym_if] = ACTIONS(1905), - [anon_sym_else] = ACTIONS(1905), - [anon_sym_match] = ACTIONS(1905), - [anon_sym_RBRACE] = ACTIONS(1911), - [anon_sym_try] = ACTIONS(1905), - [anon_sym_catch] = 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_new] = ACTIONS(1905), - [anon_sym_as] = ACTIONS(1905), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1911), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1911), - [aux_sym__val_number_decimal_token1] = ACTIONS(1905), - [aux_sym__val_number_decimal_token2] = ACTIONS(1911), - [aux_sym__val_number_decimal_token3] = ACTIONS(1911), - [aux_sym__val_number_decimal_token4] = ACTIONS(1911), - [aux_sym__val_number_token1] = ACTIONS(1911), - [aux_sym__val_number_token2] = ACTIONS(1911), - [aux_sym__val_number_token3] = ACTIONS(1911), - [anon_sym_DQUOTE] = ACTIONS(1911), - [sym__str_single_quotes] = ACTIONS(1911), - [sym__str_back_ticks] = ACTIONS(1911), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1911), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_POUND] = ACTIONS(247), - }, - [507] = { - [sym_comment] = STATE(507), - [anon_sym_export] = ACTIONS(2303), - [anon_sym_alias] = ACTIONS(2303), - [anon_sym_let] = ACTIONS(2303), - [anon_sym_let_DASHenv] = ACTIONS(2303), - [anon_sym_mut] = ACTIONS(2303), - [anon_sym_const] = ACTIONS(2303), - [aux_sym_cmd_identifier_token1] = ACTIONS(2303), - [aux_sym_cmd_identifier_token2] = ACTIONS(2303), - [aux_sym_cmd_identifier_token3] = ACTIONS(2303), - [aux_sym_cmd_identifier_token4] = ACTIONS(2303), - [aux_sym_cmd_identifier_token5] = ACTIONS(2303), - [aux_sym_cmd_identifier_token6] = ACTIONS(2303), - [aux_sym_cmd_identifier_token7] = ACTIONS(2303), - [aux_sym_cmd_identifier_token8] = ACTIONS(2303), - [aux_sym_cmd_identifier_token9] = ACTIONS(2303), - [aux_sym_cmd_identifier_token10] = ACTIONS(2303), - [aux_sym_cmd_identifier_token11] = ACTIONS(2303), - [aux_sym_cmd_identifier_token12] = ACTIONS(2303), - [aux_sym_cmd_identifier_token13] = ACTIONS(2303), - [aux_sym_cmd_identifier_token14] = ACTIONS(2303), - [aux_sym_cmd_identifier_token15] = ACTIONS(2303), - [aux_sym_cmd_identifier_token16] = ACTIONS(2303), - [aux_sym_cmd_identifier_token17] = ACTIONS(2303), - [aux_sym_cmd_identifier_token18] = ACTIONS(2303), - [aux_sym_cmd_identifier_token19] = ACTIONS(2303), - [aux_sym_cmd_identifier_token20] = ACTIONS(2303), - [aux_sym_cmd_identifier_token21] = ACTIONS(2303), - [aux_sym_cmd_identifier_token22] = ACTIONS(2303), - [aux_sym_cmd_identifier_token23] = ACTIONS(2303), - [aux_sym_cmd_identifier_token24] = ACTIONS(2303), - [aux_sym_cmd_identifier_token25] = ACTIONS(2303), - [aux_sym_cmd_identifier_token26] = ACTIONS(2303), - [aux_sym_cmd_identifier_token27] = ACTIONS(2303), - [aux_sym_cmd_identifier_token28] = ACTIONS(2303), - [aux_sym_cmd_identifier_token29] = ACTIONS(2303), - [aux_sym_cmd_identifier_token30] = ACTIONS(2303), - [aux_sym_cmd_identifier_token31] = ACTIONS(2303), - [aux_sym_cmd_identifier_token32] = ACTIONS(2303), - [aux_sym_cmd_identifier_token33] = ACTIONS(2303), - [aux_sym_cmd_identifier_token34] = ACTIONS(2303), - [aux_sym_cmd_identifier_token35] = ACTIONS(2303), - [aux_sym_cmd_identifier_token36] = ACTIONS(2303), - [anon_sym_true] = ACTIONS(2303), - [anon_sym_false] = ACTIONS(2303), - [anon_sym_null] = ACTIONS(2303), - [aux_sym_cmd_identifier_token38] = ACTIONS(2303), - [aux_sym_cmd_identifier_token39] = ACTIONS(2303), - [aux_sym_cmd_identifier_token40] = ACTIONS(2303), - [anon_sym_def] = ACTIONS(2303), - [anon_sym_export_DASHenv] = ACTIONS(2303), - [anon_sym_extern] = ACTIONS(2303), - [anon_sym_module] = ACTIONS(2303), - [anon_sym_use] = ACTIONS(2303), - [anon_sym_RBRACK] = ACTIONS(2303), - [anon_sym_LPAREN] = ACTIONS(2303), - [anon_sym_DOLLAR] = ACTIONS(2303), - [anon_sym_error] = ACTIONS(2303), - [anon_sym_list] = ACTIONS(2303), - [anon_sym_DASH] = ACTIONS(2303), - [anon_sym_break] = ACTIONS(2303), - [anon_sym_continue] = ACTIONS(2303), - [anon_sym_for] = ACTIONS(2303), - [anon_sym_in] = ACTIONS(2303), - [anon_sym_loop] = ACTIONS(2303), - [anon_sym_make] = ACTIONS(2303), - [anon_sym_while] = ACTIONS(2303), - [anon_sym_do] = ACTIONS(2303), - [anon_sym_if] = ACTIONS(2303), - [anon_sym_else] = ACTIONS(2303), - [anon_sym_match] = ACTIONS(2303), - [anon_sym_RBRACE] = ACTIONS(2303), - [anon_sym_try] = ACTIONS(2303), - [anon_sym_catch] = ACTIONS(2303), - [anon_sym_return] = ACTIONS(2303), - [anon_sym_source] = ACTIONS(2303), - [anon_sym_source_DASHenv] = ACTIONS(2303), - [anon_sym_register] = ACTIONS(2303), - [anon_sym_hide] = ACTIONS(2303), - [anon_sym_hide_DASHenv] = ACTIONS(2303), - [anon_sym_overlay] = ACTIONS(2303), - [anon_sym_new] = ACTIONS(2303), - [anon_sym_as] = ACTIONS(2303), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2303), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2303), - [aux_sym__val_number_decimal_token1] = ACTIONS(2303), - [aux_sym__val_number_decimal_token2] = ACTIONS(2303), - [aux_sym__val_number_decimal_token3] = ACTIONS(2303), - [aux_sym__val_number_decimal_token4] = ACTIONS(2303), - [aux_sym__val_number_token1] = ACTIONS(2303), - [aux_sym__val_number_token2] = ACTIONS(2303), - [aux_sym__val_number_token3] = ACTIONS(2303), - [anon_sym_DQUOTE] = ACTIONS(2303), - [sym__str_single_quotes] = ACTIONS(2303), - [sym__str_back_ticks] = ACTIONS(2303), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2303), - [sym__entry_separator] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2303), - [anon_sym_POUND] = ACTIONS(3), - }, - [508] = { - [sym__expr_parenthesized_immediate] = STATE(7950), - [sym_comment] = STATE(508), - [anon_sym_export] = ACTIONS(2207), - [anon_sym_alias] = ACTIONS(2207), - [anon_sym_let] = ACTIONS(2207), - [anon_sym_let_DASHenv] = ACTIONS(2207), - [anon_sym_mut] = ACTIONS(2207), - [anon_sym_const] = ACTIONS(2207), - [aux_sym_cmd_identifier_token1] = ACTIONS(2207), - [aux_sym_cmd_identifier_token2] = ACTIONS(2207), - [aux_sym_cmd_identifier_token3] = ACTIONS(2207), - [aux_sym_cmd_identifier_token4] = ACTIONS(2207), - [aux_sym_cmd_identifier_token5] = ACTIONS(2207), - [aux_sym_cmd_identifier_token6] = ACTIONS(2207), - [aux_sym_cmd_identifier_token7] = ACTIONS(2207), - [aux_sym_cmd_identifier_token8] = ACTIONS(2207), - [aux_sym_cmd_identifier_token9] = ACTIONS(2207), - [aux_sym_cmd_identifier_token10] = ACTIONS(2207), - [aux_sym_cmd_identifier_token11] = ACTIONS(2207), - [aux_sym_cmd_identifier_token12] = ACTIONS(2207), - [aux_sym_cmd_identifier_token13] = ACTIONS(2207), - [aux_sym_cmd_identifier_token14] = ACTIONS(2207), - [aux_sym_cmd_identifier_token15] = ACTIONS(2207), - [aux_sym_cmd_identifier_token16] = ACTIONS(2207), - [aux_sym_cmd_identifier_token17] = ACTIONS(2207), - [aux_sym_cmd_identifier_token18] = ACTIONS(2207), - [aux_sym_cmd_identifier_token19] = ACTIONS(2207), - [aux_sym_cmd_identifier_token20] = ACTIONS(2207), - [aux_sym_cmd_identifier_token21] = ACTIONS(2207), - [aux_sym_cmd_identifier_token22] = ACTIONS(2207), - [aux_sym_cmd_identifier_token23] = ACTIONS(2207), - [aux_sym_cmd_identifier_token24] = ACTIONS(2207), - [aux_sym_cmd_identifier_token25] = ACTIONS(2207), - [aux_sym_cmd_identifier_token26] = ACTIONS(2207), - [aux_sym_cmd_identifier_token27] = ACTIONS(2207), - [aux_sym_cmd_identifier_token28] = ACTIONS(2207), - [aux_sym_cmd_identifier_token29] = ACTIONS(2207), - [aux_sym_cmd_identifier_token30] = ACTIONS(2207), - [aux_sym_cmd_identifier_token31] = ACTIONS(2207), - [aux_sym_cmd_identifier_token32] = ACTIONS(2207), - [aux_sym_cmd_identifier_token33] = ACTIONS(2207), - [aux_sym_cmd_identifier_token34] = ACTIONS(2207), - [aux_sym_cmd_identifier_token35] = ACTIONS(2207), - [aux_sym_cmd_identifier_token36] = ACTIONS(2207), - [anon_sym_true] = ACTIONS(2209), - [anon_sym_false] = ACTIONS(2209), - [anon_sym_null] = ACTIONS(2209), - [aux_sym_cmd_identifier_token38] = ACTIONS(2207), - [aux_sym_cmd_identifier_token39] = ACTIONS(2209), - [aux_sym_cmd_identifier_token40] = ACTIONS(2209), - [anon_sym_def] = ACTIONS(2207), - [anon_sym_export_DASHenv] = ACTIONS(2207), - [anon_sym_extern] = ACTIONS(2207), - [anon_sym_module] = ACTIONS(2207), - [anon_sym_use] = ACTIONS(2207), - [anon_sym_LPAREN] = ACTIONS(2207), - [anon_sym_DOLLAR] = ACTIONS(2209), - [anon_sym_error] = ACTIONS(2207), - [anon_sym_list] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_break] = ACTIONS(2207), - [anon_sym_continue] = ACTIONS(2207), - [anon_sym_for] = ACTIONS(2207), - [anon_sym_in] = ACTIONS(2207), - [anon_sym_loop] = ACTIONS(2207), - [anon_sym_make] = ACTIONS(2207), - [anon_sym_while] = ACTIONS(2207), - [anon_sym_do] = ACTIONS(2207), - [anon_sym_if] = ACTIONS(2207), - [anon_sym_else] = ACTIONS(2207), - [anon_sym_match] = ACTIONS(2207), - [anon_sym_RBRACE] = ACTIONS(2209), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_catch] = ACTIONS(2207), - [anon_sym_return] = ACTIONS(2207), - [anon_sym_source] = ACTIONS(2207), - [anon_sym_source_DASHenv] = ACTIONS(2207), - [anon_sym_register] = ACTIONS(2207), - [anon_sym_hide] = ACTIONS(2207), - [anon_sym_hide_DASHenv] = ACTIONS(2207), - [anon_sym_overlay] = ACTIONS(2207), - [anon_sym_new] = ACTIONS(2207), - [anon_sym_as] = ACTIONS(2207), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2209), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2209), - [aux_sym__val_number_decimal_token1] = ACTIONS(2207), - [aux_sym__val_number_decimal_token2] = ACTIONS(2209), - [aux_sym__val_number_decimal_token3] = ACTIONS(2209), - [aux_sym__val_number_decimal_token4] = ACTIONS(2209), - [aux_sym__val_number_token1] = ACTIONS(2209), - [aux_sym__val_number_token2] = ACTIONS(2209), - [aux_sym__val_number_token3] = ACTIONS(2209), - [anon_sym_DQUOTE] = ACTIONS(2209), - [sym__str_single_quotes] = ACTIONS(2209), - [sym__str_back_ticks] = ACTIONS(2209), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2209), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_POUND] = ACTIONS(247), - }, - [509] = { - [sym__expr_parenthesized_immediate] = STATE(7950), - [sym_comment] = STATE(509), - [anon_sym_export] = ACTIONS(2211), - [anon_sym_alias] = ACTIONS(2211), - [anon_sym_let] = ACTIONS(2211), - [anon_sym_let_DASHenv] = ACTIONS(2211), - [anon_sym_mut] = ACTIONS(2211), - [anon_sym_const] = ACTIONS(2211), - [aux_sym_cmd_identifier_token1] = ACTIONS(2211), - [aux_sym_cmd_identifier_token2] = ACTIONS(2211), - [aux_sym_cmd_identifier_token3] = ACTIONS(2211), - [aux_sym_cmd_identifier_token4] = ACTIONS(2211), - [aux_sym_cmd_identifier_token5] = ACTIONS(2211), - [aux_sym_cmd_identifier_token6] = ACTIONS(2211), - [aux_sym_cmd_identifier_token7] = ACTIONS(2211), - [aux_sym_cmd_identifier_token8] = ACTIONS(2211), - [aux_sym_cmd_identifier_token9] = ACTIONS(2211), - [aux_sym_cmd_identifier_token10] = ACTIONS(2211), - [aux_sym_cmd_identifier_token11] = ACTIONS(2211), - [aux_sym_cmd_identifier_token12] = ACTIONS(2211), - [aux_sym_cmd_identifier_token13] = ACTIONS(2211), - [aux_sym_cmd_identifier_token14] = ACTIONS(2211), - [aux_sym_cmd_identifier_token15] = ACTIONS(2211), - [aux_sym_cmd_identifier_token16] = ACTIONS(2211), - [aux_sym_cmd_identifier_token17] = ACTIONS(2211), - [aux_sym_cmd_identifier_token18] = ACTIONS(2211), - [aux_sym_cmd_identifier_token19] = ACTIONS(2211), - [aux_sym_cmd_identifier_token20] = ACTIONS(2211), - [aux_sym_cmd_identifier_token21] = ACTIONS(2211), - [aux_sym_cmd_identifier_token22] = ACTIONS(2211), - [aux_sym_cmd_identifier_token23] = ACTIONS(2211), - [aux_sym_cmd_identifier_token24] = ACTIONS(2211), - [aux_sym_cmd_identifier_token25] = ACTIONS(2211), - [aux_sym_cmd_identifier_token26] = ACTIONS(2211), - [aux_sym_cmd_identifier_token27] = ACTIONS(2211), - [aux_sym_cmd_identifier_token28] = ACTIONS(2211), - [aux_sym_cmd_identifier_token29] = ACTIONS(2211), - [aux_sym_cmd_identifier_token30] = ACTIONS(2211), - [aux_sym_cmd_identifier_token31] = ACTIONS(2211), - [aux_sym_cmd_identifier_token32] = ACTIONS(2211), - [aux_sym_cmd_identifier_token33] = ACTIONS(2211), - [aux_sym_cmd_identifier_token34] = ACTIONS(2211), - [aux_sym_cmd_identifier_token35] = ACTIONS(2211), - [aux_sym_cmd_identifier_token36] = ACTIONS(2211), - [anon_sym_true] = ACTIONS(2213), - [anon_sym_false] = ACTIONS(2213), - [anon_sym_null] = ACTIONS(2213), - [aux_sym_cmd_identifier_token38] = ACTIONS(2211), - [aux_sym_cmd_identifier_token39] = ACTIONS(2213), - [aux_sym_cmd_identifier_token40] = ACTIONS(2213), - [anon_sym_def] = ACTIONS(2211), - [anon_sym_export_DASHenv] = ACTIONS(2211), - [anon_sym_extern] = ACTIONS(2211), - [anon_sym_module] = ACTIONS(2211), - [anon_sym_use] = ACTIONS(2211), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_DOLLAR] = ACTIONS(2213), - [anon_sym_error] = ACTIONS(2211), - [anon_sym_list] = ACTIONS(2211), - [anon_sym_DASH] = ACTIONS(2211), - [anon_sym_break] = ACTIONS(2211), - [anon_sym_continue] = ACTIONS(2211), - [anon_sym_for] = ACTIONS(2211), - [anon_sym_in] = ACTIONS(2211), - [anon_sym_loop] = ACTIONS(2211), - [anon_sym_make] = ACTIONS(2211), - [anon_sym_while] = ACTIONS(2211), - [anon_sym_do] = ACTIONS(2211), - [anon_sym_if] = ACTIONS(2211), - [anon_sym_else] = ACTIONS(2211), - [anon_sym_match] = ACTIONS(2211), - [anon_sym_RBRACE] = ACTIONS(2213), - [anon_sym_try] = ACTIONS(2211), - [anon_sym_catch] = ACTIONS(2211), - [anon_sym_return] = ACTIONS(2211), - [anon_sym_source] = ACTIONS(2211), - [anon_sym_source_DASHenv] = ACTIONS(2211), - [anon_sym_register] = ACTIONS(2211), - [anon_sym_hide] = ACTIONS(2211), - [anon_sym_hide_DASHenv] = ACTIONS(2211), - [anon_sym_overlay] = ACTIONS(2211), - [anon_sym_new] = ACTIONS(2211), - [anon_sym_as] = ACTIONS(2211), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2213), - [aux_sym__val_number_decimal_token1] = ACTIONS(2211), - [aux_sym__val_number_decimal_token2] = ACTIONS(2213), - [aux_sym__val_number_decimal_token3] = ACTIONS(2213), - [aux_sym__val_number_decimal_token4] = ACTIONS(2213), - [aux_sym__val_number_token1] = ACTIONS(2213), - [aux_sym__val_number_token2] = ACTIONS(2213), - [aux_sym__val_number_token3] = ACTIONS(2213), - [anon_sym_DQUOTE] = ACTIONS(2213), - [sym__str_single_quotes] = ACTIONS(2213), - [sym__str_back_ticks] = ACTIONS(2213), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(2273), [anon_sym_POUND] = ACTIONS(247), }, [510] = { + [sym__expr_parenthesized_immediate] = STATE(7795), [sym_comment] = STATE(510), - [anon_sym_export] = ACTIONS(1690), - [anon_sym_alias] = ACTIONS(1690), - [anon_sym_let] = ACTIONS(1690), - [anon_sym_let_DASHenv] = ACTIONS(1690), - [anon_sym_mut] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1690), - [aux_sym_cmd_identifier_token1] = ACTIONS(1690), - [aux_sym_cmd_identifier_token2] = ACTIONS(1690), - [aux_sym_cmd_identifier_token3] = ACTIONS(1690), - [aux_sym_cmd_identifier_token4] = ACTIONS(1690), - [aux_sym_cmd_identifier_token5] = ACTIONS(1690), - [aux_sym_cmd_identifier_token6] = ACTIONS(1690), - [aux_sym_cmd_identifier_token7] = ACTIONS(1690), - [aux_sym_cmd_identifier_token8] = ACTIONS(1690), - [aux_sym_cmd_identifier_token9] = ACTIONS(1690), - [aux_sym_cmd_identifier_token10] = ACTIONS(1690), - [aux_sym_cmd_identifier_token11] = ACTIONS(1690), - [aux_sym_cmd_identifier_token12] = ACTIONS(1690), - [aux_sym_cmd_identifier_token13] = ACTIONS(1690), - [aux_sym_cmd_identifier_token14] = ACTIONS(1690), - [aux_sym_cmd_identifier_token15] = ACTIONS(1690), - [aux_sym_cmd_identifier_token16] = ACTIONS(1690), - [aux_sym_cmd_identifier_token17] = ACTIONS(1690), - [aux_sym_cmd_identifier_token18] = ACTIONS(1690), - [aux_sym_cmd_identifier_token19] = ACTIONS(1690), - [aux_sym_cmd_identifier_token20] = ACTIONS(1690), - [aux_sym_cmd_identifier_token21] = ACTIONS(1690), - [aux_sym_cmd_identifier_token22] = ACTIONS(1690), - [aux_sym_cmd_identifier_token23] = ACTIONS(1690), - [aux_sym_cmd_identifier_token24] = ACTIONS(1690), - [aux_sym_cmd_identifier_token25] = ACTIONS(1690), - [aux_sym_cmd_identifier_token26] = ACTIONS(1690), - [aux_sym_cmd_identifier_token27] = ACTIONS(1690), - [aux_sym_cmd_identifier_token28] = ACTIONS(1690), - [aux_sym_cmd_identifier_token29] = ACTIONS(1690), - [aux_sym_cmd_identifier_token30] = ACTIONS(1690), - [aux_sym_cmd_identifier_token31] = ACTIONS(1690), - [aux_sym_cmd_identifier_token32] = ACTIONS(1690), - [aux_sym_cmd_identifier_token33] = ACTIONS(1690), - [aux_sym_cmd_identifier_token34] = ACTIONS(1690), - [aux_sym_cmd_identifier_token35] = ACTIONS(1690), - [aux_sym_cmd_identifier_token36] = ACTIONS(1690), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1698), - [anon_sym_null] = ACTIONS(1698), - [aux_sym_cmd_identifier_token38] = ACTIONS(1690), - [aux_sym_cmd_identifier_token39] = ACTIONS(1698), - [aux_sym_cmd_identifier_token40] = ACTIONS(1698), - [anon_sym_def] = ACTIONS(1690), - [anon_sym_export_DASHenv] = ACTIONS(1690), - [anon_sym_extern] = ACTIONS(1690), - [anon_sym_module] = ACTIONS(1690), - [anon_sym_use] = ACTIONS(1690), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_DOLLAR] = ACTIONS(1698), - [anon_sym_error] = ACTIONS(1690), - [anon_sym_list] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1690), - [anon_sym_break] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(1690), - [anon_sym_for] = ACTIONS(1690), - [anon_sym_in] = ACTIONS(1690), - [anon_sym_loop] = ACTIONS(1690), - [anon_sym_make] = ACTIONS(1690), - [anon_sym_while] = ACTIONS(1690), - [anon_sym_do] = ACTIONS(1690), - [anon_sym_if] = ACTIONS(1690), - [anon_sym_else] = ACTIONS(1690), - [anon_sym_match] = ACTIONS(1690), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_try] = ACTIONS(1690), - [anon_sym_catch] = ACTIONS(1690), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_source] = ACTIONS(1690), - [anon_sym_source_DASHenv] = ACTIONS(1690), - [anon_sym_register] = ACTIONS(1690), - [anon_sym_hide] = ACTIONS(1690), - [anon_sym_hide_DASHenv] = ACTIONS(1690), - [anon_sym_overlay] = ACTIONS(1690), - [anon_sym_new] = ACTIONS(1690), - [anon_sym_as] = ACTIONS(1690), - [anon_sym_LPAREN2] = ACTIONS(1692), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1698), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1698), - [aux_sym__val_number_decimal_token1] = ACTIONS(1690), - [aux_sym__val_number_decimal_token2] = ACTIONS(1698), - [aux_sym__val_number_decimal_token3] = ACTIONS(1698), - [aux_sym__val_number_decimal_token4] = ACTIONS(1698), - [aux_sym__val_number_token1] = ACTIONS(1698), - [aux_sym__val_number_token2] = ACTIONS(1698), - [aux_sym__val_number_token3] = ACTIONS(1698), - [anon_sym_DQUOTE] = ACTIONS(1698), - [sym__str_single_quotes] = ACTIONS(1698), - [sym__str_back_ticks] = ACTIONS(1698), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1690), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1429), + [anon_sym_export] = ACTIONS(2277), + [anon_sym_alias] = ACTIONS(2277), + [anon_sym_let] = ACTIONS(2277), + [anon_sym_let_DASHenv] = ACTIONS(2277), + [anon_sym_mut] = ACTIONS(2277), + [anon_sym_const] = ACTIONS(2277), + [aux_sym_cmd_identifier_token1] = ACTIONS(2277), + [aux_sym_cmd_identifier_token2] = ACTIONS(2277), + [aux_sym_cmd_identifier_token3] = ACTIONS(2277), + [aux_sym_cmd_identifier_token4] = ACTIONS(2277), + [aux_sym_cmd_identifier_token5] = ACTIONS(2277), + [aux_sym_cmd_identifier_token6] = ACTIONS(2277), + [aux_sym_cmd_identifier_token7] = ACTIONS(2277), + [aux_sym_cmd_identifier_token8] = ACTIONS(2277), + [aux_sym_cmd_identifier_token9] = ACTIONS(2277), + [aux_sym_cmd_identifier_token10] = ACTIONS(2277), + [aux_sym_cmd_identifier_token11] = ACTIONS(2277), + [aux_sym_cmd_identifier_token12] = ACTIONS(2277), + [aux_sym_cmd_identifier_token13] = ACTIONS(2277), + [aux_sym_cmd_identifier_token14] = ACTIONS(2277), + [aux_sym_cmd_identifier_token15] = ACTIONS(2277), + [aux_sym_cmd_identifier_token16] = ACTIONS(2277), + [aux_sym_cmd_identifier_token17] = ACTIONS(2277), + [aux_sym_cmd_identifier_token18] = ACTIONS(2277), + [aux_sym_cmd_identifier_token19] = ACTIONS(2277), + [aux_sym_cmd_identifier_token20] = ACTIONS(2277), + [aux_sym_cmd_identifier_token21] = ACTIONS(2277), + [aux_sym_cmd_identifier_token22] = ACTIONS(2277), + [aux_sym_cmd_identifier_token23] = ACTIONS(2277), + [aux_sym_cmd_identifier_token24] = ACTIONS(2277), + [aux_sym_cmd_identifier_token25] = ACTIONS(2277), + [aux_sym_cmd_identifier_token26] = ACTIONS(2277), + [aux_sym_cmd_identifier_token27] = ACTIONS(2277), + [aux_sym_cmd_identifier_token28] = ACTIONS(2277), + [aux_sym_cmd_identifier_token29] = ACTIONS(2277), + [aux_sym_cmd_identifier_token30] = ACTIONS(2277), + [aux_sym_cmd_identifier_token31] = ACTIONS(2277), + [aux_sym_cmd_identifier_token32] = ACTIONS(2277), + [aux_sym_cmd_identifier_token33] = ACTIONS(2277), + [aux_sym_cmd_identifier_token34] = ACTIONS(2277), + [aux_sym_cmd_identifier_token35] = ACTIONS(2277), + [aux_sym_cmd_identifier_token36] = ACTIONS(2277), + [anon_sym_true] = ACTIONS(2279), + [anon_sym_false] = ACTIONS(2279), + [anon_sym_null] = ACTIONS(2279), + [aux_sym_cmd_identifier_token38] = ACTIONS(2277), + [aux_sym_cmd_identifier_token39] = ACTIONS(2279), + [aux_sym_cmd_identifier_token40] = ACTIONS(2279), + [anon_sym_def] = ACTIONS(2277), + [anon_sym_export_DASHenv] = ACTIONS(2277), + [anon_sym_extern] = ACTIONS(2277), + [anon_sym_module] = ACTIONS(2277), + [anon_sym_use] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(2277), + [anon_sym_DOLLAR] = ACTIONS(2279), + [anon_sym_error] = ACTIONS(2277), + [anon_sym_list] = ACTIONS(2277), + [anon_sym_DASH] = ACTIONS(2277), + [anon_sym_break] = ACTIONS(2277), + [anon_sym_continue] = ACTIONS(2277), + [anon_sym_for] = ACTIONS(2277), + [anon_sym_in] = ACTIONS(2277), + [anon_sym_loop] = ACTIONS(2277), + [anon_sym_make] = ACTIONS(2277), + [anon_sym_while] = ACTIONS(2277), + [anon_sym_do] = ACTIONS(2277), + [anon_sym_if] = ACTIONS(2277), + [anon_sym_else] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_RBRACE] = ACTIONS(2279), + [anon_sym_try] = ACTIONS(2277), + [anon_sym_catch] = ACTIONS(2277), + [anon_sym_return] = ACTIONS(2277), + [anon_sym_source] = ACTIONS(2277), + [anon_sym_source_DASHenv] = ACTIONS(2277), + [anon_sym_register] = ACTIONS(2277), + [anon_sym_hide] = ACTIONS(2277), + [anon_sym_hide_DASHenv] = ACTIONS(2277), + [anon_sym_overlay] = ACTIONS(2277), + [anon_sym_new] = ACTIONS(2277), + [anon_sym_as] = ACTIONS(2277), + [anon_sym_LPAREN2] = ACTIONS(1577), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2279), + [aux_sym__val_number_decimal_token1] = ACTIONS(2277), + [aux_sym__val_number_decimal_token2] = ACTIONS(2279), + [aux_sym__val_number_decimal_token3] = ACTIONS(2279), + [aux_sym__val_number_decimal_token4] = ACTIONS(2279), + [aux_sym__val_number_token1] = ACTIONS(2279), + [aux_sym__val_number_token2] = ACTIONS(2279), + [aux_sym__val_number_token3] = ACTIONS(2279), + [anon_sym_DQUOTE] = ACTIONS(2279), + [sym__str_single_quotes] = ACTIONS(2279), + [sym__str_back_ticks] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2279), + [anon_sym_PLUS] = ACTIONS(2277), [anon_sym_POUND] = ACTIONS(247), }, [511] = { - [sym__expr_parenthesized_immediate] = STATE(7950), [sym_comment] = STATE(511), - [anon_sym_export] = ACTIONS(2215), - [anon_sym_alias] = ACTIONS(2215), - [anon_sym_let] = ACTIONS(2215), - [anon_sym_let_DASHenv] = ACTIONS(2215), - [anon_sym_mut] = ACTIONS(2215), - [anon_sym_const] = ACTIONS(2215), - [aux_sym_cmd_identifier_token1] = ACTIONS(2215), - [aux_sym_cmd_identifier_token2] = ACTIONS(2215), - [aux_sym_cmd_identifier_token3] = ACTIONS(2215), - [aux_sym_cmd_identifier_token4] = ACTIONS(2215), - [aux_sym_cmd_identifier_token5] = ACTIONS(2215), - [aux_sym_cmd_identifier_token6] = ACTIONS(2215), - [aux_sym_cmd_identifier_token7] = ACTIONS(2215), - [aux_sym_cmd_identifier_token8] = ACTIONS(2215), - [aux_sym_cmd_identifier_token9] = ACTIONS(2215), - [aux_sym_cmd_identifier_token10] = ACTIONS(2215), - [aux_sym_cmd_identifier_token11] = ACTIONS(2215), - [aux_sym_cmd_identifier_token12] = ACTIONS(2215), - [aux_sym_cmd_identifier_token13] = ACTIONS(2215), - [aux_sym_cmd_identifier_token14] = ACTIONS(2215), - [aux_sym_cmd_identifier_token15] = ACTIONS(2215), - [aux_sym_cmd_identifier_token16] = ACTIONS(2215), - [aux_sym_cmd_identifier_token17] = ACTIONS(2215), - [aux_sym_cmd_identifier_token18] = ACTIONS(2215), - [aux_sym_cmd_identifier_token19] = ACTIONS(2215), - [aux_sym_cmd_identifier_token20] = ACTIONS(2215), - [aux_sym_cmd_identifier_token21] = ACTIONS(2215), - [aux_sym_cmd_identifier_token22] = ACTIONS(2215), - [aux_sym_cmd_identifier_token23] = ACTIONS(2215), - [aux_sym_cmd_identifier_token24] = ACTIONS(2215), - [aux_sym_cmd_identifier_token25] = ACTIONS(2215), - [aux_sym_cmd_identifier_token26] = ACTIONS(2215), - [aux_sym_cmd_identifier_token27] = ACTIONS(2215), - [aux_sym_cmd_identifier_token28] = ACTIONS(2215), - [aux_sym_cmd_identifier_token29] = ACTIONS(2215), - [aux_sym_cmd_identifier_token30] = ACTIONS(2215), - [aux_sym_cmd_identifier_token31] = ACTIONS(2215), - [aux_sym_cmd_identifier_token32] = ACTIONS(2215), - [aux_sym_cmd_identifier_token33] = ACTIONS(2215), - [aux_sym_cmd_identifier_token34] = ACTIONS(2215), - [aux_sym_cmd_identifier_token35] = ACTIONS(2215), - [aux_sym_cmd_identifier_token36] = ACTIONS(2215), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [anon_sym_null] = ACTIONS(2217), - [aux_sym_cmd_identifier_token38] = ACTIONS(2215), - [aux_sym_cmd_identifier_token39] = ACTIONS(2217), - [aux_sym_cmd_identifier_token40] = ACTIONS(2217), - [anon_sym_def] = ACTIONS(2215), - [anon_sym_export_DASHenv] = ACTIONS(2215), - [anon_sym_extern] = ACTIONS(2215), - [anon_sym_module] = ACTIONS(2215), - [anon_sym_use] = ACTIONS(2215), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_DOLLAR] = ACTIONS(2217), - [anon_sym_error] = ACTIONS(2215), - [anon_sym_list] = ACTIONS(2215), - [anon_sym_DASH] = ACTIONS(2215), - [anon_sym_break] = ACTIONS(2215), - [anon_sym_continue] = ACTIONS(2215), - [anon_sym_for] = ACTIONS(2215), - [anon_sym_in] = ACTIONS(2215), - [anon_sym_loop] = ACTIONS(2215), - [anon_sym_make] = ACTIONS(2215), - [anon_sym_while] = ACTIONS(2215), - [anon_sym_do] = ACTIONS(2215), - [anon_sym_if] = ACTIONS(2215), - [anon_sym_else] = ACTIONS(2215), - [anon_sym_match] = ACTIONS(2215), - [anon_sym_RBRACE] = ACTIONS(2217), - [anon_sym_try] = ACTIONS(2215), - [anon_sym_catch] = ACTIONS(2215), - [anon_sym_return] = ACTIONS(2215), - [anon_sym_source] = ACTIONS(2215), - [anon_sym_source_DASHenv] = ACTIONS(2215), - [anon_sym_register] = ACTIONS(2215), - [anon_sym_hide] = ACTIONS(2215), - [anon_sym_hide_DASHenv] = ACTIONS(2215), - [anon_sym_overlay] = ACTIONS(2215), - [anon_sym_new] = ACTIONS(2215), - [anon_sym_as] = ACTIONS(2215), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2217), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2217), - [aux_sym__val_number_decimal_token1] = ACTIONS(2215), - [aux_sym__val_number_decimal_token2] = ACTIONS(2217), - [aux_sym__val_number_decimal_token3] = ACTIONS(2217), - [aux_sym__val_number_decimal_token4] = ACTIONS(2217), - [aux_sym__val_number_token1] = ACTIONS(2217), - [aux_sym__val_number_token2] = ACTIONS(2217), - [aux_sym__val_number_token3] = ACTIONS(2217), - [anon_sym_DQUOTE] = ACTIONS(2217), - [sym__str_single_quotes] = ACTIONS(2217), - [sym__str_back_ticks] = ACTIONS(2217), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2217), - [anon_sym_PLUS] = ACTIONS(2215), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1575), + [anon_sym_alias] = ACTIONS(1575), + [anon_sym_let] = ACTIONS(1575), + [anon_sym_let_DASHenv] = ACTIONS(1575), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_const] = ACTIONS(1575), + [aux_sym_cmd_identifier_token1] = ACTIONS(1575), + [aux_sym_cmd_identifier_token2] = ACTIONS(1575), + [aux_sym_cmd_identifier_token3] = ACTIONS(1575), + [aux_sym_cmd_identifier_token4] = ACTIONS(1575), + [aux_sym_cmd_identifier_token5] = ACTIONS(1575), + [aux_sym_cmd_identifier_token6] = ACTIONS(1575), + [aux_sym_cmd_identifier_token7] = ACTIONS(1575), + [aux_sym_cmd_identifier_token8] = ACTIONS(1575), + [aux_sym_cmd_identifier_token9] = ACTIONS(1575), + [aux_sym_cmd_identifier_token10] = ACTIONS(1575), + [aux_sym_cmd_identifier_token11] = ACTIONS(1575), + [aux_sym_cmd_identifier_token12] = ACTIONS(1575), + [aux_sym_cmd_identifier_token13] = ACTIONS(1575), + [aux_sym_cmd_identifier_token14] = ACTIONS(1575), + [aux_sym_cmd_identifier_token15] = ACTIONS(1575), + [aux_sym_cmd_identifier_token16] = ACTIONS(1575), + [aux_sym_cmd_identifier_token17] = ACTIONS(1575), + [aux_sym_cmd_identifier_token18] = ACTIONS(1575), + [aux_sym_cmd_identifier_token19] = ACTIONS(1575), + [aux_sym_cmd_identifier_token20] = ACTIONS(1575), + [aux_sym_cmd_identifier_token21] = ACTIONS(1575), + [aux_sym_cmd_identifier_token22] = ACTIONS(1575), + [aux_sym_cmd_identifier_token23] = ACTIONS(1575), + [aux_sym_cmd_identifier_token24] = ACTIONS(1575), + [aux_sym_cmd_identifier_token25] = ACTIONS(1575), + [aux_sym_cmd_identifier_token26] = ACTIONS(1575), + [aux_sym_cmd_identifier_token27] = ACTIONS(1575), + [aux_sym_cmd_identifier_token28] = ACTIONS(1575), + [aux_sym_cmd_identifier_token29] = ACTIONS(1575), + [aux_sym_cmd_identifier_token30] = ACTIONS(1575), + [aux_sym_cmd_identifier_token31] = ACTIONS(1575), + [aux_sym_cmd_identifier_token32] = ACTIONS(1575), + [aux_sym_cmd_identifier_token33] = ACTIONS(1575), + [aux_sym_cmd_identifier_token34] = ACTIONS(1575), + [aux_sym_cmd_identifier_token35] = ACTIONS(1575), + [aux_sym_cmd_identifier_token36] = ACTIONS(1575), + [anon_sym_true] = ACTIONS(1575), + [anon_sym_false] = ACTIONS(1575), + [anon_sym_null] = ACTIONS(1575), + [aux_sym_cmd_identifier_token38] = ACTIONS(1575), + [aux_sym_cmd_identifier_token39] = ACTIONS(1575), + [aux_sym_cmd_identifier_token40] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(1575), + [anon_sym_export_DASHenv] = ACTIONS(1575), + [anon_sym_extern] = ACTIONS(1575), + [anon_sym_module] = ACTIONS(1575), + [anon_sym_use] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1575), + [anon_sym_DOLLAR] = ACTIONS(1575), + [anon_sym_error] = ACTIONS(1575), + [anon_sym_list] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_break] = ACTIONS(1575), + [anon_sym_continue] = ACTIONS(1575), + [anon_sym_for] = ACTIONS(1575), + [anon_sym_in] = ACTIONS(1575), + [anon_sym_loop] = ACTIONS(1575), + [anon_sym_make] = ACTIONS(1575), + [anon_sym_while] = ACTIONS(1575), + [anon_sym_do] = ACTIONS(1575), + [anon_sym_if] = ACTIONS(1575), + [anon_sym_else] = ACTIONS(1575), + [anon_sym_match] = ACTIONS(1575), + [anon_sym_RBRACE] = ACTIONS(1575), + [anon_sym_try] = ACTIONS(1575), + [anon_sym_catch] = ACTIONS(1575), + [anon_sym_return] = ACTIONS(1575), + [anon_sym_source] = ACTIONS(1575), + [anon_sym_source_DASHenv] = ACTIONS(1575), + [anon_sym_register] = ACTIONS(1575), + [anon_sym_hide] = ACTIONS(1575), + [anon_sym_hide_DASHenv] = ACTIONS(1575), + [anon_sym_overlay] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1575), + [anon_sym_as] = ACTIONS(1575), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1575), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1575), + [aux_sym__val_number_decimal_token1] = ACTIONS(1575), + [aux_sym__val_number_decimal_token2] = ACTIONS(1575), + [aux_sym__val_number_decimal_token3] = ACTIONS(1575), + [aux_sym__val_number_decimal_token4] = ACTIONS(1575), + [aux_sym__val_number_token1] = ACTIONS(1575), + [aux_sym__val_number_token2] = ACTIONS(1575), + [aux_sym__val_number_token3] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1575), + [sym__str_single_quotes] = ACTIONS(1575), + [sym__str_back_ticks] = ACTIONS(1575), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1575), + [sym__entry_separator] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(1575), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(3), }, [512] = { [sym_comment] = STATE(512), - [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), - [aux_sym_cmd_identifier_token1] = ACTIONS(1525), - [aux_sym_cmd_identifier_token2] = ACTIONS(1525), - [aux_sym_cmd_identifier_token3] = ACTIONS(1525), - [aux_sym_cmd_identifier_token4] = ACTIONS(1525), - [aux_sym_cmd_identifier_token5] = ACTIONS(1525), - [aux_sym_cmd_identifier_token6] = ACTIONS(1525), - [aux_sym_cmd_identifier_token7] = ACTIONS(1525), - [aux_sym_cmd_identifier_token8] = ACTIONS(1525), - [aux_sym_cmd_identifier_token9] = ACTIONS(1525), - [aux_sym_cmd_identifier_token10] = ACTIONS(1525), - [aux_sym_cmd_identifier_token11] = ACTIONS(1525), - [aux_sym_cmd_identifier_token12] = ACTIONS(1525), - [aux_sym_cmd_identifier_token13] = ACTIONS(1525), - [aux_sym_cmd_identifier_token14] = ACTIONS(1525), - [aux_sym_cmd_identifier_token15] = ACTIONS(1525), - [aux_sym_cmd_identifier_token16] = ACTIONS(1525), - [aux_sym_cmd_identifier_token17] = ACTIONS(1525), - [aux_sym_cmd_identifier_token18] = ACTIONS(1525), - [aux_sym_cmd_identifier_token19] = ACTIONS(1525), - [aux_sym_cmd_identifier_token20] = ACTIONS(1525), - [aux_sym_cmd_identifier_token21] = ACTIONS(1525), - [aux_sym_cmd_identifier_token22] = ACTIONS(1525), - [aux_sym_cmd_identifier_token23] = ACTIONS(1525), - [aux_sym_cmd_identifier_token24] = ACTIONS(1525), - [aux_sym_cmd_identifier_token25] = ACTIONS(1525), - [aux_sym_cmd_identifier_token26] = ACTIONS(1525), - [aux_sym_cmd_identifier_token27] = ACTIONS(1525), - [aux_sym_cmd_identifier_token28] = ACTIONS(1525), - [aux_sym_cmd_identifier_token29] = ACTIONS(1525), - [aux_sym_cmd_identifier_token30] = ACTIONS(1525), - [aux_sym_cmd_identifier_token31] = ACTIONS(1525), - [aux_sym_cmd_identifier_token32] = ACTIONS(1525), - [aux_sym_cmd_identifier_token33] = ACTIONS(1525), - [aux_sym_cmd_identifier_token34] = ACTIONS(1525), - [aux_sym_cmd_identifier_token35] = ACTIONS(1525), - [aux_sym_cmd_identifier_token36] = ACTIONS(1525), - [anon_sym_true] = ACTIONS(1525), - [anon_sym_false] = ACTIONS(1525), - [anon_sym_null] = ACTIONS(1525), - [aux_sym_cmd_identifier_token38] = ACTIONS(1525), - [aux_sym_cmd_identifier_token39] = ACTIONS(1525), - [aux_sym_cmd_identifier_token40] = ACTIONS(1525), - [anon_sym_def] = 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_LPAREN] = ACTIONS(1525), - [anon_sym_DOLLAR] = ACTIONS(1525), - [anon_sym_error] = ACTIONS(1525), - [anon_sym_list] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_break] = ACTIONS(1525), - [anon_sym_continue] = ACTIONS(1525), - [anon_sym_for] = ACTIONS(1525), - [anon_sym_in] = ACTIONS(1525), - [anon_sym_loop] = ACTIONS(1525), - [anon_sym_make] = ACTIONS(1525), - [anon_sym_while] = ACTIONS(1525), - [anon_sym_do] = ACTIONS(1525), - [anon_sym_if] = ACTIONS(1525), - [anon_sym_else] = ACTIONS(1525), - [anon_sym_match] = ACTIONS(1525), - [anon_sym_RBRACE] = ACTIONS(1525), - [anon_sym_try] = ACTIONS(1525), - [anon_sym_catch] = 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_new] = ACTIONS(1525), - [anon_sym_as] = ACTIONS(1525), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1525), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1525), - [aux_sym__val_number_decimal_token1] = ACTIONS(1525), - [aux_sym__val_number_decimal_token2] = ACTIONS(1525), - [aux_sym__val_number_decimal_token3] = ACTIONS(1525), - [aux_sym__val_number_decimal_token4] = ACTIONS(1525), - [aux_sym__val_number_token1] = ACTIONS(1525), - [aux_sym__val_number_token2] = ACTIONS(1525), - [aux_sym__val_number_token3] = ACTIONS(1525), - [anon_sym_DQUOTE] = ACTIONS(1525), - [sym__str_single_quotes] = ACTIONS(1525), - [sym__str_back_ticks] = ACTIONS(1525), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1525), - [sym__entry_separator] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1525), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1539), + [anon_sym_export] = ACTIONS(1052), + [anon_sym_alias] = ACTIONS(1052), + [anon_sym_let] = ACTIONS(1052), + [anon_sym_let_DASHenv] = ACTIONS(1052), + [anon_sym_mut] = ACTIONS(1052), + [anon_sym_const] = ACTIONS(1052), + [aux_sym_cmd_identifier_token1] = ACTIONS(1052), + [aux_sym_cmd_identifier_token2] = ACTIONS(1052), + [aux_sym_cmd_identifier_token3] = ACTIONS(1052), + [aux_sym_cmd_identifier_token4] = ACTIONS(1052), + [aux_sym_cmd_identifier_token5] = ACTIONS(1052), + [aux_sym_cmd_identifier_token6] = ACTIONS(1052), + [aux_sym_cmd_identifier_token7] = ACTIONS(1052), + [aux_sym_cmd_identifier_token8] = ACTIONS(1052), + [aux_sym_cmd_identifier_token9] = ACTIONS(1052), + [aux_sym_cmd_identifier_token10] = ACTIONS(1052), + [aux_sym_cmd_identifier_token11] = ACTIONS(1052), + [aux_sym_cmd_identifier_token12] = ACTIONS(1052), + [aux_sym_cmd_identifier_token13] = ACTIONS(1052), + [aux_sym_cmd_identifier_token14] = ACTIONS(1052), + [aux_sym_cmd_identifier_token15] = ACTIONS(1052), + [aux_sym_cmd_identifier_token16] = ACTIONS(1052), + [aux_sym_cmd_identifier_token17] = ACTIONS(1052), + [aux_sym_cmd_identifier_token18] = ACTIONS(1052), + [aux_sym_cmd_identifier_token19] = ACTIONS(1052), + [aux_sym_cmd_identifier_token20] = ACTIONS(1052), + [aux_sym_cmd_identifier_token21] = ACTIONS(1052), + [aux_sym_cmd_identifier_token22] = ACTIONS(1052), + [aux_sym_cmd_identifier_token23] = ACTIONS(1052), + [aux_sym_cmd_identifier_token24] = ACTIONS(1052), + [aux_sym_cmd_identifier_token25] = ACTIONS(1052), + [aux_sym_cmd_identifier_token26] = ACTIONS(1052), + [aux_sym_cmd_identifier_token27] = ACTIONS(1052), + [aux_sym_cmd_identifier_token28] = ACTIONS(1052), + [aux_sym_cmd_identifier_token29] = ACTIONS(1052), + [aux_sym_cmd_identifier_token30] = ACTIONS(1052), + [aux_sym_cmd_identifier_token31] = ACTIONS(1052), + [aux_sym_cmd_identifier_token32] = ACTIONS(1052), + [aux_sym_cmd_identifier_token33] = ACTIONS(1052), + [aux_sym_cmd_identifier_token34] = ACTIONS(1052), + [aux_sym_cmd_identifier_token35] = ACTIONS(1052), + [aux_sym_cmd_identifier_token36] = ACTIONS(1052), + [anon_sym_true] = ACTIONS(1052), + [anon_sym_false] = ACTIONS(1052), + [anon_sym_null] = ACTIONS(1052), + [aux_sym_cmd_identifier_token38] = ACTIONS(1052), + [aux_sym_cmd_identifier_token39] = ACTIONS(1052), + [aux_sym_cmd_identifier_token40] = ACTIONS(1052), + [anon_sym_def] = ACTIONS(1052), + [anon_sym_export_DASHenv] = ACTIONS(1052), + [anon_sym_extern] = ACTIONS(1052), + [anon_sym_module] = ACTIONS(1052), + [anon_sym_use] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(1052), + [anon_sym_error] = ACTIONS(1052), + [anon_sym_list] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_break] = ACTIONS(1052), + [anon_sym_continue] = ACTIONS(1052), + [anon_sym_for] = ACTIONS(1052), + [anon_sym_in] = ACTIONS(1052), + [anon_sym_loop] = ACTIONS(1052), + [anon_sym_make] = ACTIONS(1052), + [anon_sym_while] = ACTIONS(1052), + [anon_sym_do] = ACTIONS(1052), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_else] = ACTIONS(1052), + [anon_sym_match] = ACTIONS(1052), + [anon_sym_RBRACE] = ACTIONS(1052), + [anon_sym_try] = ACTIONS(1052), + [anon_sym_catch] = ACTIONS(1052), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_source] = ACTIONS(1052), + [anon_sym_source_DASHenv] = ACTIONS(1052), + [anon_sym_register] = ACTIONS(1052), + [anon_sym_hide] = ACTIONS(1052), + [anon_sym_hide_DASHenv] = ACTIONS(1052), + [anon_sym_overlay] = ACTIONS(1052), + [anon_sym_new] = ACTIONS(1052), + [anon_sym_as] = ACTIONS(1052), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1052), + [anon_sym_DOT] = ACTIONS(1052), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1052), + [aux_sym__val_number_decimal_token1] = ACTIONS(1052), + [aux_sym__val_number_decimal_token2] = ACTIONS(1052), + [aux_sym__val_number_decimal_token3] = ACTIONS(1052), + [aux_sym__val_number_decimal_token4] = ACTIONS(1052), + [aux_sym__val_number_token1] = ACTIONS(1052), + [aux_sym__val_number_token2] = ACTIONS(1052), + [aux_sym__val_number_token3] = ACTIONS(1052), + [anon_sym_DQUOTE] = ACTIONS(1052), + [sym__str_single_quotes] = ACTIONS(1052), + [sym__str_back_ticks] = ACTIONS(1052), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1052), + [sym__entry_separator] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1052), [anon_sym_POUND] = ACTIONS(3), }, [513] = { [sym_comment] = STATE(513), - [anon_sym_export] = ACTIONS(1589), - [anon_sym_alias] = ACTIONS(1589), - [anon_sym_let] = ACTIONS(1589), - [anon_sym_let_DASHenv] = ACTIONS(1589), - [anon_sym_mut] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [aux_sym_cmd_identifier_token1] = ACTIONS(1589), - [aux_sym_cmd_identifier_token2] = ACTIONS(1589), - [aux_sym_cmd_identifier_token3] = ACTIONS(1589), - [aux_sym_cmd_identifier_token4] = ACTIONS(1589), - [aux_sym_cmd_identifier_token5] = ACTIONS(1589), - [aux_sym_cmd_identifier_token6] = ACTIONS(1589), - [aux_sym_cmd_identifier_token7] = ACTIONS(1589), - [aux_sym_cmd_identifier_token8] = ACTIONS(1589), - [aux_sym_cmd_identifier_token9] = ACTIONS(1589), - [aux_sym_cmd_identifier_token10] = ACTIONS(1589), - [aux_sym_cmd_identifier_token11] = ACTIONS(1589), - [aux_sym_cmd_identifier_token12] = ACTIONS(1589), - [aux_sym_cmd_identifier_token13] = ACTIONS(1589), - [aux_sym_cmd_identifier_token14] = ACTIONS(1589), - [aux_sym_cmd_identifier_token15] = ACTIONS(1589), - [aux_sym_cmd_identifier_token16] = ACTIONS(1589), - [aux_sym_cmd_identifier_token17] = ACTIONS(1589), - [aux_sym_cmd_identifier_token18] = ACTIONS(1589), - [aux_sym_cmd_identifier_token19] = ACTIONS(1589), - [aux_sym_cmd_identifier_token20] = ACTIONS(1589), - [aux_sym_cmd_identifier_token21] = ACTIONS(1589), - [aux_sym_cmd_identifier_token22] = ACTIONS(1589), - [aux_sym_cmd_identifier_token23] = ACTIONS(1589), - [aux_sym_cmd_identifier_token24] = ACTIONS(1589), - [aux_sym_cmd_identifier_token25] = ACTIONS(1589), - [aux_sym_cmd_identifier_token26] = ACTIONS(1589), - [aux_sym_cmd_identifier_token27] = ACTIONS(1589), - [aux_sym_cmd_identifier_token28] = ACTIONS(1589), - [aux_sym_cmd_identifier_token29] = ACTIONS(1589), - [aux_sym_cmd_identifier_token30] = ACTIONS(1589), - [aux_sym_cmd_identifier_token31] = ACTIONS(1589), - [aux_sym_cmd_identifier_token32] = ACTIONS(1589), - [aux_sym_cmd_identifier_token33] = ACTIONS(1589), - [aux_sym_cmd_identifier_token34] = ACTIONS(1589), - [aux_sym_cmd_identifier_token35] = ACTIONS(1589), - [aux_sym_cmd_identifier_token36] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [anon_sym_null] = ACTIONS(1591), - [aux_sym_cmd_identifier_token38] = ACTIONS(1589), - [aux_sym_cmd_identifier_token39] = ACTIONS(1591), - [aux_sym_cmd_identifier_token40] = ACTIONS(1591), - [anon_sym_def] = ACTIONS(1589), - [anon_sym_export_DASHenv] = ACTIONS(1589), - [anon_sym_extern] = ACTIONS(1589), - [anon_sym_module] = ACTIONS(1589), - [anon_sym_use] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_DOLLAR] = ACTIONS(1591), - [anon_sym_error] = ACTIONS(1589), - [anon_sym_list] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_loop] = ACTIONS(1589), - [anon_sym_make] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_else] = ACTIONS(1589), - [anon_sym_match] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_try] = ACTIONS(1589), - [anon_sym_catch] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_source] = ACTIONS(1589), - [anon_sym_source_DASHenv] = ACTIONS(1589), - [anon_sym_register] = ACTIONS(1589), - [anon_sym_hide] = ACTIONS(1589), - [anon_sym_hide_DASHenv] = ACTIONS(1589), - [anon_sym_overlay] = ACTIONS(1589), - [anon_sym_new] = ACTIONS(1589), - [anon_sym_as] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1591), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1591), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1591), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token3] = ACTIONS(1591), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(1591), - [aux_sym__val_number_token2] = ACTIONS(1591), - [aux_sym__val_number_token3] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym__str_single_quotes] = ACTIONS(1591), - [sym__str_back_ticks] = ACTIONS(1591), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1591), - [anon_sym_PLUS] = ACTIONS(1589), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1589), + [anon_sym_export] = ACTIONS(1575), + [anon_sym_alias] = ACTIONS(1575), + [anon_sym_let] = ACTIONS(1575), + [anon_sym_let_DASHenv] = ACTIONS(1575), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_const] = ACTIONS(1575), + [aux_sym_cmd_identifier_token1] = ACTIONS(1575), + [aux_sym_cmd_identifier_token2] = ACTIONS(1575), + [aux_sym_cmd_identifier_token3] = ACTIONS(1575), + [aux_sym_cmd_identifier_token4] = ACTIONS(1575), + [aux_sym_cmd_identifier_token5] = ACTIONS(1575), + [aux_sym_cmd_identifier_token6] = ACTIONS(1575), + [aux_sym_cmd_identifier_token7] = ACTIONS(1575), + [aux_sym_cmd_identifier_token8] = ACTIONS(1575), + [aux_sym_cmd_identifier_token9] = ACTIONS(1575), + [aux_sym_cmd_identifier_token10] = ACTIONS(1575), + [aux_sym_cmd_identifier_token11] = ACTIONS(1575), + [aux_sym_cmd_identifier_token12] = ACTIONS(1575), + [aux_sym_cmd_identifier_token13] = ACTIONS(1575), + [aux_sym_cmd_identifier_token14] = ACTIONS(1575), + [aux_sym_cmd_identifier_token15] = ACTIONS(1575), + [aux_sym_cmd_identifier_token16] = ACTIONS(1575), + [aux_sym_cmd_identifier_token17] = ACTIONS(1575), + [aux_sym_cmd_identifier_token18] = ACTIONS(1575), + [aux_sym_cmd_identifier_token19] = ACTIONS(1575), + [aux_sym_cmd_identifier_token20] = ACTIONS(1575), + [aux_sym_cmd_identifier_token21] = ACTIONS(1575), + [aux_sym_cmd_identifier_token22] = ACTIONS(1575), + [aux_sym_cmd_identifier_token23] = ACTIONS(1575), + [aux_sym_cmd_identifier_token24] = ACTIONS(1575), + [aux_sym_cmd_identifier_token25] = ACTIONS(1575), + [aux_sym_cmd_identifier_token26] = ACTIONS(1575), + [aux_sym_cmd_identifier_token27] = ACTIONS(1575), + [aux_sym_cmd_identifier_token28] = ACTIONS(1575), + [aux_sym_cmd_identifier_token29] = ACTIONS(1575), + [aux_sym_cmd_identifier_token30] = ACTIONS(1575), + [aux_sym_cmd_identifier_token31] = ACTIONS(1575), + [aux_sym_cmd_identifier_token32] = ACTIONS(1575), + [aux_sym_cmd_identifier_token33] = ACTIONS(1575), + [aux_sym_cmd_identifier_token34] = ACTIONS(1575), + [aux_sym_cmd_identifier_token35] = ACTIONS(1575), + [aux_sym_cmd_identifier_token36] = ACTIONS(1575), + [anon_sym_true] = ACTIONS(1587), + [anon_sym_false] = ACTIONS(1587), + [anon_sym_null] = ACTIONS(1587), + [aux_sym_cmd_identifier_token38] = ACTIONS(1575), + [aux_sym_cmd_identifier_token39] = ACTIONS(1587), + [aux_sym_cmd_identifier_token40] = ACTIONS(1587), + [anon_sym_def] = ACTIONS(1575), + [anon_sym_export_DASHenv] = ACTIONS(1575), + [anon_sym_extern] = ACTIONS(1575), + [anon_sym_module] = ACTIONS(1575), + [anon_sym_use] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_DOLLAR] = ACTIONS(1587), + [anon_sym_error] = ACTIONS(1575), + [anon_sym_list] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_break] = ACTIONS(1575), + [anon_sym_continue] = ACTIONS(1575), + [anon_sym_for] = ACTIONS(1575), + [anon_sym_in] = ACTIONS(1575), + [anon_sym_loop] = ACTIONS(1575), + [anon_sym_make] = ACTIONS(1575), + [anon_sym_while] = ACTIONS(1575), + [anon_sym_do] = ACTIONS(1575), + [anon_sym_if] = ACTIONS(1575), + [anon_sym_else] = ACTIONS(1575), + [anon_sym_match] = ACTIONS(1575), + [anon_sym_RBRACE] = ACTIONS(1587), + [anon_sym_try] = ACTIONS(1575), + [anon_sym_catch] = ACTIONS(1575), + [anon_sym_return] = ACTIONS(1575), + [anon_sym_source] = ACTIONS(1575), + [anon_sym_source_DASHenv] = ACTIONS(1575), + [anon_sym_register] = ACTIONS(1575), + [anon_sym_hide] = ACTIONS(1575), + [anon_sym_hide_DASHenv] = ACTIONS(1575), + [anon_sym_overlay] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1575), + [anon_sym_as] = ACTIONS(1575), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1587), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1587), + [aux_sym__val_number_decimal_token1] = ACTIONS(1575), + [aux_sym__val_number_decimal_token2] = ACTIONS(1587), + [aux_sym__val_number_decimal_token3] = ACTIONS(1587), + [aux_sym__val_number_decimal_token4] = ACTIONS(1587), + [aux_sym__val_number_token1] = ACTIONS(1587), + [aux_sym__val_number_token2] = ACTIONS(1587), + [aux_sym__val_number_token3] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [sym__str_single_quotes] = ACTIONS(1587), + [sym__str_back_ticks] = ACTIONS(1587), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(1575), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1676), [anon_sym_POUND] = ACTIONS(247), }, [514] = { [sym_comment] = STATE(514), - [anon_sym_export] = ACTIONS(980), - [anon_sym_alias] = ACTIONS(980), - [anon_sym_let] = ACTIONS(980), - [anon_sym_let_DASHenv] = ACTIONS(980), - [anon_sym_mut] = ACTIONS(980), - [anon_sym_const] = ACTIONS(980), - [aux_sym_cmd_identifier_token1] = ACTIONS(980), - [aux_sym_cmd_identifier_token2] = ACTIONS(980), - [aux_sym_cmd_identifier_token3] = ACTIONS(980), - [aux_sym_cmd_identifier_token4] = ACTIONS(980), - [aux_sym_cmd_identifier_token5] = ACTIONS(980), - [aux_sym_cmd_identifier_token6] = ACTIONS(980), - [aux_sym_cmd_identifier_token7] = ACTIONS(980), - [aux_sym_cmd_identifier_token8] = ACTIONS(980), - [aux_sym_cmd_identifier_token9] = ACTIONS(980), - [aux_sym_cmd_identifier_token10] = ACTIONS(980), - [aux_sym_cmd_identifier_token11] = ACTIONS(980), - [aux_sym_cmd_identifier_token12] = ACTIONS(980), - [aux_sym_cmd_identifier_token13] = ACTIONS(980), - [aux_sym_cmd_identifier_token14] = ACTIONS(980), - [aux_sym_cmd_identifier_token15] = ACTIONS(980), - [aux_sym_cmd_identifier_token16] = ACTIONS(980), - [aux_sym_cmd_identifier_token17] = ACTIONS(980), - [aux_sym_cmd_identifier_token18] = ACTIONS(980), - [aux_sym_cmd_identifier_token19] = ACTIONS(980), - [aux_sym_cmd_identifier_token20] = ACTIONS(980), - [aux_sym_cmd_identifier_token21] = ACTIONS(980), - [aux_sym_cmd_identifier_token22] = ACTIONS(980), - [aux_sym_cmd_identifier_token23] = ACTIONS(980), - [aux_sym_cmd_identifier_token24] = ACTIONS(980), - [aux_sym_cmd_identifier_token25] = ACTIONS(980), - [aux_sym_cmd_identifier_token26] = ACTIONS(980), - [aux_sym_cmd_identifier_token27] = ACTIONS(980), - [aux_sym_cmd_identifier_token28] = ACTIONS(980), - [aux_sym_cmd_identifier_token29] = ACTIONS(980), - [aux_sym_cmd_identifier_token30] = ACTIONS(980), - [aux_sym_cmd_identifier_token31] = ACTIONS(980), - [aux_sym_cmd_identifier_token32] = ACTIONS(980), - [aux_sym_cmd_identifier_token33] = ACTIONS(980), - [aux_sym_cmd_identifier_token34] = ACTIONS(980), - [aux_sym_cmd_identifier_token35] = ACTIONS(980), - [aux_sym_cmd_identifier_token36] = ACTIONS(980), - [anon_sym_true] = ACTIONS(982), - [anon_sym_false] = ACTIONS(982), - [anon_sym_null] = ACTIONS(982), - [aux_sym_cmd_identifier_token38] = ACTIONS(980), - [aux_sym_cmd_identifier_token39] = ACTIONS(982), - [aux_sym_cmd_identifier_token40] = ACTIONS(982), - [anon_sym_def] = ACTIONS(980), - [anon_sym_export_DASHenv] = ACTIONS(980), - [anon_sym_extern] = ACTIONS(980), - [anon_sym_module] = ACTIONS(980), - [anon_sym_use] = ACTIONS(980), - [anon_sym_LPAREN] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(982), - [anon_sym_error] = ACTIONS(980), - [anon_sym_list] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_break] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_for] = ACTIONS(980), - [anon_sym_in] = ACTIONS(980), - [anon_sym_loop] = ACTIONS(980), - [anon_sym_make] = ACTIONS(980), - [anon_sym_while] = ACTIONS(980), - [anon_sym_do] = ACTIONS(980), - [anon_sym_if] = ACTIONS(980), - [anon_sym_else] = ACTIONS(980), - [anon_sym_match] = ACTIONS(980), - [anon_sym_RBRACE] = ACTIONS(982), - [anon_sym_try] = ACTIONS(980), - [anon_sym_catch] = ACTIONS(980), - [anon_sym_return] = ACTIONS(980), - [anon_sym_source] = ACTIONS(980), - [anon_sym_source_DASHenv] = ACTIONS(980), - [anon_sym_register] = ACTIONS(980), - [anon_sym_hide] = ACTIONS(980), - [anon_sym_hide_DASHenv] = ACTIONS(980), - [anon_sym_overlay] = ACTIONS(980), - [anon_sym_new] = ACTIONS(980), - [anon_sym_as] = ACTIONS(980), - [anon_sym_QMARK2] = ACTIONS(2307), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(982), - [anon_sym_DOT] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(982), - [aux_sym__val_number_decimal_token1] = ACTIONS(980), - [aux_sym__val_number_decimal_token2] = ACTIONS(982), - [aux_sym__val_number_decimal_token3] = ACTIONS(982), - [aux_sym__val_number_decimal_token4] = ACTIONS(982), - [aux_sym__val_number_token1] = ACTIONS(982), - [aux_sym__val_number_token2] = ACTIONS(982), - [aux_sym__val_number_token3] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(982), - [sym__str_single_quotes] = ACTIONS(982), - [sym__str_back_ticks] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(2364), + [anon_sym_alias] = ACTIONS(2364), + [anon_sym_let] = ACTIONS(2364), + [anon_sym_let_DASHenv] = ACTIONS(2364), + [anon_sym_mut] = ACTIONS(2364), + [anon_sym_const] = ACTIONS(2364), + [aux_sym_cmd_identifier_token1] = ACTIONS(2364), + [aux_sym_cmd_identifier_token2] = ACTIONS(2364), + [aux_sym_cmd_identifier_token3] = ACTIONS(2364), + [aux_sym_cmd_identifier_token4] = ACTIONS(2364), + [aux_sym_cmd_identifier_token5] = ACTIONS(2364), + [aux_sym_cmd_identifier_token6] = ACTIONS(2364), + [aux_sym_cmd_identifier_token7] = ACTIONS(2364), + [aux_sym_cmd_identifier_token8] = ACTIONS(2364), + [aux_sym_cmd_identifier_token9] = ACTIONS(2364), + [aux_sym_cmd_identifier_token10] = ACTIONS(2364), + [aux_sym_cmd_identifier_token11] = ACTIONS(2364), + [aux_sym_cmd_identifier_token12] = ACTIONS(2364), + [aux_sym_cmd_identifier_token13] = ACTIONS(2364), + [aux_sym_cmd_identifier_token14] = ACTIONS(2364), + [aux_sym_cmd_identifier_token15] = ACTIONS(2364), + [aux_sym_cmd_identifier_token16] = ACTIONS(2364), + [aux_sym_cmd_identifier_token17] = ACTIONS(2364), + [aux_sym_cmd_identifier_token18] = ACTIONS(2364), + [aux_sym_cmd_identifier_token19] = ACTIONS(2364), + [aux_sym_cmd_identifier_token20] = ACTIONS(2364), + [aux_sym_cmd_identifier_token21] = ACTIONS(2364), + [aux_sym_cmd_identifier_token22] = ACTIONS(2364), + [aux_sym_cmd_identifier_token23] = ACTIONS(2364), + [aux_sym_cmd_identifier_token24] = ACTIONS(2364), + [aux_sym_cmd_identifier_token25] = ACTIONS(2364), + [aux_sym_cmd_identifier_token26] = ACTIONS(2364), + [aux_sym_cmd_identifier_token27] = ACTIONS(2364), + [aux_sym_cmd_identifier_token28] = ACTIONS(2364), + [aux_sym_cmd_identifier_token29] = ACTIONS(2364), + [aux_sym_cmd_identifier_token30] = ACTIONS(2364), + [aux_sym_cmd_identifier_token31] = ACTIONS(2364), + [aux_sym_cmd_identifier_token32] = ACTIONS(2364), + [aux_sym_cmd_identifier_token33] = ACTIONS(2364), + [aux_sym_cmd_identifier_token34] = ACTIONS(2364), + [aux_sym_cmd_identifier_token35] = ACTIONS(2364), + [aux_sym_cmd_identifier_token36] = ACTIONS(2364), + [anon_sym_true] = ACTIONS(2364), + [anon_sym_false] = ACTIONS(2364), + [anon_sym_null] = ACTIONS(2364), + [aux_sym_cmd_identifier_token38] = ACTIONS(2364), + [aux_sym_cmd_identifier_token39] = ACTIONS(2364), + [aux_sym_cmd_identifier_token40] = ACTIONS(2364), + [anon_sym_def] = ACTIONS(2364), + [anon_sym_export_DASHenv] = ACTIONS(2364), + [anon_sym_extern] = ACTIONS(2364), + [anon_sym_module] = ACTIONS(2364), + [anon_sym_use] = ACTIONS(2364), + [anon_sym_LPAREN] = ACTIONS(2364), + [anon_sym_DOLLAR] = ACTIONS(2364), + [anon_sym_error] = ACTIONS(2364), + [anon_sym_list] = ACTIONS(2364), + [anon_sym_DASH] = ACTIONS(2364), + [anon_sym_break] = ACTIONS(2364), + [anon_sym_continue] = ACTIONS(2364), + [anon_sym_for] = ACTIONS(2364), + [anon_sym_in] = ACTIONS(2364), + [anon_sym_loop] = ACTIONS(2364), + [anon_sym_make] = ACTIONS(2364), + [anon_sym_while] = ACTIONS(2364), + [anon_sym_do] = ACTIONS(2364), + [anon_sym_if] = ACTIONS(2364), + [anon_sym_else] = ACTIONS(2364), + [anon_sym_match] = ACTIONS(2364), + [anon_sym_RBRACE] = ACTIONS(2364), + [anon_sym_try] = ACTIONS(2364), + [anon_sym_catch] = ACTIONS(2364), + [anon_sym_return] = ACTIONS(2364), + [anon_sym_source] = ACTIONS(2364), + [anon_sym_source_DASHenv] = ACTIONS(2364), + [anon_sym_register] = ACTIONS(2364), + [anon_sym_hide] = ACTIONS(2364), + [anon_sym_hide_DASHenv] = ACTIONS(2364), + [anon_sym_overlay] = ACTIONS(2364), + [anon_sym_new] = ACTIONS(2364), + [anon_sym_as] = ACTIONS(2364), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2364), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2364), + [aux_sym__val_number_decimal_token1] = ACTIONS(2364), + [aux_sym__val_number_decimal_token2] = ACTIONS(2364), + [aux_sym__val_number_decimal_token3] = ACTIONS(2364), + [aux_sym__val_number_decimal_token4] = ACTIONS(2364), + [aux_sym__val_number_token1] = ACTIONS(2364), + [aux_sym__val_number_token2] = ACTIONS(2364), + [aux_sym__val_number_token3] = ACTIONS(2364), + [anon_sym_DQUOTE] = ACTIONS(2364), + [sym__str_single_quotes] = ACTIONS(2364), + [sym__str_back_ticks] = ACTIONS(2364), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2364), + [sym__entry_separator] = ACTIONS(2366), + [anon_sym_PLUS] = ACTIONS(2364), + [anon_sym_POUND] = ACTIONS(3), }, [515] = { [sym_comment] = STATE(515), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_alias] = ACTIONS(1569), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_let_DASHenv] = ACTIONS(1569), - [anon_sym_mut] = ACTIONS(1569), - [anon_sym_const] = ACTIONS(1569), - [aux_sym_cmd_identifier_token1] = ACTIONS(1569), - [aux_sym_cmd_identifier_token2] = ACTIONS(1569), - [aux_sym_cmd_identifier_token3] = ACTIONS(1569), - [aux_sym_cmd_identifier_token4] = ACTIONS(1569), - [aux_sym_cmd_identifier_token5] = ACTIONS(1569), - [aux_sym_cmd_identifier_token6] = ACTIONS(1569), - [aux_sym_cmd_identifier_token7] = ACTIONS(1569), - [aux_sym_cmd_identifier_token8] = ACTIONS(1569), - [aux_sym_cmd_identifier_token9] = ACTIONS(1569), - [aux_sym_cmd_identifier_token10] = ACTIONS(1569), - [aux_sym_cmd_identifier_token11] = ACTIONS(1569), - [aux_sym_cmd_identifier_token12] = ACTIONS(1569), - [aux_sym_cmd_identifier_token13] = ACTIONS(1569), - [aux_sym_cmd_identifier_token14] = ACTIONS(1569), - [aux_sym_cmd_identifier_token15] = ACTIONS(1569), - [aux_sym_cmd_identifier_token16] = ACTIONS(1569), - [aux_sym_cmd_identifier_token17] = ACTIONS(1569), - [aux_sym_cmd_identifier_token18] = ACTIONS(1569), - [aux_sym_cmd_identifier_token19] = ACTIONS(1569), - [aux_sym_cmd_identifier_token20] = ACTIONS(1569), - [aux_sym_cmd_identifier_token21] = ACTIONS(1569), - [aux_sym_cmd_identifier_token22] = ACTIONS(1569), - [aux_sym_cmd_identifier_token23] = ACTIONS(1569), - [aux_sym_cmd_identifier_token24] = ACTIONS(1569), - [aux_sym_cmd_identifier_token25] = ACTIONS(1569), - [aux_sym_cmd_identifier_token26] = ACTIONS(1569), - [aux_sym_cmd_identifier_token27] = ACTIONS(1569), - [aux_sym_cmd_identifier_token28] = ACTIONS(1569), - [aux_sym_cmd_identifier_token29] = ACTIONS(1569), - [aux_sym_cmd_identifier_token30] = ACTIONS(1569), - [aux_sym_cmd_identifier_token31] = ACTIONS(1569), - [aux_sym_cmd_identifier_token32] = ACTIONS(1569), - [aux_sym_cmd_identifier_token33] = ACTIONS(1569), - [aux_sym_cmd_identifier_token34] = ACTIONS(1569), - [aux_sym_cmd_identifier_token35] = ACTIONS(1569), - [aux_sym_cmd_identifier_token36] = ACTIONS(1569), - [anon_sym_true] = ACTIONS(1571), - [anon_sym_false] = ACTIONS(1571), - [anon_sym_null] = ACTIONS(1571), - [aux_sym_cmd_identifier_token38] = ACTIONS(1569), - [aux_sym_cmd_identifier_token39] = ACTIONS(1571), - [aux_sym_cmd_identifier_token40] = ACTIONS(1571), - [anon_sym_def] = ACTIONS(1569), - [anon_sym_export_DASHenv] = ACTIONS(1569), - [anon_sym_extern] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_use] = ACTIONS(1569), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_DOLLAR] = ACTIONS(1571), - [anon_sym_error] = ACTIONS(1569), - [anon_sym_list] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_break] = ACTIONS(1569), - [anon_sym_continue] = ACTIONS(1569), - [anon_sym_for] = ACTIONS(1569), - [anon_sym_in] = ACTIONS(1569), - [anon_sym_loop] = ACTIONS(1569), - [anon_sym_make] = ACTIONS(1569), - [anon_sym_while] = ACTIONS(1569), - [anon_sym_do] = ACTIONS(1569), - [anon_sym_if] = ACTIONS(1569), - [anon_sym_else] = ACTIONS(1569), - [anon_sym_match] = ACTIONS(1569), - [anon_sym_RBRACE] = ACTIONS(1571), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_catch] = ACTIONS(1569), - [anon_sym_return] = ACTIONS(1569), - [anon_sym_source] = ACTIONS(1569), - [anon_sym_source_DASHenv] = ACTIONS(1569), - [anon_sym_register] = ACTIONS(1569), - [anon_sym_hide] = ACTIONS(1569), - [anon_sym_hide_DASHenv] = ACTIONS(1569), - [anon_sym_overlay] = ACTIONS(1569), - [anon_sym_new] = ACTIONS(1569), - [anon_sym_as] = ACTIONS(1569), - [anon_sym_LPAREN2] = ACTIONS(1571), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1571), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1571), - [aux_sym__val_number_decimal_token1] = ACTIONS(1569), - [aux_sym__val_number_decimal_token2] = ACTIONS(1571), - [aux_sym__val_number_decimal_token3] = ACTIONS(1571), - [aux_sym__val_number_decimal_token4] = ACTIONS(1571), - [aux_sym__val_number_token1] = ACTIONS(1571), - [aux_sym__val_number_token2] = ACTIONS(1571), - [aux_sym__val_number_token3] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [sym__str_single_quotes] = ACTIONS(1571), - [sym__str_back_ticks] = ACTIONS(1571), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1569), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1569), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(2364), + [anon_sym_alias] = ACTIONS(2364), + [anon_sym_let] = ACTIONS(2364), + [anon_sym_let_DASHenv] = ACTIONS(2364), + [anon_sym_mut] = ACTIONS(2364), + [anon_sym_const] = ACTIONS(2364), + [aux_sym_cmd_identifier_token1] = ACTIONS(2364), + [aux_sym_cmd_identifier_token2] = ACTIONS(2364), + [aux_sym_cmd_identifier_token3] = ACTIONS(2364), + [aux_sym_cmd_identifier_token4] = ACTIONS(2364), + [aux_sym_cmd_identifier_token5] = ACTIONS(2364), + [aux_sym_cmd_identifier_token6] = ACTIONS(2364), + [aux_sym_cmd_identifier_token7] = ACTIONS(2364), + [aux_sym_cmd_identifier_token8] = ACTIONS(2364), + [aux_sym_cmd_identifier_token9] = ACTIONS(2364), + [aux_sym_cmd_identifier_token10] = ACTIONS(2364), + [aux_sym_cmd_identifier_token11] = ACTIONS(2364), + [aux_sym_cmd_identifier_token12] = ACTIONS(2364), + [aux_sym_cmd_identifier_token13] = ACTIONS(2364), + [aux_sym_cmd_identifier_token14] = ACTIONS(2364), + [aux_sym_cmd_identifier_token15] = ACTIONS(2364), + [aux_sym_cmd_identifier_token16] = ACTIONS(2364), + [aux_sym_cmd_identifier_token17] = ACTIONS(2364), + [aux_sym_cmd_identifier_token18] = ACTIONS(2364), + [aux_sym_cmd_identifier_token19] = ACTIONS(2364), + [aux_sym_cmd_identifier_token20] = ACTIONS(2364), + [aux_sym_cmd_identifier_token21] = ACTIONS(2364), + [aux_sym_cmd_identifier_token22] = ACTIONS(2364), + [aux_sym_cmd_identifier_token23] = ACTIONS(2364), + [aux_sym_cmd_identifier_token24] = ACTIONS(2364), + [aux_sym_cmd_identifier_token25] = ACTIONS(2364), + [aux_sym_cmd_identifier_token26] = ACTIONS(2364), + [aux_sym_cmd_identifier_token27] = ACTIONS(2364), + [aux_sym_cmd_identifier_token28] = ACTIONS(2364), + [aux_sym_cmd_identifier_token29] = ACTIONS(2364), + [aux_sym_cmd_identifier_token30] = ACTIONS(2364), + [aux_sym_cmd_identifier_token31] = ACTIONS(2364), + [aux_sym_cmd_identifier_token32] = ACTIONS(2364), + [aux_sym_cmd_identifier_token33] = ACTIONS(2364), + [aux_sym_cmd_identifier_token34] = ACTIONS(2364), + [aux_sym_cmd_identifier_token35] = ACTIONS(2364), + [aux_sym_cmd_identifier_token36] = ACTIONS(2364), + [anon_sym_true] = ACTIONS(2364), + [anon_sym_false] = ACTIONS(2364), + [anon_sym_null] = ACTIONS(2364), + [aux_sym_cmd_identifier_token38] = ACTIONS(2364), + [aux_sym_cmd_identifier_token39] = ACTIONS(2364), + [aux_sym_cmd_identifier_token40] = ACTIONS(2364), + [anon_sym_def] = ACTIONS(2364), + [anon_sym_export_DASHenv] = ACTIONS(2364), + [anon_sym_extern] = ACTIONS(2364), + [anon_sym_module] = ACTIONS(2364), + [anon_sym_use] = ACTIONS(2364), + [anon_sym_LPAREN] = ACTIONS(2364), + [anon_sym_DOLLAR] = ACTIONS(2364), + [anon_sym_error] = ACTIONS(2364), + [anon_sym_list] = ACTIONS(2364), + [anon_sym_DASH] = ACTIONS(2364), + [anon_sym_break] = ACTIONS(2364), + [anon_sym_continue] = ACTIONS(2364), + [anon_sym_for] = ACTIONS(2364), + [anon_sym_in] = ACTIONS(2364), + [anon_sym_loop] = ACTIONS(2364), + [anon_sym_make] = ACTIONS(2364), + [anon_sym_while] = ACTIONS(2364), + [anon_sym_do] = ACTIONS(2364), + [anon_sym_if] = ACTIONS(2364), + [anon_sym_else] = ACTIONS(2364), + [anon_sym_match] = ACTIONS(2364), + [anon_sym_RBRACE] = ACTIONS(2364), + [anon_sym_try] = ACTIONS(2364), + [anon_sym_catch] = ACTIONS(2364), + [anon_sym_return] = ACTIONS(2364), + [anon_sym_source] = ACTIONS(2364), + [anon_sym_source_DASHenv] = ACTIONS(2364), + [anon_sym_register] = ACTIONS(2364), + [anon_sym_hide] = ACTIONS(2364), + [anon_sym_hide_DASHenv] = ACTIONS(2364), + [anon_sym_overlay] = ACTIONS(2364), + [anon_sym_new] = ACTIONS(2364), + [anon_sym_as] = ACTIONS(2364), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2364), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2364), + [aux_sym__val_number_decimal_token1] = ACTIONS(2364), + [aux_sym__val_number_decimal_token2] = ACTIONS(2364), + [aux_sym__val_number_decimal_token3] = ACTIONS(2364), + [aux_sym__val_number_decimal_token4] = ACTIONS(2364), + [aux_sym__val_number_token1] = ACTIONS(2364), + [aux_sym__val_number_token2] = ACTIONS(2364), + [aux_sym__val_number_token3] = ACTIONS(2364), + [anon_sym_DQUOTE] = ACTIONS(2364), + [sym__str_single_quotes] = ACTIONS(2364), + [sym__str_back_ticks] = ACTIONS(2364), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2364), + [sym__entry_separator] = ACTIONS(2366), + [anon_sym_PLUS] = ACTIONS(2364), + [anon_sym_POUND] = ACTIONS(3), }, [516] = { [sym_comment] = STATE(516), - [aux_sym__multiple_types_repeat1] = STATE(527), - [anon_sym_export] = ACTIONS(2275), - [anon_sym_alias] = ACTIONS(2275), - [anon_sym_let] = ACTIONS(2275), - [anon_sym_let_DASHenv] = ACTIONS(2275), - [anon_sym_mut] = ACTIONS(2275), - [anon_sym_const] = ACTIONS(2275), - [aux_sym_cmd_identifier_token1] = ACTIONS(2275), - [aux_sym_cmd_identifier_token2] = ACTIONS(2275), - [aux_sym_cmd_identifier_token3] = ACTIONS(2275), - [aux_sym_cmd_identifier_token4] = ACTIONS(2275), - [aux_sym_cmd_identifier_token5] = ACTIONS(2275), - [aux_sym_cmd_identifier_token6] = ACTIONS(2275), - [aux_sym_cmd_identifier_token7] = ACTIONS(2275), - [aux_sym_cmd_identifier_token8] = ACTIONS(2275), - [aux_sym_cmd_identifier_token9] = ACTIONS(2275), - [aux_sym_cmd_identifier_token10] = ACTIONS(2275), - [aux_sym_cmd_identifier_token11] = ACTIONS(2275), - [aux_sym_cmd_identifier_token12] = ACTIONS(2275), - [aux_sym_cmd_identifier_token13] = ACTIONS(2275), - [aux_sym_cmd_identifier_token14] = ACTIONS(2275), - [aux_sym_cmd_identifier_token15] = ACTIONS(2275), - [aux_sym_cmd_identifier_token16] = ACTIONS(2275), - [aux_sym_cmd_identifier_token17] = ACTIONS(2275), - [aux_sym_cmd_identifier_token18] = ACTIONS(2275), - [aux_sym_cmd_identifier_token19] = ACTIONS(2275), - [aux_sym_cmd_identifier_token20] = ACTIONS(2275), - [aux_sym_cmd_identifier_token21] = ACTIONS(2275), - [aux_sym_cmd_identifier_token22] = ACTIONS(2275), - [aux_sym_cmd_identifier_token23] = ACTIONS(2275), - [aux_sym_cmd_identifier_token24] = ACTIONS(2275), - [aux_sym_cmd_identifier_token25] = ACTIONS(2275), - [aux_sym_cmd_identifier_token26] = ACTIONS(2275), - [aux_sym_cmd_identifier_token27] = ACTIONS(2275), - [aux_sym_cmd_identifier_token28] = ACTIONS(2275), - [aux_sym_cmd_identifier_token29] = ACTIONS(2275), - [aux_sym_cmd_identifier_token30] = ACTIONS(2275), - [aux_sym_cmd_identifier_token31] = ACTIONS(2275), - [aux_sym_cmd_identifier_token32] = ACTIONS(2275), - [aux_sym_cmd_identifier_token33] = ACTIONS(2275), - [aux_sym_cmd_identifier_token34] = ACTIONS(2275), - [aux_sym_cmd_identifier_token35] = ACTIONS(2275), - [aux_sym_cmd_identifier_token36] = ACTIONS(2275), - [anon_sym_true] = ACTIONS(2275), - [anon_sym_false] = ACTIONS(2275), - [anon_sym_null] = ACTIONS(2275), - [aux_sym_cmd_identifier_token38] = ACTIONS(2275), - [aux_sym_cmd_identifier_token39] = ACTIONS(2275), - [aux_sym_cmd_identifier_token40] = ACTIONS(2275), - [anon_sym_def] = ACTIONS(2275), - [anon_sym_export_DASHenv] = ACTIONS(2275), - [anon_sym_extern] = ACTIONS(2275), - [anon_sym_module] = ACTIONS(2275), - [anon_sym_use] = ACTIONS(2275), - [anon_sym_LPAREN] = ACTIONS(2275), - [anon_sym_DOLLAR] = ACTIONS(2275), - [anon_sym_error] = ACTIONS(2275), - [anon_sym_list] = ACTIONS(2275), - [anon_sym_DASH] = ACTIONS(2275), - [anon_sym_break] = ACTIONS(2275), - [anon_sym_continue] = ACTIONS(2275), - [anon_sym_for] = ACTIONS(2275), - [anon_sym_in] = ACTIONS(2275), - [anon_sym_loop] = ACTIONS(2275), - [anon_sym_make] = ACTIONS(2275), - [anon_sym_while] = ACTIONS(2275), - [anon_sym_do] = ACTIONS(2275), - [anon_sym_if] = ACTIONS(2275), - [anon_sym_else] = ACTIONS(2275), - [anon_sym_match] = ACTIONS(2275), - [anon_sym_RBRACE] = ACTIONS(2309), - [anon_sym_try] = ACTIONS(2275), - [anon_sym_catch] = ACTIONS(2275), - [anon_sym_return] = ACTIONS(2275), - [anon_sym_source] = ACTIONS(2275), - [anon_sym_source_DASHenv] = ACTIONS(2275), - [anon_sym_register] = ACTIONS(2275), - [anon_sym_hide] = ACTIONS(2275), - [anon_sym_hide_DASHenv] = ACTIONS(2275), - [anon_sym_overlay] = ACTIONS(2275), - [anon_sym_new] = ACTIONS(2275), - [anon_sym_as] = ACTIONS(2275), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2275), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2275), - [aux_sym__val_number_decimal_token1] = ACTIONS(2275), - [aux_sym__val_number_decimal_token2] = ACTIONS(2275), - [aux_sym__val_number_decimal_token3] = ACTIONS(2275), - [aux_sym__val_number_decimal_token4] = ACTIONS(2275), - [aux_sym__val_number_token1] = ACTIONS(2275), - [aux_sym__val_number_token2] = ACTIONS(2275), - [aux_sym__val_number_token3] = ACTIONS(2275), - [anon_sym_DQUOTE] = ACTIONS(2275), - [sym__str_single_quotes] = ACTIONS(2275), - [sym__str_back_ticks] = ACTIONS(2275), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2275), - [sym__entry_separator] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2275), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_alias] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_let_DASHenv] = ACTIONS(2368), + [anon_sym_mut] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [aux_sym_cmd_identifier_token1] = ACTIONS(2368), + [aux_sym_cmd_identifier_token2] = ACTIONS(2368), + [aux_sym_cmd_identifier_token3] = ACTIONS(2368), + [aux_sym_cmd_identifier_token4] = ACTIONS(2368), + [aux_sym_cmd_identifier_token5] = ACTIONS(2368), + [aux_sym_cmd_identifier_token6] = ACTIONS(2368), + [aux_sym_cmd_identifier_token7] = ACTIONS(2368), + [aux_sym_cmd_identifier_token8] = ACTIONS(2368), + [aux_sym_cmd_identifier_token9] = ACTIONS(2368), + [aux_sym_cmd_identifier_token10] = ACTIONS(2368), + [aux_sym_cmd_identifier_token11] = ACTIONS(2368), + [aux_sym_cmd_identifier_token12] = ACTIONS(2368), + [aux_sym_cmd_identifier_token13] = ACTIONS(2368), + [aux_sym_cmd_identifier_token14] = ACTIONS(2368), + [aux_sym_cmd_identifier_token15] = ACTIONS(2368), + [aux_sym_cmd_identifier_token16] = ACTIONS(2368), + [aux_sym_cmd_identifier_token17] = ACTIONS(2368), + [aux_sym_cmd_identifier_token18] = ACTIONS(2368), + [aux_sym_cmd_identifier_token19] = ACTIONS(2368), + [aux_sym_cmd_identifier_token20] = ACTIONS(2368), + [aux_sym_cmd_identifier_token21] = ACTIONS(2368), + [aux_sym_cmd_identifier_token22] = ACTIONS(2368), + [aux_sym_cmd_identifier_token23] = ACTIONS(2368), + [aux_sym_cmd_identifier_token24] = ACTIONS(2368), + [aux_sym_cmd_identifier_token25] = ACTIONS(2368), + [aux_sym_cmd_identifier_token26] = ACTIONS(2368), + [aux_sym_cmd_identifier_token27] = ACTIONS(2368), + [aux_sym_cmd_identifier_token28] = ACTIONS(2368), + [aux_sym_cmd_identifier_token29] = ACTIONS(2368), + [aux_sym_cmd_identifier_token30] = ACTIONS(2368), + [aux_sym_cmd_identifier_token31] = ACTIONS(2368), + [aux_sym_cmd_identifier_token32] = ACTIONS(2368), + [aux_sym_cmd_identifier_token33] = ACTIONS(2368), + [aux_sym_cmd_identifier_token34] = ACTIONS(2368), + [aux_sym_cmd_identifier_token35] = ACTIONS(2368), + [aux_sym_cmd_identifier_token36] = ACTIONS(2368), + [anon_sym_true] = ACTIONS(2368), + [anon_sym_false] = ACTIONS(2368), + [anon_sym_null] = ACTIONS(2368), + [aux_sym_cmd_identifier_token38] = ACTIONS(2368), + [aux_sym_cmd_identifier_token39] = ACTIONS(2368), + [aux_sym_cmd_identifier_token40] = ACTIONS(2368), + [anon_sym_def] = ACTIONS(2368), + [anon_sym_export_DASHenv] = ACTIONS(2368), + [anon_sym_extern] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_use] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_DOLLAR] = ACTIONS(2368), + [anon_sym_error] = ACTIONS(2368), + [anon_sym_list] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_in] = ACTIONS(2368), + [anon_sym_loop] = ACTIONS(2368), + [anon_sym_make] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_else] = ACTIONS(2368), + [anon_sym_match] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_catch] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_source] = ACTIONS(2368), + [anon_sym_source_DASHenv] = ACTIONS(2368), + [anon_sym_register] = ACTIONS(2368), + [anon_sym_hide] = ACTIONS(2368), + [anon_sym_hide_DASHenv] = ACTIONS(2368), + [anon_sym_overlay] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_as] = ACTIONS(2368), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2368), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2368), + [aux_sym__val_number_decimal_token1] = ACTIONS(2368), + [aux_sym__val_number_decimal_token2] = ACTIONS(2368), + [aux_sym__val_number_decimal_token3] = ACTIONS(2368), + [aux_sym__val_number_decimal_token4] = ACTIONS(2368), + [aux_sym__val_number_token1] = ACTIONS(2368), + [aux_sym__val_number_token2] = ACTIONS(2368), + [aux_sym__val_number_token3] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [sym__str_single_quotes] = ACTIONS(2368), + [sym__str_back_ticks] = ACTIONS(2368), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2368), + [sym__entry_separator] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2368), [anon_sym_POUND] = ACTIONS(3), }, [517] = { [sym_comment] = STATE(517), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_alias] = ACTIONS(1006), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_let_DASHenv] = ACTIONS(1006), - [anon_sym_mut] = ACTIONS(1006), - [anon_sym_const] = ACTIONS(1006), - [aux_sym_cmd_identifier_token1] = ACTIONS(1006), - [aux_sym_cmd_identifier_token2] = ACTIONS(1006), - [aux_sym_cmd_identifier_token3] = ACTIONS(1006), - [aux_sym_cmd_identifier_token4] = ACTIONS(1006), - [aux_sym_cmd_identifier_token5] = ACTIONS(1006), - [aux_sym_cmd_identifier_token6] = ACTIONS(1006), - [aux_sym_cmd_identifier_token7] = ACTIONS(1006), - [aux_sym_cmd_identifier_token8] = ACTIONS(1006), - [aux_sym_cmd_identifier_token9] = ACTIONS(1006), - [aux_sym_cmd_identifier_token10] = ACTIONS(1006), - [aux_sym_cmd_identifier_token11] = ACTIONS(1006), - [aux_sym_cmd_identifier_token12] = ACTIONS(1006), - [aux_sym_cmd_identifier_token13] = ACTIONS(1006), - [aux_sym_cmd_identifier_token14] = ACTIONS(1006), - [aux_sym_cmd_identifier_token15] = ACTIONS(1006), - [aux_sym_cmd_identifier_token16] = ACTIONS(1006), - [aux_sym_cmd_identifier_token17] = ACTIONS(1006), - [aux_sym_cmd_identifier_token18] = ACTIONS(1006), - [aux_sym_cmd_identifier_token19] = ACTIONS(1006), - [aux_sym_cmd_identifier_token20] = ACTIONS(1006), - [aux_sym_cmd_identifier_token21] = ACTIONS(1006), - [aux_sym_cmd_identifier_token22] = ACTIONS(1006), - [aux_sym_cmd_identifier_token23] = ACTIONS(1006), - [aux_sym_cmd_identifier_token24] = ACTIONS(1006), - [aux_sym_cmd_identifier_token25] = ACTIONS(1006), - [aux_sym_cmd_identifier_token26] = ACTIONS(1006), - [aux_sym_cmd_identifier_token27] = ACTIONS(1006), - [aux_sym_cmd_identifier_token28] = ACTIONS(1006), - [aux_sym_cmd_identifier_token29] = ACTIONS(1006), - [aux_sym_cmd_identifier_token30] = ACTIONS(1006), - [aux_sym_cmd_identifier_token31] = ACTIONS(1006), - [aux_sym_cmd_identifier_token32] = ACTIONS(1006), - [aux_sym_cmd_identifier_token33] = ACTIONS(1006), - [aux_sym_cmd_identifier_token34] = ACTIONS(1006), - [aux_sym_cmd_identifier_token35] = ACTIONS(1006), - [aux_sym_cmd_identifier_token36] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [anon_sym_null] = ACTIONS(1006), - [aux_sym_cmd_identifier_token38] = ACTIONS(1006), - [aux_sym_cmd_identifier_token39] = ACTIONS(1006), - [aux_sym_cmd_identifier_token40] = ACTIONS(1006), - [anon_sym_def] = ACTIONS(1006), - [anon_sym_export_DASHenv] = ACTIONS(1006), - [anon_sym_extern] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_use] = ACTIONS(1006), - [anon_sym_RBRACK] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_error] = ACTIONS(1006), - [anon_sym_list] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_in] = ACTIONS(1006), - [anon_sym_loop] = ACTIONS(1006), - [anon_sym_make] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_else] = ACTIONS(1006), - [anon_sym_match] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_try] = ACTIONS(1006), - [anon_sym_catch] = ACTIONS(1006), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_source] = ACTIONS(1006), - [anon_sym_source_DASHenv] = ACTIONS(1006), - [anon_sym_register] = ACTIONS(1006), - [anon_sym_hide] = ACTIONS(1006), - [anon_sym_hide_DASHenv] = ACTIONS(1006), - [anon_sym_overlay] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1006), - [anon_sym_as] = ACTIONS(1006), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1006), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1006), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1006), - [aux_sym__val_number_decimal_token4] = ACTIONS(1006), - [aux_sym__val_number_token1] = ACTIONS(1006), - [aux_sym__val_number_token2] = ACTIONS(1006), - [aux_sym__val_number_token3] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym__str_single_quotes] = ACTIONS(1006), - [sym__str_back_ticks] = ACTIONS(1006), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1006), - [sym__entry_separator] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_export] = ACTIONS(2372), + [anon_sym_alias] = ACTIONS(2372), + [anon_sym_let] = ACTIONS(2372), + [anon_sym_let_DASHenv] = ACTIONS(2372), + [anon_sym_mut] = ACTIONS(2372), + [anon_sym_const] = ACTIONS(2372), + [aux_sym_cmd_identifier_token1] = ACTIONS(2372), + [aux_sym_cmd_identifier_token2] = ACTIONS(2372), + [aux_sym_cmd_identifier_token3] = ACTIONS(2372), + [aux_sym_cmd_identifier_token4] = ACTIONS(2372), + [aux_sym_cmd_identifier_token5] = ACTIONS(2372), + [aux_sym_cmd_identifier_token6] = ACTIONS(2372), + [aux_sym_cmd_identifier_token7] = ACTIONS(2372), + [aux_sym_cmd_identifier_token8] = ACTIONS(2372), + [aux_sym_cmd_identifier_token9] = ACTIONS(2372), + [aux_sym_cmd_identifier_token10] = ACTIONS(2372), + [aux_sym_cmd_identifier_token11] = ACTIONS(2372), + [aux_sym_cmd_identifier_token12] = ACTIONS(2372), + [aux_sym_cmd_identifier_token13] = ACTIONS(2372), + [aux_sym_cmd_identifier_token14] = ACTIONS(2372), + [aux_sym_cmd_identifier_token15] = ACTIONS(2372), + [aux_sym_cmd_identifier_token16] = ACTIONS(2372), + [aux_sym_cmd_identifier_token17] = ACTIONS(2372), + [aux_sym_cmd_identifier_token18] = ACTIONS(2372), + [aux_sym_cmd_identifier_token19] = ACTIONS(2372), + [aux_sym_cmd_identifier_token20] = ACTIONS(2372), + [aux_sym_cmd_identifier_token21] = ACTIONS(2372), + [aux_sym_cmd_identifier_token22] = ACTIONS(2372), + [aux_sym_cmd_identifier_token23] = ACTIONS(2372), + [aux_sym_cmd_identifier_token24] = ACTIONS(2372), + [aux_sym_cmd_identifier_token25] = ACTIONS(2372), + [aux_sym_cmd_identifier_token26] = ACTIONS(2372), + [aux_sym_cmd_identifier_token27] = ACTIONS(2372), + [aux_sym_cmd_identifier_token28] = ACTIONS(2372), + [aux_sym_cmd_identifier_token29] = ACTIONS(2372), + [aux_sym_cmd_identifier_token30] = ACTIONS(2372), + [aux_sym_cmd_identifier_token31] = ACTIONS(2372), + [aux_sym_cmd_identifier_token32] = ACTIONS(2372), + [aux_sym_cmd_identifier_token33] = ACTIONS(2372), + [aux_sym_cmd_identifier_token34] = ACTIONS(2372), + [aux_sym_cmd_identifier_token35] = ACTIONS(2372), + [aux_sym_cmd_identifier_token36] = ACTIONS(2372), + [anon_sym_true] = ACTIONS(2372), + [anon_sym_false] = ACTIONS(2372), + [anon_sym_null] = ACTIONS(2372), + [aux_sym_cmd_identifier_token38] = ACTIONS(2372), + [aux_sym_cmd_identifier_token39] = ACTIONS(2372), + [aux_sym_cmd_identifier_token40] = ACTIONS(2372), + [anon_sym_def] = ACTIONS(2372), + [anon_sym_export_DASHenv] = ACTIONS(2372), + [anon_sym_extern] = ACTIONS(2372), + [anon_sym_module] = ACTIONS(2372), + [anon_sym_use] = ACTIONS(2372), + [anon_sym_LPAREN] = ACTIONS(2372), + [anon_sym_DOLLAR] = ACTIONS(2372), + [anon_sym_error] = ACTIONS(2372), + [anon_sym_list] = ACTIONS(2372), + [anon_sym_DASH] = ACTIONS(2372), + [anon_sym_break] = ACTIONS(2372), + [anon_sym_continue] = ACTIONS(2372), + [anon_sym_for] = ACTIONS(2372), + [anon_sym_in] = ACTIONS(2372), + [anon_sym_loop] = ACTIONS(2372), + [anon_sym_make] = ACTIONS(2372), + [anon_sym_while] = ACTIONS(2372), + [anon_sym_do] = ACTIONS(2372), + [anon_sym_if] = ACTIONS(2372), + [anon_sym_else] = ACTIONS(2372), + [anon_sym_match] = ACTIONS(2372), + [anon_sym_RBRACE] = ACTIONS(2372), + [anon_sym_try] = ACTIONS(2372), + [anon_sym_catch] = ACTIONS(2372), + [anon_sym_return] = ACTIONS(2372), + [anon_sym_source] = ACTIONS(2372), + [anon_sym_source_DASHenv] = ACTIONS(2372), + [anon_sym_register] = ACTIONS(2372), + [anon_sym_hide] = ACTIONS(2372), + [anon_sym_hide_DASHenv] = ACTIONS(2372), + [anon_sym_overlay] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2372), + [anon_sym_as] = ACTIONS(2372), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2372), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2372), + [aux_sym__val_number_decimal_token1] = ACTIONS(2372), + [aux_sym__val_number_decimal_token2] = ACTIONS(2372), + [aux_sym__val_number_decimal_token3] = ACTIONS(2372), + [aux_sym__val_number_decimal_token4] = ACTIONS(2372), + [aux_sym__val_number_token1] = ACTIONS(2372), + [aux_sym__val_number_token2] = ACTIONS(2372), + [aux_sym__val_number_token3] = ACTIONS(2372), + [anon_sym_DQUOTE] = ACTIONS(2372), + [sym__str_single_quotes] = ACTIONS(2372), + [sym__str_back_ticks] = ACTIONS(2372), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2372), + [sym__entry_separator] = ACTIONS(2374), + [anon_sym_PLUS] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), }, [518] = { [sym_comment] = STATE(518), - [anon_sym_export] = ACTIONS(2085), - [anon_sym_alias] = ACTIONS(2085), - [anon_sym_let] = ACTIONS(2085), - [anon_sym_let_DASHenv] = ACTIONS(2085), - [anon_sym_mut] = ACTIONS(2085), - [anon_sym_const] = ACTIONS(2085), - [aux_sym_cmd_identifier_token1] = ACTIONS(2085), - [aux_sym_cmd_identifier_token2] = ACTIONS(2085), - [aux_sym_cmd_identifier_token3] = ACTIONS(2085), - [aux_sym_cmd_identifier_token4] = ACTIONS(2085), - [aux_sym_cmd_identifier_token5] = ACTIONS(2085), - [aux_sym_cmd_identifier_token6] = ACTIONS(2085), - [aux_sym_cmd_identifier_token7] = ACTIONS(2085), - [aux_sym_cmd_identifier_token8] = ACTIONS(2085), - [aux_sym_cmd_identifier_token9] = ACTIONS(2085), - [aux_sym_cmd_identifier_token10] = ACTIONS(2085), - [aux_sym_cmd_identifier_token11] = ACTIONS(2085), - [aux_sym_cmd_identifier_token12] = ACTIONS(2085), - [aux_sym_cmd_identifier_token13] = ACTIONS(2085), - [aux_sym_cmd_identifier_token14] = ACTIONS(2085), - [aux_sym_cmd_identifier_token15] = ACTIONS(2085), - [aux_sym_cmd_identifier_token16] = ACTIONS(2085), - [aux_sym_cmd_identifier_token17] = ACTIONS(2085), - [aux_sym_cmd_identifier_token18] = ACTIONS(2085), - [aux_sym_cmd_identifier_token19] = ACTIONS(2085), - [aux_sym_cmd_identifier_token20] = ACTIONS(2085), - [aux_sym_cmd_identifier_token21] = ACTIONS(2085), - [aux_sym_cmd_identifier_token22] = ACTIONS(2085), - [aux_sym_cmd_identifier_token23] = ACTIONS(2085), - [aux_sym_cmd_identifier_token24] = ACTIONS(2085), - [aux_sym_cmd_identifier_token25] = ACTIONS(2085), - [aux_sym_cmd_identifier_token26] = ACTIONS(2085), - [aux_sym_cmd_identifier_token27] = ACTIONS(2085), - [aux_sym_cmd_identifier_token28] = ACTIONS(2085), - [aux_sym_cmd_identifier_token29] = ACTIONS(2085), - [aux_sym_cmd_identifier_token30] = ACTIONS(2085), - [aux_sym_cmd_identifier_token31] = ACTIONS(2085), - [aux_sym_cmd_identifier_token32] = ACTIONS(2085), - [aux_sym_cmd_identifier_token33] = ACTIONS(2085), - [aux_sym_cmd_identifier_token34] = ACTIONS(2085), - [aux_sym_cmd_identifier_token35] = ACTIONS(2085), - [aux_sym_cmd_identifier_token36] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2087), - [anon_sym_false] = ACTIONS(2087), - [anon_sym_null] = ACTIONS(2087), - [aux_sym_cmd_identifier_token38] = ACTIONS(2085), - [aux_sym_cmd_identifier_token39] = ACTIONS(2087), - [aux_sym_cmd_identifier_token40] = ACTIONS(2087), - [anon_sym_def] = ACTIONS(2085), - [anon_sym_export_DASHenv] = ACTIONS(2085), - [anon_sym_extern] = ACTIONS(2085), - [anon_sym_module] = ACTIONS(2085), - [anon_sym_use] = ACTIONS(2085), - [anon_sym_LPAREN] = ACTIONS(2085), - [anon_sym_DOLLAR] = ACTIONS(2087), - [anon_sym_error] = ACTIONS(2085), - [anon_sym_list] = ACTIONS(2085), - [anon_sym_DASH] = ACTIONS(2085), - [anon_sym_break] = ACTIONS(2085), - [anon_sym_continue] = ACTIONS(2085), - [anon_sym_for] = ACTIONS(2085), - [anon_sym_in] = ACTIONS(2085), - [anon_sym_loop] = ACTIONS(2085), - [anon_sym_make] = ACTIONS(2085), - [anon_sym_while] = ACTIONS(2085), - [anon_sym_do] = ACTIONS(2085), - [anon_sym_if] = ACTIONS(2085), - [anon_sym_else] = ACTIONS(2085), - [anon_sym_match] = ACTIONS(2085), - [anon_sym_RBRACE] = ACTIONS(2087), - [anon_sym_try] = ACTIONS(2085), - [anon_sym_catch] = ACTIONS(2085), - [anon_sym_return] = ACTIONS(2085), - [anon_sym_source] = ACTIONS(2085), - [anon_sym_source_DASHenv] = ACTIONS(2085), - [anon_sym_register] = ACTIONS(2085), - [anon_sym_hide] = ACTIONS(2085), - [anon_sym_hide_DASHenv] = ACTIONS(2085), - [anon_sym_overlay] = ACTIONS(2085), - [anon_sym_new] = ACTIONS(2085), - [anon_sym_as] = ACTIONS(2085), - [anon_sym_LPAREN2] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2087), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2087), - [aux_sym__val_number_decimal_token1] = ACTIONS(2085), - [aux_sym__val_number_decimal_token2] = ACTIONS(2087), - [aux_sym__val_number_decimal_token3] = ACTIONS(2087), - [aux_sym__val_number_decimal_token4] = ACTIONS(2087), - [aux_sym__val_number_token1] = ACTIONS(2087), - [aux_sym__val_number_token2] = ACTIONS(2087), - [aux_sym__val_number_token3] = ACTIONS(2087), - [anon_sym_DQUOTE] = ACTIONS(2087), - [sym__str_single_quotes] = ACTIONS(2087), - [sym__str_back_ticks] = ACTIONS(2087), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2087), - [anon_sym_PLUS] = ACTIONS(2085), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1719), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(2376), + [anon_sym_alias] = ACTIONS(2376), + [anon_sym_let] = ACTIONS(2376), + [anon_sym_let_DASHenv] = ACTIONS(2376), + [anon_sym_mut] = ACTIONS(2376), + [anon_sym_const] = ACTIONS(2376), + [aux_sym_cmd_identifier_token1] = ACTIONS(2376), + [aux_sym_cmd_identifier_token2] = ACTIONS(2376), + [aux_sym_cmd_identifier_token3] = ACTIONS(2376), + [aux_sym_cmd_identifier_token4] = ACTIONS(2376), + [aux_sym_cmd_identifier_token5] = ACTIONS(2376), + [aux_sym_cmd_identifier_token6] = ACTIONS(2376), + [aux_sym_cmd_identifier_token7] = ACTIONS(2376), + [aux_sym_cmd_identifier_token8] = ACTIONS(2376), + [aux_sym_cmd_identifier_token9] = ACTIONS(2376), + [aux_sym_cmd_identifier_token10] = ACTIONS(2376), + [aux_sym_cmd_identifier_token11] = ACTIONS(2376), + [aux_sym_cmd_identifier_token12] = ACTIONS(2376), + [aux_sym_cmd_identifier_token13] = ACTIONS(2376), + [aux_sym_cmd_identifier_token14] = ACTIONS(2376), + [aux_sym_cmd_identifier_token15] = ACTIONS(2376), + [aux_sym_cmd_identifier_token16] = ACTIONS(2376), + [aux_sym_cmd_identifier_token17] = ACTIONS(2376), + [aux_sym_cmd_identifier_token18] = ACTIONS(2376), + [aux_sym_cmd_identifier_token19] = ACTIONS(2376), + [aux_sym_cmd_identifier_token20] = ACTIONS(2376), + [aux_sym_cmd_identifier_token21] = ACTIONS(2376), + [aux_sym_cmd_identifier_token22] = ACTIONS(2376), + [aux_sym_cmd_identifier_token23] = ACTIONS(2376), + [aux_sym_cmd_identifier_token24] = ACTIONS(2376), + [aux_sym_cmd_identifier_token25] = ACTIONS(2376), + [aux_sym_cmd_identifier_token26] = ACTIONS(2376), + [aux_sym_cmd_identifier_token27] = ACTIONS(2376), + [aux_sym_cmd_identifier_token28] = ACTIONS(2376), + [aux_sym_cmd_identifier_token29] = ACTIONS(2376), + [aux_sym_cmd_identifier_token30] = ACTIONS(2376), + [aux_sym_cmd_identifier_token31] = ACTIONS(2376), + [aux_sym_cmd_identifier_token32] = ACTIONS(2376), + [aux_sym_cmd_identifier_token33] = ACTIONS(2376), + [aux_sym_cmd_identifier_token34] = ACTIONS(2376), + [aux_sym_cmd_identifier_token35] = ACTIONS(2376), + [aux_sym_cmd_identifier_token36] = ACTIONS(2376), + [anon_sym_true] = ACTIONS(2376), + [anon_sym_false] = ACTIONS(2376), + [anon_sym_null] = ACTIONS(2376), + [aux_sym_cmd_identifier_token38] = ACTIONS(2376), + [aux_sym_cmd_identifier_token39] = ACTIONS(2376), + [aux_sym_cmd_identifier_token40] = ACTIONS(2376), + [anon_sym_def] = ACTIONS(2376), + [anon_sym_export_DASHenv] = ACTIONS(2376), + [anon_sym_extern] = ACTIONS(2376), + [anon_sym_module] = ACTIONS(2376), + [anon_sym_use] = ACTIONS(2376), + [anon_sym_LPAREN] = ACTIONS(2376), + [anon_sym_DOLLAR] = ACTIONS(2376), + [anon_sym_error] = ACTIONS(2376), + [anon_sym_list] = ACTIONS(2376), + [anon_sym_DASH] = ACTIONS(2376), + [anon_sym_break] = ACTIONS(2376), + [anon_sym_continue] = ACTIONS(2376), + [anon_sym_for] = ACTIONS(2376), + [anon_sym_in] = ACTIONS(2376), + [anon_sym_loop] = ACTIONS(2376), + [anon_sym_make] = ACTIONS(2376), + [anon_sym_while] = ACTIONS(2376), + [anon_sym_do] = ACTIONS(2376), + [anon_sym_if] = ACTIONS(2376), + [anon_sym_else] = ACTIONS(2376), + [anon_sym_match] = ACTIONS(2376), + [anon_sym_RBRACE] = ACTIONS(2376), + [anon_sym_try] = ACTIONS(2376), + [anon_sym_catch] = ACTIONS(2376), + [anon_sym_return] = ACTIONS(2376), + [anon_sym_source] = ACTIONS(2376), + [anon_sym_source_DASHenv] = ACTIONS(2376), + [anon_sym_register] = ACTIONS(2376), + [anon_sym_hide] = ACTIONS(2376), + [anon_sym_hide_DASHenv] = ACTIONS(2376), + [anon_sym_overlay] = ACTIONS(2376), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_as] = ACTIONS(2376), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2376), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2376), + [aux_sym__val_number_decimal_token1] = ACTIONS(2376), + [aux_sym__val_number_decimal_token2] = ACTIONS(2376), + [aux_sym__val_number_decimal_token3] = ACTIONS(2376), + [aux_sym__val_number_decimal_token4] = ACTIONS(2376), + [aux_sym__val_number_token1] = ACTIONS(2376), + [aux_sym__val_number_token2] = ACTIONS(2376), + [aux_sym__val_number_token3] = ACTIONS(2376), + [anon_sym_DQUOTE] = ACTIONS(2376), + [sym__str_single_quotes] = ACTIONS(2376), + [sym__str_back_ticks] = ACTIONS(2376), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2376), + [sym__entry_separator] = ACTIONS(2378), + [anon_sym_PLUS] = ACTIONS(2376), + [anon_sym_POUND] = ACTIONS(3), }, [519] = { [sym_comment] = STATE(519), - [anon_sym_export] = ACTIONS(2311), - [anon_sym_alias] = ACTIONS(2311), - [anon_sym_let] = ACTIONS(2311), - [anon_sym_let_DASHenv] = ACTIONS(2311), - [anon_sym_mut] = ACTIONS(2311), - [anon_sym_const] = ACTIONS(2311), - [aux_sym_cmd_identifier_token1] = ACTIONS(2311), - [aux_sym_cmd_identifier_token2] = ACTIONS(2311), - [aux_sym_cmd_identifier_token3] = ACTIONS(2311), - [aux_sym_cmd_identifier_token4] = ACTIONS(2311), - [aux_sym_cmd_identifier_token5] = ACTIONS(2311), - [aux_sym_cmd_identifier_token6] = ACTIONS(2311), - [aux_sym_cmd_identifier_token7] = ACTIONS(2311), - [aux_sym_cmd_identifier_token8] = ACTIONS(2311), - [aux_sym_cmd_identifier_token9] = ACTIONS(2311), - [aux_sym_cmd_identifier_token10] = ACTIONS(2311), - [aux_sym_cmd_identifier_token11] = ACTIONS(2311), - [aux_sym_cmd_identifier_token12] = ACTIONS(2311), - [aux_sym_cmd_identifier_token13] = ACTIONS(2311), - [aux_sym_cmd_identifier_token14] = ACTIONS(2311), - [aux_sym_cmd_identifier_token15] = ACTIONS(2311), - [aux_sym_cmd_identifier_token16] = ACTIONS(2311), - [aux_sym_cmd_identifier_token17] = ACTIONS(2311), - [aux_sym_cmd_identifier_token18] = ACTIONS(2311), - [aux_sym_cmd_identifier_token19] = ACTIONS(2311), - [aux_sym_cmd_identifier_token20] = ACTIONS(2311), - [aux_sym_cmd_identifier_token21] = ACTIONS(2311), - [aux_sym_cmd_identifier_token22] = ACTIONS(2311), - [aux_sym_cmd_identifier_token23] = ACTIONS(2311), - [aux_sym_cmd_identifier_token24] = ACTIONS(2311), - [aux_sym_cmd_identifier_token25] = ACTIONS(2311), - [aux_sym_cmd_identifier_token26] = ACTIONS(2311), - [aux_sym_cmd_identifier_token27] = ACTIONS(2311), - [aux_sym_cmd_identifier_token28] = ACTIONS(2311), - [aux_sym_cmd_identifier_token29] = ACTIONS(2311), - [aux_sym_cmd_identifier_token30] = ACTIONS(2311), - [aux_sym_cmd_identifier_token31] = ACTIONS(2311), - [aux_sym_cmd_identifier_token32] = ACTIONS(2311), - [aux_sym_cmd_identifier_token33] = ACTIONS(2311), - [aux_sym_cmd_identifier_token34] = ACTIONS(2311), - [aux_sym_cmd_identifier_token35] = ACTIONS(2311), - [aux_sym_cmd_identifier_token36] = ACTIONS(2311), - [anon_sym_true] = ACTIONS(2311), - [anon_sym_false] = ACTIONS(2311), - [anon_sym_null] = ACTIONS(2311), - [aux_sym_cmd_identifier_token38] = ACTIONS(2311), - [aux_sym_cmd_identifier_token39] = ACTIONS(2311), - [aux_sym_cmd_identifier_token40] = ACTIONS(2311), - [anon_sym_def] = ACTIONS(2311), - [anon_sym_export_DASHenv] = ACTIONS(2311), - [anon_sym_extern] = ACTIONS(2311), - [anon_sym_module] = ACTIONS(2311), - [anon_sym_use] = ACTIONS(2311), - [anon_sym_RBRACK] = ACTIONS(2311), - [anon_sym_LPAREN] = ACTIONS(2311), - [anon_sym_DOLLAR] = ACTIONS(2311), - [anon_sym_error] = ACTIONS(2311), - [anon_sym_list] = ACTIONS(2311), - [anon_sym_DASH] = ACTIONS(2311), - [anon_sym_break] = ACTIONS(2311), - [anon_sym_continue] = ACTIONS(2311), - [anon_sym_for] = ACTIONS(2311), - [anon_sym_in] = ACTIONS(2311), - [anon_sym_loop] = ACTIONS(2311), - [anon_sym_make] = ACTIONS(2311), - [anon_sym_while] = ACTIONS(2311), - [anon_sym_do] = ACTIONS(2311), - [anon_sym_if] = ACTIONS(2311), - [anon_sym_else] = ACTIONS(2311), - [anon_sym_match] = ACTIONS(2311), - [anon_sym_RBRACE] = ACTIONS(2311), - [anon_sym_try] = ACTIONS(2311), - [anon_sym_catch] = ACTIONS(2311), - [anon_sym_return] = ACTIONS(2311), - [anon_sym_source] = ACTIONS(2311), - [anon_sym_source_DASHenv] = ACTIONS(2311), - [anon_sym_register] = ACTIONS(2311), - [anon_sym_hide] = ACTIONS(2311), - [anon_sym_hide_DASHenv] = ACTIONS(2311), - [anon_sym_overlay] = ACTIONS(2311), - [anon_sym_new] = ACTIONS(2311), - [anon_sym_as] = ACTIONS(2311), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2311), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2311), - [aux_sym__val_number_decimal_token1] = ACTIONS(2311), - [aux_sym__val_number_decimal_token2] = ACTIONS(2311), - [aux_sym__val_number_decimal_token3] = ACTIONS(2311), - [aux_sym__val_number_decimal_token4] = ACTIONS(2311), - [aux_sym__val_number_token1] = ACTIONS(2311), - [aux_sym__val_number_token2] = ACTIONS(2311), - [aux_sym__val_number_token3] = ACTIONS(2311), - [anon_sym_DQUOTE] = ACTIONS(2311), - [sym__str_single_quotes] = ACTIONS(2311), - [sym__str_back_ticks] = ACTIONS(2311), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2311), - [sym__entry_separator] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2311), + [anon_sym_export] = ACTIONS(2380), + [anon_sym_alias] = ACTIONS(2380), + [anon_sym_let] = ACTIONS(2380), + [anon_sym_let_DASHenv] = ACTIONS(2380), + [anon_sym_mut] = ACTIONS(2380), + [anon_sym_const] = ACTIONS(2380), + [aux_sym_cmd_identifier_token1] = ACTIONS(2380), + [aux_sym_cmd_identifier_token2] = ACTIONS(2380), + [aux_sym_cmd_identifier_token3] = ACTIONS(2380), + [aux_sym_cmd_identifier_token4] = ACTIONS(2380), + [aux_sym_cmd_identifier_token5] = ACTIONS(2380), + [aux_sym_cmd_identifier_token6] = ACTIONS(2380), + [aux_sym_cmd_identifier_token7] = ACTIONS(2380), + [aux_sym_cmd_identifier_token8] = ACTIONS(2380), + [aux_sym_cmd_identifier_token9] = ACTIONS(2380), + [aux_sym_cmd_identifier_token10] = ACTIONS(2380), + [aux_sym_cmd_identifier_token11] = ACTIONS(2380), + [aux_sym_cmd_identifier_token12] = ACTIONS(2380), + [aux_sym_cmd_identifier_token13] = ACTIONS(2380), + [aux_sym_cmd_identifier_token14] = ACTIONS(2380), + [aux_sym_cmd_identifier_token15] = ACTIONS(2380), + [aux_sym_cmd_identifier_token16] = ACTIONS(2380), + [aux_sym_cmd_identifier_token17] = ACTIONS(2380), + [aux_sym_cmd_identifier_token18] = ACTIONS(2380), + [aux_sym_cmd_identifier_token19] = ACTIONS(2380), + [aux_sym_cmd_identifier_token20] = ACTIONS(2380), + [aux_sym_cmd_identifier_token21] = ACTIONS(2380), + [aux_sym_cmd_identifier_token22] = ACTIONS(2380), + [aux_sym_cmd_identifier_token23] = ACTIONS(2380), + [aux_sym_cmd_identifier_token24] = ACTIONS(2380), + [aux_sym_cmd_identifier_token25] = ACTIONS(2380), + [aux_sym_cmd_identifier_token26] = ACTIONS(2380), + [aux_sym_cmd_identifier_token27] = ACTIONS(2380), + [aux_sym_cmd_identifier_token28] = ACTIONS(2380), + [aux_sym_cmd_identifier_token29] = ACTIONS(2380), + [aux_sym_cmd_identifier_token30] = ACTIONS(2380), + [aux_sym_cmd_identifier_token31] = ACTIONS(2380), + [aux_sym_cmd_identifier_token32] = ACTIONS(2380), + [aux_sym_cmd_identifier_token33] = ACTIONS(2380), + [aux_sym_cmd_identifier_token34] = ACTIONS(2380), + [aux_sym_cmd_identifier_token35] = ACTIONS(2380), + [aux_sym_cmd_identifier_token36] = ACTIONS(2380), + [anon_sym_true] = ACTIONS(2380), + [anon_sym_false] = ACTIONS(2380), + [anon_sym_null] = ACTIONS(2380), + [aux_sym_cmd_identifier_token38] = ACTIONS(2380), + [aux_sym_cmd_identifier_token39] = ACTIONS(2380), + [aux_sym_cmd_identifier_token40] = ACTIONS(2380), + [anon_sym_def] = ACTIONS(2380), + [anon_sym_export_DASHenv] = ACTIONS(2380), + [anon_sym_extern] = ACTIONS(2380), + [anon_sym_module] = ACTIONS(2380), + [anon_sym_use] = ACTIONS(2380), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_DOLLAR] = ACTIONS(2380), + [anon_sym_error] = ACTIONS(2380), + [anon_sym_list] = ACTIONS(2380), + [anon_sym_DASH] = ACTIONS(2380), + [anon_sym_break] = ACTIONS(2380), + [anon_sym_continue] = ACTIONS(2380), + [anon_sym_for] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(2380), + [anon_sym_loop] = ACTIONS(2380), + [anon_sym_make] = ACTIONS(2380), + [anon_sym_while] = ACTIONS(2380), + [anon_sym_do] = ACTIONS(2380), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_else] = ACTIONS(2380), + [anon_sym_match] = ACTIONS(2380), + [anon_sym_RBRACE] = ACTIONS(2380), + [anon_sym_try] = ACTIONS(2380), + [anon_sym_catch] = ACTIONS(2380), + [anon_sym_return] = ACTIONS(2380), + [anon_sym_source] = ACTIONS(2380), + [anon_sym_source_DASHenv] = ACTIONS(2380), + [anon_sym_register] = ACTIONS(2380), + [anon_sym_hide] = ACTIONS(2380), + [anon_sym_hide_DASHenv] = ACTIONS(2380), + [anon_sym_overlay] = ACTIONS(2380), + [anon_sym_new] = ACTIONS(2380), + [anon_sym_as] = ACTIONS(2380), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2380), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2380), + [aux_sym__val_number_decimal_token1] = ACTIONS(2380), + [aux_sym__val_number_decimal_token2] = ACTIONS(2380), + [aux_sym__val_number_decimal_token3] = ACTIONS(2380), + [aux_sym__val_number_decimal_token4] = ACTIONS(2380), + [aux_sym__val_number_token1] = ACTIONS(2380), + [aux_sym__val_number_token2] = ACTIONS(2380), + [aux_sym__val_number_token3] = ACTIONS(2380), + [anon_sym_DQUOTE] = ACTIONS(2380), + [sym__str_single_quotes] = ACTIONS(2380), + [sym__str_back_ticks] = ACTIONS(2380), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2380), + [sym__entry_separator] = ACTIONS(2382), + [anon_sym_PLUS] = ACTIONS(2380), [anon_sym_POUND] = ACTIONS(3), }, [520] = { [sym_comment] = STATE(520), - [anon_sym_export] = ACTIONS(1709), - [anon_sym_alias] = ACTIONS(1709), - [anon_sym_let] = ACTIONS(1709), - [anon_sym_let_DASHenv] = ACTIONS(1709), - [anon_sym_mut] = ACTIONS(1709), - [anon_sym_const] = ACTIONS(1709), - [aux_sym_cmd_identifier_token1] = ACTIONS(1709), - [aux_sym_cmd_identifier_token2] = ACTIONS(1709), - [aux_sym_cmd_identifier_token3] = ACTIONS(1709), - [aux_sym_cmd_identifier_token4] = ACTIONS(1709), - [aux_sym_cmd_identifier_token5] = ACTIONS(1709), - [aux_sym_cmd_identifier_token6] = ACTIONS(1709), - [aux_sym_cmd_identifier_token7] = ACTIONS(1709), - [aux_sym_cmd_identifier_token8] = ACTIONS(1709), - [aux_sym_cmd_identifier_token9] = ACTIONS(1709), - [aux_sym_cmd_identifier_token10] = ACTIONS(1709), - [aux_sym_cmd_identifier_token11] = ACTIONS(1709), - [aux_sym_cmd_identifier_token12] = ACTIONS(1709), - [aux_sym_cmd_identifier_token13] = ACTIONS(1709), - [aux_sym_cmd_identifier_token14] = ACTIONS(1709), - [aux_sym_cmd_identifier_token15] = ACTIONS(1709), - [aux_sym_cmd_identifier_token16] = ACTIONS(1709), - [aux_sym_cmd_identifier_token17] = ACTIONS(1709), - [aux_sym_cmd_identifier_token18] = ACTIONS(1709), - [aux_sym_cmd_identifier_token19] = ACTIONS(1709), - [aux_sym_cmd_identifier_token20] = ACTIONS(1709), - [aux_sym_cmd_identifier_token21] = ACTIONS(1709), - [aux_sym_cmd_identifier_token22] = ACTIONS(1709), - [aux_sym_cmd_identifier_token23] = ACTIONS(1709), - [aux_sym_cmd_identifier_token24] = ACTIONS(1709), - [aux_sym_cmd_identifier_token25] = ACTIONS(1709), - [aux_sym_cmd_identifier_token26] = ACTIONS(1709), - [aux_sym_cmd_identifier_token27] = ACTIONS(1709), - [aux_sym_cmd_identifier_token28] = ACTIONS(1709), - [aux_sym_cmd_identifier_token29] = ACTIONS(1709), - [aux_sym_cmd_identifier_token30] = ACTIONS(1709), - [aux_sym_cmd_identifier_token31] = ACTIONS(1709), - [aux_sym_cmd_identifier_token32] = ACTIONS(1709), - [aux_sym_cmd_identifier_token33] = ACTIONS(1709), - [aux_sym_cmd_identifier_token34] = ACTIONS(1709), - [aux_sym_cmd_identifier_token35] = ACTIONS(1709), - [aux_sym_cmd_identifier_token36] = ACTIONS(1709), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1709), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [anon_sym_def] = ACTIONS(1709), - [anon_sym_export_DASHenv] = ACTIONS(1709), - [anon_sym_extern] = ACTIONS(1709), - [anon_sym_module] = ACTIONS(1709), - [anon_sym_use] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_DOLLAR] = ACTIONS(1717), - [anon_sym_error] = ACTIONS(1709), - [anon_sym_list] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_break] = ACTIONS(1709), - [anon_sym_continue] = ACTIONS(1709), - [anon_sym_for] = ACTIONS(1709), - [anon_sym_in] = ACTIONS(1709), - [anon_sym_loop] = ACTIONS(1709), - [anon_sym_make] = ACTIONS(1709), - [anon_sym_while] = ACTIONS(1709), - [anon_sym_do] = ACTIONS(1709), - [anon_sym_if] = ACTIONS(1709), - [anon_sym_else] = ACTIONS(1709), - [anon_sym_match] = ACTIONS(1709), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_try] = ACTIONS(1709), - [anon_sym_catch] = ACTIONS(1709), - [anon_sym_return] = ACTIONS(1709), - [anon_sym_source] = ACTIONS(1709), - [anon_sym_source_DASHenv] = ACTIONS(1709), - [anon_sym_register] = ACTIONS(1709), - [anon_sym_hide] = ACTIONS(1709), - [anon_sym_hide_DASHenv] = ACTIONS(1709), - [anon_sym_overlay] = ACTIONS(1709), - [anon_sym_new] = ACTIONS(1709), - [anon_sym_as] = ACTIONS(1709), - [anon_sym_LPAREN2] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1717), - [aux_sym__val_number_decimal_token1] = ACTIONS(1709), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1709), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1719), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(2384), + [anon_sym_alias] = ACTIONS(2384), + [anon_sym_let] = ACTIONS(2384), + [anon_sym_let_DASHenv] = ACTIONS(2384), + [anon_sym_mut] = ACTIONS(2384), + [anon_sym_const] = ACTIONS(2384), + [aux_sym_cmd_identifier_token1] = ACTIONS(2384), + [aux_sym_cmd_identifier_token2] = ACTIONS(2384), + [aux_sym_cmd_identifier_token3] = ACTIONS(2384), + [aux_sym_cmd_identifier_token4] = ACTIONS(2384), + [aux_sym_cmd_identifier_token5] = ACTIONS(2384), + [aux_sym_cmd_identifier_token6] = ACTIONS(2384), + [aux_sym_cmd_identifier_token7] = ACTIONS(2384), + [aux_sym_cmd_identifier_token8] = ACTIONS(2384), + [aux_sym_cmd_identifier_token9] = ACTIONS(2384), + [aux_sym_cmd_identifier_token10] = ACTIONS(2384), + [aux_sym_cmd_identifier_token11] = ACTIONS(2384), + [aux_sym_cmd_identifier_token12] = ACTIONS(2384), + [aux_sym_cmd_identifier_token13] = ACTIONS(2384), + [aux_sym_cmd_identifier_token14] = ACTIONS(2384), + [aux_sym_cmd_identifier_token15] = ACTIONS(2384), + [aux_sym_cmd_identifier_token16] = ACTIONS(2384), + [aux_sym_cmd_identifier_token17] = ACTIONS(2384), + [aux_sym_cmd_identifier_token18] = ACTIONS(2384), + [aux_sym_cmd_identifier_token19] = ACTIONS(2384), + [aux_sym_cmd_identifier_token20] = ACTIONS(2384), + [aux_sym_cmd_identifier_token21] = ACTIONS(2384), + [aux_sym_cmd_identifier_token22] = ACTIONS(2384), + [aux_sym_cmd_identifier_token23] = ACTIONS(2384), + [aux_sym_cmd_identifier_token24] = ACTIONS(2384), + [aux_sym_cmd_identifier_token25] = ACTIONS(2384), + [aux_sym_cmd_identifier_token26] = ACTIONS(2384), + [aux_sym_cmd_identifier_token27] = ACTIONS(2384), + [aux_sym_cmd_identifier_token28] = ACTIONS(2384), + [aux_sym_cmd_identifier_token29] = ACTIONS(2384), + [aux_sym_cmd_identifier_token30] = ACTIONS(2384), + [aux_sym_cmd_identifier_token31] = ACTIONS(2384), + [aux_sym_cmd_identifier_token32] = ACTIONS(2384), + [aux_sym_cmd_identifier_token33] = ACTIONS(2384), + [aux_sym_cmd_identifier_token34] = ACTIONS(2384), + [aux_sym_cmd_identifier_token35] = ACTIONS(2384), + [aux_sym_cmd_identifier_token36] = ACTIONS(2384), + [anon_sym_true] = ACTIONS(2384), + [anon_sym_false] = ACTIONS(2384), + [anon_sym_null] = ACTIONS(2384), + [aux_sym_cmd_identifier_token38] = ACTIONS(2384), + [aux_sym_cmd_identifier_token39] = ACTIONS(2384), + [aux_sym_cmd_identifier_token40] = ACTIONS(2384), + [anon_sym_def] = ACTIONS(2384), + [anon_sym_export_DASHenv] = ACTIONS(2384), + [anon_sym_extern] = ACTIONS(2384), + [anon_sym_module] = ACTIONS(2384), + [anon_sym_use] = ACTIONS(2384), + [anon_sym_LPAREN] = ACTIONS(2384), + [anon_sym_DOLLAR] = ACTIONS(2384), + [anon_sym_error] = ACTIONS(2384), + [anon_sym_list] = ACTIONS(2384), + [anon_sym_DASH] = ACTIONS(2384), + [anon_sym_break] = ACTIONS(2384), + [anon_sym_continue] = ACTIONS(2384), + [anon_sym_for] = ACTIONS(2384), + [anon_sym_in] = ACTIONS(2384), + [anon_sym_loop] = ACTIONS(2384), + [anon_sym_make] = ACTIONS(2384), + [anon_sym_while] = ACTIONS(2384), + [anon_sym_do] = ACTIONS(2384), + [anon_sym_if] = ACTIONS(2384), + [anon_sym_else] = ACTIONS(2384), + [anon_sym_match] = ACTIONS(2384), + [anon_sym_RBRACE] = ACTIONS(2384), + [anon_sym_try] = ACTIONS(2384), + [anon_sym_catch] = ACTIONS(2384), + [anon_sym_return] = ACTIONS(2384), + [anon_sym_source] = ACTIONS(2384), + [anon_sym_source_DASHenv] = ACTIONS(2384), + [anon_sym_register] = ACTIONS(2384), + [anon_sym_hide] = ACTIONS(2384), + [anon_sym_hide_DASHenv] = ACTIONS(2384), + [anon_sym_overlay] = ACTIONS(2384), + [anon_sym_new] = ACTIONS(2384), + [anon_sym_as] = ACTIONS(2384), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2384), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2384), + [aux_sym__val_number_decimal_token1] = ACTIONS(2384), + [aux_sym__val_number_decimal_token2] = ACTIONS(2384), + [aux_sym__val_number_decimal_token3] = ACTIONS(2384), + [aux_sym__val_number_decimal_token4] = ACTIONS(2384), + [aux_sym__val_number_token1] = ACTIONS(2384), + [aux_sym__val_number_token2] = ACTIONS(2384), + [aux_sym__val_number_token3] = ACTIONS(2384), + [anon_sym_DQUOTE] = ACTIONS(2384), + [sym__str_single_quotes] = ACTIONS(2384), + [sym__str_back_ticks] = ACTIONS(2384), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2384), + [sym__entry_separator] = ACTIONS(2386), + [anon_sym_PLUS] = ACTIONS(2384), + [anon_sym_POUND] = ACTIONS(3), }, [521] = { [sym_comment] = STATE(521), - [anon_sym_export] = ACTIONS(2117), - [anon_sym_alias] = ACTIONS(2117), - [anon_sym_let] = ACTIONS(2117), - [anon_sym_let_DASHenv] = ACTIONS(2117), - [anon_sym_mut] = ACTIONS(2117), - [anon_sym_const] = ACTIONS(2117), - [aux_sym_cmd_identifier_token1] = ACTIONS(2117), - [aux_sym_cmd_identifier_token2] = ACTIONS(2117), - [aux_sym_cmd_identifier_token3] = ACTIONS(2117), - [aux_sym_cmd_identifier_token4] = ACTIONS(2117), - [aux_sym_cmd_identifier_token5] = ACTIONS(2117), - [aux_sym_cmd_identifier_token6] = ACTIONS(2117), - [aux_sym_cmd_identifier_token7] = ACTIONS(2117), - [aux_sym_cmd_identifier_token8] = ACTIONS(2117), - [aux_sym_cmd_identifier_token9] = ACTIONS(2117), - [aux_sym_cmd_identifier_token10] = ACTIONS(2117), - [aux_sym_cmd_identifier_token11] = ACTIONS(2117), - [aux_sym_cmd_identifier_token12] = ACTIONS(2117), - [aux_sym_cmd_identifier_token13] = ACTIONS(2117), - [aux_sym_cmd_identifier_token14] = ACTIONS(2117), - [aux_sym_cmd_identifier_token15] = ACTIONS(2117), - [aux_sym_cmd_identifier_token16] = ACTIONS(2117), - [aux_sym_cmd_identifier_token17] = ACTIONS(2117), - [aux_sym_cmd_identifier_token18] = ACTIONS(2117), - [aux_sym_cmd_identifier_token19] = ACTIONS(2117), - [aux_sym_cmd_identifier_token20] = ACTIONS(2117), - [aux_sym_cmd_identifier_token21] = ACTIONS(2117), - [aux_sym_cmd_identifier_token22] = ACTIONS(2117), - [aux_sym_cmd_identifier_token23] = ACTIONS(2117), - [aux_sym_cmd_identifier_token24] = ACTIONS(2117), - [aux_sym_cmd_identifier_token25] = ACTIONS(2117), - [aux_sym_cmd_identifier_token26] = ACTIONS(2117), - [aux_sym_cmd_identifier_token27] = ACTIONS(2117), - [aux_sym_cmd_identifier_token28] = ACTIONS(2117), - [aux_sym_cmd_identifier_token29] = ACTIONS(2117), - [aux_sym_cmd_identifier_token30] = ACTIONS(2117), - [aux_sym_cmd_identifier_token31] = ACTIONS(2117), - [aux_sym_cmd_identifier_token32] = ACTIONS(2117), - [aux_sym_cmd_identifier_token33] = ACTIONS(2117), - [aux_sym_cmd_identifier_token34] = ACTIONS(2117), - [aux_sym_cmd_identifier_token35] = ACTIONS(2117), - [aux_sym_cmd_identifier_token36] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(2121), - [anon_sym_false] = ACTIONS(2121), - [anon_sym_null] = ACTIONS(2121), - [aux_sym_cmd_identifier_token38] = ACTIONS(2117), - [aux_sym_cmd_identifier_token39] = ACTIONS(2121), - [aux_sym_cmd_identifier_token40] = ACTIONS(2121), - [anon_sym_def] = ACTIONS(2117), - [anon_sym_export_DASHenv] = ACTIONS(2117), - [anon_sym_extern] = ACTIONS(2117), - [anon_sym_module] = ACTIONS(2117), - [anon_sym_use] = ACTIONS(2117), - [anon_sym_LPAREN] = ACTIONS(2117), - [anon_sym_DOLLAR] = ACTIONS(2121), - [anon_sym_error] = ACTIONS(2117), - [anon_sym_list] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_break] = ACTIONS(2117), - [anon_sym_continue] = ACTIONS(2117), - [anon_sym_for] = ACTIONS(2117), - [anon_sym_in] = ACTIONS(2117), - [anon_sym_loop] = ACTIONS(2117), - [anon_sym_make] = ACTIONS(2117), - [anon_sym_while] = ACTIONS(2117), - [anon_sym_do] = ACTIONS(2117), - [anon_sym_if] = ACTIONS(2117), - [anon_sym_else] = ACTIONS(2117), - [anon_sym_match] = ACTIONS(2117), - [anon_sym_RBRACE] = ACTIONS(2121), - [anon_sym_try] = ACTIONS(2117), - [anon_sym_catch] = ACTIONS(2117), - [anon_sym_return] = ACTIONS(2117), - [anon_sym_source] = ACTIONS(2117), - [anon_sym_source_DASHenv] = ACTIONS(2117), - [anon_sym_register] = ACTIONS(2117), - [anon_sym_hide] = ACTIONS(2117), - [anon_sym_hide_DASHenv] = ACTIONS(2117), - [anon_sym_overlay] = ACTIONS(2117), - [anon_sym_new] = ACTIONS(2117), - [anon_sym_as] = ACTIONS(2117), - [anon_sym_LPAREN2] = ACTIONS(2119), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2121), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2121), - [aux_sym__val_number_decimal_token1] = ACTIONS(2117), - [aux_sym__val_number_decimal_token2] = ACTIONS(2121), - [aux_sym__val_number_decimal_token3] = ACTIONS(2121), - [aux_sym__val_number_decimal_token4] = ACTIONS(2121), - [aux_sym__val_number_token1] = ACTIONS(2121), - [aux_sym__val_number_token2] = ACTIONS(2121), - [aux_sym__val_number_token3] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(2121), - [sym__str_single_quotes] = ACTIONS(2121), - [sym__str_back_ticks] = ACTIONS(2121), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2121), - [anon_sym_PLUS] = ACTIONS(2117), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1457), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(2388), + [anon_sym_alias] = ACTIONS(2388), + [anon_sym_let] = ACTIONS(2388), + [anon_sym_let_DASHenv] = ACTIONS(2388), + [anon_sym_mut] = ACTIONS(2388), + [anon_sym_const] = ACTIONS(2388), + [aux_sym_cmd_identifier_token1] = ACTIONS(2388), + [aux_sym_cmd_identifier_token2] = ACTIONS(2388), + [aux_sym_cmd_identifier_token3] = ACTIONS(2388), + [aux_sym_cmd_identifier_token4] = ACTIONS(2388), + [aux_sym_cmd_identifier_token5] = ACTIONS(2388), + [aux_sym_cmd_identifier_token6] = ACTIONS(2388), + [aux_sym_cmd_identifier_token7] = ACTIONS(2388), + [aux_sym_cmd_identifier_token8] = ACTIONS(2388), + [aux_sym_cmd_identifier_token9] = ACTIONS(2388), + [aux_sym_cmd_identifier_token10] = ACTIONS(2388), + [aux_sym_cmd_identifier_token11] = ACTIONS(2388), + [aux_sym_cmd_identifier_token12] = ACTIONS(2388), + [aux_sym_cmd_identifier_token13] = ACTIONS(2388), + [aux_sym_cmd_identifier_token14] = ACTIONS(2388), + [aux_sym_cmd_identifier_token15] = ACTIONS(2388), + [aux_sym_cmd_identifier_token16] = ACTIONS(2388), + [aux_sym_cmd_identifier_token17] = ACTIONS(2388), + [aux_sym_cmd_identifier_token18] = ACTIONS(2388), + [aux_sym_cmd_identifier_token19] = ACTIONS(2388), + [aux_sym_cmd_identifier_token20] = ACTIONS(2388), + [aux_sym_cmd_identifier_token21] = ACTIONS(2388), + [aux_sym_cmd_identifier_token22] = ACTIONS(2388), + [aux_sym_cmd_identifier_token23] = ACTIONS(2388), + [aux_sym_cmd_identifier_token24] = ACTIONS(2388), + [aux_sym_cmd_identifier_token25] = ACTIONS(2388), + [aux_sym_cmd_identifier_token26] = ACTIONS(2388), + [aux_sym_cmd_identifier_token27] = ACTIONS(2388), + [aux_sym_cmd_identifier_token28] = ACTIONS(2388), + [aux_sym_cmd_identifier_token29] = ACTIONS(2388), + [aux_sym_cmd_identifier_token30] = ACTIONS(2388), + [aux_sym_cmd_identifier_token31] = ACTIONS(2388), + [aux_sym_cmd_identifier_token32] = ACTIONS(2388), + [aux_sym_cmd_identifier_token33] = ACTIONS(2388), + [aux_sym_cmd_identifier_token34] = ACTIONS(2388), + [aux_sym_cmd_identifier_token35] = ACTIONS(2388), + [aux_sym_cmd_identifier_token36] = ACTIONS(2388), + [anon_sym_true] = ACTIONS(2388), + [anon_sym_false] = ACTIONS(2388), + [anon_sym_null] = ACTIONS(2388), + [aux_sym_cmd_identifier_token38] = ACTIONS(2388), + [aux_sym_cmd_identifier_token39] = ACTIONS(2388), + [aux_sym_cmd_identifier_token40] = ACTIONS(2388), + [anon_sym_def] = ACTIONS(2388), + [anon_sym_export_DASHenv] = ACTIONS(2388), + [anon_sym_extern] = ACTIONS(2388), + [anon_sym_module] = ACTIONS(2388), + [anon_sym_use] = ACTIONS(2388), + [anon_sym_LPAREN] = ACTIONS(2388), + [anon_sym_DOLLAR] = ACTIONS(2388), + [anon_sym_error] = ACTIONS(2388), + [anon_sym_list] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_break] = ACTIONS(2388), + [anon_sym_continue] = ACTIONS(2388), + [anon_sym_for] = ACTIONS(2388), + [anon_sym_in] = ACTIONS(2388), + [anon_sym_loop] = ACTIONS(2388), + [anon_sym_make] = ACTIONS(2388), + [anon_sym_while] = ACTIONS(2388), + [anon_sym_do] = ACTIONS(2388), + [anon_sym_if] = ACTIONS(2388), + [anon_sym_else] = ACTIONS(2388), + [anon_sym_match] = ACTIONS(2388), + [anon_sym_RBRACE] = ACTIONS(2388), + [anon_sym_try] = ACTIONS(2388), + [anon_sym_catch] = ACTIONS(2388), + [anon_sym_return] = ACTIONS(2388), + [anon_sym_source] = ACTIONS(2388), + [anon_sym_source_DASHenv] = ACTIONS(2388), + [anon_sym_register] = ACTIONS(2388), + [anon_sym_hide] = ACTIONS(2388), + [anon_sym_hide_DASHenv] = ACTIONS(2388), + [anon_sym_overlay] = ACTIONS(2388), + [anon_sym_new] = ACTIONS(2388), + [anon_sym_as] = ACTIONS(2388), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2388), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2388), + [aux_sym__val_number_decimal_token1] = ACTIONS(2388), + [aux_sym__val_number_decimal_token2] = ACTIONS(2388), + [aux_sym__val_number_decimal_token3] = ACTIONS(2388), + [aux_sym__val_number_decimal_token4] = ACTIONS(2388), + [aux_sym__val_number_token1] = ACTIONS(2388), + [aux_sym__val_number_token2] = ACTIONS(2388), + [aux_sym__val_number_token3] = ACTIONS(2388), + [anon_sym_DQUOTE] = ACTIONS(2388), + [sym__str_single_quotes] = ACTIONS(2388), + [sym__str_back_ticks] = ACTIONS(2388), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2388), + [sym__entry_separator] = ACTIONS(2390), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_POUND] = ACTIONS(3), }, [522] = { [sym_comment] = STATE(522), - [anon_sym_export] = ACTIONS(2311), - [anon_sym_alias] = ACTIONS(2311), - [anon_sym_let] = ACTIONS(2311), - [anon_sym_let_DASHenv] = ACTIONS(2311), - [anon_sym_mut] = ACTIONS(2311), - [anon_sym_const] = ACTIONS(2311), - [aux_sym_cmd_identifier_token1] = ACTIONS(2311), - [aux_sym_cmd_identifier_token2] = ACTIONS(2311), - [aux_sym_cmd_identifier_token3] = ACTIONS(2311), - [aux_sym_cmd_identifier_token4] = ACTIONS(2311), - [aux_sym_cmd_identifier_token5] = ACTIONS(2311), - [aux_sym_cmd_identifier_token6] = ACTIONS(2311), - [aux_sym_cmd_identifier_token7] = ACTIONS(2311), - [aux_sym_cmd_identifier_token8] = ACTIONS(2311), - [aux_sym_cmd_identifier_token9] = ACTIONS(2311), - [aux_sym_cmd_identifier_token10] = ACTIONS(2311), - [aux_sym_cmd_identifier_token11] = ACTIONS(2311), - [aux_sym_cmd_identifier_token12] = ACTIONS(2311), - [aux_sym_cmd_identifier_token13] = ACTIONS(2311), - [aux_sym_cmd_identifier_token14] = ACTIONS(2311), - [aux_sym_cmd_identifier_token15] = ACTIONS(2311), - [aux_sym_cmd_identifier_token16] = ACTIONS(2311), - [aux_sym_cmd_identifier_token17] = ACTIONS(2311), - [aux_sym_cmd_identifier_token18] = ACTIONS(2311), - [aux_sym_cmd_identifier_token19] = ACTIONS(2311), - [aux_sym_cmd_identifier_token20] = ACTIONS(2311), - [aux_sym_cmd_identifier_token21] = ACTIONS(2311), - [aux_sym_cmd_identifier_token22] = ACTIONS(2311), - [aux_sym_cmd_identifier_token23] = ACTIONS(2311), - [aux_sym_cmd_identifier_token24] = ACTIONS(2311), - [aux_sym_cmd_identifier_token25] = ACTIONS(2311), - [aux_sym_cmd_identifier_token26] = ACTIONS(2311), - [aux_sym_cmd_identifier_token27] = ACTIONS(2311), - [aux_sym_cmd_identifier_token28] = ACTIONS(2311), - [aux_sym_cmd_identifier_token29] = ACTIONS(2311), - [aux_sym_cmd_identifier_token30] = ACTIONS(2311), - [aux_sym_cmd_identifier_token31] = ACTIONS(2311), - [aux_sym_cmd_identifier_token32] = ACTIONS(2311), - [aux_sym_cmd_identifier_token33] = ACTIONS(2311), - [aux_sym_cmd_identifier_token34] = ACTIONS(2311), - [aux_sym_cmd_identifier_token35] = ACTIONS(2311), - [aux_sym_cmd_identifier_token36] = ACTIONS(2311), - [anon_sym_true] = ACTIONS(2311), - [anon_sym_false] = ACTIONS(2311), - [anon_sym_null] = ACTIONS(2311), - [aux_sym_cmd_identifier_token38] = ACTIONS(2311), - [aux_sym_cmd_identifier_token39] = ACTIONS(2311), - [aux_sym_cmd_identifier_token40] = ACTIONS(2311), - [anon_sym_def] = ACTIONS(2311), - [anon_sym_export_DASHenv] = ACTIONS(2311), - [anon_sym_extern] = ACTIONS(2311), - [anon_sym_module] = ACTIONS(2311), - [anon_sym_use] = ACTIONS(2311), - [anon_sym_RBRACK] = ACTIONS(2311), - [anon_sym_LPAREN] = ACTIONS(2311), - [anon_sym_DOLLAR] = ACTIONS(2311), - [anon_sym_error] = ACTIONS(2311), - [anon_sym_list] = ACTIONS(2311), - [anon_sym_DASH] = ACTIONS(2311), - [anon_sym_break] = ACTIONS(2311), - [anon_sym_continue] = ACTIONS(2311), - [anon_sym_for] = ACTIONS(2311), - [anon_sym_in] = ACTIONS(2311), - [anon_sym_loop] = ACTIONS(2311), - [anon_sym_make] = ACTIONS(2311), - [anon_sym_while] = ACTIONS(2311), - [anon_sym_do] = ACTIONS(2311), - [anon_sym_if] = ACTIONS(2311), - [anon_sym_else] = ACTIONS(2311), - [anon_sym_match] = ACTIONS(2311), - [anon_sym_RBRACE] = ACTIONS(2311), - [anon_sym_try] = ACTIONS(2311), - [anon_sym_catch] = ACTIONS(2311), - [anon_sym_return] = ACTIONS(2311), - [anon_sym_source] = ACTIONS(2311), - [anon_sym_source_DASHenv] = ACTIONS(2311), - [anon_sym_register] = ACTIONS(2311), - [anon_sym_hide] = ACTIONS(2311), - [anon_sym_hide_DASHenv] = ACTIONS(2311), - [anon_sym_overlay] = ACTIONS(2311), - [anon_sym_new] = ACTIONS(2311), - [anon_sym_as] = ACTIONS(2311), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2311), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2311), - [aux_sym__val_number_decimal_token1] = ACTIONS(2311), - [aux_sym__val_number_decimal_token2] = ACTIONS(2311), - [aux_sym__val_number_decimal_token3] = ACTIONS(2311), - [aux_sym__val_number_decimal_token4] = ACTIONS(2311), - [aux_sym__val_number_token1] = ACTIONS(2311), - [aux_sym__val_number_token2] = ACTIONS(2311), - [aux_sym__val_number_token3] = ACTIONS(2311), - [anon_sym_DQUOTE] = ACTIONS(2311), - [sym__str_single_quotes] = ACTIONS(2311), - [sym__str_back_ticks] = ACTIONS(2311), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2311), - [sym__entry_separator] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2311), + [anon_sym_export] = ACTIONS(2392), + [anon_sym_alias] = ACTIONS(2392), + [anon_sym_let] = ACTIONS(2392), + [anon_sym_let_DASHenv] = ACTIONS(2392), + [anon_sym_mut] = ACTIONS(2392), + [anon_sym_const] = ACTIONS(2392), + [aux_sym_cmd_identifier_token1] = ACTIONS(2392), + [aux_sym_cmd_identifier_token2] = ACTIONS(2392), + [aux_sym_cmd_identifier_token3] = ACTIONS(2392), + [aux_sym_cmd_identifier_token4] = ACTIONS(2392), + [aux_sym_cmd_identifier_token5] = ACTIONS(2392), + [aux_sym_cmd_identifier_token6] = ACTIONS(2392), + [aux_sym_cmd_identifier_token7] = ACTIONS(2392), + [aux_sym_cmd_identifier_token8] = ACTIONS(2392), + [aux_sym_cmd_identifier_token9] = ACTIONS(2392), + [aux_sym_cmd_identifier_token10] = ACTIONS(2392), + [aux_sym_cmd_identifier_token11] = ACTIONS(2392), + [aux_sym_cmd_identifier_token12] = ACTIONS(2392), + [aux_sym_cmd_identifier_token13] = ACTIONS(2392), + [aux_sym_cmd_identifier_token14] = ACTIONS(2392), + [aux_sym_cmd_identifier_token15] = ACTIONS(2392), + [aux_sym_cmd_identifier_token16] = ACTIONS(2392), + [aux_sym_cmd_identifier_token17] = ACTIONS(2392), + [aux_sym_cmd_identifier_token18] = ACTIONS(2392), + [aux_sym_cmd_identifier_token19] = ACTIONS(2392), + [aux_sym_cmd_identifier_token20] = ACTIONS(2392), + [aux_sym_cmd_identifier_token21] = ACTIONS(2392), + [aux_sym_cmd_identifier_token22] = ACTIONS(2392), + [aux_sym_cmd_identifier_token23] = ACTIONS(2392), + [aux_sym_cmd_identifier_token24] = ACTIONS(2392), + [aux_sym_cmd_identifier_token25] = ACTIONS(2392), + [aux_sym_cmd_identifier_token26] = ACTIONS(2392), + [aux_sym_cmd_identifier_token27] = ACTIONS(2392), + [aux_sym_cmd_identifier_token28] = ACTIONS(2392), + [aux_sym_cmd_identifier_token29] = ACTIONS(2392), + [aux_sym_cmd_identifier_token30] = ACTIONS(2392), + [aux_sym_cmd_identifier_token31] = ACTIONS(2392), + [aux_sym_cmd_identifier_token32] = ACTIONS(2392), + [aux_sym_cmd_identifier_token33] = ACTIONS(2392), + [aux_sym_cmd_identifier_token34] = ACTIONS(2392), + [aux_sym_cmd_identifier_token35] = ACTIONS(2392), + [aux_sym_cmd_identifier_token36] = ACTIONS(2392), + [anon_sym_true] = ACTIONS(2392), + [anon_sym_false] = ACTIONS(2392), + [anon_sym_null] = ACTIONS(2392), + [aux_sym_cmd_identifier_token38] = ACTIONS(2392), + [aux_sym_cmd_identifier_token39] = ACTIONS(2392), + [aux_sym_cmd_identifier_token40] = ACTIONS(2392), + [anon_sym_def] = ACTIONS(2392), + [anon_sym_export_DASHenv] = ACTIONS(2392), + [anon_sym_extern] = ACTIONS(2392), + [anon_sym_module] = ACTIONS(2392), + [anon_sym_use] = ACTIONS(2392), + [anon_sym_LPAREN] = ACTIONS(2392), + [anon_sym_DOLLAR] = ACTIONS(2392), + [anon_sym_error] = ACTIONS(2392), + [anon_sym_list] = ACTIONS(2392), + [anon_sym_DASH] = ACTIONS(2392), + [anon_sym_break] = ACTIONS(2392), + [anon_sym_continue] = ACTIONS(2392), + [anon_sym_for] = ACTIONS(2392), + [anon_sym_in] = ACTIONS(2392), + [anon_sym_loop] = ACTIONS(2392), + [anon_sym_make] = ACTIONS(2392), + [anon_sym_while] = ACTIONS(2392), + [anon_sym_do] = ACTIONS(2392), + [anon_sym_if] = ACTIONS(2392), + [anon_sym_else] = ACTIONS(2392), + [anon_sym_match] = ACTIONS(2392), + [anon_sym_RBRACE] = ACTIONS(2392), + [anon_sym_try] = ACTIONS(2392), + [anon_sym_catch] = ACTIONS(2392), + [anon_sym_return] = ACTIONS(2392), + [anon_sym_source] = ACTIONS(2392), + [anon_sym_source_DASHenv] = ACTIONS(2392), + [anon_sym_register] = ACTIONS(2392), + [anon_sym_hide] = ACTIONS(2392), + [anon_sym_hide_DASHenv] = ACTIONS(2392), + [anon_sym_overlay] = ACTIONS(2392), + [anon_sym_new] = ACTIONS(2392), + [anon_sym_as] = ACTIONS(2392), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2392), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2392), + [aux_sym__val_number_decimal_token1] = ACTIONS(2392), + [aux_sym__val_number_decimal_token2] = ACTIONS(2392), + [aux_sym__val_number_decimal_token3] = ACTIONS(2392), + [aux_sym__val_number_decimal_token4] = ACTIONS(2392), + [aux_sym__val_number_token1] = ACTIONS(2392), + [aux_sym__val_number_token2] = ACTIONS(2392), + [aux_sym__val_number_token3] = ACTIONS(2392), + [anon_sym_DQUOTE] = ACTIONS(2392), + [sym__str_single_quotes] = ACTIONS(2392), + [sym__str_back_ticks] = ACTIONS(2392), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2392), + [sym__entry_separator] = ACTIONS(2394), + [anon_sym_PLUS] = ACTIONS(2392), [anon_sym_POUND] = ACTIONS(3), }, [523] = { [sym_comment] = STATE(523), - [anon_sym_export] = ACTIONS(1770), - [anon_sym_alias] = ACTIONS(1770), - [anon_sym_let] = ACTIONS(1770), - [anon_sym_let_DASHenv] = ACTIONS(1770), - [anon_sym_mut] = ACTIONS(1770), - [anon_sym_const] = ACTIONS(1770), - [aux_sym_cmd_identifier_token1] = ACTIONS(1770), - [aux_sym_cmd_identifier_token2] = ACTIONS(1770), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [aux_sym_cmd_identifier_token6] = ACTIONS(1770), - [aux_sym_cmd_identifier_token7] = ACTIONS(1770), - [aux_sym_cmd_identifier_token8] = ACTIONS(1770), - [aux_sym_cmd_identifier_token9] = ACTIONS(1770), - [aux_sym_cmd_identifier_token10] = ACTIONS(1770), - [aux_sym_cmd_identifier_token11] = ACTIONS(1770), - [aux_sym_cmd_identifier_token12] = ACTIONS(1770), - [aux_sym_cmd_identifier_token13] = ACTIONS(1770), - [aux_sym_cmd_identifier_token14] = ACTIONS(1770), - [aux_sym_cmd_identifier_token15] = ACTIONS(1770), - [aux_sym_cmd_identifier_token16] = ACTIONS(1770), - [aux_sym_cmd_identifier_token17] = ACTIONS(1770), - [aux_sym_cmd_identifier_token18] = ACTIONS(1770), - [aux_sym_cmd_identifier_token19] = ACTIONS(1770), - [aux_sym_cmd_identifier_token20] = ACTIONS(1770), - [aux_sym_cmd_identifier_token21] = ACTIONS(1770), - [aux_sym_cmd_identifier_token22] = ACTIONS(1770), - [aux_sym_cmd_identifier_token23] = ACTIONS(1770), - [aux_sym_cmd_identifier_token24] = ACTIONS(1770), - [aux_sym_cmd_identifier_token25] = ACTIONS(1770), - [aux_sym_cmd_identifier_token26] = ACTIONS(1770), - [aux_sym_cmd_identifier_token27] = ACTIONS(1770), - [aux_sym_cmd_identifier_token28] = ACTIONS(1770), - [aux_sym_cmd_identifier_token29] = ACTIONS(1770), - [aux_sym_cmd_identifier_token30] = ACTIONS(1770), - [aux_sym_cmd_identifier_token31] = ACTIONS(1770), - [aux_sym_cmd_identifier_token32] = ACTIONS(1770), - [aux_sym_cmd_identifier_token33] = ACTIONS(1770), - [aux_sym_cmd_identifier_token34] = ACTIONS(1770), - [aux_sym_cmd_identifier_token35] = ACTIONS(1770), - [aux_sym_cmd_identifier_token36] = ACTIONS(1770), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [anon_sym_null] = ACTIONS(1770), - [aux_sym_cmd_identifier_token38] = ACTIONS(1770), - [aux_sym_cmd_identifier_token39] = ACTIONS(1770), - [aux_sym_cmd_identifier_token40] = ACTIONS(1770), - [anon_sym_def] = ACTIONS(1770), - [anon_sym_export_DASHenv] = ACTIONS(1770), - [anon_sym_extern] = ACTIONS(1770), - [anon_sym_module] = ACTIONS(1770), - [anon_sym_use] = ACTIONS(1770), - [anon_sym_RBRACK] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1770), - [anon_sym_DOLLAR] = ACTIONS(1770), - [anon_sym_error] = ACTIONS(1770), - [anon_sym_list] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_for] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_loop] = ACTIONS(1770), - [anon_sym_make] = ACTIONS(1770), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_do] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_match] = ACTIONS(1770), - [anon_sym_RBRACE] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_catch] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_source] = ACTIONS(1770), - [anon_sym_source_DASHenv] = ACTIONS(1770), - [anon_sym_register] = ACTIONS(1770), - [anon_sym_hide] = ACTIONS(1770), - [anon_sym_hide_DASHenv] = ACTIONS(1770), - [anon_sym_overlay] = ACTIONS(1770), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1770), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1770), - [aux_sym__val_number_decimal_token1] = ACTIONS(1770), - [aux_sym__val_number_decimal_token2] = ACTIONS(1770), - [aux_sym__val_number_decimal_token3] = ACTIONS(1770), - [aux_sym__val_number_decimal_token4] = ACTIONS(1770), - [aux_sym__val_number_token1] = ACTIONS(1770), - [aux_sym__val_number_token2] = ACTIONS(1770), - [aux_sym__val_number_token3] = ACTIONS(1770), - [anon_sym_DQUOTE] = ACTIONS(1770), - [sym__str_single_quotes] = ACTIONS(1770), - [sym__str_back_ticks] = ACTIONS(1770), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1770), - [sym__entry_separator] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_export] = ACTIONS(2396), + [anon_sym_alias] = ACTIONS(2396), + [anon_sym_let] = ACTIONS(2396), + [anon_sym_let_DASHenv] = ACTIONS(2396), + [anon_sym_mut] = ACTIONS(2396), + [anon_sym_const] = ACTIONS(2396), + [aux_sym_cmd_identifier_token1] = ACTIONS(2396), + [aux_sym_cmd_identifier_token2] = ACTIONS(2396), + [aux_sym_cmd_identifier_token3] = ACTIONS(2396), + [aux_sym_cmd_identifier_token4] = ACTIONS(2396), + [aux_sym_cmd_identifier_token5] = ACTIONS(2396), + [aux_sym_cmd_identifier_token6] = ACTIONS(2396), + [aux_sym_cmd_identifier_token7] = ACTIONS(2396), + [aux_sym_cmd_identifier_token8] = ACTIONS(2396), + [aux_sym_cmd_identifier_token9] = ACTIONS(2396), + [aux_sym_cmd_identifier_token10] = ACTIONS(2396), + [aux_sym_cmd_identifier_token11] = ACTIONS(2396), + [aux_sym_cmd_identifier_token12] = ACTIONS(2396), + [aux_sym_cmd_identifier_token13] = ACTIONS(2396), + [aux_sym_cmd_identifier_token14] = ACTIONS(2396), + [aux_sym_cmd_identifier_token15] = ACTIONS(2396), + [aux_sym_cmd_identifier_token16] = ACTIONS(2396), + [aux_sym_cmd_identifier_token17] = ACTIONS(2396), + [aux_sym_cmd_identifier_token18] = ACTIONS(2396), + [aux_sym_cmd_identifier_token19] = ACTIONS(2396), + [aux_sym_cmd_identifier_token20] = ACTIONS(2396), + [aux_sym_cmd_identifier_token21] = ACTIONS(2396), + [aux_sym_cmd_identifier_token22] = ACTIONS(2396), + [aux_sym_cmd_identifier_token23] = ACTIONS(2396), + [aux_sym_cmd_identifier_token24] = ACTIONS(2396), + [aux_sym_cmd_identifier_token25] = ACTIONS(2396), + [aux_sym_cmd_identifier_token26] = ACTIONS(2396), + [aux_sym_cmd_identifier_token27] = ACTIONS(2396), + [aux_sym_cmd_identifier_token28] = ACTIONS(2396), + [aux_sym_cmd_identifier_token29] = ACTIONS(2396), + [aux_sym_cmd_identifier_token30] = ACTIONS(2396), + [aux_sym_cmd_identifier_token31] = ACTIONS(2396), + [aux_sym_cmd_identifier_token32] = ACTIONS(2396), + [aux_sym_cmd_identifier_token33] = ACTIONS(2396), + [aux_sym_cmd_identifier_token34] = ACTIONS(2396), + [aux_sym_cmd_identifier_token35] = ACTIONS(2396), + [aux_sym_cmd_identifier_token36] = ACTIONS(2396), + [anon_sym_true] = ACTIONS(2396), + [anon_sym_false] = ACTIONS(2396), + [anon_sym_null] = ACTIONS(2396), + [aux_sym_cmd_identifier_token38] = ACTIONS(2396), + [aux_sym_cmd_identifier_token39] = ACTIONS(2396), + [aux_sym_cmd_identifier_token40] = ACTIONS(2396), + [anon_sym_def] = ACTIONS(2396), + [anon_sym_export_DASHenv] = ACTIONS(2396), + [anon_sym_extern] = ACTIONS(2396), + [anon_sym_module] = ACTIONS(2396), + [anon_sym_use] = ACTIONS(2396), + [anon_sym_LPAREN] = ACTIONS(2396), + [anon_sym_DOLLAR] = ACTIONS(2396), + [anon_sym_error] = ACTIONS(2396), + [anon_sym_list] = ACTIONS(2396), + [anon_sym_DASH] = ACTIONS(2396), + [anon_sym_break] = ACTIONS(2396), + [anon_sym_continue] = ACTIONS(2396), + [anon_sym_for] = ACTIONS(2396), + [anon_sym_in] = ACTIONS(2396), + [anon_sym_loop] = ACTIONS(2396), + [anon_sym_make] = ACTIONS(2396), + [anon_sym_while] = ACTIONS(2396), + [anon_sym_do] = ACTIONS(2396), + [anon_sym_if] = ACTIONS(2396), + [anon_sym_else] = ACTIONS(2396), + [anon_sym_match] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(2396), + [anon_sym_try] = ACTIONS(2396), + [anon_sym_catch] = ACTIONS(2396), + [anon_sym_return] = ACTIONS(2396), + [anon_sym_source] = ACTIONS(2396), + [anon_sym_source_DASHenv] = ACTIONS(2396), + [anon_sym_register] = ACTIONS(2396), + [anon_sym_hide] = ACTIONS(2396), + [anon_sym_hide_DASHenv] = ACTIONS(2396), + [anon_sym_overlay] = ACTIONS(2396), + [anon_sym_new] = ACTIONS(2396), + [anon_sym_as] = ACTIONS(2396), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2396), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2396), + [aux_sym__val_number_decimal_token1] = ACTIONS(2396), + [aux_sym__val_number_decimal_token2] = ACTIONS(2396), + [aux_sym__val_number_decimal_token3] = ACTIONS(2396), + [aux_sym__val_number_decimal_token4] = ACTIONS(2396), + [aux_sym__val_number_token1] = ACTIONS(2396), + [aux_sym__val_number_token2] = ACTIONS(2396), + [aux_sym__val_number_token3] = ACTIONS(2396), + [anon_sym_DQUOTE] = ACTIONS(2396), + [sym__str_single_quotes] = ACTIONS(2396), + [sym__str_back_ticks] = ACTIONS(2396), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2396), + [sym__entry_separator] = ACTIONS(2398), + [anon_sym_PLUS] = ACTIONS(2396), [anon_sym_POUND] = ACTIONS(3), }, [524] = { [sym_comment] = STATE(524), - [anon_sym_export] = ACTIONS(2123), - [anon_sym_alias] = ACTIONS(2123), - [anon_sym_let] = ACTIONS(2123), - [anon_sym_let_DASHenv] = ACTIONS(2123), - [anon_sym_mut] = ACTIONS(2123), - [anon_sym_const] = ACTIONS(2123), - [aux_sym_cmd_identifier_token1] = ACTIONS(2123), - [aux_sym_cmd_identifier_token2] = ACTIONS(2123), - [aux_sym_cmd_identifier_token3] = ACTIONS(2123), - [aux_sym_cmd_identifier_token4] = ACTIONS(2123), - [aux_sym_cmd_identifier_token5] = ACTIONS(2123), - [aux_sym_cmd_identifier_token6] = ACTIONS(2123), - [aux_sym_cmd_identifier_token7] = ACTIONS(2123), - [aux_sym_cmd_identifier_token8] = ACTIONS(2123), - [aux_sym_cmd_identifier_token9] = ACTIONS(2123), - [aux_sym_cmd_identifier_token10] = ACTIONS(2123), - [aux_sym_cmd_identifier_token11] = ACTIONS(2123), - [aux_sym_cmd_identifier_token12] = ACTIONS(2123), - [aux_sym_cmd_identifier_token13] = ACTIONS(2123), - [aux_sym_cmd_identifier_token14] = ACTIONS(2123), - [aux_sym_cmd_identifier_token15] = ACTIONS(2123), - [aux_sym_cmd_identifier_token16] = ACTIONS(2123), - [aux_sym_cmd_identifier_token17] = ACTIONS(2123), - [aux_sym_cmd_identifier_token18] = ACTIONS(2123), - [aux_sym_cmd_identifier_token19] = ACTIONS(2123), - [aux_sym_cmd_identifier_token20] = ACTIONS(2123), - [aux_sym_cmd_identifier_token21] = ACTIONS(2123), - [aux_sym_cmd_identifier_token22] = ACTIONS(2123), - [aux_sym_cmd_identifier_token23] = ACTIONS(2123), - [aux_sym_cmd_identifier_token24] = ACTIONS(2123), - [aux_sym_cmd_identifier_token25] = ACTIONS(2123), - [aux_sym_cmd_identifier_token26] = ACTIONS(2123), - [aux_sym_cmd_identifier_token27] = ACTIONS(2123), - [aux_sym_cmd_identifier_token28] = ACTIONS(2123), - [aux_sym_cmd_identifier_token29] = ACTIONS(2123), - [aux_sym_cmd_identifier_token30] = ACTIONS(2123), - [aux_sym_cmd_identifier_token31] = ACTIONS(2123), - [aux_sym_cmd_identifier_token32] = ACTIONS(2123), - [aux_sym_cmd_identifier_token33] = ACTIONS(2123), - [aux_sym_cmd_identifier_token34] = ACTIONS(2123), - [aux_sym_cmd_identifier_token35] = ACTIONS(2123), - [aux_sym_cmd_identifier_token36] = ACTIONS(2123), - [anon_sym_true] = ACTIONS(2127), - [anon_sym_false] = ACTIONS(2127), - [anon_sym_null] = ACTIONS(2127), - [aux_sym_cmd_identifier_token38] = ACTIONS(2123), - [aux_sym_cmd_identifier_token39] = ACTIONS(2127), - [aux_sym_cmd_identifier_token40] = ACTIONS(2127), - [anon_sym_def] = ACTIONS(2123), - [anon_sym_export_DASHenv] = ACTIONS(2123), - [anon_sym_extern] = ACTIONS(2123), - [anon_sym_module] = ACTIONS(2123), - [anon_sym_use] = ACTIONS(2123), - [anon_sym_LPAREN] = ACTIONS(2123), - [anon_sym_DOLLAR] = ACTIONS(2127), - [anon_sym_error] = ACTIONS(2123), - [anon_sym_list] = ACTIONS(2123), - [anon_sym_DASH] = ACTIONS(2123), - [anon_sym_break] = ACTIONS(2123), - [anon_sym_continue] = ACTIONS(2123), - [anon_sym_for] = ACTIONS(2123), - [anon_sym_in] = ACTIONS(2123), - [anon_sym_loop] = ACTIONS(2123), - [anon_sym_make] = ACTIONS(2123), - [anon_sym_while] = ACTIONS(2123), - [anon_sym_do] = ACTIONS(2123), - [anon_sym_if] = ACTIONS(2123), - [anon_sym_else] = ACTIONS(2123), - [anon_sym_match] = ACTIONS(2123), - [anon_sym_RBRACE] = ACTIONS(2127), - [anon_sym_try] = ACTIONS(2123), - [anon_sym_catch] = ACTIONS(2123), - [anon_sym_return] = ACTIONS(2123), - [anon_sym_source] = ACTIONS(2123), - [anon_sym_source_DASHenv] = ACTIONS(2123), - [anon_sym_register] = ACTIONS(2123), - [anon_sym_hide] = ACTIONS(2123), - [anon_sym_hide_DASHenv] = ACTIONS(2123), - [anon_sym_overlay] = ACTIONS(2123), - [anon_sym_new] = ACTIONS(2123), - [anon_sym_as] = ACTIONS(2123), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2127), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2127), - [aux_sym__val_number_decimal_token1] = ACTIONS(2123), - [aux_sym__val_number_decimal_token2] = ACTIONS(2127), - [aux_sym__val_number_decimal_token3] = ACTIONS(2127), - [aux_sym__val_number_decimal_token4] = ACTIONS(2127), - [aux_sym__val_number_token1] = ACTIONS(2127), - [aux_sym__val_number_token2] = ACTIONS(2127), - [aux_sym__val_number_token3] = ACTIONS(2127), - [anon_sym_DQUOTE] = ACTIONS(2127), - [sym__str_single_quotes] = ACTIONS(2127), - [sym__str_back_ticks] = ACTIONS(2127), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2127), - [anon_sym_PLUS] = ACTIONS(2123), - [aux_sym__unquoted_in_record_token2] = ACTIONS(2129), - [anon_sym_POUND] = ACTIONS(247), - }, - [525] = { - [sym_comment] = STATE(525), - [anon_sym_export] = ACTIONS(2315), - [anon_sym_alias] = ACTIONS(2315), - [anon_sym_let] = ACTIONS(2315), - [anon_sym_let_DASHenv] = ACTIONS(2315), - [anon_sym_mut] = ACTIONS(2315), - [anon_sym_const] = ACTIONS(2315), - [aux_sym_cmd_identifier_token1] = ACTIONS(2315), - [aux_sym_cmd_identifier_token2] = ACTIONS(2315), - [aux_sym_cmd_identifier_token3] = ACTIONS(2315), - [aux_sym_cmd_identifier_token4] = ACTIONS(2315), - [aux_sym_cmd_identifier_token5] = ACTIONS(2315), - [aux_sym_cmd_identifier_token6] = ACTIONS(2315), - [aux_sym_cmd_identifier_token7] = ACTIONS(2315), - [aux_sym_cmd_identifier_token8] = ACTIONS(2315), - [aux_sym_cmd_identifier_token9] = ACTIONS(2315), - [aux_sym_cmd_identifier_token10] = ACTIONS(2315), - [aux_sym_cmd_identifier_token11] = ACTIONS(2315), - [aux_sym_cmd_identifier_token12] = ACTIONS(2315), - [aux_sym_cmd_identifier_token13] = ACTIONS(2315), - [aux_sym_cmd_identifier_token14] = ACTIONS(2315), - [aux_sym_cmd_identifier_token15] = ACTIONS(2315), - [aux_sym_cmd_identifier_token16] = ACTIONS(2315), - [aux_sym_cmd_identifier_token17] = ACTIONS(2315), - [aux_sym_cmd_identifier_token18] = ACTIONS(2315), - [aux_sym_cmd_identifier_token19] = ACTIONS(2315), - [aux_sym_cmd_identifier_token20] = ACTIONS(2315), - [aux_sym_cmd_identifier_token21] = ACTIONS(2315), - [aux_sym_cmd_identifier_token22] = ACTIONS(2315), - [aux_sym_cmd_identifier_token23] = ACTIONS(2315), - [aux_sym_cmd_identifier_token24] = ACTIONS(2315), - [aux_sym_cmd_identifier_token25] = ACTIONS(2315), - [aux_sym_cmd_identifier_token26] = ACTIONS(2315), - [aux_sym_cmd_identifier_token27] = ACTIONS(2315), - [aux_sym_cmd_identifier_token28] = ACTIONS(2315), - [aux_sym_cmd_identifier_token29] = ACTIONS(2315), - [aux_sym_cmd_identifier_token30] = ACTIONS(2315), - [aux_sym_cmd_identifier_token31] = ACTIONS(2315), - [aux_sym_cmd_identifier_token32] = ACTIONS(2315), - [aux_sym_cmd_identifier_token33] = ACTIONS(2315), - [aux_sym_cmd_identifier_token34] = ACTIONS(2315), - [aux_sym_cmd_identifier_token35] = ACTIONS(2315), - [aux_sym_cmd_identifier_token36] = ACTIONS(2315), - [anon_sym_true] = ACTIONS(2315), - [anon_sym_false] = ACTIONS(2315), - [anon_sym_null] = ACTIONS(2315), - [aux_sym_cmd_identifier_token38] = ACTIONS(2315), - [aux_sym_cmd_identifier_token39] = ACTIONS(2315), - [aux_sym_cmd_identifier_token40] = ACTIONS(2315), - [anon_sym_def] = ACTIONS(2315), - [anon_sym_export_DASHenv] = ACTIONS(2315), - [anon_sym_extern] = ACTIONS(2315), - [anon_sym_module] = ACTIONS(2315), - [anon_sym_use] = ACTIONS(2315), - [anon_sym_RBRACK] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2315), - [anon_sym_DOLLAR] = ACTIONS(2315), - [anon_sym_error] = ACTIONS(2315), - [anon_sym_list] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2315), - [anon_sym_break] = ACTIONS(2315), - [anon_sym_continue] = ACTIONS(2315), - [anon_sym_for] = ACTIONS(2315), - [anon_sym_in] = ACTIONS(2315), - [anon_sym_loop] = ACTIONS(2315), - [anon_sym_make] = ACTIONS(2315), - [anon_sym_while] = ACTIONS(2315), - [anon_sym_do] = ACTIONS(2315), - [anon_sym_if] = ACTIONS(2315), - [anon_sym_else] = ACTIONS(2315), - [anon_sym_match] = ACTIONS(2315), - [anon_sym_RBRACE] = ACTIONS(2315), - [anon_sym_try] = ACTIONS(2315), - [anon_sym_catch] = ACTIONS(2315), - [anon_sym_return] = ACTIONS(2315), - [anon_sym_source] = ACTIONS(2315), - [anon_sym_source_DASHenv] = ACTIONS(2315), - [anon_sym_register] = ACTIONS(2315), - [anon_sym_hide] = ACTIONS(2315), - [anon_sym_hide_DASHenv] = ACTIONS(2315), - [anon_sym_overlay] = ACTIONS(2315), - [anon_sym_new] = ACTIONS(2315), - [anon_sym_as] = ACTIONS(2315), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2315), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2315), - [aux_sym__val_number_decimal_token1] = ACTIONS(2315), - [aux_sym__val_number_decimal_token2] = ACTIONS(2315), - [aux_sym__val_number_decimal_token3] = ACTIONS(2315), - [aux_sym__val_number_decimal_token4] = ACTIONS(2315), - [aux_sym__val_number_token1] = ACTIONS(2315), - [aux_sym__val_number_token2] = ACTIONS(2315), - [aux_sym__val_number_token3] = ACTIONS(2315), - [anon_sym_DQUOTE] = ACTIONS(2315), - [sym__str_single_quotes] = ACTIONS(2315), - [sym__str_back_ticks] = ACTIONS(2315), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2315), - [sym__entry_separator] = ACTIONS(2317), - [anon_sym_PLUS] = ACTIONS(2315), - [anon_sym_POUND] = ACTIONS(3), - }, - [526] = { - [sym_comment] = STATE(526), - [anon_sym_export] = ACTIONS(1648), - [anon_sym_alias] = ACTIONS(1648), - [anon_sym_let] = ACTIONS(1648), - [anon_sym_let_DASHenv] = ACTIONS(1648), - [anon_sym_mut] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1648), - [aux_sym_cmd_identifier_token1] = ACTIONS(1648), - [aux_sym_cmd_identifier_token2] = ACTIONS(1648), - [aux_sym_cmd_identifier_token3] = ACTIONS(1648), - [aux_sym_cmd_identifier_token4] = ACTIONS(1648), - [aux_sym_cmd_identifier_token5] = ACTIONS(1648), - [aux_sym_cmd_identifier_token6] = ACTIONS(1648), - [aux_sym_cmd_identifier_token7] = ACTIONS(1648), - [aux_sym_cmd_identifier_token8] = ACTIONS(1648), - [aux_sym_cmd_identifier_token9] = ACTIONS(1648), - [aux_sym_cmd_identifier_token10] = ACTIONS(1648), - [aux_sym_cmd_identifier_token11] = ACTIONS(1648), - [aux_sym_cmd_identifier_token12] = ACTIONS(1648), - [aux_sym_cmd_identifier_token13] = ACTIONS(1648), - [aux_sym_cmd_identifier_token14] = ACTIONS(1648), - [aux_sym_cmd_identifier_token15] = ACTIONS(1648), - [aux_sym_cmd_identifier_token16] = ACTIONS(1648), - [aux_sym_cmd_identifier_token17] = ACTIONS(1648), - [aux_sym_cmd_identifier_token18] = ACTIONS(1648), - [aux_sym_cmd_identifier_token19] = ACTIONS(1648), - [aux_sym_cmd_identifier_token20] = ACTIONS(1648), - [aux_sym_cmd_identifier_token21] = ACTIONS(1648), - [aux_sym_cmd_identifier_token22] = ACTIONS(1648), - [aux_sym_cmd_identifier_token23] = ACTIONS(1648), - [aux_sym_cmd_identifier_token24] = ACTIONS(1648), - [aux_sym_cmd_identifier_token25] = ACTIONS(1648), - [aux_sym_cmd_identifier_token26] = ACTIONS(1648), - [aux_sym_cmd_identifier_token27] = ACTIONS(1648), - [aux_sym_cmd_identifier_token28] = ACTIONS(1648), - [aux_sym_cmd_identifier_token29] = ACTIONS(1648), - [aux_sym_cmd_identifier_token30] = ACTIONS(1648), - [aux_sym_cmd_identifier_token31] = ACTIONS(1648), - [aux_sym_cmd_identifier_token32] = ACTIONS(1648), - [aux_sym_cmd_identifier_token33] = ACTIONS(1648), - [aux_sym_cmd_identifier_token34] = ACTIONS(1648), - [aux_sym_cmd_identifier_token35] = ACTIONS(1648), - [aux_sym_cmd_identifier_token36] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [anon_sym_null] = ACTIONS(1650), - [aux_sym_cmd_identifier_token38] = ACTIONS(1648), - [aux_sym_cmd_identifier_token39] = ACTIONS(1650), - [aux_sym_cmd_identifier_token40] = ACTIONS(1650), - [anon_sym_def] = ACTIONS(1648), - [anon_sym_export_DASHenv] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1648), - [anon_sym_module] = ACTIONS(1648), - [anon_sym_use] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_DOLLAR] = ACTIONS(1650), - [anon_sym_error] = ACTIONS(1648), - [anon_sym_list] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_in] = ACTIONS(1648), - [anon_sym_loop] = ACTIONS(1648), - [anon_sym_make] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_do] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1648), - [anon_sym_match] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_try] = ACTIONS(1648), - [anon_sym_catch] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_source] = ACTIONS(1648), - [anon_sym_source_DASHenv] = ACTIONS(1648), - [anon_sym_register] = ACTIONS(1648), - [anon_sym_hide] = ACTIONS(1648), - [anon_sym_hide_DASHenv] = ACTIONS(1648), - [anon_sym_overlay] = ACTIONS(1648), - [anon_sym_new] = ACTIONS(1648), - [anon_sym_as] = ACTIONS(1648), - [anon_sym_LPAREN2] = ACTIONS(1650), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1650), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token3] = ACTIONS(1650), - [aux_sym__val_number_decimal_token4] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1648), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(247), - }, - [527] = { - [sym_comment] = STATE(527), - [aux_sym__multiple_types_repeat1] = STATE(527), - [anon_sym_export] = ACTIONS(2319), - [anon_sym_alias] = ACTIONS(2319), - [anon_sym_let] = ACTIONS(2319), - [anon_sym_let_DASHenv] = ACTIONS(2319), - [anon_sym_mut] = ACTIONS(2319), - [anon_sym_const] = ACTIONS(2319), - [aux_sym_cmd_identifier_token1] = ACTIONS(2319), - [aux_sym_cmd_identifier_token2] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2319), - [aux_sym_cmd_identifier_token4] = ACTIONS(2319), - [aux_sym_cmd_identifier_token5] = ACTIONS(2319), - [aux_sym_cmd_identifier_token6] = ACTIONS(2319), - [aux_sym_cmd_identifier_token7] = ACTIONS(2319), - [aux_sym_cmd_identifier_token8] = ACTIONS(2319), - [aux_sym_cmd_identifier_token9] = ACTIONS(2319), - [aux_sym_cmd_identifier_token10] = ACTIONS(2319), - [aux_sym_cmd_identifier_token11] = ACTIONS(2319), - [aux_sym_cmd_identifier_token12] = ACTIONS(2319), - [aux_sym_cmd_identifier_token13] = ACTIONS(2319), - [aux_sym_cmd_identifier_token14] = ACTIONS(2319), - [aux_sym_cmd_identifier_token15] = ACTIONS(2319), - [aux_sym_cmd_identifier_token16] = ACTIONS(2319), - [aux_sym_cmd_identifier_token17] = ACTIONS(2319), - [aux_sym_cmd_identifier_token18] = ACTIONS(2319), - [aux_sym_cmd_identifier_token19] = ACTIONS(2319), - [aux_sym_cmd_identifier_token20] = ACTIONS(2319), - [aux_sym_cmd_identifier_token21] = ACTIONS(2319), - [aux_sym_cmd_identifier_token22] = ACTIONS(2319), - [aux_sym_cmd_identifier_token23] = ACTIONS(2319), - [aux_sym_cmd_identifier_token24] = ACTIONS(2319), - [aux_sym_cmd_identifier_token25] = ACTIONS(2319), - [aux_sym_cmd_identifier_token26] = ACTIONS(2319), - [aux_sym_cmd_identifier_token27] = ACTIONS(2319), - [aux_sym_cmd_identifier_token28] = ACTIONS(2319), - [aux_sym_cmd_identifier_token29] = ACTIONS(2319), - [aux_sym_cmd_identifier_token30] = ACTIONS(2319), - [aux_sym_cmd_identifier_token31] = ACTIONS(2319), - [aux_sym_cmd_identifier_token32] = ACTIONS(2319), - [aux_sym_cmd_identifier_token33] = ACTIONS(2319), - [aux_sym_cmd_identifier_token34] = ACTIONS(2319), - [aux_sym_cmd_identifier_token35] = ACTIONS(2319), - [aux_sym_cmd_identifier_token36] = ACTIONS(2319), - [anon_sym_true] = ACTIONS(2319), - [anon_sym_false] = ACTIONS(2319), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token38] = ACTIONS(2319), - [aux_sym_cmd_identifier_token39] = ACTIONS(2319), - [aux_sym_cmd_identifier_token40] = ACTIONS(2319), - [anon_sym_def] = ACTIONS(2319), - [anon_sym_export_DASHenv] = ACTIONS(2319), - [anon_sym_extern] = ACTIONS(2319), - [anon_sym_module] = ACTIONS(2319), - [anon_sym_use] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2319), - [anon_sym_DOLLAR] = ACTIONS(2319), - [anon_sym_error] = ACTIONS(2319), - [anon_sym_list] = ACTIONS(2319), - [anon_sym_DASH] = ACTIONS(2319), - [anon_sym_break] = ACTIONS(2319), - [anon_sym_continue] = ACTIONS(2319), - [anon_sym_for] = ACTIONS(2319), - [anon_sym_in] = ACTIONS(2319), - [anon_sym_loop] = ACTIONS(2319), - [anon_sym_make] = ACTIONS(2319), - [anon_sym_while] = ACTIONS(2319), - [anon_sym_do] = ACTIONS(2319), - [anon_sym_if] = ACTIONS(2319), - [anon_sym_else] = ACTIONS(2319), - [anon_sym_match] = ACTIONS(2319), - [anon_sym_RBRACE] = ACTIONS(2319), - [anon_sym_try] = ACTIONS(2319), - [anon_sym_catch] = ACTIONS(2319), - [anon_sym_return] = ACTIONS(2319), - [anon_sym_source] = ACTIONS(2319), - [anon_sym_source_DASHenv] = ACTIONS(2319), - [anon_sym_register] = ACTIONS(2319), - [anon_sym_hide] = ACTIONS(2319), - [anon_sym_hide_DASHenv] = ACTIONS(2319), - [anon_sym_overlay] = ACTIONS(2319), - [anon_sym_new] = ACTIONS(2319), - [anon_sym_as] = ACTIONS(2319), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2319), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2319), - [aux_sym__val_number_decimal_token1] = ACTIONS(2319), - [aux_sym__val_number_decimal_token2] = ACTIONS(2319), - [aux_sym__val_number_decimal_token3] = ACTIONS(2319), - [aux_sym__val_number_decimal_token4] = ACTIONS(2319), - [aux_sym__val_number_token1] = ACTIONS(2319), - [aux_sym__val_number_token2] = ACTIONS(2319), - [aux_sym__val_number_token3] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [sym__str_single_quotes] = ACTIONS(2319), - [sym__str_back_ticks] = ACTIONS(2319), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2319), - [sym__entry_separator] = ACTIONS(2321), - [anon_sym_PLUS] = ACTIONS(2319), - [anon_sym_POUND] = ACTIONS(3), - }, - [528] = { - [sym_comment] = STATE(528), - [aux_sym__multiple_types_repeat1] = STATE(527), - [anon_sym_export] = ACTIONS(2275), - [anon_sym_alias] = ACTIONS(2275), - [anon_sym_let] = ACTIONS(2275), - [anon_sym_let_DASHenv] = ACTIONS(2275), - [anon_sym_mut] = ACTIONS(2275), - [anon_sym_const] = ACTIONS(2275), - [aux_sym_cmd_identifier_token1] = ACTIONS(2275), - [aux_sym_cmd_identifier_token2] = ACTIONS(2275), - [aux_sym_cmd_identifier_token3] = ACTIONS(2275), - [aux_sym_cmd_identifier_token4] = ACTIONS(2275), - [aux_sym_cmd_identifier_token5] = ACTIONS(2275), - [aux_sym_cmd_identifier_token6] = ACTIONS(2275), - [aux_sym_cmd_identifier_token7] = ACTIONS(2275), - [aux_sym_cmd_identifier_token8] = ACTIONS(2275), - [aux_sym_cmd_identifier_token9] = ACTIONS(2275), - [aux_sym_cmd_identifier_token10] = ACTIONS(2275), - [aux_sym_cmd_identifier_token11] = ACTIONS(2275), - [aux_sym_cmd_identifier_token12] = ACTIONS(2275), - [aux_sym_cmd_identifier_token13] = ACTIONS(2275), - [aux_sym_cmd_identifier_token14] = ACTIONS(2275), - [aux_sym_cmd_identifier_token15] = ACTIONS(2275), - [aux_sym_cmd_identifier_token16] = ACTIONS(2275), - [aux_sym_cmd_identifier_token17] = ACTIONS(2275), - [aux_sym_cmd_identifier_token18] = ACTIONS(2275), - [aux_sym_cmd_identifier_token19] = ACTIONS(2275), - [aux_sym_cmd_identifier_token20] = ACTIONS(2275), - [aux_sym_cmd_identifier_token21] = ACTIONS(2275), - [aux_sym_cmd_identifier_token22] = ACTIONS(2275), - [aux_sym_cmd_identifier_token23] = ACTIONS(2275), - [aux_sym_cmd_identifier_token24] = ACTIONS(2275), - [aux_sym_cmd_identifier_token25] = ACTIONS(2275), - [aux_sym_cmd_identifier_token26] = ACTIONS(2275), - [aux_sym_cmd_identifier_token27] = ACTIONS(2275), - [aux_sym_cmd_identifier_token28] = ACTIONS(2275), - [aux_sym_cmd_identifier_token29] = ACTIONS(2275), - [aux_sym_cmd_identifier_token30] = ACTIONS(2275), - [aux_sym_cmd_identifier_token31] = ACTIONS(2275), - [aux_sym_cmd_identifier_token32] = ACTIONS(2275), - [aux_sym_cmd_identifier_token33] = ACTIONS(2275), - [aux_sym_cmd_identifier_token34] = ACTIONS(2275), - [aux_sym_cmd_identifier_token35] = ACTIONS(2275), - [aux_sym_cmd_identifier_token36] = ACTIONS(2275), - [anon_sym_true] = ACTIONS(2275), - [anon_sym_false] = ACTIONS(2275), - [anon_sym_null] = ACTIONS(2275), - [aux_sym_cmd_identifier_token38] = ACTIONS(2275), - [aux_sym_cmd_identifier_token39] = ACTIONS(2275), - [aux_sym_cmd_identifier_token40] = ACTIONS(2275), - [anon_sym_def] = ACTIONS(2275), - [anon_sym_export_DASHenv] = ACTIONS(2275), - [anon_sym_extern] = ACTIONS(2275), - [anon_sym_module] = ACTIONS(2275), - [anon_sym_use] = ACTIONS(2275), - [anon_sym_LPAREN] = ACTIONS(2275), - [anon_sym_DOLLAR] = ACTIONS(2275), - [anon_sym_error] = ACTIONS(2275), - [anon_sym_list] = ACTIONS(2275), - [anon_sym_DASH] = ACTIONS(2275), - [anon_sym_break] = ACTIONS(2275), - [anon_sym_continue] = ACTIONS(2275), - [anon_sym_for] = ACTIONS(2275), - [anon_sym_in] = ACTIONS(2275), - [anon_sym_loop] = ACTIONS(2275), - [anon_sym_make] = ACTIONS(2275), - [anon_sym_while] = ACTIONS(2275), - [anon_sym_do] = ACTIONS(2275), - [anon_sym_if] = ACTIONS(2275), - [anon_sym_else] = ACTIONS(2275), - [anon_sym_match] = ACTIONS(2275), - [anon_sym_RBRACE] = ACTIONS(2324), - [anon_sym_try] = ACTIONS(2275), - [anon_sym_catch] = ACTIONS(2275), - [anon_sym_return] = ACTIONS(2275), - [anon_sym_source] = ACTIONS(2275), - [anon_sym_source_DASHenv] = ACTIONS(2275), - [anon_sym_register] = ACTIONS(2275), - [anon_sym_hide] = ACTIONS(2275), - [anon_sym_hide_DASHenv] = ACTIONS(2275), - [anon_sym_overlay] = ACTIONS(2275), - [anon_sym_new] = ACTIONS(2275), - [anon_sym_as] = ACTIONS(2275), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2275), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2275), - [aux_sym__val_number_decimal_token1] = ACTIONS(2275), - [aux_sym__val_number_decimal_token2] = ACTIONS(2275), - [aux_sym__val_number_decimal_token3] = ACTIONS(2275), - [aux_sym__val_number_decimal_token4] = ACTIONS(2275), - [aux_sym__val_number_token1] = ACTIONS(2275), - [aux_sym__val_number_token2] = ACTIONS(2275), - [aux_sym__val_number_token3] = ACTIONS(2275), - [anon_sym_DQUOTE] = ACTIONS(2275), - [sym__str_single_quotes] = ACTIONS(2275), - [sym__str_back_ticks] = ACTIONS(2275), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2275), - [sym__entry_separator] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2275), - [anon_sym_POUND] = ACTIONS(3), - }, - [529] = { + [anon_sym_export] = ACTIONS(1843), + [anon_sym_alias] = ACTIONS(1843), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_let_DASHenv] = ACTIONS(1843), + [anon_sym_mut] = ACTIONS(1843), + [anon_sym_const] = ACTIONS(1843), + [aux_sym_cmd_identifier_token1] = ACTIONS(1843), + [aux_sym_cmd_identifier_token2] = ACTIONS(1843), + [aux_sym_cmd_identifier_token3] = ACTIONS(1843), + [aux_sym_cmd_identifier_token4] = ACTIONS(1843), + [aux_sym_cmd_identifier_token5] = ACTIONS(1843), + [aux_sym_cmd_identifier_token6] = ACTIONS(1843), + [aux_sym_cmd_identifier_token7] = ACTIONS(1843), + [aux_sym_cmd_identifier_token8] = ACTIONS(1843), + [aux_sym_cmd_identifier_token9] = ACTIONS(1843), + [aux_sym_cmd_identifier_token10] = ACTIONS(1843), + [aux_sym_cmd_identifier_token11] = ACTIONS(1843), + [aux_sym_cmd_identifier_token12] = ACTIONS(1843), + [aux_sym_cmd_identifier_token13] = ACTIONS(1843), + [aux_sym_cmd_identifier_token14] = ACTIONS(1843), + [aux_sym_cmd_identifier_token15] = ACTIONS(1843), + [aux_sym_cmd_identifier_token16] = ACTIONS(1843), + [aux_sym_cmd_identifier_token17] = ACTIONS(1843), + [aux_sym_cmd_identifier_token18] = ACTIONS(1843), + [aux_sym_cmd_identifier_token19] = ACTIONS(1843), + [aux_sym_cmd_identifier_token20] = ACTIONS(1843), + [aux_sym_cmd_identifier_token21] = ACTIONS(1843), + [aux_sym_cmd_identifier_token22] = ACTIONS(1843), + [aux_sym_cmd_identifier_token23] = ACTIONS(1843), + [aux_sym_cmd_identifier_token24] = ACTIONS(1843), + [aux_sym_cmd_identifier_token25] = ACTIONS(1843), + [aux_sym_cmd_identifier_token26] = ACTIONS(1843), + [aux_sym_cmd_identifier_token27] = ACTIONS(1843), + [aux_sym_cmd_identifier_token28] = ACTIONS(1843), + [aux_sym_cmd_identifier_token29] = ACTIONS(1843), + [aux_sym_cmd_identifier_token30] = ACTIONS(1843), + [aux_sym_cmd_identifier_token31] = ACTIONS(1843), + [aux_sym_cmd_identifier_token32] = ACTIONS(1843), + [aux_sym_cmd_identifier_token33] = ACTIONS(1843), + [aux_sym_cmd_identifier_token34] = ACTIONS(1843), + [aux_sym_cmd_identifier_token35] = ACTIONS(1843), + [aux_sym_cmd_identifier_token36] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [anon_sym_null] = ACTIONS(1843), + [aux_sym_cmd_identifier_token38] = ACTIONS(1843), + [aux_sym_cmd_identifier_token39] = ACTIONS(1843), + [aux_sym_cmd_identifier_token40] = ACTIONS(1843), + [anon_sym_def] = ACTIONS(1843), + [anon_sym_export_DASHenv] = ACTIONS(1843), + [anon_sym_extern] = ACTIONS(1843), + [anon_sym_module] = ACTIONS(1843), + [anon_sym_use] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1843), + [anon_sym_DOLLAR] = ACTIONS(1843), + [anon_sym_error] = ACTIONS(1843), + [anon_sym_list] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_break] = ACTIONS(1843), + [anon_sym_continue] = ACTIONS(1843), + [anon_sym_for] = ACTIONS(1843), + [anon_sym_in] = ACTIONS(1843), + [anon_sym_loop] = ACTIONS(1843), + [anon_sym_make] = ACTIONS(1843), + [anon_sym_while] = ACTIONS(1843), + [anon_sym_do] = ACTIONS(1843), + [anon_sym_if] = ACTIONS(1843), + [anon_sym_else] = ACTIONS(1843), + [anon_sym_match] = ACTIONS(1843), + [anon_sym_RBRACE] = ACTIONS(1843), + [anon_sym_try] = ACTIONS(1843), + [anon_sym_catch] = ACTIONS(1843), + [anon_sym_return] = ACTIONS(1843), + [anon_sym_source] = ACTIONS(1843), + [anon_sym_source_DASHenv] = ACTIONS(1843), + [anon_sym_register] = ACTIONS(1843), + [anon_sym_hide] = ACTIONS(1843), + [anon_sym_hide_DASHenv] = ACTIONS(1843), + [anon_sym_overlay] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1843), + [anon_sym_as] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1843), + [aux_sym__val_number_decimal_token1] = ACTIONS(1843), + [aux_sym__val_number_decimal_token2] = ACTIONS(1843), + [aux_sym__val_number_decimal_token3] = ACTIONS(1843), + [aux_sym__val_number_decimal_token4] = ACTIONS(1843), + [aux_sym__val_number_token1] = ACTIONS(1843), + [aux_sym__val_number_token2] = ACTIONS(1843), + [aux_sym__val_number_token3] = ACTIONS(1843), + [anon_sym_DQUOTE] = ACTIONS(1843), + [sym__str_single_quotes] = ACTIONS(1843), + [sym__str_back_ticks] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1843), + [sym__entry_separator] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_POUND] = ACTIONS(3), + }, + [525] = { + [sym_comment] = STATE(525), + [anon_sym_export] = ACTIONS(2400), + [anon_sym_alias] = ACTIONS(2400), + [anon_sym_let] = ACTIONS(2400), + [anon_sym_let_DASHenv] = ACTIONS(2400), + [anon_sym_mut] = ACTIONS(2400), + [anon_sym_const] = ACTIONS(2400), + [aux_sym_cmd_identifier_token1] = ACTIONS(2400), + [aux_sym_cmd_identifier_token2] = ACTIONS(2400), + [aux_sym_cmd_identifier_token3] = ACTIONS(2400), + [aux_sym_cmd_identifier_token4] = ACTIONS(2400), + [aux_sym_cmd_identifier_token5] = ACTIONS(2400), + [aux_sym_cmd_identifier_token6] = ACTIONS(2400), + [aux_sym_cmd_identifier_token7] = ACTIONS(2400), + [aux_sym_cmd_identifier_token8] = ACTIONS(2400), + [aux_sym_cmd_identifier_token9] = ACTIONS(2400), + [aux_sym_cmd_identifier_token10] = ACTIONS(2400), + [aux_sym_cmd_identifier_token11] = ACTIONS(2400), + [aux_sym_cmd_identifier_token12] = ACTIONS(2400), + [aux_sym_cmd_identifier_token13] = ACTIONS(2400), + [aux_sym_cmd_identifier_token14] = ACTIONS(2400), + [aux_sym_cmd_identifier_token15] = ACTIONS(2400), + [aux_sym_cmd_identifier_token16] = ACTIONS(2400), + [aux_sym_cmd_identifier_token17] = ACTIONS(2400), + [aux_sym_cmd_identifier_token18] = ACTIONS(2400), + [aux_sym_cmd_identifier_token19] = ACTIONS(2400), + [aux_sym_cmd_identifier_token20] = ACTIONS(2400), + [aux_sym_cmd_identifier_token21] = ACTIONS(2400), + [aux_sym_cmd_identifier_token22] = ACTIONS(2400), + [aux_sym_cmd_identifier_token23] = ACTIONS(2400), + [aux_sym_cmd_identifier_token24] = ACTIONS(2400), + [aux_sym_cmd_identifier_token25] = ACTIONS(2400), + [aux_sym_cmd_identifier_token26] = ACTIONS(2400), + [aux_sym_cmd_identifier_token27] = ACTIONS(2400), + [aux_sym_cmd_identifier_token28] = ACTIONS(2400), + [aux_sym_cmd_identifier_token29] = ACTIONS(2400), + [aux_sym_cmd_identifier_token30] = ACTIONS(2400), + [aux_sym_cmd_identifier_token31] = ACTIONS(2400), + [aux_sym_cmd_identifier_token32] = ACTIONS(2400), + [aux_sym_cmd_identifier_token33] = ACTIONS(2400), + [aux_sym_cmd_identifier_token34] = ACTIONS(2400), + [aux_sym_cmd_identifier_token35] = ACTIONS(2400), + [aux_sym_cmd_identifier_token36] = ACTIONS(2400), + [anon_sym_true] = ACTIONS(2400), + [anon_sym_false] = ACTIONS(2400), + [anon_sym_null] = ACTIONS(2400), + [aux_sym_cmd_identifier_token38] = ACTIONS(2400), + [aux_sym_cmd_identifier_token39] = ACTIONS(2400), + [aux_sym_cmd_identifier_token40] = ACTIONS(2400), + [anon_sym_def] = ACTIONS(2400), + [anon_sym_export_DASHenv] = ACTIONS(2400), + [anon_sym_extern] = ACTIONS(2400), + [anon_sym_module] = ACTIONS(2400), + [anon_sym_use] = ACTIONS(2400), + [anon_sym_LPAREN] = ACTIONS(2400), + [anon_sym_DOLLAR] = ACTIONS(2400), + [anon_sym_error] = ACTIONS(2400), + [anon_sym_list] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_break] = ACTIONS(2400), + [anon_sym_continue] = ACTIONS(2400), + [anon_sym_for] = ACTIONS(2400), + [anon_sym_in] = ACTIONS(2400), + [anon_sym_loop] = ACTIONS(2400), + [anon_sym_make] = ACTIONS(2400), + [anon_sym_while] = ACTIONS(2400), + [anon_sym_do] = ACTIONS(2400), + [anon_sym_if] = ACTIONS(2400), + [anon_sym_else] = ACTIONS(2400), + [anon_sym_match] = ACTIONS(2400), + [anon_sym_RBRACE] = ACTIONS(2400), + [anon_sym_try] = ACTIONS(2400), + [anon_sym_catch] = ACTIONS(2400), + [anon_sym_return] = ACTIONS(2400), + [anon_sym_source] = ACTIONS(2400), + [anon_sym_source_DASHenv] = ACTIONS(2400), + [anon_sym_register] = ACTIONS(2400), + [anon_sym_hide] = ACTIONS(2400), + [anon_sym_hide_DASHenv] = ACTIONS(2400), + [anon_sym_overlay] = ACTIONS(2400), + [anon_sym_new] = ACTIONS(2400), + [anon_sym_as] = ACTIONS(2400), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2400), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2400), + [aux_sym__val_number_decimal_token1] = ACTIONS(2400), + [aux_sym__val_number_decimal_token2] = ACTIONS(2400), + [aux_sym__val_number_decimal_token3] = ACTIONS(2400), + [aux_sym__val_number_decimal_token4] = ACTIONS(2400), + [aux_sym__val_number_token1] = ACTIONS(2400), + [aux_sym__val_number_token2] = ACTIONS(2400), + [aux_sym__val_number_token3] = ACTIONS(2400), + [anon_sym_DQUOTE] = ACTIONS(2400), + [sym__str_single_quotes] = ACTIONS(2400), + [sym__str_back_ticks] = ACTIONS(2400), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2400), + [sym__entry_separator] = ACTIONS(2402), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_POUND] = ACTIONS(3), + }, + [526] = { + [sym_comment] = STATE(526), + [anon_sym_export] = ACTIONS(2404), + [anon_sym_alias] = ACTIONS(2404), + [anon_sym_let] = ACTIONS(2404), + [anon_sym_let_DASHenv] = ACTIONS(2404), + [anon_sym_mut] = ACTIONS(2404), + [anon_sym_const] = ACTIONS(2404), + [aux_sym_cmd_identifier_token1] = ACTIONS(2404), + [aux_sym_cmd_identifier_token2] = ACTIONS(2404), + [aux_sym_cmd_identifier_token3] = ACTIONS(2404), + [aux_sym_cmd_identifier_token4] = ACTIONS(2404), + [aux_sym_cmd_identifier_token5] = ACTIONS(2404), + [aux_sym_cmd_identifier_token6] = ACTIONS(2404), + [aux_sym_cmd_identifier_token7] = ACTIONS(2404), + [aux_sym_cmd_identifier_token8] = ACTIONS(2404), + [aux_sym_cmd_identifier_token9] = ACTIONS(2404), + [aux_sym_cmd_identifier_token10] = ACTIONS(2404), + [aux_sym_cmd_identifier_token11] = ACTIONS(2404), + [aux_sym_cmd_identifier_token12] = ACTIONS(2404), + [aux_sym_cmd_identifier_token13] = ACTIONS(2404), + [aux_sym_cmd_identifier_token14] = ACTIONS(2404), + [aux_sym_cmd_identifier_token15] = ACTIONS(2404), + [aux_sym_cmd_identifier_token16] = ACTIONS(2404), + [aux_sym_cmd_identifier_token17] = ACTIONS(2404), + [aux_sym_cmd_identifier_token18] = ACTIONS(2404), + [aux_sym_cmd_identifier_token19] = ACTIONS(2404), + [aux_sym_cmd_identifier_token20] = ACTIONS(2404), + [aux_sym_cmd_identifier_token21] = ACTIONS(2404), + [aux_sym_cmd_identifier_token22] = ACTIONS(2404), + [aux_sym_cmd_identifier_token23] = ACTIONS(2404), + [aux_sym_cmd_identifier_token24] = ACTIONS(2404), + [aux_sym_cmd_identifier_token25] = ACTIONS(2404), + [aux_sym_cmd_identifier_token26] = ACTIONS(2404), + [aux_sym_cmd_identifier_token27] = ACTIONS(2404), + [aux_sym_cmd_identifier_token28] = ACTIONS(2404), + [aux_sym_cmd_identifier_token29] = ACTIONS(2404), + [aux_sym_cmd_identifier_token30] = ACTIONS(2404), + [aux_sym_cmd_identifier_token31] = ACTIONS(2404), + [aux_sym_cmd_identifier_token32] = ACTIONS(2404), + [aux_sym_cmd_identifier_token33] = ACTIONS(2404), + [aux_sym_cmd_identifier_token34] = ACTIONS(2404), + [aux_sym_cmd_identifier_token35] = ACTIONS(2404), + [aux_sym_cmd_identifier_token36] = ACTIONS(2404), + [anon_sym_true] = ACTIONS(2404), + [anon_sym_false] = ACTIONS(2404), + [anon_sym_null] = ACTIONS(2404), + [aux_sym_cmd_identifier_token38] = ACTIONS(2404), + [aux_sym_cmd_identifier_token39] = ACTIONS(2404), + [aux_sym_cmd_identifier_token40] = ACTIONS(2404), + [anon_sym_def] = ACTIONS(2404), + [anon_sym_export_DASHenv] = ACTIONS(2404), + [anon_sym_extern] = ACTIONS(2404), + [anon_sym_module] = ACTIONS(2404), + [anon_sym_use] = ACTIONS(2404), + [anon_sym_LPAREN] = ACTIONS(2404), + [anon_sym_DOLLAR] = ACTIONS(2404), + [anon_sym_error] = ACTIONS(2404), + [anon_sym_list] = ACTIONS(2404), + [anon_sym_DASH] = ACTIONS(2404), + [anon_sym_break] = ACTIONS(2404), + [anon_sym_continue] = ACTIONS(2404), + [anon_sym_for] = ACTIONS(2404), + [anon_sym_in] = ACTIONS(2404), + [anon_sym_loop] = ACTIONS(2404), + [anon_sym_make] = ACTIONS(2404), + [anon_sym_while] = ACTIONS(2404), + [anon_sym_do] = ACTIONS(2404), + [anon_sym_if] = ACTIONS(2404), + [anon_sym_else] = ACTIONS(2404), + [anon_sym_match] = ACTIONS(2404), + [anon_sym_RBRACE] = ACTIONS(2404), + [anon_sym_try] = ACTIONS(2404), + [anon_sym_catch] = ACTIONS(2404), + [anon_sym_return] = ACTIONS(2404), + [anon_sym_source] = ACTIONS(2404), + [anon_sym_source_DASHenv] = ACTIONS(2404), + [anon_sym_register] = ACTIONS(2404), + [anon_sym_hide] = ACTIONS(2404), + [anon_sym_hide_DASHenv] = ACTIONS(2404), + [anon_sym_overlay] = ACTIONS(2404), + [anon_sym_new] = ACTIONS(2404), + [anon_sym_as] = ACTIONS(2404), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2404), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2404), + [aux_sym__val_number_decimal_token1] = ACTIONS(2404), + [aux_sym__val_number_decimal_token2] = ACTIONS(2404), + [aux_sym__val_number_decimal_token3] = ACTIONS(2404), + [aux_sym__val_number_decimal_token4] = ACTIONS(2404), + [aux_sym__val_number_token1] = ACTIONS(2404), + [aux_sym__val_number_token2] = ACTIONS(2404), + [aux_sym__val_number_token3] = ACTIONS(2404), + [anon_sym_DQUOTE] = ACTIONS(2404), + [sym__str_single_quotes] = ACTIONS(2404), + [sym__str_back_ticks] = ACTIONS(2404), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2404), + [sym__entry_separator] = ACTIONS(2406), + [anon_sym_PLUS] = ACTIONS(2404), + [anon_sym_POUND] = ACTIONS(3), + }, + [527] = { + [sym_comment] = STATE(527), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_alias] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_let_DASHenv] = ACTIONS(1859), + [anon_sym_mut] = ACTIONS(1859), + [anon_sym_const] = ACTIONS(1859), + [aux_sym_cmd_identifier_token1] = ACTIONS(1859), + [aux_sym_cmd_identifier_token2] = ACTIONS(1859), + [aux_sym_cmd_identifier_token3] = ACTIONS(1859), + [aux_sym_cmd_identifier_token4] = ACTIONS(1859), + [aux_sym_cmd_identifier_token5] = ACTIONS(1859), + [aux_sym_cmd_identifier_token6] = ACTIONS(1859), + [aux_sym_cmd_identifier_token7] = ACTIONS(1859), + [aux_sym_cmd_identifier_token8] = ACTIONS(1859), + [aux_sym_cmd_identifier_token9] = ACTIONS(1859), + [aux_sym_cmd_identifier_token10] = ACTIONS(1859), + [aux_sym_cmd_identifier_token11] = ACTIONS(1859), + [aux_sym_cmd_identifier_token12] = ACTIONS(1859), + [aux_sym_cmd_identifier_token13] = ACTIONS(1859), + [aux_sym_cmd_identifier_token14] = ACTIONS(1859), + [aux_sym_cmd_identifier_token15] = ACTIONS(1859), + [aux_sym_cmd_identifier_token16] = ACTIONS(1859), + [aux_sym_cmd_identifier_token17] = ACTIONS(1859), + [aux_sym_cmd_identifier_token18] = ACTIONS(1859), + [aux_sym_cmd_identifier_token19] = ACTIONS(1859), + [aux_sym_cmd_identifier_token20] = ACTIONS(1859), + [aux_sym_cmd_identifier_token21] = ACTIONS(1859), + [aux_sym_cmd_identifier_token22] = ACTIONS(1859), + [aux_sym_cmd_identifier_token23] = ACTIONS(1859), + [aux_sym_cmd_identifier_token24] = ACTIONS(1859), + [aux_sym_cmd_identifier_token25] = ACTIONS(1859), + [aux_sym_cmd_identifier_token26] = ACTIONS(1859), + [aux_sym_cmd_identifier_token27] = ACTIONS(1859), + [aux_sym_cmd_identifier_token28] = ACTIONS(1859), + [aux_sym_cmd_identifier_token29] = ACTIONS(1859), + [aux_sym_cmd_identifier_token30] = ACTIONS(1859), + [aux_sym_cmd_identifier_token31] = ACTIONS(1859), + [aux_sym_cmd_identifier_token32] = ACTIONS(1859), + [aux_sym_cmd_identifier_token33] = ACTIONS(1859), + [aux_sym_cmd_identifier_token34] = ACTIONS(1859), + [aux_sym_cmd_identifier_token35] = ACTIONS(1859), + [aux_sym_cmd_identifier_token36] = ACTIONS(1859), + [anon_sym_true] = ACTIONS(1859), + [anon_sym_false] = ACTIONS(1859), + [anon_sym_null] = ACTIONS(1859), + [aux_sym_cmd_identifier_token38] = ACTIONS(1859), + [aux_sym_cmd_identifier_token39] = ACTIONS(1859), + [aux_sym_cmd_identifier_token40] = ACTIONS(1859), + [anon_sym_def] = ACTIONS(1859), + [anon_sym_export_DASHenv] = ACTIONS(1859), + [anon_sym_extern] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_use] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1859), + [anon_sym_DOLLAR] = ACTIONS(1859), + [anon_sym_error] = ACTIONS(1859), + [anon_sym_list] = ACTIONS(1859), + [anon_sym_DASH] = ACTIONS(1859), + [anon_sym_break] = ACTIONS(1859), + [anon_sym_continue] = ACTIONS(1859), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_in] = ACTIONS(1859), + [anon_sym_loop] = ACTIONS(1859), + [anon_sym_make] = ACTIONS(1859), + [anon_sym_while] = ACTIONS(1859), + [anon_sym_do] = ACTIONS(1859), + [anon_sym_if] = ACTIONS(1859), + [anon_sym_else] = ACTIONS(1859), + [anon_sym_match] = ACTIONS(1859), + [anon_sym_RBRACE] = ACTIONS(1859), + [anon_sym_try] = ACTIONS(1859), + [anon_sym_catch] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(1859), + [anon_sym_source] = ACTIONS(1859), + [anon_sym_source_DASHenv] = ACTIONS(1859), + [anon_sym_register] = ACTIONS(1859), + [anon_sym_hide] = ACTIONS(1859), + [anon_sym_hide_DASHenv] = ACTIONS(1859), + [anon_sym_overlay] = ACTIONS(1859), + [anon_sym_new] = ACTIONS(1859), + [anon_sym_as] = ACTIONS(1859), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1859), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1859), + [aux_sym__val_number_decimal_token1] = ACTIONS(1859), + [aux_sym__val_number_decimal_token2] = ACTIONS(1859), + [aux_sym__val_number_decimal_token3] = ACTIONS(1859), + [aux_sym__val_number_decimal_token4] = ACTIONS(1859), + [aux_sym__val_number_token1] = ACTIONS(1859), + [aux_sym__val_number_token2] = ACTIONS(1859), + [aux_sym__val_number_token3] = ACTIONS(1859), + [anon_sym_DQUOTE] = ACTIONS(1859), + [sym__str_single_quotes] = ACTIONS(1859), + [sym__str_back_ticks] = ACTIONS(1859), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1859), + [sym__entry_separator] = ACTIONS(1861), + [anon_sym_PLUS] = ACTIONS(1859), + [anon_sym_POUND] = ACTIONS(3), + }, + [528] = { + [sym_comment] = STATE(528), + [anon_sym_export] = ACTIONS(1867), + [anon_sym_alias] = ACTIONS(1867), + [anon_sym_let] = ACTIONS(1867), + [anon_sym_let_DASHenv] = ACTIONS(1867), + [anon_sym_mut] = ACTIONS(1867), + [anon_sym_const] = ACTIONS(1867), + [aux_sym_cmd_identifier_token1] = ACTIONS(1867), + [aux_sym_cmd_identifier_token2] = ACTIONS(1867), + [aux_sym_cmd_identifier_token3] = ACTIONS(1867), + [aux_sym_cmd_identifier_token4] = ACTIONS(1867), + [aux_sym_cmd_identifier_token5] = ACTIONS(1867), + [aux_sym_cmd_identifier_token6] = ACTIONS(1867), + [aux_sym_cmd_identifier_token7] = ACTIONS(1867), + [aux_sym_cmd_identifier_token8] = ACTIONS(1867), + [aux_sym_cmd_identifier_token9] = ACTIONS(1867), + [aux_sym_cmd_identifier_token10] = ACTIONS(1867), + [aux_sym_cmd_identifier_token11] = ACTIONS(1867), + [aux_sym_cmd_identifier_token12] = ACTIONS(1867), + [aux_sym_cmd_identifier_token13] = ACTIONS(1867), + [aux_sym_cmd_identifier_token14] = ACTIONS(1867), + [aux_sym_cmd_identifier_token15] = ACTIONS(1867), + [aux_sym_cmd_identifier_token16] = ACTIONS(1867), + [aux_sym_cmd_identifier_token17] = ACTIONS(1867), + [aux_sym_cmd_identifier_token18] = ACTIONS(1867), + [aux_sym_cmd_identifier_token19] = ACTIONS(1867), + [aux_sym_cmd_identifier_token20] = ACTIONS(1867), + [aux_sym_cmd_identifier_token21] = ACTIONS(1867), + [aux_sym_cmd_identifier_token22] = ACTIONS(1867), + [aux_sym_cmd_identifier_token23] = ACTIONS(1867), + [aux_sym_cmd_identifier_token24] = ACTIONS(1867), + [aux_sym_cmd_identifier_token25] = ACTIONS(1867), + [aux_sym_cmd_identifier_token26] = ACTIONS(1867), + [aux_sym_cmd_identifier_token27] = ACTIONS(1867), + [aux_sym_cmd_identifier_token28] = ACTIONS(1867), + [aux_sym_cmd_identifier_token29] = ACTIONS(1867), + [aux_sym_cmd_identifier_token30] = ACTIONS(1867), + [aux_sym_cmd_identifier_token31] = ACTIONS(1867), + [aux_sym_cmd_identifier_token32] = ACTIONS(1867), + [aux_sym_cmd_identifier_token33] = ACTIONS(1867), + [aux_sym_cmd_identifier_token34] = ACTIONS(1867), + [aux_sym_cmd_identifier_token35] = ACTIONS(1867), + [aux_sym_cmd_identifier_token36] = ACTIONS(1867), + [anon_sym_true] = ACTIONS(1867), + [anon_sym_false] = ACTIONS(1867), + [anon_sym_null] = ACTIONS(1867), + [aux_sym_cmd_identifier_token38] = ACTIONS(1867), + [aux_sym_cmd_identifier_token39] = ACTIONS(1867), + [aux_sym_cmd_identifier_token40] = ACTIONS(1867), + [anon_sym_def] = ACTIONS(1867), + [anon_sym_export_DASHenv] = ACTIONS(1867), + [anon_sym_extern] = ACTIONS(1867), + [anon_sym_module] = ACTIONS(1867), + [anon_sym_use] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(1867), + [anon_sym_error] = ACTIONS(1867), + [anon_sym_list] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_break] = ACTIONS(1867), + [anon_sym_continue] = ACTIONS(1867), + [anon_sym_for] = ACTIONS(1867), + [anon_sym_in] = ACTIONS(1867), + [anon_sym_loop] = ACTIONS(1867), + [anon_sym_make] = ACTIONS(1867), + [anon_sym_while] = ACTIONS(1867), + [anon_sym_do] = ACTIONS(1867), + [anon_sym_if] = ACTIONS(1867), + [anon_sym_else] = ACTIONS(1867), + [anon_sym_match] = ACTIONS(1867), + [anon_sym_RBRACE] = ACTIONS(1867), + [anon_sym_try] = ACTIONS(1867), + [anon_sym_catch] = ACTIONS(1867), + [anon_sym_return] = ACTIONS(1867), + [anon_sym_source] = ACTIONS(1867), + [anon_sym_source_DASHenv] = ACTIONS(1867), + [anon_sym_register] = ACTIONS(1867), + [anon_sym_hide] = ACTIONS(1867), + [anon_sym_hide_DASHenv] = ACTIONS(1867), + [anon_sym_overlay] = ACTIONS(1867), + [anon_sym_new] = ACTIONS(1867), + [anon_sym_as] = ACTIONS(1867), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1867), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1867), + [aux_sym__val_number_decimal_token1] = ACTIONS(1867), + [aux_sym__val_number_decimal_token2] = ACTIONS(1867), + [aux_sym__val_number_decimal_token3] = ACTIONS(1867), + [aux_sym__val_number_decimal_token4] = ACTIONS(1867), + [aux_sym__val_number_token1] = ACTIONS(1867), + [aux_sym__val_number_token2] = ACTIONS(1867), + [aux_sym__val_number_token3] = ACTIONS(1867), + [anon_sym_DQUOTE] = ACTIONS(1867), + [sym__str_single_quotes] = ACTIONS(1867), + [sym__str_back_ticks] = ACTIONS(1867), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1867), + [sym__entry_separator] = ACTIONS(1869), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_POUND] = ACTIONS(3), + }, + [529] = { [sym_comment] = STATE(529), - [anon_sym_export] = ACTIONS(2326), - [anon_sym_alias] = ACTIONS(2326), - [anon_sym_let] = ACTIONS(2326), - [anon_sym_let_DASHenv] = ACTIONS(2326), - [anon_sym_mut] = ACTIONS(2326), - [anon_sym_const] = ACTIONS(2326), - [aux_sym_cmd_identifier_token1] = ACTIONS(2326), - [aux_sym_cmd_identifier_token2] = ACTIONS(2326), - [aux_sym_cmd_identifier_token3] = ACTIONS(2326), - [aux_sym_cmd_identifier_token4] = ACTIONS(2326), - [aux_sym_cmd_identifier_token5] = ACTIONS(2326), - [aux_sym_cmd_identifier_token6] = ACTIONS(2326), - [aux_sym_cmd_identifier_token7] = ACTIONS(2326), - [aux_sym_cmd_identifier_token8] = ACTIONS(2326), - [aux_sym_cmd_identifier_token9] = ACTIONS(2326), - [aux_sym_cmd_identifier_token10] = ACTIONS(2326), - [aux_sym_cmd_identifier_token11] = ACTIONS(2326), - [aux_sym_cmd_identifier_token12] = ACTIONS(2326), - [aux_sym_cmd_identifier_token13] = ACTIONS(2326), - [aux_sym_cmd_identifier_token14] = ACTIONS(2326), - [aux_sym_cmd_identifier_token15] = ACTIONS(2326), - [aux_sym_cmd_identifier_token16] = ACTIONS(2326), - [aux_sym_cmd_identifier_token17] = ACTIONS(2326), - [aux_sym_cmd_identifier_token18] = ACTIONS(2326), - [aux_sym_cmd_identifier_token19] = ACTIONS(2326), - [aux_sym_cmd_identifier_token20] = ACTIONS(2326), - [aux_sym_cmd_identifier_token21] = ACTIONS(2326), - [aux_sym_cmd_identifier_token22] = ACTIONS(2326), - [aux_sym_cmd_identifier_token23] = ACTIONS(2326), - [aux_sym_cmd_identifier_token24] = ACTIONS(2326), - [aux_sym_cmd_identifier_token25] = ACTIONS(2326), - [aux_sym_cmd_identifier_token26] = ACTIONS(2326), - [aux_sym_cmd_identifier_token27] = ACTIONS(2326), - [aux_sym_cmd_identifier_token28] = ACTIONS(2326), - [aux_sym_cmd_identifier_token29] = ACTIONS(2326), - [aux_sym_cmd_identifier_token30] = ACTIONS(2326), - [aux_sym_cmd_identifier_token31] = ACTIONS(2326), - [aux_sym_cmd_identifier_token32] = ACTIONS(2326), - [aux_sym_cmd_identifier_token33] = ACTIONS(2326), - [aux_sym_cmd_identifier_token34] = ACTIONS(2326), - [aux_sym_cmd_identifier_token35] = ACTIONS(2326), - [aux_sym_cmd_identifier_token36] = ACTIONS(2326), - [anon_sym_true] = ACTIONS(2326), - [anon_sym_false] = ACTIONS(2326), - [anon_sym_null] = ACTIONS(2326), - [aux_sym_cmd_identifier_token38] = ACTIONS(2326), - [aux_sym_cmd_identifier_token39] = ACTIONS(2326), - [aux_sym_cmd_identifier_token40] = ACTIONS(2326), - [anon_sym_def] = ACTIONS(2326), - [anon_sym_export_DASHenv] = ACTIONS(2326), - [anon_sym_extern] = ACTIONS(2326), - [anon_sym_module] = ACTIONS(2326), - [anon_sym_use] = ACTIONS(2326), - [anon_sym_LPAREN] = ACTIONS(2326), - [anon_sym_DOLLAR] = ACTIONS(2326), - [anon_sym_error] = ACTIONS(2326), - [anon_sym_list] = ACTIONS(2326), - [anon_sym_DASH] = ACTIONS(2326), - [anon_sym_break] = ACTIONS(2326), - [anon_sym_continue] = ACTIONS(2326), - [anon_sym_for] = ACTIONS(2326), - [anon_sym_in] = ACTIONS(2326), - [anon_sym_loop] = ACTIONS(2326), - [anon_sym_make] = ACTIONS(2326), - [anon_sym_while] = ACTIONS(2326), - [anon_sym_do] = ACTIONS(2326), - [anon_sym_if] = ACTIONS(2326), - [anon_sym_else] = ACTIONS(2326), - [anon_sym_match] = ACTIONS(2326), - [anon_sym_RBRACE] = ACTIONS(2326), - [anon_sym_try] = ACTIONS(2326), - [anon_sym_catch] = ACTIONS(2326), - [anon_sym_return] = ACTIONS(2326), - [anon_sym_source] = ACTIONS(2326), - [anon_sym_source_DASHenv] = ACTIONS(2326), - [anon_sym_register] = ACTIONS(2326), - [anon_sym_hide] = ACTIONS(2326), - [anon_sym_hide_DASHenv] = ACTIONS(2326), - [anon_sym_overlay] = ACTIONS(2326), - [anon_sym_new] = ACTIONS(2326), - [anon_sym_as] = ACTIONS(2326), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2326), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2326), - [aux_sym__val_number_decimal_token1] = ACTIONS(2326), - [aux_sym__val_number_decimal_token2] = ACTIONS(2326), - [aux_sym__val_number_decimal_token3] = ACTIONS(2326), - [aux_sym__val_number_decimal_token4] = ACTIONS(2326), - [aux_sym__val_number_token1] = ACTIONS(2326), - [aux_sym__val_number_token2] = ACTIONS(2326), - [aux_sym__val_number_token3] = ACTIONS(2326), - [anon_sym_DQUOTE] = ACTIONS(2326), - [sym__str_single_quotes] = ACTIONS(2326), - [sym__str_back_ticks] = ACTIONS(2326), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2326), - [sym__entry_separator] = ACTIONS(2328), - [anon_sym_PLUS] = ACTIONS(2326), + [anon_sym_export] = ACTIONS(1871), + [anon_sym_alias] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1871), + [anon_sym_let_DASHenv] = ACTIONS(1871), + [anon_sym_mut] = ACTIONS(1871), + [anon_sym_const] = ACTIONS(1871), + [aux_sym_cmd_identifier_token1] = ACTIONS(1871), + [aux_sym_cmd_identifier_token2] = ACTIONS(1871), + [aux_sym_cmd_identifier_token3] = ACTIONS(1871), + [aux_sym_cmd_identifier_token4] = ACTIONS(1871), + [aux_sym_cmd_identifier_token5] = ACTIONS(1871), + [aux_sym_cmd_identifier_token6] = ACTIONS(1871), + [aux_sym_cmd_identifier_token7] = ACTIONS(1871), + [aux_sym_cmd_identifier_token8] = ACTIONS(1871), + [aux_sym_cmd_identifier_token9] = ACTIONS(1871), + [aux_sym_cmd_identifier_token10] = ACTIONS(1871), + [aux_sym_cmd_identifier_token11] = ACTIONS(1871), + [aux_sym_cmd_identifier_token12] = ACTIONS(1871), + [aux_sym_cmd_identifier_token13] = ACTIONS(1871), + [aux_sym_cmd_identifier_token14] = ACTIONS(1871), + [aux_sym_cmd_identifier_token15] = ACTIONS(1871), + [aux_sym_cmd_identifier_token16] = ACTIONS(1871), + [aux_sym_cmd_identifier_token17] = ACTIONS(1871), + [aux_sym_cmd_identifier_token18] = ACTIONS(1871), + [aux_sym_cmd_identifier_token19] = ACTIONS(1871), + [aux_sym_cmd_identifier_token20] = ACTIONS(1871), + [aux_sym_cmd_identifier_token21] = ACTIONS(1871), + [aux_sym_cmd_identifier_token22] = ACTIONS(1871), + [aux_sym_cmd_identifier_token23] = ACTIONS(1871), + [aux_sym_cmd_identifier_token24] = ACTIONS(1871), + [aux_sym_cmd_identifier_token25] = ACTIONS(1871), + [aux_sym_cmd_identifier_token26] = ACTIONS(1871), + [aux_sym_cmd_identifier_token27] = ACTIONS(1871), + [aux_sym_cmd_identifier_token28] = ACTIONS(1871), + [aux_sym_cmd_identifier_token29] = ACTIONS(1871), + [aux_sym_cmd_identifier_token30] = ACTIONS(1871), + [aux_sym_cmd_identifier_token31] = ACTIONS(1871), + [aux_sym_cmd_identifier_token32] = ACTIONS(1871), + [aux_sym_cmd_identifier_token33] = ACTIONS(1871), + [aux_sym_cmd_identifier_token34] = ACTIONS(1871), + [aux_sym_cmd_identifier_token35] = ACTIONS(1871), + [aux_sym_cmd_identifier_token36] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(1871), + [anon_sym_false] = ACTIONS(1871), + [anon_sym_null] = ACTIONS(1871), + [aux_sym_cmd_identifier_token38] = ACTIONS(1871), + [aux_sym_cmd_identifier_token39] = ACTIONS(1871), + [aux_sym_cmd_identifier_token40] = ACTIONS(1871), + [anon_sym_def] = ACTIONS(1871), + [anon_sym_export_DASHenv] = ACTIONS(1871), + [anon_sym_extern] = ACTIONS(1871), + [anon_sym_module] = ACTIONS(1871), + [anon_sym_use] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1871), + [anon_sym_DOLLAR] = ACTIONS(1871), + [anon_sym_error] = ACTIONS(1871), + [anon_sym_list] = ACTIONS(1871), + [anon_sym_DASH] = ACTIONS(1871), + [anon_sym_break] = ACTIONS(1871), + [anon_sym_continue] = ACTIONS(1871), + [anon_sym_for] = ACTIONS(1871), + [anon_sym_in] = ACTIONS(1871), + [anon_sym_loop] = ACTIONS(1871), + [anon_sym_make] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1871), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_if] = ACTIONS(1871), + [anon_sym_else] = ACTIONS(1871), + [anon_sym_match] = ACTIONS(1871), + [anon_sym_RBRACE] = ACTIONS(1871), + [anon_sym_try] = ACTIONS(1871), + [anon_sym_catch] = ACTIONS(1871), + [anon_sym_return] = ACTIONS(1871), + [anon_sym_source] = ACTIONS(1871), + [anon_sym_source_DASHenv] = ACTIONS(1871), + [anon_sym_register] = ACTIONS(1871), + [anon_sym_hide] = ACTIONS(1871), + [anon_sym_hide_DASHenv] = ACTIONS(1871), + [anon_sym_overlay] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1871), + [anon_sym_as] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1871), + [aux_sym__val_number_decimal_token1] = ACTIONS(1871), + [aux_sym__val_number_decimal_token2] = ACTIONS(1871), + [aux_sym__val_number_decimal_token3] = ACTIONS(1871), + [aux_sym__val_number_decimal_token4] = ACTIONS(1871), + [aux_sym__val_number_token1] = ACTIONS(1871), + [aux_sym__val_number_token2] = ACTIONS(1871), + [aux_sym__val_number_token3] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [sym__str_single_quotes] = ACTIONS(1871), + [sym__str_back_ticks] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1871), + [sym__entry_separator] = ACTIONS(1873), + [anon_sym_PLUS] = ACTIONS(1871), [anon_sym_POUND] = ACTIONS(3), }, [530] = { [sym_comment] = STATE(530), - [anon_sym_export] = ACTIONS(1589), - [anon_sym_alias] = ACTIONS(1589), - [anon_sym_let] = ACTIONS(1589), - [anon_sym_let_DASHenv] = ACTIONS(1589), - [anon_sym_mut] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [aux_sym_cmd_identifier_token1] = ACTIONS(1589), - [aux_sym_cmd_identifier_token2] = ACTIONS(1589), - [aux_sym_cmd_identifier_token3] = ACTIONS(1589), - [aux_sym_cmd_identifier_token4] = ACTIONS(1589), - [aux_sym_cmd_identifier_token5] = ACTIONS(1589), - [aux_sym_cmd_identifier_token6] = ACTIONS(1589), - [aux_sym_cmd_identifier_token7] = ACTIONS(1589), - [aux_sym_cmd_identifier_token8] = ACTIONS(1589), - [aux_sym_cmd_identifier_token9] = ACTIONS(1589), - [aux_sym_cmd_identifier_token10] = ACTIONS(1589), - [aux_sym_cmd_identifier_token11] = ACTIONS(1589), - [aux_sym_cmd_identifier_token12] = ACTIONS(1589), - [aux_sym_cmd_identifier_token13] = ACTIONS(1589), - [aux_sym_cmd_identifier_token14] = ACTIONS(1589), - [aux_sym_cmd_identifier_token15] = ACTIONS(1589), - [aux_sym_cmd_identifier_token16] = ACTIONS(1589), - [aux_sym_cmd_identifier_token17] = ACTIONS(1589), - [aux_sym_cmd_identifier_token18] = ACTIONS(1589), - [aux_sym_cmd_identifier_token19] = ACTIONS(1589), - [aux_sym_cmd_identifier_token20] = ACTIONS(1589), - [aux_sym_cmd_identifier_token21] = ACTIONS(1589), - [aux_sym_cmd_identifier_token22] = ACTIONS(1589), - [aux_sym_cmd_identifier_token23] = ACTIONS(1589), - [aux_sym_cmd_identifier_token24] = ACTIONS(1589), - [aux_sym_cmd_identifier_token25] = ACTIONS(1589), - [aux_sym_cmd_identifier_token26] = ACTIONS(1589), - [aux_sym_cmd_identifier_token27] = ACTIONS(1589), - [aux_sym_cmd_identifier_token28] = ACTIONS(1589), - [aux_sym_cmd_identifier_token29] = ACTIONS(1589), - [aux_sym_cmd_identifier_token30] = ACTIONS(1589), - [aux_sym_cmd_identifier_token31] = ACTIONS(1589), - [aux_sym_cmd_identifier_token32] = ACTIONS(1589), - [aux_sym_cmd_identifier_token33] = ACTIONS(1589), - [aux_sym_cmd_identifier_token34] = ACTIONS(1589), - [aux_sym_cmd_identifier_token35] = ACTIONS(1589), - [aux_sym_cmd_identifier_token36] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [anon_sym_null] = ACTIONS(1591), - [aux_sym_cmd_identifier_token38] = ACTIONS(1589), - [aux_sym_cmd_identifier_token39] = ACTIONS(1591), - [aux_sym_cmd_identifier_token40] = ACTIONS(1591), - [anon_sym_def] = ACTIONS(1589), - [anon_sym_export_DASHenv] = ACTIONS(1589), - [anon_sym_extern] = ACTIONS(1589), - [anon_sym_module] = ACTIONS(1589), - [anon_sym_use] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1591), - [anon_sym_DOLLAR] = ACTIONS(1591), - [anon_sym_error] = ACTIONS(1589), - [anon_sym_list] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_loop] = ACTIONS(1589), - [anon_sym_make] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_else] = ACTIONS(1589), - [anon_sym_match] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_try] = ACTIONS(1589), - [anon_sym_catch] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_source] = ACTIONS(1589), - [anon_sym_source_DASHenv] = ACTIONS(1589), - [anon_sym_register] = ACTIONS(1589), - [anon_sym_hide] = ACTIONS(1589), - [anon_sym_hide_DASHenv] = ACTIONS(1589), - [anon_sym_overlay] = ACTIONS(1589), - [anon_sym_new] = ACTIONS(1589), - [anon_sym_as] = ACTIONS(1589), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1591), - [aux_sym__immediate_decimal_token2] = ACTIONS(2249), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1591), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token3] = ACTIONS(1591), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(1591), - [aux_sym__val_number_token2] = ACTIONS(1591), - [aux_sym__val_number_token3] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym__str_single_quotes] = ACTIONS(1591), - [sym__str_back_ticks] = ACTIONS(1591), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1591), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(2408), + [anon_sym_alias] = ACTIONS(2408), + [anon_sym_let] = ACTIONS(2408), + [anon_sym_let_DASHenv] = ACTIONS(2408), + [anon_sym_mut] = ACTIONS(2408), + [anon_sym_const] = ACTIONS(2408), + [aux_sym_cmd_identifier_token1] = ACTIONS(2408), + [aux_sym_cmd_identifier_token2] = ACTIONS(2408), + [aux_sym_cmd_identifier_token3] = ACTIONS(2408), + [aux_sym_cmd_identifier_token4] = ACTIONS(2408), + [aux_sym_cmd_identifier_token5] = ACTIONS(2408), + [aux_sym_cmd_identifier_token6] = ACTIONS(2408), + [aux_sym_cmd_identifier_token7] = ACTIONS(2408), + [aux_sym_cmd_identifier_token8] = ACTIONS(2408), + [aux_sym_cmd_identifier_token9] = ACTIONS(2408), + [aux_sym_cmd_identifier_token10] = ACTIONS(2408), + [aux_sym_cmd_identifier_token11] = ACTIONS(2408), + [aux_sym_cmd_identifier_token12] = ACTIONS(2408), + [aux_sym_cmd_identifier_token13] = ACTIONS(2408), + [aux_sym_cmd_identifier_token14] = ACTIONS(2408), + [aux_sym_cmd_identifier_token15] = ACTIONS(2408), + [aux_sym_cmd_identifier_token16] = ACTIONS(2408), + [aux_sym_cmd_identifier_token17] = ACTIONS(2408), + [aux_sym_cmd_identifier_token18] = ACTIONS(2408), + [aux_sym_cmd_identifier_token19] = ACTIONS(2408), + [aux_sym_cmd_identifier_token20] = ACTIONS(2408), + [aux_sym_cmd_identifier_token21] = ACTIONS(2408), + [aux_sym_cmd_identifier_token22] = ACTIONS(2408), + [aux_sym_cmd_identifier_token23] = ACTIONS(2408), + [aux_sym_cmd_identifier_token24] = ACTIONS(2408), + [aux_sym_cmd_identifier_token25] = ACTIONS(2408), + [aux_sym_cmd_identifier_token26] = ACTIONS(2408), + [aux_sym_cmd_identifier_token27] = ACTIONS(2408), + [aux_sym_cmd_identifier_token28] = ACTIONS(2408), + [aux_sym_cmd_identifier_token29] = ACTIONS(2408), + [aux_sym_cmd_identifier_token30] = ACTIONS(2408), + [aux_sym_cmd_identifier_token31] = ACTIONS(2408), + [aux_sym_cmd_identifier_token32] = ACTIONS(2408), + [aux_sym_cmd_identifier_token33] = ACTIONS(2408), + [aux_sym_cmd_identifier_token34] = ACTIONS(2408), + [aux_sym_cmd_identifier_token35] = ACTIONS(2408), + [aux_sym_cmd_identifier_token36] = ACTIONS(2408), + [anon_sym_true] = ACTIONS(2408), + [anon_sym_false] = ACTIONS(2408), + [anon_sym_null] = ACTIONS(2408), + [aux_sym_cmd_identifier_token38] = ACTIONS(2408), + [aux_sym_cmd_identifier_token39] = ACTIONS(2408), + [aux_sym_cmd_identifier_token40] = ACTIONS(2408), + [anon_sym_def] = ACTIONS(2408), + [anon_sym_export_DASHenv] = ACTIONS(2408), + [anon_sym_extern] = ACTIONS(2408), + [anon_sym_module] = ACTIONS(2408), + [anon_sym_use] = ACTIONS(2408), + [anon_sym_LPAREN] = ACTIONS(2408), + [anon_sym_DOLLAR] = ACTIONS(2408), + [anon_sym_error] = ACTIONS(2408), + [anon_sym_list] = ACTIONS(2408), + [anon_sym_DASH] = ACTIONS(2408), + [anon_sym_break] = ACTIONS(2408), + [anon_sym_continue] = ACTIONS(2408), + [anon_sym_for] = ACTIONS(2408), + [anon_sym_in] = ACTIONS(2408), + [anon_sym_loop] = ACTIONS(2408), + [anon_sym_make] = ACTIONS(2408), + [anon_sym_while] = ACTIONS(2408), + [anon_sym_do] = ACTIONS(2408), + [anon_sym_if] = ACTIONS(2408), + [anon_sym_else] = ACTIONS(2408), + [anon_sym_match] = ACTIONS(2408), + [anon_sym_RBRACE] = ACTIONS(2408), + [anon_sym_try] = ACTIONS(2408), + [anon_sym_catch] = ACTIONS(2408), + [anon_sym_return] = ACTIONS(2408), + [anon_sym_source] = ACTIONS(2408), + [anon_sym_source_DASHenv] = ACTIONS(2408), + [anon_sym_register] = ACTIONS(2408), + [anon_sym_hide] = ACTIONS(2408), + [anon_sym_hide_DASHenv] = ACTIONS(2408), + [anon_sym_overlay] = ACTIONS(2408), + [anon_sym_new] = ACTIONS(2408), + [anon_sym_as] = ACTIONS(2408), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2408), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2408), + [aux_sym__val_number_decimal_token1] = ACTIONS(2408), + [aux_sym__val_number_decimal_token2] = ACTIONS(2408), + [aux_sym__val_number_decimal_token3] = ACTIONS(2408), + [aux_sym__val_number_decimal_token4] = ACTIONS(2408), + [aux_sym__val_number_token1] = ACTIONS(2408), + [aux_sym__val_number_token2] = ACTIONS(2408), + [aux_sym__val_number_token3] = ACTIONS(2408), + [anon_sym_DQUOTE] = ACTIONS(2408), + [sym__str_single_quotes] = ACTIONS(2408), + [sym__str_back_ticks] = ACTIONS(2408), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2408), + [sym__entry_separator] = ACTIONS(2410), + [anon_sym_PLUS] = ACTIONS(2408), + [anon_sym_POUND] = ACTIONS(3), }, [531] = { [sym_comment] = STATE(531), - [anon_sym_export] = ACTIONS(1648), - [anon_sym_alias] = ACTIONS(1648), - [anon_sym_let] = ACTIONS(1648), - [anon_sym_let_DASHenv] = ACTIONS(1648), - [anon_sym_mut] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1648), - [aux_sym_cmd_identifier_token1] = ACTIONS(1648), - [aux_sym_cmd_identifier_token2] = ACTIONS(1648), - [aux_sym_cmd_identifier_token3] = ACTIONS(1648), - [aux_sym_cmd_identifier_token4] = ACTIONS(1648), - [aux_sym_cmd_identifier_token5] = ACTIONS(1648), - [aux_sym_cmd_identifier_token6] = ACTIONS(1648), - [aux_sym_cmd_identifier_token7] = ACTIONS(1648), - [aux_sym_cmd_identifier_token8] = ACTIONS(1648), - [aux_sym_cmd_identifier_token9] = ACTIONS(1648), - [aux_sym_cmd_identifier_token10] = ACTIONS(1648), - [aux_sym_cmd_identifier_token11] = ACTIONS(1648), - [aux_sym_cmd_identifier_token12] = ACTIONS(1648), - [aux_sym_cmd_identifier_token13] = ACTIONS(1648), - [aux_sym_cmd_identifier_token14] = ACTIONS(1648), - [aux_sym_cmd_identifier_token15] = ACTIONS(1648), - [aux_sym_cmd_identifier_token16] = ACTIONS(1648), - [aux_sym_cmd_identifier_token17] = ACTIONS(1648), - [aux_sym_cmd_identifier_token18] = ACTIONS(1648), - [aux_sym_cmd_identifier_token19] = ACTIONS(1648), - [aux_sym_cmd_identifier_token20] = ACTIONS(1648), - [aux_sym_cmd_identifier_token21] = ACTIONS(1648), - [aux_sym_cmd_identifier_token22] = ACTIONS(1648), - [aux_sym_cmd_identifier_token23] = ACTIONS(1648), - [aux_sym_cmd_identifier_token24] = ACTIONS(1648), - [aux_sym_cmd_identifier_token25] = ACTIONS(1648), - [aux_sym_cmd_identifier_token26] = ACTIONS(1648), - [aux_sym_cmd_identifier_token27] = ACTIONS(1648), - [aux_sym_cmd_identifier_token28] = ACTIONS(1648), - [aux_sym_cmd_identifier_token29] = ACTIONS(1648), - [aux_sym_cmd_identifier_token30] = ACTIONS(1648), - [aux_sym_cmd_identifier_token31] = ACTIONS(1648), - [aux_sym_cmd_identifier_token32] = ACTIONS(1648), - [aux_sym_cmd_identifier_token33] = ACTIONS(1648), - [aux_sym_cmd_identifier_token34] = ACTIONS(1648), - [aux_sym_cmd_identifier_token35] = ACTIONS(1648), - [aux_sym_cmd_identifier_token36] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [anon_sym_null] = ACTIONS(1650), - [aux_sym_cmd_identifier_token38] = ACTIONS(1648), - [aux_sym_cmd_identifier_token39] = ACTIONS(1650), - [aux_sym_cmd_identifier_token40] = ACTIONS(1650), - [anon_sym_def] = ACTIONS(1648), - [anon_sym_export_DASHenv] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1648), - [anon_sym_module] = ACTIONS(1648), - [anon_sym_use] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1650), - [anon_sym_error] = ACTIONS(1648), - [anon_sym_list] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_in] = ACTIONS(1648), - [anon_sym_loop] = ACTIONS(1648), - [anon_sym_make] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_do] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1648), - [anon_sym_match] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_try] = ACTIONS(1648), - [anon_sym_catch] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_source] = ACTIONS(1648), - [anon_sym_source_DASHenv] = ACTIONS(1648), - [anon_sym_register] = ACTIONS(1648), - [anon_sym_hide] = ACTIONS(1648), - [anon_sym_hide_DASHenv] = ACTIONS(1648), - [anon_sym_overlay] = ACTIONS(1648), - [anon_sym_new] = ACTIONS(1648), - [anon_sym_as] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1650), - [aux_sym__immediate_decimal_token2] = ACTIONS(2330), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token3] = ACTIONS(1650), - [aux_sym__val_number_decimal_token4] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_alias] = ACTIONS(1890), + [anon_sym_let] = ACTIONS(1890), + [anon_sym_let_DASHenv] = ACTIONS(1890), + [anon_sym_mut] = ACTIONS(1890), + [anon_sym_const] = ACTIONS(1890), + [aux_sym_cmd_identifier_token1] = ACTIONS(1890), + [aux_sym_cmd_identifier_token2] = ACTIONS(1890), + [aux_sym_cmd_identifier_token3] = ACTIONS(1890), + [aux_sym_cmd_identifier_token4] = ACTIONS(1890), + [aux_sym_cmd_identifier_token5] = ACTIONS(1890), + [aux_sym_cmd_identifier_token6] = ACTIONS(1890), + [aux_sym_cmd_identifier_token7] = ACTIONS(1890), + [aux_sym_cmd_identifier_token8] = ACTIONS(1890), + [aux_sym_cmd_identifier_token9] = ACTIONS(1890), + [aux_sym_cmd_identifier_token10] = ACTIONS(1890), + [aux_sym_cmd_identifier_token11] = ACTIONS(1890), + [aux_sym_cmd_identifier_token12] = ACTIONS(1890), + [aux_sym_cmd_identifier_token13] = ACTIONS(1890), + [aux_sym_cmd_identifier_token14] = ACTIONS(1890), + [aux_sym_cmd_identifier_token15] = ACTIONS(1890), + [aux_sym_cmd_identifier_token16] = ACTIONS(1890), + [aux_sym_cmd_identifier_token17] = ACTIONS(1890), + [aux_sym_cmd_identifier_token18] = ACTIONS(1890), + [aux_sym_cmd_identifier_token19] = ACTIONS(1890), + [aux_sym_cmd_identifier_token20] = ACTIONS(1890), + [aux_sym_cmd_identifier_token21] = ACTIONS(1890), + [aux_sym_cmd_identifier_token22] = ACTIONS(1890), + [aux_sym_cmd_identifier_token23] = ACTIONS(1890), + [aux_sym_cmd_identifier_token24] = ACTIONS(1890), + [aux_sym_cmd_identifier_token25] = ACTIONS(1890), + [aux_sym_cmd_identifier_token26] = ACTIONS(1890), + [aux_sym_cmd_identifier_token27] = ACTIONS(1890), + [aux_sym_cmd_identifier_token28] = ACTIONS(1890), + [aux_sym_cmd_identifier_token29] = ACTIONS(1890), + [aux_sym_cmd_identifier_token30] = ACTIONS(1890), + [aux_sym_cmd_identifier_token31] = ACTIONS(1890), + [aux_sym_cmd_identifier_token32] = ACTIONS(1890), + [aux_sym_cmd_identifier_token33] = ACTIONS(1890), + [aux_sym_cmd_identifier_token34] = ACTIONS(1890), + [aux_sym_cmd_identifier_token35] = ACTIONS(1890), + [aux_sym_cmd_identifier_token36] = ACTIONS(1890), + [anon_sym_true] = ACTIONS(1890), + [anon_sym_false] = ACTIONS(1890), + [anon_sym_null] = ACTIONS(1890), + [aux_sym_cmd_identifier_token38] = ACTIONS(1890), + [aux_sym_cmd_identifier_token39] = ACTIONS(1890), + [aux_sym_cmd_identifier_token40] = ACTIONS(1890), + [anon_sym_def] = ACTIONS(1890), + [anon_sym_export_DASHenv] = ACTIONS(1890), + [anon_sym_extern] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_use] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_error] = ACTIONS(1890), + [anon_sym_list] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_in] = ACTIONS(1890), + [anon_sym_loop] = ACTIONS(1890), + [anon_sym_make] = ACTIONS(1890), + [anon_sym_while] = ACTIONS(1890), + [anon_sym_do] = ACTIONS(1890), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_else] = ACTIONS(1890), + [anon_sym_match] = ACTIONS(1890), + [anon_sym_RBRACE] = ACTIONS(1890), + [anon_sym_try] = ACTIONS(1890), + [anon_sym_catch] = ACTIONS(1890), + [anon_sym_return] = ACTIONS(1890), + [anon_sym_source] = ACTIONS(1890), + [anon_sym_source_DASHenv] = ACTIONS(1890), + [anon_sym_register] = ACTIONS(1890), + [anon_sym_hide] = ACTIONS(1890), + [anon_sym_hide_DASHenv] = ACTIONS(1890), + [anon_sym_overlay] = ACTIONS(1890), + [anon_sym_new] = ACTIONS(1890), + [anon_sym_as] = ACTIONS(1890), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1890), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1890), + [aux_sym__val_number_decimal_token1] = ACTIONS(1890), + [aux_sym__val_number_decimal_token2] = ACTIONS(1890), + [aux_sym__val_number_decimal_token3] = ACTIONS(1890), + [aux_sym__val_number_decimal_token4] = ACTIONS(1890), + [aux_sym__val_number_token1] = ACTIONS(1890), + [aux_sym__val_number_token2] = ACTIONS(1890), + [aux_sym__val_number_token3] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [sym__str_single_quotes] = ACTIONS(1890), + [sym__str_back_ticks] = ACTIONS(1890), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1890), + [sym__entry_separator] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(3), }, [532] = { [sym_comment] = STATE(532), - [anon_sym_export] = ACTIONS(994), - [anon_sym_alias] = ACTIONS(994), - [anon_sym_let] = ACTIONS(994), - [anon_sym_let_DASHenv] = ACTIONS(994), - [anon_sym_mut] = ACTIONS(994), - [anon_sym_const] = ACTIONS(994), - [aux_sym_cmd_identifier_token1] = ACTIONS(994), - [aux_sym_cmd_identifier_token2] = ACTIONS(994), - [aux_sym_cmd_identifier_token3] = ACTIONS(994), - [aux_sym_cmd_identifier_token4] = ACTIONS(994), - [aux_sym_cmd_identifier_token5] = ACTIONS(994), - [aux_sym_cmd_identifier_token6] = ACTIONS(994), - [aux_sym_cmd_identifier_token7] = ACTIONS(994), - [aux_sym_cmd_identifier_token8] = ACTIONS(994), - [aux_sym_cmd_identifier_token9] = ACTIONS(994), - [aux_sym_cmd_identifier_token10] = ACTIONS(994), - [aux_sym_cmd_identifier_token11] = ACTIONS(994), - [aux_sym_cmd_identifier_token12] = ACTIONS(994), - [aux_sym_cmd_identifier_token13] = ACTIONS(994), - [aux_sym_cmd_identifier_token14] = ACTIONS(994), - [aux_sym_cmd_identifier_token15] = ACTIONS(994), - [aux_sym_cmd_identifier_token16] = ACTIONS(994), - [aux_sym_cmd_identifier_token17] = ACTIONS(994), - [aux_sym_cmd_identifier_token18] = ACTIONS(994), - [aux_sym_cmd_identifier_token19] = ACTIONS(994), - [aux_sym_cmd_identifier_token20] = ACTIONS(994), - [aux_sym_cmd_identifier_token21] = ACTIONS(994), - [aux_sym_cmd_identifier_token22] = ACTIONS(994), - [aux_sym_cmd_identifier_token23] = ACTIONS(994), - [aux_sym_cmd_identifier_token24] = ACTIONS(994), - [aux_sym_cmd_identifier_token25] = ACTIONS(994), - [aux_sym_cmd_identifier_token26] = ACTIONS(994), - [aux_sym_cmd_identifier_token27] = ACTIONS(994), - [aux_sym_cmd_identifier_token28] = ACTIONS(994), - [aux_sym_cmd_identifier_token29] = ACTIONS(994), - [aux_sym_cmd_identifier_token30] = ACTIONS(994), - [aux_sym_cmd_identifier_token31] = ACTIONS(994), - [aux_sym_cmd_identifier_token32] = ACTIONS(994), - [aux_sym_cmd_identifier_token33] = ACTIONS(994), - [aux_sym_cmd_identifier_token34] = ACTIONS(994), - [aux_sym_cmd_identifier_token35] = ACTIONS(994), - [aux_sym_cmd_identifier_token36] = ACTIONS(994), - [anon_sym_true] = ACTIONS(996), - [anon_sym_false] = ACTIONS(996), - [anon_sym_null] = ACTIONS(996), - [aux_sym_cmd_identifier_token38] = ACTIONS(994), - [aux_sym_cmd_identifier_token39] = ACTIONS(996), - [aux_sym_cmd_identifier_token40] = ACTIONS(996), - [anon_sym_def] = ACTIONS(994), - [anon_sym_export_DASHenv] = ACTIONS(994), - [anon_sym_extern] = ACTIONS(994), - [anon_sym_module] = ACTIONS(994), - [anon_sym_use] = ACTIONS(994), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(996), - [anon_sym_error] = ACTIONS(994), - [anon_sym_list] = ACTIONS(994), - [anon_sym_DASH] = ACTIONS(994), - [anon_sym_break] = ACTIONS(994), - [anon_sym_continue] = ACTIONS(994), - [anon_sym_for] = ACTIONS(994), - [anon_sym_in] = ACTIONS(994), - [anon_sym_loop] = ACTIONS(994), - [anon_sym_make] = ACTIONS(994), - [anon_sym_while] = ACTIONS(994), - [anon_sym_do] = ACTIONS(994), - [anon_sym_if] = ACTIONS(994), - [anon_sym_else] = ACTIONS(994), - [anon_sym_match] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_try] = ACTIONS(994), - [anon_sym_catch] = ACTIONS(994), - [anon_sym_return] = ACTIONS(994), - [anon_sym_source] = ACTIONS(994), - [anon_sym_source_DASHenv] = ACTIONS(994), - [anon_sym_register] = ACTIONS(994), - [anon_sym_hide] = ACTIONS(994), - [anon_sym_hide_DASHenv] = ACTIONS(994), - [anon_sym_overlay] = ACTIONS(994), - [anon_sym_new] = ACTIONS(994), - [anon_sym_as] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(996), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(996), - [aux_sym__val_number_decimal_token1] = ACTIONS(994), - [aux_sym__val_number_decimal_token2] = ACTIONS(996), - [aux_sym__val_number_decimal_token3] = ACTIONS(996), - [aux_sym__val_number_decimal_token4] = ACTIONS(996), - [aux_sym__val_number_token1] = ACTIONS(996), - [aux_sym__val_number_token2] = ACTIONS(996), - [aux_sym__val_number_token3] = ACTIONS(996), - [anon_sym_DQUOTE] = ACTIONS(996), - [sym__str_single_quotes] = ACTIONS(996), - [sym__str_back_ticks] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(994), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(2412), + [anon_sym_alias] = ACTIONS(2412), + [anon_sym_let] = ACTIONS(2412), + [anon_sym_let_DASHenv] = ACTIONS(2412), + [anon_sym_mut] = ACTIONS(2412), + [anon_sym_const] = ACTIONS(2412), + [aux_sym_cmd_identifier_token1] = ACTIONS(2412), + [aux_sym_cmd_identifier_token2] = ACTIONS(2412), + [aux_sym_cmd_identifier_token3] = ACTIONS(2412), + [aux_sym_cmd_identifier_token4] = ACTIONS(2412), + [aux_sym_cmd_identifier_token5] = ACTIONS(2412), + [aux_sym_cmd_identifier_token6] = ACTIONS(2412), + [aux_sym_cmd_identifier_token7] = ACTIONS(2412), + [aux_sym_cmd_identifier_token8] = ACTIONS(2412), + [aux_sym_cmd_identifier_token9] = ACTIONS(2412), + [aux_sym_cmd_identifier_token10] = ACTIONS(2412), + [aux_sym_cmd_identifier_token11] = ACTIONS(2412), + [aux_sym_cmd_identifier_token12] = ACTIONS(2412), + [aux_sym_cmd_identifier_token13] = ACTIONS(2412), + [aux_sym_cmd_identifier_token14] = ACTIONS(2412), + [aux_sym_cmd_identifier_token15] = ACTIONS(2412), + [aux_sym_cmd_identifier_token16] = ACTIONS(2412), + [aux_sym_cmd_identifier_token17] = ACTIONS(2412), + [aux_sym_cmd_identifier_token18] = ACTIONS(2412), + [aux_sym_cmd_identifier_token19] = ACTIONS(2412), + [aux_sym_cmd_identifier_token20] = ACTIONS(2412), + [aux_sym_cmd_identifier_token21] = ACTIONS(2412), + [aux_sym_cmd_identifier_token22] = ACTIONS(2412), + [aux_sym_cmd_identifier_token23] = ACTIONS(2412), + [aux_sym_cmd_identifier_token24] = ACTIONS(2412), + [aux_sym_cmd_identifier_token25] = ACTIONS(2412), + [aux_sym_cmd_identifier_token26] = ACTIONS(2412), + [aux_sym_cmd_identifier_token27] = ACTIONS(2412), + [aux_sym_cmd_identifier_token28] = ACTIONS(2412), + [aux_sym_cmd_identifier_token29] = ACTIONS(2412), + [aux_sym_cmd_identifier_token30] = ACTIONS(2412), + [aux_sym_cmd_identifier_token31] = ACTIONS(2412), + [aux_sym_cmd_identifier_token32] = ACTIONS(2412), + [aux_sym_cmd_identifier_token33] = ACTIONS(2412), + [aux_sym_cmd_identifier_token34] = ACTIONS(2412), + [aux_sym_cmd_identifier_token35] = ACTIONS(2412), + [aux_sym_cmd_identifier_token36] = ACTIONS(2412), + [anon_sym_true] = ACTIONS(2412), + [anon_sym_false] = ACTIONS(2412), + [anon_sym_null] = ACTIONS(2412), + [aux_sym_cmd_identifier_token38] = ACTIONS(2412), + [aux_sym_cmd_identifier_token39] = ACTIONS(2412), + [aux_sym_cmd_identifier_token40] = ACTIONS(2412), + [anon_sym_def] = ACTIONS(2412), + [anon_sym_export_DASHenv] = ACTIONS(2412), + [anon_sym_extern] = ACTIONS(2412), + [anon_sym_module] = ACTIONS(2412), + [anon_sym_use] = ACTIONS(2412), + [anon_sym_LPAREN] = ACTIONS(2412), + [anon_sym_DOLLAR] = ACTIONS(2412), + [anon_sym_error] = ACTIONS(2412), + [anon_sym_list] = ACTIONS(2412), + [anon_sym_DASH] = ACTIONS(2412), + [anon_sym_break] = ACTIONS(2412), + [anon_sym_continue] = ACTIONS(2412), + [anon_sym_for] = ACTIONS(2412), + [anon_sym_in] = ACTIONS(2412), + [anon_sym_loop] = ACTIONS(2412), + [anon_sym_make] = ACTIONS(2412), + [anon_sym_while] = ACTIONS(2412), + [anon_sym_do] = ACTIONS(2412), + [anon_sym_if] = ACTIONS(2412), + [anon_sym_else] = ACTIONS(2412), + [anon_sym_match] = ACTIONS(2412), + [anon_sym_RBRACE] = ACTIONS(2412), + [anon_sym_try] = ACTIONS(2412), + [anon_sym_catch] = ACTIONS(2412), + [anon_sym_return] = ACTIONS(2412), + [anon_sym_source] = ACTIONS(2412), + [anon_sym_source_DASHenv] = ACTIONS(2412), + [anon_sym_register] = ACTIONS(2412), + [anon_sym_hide] = ACTIONS(2412), + [anon_sym_hide_DASHenv] = ACTIONS(2412), + [anon_sym_overlay] = ACTIONS(2412), + [anon_sym_new] = ACTIONS(2412), + [anon_sym_as] = ACTIONS(2412), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2412), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2412), + [aux_sym__val_number_decimal_token1] = ACTIONS(2412), + [aux_sym__val_number_decimal_token2] = ACTIONS(2412), + [aux_sym__val_number_decimal_token3] = ACTIONS(2412), + [aux_sym__val_number_decimal_token4] = ACTIONS(2412), + [aux_sym__val_number_token1] = ACTIONS(2412), + [aux_sym__val_number_token2] = ACTIONS(2412), + [aux_sym__val_number_token3] = ACTIONS(2412), + [anon_sym_DQUOTE] = ACTIONS(2412), + [sym__str_single_quotes] = ACTIONS(2412), + [sym__str_back_ticks] = ACTIONS(2412), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2412), + [sym__entry_separator] = ACTIONS(2414), + [anon_sym_PLUS] = ACTIONS(2412), + [anon_sym_POUND] = ACTIONS(3), }, [533] = { [sym_comment] = STATE(533), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_alias] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_let_DASHenv] = ACTIONS(2332), - [anon_sym_mut] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [aux_sym_cmd_identifier_token1] = ACTIONS(2332), - [aux_sym_cmd_identifier_token2] = ACTIONS(2332), - [aux_sym_cmd_identifier_token3] = ACTIONS(2332), - [aux_sym_cmd_identifier_token4] = ACTIONS(2332), - [aux_sym_cmd_identifier_token5] = ACTIONS(2332), - [aux_sym_cmd_identifier_token6] = ACTIONS(2332), - [aux_sym_cmd_identifier_token7] = ACTIONS(2332), - [aux_sym_cmd_identifier_token8] = ACTIONS(2332), - [aux_sym_cmd_identifier_token9] = ACTIONS(2332), - [aux_sym_cmd_identifier_token10] = ACTIONS(2332), - [aux_sym_cmd_identifier_token11] = ACTIONS(2332), - [aux_sym_cmd_identifier_token12] = ACTIONS(2332), - [aux_sym_cmd_identifier_token13] = ACTIONS(2332), - [aux_sym_cmd_identifier_token14] = ACTIONS(2332), - [aux_sym_cmd_identifier_token15] = ACTIONS(2332), - [aux_sym_cmd_identifier_token16] = ACTIONS(2332), - [aux_sym_cmd_identifier_token17] = ACTIONS(2332), - [aux_sym_cmd_identifier_token18] = ACTIONS(2332), - [aux_sym_cmd_identifier_token19] = ACTIONS(2332), - [aux_sym_cmd_identifier_token20] = ACTIONS(2332), - [aux_sym_cmd_identifier_token21] = ACTIONS(2332), - [aux_sym_cmd_identifier_token22] = ACTIONS(2332), - [aux_sym_cmd_identifier_token23] = ACTIONS(2332), - [aux_sym_cmd_identifier_token24] = ACTIONS(2332), - [aux_sym_cmd_identifier_token25] = ACTIONS(2332), - [aux_sym_cmd_identifier_token26] = ACTIONS(2332), - [aux_sym_cmd_identifier_token27] = ACTIONS(2332), - [aux_sym_cmd_identifier_token28] = ACTIONS(2332), - [aux_sym_cmd_identifier_token29] = ACTIONS(2332), - [aux_sym_cmd_identifier_token30] = ACTIONS(2332), - [aux_sym_cmd_identifier_token31] = ACTIONS(2332), - [aux_sym_cmd_identifier_token32] = ACTIONS(2332), - [aux_sym_cmd_identifier_token33] = ACTIONS(2332), - [aux_sym_cmd_identifier_token34] = ACTIONS(2332), - [aux_sym_cmd_identifier_token35] = ACTIONS(2332), - [aux_sym_cmd_identifier_token36] = ACTIONS(2332), - [anon_sym_true] = ACTIONS(2332), - [anon_sym_false] = ACTIONS(2332), - [anon_sym_null] = ACTIONS(2332), - [aux_sym_cmd_identifier_token38] = ACTIONS(2332), - [aux_sym_cmd_identifier_token39] = ACTIONS(2332), - [aux_sym_cmd_identifier_token40] = ACTIONS(2332), - [anon_sym_def] = ACTIONS(2332), - [anon_sym_export_DASHenv] = ACTIONS(2332), - [anon_sym_extern] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_use] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_DOLLAR] = ACTIONS(2332), - [anon_sym_error] = ACTIONS(2332), - [anon_sym_list] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_in] = ACTIONS(2332), - [anon_sym_loop] = ACTIONS(2332), - [anon_sym_make] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_else] = ACTIONS(2332), - [anon_sym_match] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_catch] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_source] = ACTIONS(2332), - [anon_sym_source_DASHenv] = ACTIONS(2332), - [anon_sym_register] = ACTIONS(2332), - [anon_sym_hide] = ACTIONS(2332), - [anon_sym_hide_DASHenv] = ACTIONS(2332), - [anon_sym_overlay] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_as] = ACTIONS(2332), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2332), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2332), - [aux_sym__val_number_decimal_token1] = ACTIONS(2332), - [aux_sym__val_number_decimal_token2] = ACTIONS(2332), - [aux_sym__val_number_decimal_token3] = ACTIONS(2332), - [aux_sym__val_number_decimal_token4] = ACTIONS(2332), - [aux_sym__val_number_token1] = ACTIONS(2332), - [aux_sym__val_number_token2] = ACTIONS(2332), - [aux_sym__val_number_token3] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [sym__str_single_quotes] = ACTIONS(2332), - [sym__str_back_ticks] = ACTIONS(2332), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2332), - [sym__entry_separator] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_export] = ACTIONS(2416), + [anon_sym_alias] = ACTIONS(2416), + [anon_sym_let] = ACTIONS(2416), + [anon_sym_let_DASHenv] = ACTIONS(2416), + [anon_sym_mut] = ACTIONS(2416), + [anon_sym_const] = ACTIONS(2416), + [aux_sym_cmd_identifier_token1] = ACTIONS(2416), + [aux_sym_cmd_identifier_token2] = ACTIONS(2416), + [aux_sym_cmd_identifier_token3] = ACTIONS(2416), + [aux_sym_cmd_identifier_token4] = ACTIONS(2416), + [aux_sym_cmd_identifier_token5] = ACTIONS(2416), + [aux_sym_cmd_identifier_token6] = ACTIONS(2416), + [aux_sym_cmd_identifier_token7] = ACTIONS(2416), + [aux_sym_cmd_identifier_token8] = ACTIONS(2416), + [aux_sym_cmd_identifier_token9] = ACTIONS(2416), + [aux_sym_cmd_identifier_token10] = ACTIONS(2416), + [aux_sym_cmd_identifier_token11] = ACTIONS(2416), + [aux_sym_cmd_identifier_token12] = ACTIONS(2416), + [aux_sym_cmd_identifier_token13] = ACTIONS(2416), + [aux_sym_cmd_identifier_token14] = ACTIONS(2416), + [aux_sym_cmd_identifier_token15] = ACTIONS(2416), + [aux_sym_cmd_identifier_token16] = ACTIONS(2416), + [aux_sym_cmd_identifier_token17] = ACTIONS(2416), + [aux_sym_cmd_identifier_token18] = ACTIONS(2416), + [aux_sym_cmd_identifier_token19] = ACTIONS(2416), + [aux_sym_cmd_identifier_token20] = ACTIONS(2416), + [aux_sym_cmd_identifier_token21] = ACTIONS(2416), + [aux_sym_cmd_identifier_token22] = ACTIONS(2416), + [aux_sym_cmd_identifier_token23] = ACTIONS(2416), + [aux_sym_cmd_identifier_token24] = ACTIONS(2416), + [aux_sym_cmd_identifier_token25] = ACTIONS(2416), + [aux_sym_cmd_identifier_token26] = ACTIONS(2416), + [aux_sym_cmd_identifier_token27] = ACTIONS(2416), + [aux_sym_cmd_identifier_token28] = ACTIONS(2416), + [aux_sym_cmd_identifier_token29] = ACTIONS(2416), + [aux_sym_cmd_identifier_token30] = ACTIONS(2416), + [aux_sym_cmd_identifier_token31] = ACTIONS(2416), + [aux_sym_cmd_identifier_token32] = ACTIONS(2416), + [aux_sym_cmd_identifier_token33] = ACTIONS(2416), + [aux_sym_cmd_identifier_token34] = ACTIONS(2416), + [aux_sym_cmd_identifier_token35] = ACTIONS(2416), + [aux_sym_cmd_identifier_token36] = ACTIONS(2416), + [anon_sym_true] = ACTIONS(2416), + [anon_sym_false] = ACTIONS(2416), + [anon_sym_null] = ACTIONS(2416), + [aux_sym_cmd_identifier_token38] = ACTIONS(2416), + [aux_sym_cmd_identifier_token39] = ACTIONS(2416), + [aux_sym_cmd_identifier_token40] = ACTIONS(2416), + [anon_sym_def] = ACTIONS(2416), + [anon_sym_export_DASHenv] = ACTIONS(2416), + [anon_sym_extern] = ACTIONS(2416), + [anon_sym_module] = ACTIONS(2416), + [anon_sym_use] = ACTIONS(2416), + [anon_sym_LPAREN] = ACTIONS(2416), + [anon_sym_DOLLAR] = ACTIONS(2416), + [anon_sym_error] = ACTIONS(2416), + [anon_sym_list] = ACTIONS(2416), + [anon_sym_DASH] = ACTIONS(2416), + [anon_sym_break] = ACTIONS(2416), + [anon_sym_continue] = ACTIONS(2416), + [anon_sym_for] = ACTIONS(2416), + [anon_sym_in] = ACTIONS(2416), + [anon_sym_loop] = ACTIONS(2416), + [anon_sym_make] = ACTIONS(2416), + [anon_sym_while] = ACTIONS(2416), + [anon_sym_do] = ACTIONS(2416), + [anon_sym_if] = ACTIONS(2416), + [anon_sym_else] = ACTIONS(2416), + [anon_sym_match] = ACTIONS(2416), + [anon_sym_RBRACE] = ACTIONS(2416), + [anon_sym_try] = ACTIONS(2416), + [anon_sym_catch] = ACTIONS(2416), + [anon_sym_return] = ACTIONS(2416), + [anon_sym_source] = ACTIONS(2416), + [anon_sym_source_DASHenv] = ACTIONS(2416), + [anon_sym_register] = ACTIONS(2416), + [anon_sym_hide] = ACTIONS(2416), + [anon_sym_hide_DASHenv] = ACTIONS(2416), + [anon_sym_overlay] = ACTIONS(2416), + [anon_sym_new] = ACTIONS(2416), + [anon_sym_as] = ACTIONS(2416), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2416), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2416), + [aux_sym__val_number_decimal_token1] = ACTIONS(2416), + [aux_sym__val_number_decimal_token2] = ACTIONS(2416), + [aux_sym__val_number_decimal_token3] = ACTIONS(2416), + [aux_sym__val_number_decimal_token4] = ACTIONS(2416), + [aux_sym__val_number_token1] = ACTIONS(2416), + [aux_sym__val_number_token2] = ACTIONS(2416), + [aux_sym__val_number_token3] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym__str_single_quotes] = ACTIONS(2416), + [sym__str_back_ticks] = ACTIONS(2416), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2416), + [sym__entry_separator] = ACTIONS(2418), + [anon_sym_PLUS] = ACTIONS(2416), [anon_sym_POUND] = ACTIONS(3), }, [534] = { [sym_comment] = STATE(534), - [anon_sym_export] = ACTIONS(2336), - [anon_sym_alias] = ACTIONS(2336), - [anon_sym_let] = ACTIONS(2336), - [anon_sym_let_DASHenv] = ACTIONS(2336), - [anon_sym_mut] = ACTIONS(2336), - [anon_sym_const] = ACTIONS(2336), - [aux_sym_cmd_identifier_token1] = ACTIONS(2336), - [aux_sym_cmd_identifier_token2] = ACTIONS(2336), - [aux_sym_cmd_identifier_token3] = ACTIONS(2336), - [aux_sym_cmd_identifier_token4] = ACTIONS(2336), - [aux_sym_cmd_identifier_token5] = ACTIONS(2336), - [aux_sym_cmd_identifier_token6] = ACTIONS(2336), - [aux_sym_cmd_identifier_token7] = ACTIONS(2336), - [aux_sym_cmd_identifier_token8] = ACTIONS(2336), - [aux_sym_cmd_identifier_token9] = ACTIONS(2336), - [aux_sym_cmd_identifier_token10] = ACTIONS(2336), - [aux_sym_cmd_identifier_token11] = ACTIONS(2336), - [aux_sym_cmd_identifier_token12] = ACTIONS(2336), - [aux_sym_cmd_identifier_token13] = ACTIONS(2336), - [aux_sym_cmd_identifier_token14] = ACTIONS(2336), - [aux_sym_cmd_identifier_token15] = ACTIONS(2336), - [aux_sym_cmd_identifier_token16] = ACTIONS(2336), - [aux_sym_cmd_identifier_token17] = ACTIONS(2336), - [aux_sym_cmd_identifier_token18] = ACTIONS(2336), - [aux_sym_cmd_identifier_token19] = ACTIONS(2336), - [aux_sym_cmd_identifier_token20] = ACTIONS(2336), - [aux_sym_cmd_identifier_token21] = ACTIONS(2336), - [aux_sym_cmd_identifier_token22] = ACTIONS(2336), - [aux_sym_cmd_identifier_token23] = ACTIONS(2336), - [aux_sym_cmd_identifier_token24] = ACTIONS(2336), - [aux_sym_cmd_identifier_token25] = ACTIONS(2336), - [aux_sym_cmd_identifier_token26] = ACTIONS(2336), - [aux_sym_cmd_identifier_token27] = ACTIONS(2336), - [aux_sym_cmd_identifier_token28] = ACTIONS(2336), - [aux_sym_cmd_identifier_token29] = ACTIONS(2336), - [aux_sym_cmd_identifier_token30] = ACTIONS(2336), - [aux_sym_cmd_identifier_token31] = ACTIONS(2336), - [aux_sym_cmd_identifier_token32] = ACTIONS(2336), - [aux_sym_cmd_identifier_token33] = ACTIONS(2336), - [aux_sym_cmd_identifier_token34] = ACTIONS(2336), - [aux_sym_cmd_identifier_token35] = ACTIONS(2336), - [aux_sym_cmd_identifier_token36] = ACTIONS(2336), - [anon_sym_true] = ACTIONS(2336), - [anon_sym_false] = ACTIONS(2336), - [anon_sym_null] = ACTIONS(2336), - [aux_sym_cmd_identifier_token38] = ACTIONS(2336), - [aux_sym_cmd_identifier_token39] = ACTIONS(2336), - [aux_sym_cmd_identifier_token40] = ACTIONS(2336), - [anon_sym_def] = ACTIONS(2336), - [anon_sym_export_DASHenv] = ACTIONS(2336), - [anon_sym_extern] = ACTIONS(2336), - [anon_sym_module] = ACTIONS(2336), - [anon_sym_use] = ACTIONS(2336), - [anon_sym_LPAREN] = ACTIONS(2336), - [anon_sym_DOLLAR] = ACTIONS(2336), - [anon_sym_error] = ACTIONS(2336), - [anon_sym_list] = ACTIONS(2336), - [anon_sym_DASH] = ACTIONS(2336), - [anon_sym_break] = ACTIONS(2336), - [anon_sym_continue] = ACTIONS(2336), - [anon_sym_for] = ACTIONS(2336), - [anon_sym_in] = ACTIONS(2336), - [anon_sym_loop] = ACTIONS(2336), - [anon_sym_make] = ACTIONS(2336), - [anon_sym_while] = ACTIONS(2336), - [anon_sym_do] = ACTIONS(2336), - [anon_sym_if] = ACTIONS(2336), - [anon_sym_else] = ACTIONS(2336), - [anon_sym_match] = ACTIONS(2336), - [anon_sym_RBRACE] = ACTIONS(2336), - [anon_sym_try] = ACTIONS(2336), - [anon_sym_catch] = ACTIONS(2336), - [anon_sym_return] = ACTIONS(2336), - [anon_sym_source] = ACTIONS(2336), - [anon_sym_source_DASHenv] = ACTIONS(2336), - [anon_sym_register] = ACTIONS(2336), - [anon_sym_hide] = ACTIONS(2336), - [anon_sym_hide_DASHenv] = ACTIONS(2336), - [anon_sym_overlay] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2336), - [anon_sym_as] = ACTIONS(2336), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2336), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2336), - [aux_sym__val_number_decimal_token1] = ACTIONS(2336), - [aux_sym__val_number_decimal_token2] = ACTIONS(2336), - [aux_sym__val_number_decimal_token3] = ACTIONS(2336), - [aux_sym__val_number_decimal_token4] = ACTIONS(2336), - [aux_sym__val_number_token1] = ACTIONS(2336), - [aux_sym__val_number_token2] = ACTIONS(2336), - [aux_sym__val_number_token3] = ACTIONS(2336), - [anon_sym_DQUOTE] = ACTIONS(2336), - [sym__str_single_quotes] = ACTIONS(2336), - [sym__str_back_ticks] = ACTIONS(2336), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2336), - [sym__entry_separator] = ACTIONS(2338), - [anon_sym_PLUS] = ACTIONS(2336), + [anon_sym_export] = ACTIONS(1894), + [anon_sym_alias] = ACTIONS(1894), + [anon_sym_let] = ACTIONS(1894), + [anon_sym_let_DASHenv] = ACTIONS(1894), + [anon_sym_mut] = ACTIONS(1894), + [anon_sym_const] = ACTIONS(1894), + [aux_sym_cmd_identifier_token1] = ACTIONS(1894), + [aux_sym_cmd_identifier_token2] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1894), + [aux_sym_cmd_identifier_token4] = ACTIONS(1894), + [aux_sym_cmd_identifier_token5] = ACTIONS(1894), + [aux_sym_cmd_identifier_token6] = ACTIONS(1894), + [aux_sym_cmd_identifier_token7] = ACTIONS(1894), + [aux_sym_cmd_identifier_token8] = ACTIONS(1894), + [aux_sym_cmd_identifier_token9] = ACTIONS(1894), + [aux_sym_cmd_identifier_token10] = ACTIONS(1894), + [aux_sym_cmd_identifier_token11] = ACTIONS(1894), + [aux_sym_cmd_identifier_token12] = ACTIONS(1894), + [aux_sym_cmd_identifier_token13] = ACTIONS(1894), + [aux_sym_cmd_identifier_token14] = ACTIONS(1894), + [aux_sym_cmd_identifier_token15] = ACTIONS(1894), + [aux_sym_cmd_identifier_token16] = ACTIONS(1894), + [aux_sym_cmd_identifier_token17] = ACTIONS(1894), + [aux_sym_cmd_identifier_token18] = ACTIONS(1894), + [aux_sym_cmd_identifier_token19] = ACTIONS(1894), + [aux_sym_cmd_identifier_token20] = ACTIONS(1894), + [aux_sym_cmd_identifier_token21] = ACTIONS(1894), + [aux_sym_cmd_identifier_token22] = ACTIONS(1894), + [aux_sym_cmd_identifier_token23] = ACTIONS(1894), + [aux_sym_cmd_identifier_token24] = ACTIONS(1894), + [aux_sym_cmd_identifier_token25] = ACTIONS(1894), + [aux_sym_cmd_identifier_token26] = ACTIONS(1894), + [aux_sym_cmd_identifier_token27] = ACTIONS(1894), + [aux_sym_cmd_identifier_token28] = ACTIONS(1894), + [aux_sym_cmd_identifier_token29] = ACTIONS(1894), + [aux_sym_cmd_identifier_token30] = ACTIONS(1894), + [aux_sym_cmd_identifier_token31] = ACTIONS(1894), + [aux_sym_cmd_identifier_token32] = ACTIONS(1894), + [aux_sym_cmd_identifier_token33] = ACTIONS(1894), + [aux_sym_cmd_identifier_token34] = ACTIONS(1894), + [aux_sym_cmd_identifier_token35] = ACTIONS(1894), + [aux_sym_cmd_identifier_token36] = ACTIONS(1894), + [anon_sym_true] = ACTIONS(1894), + [anon_sym_false] = ACTIONS(1894), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token38] = ACTIONS(1894), + [aux_sym_cmd_identifier_token39] = ACTIONS(1894), + [aux_sym_cmd_identifier_token40] = ACTIONS(1894), + [anon_sym_def] = ACTIONS(1894), + [anon_sym_export_DASHenv] = ACTIONS(1894), + [anon_sym_extern] = ACTIONS(1894), + [anon_sym_module] = ACTIONS(1894), + [anon_sym_use] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1894), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_error] = ACTIONS(1894), + [anon_sym_list] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_break] = ACTIONS(1894), + [anon_sym_continue] = ACTIONS(1894), + [anon_sym_for] = ACTIONS(1894), + [anon_sym_in] = ACTIONS(1894), + [anon_sym_loop] = ACTIONS(1894), + [anon_sym_make] = ACTIONS(1894), + [anon_sym_while] = ACTIONS(1894), + [anon_sym_do] = ACTIONS(1894), + [anon_sym_if] = ACTIONS(1894), + [anon_sym_else] = ACTIONS(1894), + [anon_sym_match] = ACTIONS(1894), + [anon_sym_RBRACE] = ACTIONS(1894), + [anon_sym_try] = ACTIONS(1894), + [anon_sym_catch] = ACTIONS(1894), + [anon_sym_return] = ACTIONS(1894), + [anon_sym_source] = ACTIONS(1894), + [anon_sym_source_DASHenv] = ACTIONS(1894), + [anon_sym_register] = ACTIONS(1894), + [anon_sym_hide] = ACTIONS(1894), + [anon_sym_hide_DASHenv] = ACTIONS(1894), + [anon_sym_overlay] = ACTIONS(1894), + [anon_sym_new] = ACTIONS(1894), + [anon_sym_as] = ACTIONS(1894), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1894), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1894), + [aux_sym__val_number_decimal_token1] = ACTIONS(1894), + [aux_sym__val_number_decimal_token2] = ACTIONS(1894), + [aux_sym__val_number_decimal_token3] = ACTIONS(1894), + [aux_sym__val_number_decimal_token4] = ACTIONS(1894), + [aux_sym__val_number_token1] = ACTIONS(1894), + [aux_sym__val_number_token2] = ACTIONS(1894), + [aux_sym__val_number_token3] = ACTIONS(1894), + [anon_sym_DQUOTE] = ACTIONS(1894), + [sym__str_single_quotes] = ACTIONS(1894), + [sym__str_back_ticks] = ACTIONS(1894), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1894), + [sym__entry_separator] = ACTIONS(1896), + [anon_sym_PLUS] = ACTIONS(1894), [anon_sym_POUND] = ACTIONS(3), }, [535] = { [sym_comment] = STATE(535), - [anon_sym_export] = ACTIONS(2340), - [anon_sym_alias] = ACTIONS(2340), - [anon_sym_let] = ACTIONS(2340), - [anon_sym_let_DASHenv] = ACTIONS(2340), - [anon_sym_mut] = ACTIONS(2340), - [anon_sym_const] = ACTIONS(2340), - [aux_sym_cmd_identifier_token1] = ACTIONS(2340), - [aux_sym_cmd_identifier_token2] = ACTIONS(2340), - [aux_sym_cmd_identifier_token3] = ACTIONS(2340), - [aux_sym_cmd_identifier_token4] = ACTIONS(2340), - [aux_sym_cmd_identifier_token5] = ACTIONS(2340), - [aux_sym_cmd_identifier_token6] = ACTIONS(2340), - [aux_sym_cmd_identifier_token7] = ACTIONS(2340), - [aux_sym_cmd_identifier_token8] = ACTIONS(2340), - [aux_sym_cmd_identifier_token9] = ACTIONS(2340), - [aux_sym_cmd_identifier_token10] = ACTIONS(2340), - [aux_sym_cmd_identifier_token11] = ACTIONS(2340), - [aux_sym_cmd_identifier_token12] = ACTIONS(2340), - [aux_sym_cmd_identifier_token13] = ACTIONS(2340), - [aux_sym_cmd_identifier_token14] = ACTIONS(2340), - [aux_sym_cmd_identifier_token15] = ACTIONS(2340), - [aux_sym_cmd_identifier_token16] = ACTIONS(2340), - [aux_sym_cmd_identifier_token17] = ACTIONS(2340), - [aux_sym_cmd_identifier_token18] = ACTIONS(2340), - [aux_sym_cmd_identifier_token19] = ACTIONS(2340), - [aux_sym_cmd_identifier_token20] = ACTIONS(2340), - [aux_sym_cmd_identifier_token21] = ACTIONS(2340), - [aux_sym_cmd_identifier_token22] = ACTIONS(2340), - [aux_sym_cmd_identifier_token23] = ACTIONS(2340), - [aux_sym_cmd_identifier_token24] = ACTIONS(2340), - [aux_sym_cmd_identifier_token25] = ACTIONS(2340), - [aux_sym_cmd_identifier_token26] = ACTIONS(2340), - [aux_sym_cmd_identifier_token27] = ACTIONS(2340), - [aux_sym_cmd_identifier_token28] = ACTIONS(2340), - [aux_sym_cmd_identifier_token29] = ACTIONS(2340), - [aux_sym_cmd_identifier_token30] = ACTIONS(2340), - [aux_sym_cmd_identifier_token31] = ACTIONS(2340), - [aux_sym_cmd_identifier_token32] = ACTIONS(2340), - [aux_sym_cmd_identifier_token33] = ACTIONS(2340), - [aux_sym_cmd_identifier_token34] = ACTIONS(2340), - [aux_sym_cmd_identifier_token35] = ACTIONS(2340), - [aux_sym_cmd_identifier_token36] = ACTIONS(2340), - [anon_sym_true] = ACTIONS(2340), - [anon_sym_false] = ACTIONS(2340), - [anon_sym_null] = ACTIONS(2340), - [aux_sym_cmd_identifier_token38] = ACTIONS(2340), - [aux_sym_cmd_identifier_token39] = ACTIONS(2340), - [aux_sym_cmd_identifier_token40] = ACTIONS(2340), - [anon_sym_def] = ACTIONS(2340), - [anon_sym_export_DASHenv] = ACTIONS(2340), - [anon_sym_extern] = ACTIONS(2340), - [anon_sym_module] = ACTIONS(2340), - [anon_sym_use] = ACTIONS(2340), - [anon_sym_LPAREN] = ACTIONS(2340), - [anon_sym_DOLLAR] = ACTIONS(2340), - [anon_sym_error] = ACTIONS(2340), - [anon_sym_list] = ACTIONS(2340), - [anon_sym_DASH] = ACTIONS(2340), - [anon_sym_break] = ACTIONS(2340), - [anon_sym_continue] = ACTIONS(2340), - [anon_sym_for] = ACTIONS(2340), - [anon_sym_in] = ACTIONS(2340), - [anon_sym_loop] = ACTIONS(2340), - [anon_sym_make] = ACTIONS(2340), - [anon_sym_while] = ACTIONS(2340), - [anon_sym_do] = ACTIONS(2340), - [anon_sym_if] = ACTIONS(2340), - [anon_sym_else] = ACTIONS(2340), - [anon_sym_match] = ACTIONS(2340), - [anon_sym_RBRACE] = ACTIONS(2340), - [anon_sym_try] = ACTIONS(2340), - [anon_sym_catch] = ACTIONS(2340), - [anon_sym_return] = ACTIONS(2340), - [anon_sym_source] = ACTIONS(2340), - [anon_sym_source_DASHenv] = ACTIONS(2340), - [anon_sym_register] = ACTIONS(2340), - [anon_sym_hide] = ACTIONS(2340), - [anon_sym_hide_DASHenv] = ACTIONS(2340), - [anon_sym_overlay] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(2340), - [anon_sym_as] = ACTIONS(2340), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2340), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2340), - [aux_sym__val_number_decimal_token1] = ACTIONS(2340), - [aux_sym__val_number_decimal_token2] = ACTIONS(2340), - [aux_sym__val_number_decimal_token3] = ACTIONS(2340), - [aux_sym__val_number_decimal_token4] = ACTIONS(2340), - [aux_sym__val_number_token1] = ACTIONS(2340), - [aux_sym__val_number_token2] = ACTIONS(2340), - [aux_sym__val_number_token3] = ACTIONS(2340), - [anon_sym_DQUOTE] = ACTIONS(2340), - [sym__str_single_quotes] = ACTIONS(2340), - [sym__str_back_ticks] = ACTIONS(2340), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2340), - [sym__entry_separator] = ACTIONS(2342), - [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_export] = ACTIONS(1945), + [anon_sym_alias] = ACTIONS(1945), + [anon_sym_let] = ACTIONS(1945), + [anon_sym_let_DASHenv] = ACTIONS(1945), + [anon_sym_mut] = ACTIONS(1945), + [anon_sym_const] = ACTIONS(1945), + [aux_sym_cmd_identifier_token1] = ACTIONS(1945), + [aux_sym_cmd_identifier_token2] = ACTIONS(1945), + [aux_sym_cmd_identifier_token3] = ACTIONS(1945), + [aux_sym_cmd_identifier_token4] = ACTIONS(1945), + [aux_sym_cmd_identifier_token5] = ACTIONS(1945), + [aux_sym_cmd_identifier_token6] = ACTIONS(1945), + [aux_sym_cmd_identifier_token7] = ACTIONS(1945), + [aux_sym_cmd_identifier_token8] = ACTIONS(1945), + [aux_sym_cmd_identifier_token9] = ACTIONS(1945), + [aux_sym_cmd_identifier_token10] = ACTIONS(1945), + [aux_sym_cmd_identifier_token11] = ACTIONS(1945), + [aux_sym_cmd_identifier_token12] = ACTIONS(1945), + [aux_sym_cmd_identifier_token13] = ACTIONS(1945), + [aux_sym_cmd_identifier_token14] = ACTIONS(1945), + [aux_sym_cmd_identifier_token15] = ACTIONS(1945), + [aux_sym_cmd_identifier_token16] = ACTIONS(1945), + [aux_sym_cmd_identifier_token17] = ACTIONS(1945), + [aux_sym_cmd_identifier_token18] = ACTIONS(1945), + [aux_sym_cmd_identifier_token19] = ACTIONS(1945), + [aux_sym_cmd_identifier_token20] = ACTIONS(1945), + [aux_sym_cmd_identifier_token21] = ACTIONS(1945), + [aux_sym_cmd_identifier_token22] = ACTIONS(1945), + [aux_sym_cmd_identifier_token23] = ACTIONS(1945), + [aux_sym_cmd_identifier_token24] = ACTIONS(1945), + [aux_sym_cmd_identifier_token25] = ACTIONS(1945), + [aux_sym_cmd_identifier_token26] = ACTIONS(1945), + [aux_sym_cmd_identifier_token27] = ACTIONS(1945), + [aux_sym_cmd_identifier_token28] = ACTIONS(1945), + [aux_sym_cmd_identifier_token29] = ACTIONS(1945), + [aux_sym_cmd_identifier_token30] = ACTIONS(1945), + [aux_sym_cmd_identifier_token31] = ACTIONS(1945), + [aux_sym_cmd_identifier_token32] = ACTIONS(1945), + [aux_sym_cmd_identifier_token33] = ACTIONS(1945), + [aux_sym_cmd_identifier_token34] = ACTIONS(1945), + [aux_sym_cmd_identifier_token35] = ACTIONS(1945), + [aux_sym_cmd_identifier_token36] = ACTIONS(1945), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1945), + [aux_sym_cmd_identifier_token38] = ACTIONS(1945), + [aux_sym_cmd_identifier_token39] = ACTIONS(1945), + [aux_sym_cmd_identifier_token40] = ACTIONS(1945), + [anon_sym_def] = ACTIONS(1945), + [anon_sym_export_DASHenv] = ACTIONS(1945), + [anon_sym_extern] = ACTIONS(1945), + [anon_sym_module] = ACTIONS(1945), + [anon_sym_use] = ACTIONS(1945), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym_DOLLAR] = ACTIONS(1945), + [anon_sym_error] = ACTIONS(1945), + [anon_sym_list] = ACTIONS(1945), + [anon_sym_DASH] = ACTIONS(1945), + [anon_sym_break] = ACTIONS(1945), + [anon_sym_continue] = ACTIONS(1945), + [anon_sym_for] = ACTIONS(1945), + [anon_sym_in] = ACTIONS(1945), + [anon_sym_loop] = ACTIONS(1945), + [anon_sym_make] = ACTIONS(1945), + [anon_sym_while] = ACTIONS(1945), + [anon_sym_do] = ACTIONS(1945), + [anon_sym_if] = ACTIONS(1945), + [anon_sym_else] = ACTIONS(1945), + [anon_sym_match] = ACTIONS(1945), + [anon_sym_RBRACE] = ACTIONS(1945), + [anon_sym_try] = ACTIONS(1945), + [anon_sym_catch] = ACTIONS(1945), + [anon_sym_return] = ACTIONS(1945), + [anon_sym_source] = ACTIONS(1945), + [anon_sym_source_DASHenv] = ACTIONS(1945), + [anon_sym_register] = ACTIONS(1945), + [anon_sym_hide] = ACTIONS(1945), + [anon_sym_hide_DASHenv] = ACTIONS(1945), + [anon_sym_overlay] = ACTIONS(1945), + [anon_sym_new] = ACTIONS(1945), + [anon_sym_as] = ACTIONS(1945), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1945), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1945), + [aux_sym__val_number_decimal_token1] = ACTIONS(1945), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1945), + [aux_sym__val_number_decimal_token4] = ACTIONS(1945), + [aux_sym__val_number_token1] = ACTIONS(1945), + [aux_sym__val_number_token2] = ACTIONS(1945), + [aux_sym__val_number_token3] = ACTIONS(1945), + [anon_sym_DQUOTE] = ACTIONS(1945), + [sym__str_single_quotes] = ACTIONS(1945), + [sym__str_back_ticks] = ACTIONS(1945), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1945), + [sym__entry_separator] = ACTIONS(1947), + [anon_sym_PLUS] = ACTIONS(1945), [anon_sym_POUND] = ACTIONS(3), }, [536] = { [sym_comment] = STATE(536), - [anon_sym_export] = ACTIONS(2344), - [anon_sym_alias] = ACTIONS(2344), - [anon_sym_let] = ACTIONS(2344), - [anon_sym_let_DASHenv] = ACTIONS(2344), - [anon_sym_mut] = ACTIONS(2344), - [anon_sym_const] = ACTIONS(2344), - [aux_sym_cmd_identifier_token1] = ACTIONS(2344), - [aux_sym_cmd_identifier_token2] = ACTIONS(2344), - [aux_sym_cmd_identifier_token3] = ACTIONS(2344), - [aux_sym_cmd_identifier_token4] = ACTIONS(2344), - [aux_sym_cmd_identifier_token5] = ACTIONS(2344), - [aux_sym_cmd_identifier_token6] = ACTIONS(2344), - [aux_sym_cmd_identifier_token7] = ACTIONS(2344), - [aux_sym_cmd_identifier_token8] = ACTIONS(2344), - [aux_sym_cmd_identifier_token9] = ACTIONS(2344), - [aux_sym_cmd_identifier_token10] = ACTIONS(2344), - [aux_sym_cmd_identifier_token11] = ACTIONS(2344), - [aux_sym_cmd_identifier_token12] = ACTIONS(2344), - [aux_sym_cmd_identifier_token13] = ACTIONS(2344), - [aux_sym_cmd_identifier_token14] = ACTIONS(2344), - [aux_sym_cmd_identifier_token15] = ACTIONS(2344), - [aux_sym_cmd_identifier_token16] = ACTIONS(2344), - [aux_sym_cmd_identifier_token17] = ACTIONS(2344), - [aux_sym_cmd_identifier_token18] = ACTIONS(2344), - [aux_sym_cmd_identifier_token19] = ACTIONS(2344), - [aux_sym_cmd_identifier_token20] = ACTIONS(2344), - [aux_sym_cmd_identifier_token21] = ACTIONS(2344), - [aux_sym_cmd_identifier_token22] = ACTIONS(2344), - [aux_sym_cmd_identifier_token23] = ACTIONS(2344), - [aux_sym_cmd_identifier_token24] = ACTIONS(2344), - [aux_sym_cmd_identifier_token25] = ACTIONS(2344), - [aux_sym_cmd_identifier_token26] = ACTIONS(2344), - [aux_sym_cmd_identifier_token27] = ACTIONS(2344), - [aux_sym_cmd_identifier_token28] = ACTIONS(2344), - [aux_sym_cmd_identifier_token29] = ACTIONS(2344), - [aux_sym_cmd_identifier_token30] = ACTIONS(2344), - [aux_sym_cmd_identifier_token31] = ACTIONS(2344), - [aux_sym_cmd_identifier_token32] = ACTIONS(2344), - [aux_sym_cmd_identifier_token33] = ACTIONS(2344), - [aux_sym_cmd_identifier_token34] = ACTIONS(2344), - [aux_sym_cmd_identifier_token35] = ACTIONS(2344), - [aux_sym_cmd_identifier_token36] = ACTIONS(2344), - [anon_sym_true] = ACTIONS(2344), - [anon_sym_false] = ACTIONS(2344), - [anon_sym_null] = ACTIONS(2344), - [aux_sym_cmd_identifier_token38] = ACTIONS(2344), - [aux_sym_cmd_identifier_token39] = ACTIONS(2344), - [aux_sym_cmd_identifier_token40] = ACTIONS(2344), - [anon_sym_def] = ACTIONS(2344), - [anon_sym_export_DASHenv] = ACTIONS(2344), - [anon_sym_extern] = ACTIONS(2344), - [anon_sym_module] = ACTIONS(2344), - [anon_sym_use] = ACTIONS(2344), - [anon_sym_LPAREN] = ACTIONS(2344), - [anon_sym_DOLLAR] = ACTIONS(2344), - [anon_sym_error] = ACTIONS(2344), - [anon_sym_list] = ACTIONS(2344), - [anon_sym_DASH] = ACTIONS(2344), - [anon_sym_break] = ACTIONS(2344), - [anon_sym_continue] = ACTIONS(2344), - [anon_sym_for] = ACTIONS(2344), - [anon_sym_in] = ACTIONS(2344), - [anon_sym_loop] = ACTIONS(2344), - [anon_sym_make] = ACTIONS(2344), - [anon_sym_while] = ACTIONS(2344), - [anon_sym_do] = ACTIONS(2344), - [anon_sym_if] = ACTIONS(2344), - [anon_sym_else] = ACTIONS(2344), - [anon_sym_match] = ACTIONS(2344), - [anon_sym_RBRACE] = ACTIONS(2344), - [anon_sym_try] = ACTIONS(2344), - [anon_sym_catch] = ACTIONS(2344), - [anon_sym_return] = ACTIONS(2344), - [anon_sym_source] = ACTIONS(2344), - [anon_sym_source_DASHenv] = ACTIONS(2344), - [anon_sym_register] = ACTIONS(2344), - [anon_sym_hide] = ACTIONS(2344), - [anon_sym_hide_DASHenv] = ACTIONS(2344), - [anon_sym_overlay] = ACTIONS(2344), - [anon_sym_new] = ACTIONS(2344), - [anon_sym_as] = ACTIONS(2344), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2344), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2344), - [aux_sym__val_number_decimal_token1] = ACTIONS(2344), - [aux_sym__val_number_decimal_token2] = ACTIONS(2344), - [aux_sym__val_number_decimal_token3] = ACTIONS(2344), - [aux_sym__val_number_decimal_token4] = ACTIONS(2344), - [aux_sym__val_number_token1] = ACTIONS(2344), - [aux_sym__val_number_token2] = ACTIONS(2344), - [aux_sym__val_number_token3] = ACTIONS(2344), - [anon_sym_DQUOTE] = ACTIONS(2344), - [sym__str_single_quotes] = ACTIONS(2344), - [sym__str_back_ticks] = ACTIONS(2344), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2344), - [sym__entry_separator] = ACTIONS(2346), - [anon_sym_PLUS] = ACTIONS(2344), + [anon_sym_export] = ACTIONS(2420), + [anon_sym_alias] = ACTIONS(2420), + [anon_sym_let] = ACTIONS(2420), + [anon_sym_let_DASHenv] = ACTIONS(2420), + [anon_sym_mut] = ACTIONS(2420), + [anon_sym_const] = ACTIONS(2420), + [aux_sym_cmd_identifier_token1] = ACTIONS(2420), + [aux_sym_cmd_identifier_token2] = ACTIONS(2420), + [aux_sym_cmd_identifier_token3] = ACTIONS(2420), + [aux_sym_cmd_identifier_token4] = ACTIONS(2420), + [aux_sym_cmd_identifier_token5] = ACTIONS(2420), + [aux_sym_cmd_identifier_token6] = ACTIONS(2420), + [aux_sym_cmd_identifier_token7] = ACTIONS(2420), + [aux_sym_cmd_identifier_token8] = ACTIONS(2420), + [aux_sym_cmd_identifier_token9] = ACTIONS(2420), + [aux_sym_cmd_identifier_token10] = ACTIONS(2420), + [aux_sym_cmd_identifier_token11] = ACTIONS(2420), + [aux_sym_cmd_identifier_token12] = ACTIONS(2420), + [aux_sym_cmd_identifier_token13] = ACTIONS(2420), + [aux_sym_cmd_identifier_token14] = ACTIONS(2420), + [aux_sym_cmd_identifier_token15] = ACTIONS(2420), + [aux_sym_cmd_identifier_token16] = ACTIONS(2420), + [aux_sym_cmd_identifier_token17] = ACTIONS(2420), + [aux_sym_cmd_identifier_token18] = ACTIONS(2420), + [aux_sym_cmd_identifier_token19] = ACTIONS(2420), + [aux_sym_cmd_identifier_token20] = ACTIONS(2420), + [aux_sym_cmd_identifier_token21] = ACTIONS(2420), + [aux_sym_cmd_identifier_token22] = ACTIONS(2420), + [aux_sym_cmd_identifier_token23] = ACTIONS(2420), + [aux_sym_cmd_identifier_token24] = ACTIONS(2420), + [aux_sym_cmd_identifier_token25] = ACTIONS(2420), + [aux_sym_cmd_identifier_token26] = ACTIONS(2420), + [aux_sym_cmd_identifier_token27] = ACTIONS(2420), + [aux_sym_cmd_identifier_token28] = ACTIONS(2420), + [aux_sym_cmd_identifier_token29] = ACTIONS(2420), + [aux_sym_cmd_identifier_token30] = ACTIONS(2420), + [aux_sym_cmd_identifier_token31] = ACTIONS(2420), + [aux_sym_cmd_identifier_token32] = ACTIONS(2420), + [aux_sym_cmd_identifier_token33] = ACTIONS(2420), + [aux_sym_cmd_identifier_token34] = ACTIONS(2420), + [aux_sym_cmd_identifier_token35] = ACTIONS(2420), + [aux_sym_cmd_identifier_token36] = ACTIONS(2420), + [anon_sym_true] = ACTIONS(2420), + [anon_sym_false] = ACTIONS(2420), + [anon_sym_null] = ACTIONS(2420), + [aux_sym_cmd_identifier_token38] = ACTIONS(2420), + [aux_sym_cmd_identifier_token39] = ACTIONS(2420), + [aux_sym_cmd_identifier_token40] = ACTIONS(2420), + [anon_sym_def] = ACTIONS(2420), + [anon_sym_export_DASHenv] = ACTIONS(2420), + [anon_sym_extern] = ACTIONS(2420), + [anon_sym_module] = ACTIONS(2420), + [anon_sym_use] = ACTIONS(2420), + [anon_sym_LPAREN] = ACTIONS(2420), + [anon_sym_DOLLAR] = ACTIONS(2420), + [anon_sym_error] = ACTIONS(2420), + [anon_sym_list] = ACTIONS(2420), + [anon_sym_DASH] = ACTIONS(2420), + [anon_sym_break] = ACTIONS(2420), + [anon_sym_continue] = ACTIONS(2420), + [anon_sym_for] = ACTIONS(2420), + [anon_sym_in] = ACTIONS(2420), + [anon_sym_loop] = ACTIONS(2420), + [anon_sym_make] = ACTIONS(2420), + [anon_sym_while] = ACTIONS(2420), + [anon_sym_do] = ACTIONS(2420), + [anon_sym_if] = ACTIONS(2420), + [anon_sym_else] = ACTIONS(2420), + [anon_sym_match] = ACTIONS(2420), + [anon_sym_RBRACE] = ACTIONS(2420), + [anon_sym_try] = ACTIONS(2420), + [anon_sym_catch] = ACTIONS(2420), + [anon_sym_return] = ACTIONS(2420), + [anon_sym_source] = ACTIONS(2420), + [anon_sym_source_DASHenv] = ACTIONS(2420), + [anon_sym_register] = ACTIONS(2420), + [anon_sym_hide] = ACTIONS(2420), + [anon_sym_hide_DASHenv] = ACTIONS(2420), + [anon_sym_overlay] = ACTIONS(2420), + [anon_sym_new] = ACTIONS(2420), + [anon_sym_as] = ACTIONS(2420), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2420), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2420), + [aux_sym__val_number_decimal_token1] = ACTIONS(2420), + [aux_sym__val_number_decimal_token2] = ACTIONS(2420), + [aux_sym__val_number_decimal_token3] = ACTIONS(2420), + [aux_sym__val_number_decimal_token4] = ACTIONS(2420), + [aux_sym__val_number_token1] = ACTIONS(2420), + [aux_sym__val_number_token2] = ACTIONS(2420), + [aux_sym__val_number_token3] = ACTIONS(2420), + [anon_sym_DQUOTE] = ACTIONS(2420), + [sym__str_single_quotes] = ACTIONS(2420), + [sym__str_back_ticks] = ACTIONS(2420), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2420), + [sym__entry_separator] = ACTIONS(2422), + [anon_sym_PLUS] = ACTIONS(2420), [anon_sym_POUND] = ACTIONS(3), }, [537] = { [sym_comment] = STATE(537), - [anon_sym_export] = ACTIONS(1879), - [anon_sym_alias] = ACTIONS(1879), - [anon_sym_let] = ACTIONS(1879), - [anon_sym_let_DASHenv] = ACTIONS(1879), - [anon_sym_mut] = ACTIONS(1879), - [anon_sym_const] = ACTIONS(1879), - [aux_sym_cmd_identifier_token1] = ACTIONS(1879), - [aux_sym_cmd_identifier_token2] = ACTIONS(1879), - [aux_sym_cmd_identifier_token3] = ACTIONS(1879), - [aux_sym_cmd_identifier_token4] = ACTIONS(1879), - [aux_sym_cmd_identifier_token5] = ACTIONS(1879), - [aux_sym_cmd_identifier_token6] = ACTIONS(1879), - [aux_sym_cmd_identifier_token7] = ACTIONS(1879), - [aux_sym_cmd_identifier_token8] = ACTIONS(1879), - [aux_sym_cmd_identifier_token9] = ACTIONS(1879), - [aux_sym_cmd_identifier_token10] = ACTIONS(1879), - [aux_sym_cmd_identifier_token11] = ACTIONS(1879), - [aux_sym_cmd_identifier_token12] = ACTIONS(1879), - [aux_sym_cmd_identifier_token13] = ACTIONS(1879), - [aux_sym_cmd_identifier_token14] = ACTIONS(1879), - [aux_sym_cmd_identifier_token15] = ACTIONS(1879), - [aux_sym_cmd_identifier_token16] = ACTIONS(1879), - [aux_sym_cmd_identifier_token17] = ACTIONS(1879), - [aux_sym_cmd_identifier_token18] = ACTIONS(1879), - [aux_sym_cmd_identifier_token19] = ACTIONS(1879), - [aux_sym_cmd_identifier_token20] = ACTIONS(1879), - [aux_sym_cmd_identifier_token21] = ACTIONS(1879), - [aux_sym_cmd_identifier_token22] = ACTIONS(1879), - [aux_sym_cmd_identifier_token23] = ACTIONS(1879), - [aux_sym_cmd_identifier_token24] = ACTIONS(1879), - [aux_sym_cmd_identifier_token25] = ACTIONS(1879), - [aux_sym_cmd_identifier_token26] = ACTIONS(1879), - [aux_sym_cmd_identifier_token27] = ACTIONS(1879), - [aux_sym_cmd_identifier_token28] = ACTIONS(1879), - [aux_sym_cmd_identifier_token29] = ACTIONS(1879), - [aux_sym_cmd_identifier_token30] = ACTIONS(1879), - [aux_sym_cmd_identifier_token31] = ACTIONS(1879), - [aux_sym_cmd_identifier_token32] = ACTIONS(1879), - [aux_sym_cmd_identifier_token33] = ACTIONS(1879), - [aux_sym_cmd_identifier_token34] = ACTIONS(1879), - [aux_sym_cmd_identifier_token35] = ACTIONS(1879), - [aux_sym_cmd_identifier_token36] = ACTIONS(1879), - [anon_sym_true] = ACTIONS(1879), - [anon_sym_false] = ACTIONS(1879), - [anon_sym_null] = ACTIONS(1879), - [aux_sym_cmd_identifier_token38] = ACTIONS(1879), - [aux_sym_cmd_identifier_token39] = ACTIONS(1879), - [aux_sym_cmd_identifier_token40] = ACTIONS(1879), - [anon_sym_def] = ACTIONS(1879), - [anon_sym_export_DASHenv] = ACTIONS(1879), - [anon_sym_extern] = ACTIONS(1879), - [anon_sym_module] = ACTIONS(1879), - [anon_sym_use] = ACTIONS(1879), - [anon_sym_LPAREN] = ACTIONS(1879), - [anon_sym_DOLLAR] = ACTIONS(1879), - [anon_sym_error] = ACTIONS(1879), - [anon_sym_list] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_break] = ACTIONS(1879), - [anon_sym_continue] = ACTIONS(1879), - [anon_sym_for] = ACTIONS(1879), - [anon_sym_in] = ACTIONS(1879), - [anon_sym_loop] = ACTIONS(1879), - [anon_sym_make] = ACTIONS(1879), - [anon_sym_while] = ACTIONS(1879), - [anon_sym_do] = ACTIONS(1879), - [anon_sym_if] = ACTIONS(1879), - [anon_sym_else] = ACTIONS(1879), - [anon_sym_match] = ACTIONS(1879), - [anon_sym_RBRACE] = ACTIONS(1879), - [anon_sym_try] = ACTIONS(1879), - [anon_sym_catch] = ACTIONS(1879), - [anon_sym_return] = ACTIONS(1879), - [anon_sym_source] = ACTIONS(1879), - [anon_sym_source_DASHenv] = ACTIONS(1879), - [anon_sym_register] = ACTIONS(1879), - [anon_sym_hide] = ACTIONS(1879), - [anon_sym_hide_DASHenv] = ACTIONS(1879), - [anon_sym_overlay] = ACTIONS(1879), - [anon_sym_new] = ACTIONS(1879), - [anon_sym_as] = ACTIONS(1879), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1879), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1879), - [aux_sym__val_number_decimal_token1] = ACTIONS(1879), - [aux_sym__val_number_decimal_token2] = ACTIONS(1879), - [aux_sym__val_number_decimal_token3] = ACTIONS(1879), - [aux_sym__val_number_decimal_token4] = ACTIONS(1879), - [aux_sym__val_number_token1] = ACTIONS(1879), - [aux_sym__val_number_token2] = ACTIONS(1879), - [aux_sym__val_number_token3] = ACTIONS(1879), - [anon_sym_DQUOTE] = ACTIONS(1879), - [sym__str_single_quotes] = ACTIONS(1879), - [sym__str_back_ticks] = ACTIONS(1879), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1879), - [sym__entry_separator] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1879), + [anon_sym_export] = ACTIONS(2424), + [anon_sym_alias] = ACTIONS(2424), + [anon_sym_let] = ACTIONS(2424), + [anon_sym_let_DASHenv] = ACTIONS(2424), + [anon_sym_mut] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [aux_sym_cmd_identifier_token1] = ACTIONS(2424), + [aux_sym_cmd_identifier_token2] = ACTIONS(2424), + [aux_sym_cmd_identifier_token3] = ACTIONS(2424), + [aux_sym_cmd_identifier_token4] = ACTIONS(2424), + [aux_sym_cmd_identifier_token5] = ACTIONS(2424), + [aux_sym_cmd_identifier_token6] = ACTIONS(2424), + [aux_sym_cmd_identifier_token7] = ACTIONS(2424), + [aux_sym_cmd_identifier_token8] = ACTIONS(2424), + [aux_sym_cmd_identifier_token9] = ACTIONS(2424), + [aux_sym_cmd_identifier_token10] = ACTIONS(2424), + [aux_sym_cmd_identifier_token11] = ACTIONS(2424), + [aux_sym_cmd_identifier_token12] = ACTIONS(2424), + [aux_sym_cmd_identifier_token13] = ACTIONS(2424), + [aux_sym_cmd_identifier_token14] = ACTIONS(2424), + [aux_sym_cmd_identifier_token15] = ACTIONS(2424), + [aux_sym_cmd_identifier_token16] = ACTIONS(2424), + [aux_sym_cmd_identifier_token17] = ACTIONS(2424), + [aux_sym_cmd_identifier_token18] = ACTIONS(2424), + [aux_sym_cmd_identifier_token19] = ACTIONS(2424), + [aux_sym_cmd_identifier_token20] = ACTIONS(2424), + [aux_sym_cmd_identifier_token21] = ACTIONS(2424), + [aux_sym_cmd_identifier_token22] = ACTIONS(2424), + [aux_sym_cmd_identifier_token23] = ACTIONS(2424), + [aux_sym_cmd_identifier_token24] = ACTIONS(2424), + [aux_sym_cmd_identifier_token25] = ACTIONS(2424), + [aux_sym_cmd_identifier_token26] = ACTIONS(2424), + [aux_sym_cmd_identifier_token27] = ACTIONS(2424), + [aux_sym_cmd_identifier_token28] = ACTIONS(2424), + [aux_sym_cmd_identifier_token29] = ACTIONS(2424), + [aux_sym_cmd_identifier_token30] = ACTIONS(2424), + [aux_sym_cmd_identifier_token31] = ACTIONS(2424), + [aux_sym_cmd_identifier_token32] = ACTIONS(2424), + [aux_sym_cmd_identifier_token33] = ACTIONS(2424), + [aux_sym_cmd_identifier_token34] = ACTIONS(2424), + [aux_sym_cmd_identifier_token35] = ACTIONS(2424), + [aux_sym_cmd_identifier_token36] = ACTIONS(2424), + [anon_sym_true] = ACTIONS(2424), + [anon_sym_false] = ACTIONS(2424), + [anon_sym_null] = ACTIONS(2424), + [aux_sym_cmd_identifier_token38] = ACTIONS(2424), + [aux_sym_cmd_identifier_token39] = ACTIONS(2424), + [aux_sym_cmd_identifier_token40] = ACTIONS(2424), + [anon_sym_def] = ACTIONS(2424), + [anon_sym_export_DASHenv] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym_module] = ACTIONS(2424), + [anon_sym_use] = ACTIONS(2424), + [anon_sym_LPAREN] = ACTIONS(2424), + [anon_sym_DOLLAR] = ACTIONS(2424), + [anon_sym_error] = ACTIONS(2424), + [anon_sym_list] = ACTIONS(2424), + [anon_sym_DASH] = ACTIONS(2424), + [anon_sym_break] = ACTIONS(2424), + [anon_sym_continue] = ACTIONS(2424), + [anon_sym_for] = ACTIONS(2424), + [anon_sym_in] = ACTIONS(2424), + [anon_sym_loop] = ACTIONS(2424), + [anon_sym_make] = ACTIONS(2424), + [anon_sym_while] = ACTIONS(2424), + [anon_sym_do] = ACTIONS(2424), + [anon_sym_if] = ACTIONS(2424), + [anon_sym_else] = ACTIONS(2424), + [anon_sym_match] = ACTIONS(2424), + [anon_sym_RBRACE] = ACTIONS(2424), + [anon_sym_try] = ACTIONS(2424), + [anon_sym_catch] = ACTIONS(2424), + [anon_sym_return] = ACTIONS(2424), + [anon_sym_source] = ACTIONS(2424), + [anon_sym_source_DASHenv] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_hide] = ACTIONS(2424), + [anon_sym_hide_DASHenv] = ACTIONS(2424), + [anon_sym_overlay] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2424), + [anon_sym_as] = ACTIONS(2424), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2424), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2424), + [aux_sym__val_number_decimal_token1] = ACTIONS(2424), + [aux_sym__val_number_decimal_token2] = ACTIONS(2424), + [aux_sym__val_number_decimal_token3] = ACTIONS(2424), + [aux_sym__val_number_decimal_token4] = ACTIONS(2424), + [aux_sym__val_number_token1] = ACTIONS(2424), + [aux_sym__val_number_token2] = ACTIONS(2424), + [aux_sym__val_number_token3] = ACTIONS(2424), + [anon_sym_DQUOTE] = ACTIONS(2424), + [sym__str_single_quotes] = ACTIONS(2424), + [sym__str_back_ticks] = ACTIONS(2424), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2424), + [sym__entry_separator] = ACTIONS(2426), + [anon_sym_PLUS] = ACTIONS(2424), [anon_sym_POUND] = ACTIONS(3), }, [538] = { [sym_comment] = STATE(538), - [anon_sym_export] = ACTIONS(2348), - [anon_sym_alias] = ACTIONS(2348), - [anon_sym_let] = ACTIONS(2348), - [anon_sym_let_DASHenv] = ACTIONS(2348), - [anon_sym_mut] = ACTIONS(2348), - [anon_sym_const] = ACTIONS(2348), - [aux_sym_cmd_identifier_token1] = ACTIONS(2348), - [aux_sym_cmd_identifier_token2] = ACTIONS(2348), - [aux_sym_cmd_identifier_token3] = ACTIONS(2348), - [aux_sym_cmd_identifier_token4] = ACTIONS(2348), - [aux_sym_cmd_identifier_token5] = ACTIONS(2348), - [aux_sym_cmd_identifier_token6] = ACTIONS(2348), - [aux_sym_cmd_identifier_token7] = ACTIONS(2348), - [aux_sym_cmd_identifier_token8] = ACTIONS(2348), - [aux_sym_cmd_identifier_token9] = ACTIONS(2348), - [aux_sym_cmd_identifier_token10] = ACTIONS(2348), - [aux_sym_cmd_identifier_token11] = ACTIONS(2348), - [aux_sym_cmd_identifier_token12] = ACTIONS(2348), - [aux_sym_cmd_identifier_token13] = ACTIONS(2348), - [aux_sym_cmd_identifier_token14] = ACTIONS(2348), - [aux_sym_cmd_identifier_token15] = ACTIONS(2348), - [aux_sym_cmd_identifier_token16] = ACTIONS(2348), - [aux_sym_cmd_identifier_token17] = ACTIONS(2348), - [aux_sym_cmd_identifier_token18] = ACTIONS(2348), - [aux_sym_cmd_identifier_token19] = ACTIONS(2348), - [aux_sym_cmd_identifier_token20] = ACTIONS(2348), - [aux_sym_cmd_identifier_token21] = ACTIONS(2348), - [aux_sym_cmd_identifier_token22] = ACTIONS(2348), - [aux_sym_cmd_identifier_token23] = ACTIONS(2348), - [aux_sym_cmd_identifier_token24] = ACTIONS(2348), - [aux_sym_cmd_identifier_token25] = ACTIONS(2348), - [aux_sym_cmd_identifier_token26] = ACTIONS(2348), - [aux_sym_cmd_identifier_token27] = ACTIONS(2348), - [aux_sym_cmd_identifier_token28] = ACTIONS(2348), - [aux_sym_cmd_identifier_token29] = ACTIONS(2348), - [aux_sym_cmd_identifier_token30] = ACTIONS(2348), - [aux_sym_cmd_identifier_token31] = ACTIONS(2348), - [aux_sym_cmd_identifier_token32] = ACTIONS(2348), - [aux_sym_cmd_identifier_token33] = ACTIONS(2348), - [aux_sym_cmd_identifier_token34] = ACTIONS(2348), - [aux_sym_cmd_identifier_token35] = ACTIONS(2348), - [aux_sym_cmd_identifier_token36] = ACTIONS(2348), - [anon_sym_true] = ACTIONS(2348), - [anon_sym_false] = ACTIONS(2348), - [anon_sym_null] = ACTIONS(2348), - [aux_sym_cmd_identifier_token38] = ACTIONS(2348), - [aux_sym_cmd_identifier_token39] = ACTIONS(2348), - [aux_sym_cmd_identifier_token40] = ACTIONS(2348), - [anon_sym_def] = ACTIONS(2348), - [anon_sym_export_DASHenv] = ACTIONS(2348), - [anon_sym_extern] = ACTIONS(2348), - [anon_sym_module] = ACTIONS(2348), - [anon_sym_use] = ACTIONS(2348), - [anon_sym_LPAREN] = ACTIONS(2348), - [anon_sym_DOLLAR] = ACTIONS(2348), - [anon_sym_error] = ACTIONS(2348), - [anon_sym_list] = ACTIONS(2348), - [anon_sym_DASH] = ACTIONS(2348), - [anon_sym_break] = ACTIONS(2348), - [anon_sym_continue] = ACTIONS(2348), - [anon_sym_for] = ACTIONS(2348), - [anon_sym_in] = ACTIONS(2348), - [anon_sym_loop] = ACTIONS(2348), - [anon_sym_make] = ACTIONS(2348), - [anon_sym_while] = ACTIONS(2348), - [anon_sym_do] = ACTIONS(2348), - [anon_sym_if] = ACTIONS(2348), - [anon_sym_else] = ACTIONS(2348), - [anon_sym_match] = ACTIONS(2348), - [anon_sym_RBRACE] = ACTIONS(2348), - [anon_sym_try] = ACTIONS(2348), - [anon_sym_catch] = ACTIONS(2348), - [anon_sym_return] = ACTIONS(2348), - [anon_sym_source] = ACTIONS(2348), - [anon_sym_source_DASHenv] = ACTIONS(2348), - [anon_sym_register] = ACTIONS(2348), - [anon_sym_hide] = ACTIONS(2348), - [anon_sym_hide_DASHenv] = ACTIONS(2348), - [anon_sym_overlay] = ACTIONS(2348), - [anon_sym_new] = ACTIONS(2348), - [anon_sym_as] = ACTIONS(2348), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2348), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2348), - [aux_sym__val_number_decimal_token1] = ACTIONS(2348), - [aux_sym__val_number_decimal_token2] = ACTIONS(2348), - [aux_sym__val_number_decimal_token3] = ACTIONS(2348), - [aux_sym__val_number_decimal_token4] = ACTIONS(2348), - [aux_sym__val_number_token1] = ACTIONS(2348), - [aux_sym__val_number_token2] = ACTIONS(2348), - [aux_sym__val_number_token3] = ACTIONS(2348), - [anon_sym_DQUOTE] = ACTIONS(2348), - [sym__str_single_quotes] = ACTIONS(2348), - [sym__str_back_ticks] = ACTIONS(2348), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2348), - [sym__entry_separator] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2348), + [anon_sym_export] = ACTIONS(1949), + [anon_sym_alias] = ACTIONS(1949), + [anon_sym_let] = ACTIONS(1949), + [anon_sym_let_DASHenv] = ACTIONS(1949), + [anon_sym_mut] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(1949), + [aux_sym_cmd_identifier_token1] = ACTIONS(1949), + [aux_sym_cmd_identifier_token2] = ACTIONS(1949), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [aux_sym_cmd_identifier_token6] = ACTIONS(1949), + [aux_sym_cmd_identifier_token7] = ACTIONS(1949), + [aux_sym_cmd_identifier_token8] = ACTIONS(1949), + [aux_sym_cmd_identifier_token9] = ACTIONS(1949), + [aux_sym_cmd_identifier_token10] = ACTIONS(1949), + [aux_sym_cmd_identifier_token11] = ACTIONS(1949), + [aux_sym_cmd_identifier_token12] = ACTIONS(1949), + [aux_sym_cmd_identifier_token13] = ACTIONS(1949), + [aux_sym_cmd_identifier_token14] = ACTIONS(1949), + [aux_sym_cmd_identifier_token15] = ACTIONS(1949), + [aux_sym_cmd_identifier_token16] = ACTIONS(1949), + [aux_sym_cmd_identifier_token17] = ACTIONS(1949), + [aux_sym_cmd_identifier_token18] = ACTIONS(1949), + [aux_sym_cmd_identifier_token19] = ACTIONS(1949), + [aux_sym_cmd_identifier_token20] = ACTIONS(1949), + [aux_sym_cmd_identifier_token21] = ACTIONS(1949), + [aux_sym_cmd_identifier_token22] = ACTIONS(1949), + [aux_sym_cmd_identifier_token23] = ACTIONS(1949), + [aux_sym_cmd_identifier_token24] = ACTIONS(1949), + [aux_sym_cmd_identifier_token25] = ACTIONS(1949), + [aux_sym_cmd_identifier_token26] = ACTIONS(1949), + [aux_sym_cmd_identifier_token27] = ACTIONS(1949), + [aux_sym_cmd_identifier_token28] = ACTIONS(1949), + [aux_sym_cmd_identifier_token29] = ACTIONS(1949), + [aux_sym_cmd_identifier_token30] = ACTIONS(1949), + [aux_sym_cmd_identifier_token31] = ACTIONS(1949), + [aux_sym_cmd_identifier_token32] = ACTIONS(1949), + [aux_sym_cmd_identifier_token33] = ACTIONS(1949), + [aux_sym_cmd_identifier_token34] = ACTIONS(1949), + [aux_sym_cmd_identifier_token35] = ACTIONS(1949), + [aux_sym_cmd_identifier_token36] = ACTIONS(1949), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1949), + [aux_sym_cmd_identifier_token38] = ACTIONS(1949), + [aux_sym_cmd_identifier_token39] = ACTIONS(1949), + [aux_sym_cmd_identifier_token40] = ACTIONS(1949), + [anon_sym_def] = ACTIONS(1949), + [anon_sym_export_DASHenv] = ACTIONS(1949), + [anon_sym_extern] = ACTIONS(1949), + [anon_sym_module] = ACTIONS(1949), + [anon_sym_use] = ACTIONS(1949), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_DOLLAR] = ACTIONS(1949), + [anon_sym_error] = ACTIONS(1949), + [anon_sym_list] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1949), + [anon_sym_break] = ACTIONS(1949), + [anon_sym_continue] = ACTIONS(1949), + [anon_sym_for] = ACTIONS(1949), + [anon_sym_in] = ACTIONS(1949), + [anon_sym_loop] = ACTIONS(1949), + [anon_sym_make] = ACTIONS(1949), + [anon_sym_while] = ACTIONS(1949), + [anon_sym_do] = ACTIONS(1949), + [anon_sym_if] = ACTIONS(1949), + [anon_sym_else] = ACTIONS(1949), + [anon_sym_match] = ACTIONS(1949), + [anon_sym_RBRACE] = ACTIONS(1949), + [anon_sym_try] = ACTIONS(1949), + [anon_sym_catch] = ACTIONS(1949), + [anon_sym_return] = ACTIONS(1949), + [anon_sym_source] = ACTIONS(1949), + [anon_sym_source_DASHenv] = ACTIONS(1949), + [anon_sym_register] = ACTIONS(1949), + [anon_sym_hide] = ACTIONS(1949), + [anon_sym_hide_DASHenv] = ACTIONS(1949), + [anon_sym_overlay] = ACTIONS(1949), + [anon_sym_new] = ACTIONS(1949), + [anon_sym_as] = ACTIONS(1949), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1949), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1949), + [aux_sym__val_number_decimal_token1] = ACTIONS(1949), + [aux_sym__val_number_decimal_token2] = ACTIONS(1949), + [aux_sym__val_number_decimal_token3] = ACTIONS(1949), + [aux_sym__val_number_decimal_token4] = ACTIONS(1949), + [aux_sym__val_number_token1] = ACTIONS(1949), + [aux_sym__val_number_token2] = ACTIONS(1949), + [aux_sym__val_number_token3] = ACTIONS(1949), + [anon_sym_DQUOTE] = ACTIONS(1949), + [sym__str_single_quotes] = ACTIONS(1949), + [sym__str_back_ticks] = ACTIONS(1949), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1949), + [sym__entry_separator] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1949), [anon_sym_POUND] = ACTIONS(3), }, [539] = { [sym_comment] = STATE(539), - [anon_sym_export] = ACTIONS(2352), - [anon_sym_alias] = ACTIONS(2352), - [anon_sym_let] = ACTIONS(2352), - [anon_sym_let_DASHenv] = ACTIONS(2352), - [anon_sym_mut] = ACTIONS(2352), - [anon_sym_const] = ACTIONS(2352), - [aux_sym_cmd_identifier_token1] = ACTIONS(2352), - [aux_sym_cmd_identifier_token2] = ACTIONS(2352), - [aux_sym_cmd_identifier_token3] = ACTIONS(2352), - [aux_sym_cmd_identifier_token4] = ACTIONS(2352), - [aux_sym_cmd_identifier_token5] = ACTIONS(2352), - [aux_sym_cmd_identifier_token6] = ACTIONS(2352), - [aux_sym_cmd_identifier_token7] = ACTIONS(2352), - [aux_sym_cmd_identifier_token8] = ACTIONS(2352), - [aux_sym_cmd_identifier_token9] = ACTIONS(2352), - [aux_sym_cmd_identifier_token10] = ACTIONS(2352), - [aux_sym_cmd_identifier_token11] = ACTIONS(2352), - [aux_sym_cmd_identifier_token12] = ACTIONS(2352), - [aux_sym_cmd_identifier_token13] = ACTIONS(2352), - [aux_sym_cmd_identifier_token14] = ACTIONS(2352), - [aux_sym_cmd_identifier_token15] = ACTIONS(2352), - [aux_sym_cmd_identifier_token16] = ACTIONS(2352), - [aux_sym_cmd_identifier_token17] = ACTIONS(2352), - [aux_sym_cmd_identifier_token18] = ACTIONS(2352), - [aux_sym_cmd_identifier_token19] = ACTIONS(2352), - [aux_sym_cmd_identifier_token20] = ACTIONS(2352), - [aux_sym_cmd_identifier_token21] = ACTIONS(2352), - [aux_sym_cmd_identifier_token22] = ACTIONS(2352), - [aux_sym_cmd_identifier_token23] = ACTIONS(2352), - [aux_sym_cmd_identifier_token24] = ACTIONS(2352), - [aux_sym_cmd_identifier_token25] = ACTIONS(2352), - [aux_sym_cmd_identifier_token26] = ACTIONS(2352), - [aux_sym_cmd_identifier_token27] = ACTIONS(2352), - [aux_sym_cmd_identifier_token28] = ACTIONS(2352), - [aux_sym_cmd_identifier_token29] = ACTIONS(2352), - [aux_sym_cmd_identifier_token30] = ACTIONS(2352), - [aux_sym_cmd_identifier_token31] = ACTIONS(2352), - [aux_sym_cmd_identifier_token32] = ACTIONS(2352), - [aux_sym_cmd_identifier_token33] = ACTIONS(2352), - [aux_sym_cmd_identifier_token34] = ACTIONS(2352), - [aux_sym_cmd_identifier_token35] = ACTIONS(2352), - [aux_sym_cmd_identifier_token36] = ACTIONS(2352), - [anon_sym_true] = ACTIONS(2352), - [anon_sym_false] = ACTIONS(2352), - [anon_sym_null] = ACTIONS(2352), - [aux_sym_cmd_identifier_token38] = ACTIONS(2352), - [aux_sym_cmd_identifier_token39] = ACTIONS(2352), - [aux_sym_cmd_identifier_token40] = ACTIONS(2352), - [anon_sym_def] = ACTIONS(2352), - [anon_sym_export_DASHenv] = ACTIONS(2352), - [anon_sym_extern] = ACTIONS(2352), - [anon_sym_module] = ACTIONS(2352), - [anon_sym_use] = ACTIONS(2352), - [anon_sym_LPAREN] = ACTIONS(2352), - [anon_sym_DOLLAR] = ACTIONS(2352), - [anon_sym_error] = ACTIONS(2352), - [anon_sym_list] = ACTIONS(2352), - [anon_sym_DASH] = ACTIONS(2352), - [anon_sym_break] = ACTIONS(2352), - [anon_sym_continue] = ACTIONS(2352), - [anon_sym_for] = ACTIONS(2352), - [anon_sym_in] = ACTIONS(2352), - [anon_sym_loop] = ACTIONS(2352), - [anon_sym_make] = ACTIONS(2352), - [anon_sym_while] = ACTIONS(2352), - [anon_sym_do] = ACTIONS(2352), - [anon_sym_if] = ACTIONS(2352), - [anon_sym_else] = ACTIONS(2352), - [anon_sym_match] = ACTIONS(2352), - [anon_sym_RBRACE] = ACTIONS(2352), - [anon_sym_try] = ACTIONS(2352), - [anon_sym_catch] = ACTIONS(2352), - [anon_sym_return] = ACTIONS(2352), - [anon_sym_source] = ACTIONS(2352), - [anon_sym_source_DASHenv] = ACTIONS(2352), - [anon_sym_register] = ACTIONS(2352), - [anon_sym_hide] = ACTIONS(2352), - [anon_sym_hide_DASHenv] = ACTIONS(2352), - [anon_sym_overlay] = ACTIONS(2352), - [anon_sym_new] = ACTIONS(2352), - [anon_sym_as] = ACTIONS(2352), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2352), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2352), - [aux_sym__val_number_decimal_token1] = ACTIONS(2352), - [aux_sym__val_number_decimal_token2] = ACTIONS(2352), - [aux_sym__val_number_decimal_token3] = ACTIONS(2352), - [aux_sym__val_number_decimal_token4] = ACTIONS(2352), - [aux_sym__val_number_token1] = ACTIONS(2352), - [aux_sym__val_number_token2] = ACTIONS(2352), - [aux_sym__val_number_token3] = ACTIONS(2352), - [anon_sym_DQUOTE] = ACTIONS(2352), - [sym__str_single_quotes] = ACTIONS(2352), - [sym__str_back_ticks] = ACTIONS(2352), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2352), - [sym__entry_separator] = ACTIONS(2354), - [anon_sym_PLUS] = ACTIONS(2352), + [anon_sym_export] = ACTIONS(2428), + [anon_sym_alias] = ACTIONS(2428), + [anon_sym_let] = ACTIONS(2428), + [anon_sym_let_DASHenv] = ACTIONS(2428), + [anon_sym_mut] = ACTIONS(2428), + [anon_sym_const] = ACTIONS(2428), + [aux_sym_cmd_identifier_token1] = ACTIONS(2428), + [aux_sym_cmd_identifier_token2] = ACTIONS(2428), + [aux_sym_cmd_identifier_token3] = ACTIONS(2428), + [aux_sym_cmd_identifier_token4] = ACTIONS(2428), + [aux_sym_cmd_identifier_token5] = ACTIONS(2428), + [aux_sym_cmd_identifier_token6] = ACTIONS(2428), + [aux_sym_cmd_identifier_token7] = ACTIONS(2428), + [aux_sym_cmd_identifier_token8] = ACTIONS(2428), + [aux_sym_cmd_identifier_token9] = ACTIONS(2428), + [aux_sym_cmd_identifier_token10] = ACTIONS(2428), + [aux_sym_cmd_identifier_token11] = ACTIONS(2428), + [aux_sym_cmd_identifier_token12] = ACTIONS(2428), + [aux_sym_cmd_identifier_token13] = ACTIONS(2428), + [aux_sym_cmd_identifier_token14] = ACTIONS(2428), + [aux_sym_cmd_identifier_token15] = ACTIONS(2428), + [aux_sym_cmd_identifier_token16] = ACTIONS(2428), + [aux_sym_cmd_identifier_token17] = ACTIONS(2428), + [aux_sym_cmd_identifier_token18] = ACTIONS(2428), + [aux_sym_cmd_identifier_token19] = ACTIONS(2428), + [aux_sym_cmd_identifier_token20] = ACTIONS(2428), + [aux_sym_cmd_identifier_token21] = ACTIONS(2428), + [aux_sym_cmd_identifier_token22] = ACTIONS(2428), + [aux_sym_cmd_identifier_token23] = ACTIONS(2428), + [aux_sym_cmd_identifier_token24] = ACTIONS(2428), + [aux_sym_cmd_identifier_token25] = ACTIONS(2428), + [aux_sym_cmd_identifier_token26] = ACTIONS(2428), + [aux_sym_cmd_identifier_token27] = ACTIONS(2428), + [aux_sym_cmd_identifier_token28] = ACTIONS(2428), + [aux_sym_cmd_identifier_token29] = ACTIONS(2428), + [aux_sym_cmd_identifier_token30] = ACTIONS(2428), + [aux_sym_cmd_identifier_token31] = ACTIONS(2428), + [aux_sym_cmd_identifier_token32] = ACTIONS(2428), + [aux_sym_cmd_identifier_token33] = ACTIONS(2428), + [aux_sym_cmd_identifier_token34] = ACTIONS(2428), + [aux_sym_cmd_identifier_token35] = ACTIONS(2428), + [aux_sym_cmd_identifier_token36] = ACTIONS(2428), + [anon_sym_true] = ACTIONS(2428), + [anon_sym_false] = ACTIONS(2428), + [anon_sym_null] = ACTIONS(2428), + [aux_sym_cmd_identifier_token38] = ACTIONS(2428), + [aux_sym_cmd_identifier_token39] = ACTIONS(2428), + [aux_sym_cmd_identifier_token40] = ACTIONS(2428), + [anon_sym_def] = ACTIONS(2428), + [anon_sym_export_DASHenv] = ACTIONS(2428), + [anon_sym_extern] = ACTIONS(2428), + [anon_sym_module] = ACTIONS(2428), + [anon_sym_use] = ACTIONS(2428), + [anon_sym_LPAREN] = ACTIONS(2428), + [anon_sym_DOLLAR] = ACTIONS(2428), + [anon_sym_error] = ACTIONS(2428), + [anon_sym_list] = ACTIONS(2428), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_break] = ACTIONS(2428), + [anon_sym_continue] = ACTIONS(2428), + [anon_sym_for] = ACTIONS(2428), + [anon_sym_in] = ACTIONS(2428), + [anon_sym_loop] = ACTIONS(2428), + [anon_sym_make] = ACTIONS(2428), + [anon_sym_while] = ACTIONS(2428), + [anon_sym_do] = ACTIONS(2428), + [anon_sym_if] = ACTIONS(2428), + [anon_sym_else] = ACTIONS(2428), + [anon_sym_match] = ACTIONS(2428), + [anon_sym_RBRACE] = ACTIONS(2428), + [anon_sym_try] = ACTIONS(2428), + [anon_sym_catch] = ACTIONS(2428), + [anon_sym_return] = ACTIONS(2428), + [anon_sym_source] = ACTIONS(2428), + [anon_sym_source_DASHenv] = ACTIONS(2428), + [anon_sym_register] = ACTIONS(2428), + [anon_sym_hide] = ACTIONS(2428), + [anon_sym_hide_DASHenv] = ACTIONS(2428), + [anon_sym_overlay] = ACTIONS(2428), + [anon_sym_new] = ACTIONS(2428), + [anon_sym_as] = ACTIONS(2428), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2428), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2428), + [aux_sym__val_number_decimal_token1] = ACTIONS(2428), + [aux_sym__val_number_decimal_token2] = ACTIONS(2428), + [aux_sym__val_number_decimal_token3] = ACTIONS(2428), + [aux_sym__val_number_decimal_token4] = ACTIONS(2428), + [aux_sym__val_number_token1] = ACTIONS(2428), + [aux_sym__val_number_token2] = ACTIONS(2428), + [aux_sym__val_number_token3] = ACTIONS(2428), + [anon_sym_DQUOTE] = ACTIONS(2428), + [sym__str_single_quotes] = ACTIONS(2428), + [sym__str_back_ticks] = ACTIONS(2428), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2428), + [sym__entry_separator] = ACTIONS(2430), + [anon_sym_PLUS] = ACTIONS(2428), [anon_sym_POUND] = ACTIONS(3), }, [540] = { [sym_comment] = STATE(540), - [anon_sym_export] = ACTIONS(1747), - [anon_sym_alias] = ACTIONS(1747), - [anon_sym_let] = ACTIONS(1747), - [anon_sym_let_DASHenv] = ACTIONS(1747), - [anon_sym_mut] = ACTIONS(1747), - [anon_sym_const] = ACTIONS(1747), - [aux_sym_cmd_identifier_token1] = ACTIONS(1747), - [aux_sym_cmd_identifier_token2] = ACTIONS(1747), - [aux_sym_cmd_identifier_token3] = ACTIONS(1747), - [aux_sym_cmd_identifier_token4] = ACTIONS(1747), - [aux_sym_cmd_identifier_token5] = ACTIONS(1747), - [aux_sym_cmd_identifier_token6] = ACTIONS(1747), - [aux_sym_cmd_identifier_token7] = ACTIONS(1747), - [aux_sym_cmd_identifier_token8] = ACTIONS(1747), - [aux_sym_cmd_identifier_token9] = ACTIONS(1747), - [aux_sym_cmd_identifier_token10] = ACTIONS(1747), - [aux_sym_cmd_identifier_token11] = ACTIONS(1747), - [aux_sym_cmd_identifier_token12] = ACTIONS(1747), - [aux_sym_cmd_identifier_token13] = ACTIONS(1747), - [aux_sym_cmd_identifier_token14] = ACTIONS(1747), - [aux_sym_cmd_identifier_token15] = ACTIONS(1747), - [aux_sym_cmd_identifier_token16] = ACTIONS(1747), - [aux_sym_cmd_identifier_token17] = ACTIONS(1747), - [aux_sym_cmd_identifier_token18] = ACTIONS(1747), - [aux_sym_cmd_identifier_token19] = ACTIONS(1747), - [aux_sym_cmd_identifier_token20] = ACTIONS(1747), - [aux_sym_cmd_identifier_token21] = ACTIONS(1747), - [aux_sym_cmd_identifier_token22] = ACTIONS(1747), - [aux_sym_cmd_identifier_token23] = ACTIONS(1747), - [aux_sym_cmd_identifier_token24] = ACTIONS(1747), - [aux_sym_cmd_identifier_token25] = ACTIONS(1747), - [aux_sym_cmd_identifier_token26] = ACTIONS(1747), - [aux_sym_cmd_identifier_token27] = ACTIONS(1747), - [aux_sym_cmd_identifier_token28] = ACTIONS(1747), - [aux_sym_cmd_identifier_token29] = ACTIONS(1747), - [aux_sym_cmd_identifier_token30] = ACTIONS(1747), - [aux_sym_cmd_identifier_token31] = ACTIONS(1747), - [aux_sym_cmd_identifier_token32] = ACTIONS(1747), - [aux_sym_cmd_identifier_token33] = ACTIONS(1747), - [aux_sym_cmd_identifier_token34] = ACTIONS(1747), - [aux_sym_cmd_identifier_token35] = ACTIONS(1747), - [aux_sym_cmd_identifier_token36] = ACTIONS(1747), - [anon_sym_true] = ACTIONS(1747), - [anon_sym_false] = ACTIONS(1747), - [anon_sym_null] = ACTIONS(1747), - [aux_sym_cmd_identifier_token38] = ACTIONS(1747), - [aux_sym_cmd_identifier_token39] = ACTIONS(1747), - [aux_sym_cmd_identifier_token40] = ACTIONS(1747), - [anon_sym_def] = ACTIONS(1747), - [anon_sym_export_DASHenv] = ACTIONS(1747), - [anon_sym_extern] = ACTIONS(1747), - [anon_sym_module] = ACTIONS(1747), - [anon_sym_use] = ACTIONS(1747), - [anon_sym_LPAREN] = ACTIONS(1747), - [anon_sym_DOLLAR] = ACTIONS(1747), - [anon_sym_error] = ACTIONS(1747), - [anon_sym_list] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_break] = ACTIONS(1747), - [anon_sym_continue] = ACTIONS(1747), - [anon_sym_for] = ACTIONS(1747), - [anon_sym_in] = ACTIONS(1747), - [anon_sym_loop] = ACTIONS(1747), - [anon_sym_make] = ACTIONS(1747), - [anon_sym_while] = ACTIONS(1747), - [anon_sym_do] = ACTIONS(1747), - [anon_sym_if] = ACTIONS(1747), - [anon_sym_else] = ACTIONS(1747), - [anon_sym_match] = ACTIONS(1747), - [anon_sym_RBRACE] = ACTIONS(1747), - [anon_sym_try] = ACTIONS(1747), - [anon_sym_catch] = ACTIONS(1747), - [anon_sym_return] = ACTIONS(1747), - [anon_sym_source] = ACTIONS(1747), - [anon_sym_source_DASHenv] = ACTIONS(1747), - [anon_sym_register] = ACTIONS(1747), - [anon_sym_hide] = ACTIONS(1747), - [anon_sym_hide_DASHenv] = ACTIONS(1747), - [anon_sym_overlay] = ACTIONS(1747), - [anon_sym_new] = ACTIONS(1747), - [anon_sym_as] = ACTIONS(1747), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1747), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1747), - [aux_sym__val_number_decimal_token1] = ACTIONS(1747), - [aux_sym__val_number_decimal_token2] = ACTIONS(1747), - [aux_sym__val_number_decimal_token3] = ACTIONS(1747), - [aux_sym__val_number_decimal_token4] = ACTIONS(1747), - [aux_sym__val_number_token1] = ACTIONS(1747), - [aux_sym__val_number_token2] = ACTIONS(1747), - [aux_sym__val_number_token3] = ACTIONS(1747), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym__str_single_quotes] = ACTIONS(1747), - [sym__str_back_ticks] = ACTIONS(1747), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1747), - [sym__entry_separator] = ACTIONS(1749), - [anon_sym_PLUS] = ACTIONS(1747), + [anon_sym_export] = ACTIONS(2432), + [anon_sym_alias] = ACTIONS(2432), + [anon_sym_let] = ACTIONS(2432), + [anon_sym_let_DASHenv] = ACTIONS(2432), + [anon_sym_mut] = ACTIONS(2432), + [anon_sym_const] = ACTIONS(2432), + [aux_sym_cmd_identifier_token1] = ACTIONS(2432), + [aux_sym_cmd_identifier_token2] = ACTIONS(2432), + [aux_sym_cmd_identifier_token3] = ACTIONS(2432), + [aux_sym_cmd_identifier_token4] = ACTIONS(2432), + [aux_sym_cmd_identifier_token5] = ACTIONS(2432), + [aux_sym_cmd_identifier_token6] = ACTIONS(2432), + [aux_sym_cmd_identifier_token7] = ACTIONS(2432), + [aux_sym_cmd_identifier_token8] = ACTIONS(2432), + [aux_sym_cmd_identifier_token9] = ACTIONS(2432), + [aux_sym_cmd_identifier_token10] = ACTIONS(2432), + [aux_sym_cmd_identifier_token11] = ACTIONS(2432), + [aux_sym_cmd_identifier_token12] = ACTIONS(2432), + [aux_sym_cmd_identifier_token13] = ACTIONS(2432), + [aux_sym_cmd_identifier_token14] = ACTIONS(2432), + [aux_sym_cmd_identifier_token15] = ACTIONS(2432), + [aux_sym_cmd_identifier_token16] = ACTIONS(2432), + [aux_sym_cmd_identifier_token17] = ACTIONS(2432), + [aux_sym_cmd_identifier_token18] = ACTIONS(2432), + [aux_sym_cmd_identifier_token19] = ACTIONS(2432), + [aux_sym_cmd_identifier_token20] = ACTIONS(2432), + [aux_sym_cmd_identifier_token21] = ACTIONS(2432), + [aux_sym_cmd_identifier_token22] = ACTIONS(2432), + [aux_sym_cmd_identifier_token23] = ACTIONS(2432), + [aux_sym_cmd_identifier_token24] = ACTIONS(2432), + [aux_sym_cmd_identifier_token25] = ACTIONS(2432), + [aux_sym_cmd_identifier_token26] = ACTIONS(2432), + [aux_sym_cmd_identifier_token27] = ACTIONS(2432), + [aux_sym_cmd_identifier_token28] = ACTIONS(2432), + [aux_sym_cmd_identifier_token29] = ACTIONS(2432), + [aux_sym_cmd_identifier_token30] = ACTIONS(2432), + [aux_sym_cmd_identifier_token31] = ACTIONS(2432), + [aux_sym_cmd_identifier_token32] = ACTIONS(2432), + [aux_sym_cmd_identifier_token33] = ACTIONS(2432), + [aux_sym_cmd_identifier_token34] = ACTIONS(2432), + [aux_sym_cmd_identifier_token35] = ACTIONS(2432), + [aux_sym_cmd_identifier_token36] = ACTIONS(2432), + [anon_sym_true] = ACTIONS(2432), + [anon_sym_false] = ACTIONS(2432), + [anon_sym_null] = ACTIONS(2432), + [aux_sym_cmd_identifier_token38] = ACTIONS(2432), + [aux_sym_cmd_identifier_token39] = ACTIONS(2432), + [aux_sym_cmd_identifier_token40] = ACTIONS(2432), + [anon_sym_def] = ACTIONS(2432), + [anon_sym_export_DASHenv] = ACTIONS(2432), + [anon_sym_extern] = ACTIONS(2432), + [anon_sym_module] = ACTIONS(2432), + [anon_sym_use] = ACTIONS(2432), + [anon_sym_LPAREN] = ACTIONS(2432), + [anon_sym_DOLLAR] = ACTIONS(2432), + [anon_sym_error] = ACTIONS(2432), + [anon_sym_list] = ACTIONS(2432), + [anon_sym_DASH] = ACTIONS(2432), + [anon_sym_break] = ACTIONS(2432), + [anon_sym_continue] = ACTIONS(2432), + [anon_sym_for] = ACTIONS(2432), + [anon_sym_in] = ACTIONS(2432), + [anon_sym_loop] = ACTIONS(2432), + [anon_sym_make] = ACTIONS(2432), + [anon_sym_while] = ACTIONS(2432), + [anon_sym_do] = ACTIONS(2432), + [anon_sym_if] = ACTIONS(2432), + [anon_sym_else] = ACTIONS(2432), + [anon_sym_match] = ACTIONS(2432), + [anon_sym_RBRACE] = ACTIONS(2432), + [anon_sym_try] = ACTIONS(2432), + [anon_sym_catch] = ACTIONS(2432), + [anon_sym_return] = ACTIONS(2432), + [anon_sym_source] = ACTIONS(2432), + [anon_sym_source_DASHenv] = ACTIONS(2432), + [anon_sym_register] = ACTIONS(2432), + [anon_sym_hide] = ACTIONS(2432), + [anon_sym_hide_DASHenv] = ACTIONS(2432), + [anon_sym_overlay] = ACTIONS(2432), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_as] = ACTIONS(2432), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2432), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2432), + [aux_sym__val_number_decimal_token1] = ACTIONS(2432), + [aux_sym__val_number_decimal_token2] = ACTIONS(2432), + [aux_sym__val_number_decimal_token3] = ACTIONS(2432), + [aux_sym__val_number_decimal_token4] = ACTIONS(2432), + [aux_sym__val_number_token1] = ACTIONS(2432), + [aux_sym__val_number_token2] = ACTIONS(2432), + [aux_sym__val_number_token3] = ACTIONS(2432), + [anon_sym_DQUOTE] = ACTIONS(2432), + [sym__str_single_quotes] = ACTIONS(2432), + [sym__str_back_ticks] = ACTIONS(2432), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2432), + [sym__entry_separator] = ACTIONS(2434), + [anon_sym_PLUS] = ACTIONS(2432), [anon_sym_POUND] = ACTIONS(3), }, [541] = { [sym_comment] = STATE(541), - [anon_sym_export] = ACTIONS(1855), - [anon_sym_alias] = ACTIONS(1855), - [anon_sym_let] = ACTIONS(1855), - [anon_sym_let_DASHenv] = ACTIONS(1855), - [anon_sym_mut] = ACTIONS(1855), - [anon_sym_const] = ACTIONS(1855), - [aux_sym_cmd_identifier_token1] = ACTIONS(1855), - [aux_sym_cmd_identifier_token2] = ACTIONS(1855), - [aux_sym_cmd_identifier_token3] = ACTIONS(1855), - [aux_sym_cmd_identifier_token4] = ACTIONS(1855), - [aux_sym_cmd_identifier_token5] = ACTIONS(1855), - [aux_sym_cmd_identifier_token6] = ACTIONS(1855), - [aux_sym_cmd_identifier_token7] = ACTIONS(1855), - [aux_sym_cmd_identifier_token8] = ACTIONS(1855), - [aux_sym_cmd_identifier_token9] = ACTIONS(1855), - [aux_sym_cmd_identifier_token10] = ACTIONS(1855), - [aux_sym_cmd_identifier_token11] = ACTIONS(1855), - [aux_sym_cmd_identifier_token12] = ACTIONS(1855), - [aux_sym_cmd_identifier_token13] = ACTIONS(1855), - [aux_sym_cmd_identifier_token14] = ACTIONS(1855), - [aux_sym_cmd_identifier_token15] = ACTIONS(1855), - [aux_sym_cmd_identifier_token16] = ACTIONS(1855), - [aux_sym_cmd_identifier_token17] = ACTIONS(1855), - [aux_sym_cmd_identifier_token18] = ACTIONS(1855), - [aux_sym_cmd_identifier_token19] = ACTIONS(1855), - [aux_sym_cmd_identifier_token20] = ACTIONS(1855), - [aux_sym_cmd_identifier_token21] = ACTIONS(1855), - [aux_sym_cmd_identifier_token22] = ACTIONS(1855), - [aux_sym_cmd_identifier_token23] = ACTIONS(1855), - [aux_sym_cmd_identifier_token24] = ACTIONS(1855), - [aux_sym_cmd_identifier_token25] = ACTIONS(1855), - [aux_sym_cmd_identifier_token26] = ACTIONS(1855), - [aux_sym_cmd_identifier_token27] = ACTIONS(1855), - [aux_sym_cmd_identifier_token28] = ACTIONS(1855), - [aux_sym_cmd_identifier_token29] = ACTIONS(1855), - [aux_sym_cmd_identifier_token30] = ACTIONS(1855), - [aux_sym_cmd_identifier_token31] = ACTIONS(1855), - [aux_sym_cmd_identifier_token32] = ACTIONS(1855), - [aux_sym_cmd_identifier_token33] = ACTIONS(1855), - [aux_sym_cmd_identifier_token34] = ACTIONS(1855), - [aux_sym_cmd_identifier_token35] = ACTIONS(1855), - [aux_sym_cmd_identifier_token36] = ACTIONS(1855), - [anon_sym_true] = ACTIONS(1855), - [anon_sym_false] = ACTIONS(1855), - [anon_sym_null] = ACTIONS(1855), - [aux_sym_cmd_identifier_token38] = ACTIONS(1855), - [aux_sym_cmd_identifier_token39] = ACTIONS(1855), - [aux_sym_cmd_identifier_token40] = ACTIONS(1855), - [anon_sym_def] = ACTIONS(1855), - [anon_sym_export_DASHenv] = ACTIONS(1855), - [anon_sym_extern] = ACTIONS(1855), - [anon_sym_module] = ACTIONS(1855), - [anon_sym_use] = ACTIONS(1855), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_DOLLAR] = ACTIONS(1855), - [anon_sym_error] = ACTIONS(1855), - [anon_sym_list] = ACTIONS(1855), - [anon_sym_DASH] = ACTIONS(1855), - [anon_sym_break] = ACTIONS(1855), - [anon_sym_continue] = ACTIONS(1855), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_in] = ACTIONS(1855), - [anon_sym_loop] = ACTIONS(1855), - [anon_sym_make] = ACTIONS(1855), - [anon_sym_while] = ACTIONS(1855), - [anon_sym_do] = ACTIONS(1855), - [anon_sym_if] = ACTIONS(1855), - [anon_sym_else] = ACTIONS(1855), - [anon_sym_match] = ACTIONS(1855), - [anon_sym_RBRACE] = ACTIONS(1855), - [anon_sym_try] = ACTIONS(1855), - [anon_sym_catch] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1855), - [anon_sym_source] = ACTIONS(1855), - [anon_sym_source_DASHenv] = ACTIONS(1855), - [anon_sym_register] = ACTIONS(1855), - [anon_sym_hide] = ACTIONS(1855), - [anon_sym_hide_DASHenv] = ACTIONS(1855), - [anon_sym_overlay] = ACTIONS(1855), - [anon_sym_new] = ACTIONS(1855), - [anon_sym_as] = ACTIONS(1855), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1855), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1855), - [aux_sym__val_number_decimal_token1] = ACTIONS(1855), - [aux_sym__val_number_decimal_token2] = ACTIONS(1855), - [aux_sym__val_number_decimal_token3] = ACTIONS(1855), - [aux_sym__val_number_decimal_token4] = ACTIONS(1855), - [aux_sym__val_number_token1] = ACTIONS(1855), - [aux_sym__val_number_token2] = ACTIONS(1855), - [aux_sym__val_number_token3] = ACTIONS(1855), - [anon_sym_DQUOTE] = ACTIONS(1855), - [sym__str_single_quotes] = ACTIONS(1855), - [sym__str_back_ticks] = ACTIONS(1855), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1855), - [sym__entry_separator] = ACTIONS(1857), - [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_export] = ACTIONS(1575), + [anon_sym_alias] = ACTIONS(1575), + [anon_sym_let] = ACTIONS(1575), + [anon_sym_let_DASHenv] = ACTIONS(1575), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_const] = ACTIONS(1575), + [aux_sym_cmd_identifier_token1] = ACTIONS(1575), + [aux_sym_cmd_identifier_token2] = ACTIONS(1575), + [aux_sym_cmd_identifier_token3] = ACTIONS(1575), + [aux_sym_cmd_identifier_token4] = ACTIONS(1575), + [aux_sym_cmd_identifier_token5] = ACTIONS(1575), + [aux_sym_cmd_identifier_token6] = ACTIONS(1575), + [aux_sym_cmd_identifier_token7] = ACTIONS(1575), + [aux_sym_cmd_identifier_token8] = ACTIONS(1575), + [aux_sym_cmd_identifier_token9] = ACTIONS(1575), + [aux_sym_cmd_identifier_token10] = ACTIONS(1575), + [aux_sym_cmd_identifier_token11] = ACTIONS(1575), + [aux_sym_cmd_identifier_token12] = ACTIONS(1575), + [aux_sym_cmd_identifier_token13] = ACTIONS(1575), + [aux_sym_cmd_identifier_token14] = ACTIONS(1575), + [aux_sym_cmd_identifier_token15] = ACTIONS(1575), + [aux_sym_cmd_identifier_token16] = ACTIONS(1575), + [aux_sym_cmd_identifier_token17] = ACTIONS(1575), + [aux_sym_cmd_identifier_token18] = ACTIONS(1575), + [aux_sym_cmd_identifier_token19] = ACTIONS(1575), + [aux_sym_cmd_identifier_token20] = ACTIONS(1575), + [aux_sym_cmd_identifier_token21] = ACTIONS(1575), + [aux_sym_cmd_identifier_token22] = ACTIONS(1575), + [aux_sym_cmd_identifier_token23] = ACTIONS(1575), + [aux_sym_cmd_identifier_token24] = ACTIONS(1575), + [aux_sym_cmd_identifier_token25] = ACTIONS(1575), + [aux_sym_cmd_identifier_token26] = ACTIONS(1575), + [aux_sym_cmd_identifier_token27] = ACTIONS(1575), + [aux_sym_cmd_identifier_token28] = ACTIONS(1575), + [aux_sym_cmd_identifier_token29] = ACTIONS(1575), + [aux_sym_cmd_identifier_token30] = ACTIONS(1575), + [aux_sym_cmd_identifier_token31] = ACTIONS(1575), + [aux_sym_cmd_identifier_token32] = ACTIONS(1575), + [aux_sym_cmd_identifier_token33] = ACTIONS(1575), + [aux_sym_cmd_identifier_token34] = ACTIONS(1575), + [aux_sym_cmd_identifier_token35] = ACTIONS(1575), + [aux_sym_cmd_identifier_token36] = ACTIONS(1575), + [anon_sym_true] = ACTIONS(1575), + [anon_sym_false] = ACTIONS(1575), + [anon_sym_null] = ACTIONS(1575), + [aux_sym_cmd_identifier_token38] = ACTIONS(1575), + [aux_sym_cmd_identifier_token39] = ACTIONS(1575), + [aux_sym_cmd_identifier_token40] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(1575), + [anon_sym_export_DASHenv] = ACTIONS(1575), + [anon_sym_extern] = ACTIONS(1575), + [anon_sym_module] = ACTIONS(1575), + [anon_sym_use] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1575), + [anon_sym_DOLLAR] = ACTIONS(1575), + [anon_sym_error] = ACTIONS(1575), + [anon_sym_list] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_break] = ACTIONS(1575), + [anon_sym_continue] = ACTIONS(1575), + [anon_sym_for] = ACTIONS(1575), + [anon_sym_in] = ACTIONS(1575), + [anon_sym_loop] = ACTIONS(1575), + [anon_sym_make] = ACTIONS(1575), + [anon_sym_while] = ACTIONS(1575), + [anon_sym_do] = ACTIONS(1575), + [anon_sym_if] = ACTIONS(1575), + [anon_sym_else] = ACTIONS(1575), + [anon_sym_match] = ACTIONS(1575), + [anon_sym_RBRACE] = ACTIONS(1575), + [anon_sym_try] = ACTIONS(1575), + [anon_sym_catch] = ACTIONS(1575), + [anon_sym_return] = ACTIONS(1575), + [anon_sym_source] = ACTIONS(1575), + [anon_sym_source_DASHenv] = ACTIONS(1575), + [anon_sym_register] = ACTIONS(1575), + [anon_sym_hide] = ACTIONS(1575), + [anon_sym_hide_DASHenv] = ACTIONS(1575), + [anon_sym_overlay] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1575), + [anon_sym_as] = ACTIONS(1575), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1575), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1575), + [aux_sym__val_number_decimal_token1] = ACTIONS(1575), + [aux_sym__val_number_decimal_token2] = ACTIONS(1575), + [aux_sym__val_number_decimal_token3] = ACTIONS(1575), + [aux_sym__val_number_decimal_token4] = ACTIONS(1575), + [aux_sym__val_number_token1] = ACTIONS(1575), + [aux_sym__val_number_token2] = ACTIONS(1575), + [aux_sym__val_number_token3] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1575), + [sym__str_single_quotes] = ACTIONS(1575), + [sym__str_back_ticks] = ACTIONS(1575), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1575), + [sym__entry_separator] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(1575), [anon_sym_POUND] = ACTIONS(3), }, [542] = { [sym_comment] = STATE(542), - [aux_sym_shebang_repeat1] = STATE(542), - [anon_sym_export] = ACTIONS(1755), - [anon_sym_alias] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_let_DASHenv] = ACTIONS(1755), - [anon_sym_mut] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [aux_sym_cmd_identifier_token1] = ACTIONS(1755), - [aux_sym_cmd_identifier_token2] = ACTIONS(1755), - [aux_sym_cmd_identifier_token3] = ACTIONS(1755), - [aux_sym_cmd_identifier_token4] = ACTIONS(1755), - [aux_sym_cmd_identifier_token5] = ACTIONS(1755), - [aux_sym_cmd_identifier_token6] = ACTIONS(1755), - [aux_sym_cmd_identifier_token7] = ACTIONS(1755), - [aux_sym_cmd_identifier_token8] = ACTIONS(1755), - [aux_sym_cmd_identifier_token9] = ACTIONS(1755), - [aux_sym_cmd_identifier_token10] = ACTIONS(1755), - [aux_sym_cmd_identifier_token11] = ACTIONS(1755), - [aux_sym_cmd_identifier_token12] = ACTIONS(1755), - [aux_sym_cmd_identifier_token13] = ACTIONS(1755), - [aux_sym_cmd_identifier_token14] = ACTIONS(1755), - [aux_sym_cmd_identifier_token15] = ACTIONS(1755), - [aux_sym_cmd_identifier_token16] = ACTIONS(1755), - [aux_sym_cmd_identifier_token17] = ACTIONS(1755), - [aux_sym_cmd_identifier_token18] = ACTIONS(1755), - [aux_sym_cmd_identifier_token19] = ACTIONS(1755), - [aux_sym_cmd_identifier_token20] = ACTIONS(1755), - [aux_sym_cmd_identifier_token21] = ACTIONS(1755), - [aux_sym_cmd_identifier_token22] = ACTIONS(1755), - [aux_sym_cmd_identifier_token23] = ACTIONS(1755), - [aux_sym_cmd_identifier_token24] = ACTIONS(1755), - [aux_sym_cmd_identifier_token25] = ACTIONS(1755), - [aux_sym_cmd_identifier_token26] = ACTIONS(1755), - [aux_sym_cmd_identifier_token27] = ACTIONS(1755), - [aux_sym_cmd_identifier_token28] = ACTIONS(1755), - [aux_sym_cmd_identifier_token29] = ACTIONS(1755), - [aux_sym_cmd_identifier_token30] = ACTIONS(1755), - [aux_sym_cmd_identifier_token31] = ACTIONS(1755), - [aux_sym_cmd_identifier_token32] = ACTIONS(1755), - [aux_sym_cmd_identifier_token33] = ACTIONS(1755), - [aux_sym_cmd_identifier_token34] = ACTIONS(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1755), - [aux_sym_cmd_identifier_token36] = ACTIONS(1755), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [anon_sym_null] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [sym__newline] = ACTIONS(2356), - [anon_sym_def] = ACTIONS(1755), - [anon_sym_export_DASHenv] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1755), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_use] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_list] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in] = ACTIONS(1755), - [anon_sym_loop] = ACTIONS(1755), - [anon_sym_make] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_else] = ACTIONS(1755), - [anon_sym_match] = ACTIONS(1755), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_catch] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_source] = ACTIONS(1755), - [anon_sym_source_DASHenv] = ACTIONS(1755), - [anon_sym_register] = ACTIONS(1755), - [anon_sym_hide] = ACTIONS(1755), - [anon_sym_hide_DASHenv] = ACTIONS(1755), - [anon_sym_overlay] = ACTIONS(1755), - [anon_sym_new] = ACTIONS(1755), - [anon_sym_as] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(2436), + [anon_sym_alias] = ACTIONS(2436), + [anon_sym_let] = ACTIONS(2436), + [anon_sym_let_DASHenv] = ACTIONS(2436), + [anon_sym_mut] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [aux_sym_cmd_identifier_token1] = ACTIONS(2436), + [aux_sym_cmd_identifier_token2] = ACTIONS(2436), + [aux_sym_cmd_identifier_token3] = ACTIONS(2436), + [aux_sym_cmd_identifier_token4] = ACTIONS(2436), + [aux_sym_cmd_identifier_token5] = ACTIONS(2436), + [aux_sym_cmd_identifier_token6] = ACTIONS(2436), + [aux_sym_cmd_identifier_token7] = ACTIONS(2436), + [aux_sym_cmd_identifier_token8] = ACTIONS(2436), + [aux_sym_cmd_identifier_token9] = ACTIONS(2436), + [aux_sym_cmd_identifier_token10] = ACTIONS(2436), + [aux_sym_cmd_identifier_token11] = ACTIONS(2436), + [aux_sym_cmd_identifier_token12] = ACTIONS(2436), + [aux_sym_cmd_identifier_token13] = ACTIONS(2436), + [aux_sym_cmd_identifier_token14] = ACTIONS(2436), + [aux_sym_cmd_identifier_token15] = ACTIONS(2436), + [aux_sym_cmd_identifier_token16] = ACTIONS(2436), + [aux_sym_cmd_identifier_token17] = ACTIONS(2436), + [aux_sym_cmd_identifier_token18] = ACTIONS(2436), + [aux_sym_cmd_identifier_token19] = ACTIONS(2436), + [aux_sym_cmd_identifier_token20] = ACTIONS(2436), + [aux_sym_cmd_identifier_token21] = ACTIONS(2436), + [aux_sym_cmd_identifier_token22] = ACTIONS(2436), + [aux_sym_cmd_identifier_token23] = ACTIONS(2436), + [aux_sym_cmd_identifier_token24] = ACTIONS(2436), + [aux_sym_cmd_identifier_token25] = ACTIONS(2436), + [aux_sym_cmd_identifier_token26] = ACTIONS(2436), + [aux_sym_cmd_identifier_token27] = ACTIONS(2436), + [aux_sym_cmd_identifier_token28] = ACTIONS(2436), + [aux_sym_cmd_identifier_token29] = ACTIONS(2436), + [aux_sym_cmd_identifier_token30] = ACTIONS(2436), + [aux_sym_cmd_identifier_token31] = ACTIONS(2436), + [aux_sym_cmd_identifier_token32] = ACTIONS(2436), + [aux_sym_cmd_identifier_token33] = ACTIONS(2436), + [aux_sym_cmd_identifier_token34] = ACTIONS(2436), + [aux_sym_cmd_identifier_token35] = ACTIONS(2436), + [aux_sym_cmd_identifier_token36] = ACTIONS(2436), + [anon_sym_true] = ACTIONS(2436), + [anon_sym_false] = ACTIONS(2436), + [anon_sym_null] = ACTIONS(2436), + [aux_sym_cmd_identifier_token38] = ACTIONS(2436), + [aux_sym_cmd_identifier_token39] = ACTIONS(2436), + [aux_sym_cmd_identifier_token40] = ACTIONS(2436), + [anon_sym_def] = ACTIONS(2436), + [anon_sym_export_DASHenv] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym_module] = ACTIONS(2436), + [anon_sym_use] = ACTIONS(2436), + [anon_sym_LPAREN] = ACTIONS(2436), + [anon_sym_DOLLAR] = ACTIONS(2436), + [anon_sym_error] = ACTIONS(2436), + [anon_sym_list] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_break] = ACTIONS(2436), + [anon_sym_continue] = ACTIONS(2436), + [anon_sym_for] = ACTIONS(2436), + [anon_sym_in] = ACTIONS(2436), + [anon_sym_loop] = ACTIONS(2436), + [anon_sym_make] = ACTIONS(2436), + [anon_sym_while] = ACTIONS(2436), + [anon_sym_do] = ACTIONS(2436), + [anon_sym_if] = ACTIONS(2436), + [anon_sym_else] = ACTIONS(2436), + [anon_sym_match] = ACTIONS(2436), + [anon_sym_RBRACE] = ACTIONS(2436), + [anon_sym_try] = ACTIONS(2436), + [anon_sym_catch] = ACTIONS(2436), + [anon_sym_return] = ACTIONS(2436), + [anon_sym_source] = ACTIONS(2436), + [anon_sym_source_DASHenv] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_hide] = ACTIONS(2436), + [anon_sym_hide_DASHenv] = ACTIONS(2436), + [anon_sym_overlay] = ACTIONS(2436), + [anon_sym_new] = ACTIONS(2436), + [anon_sym_as] = ACTIONS(2436), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2436), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2436), + [aux_sym__val_number_decimal_token1] = ACTIONS(2436), + [aux_sym__val_number_decimal_token2] = ACTIONS(2436), + [aux_sym__val_number_decimal_token3] = ACTIONS(2436), + [aux_sym__val_number_decimal_token4] = ACTIONS(2436), + [aux_sym__val_number_token1] = ACTIONS(2436), + [aux_sym__val_number_token2] = ACTIONS(2436), + [aux_sym__val_number_token3] = ACTIONS(2436), + [anon_sym_DQUOTE] = ACTIONS(2436), + [sym__str_single_quotes] = ACTIONS(2436), + [sym__str_back_ticks] = ACTIONS(2436), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2436), + [sym__entry_separator] = ACTIONS(2438), + [anon_sym_PLUS] = ACTIONS(2436), + [anon_sym_POUND] = ACTIONS(3), }, [543] = { [sym_comment] = STATE(543), - [anon_sym_export] = ACTIONS(1796), - [anon_sym_alias] = ACTIONS(1796), - [anon_sym_let] = ACTIONS(1796), - [anon_sym_let_DASHenv] = ACTIONS(1796), - [anon_sym_mut] = ACTIONS(1796), - [anon_sym_const] = ACTIONS(1796), - [aux_sym_cmd_identifier_token1] = ACTIONS(1796), - [aux_sym_cmd_identifier_token2] = ACTIONS(1796), - [aux_sym_cmd_identifier_token3] = ACTIONS(1796), - [aux_sym_cmd_identifier_token4] = ACTIONS(1796), - [aux_sym_cmd_identifier_token5] = ACTIONS(1796), - [aux_sym_cmd_identifier_token6] = ACTIONS(1796), - [aux_sym_cmd_identifier_token7] = ACTIONS(1796), - [aux_sym_cmd_identifier_token8] = ACTIONS(1796), - [aux_sym_cmd_identifier_token9] = ACTIONS(1796), - [aux_sym_cmd_identifier_token10] = ACTIONS(1796), - [aux_sym_cmd_identifier_token11] = ACTIONS(1796), - [aux_sym_cmd_identifier_token12] = ACTIONS(1796), - [aux_sym_cmd_identifier_token13] = ACTIONS(1796), - [aux_sym_cmd_identifier_token14] = ACTIONS(1796), - [aux_sym_cmd_identifier_token15] = ACTIONS(1796), - [aux_sym_cmd_identifier_token16] = ACTIONS(1796), - [aux_sym_cmd_identifier_token17] = ACTIONS(1796), - [aux_sym_cmd_identifier_token18] = ACTIONS(1796), - [aux_sym_cmd_identifier_token19] = ACTIONS(1796), - [aux_sym_cmd_identifier_token20] = ACTIONS(1796), - [aux_sym_cmd_identifier_token21] = ACTIONS(1796), - [aux_sym_cmd_identifier_token22] = ACTIONS(1796), - [aux_sym_cmd_identifier_token23] = ACTIONS(1796), - [aux_sym_cmd_identifier_token24] = ACTIONS(1796), - [aux_sym_cmd_identifier_token25] = ACTIONS(1796), - [aux_sym_cmd_identifier_token26] = ACTIONS(1796), - [aux_sym_cmd_identifier_token27] = ACTIONS(1796), - [aux_sym_cmd_identifier_token28] = ACTIONS(1796), - [aux_sym_cmd_identifier_token29] = ACTIONS(1796), - [aux_sym_cmd_identifier_token30] = ACTIONS(1796), - [aux_sym_cmd_identifier_token31] = ACTIONS(1796), - [aux_sym_cmd_identifier_token32] = ACTIONS(1796), - [aux_sym_cmd_identifier_token33] = ACTIONS(1796), - [aux_sym_cmd_identifier_token34] = ACTIONS(1796), - [aux_sym_cmd_identifier_token35] = ACTIONS(1796), - [aux_sym_cmd_identifier_token36] = ACTIONS(1796), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_null] = ACTIONS(1796), - [aux_sym_cmd_identifier_token38] = ACTIONS(1796), - [aux_sym_cmd_identifier_token39] = ACTIONS(1796), - [aux_sym_cmd_identifier_token40] = ACTIONS(1796), - [anon_sym_def] = ACTIONS(1796), - [anon_sym_export_DASHenv] = ACTIONS(1796), - [anon_sym_extern] = ACTIONS(1796), - [anon_sym_module] = ACTIONS(1796), - [anon_sym_use] = ACTIONS(1796), - [anon_sym_LPAREN] = ACTIONS(1796), - [anon_sym_DOLLAR] = ACTIONS(1796), - [anon_sym_error] = ACTIONS(1796), - [anon_sym_list] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_for] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_loop] = ACTIONS(1796), - [anon_sym_make] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_do] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_match] = ACTIONS(1796), - [anon_sym_RBRACE] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_catch] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_source] = ACTIONS(1796), - [anon_sym_source_DASHenv] = ACTIONS(1796), - [anon_sym_register] = ACTIONS(1796), - [anon_sym_hide] = ACTIONS(1796), - [anon_sym_hide_DASHenv] = ACTIONS(1796), - [anon_sym_overlay] = ACTIONS(1796), - [anon_sym_new] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1796), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1796), - [aux_sym__val_number_decimal_token1] = ACTIONS(1796), - [aux_sym__val_number_decimal_token2] = ACTIONS(1796), - [aux_sym__val_number_decimal_token3] = ACTIONS(1796), - [aux_sym__val_number_decimal_token4] = ACTIONS(1796), - [aux_sym__val_number_token1] = ACTIONS(1796), - [aux_sym__val_number_token2] = ACTIONS(1796), - [aux_sym__val_number_token3] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [sym__str_single_quotes] = ACTIONS(1796), - [sym__str_back_ticks] = ACTIONS(1796), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1796), - [sym__entry_separator] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_export] = ACTIONS(1993), + [anon_sym_alias] = ACTIONS(1993), + [anon_sym_let] = ACTIONS(1993), + [anon_sym_let_DASHenv] = ACTIONS(1993), + [anon_sym_mut] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1993), + [aux_sym_cmd_identifier_token1] = ACTIONS(1993), + [aux_sym_cmd_identifier_token2] = ACTIONS(1993), + [aux_sym_cmd_identifier_token3] = ACTIONS(1993), + [aux_sym_cmd_identifier_token4] = ACTIONS(1993), + [aux_sym_cmd_identifier_token5] = ACTIONS(1993), + [aux_sym_cmd_identifier_token6] = ACTIONS(1993), + [aux_sym_cmd_identifier_token7] = ACTIONS(1993), + [aux_sym_cmd_identifier_token8] = ACTIONS(1993), + [aux_sym_cmd_identifier_token9] = ACTIONS(1993), + [aux_sym_cmd_identifier_token10] = ACTIONS(1993), + [aux_sym_cmd_identifier_token11] = ACTIONS(1993), + [aux_sym_cmd_identifier_token12] = ACTIONS(1993), + [aux_sym_cmd_identifier_token13] = ACTIONS(1993), + [aux_sym_cmd_identifier_token14] = ACTIONS(1993), + [aux_sym_cmd_identifier_token15] = ACTIONS(1993), + [aux_sym_cmd_identifier_token16] = ACTIONS(1993), + [aux_sym_cmd_identifier_token17] = ACTIONS(1993), + [aux_sym_cmd_identifier_token18] = ACTIONS(1993), + [aux_sym_cmd_identifier_token19] = ACTIONS(1993), + [aux_sym_cmd_identifier_token20] = ACTIONS(1993), + [aux_sym_cmd_identifier_token21] = ACTIONS(1993), + [aux_sym_cmd_identifier_token22] = ACTIONS(1993), + [aux_sym_cmd_identifier_token23] = ACTIONS(1993), + [aux_sym_cmd_identifier_token24] = ACTIONS(1993), + [aux_sym_cmd_identifier_token25] = ACTIONS(1993), + [aux_sym_cmd_identifier_token26] = ACTIONS(1993), + [aux_sym_cmd_identifier_token27] = ACTIONS(1993), + [aux_sym_cmd_identifier_token28] = ACTIONS(1993), + [aux_sym_cmd_identifier_token29] = ACTIONS(1993), + [aux_sym_cmd_identifier_token30] = ACTIONS(1993), + [aux_sym_cmd_identifier_token31] = ACTIONS(1993), + [aux_sym_cmd_identifier_token32] = ACTIONS(1993), + [aux_sym_cmd_identifier_token33] = ACTIONS(1993), + [aux_sym_cmd_identifier_token34] = ACTIONS(1993), + [aux_sym_cmd_identifier_token35] = ACTIONS(1993), + [aux_sym_cmd_identifier_token36] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(1993), + [anon_sym_false] = ACTIONS(1993), + [anon_sym_null] = ACTIONS(1993), + [aux_sym_cmd_identifier_token38] = ACTIONS(1993), + [aux_sym_cmd_identifier_token39] = ACTIONS(1993), + [aux_sym_cmd_identifier_token40] = ACTIONS(1993), + [anon_sym_def] = ACTIONS(1993), + [anon_sym_export_DASHenv] = ACTIONS(1993), + [anon_sym_extern] = ACTIONS(1993), + [anon_sym_module] = ACTIONS(1993), + [anon_sym_use] = ACTIONS(1993), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_DOLLAR] = ACTIONS(1993), + [anon_sym_error] = ACTIONS(1993), + [anon_sym_list] = ACTIONS(1993), + [anon_sym_DASH] = ACTIONS(1993), + [anon_sym_break] = ACTIONS(1993), + [anon_sym_continue] = ACTIONS(1993), + [anon_sym_for] = ACTIONS(1993), + [anon_sym_in] = ACTIONS(1993), + [anon_sym_loop] = ACTIONS(1993), + [anon_sym_make] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1993), + [anon_sym_do] = ACTIONS(1993), + [anon_sym_if] = ACTIONS(1993), + [anon_sym_else] = ACTIONS(1993), + [anon_sym_match] = ACTIONS(1993), + [anon_sym_RBRACE] = ACTIONS(1993), + [anon_sym_try] = ACTIONS(1993), + [anon_sym_catch] = ACTIONS(1993), + [anon_sym_return] = ACTIONS(1993), + [anon_sym_source] = ACTIONS(1993), + [anon_sym_source_DASHenv] = ACTIONS(1993), + [anon_sym_register] = ACTIONS(1993), + [anon_sym_hide] = ACTIONS(1993), + [anon_sym_hide_DASHenv] = ACTIONS(1993), + [anon_sym_overlay] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_as] = ACTIONS(1993), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1993), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1993), + [aux_sym__val_number_decimal_token1] = ACTIONS(1993), + [aux_sym__val_number_decimal_token2] = ACTIONS(1993), + [aux_sym__val_number_decimal_token3] = ACTIONS(1993), + [aux_sym__val_number_decimal_token4] = ACTIONS(1993), + [aux_sym__val_number_token1] = ACTIONS(1993), + [aux_sym__val_number_token2] = ACTIONS(1993), + [aux_sym__val_number_token3] = ACTIONS(1993), + [anon_sym_DQUOTE] = ACTIONS(1993), + [sym__str_single_quotes] = ACTIONS(1993), + [sym__str_back_ticks] = ACTIONS(1993), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1993), + [sym__entry_separator] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(1993), [anon_sym_POUND] = ACTIONS(3), }, [544] = { [sym_comment] = STATE(544), - [anon_sym_export] = ACTIONS(2359), - [anon_sym_alias] = ACTIONS(2359), - [anon_sym_let] = ACTIONS(2359), - [anon_sym_let_DASHenv] = ACTIONS(2359), - [anon_sym_mut] = ACTIONS(2359), - [anon_sym_const] = ACTIONS(2359), - [aux_sym_cmd_identifier_token1] = ACTIONS(2359), - [aux_sym_cmd_identifier_token2] = ACTIONS(2359), - [aux_sym_cmd_identifier_token3] = ACTIONS(2359), - [aux_sym_cmd_identifier_token4] = ACTIONS(2359), - [aux_sym_cmd_identifier_token5] = ACTIONS(2359), - [aux_sym_cmd_identifier_token6] = ACTIONS(2359), - [aux_sym_cmd_identifier_token7] = ACTIONS(2359), - [aux_sym_cmd_identifier_token8] = ACTIONS(2359), - [aux_sym_cmd_identifier_token9] = ACTIONS(2359), - [aux_sym_cmd_identifier_token10] = ACTIONS(2359), - [aux_sym_cmd_identifier_token11] = ACTIONS(2359), - [aux_sym_cmd_identifier_token12] = ACTIONS(2359), - [aux_sym_cmd_identifier_token13] = ACTIONS(2359), - [aux_sym_cmd_identifier_token14] = ACTIONS(2359), - [aux_sym_cmd_identifier_token15] = ACTIONS(2359), - [aux_sym_cmd_identifier_token16] = ACTIONS(2359), - [aux_sym_cmd_identifier_token17] = ACTIONS(2359), - [aux_sym_cmd_identifier_token18] = ACTIONS(2359), - [aux_sym_cmd_identifier_token19] = ACTIONS(2359), - [aux_sym_cmd_identifier_token20] = ACTIONS(2359), - [aux_sym_cmd_identifier_token21] = ACTIONS(2359), - [aux_sym_cmd_identifier_token22] = ACTIONS(2359), - [aux_sym_cmd_identifier_token23] = ACTIONS(2359), - [aux_sym_cmd_identifier_token24] = ACTIONS(2359), - [aux_sym_cmd_identifier_token25] = ACTIONS(2359), - [aux_sym_cmd_identifier_token26] = ACTIONS(2359), - [aux_sym_cmd_identifier_token27] = ACTIONS(2359), - [aux_sym_cmd_identifier_token28] = ACTIONS(2359), - [aux_sym_cmd_identifier_token29] = ACTIONS(2359), - [aux_sym_cmd_identifier_token30] = ACTIONS(2359), - [aux_sym_cmd_identifier_token31] = ACTIONS(2359), - [aux_sym_cmd_identifier_token32] = ACTIONS(2359), - [aux_sym_cmd_identifier_token33] = ACTIONS(2359), - [aux_sym_cmd_identifier_token34] = ACTIONS(2359), - [aux_sym_cmd_identifier_token35] = ACTIONS(2359), - [aux_sym_cmd_identifier_token36] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(2359), - [anon_sym_false] = ACTIONS(2359), - [anon_sym_null] = ACTIONS(2359), - [aux_sym_cmd_identifier_token38] = ACTIONS(2359), - [aux_sym_cmd_identifier_token39] = ACTIONS(2359), - [aux_sym_cmd_identifier_token40] = ACTIONS(2359), - [anon_sym_def] = ACTIONS(2359), - [anon_sym_export_DASHenv] = ACTIONS(2359), - [anon_sym_extern] = ACTIONS(2359), - [anon_sym_module] = ACTIONS(2359), - [anon_sym_use] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2359), - [anon_sym_DOLLAR] = ACTIONS(2359), - [anon_sym_error] = ACTIONS(2359), - [anon_sym_list] = ACTIONS(2359), - [anon_sym_DASH] = ACTIONS(2359), - [anon_sym_break] = ACTIONS(2359), - [anon_sym_continue] = ACTIONS(2359), - [anon_sym_for] = ACTIONS(2359), - [anon_sym_in] = ACTIONS(2359), - [anon_sym_loop] = ACTIONS(2359), - [anon_sym_make] = ACTIONS(2359), - [anon_sym_while] = ACTIONS(2359), - [anon_sym_do] = ACTIONS(2359), - [anon_sym_if] = ACTIONS(2359), - [anon_sym_else] = ACTIONS(2359), - [anon_sym_match] = ACTIONS(2359), - [anon_sym_RBRACE] = ACTIONS(2359), - [anon_sym_try] = ACTIONS(2359), - [anon_sym_catch] = ACTIONS(2359), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_source] = ACTIONS(2359), - [anon_sym_source_DASHenv] = ACTIONS(2359), - [anon_sym_register] = ACTIONS(2359), - [anon_sym_hide] = ACTIONS(2359), - [anon_sym_hide_DASHenv] = ACTIONS(2359), - [anon_sym_overlay] = ACTIONS(2359), - [anon_sym_new] = ACTIONS(2359), - [anon_sym_as] = ACTIONS(2359), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2359), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2359), - [aux_sym__val_number_decimal_token1] = ACTIONS(2359), - [aux_sym__val_number_decimal_token2] = ACTIONS(2359), - [aux_sym__val_number_decimal_token3] = ACTIONS(2359), - [aux_sym__val_number_decimal_token4] = ACTIONS(2359), - [aux_sym__val_number_token1] = ACTIONS(2359), - [aux_sym__val_number_token2] = ACTIONS(2359), - [aux_sym__val_number_token3] = ACTIONS(2359), - [anon_sym_DQUOTE] = ACTIONS(2359), - [sym__str_single_quotes] = ACTIONS(2359), - [sym__str_back_ticks] = ACTIONS(2359), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2359), - [sym__entry_separator] = ACTIONS(2361), - [anon_sym_PLUS] = ACTIONS(2359), + [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), + [aux_sym_cmd_identifier_token1] = ACTIONS(1909), + [aux_sym_cmd_identifier_token2] = ACTIONS(1909), + [aux_sym_cmd_identifier_token3] = ACTIONS(1909), + [aux_sym_cmd_identifier_token4] = ACTIONS(1909), + [aux_sym_cmd_identifier_token5] = ACTIONS(1909), + [aux_sym_cmd_identifier_token6] = ACTIONS(1909), + [aux_sym_cmd_identifier_token7] = ACTIONS(1909), + [aux_sym_cmd_identifier_token8] = ACTIONS(1909), + [aux_sym_cmd_identifier_token9] = ACTIONS(1909), + [aux_sym_cmd_identifier_token10] = ACTIONS(1909), + [aux_sym_cmd_identifier_token11] = ACTIONS(1909), + [aux_sym_cmd_identifier_token12] = ACTIONS(1909), + [aux_sym_cmd_identifier_token13] = ACTIONS(1909), + [aux_sym_cmd_identifier_token14] = ACTIONS(1909), + [aux_sym_cmd_identifier_token15] = ACTIONS(1909), + [aux_sym_cmd_identifier_token16] = ACTIONS(1909), + [aux_sym_cmd_identifier_token17] = ACTIONS(1909), + [aux_sym_cmd_identifier_token18] = ACTIONS(1909), + [aux_sym_cmd_identifier_token19] = ACTIONS(1909), + [aux_sym_cmd_identifier_token20] = ACTIONS(1909), + [aux_sym_cmd_identifier_token21] = ACTIONS(1909), + [aux_sym_cmd_identifier_token22] = ACTIONS(1909), + [aux_sym_cmd_identifier_token23] = ACTIONS(1909), + [aux_sym_cmd_identifier_token24] = ACTIONS(1909), + [aux_sym_cmd_identifier_token25] = ACTIONS(1909), + [aux_sym_cmd_identifier_token26] = ACTIONS(1909), + [aux_sym_cmd_identifier_token27] = ACTIONS(1909), + [aux_sym_cmd_identifier_token28] = ACTIONS(1909), + [aux_sym_cmd_identifier_token29] = ACTIONS(1909), + [aux_sym_cmd_identifier_token30] = ACTIONS(1909), + [aux_sym_cmd_identifier_token31] = ACTIONS(1909), + [aux_sym_cmd_identifier_token32] = ACTIONS(1909), + [aux_sym_cmd_identifier_token33] = ACTIONS(1909), + [aux_sym_cmd_identifier_token34] = ACTIONS(1909), + [aux_sym_cmd_identifier_token35] = ACTIONS(1909), + [aux_sym_cmd_identifier_token36] = ACTIONS(1909), + [anon_sym_true] = ACTIONS(1909), + [anon_sym_false] = ACTIONS(1909), + [anon_sym_null] = ACTIONS(1909), + [aux_sym_cmd_identifier_token38] = ACTIONS(1909), + [aux_sym_cmd_identifier_token39] = ACTIONS(1909), + [aux_sym_cmd_identifier_token40] = ACTIONS(1909), + [anon_sym_def] = 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_LPAREN] = ACTIONS(1909), + [anon_sym_DOLLAR] = ACTIONS(1909), + [anon_sym_error] = ACTIONS(1909), + [anon_sym_list] = ACTIONS(1909), + [anon_sym_DASH] = ACTIONS(1909), + [anon_sym_break] = ACTIONS(1909), + [anon_sym_continue] = ACTIONS(1909), + [anon_sym_for] = ACTIONS(1909), + [anon_sym_in] = ACTIONS(1909), + [anon_sym_loop] = ACTIONS(1909), + [anon_sym_make] = ACTIONS(1909), + [anon_sym_while] = ACTIONS(1909), + [anon_sym_do] = ACTIONS(1909), + [anon_sym_if] = ACTIONS(1909), + [anon_sym_else] = ACTIONS(1909), + [anon_sym_match] = ACTIONS(1909), + [anon_sym_RBRACE] = ACTIONS(1909), + [anon_sym_try] = ACTIONS(1909), + [anon_sym_catch] = 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_new] = ACTIONS(1909), + [anon_sym_as] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1909), + [aux_sym__val_number_decimal_token1] = ACTIONS(1909), + [aux_sym__val_number_decimal_token2] = ACTIONS(1909), + [aux_sym__val_number_decimal_token3] = ACTIONS(1909), + [aux_sym__val_number_decimal_token4] = ACTIONS(1909), + [aux_sym__val_number_token1] = ACTIONS(1909), + [aux_sym__val_number_token2] = ACTIONS(1909), + [aux_sym__val_number_token3] = ACTIONS(1909), + [anon_sym_DQUOTE] = ACTIONS(1909), + [sym__str_single_quotes] = ACTIONS(1909), + [sym__str_back_ticks] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1909), + [sym__entry_separator] = ACTIONS(1911), + [anon_sym_PLUS] = ACTIONS(1909), [anon_sym_POUND] = ACTIONS(3), }, [545] = { [sym_comment] = STATE(545), - [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), - [aux_sym_cmd_identifier_token1] = ACTIONS(1741), - [aux_sym_cmd_identifier_token2] = ACTIONS(1741), - [aux_sym_cmd_identifier_token3] = ACTIONS(1741), - [aux_sym_cmd_identifier_token4] = ACTIONS(1741), - [aux_sym_cmd_identifier_token5] = ACTIONS(1741), - [aux_sym_cmd_identifier_token6] = ACTIONS(1741), - [aux_sym_cmd_identifier_token7] = ACTIONS(1741), - [aux_sym_cmd_identifier_token8] = ACTIONS(1741), - [aux_sym_cmd_identifier_token9] = ACTIONS(1741), - [aux_sym_cmd_identifier_token10] = ACTIONS(1741), - [aux_sym_cmd_identifier_token11] = ACTIONS(1741), - [aux_sym_cmd_identifier_token12] = ACTIONS(1741), - [aux_sym_cmd_identifier_token13] = ACTIONS(1741), - [aux_sym_cmd_identifier_token14] = ACTIONS(1741), - [aux_sym_cmd_identifier_token15] = ACTIONS(1741), - [aux_sym_cmd_identifier_token16] = ACTIONS(1741), - [aux_sym_cmd_identifier_token17] = ACTIONS(1741), - [aux_sym_cmd_identifier_token18] = ACTIONS(1741), - [aux_sym_cmd_identifier_token19] = ACTIONS(1741), - [aux_sym_cmd_identifier_token20] = ACTIONS(1741), - [aux_sym_cmd_identifier_token21] = ACTIONS(1741), - [aux_sym_cmd_identifier_token22] = ACTIONS(1741), - [aux_sym_cmd_identifier_token23] = ACTIONS(1741), - [aux_sym_cmd_identifier_token24] = ACTIONS(1741), - [aux_sym_cmd_identifier_token25] = ACTIONS(1741), - [aux_sym_cmd_identifier_token26] = ACTIONS(1741), - [aux_sym_cmd_identifier_token27] = ACTIONS(1741), - [aux_sym_cmd_identifier_token28] = ACTIONS(1741), - [aux_sym_cmd_identifier_token29] = ACTIONS(1741), - [aux_sym_cmd_identifier_token30] = ACTIONS(1741), - [aux_sym_cmd_identifier_token31] = ACTIONS(1741), - [aux_sym_cmd_identifier_token32] = ACTIONS(1741), - [aux_sym_cmd_identifier_token33] = ACTIONS(1741), - [aux_sym_cmd_identifier_token34] = ACTIONS(1741), - [aux_sym_cmd_identifier_token35] = ACTIONS(1741), - [aux_sym_cmd_identifier_token36] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(1741), - [anon_sym_false] = ACTIONS(1741), - [anon_sym_null] = ACTIONS(1741), - [aux_sym_cmd_identifier_token38] = ACTIONS(1741), - [aux_sym_cmd_identifier_token39] = ACTIONS(1741), - [aux_sym_cmd_identifier_token40] = ACTIONS(1741), - [anon_sym_def] = 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_LPAREN] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1741), - [anon_sym_error] = ACTIONS(1741), - [anon_sym_list] = ACTIONS(1741), - [anon_sym_DASH] = ACTIONS(1741), - [anon_sym_break] = ACTIONS(1741), - [anon_sym_continue] = ACTIONS(1741), - [anon_sym_for] = ACTIONS(1741), - [anon_sym_in] = ACTIONS(1741), - [anon_sym_loop] = ACTIONS(1741), - [anon_sym_make] = ACTIONS(1741), - [anon_sym_while] = ACTIONS(1741), - [anon_sym_do] = ACTIONS(1741), - [anon_sym_if] = ACTIONS(1741), - [anon_sym_else] = ACTIONS(1741), - [anon_sym_match] = ACTIONS(1741), - [anon_sym_RBRACE] = ACTIONS(1741), - [anon_sym_try] = ACTIONS(1741), - [anon_sym_catch] = 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_new] = ACTIONS(1741), - [anon_sym_as] = ACTIONS(1741), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1741), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1741), - [aux_sym__val_number_decimal_token1] = ACTIONS(1741), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1741), - [sym__entry_separator] = ACTIONS(1745), - [anon_sym_PLUS] = ACTIONS(1741), + [anon_sym_export] = ACTIONS(2023), + [anon_sym_alias] = ACTIONS(2023), + [anon_sym_let] = ACTIONS(2023), + [anon_sym_let_DASHenv] = ACTIONS(2023), + [anon_sym_mut] = ACTIONS(2023), + [anon_sym_const] = ACTIONS(2023), + [aux_sym_cmd_identifier_token1] = ACTIONS(2023), + [aux_sym_cmd_identifier_token2] = ACTIONS(2023), + [aux_sym_cmd_identifier_token3] = ACTIONS(2023), + [aux_sym_cmd_identifier_token4] = ACTIONS(2023), + [aux_sym_cmd_identifier_token5] = ACTIONS(2023), + [aux_sym_cmd_identifier_token6] = ACTIONS(2023), + [aux_sym_cmd_identifier_token7] = ACTIONS(2023), + [aux_sym_cmd_identifier_token8] = ACTIONS(2023), + [aux_sym_cmd_identifier_token9] = ACTIONS(2023), + [aux_sym_cmd_identifier_token10] = ACTIONS(2023), + [aux_sym_cmd_identifier_token11] = ACTIONS(2023), + [aux_sym_cmd_identifier_token12] = ACTIONS(2023), + [aux_sym_cmd_identifier_token13] = ACTIONS(2023), + [aux_sym_cmd_identifier_token14] = ACTIONS(2023), + [aux_sym_cmd_identifier_token15] = ACTIONS(2023), + [aux_sym_cmd_identifier_token16] = ACTIONS(2023), + [aux_sym_cmd_identifier_token17] = ACTIONS(2023), + [aux_sym_cmd_identifier_token18] = ACTIONS(2023), + [aux_sym_cmd_identifier_token19] = ACTIONS(2023), + [aux_sym_cmd_identifier_token20] = ACTIONS(2023), + [aux_sym_cmd_identifier_token21] = ACTIONS(2023), + [aux_sym_cmd_identifier_token22] = ACTIONS(2023), + [aux_sym_cmd_identifier_token23] = ACTIONS(2023), + [aux_sym_cmd_identifier_token24] = ACTIONS(2023), + [aux_sym_cmd_identifier_token25] = ACTIONS(2023), + [aux_sym_cmd_identifier_token26] = ACTIONS(2023), + [aux_sym_cmd_identifier_token27] = ACTIONS(2023), + [aux_sym_cmd_identifier_token28] = ACTIONS(2023), + [aux_sym_cmd_identifier_token29] = ACTIONS(2023), + [aux_sym_cmd_identifier_token30] = ACTIONS(2023), + [aux_sym_cmd_identifier_token31] = ACTIONS(2023), + [aux_sym_cmd_identifier_token32] = ACTIONS(2023), + [aux_sym_cmd_identifier_token33] = ACTIONS(2023), + [aux_sym_cmd_identifier_token34] = ACTIONS(2023), + [aux_sym_cmd_identifier_token35] = ACTIONS(2023), + [aux_sym_cmd_identifier_token36] = ACTIONS(2023), + [anon_sym_true] = ACTIONS(2023), + [anon_sym_false] = ACTIONS(2023), + [anon_sym_null] = ACTIONS(2023), + [aux_sym_cmd_identifier_token38] = ACTIONS(2023), + [aux_sym_cmd_identifier_token39] = ACTIONS(2023), + [aux_sym_cmd_identifier_token40] = ACTIONS(2023), + [anon_sym_def] = ACTIONS(2023), + [anon_sym_export_DASHenv] = ACTIONS(2023), + [anon_sym_extern] = ACTIONS(2023), + [anon_sym_module] = ACTIONS(2023), + [anon_sym_use] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_DOLLAR] = ACTIONS(2023), + [anon_sym_error] = ACTIONS(2023), + [anon_sym_list] = ACTIONS(2023), + [anon_sym_DASH] = ACTIONS(2023), + [anon_sym_break] = ACTIONS(2023), + [anon_sym_continue] = ACTIONS(2023), + [anon_sym_for] = ACTIONS(2023), + [anon_sym_in] = ACTIONS(2023), + [anon_sym_loop] = ACTIONS(2023), + [anon_sym_make] = ACTIONS(2023), + [anon_sym_while] = ACTIONS(2023), + [anon_sym_do] = ACTIONS(2023), + [anon_sym_if] = ACTIONS(2023), + [anon_sym_else] = ACTIONS(2023), + [anon_sym_match] = ACTIONS(2023), + [anon_sym_RBRACE] = ACTIONS(2023), + [anon_sym_try] = ACTIONS(2023), + [anon_sym_catch] = ACTIONS(2023), + [anon_sym_return] = ACTIONS(2023), + [anon_sym_source] = ACTIONS(2023), + [anon_sym_source_DASHenv] = ACTIONS(2023), + [anon_sym_register] = ACTIONS(2023), + [anon_sym_hide] = ACTIONS(2023), + [anon_sym_hide_DASHenv] = ACTIONS(2023), + [anon_sym_overlay] = ACTIONS(2023), + [anon_sym_new] = ACTIONS(2023), + [anon_sym_as] = ACTIONS(2023), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2023), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2023), + [aux_sym__val_number_decimal_token1] = ACTIONS(2023), + [aux_sym__val_number_decimal_token2] = ACTIONS(2023), + [aux_sym__val_number_decimal_token3] = ACTIONS(2023), + [aux_sym__val_number_decimal_token4] = ACTIONS(2023), + [aux_sym__val_number_token1] = ACTIONS(2023), + [aux_sym__val_number_token2] = ACTIONS(2023), + [aux_sym__val_number_token3] = ACTIONS(2023), + [anon_sym_DQUOTE] = ACTIONS(2023), + [sym__str_single_quotes] = ACTIONS(2023), + [sym__str_back_ticks] = ACTIONS(2023), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2023), + [sym__entry_separator] = ACTIONS(2025), + [anon_sym_PLUS] = ACTIONS(2023), [anon_sym_POUND] = ACTIONS(3), }, [546] = { [sym_comment] = STATE(546), - [anon_sym_export] = ACTIONS(2363), - [anon_sym_alias] = ACTIONS(2363), - [anon_sym_let] = ACTIONS(2363), - [anon_sym_let_DASHenv] = ACTIONS(2363), - [anon_sym_mut] = ACTIONS(2363), - [anon_sym_const] = ACTIONS(2363), - [aux_sym_cmd_identifier_token1] = ACTIONS(2363), - [aux_sym_cmd_identifier_token2] = ACTIONS(2363), - [aux_sym_cmd_identifier_token3] = ACTIONS(2363), - [aux_sym_cmd_identifier_token4] = ACTIONS(2363), - [aux_sym_cmd_identifier_token5] = ACTIONS(2363), - [aux_sym_cmd_identifier_token6] = ACTIONS(2363), - [aux_sym_cmd_identifier_token7] = ACTIONS(2363), - [aux_sym_cmd_identifier_token8] = ACTIONS(2363), - [aux_sym_cmd_identifier_token9] = ACTIONS(2363), - [aux_sym_cmd_identifier_token10] = ACTIONS(2363), - [aux_sym_cmd_identifier_token11] = ACTIONS(2363), - [aux_sym_cmd_identifier_token12] = ACTIONS(2363), - [aux_sym_cmd_identifier_token13] = ACTIONS(2363), - [aux_sym_cmd_identifier_token14] = ACTIONS(2363), - [aux_sym_cmd_identifier_token15] = ACTIONS(2363), - [aux_sym_cmd_identifier_token16] = ACTIONS(2363), - [aux_sym_cmd_identifier_token17] = ACTIONS(2363), - [aux_sym_cmd_identifier_token18] = ACTIONS(2363), - [aux_sym_cmd_identifier_token19] = ACTIONS(2363), - [aux_sym_cmd_identifier_token20] = ACTIONS(2363), - [aux_sym_cmd_identifier_token21] = ACTIONS(2363), - [aux_sym_cmd_identifier_token22] = ACTIONS(2363), - [aux_sym_cmd_identifier_token23] = ACTIONS(2363), - [aux_sym_cmd_identifier_token24] = ACTIONS(2363), - [aux_sym_cmd_identifier_token25] = ACTIONS(2363), - [aux_sym_cmd_identifier_token26] = ACTIONS(2363), - [aux_sym_cmd_identifier_token27] = ACTIONS(2363), - [aux_sym_cmd_identifier_token28] = ACTIONS(2363), - [aux_sym_cmd_identifier_token29] = ACTIONS(2363), - [aux_sym_cmd_identifier_token30] = ACTIONS(2363), - [aux_sym_cmd_identifier_token31] = ACTIONS(2363), - [aux_sym_cmd_identifier_token32] = ACTIONS(2363), - [aux_sym_cmd_identifier_token33] = ACTIONS(2363), - [aux_sym_cmd_identifier_token34] = ACTIONS(2363), - [aux_sym_cmd_identifier_token35] = ACTIONS(2363), - [aux_sym_cmd_identifier_token36] = ACTIONS(2363), - [anon_sym_true] = ACTIONS(2363), - [anon_sym_false] = ACTIONS(2363), - [anon_sym_null] = ACTIONS(2363), - [aux_sym_cmd_identifier_token38] = ACTIONS(2363), - [aux_sym_cmd_identifier_token39] = ACTIONS(2363), - [aux_sym_cmd_identifier_token40] = ACTIONS(2363), - [anon_sym_def] = ACTIONS(2363), - [anon_sym_export_DASHenv] = ACTIONS(2363), - [anon_sym_extern] = ACTIONS(2363), - [anon_sym_module] = ACTIONS(2363), - [anon_sym_use] = ACTIONS(2363), - [anon_sym_LPAREN] = ACTIONS(2363), - [anon_sym_DOLLAR] = ACTIONS(2363), - [anon_sym_error] = ACTIONS(2363), - [anon_sym_list] = ACTIONS(2363), - [anon_sym_DASH] = ACTIONS(2363), - [anon_sym_break] = ACTIONS(2363), - [anon_sym_continue] = ACTIONS(2363), - [anon_sym_for] = ACTIONS(2363), - [anon_sym_in] = ACTIONS(2363), - [anon_sym_loop] = ACTIONS(2363), - [anon_sym_make] = ACTIONS(2363), - [anon_sym_while] = ACTIONS(2363), - [anon_sym_do] = ACTIONS(2363), - [anon_sym_if] = ACTIONS(2363), - [anon_sym_else] = ACTIONS(2363), - [anon_sym_match] = ACTIONS(2363), - [anon_sym_RBRACE] = ACTIONS(2363), - [anon_sym_try] = ACTIONS(2363), - [anon_sym_catch] = ACTIONS(2363), - [anon_sym_return] = ACTIONS(2363), - [anon_sym_source] = ACTIONS(2363), - [anon_sym_source_DASHenv] = ACTIONS(2363), - [anon_sym_register] = ACTIONS(2363), - [anon_sym_hide] = ACTIONS(2363), - [anon_sym_hide_DASHenv] = ACTIONS(2363), - [anon_sym_overlay] = ACTIONS(2363), - [anon_sym_new] = ACTIONS(2363), - [anon_sym_as] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2363), - [aux_sym__val_number_decimal_token1] = ACTIONS(2363), - [aux_sym__val_number_decimal_token2] = ACTIONS(2363), - [aux_sym__val_number_decimal_token3] = ACTIONS(2363), - [aux_sym__val_number_decimal_token4] = ACTIONS(2363), - [aux_sym__val_number_token1] = ACTIONS(2363), - [aux_sym__val_number_token2] = ACTIONS(2363), - [aux_sym__val_number_token3] = ACTIONS(2363), - [anon_sym_DQUOTE] = ACTIONS(2363), - [sym__str_single_quotes] = ACTIONS(2363), - [sym__str_back_ticks] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2363), - [sym__entry_separator] = ACTIONS(2365), - [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_export] = ACTIONS(2019), + [anon_sym_alias] = ACTIONS(2019), + [anon_sym_let] = ACTIONS(2019), + [anon_sym_let_DASHenv] = ACTIONS(2019), + [anon_sym_mut] = ACTIONS(2019), + [anon_sym_const] = ACTIONS(2019), + [aux_sym_cmd_identifier_token1] = ACTIONS(2019), + [aux_sym_cmd_identifier_token2] = ACTIONS(2019), + [aux_sym_cmd_identifier_token3] = ACTIONS(2019), + [aux_sym_cmd_identifier_token4] = ACTIONS(2019), + [aux_sym_cmd_identifier_token5] = ACTIONS(2019), + [aux_sym_cmd_identifier_token6] = ACTIONS(2019), + [aux_sym_cmd_identifier_token7] = ACTIONS(2019), + [aux_sym_cmd_identifier_token8] = ACTIONS(2019), + [aux_sym_cmd_identifier_token9] = ACTIONS(2019), + [aux_sym_cmd_identifier_token10] = ACTIONS(2019), + [aux_sym_cmd_identifier_token11] = ACTIONS(2019), + [aux_sym_cmd_identifier_token12] = ACTIONS(2019), + [aux_sym_cmd_identifier_token13] = ACTIONS(2019), + [aux_sym_cmd_identifier_token14] = ACTIONS(2019), + [aux_sym_cmd_identifier_token15] = ACTIONS(2019), + [aux_sym_cmd_identifier_token16] = ACTIONS(2019), + [aux_sym_cmd_identifier_token17] = ACTIONS(2019), + [aux_sym_cmd_identifier_token18] = ACTIONS(2019), + [aux_sym_cmd_identifier_token19] = ACTIONS(2019), + [aux_sym_cmd_identifier_token20] = ACTIONS(2019), + [aux_sym_cmd_identifier_token21] = ACTIONS(2019), + [aux_sym_cmd_identifier_token22] = ACTIONS(2019), + [aux_sym_cmd_identifier_token23] = ACTIONS(2019), + [aux_sym_cmd_identifier_token24] = ACTIONS(2019), + [aux_sym_cmd_identifier_token25] = ACTIONS(2019), + [aux_sym_cmd_identifier_token26] = ACTIONS(2019), + [aux_sym_cmd_identifier_token27] = ACTIONS(2019), + [aux_sym_cmd_identifier_token28] = ACTIONS(2019), + [aux_sym_cmd_identifier_token29] = ACTIONS(2019), + [aux_sym_cmd_identifier_token30] = ACTIONS(2019), + [aux_sym_cmd_identifier_token31] = ACTIONS(2019), + [aux_sym_cmd_identifier_token32] = ACTIONS(2019), + [aux_sym_cmd_identifier_token33] = ACTIONS(2019), + [aux_sym_cmd_identifier_token34] = ACTIONS(2019), + [aux_sym_cmd_identifier_token35] = ACTIONS(2019), + [aux_sym_cmd_identifier_token36] = ACTIONS(2019), + [anon_sym_true] = ACTIONS(2019), + [anon_sym_false] = ACTIONS(2019), + [anon_sym_null] = ACTIONS(2019), + [aux_sym_cmd_identifier_token38] = ACTIONS(2019), + [aux_sym_cmd_identifier_token39] = ACTIONS(2019), + [aux_sym_cmd_identifier_token40] = ACTIONS(2019), + [anon_sym_def] = ACTIONS(2019), + [anon_sym_export_DASHenv] = ACTIONS(2019), + [anon_sym_extern] = ACTIONS(2019), + [anon_sym_module] = ACTIONS(2019), + [anon_sym_use] = ACTIONS(2019), + [anon_sym_LPAREN] = ACTIONS(2019), + [anon_sym_DOLLAR] = ACTIONS(2019), + [anon_sym_error] = ACTIONS(2019), + [anon_sym_list] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_break] = ACTIONS(2019), + [anon_sym_continue] = ACTIONS(2019), + [anon_sym_for] = ACTIONS(2019), + [anon_sym_in] = ACTIONS(2019), + [anon_sym_loop] = ACTIONS(2019), + [anon_sym_make] = ACTIONS(2019), + [anon_sym_while] = ACTIONS(2019), + [anon_sym_do] = ACTIONS(2019), + [anon_sym_if] = ACTIONS(2019), + [anon_sym_else] = ACTIONS(2019), + [anon_sym_match] = ACTIONS(2019), + [anon_sym_RBRACE] = ACTIONS(2019), + [anon_sym_try] = ACTIONS(2019), + [anon_sym_catch] = ACTIONS(2019), + [anon_sym_return] = ACTIONS(2019), + [anon_sym_source] = ACTIONS(2019), + [anon_sym_source_DASHenv] = ACTIONS(2019), + [anon_sym_register] = ACTIONS(2019), + [anon_sym_hide] = ACTIONS(2019), + [anon_sym_hide_DASHenv] = ACTIONS(2019), + [anon_sym_overlay] = ACTIONS(2019), + [anon_sym_new] = ACTIONS(2019), + [anon_sym_as] = ACTIONS(2019), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2019), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2019), + [aux_sym__val_number_decimal_token1] = ACTIONS(2019), + [aux_sym__val_number_decimal_token2] = ACTIONS(2019), + [aux_sym__val_number_decimal_token3] = ACTIONS(2019), + [aux_sym__val_number_decimal_token4] = ACTIONS(2019), + [aux_sym__val_number_token1] = ACTIONS(2019), + [aux_sym__val_number_token2] = ACTIONS(2019), + [aux_sym__val_number_token3] = ACTIONS(2019), + [anon_sym_DQUOTE] = ACTIONS(2019), + [sym__str_single_quotes] = ACTIONS(2019), + [sym__str_back_ticks] = ACTIONS(2019), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2019), + [sym__entry_separator] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(2019), [anon_sym_POUND] = ACTIONS(3), }, [547] = { [sym_comment] = STATE(547), - [anon_sym_export] = ACTIONS(2367), - [anon_sym_alias] = ACTIONS(2367), - [anon_sym_let] = ACTIONS(2367), - [anon_sym_let_DASHenv] = ACTIONS(2367), - [anon_sym_mut] = ACTIONS(2367), - [anon_sym_const] = ACTIONS(2367), - [aux_sym_cmd_identifier_token1] = ACTIONS(2367), - [aux_sym_cmd_identifier_token2] = ACTIONS(2367), - [aux_sym_cmd_identifier_token3] = ACTIONS(2367), - [aux_sym_cmd_identifier_token4] = ACTIONS(2367), - [aux_sym_cmd_identifier_token5] = ACTIONS(2367), - [aux_sym_cmd_identifier_token6] = ACTIONS(2367), - [aux_sym_cmd_identifier_token7] = ACTIONS(2367), - [aux_sym_cmd_identifier_token8] = ACTIONS(2367), - [aux_sym_cmd_identifier_token9] = ACTIONS(2367), - [aux_sym_cmd_identifier_token10] = ACTIONS(2367), - [aux_sym_cmd_identifier_token11] = ACTIONS(2367), - [aux_sym_cmd_identifier_token12] = ACTIONS(2367), - [aux_sym_cmd_identifier_token13] = ACTIONS(2367), - [aux_sym_cmd_identifier_token14] = ACTIONS(2367), - [aux_sym_cmd_identifier_token15] = ACTIONS(2367), - [aux_sym_cmd_identifier_token16] = ACTIONS(2367), - [aux_sym_cmd_identifier_token17] = ACTIONS(2367), - [aux_sym_cmd_identifier_token18] = ACTIONS(2367), - [aux_sym_cmd_identifier_token19] = ACTIONS(2367), - [aux_sym_cmd_identifier_token20] = ACTIONS(2367), - [aux_sym_cmd_identifier_token21] = ACTIONS(2367), - [aux_sym_cmd_identifier_token22] = ACTIONS(2367), - [aux_sym_cmd_identifier_token23] = ACTIONS(2367), - [aux_sym_cmd_identifier_token24] = ACTIONS(2367), - [aux_sym_cmd_identifier_token25] = ACTIONS(2367), - [aux_sym_cmd_identifier_token26] = ACTIONS(2367), - [aux_sym_cmd_identifier_token27] = ACTIONS(2367), - [aux_sym_cmd_identifier_token28] = ACTIONS(2367), - [aux_sym_cmd_identifier_token29] = ACTIONS(2367), - [aux_sym_cmd_identifier_token30] = ACTIONS(2367), - [aux_sym_cmd_identifier_token31] = ACTIONS(2367), - [aux_sym_cmd_identifier_token32] = ACTIONS(2367), - [aux_sym_cmd_identifier_token33] = ACTIONS(2367), - [aux_sym_cmd_identifier_token34] = ACTIONS(2367), - [aux_sym_cmd_identifier_token35] = ACTIONS(2367), - [aux_sym_cmd_identifier_token36] = ACTIONS(2367), - [anon_sym_true] = ACTIONS(2367), - [anon_sym_false] = ACTIONS(2367), - [anon_sym_null] = ACTIONS(2367), - [aux_sym_cmd_identifier_token38] = ACTIONS(2367), - [aux_sym_cmd_identifier_token39] = ACTIONS(2367), - [aux_sym_cmd_identifier_token40] = ACTIONS(2367), - [anon_sym_def] = ACTIONS(2367), - [anon_sym_export_DASHenv] = ACTIONS(2367), - [anon_sym_extern] = ACTIONS(2367), - [anon_sym_module] = ACTIONS(2367), - [anon_sym_use] = ACTIONS(2367), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_DOLLAR] = ACTIONS(2367), - [anon_sym_error] = ACTIONS(2367), - [anon_sym_list] = ACTIONS(2367), - [anon_sym_DASH] = ACTIONS(2367), - [anon_sym_break] = ACTIONS(2367), - [anon_sym_continue] = ACTIONS(2367), - [anon_sym_for] = ACTIONS(2367), - [anon_sym_in] = ACTIONS(2367), - [anon_sym_loop] = ACTIONS(2367), - [anon_sym_make] = ACTIONS(2367), - [anon_sym_while] = ACTIONS(2367), - [anon_sym_do] = ACTIONS(2367), - [anon_sym_if] = ACTIONS(2367), - [anon_sym_else] = ACTIONS(2367), - [anon_sym_match] = ACTIONS(2367), - [anon_sym_RBRACE] = ACTIONS(2367), - [anon_sym_try] = ACTIONS(2367), - [anon_sym_catch] = ACTIONS(2367), - [anon_sym_return] = ACTIONS(2367), - [anon_sym_source] = ACTIONS(2367), - [anon_sym_source_DASHenv] = ACTIONS(2367), - [anon_sym_register] = ACTIONS(2367), - [anon_sym_hide] = ACTIONS(2367), - [anon_sym_hide_DASHenv] = ACTIONS(2367), - [anon_sym_overlay] = ACTIONS(2367), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_as] = ACTIONS(2367), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2367), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2367), - [aux_sym__val_number_decimal_token1] = ACTIONS(2367), - [aux_sym__val_number_decimal_token2] = ACTIONS(2367), - [aux_sym__val_number_decimal_token3] = ACTIONS(2367), - [aux_sym__val_number_decimal_token4] = ACTIONS(2367), - [aux_sym__val_number_token1] = ACTIONS(2367), - [aux_sym__val_number_token2] = ACTIONS(2367), - [aux_sym__val_number_token3] = ACTIONS(2367), - [anon_sym_DQUOTE] = ACTIONS(2367), - [sym__str_single_quotes] = ACTIONS(2367), - [sym__str_back_ticks] = ACTIONS(2367), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2367), - [sym__entry_separator] = ACTIONS(2369), - [anon_sym_PLUS] = ACTIONS(2367), - [anon_sym_POUND] = ACTIONS(3), - }, - [548] = { - [sym_comment] = STATE(548), - [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), - [aux_sym_cmd_identifier_token1] = ACTIONS(1899), - [aux_sym_cmd_identifier_token2] = ACTIONS(1899), - [aux_sym_cmd_identifier_token3] = ACTIONS(1899), - [aux_sym_cmd_identifier_token4] = ACTIONS(1899), - [aux_sym_cmd_identifier_token5] = ACTIONS(1899), - [aux_sym_cmd_identifier_token6] = ACTIONS(1899), - [aux_sym_cmd_identifier_token7] = ACTIONS(1899), - [aux_sym_cmd_identifier_token8] = ACTIONS(1899), - [aux_sym_cmd_identifier_token9] = ACTIONS(1899), - [aux_sym_cmd_identifier_token10] = ACTIONS(1899), - [aux_sym_cmd_identifier_token11] = ACTIONS(1899), - [aux_sym_cmd_identifier_token12] = ACTIONS(1899), - [aux_sym_cmd_identifier_token13] = ACTIONS(1899), - [aux_sym_cmd_identifier_token14] = ACTIONS(1899), - [aux_sym_cmd_identifier_token15] = ACTIONS(1899), - [aux_sym_cmd_identifier_token16] = ACTIONS(1899), - [aux_sym_cmd_identifier_token17] = ACTIONS(1899), - [aux_sym_cmd_identifier_token18] = ACTIONS(1899), - [aux_sym_cmd_identifier_token19] = ACTIONS(1899), - [aux_sym_cmd_identifier_token20] = ACTIONS(1899), - [aux_sym_cmd_identifier_token21] = ACTIONS(1899), - [aux_sym_cmd_identifier_token22] = ACTIONS(1899), - [aux_sym_cmd_identifier_token23] = ACTIONS(1899), - [aux_sym_cmd_identifier_token24] = ACTIONS(1899), - [aux_sym_cmd_identifier_token25] = ACTIONS(1899), - [aux_sym_cmd_identifier_token26] = ACTIONS(1899), - [aux_sym_cmd_identifier_token27] = ACTIONS(1899), - [aux_sym_cmd_identifier_token28] = ACTIONS(1899), - [aux_sym_cmd_identifier_token29] = ACTIONS(1899), - [aux_sym_cmd_identifier_token30] = ACTIONS(1899), - [aux_sym_cmd_identifier_token31] = ACTIONS(1899), - [aux_sym_cmd_identifier_token32] = ACTIONS(1899), - [aux_sym_cmd_identifier_token33] = ACTIONS(1899), - [aux_sym_cmd_identifier_token34] = ACTIONS(1899), - [aux_sym_cmd_identifier_token35] = ACTIONS(1899), - [aux_sym_cmd_identifier_token36] = ACTIONS(1899), - [anon_sym_true] = ACTIONS(1899), - [anon_sym_false] = ACTIONS(1899), - [anon_sym_null] = ACTIONS(1899), - [aux_sym_cmd_identifier_token38] = ACTIONS(1899), - [aux_sym_cmd_identifier_token39] = ACTIONS(1899), - [aux_sym_cmd_identifier_token40] = ACTIONS(1899), - [anon_sym_def] = 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_LPAREN] = ACTIONS(1899), - [anon_sym_DOLLAR] = ACTIONS(1899), - [anon_sym_error] = ACTIONS(1899), - [anon_sym_list] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_break] = ACTIONS(1899), - [anon_sym_continue] = ACTIONS(1899), - [anon_sym_for] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(1899), - [anon_sym_loop] = ACTIONS(1899), - [anon_sym_make] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1899), - [anon_sym_do] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_else] = ACTIONS(1899), - [anon_sym_match] = ACTIONS(1899), - [anon_sym_RBRACE] = ACTIONS(1899), - [anon_sym_try] = ACTIONS(1899), - [anon_sym_catch] = 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_new] = ACTIONS(1899), - [anon_sym_as] = ACTIONS(1899), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1899), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1899), - [aux_sym__val_number_decimal_token1] = ACTIONS(1899), - [aux_sym__val_number_decimal_token2] = ACTIONS(1899), - [aux_sym__val_number_decimal_token3] = ACTIONS(1899), - [aux_sym__val_number_decimal_token4] = ACTIONS(1899), - [aux_sym__val_number_token1] = ACTIONS(1899), - [aux_sym__val_number_token2] = ACTIONS(1899), - [aux_sym__val_number_token3] = ACTIONS(1899), - [anon_sym_DQUOTE] = ACTIONS(1899), - [sym__str_single_quotes] = ACTIONS(1899), - [sym__str_back_ticks] = ACTIONS(1899), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1899), - [sym__entry_separator] = ACTIONS(1901), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_POUND] = ACTIONS(3), - }, - [549] = { - [sym_comment] = STATE(549), - [anon_sym_export] = ACTIONS(1835), - [anon_sym_alias] = ACTIONS(1835), - [anon_sym_let] = ACTIONS(1835), - [anon_sym_let_DASHenv] = ACTIONS(1835), - [anon_sym_mut] = ACTIONS(1835), - [anon_sym_const] = ACTIONS(1835), - [aux_sym_cmd_identifier_token1] = ACTIONS(1835), - [aux_sym_cmd_identifier_token2] = ACTIONS(1835), - [aux_sym_cmd_identifier_token3] = ACTIONS(1835), - [aux_sym_cmd_identifier_token4] = ACTIONS(1835), - [aux_sym_cmd_identifier_token5] = ACTIONS(1835), - [aux_sym_cmd_identifier_token6] = ACTIONS(1835), - [aux_sym_cmd_identifier_token7] = ACTIONS(1835), - [aux_sym_cmd_identifier_token8] = ACTIONS(1835), - [aux_sym_cmd_identifier_token9] = ACTIONS(1835), - [aux_sym_cmd_identifier_token10] = ACTIONS(1835), - [aux_sym_cmd_identifier_token11] = ACTIONS(1835), - [aux_sym_cmd_identifier_token12] = ACTIONS(1835), - [aux_sym_cmd_identifier_token13] = ACTIONS(1835), - [aux_sym_cmd_identifier_token14] = ACTIONS(1835), - [aux_sym_cmd_identifier_token15] = ACTIONS(1835), - [aux_sym_cmd_identifier_token16] = ACTIONS(1835), - [aux_sym_cmd_identifier_token17] = ACTIONS(1835), - [aux_sym_cmd_identifier_token18] = ACTIONS(1835), - [aux_sym_cmd_identifier_token19] = ACTIONS(1835), - [aux_sym_cmd_identifier_token20] = ACTIONS(1835), - [aux_sym_cmd_identifier_token21] = ACTIONS(1835), - [aux_sym_cmd_identifier_token22] = ACTIONS(1835), - [aux_sym_cmd_identifier_token23] = ACTIONS(1835), - [aux_sym_cmd_identifier_token24] = ACTIONS(1835), - [aux_sym_cmd_identifier_token25] = ACTIONS(1835), - [aux_sym_cmd_identifier_token26] = ACTIONS(1835), - [aux_sym_cmd_identifier_token27] = ACTIONS(1835), - [aux_sym_cmd_identifier_token28] = ACTIONS(1835), - [aux_sym_cmd_identifier_token29] = ACTIONS(1835), - [aux_sym_cmd_identifier_token30] = ACTIONS(1835), - [aux_sym_cmd_identifier_token31] = ACTIONS(1835), - [aux_sym_cmd_identifier_token32] = ACTIONS(1835), - [aux_sym_cmd_identifier_token33] = ACTIONS(1835), - [aux_sym_cmd_identifier_token34] = ACTIONS(1835), - [aux_sym_cmd_identifier_token35] = ACTIONS(1835), - [aux_sym_cmd_identifier_token36] = ACTIONS(1835), - [anon_sym_true] = ACTIONS(1835), - [anon_sym_false] = ACTIONS(1835), - [anon_sym_null] = ACTIONS(1835), - [aux_sym_cmd_identifier_token38] = ACTIONS(1835), - [aux_sym_cmd_identifier_token39] = ACTIONS(1835), - [aux_sym_cmd_identifier_token40] = ACTIONS(1835), - [anon_sym_def] = ACTIONS(1835), - [anon_sym_export_DASHenv] = ACTIONS(1835), - [anon_sym_extern] = ACTIONS(1835), - [anon_sym_module] = ACTIONS(1835), - [anon_sym_use] = ACTIONS(1835), - [anon_sym_LPAREN] = ACTIONS(1835), - [anon_sym_DOLLAR] = ACTIONS(1835), - [anon_sym_error] = ACTIONS(1835), - [anon_sym_list] = ACTIONS(1835), - [anon_sym_DASH] = ACTIONS(1835), - [anon_sym_break] = ACTIONS(1835), - [anon_sym_continue] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_in] = ACTIONS(1835), - [anon_sym_loop] = ACTIONS(1835), - [anon_sym_make] = ACTIONS(1835), - [anon_sym_while] = ACTIONS(1835), - [anon_sym_do] = ACTIONS(1835), - [anon_sym_if] = ACTIONS(1835), - [anon_sym_else] = ACTIONS(1835), - [anon_sym_match] = ACTIONS(1835), - [anon_sym_RBRACE] = ACTIONS(1835), - [anon_sym_try] = ACTIONS(1835), - [anon_sym_catch] = ACTIONS(1835), - [anon_sym_return] = ACTIONS(1835), - [anon_sym_source] = ACTIONS(1835), - [anon_sym_source_DASHenv] = ACTIONS(1835), - [anon_sym_register] = ACTIONS(1835), - [anon_sym_hide] = ACTIONS(1835), - [anon_sym_hide_DASHenv] = ACTIONS(1835), - [anon_sym_overlay] = ACTIONS(1835), - [anon_sym_new] = ACTIONS(1835), - [anon_sym_as] = ACTIONS(1835), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1835), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1835), - [aux_sym__val_number_decimal_token1] = ACTIONS(1835), - [aux_sym__val_number_decimal_token2] = ACTIONS(1835), - [aux_sym__val_number_decimal_token3] = ACTIONS(1835), - [aux_sym__val_number_decimal_token4] = ACTIONS(1835), - [aux_sym__val_number_token1] = ACTIONS(1835), - [aux_sym__val_number_token2] = ACTIONS(1835), - [aux_sym__val_number_token3] = ACTIONS(1835), - [anon_sym_DQUOTE] = ACTIONS(1835), - [sym__str_single_quotes] = ACTIONS(1835), - [sym__str_back_ticks] = ACTIONS(1835), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1835), - [sym__entry_separator] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1835), + [anon_sym_export] = ACTIONS(2133), + [anon_sym_alias] = ACTIONS(2133), + [anon_sym_let] = ACTIONS(2133), + [anon_sym_let_DASHenv] = ACTIONS(2133), + [anon_sym_mut] = ACTIONS(2133), + [anon_sym_const] = ACTIONS(2133), + [aux_sym_cmd_identifier_token1] = ACTIONS(2133), + [aux_sym_cmd_identifier_token2] = ACTIONS(2133), + [aux_sym_cmd_identifier_token3] = ACTIONS(2133), + [aux_sym_cmd_identifier_token4] = ACTIONS(2133), + [aux_sym_cmd_identifier_token5] = ACTIONS(2133), + [aux_sym_cmd_identifier_token6] = ACTIONS(2133), + [aux_sym_cmd_identifier_token7] = ACTIONS(2133), + [aux_sym_cmd_identifier_token8] = ACTIONS(2133), + [aux_sym_cmd_identifier_token9] = ACTIONS(2133), + [aux_sym_cmd_identifier_token10] = ACTIONS(2133), + [aux_sym_cmd_identifier_token11] = ACTIONS(2133), + [aux_sym_cmd_identifier_token12] = ACTIONS(2133), + [aux_sym_cmd_identifier_token13] = ACTIONS(2133), + [aux_sym_cmd_identifier_token14] = ACTIONS(2133), + [aux_sym_cmd_identifier_token15] = ACTIONS(2133), + [aux_sym_cmd_identifier_token16] = ACTIONS(2133), + [aux_sym_cmd_identifier_token17] = ACTIONS(2133), + [aux_sym_cmd_identifier_token18] = ACTIONS(2133), + [aux_sym_cmd_identifier_token19] = ACTIONS(2133), + [aux_sym_cmd_identifier_token20] = ACTIONS(2133), + [aux_sym_cmd_identifier_token21] = ACTIONS(2133), + [aux_sym_cmd_identifier_token22] = ACTIONS(2133), + [aux_sym_cmd_identifier_token23] = ACTIONS(2133), + [aux_sym_cmd_identifier_token24] = ACTIONS(2133), + [aux_sym_cmd_identifier_token25] = ACTIONS(2133), + [aux_sym_cmd_identifier_token26] = ACTIONS(2133), + [aux_sym_cmd_identifier_token27] = ACTIONS(2133), + [aux_sym_cmd_identifier_token28] = ACTIONS(2133), + [aux_sym_cmd_identifier_token29] = ACTIONS(2133), + [aux_sym_cmd_identifier_token30] = ACTIONS(2133), + [aux_sym_cmd_identifier_token31] = ACTIONS(2133), + [aux_sym_cmd_identifier_token32] = ACTIONS(2133), + [aux_sym_cmd_identifier_token33] = ACTIONS(2133), + [aux_sym_cmd_identifier_token34] = ACTIONS(2133), + [aux_sym_cmd_identifier_token35] = ACTIONS(2133), + [aux_sym_cmd_identifier_token36] = ACTIONS(2133), + [anon_sym_true] = ACTIONS(2133), + [anon_sym_false] = ACTIONS(2133), + [anon_sym_null] = ACTIONS(2133), + [aux_sym_cmd_identifier_token38] = ACTIONS(2133), + [aux_sym_cmd_identifier_token39] = ACTIONS(2133), + [aux_sym_cmd_identifier_token40] = ACTIONS(2133), + [anon_sym_def] = ACTIONS(2133), + [anon_sym_export_DASHenv] = ACTIONS(2133), + [anon_sym_extern] = ACTIONS(2133), + [anon_sym_module] = ACTIONS(2133), + [anon_sym_use] = ACTIONS(2133), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_DOLLAR] = ACTIONS(2133), + [anon_sym_error] = ACTIONS(2133), + [anon_sym_list] = ACTIONS(2133), + [anon_sym_DASH] = ACTIONS(2133), + [anon_sym_break] = ACTIONS(2133), + [anon_sym_continue] = ACTIONS(2133), + [anon_sym_for] = ACTIONS(2133), + [anon_sym_in] = ACTIONS(2133), + [anon_sym_loop] = ACTIONS(2133), + [anon_sym_make] = ACTIONS(2133), + [anon_sym_while] = ACTIONS(2133), + [anon_sym_do] = ACTIONS(2133), + [anon_sym_if] = ACTIONS(2133), + [anon_sym_else] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_RBRACE] = ACTIONS(2133), + [anon_sym_try] = ACTIONS(2133), + [anon_sym_catch] = ACTIONS(2133), + [anon_sym_return] = ACTIONS(2133), + [anon_sym_source] = ACTIONS(2133), + [anon_sym_source_DASHenv] = ACTIONS(2133), + [anon_sym_register] = ACTIONS(2133), + [anon_sym_hide] = ACTIONS(2133), + [anon_sym_hide_DASHenv] = ACTIONS(2133), + [anon_sym_overlay] = ACTIONS(2133), + [anon_sym_new] = ACTIONS(2133), + [anon_sym_as] = ACTIONS(2133), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2133), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2133), + [aux_sym__val_number_decimal_token1] = ACTIONS(2133), + [aux_sym__val_number_decimal_token2] = ACTIONS(2133), + [aux_sym__val_number_decimal_token3] = ACTIONS(2133), + [aux_sym__val_number_decimal_token4] = ACTIONS(2133), + [aux_sym__val_number_token1] = ACTIONS(2133), + [aux_sym__val_number_token2] = ACTIONS(2133), + [aux_sym__val_number_token3] = ACTIONS(2133), + [anon_sym_DQUOTE] = ACTIONS(2133), + [sym__str_single_quotes] = ACTIONS(2133), + [sym__str_back_ticks] = ACTIONS(2133), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2133), + [sym__entry_separator] = ACTIONS(2135), + [anon_sym_PLUS] = ACTIONS(2133), + [anon_sym_POUND] = ACTIONS(3), + }, + [548] = { + [sym_comment] = STATE(548), + [anon_sym_export] = ACTIONS(1064), + [anon_sym_alias] = ACTIONS(1064), + [anon_sym_let] = ACTIONS(1064), + [anon_sym_let_DASHenv] = ACTIONS(1064), + [anon_sym_mut] = ACTIONS(1064), + [anon_sym_const] = ACTIONS(1064), + [aux_sym_cmd_identifier_token1] = ACTIONS(1064), + [aux_sym_cmd_identifier_token2] = ACTIONS(1064), + [aux_sym_cmd_identifier_token3] = ACTIONS(1064), + [aux_sym_cmd_identifier_token4] = ACTIONS(1064), + [aux_sym_cmd_identifier_token5] = ACTIONS(1064), + [aux_sym_cmd_identifier_token6] = ACTIONS(1064), + [aux_sym_cmd_identifier_token7] = ACTIONS(1064), + [aux_sym_cmd_identifier_token8] = ACTIONS(1064), + [aux_sym_cmd_identifier_token9] = ACTIONS(1064), + [aux_sym_cmd_identifier_token10] = ACTIONS(1064), + [aux_sym_cmd_identifier_token11] = ACTIONS(1064), + [aux_sym_cmd_identifier_token12] = ACTIONS(1064), + [aux_sym_cmd_identifier_token13] = ACTIONS(1064), + [aux_sym_cmd_identifier_token14] = ACTIONS(1064), + [aux_sym_cmd_identifier_token15] = ACTIONS(1064), + [aux_sym_cmd_identifier_token16] = ACTIONS(1064), + [aux_sym_cmd_identifier_token17] = ACTIONS(1064), + [aux_sym_cmd_identifier_token18] = ACTIONS(1064), + [aux_sym_cmd_identifier_token19] = ACTIONS(1064), + [aux_sym_cmd_identifier_token20] = ACTIONS(1064), + [aux_sym_cmd_identifier_token21] = ACTIONS(1064), + [aux_sym_cmd_identifier_token22] = ACTIONS(1064), + [aux_sym_cmd_identifier_token23] = ACTIONS(1064), + [aux_sym_cmd_identifier_token24] = ACTIONS(1064), + [aux_sym_cmd_identifier_token25] = ACTIONS(1064), + [aux_sym_cmd_identifier_token26] = ACTIONS(1064), + [aux_sym_cmd_identifier_token27] = ACTIONS(1064), + [aux_sym_cmd_identifier_token28] = ACTIONS(1064), + [aux_sym_cmd_identifier_token29] = ACTIONS(1064), + [aux_sym_cmd_identifier_token30] = ACTIONS(1064), + [aux_sym_cmd_identifier_token31] = ACTIONS(1064), + [aux_sym_cmd_identifier_token32] = ACTIONS(1064), + [aux_sym_cmd_identifier_token33] = ACTIONS(1064), + [aux_sym_cmd_identifier_token34] = ACTIONS(1064), + [aux_sym_cmd_identifier_token35] = ACTIONS(1064), + [aux_sym_cmd_identifier_token36] = ACTIONS(1064), + [anon_sym_true] = ACTIONS(1064), + [anon_sym_false] = ACTIONS(1064), + [anon_sym_null] = ACTIONS(1064), + [aux_sym_cmd_identifier_token38] = ACTIONS(1064), + [aux_sym_cmd_identifier_token39] = ACTIONS(1064), + [aux_sym_cmd_identifier_token40] = ACTIONS(1064), + [anon_sym_def] = ACTIONS(1064), + [anon_sym_export_DASHenv] = ACTIONS(1064), + [anon_sym_extern] = ACTIONS(1064), + [anon_sym_module] = ACTIONS(1064), + [anon_sym_use] = ACTIONS(1064), + [anon_sym_LPAREN] = ACTIONS(1064), + [anon_sym_DOLLAR] = ACTIONS(1064), + [anon_sym_error] = ACTIONS(1064), + [anon_sym_list] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1064), + [anon_sym_for] = ACTIONS(1064), + [anon_sym_in] = ACTIONS(1064), + [anon_sym_loop] = ACTIONS(1064), + [anon_sym_make] = ACTIONS(1064), + [anon_sym_while] = ACTIONS(1064), + [anon_sym_do] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1064), + [anon_sym_else] = ACTIONS(1064), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_RBRACE] = ACTIONS(1064), + [anon_sym_try] = ACTIONS(1064), + [anon_sym_catch] = ACTIONS(1064), + [anon_sym_return] = ACTIONS(1064), + [anon_sym_source] = ACTIONS(1064), + [anon_sym_source_DASHenv] = ACTIONS(1064), + [anon_sym_register] = ACTIONS(1064), + [anon_sym_hide] = ACTIONS(1064), + [anon_sym_hide_DASHenv] = ACTIONS(1064), + [anon_sym_overlay] = ACTIONS(1064), + [anon_sym_new] = ACTIONS(1064), + [anon_sym_as] = ACTIONS(1064), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1064), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1064), + [aux_sym__val_number_decimal_token1] = ACTIONS(1064), + [aux_sym__val_number_decimal_token2] = ACTIONS(1064), + [aux_sym__val_number_decimal_token3] = ACTIONS(1064), + [aux_sym__val_number_decimal_token4] = ACTIONS(1064), + [aux_sym__val_number_token1] = ACTIONS(1064), + [aux_sym__val_number_token2] = ACTIONS(1064), + [aux_sym__val_number_token3] = ACTIONS(1064), + [anon_sym_DQUOTE] = ACTIONS(1064), + [sym__str_single_quotes] = ACTIONS(1064), + [sym__str_back_ticks] = ACTIONS(1064), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1064), + [sym__entry_separator] = ACTIONS(1066), + [anon_sym_PLUS] = ACTIONS(1064), + [anon_sym_POUND] = ACTIONS(3), + }, + [549] = { + [sym_comment] = STATE(549), + [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), + [aux_sym_cmd_identifier_token1] = ACTIONS(2061), + [aux_sym_cmd_identifier_token2] = ACTIONS(2061), + [aux_sym_cmd_identifier_token3] = ACTIONS(2061), + [aux_sym_cmd_identifier_token4] = ACTIONS(2061), + [aux_sym_cmd_identifier_token5] = ACTIONS(2061), + [aux_sym_cmd_identifier_token6] = ACTIONS(2061), + [aux_sym_cmd_identifier_token7] = ACTIONS(2061), + [aux_sym_cmd_identifier_token8] = ACTIONS(2061), + [aux_sym_cmd_identifier_token9] = ACTIONS(2061), + [aux_sym_cmd_identifier_token10] = ACTIONS(2061), + [aux_sym_cmd_identifier_token11] = ACTIONS(2061), + [aux_sym_cmd_identifier_token12] = ACTIONS(2061), + [aux_sym_cmd_identifier_token13] = ACTIONS(2061), + [aux_sym_cmd_identifier_token14] = ACTIONS(2061), + [aux_sym_cmd_identifier_token15] = ACTIONS(2061), + [aux_sym_cmd_identifier_token16] = ACTIONS(2061), + [aux_sym_cmd_identifier_token17] = ACTIONS(2061), + [aux_sym_cmd_identifier_token18] = ACTIONS(2061), + [aux_sym_cmd_identifier_token19] = ACTIONS(2061), + [aux_sym_cmd_identifier_token20] = ACTIONS(2061), + [aux_sym_cmd_identifier_token21] = ACTIONS(2061), + [aux_sym_cmd_identifier_token22] = ACTIONS(2061), + [aux_sym_cmd_identifier_token23] = ACTIONS(2061), + [aux_sym_cmd_identifier_token24] = ACTIONS(2061), + [aux_sym_cmd_identifier_token25] = ACTIONS(2061), + [aux_sym_cmd_identifier_token26] = ACTIONS(2061), + [aux_sym_cmd_identifier_token27] = ACTIONS(2061), + [aux_sym_cmd_identifier_token28] = ACTIONS(2061), + [aux_sym_cmd_identifier_token29] = ACTIONS(2061), + [aux_sym_cmd_identifier_token30] = ACTIONS(2061), + [aux_sym_cmd_identifier_token31] = ACTIONS(2061), + [aux_sym_cmd_identifier_token32] = ACTIONS(2061), + [aux_sym_cmd_identifier_token33] = ACTIONS(2061), + [aux_sym_cmd_identifier_token34] = ACTIONS(2061), + [aux_sym_cmd_identifier_token35] = ACTIONS(2061), + [aux_sym_cmd_identifier_token36] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2061), + [anon_sym_false] = ACTIONS(2061), + [anon_sym_null] = ACTIONS(2061), + [aux_sym_cmd_identifier_token38] = ACTIONS(2061), + [aux_sym_cmd_identifier_token39] = ACTIONS(2061), + [aux_sym_cmd_identifier_token40] = ACTIONS(2061), + [anon_sym_def] = 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_LPAREN] = ACTIONS(2061), + [anon_sym_DOLLAR] = ACTIONS(2061), + [anon_sym_error] = ACTIONS(2061), + [anon_sym_list] = ACTIONS(2061), + [anon_sym_DASH] = ACTIONS(2061), + [anon_sym_break] = ACTIONS(2061), + [anon_sym_continue] = ACTIONS(2061), + [anon_sym_for] = ACTIONS(2061), + [anon_sym_in] = ACTIONS(2061), + [anon_sym_loop] = ACTIONS(2061), + [anon_sym_make] = ACTIONS(2061), + [anon_sym_while] = ACTIONS(2061), + [anon_sym_do] = ACTIONS(2061), + [anon_sym_if] = ACTIONS(2061), + [anon_sym_else] = ACTIONS(2061), + [anon_sym_match] = ACTIONS(2061), + [anon_sym_RBRACE] = ACTIONS(2061), + [anon_sym_try] = ACTIONS(2061), + [anon_sym_catch] = 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_new] = ACTIONS(2061), + [anon_sym_as] = ACTIONS(2061), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2061), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2061), + [aux_sym__val_number_decimal_token1] = ACTIONS(2061), + [aux_sym__val_number_decimal_token2] = ACTIONS(2061), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), + [aux_sym__val_number_token1] = ACTIONS(2061), + [aux_sym__val_number_token2] = ACTIONS(2061), + [aux_sym__val_number_token3] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(2061), + [sym__str_single_quotes] = ACTIONS(2061), + [sym__str_back_ticks] = ACTIONS(2061), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2061), + [sym__entry_separator] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2061), [anon_sym_POUND] = ACTIONS(3), }, [550] = { [sym_comment] = STATE(550), - [anon_sym_export] = ACTIONS(2371), - [anon_sym_alias] = ACTIONS(2371), - [anon_sym_let] = ACTIONS(2371), - [anon_sym_let_DASHenv] = ACTIONS(2371), - [anon_sym_mut] = ACTIONS(2371), - [anon_sym_const] = ACTIONS(2371), - [aux_sym_cmd_identifier_token1] = ACTIONS(2371), - [aux_sym_cmd_identifier_token2] = ACTIONS(2371), - [aux_sym_cmd_identifier_token3] = ACTIONS(2371), - [aux_sym_cmd_identifier_token4] = ACTIONS(2371), - [aux_sym_cmd_identifier_token5] = ACTIONS(2371), - [aux_sym_cmd_identifier_token6] = ACTIONS(2371), - [aux_sym_cmd_identifier_token7] = ACTIONS(2371), - [aux_sym_cmd_identifier_token8] = ACTIONS(2371), - [aux_sym_cmd_identifier_token9] = ACTIONS(2371), - [aux_sym_cmd_identifier_token10] = ACTIONS(2371), - [aux_sym_cmd_identifier_token11] = ACTIONS(2371), - [aux_sym_cmd_identifier_token12] = ACTIONS(2371), - [aux_sym_cmd_identifier_token13] = ACTIONS(2371), - [aux_sym_cmd_identifier_token14] = ACTIONS(2371), - [aux_sym_cmd_identifier_token15] = ACTIONS(2371), - [aux_sym_cmd_identifier_token16] = ACTIONS(2371), - [aux_sym_cmd_identifier_token17] = ACTIONS(2371), - [aux_sym_cmd_identifier_token18] = ACTIONS(2371), - [aux_sym_cmd_identifier_token19] = ACTIONS(2371), - [aux_sym_cmd_identifier_token20] = ACTIONS(2371), - [aux_sym_cmd_identifier_token21] = ACTIONS(2371), - [aux_sym_cmd_identifier_token22] = ACTIONS(2371), - [aux_sym_cmd_identifier_token23] = ACTIONS(2371), - [aux_sym_cmd_identifier_token24] = ACTIONS(2371), - [aux_sym_cmd_identifier_token25] = ACTIONS(2371), - [aux_sym_cmd_identifier_token26] = ACTIONS(2371), - [aux_sym_cmd_identifier_token27] = ACTIONS(2371), - [aux_sym_cmd_identifier_token28] = ACTIONS(2371), - [aux_sym_cmd_identifier_token29] = ACTIONS(2371), - [aux_sym_cmd_identifier_token30] = ACTIONS(2371), - [aux_sym_cmd_identifier_token31] = ACTIONS(2371), - [aux_sym_cmd_identifier_token32] = ACTIONS(2371), - [aux_sym_cmd_identifier_token33] = ACTIONS(2371), - [aux_sym_cmd_identifier_token34] = ACTIONS(2371), - [aux_sym_cmd_identifier_token35] = ACTIONS(2371), - [aux_sym_cmd_identifier_token36] = ACTIONS(2371), - [anon_sym_true] = ACTIONS(2371), - [anon_sym_false] = ACTIONS(2371), - [anon_sym_null] = ACTIONS(2371), - [aux_sym_cmd_identifier_token38] = ACTIONS(2371), - [aux_sym_cmd_identifier_token39] = ACTIONS(2371), - [aux_sym_cmd_identifier_token40] = ACTIONS(2371), - [anon_sym_def] = ACTIONS(2371), - [anon_sym_export_DASHenv] = ACTIONS(2371), - [anon_sym_extern] = ACTIONS(2371), - [anon_sym_module] = ACTIONS(2371), - [anon_sym_use] = ACTIONS(2371), - [anon_sym_LPAREN] = ACTIONS(2371), - [anon_sym_DOLLAR] = ACTIONS(2371), - [anon_sym_error] = ACTIONS(2371), - [anon_sym_list] = ACTIONS(2371), - [anon_sym_DASH] = ACTIONS(2371), - [anon_sym_break] = ACTIONS(2371), - [anon_sym_continue] = ACTIONS(2371), - [anon_sym_for] = ACTIONS(2371), - [anon_sym_in] = ACTIONS(2371), - [anon_sym_loop] = ACTIONS(2371), - [anon_sym_make] = ACTIONS(2371), - [anon_sym_while] = ACTIONS(2371), - [anon_sym_do] = ACTIONS(2371), - [anon_sym_if] = ACTIONS(2371), - [anon_sym_else] = ACTIONS(2371), - [anon_sym_match] = ACTIONS(2371), - [anon_sym_RBRACE] = ACTIONS(2371), - [anon_sym_try] = ACTIONS(2371), - [anon_sym_catch] = ACTIONS(2371), - [anon_sym_return] = ACTIONS(2371), - [anon_sym_source] = ACTIONS(2371), - [anon_sym_source_DASHenv] = ACTIONS(2371), - [anon_sym_register] = ACTIONS(2371), - [anon_sym_hide] = ACTIONS(2371), - [anon_sym_hide_DASHenv] = ACTIONS(2371), - [anon_sym_overlay] = ACTIONS(2371), - [anon_sym_new] = ACTIONS(2371), - [anon_sym_as] = ACTIONS(2371), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2371), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2371), - [aux_sym__val_number_decimal_token1] = ACTIONS(2371), - [aux_sym__val_number_decimal_token2] = ACTIONS(2371), - [aux_sym__val_number_decimal_token3] = ACTIONS(2371), - [aux_sym__val_number_decimal_token4] = ACTIONS(2371), - [aux_sym__val_number_token1] = ACTIONS(2371), - [aux_sym__val_number_token2] = ACTIONS(2371), - [aux_sym__val_number_token3] = ACTIONS(2371), - [anon_sym_DQUOTE] = ACTIONS(2371), - [sym__str_single_quotes] = ACTIONS(2371), - [sym__str_back_ticks] = ACTIONS(2371), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2371), - [sym__entry_separator] = ACTIONS(2373), - [anon_sym_PLUS] = ACTIONS(2371), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1056), + [anon_sym_alias] = ACTIONS(1056), + [anon_sym_let] = ACTIONS(1056), + [anon_sym_let_DASHenv] = ACTIONS(1056), + [anon_sym_mut] = ACTIONS(1056), + [anon_sym_const] = ACTIONS(1056), + [aux_sym_cmd_identifier_token1] = ACTIONS(1056), + [aux_sym_cmd_identifier_token2] = ACTIONS(1056), + [aux_sym_cmd_identifier_token3] = ACTIONS(1056), + [aux_sym_cmd_identifier_token4] = ACTIONS(1056), + [aux_sym_cmd_identifier_token5] = ACTIONS(1056), + [aux_sym_cmd_identifier_token6] = ACTIONS(1056), + [aux_sym_cmd_identifier_token7] = ACTIONS(1056), + [aux_sym_cmd_identifier_token8] = ACTIONS(1056), + [aux_sym_cmd_identifier_token9] = ACTIONS(1056), + [aux_sym_cmd_identifier_token10] = ACTIONS(1056), + [aux_sym_cmd_identifier_token11] = ACTIONS(1056), + [aux_sym_cmd_identifier_token12] = ACTIONS(1056), + [aux_sym_cmd_identifier_token13] = ACTIONS(1056), + [aux_sym_cmd_identifier_token14] = ACTIONS(1056), + [aux_sym_cmd_identifier_token15] = ACTIONS(1056), + [aux_sym_cmd_identifier_token16] = ACTIONS(1056), + [aux_sym_cmd_identifier_token17] = ACTIONS(1056), + [aux_sym_cmd_identifier_token18] = ACTIONS(1056), + [aux_sym_cmd_identifier_token19] = ACTIONS(1056), + [aux_sym_cmd_identifier_token20] = ACTIONS(1056), + [aux_sym_cmd_identifier_token21] = ACTIONS(1056), + [aux_sym_cmd_identifier_token22] = ACTIONS(1056), + [aux_sym_cmd_identifier_token23] = ACTIONS(1056), + [aux_sym_cmd_identifier_token24] = ACTIONS(1056), + [aux_sym_cmd_identifier_token25] = ACTIONS(1056), + [aux_sym_cmd_identifier_token26] = ACTIONS(1056), + [aux_sym_cmd_identifier_token27] = ACTIONS(1056), + [aux_sym_cmd_identifier_token28] = ACTIONS(1056), + [aux_sym_cmd_identifier_token29] = ACTIONS(1056), + [aux_sym_cmd_identifier_token30] = ACTIONS(1056), + [aux_sym_cmd_identifier_token31] = ACTIONS(1056), + [aux_sym_cmd_identifier_token32] = ACTIONS(1056), + [aux_sym_cmd_identifier_token33] = ACTIONS(1056), + [aux_sym_cmd_identifier_token34] = ACTIONS(1056), + [aux_sym_cmd_identifier_token35] = ACTIONS(1056), + [aux_sym_cmd_identifier_token36] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_null] = ACTIONS(1058), + [aux_sym_cmd_identifier_token38] = ACTIONS(1056), + [aux_sym_cmd_identifier_token39] = ACTIONS(1058), + [aux_sym_cmd_identifier_token40] = ACTIONS(1058), + [anon_sym_def] = ACTIONS(1056), + [anon_sym_export_DASHenv] = ACTIONS(1056), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_module] = ACTIONS(1056), + [anon_sym_use] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(1058), + [anon_sym_DOLLAR] = ACTIONS(1058), + [anon_sym_error] = ACTIONS(1056), + [anon_sym_list] = ACTIONS(1056), + [anon_sym_DASH] = ACTIONS(1056), + [anon_sym_break] = ACTIONS(1056), + [anon_sym_continue] = ACTIONS(1056), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_in] = ACTIONS(1056), + [anon_sym_loop] = ACTIONS(1056), + [anon_sym_make] = ACTIONS(1056), + [anon_sym_while] = ACTIONS(1056), + [anon_sym_do] = ACTIONS(1056), + [anon_sym_if] = ACTIONS(1056), + [anon_sym_else] = ACTIONS(1056), + [anon_sym_match] = ACTIONS(1056), + [anon_sym_RBRACE] = ACTIONS(1058), + [anon_sym_try] = ACTIONS(1056), + [anon_sym_catch] = ACTIONS(1056), + [anon_sym_return] = ACTIONS(1056), + [anon_sym_source] = ACTIONS(1056), + [anon_sym_source_DASHenv] = ACTIONS(1056), + [anon_sym_register] = ACTIONS(1056), + [anon_sym_hide] = ACTIONS(1056), + [anon_sym_hide_DASHenv] = ACTIONS(1056), + [anon_sym_overlay] = ACTIONS(1056), + [anon_sym_new] = ACTIONS(1056), + [anon_sym_as] = ACTIONS(1056), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1058), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1058), + [aux_sym__val_number_decimal_token1] = ACTIONS(1056), + [aux_sym__val_number_decimal_token2] = ACTIONS(1058), + [aux_sym__val_number_decimal_token3] = ACTIONS(1058), + [aux_sym__val_number_decimal_token4] = ACTIONS(1058), + [aux_sym__val_number_token1] = ACTIONS(1058), + [aux_sym__val_number_token2] = ACTIONS(1058), + [aux_sym__val_number_token3] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [sym__str_single_quotes] = ACTIONS(1058), + [sym__str_back_ticks] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1056), + [anon_sym_POUND] = ACTIONS(247), }, [551] = { [sym_comment] = STATE(551), - [anon_sym_export] = ACTIONS(1589), - [anon_sym_alias] = ACTIONS(1589), - [anon_sym_let] = ACTIONS(1589), - [anon_sym_let_DASHenv] = ACTIONS(1589), - [anon_sym_mut] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [aux_sym_cmd_identifier_token1] = ACTIONS(1589), - [aux_sym_cmd_identifier_token2] = ACTIONS(1589), - [aux_sym_cmd_identifier_token3] = ACTIONS(1589), - [aux_sym_cmd_identifier_token4] = ACTIONS(1589), - [aux_sym_cmd_identifier_token5] = ACTIONS(1589), - [aux_sym_cmd_identifier_token6] = ACTIONS(1589), - [aux_sym_cmd_identifier_token7] = ACTIONS(1589), - [aux_sym_cmd_identifier_token8] = ACTIONS(1589), - [aux_sym_cmd_identifier_token9] = ACTIONS(1589), - [aux_sym_cmd_identifier_token10] = ACTIONS(1589), - [aux_sym_cmd_identifier_token11] = ACTIONS(1589), - [aux_sym_cmd_identifier_token12] = ACTIONS(1589), - [aux_sym_cmd_identifier_token13] = ACTIONS(1589), - [aux_sym_cmd_identifier_token14] = ACTIONS(1589), - [aux_sym_cmd_identifier_token15] = ACTIONS(1589), - [aux_sym_cmd_identifier_token16] = ACTIONS(1589), - [aux_sym_cmd_identifier_token17] = ACTIONS(1589), - [aux_sym_cmd_identifier_token18] = ACTIONS(1589), - [aux_sym_cmd_identifier_token19] = ACTIONS(1589), - [aux_sym_cmd_identifier_token20] = ACTIONS(1589), - [aux_sym_cmd_identifier_token21] = ACTIONS(1589), - [aux_sym_cmd_identifier_token22] = ACTIONS(1589), - [aux_sym_cmd_identifier_token23] = ACTIONS(1589), - [aux_sym_cmd_identifier_token24] = ACTIONS(1589), - [aux_sym_cmd_identifier_token25] = ACTIONS(1589), - [aux_sym_cmd_identifier_token26] = ACTIONS(1589), - [aux_sym_cmd_identifier_token27] = ACTIONS(1589), - [aux_sym_cmd_identifier_token28] = ACTIONS(1589), - [aux_sym_cmd_identifier_token29] = ACTIONS(1589), - [aux_sym_cmd_identifier_token30] = ACTIONS(1589), - [aux_sym_cmd_identifier_token31] = ACTIONS(1589), - [aux_sym_cmd_identifier_token32] = ACTIONS(1589), - [aux_sym_cmd_identifier_token33] = ACTIONS(1589), - [aux_sym_cmd_identifier_token34] = ACTIONS(1589), - [aux_sym_cmd_identifier_token35] = ACTIONS(1589), - [aux_sym_cmd_identifier_token36] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1589), - [anon_sym_false] = ACTIONS(1589), - [anon_sym_null] = ACTIONS(1589), - [aux_sym_cmd_identifier_token38] = ACTIONS(1589), - [aux_sym_cmd_identifier_token39] = ACTIONS(1589), - [aux_sym_cmd_identifier_token40] = ACTIONS(1589), - [anon_sym_def] = ACTIONS(1589), - [anon_sym_export_DASHenv] = ACTIONS(1589), - [anon_sym_extern] = ACTIONS(1589), - [anon_sym_module] = ACTIONS(1589), - [anon_sym_use] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_error] = ACTIONS(1589), - [anon_sym_list] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_loop] = ACTIONS(1589), - [anon_sym_make] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_else] = ACTIONS(1589), - [anon_sym_match] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1589), - [anon_sym_try] = ACTIONS(1589), - [anon_sym_catch] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_source] = ACTIONS(1589), - [anon_sym_source_DASHenv] = ACTIONS(1589), - [anon_sym_register] = ACTIONS(1589), - [anon_sym_hide] = ACTIONS(1589), - [anon_sym_hide_DASHenv] = ACTIONS(1589), - [anon_sym_overlay] = ACTIONS(1589), - [anon_sym_new] = ACTIONS(1589), - [anon_sym_as] = ACTIONS(1589), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1589), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1589), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1589), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1589), - [aux_sym__val_number_token1] = ACTIONS(1589), - [aux_sym__val_number_token2] = ACTIONS(1589), - [aux_sym__val_number_token3] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [sym__str_single_quotes] = ACTIONS(1589), - [sym__str_back_ticks] = ACTIONS(1589), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1589), - [sym__entry_separator] = ACTIONS(1591), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(551), + [anon_sym_export] = ACTIONS(1898), + [anon_sym_alias] = ACTIONS(1898), + [anon_sym_let] = ACTIONS(1898), + [anon_sym_let_DASHenv] = ACTIONS(1898), + [anon_sym_mut] = ACTIONS(1898), + [anon_sym_const] = ACTIONS(1898), + [aux_sym_cmd_identifier_token1] = ACTIONS(1898), + [aux_sym_cmd_identifier_token2] = ACTIONS(1898), + [aux_sym_cmd_identifier_token3] = ACTIONS(1898), + [aux_sym_cmd_identifier_token4] = ACTIONS(1898), + [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [aux_sym_cmd_identifier_token6] = ACTIONS(1898), + [aux_sym_cmd_identifier_token7] = ACTIONS(1898), + [aux_sym_cmd_identifier_token8] = ACTIONS(1898), + [aux_sym_cmd_identifier_token9] = ACTIONS(1898), + [aux_sym_cmd_identifier_token10] = ACTIONS(1898), + [aux_sym_cmd_identifier_token11] = ACTIONS(1898), + [aux_sym_cmd_identifier_token12] = ACTIONS(1898), + [aux_sym_cmd_identifier_token13] = ACTIONS(1898), + [aux_sym_cmd_identifier_token14] = ACTIONS(1898), + [aux_sym_cmd_identifier_token15] = ACTIONS(1898), + [aux_sym_cmd_identifier_token16] = ACTIONS(1898), + [aux_sym_cmd_identifier_token17] = ACTIONS(1898), + [aux_sym_cmd_identifier_token18] = ACTIONS(1898), + [aux_sym_cmd_identifier_token19] = ACTIONS(1898), + [aux_sym_cmd_identifier_token20] = ACTIONS(1898), + [aux_sym_cmd_identifier_token21] = ACTIONS(1898), + [aux_sym_cmd_identifier_token22] = ACTIONS(1898), + [aux_sym_cmd_identifier_token23] = ACTIONS(1898), + [aux_sym_cmd_identifier_token24] = ACTIONS(1898), + [aux_sym_cmd_identifier_token25] = ACTIONS(1898), + [aux_sym_cmd_identifier_token26] = ACTIONS(1898), + [aux_sym_cmd_identifier_token27] = ACTIONS(1898), + [aux_sym_cmd_identifier_token28] = ACTIONS(1898), + [aux_sym_cmd_identifier_token29] = ACTIONS(1898), + [aux_sym_cmd_identifier_token30] = ACTIONS(1898), + [aux_sym_cmd_identifier_token31] = ACTIONS(1898), + [aux_sym_cmd_identifier_token32] = ACTIONS(1898), + [aux_sym_cmd_identifier_token33] = ACTIONS(1898), + [aux_sym_cmd_identifier_token34] = ACTIONS(1898), + [aux_sym_cmd_identifier_token35] = ACTIONS(1898), + [aux_sym_cmd_identifier_token36] = ACTIONS(1898), + [anon_sym_true] = ACTIONS(1900), + [anon_sym_false] = ACTIONS(1900), + [anon_sym_null] = ACTIONS(1900), + [aux_sym_cmd_identifier_token38] = ACTIONS(1898), + [aux_sym_cmd_identifier_token39] = ACTIONS(1900), + [aux_sym_cmd_identifier_token40] = ACTIONS(1900), + [sym__newline] = ACTIONS(2440), + [anon_sym_def] = ACTIONS(1898), + [anon_sym_export_DASHenv] = ACTIONS(1898), + [anon_sym_extern] = ACTIONS(1898), + [anon_sym_module] = ACTIONS(1898), + [anon_sym_use] = ACTIONS(1898), + [anon_sym_LPAREN] = ACTIONS(1900), + [anon_sym_DOLLAR] = ACTIONS(1900), + [anon_sym_error] = ACTIONS(1898), + [anon_sym_list] = ACTIONS(1898), + [anon_sym_DASH] = ACTIONS(1898), + [anon_sym_break] = ACTIONS(1898), + [anon_sym_continue] = ACTIONS(1898), + [anon_sym_for] = ACTIONS(1898), + [anon_sym_in] = ACTIONS(1898), + [anon_sym_loop] = ACTIONS(1898), + [anon_sym_make] = ACTIONS(1898), + [anon_sym_while] = ACTIONS(1898), + [anon_sym_do] = ACTIONS(1898), + [anon_sym_if] = ACTIONS(1898), + [anon_sym_else] = ACTIONS(1898), + [anon_sym_match] = ACTIONS(1898), + [anon_sym_try] = ACTIONS(1898), + [anon_sym_catch] = ACTIONS(1898), + [anon_sym_return] = ACTIONS(1898), + [anon_sym_source] = ACTIONS(1898), + [anon_sym_source_DASHenv] = ACTIONS(1898), + [anon_sym_register] = ACTIONS(1898), + [anon_sym_hide] = ACTIONS(1898), + [anon_sym_hide_DASHenv] = ACTIONS(1898), + [anon_sym_overlay] = ACTIONS(1898), + [anon_sym_new] = ACTIONS(1898), + [anon_sym_as] = ACTIONS(1898), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1900), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1900), + [aux_sym__val_number_decimal_token1] = ACTIONS(1898), + [aux_sym__val_number_decimal_token2] = ACTIONS(1900), + [aux_sym__val_number_decimal_token3] = ACTIONS(1900), + [aux_sym__val_number_decimal_token4] = ACTIONS(1900), + [aux_sym__val_number_token1] = ACTIONS(1900), + [aux_sym__val_number_token2] = ACTIONS(1900), + [aux_sym__val_number_token3] = ACTIONS(1900), + [anon_sym_DQUOTE] = ACTIONS(1900), + [sym__str_single_quotes] = ACTIONS(1900), + [sym__str_back_ticks] = ACTIONS(1900), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1900), + [anon_sym_PLUS] = ACTIONS(1898), + [anon_sym_POUND] = ACTIONS(247), }, [552] = { [sym_comment] = STATE(552), - [anon_sym_export] = ACTIONS(2375), - [anon_sym_alias] = ACTIONS(2375), - [anon_sym_let] = ACTIONS(2375), - [anon_sym_let_DASHenv] = ACTIONS(2375), - [anon_sym_mut] = ACTIONS(2375), - [anon_sym_const] = ACTIONS(2375), - [aux_sym_cmd_identifier_token1] = ACTIONS(2375), - [aux_sym_cmd_identifier_token2] = ACTIONS(2375), - [aux_sym_cmd_identifier_token3] = ACTIONS(2375), - [aux_sym_cmd_identifier_token4] = ACTIONS(2375), - [aux_sym_cmd_identifier_token5] = ACTIONS(2375), - [aux_sym_cmd_identifier_token6] = ACTIONS(2375), - [aux_sym_cmd_identifier_token7] = ACTIONS(2375), - [aux_sym_cmd_identifier_token8] = ACTIONS(2375), - [aux_sym_cmd_identifier_token9] = ACTIONS(2375), - [aux_sym_cmd_identifier_token10] = ACTIONS(2375), - [aux_sym_cmd_identifier_token11] = ACTIONS(2375), - [aux_sym_cmd_identifier_token12] = ACTIONS(2375), - [aux_sym_cmd_identifier_token13] = ACTIONS(2375), - [aux_sym_cmd_identifier_token14] = ACTIONS(2375), - [aux_sym_cmd_identifier_token15] = ACTIONS(2375), - [aux_sym_cmd_identifier_token16] = ACTIONS(2375), - [aux_sym_cmd_identifier_token17] = ACTIONS(2375), - [aux_sym_cmd_identifier_token18] = ACTIONS(2375), - [aux_sym_cmd_identifier_token19] = ACTIONS(2375), - [aux_sym_cmd_identifier_token20] = ACTIONS(2375), - [aux_sym_cmd_identifier_token21] = ACTIONS(2375), - [aux_sym_cmd_identifier_token22] = ACTIONS(2375), - [aux_sym_cmd_identifier_token23] = ACTIONS(2375), - [aux_sym_cmd_identifier_token24] = ACTIONS(2375), - [aux_sym_cmd_identifier_token25] = ACTIONS(2375), - [aux_sym_cmd_identifier_token26] = ACTIONS(2375), - [aux_sym_cmd_identifier_token27] = ACTIONS(2375), - [aux_sym_cmd_identifier_token28] = ACTIONS(2375), - [aux_sym_cmd_identifier_token29] = ACTIONS(2375), - [aux_sym_cmd_identifier_token30] = ACTIONS(2375), - [aux_sym_cmd_identifier_token31] = ACTIONS(2375), - [aux_sym_cmd_identifier_token32] = ACTIONS(2375), - [aux_sym_cmd_identifier_token33] = ACTIONS(2375), - [aux_sym_cmd_identifier_token34] = ACTIONS(2375), - [aux_sym_cmd_identifier_token35] = ACTIONS(2375), - [aux_sym_cmd_identifier_token36] = ACTIONS(2375), - [anon_sym_true] = ACTIONS(2375), - [anon_sym_false] = ACTIONS(2375), - [anon_sym_null] = ACTIONS(2375), - [aux_sym_cmd_identifier_token38] = ACTIONS(2375), - [aux_sym_cmd_identifier_token39] = ACTIONS(2375), - [aux_sym_cmd_identifier_token40] = ACTIONS(2375), - [anon_sym_def] = ACTIONS(2375), - [anon_sym_export_DASHenv] = ACTIONS(2375), - [anon_sym_extern] = ACTIONS(2375), - [anon_sym_module] = ACTIONS(2375), - [anon_sym_use] = ACTIONS(2375), - [anon_sym_LPAREN] = ACTIONS(2375), - [anon_sym_DOLLAR] = ACTIONS(2375), - [anon_sym_error] = ACTIONS(2375), - [anon_sym_list] = ACTIONS(2375), - [anon_sym_DASH] = ACTIONS(2375), - [anon_sym_break] = ACTIONS(2375), - [anon_sym_continue] = ACTIONS(2375), - [anon_sym_for] = ACTIONS(2375), - [anon_sym_in] = ACTIONS(2375), - [anon_sym_loop] = ACTIONS(2375), - [anon_sym_make] = ACTIONS(2375), - [anon_sym_while] = ACTIONS(2375), - [anon_sym_do] = ACTIONS(2375), - [anon_sym_if] = ACTIONS(2375), - [anon_sym_else] = ACTIONS(2375), - [anon_sym_match] = ACTIONS(2375), - [anon_sym_RBRACE] = ACTIONS(2375), - [anon_sym_try] = ACTIONS(2375), - [anon_sym_catch] = ACTIONS(2375), - [anon_sym_return] = ACTIONS(2375), - [anon_sym_source] = ACTIONS(2375), - [anon_sym_source_DASHenv] = ACTIONS(2375), - [anon_sym_register] = ACTIONS(2375), - [anon_sym_hide] = ACTIONS(2375), - [anon_sym_hide_DASHenv] = ACTIONS(2375), - [anon_sym_overlay] = ACTIONS(2375), - [anon_sym_new] = ACTIONS(2375), - [anon_sym_as] = ACTIONS(2375), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2375), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2375), - [aux_sym__val_number_decimal_token1] = ACTIONS(2375), - [aux_sym__val_number_decimal_token2] = ACTIONS(2375), - [aux_sym__val_number_decimal_token3] = ACTIONS(2375), - [aux_sym__val_number_decimal_token4] = ACTIONS(2375), - [aux_sym__val_number_token1] = ACTIONS(2375), - [aux_sym__val_number_token2] = ACTIONS(2375), - [aux_sym__val_number_token3] = ACTIONS(2375), - [anon_sym_DQUOTE] = ACTIONS(2375), - [sym__str_single_quotes] = ACTIONS(2375), - [sym__str_back_ticks] = ACTIONS(2375), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2375), - [sym__entry_separator] = ACTIONS(2377), - [anon_sym_PLUS] = ACTIONS(2375), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1060), + [anon_sym_alias] = ACTIONS(1060), + [anon_sym_let] = ACTIONS(1060), + [anon_sym_let_DASHenv] = ACTIONS(1060), + [anon_sym_mut] = ACTIONS(1060), + [anon_sym_const] = ACTIONS(1060), + [aux_sym_cmd_identifier_token1] = ACTIONS(1060), + [aux_sym_cmd_identifier_token2] = ACTIONS(1060), + [aux_sym_cmd_identifier_token3] = ACTIONS(1060), + [aux_sym_cmd_identifier_token4] = ACTIONS(1060), + [aux_sym_cmd_identifier_token5] = ACTIONS(1060), + [aux_sym_cmd_identifier_token6] = ACTIONS(1060), + [aux_sym_cmd_identifier_token7] = ACTIONS(1060), + [aux_sym_cmd_identifier_token8] = ACTIONS(1060), + [aux_sym_cmd_identifier_token9] = ACTIONS(1060), + [aux_sym_cmd_identifier_token10] = ACTIONS(1060), + [aux_sym_cmd_identifier_token11] = ACTIONS(1060), + [aux_sym_cmd_identifier_token12] = ACTIONS(1060), + [aux_sym_cmd_identifier_token13] = ACTIONS(1060), + [aux_sym_cmd_identifier_token14] = ACTIONS(1060), + [aux_sym_cmd_identifier_token15] = ACTIONS(1060), + [aux_sym_cmd_identifier_token16] = ACTIONS(1060), + [aux_sym_cmd_identifier_token17] = ACTIONS(1060), + [aux_sym_cmd_identifier_token18] = ACTIONS(1060), + [aux_sym_cmd_identifier_token19] = ACTIONS(1060), + [aux_sym_cmd_identifier_token20] = ACTIONS(1060), + [aux_sym_cmd_identifier_token21] = ACTIONS(1060), + [aux_sym_cmd_identifier_token22] = ACTIONS(1060), + [aux_sym_cmd_identifier_token23] = ACTIONS(1060), + [aux_sym_cmd_identifier_token24] = ACTIONS(1060), + [aux_sym_cmd_identifier_token25] = ACTIONS(1060), + [aux_sym_cmd_identifier_token26] = ACTIONS(1060), + [aux_sym_cmd_identifier_token27] = ACTIONS(1060), + [aux_sym_cmd_identifier_token28] = ACTIONS(1060), + [aux_sym_cmd_identifier_token29] = ACTIONS(1060), + [aux_sym_cmd_identifier_token30] = ACTIONS(1060), + [aux_sym_cmd_identifier_token31] = ACTIONS(1060), + [aux_sym_cmd_identifier_token32] = ACTIONS(1060), + [aux_sym_cmd_identifier_token33] = ACTIONS(1060), + [aux_sym_cmd_identifier_token34] = ACTIONS(1060), + [aux_sym_cmd_identifier_token35] = ACTIONS(1060), + [aux_sym_cmd_identifier_token36] = ACTIONS(1060), + [anon_sym_true] = ACTIONS(1062), + [anon_sym_false] = ACTIONS(1062), + [anon_sym_null] = ACTIONS(1062), + [aux_sym_cmd_identifier_token38] = ACTIONS(1060), + [aux_sym_cmd_identifier_token39] = ACTIONS(1062), + [aux_sym_cmd_identifier_token40] = ACTIONS(1062), + [anon_sym_def] = ACTIONS(1060), + [anon_sym_export_DASHenv] = ACTIONS(1060), + [anon_sym_extern] = ACTIONS(1060), + [anon_sym_module] = ACTIONS(1060), + [anon_sym_use] = ACTIONS(1060), + [anon_sym_LPAREN] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_error] = ACTIONS(1060), + [anon_sym_list] = ACTIONS(1060), + [anon_sym_DASH] = ACTIONS(1060), + [anon_sym_break] = ACTIONS(1060), + [anon_sym_continue] = ACTIONS(1060), + [anon_sym_for] = ACTIONS(1060), + [anon_sym_in] = ACTIONS(1060), + [anon_sym_loop] = ACTIONS(1060), + [anon_sym_make] = ACTIONS(1060), + [anon_sym_while] = ACTIONS(1060), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_if] = ACTIONS(1060), + [anon_sym_else] = ACTIONS(1060), + [anon_sym_match] = ACTIONS(1060), + [anon_sym_RBRACE] = ACTIONS(1062), + [anon_sym_try] = ACTIONS(1060), + [anon_sym_catch] = ACTIONS(1060), + [anon_sym_return] = ACTIONS(1060), + [anon_sym_source] = ACTIONS(1060), + [anon_sym_source_DASHenv] = ACTIONS(1060), + [anon_sym_register] = ACTIONS(1060), + [anon_sym_hide] = ACTIONS(1060), + [anon_sym_hide_DASHenv] = ACTIONS(1060), + [anon_sym_overlay] = ACTIONS(1060), + [anon_sym_new] = ACTIONS(1060), + [anon_sym_as] = ACTIONS(1060), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1062), + [anon_sym_DOT] = ACTIONS(1060), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1062), + [aux_sym__val_number_decimal_token1] = ACTIONS(1060), + [aux_sym__val_number_decimal_token2] = ACTIONS(1062), + [aux_sym__val_number_decimal_token3] = ACTIONS(1062), + [aux_sym__val_number_decimal_token4] = ACTIONS(1062), + [aux_sym__val_number_token1] = ACTIONS(1062), + [aux_sym__val_number_token2] = ACTIONS(1062), + [aux_sym__val_number_token3] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1062), + [sym__str_single_quotes] = ACTIONS(1062), + [sym__str_back_ticks] = ACTIONS(1062), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1060), + [anon_sym_POUND] = ACTIONS(247), }, [553] = { [sym_comment] = STATE(553), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_alias] = ACTIONS(1569), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_let_DASHenv] = ACTIONS(1569), - [anon_sym_mut] = ACTIONS(1569), - [anon_sym_const] = ACTIONS(1569), - [aux_sym_cmd_identifier_token1] = ACTIONS(1569), - [aux_sym_cmd_identifier_token2] = ACTIONS(1569), - [aux_sym_cmd_identifier_token3] = ACTIONS(1569), - [aux_sym_cmd_identifier_token4] = ACTIONS(1569), - [aux_sym_cmd_identifier_token5] = ACTIONS(1569), - [aux_sym_cmd_identifier_token6] = ACTIONS(1569), - [aux_sym_cmd_identifier_token7] = ACTIONS(1569), - [aux_sym_cmd_identifier_token8] = ACTIONS(1569), - [aux_sym_cmd_identifier_token9] = ACTIONS(1569), - [aux_sym_cmd_identifier_token10] = ACTIONS(1569), - [aux_sym_cmd_identifier_token11] = ACTIONS(1569), - [aux_sym_cmd_identifier_token12] = ACTIONS(1569), - [aux_sym_cmd_identifier_token13] = ACTIONS(1569), - [aux_sym_cmd_identifier_token14] = ACTIONS(1569), - [aux_sym_cmd_identifier_token15] = ACTIONS(1569), - [aux_sym_cmd_identifier_token16] = ACTIONS(1569), - [aux_sym_cmd_identifier_token17] = ACTIONS(1569), - [aux_sym_cmd_identifier_token18] = ACTIONS(1569), - [aux_sym_cmd_identifier_token19] = ACTIONS(1569), - [aux_sym_cmd_identifier_token20] = ACTIONS(1569), - [aux_sym_cmd_identifier_token21] = ACTIONS(1569), - [aux_sym_cmd_identifier_token22] = ACTIONS(1569), - [aux_sym_cmd_identifier_token23] = ACTIONS(1569), - [aux_sym_cmd_identifier_token24] = ACTIONS(1569), - [aux_sym_cmd_identifier_token25] = ACTIONS(1569), - [aux_sym_cmd_identifier_token26] = ACTIONS(1569), - [aux_sym_cmd_identifier_token27] = ACTIONS(1569), - [aux_sym_cmd_identifier_token28] = ACTIONS(1569), - [aux_sym_cmd_identifier_token29] = ACTIONS(1569), - [aux_sym_cmd_identifier_token30] = ACTIONS(1569), - [aux_sym_cmd_identifier_token31] = ACTIONS(1569), - [aux_sym_cmd_identifier_token32] = ACTIONS(1569), - [aux_sym_cmd_identifier_token33] = ACTIONS(1569), - [aux_sym_cmd_identifier_token34] = ACTIONS(1569), - [aux_sym_cmd_identifier_token35] = ACTIONS(1569), - [aux_sym_cmd_identifier_token36] = ACTIONS(1569), - [anon_sym_true] = ACTIONS(1569), - [anon_sym_false] = ACTIONS(1569), - [anon_sym_null] = ACTIONS(1569), - [aux_sym_cmd_identifier_token38] = ACTIONS(1569), - [aux_sym_cmd_identifier_token39] = ACTIONS(1569), - [aux_sym_cmd_identifier_token40] = ACTIONS(1569), - [anon_sym_def] = ACTIONS(1569), - [anon_sym_export_DASHenv] = ACTIONS(1569), - [anon_sym_extern] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_use] = ACTIONS(1569), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_DOLLAR] = ACTIONS(1569), - [anon_sym_error] = ACTIONS(1569), - [anon_sym_list] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_break] = ACTIONS(1569), - [anon_sym_continue] = ACTIONS(1569), - [anon_sym_for] = ACTIONS(1569), - [anon_sym_in] = ACTIONS(1569), - [anon_sym_loop] = ACTIONS(1569), - [anon_sym_make] = ACTIONS(1569), - [anon_sym_while] = ACTIONS(1569), - [anon_sym_do] = ACTIONS(1569), - [anon_sym_if] = ACTIONS(1569), - [anon_sym_else] = ACTIONS(1569), - [anon_sym_match] = ACTIONS(1569), - [anon_sym_RBRACE] = ACTIONS(1569), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_catch] = ACTIONS(1569), - [anon_sym_return] = ACTIONS(1569), - [anon_sym_source] = ACTIONS(1569), - [anon_sym_source_DASHenv] = ACTIONS(1569), - [anon_sym_register] = ACTIONS(1569), - [anon_sym_hide] = ACTIONS(1569), - [anon_sym_hide_DASHenv] = ACTIONS(1569), - [anon_sym_overlay] = ACTIONS(1569), - [anon_sym_new] = ACTIONS(1569), - [anon_sym_as] = ACTIONS(1569), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1569), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1569), - [aux_sym__val_number_decimal_token1] = ACTIONS(1569), - [aux_sym__val_number_decimal_token2] = ACTIONS(1569), - [aux_sym__val_number_decimal_token3] = ACTIONS(1569), - [aux_sym__val_number_decimal_token4] = ACTIONS(1569), - [aux_sym__val_number_token1] = ACTIONS(1569), - [aux_sym__val_number_token2] = ACTIONS(1569), - [aux_sym__val_number_token3] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(1569), - [sym__str_single_quotes] = ACTIONS(1569), - [sym__str_back_ticks] = ACTIONS(1569), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1569), - [sym__entry_separator] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_export] = ACTIONS(2443), + [anon_sym_alias] = ACTIONS(2443), + [anon_sym_let] = ACTIONS(2443), + [anon_sym_let_DASHenv] = ACTIONS(2443), + [anon_sym_mut] = ACTIONS(2443), + [anon_sym_const] = ACTIONS(2443), + [aux_sym_cmd_identifier_token1] = ACTIONS(2443), + [aux_sym_cmd_identifier_token2] = ACTIONS(2443), + [aux_sym_cmd_identifier_token3] = ACTIONS(2443), + [aux_sym_cmd_identifier_token4] = ACTIONS(2443), + [aux_sym_cmd_identifier_token5] = ACTIONS(2443), + [aux_sym_cmd_identifier_token6] = ACTIONS(2443), + [aux_sym_cmd_identifier_token7] = ACTIONS(2443), + [aux_sym_cmd_identifier_token8] = ACTIONS(2443), + [aux_sym_cmd_identifier_token9] = ACTIONS(2443), + [aux_sym_cmd_identifier_token10] = ACTIONS(2443), + [aux_sym_cmd_identifier_token11] = ACTIONS(2443), + [aux_sym_cmd_identifier_token12] = ACTIONS(2443), + [aux_sym_cmd_identifier_token13] = ACTIONS(2443), + [aux_sym_cmd_identifier_token14] = ACTIONS(2443), + [aux_sym_cmd_identifier_token15] = ACTIONS(2443), + [aux_sym_cmd_identifier_token16] = ACTIONS(2443), + [aux_sym_cmd_identifier_token17] = ACTIONS(2443), + [aux_sym_cmd_identifier_token18] = ACTIONS(2443), + [aux_sym_cmd_identifier_token19] = ACTIONS(2443), + [aux_sym_cmd_identifier_token20] = ACTIONS(2443), + [aux_sym_cmd_identifier_token21] = ACTIONS(2443), + [aux_sym_cmd_identifier_token22] = ACTIONS(2443), + [aux_sym_cmd_identifier_token23] = ACTIONS(2443), + [aux_sym_cmd_identifier_token24] = ACTIONS(2443), + [aux_sym_cmd_identifier_token25] = ACTIONS(2443), + [aux_sym_cmd_identifier_token26] = ACTIONS(2443), + [aux_sym_cmd_identifier_token27] = ACTIONS(2443), + [aux_sym_cmd_identifier_token28] = ACTIONS(2443), + [aux_sym_cmd_identifier_token29] = ACTIONS(2443), + [aux_sym_cmd_identifier_token30] = ACTIONS(2443), + [aux_sym_cmd_identifier_token31] = ACTIONS(2443), + [aux_sym_cmd_identifier_token32] = ACTIONS(2443), + [aux_sym_cmd_identifier_token33] = ACTIONS(2443), + [aux_sym_cmd_identifier_token34] = ACTIONS(2443), + [aux_sym_cmd_identifier_token35] = ACTIONS(2443), + [aux_sym_cmd_identifier_token36] = ACTIONS(2443), + [anon_sym_true] = ACTIONS(2443), + [anon_sym_false] = ACTIONS(2443), + [anon_sym_null] = ACTIONS(2443), + [aux_sym_cmd_identifier_token38] = ACTIONS(2443), + [aux_sym_cmd_identifier_token39] = ACTIONS(2443), + [aux_sym_cmd_identifier_token40] = ACTIONS(2443), + [anon_sym_def] = ACTIONS(2443), + [anon_sym_export_DASHenv] = ACTIONS(2443), + [anon_sym_extern] = ACTIONS(2443), + [anon_sym_module] = ACTIONS(2443), + [anon_sym_use] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2443), + [anon_sym_DOLLAR] = ACTIONS(2443), + [anon_sym_error] = ACTIONS(2443), + [anon_sym_list] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2443), + [anon_sym_break] = ACTIONS(2443), + [anon_sym_continue] = ACTIONS(2443), + [anon_sym_for] = ACTIONS(2443), + [anon_sym_in] = ACTIONS(2443), + [anon_sym_loop] = ACTIONS(2443), + [anon_sym_make] = ACTIONS(2443), + [anon_sym_while] = ACTIONS(2443), + [anon_sym_do] = ACTIONS(2443), + [anon_sym_if] = ACTIONS(2443), + [anon_sym_else] = ACTIONS(2443), + [anon_sym_match] = ACTIONS(2443), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_try] = ACTIONS(2443), + [anon_sym_catch] = ACTIONS(2443), + [anon_sym_return] = ACTIONS(2443), + [anon_sym_source] = ACTIONS(2443), + [anon_sym_source_DASHenv] = ACTIONS(2443), + [anon_sym_register] = ACTIONS(2443), + [anon_sym_hide] = ACTIONS(2443), + [anon_sym_hide_DASHenv] = ACTIONS(2443), + [anon_sym_overlay] = ACTIONS(2443), + [anon_sym_new] = ACTIONS(2443), + [anon_sym_as] = ACTIONS(2443), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2443), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2443), + [aux_sym__val_number_decimal_token1] = ACTIONS(2443), + [aux_sym__val_number_decimal_token2] = ACTIONS(2443), + [aux_sym__val_number_decimal_token3] = ACTIONS(2443), + [aux_sym__val_number_decimal_token4] = ACTIONS(2443), + [aux_sym__val_number_token1] = ACTIONS(2443), + [aux_sym__val_number_token2] = ACTIONS(2443), + [aux_sym__val_number_token3] = ACTIONS(2443), + [anon_sym_DQUOTE] = ACTIONS(2443), + [sym__str_single_quotes] = ACTIONS(2443), + [sym__str_back_ticks] = ACTIONS(2443), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2443), + [sym__entry_separator] = ACTIONS(2445), + [anon_sym_PLUS] = ACTIONS(2443), [anon_sym_POUND] = ACTIONS(3), }, [554] = { [sym_comment] = STATE(554), - [anon_sym_export] = ACTIONS(1648), - [anon_sym_alias] = ACTIONS(1648), - [anon_sym_let] = ACTIONS(1648), - [anon_sym_let_DASHenv] = ACTIONS(1648), - [anon_sym_mut] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1648), - [aux_sym_cmd_identifier_token1] = ACTIONS(1648), - [aux_sym_cmd_identifier_token2] = ACTIONS(1648), - [aux_sym_cmd_identifier_token3] = ACTIONS(1648), - [aux_sym_cmd_identifier_token4] = ACTIONS(1648), - [aux_sym_cmd_identifier_token5] = ACTIONS(1648), - [aux_sym_cmd_identifier_token6] = ACTIONS(1648), - [aux_sym_cmd_identifier_token7] = ACTIONS(1648), - [aux_sym_cmd_identifier_token8] = ACTIONS(1648), - [aux_sym_cmd_identifier_token9] = ACTIONS(1648), - [aux_sym_cmd_identifier_token10] = ACTIONS(1648), - [aux_sym_cmd_identifier_token11] = ACTIONS(1648), - [aux_sym_cmd_identifier_token12] = ACTIONS(1648), - [aux_sym_cmd_identifier_token13] = ACTIONS(1648), - [aux_sym_cmd_identifier_token14] = ACTIONS(1648), - [aux_sym_cmd_identifier_token15] = ACTIONS(1648), - [aux_sym_cmd_identifier_token16] = ACTIONS(1648), - [aux_sym_cmd_identifier_token17] = ACTIONS(1648), - [aux_sym_cmd_identifier_token18] = ACTIONS(1648), - [aux_sym_cmd_identifier_token19] = ACTIONS(1648), - [aux_sym_cmd_identifier_token20] = ACTIONS(1648), - [aux_sym_cmd_identifier_token21] = ACTIONS(1648), - [aux_sym_cmd_identifier_token22] = ACTIONS(1648), - [aux_sym_cmd_identifier_token23] = ACTIONS(1648), - [aux_sym_cmd_identifier_token24] = ACTIONS(1648), - [aux_sym_cmd_identifier_token25] = ACTIONS(1648), - [aux_sym_cmd_identifier_token26] = ACTIONS(1648), - [aux_sym_cmd_identifier_token27] = ACTIONS(1648), - [aux_sym_cmd_identifier_token28] = ACTIONS(1648), - [aux_sym_cmd_identifier_token29] = ACTIONS(1648), - [aux_sym_cmd_identifier_token30] = ACTIONS(1648), - [aux_sym_cmd_identifier_token31] = ACTIONS(1648), - [aux_sym_cmd_identifier_token32] = ACTIONS(1648), - [aux_sym_cmd_identifier_token33] = ACTIONS(1648), - [aux_sym_cmd_identifier_token34] = ACTIONS(1648), - [aux_sym_cmd_identifier_token35] = ACTIONS(1648), - [aux_sym_cmd_identifier_token36] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1648), - [anon_sym_false] = ACTIONS(1648), - [anon_sym_null] = ACTIONS(1648), - [aux_sym_cmd_identifier_token38] = ACTIONS(1648), - [aux_sym_cmd_identifier_token39] = ACTIONS(1648), - [aux_sym_cmd_identifier_token40] = ACTIONS(1648), - [anon_sym_def] = ACTIONS(1648), - [anon_sym_export_DASHenv] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1648), - [anon_sym_module] = ACTIONS(1648), - [anon_sym_use] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_error] = ACTIONS(1648), - [anon_sym_list] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_in] = ACTIONS(1648), - [anon_sym_loop] = ACTIONS(1648), - [anon_sym_make] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_do] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1648), - [anon_sym_match] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1648), - [anon_sym_try] = ACTIONS(1648), - [anon_sym_catch] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_source] = ACTIONS(1648), - [anon_sym_source_DASHenv] = ACTIONS(1648), - [anon_sym_register] = ACTIONS(1648), - [anon_sym_hide] = ACTIONS(1648), - [anon_sym_hide_DASHenv] = ACTIONS(1648), - [anon_sym_overlay] = ACTIONS(1648), - [anon_sym_new] = ACTIONS(1648), - [anon_sym_as] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1648), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1648), - [aux_sym__val_number_decimal_token3] = ACTIONS(1648), - [aux_sym__val_number_decimal_token4] = ACTIONS(1648), - [aux_sym__val_number_token1] = ACTIONS(1648), - [aux_sym__val_number_token2] = ACTIONS(1648), - [aux_sym__val_number_token3] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1648), - [sym__str_single_quotes] = ACTIONS(1648), - [sym__str_back_ticks] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1648), - [sym__entry_separator] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2303), + [anon_sym_alias] = ACTIONS(2303), + [anon_sym_let] = ACTIONS(2303), + [anon_sym_let_DASHenv] = ACTIONS(2303), + [anon_sym_mut] = ACTIONS(2303), + [anon_sym_const] = ACTIONS(2303), + [aux_sym_cmd_identifier_token1] = ACTIONS(2303), + [aux_sym_cmd_identifier_token2] = ACTIONS(2303), + [aux_sym_cmd_identifier_token3] = ACTIONS(2303), + [aux_sym_cmd_identifier_token4] = ACTIONS(2303), + [aux_sym_cmd_identifier_token5] = ACTIONS(2303), + [aux_sym_cmd_identifier_token6] = ACTIONS(2303), + [aux_sym_cmd_identifier_token7] = ACTIONS(2303), + [aux_sym_cmd_identifier_token8] = ACTIONS(2303), + [aux_sym_cmd_identifier_token9] = ACTIONS(2303), + [aux_sym_cmd_identifier_token10] = ACTIONS(2303), + [aux_sym_cmd_identifier_token11] = ACTIONS(2303), + [aux_sym_cmd_identifier_token12] = ACTIONS(2303), + [aux_sym_cmd_identifier_token13] = ACTIONS(2303), + [aux_sym_cmd_identifier_token14] = ACTIONS(2303), + [aux_sym_cmd_identifier_token15] = ACTIONS(2303), + [aux_sym_cmd_identifier_token16] = ACTIONS(2303), + [aux_sym_cmd_identifier_token17] = ACTIONS(2303), + [aux_sym_cmd_identifier_token18] = ACTIONS(2303), + [aux_sym_cmd_identifier_token19] = ACTIONS(2303), + [aux_sym_cmd_identifier_token20] = ACTIONS(2303), + [aux_sym_cmd_identifier_token21] = ACTIONS(2303), + [aux_sym_cmd_identifier_token22] = ACTIONS(2303), + [aux_sym_cmd_identifier_token23] = ACTIONS(2303), + [aux_sym_cmd_identifier_token24] = ACTIONS(2303), + [aux_sym_cmd_identifier_token25] = ACTIONS(2303), + [aux_sym_cmd_identifier_token26] = ACTIONS(2303), + [aux_sym_cmd_identifier_token27] = ACTIONS(2303), + [aux_sym_cmd_identifier_token28] = ACTIONS(2303), + [aux_sym_cmd_identifier_token29] = ACTIONS(2303), + [aux_sym_cmd_identifier_token30] = ACTIONS(2303), + [aux_sym_cmd_identifier_token31] = ACTIONS(2303), + [aux_sym_cmd_identifier_token32] = ACTIONS(2303), + [aux_sym_cmd_identifier_token33] = ACTIONS(2303), + [aux_sym_cmd_identifier_token34] = ACTIONS(2303), + [aux_sym_cmd_identifier_token35] = ACTIONS(2303), + [aux_sym_cmd_identifier_token36] = ACTIONS(2303), + [anon_sym_true] = ACTIONS(2307), + [anon_sym_false] = ACTIONS(2307), + [anon_sym_null] = ACTIONS(2307), + [aux_sym_cmd_identifier_token38] = ACTIONS(2303), + [aux_sym_cmd_identifier_token39] = ACTIONS(2307), + [aux_sym_cmd_identifier_token40] = ACTIONS(2307), + [anon_sym_def] = ACTIONS(2303), + [anon_sym_export_DASHenv] = ACTIONS(2303), + [anon_sym_extern] = ACTIONS(2303), + [anon_sym_module] = ACTIONS(2303), + [anon_sym_use] = ACTIONS(2303), + [anon_sym_LPAREN] = ACTIONS(2307), + [anon_sym_DOLLAR] = ACTIONS(2307), + [anon_sym_error] = ACTIONS(2303), + [anon_sym_list] = ACTIONS(2303), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_break] = ACTIONS(2303), + [anon_sym_continue] = ACTIONS(2303), + [anon_sym_for] = ACTIONS(2303), + [anon_sym_in] = ACTIONS(2303), + [anon_sym_loop] = ACTIONS(2303), + [anon_sym_make] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(2303), + [anon_sym_do] = ACTIONS(2303), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_else] = ACTIONS(2303), + [anon_sym_match] = ACTIONS(2303), + [anon_sym_RBRACE] = ACTIONS(2307), + [anon_sym_try] = ACTIONS(2303), + [anon_sym_catch] = ACTIONS(2303), + [anon_sym_return] = ACTIONS(2303), + [anon_sym_source] = ACTIONS(2303), + [anon_sym_source_DASHenv] = ACTIONS(2303), + [anon_sym_register] = ACTIONS(2303), + [anon_sym_hide] = ACTIONS(2303), + [anon_sym_hide_DASHenv] = ACTIONS(2303), + [anon_sym_overlay] = ACTIONS(2303), + [anon_sym_new] = ACTIONS(2303), + [anon_sym_as] = ACTIONS(2303), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2307), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2307), + [aux_sym__val_number_decimal_token1] = ACTIONS(2303), + [aux_sym__val_number_decimal_token2] = ACTIONS(2307), + [aux_sym__val_number_decimal_token3] = ACTIONS(2307), + [aux_sym__val_number_decimal_token4] = ACTIONS(2307), + [aux_sym__val_number_token1] = ACTIONS(2307), + [aux_sym__val_number_token2] = ACTIONS(2307), + [aux_sym__val_number_token3] = ACTIONS(2307), + [anon_sym_LBRACK2] = ACTIONS(2447), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym__str_single_quotes] = ACTIONS(2307), + [sym__str_back_ticks] = ACTIONS(2307), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2307), + [anon_sym_PLUS] = ACTIONS(2303), + [anon_sym_POUND] = ACTIONS(247), }, [555] = { [sym_comment] = STATE(555), - [anon_sym_export] = ACTIONS(1721), - [anon_sym_alias] = ACTIONS(1721), - [anon_sym_let] = ACTIONS(1721), - [anon_sym_let_DASHenv] = ACTIONS(1721), - [anon_sym_mut] = ACTIONS(1721), - [anon_sym_const] = ACTIONS(1721), - [aux_sym_cmd_identifier_token1] = ACTIONS(1721), - [aux_sym_cmd_identifier_token2] = ACTIONS(1721), - [aux_sym_cmd_identifier_token3] = ACTIONS(1721), - [aux_sym_cmd_identifier_token4] = ACTIONS(1721), - [aux_sym_cmd_identifier_token5] = ACTIONS(1721), - [aux_sym_cmd_identifier_token6] = ACTIONS(1721), - [aux_sym_cmd_identifier_token7] = ACTIONS(1721), - [aux_sym_cmd_identifier_token8] = ACTIONS(1721), - [aux_sym_cmd_identifier_token9] = ACTIONS(1721), - [aux_sym_cmd_identifier_token10] = ACTIONS(1721), - [aux_sym_cmd_identifier_token11] = ACTIONS(1721), - [aux_sym_cmd_identifier_token12] = ACTIONS(1721), - [aux_sym_cmd_identifier_token13] = ACTIONS(1721), - [aux_sym_cmd_identifier_token14] = ACTIONS(1721), - [aux_sym_cmd_identifier_token15] = ACTIONS(1721), - [aux_sym_cmd_identifier_token16] = ACTIONS(1721), - [aux_sym_cmd_identifier_token17] = ACTIONS(1721), - [aux_sym_cmd_identifier_token18] = ACTIONS(1721), - [aux_sym_cmd_identifier_token19] = ACTIONS(1721), - [aux_sym_cmd_identifier_token20] = ACTIONS(1721), - [aux_sym_cmd_identifier_token21] = ACTIONS(1721), - [aux_sym_cmd_identifier_token22] = ACTIONS(1721), - [aux_sym_cmd_identifier_token23] = ACTIONS(1721), - [aux_sym_cmd_identifier_token24] = ACTIONS(1721), - [aux_sym_cmd_identifier_token25] = ACTIONS(1721), - [aux_sym_cmd_identifier_token26] = ACTIONS(1721), - [aux_sym_cmd_identifier_token27] = ACTIONS(1721), - [aux_sym_cmd_identifier_token28] = ACTIONS(1721), - [aux_sym_cmd_identifier_token29] = ACTIONS(1721), - [aux_sym_cmd_identifier_token30] = ACTIONS(1721), - [aux_sym_cmd_identifier_token31] = ACTIONS(1721), - [aux_sym_cmd_identifier_token32] = ACTIONS(1721), - [aux_sym_cmd_identifier_token33] = ACTIONS(1721), - [aux_sym_cmd_identifier_token34] = ACTIONS(1721), - [aux_sym_cmd_identifier_token35] = ACTIONS(1721), - [aux_sym_cmd_identifier_token36] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_null] = ACTIONS(1721), - [aux_sym_cmd_identifier_token38] = ACTIONS(1721), - [aux_sym_cmd_identifier_token39] = ACTIONS(1721), - [aux_sym_cmd_identifier_token40] = ACTIONS(1721), - [anon_sym_def] = ACTIONS(1721), - [anon_sym_export_DASHenv] = ACTIONS(1721), - [anon_sym_extern] = ACTIONS(1721), - [anon_sym_module] = ACTIONS(1721), - [anon_sym_use] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1721), - [anon_sym_error] = ACTIONS(1721), - [anon_sym_list] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_break] = ACTIONS(1721), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_for] = ACTIONS(1721), - [anon_sym_in] = ACTIONS(1721), - [anon_sym_loop] = ACTIONS(1721), - [anon_sym_make] = ACTIONS(1721), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_do] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_else] = ACTIONS(1721), - [anon_sym_match] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_try] = ACTIONS(1721), - [anon_sym_catch] = ACTIONS(1721), - [anon_sym_return] = ACTIONS(1721), - [anon_sym_source] = ACTIONS(1721), - [anon_sym_source_DASHenv] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1721), - [anon_sym_hide] = ACTIONS(1721), - [anon_sym_hide_DASHenv] = ACTIONS(1721), - [anon_sym_overlay] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1721), - [anon_sym_as] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1721), - [aux_sym__val_number_decimal_token3] = ACTIONS(1721), - [aux_sym__val_number_decimal_token4] = ACTIONS(1721), - [aux_sym__val_number_token1] = ACTIONS(1721), - [aux_sym__val_number_token2] = ACTIONS(1721), - [aux_sym__val_number_token3] = ACTIONS(1721), - [anon_sym_DQUOTE] = ACTIONS(1721), - [sym__str_single_quotes] = ACTIONS(1721), - [sym__str_back_ticks] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1721), - [sym__entry_separator] = ACTIONS(1723), - [anon_sym_PLUS] = ACTIONS(1721), + [anon_sym_export] = ACTIONS(2449), + [anon_sym_alias] = ACTIONS(2449), + [anon_sym_let] = ACTIONS(2449), + [anon_sym_let_DASHenv] = ACTIONS(2449), + [anon_sym_mut] = ACTIONS(2449), + [anon_sym_const] = ACTIONS(2449), + [aux_sym_cmd_identifier_token1] = ACTIONS(2449), + [aux_sym_cmd_identifier_token2] = ACTIONS(2449), + [aux_sym_cmd_identifier_token3] = ACTIONS(2449), + [aux_sym_cmd_identifier_token4] = ACTIONS(2449), + [aux_sym_cmd_identifier_token5] = ACTIONS(2449), + [aux_sym_cmd_identifier_token6] = ACTIONS(2449), + [aux_sym_cmd_identifier_token7] = ACTIONS(2449), + [aux_sym_cmd_identifier_token8] = ACTIONS(2449), + [aux_sym_cmd_identifier_token9] = ACTIONS(2449), + [aux_sym_cmd_identifier_token10] = ACTIONS(2449), + [aux_sym_cmd_identifier_token11] = ACTIONS(2449), + [aux_sym_cmd_identifier_token12] = ACTIONS(2449), + [aux_sym_cmd_identifier_token13] = ACTIONS(2449), + [aux_sym_cmd_identifier_token14] = ACTIONS(2449), + [aux_sym_cmd_identifier_token15] = ACTIONS(2449), + [aux_sym_cmd_identifier_token16] = ACTIONS(2449), + [aux_sym_cmd_identifier_token17] = ACTIONS(2449), + [aux_sym_cmd_identifier_token18] = ACTIONS(2449), + [aux_sym_cmd_identifier_token19] = ACTIONS(2449), + [aux_sym_cmd_identifier_token20] = ACTIONS(2449), + [aux_sym_cmd_identifier_token21] = ACTIONS(2449), + [aux_sym_cmd_identifier_token22] = ACTIONS(2449), + [aux_sym_cmd_identifier_token23] = ACTIONS(2449), + [aux_sym_cmd_identifier_token24] = ACTIONS(2449), + [aux_sym_cmd_identifier_token25] = ACTIONS(2449), + [aux_sym_cmd_identifier_token26] = ACTIONS(2449), + [aux_sym_cmd_identifier_token27] = ACTIONS(2449), + [aux_sym_cmd_identifier_token28] = ACTIONS(2449), + [aux_sym_cmd_identifier_token29] = ACTIONS(2449), + [aux_sym_cmd_identifier_token30] = ACTIONS(2449), + [aux_sym_cmd_identifier_token31] = ACTIONS(2449), + [aux_sym_cmd_identifier_token32] = ACTIONS(2449), + [aux_sym_cmd_identifier_token33] = ACTIONS(2449), + [aux_sym_cmd_identifier_token34] = ACTIONS(2449), + [aux_sym_cmd_identifier_token35] = ACTIONS(2449), + [aux_sym_cmd_identifier_token36] = ACTIONS(2449), + [anon_sym_true] = ACTIONS(2449), + [anon_sym_false] = ACTIONS(2449), + [anon_sym_null] = ACTIONS(2449), + [aux_sym_cmd_identifier_token38] = ACTIONS(2449), + [aux_sym_cmd_identifier_token39] = ACTIONS(2449), + [aux_sym_cmd_identifier_token40] = ACTIONS(2449), + [anon_sym_def] = ACTIONS(2449), + [anon_sym_export_DASHenv] = ACTIONS(2449), + [anon_sym_extern] = ACTIONS(2449), + [anon_sym_module] = ACTIONS(2449), + [anon_sym_use] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2449), + [anon_sym_DOLLAR] = ACTIONS(2449), + [anon_sym_error] = ACTIONS(2449), + [anon_sym_list] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_break] = ACTIONS(2449), + [anon_sym_continue] = ACTIONS(2449), + [anon_sym_for] = ACTIONS(2449), + [anon_sym_in] = ACTIONS(2449), + [anon_sym_loop] = ACTIONS(2449), + [anon_sym_make] = ACTIONS(2449), + [anon_sym_while] = ACTIONS(2449), + [anon_sym_do] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_else] = ACTIONS(2449), + [anon_sym_match] = ACTIONS(2449), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_try] = ACTIONS(2449), + [anon_sym_catch] = ACTIONS(2449), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_source] = ACTIONS(2449), + [anon_sym_source_DASHenv] = ACTIONS(2449), + [anon_sym_register] = ACTIONS(2449), + [anon_sym_hide] = ACTIONS(2449), + [anon_sym_hide_DASHenv] = ACTIONS(2449), + [anon_sym_overlay] = ACTIONS(2449), + [anon_sym_new] = ACTIONS(2449), + [anon_sym_as] = ACTIONS(2449), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2449), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2449), + [aux_sym__val_number_decimal_token1] = ACTIONS(2449), + [aux_sym__val_number_decimal_token2] = ACTIONS(2449), + [aux_sym__val_number_decimal_token3] = ACTIONS(2449), + [aux_sym__val_number_decimal_token4] = ACTIONS(2449), + [aux_sym__val_number_token1] = ACTIONS(2449), + [aux_sym__val_number_token2] = ACTIONS(2449), + [aux_sym__val_number_token3] = ACTIONS(2449), + [anon_sym_DQUOTE] = ACTIONS(2449), + [sym__str_single_quotes] = ACTIONS(2449), + [sym__str_back_ticks] = ACTIONS(2449), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2449), + [sym__entry_separator] = ACTIONS(2451), + [anon_sym_PLUS] = ACTIONS(2449), [anon_sym_POUND] = ACTIONS(3), }, [556] = { [sym_comment] = STATE(556), - [anon_sym_export] = ACTIONS(2379), - [anon_sym_alias] = ACTIONS(2379), - [anon_sym_let] = ACTIONS(2379), - [anon_sym_let_DASHenv] = ACTIONS(2379), - [anon_sym_mut] = ACTIONS(2379), - [anon_sym_const] = ACTIONS(2379), - [aux_sym_cmd_identifier_token1] = ACTIONS(2379), - [aux_sym_cmd_identifier_token2] = ACTIONS(2379), - [aux_sym_cmd_identifier_token3] = ACTIONS(2379), - [aux_sym_cmd_identifier_token4] = ACTIONS(2379), - [aux_sym_cmd_identifier_token5] = ACTIONS(2379), - [aux_sym_cmd_identifier_token6] = ACTIONS(2379), - [aux_sym_cmd_identifier_token7] = ACTIONS(2379), - [aux_sym_cmd_identifier_token8] = ACTIONS(2379), - [aux_sym_cmd_identifier_token9] = ACTIONS(2379), - [aux_sym_cmd_identifier_token10] = ACTIONS(2379), - [aux_sym_cmd_identifier_token11] = ACTIONS(2379), - [aux_sym_cmd_identifier_token12] = ACTIONS(2379), - [aux_sym_cmd_identifier_token13] = ACTIONS(2379), - [aux_sym_cmd_identifier_token14] = ACTIONS(2379), - [aux_sym_cmd_identifier_token15] = ACTIONS(2379), - [aux_sym_cmd_identifier_token16] = ACTIONS(2379), - [aux_sym_cmd_identifier_token17] = ACTIONS(2379), - [aux_sym_cmd_identifier_token18] = ACTIONS(2379), - [aux_sym_cmd_identifier_token19] = ACTIONS(2379), - [aux_sym_cmd_identifier_token20] = ACTIONS(2379), - [aux_sym_cmd_identifier_token21] = ACTIONS(2379), - [aux_sym_cmd_identifier_token22] = ACTIONS(2379), - [aux_sym_cmd_identifier_token23] = ACTIONS(2379), - [aux_sym_cmd_identifier_token24] = ACTIONS(2379), - [aux_sym_cmd_identifier_token25] = ACTIONS(2379), - [aux_sym_cmd_identifier_token26] = ACTIONS(2379), - [aux_sym_cmd_identifier_token27] = ACTIONS(2379), - [aux_sym_cmd_identifier_token28] = ACTIONS(2379), - [aux_sym_cmd_identifier_token29] = ACTIONS(2379), - [aux_sym_cmd_identifier_token30] = ACTIONS(2379), - [aux_sym_cmd_identifier_token31] = ACTIONS(2379), - [aux_sym_cmd_identifier_token32] = ACTIONS(2379), - [aux_sym_cmd_identifier_token33] = ACTIONS(2379), - [aux_sym_cmd_identifier_token34] = ACTIONS(2379), - [aux_sym_cmd_identifier_token35] = ACTIONS(2379), - [aux_sym_cmd_identifier_token36] = ACTIONS(2379), - [anon_sym_true] = ACTIONS(2379), - [anon_sym_false] = ACTIONS(2379), - [anon_sym_null] = ACTIONS(2379), - [aux_sym_cmd_identifier_token38] = ACTIONS(2379), - [aux_sym_cmd_identifier_token39] = ACTIONS(2379), - [aux_sym_cmd_identifier_token40] = ACTIONS(2379), - [anon_sym_def] = ACTIONS(2379), - [anon_sym_export_DASHenv] = ACTIONS(2379), - [anon_sym_extern] = ACTIONS(2379), - [anon_sym_module] = ACTIONS(2379), - [anon_sym_use] = ACTIONS(2379), - [anon_sym_LPAREN] = ACTIONS(2379), - [anon_sym_DOLLAR] = ACTIONS(2379), - [anon_sym_error] = ACTIONS(2379), - [anon_sym_list] = ACTIONS(2379), - [anon_sym_DASH] = ACTIONS(2379), - [anon_sym_break] = ACTIONS(2379), - [anon_sym_continue] = ACTIONS(2379), - [anon_sym_for] = ACTIONS(2379), - [anon_sym_in] = ACTIONS(2379), - [anon_sym_loop] = ACTIONS(2379), - [anon_sym_make] = ACTIONS(2379), - [anon_sym_while] = ACTIONS(2379), - [anon_sym_do] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(2379), - [anon_sym_else] = ACTIONS(2379), - [anon_sym_match] = ACTIONS(2379), - [anon_sym_RBRACE] = ACTIONS(2379), - [anon_sym_try] = ACTIONS(2379), - [anon_sym_catch] = ACTIONS(2379), - [anon_sym_return] = ACTIONS(2379), - [anon_sym_source] = ACTIONS(2379), - [anon_sym_source_DASHenv] = ACTIONS(2379), - [anon_sym_register] = ACTIONS(2379), - [anon_sym_hide] = ACTIONS(2379), - [anon_sym_hide_DASHenv] = ACTIONS(2379), - [anon_sym_overlay] = ACTIONS(2379), - [anon_sym_new] = ACTIONS(2379), - [anon_sym_as] = ACTIONS(2379), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2379), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2379), - [aux_sym__val_number_decimal_token1] = ACTIONS(2379), - [aux_sym__val_number_decimal_token2] = ACTIONS(2379), - [aux_sym__val_number_decimal_token3] = ACTIONS(2379), - [aux_sym__val_number_decimal_token4] = ACTIONS(2379), - [aux_sym__val_number_token1] = ACTIONS(2379), - [aux_sym__val_number_token2] = ACTIONS(2379), - [aux_sym__val_number_token3] = ACTIONS(2379), - [anon_sym_DQUOTE] = ACTIONS(2379), - [sym__str_single_quotes] = ACTIONS(2379), - [sym__str_back_ticks] = ACTIONS(2379), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2379), - [sym__entry_separator] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2379), + [anon_sym_export] = ACTIONS(1076), + [anon_sym_alias] = ACTIONS(1076), + [anon_sym_let] = ACTIONS(1076), + [anon_sym_let_DASHenv] = ACTIONS(1076), + [anon_sym_mut] = ACTIONS(1076), + [anon_sym_const] = ACTIONS(1076), + [aux_sym_cmd_identifier_token1] = ACTIONS(1076), + [aux_sym_cmd_identifier_token2] = ACTIONS(1076), + [aux_sym_cmd_identifier_token3] = ACTIONS(1076), + [aux_sym_cmd_identifier_token4] = ACTIONS(1076), + [aux_sym_cmd_identifier_token5] = ACTIONS(1076), + [aux_sym_cmd_identifier_token6] = ACTIONS(1076), + [aux_sym_cmd_identifier_token7] = ACTIONS(1076), + [aux_sym_cmd_identifier_token8] = ACTIONS(1076), + [aux_sym_cmd_identifier_token9] = ACTIONS(1076), + [aux_sym_cmd_identifier_token10] = ACTIONS(1076), + [aux_sym_cmd_identifier_token11] = ACTIONS(1076), + [aux_sym_cmd_identifier_token12] = ACTIONS(1076), + [aux_sym_cmd_identifier_token13] = ACTIONS(1076), + [aux_sym_cmd_identifier_token14] = ACTIONS(1076), + [aux_sym_cmd_identifier_token15] = ACTIONS(1076), + [aux_sym_cmd_identifier_token16] = ACTIONS(1076), + [aux_sym_cmd_identifier_token17] = ACTIONS(1076), + [aux_sym_cmd_identifier_token18] = ACTIONS(1076), + [aux_sym_cmd_identifier_token19] = ACTIONS(1076), + [aux_sym_cmd_identifier_token20] = ACTIONS(1076), + [aux_sym_cmd_identifier_token21] = ACTIONS(1076), + [aux_sym_cmd_identifier_token22] = ACTIONS(1076), + [aux_sym_cmd_identifier_token23] = ACTIONS(1076), + [aux_sym_cmd_identifier_token24] = ACTIONS(1076), + [aux_sym_cmd_identifier_token25] = ACTIONS(1076), + [aux_sym_cmd_identifier_token26] = ACTIONS(1076), + [aux_sym_cmd_identifier_token27] = ACTIONS(1076), + [aux_sym_cmd_identifier_token28] = ACTIONS(1076), + [aux_sym_cmd_identifier_token29] = ACTIONS(1076), + [aux_sym_cmd_identifier_token30] = ACTIONS(1076), + [aux_sym_cmd_identifier_token31] = ACTIONS(1076), + [aux_sym_cmd_identifier_token32] = ACTIONS(1076), + [aux_sym_cmd_identifier_token33] = ACTIONS(1076), + [aux_sym_cmd_identifier_token34] = ACTIONS(1076), + [aux_sym_cmd_identifier_token35] = ACTIONS(1076), + [aux_sym_cmd_identifier_token36] = ACTIONS(1076), + [anon_sym_true] = ACTIONS(1076), + [anon_sym_false] = ACTIONS(1076), + [anon_sym_null] = ACTIONS(1076), + [aux_sym_cmd_identifier_token38] = ACTIONS(1076), + [aux_sym_cmd_identifier_token39] = ACTIONS(1076), + [aux_sym_cmd_identifier_token40] = ACTIONS(1076), + [anon_sym_def] = ACTIONS(1076), + [anon_sym_export_DASHenv] = ACTIONS(1076), + [anon_sym_extern] = ACTIONS(1076), + [anon_sym_module] = ACTIONS(1076), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_DOLLAR] = ACTIONS(1076), + [anon_sym_error] = ACTIONS(1076), + [anon_sym_list] = ACTIONS(1076), + [anon_sym_DASH] = ACTIONS(1076), + [anon_sym_break] = ACTIONS(1076), + [anon_sym_continue] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1076), + [anon_sym_in] = ACTIONS(1076), + [anon_sym_loop] = ACTIONS(1076), + [anon_sym_make] = ACTIONS(1076), + [anon_sym_while] = ACTIONS(1076), + [anon_sym_do] = ACTIONS(1076), + [anon_sym_if] = ACTIONS(1076), + [anon_sym_else] = ACTIONS(1076), + [anon_sym_match] = ACTIONS(1076), + [anon_sym_RBRACE] = ACTIONS(1076), + [anon_sym_try] = ACTIONS(1076), + [anon_sym_catch] = ACTIONS(1076), + [anon_sym_return] = ACTIONS(1076), + [anon_sym_source] = ACTIONS(1076), + [anon_sym_source_DASHenv] = ACTIONS(1076), + [anon_sym_register] = ACTIONS(1076), + [anon_sym_hide] = ACTIONS(1076), + [anon_sym_hide_DASHenv] = ACTIONS(1076), + [anon_sym_overlay] = ACTIONS(1076), + [anon_sym_new] = ACTIONS(1076), + [anon_sym_as] = ACTIONS(1076), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1076), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1076), + [aux_sym__val_number_decimal_token1] = ACTIONS(1076), + [aux_sym__val_number_decimal_token2] = ACTIONS(1076), + [aux_sym__val_number_decimal_token3] = ACTIONS(1076), + [aux_sym__val_number_decimal_token4] = ACTIONS(1076), + [aux_sym__val_number_token1] = ACTIONS(1076), + [aux_sym__val_number_token2] = ACTIONS(1076), + [aux_sym__val_number_token3] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1076), + [sym__str_single_quotes] = ACTIONS(1076), + [sym__str_back_ticks] = ACTIONS(1076), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1076), + [sym__entry_separator] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1076), [anon_sym_POUND] = ACTIONS(3), }, [557] = { [sym_comment] = STATE(557), - [anon_sym_export] = ACTIONS(1839), - [anon_sym_alias] = ACTIONS(1839), - [anon_sym_let] = ACTIONS(1839), - [anon_sym_let_DASHenv] = ACTIONS(1839), - [anon_sym_mut] = ACTIONS(1839), - [anon_sym_const] = ACTIONS(1839), - [aux_sym_cmd_identifier_token1] = ACTIONS(1839), - [aux_sym_cmd_identifier_token2] = ACTIONS(1839), - [aux_sym_cmd_identifier_token3] = ACTIONS(1839), - [aux_sym_cmd_identifier_token4] = ACTIONS(1839), - [aux_sym_cmd_identifier_token5] = ACTIONS(1839), - [aux_sym_cmd_identifier_token6] = ACTIONS(1839), - [aux_sym_cmd_identifier_token7] = ACTIONS(1839), - [aux_sym_cmd_identifier_token8] = ACTIONS(1839), - [aux_sym_cmd_identifier_token9] = ACTIONS(1839), - [aux_sym_cmd_identifier_token10] = ACTIONS(1839), - [aux_sym_cmd_identifier_token11] = ACTIONS(1839), - [aux_sym_cmd_identifier_token12] = ACTIONS(1839), - [aux_sym_cmd_identifier_token13] = ACTIONS(1839), - [aux_sym_cmd_identifier_token14] = ACTIONS(1839), - [aux_sym_cmd_identifier_token15] = ACTIONS(1839), - [aux_sym_cmd_identifier_token16] = ACTIONS(1839), - [aux_sym_cmd_identifier_token17] = ACTIONS(1839), - [aux_sym_cmd_identifier_token18] = ACTIONS(1839), - [aux_sym_cmd_identifier_token19] = ACTIONS(1839), - [aux_sym_cmd_identifier_token20] = ACTIONS(1839), - [aux_sym_cmd_identifier_token21] = ACTIONS(1839), - [aux_sym_cmd_identifier_token22] = ACTIONS(1839), - [aux_sym_cmd_identifier_token23] = ACTIONS(1839), - [aux_sym_cmd_identifier_token24] = ACTIONS(1839), - [aux_sym_cmd_identifier_token25] = ACTIONS(1839), - [aux_sym_cmd_identifier_token26] = ACTIONS(1839), - [aux_sym_cmd_identifier_token27] = ACTIONS(1839), - [aux_sym_cmd_identifier_token28] = ACTIONS(1839), - [aux_sym_cmd_identifier_token29] = ACTIONS(1839), - [aux_sym_cmd_identifier_token30] = ACTIONS(1839), - [aux_sym_cmd_identifier_token31] = ACTIONS(1839), - [aux_sym_cmd_identifier_token32] = ACTIONS(1839), - [aux_sym_cmd_identifier_token33] = ACTIONS(1839), - [aux_sym_cmd_identifier_token34] = ACTIONS(1839), - [aux_sym_cmd_identifier_token35] = ACTIONS(1839), - [aux_sym_cmd_identifier_token36] = ACTIONS(1839), - [anon_sym_true] = ACTIONS(1839), - [anon_sym_false] = ACTIONS(1839), - [anon_sym_null] = ACTIONS(1839), - [aux_sym_cmd_identifier_token38] = ACTIONS(1839), - [aux_sym_cmd_identifier_token39] = ACTIONS(1839), - [aux_sym_cmd_identifier_token40] = ACTIONS(1839), - [anon_sym_def] = ACTIONS(1839), - [anon_sym_export_DASHenv] = ACTIONS(1839), - [anon_sym_extern] = ACTIONS(1839), - [anon_sym_module] = ACTIONS(1839), - [anon_sym_use] = ACTIONS(1839), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_DOLLAR] = ACTIONS(1839), - [anon_sym_error] = ACTIONS(1839), - [anon_sym_list] = ACTIONS(1839), - [anon_sym_DASH] = ACTIONS(1839), - [anon_sym_break] = ACTIONS(1839), - [anon_sym_continue] = ACTIONS(1839), - [anon_sym_for] = ACTIONS(1839), - [anon_sym_in] = ACTIONS(1839), - [anon_sym_loop] = ACTIONS(1839), - [anon_sym_make] = ACTIONS(1839), - [anon_sym_while] = ACTIONS(1839), - [anon_sym_do] = ACTIONS(1839), - [anon_sym_if] = ACTIONS(1839), - [anon_sym_else] = ACTIONS(1839), - [anon_sym_match] = ACTIONS(1839), - [anon_sym_RBRACE] = ACTIONS(1839), - [anon_sym_try] = ACTIONS(1839), - [anon_sym_catch] = ACTIONS(1839), - [anon_sym_return] = ACTIONS(1839), - [anon_sym_source] = ACTIONS(1839), - [anon_sym_source_DASHenv] = ACTIONS(1839), - [anon_sym_register] = ACTIONS(1839), - [anon_sym_hide] = ACTIONS(1839), - [anon_sym_hide_DASHenv] = ACTIONS(1839), - [anon_sym_overlay] = ACTIONS(1839), - [anon_sym_new] = ACTIONS(1839), - [anon_sym_as] = ACTIONS(1839), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1839), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1839), - [aux_sym__val_number_decimal_token1] = ACTIONS(1839), - [aux_sym__val_number_decimal_token2] = ACTIONS(1839), - [aux_sym__val_number_decimal_token3] = ACTIONS(1839), - [aux_sym__val_number_decimal_token4] = ACTIONS(1839), - [aux_sym__val_number_token1] = ACTIONS(1839), - [aux_sym__val_number_token2] = ACTIONS(1839), - [aux_sym__val_number_token3] = ACTIONS(1839), - [anon_sym_DQUOTE] = ACTIONS(1839), - [sym__str_single_quotes] = ACTIONS(1839), - [sym__str_back_ticks] = ACTIONS(1839), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1839), - [sym__entry_separator] = ACTIONS(1841), - [anon_sym_PLUS] = ACTIONS(1839), + [anon_sym_export] = ACTIONS(1961), + [anon_sym_alias] = ACTIONS(1961), + [anon_sym_let] = ACTIONS(1961), + [anon_sym_let_DASHenv] = ACTIONS(1961), + [anon_sym_mut] = ACTIONS(1961), + [anon_sym_const] = ACTIONS(1961), + [aux_sym_cmd_identifier_token1] = ACTIONS(1961), + [aux_sym_cmd_identifier_token2] = ACTIONS(1961), + [aux_sym_cmd_identifier_token3] = ACTIONS(1961), + [aux_sym_cmd_identifier_token4] = ACTIONS(1961), + [aux_sym_cmd_identifier_token5] = ACTIONS(1961), + [aux_sym_cmd_identifier_token6] = ACTIONS(1961), + [aux_sym_cmd_identifier_token7] = ACTIONS(1961), + [aux_sym_cmd_identifier_token8] = ACTIONS(1961), + [aux_sym_cmd_identifier_token9] = ACTIONS(1961), + [aux_sym_cmd_identifier_token10] = ACTIONS(1961), + [aux_sym_cmd_identifier_token11] = ACTIONS(1961), + [aux_sym_cmd_identifier_token12] = ACTIONS(1961), + [aux_sym_cmd_identifier_token13] = ACTIONS(1961), + [aux_sym_cmd_identifier_token14] = ACTIONS(1961), + [aux_sym_cmd_identifier_token15] = ACTIONS(1961), + [aux_sym_cmd_identifier_token16] = ACTIONS(1961), + [aux_sym_cmd_identifier_token17] = ACTIONS(1961), + [aux_sym_cmd_identifier_token18] = ACTIONS(1961), + [aux_sym_cmd_identifier_token19] = ACTIONS(1961), + [aux_sym_cmd_identifier_token20] = ACTIONS(1961), + [aux_sym_cmd_identifier_token21] = ACTIONS(1961), + [aux_sym_cmd_identifier_token22] = ACTIONS(1961), + [aux_sym_cmd_identifier_token23] = ACTIONS(1961), + [aux_sym_cmd_identifier_token24] = ACTIONS(1961), + [aux_sym_cmd_identifier_token25] = ACTIONS(1961), + [aux_sym_cmd_identifier_token26] = ACTIONS(1961), + [aux_sym_cmd_identifier_token27] = ACTIONS(1961), + [aux_sym_cmd_identifier_token28] = ACTIONS(1961), + [aux_sym_cmd_identifier_token29] = ACTIONS(1961), + [aux_sym_cmd_identifier_token30] = ACTIONS(1961), + [aux_sym_cmd_identifier_token31] = ACTIONS(1961), + [aux_sym_cmd_identifier_token32] = ACTIONS(1961), + [aux_sym_cmd_identifier_token33] = ACTIONS(1961), + [aux_sym_cmd_identifier_token34] = ACTIONS(1961), + [aux_sym_cmd_identifier_token35] = ACTIONS(1961), + [aux_sym_cmd_identifier_token36] = ACTIONS(1961), + [anon_sym_true] = ACTIONS(1961), + [anon_sym_false] = ACTIONS(1961), + [anon_sym_null] = ACTIONS(1961), + [aux_sym_cmd_identifier_token38] = ACTIONS(1961), + [aux_sym_cmd_identifier_token39] = ACTIONS(1961), + [aux_sym_cmd_identifier_token40] = ACTIONS(1961), + [anon_sym_def] = ACTIONS(1961), + [anon_sym_export_DASHenv] = ACTIONS(1961), + [anon_sym_extern] = ACTIONS(1961), + [anon_sym_module] = ACTIONS(1961), + [anon_sym_use] = ACTIONS(1961), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_DOLLAR] = ACTIONS(1961), + [anon_sym_error] = ACTIONS(1961), + [anon_sym_list] = ACTIONS(1961), + [anon_sym_DASH] = ACTIONS(1961), + [anon_sym_break] = ACTIONS(1961), + [anon_sym_continue] = ACTIONS(1961), + [anon_sym_for] = ACTIONS(1961), + [anon_sym_in] = ACTIONS(1961), + [anon_sym_loop] = ACTIONS(1961), + [anon_sym_make] = ACTIONS(1961), + [anon_sym_while] = ACTIONS(1961), + [anon_sym_do] = ACTIONS(1961), + [anon_sym_if] = ACTIONS(1961), + [anon_sym_else] = ACTIONS(1961), + [anon_sym_match] = ACTIONS(1961), + [anon_sym_RBRACE] = ACTIONS(1961), + [anon_sym_try] = ACTIONS(1961), + [anon_sym_catch] = ACTIONS(1961), + [anon_sym_return] = ACTIONS(1961), + [anon_sym_source] = ACTIONS(1961), + [anon_sym_source_DASHenv] = ACTIONS(1961), + [anon_sym_register] = ACTIONS(1961), + [anon_sym_hide] = ACTIONS(1961), + [anon_sym_hide_DASHenv] = ACTIONS(1961), + [anon_sym_overlay] = ACTIONS(1961), + [anon_sym_new] = ACTIONS(1961), + [anon_sym_as] = ACTIONS(1961), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1961), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1961), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1961), + [aux_sym__val_number_decimal_token3] = ACTIONS(1961), + [aux_sym__val_number_decimal_token4] = ACTIONS(1961), + [aux_sym__val_number_token1] = ACTIONS(1961), + [aux_sym__val_number_token2] = ACTIONS(1961), + [aux_sym__val_number_token3] = ACTIONS(1961), + [anon_sym_DQUOTE] = ACTIONS(1961), + [sym__str_single_quotes] = ACTIONS(1961), + [sym__str_back_ticks] = ACTIONS(1961), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1961), + [sym__entry_separator] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1961), [anon_sym_POUND] = ACTIONS(3), }, [558] = { [sym_comment] = STATE(558), - [anon_sym_export] = ACTIONS(2383), - [anon_sym_alias] = ACTIONS(2383), - [anon_sym_let] = ACTIONS(2383), - [anon_sym_let_DASHenv] = ACTIONS(2383), - [anon_sym_mut] = ACTIONS(2383), - [anon_sym_const] = ACTIONS(2383), - [aux_sym_cmd_identifier_token1] = ACTIONS(2383), - [aux_sym_cmd_identifier_token2] = ACTIONS(2383), - [aux_sym_cmd_identifier_token3] = ACTIONS(2383), - [aux_sym_cmd_identifier_token4] = ACTIONS(2383), - [aux_sym_cmd_identifier_token5] = ACTIONS(2383), - [aux_sym_cmd_identifier_token6] = ACTIONS(2383), - [aux_sym_cmd_identifier_token7] = ACTIONS(2383), - [aux_sym_cmd_identifier_token8] = ACTIONS(2383), - [aux_sym_cmd_identifier_token9] = ACTIONS(2383), - [aux_sym_cmd_identifier_token10] = ACTIONS(2383), - [aux_sym_cmd_identifier_token11] = ACTIONS(2383), - [aux_sym_cmd_identifier_token12] = ACTIONS(2383), - [aux_sym_cmd_identifier_token13] = ACTIONS(2383), - [aux_sym_cmd_identifier_token14] = ACTIONS(2383), - [aux_sym_cmd_identifier_token15] = ACTIONS(2383), - [aux_sym_cmd_identifier_token16] = ACTIONS(2383), - [aux_sym_cmd_identifier_token17] = ACTIONS(2383), - [aux_sym_cmd_identifier_token18] = ACTIONS(2383), - [aux_sym_cmd_identifier_token19] = ACTIONS(2383), - [aux_sym_cmd_identifier_token20] = ACTIONS(2383), - [aux_sym_cmd_identifier_token21] = ACTIONS(2383), - [aux_sym_cmd_identifier_token22] = ACTIONS(2383), - [aux_sym_cmd_identifier_token23] = ACTIONS(2383), - [aux_sym_cmd_identifier_token24] = ACTIONS(2383), - [aux_sym_cmd_identifier_token25] = ACTIONS(2383), - [aux_sym_cmd_identifier_token26] = ACTIONS(2383), - [aux_sym_cmd_identifier_token27] = ACTIONS(2383), - [aux_sym_cmd_identifier_token28] = ACTIONS(2383), - [aux_sym_cmd_identifier_token29] = ACTIONS(2383), - [aux_sym_cmd_identifier_token30] = ACTIONS(2383), - [aux_sym_cmd_identifier_token31] = ACTIONS(2383), - [aux_sym_cmd_identifier_token32] = ACTIONS(2383), - [aux_sym_cmd_identifier_token33] = ACTIONS(2383), - [aux_sym_cmd_identifier_token34] = ACTIONS(2383), - [aux_sym_cmd_identifier_token35] = ACTIONS(2383), - [aux_sym_cmd_identifier_token36] = ACTIONS(2383), - [anon_sym_true] = ACTIONS(2383), - [anon_sym_false] = ACTIONS(2383), - [anon_sym_null] = ACTIONS(2383), - [aux_sym_cmd_identifier_token38] = ACTIONS(2383), - [aux_sym_cmd_identifier_token39] = ACTIONS(2383), - [aux_sym_cmd_identifier_token40] = ACTIONS(2383), - [anon_sym_def] = ACTIONS(2383), - [anon_sym_export_DASHenv] = ACTIONS(2383), - [anon_sym_extern] = ACTIONS(2383), - [anon_sym_module] = ACTIONS(2383), - [anon_sym_use] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2383), - [anon_sym_DOLLAR] = ACTIONS(2383), - [anon_sym_error] = ACTIONS(2383), - [anon_sym_list] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2383), - [anon_sym_break] = ACTIONS(2383), - [anon_sym_continue] = ACTIONS(2383), - [anon_sym_for] = ACTIONS(2383), - [anon_sym_in] = ACTIONS(2383), - [anon_sym_loop] = ACTIONS(2383), - [anon_sym_make] = ACTIONS(2383), - [anon_sym_while] = ACTIONS(2383), - [anon_sym_do] = ACTIONS(2383), - [anon_sym_if] = ACTIONS(2383), - [anon_sym_else] = ACTIONS(2383), - [anon_sym_match] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(2383), - [anon_sym_try] = ACTIONS(2383), - [anon_sym_catch] = ACTIONS(2383), - [anon_sym_return] = ACTIONS(2383), - [anon_sym_source] = ACTIONS(2383), - [anon_sym_source_DASHenv] = ACTIONS(2383), - [anon_sym_register] = ACTIONS(2383), - [anon_sym_hide] = ACTIONS(2383), - [anon_sym_hide_DASHenv] = ACTIONS(2383), - [anon_sym_overlay] = ACTIONS(2383), - [anon_sym_new] = ACTIONS(2383), - [anon_sym_as] = ACTIONS(2383), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2383), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2383), - [aux_sym__val_number_decimal_token1] = ACTIONS(2383), - [aux_sym__val_number_decimal_token2] = ACTIONS(2383), - [aux_sym__val_number_decimal_token3] = ACTIONS(2383), - [aux_sym__val_number_decimal_token4] = ACTIONS(2383), - [aux_sym__val_number_token1] = ACTIONS(2383), - [aux_sym__val_number_token2] = ACTIONS(2383), - [aux_sym__val_number_token3] = ACTIONS(2383), - [anon_sym_DQUOTE] = ACTIONS(2383), - [sym__str_single_quotes] = ACTIONS(2383), - [sym__str_back_ticks] = ACTIONS(2383), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2383), - [sym__entry_separator] = ACTIONS(2385), - [anon_sym_PLUS] = ACTIONS(2383), + [anon_sym_export] = ACTIONS(2035), + [anon_sym_alias] = ACTIONS(2035), + [anon_sym_let] = ACTIONS(2035), + [anon_sym_let_DASHenv] = ACTIONS(2035), + [anon_sym_mut] = ACTIONS(2035), + [anon_sym_const] = ACTIONS(2035), + [aux_sym_cmd_identifier_token1] = ACTIONS(2035), + [aux_sym_cmd_identifier_token2] = ACTIONS(2035), + [aux_sym_cmd_identifier_token3] = ACTIONS(2035), + [aux_sym_cmd_identifier_token4] = ACTIONS(2035), + [aux_sym_cmd_identifier_token5] = ACTIONS(2035), + [aux_sym_cmd_identifier_token6] = ACTIONS(2035), + [aux_sym_cmd_identifier_token7] = ACTIONS(2035), + [aux_sym_cmd_identifier_token8] = ACTIONS(2035), + [aux_sym_cmd_identifier_token9] = ACTIONS(2035), + [aux_sym_cmd_identifier_token10] = ACTIONS(2035), + [aux_sym_cmd_identifier_token11] = ACTIONS(2035), + [aux_sym_cmd_identifier_token12] = ACTIONS(2035), + [aux_sym_cmd_identifier_token13] = ACTIONS(2035), + [aux_sym_cmd_identifier_token14] = ACTIONS(2035), + [aux_sym_cmd_identifier_token15] = ACTIONS(2035), + [aux_sym_cmd_identifier_token16] = ACTIONS(2035), + [aux_sym_cmd_identifier_token17] = ACTIONS(2035), + [aux_sym_cmd_identifier_token18] = ACTIONS(2035), + [aux_sym_cmd_identifier_token19] = ACTIONS(2035), + [aux_sym_cmd_identifier_token20] = ACTIONS(2035), + [aux_sym_cmd_identifier_token21] = ACTIONS(2035), + [aux_sym_cmd_identifier_token22] = ACTIONS(2035), + [aux_sym_cmd_identifier_token23] = ACTIONS(2035), + [aux_sym_cmd_identifier_token24] = ACTIONS(2035), + [aux_sym_cmd_identifier_token25] = ACTIONS(2035), + [aux_sym_cmd_identifier_token26] = ACTIONS(2035), + [aux_sym_cmd_identifier_token27] = ACTIONS(2035), + [aux_sym_cmd_identifier_token28] = ACTIONS(2035), + [aux_sym_cmd_identifier_token29] = ACTIONS(2035), + [aux_sym_cmd_identifier_token30] = ACTIONS(2035), + [aux_sym_cmd_identifier_token31] = ACTIONS(2035), + [aux_sym_cmd_identifier_token32] = ACTIONS(2035), + [aux_sym_cmd_identifier_token33] = ACTIONS(2035), + [aux_sym_cmd_identifier_token34] = ACTIONS(2035), + [aux_sym_cmd_identifier_token35] = ACTIONS(2035), + [aux_sym_cmd_identifier_token36] = ACTIONS(2035), + [anon_sym_true] = ACTIONS(2035), + [anon_sym_false] = ACTIONS(2035), + [anon_sym_null] = ACTIONS(2035), + [aux_sym_cmd_identifier_token38] = ACTIONS(2035), + [aux_sym_cmd_identifier_token39] = ACTIONS(2035), + [aux_sym_cmd_identifier_token40] = ACTIONS(2035), + [anon_sym_def] = ACTIONS(2035), + [anon_sym_export_DASHenv] = ACTIONS(2035), + [anon_sym_extern] = ACTIONS(2035), + [anon_sym_module] = ACTIONS(2035), + [anon_sym_use] = ACTIONS(2035), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_DOLLAR] = ACTIONS(2035), + [anon_sym_error] = ACTIONS(2035), + [anon_sym_list] = ACTIONS(2035), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_break] = ACTIONS(2035), + [anon_sym_continue] = ACTIONS(2035), + [anon_sym_for] = ACTIONS(2035), + [anon_sym_in] = ACTIONS(2035), + [anon_sym_loop] = ACTIONS(2035), + [anon_sym_make] = ACTIONS(2035), + [anon_sym_while] = ACTIONS(2035), + [anon_sym_do] = ACTIONS(2035), + [anon_sym_if] = ACTIONS(2035), + [anon_sym_else] = ACTIONS(2035), + [anon_sym_match] = ACTIONS(2035), + [anon_sym_RBRACE] = ACTIONS(2035), + [anon_sym_try] = ACTIONS(2035), + [anon_sym_catch] = ACTIONS(2035), + [anon_sym_return] = ACTIONS(2035), + [anon_sym_source] = ACTIONS(2035), + [anon_sym_source_DASHenv] = ACTIONS(2035), + [anon_sym_register] = ACTIONS(2035), + [anon_sym_hide] = ACTIONS(2035), + [anon_sym_hide_DASHenv] = ACTIONS(2035), + [anon_sym_overlay] = ACTIONS(2035), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_as] = ACTIONS(2035), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2035), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2035), + [aux_sym__val_number_decimal_token1] = ACTIONS(2035), + [aux_sym__val_number_decimal_token2] = ACTIONS(2035), + [aux_sym__val_number_decimal_token3] = ACTIONS(2035), + [aux_sym__val_number_decimal_token4] = ACTIONS(2035), + [aux_sym__val_number_token1] = ACTIONS(2035), + [aux_sym__val_number_token2] = ACTIONS(2035), + [aux_sym__val_number_token3] = ACTIONS(2035), + [anon_sym_DQUOTE] = ACTIONS(2035), + [sym__str_single_quotes] = ACTIONS(2035), + [sym__str_back_ticks] = ACTIONS(2035), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2035), + [sym__entry_separator] = ACTIONS(2041), + [anon_sym_PLUS] = ACTIONS(2035), [anon_sym_POUND] = ACTIONS(3), }, [559] = { [sym_comment] = STATE(559), - [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), - [aux_sym_cmd_identifier_token1] = ACTIONS(1525), - [aux_sym_cmd_identifier_token2] = ACTIONS(1525), - [aux_sym_cmd_identifier_token3] = ACTIONS(1525), - [aux_sym_cmd_identifier_token4] = ACTIONS(1525), - [aux_sym_cmd_identifier_token5] = ACTIONS(1525), - [aux_sym_cmd_identifier_token6] = ACTIONS(1525), - [aux_sym_cmd_identifier_token7] = ACTIONS(1525), - [aux_sym_cmd_identifier_token8] = ACTIONS(1525), - [aux_sym_cmd_identifier_token9] = ACTIONS(1525), - [aux_sym_cmd_identifier_token10] = ACTIONS(1525), - [aux_sym_cmd_identifier_token11] = ACTIONS(1525), - [aux_sym_cmd_identifier_token12] = ACTIONS(1525), - [aux_sym_cmd_identifier_token13] = ACTIONS(1525), - [aux_sym_cmd_identifier_token14] = ACTIONS(1525), - [aux_sym_cmd_identifier_token15] = ACTIONS(1525), - [aux_sym_cmd_identifier_token16] = ACTIONS(1525), - [aux_sym_cmd_identifier_token17] = ACTIONS(1525), - [aux_sym_cmd_identifier_token18] = ACTIONS(1525), - [aux_sym_cmd_identifier_token19] = ACTIONS(1525), - [aux_sym_cmd_identifier_token20] = ACTIONS(1525), - [aux_sym_cmd_identifier_token21] = ACTIONS(1525), - [aux_sym_cmd_identifier_token22] = ACTIONS(1525), - [aux_sym_cmd_identifier_token23] = ACTIONS(1525), - [aux_sym_cmd_identifier_token24] = ACTIONS(1525), - [aux_sym_cmd_identifier_token25] = ACTIONS(1525), - [aux_sym_cmd_identifier_token26] = ACTIONS(1525), - [aux_sym_cmd_identifier_token27] = ACTIONS(1525), - [aux_sym_cmd_identifier_token28] = ACTIONS(1525), - [aux_sym_cmd_identifier_token29] = ACTIONS(1525), - [aux_sym_cmd_identifier_token30] = ACTIONS(1525), - [aux_sym_cmd_identifier_token31] = ACTIONS(1525), - [aux_sym_cmd_identifier_token32] = ACTIONS(1525), - [aux_sym_cmd_identifier_token33] = ACTIONS(1525), - [aux_sym_cmd_identifier_token34] = ACTIONS(1525), - [aux_sym_cmd_identifier_token35] = ACTIONS(1525), - [aux_sym_cmd_identifier_token36] = ACTIONS(1525), - [anon_sym_true] = ACTIONS(1525), - [anon_sym_false] = ACTIONS(1525), - [anon_sym_null] = ACTIONS(1525), - [aux_sym_cmd_identifier_token38] = ACTIONS(1525), - [aux_sym_cmd_identifier_token39] = ACTIONS(1525), - [aux_sym_cmd_identifier_token40] = ACTIONS(1525), - [anon_sym_def] = 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_LPAREN] = ACTIONS(1525), - [anon_sym_DOLLAR] = ACTIONS(1525), - [anon_sym_error] = ACTIONS(1525), - [anon_sym_list] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_break] = ACTIONS(1525), - [anon_sym_continue] = ACTIONS(1525), - [anon_sym_for] = ACTIONS(1525), - [anon_sym_in] = ACTIONS(1525), - [anon_sym_loop] = ACTIONS(1525), - [anon_sym_make] = ACTIONS(1525), - [anon_sym_while] = ACTIONS(1525), - [anon_sym_do] = ACTIONS(1525), - [anon_sym_if] = ACTIONS(1525), - [anon_sym_else] = ACTIONS(1525), - [anon_sym_match] = ACTIONS(1525), - [anon_sym_RBRACE] = ACTIONS(1525), - [anon_sym_try] = ACTIONS(1525), - [anon_sym_catch] = 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_new] = ACTIONS(1525), - [anon_sym_as] = ACTIONS(1525), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1525), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1525), - [aux_sym__val_number_decimal_token1] = ACTIONS(1525), - [aux_sym__val_number_decimal_token2] = ACTIONS(1525), - [aux_sym__val_number_decimal_token3] = ACTIONS(1525), - [aux_sym__val_number_decimal_token4] = ACTIONS(1525), - [aux_sym__val_number_token1] = ACTIONS(1525), - [aux_sym__val_number_token2] = ACTIONS(1525), - [aux_sym__val_number_token3] = ACTIONS(1525), - [anon_sym_DQUOTE] = ACTIONS(1525), - [sym__str_single_quotes] = ACTIONS(1525), - [sym__str_back_ticks] = ACTIONS(1525), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1525), - [sym__entry_separator] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1525), + [anon_sym_export] = ACTIONS(1040), + [anon_sym_alias] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_let_DASHenv] = ACTIONS(1040), + [anon_sym_mut] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(1040), + [aux_sym_cmd_identifier_token1] = ACTIONS(1040), + [aux_sym_cmd_identifier_token2] = ACTIONS(1040), + [aux_sym_cmd_identifier_token3] = ACTIONS(1040), + [aux_sym_cmd_identifier_token4] = ACTIONS(1040), + [aux_sym_cmd_identifier_token5] = ACTIONS(1040), + [aux_sym_cmd_identifier_token6] = ACTIONS(1040), + [aux_sym_cmd_identifier_token7] = ACTIONS(1040), + [aux_sym_cmd_identifier_token8] = ACTIONS(1040), + [aux_sym_cmd_identifier_token9] = ACTIONS(1040), + [aux_sym_cmd_identifier_token10] = ACTIONS(1040), + [aux_sym_cmd_identifier_token11] = ACTIONS(1040), + [aux_sym_cmd_identifier_token12] = ACTIONS(1040), + [aux_sym_cmd_identifier_token13] = ACTIONS(1040), + [aux_sym_cmd_identifier_token14] = ACTIONS(1040), + [aux_sym_cmd_identifier_token15] = ACTIONS(1040), + [aux_sym_cmd_identifier_token16] = ACTIONS(1040), + [aux_sym_cmd_identifier_token17] = ACTIONS(1040), + [aux_sym_cmd_identifier_token18] = ACTIONS(1040), + [aux_sym_cmd_identifier_token19] = ACTIONS(1040), + [aux_sym_cmd_identifier_token20] = ACTIONS(1040), + [aux_sym_cmd_identifier_token21] = ACTIONS(1040), + [aux_sym_cmd_identifier_token22] = ACTIONS(1040), + [aux_sym_cmd_identifier_token23] = ACTIONS(1040), + [aux_sym_cmd_identifier_token24] = ACTIONS(1040), + [aux_sym_cmd_identifier_token25] = ACTIONS(1040), + [aux_sym_cmd_identifier_token26] = ACTIONS(1040), + [aux_sym_cmd_identifier_token27] = ACTIONS(1040), + [aux_sym_cmd_identifier_token28] = ACTIONS(1040), + [aux_sym_cmd_identifier_token29] = ACTIONS(1040), + [aux_sym_cmd_identifier_token30] = ACTIONS(1040), + [aux_sym_cmd_identifier_token31] = ACTIONS(1040), + [aux_sym_cmd_identifier_token32] = ACTIONS(1040), + [aux_sym_cmd_identifier_token33] = ACTIONS(1040), + [aux_sym_cmd_identifier_token34] = ACTIONS(1040), + [aux_sym_cmd_identifier_token35] = ACTIONS(1040), + [aux_sym_cmd_identifier_token36] = ACTIONS(1040), + [anon_sym_true] = ACTIONS(1040), + [anon_sym_false] = ACTIONS(1040), + [anon_sym_null] = ACTIONS(1040), + [aux_sym_cmd_identifier_token38] = ACTIONS(1040), + [aux_sym_cmd_identifier_token39] = ACTIONS(1040), + [aux_sym_cmd_identifier_token40] = ACTIONS(1040), + [anon_sym_def] = ACTIONS(1040), + [anon_sym_export_DASHenv] = ACTIONS(1040), + [anon_sym_extern] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + [anon_sym_use] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1040), + [anon_sym_error] = ACTIONS(1040), + [anon_sym_list] = ACTIONS(1040), + [anon_sym_DASH] = ACTIONS(1040), + [anon_sym_break] = ACTIONS(1040), + [anon_sym_continue] = ACTIONS(1040), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_loop] = ACTIONS(1040), + [anon_sym_make] = ACTIONS(1040), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_do] = ACTIONS(1040), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(1040), + [anon_sym_match] = ACTIONS(1040), + [anon_sym_RBRACE] = ACTIONS(1040), + [anon_sym_try] = ACTIONS(1040), + [anon_sym_catch] = ACTIONS(1040), + [anon_sym_return] = ACTIONS(1040), + [anon_sym_source] = ACTIONS(1040), + [anon_sym_source_DASHenv] = ACTIONS(1040), + [anon_sym_register] = ACTIONS(1040), + [anon_sym_hide] = ACTIONS(1040), + [anon_sym_hide_DASHenv] = ACTIONS(1040), + [anon_sym_overlay] = ACTIONS(1040), + [anon_sym_new] = ACTIONS(1040), + [anon_sym_as] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1040), + [aux_sym__val_number_decimal_token1] = ACTIONS(1040), + [aux_sym__val_number_decimal_token2] = ACTIONS(1040), + [aux_sym__val_number_decimal_token3] = ACTIONS(1040), + [aux_sym__val_number_decimal_token4] = ACTIONS(1040), + [aux_sym__val_number_token1] = ACTIONS(1040), + [aux_sym__val_number_token2] = ACTIONS(1040), + [aux_sym__val_number_token3] = ACTIONS(1040), + [anon_sym_DQUOTE] = ACTIONS(1040), + [sym__str_single_quotes] = ACTIONS(1040), + [sym__str_back_ticks] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1040), + [sym__entry_separator] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1040), [anon_sym_POUND] = ACTIONS(3), }, [560] = { [sym_comment] = STATE(560), - [anon_sym_export] = ACTIONS(2235), - [anon_sym_alias] = ACTIONS(2235), - [anon_sym_let] = ACTIONS(2235), - [anon_sym_let_DASHenv] = ACTIONS(2235), - [anon_sym_mut] = ACTIONS(2235), - [anon_sym_const] = ACTIONS(2235), - [aux_sym_cmd_identifier_token1] = ACTIONS(2235), - [aux_sym_cmd_identifier_token2] = ACTIONS(2235), - [aux_sym_cmd_identifier_token3] = ACTIONS(2235), - [aux_sym_cmd_identifier_token4] = ACTIONS(2235), - [aux_sym_cmd_identifier_token5] = ACTIONS(2235), - [aux_sym_cmd_identifier_token6] = ACTIONS(2235), - [aux_sym_cmd_identifier_token7] = ACTIONS(2235), - [aux_sym_cmd_identifier_token8] = ACTIONS(2235), - [aux_sym_cmd_identifier_token9] = ACTIONS(2235), - [aux_sym_cmd_identifier_token10] = ACTIONS(2235), - [aux_sym_cmd_identifier_token11] = ACTIONS(2235), - [aux_sym_cmd_identifier_token12] = ACTIONS(2235), - [aux_sym_cmd_identifier_token13] = ACTIONS(2235), - [aux_sym_cmd_identifier_token14] = ACTIONS(2235), - [aux_sym_cmd_identifier_token15] = ACTIONS(2235), - [aux_sym_cmd_identifier_token16] = ACTIONS(2235), - [aux_sym_cmd_identifier_token17] = ACTIONS(2235), - [aux_sym_cmd_identifier_token18] = ACTIONS(2235), - [aux_sym_cmd_identifier_token19] = ACTIONS(2235), - [aux_sym_cmd_identifier_token20] = ACTIONS(2235), - [aux_sym_cmd_identifier_token21] = ACTIONS(2235), - [aux_sym_cmd_identifier_token22] = ACTIONS(2235), - [aux_sym_cmd_identifier_token23] = ACTIONS(2235), - [aux_sym_cmd_identifier_token24] = ACTIONS(2235), - [aux_sym_cmd_identifier_token25] = ACTIONS(2235), - [aux_sym_cmd_identifier_token26] = ACTIONS(2235), - [aux_sym_cmd_identifier_token27] = ACTIONS(2235), - [aux_sym_cmd_identifier_token28] = ACTIONS(2235), - [aux_sym_cmd_identifier_token29] = ACTIONS(2235), - [aux_sym_cmd_identifier_token30] = ACTIONS(2235), - [aux_sym_cmd_identifier_token31] = ACTIONS(2235), - [aux_sym_cmd_identifier_token32] = ACTIONS(2235), - [aux_sym_cmd_identifier_token33] = ACTIONS(2235), - [aux_sym_cmd_identifier_token34] = ACTIONS(2235), - [aux_sym_cmd_identifier_token35] = ACTIONS(2235), - [aux_sym_cmd_identifier_token36] = ACTIONS(2235), - [anon_sym_true] = ACTIONS(2239), - [anon_sym_false] = ACTIONS(2239), - [anon_sym_null] = ACTIONS(2239), - [aux_sym_cmd_identifier_token38] = ACTIONS(2235), - [aux_sym_cmd_identifier_token39] = ACTIONS(2239), - [aux_sym_cmd_identifier_token40] = ACTIONS(2239), - [anon_sym_def] = ACTIONS(2235), - [anon_sym_export_DASHenv] = ACTIONS(2235), - [anon_sym_extern] = ACTIONS(2235), - [anon_sym_module] = ACTIONS(2235), - [anon_sym_use] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2239), - [anon_sym_DOLLAR] = ACTIONS(2239), - [anon_sym_error] = ACTIONS(2235), - [anon_sym_list] = ACTIONS(2235), - [anon_sym_DASH] = ACTIONS(2235), - [anon_sym_break] = ACTIONS(2235), - [anon_sym_continue] = ACTIONS(2235), - [anon_sym_for] = ACTIONS(2235), - [anon_sym_in] = ACTIONS(2235), - [anon_sym_loop] = ACTIONS(2235), - [anon_sym_make] = ACTIONS(2235), - [anon_sym_while] = ACTIONS(2235), - [anon_sym_do] = ACTIONS(2235), - [anon_sym_if] = ACTIONS(2235), - [anon_sym_else] = ACTIONS(2235), - [anon_sym_match] = ACTIONS(2235), - [anon_sym_RBRACE] = ACTIONS(2239), - [anon_sym_try] = ACTIONS(2235), - [anon_sym_catch] = ACTIONS(2235), - [anon_sym_return] = ACTIONS(2235), - [anon_sym_source] = ACTIONS(2235), - [anon_sym_source_DASHenv] = ACTIONS(2235), - [anon_sym_register] = ACTIONS(2235), - [anon_sym_hide] = ACTIONS(2235), - [anon_sym_hide_DASHenv] = ACTIONS(2235), - [anon_sym_overlay] = ACTIONS(2235), - [anon_sym_new] = ACTIONS(2235), - [anon_sym_as] = ACTIONS(2235), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2239), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2239), - [aux_sym__val_number_decimal_token1] = ACTIONS(2235), - [aux_sym__val_number_decimal_token2] = ACTIONS(2239), - [aux_sym__val_number_decimal_token3] = ACTIONS(2239), - [aux_sym__val_number_decimal_token4] = ACTIONS(2239), - [aux_sym__val_number_token1] = ACTIONS(2239), - [aux_sym__val_number_token2] = ACTIONS(2239), - [aux_sym__val_number_token3] = ACTIONS(2239), - [anon_sym_LBRACK2] = ACTIONS(2387), - [anon_sym_DQUOTE] = ACTIONS(2239), - [sym__str_single_quotes] = ACTIONS(2239), - [sym__str_back_ticks] = ACTIONS(2239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2239), - [anon_sym_PLUS] = ACTIONS(2235), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_alias] = ACTIONS(1044), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_let_DASHenv] = ACTIONS(1044), + [anon_sym_mut] = ACTIONS(1044), + [anon_sym_const] = ACTIONS(1044), + [aux_sym_cmd_identifier_token1] = ACTIONS(1044), + [aux_sym_cmd_identifier_token2] = ACTIONS(1044), + [aux_sym_cmd_identifier_token3] = ACTIONS(1044), + [aux_sym_cmd_identifier_token4] = ACTIONS(1044), + [aux_sym_cmd_identifier_token5] = ACTIONS(1044), + [aux_sym_cmd_identifier_token6] = ACTIONS(1044), + [aux_sym_cmd_identifier_token7] = ACTIONS(1044), + [aux_sym_cmd_identifier_token8] = ACTIONS(1044), + [aux_sym_cmd_identifier_token9] = ACTIONS(1044), + [aux_sym_cmd_identifier_token10] = ACTIONS(1044), + [aux_sym_cmd_identifier_token11] = ACTIONS(1044), + [aux_sym_cmd_identifier_token12] = ACTIONS(1044), + [aux_sym_cmd_identifier_token13] = ACTIONS(1044), + [aux_sym_cmd_identifier_token14] = ACTIONS(1044), + [aux_sym_cmd_identifier_token15] = ACTIONS(1044), + [aux_sym_cmd_identifier_token16] = ACTIONS(1044), + [aux_sym_cmd_identifier_token17] = ACTIONS(1044), + [aux_sym_cmd_identifier_token18] = ACTIONS(1044), + [aux_sym_cmd_identifier_token19] = ACTIONS(1044), + [aux_sym_cmd_identifier_token20] = ACTIONS(1044), + [aux_sym_cmd_identifier_token21] = ACTIONS(1044), + [aux_sym_cmd_identifier_token22] = ACTIONS(1044), + [aux_sym_cmd_identifier_token23] = ACTIONS(1044), + [aux_sym_cmd_identifier_token24] = ACTIONS(1044), + [aux_sym_cmd_identifier_token25] = ACTIONS(1044), + [aux_sym_cmd_identifier_token26] = ACTIONS(1044), + [aux_sym_cmd_identifier_token27] = ACTIONS(1044), + [aux_sym_cmd_identifier_token28] = ACTIONS(1044), + [aux_sym_cmd_identifier_token29] = ACTIONS(1044), + [aux_sym_cmd_identifier_token30] = ACTIONS(1044), + [aux_sym_cmd_identifier_token31] = ACTIONS(1044), + [aux_sym_cmd_identifier_token32] = ACTIONS(1044), + [aux_sym_cmd_identifier_token33] = ACTIONS(1044), + [aux_sym_cmd_identifier_token34] = ACTIONS(1044), + [aux_sym_cmd_identifier_token35] = ACTIONS(1044), + [aux_sym_cmd_identifier_token36] = ACTIONS(1044), + [anon_sym_true] = ACTIONS(1044), + [anon_sym_false] = ACTIONS(1044), + [anon_sym_null] = ACTIONS(1044), + [aux_sym_cmd_identifier_token38] = ACTIONS(1044), + [aux_sym_cmd_identifier_token39] = ACTIONS(1044), + [aux_sym_cmd_identifier_token40] = ACTIONS(1044), + [anon_sym_def] = ACTIONS(1044), + [anon_sym_export_DASHenv] = ACTIONS(1044), + [anon_sym_extern] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_use] = ACTIONS(1044), + [anon_sym_LPAREN] = ACTIONS(1044), + [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_error] = ACTIONS(1044), + [anon_sym_list] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_break] = ACTIONS(1044), + [anon_sym_continue] = ACTIONS(1044), + [anon_sym_for] = ACTIONS(1044), + [anon_sym_in] = ACTIONS(1044), + [anon_sym_loop] = ACTIONS(1044), + [anon_sym_make] = ACTIONS(1044), + [anon_sym_while] = ACTIONS(1044), + [anon_sym_do] = ACTIONS(1044), + [anon_sym_if] = ACTIONS(1044), + [anon_sym_else] = ACTIONS(1044), + [anon_sym_match] = ACTIONS(1044), + [anon_sym_RBRACE] = ACTIONS(1044), + [anon_sym_try] = ACTIONS(1044), + [anon_sym_catch] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_source] = ACTIONS(1044), + [anon_sym_source_DASHenv] = ACTIONS(1044), + [anon_sym_register] = ACTIONS(1044), + [anon_sym_hide] = ACTIONS(1044), + [anon_sym_hide_DASHenv] = ACTIONS(1044), + [anon_sym_overlay] = ACTIONS(1044), + [anon_sym_new] = ACTIONS(1044), + [anon_sym_as] = ACTIONS(1044), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1044), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1044), + [aux_sym__val_number_decimal_token1] = ACTIONS(1044), + [aux_sym__val_number_decimal_token2] = ACTIONS(1044), + [aux_sym__val_number_decimal_token3] = ACTIONS(1044), + [aux_sym__val_number_decimal_token4] = ACTIONS(1044), + [aux_sym__val_number_token1] = ACTIONS(1044), + [aux_sym__val_number_token2] = ACTIONS(1044), + [aux_sym__val_number_token3] = ACTIONS(1044), + [anon_sym_DQUOTE] = ACTIONS(1044), + [sym__str_single_quotes] = ACTIONS(1044), + [sym__str_back_ticks] = ACTIONS(1044), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1044), + [sym__entry_separator] = ACTIONS(1046), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_POUND] = ACTIONS(3), }, [561] = { [sym_comment] = STATE(561), - [anon_sym_export] = ACTIONS(2389), - [anon_sym_alias] = ACTIONS(2389), - [anon_sym_let] = ACTIONS(2389), - [anon_sym_let_DASHenv] = ACTIONS(2389), - [anon_sym_mut] = ACTIONS(2389), - [anon_sym_const] = ACTIONS(2389), - [aux_sym_cmd_identifier_token1] = ACTIONS(2389), - [aux_sym_cmd_identifier_token2] = ACTIONS(2389), - [aux_sym_cmd_identifier_token3] = ACTIONS(2389), - [aux_sym_cmd_identifier_token4] = ACTIONS(2389), - [aux_sym_cmd_identifier_token5] = ACTIONS(2389), - [aux_sym_cmd_identifier_token6] = ACTIONS(2389), - [aux_sym_cmd_identifier_token7] = ACTIONS(2389), - [aux_sym_cmd_identifier_token8] = ACTIONS(2389), - [aux_sym_cmd_identifier_token9] = ACTIONS(2389), - [aux_sym_cmd_identifier_token10] = ACTIONS(2389), - [aux_sym_cmd_identifier_token11] = ACTIONS(2389), - [aux_sym_cmd_identifier_token12] = ACTIONS(2389), - [aux_sym_cmd_identifier_token13] = ACTIONS(2389), - [aux_sym_cmd_identifier_token14] = ACTIONS(2389), - [aux_sym_cmd_identifier_token15] = ACTIONS(2389), - [aux_sym_cmd_identifier_token16] = ACTIONS(2389), - [aux_sym_cmd_identifier_token17] = ACTIONS(2389), - [aux_sym_cmd_identifier_token18] = ACTIONS(2389), - [aux_sym_cmd_identifier_token19] = ACTIONS(2389), - [aux_sym_cmd_identifier_token20] = ACTIONS(2389), - [aux_sym_cmd_identifier_token21] = ACTIONS(2389), - [aux_sym_cmd_identifier_token22] = ACTIONS(2389), - [aux_sym_cmd_identifier_token23] = ACTIONS(2389), - [aux_sym_cmd_identifier_token24] = ACTIONS(2389), - [aux_sym_cmd_identifier_token25] = ACTIONS(2389), - [aux_sym_cmd_identifier_token26] = ACTIONS(2389), - [aux_sym_cmd_identifier_token27] = ACTIONS(2389), - [aux_sym_cmd_identifier_token28] = ACTIONS(2389), - [aux_sym_cmd_identifier_token29] = ACTIONS(2389), - [aux_sym_cmd_identifier_token30] = ACTIONS(2389), - [aux_sym_cmd_identifier_token31] = ACTIONS(2389), - [aux_sym_cmd_identifier_token32] = ACTIONS(2389), - [aux_sym_cmd_identifier_token33] = ACTIONS(2389), - [aux_sym_cmd_identifier_token34] = ACTIONS(2389), - [aux_sym_cmd_identifier_token35] = ACTIONS(2389), - [aux_sym_cmd_identifier_token36] = ACTIONS(2389), - [anon_sym_true] = ACTIONS(2389), - [anon_sym_false] = ACTIONS(2389), - [anon_sym_null] = ACTIONS(2389), - [aux_sym_cmd_identifier_token38] = ACTIONS(2389), - [aux_sym_cmd_identifier_token39] = ACTIONS(2389), - [aux_sym_cmd_identifier_token40] = ACTIONS(2389), - [anon_sym_def] = ACTIONS(2389), - [anon_sym_export_DASHenv] = ACTIONS(2389), - [anon_sym_extern] = ACTIONS(2389), - [anon_sym_module] = ACTIONS(2389), - [anon_sym_use] = ACTIONS(2389), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_DOLLAR] = ACTIONS(2389), - [anon_sym_error] = ACTIONS(2389), - [anon_sym_list] = ACTIONS(2389), - [anon_sym_DASH] = ACTIONS(2389), - [anon_sym_break] = ACTIONS(2389), - [anon_sym_continue] = ACTIONS(2389), - [anon_sym_for] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(2389), - [anon_sym_loop] = ACTIONS(2389), - [anon_sym_make] = ACTIONS(2389), - [anon_sym_while] = ACTIONS(2389), - [anon_sym_do] = ACTIONS(2389), - [anon_sym_if] = ACTIONS(2389), - [anon_sym_else] = ACTIONS(2389), - [anon_sym_match] = ACTIONS(2389), - [anon_sym_RBRACE] = ACTIONS(2389), - [anon_sym_try] = ACTIONS(2389), - [anon_sym_catch] = ACTIONS(2389), - [anon_sym_return] = ACTIONS(2389), - [anon_sym_source] = ACTIONS(2389), - [anon_sym_source_DASHenv] = ACTIONS(2389), - [anon_sym_register] = ACTIONS(2389), - [anon_sym_hide] = ACTIONS(2389), - [anon_sym_hide_DASHenv] = ACTIONS(2389), - [anon_sym_overlay] = ACTIONS(2389), - [anon_sym_new] = ACTIONS(2389), - [anon_sym_as] = ACTIONS(2389), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2389), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2389), - [aux_sym__val_number_decimal_token1] = ACTIONS(2389), - [aux_sym__val_number_decimal_token2] = ACTIONS(2389), - [aux_sym__val_number_decimal_token3] = ACTIONS(2389), - [aux_sym__val_number_decimal_token4] = ACTIONS(2389), - [aux_sym__val_number_token1] = ACTIONS(2389), - [aux_sym__val_number_token2] = ACTIONS(2389), - [aux_sym__val_number_token3] = ACTIONS(2389), - [anon_sym_DQUOTE] = ACTIONS(2389), - [sym__str_single_quotes] = ACTIONS(2389), - [sym__str_back_ticks] = ACTIONS(2389), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2389), - [sym__entry_separator] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_export] = ACTIONS(2453), + [anon_sym_alias] = ACTIONS(2453), + [anon_sym_let] = ACTIONS(2453), + [anon_sym_let_DASHenv] = ACTIONS(2453), + [anon_sym_mut] = ACTIONS(2453), + [anon_sym_const] = ACTIONS(2453), + [aux_sym_cmd_identifier_token1] = ACTIONS(2453), + [aux_sym_cmd_identifier_token2] = ACTIONS(2453), + [aux_sym_cmd_identifier_token3] = ACTIONS(2453), + [aux_sym_cmd_identifier_token4] = ACTIONS(2453), + [aux_sym_cmd_identifier_token5] = ACTIONS(2453), + [aux_sym_cmd_identifier_token6] = ACTIONS(2453), + [aux_sym_cmd_identifier_token7] = ACTIONS(2453), + [aux_sym_cmd_identifier_token8] = ACTIONS(2453), + [aux_sym_cmd_identifier_token9] = ACTIONS(2453), + [aux_sym_cmd_identifier_token10] = ACTIONS(2453), + [aux_sym_cmd_identifier_token11] = ACTIONS(2453), + [aux_sym_cmd_identifier_token12] = ACTIONS(2453), + [aux_sym_cmd_identifier_token13] = ACTIONS(2453), + [aux_sym_cmd_identifier_token14] = ACTIONS(2453), + [aux_sym_cmd_identifier_token15] = ACTIONS(2453), + [aux_sym_cmd_identifier_token16] = ACTIONS(2453), + [aux_sym_cmd_identifier_token17] = ACTIONS(2453), + [aux_sym_cmd_identifier_token18] = ACTIONS(2453), + [aux_sym_cmd_identifier_token19] = ACTIONS(2453), + [aux_sym_cmd_identifier_token20] = ACTIONS(2453), + [aux_sym_cmd_identifier_token21] = ACTIONS(2453), + [aux_sym_cmd_identifier_token22] = ACTIONS(2453), + [aux_sym_cmd_identifier_token23] = ACTIONS(2453), + [aux_sym_cmd_identifier_token24] = ACTIONS(2453), + [aux_sym_cmd_identifier_token25] = ACTIONS(2453), + [aux_sym_cmd_identifier_token26] = ACTIONS(2453), + [aux_sym_cmd_identifier_token27] = ACTIONS(2453), + [aux_sym_cmd_identifier_token28] = ACTIONS(2453), + [aux_sym_cmd_identifier_token29] = ACTIONS(2453), + [aux_sym_cmd_identifier_token30] = ACTIONS(2453), + [aux_sym_cmd_identifier_token31] = ACTIONS(2453), + [aux_sym_cmd_identifier_token32] = ACTIONS(2453), + [aux_sym_cmd_identifier_token33] = ACTIONS(2453), + [aux_sym_cmd_identifier_token34] = ACTIONS(2453), + [aux_sym_cmd_identifier_token35] = ACTIONS(2453), + [aux_sym_cmd_identifier_token36] = ACTIONS(2453), + [anon_sym_true] = ACTIONS(2453), + [anon_sym_false] = ACTIONS(2453), + [anon_sym_null] = ACTIONS(2453), + [aux_sym_cmd_identifier_token38] = ACTIONS(2453), + [aux_sym_cmd_identifier_token39] = ACTIONS(2453), + [aux_sym_cmd_identifier_token40] = ACTIONS(2453), + [anon_sym_def] = ACTIONS(2453), + [anon_sym_export_DASHenv] = ACTIONS(2453), + [anon_sym_extern] = ACTIONS(2453), + [anon_sym_module] = ACTIONS(2453), + [anon_sym_use] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2453), + [anon_sym_DOLLAR] = ACTIONS(2453), + [anon_sym_error] = ACTIONS(2453), + [anon_sym_list] = ACTIONS(2453), + [anon_sym_DASH] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_in] = ACTIONS(2453), + [anon_sym_loop] = ACTIONS(2453), + [anon_sym_make] = ACTIONS(2453), + [anon_sym_while] = ACTIONS(2453), + [anon_sym_do] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_else] = ACTIONS(2453), + [anon_sym_match] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2453), + [anon_sym_try] = ACTIONS(2453), + [anon_sym_catch] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_source] = ACTIONS(2453), + [anon_sym_source_DASHenv] = ACTIONS(2453), + [anon_sym_register] = ACTIONS(2453), + [anon_sym_hide] = ACTIONS(2453), + [anon_sym_hide_DASHenv] = ACTIONS(2453), + [anon_sym_overlay] = ACTIONS(2453), + [anon_sym_new] = ACTIONS(2453), + [anon_sym_as] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2453), + [aux_sym__val_number_decimal_token1] = ACTIONS(2453), + [aux_sym__val_number_decimal_token2] = ACTIONS(2453), + [aux_sym__val_number_decimal_token3] = ACTIONS(2453), + [aux_sym__val_number_decimal_token4] = ACTIONS(2453), + [aux_sym__val_number_token1] = ACTIONS(2453), + [aux_sym__val_number_token2] = ACTIONS(2453), + [aux_sym__val_number_token3] = ACTIONS(2453), + [anon_sym_DQUOTE] = ACTIONS(2453), + [sym__str_single_quotes] = ACTIONS(2453), + [sym__str_back_ticks] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2453), + [sym__entry_separator] = ACTIONS(2455), + [anon_sym_PLUS] = ACTIONS(2453), [anon_sym_POUND] = ACTIONS(3), }, [562] = { [sym_comment] = STATE(562), - [anon_sym_export] = ACTIONS(2287), - [anon_sym_alias] = ACTIONS(2287), - [anon_sym_let] = ACTIONS(2287), - [anon_sym_let_DASHenv] = ACTIONS(2287), - [anon_sym_mut] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [aux_sym_cmd_identifier_token1] = ACTIONS(2287), - [aux_sym_cmd_identifier_token2] = ACTIONS(2287), - [aux_sym_cmd_identifier_token3] = ACTIONS(2287), - [aux_sym_cmd_identifier_token4] = ACTIONS(2287), - [aux_sym_cmd_identifier_token5] = ACTIONS(2287), - [aux_sym_cmd_identifier_token6] = ACTIONS(2287), - [aux_sym_cmd_identifier_token7] = ACTIONS(2287), - [aux_sym_cmd_identifier_token8] = ACTIONS(2287), - [aux_sym_cmd_identifier_token9] = ACTIONS(2287), - [aux_sym_cmd_identifier_token10] = ACTIONS(2287), - [aux_sym_cmd_identifier_token11] = ACTIONS(2287), - [aux_sym_cmd_identifier_token12] = ACTIONS(2287), - [aux_sym_cmd_identifier_token13] = ACTIONS(2287), - [aux_sym_cmd_identifier_token14] = ACTIONS(2287), - [aux_sym_cmd_identifier_token15] = ACTIONS(2287), - [aux_sym_cmd_identifier_token16] = ACTIONS(2287), - [aux_sym_cmd_identifier_token17] = ACTIONS(2287), - [aux_sym_cmd_identifier_token18] = ACTIONS(2287), - [aux_sym_cmd_identifier_token19] = ACTIONS(2287), - [aux_sym_cmd_identifier_token20] = ACTIONS(2287), - [aux_sym_cmd_identifier_token21] = ACTIONS(2287), - [aux_sym_cmd_identifier_token22] = ACTIONS(2287), - [aux_sym_cmd_identifier_token23] = ACTIONS(2287), - [aux_sym_cmd_identifier_token24] = ACTIONS(2287), - [aux_sym_cmd_identifier_token25] = ACTIONS(2287), - [aux_sym_cmd_identifier_token26] = ACTIONS(2287), - [aux_sym_cmd_identifier_token27] = ACTIONS(2287), - [aux_sym_cmd_identifier_token28] = ACTIONS(2287), - [aux_sym_cmd_identifier_token29] = ACTIONS(2287), - [aux_sym_cmd_identifier_token30] = ACTIONS(2287), - [aux_sym_cmd_identifier_token31] = ACTIONS(2287), - [aux_sym_cmd_identifier_token32] = ACTIONS(2287), - [aux_sym_cmd_identifier_token33] = ACTIONS(2287), - [aux_sym_cmd_identifier_token34] = ACTIONS(2287), - [aux_sym_cmd_identifier_token35] = ACTIONS(2287), - [aux_sym_cmd_identifier_token36] = ACTIONS(2287), - [anon_sym_true] = ACTIONS(2289), - [anon_sym_false] = ACTIONS(2289), - [anon_sym_null] = ACTIONS(2289), - [aux_sym_cmd_identifier_token38] = ACTIONS(2287), - [aux_sym_cmd_identifier_token39] = ACTIONS(2289), - [aux_sym_cmd_identifier_token40] = ACTIONS(2289), - [anon_sym_def] = ACTIONS(2287), - [anon_sym_export_DASHenv] = ACTIONS(2287), - [anon_sym_extern] = ACTIONS(2287), - [anon_sym_module] = ACTIONS(2287), - [anon_sym_use] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_DOLLAR] = ACTIONS(2289), - [anon_sym_error] = ACTIONS(2287), - [anon_sym_list] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_in] = ACTIONS(2287), - [anon_sym_loop] = ACTIONS(2287), - [anon_sym_make] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2287), - [anon_sym_match] = ACTIONS(2287), - [anon_sym_RBRACE] = ACTIONS(2289), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_catch] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_source] = ACTIONS(2287), - [anon_sym_source_DASHenv] = ACTIONS(2287), - [anon_sym_register] = ACTIONS(2287), - [anon_sym_hide] = ACTIONS(2287), - [anon_sym_hide_DASHenv] = ACTIONS(2287), - [anon_sym_overlay] = ACTIONS(2287), - [anon_sym_new] = ACTIONS(2287), - [anon_sym_as] = ACTIONS(2287), - [anon_sym_LPAREN2] = ACTIONS(2289), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2289), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2289), - [aux_sym__val_number_decimal_token1] = ACTIONS(2287), - [aux_sym__val_number_decimal_token2] = ACTIONS(2289), - [aux_sym__val_number_decimal_token3] = ACTIONS(2289), - [aux_sym__val_number_decimal_token4] = ACTIONS(2289), - [aux_sym__val_number_token1] = ACTIONS(2289), - [aux_sym__val_number_token2] = ACTIONS(2289), - [aux_sym__val_number_token3] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2289), - [sym__str_single_quotes] = ACTIONS(2289), - [sym__str_back_ticks] = ACTIONS(2289), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_alias] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_let_DASHenv] = ACTIONS(1048), + [anon_sym_mut] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1048), + [aux_sym_cmd_identifier_token1] = ACTIONS(1048), + [aux_sym_cmd_identifier_token2] = ACTIONS(1048), + [aux_sym_cmd_identifier_token3] = ACTIONS(1048), + [aux_sym_cmd_identifier_token4] = ACTIONS(1048), + [aux_sym_cmd_identifier_token5] = ACTIONS(1048), + [aux_sym_cmd_identifier_token6] = ACTIONS(1048), + [aux_sym_cmd_identifier_token7] = ACTIONS(1048), + [aux_sym_cmd_identifier_token8] = ACTIONS(1048), + [aux_sym_cmd_identifier_token9] = ACTIONS(1048), + [aux_sym_cmd_identifier_token10] = ACTIONS(1048), + [aux_sym_cmd_identifier_token11] = ACTIONS(1048), + [aux_sym_cmd_identifier_token12] = ACTIONS(1048), + [aux_sym_cmd_identifier_token13] = ACTIONS(1048), + [aux_sym_cmd_identifier_token14] = ACTIONS(1048), + [aux_sym_cmd_identifier_token15] = ACTIONS(1048), + [aux_sym_cmd_identifier_token16] = ACTIONS(1048), + [aux_sym_cmd_identifier_token17] = ACTIONS(1048), + [aux_sym_cmd_identifier_token18] = ACTIONS(1048), + [aux_sym_cmd_identifier_token19] = ACTIONS(1048), + [aux_sym_cmd_identifier_token20] = ACTIONS(1048), + [aux_sym_cmd_identifier_token21] = ACTIONS(1048), + [aux_sym_cmd_identifier_token22] = ACTIONS(1048), + [aux_sym_cmd_identifier_token23] = ACTIONS(1048), + [aux_sym_cmd_identifier_token24] = ACTIONS(1048), + [aux_sym_cmd_identifier_token25] = ACTIONS(1048), + [aux_sym_cmd_identifier_token26] = ACTIONS(1048), + [aux_sym_cmd_identifier_token27] = ACTIONS(1048), + [aux_sym_cmd_identifier_token28] = ACTIONS(1048), + [aux_sym_cmd_identifier_token29] = ACTIONS(1048), + [aux_sym_cmd_identifier_token30] = ACTIONS(1048), + [aux_sym_cmd_identifier_token31] = ACTIONS(1048), + [aux_sym_cmd_identifier_token32] = ACTIONS(1048), + [aux_sym_cmd_identifier_token33] = ACTIONS(1048), + [aux_sym_cmd_identifier_token34] = ACTIONS(1048), + [aux_sym_cmd_identifier_token35] = ACTIONS(1048), + [aux_sym_cmd_identifier_token36] = ACTIONS(1048), + [anon_sym_true] = ACTIONS(1048), + [anon_sym_false] = ACTIONS(1048), + [anon_sym_null] = ACTIONS(1048), + [aux_sym_cmd_identifier_token38] = ACTIONS(1048), + [aux_sym_cmd_identifier_token39] = ACTIONS(1048), + [aux_sym_cmd_identifier_token40] = ACTIONS(1048), + [anon_sym_def] = ACTIONS(1048), + [anon_sym_export_DASHenv] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_use] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_error] = ACTIONS(1048), + [anon_sym_list] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_in] = ACTIONS(1048), + [anon_sym_loop] = ACTIONS(1048), + [anon_sym_make] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_else] = ACTIONS(1048), + [anon_sym_match] = ACTIONS(1048), + [anon_sym_RBRACE] = ACTIONS(1048), + [anon_sym_try] = ACTIONS(1048), + [anon_sym_catch] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_source] = ACTIONS(1048), + [anon_sym_source_DASHenv] = ACTIONS(1048), + [anon_sym_register] = ACTIONS(1048), + [anon_sym_hide] = ACTIONS(1048), + [anon_sym_hide_DASHenv] = ACTIONS(1048), + [anon_sym_overlay] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1048), + [anon_sym_as] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1048), + [aux_sym__val_number_decimal_token1] = ACTIONS(1048), + [aux_sym__val_number_decimal_token2] = ACTIONS(1048), + [aux_sym__val_number_decimal_token3] = ACTIONS(1048), + [aux_sym__val_number_decimal_token4] = ACTIONS(1048), + [aux_sym__val_number_token1] = ACTIONS(1048), + [aux_sym__val_number_token2] = ACTIONS(1048), + [aux_sym__val_number_token3] = ACTIONS(1048), + [anon_sym_DQUOTE] = ACTIONS(1048), + [sym__str_single_quotes] = ACTIONS(1048), + [sym__str_back_ticks] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1048), + [sym__entry_separator] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_POUND] = ACTIONS(3), }, [563] = { [sym_comment] = STATE(563), - [anon_sym_export] = ACTIONS(1021), - [anon_sym_alias] = ACTIONS(1021), - [anon_sym_let] = ACTIONS(1021), - [anon_sym_let_DASHenv] = ACTIONS(1021), - [anon_sym_mut] = ACTIONS(1021), - [anon_sym_const] = ACTIONS(1021), - [aux_sym_cmd_identifier_token1] = ACTIONS(1021), - [aux_sym_cmd_identifier_token2] = ACTIONS(1021), - [aux_sym_cmd_identifier_token3] = ACTIONS(1021), - [aux_sym_cmd_identifier_token4] = ACTIONS(1021), - [aux_sym_cmd_identifier_token5] = ACTIONS(1021), - [aux_sym_cmd_identifier_token6] = ACTIONS(1021), - [aux_sym_cmd_identifier_token7] = ACTIONS(1021), - [aux_sym_cmd_identifier_token8] = ACTIONS(1021), - [aux_sym_cmd_identifier_token9] = ACTIONS(1021), - [aux_sym_cmd_identifier_token10] = ACTIONS(1021), - [aux_sym_cmd_identifier_token11] = ACTIONS(1021), - [aux_sym_cmd_identifier_token12] = ACTIONS(1021), - [aux_sym_cmd_identifier_token13] = ACTIONS(1021), - [aux_sym_cmd_identifier_token14] = ACTIONS(1021), - [aux_sym_cmd_identifier_token15] = ACTIONS(1021), - [aux_sym_cmd_identifier_token16] = ACTIONS(1021), - [aux_sym_cmd_identifier_token17] = ACTIONS(1021), - [aux_sym_cmd_identifier_token18] = ACTIONS(1021), - [aux_sym_cmd_identifier_token19] = ACTIONS(1021), - [aux_sym_cmd_identifier_token20] = ACTIONS(1021), - [aux_sym_cmd_identifier_token21] = ACTIONS(1021), - [aux_sym_cmd_identifier_token22] = ACTIONS(1021), - [aux_sym_cmd_identifier_token23] = ACTIONS(1021), - [aux_sym_cmd_identifier_token24] = ACTIONS(1021), - [aux_sym_cmd_identifier_token25] = ACTIONS(1021), - [aux_sym_cmd_identifier_token26] = ACTIONS(1021), - [aux_sym_cmd_identifier_token27] = ACTIONS(1021), - [aux_sym_cmd_identifier_token28] = ACTIONS(1021), - [aux_sym_cmd_identifier_token29] = ACTIONS(1021), - [aux_sym_cmd_identifier_token30] = ACTIONS(1021), - [aux_sym_cmd_identifier_token31] = ACTIONS(1021), - [aux_sym_cmd_identifier_token32] = ACTIONS(1021), - [aux_sym_cmd_identifier_token33] = ACTIONS(1021), - [aux_sym_cmd_identifier_token34] = ACTIONS(1021), - [aux_sym_cmd_identifier_token35] = ACTIONS(1021), - [aux_sym_cmd_identifier_token36] = ACTIONS(1021), - [anon_sym_true] = ACTIONS(1021), - [anon_sym_false] = ACTIONS(1021), - [anon_sym_null] = ACTIONS(1021), - [aux_sym_cmd_identifier_token38] = ACTIONS(1021), - [aux_sym_cmd_identifier_token39] = ACTIONS(1021), - [aux_sym_cmd_identifier_token40] = ACTIONS(1021), - [anon_sym_def] = ACTIONS(1021), - [anon_sym_export_DASHenv] = ACTIONS(1021), - [anon_sym_extern] = ACTIONS(1021), - [anon_sym_module] = ACTIONS(1021), - [anon_sym_use] = ACTIONS(1021), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(1021), - [anon_sym_error] = ACTIONS(1021), - [anon_sym_list] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_break] = ACTIONS(1021), - [anon_sym_continue] = ACTIONS(1021), - [anon_sym_for] = ACTIONS(1021), - [anon_sym_in] = ACTIONS(1021), - [anon_sym_loop] = ACTIONS(1021), - [anon_sym_make] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1021), - [anon_sym_do] = ACTIONS(1021), - [anon_sym_if] = ACTIONS(1021), - [anon_sym_else] = ACTIONS(1021), - [anon_sym_match] = ACTIONS(1021), - [anon_sym_RBRACE] = ACTIONS(1021), - [anon_sym_try] = ACTIONS(1021), - [anon_sym_catch] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1021), - [anon_sym_source] = ACTIONS(1021), - [anon_sym_source_DASHenv] = ACTIONS(1021), - [anon_sym_register] = ACTIONS(1021), - [anon_sym_hide] = ACTIONS(1021), - [anon_sym_hide_DASHenv] = ACTIONS(1021), - [anon_sym_overlay] = ACTIONS(1021), - [anon_sym_new] = ACTIONS(1021), - [anon_sym_as] = ACTIONS(1021), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1021), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1021), - [aux_sym__val_number_decimal_token1] = ACTIONS(1021), - [aux_sym__val_number_decimal_token2] = ACTIONS(1021), - [aux_sym__val_number_decimal_token3] = ACTIONS(1021), - [aux_sym__val_number_decimal_token4] = ACTIONS(1021), - [aux_sym__val_number_token1] = ACTIONS(1021), - [aux_sym__val_number_token2] = ACTIONS(1021), - [aux_sym__val_number_token3] = ACTIONS(1021), - [anon_sym_DQUOTE] = ACTIONS(1021), - [sym__str_single_quotes] = ACTIONS(1021), - [sym__str_back_ticks] = ACTIONS(1021), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1021), - [sym__entry_separator] = ACTIONS(1023), - [anon_sym_PLUS] = ACTIONS(1021), + [anon_sym_export] = ACTIONS(2043), + [anon_sym_alias] = ACTIONS(2043), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_DASHenv] = ACTIONS(2043), + [anon_sym_mut] = ACTIONS(2043), + [anon_sym_const] = ACTIONS(2043), + [aux_sym_cmd_identifier_token1] = ACTIONS(2043), + [aux_sym_cmd_identifier_token2] = ACTIONS(2043), + [aux_sym_cmd_identifier_token3] = ACTIONS(2043), + [aux_sym_cmd_identifier_token4] = ACTIONS(2043), + [aux_sym_cmd_identifier_token5] = ACTIONS(2043), + [aux_sym_cmd_identifier_token6] = ACTIONS(2043), + [aux_sym_cmd_identifier_token7] = ACTIONS(2043), + [aux_sym_cmd_identifier_token8] = ACTIONS(2043), + [aux_sym_cmd_identifier_token9] = ACTIONS(2043), + [aux_sym_cmd_identifier_token10] = ACTIONS(2043), + [aux_sym_cmd_identifier_token11] = ACTIONS(2043), + [aux_sym_cmd_identifier_token12] = ACTIONS(2043), + [aux_sym_cmd_identifier_token13] = ACTIONS(2043), + [aux_sym_cmd_identifier_token14] = ACTIONS(2043), + [aux_sym_cmd_identifier_token15] = ACTIONS(2043), + [aux_sym_cmd_identifier_token16] = ACTIONS(2043), + [aux_sym_cmd_identifier_token17] = ACTIONS(2043), + [aux_sym_cmd_identifier_token18] = ACTIONS(2043), + [aux_sym_cmd_identifier_token19] = ACTIONS(2043), + [aux_sym_cmd_identifier_token20] = ACTIONS(2043), + [aux_sym_cmd_identifier_token21] = ACTIONS(2043), + [aux_sym_cmd_identifier_token22] = ACTIONS(2043), + [aux_sym_cmd_identifier_token23] = ACTIONS(2043), + [aux_sym_cmd_identifier_token24] = ACTIONS(2043), + [aux_sym_cmd_identifier_token25] = ACTIONS(2043), + [aux_sym_cmd_identifier_token26] = ACTIONS(2043), + [aux_sym_cmd_identifier_token27] = ACTIONS(2043), + [aux_sym_cmd_identifier_token28] = ACTIONS(2043), + [aux_sym_cmd_identifier_token29] = ACTIONS(2043), + [aux_sym_cmd_identifier_token30] = ACTIONS(2043), + [aux_sym_cmd_identifier_token31] = ACTIONS(2043), + [aux_sym_cmd_identifier_token32] = ACTIONS(2043), + [aux_sym_cmd_identifier_token33] = ACTIONS(2043), + [aux_sym_cmd_identifier_token34] = ACTIONS(2043), + [aux_sym_cmd_identifier_token35] = ACTIONS(2043), + [aux_sym_cmd_identifier_token36] = ACTIONS(2043), + [anon_sym_true] = ACTIONS(2043), + [anon_sym_false] = ACTIONS(2043), + [anon_sym_null] = ACTIONS(2043), + [aux_sym_cmd_identifier_token38] = ACTIONS(2043), + [aux_sym_cmd_identifier_token39] = ACTIONS(2043), + [aux_sym_cmd_identifier_token40] = ACTIONS(2043), + [anon_sym_def] = ACTIONS(2043), + [anon_sym_export_DASHenv] = ACTIONS(2043), + [anon_sym_extern] = ACTIONS(2043), + [anon_sym_module] = ACTIONS(2043), + [anon_sym_use] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_DOLLAR] = ACTIONS(2043), + [anon_sym_error] = ACTIONS(2043), + [anon_sym_list] = ACTIONS(2043), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_break] = ACTIONS(2043), + [anon_sym_continue] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_in] = ACTIONS(2043), + [anon_sym_loop] = ACTIONS(2043), + [anon_sym_make] = ACTIONS(2043), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_do] = ACTIONS(2043), + [anon_sym_if] = ACTIONS(2043), + [anon_sym_else] = ACTIONS(2043), + [anon_sym_match] = ACTIONS(2043), + [anon_sym_RBRACE] = ACTIONS(2043), + [anon_sym_try] = ACTIONS(2043), + [anon_sym_catch] = ACTIONS(2043), + [anon_sym_return] = ACTIONS(2043), + [anon_sym_source] = ACTIONS(2043), + [anon_sym_source_DASHenv] = ACTIONS(2043), + [anon_sym_register] = ACTIONS(2043), + [anon_sym_hide] = ACTIONS(2043), + [anon_sym_hide_DASHenv] = ACTIONS(2043), + [anon_sym_overlay] = ACTIONS(2043), + [anon_sym_new] = ACTIONS(2043), + [anon_sym_as] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2043), + [aux_sym__val_number_decimal_token1] = ACTIONS(2043), + [aux_sym__val_number_decimal_token2] = ACTIONS(2043), + [aux_sym__val_number_decimal_token3] = ACTIONS(2043), + [aux_sym__val_number_decimal_token4] = ACTIONS(2043), + [aux_sym__val_number_token1] = ACTIONS(2043), + [aux_sym__val_number_token2] = ACTIONS(2043), + [aux_sym__val_number_token3] = ACTIONS(2043), + [anon_sym_DQUOTE] = ACTIONS(2043), + [sym__str_single_quotes] = ACTIONS(2043), + [sym__str_back_ticks] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2043), + [sym__entry_separator] = ACTIONS(2049), + [anon_sym_PLUS] = ACTIONS(2043), [anon_sym_POUND] = ACTIONS(3), }, [564] = { [sym_comment] = STATE(564), - [anon_sym_export] = ACTIONS(2393), - [anon_sym_alias] = ACTIONS(2393), - [anon_sym_let] = ACTIONS(2393), - [anon_sym_let_DASHenv] = ACTIONS(2393), - [anon_sym_mut] = ACTIONS(2393), - [anon_sym_const] = ACTIONS(2393), - [aux_sym_cmd_identifier_token1] = ACTIONS(2393), - [aux_sym_cmd_identifier_token2] = ACTIONS(2393), - [aux_sym_cmd_identifier_token3] = ACTIONS(2393), - [aux_sym_cmd_identifier_token4] = ACTIONS(2393), - [aux_sym_cmd_identifier_token5] = ACTIONS(2393), - [aux_sym_cmd_identifier_token6] = ACTIONS(2393), - [aux_sym_cmd_identifier_token7] = ACTIONS(2393), - [aux_sym_cmd_identifier_token8] = ACTIONS(2393), - [aux_sym_cmd_identifier_token9] = ACTIONS(2393), - [aux_sym_cmd_identifier_token10] = ACTIONS(2393), - [aux_sym_cmd_identifier_token11] = ACTIONS(2393), - [aux_sym_cmd_identifier_token12] = ACTIONS(2393), - [aux_sym_cmd_identifier_token13] = ACTIONS(2393), - [aux_sym_cmd_identifier_token14] = ACTIONS(2393), - [aux_sym_cmd_identifier_token15] = ACTIONS(2393), - [aux_sym_cmd_identifier_token16] = ACTIONS(2393), - [aux_sym_cmd_identifier_token17] = ACTIONS(2393), - [aux_sym_cmd_identifier_token18] = ACTIONS(2393), - [aux_sym_cmd_identifier_token19] = ACTIONS(2393), - [aux_sym_cmd_identifier_token20] = ACTIONS(2393), - [aux_sym_cmd_identifier_token21] = ACTIONS(2393), - [aux_sym_cmd_identifier_token22] = ACTIONS(2393), - [aux_sym_cmd_identifier_token23] = ACTIONS(2393), - [aux_sym_cmd_identifier_token24] = ACTIONS(2393), - [aux_sym_cmd_identifier_token25] = ACTIONS(2393), - [aux_sym_cmd_identifier_token26] = ACTIONS(2393), - [aux_sym_cmd_identifier_token27] = ACTIONS(2393), - [aux_sym_cmd_identifier_token28] = ACTIONS(2393), - [aux_sym_cmd_identifier_token29] = ACTIONS(2393), - [aux_sym_cmd_identifier_token30] = ACTIONS(2393), - [aux_sym_cmd_identifier_token31] = ACTIONS(2393), - [aux_sym_cmd_identifier_token32] = ACTIONS(2393), - [aux_sym_cmd_identifier_token33] = ACTIONS(2393), - [aux_sym_cmd_identifier_token34] = ACTIONS(2393), - [aux_sym_cmd_identifier_token35] = ACTIONS(2393), - [aux_sym_cmd_identifier_token36] = ACTIONS(2393), - [anon_sym_true] = ACTIONS(2393), - [anon_sym_false] = ACTIONS(2393), - [anon_sym_null] = ACTIONS(2393), - [aux_sym_cmd_identifier_token38] = ACTIONS(2393), - [aux_sym_cmd_identifier_token39] = ACTIONS(2393), - [aux_sym_cmd_identifier_token40] = ACTIONS(2393), - [anon_sym_def] = ACTIONS(2393), - [anon_sym_export_DASHenv] = ACTIONS(2393), - [anon_sym_extern] = ACTIONS(2393), - [anon_sym_module] = ACTIONS(2393), - [anon_sym_use] = ACTIONS(2393), - [anon_sym_LPAREN] = ACTIONS(2393), - [anon_sym_DOLLAR] = ACTIONS(2393), - [anon_sym_error] = ACTIONS(2393), - [anon_sym_list] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_break] = ACTIONS(2393), - [anon_sym_continue] = ACTIONS(2393), - [anon_sym_for] = ACTIONS(2393), - [anon_sym_in] = ACTIONS(2393), - [anon_sym_loop] = ACTIONS(2393), - [anon_sym_make] = ACTIONS(2393), - [anon_sym_while] = ACTIONS(2393), - [anon_sym_do] = ACTIONS(2393), - [anon_sym_if] = ACTIONS(2393), - [anon_sym_else] = ACTIONS(2393), - [anon_sym_match] = ACTIONS(2393), - [anon_sym_RBRACE] = ACTIONS(2393), - [anon_sym_try] = ACTIONS(2393), - [anon_sym_catch] = ACTIONS(2393), - [anon_sym_return] = ACTIONS(2393), - [anon_sym_source] = ACTIONS(2393), - [anon_sym_source_DASHenv] = ACTIONS(2393), - [anon_sym_register] = ACTIONS(2393), - [anon_sym_hide] = ACTIONS(2393), - [anon_sym_hide_DASHenv] = ACTIONS(2393), - [anon_sym_overlay] = ACTIONS(2393), - [anon_sym_new] = ACTIONS(2393), - [anon_sym_as] = ACTIONS(2393), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2393), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2393), - [aux_sym__val_number_decimal_token1] = ACTIONS(2393), - [aux_sym__val_number_decimal_token2] = ACTIONS(2393), - [aux_sym__val_number_decimal_token3] = ACTIONS(2393), - [aux_sym__val_number_decimal_token4] = ACTIONS(2393), - [aux_sym__val_number_token1] = ACTIONS(2393), - [aux_sym__val_number_token2] = ACTIONS(2393), - [aux_sym__val_number_token3] = ACTIONS(2393), - [anon_sym_DQUOTE] = ACTIONS(2393), - [sym__str_single_quotes] = ACTIONS(2393), - [sym__str_back_ticks] = ACTIONS(2393), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2393), - [sym__entry_separator] = ACTIONS(2395), - [anon_sym_PLUS] = ACTIONS(2393), + [anon_sym_export] = ACTIONS(2457), + [anon_sym_alias] = ACTIONS(2457), + [anon_sym_let] = ACTIONS(2457), + [anon_sym_let_DASHenv] = ACTIONS(2457), + [anon_sym_mut] = ACTIONS(2457), + [anon_sym_const] = ACTIONS(2457), + [aux_sym_cmd_identifier_token1] = ACTIONS(2457), + [aux_sym_cmd_identifier_token2] = ACTIONS(2457), + [aux_sym_cmd_identifier_token3] = ACTIONS(2457), + [aux_sym_cmd_identifier_token4] = ACTIONS(2457), + [aux_sym_cmd_identifier_token5] = ACTIONS(2457), + [aux_sym_cmd_identifier_token6] = ACTIONS(2457), + [aux_sym_cmd_identifier_token7] = ACTIONS(2457), + [aux_sym_cmd_identifier_token8] = ACTIONS(2457), + [aux_sym_cmd_identifier_token9] = ACTIONS(2457), + [aux_sym_cmd_identifier_token10] = ACTIONS(2457), + [aux_sym_cmd_identifier_token11] = ACTIONS(2457), + [aux_sym_cmd_identifier_token12] = ACTIONS(2457), + [aux_sym_cmd_identifier_token13] = ACTIONS(2457), + [aux_sym_cmd_identifier_token14] = ACTIONS(2457), + [aux_sym_cmd_identifier_token15] = ACTIONS(2457), + [aux_sym_cmd_identifier_token16] = ACTIONS(2457), + [aux_sym_cmd_identifier_token17] = ACTIONS(2457), + [aux_sym_cmd_identifier_token18] = ACTIONS(2457), + [aux_sym_cmd_identifier_token19] = ACTIONS(2457), + [aux_sym_cmd_identifier_token20] = ACTIONS(2457), + [aux_sym_cmd_identifier_token21] = ACTIONS(2457), + [aux_sym_cmd_identifier_token22] = ACTIONS(2457), + [aux_sym_cmd_identifier_token23] = ACTIONS(2457), + [aux_sym_cmd_identifier_token24] = ACTIONS(2457), + [aux_sym_cmd_identifier_token25] = ACTIONS(2457), + [aux_sym_cmd_identifier_token26] = ACTIONS(2457), + [aux_sym_cmd_identifier_token27] = ACTIONS(2457), + [aux_sym_cmd_identifier_token28] = ACTIONS(2457), + [aux_sym_cmd_identifier_token29] = ACTIONS(2457), + [aux_sym_cmd_identifier_token30] = ACTIONS(2457), + [aux_sym_cmd_identifier_token31] = ACTIONS(2457), + [aux_sym_cmd_identifier_token32] = ACTIONS(2457), + [aux_sym_cmd_identifier_token33] = ACTIONS(2457), + [aux_sym_cmd_identifier_token34] = ACTIONS(2457), + [aux_sym_cmd_identifier_token35] = ACTIONS(2457), + [aux_sym_cmd_identifier_token36] = ACTIONS(2457), + [anon_sym_true] = ACTIONS(2457), + [anon_sym_false] = ACTIONS(2457), + [anon_sym_null] = ACTIONS(2457), + [aux_sym_cmd_identifier_token38] = ACTIONS(2457), + [aux_sym_cmd_identifier_token39] = ACTIONS(2457), + [aux_sym_cmd_identifier_token40] = ACTIONS(2457), + [anon_sym_def] = ACTIONS(2457), + [anon_sym_export_DASHenv] = ACTIONS(2457), + [anon_sym_extern] = ACTIONS(2457), + [anon_sym_module] = ACTIONS(2457), + [anon_sym_use] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(2457), + [anon_sym_DOLLAR] = ACTIONS(2457), + [anon_sym_error] = ACTIONS(2457), + [anon_sym_list] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2457), + [anon_sym_break] = ACTIONS(2457), + [anon_sym_continue] = ACTIONS(2457), + [anon_sym_for] = ACTIONS(2457), + [anon_sym_in] = ACTIONS(2457), + [anon_sym_loop] = ACTIONS(2457), + [anon_sym_make] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(2457), + [anon_sym_do] = ACTIONS(2457), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_else] = ACTIONS(2457), + [anon_sym_match] = ACTIONS(2457), + [anon_sym_RBRACE] = ACTIONS(2457), + [anon_sym_try] = ACTIONS(2457), + [anon_sym_catch] = ACTIONS(2457), + [anon_sym_return] = ACTIONS(2457), + [anon_sym_source] = ACTIONS(2457), + [anon_sym_source_DASHenv] = ACTIONS(2457), + [anon_sym_register] = ACTIONS(2457), + [anon_sym_hide] = ACTIONS(2457), + [anon_sym_hide_DASHenv] = ACTIONS(2457), + [anon_sym_overlay] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2457), + [anon_sym_as] = ACTIONS(2457), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2457), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2457), + [aux_sym__val_number_decimal_token1] = ACTIONS(2457), + [aux_sym__val_number_decimal_token2] = ACTIONS(2457), + [aux_sym__val_number_decimal_token3] = ACTIONS(2457), + [aux_sym__val_number_decimal_token4] = ACTIONS(2457), + [aux_sym__val_number_token1] = ACTIONS(2457), + [aux_sym__val_number_token2] = ACTIONS(2457), + [aux_sym__val_number_token3] = ACTIONS(2457), + [anon_sym_DQUOTE] = ACTIONS(2457), + [sym__str_single_quotes] = ACTIONS(2457), + [sym__str_back_ticks] = ACTIONS(2457), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2457), + [sym__entry_separator] = ACTIONS(2459), + [anon_sym_PLUS] = ACTIONS(2457), [anon_sym_POUND] = ACTIONS(3), }, [565] = { [sym_comment] = STATE(565), - [anon_sym_export] = ACTIONS(962), - [anon_sym_alias] = ACTIONS(962), - [anon_sym_let] = ACTIONS(962), - [anon_sym_let_DASHenv] = ACTIONS(962), - [anon_sym_mut] = ACTIONS(962), - [anon_sym_const] = ACTIONS(962), - [aux_sym_cmd_identifier_token1] = ACTIONS(962), - [aux_sym_cmd_identifier_token2] = ACTIONS(962), - [aux_sym_cmd_identifier_token3] = ACTIONS(962), - [aux_sym_cmd_identifier_token4] = ACTIONS(962), - [aux_sym_cmd_identifier_token5] = ACTIONS(962), - [aux_sym_cmd_identifier_token6] = ACTIONS(962), - [aux_sym_cmd_identifier_token7] = ACTIONS(962), - [aux_sym_cmd_identifier_token8] = ACTIONS(962), - [aux_sym_cmd_identifier_token9] = ACTIONS(962), - [aux_sym_cmd_identifier_token10] = ACTIONS(962), - [aux_sym_cmd_identifier_token11] = ACTIONS(962), - [aux_sym_cmd_identifier_token12] = ACTIONS(962), - [aux_sym_cmd_identifier_token13] = ACTIONS(962), - [aux_sym_cmd_identifier_token14] = ACTIONS(962), - [aux_sym_cmd_identifier_token15] = ACTIONS(962), - [aux_sym_cmd_identifier_token16] = ACTIONS(962), - [aux_sym_cmd_identifier_token17] = ACTIONS(962), - [aux_sym_cmd_identifier_token18] = ACTIONS(962), - [aux_sym_cmd_identifier_token19] = ACTIONS(962), - [aux_sym_cmd_identifier_token20] = ACTIONS(962), - [aux_sym_cmd_identifier_token21] = ACTIONS(962), - [aux_sym_cmd_identifier_token22] = ACTIONS(962), - [aux_sym_cmd_identifier_token23] = ACTIONS(962), - [aux_sym_cmd_identifier_token24] = ACTIONS(962), - [aux_sym_cmd_identifier_token25] = ACTIONS(962), - [aux_sym_cmd_identifier_token26] = ACTIONS(962), - [aux_sym_cmd_identifier_token27] = ACTIONS(962), - [aux_sym_cmd_identifier_token28] = ACTIONS(962), - [aux_sym_cmd_identifier_token29] = ACTIONS(962), - [aux_sym_cmd_identifier_token30] = ACTIONS(962), - [aux_sym_cmd_identifier_token31] = ACTIONS(962), - [aux_sym_cmd_identifier_token32] = ACTIONS(962), - [aux_sym_cmd_identifier_token33] = ACTIONS(962), - [aux_sym_cmd_identifier_token34] = ACTIONS(962), - [aux_sym_cmd_identifier_token35] = ACTIONS(962), - [aux_sym_cmd_identifier_token36] = ACTIONS(962), - [anon_sym_true] = ACTIONS(962), - [anon_sym_false] = ACTIONS(962), - [anon_sym_null] = ACTIONS(962), - [aux_sym_cmd_identifier_token38] = ACTIONS(962), - [aux_sym_cmd_identifier_token39] = ACTIONS(962), - [aux_sym_cmd_identifier_token40] = ACTIONS(962), - [anon_sym_def] = ACTIONS(962), - [anon_sym_export_DASHenv] = ACTIONS(962), - [anon_sym_extern] = ACTIONS(962), - [anon_sym_module] = ACTIONS(962), - [anon_sym_use] = ACTIONS(962), - [anon_sym_LPAREN] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(962), - [anon_sym_error] = ACTIONS(962), - [anon_sym_list] = ACTIONS(962), - [anon_sym_DASH] = ACTIONS(962), - [anon_sym_break] = ACTIONS(962), - [anon_sym_continue] = ACTIONS(962), - [anon_sym_for] = ACTIONS(962), - [anon_sym_in] = ACTIONS(962), - [anon_sym_loop] = ACTIONS(962), - [anon_sym_make] = ACTIONS(962), - [anon_sym_while] = ACTIONS(962), - [anon_sym_do] = ACTIONS(962), - [anon_sym_if] = ACTIONS(962), - [anon_sym_else] = ACTIONS(962), - [anon_sym_match] = ACTIONS(962), - [anon_sym_RBRACE] = ACTIONS(962), - [anon_sym_try] = ACTIONS(962), - [anon_sym_catch] = ACTIONS(962), - [anon_sym_return] = ACTIONS(962), - [anon_sym_source] = ACTIONS(962), - [anon_sym_source_DASHenv] = ACTIONS(962), - [anon_sym_register] = ACTIONS(962), - [anon_sym_hide] = ACTIONS(962), - [anon_sym_hide_DASHenv] = ACTIONS(962), - [anon_sym_overlay] = ACTIONS(962), - [anon_sym_new] = ACTIONS(962), - [anon_sym_as] = ACTIONS(962), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(962), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(962), - [aux_sym__val_number_decimal_token1] = ACTIONS(962), - [aux_sym__val_number_decimal_token2] = ACTIONS(962), - [aux_sym__val_number_decimal_token3] = ACTIONS(962), - [aux_sym__val_number_decimal_token4] = ACTIONS(962), - [aux_sym__val_number_token1] = ACTIONS(962), - [aux_sym__val_number_token2] = ACTIONS(962), - [aux_sym__val_number_token3] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(962), - [sym__str_single_quotes] = ACTIONS(962), - [sym__str_back_ticks] = ACTIONS(962), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(962), - [sym__entry_separator] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(962), + [anon_sym_export] = ACTIONS(2461), + [anon_sym_alias] = ACTIONS(2461), + [anon_sym_let] = ACTIONS(2461), + [anon_sym_let_DASHenv] = ACTIONS(2461), + [anon_sym_mut] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2461), + [aux_sym_cmd_identifier_token1] = ACTIONS(2461), + [aux_sym_cmd_identifier_token2] = ACTIONS(2461), + [aux_sym_cmd_identifier_token3] = ACTIONS(2461), + [aux_sym_cmd_identifier_token4] = ACTIONS(2461), + [aux_sym_cmd_identifier_token5] = ACTIONS(2461), + [aux_sym_cmd_identifier_token6] = ACTIONS(2461), + [aux_sym_cmd_identifier_token7] = ACTIONS(2461), + [aux_sym_cmd_identifier_token8] = ACTIONS(2461), + [aux_sym_cmd_identifier_token9] = ACTIONS(2461), + [aux_sym_cmd_identifier_token10] = ACTIONS(2461), + [aux_sym_cmd_identifier_token11] = ACTIONS(2461), + [aux_sym_cmd_identifier_token12] = ACTIONS(2461), + [aux_sym_cmd_identifier_token13] = ACTIONS(2461), + [aux_sym_cmd_identifier_token14] = ACTIONS(2461), + [aux_sym_cmd_identifier_token15] = ACTIONS(2461), + [aux_sym_cmd_identifier_token16] = ACTIONS(2461), + [aux_sym_cmd_identifier_token17] = ACTIONS(2461), + [aux_sym_cmd_identifier_token18] = ACTIONS(2461), + [aux_sym_cmd_identifier_token19] = ACTIONS(2461), + [aux_sym_cmd_identifier_token20] = ACTIONS(2461), + [aux_sym_cmd_identifier_token21] = ACTIONS(2461), + [aux_sym_cmd_identifier_token22] = ACTIONS(2461), + [aux_sym_cmd_identifier_token23] = ACTIONS(2461), + [aux_sym_cmd_identifier_token24] = ACTIONS(2461), + [aux_sym_cmd_identifier_token25] = ACTIONS(2461), + [aux_sym_cmd_identifier_token26] = ACTIONS(2461), + [aux_sym_cmd_identifier_token27] = ACTIONS(2461), + [aux_sym_cmd_identifier_token28] = ACTIONS(2461), + [aux_sym_cmd_identifier_token29] = ACTIONS(2461), + [aux_sym_cmd_identifier_token30] = ACTIONS(2461), + [aux_sym_cmd_identifier_token31] = ACTIONS(2461), + [aux_sym_cmd_identifier_token32] = ACTIONS(2461), + [aux_sym_cmd_identifier_token33] = ACTIONS(2461), + [aux_sym_cmd_identifier_token34] = ACTIONS(2461), + [aux_sym_cmd_identifier_token35] = ACTIONS(2461), + [aux_sym_cmd_identifier_token36] = ACTIONS(2461), + [anon_sym_true] = ACTIONS(2461), + [anon_sym_false] = ACTIONS(2461), + [anon_sym_null] = ACTIONS(2461), + [aux_sym_cmd_identifier_token38] = ACTIONS(2461), + [aux_sym_cmd_identifier_token39] = ACTIONS(2461), + [aux_sym_cmd_identifier_token40] = ACTIONS(2461), + [anon_sym_def] = ACTIONS(2461), + [anon_sym_export_DASHenv] = ACTIONS(2461), + [anon_sym_extern] = ACTIONS(2461), + [anon_sym_module] = ACTIONS(2461), + [anon_sym_use] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_DOLLAR] = ACTIONS(2461), + [anon_sym_error] = ACTIONS(2461), + [anon_sym_list] = ACTIONS(2461), + [anon_sym_DASH] = ACTIONS(2461), + [anon_sym_break] = ACTIONS(2461), + [anon_sym_continue] = ACTIONS(2461), + [anon_sym_for] = ACTIONS(2461), + [anon_sym_in] = ACTIONS(2461), + [anon_sym_loop] = ACTIONS(2461), + [anon_sym_make] = ACTIONS(2461), + [anon_sym_while] = ACTIONS(2461), + [anon_sym_do] = ACTIONS(2461), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_else] = ACTIONS(2461), + [anon_sym_match] = ACTIONS(2461), + [anon_sym_RBRACE] = ACTIONS(2461), + [anon_sym_try] = ACTIONS(2461), + [anon_sym_catch] = ACTIONS(2461), + [anon_sym_return] = ACTIONS(2461), + [anon_sym_source] = ACTIONS(2461), + [anon_sym_source_DASHenv] = ACTIONS(2461), + [anon_sym_register] = ACTIONS(2461), + [anon_sym_hide] = ACTIONS(2461), + [anon_sym_hide_DASHenv] = ACTIONS(2461), + [anon_sym_overlay] = ACTIONS(2461), + [anon_sym_new] = ACTIONS(2461), + [anon_sym_as] = ACTIONS(2461), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2461), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2461), + [aux_sym__val_number_decimal_token1] = ACTIONS(2461), + [aux_sym__val_number_decimal_token2] = ACTIONS(2461), + [aux_sym__val_number_decimal_token3] = ACTIONS(2461), + [aux_sym__val_number_decimal_token4] = ACTIONS(2461), + [aux_sym__val_number_token1] = ACTIONS(2461), + [aux_sym__val_number_token2] = ACTIONS(2461), + [aux_sym__val_number_token3] = ACTIONS(2461), + [anon_sym_DQUOTE] = ACTIONS(2461), + [sym__str_single_quotes] = ACTIONS(2461), + [sym__str_back_ticks] = ACTIONS(2461), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2461), + [sym__entry_separator] = ACTIONS(2463), + [anon_sym_PLUS] = ACTIONS(2461), [anon_sym_POUND] = ACTIONS(3), }, [566] = { [sym_comment] = STATE(566), - [anon_sym_export] = ACTIONS(1949), - [anon_sym_alias] = ACTIONS(1949), - [anon_sym_let] = ACTIONS(1949), - [anon_sym_let_DASHenv] = ACTIONS(1949), - [anon_sym_mut] = ACTIONS(1949), - [anon_sym_const] = ACTIONS(1949), - [aux_sym_cmd_identifier_token1] = ACTIONS(1949), - [aux_sym_cmd_identifier_token2] = ACTIONS(1949), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [aux_sym_cmd_identifier_token6] = ACTIONS(1949), - [aux_sym_cmd_identifier_token7] = ACTIONS(1949), - [aux_sym_cmd_identifier_token8] = ACTIONS(1949), - [aux_sym_cmd_identifier_token9] = ACTIONS(1949), - [aux_sym_cmd_identifier_token10] = ACTIONS(1949), - [aux_sym_cmd_identifier_token11] = ACTIONS(1949), - [aux_sym_cmd_identifier_token12] = ACTIONS(1949), - [aux_sym_cmd_identifier_token13] = ACTIONS(1949), - [aux_sym_cmd_identifier_token14] = ACTIONS(1949), - [aux_sym_cmd_identifier_token15] = ACTIONS(1949), - [aux_sym_cmd_identifier_token16] = ACTIONS(1949), - [aux_sym_cmd_identifier_token17] = ACTIONS(1949), - [aux_sym_cmd_identifier_token18] = ACTIONS(1949), - [aux_sym_cmd_identifier_token19] = ACTIONS(1949), - [aux_sym_cmd_identifier_token20] = ACTIONS(1949), - [aux_sym_cmd_identifier_token21] = ACTIONS(1949), - [aux_sym_cmd_identifier_token22] = ACTIONS(1949), - [aux_sym_cmd_identifier_token23] = ACTIONS(1949), - [aux_sym_cmd_identifier_token24] = ACTIONS(1949), - [aux_sym_cmd_identifier_token25] = ACTIONS(1949), - [aux_sym_cmd_identifier_token26] = ACTIONS(1949), - [aux_sym_cmd_identifier_token27] = ACTIONS(1949), - [aux_sym_cmd_identifier_token28] = ACTIONS(1949), - [aux_sym_cmd_identifier_token29] = ACTIONS(1949), - [aux_sym_cmd_identifier_token30] = ACTIONS(1949), - [aux_sym_cmd_identifier_token31] = ACTIONS(1949), - [aux_sym_cmd_identifier_token32] = ACTIONS(1949), - [aux_sym_cmd_identifier_token33] = ACTIONS(1949), - [aux_sym_cmd_identifier_token34] = ACTIONS(1949), - [aux_sym_cmd_identifier_token35] = ACTIONS(1949), - [aux_sym_cmd_identifier_token36] = ACTIONS(1949), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1949), - [aux_sym_cmd_identifier_token38] = ACTIONS(1949), - [aux_sym_cmd_identifier_token39] = ACTIONS(1949), - [aux_sym_cmd_identifier_token40] = ACTIONS(1949), - [anon_sym_def] = ACTIONS(1949), - [anon_sym_export_DASHenv] = ACTIONS(1949), - [anon_sym_extern] = ACTIONS(1949), - [anon_sym_module] = ACTIONS(1949), - [anon_sym_use] = ACTIONS(1949), - [anon_sym_LPAREN] = ACTIONS(1949), - [anon_sym_DOLLAR] = ACTIONS(1949), - [anon_sym_error] = ACTIONS(1949), - [anon_sym_list] = ACTIONS(1949), - [anon_sym_DASH] = ACTIONS(1949), - [anon_sym_break] = ACTIONS(1949), - [anon_sym_continue] = ACTIONS(1949), - [anon_sym_for] = ACTIONS(1949), - [anon_sym_in] = ACTIONS(1949), - [anon_sym_loop] = ACTIONS(1949), - [anon_sym_make] = ACTIONS(1949), - [anon_sym_while] = ACTIONS(1949), - [anon_sym_do] = ACTIONS(1949), - [anon_sym_if] = ACTIONS(1949), - [anon_sym_else] = ACTIONS(1949), - [anon_sym_match] = ACTIONS(1949), - [anon_sym_RBRACE] = ACTIONS(1949), - [anon_sym_try] = ACTIONS(1949), - [anon_sym_catch] = ACTIONS(1949), - [anon_sym_return] = ACTIONS(1949), - [anon_sym_source] = ACTIONS(1949), - [anon_sym_source_DASHenv] = ACTIONS(1949), - [anon_sym_register] = ACTIONS(1949), - [anon_sym_hide] = ACTIONS(1949), - [anon_sym_hide_DASHenv] = ACTIONS(1949), - [anon_sym_overlay] = ACTIONS(1949), - [anon_sym_new] = ACTIONS(1949), - [anon_sym_as] = ACTIONS(1949), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1949), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1949), - [aux_sym__val_number_decimal_token1] = ACTIONS(1949), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1949), - [aux_sym__val_number_decimal_token4] = ACTIONS(1949), - [aux_sym__val_number_token1] = ACTIONS(1949), - [aux_sym__val_number_token2] = ACTIONS(1949), - [aux_sym__val_number_token3] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(1949), - [sym__str_single_quotes] = ACTIONS(1949), - [sym__str_back_ticks] = ACTIONS(1949), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1949), - [sym__entry_separator] = ACTIONS(1951), - [anon_sym_PLUS] = ACTIONS(1949), + [aux_sym__multiple_types_repeat1] = STATE(504), + [anon_sym_export] = ACTIONS(2313), + [anon_sym_alias] = ACTIONS(2313), + [anon_sym_let] = ACTIONS(2313), + [anon_sym_let_DASHenv] = ACTIONS(2313), + [anon_sym_mut] = ACTIONS(2313), + [anon_sym_const] = ACTIONS(2313), + [aux_sym_cmd_identifier_token1] = ACTIONS(2313), + [aux_sym_cmd_identifier_token2] = ACTIONS(2313), + [aux_sym_cmd_identifier_token3] = ACTIONS(2313), + [aux_sym_cmd_identifier_token4] = ACTIONS(2313), + [aux_sym_cmd_identifier_token5] = ACTIONS(2313), + [aux_sym_cmd_identifier_token6] = ACTIONS(2313), + [aux_sym_cmd_identifier_token7] = ACTIONS(2313), + [aux_sym_cmd_identifier_token8] = ACTIONS(2313), + [aux_sym_cmd_identifier_token9] = ACTIONS(2313), + [aux_sym_cmd_identifier_token10] = ACTIONS(2313), + [aux_sym_cmd_identifier_token11] = ACTIONS(2313), + [aux_sym_cmd_identifier_token12] = ACTIONS(2313), + [aux_sym_cmd_identifier_token13] = ACTIONS(2313), + [aux_sym_cmd_identifier_token14] = ACTIONS(2313), + [aux_sym_cmd_identifier_token15] = ACTIONS(2313), + [aux_sym_cmd_identifier_token16] = ACTIONS(2313), + [aux_sym_cmd_identifier_token17] = ACTIONS(2313), + [aux_sym_cmd_identifier_token18] = ACTIONS(2313), + [aux_sym_cmd_identifier_token19] = ACTIONS(2313), + [aux_sym_cmd_identifier_token20] = ACTIONS(2313), + [aux_sym_cmd_identifier_token21] = ACTIONS(2313), + [aux_sym_cmd_identifier_token22] = ACTIONS(2313), + [aux_sym_cmd_identifier_token23] = ACTIONS(2313), + [aux_sym_cmd_identifier_token24] = ACTIONS(2313), + [aux_sym_cmd_identifier_token25] = ACTIONS(2313), + [aux_sym_cmd_identifier_token26] = ACTIONS(2313), + [aux_sym_cmd_identifier_token27] = ACTIONS(2313), + [aux_sym_cmd_identifier_token28] = ACTIONS(2313), + [aux_sym_cmd_identifier_token29] = ACTIONS(2313), + [aux_sym_cmd_identifier_token30] = ACTIONS(2313), + [aux_sym_cmd_identifier_token31] = ACTIONS(2313), + [aux_sym_cmd_identifier_token32] = ACTIONS(2313), + [aux_sym_cmd_identifier_token33] = ACTIONS(2313), + [aux_sym_cmd_identifier_token34] = ACTIONS(2313), + [aux_sym_cmd_identifier_token35] = ACTIONS(2313), + [aux_sym_cmd_identifier_token36] = ACTIONS(2313), + [anon_sym_true] = ACTIONS(2313), + [anon_sym_false] = ACTIONS(2313), + [anon_sym_null] = ACTIONS(2313), + [aux_sym_cmd_identifier_token38] = ACTIONS(2313), + [aux_sym_cmd_identifier_token39] = ACTIONS(2313), + [aux_sym_cmd_identifier_token40] = ACTIONS(2313), + [anon_sym_def] = ACTIONS(2313), + [anon_sym_export_DASHenv] = ACTIONS(2313), + [anon_sym_extern] = ACTIONS(2313), + [anon_sym_module] = ACTIONS(2313), + [anon_sym_use] = ACTIONS(2313), + [anon_sym_LPAREN] = ACTIONS(2313), + [anon_sym_DOLLAR] = ACTIONS(2313), + [anon_sym_error] = ACTIONS(2313), + [anon_sym_list] = ACTIONS(2313), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_break] = ACTIONS(2313), + [anon_sym_continue] = ACTIONS(2313), + [anon_sym_for] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2313), + [anon_sym_loop] = ACTIONS(2313), + [anon_sym_make] = ACTIONS(2313), + [anon_sym_while] = ACTIONS(2313), + [anon_sym_do] = ACTIONS(2313), + [anon_sym_if] = ACTIONS(2313), + [anon_sym_else] = ACTIONS(2313), + [anon_sym_match] = ACTIONS(2313), + [anon_sym_try] = ACTIONS(2313), + [anon_sym_catch] = ACTIONS(2313), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_source] = ACTIONS(2313), + [anon_sym_source_DASHenv] = ACTIONS(2313), + [anon_sym_register] = ACTIONS(2313), + [anon_sym_hide] = ACTIONS(2313), + [anon_sym_hide_DASHenv] = ACTIONS(2313), + [anon_sym_overlay] = ACTIONS(2313), + [anon_sym_new] = ACTIONS(2313), + [anon_sym_as] = ACTIONS(2313), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2313), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2313), + [aux_sym__val_number_decimal_token1] = ACTIONS(2313), + [aux_sym__val_number_decimal_token2] = ACTIONS(2313), + [aux_sym__val_number_decimal_token3] = ACTIONS(2313), + [aux_sym__val_number_decimal_token4] = ACTIONS(2313), + [aux_sym__val_number_token1] = ACTIONS(2313), + [aux_sym__val_number_token2] = ACTIONS(2313), + [aux_sym__val_number_token3] = ACTIONS(2313), + [anon_sym_DQUOTE] = ACTIONS(2313), + [sym__str_single_quotes] = ACTIONS(2313), + [sym__str_back_ticks] = ACTIONS(2313), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2313), + [sym__entry_separator] = ACTIONS(2317), + [anon_sym_PLUS] = ACTIONS(2313), [anon_sym_POUND] = ACTIONS(3), }, [567] = { [sym_comment] = STATE(567), - [anon_sym_export] = ACTIONS(1782), - [anon_sym_alias] = ACTIONS(1782), - [anon_sym_let] = ACTIONS(1782), - [anon_sym_let_DASHenv] = ACTIONS(1782), - [anon_sym_mut] = ACTIONS(1782), - [anon_sym_const] = ACTIONS(1782), - [aux_sym_cmd_identifier_token1] = ACTIONS(1782), - [aux_sym_cmd_identifier_token2] = ACTIONS(1782), - [aux_sym_cmd_identifier_token3] = ACTIONS(1782), - [aux_sym_cmd_identifier_token4] = ACTIONS(1782), - [aux_sym_cmd_identifier_token5] = ACTIONS(1782), - [aux_sym_cmd_identifier_token6] = ACTIONS(1782), - [aux_sym_cmd_identifier_token7] = ACTIONS(1782), - [aux_sym_cmd_identifier_token8] = ACTIONS(1782), - [aux_sym_cmd_identifier_token9] = ACTIONS(1782), - [aux_sym_cmd_identifier_token10] = ACTIONS(1782), - [aux_sym_cmd_identifier_token11] = ACTIONS(1782), - [aux_sym_cmd_identifier_token12] = ACTIONS(1782), - [aux_sym_cmd_identifier_token13] = ACTIONS(1782), - [aux_sym_cmd_identifier_token14] = ACTIONS(1782), - [aux_sym_cmd_identifier_token15] = ACTIONS(1782), - [aux_sym_cmd_identifier_token16] = ACTIONS(1782), - [aux_sym_cmd_identifier_token17] = ACTIONS(1782), - [aux_sym_cmd_identifier_token18] = ACTIONS(1782), - [aux_sym_cmd_identifier_token19] = ACTIONS(1782), - [aux_sym_cmd_identifier_token20] = ACTIONS(1782), - [aux_sym_cmd_identifier_token21] = ACTIONS(1782), - [aux_sym_cmd_identifier_token22] = ACTIONS(1782), - [aux_sym_cmd_identifier_token23] = ACTIONS(1782), - [aux_sym_cmd_identifier_token24] = ACTIONS(1782), - [aux_sym_cmd_identifier_token25] = ACTIONS(1782), - [aux_sym_cmd_identifier_token26] = ACTIONS(1782), - [aux_sym_cmd_identifier_token27] = ACTIONS(1782), - [aux_sym_cmd_identifier_token28] = ACTIONS(1782), - [aux_sym_cmd_identifier_token29] = ACTIONS(1782), - [aux_sym_cmd_identifier_token30] = ACTIONS(1782), - [aux_sym_cmd_identifier_token31] = ACTIONS(1782), - [aux_sym_cmd_identifier_token32] = ACTIONS(1782), - [aux_sym_cmd_identifier_token33] = ACTIONS(1782), - [aux_sym_cmd_identifier_token34] = ACTIONS(1782), - [aux_sym_cmd_identifier_token35] = ACTIONS(1782), - [aux_sym_cmd_identifier_token36] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1782), - [anon_sym_false] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1782), - [aux_sym_cmd_identifier_token38] = ACTIONS(1782), - [aux_sym_cmd_identifier_token39] = ACTIONS(1782), - [aux_sym_cmd_identifier_token40] = ACTIONS(1782), - [anon_sym_def] = ACTIONS(1782), - [anon_sym_export_DASHenv] = ACTIONS(1782), - [anon_sym_extern] = ACTIONS(1782), - [anon_sym_module] = ACTIONS(1782), - [anon_sym_use] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_DOLLAR] = ACTIONS(1782), - [anon_sym_error] = ACTIONS(1782), - [anon_sym_list] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_break] = ACTIONS(1782), - [anon_sym_continue] = ACTIONS(1782), - [anon_sym_for] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1782), - [anon_sym_loop] = ACTIONS(1782), - [anon_sym_make] = ACTIONS(1782), - [anon_sym_while] = ACTIONS(1782), - [anon_sym_do] = ACTIONS(1782), - [anon_sym_if] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1782), - [anon_sym_match] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_try] = ACTIONS(1782), - [anon_sym_catch] = ACTIONS(1782), - [anon_sym_return] = ACTIONS(1782), - [anon_sym_source] = ACTIONS(1782), - [anon_sym_source_DASHenv] = ACTIONS(1782), - [anon_sym_register] = ACTIONS(1782), - [anon_sym_hide] = ACTIONS(1782), - [anon_sym_hide_DASHenv] = ACTIONS(1782), - [anon_sym_overlay] = ACTIONS(1782), - [anon_sym_new] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1782), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1782), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1782), - [aux_sym__val_number_decimal_token1] = ACTIONS(1782), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1782), - [aux_sym__val_number_decimal_token4] = ACTIONS(1782), - [aux_sym__val_number_token1] = ACTIONS(1782), - [aux_sym__val_number_token2] = ACTIONS(1782), - [aux_sym__val_number_token3] = ACTIONS(1782), - [anon_sym_DQUOTE] = ACTIONS(1782), - [sym__str_single_quotes] = ACTIONS(1782), - [sym__str_back_ticks] = ACTIONS(1782), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1782), - [sym__entry_separator] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(2051), + [anon_sym_alias] = ACTIONS(2051), + [anon_sym_let] = ACTIONS(2051), + [anon_sym_let_DASHenv] = ACTIONS(2051), + [anon_sym_mut] = ACTIONS(2051), + [anon_sym_const] = ACTIONS(2051), + [aux_sym_cmd_identifier_token1] = ACTIONS(2051), + [aux_sym_cmd_identifier_token2] = ACTIONS(2051), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [aux_sym_cmd_identifier_token6] = ACTIONS(2051), + [aux_sym_cmd_identifier_token7] = ACTIONS(2051), + [aux_sym_cmd_identifier_token8] = ACTIONS(2051), + [aux_sym_cmd_identifier_token9] = ACTIONS(2051), + [aux_sym_cmd_identifier_token10] = ACTIONS(2051), + [aux_sym_cmd_identifier_token11] = ACTIONS(2051), + [aux_sym_cmd_identifier_token12] = ACTIONS(2051), + [aux_sym_cmd_identifier_token13] = ACTIONS(2051), + [aux_sym_cmd_identifier_token14] = ACTIONS(2051), + [aux_sym_cmd_identifier_token15] = ACTIONS(2051), + [aux_sym_cmd_identifier_token16] = ACTIONS(2051), + [aux_sym_cmd_identifier_token17] = ACTIONS(2051), + [aux_sym_cmd_identifier_token18] = ACTIONS(2051), + [aux_sym_cmd_identifier_token19] = ACTIONS(2051), + [aux_sym_cmd_identifier_token20] = ACTIONS(2051), + [aux_sym_cmd_identifier_token21] = ACTIONS(2051), + [aux_sym_cmd_identifier_token22] = ACTIONS(2051), + [aux_sym_cmd_identifier_token23] = ACTIONS(2051), + [aux_sym_cmd_identifier_token24] = ACTIONS(2051), + [aux_sym_cmd_identifier_token25] = ACTIONS(2051), + [aux_sym_cmd_identifier_token26] = ACTIONS(2051), + [aux_sym_cmd_identifier_token27] = ACTIONS(2051), + [aux_sym_cmd_identifier_token28] = ACTIONS(2051), + [aux_sym_cmd_identifier_token29] = ACTIONS(2051), + [aux_sym_cmd_identifier_token30] = ACTIONS(2051), + [aux_sym_cmd_identifier_token31] = ACTIONS(2051), + [aux_sym_cmd_identifier_token32] = ACTIONS(2051), + [aux_sym_cmd_identifier_token33] = ACTIONS(2051), + [aux_sym_cmd_identifier_token34] = ACTIONS(2051), + [aux_sym_cmd_identifier_token35] = ACTIONS(2051), + [aux_sym_cmd_identifier_token36] = ACTIONS(2051), + [anon_sym_true] = ACTIONS(2051), + [anon_sym_false] = ACTIONS(2051), + [anon_sym_null] = ACTIONS(2051), + [aux_sym_cmd_identifier_token38] = ACTIONS(2051), + [aux_sym_cmd_identifier_token39] = ACTIONS(2051), + [aux_sym_cmd_identifier_token40] = ACTIONS(2051), + [anon_sym_def] = ACTIONS(2051), + [anon_sym_export_DASHenv] = ACTIONS(2051), + [anon_sym_extern] = ACTIONS(2051), + [anon_sym_module] = ACTIONS(2051), + [anon_sym_use] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(2051), + [anon_sym_DOLLAR] = ACTIONS(2051), + [anon_sym_error] = ACTIONS(2051), + [anon_sym_list] = ACTIONS(2051), + [anon_sym_DASH] = ACTIONS(2051), + [anon_sym_break] = ACTIONS(2051), + [anon_sym_continue] = ACTIONS(2051), + [anon_sym_for] = ACTIONS(2051), + [anon_sym_in] = ACTIONS(2051), + [anon_sym_loop] = ACTIONS(2051), + [anon_sym_make] = ACTIONS(2051), + [anon_sym_while] = ACTIONS(2051), + [anon_sym_do] = ACTIONS(2051), + [anon_sym_if] = ACTIONS(2051), + [anon_sym_else] = ACTIONS(2051), + [anon_sym_match] = ACTIONS(2051), + [anon_sym_RBRACE] = ACTIONS(2051), + [anon_sym_try] = ACTIONS(2051), + [anon_sym_catch] = ACTIONS(2051), + [anon_sym_return] = ACTIONS(2051), + [anon_sym_source] = ACTIONS(2051), + [anon_sym_source_DASHenv] = ACTIONS(2051), + [anon_sym_register] = ACTIONS(2051), + [anon_sym_hide] = ACTIONS(2051), + [anon_sym_hide_DASHenv] = ACTIONS(2051), + [anon_sym_overlay] = ACTIONS(2051), + [anon_sym_new] = ACTIONS(2051), + [anon_sym_as] = ACTIONS(2051), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2051), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2051), + [aux_sym__val_number_decimal_token1] = ACTIONS(2051), + [aux_sym__val_number_decimal_token2] = ACTIONS(2051), + [aux_sym__val_number_decimal_token3] = ACTIONS(2051), + [aux_sym__val_number_decimal_token4] = ACTIONS(2051), + [aux_sym__val_number_token1] = ACTIONS(2051), + [aux_sym__val_number_token2] = ACTIONS(2051), + [aux_sym__val_number_token3] = ACTIONS(2051), + [anon_sym_DQUOTE] = ACTIONS(2051), + [sym__str_single_quotes] = ACTIONS(2051), + [sym__str_back_ticks] = ACTIONS(2051), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2051), + [sym__entry_separator] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2051), [anon_sym_POUND] = ACTIONS(3), }, [568] = { [sym_comment] = STATE(568), - [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), - [aux_sym_cmd_identifier_token1] = ACTIONS(1905), - [aux_sym_cmd_identifier_token2] = ACTIONS(1905), - [aux_sym_cmd_identifier_token3] = ACTIONS(1905), - [aux_sym_cmd_identifier_token4] = ACTIONS(1905), - [aux_sym_cmd_identifier_token5] = ACTIONS(1905), - [aux_sym_cmd_identifier_token6] = ACTIONS(1905), - [aux_sym_cmd_identifier_token7] = ACTIONS(1905), - [aux_sym_cmd_identifier_token8] = ACTIONS(1905), - [aux_sym_cmd_identifier_token9] = ACTIONS(1905), - [aux_sym_cmd_identifier_token10] = ACTIONS(1905), - [aux_sym_cmd_identifier_token11] = ACTIONS(1905), - [aux_sym_cmd_identifier_token12] = ACTIONS(1905), - [aux_sym_cmd_identifier_token13] = ACTIONS(1905), - [aux_sym_cmd_identifier_token14] = ACTIONS(1905), - [aux_sym_cmd_identifier_token15] = ACTIONS(1905), - [aux_sym_cmd_identifier_token16] = ACTIONS(1905), - [aux_sym_cmd_identifier_token17] = ACTIONS(1905), - [aux_sym_cmd_identifier_token18] = ACTIONS(1905), - [aux_sym_cmd_identifier_token19] = ACTIONS(1905), - [aux_sym_cmd_identifier_token20] = ACTIONS(1905), - [aux_sym_cmd_identifier_token21] = ACTIONS(1905), - [aux_sym_cmd_identifier_token22] = ACTIONS(1905), - [aux_sym_cmd_identifier_token23] = ACTIONS(1905), - [aux_sym_cmd_identifier_token24] = ACTIONS(1905), - [aux_sym_cmd_identifier_token25] = ACTIONS(1905), - [aux_sym_cmd_identifier_token26] = ACTIONS(1905), - [aux_sym_cmd_identifier_token27] = ACTIONS(1905), - [aux_sym_cmd_identifier_token28] = ACTIONS(1905), - [aux_sym_cmd_identifier_token29] = ACTIONS(1905), - [aux_sym_cmd_identifier_token30] = ACTIONS(1905), - [aux_sym_cmd_identifier_token31] = ACTIONS(1905), - [aux_sym_cmd_identifier_token32] = ACTIONS(1905), - [aux_sym_cmd_identifier_token33] = ACTIONS(1905), - [aux_sym_cmd_identifier_token34] = ACTIONS(1905), - [aux_sym_cmd_identifier_token35] = ACTIONS(1905), - [aux_sym_cmd_identifier_token36] = ACTIONS(1905), - [anon_sym_true] = ACTIONS(1905), - [anon_sym_false] = ACTIONS(1905), - [anon_sym_null] = ACTIONS(1905), - [aux_sym_cmd_identifier_token38] = ACTIONS(1905), - [aux_sym_cmd_identifier_token39] = ACTIONS(1905), - [aux_sym_cmd_identifier_token40] = ACTIONS(1905), - [anon_sym_def] = 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_LPAREN] = ACTIONS(1905), - [anon_sym_DOLLAR] = ACTIONS(1905), - [anon_sym_error] = ACTIONS(1905), - [anon_sym_list] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_break] = ACTIONS(1905), - [anon_sym_continue] = ACTIONS(1905), - [anon_sym_for] = ACTIONS(1905), - [anon_sym_in] = ACTIONS(1905), - [anon_sym_loop] = ACTIONS(1905), - [anon_sym_make] = ACTIONS(1905), - [anon_sym_while] = ACTIONS(1905), - [anon_sym_do] = ACTIONS(1905), - [anon_sym_if] = ACTIONS(1905), - [anon_sym_else] = ACTIONS(1905), - [anon_sym_match] = ACTIONS(1905), - [anon_sym_RBRACE] = ACTIONS(1905), - [anon_sym_try] = ACTIONS(1905), - [anon_sym_catch] = 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_new] = ACTIONS(1905), - [anon_sym_as] = ACTIONS(1905), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1905), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1905), - [aux_sym__val_number_decimal_token1] = ACTIONS(1905), - [aux_sym__val_number_decimal_token2] = ACTIONS(1905), - [aux_sym__val_number_decimal_token3] = ACTIONS(1905), - [aux_sym__val_number_decimal_token4] = ACTIONS(1905), - [aux_sym__val_number_token1] = ACTIONS(1905), - [aux_sym__val_number_token2] = ACTIONS(1905), - [aux_sym__val_number_token3] = ACTIONS(1905), - [anon_sym_DQUOTE] = ACTIONS(1905), - [sym__str_single_quotes] = ACTIONS(1905), - [sym__str_back_ticks] = ACTIONS(1905), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1905), - [sym__entry_separator] = ACTIONS(1911), - [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_export] = ACTIONS(2465), + [anon_sym_alias] = ACTIONS(2465), + [anon_sym_let] = ACTIONS(2465), + [anon_sym_let_DASHenv] = ACTIONS(2465), + [anon_sym_mut] = ACTIONS(2465), + [anon_sym_const] = ACTIONS(2465), + [aux_sym_cmd_identifier_token1] = ACTIONS(2465), + [aux_sym_cmd_identifier_token2] = ACTIONS(2465), + [aux_sym_cmd_identifier_token3] = ACTIONS(2465), + [aux_sym_cmd_identifier_token4] = ACTIONS(2465), + [aux_sym_cmd_identifier_token5] = ACTIONS(2465), + [aux_sym_cmd_identifier_token6] = ACTIONS(2465), + [aux_sym_cmd_identifier_token7] = ACTIONS(2465), + [aux_sym_cmd_identifier_token8] = ACTIONS(2465), + [aux_sym_cmd_identifier_token9] = ACTIONS(2465), + [aux_sym_cmd_identifier_token10] = ACTIONS(2465), + [aux_sym_cmd_identifier_token11] = ACTIONS(2465), + [aux_sym_cmd_identifier_token12] = ACTIONS(2465), + [aux_sym_cmd_identifier_token13] = ACTIONS(2465), + [aux_sym_cmd_identifier_token14] = ACTIONS(2465), + [aux_sym_cmd_identifier_token15] = ACTIONS(2465), + [aux_sym_cmd_identifier_token16] = ACTIONS(2465), + [aux_sym_cmd_identifier_token17] = ACTIONS(2465), + [aux_sym_cmd_identifier_token18] = ACTIONS(2465), + [aux_sym_cmd_identifier_token19] = ACTIONS(2465), + [aux_sym_cmd_identifier_token20] = ACTIONS(2465), + [aux_sym_cmd_identifier_token21] = ACTIONS(2465), + [aux_sym_cmd_identifier_token22] = ACTIONS(2465), + [aux_sym_cmd_identifier_token23] = ACTIONS(2465), + [aux_sym_cmd_identifier_token24] = ACTIONS(2465), + [aux_sym_cmd_identifier_token25] = ACTIONS(2465), + [aux_sym_cmd_identifier_token26] = ACTIONS(2465), + [aux_sym_cmd_identifier_token27] = ACTIONS(2465), + [aux_sym_cmd_identifier_token28] = ACTIONS(2465), + [aux_sym_cmd_identifier_token29] = ACTIONS(2465), + [aux_sym_cmd_identifier_token30] = ACTIONS(2465), + [aux_sym_cmd_identifier_token31] = ACTIONS(2465), + [aux_sym_cmd_identifier_token32] = ACTIONS(2465), + [aux_sym_cmd_identifier_token33] = ACTIONS(2465), + [aux_sym_cmd_identifier_token34] = ACTIONS(2465), + [aux_sym_cmd_identifier_token35] = ACTIONS(2465), + [aux_sym_cmd_identifier_token36] = ACTIONS(2465), + [anon_sym_true] = ACTIONS(2465), + [anon_sym_false] = ACTIONS(2465), + [anon_sym_null] = ACTIONS(2465), + [aux_sym_cmd_identifier_token38] = ACTIONS(2465), + [aux_sym_cmd_identifier_token39] = ACTIONS(2465), + [aux_sym_cmd_identifier_token40] = ACTIONS(2465), + [anon_sym_def] = ACTIONS(2465), + [anon_sym_export_DASHenv] = ACTIONS(2465), + [anon_sym_extern] = ACTIONS(2465), + [anon_sym_module] = ACTIONS(2465), + [anon_sym_use] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_DOLLAR] = ACTIONS(2465), + [anon_sym_error] = ACTIONS(2465), + [anon_sym_list] = ACTIONS(2465), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_break] = ACTIONS(2465), + [anon_sym_continue] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(2465), + [anon_sym_loop] = ACTIONS(2465), + [anon_sym_make] = ACTIONS(2465), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_do] = ACTIONS(2465), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_else] = ACTIONS(2465), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_RBRACE] = ACTIONS(2465), + [anon_sym_try] = ACTIONS(2465), + [anon_sym_catch] = ACTIONS(2465), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_source] = ACTIONS(2465), + [anon_sym_source_DASHenv] = ACTIONS(2465), + [anon_sym_register] = ACTIONS(2465), + [anon_sym_hide] = ACTIONS(2465), + [anon_sym_hide_DASHenv] = ACTIONS(2465), + [anon_sym_overlay] = ACTIONS(2465), + [anon_sym_new] = ACTIONS(2465), + [anon_sym_as] = ACTIONS(2465), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2465), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2465), + [aux_sym__val_number_decimal_token1] = ACTIONS(2465), + [aux_sym__val_number_decimal_token2] = ACTIONS(2465), + [aux_sym__val_number_decimal_token3] = ACTIONS(2465), + [aux_sym__val_number_decimal_token4] = ACTIONS(2465), + [aux_sym__val_number_token1] = ACTIONS(2465), + [aux_sym__val_number_token2] = ACTIONS(2465), + [aux_sym__val_number_token3] = ACTIONS(2465), + [anon_sym_DQUOTE] = ACTIONS(2465), + [sym__str_single_quotes] = ACTIONS(2465), + [sym__str_back_ticks] = ACTIONS(2465), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2465), + [sym__entry_separator] = ACTIONS(2467), + [anon_sym_PLUS] = ACTIONS(2465), [anon_sym_POUND] = ACTIONS(3), }, [569] = { [sym_comment] = STATE(569), - [anon_sym_export] = ACTIONS(2397), - [anon_sym_alias] = ACTIONS(2397), - [anon_sym_let] = ACTIONS(2397), - [anon_sym_let_DASHenv] = ACTIONS(2397), - [anon_sym_mut] = ACTIONS(2397), - [anon_sym_const] = ACTIONS(2397), - [aux_sym_cmd_identifier_token1] = ACTIONS(2397), - [aux_sym_cmd_identifier_token2] = ACTIONS(2397), - [aux_sym_cmd_identifier_token3] = ACTIONS(2397), - [aux_sym_cmd_identifier_token4] = ACTIONS(2397), - [aux_sym_cmd_identifier_token5] = ACTIONS(2397), - [aux_sym_cmd_identifier_token6] = ACTIONS(2397), - [aux_sym_cmd_identifier_token7] = ACTIONS(2397), - [aux_sym_cmd_identifier_token8] = ACTIONS(2397), - [aux_sym_cmd_identifier_token9] = ACTIONS(2397), - [aux_sym_cmd_identifier_token10] = ACTIONS(2397), - [aux_sym_cmd_identifier_token11] = ACTIONS(2397), - [aux_sym_cmd_identifier_token12] = ACTIONS(2397), - [aux_sym_cmd_identifier_token13] = ACTIONS(2397), - [aux_sym_cmd_identifier_token14] = ACTIONS(2397), - [aux_sym_cmd_identifier_token15] = ACTIONS(2397), - [aux_sym_cmd_identifier_token16] = ACTIONS(2397), - [aux_sym_cmd_identifier_token17] = ACTIONS(2397), - [aux_sym_cmd_identifier_token18] = ACTIONS(2397), - [aux_sym_cmd_identifier_token19] = ACTIONS(2397), - [aux_sym_cmd_identifier_token20] = ACTIONS(2397), - [aux_sym_cmd_identifier_token21] = ACTIONS(2397), - [aux_sym_cmd_identifier_token22] = ACTIONS(2397), - [aux_sym_cmd_identifier_token23] = ACTIONS(2397), - [aux_sym_cmd_identifier_token24] = ACTIONS(2397), - [aux_sym_cmd_identifier_token25] = ACTIONS(2397), - [aux_sym_cmd_identifier_token26] = ACTIONS(2397), - [aux_sym_cmd_identifier_token27] = ACTIONS(2397), - [aux_sym_cmd_identifier_token28] = ACTIONS(2397), - [aux_sym_cmd_identifier_token29] = ACTIONS(2397), - [aux_sym_cmd_identifier_token30] = ACTIONS(2397), - [aux_sym_cmd_identifier_token31] = ACTIONS(2397), - [aux_sym_cmd_identifier_token32] = ACTIONS(2397), - [aux_sym_cmd_identifier_token33] = ACTIONS(2397), - [aux_sym_cmd_identifier_token34] = ACTIONS(2397), - [aux_sym_cmd_identifier_token35] = ACTIONS(2397), - [aux_sym_cmd_identifier_token36] = ACTIONS(2397), - [anon_sym_true] = ACTIONS(2397), - [anon_sym_false] = ACTIONS(2397), - [anon_sym_null] = ACTIONS(2397), - [aux_sym_cmd_identifier_token38] = ACTIONS(2397), - [aux_sym_cmd_identifier_token39] = ACTIONS(2397), - [aux_sym_cmd_identifier_token40] = ACTIONS(2397), - [anon_sym_def] = ACTIONS(2397), - [anon_sym_export_DASHenv] = ACTIONS(2397), - [anon_sym_extern] = ACTIONS(2397), - [anon_sym_module] = ACTIONS(2397), - [anon_sym_use] = ACTIONS(2397), - [anon_sym_LPAREN] = ACTIONS(2397), - [anon_sym_DOLLAR] = ACTIONS(2397), - [anon_sym_error] = ACTIONS(2397), - [anon_sym_list] = ACTIONS(2397), - [anon_sym_DASH] = ACTIONS(2397), - [anon_sym_break] = ACTIONS(2397), - [anon_sym_continue] = ACTIONS(2397), - [anon_sym_for] = ACTIONS(2397), - [anon_sym_in] = ACTIONS(2397), - [anon_sym_loop] = ACTIONS(2397), - [anon_sym_make] = ACTIONS(2397), - [anon_sym_while] = ACTIONS(2397), - [anon_sym_do] = ACTIONS(2397), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_else] = ACTIONS(2397), - [anon_sym_match] = ACTIONS(2397), - [anon_sym_RBRACE] = ACTIONS(2397), - [anon_sym_try] = ACTIONS(2397), - [anon_sym_catch] = ACTIONS(2397), - [anon_sym_return] = ACTIONS(2397), - [anon_sym_source] = ACTIONS(2397), - [anon_sym_source_DASHenv] = ACTIONS(2397), - [anon_sym_register] = ACTIONS(2397), - [anon_sym_hide] = ACTIONS(2397), - [anon_sym_hide_DASHenv] = ACTIONS(2397), - [anon_sym_overlay] = ACTIONS(2397), - [anon_sym_new] = ACTIONS(2397), - [anon_sym_as] = ACTIONS(2397), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2397), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2397), - [aux_sym__val_number_decimal_token1] = ACTIONS(2397), - [aux_sym__val_number_decimal_token2] = ACTIONS(2397), - [aux_sym__val_number_decimal_token3] = ACTIONS(2397), - [aux_sym__val_number_decimal_token4] = ACTIONS(2397), - [aux_sym__val_number_token1] = ACTIONS(2397), - [aux_sym__val_number_token2] = ACTIONS(2397), - [aux_sym__val_number_token3] = ACTIONS(2397), - [anon_sym_DQUOTE] = ACTIONS(2397), - [sym__str_single_quotes] = ACTIONS(2397), - [sym__str_back_ticks] = ACTIONS(2397), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2397), - [sym__entry_separator] = ACTIONS(2399), - [anon_sym_PLUS] = ACTIONS(2397), + [anon_sym_export] = ACTIONS(2469), + [anon_sym_alias] = ACTIONS(2469), + [anon_sym_let] = ACTIONS(2469), + [anon_sym_let_DASHenv] = ACTIONS(2469), + [anon_sym_mut] = ACTIONS(2469), + [anon_sym_const] = ACTIONS(2469), + [aux_sym_cmd_identifier_token1] = ACTIONS(2469), + [aux_sym_cmd_identifier_token2] = ACTIONS(2469), + [aux_sym_cmd_identifier_token3] = ACTIONS(2469), + [aux_sym_cmd_identifier_token4] = ACTIONS(2469), + [aux_sym_cmd_identifier_token5] = ACTIONS(2469), + [aux_sym_cmd_identifier_token6] = ACTIONS(2469), + [aux_sym_cmd_identifier_token7] = ACTIONS(2469), + [aux_sym_cmd_identifier_token8] = ACTIONS(2469), + [aux_sym_cmd_identifier_token9] = ACTIONS(2469), + [aux_sym_cmd_identifier_token10] = ACTIONS(2469), + [aux_sym_cmd_identifier_token11] = ACTIONS(2469), + [aux_sym_cmd_identifier_token12] = ACTIONS(2469), + [aux_sym_cmd_identifier_token13] = ACTIONS(2469), + [aux_sym_cmd_identifier_token14] = ACTIONS(2469), + [aux_sym_cmd_identifier_token15] = ACTIONS(2469), + [aux_sym_cmd_identifier_token16] = ACTIONS(2469), + [aux_sym_cmd_identifier_token17] = ACTIONS(2469), + [aux_sym_cmd_identifier_token18] = ACTIONS(2469), + [aux_sym_cmd_identifier_token19] = ACTIONS(2469), + [aux_sym_cmd_identifier_token20] = ACTIONS(2469), + [aux_sym_cmd_identifier_token21] = ACTIONS(2469), + [aux_sym_cmd_identifier_token22] = ACTIONS(2469), + [aux_sym_cmd_identifier_token23] = ACTIONS(2469), + [aux_sym_cmd_identifier_token24] = ACTIONS(2469), + [aux_sym_cmd_identifier_token25] = ACTIONS(2469), + [aux_sym_cmd_identifier_token26] = ACTIONS(2469), + [aux_sym_cmd_identifier_token27] = ACTIONS(2469), + [aux_sym_cmd_identifier_token28] = ACTIONS(2469), + [aux_sym_cmd_identifier_token29] = ACTIONS(2469), + [aux_sym_cmd_identifier_token30] = ACTIONS(2469), + [aux_sym_cmd_identifier_token31] = ACTIONS(2469), + [aux_sym_cmd_identifier_token32] = ACTIONS(2469), + [aux_sym_cmd_identifier_token33] = ACTIONS(2469), + [aux_sym_cmd_identifier_token34] = ACTIONS(2469), + [aux_sym_cmd_identifier_token35] = ACTIONS(2469), + [aux_sym_cmd_identifier_token36] = ACTIONS(2469), + [anon_sym_true] = ACTIONS(2469), + [anon_sym_false] = ACTIONS(2469), + [anon_sym_null] = ACTIONS(2469), + [aux_sym_cmd_identifier_token38] = ACTIONS(2469), + [aux_sym_cmd_identifier_token39] = ACTIONS(2469), + [aux_sym_cmd_identifier_token40] = ACTIONS(2469), + [anon_sym_def] = ACTIONS(2469), + [anon_sym_export_DASHenv] = ACTIONS(2469), + [anon_sym_extern] = ACTIONS(2469), + [anon_sym_module] = ACTIONS(2469), + [anon_sym_use] = ACTIONS(2469), + [anon_sym_LPAREN] = ACTIONS(2469), + [anon_sym_DOLLAR] = ACTIONS(2469), + [anon_sym_error] = ACTIONS(2469), + [anon_sym_list] = ACTIONS(2469), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_break] = ACTIONS(2469), + [anon_sym_continue] = ACTIONS(2469), + [anon_sym_for] = ACTIONS(2469), + [anon_sym_in] = ACTIONS(2469), + [anon_sym_loop] = ACTIONS(2469), + [anon_sym_make] = ACTIONS(2469), + [anon_sym_while] = ACTIONS(2469), + [anon_sym_do] = ACTIONS(2469), + [anon_sym_if] = ACTIONS(2469), + [anon_sym_else] = ACTIONS(2469), + [anon_sym_match] = ACTIONS(2469), + [anon_sym_RBRACE] = ACTIONS(2469), + [anon_sym_try] = ACTIONS(2469), + [anon_sym_catch] = ACTIONS(2469), + [anon_sym_return] = ACTIONS(2469), + [anon_sym_source] = ACTIONS(2469), + [anon_sym_source_DASHenv] = ACTIONS(2469), + [anon_sym_register] = ACTIONS(2469), + [anon_sym_hide] = ACTIONS(2469), + [anon_sym_hide_DASHenv] = ACTIONS(2469), + [anon_sym_overlay] = ACTIONS(2469), + [anon_sym_new] = ACTIONS(2469), + [anon_sym_as] = ACTIONS(2469), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2469), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2469), + [aux_sym__val_number_decimal_token1] = ACTIONS(2469), + [aux_sym__val_number_decimal_token2] = ACTIONS(2469), + [aux_sym__val_number_decimal_token3] = ACTIONS(2469), + [aux_sym__val_number_decimal_token4] = ACTIONS(2469), + [aux_sym__val_number_token1] = ACTIONS(2469), + [aux_sym__val_number_token2] = ACTIONS(2469), + [aux_sym__val_number_token3] = ACTIONS(2469), + [anon_sym_DQUOTE] = ACTIONS(2469), + [sym__str_single_quotes] = ACTIONS(2469), + [sym__str_back_ticks] = ACTIONS(2469), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2469), + [sym__entry_separator] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), [anon_sym_POUND] = ACTIONS(3), }, [570] = { [sym_comment] = STATE(570), - [aux_sym__multiple_types_repeat1] = STATE(527), - [anon_sym_export] = ACTIONS(2275), - [anon_sym_alias] = ACTIONS(2275), - [anon_sym_let] = ACTIONS(2275), - [anon_sym_let_DASHenv] = ACTIONS(2275), - [anon_sym_mut] = ACTIONS(2275), - [anon_sym_const] = ACTIONS(2275), - [aux_sym_cmd_identifier_token1] = ACTIONS(2275), - [aux_sym_cmd_identifier_token2] = ACTIONS(2275), - [aux_sym_cmd_identifier_token3] = ACTIONS(2275), - [aux_sym_cmd_identifier_token4] = ACTIONS(2275), - [aux_sym_cmd_identifier_token5] = ACTIONS(2275), - [aux_sym_cmd_identifier_token6] = ACTIONS(2275), - [aux_sym_cmd_identifier_token7] = ACTIONS(2275), - [aux_sym_cmd_identifier_token8] = ACTIONS(2275), - [aux_sym_cmd_identifier_token9] = ACTIONS(2275), - [aux_sym_cmd_identifier_token10] = ACTIONS(2275), - [aux_sym_cmd_identifier_token11] = ACTIONS(2275), - [aux_sym_cmd_identifier_token12] = ACTIONS(2275), - [aux_sym_cmd_identifier_token13] = ACTIONS(2275), - [aux_sym_cmd_identifier_token14] = ACTIONS(2275), - [aux_sym_cmd_identifier_token15] = ACTIONS(2275), - [aux_sym_cmd_identifier_token16] = ACTIONS(2275), - [aux_sym_cmd_identifier_token17] = ACTIONS(2275), - [aux_sym_cmd_identifier_token18] = ACTIONS(2275), - [aux_sym_cmd_identifier_token19] = ACTIONS(2275), - [aux_sym_cmd_identifier_token20] = ACTIONS(2275), - [aux_sym_cmd_identifier_token21] = ACTIONS(2275), - [aux_sym_cmd_identifier_token22] = ACTIONS(2275), - [aux_sym_cmd_identifier_token23] = ACTIONS(2275), - [aux_sym_cmd_identifier_token24] = ACTIONS(2275), - [aux_sym_cmd_identifier_token25] = ACTIONS(2275), - [aux_sym_cmd_identifier_token26] = ACTIONS(2275), - [aux_sym_cmd_identifier_token27] = ACTIONS(2275), - [aux_sym_cmd_identifier_token28] = ACTIONS(2275), - [aux_sym_cmd_identifier_token29] = ACTIONS(2275), - [aux_sym_cmd_identifier_token30] = ACTIONS(2275), - [aux_sym_cmd_identifier_token31] = ACTIONS(2275), - [aux_sym_cmd_identifier_token32] = ACTIONS(2275), - [aux_sym_cmd_identifier_token33] = ACTIONS(2275), - [aux_sym_cmd_identifier_token34] = ACTIONS(2275), - [aux_sym_cmd_identifier_token35] = ACTIONS(2275), - [aux_sym_cmd_identifier_token36] = ACTIONS(2275), - [anon_sym_true] = ACTIONS(2275), - [anon_sym_false] = ACTIONS(2275), - [anon_sym_null] = ACTIONS(2275), - [aux_sym_cmd_identifier_token38] = ACTIONS(2275), - [aux_sym_cmd_identifier_token39] = ACTIONS(2275), - [aux_sym_cmd_identifier_token40] = ACTIONS(2275), - [anon_sym_def] = ACTIONS(2275), - [anon_sym_export_DASHenv] = ACTIONS(2275), - [anon_sym_extern] = ACTIONS(2275), - [anon_sym_module] = ACTIONS(2275), - [anon_sym_use] = ACTIONS(2275), - [anon_sym_LPAREN] = ACTIONS(2275), - [anon_sym_DOLLAR] = ACTIONS(2275), - [anon_sym_error] = ACTIONS(2275), - [anon_sym_list] = ACTIONS(2275), - [anon_sym_DASH] = ACTIONS(2275), - [anon_sym_break] = ACTIONS(2275), - [anon_sym_continue] = ACTIONS(2275), - [anon_sym_for] = ACTIONS(2275), - [anon_sym_in] = ACTIONS(2275), - [anon_sym_loop] = ACTIONS(2275), - [anon_sym_make] = ACTIONS(2275), - [anon_sym_while] = ACTIONS(2275), - [anon_sym_do] = ACTIONS(2275), - [anon_sym_if] = ACTIONS(2275), - [anon_sym_else] = ACTIONS(2275), - [anon_sym_match] = ACTIONS(2275), - [anon_sym_try] = ACTIONS(2275), - [anon_sym_catch] = ACTIONS(2275), - [anon_sym_return] = ACTIONS(2275), - [anon_sym_source] = ACTIONS(2275), - [anon_sym_source_DASHenv] = ACTIONS(2275), - [anon_sym_register] = ACTIONS(2275), - [anon_sym_hide] = ACTIONS(2275), - [anon_sym_hide_DASHenv] = ACTIONS(2275), - [anon_sym_overlay] = ACTIONS(2275), - [anon_sym_new] = ACTIONS(2275), - [anon_sym_as] = ACTIONS(2275), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2275), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2275), - [aux_sym__val_number_decimal_token1] = ACTIONS(2275), - [aux_sym__val_number_decimal_token2] = ACTIONS(2275), - [aux_sym__val_number_decimal_token3] = ACTIONS(2275), - [aux_sym__val_number_decimal_token4] = ACTIONS(2275), - [aux_sym__val_number_token1] = ACTIONS(2275), - [aux_sym__val_number_token2] = ACTIONS(2275), - [aux_sym__val_number_token3] = ACTIONS(2275), - [anon_sym_DQUOTE] = ACTIONS(2275), - [sym__str_single_quotes] = ACTIONS(2275), - [sym__str_back_ticks] = ACTIONS(2275), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2275), - [sym__entry_separator] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2275), + [anon_sym_export] = ACTIONS(2473), + [anon_sym_alias] = ACTIONS(2473), + [anon_sym_let] = ACTIONS(2473), + [anon_sym_let_DASHenv] = ACTIONS(2473), + [anon_sym_mut] = ACTIONS(2473), + [anon_sym_const] = ACTIONS(2473), + [aux_sym_cmd_identifier_token1] = ACTIONS(2473), + [aux_sym_cmd_identifier_token2] = ACTIONS(2473), + [aux_sym_cmd_identifier_token3] = ACTIONS(2473), + [aux_sym_cmd_identifier_token4] = ACTIONS(2473), + [aux_sym_cmd_identifier_token5] = ACTIONS(2473), + [aux_sym_cmd_identifier_token6] = ACTIONS(2473), + [aux_sym_cmd_identifier_token7] = ACTIONS(2473), + [aux_sym_cmd_identifier_token8] = ACTIONS(2473), + [aux_sym_cmd_identifier_token9] = ACTIONS(2473), + [aux_sym_cmd_identifier_token10] = ACTIONS(2473), + [aux_sym_cmd_identifier_token11] = ACTIONS(2473), + [aux_sym_cmd_identifier_token12] = ACTIONS(2473), + [aux_sym_cmd_identifier_token13] = ACTIONS(2473), + [aux_sym_cmd_identifier_token14] = ACTIONS(2473), + [aux_sym_cmd_identifier_token15] = ACTIONS(2473), + [aux_sym_cmd_identifier_token16] = ACTIONS(2473), + [aux_sym_cmd_identifier_token17] = ACTIONS(2473), + [aux_sym_cmd_identifier_token18] = ACTIONS(2473), + [aux_sym_cmd_identifier_token19] = ACTIONS(2473), + [aux_sym_cmd_identifier_token20] = ACTIONS(2473), + [aux_sym_cmd_identifier_token21] = ACTIONS(2473), + [aux_sym_cmd_identifier_token22] = ACTIONS(2473), + [aux_sym_cmd_identifier_token23] = ACTIONS(2473), + [aux_sym_cmd_identifier_token24] = ACTIONS(2473), + [aux_sym_cmd_identifier_token25] = ACTIONS(2473), + [aux_sym_cmd_identifier_token26] = ACTIONS(2473), + [aux_sym_cmd_identifier_token27] = ACTIONS(2473), + [aux_sym_cmd_identifier_token28] = ACTIONS(2473), + [aux_sym_cmd_identifier_token29] = ACTIONS(2473), + [aux_sym_cmd_identifier_token30] = ACTIONS(2473), + [aux_sym_cmd_identifier_token31] = ACTIONS(2473), + [aux_sym_cmd_identifier_token32] = ACTIONS(2473), + [aux_sym_cmd_identifier_token33] = ACTIONS(2473), + [aux_sym_cmd_identifier_token34] = ACTIONS(2473), + [aux_sym_cmd_identifier_token35] = ACTIONS(2473), + [aux_sym_cmd_identifier_token36] = ACTIONS(2473), + [anon_sym_true] = ACTIONS(2473), + [anon_sym_false] = ACTIONS(2473), + [anon_sym_null] = ACTIONS(2473), + [aux_sym_cmd_identifier_token38] = ACTIONS(2473), + [aux_sym_cmd_identifier_token39] = ACTIONS(2473), + [aux_sym_cmd_identifier_token40] = ACTIONS(2473), + [anon_sym_def] = ACTIONS(2473), + [anon_sym_export_DASHenv] = ACTIONS(2473), + [anon_sym_extern] = ACTIONS(2473), + [anon_sym_module] = ACTIONS(2473), + [anon_sym_use] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2473), + [anon_sym_DOLLAR] = ACTIONS(2473), + [anon_sym_error] = ACTIONS(2473), + [anon_sym_list] = ACTIONS(2473), + [anon_sym_DASH] = ACTIONS(2473), + [anon_sym_break] = ACTIONS(2473), + [anon_sym_continue] = ACTIONS(2473), + [anon_sym_for] = ACTIONS(2473), + [anon_sym_in] = ACTIONS(2473), + [anon_sym_loop] = ACTIONS(2473), + [anon_sym_make] = ACTIONS(2473), + [anon_sym_while] = ACTIONS(2473), + [anon_sym_do] = ACTIONS(2473), + [anon_sym_if] = ACTIONS(2473), + [anon_sym_else] = ACTIONS(2473), + [anon_sym_match] = ACTIONS(2473), + [anon_sym_RBRACE] = ACTIONS(2473), + [anon_sym_try] = ACTIONS(2473), + [anon_sym_catch] = ACTIONS(2473), + [anon_sym_return] = ACTIONS(2473), + [anon_sym_source] = ACTIONS(2473), + [anon_sym_source_DASHenv] = ACTIONS(2473), + [anon_sym_register] = ACTIONS(2473), + [anon_sym_hide] = ACTIONS(2473), + [anon_sym_hide_DASHenv] = ACTIONS(2473), + [anon_sym_overlay] = ACTIONS(2473), + [anon_sym_new] = ACTIONS(2473), + [anon_sym_as] = ACTIONS(2473), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2473), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2473), + [aux_sym__val_number_decimal_token1] = ACTIONS(2473), + [aux_sym__val_number_decimal_token2] = ACTIONS(2473), + [aux_sym__val_number_decimal_token3] = ACTIONS(2473), + [aux_sym__val_number_decimal_token4] = ACTIONS(2473), + [aux_sym__val_number_token1] = ACTIONS(2473), + [aux_sym__val_number_token2] = ACTIONS(2473), + [aux_sym__val_number_token3] = ACTIONS(2473), + [anon_sym_DQUOTE] = ACTIONS(2473), + [sym__str_single_quotes] = ACTIONS(2473), + [sym__str_back_ticks] = ACTIONS(2473), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2473), + [sym__entry_separator] = ACTIONS(2475), + [anon_sym_PLUS] = ACTIONS(2473), [anon_sym_POUND] = ACTIONS(3), }, [571] = { [sym_comment] = STATE(571), - [anon_sym_export] = ACTIONS(1935), - [anon_sym_alias] = ACTIONS(1935), - [anon_sym_let] = ACTIONS(1935), - [anon_sym_let_DASHenv] = ACTIONS(1935), - [anon_sym_mut] = ACTIONS(1935), - [anon_sym_const] = ACTIONS(1935), - [aux_sym_cmd_identifier_token1] = ACTIONS(1935), - [aux_sym_cmd_identifier_token2] = ACTIONS(1935), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [aux_sym_cmd_identifier_token6] = ACTIONS(1935), - [aux_sym_cmd_identifier_token7] = ACTIONS(1935), - [aux_sym_cmd_identifier_token8] = ACTIONS(1935), - [aux_sym_cmd_identifier_token9] = ACTIONS(1935), - [aux_sym_cmd_identifier_token10] = ACTIONS(1935), - [aux_sym_cmd_identifier_token11] = ACTIONS(1935), - [aux_sym_cmd_identifier_token12] = ACTIONS(1935), - [aux_sym_cmd_identifier_token13] = ACTIONS(1935), - [aux_sym_cmd_identifier_token14] = ACTIONS(1935), - [aux_sym_cmd_identifier_token15] = ACTIONS(1935), - [aux_sym_cmd_identifier_token16] = ACTIONS(1935), - [aux_sym_cmd_identifier_token17] = ACTIONS(1935), - [aux_sym_cmd_identifier_token18] = ACTIONS(1935), - [aux_sym_cmd_identifier_token19] = ACTIONS(1935), - [aux_sym_cmd_identifier_token20] = ACTIONS(1935), - [aux_sym_cmd_identifier_token21] = ACTIONS(1935), - [aux_sym_cmd_identifier_token22] = ACTIONS(1935), - [aux_sym_cmd_identifier_token23] = ACTIONS(1935), - [aux_sym_cmd_identifier_token24] = ACTIONS(1935), - [aux_sym_cmd_identifier_token25] = ACTIONS(1935), - [aux_sym_cmd_identifier_token26] = ACTIONS(1935), - [aux_sym_cmd_identifier_token27] = ACTIONS(1935), - [aux_sym_cmd_identifier_token28] = ACTIONS(1935), - [aux_sym_cmd_identifier_token29] = ACTIONS(1935), - [aux_sym_cmd_identifier_token30] = ACTIONS(1935), - [aux_sym_cmd_identifier_token31] = ACTIONS(1935), - [aux_sym_cmd_identifier_token32] = ACTIONS(1935), - [aux_sym_cmd_identifier_token33] = ACTIONS(1935), - [aux_sym_cmd_identifier_token34] = ACTIONS(1935), - [aux_sym_cmd_identifier_token35] = ACTIONS(1935), - [aux_sym_cmd_identifier_token36] = ACTIONS(1935), - [anon_sym_true] = ACTIONS(1935), - [anon_sym_false] = ACTIONS(1935), - [anon_sym_null] = ACTIONS(1935), - [aux_sym_cmd_identifier_token38] = ACTIONS(1935), - [aux_sym_cmd_identifier_token39] = ACTIONS(1935), - [aux_sym_cmd_identifier_token40] = ACTIONS(1935), - [anon_sym_def] = ACTIONS(1935), - [anon_sym_export_DASHenv] = ACTIONS(1935), - [anon_sym_extern] = ACTIONS(1935), - [anon_sym_module] = ACTIONS(1935), - [anon_sym_use] = ACTIONS(1935), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_DOLLAR] = ACTIONS(1935), - [anon_sym_error] = ACTIONS(1935), - [anon_sym_list] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_break] = ACTIONS(1935), - [anon_sym_continue] = ACTIONS(1935), - [anon_sym_for] = ACTIONS(1935), - [anon_sym_in] = ACTIONS(1935), - [anon_sym_loop] = ACTIONS(1935), - [anon_sym_make] = ACTIONS(1935), - [anon_sym_while] = ACTIONS(1935), - [anon_sym_do] = ACTIONS(1935), - [anon_sym_if] = ACTIONS(1935), - [anon_sym_else] = ACTIONS(1935), - [anon_sym_match] = ACTIONS(1935), - [anon_sym_RBRACE] = ACTIONS(1935), - [anon_sym_try] = ACTIONS(1935), - [anon_sym_catch] = ACTIONS(1935), - [anon_sym_return] = ACTIONS(1935), - [anon_sym_source] = ACTIONS(1935), - [anon_sym_source_DASHenv] = ACTIONS(1935), - [anon_sym_register] = ACTIONS(1935), - [anon_sym_hide] = ACTIONS(1935), - [anon_sym_hide_DASHenv] = ACTIONS(1935), - [anon_sym_overlay] = ACTIONS(1935), - [anon_sym_new] = ACTIONS(1935), - [anon_sym_as] = ACTIONS(1935), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1935), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1935), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1935), - [aux_sym__val_number_decimal_token3] = ACTIONS(1935), - [aux_sym__val_number_decimal_token4] = ACTIONS(1935), - [aux_sym__val_number_token1] = ACTIONS(1935), - [aux_sym__val_number_token2] = ACTIONS(1935), - [aux_sym__val_number_token3] = ACTIONS(1935), - [anon_sym_DQUOTE] = ACTIONS(1935), - [sym__str_single_quotes] = ACTIONS(1935), - [sym__str_back_ticks] = ACTIONS(1935), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1935), - [sym__entry_separator] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(1935), + [anon_sym_export] = ACTIONS(2477), + [anon_sym_alias] = ACTIONS(2477), + [anon_sym_let] = ACTIONS(2477), + [anon_sym_let_DASHenv] = ACTIONS(2477), + [anon_sym_mut] = ACTIONS(2477), + [anon_sym_const] = ACTIONS(2477), + [aux_sym_cmd_identifier_token1] = ACTIONS(2477), + [aux_sym_cmd_identifier_token2] = ACTIONS(2477), + [aux_sym_cmd_identifier_token3] = ACTIONS(2477), + [aux_sym_cmd_identifier_token4] = ACTIONS(2477), + [aux_sym_cmd_identifier_token5] = ACTIONS(2477), + [aux_sym_cmd_identifier_token6] = ACTIONS(2477), + [aux_sym_cmd_identifier_token7] = ACTIONS(2477), + [aux_sym_cmd_identifier_token8] = ACTIONS(2477), + [aux_sym_cmd_identifier_token9] = ACTIONS(2477), + [aux_sym_cmd_identifier_token10] = ACTIONS(2477), + [aux_sym_cmd_identifier_token11] = ACTIONS(2477), + [aux_sym_cmd_identifier_token12] = ACTIONS(2477), + [aux_sym_cmd_identifier_token13] = ACTIONS(2477), + [aux_sym_cmd_identifier_token14] = ACTIONS(2477), + [aux_sym_cmd_identifier_token15] = ACTIONS(2477), + [aux_sym_cmd_identifier_token16] = ACTIONS(2477), + [aux_sym_cmd_identifier_token17] = ACTIONS(2477), + [aux_sym_cmd_identifier_token18] = ACTIONS(2477), + [aux_sym_cmd_identifier_token19] = ACTIONS(2477), + [aux_sym_cmd_identifier_token20] = ACTIONS(2477), + [aux_sym_cmd_identifier_token21] = ACTIONS(2477), + [aux_sym_cmd_identifier_token22] = ACTIONS(2477), + [aux_sym_cmd_identifier_token23] = ACTIONS(2477), + [aux_sym_cmd_identifier_token24] = ACTIONS(2477), + [aux_sym_cmd_identifier_token25] = ACTIONS(2477), + [aux_sym_cmd_identifier_token26] = ACTIONS(2477), + [aux_sym_cmd_identifier_token27] = ACTIONS(2477), + [aux_sym_cmd_identifier_token28] = ACTIONS(2477), + [aux_sym_cmd_identifier_token29] = ACTIONS(2477), + [aux_sym_cmd_identifier_token30] = ACTIONS(2477), + [aux_sym_cmd_identifier_token31] = ACTIONS(2477), + [aux_sym_cmd_identifier_token32] = ACTIONS(2477), + [aux_sym_cmd_identifier_token33] = ACTIONS(2477), + [aux_sym_cmd_identifier_token34] = ACTIONS(2477), + [aux_sym_cmd_identifier_token35] = ACTIONS(2477), + [aux_sym_cmd_identifier_token36] = ACTIONS(2477), + [anon_sym_true] = ACTIONS(2477), + [anon_sym_false] = ACTIONS(2477), + [anon_sym_null] = ACTIONS(2477), + [aux_sym_cmd_identifier_token38] = ACTIONS(2477), + [aux_sym_cmd_identifier_token39] = ACTIONS(2477), + [aux_sym_cmd_identifier_token40] = ACTIONS(2477), + [anon_sym_def] = ACTIONS(2477), + [anon_sym_export_DASHenv] = ACTIONS(2477), + [anon_sym_extern] = ACTIONS(2477), + [anon_sym_module] = ACTIONS(2477), + [anon_sym_use] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_DOLLAR] = ACTIONS(2477), + [anon_sym_error] = ACTIONS(2477), + [anon_sym_list] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2477), + [anon_sym_break] = ACTIONS(2477), + [anon_sym_continue] = ACTIONS(2477), + [anon_sym_for] = ACTIONS(2477), + [anon_sym_in] = ACTIONS(2477), + [anon_sym_loop] = ACTIONS(2477), + [anon_sym_make] = ACTIONS(2477), + [anon_sym_while] = ACTIONS(2477), + [anon_sym_do] = ACTIONS(2477), + [anon_sym_if] = ACTIONS(2477), + [anon_sym_else] = ACTIONS(2477), + [anon_sym_match] = ACTIONS(2477), + [anon_sym_RBRACE] = ACTIONS(2477), + [anon_sym_try] = ACTIONS(2477), + [anon_sym_catch] = ACTIONS(2477), + [anon_sym_return] = ACTIONS(2477), + [anon_sym_source] = ACTIONS(2477), + [anon_sym_source_DASHenv] = ACTIONS(2477), + [anon_sym_register] = ACTIONS(2477), + [anon_sym_hide] = ACTIONS(2477), + [anon_sym_hide_DASHenv] = ACTIONS(2477), + [anon_sym_overlay] = ACTIONS(2477), + [anon_sym_new] = ACTIONS(2477), + [anon_sym_as] = ACTIONS(2477), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2477), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2477), + [aux_sym__val_number_decimal_token1] = ACTIONS(2477), + [aux_sym__val_number_decimal_token2] = ACTIONS(2477), + [aux_sym__val_number_decimal_token3] = ACTIONS(2477), + [aux_sym__val_number_decimal_token4] = ACTIONS(2477), + [aux_sym__val_number_token1] = ACTIONS(2477), + [aux_sym__val_number_token2] = ACTIONS(2477), + [aux_sym__val_number_token3] = ACTIONS(2477), + [anon_sym_DQUOTE] = ACTIONS(2477), + [sym__str_single_quotes] = ACTIONS(2477), + [sym__str_back_ticks] = ACTIONS(2477), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2477), + [sym__entry_separator] = ACTIONS(2479), + [anon_sym_PLUS] = ACTIONS(2477), [anon_sym_POUND] = ACTIONS(3), }, [572] = { [sym_comment] = STATE(572), - [anon_sym_export] = ACTIONS(2401), - [anon_sym_alias] = ACTIONS(2401), - [anon_sym_let] = ACTIONS(2401), - [anon_sym_let_DASHenv] = ACTIONS(2401), - [anon_sym_mut] = ACTIONS(2401), - [anon_sym_const] = ACTIONS(2401), - [aux_sym_cmd_identifier_token1] = ACTIONS(2401), - [aux_sym_cmd_identifier_token2] = ACTIONS(2401), - [aux_sym_cmd_identifier_token3] = ACTIONS(2401), - [aux_sym_cmd_identifier_token4] = ACTIONS(2401), - [aux_sym_cmd_identifier_token5] = ACTIONS(2401), - [aux_sym_cmd_identifier_token6] = ACTIONS(2401), - [aux_sym_cmd_identifier_token7] = ACTIONS(2401), - [aux_sym_cmd_identifier_token8] = ACTIONS(2401), - [aux_sym_cmd_identifier_token9] = ACTIONS(2401), - [aux_sym_cmd_identifier_token10] = ACTIONS(2401), - [aux_sym_cmd_identifier_token11] = ACTIONS(2401), - [aux_sym_cmd_identifier_token12] = ACTIONS(2401), - [aux_sym_cmd_identifier_token13] = ACTIONS(2401), - [aux_sym_cmd_identifier_token14] = ACTIONS(2401), - [aux_sym_cmd_identifier_token15] = ACTIONS(2401), - [aux_sym_cmd_identifier_token16] = ACTIONS(2401), - [aux_sym_cmd_identifier_token17] = ACTIONS(2401), - [aux_sym_cmd_identifier_token18] = ACTIONS(2401), - [aux_sym_cmd_identifier_token19] = ACTIONS(2401), - [aux_sym_cmd_identifier_token20] = ACTIONS(2401), - [aux_sym_cmd_identifier_token21] = ACTIONS(2401), - [aux_sym_cmd_identifier_token22] = ACTIONS(2401), - [aux_sym_cmd_identifier_token23] = ACTIONS(2401), - [aux_sym_cmd_identifier_token24] = ACTIONS(2401), - [aux_sym_cmd_identifier_token25] = ACTIONS(2401), - [aux_sym_cmd_identifier_token26] = ACTIONS(2401), - [aux_sym_cmd_identifier_token27] = ACTIONS(2401), - [aux_sym_cmd_identifier_token28] = ACTIONS(2401), - [aux_sym_cmd_identifier_token29] = ACTIONS(2401), - [aux_sym_cmd_identifier_token30] = ACTIONS(2401), - [aux_sym_cmd_identifier_token31] = ACTIONS(2401), - [aux_sym_cmd_identifier_token32] = ACTIONS(2401), - [aux_sym_cmd_identifier_token33] = ACTIONS(2401), - [aux_sym_cmd_identifier_token34] = ACTIONS(2401), - [aux_sym_cmd_identifier_token35] = ACTIONS(2401), - [aux_sym_cmd_identifier_token36] = ACTIONS(2401), - [anon_sym_true] = ACTIONS(2401), - [anon_sym_false] = ACTIONS(2401), - [anon_sym_null] = ACTIONS(2401), - [aux_sym_cmd_identifier_token38] = ACTIONS(2401), - [aux_sym_cmd_identifier_token39] = ACTIONS(2401), - [aux_sym_cmd_identifier_token40] = ACTIONS(2401), - [anon_sym_def] = ACTIONS(2401), - [anon_sym_export_DASHenv] = ACTIONS(2401), - [anon_sym_extern] = ACTIONS(2401), - [anon_sym_module] = ACTIONS(2401), - [anon_sym_use] = ACTIONS(2401), - [anon_sym_LPAREN] = ACTIONS(2401), - [anon_sym_DOLLAR] = ACTIONS(2401), - [anon_sym_error] = ACTIONS(2401), - [anon_sym_list] = ACTIONS(2401), - [anon_sym_DASH] = ACTIONS(2401), - [anon_sym_break] = ACTIONS(2401), - [anon_sym_continue] = ACTIONS(2401), - [anon_sym_for] = ACTIONS(2401), - [anon_sym_in] = ACTIONS(2401), - [anon_sym_loop] = ACTIONS(2401), - [anon_sym_make] = ACTIONS(2401), - [anon_sym_while] = ACTIONS(2401), - [anon_sym_do] = ACTIONS(2401), - [anon_sym_if] = ACTIONS(2401), - [anon_sym_else] = ACTIONS(2401), - [anon_sym_match] = ACTIONS(2401), - [anon_sym_RBRACE] = ACTIONS(2401), - [anon_sym_try] = ACTIONS(2401), - [anon_sym_catch] = ACTIONS(2401), - [anon_sym_return] = ACTIONS(2401), - [anon_sym_source] = ACTIONS(2401), - [anon_sym_source_DASHenv] = ACTIONS(2401), - [anon_sym_register] = ACTIONS(2401), - [anon_sym_hide] = ACTIONS(2401), - [anon_sym_hide_DASHenv] = ACTIONS(2401), - [anon_sym_overlay] = ACTIONS(2401), - [anon_sym_new] = ACTIONS(2401), - [anon_sym_as] = ACTIONS(2401), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2401), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2401), - [aux_sym__val_number_decimal_token1] = ACTIONS(2401), - [aux_sym__val_number_decimal_token2] = ACTIONS(2401), - [aux_sym__val_number_decimal_token3] = ACTIONS(2401), - [aux_sym__val_number_decimal_token4] = ACTIONS(2401), - [aux_sym__val_number_token1] = ACTIONS(2401), - [aux_sym__val_number_token2] = ACTIONS(2401), - [aux_sym__val_number_token3] = ACTIONS(2401), - [anon_sym_DQUOTE] = ACTIONS(2401), - [sym__str_single_quotes] = ACTIONS(2401), - [sym__str_back_ticks] = ACTIONS(2401), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2401), - [sym__entry_separator] = ACTIONS(2403), - [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_export] = ACTIONS(2481), + [anon_sym_alias] = ACTIONS(2481), + [anon_sym_let] = ACTIONS(2481), + [anon_sym_let_DASHenv] = ACTIONS(2481), + [anon_sym_mut] = ACTIONS(2481), + [anon_sym_const] = ACTIONS(2481), + [aux_sym_cmd_identifier_token1] = ACTIONS(2481), + [aux_sym_cmd_identifier_token2] = ACTIONS(2481), + [aux_sym_cmd_identifier_token3] = ACTIONS(2481), + [aux_sym_cmd_identifier_token4] = ACTIONS(2481), + [aux_sym_cmd_identifier_token5] = ACTIONS(2481), + [aux_sym_cmd_identifier_token6] = ACTIONS(2481), + [aux_sym_cmd_identifier_token7] = ACTIONS(2481), + [aux_sym_cmd_identifier_token8] = ACTIONS(2481), + [aux_sym_cmd_identifier_token9] = ACTIONS(2481), + [aux_sym_cmd_identifier_token10] = ACTIONS(2481), + [aux_sym_cmd_identifier_token11] = ACTIONS(2481), + [aux_sym_cmd_identifier_token12] = ACTIONS(2481), + [aux_sym_cmd_identifier_token13] = ACTIONS(2481), + [aux_sym_cmd_identifier_token14] = ACTIONS(2481), + [aux_sym_cmd_identifier_token15] = ACTIONS(2481), + [aux_sym_cmd_identifier_token16] = ACTIONS(2481), + [aux_sym_cmd_identifier_token17] = ACTIONS(2481), + [aux_sym_cmd_identifier_token18] = ACTIONS(2481), + [aux_sym_cmd_identifier_token19] = ACTIONS(2481), + [aux_sym_cmd_identifier_token20] = ACTIONS(2481), + [aux_sym_cmd_identifier_token21] = ACTIONS(2481), + [aux_sym_cmd_identifier_token22] = ACTIONS(2481), + [aux_sym_cmd_identifier_token23] = ACTIONS(2481), + [aux_sym_cmd_identifier_token24] = ACTIONS(2481), + [aux_sym_cmd_identifier_token25] = ACTIONS(2481), + [aux_sym_cmd_identifier_token26] = ACTIONS(2481), + [aux_sym_cmd_identifier_token27] = ACTIONS(2481), + [aux_sym_cmd_identifier_token28] = ACTIONS(2481), + [aux_sym_cmd_identifier_token29] = ACTIONS(2481), + [aux_sym_cmd_identifier_token30] = ACTIONS(2481), + [aux_sym_cmd_identifier_token31] = ACTIONS(2481), + [aux_sym_cmd_identifier_token32] = ACTIONS(2481), + [aux_sym_cmd_identifier_token33] = ACTIONS(2481), + [aux_sym_cmd_identifier_token34] = ACTIONS(2481), + [aux_sym_cmd_identifier_token35] = ACTIONS(2481), + [aux_sym_cmd_identifier_token36] = ACTIONS(2481), + [anon_sym_true] = ACTIONS(2481), + [anon_sym_false] = ACTIONS(2481), + [anon_sym_null] = ACTIONS(2481), + [aux_sym_cmd_identifier_token38] = ACTIONS(2481), + [aux_sym_cmd_identifier_token39] = ACTIONS(2481), + [aux_sym_cmd_identifier_token40] = ACTIONS(2481), + [anon_sym_def] = ACTIONS(2481), + [anon_sym_export_DASHenv] = ACTIONS(2481), + [anon_sym_extern] = ACTIONS(2481), + [anon_sym_module] = ACTIONS(2481), + [anon_sym_use] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2481), + [anon_sym_DOLLAR] = ACTIONS(2481), + [anon_sym_error] = ACTIONS(2481), + [anon_sym_list] = ACTIONS(2481), + [anon_sym_DASH] = ACTIONS(2481), + [anon_sym_break] = ACTIONS(2481), + [anon_sym_continue] = ACTIONS(2481), + [anon_sym_for] = ACTIONS(2481), + [anon_sym_in] = ACTIONS(2481), + [anon_sym_loop] = ACTIONS(2481), + [anon_sym_make] = ACTIONS(2481), + [anon_sym_while] = ACTIONS(2481), + [anon_sym_do] = ACTIONS(2481), + [anon_sym_if] = ACTIONS(2481), + [anon_sym_else] = ACTIONS(2481), + [anon_sym_match] = ACTIONS(2481), + [anon_sym_RBRACE] = ACTIONS(2481), + [anon_sym_try] = ACTIONS(2481), + [anon_sym_catch] = ACTIONS(2481), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_source] = ACTIONS(2481), + [anon_sym_source_DASHenv] = ACTIONS(2481), + [anon_sym_register] = ACTIONS(2481), + [anon_sym_hide] = ACTIONS(2481), + [anon_sym_hide_DASHenv] = ACTIONS(2481), + [anon_sym_overlay] = ACTIONS(2481), + [anon_sym_new] = ACTIONS(2481), + [anon_sym_as] = ACTIONS(2481), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2481), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2481), + [aux_sym__val_number_decimal_token1] = ACTIONS(2481), + [aux_sym__val_number_decimal_token2] = ACTIONS(2481), + [aux_sym__val_number_decimal_token3] = ACTIONS(2481), + [aux_sym__val_number_decimal_token4] = ACTIONS(2481), + [aux_sym__val_number_token1] = ACTIONS(2481), + [aux_sym__val_number_token2] = ACTIONS(2481), + [aux_sym__val_number_token3] = ACTIONS(2481), + [anon_sym_DQUOTE] = ACTIONS(2481), + [sym__str_single_quotes] = ACTIONS(2481), + [sym__str_back_ticks] = ACTIONS(2481), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2481), + [sym__entry_separator] = ACTIONS(2483), + [anon_sym_PLUS] = ACTIONS(2481), [anon_sym_POUND] = ACTIONS(3), }, [573] = { [sym_comment] = STATE(573), - [anon_sym_export] = ACTIONS(2066), - [anon_sym_alias] = ACTIONS(2066), - [anon_sym_let] = ACTIONS(2066), - [anon_sym_let_DASHenv] = ACTIONS(2066), - [anon_sym_mut] = ACTIONS(2066), - [anon_sym_const] = ACTIONS(2066), - [aux_sym_cmd_identifier_token1] = ACTIONS(2066), - [aux_sym_cmd_identifier_token2] = ACTIONS(2066), - [aux_sym_cmd_identifier_token3] = ACTIONS(2066), - [aux_sym_cmd_identifier_token4] = ACTIONS(2066), - [aux_sym_cmd_identifier_token5] = ACTIONS(2066), - [aux_sym_cmd_identifier_token6] = ACTIONS(2066), - [aux_sym_cmd_identifier_token7] = ACTIONS(2066), - [aux_sym_cmd_identifier_token8] = ACTIONS(2066), - [aux_sym_cmd_identifier_token9] = ACTIONS(2066), - [aux_sym_cmd_identifier_token10] = ACTIONS(2066), - [aux_sym_cmd_identifier_token11] = ACTIONS(2066), - [aux_sym_cmd_identifier_token12] = ACTIONS(2066), - [aux_sym_cmd_identifier_token13] = ACTIONS(2066), - [aux_sym_cmd_identifier_token14] = ACTIONS(2066), - [aux_sym_cmd_identifier_token15] = ACTIONS(2066), - [aux_sym_cmd_identifier_token16] = ACTIONS(2066), - [aux_sym_cmd_identifier_token17] = ACTIONS(2066), - [aux_sym_cmd_identifier_token18] = ACTIONS(2066), - [aux_sym_cmd_identifier_token19] = ACTIONS(2066), - [aux_sym_cmd_identifier_token20] = ACTIONS(2066), - [aux_sym_cmd_identifier_token21] = ACTIONS(2066), - [aux_sym_cmd_identifier_token22] = ACTIONS(2066), - [aux_sym_cmd_identifier_token23] = ACTIONS(2066), - [aux_sym_cmd_identifier_token24] = ACTIONS(2066), - [aux_sym_cmd_identifier_token25] = ACTIONS(2066), - [aux_sym_cmd_identifier_token26] = ACTIONS(2066), - [aux_sym_cmd_identifier_token27] = ACTIONS(2066), - [aux_sym_cmd_identifier_token28] = ACTIONS(2066), - [aux_sym_cmd_identifier_token29] = ACTIONS(2066), - [aux_sym_cmd_identifier_token30] = ACTIONS(2066), - [aux_sym_cmd_identifier_token31] = ACTIONS(2066), - [aux_sym_cmd_identifier_token32] = ACTIONS(2066), - [aux_sym_cmd_identifier_token33] = ACTIONS(2066), - [aux_sym_cmd_identifier_token34] = ACTIONS(2066), - [aux_sym_cmd_identifier_token35] = ACTIONS(2066), - [aux_sym_cmd_identifier_token36] = ACTIONS(2066), - [anon_sym_true] = ACTIONS(2066), - [anon_sym_false] = ACTIONS(2066), - [anon_sym_null] = ACTIONS(2066), - [aux_sym_cmd_identifier_token38] = ACTIONS(2066), - [aux_sym_cmd_identifier_token39] = ACTIONS(2066), - [aux_sym_cmd_identifier_token40] = ACTIONS(2066), - [anon_sym_def] = ACTIONS(2066), - [anon_sym_export_DASHenv] = ACTIONS(2066), - [anon_sym_extern] = ACTIONS(2066), - [anon_sym_module] = ACTIONS(2066), - [anon_sym_use] = ACTIONS(2066), - [anon_sym_LPAREN] = ACTIONS(2066), - [anon_sym_DOLLAR] = ACTIONS(2066), - [anon_sym_error] = ACTIONS(2066), - [anon_sym_list] = ACTIONS(2066), - [anon_sym_DASH] = ACTIONS(2066), - [anon_sym_break] = ACTIONS(2066), - [anon_sym_continue] = ACTIONS(2066), - [anon_sym_for] = ACTIONS(2066), - [anon_sym_in] = ACTIONS(2066), - [anon_sym_loop] = ACTIONS(2066), - [anon_sym_make] = ACTIONS(2066), - [anon_sym_while] = ACTIONS(2066), - [anon_sym_do] = ACTIONS(2066), - [anon_sym_if] = ACTIONS(2066), - [anon_sym_else] = ACTIONS(2066), - [anon_sym_match] = ACTIONS(2066), - [anon_sym_RBRACE] = ACTIONS(2066), - [anon_sym_try] = ACTIONS(2066), - [anon_sym_catch] = ACTIONS(2066), - [anon_sym_return] = ACTIONS(2066), - [anon_sym_source] = ACTIONS(2066), - [anon_sym_source_DASHenv] = ACTIONS(2066), - [anon_sym_register] = ACTIONS(2066), - [anon_sym_hide] = ACTIONS(2066), - [anon_sym_hide_DASHenv] = ACTIONS(2066), - [anon_sym_overlay] = ACTIONS(2066), - [anon_sym_new] = ACTIONS(2066), - [anon_sym_as] = ACTIONS(2066), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2066), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2066), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2066), - [aux_sym__val_number_decimal_token3] = ACTIONS(2066), - [aux_sym__val_number_decimal_token4] = ACTIONS(2066), - [aux_sym__val_number_token1] = ACTIONS(2066), - [aux_sym__val_number_token2] = ACTIONS(2066), - [aux_sym__val_number_token3] = ACTIONS(2066), - [anon_sym_DQUOTE] = ACTIONS(2066), - [sym__str_single_quotes] = ACTIONS(2066), - [sym__str_back_ticks] = ACTIONS(2066), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2066), - [sym__entry_separator] = ACTIONS(2072), - [anon_sym_PLUS] = ACTIONS(2066), + [anon_sym_export] = ACTIONS(2485), + [anon_sym_alias] = ACTIONS(2485), + [anon_sym_let] = ACTIONS(2485), + [anon_sym_let_DASHenv] = ACTIONS(2485), + [anon_sym_mut] = ACTIONS(2485), + [anon_sym_const] = ACTIONS(2485), + [aux_sym_cmd_identifier_token1] = ACTIONS(2485), + [aux_sym_cmd_identifier_token2] = ACTIONS(2485), + [aux_sym_cmd_identifier_token3] = ACTIONS(2485), + [aux_sym_cmd_identifier_token4] = ACTIONS(2485), + [aux_sym_cmd_identifier_token5] = ACTIONS(2485), + [aux_sym_cmd_identifier_token6] = ACTIONS(2485), + [aux_sym_cmd_identifier_token7] = ACTIONS(2485), + [aux_sym_cmd_identifier_token8] = ACTIONS(2485), + [aux_sym_cmd_identifier_token9] = ACTIONS(2485), + [aux_sym_cmd_identifier_token10] = ACTIONS(2485), + [aux_sym_cmd_identifier_token11] = ACTIONS(2485), + [aux_sym_cmd_identifier_token12] = ACTIONS(2485), + [aux_sym_cmd_identifier_token13] = ACTIONS(2485), + [aux_sym_cmd_identifier_token14] = ACTIONS(2485), + [aux_sym_cmd_identifier_token15] = ACTIONS(2485), + [aux_sym_cmd_identifier_token16] = ACTIONS(2485), + [aux_sym_cmd_identifier_token17] = ACTIONS(2485), + [aux_sym_cmd_identifier_token18] = ACTIONS(2485), + [aux_sym_cmd_identifier_token19] = ACTIONS(2485), + [aux_sym_cmd_identifier_token20] = ACTIONS(2485), + [aux_sym_cmd_identifier_token21] = ACTIONS(2485), + [aux_sym_cmd_identifier_token22] = ACTIONS(2485), + [aux_sym_cmd_identifier_token23] = ACTIONS(2485), + [aux_sym_cmd_identifier_token24] = ACTIONS(2485), + [aux_sym_cmd_identifier_token25] = ACTIONS(2485), + [aux_sym_cmd_identifier_token26] = ACTIONS(2485), + [aux_sym_cmd_identifier_token27] = ACTIONS(2485), + [aux_sym_cmd_identifier_token28] = ACTIONS(2485), + [aux_sym_cmd_identifier_token29] = ACTIONS(2485), + [aux_sym_cmd_identifier_token30] = ACTIONS(2485), + [aux_sym_cmd_identifier_token31] = ACTIONS(2485), + [aux_sym_cmd_identifier_token32] = ACTIONS(2485), + [aux_sym_cmd_identifier_token33] = ACTIONS(2485), + [aux_sym_cmd_identifier_token34] = ACTIONS(2485), + [aux_sym_cmd_identifier_token35] = ACTIONS(2485), + [aux_sym_cmd_identifier_token36] = ACTIONS(2485), + [anon_sym_true] = ACTIONS(2485), + [anon_sym_false] = ACTIONS(2485), + [anon_sym_null] = ACTIONS(2485), + [aux_sym_cmd_identifier_token38] = ACTIONS(2485), + [aux_sym_cmd_identifier_token39] = ACTIONS(2485), + [aux_sym_cmd_identifier_token40] = ACTIONS(2485), + [anon_sym_def] = ACTIONS(2485), + [anon_sym_export_DASHenv] = ACTIONS(2485), + [anon_sym_extern] = ACTIONS(2485), + [anon_sym_module] = ACTIONS(2485), + [anon_sym_use] = ACTIONS(2485), + [anon_sym_LPAREN] = ACTIONS(2485), + [anon_sym_DOLLAR] = ACTIONS(2485), + [anon_sym_error] = ACTIONS(2485), + [anon_sym_list] = ACTIONS(2485), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_break] = ACTIONS(2485), + [anon_sym_continue] = ACTIONS(2485), + [anon_sym_for] = ACTIONS(2485), + [anon_sym_in] = ACTIONS(2485), + [anon_sym_loop] = ACTIONS(2485), + [anon_sym_make] = ACTIONS(2485), + [anon_sym_while] = ACTIONS(2485), + [anon_sym_do] = ACTIONS(2485), + [anon_sym_if] = ACTIONS(2485), + [anon_sym_else] = ACTIONS(2485), + [anon_sym_match] = ACTIONS(2485), + [anon_sym_RBRACE] = ACTIONS(2485), + [anon_sym_try] = ACTIONS(2485), + [anon_sym_catch] = ACTIONS(2485), + [anon_sym_return] = ACTIONS(2485), + [anon_sym_source] = ACTIONS(2485), + [anon_sym_source_DASHenv] = ACTIONS(2485), + [anon_sym_register] = ACTIONS(2485), + [anon_sym_hide] = ACTIONS(2485), + [anon_sym_hide_DASHenv] = ACTIONS(2485), + [anon_sym_overlay] = ACTIONS(2485), + [anon_sym_new] = ACTIONS(2485), + [anon_sym_as] = ACTIONS(2485), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2485), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2485), + [aux_sym__val_number_decimal_token1] = ACTIONS(2485), + [aux_sym__val_number_decimal_token2] = ACTIONS(2485), + [aux_sym__val_number_decimal_token3] = ACTIONS(2485), + [aux_sym__val_number_decimal_token4] = ACTIONS(2485), + [aux_sym__val_number_token1] = ACTIONS(2485), + [aux_sym__val_number_token2] = ACTIONS(2485), + [aux_sym__val_number_token3] = ACTIONS(2485), + [anon_sym_DQUOTE] = ACTIONS(2485), + [sym__str_single_quotes] = ACTIONS(2485), + [sym__str_back_ticks] = ACTIONS(2485), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2485), + [sym__entry_separator] = ACTIONS(2487), + [anon_sym_PLUS] = ACTIONS(2485), [anon_sym_POUND] = ACTIONS(3), }, [574] = { [sym_comment] = STATE(574), - [anon_sym_export] = ACTIONS(1972), - [anon_sym_alias] = ACTIONS(1972), - [anon_sym_let] = ACTIONS(1972), - [anon_sym_let_DASHenv] = ACTIONS(1972), - [anon_sym_mut] = ACTIONS(1972), - [anon_sym_const] = ACTIONS(1972), - [aux_sym_cmd_identifier_token1] = ACTIONS(1972), - [aux_sym_cmd_identifier_token2] = ACTIONS(1972), - [aux_sym_cmd_identifier_token3] = ACTIONS(1972), - [aux_sym_cmd_identifier_token4] = ACTIONS(1972), - [aux_sym_cmd_identifier_token5] = ACTIONS(1972), - [aux_sym_cmd_identifier_token6] = ACTIONS(1972), - [aux_sym_cmd_identifier_token7] = ACTIONS(1972), - [aux_sym_cmd_identifier_token8] = ACTIONS(1972), - [aux_sym_cmd_identifier_token9] = ACTIONS(1972), - [aux_sym_cmd_identifier_token10] = ACTIONS(1972), - [aux_sym_cmd_identifier_token11] = ACTIONS(1972), - [aux_sym_cmd_identifier_token12] = ACTIONS(1972), - [aux_sym_cmd_identifier_token13] = ACTIONS(1972), - [aux_sym_cmd_identifier_token14] = ACTIONS(1972), - [aux_sym_cmd_identifier_token15] = ACTIONS(1972), - [aux_sym_cmd_identifier_token16] = ACTIONS(1972), - [aux_sym_cmd_identifier_token17] = ACTIONS(1972), - [aux_sym_cmd_identifier_token18] = ACTIONS(1972), - [aux_sym_cmd_identifier_token19] = ACTIONS(1972), - [aux_sym_cmd_identifier_token20] = ACTIONS(1972), - [aux_sym_cmd_identifier_token21] = ACTIONS(1972), - [aux_sym_cmd_identifier_token22] = ACTIONS(1972), - [aux_sym_cmd_identifier_token23] = ACTIONS(1972), - [aux_sym_cmd_identifier_token24] = ACTIONS(1972), - [aux_sym_cmd_identifier_token25] = ACTIONS(1972), - [aux_sym_cmd_identifier_token26] = ACTIONS(1972), - [aux_sym_cmd_identifier_token27] = ACTIONS(1972), - [aux_sym_cmd_identifier_token28] = ACTIONS(1972), - [aux_sym_cmd_identifier_token29] = ACTIONS(1972), - [aux_sym_cmd_identifier_token30] = ACTIONS(1972), - [aux_sym_cmd_identifier_token31] = ACTIONS(1972), - [aux_sym_cmd_identifier_token32] = ACTIONS(1972), - [aux_sym_cmd_identifier_token33] = ACTIONS(1972), - [aux_sym_cmd_identifier_token34] = ACTIONS(1972), - [aux_sym_cmd_identifier_token35] = ACTIONS(1972), - [aux_sym_cmd_identifier_token36] = ACTIONS(1972), - [anon_sym_true] = ACTIONS(1972), - [anon_sym_false] = ACTIONS(1972), - [anon_sym_null] = ACTIONS(1972), - [aux_sym_cmd_identifier_token38] = ACTIONS(1972), - [aux_sym_cmd_identifier_token39] = ACTIONS(1972), - [aux_sym_cmd_identifier_token40] = ACTIONS(1972), - [anon_sym_def] = ACTIONS(1972), - [anon_sym_export_DASHenv] = ACTIONS(1972), - [anon_sym_extern] = ACTIONS(1972), - [anon_sym_module] = ACTIONS(1972), - [anon_sym_use] = ACTIONS(1972), - [anon_sym_LPAREN] = ACTIONS(1972), - [anon_sym_DOLLAR] = ACTIONS(1972), - [anon_sym_error] = ACTIONS(1972), - [anon_sym_list] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_break] = ACTIONS(1972), - [anon_sym_continue] = ACTIONS(1972), - [anon_sym_for] = ACTIONS(1972), - [anon_sym_in] = ACTIONS(1972), - [anon_sym_loop] = ACTIONS(1972), - [anon_sym_make] = ACTIONS(1972), - [anon_sym_while] = ACTIONS(1972), - [anon_sym_do] = ACTIONS(1972), - [anon_sym_if] = ACTIONS(1972), - [anon_sym_else] = ACTIONS(1972), - [anon_sym_match] = ACTIONS(1972), - [anon_sym_RBRACE] = ACTIONS(1972), - [anon_sym_try] = ACTIONS(1972), - [anon_sym_catch] = ACTIONS(1972), - [anon_sym_return] = ACTIONS(1972), - [anon_sym_source] = ACTIONS(1972), - [anon_sym_source_DASHenv] = ACTIONS(1972), - [anon_sym_register] = ACTIONS(1972), - [anon_sym_hide] = ACTIONS(1972), - [anon_sym_hide_DASHenv] = ACTIONS(1972), - [anon_sym_overlay] = ACTIONS(1972), - [anon_sym_new] = ACTIONS(1972), - [anon_sym_as] = ACTIONS(1972), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1972), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1972), - [aux_sym__val_number_decimal_token1] = ACTIONS(1972), - [aux_sym__val_number_decimal_token2] = ACTIONS(1972), - [aux_sym__val_number_decimal_token3] = ACTIONS(1972), - [aux_sym__val_number_decimal_token4] = ACTIONS(1972), - [aux_sym__val_number_token1] = ACTIONS(1972), - [aux_sym__val_number_token2] = ACTIONS(1972), - [aux_sym__val_number_token3] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(1972), - [sym__str_single_quotes] = ACTIONS(1972), - [sym__str_back_ticks] = ACTIONS(1972), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1972), - [sym__entry_separator] = ACTIONS(1978), - [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_export] = ACTIONS(2489), + [anon_sym_alias] = ACTIONS(2489), + [anon_sym_let] = ACTIONS(2489), + [anon_sym_let_DASHenv] = ACTIONS(2489), + [anon_sym_mut] = ACTIONS(2489), + [anon_sym_const] = ACTIONS(2489), + [aux_sym_cmd_identifier_token1] = ACTIONS(2489), + [aux_sym_cmd_identifier_token2] = ACTIONS(2489), + [aux_sym_cmd_identifier_token3] = ACTIONS(2489), + [aux_sym_cmd_identifier_token4] = ACTIONS(2489), + [aux_sym_cmd_identifier_token5] = ACTIONS(2489), + [aux_sym_cmd_identifier_token6] = ACTIONS(2489), + [aux_sym_cmd_identifier_token7] = ACTIONS(2489), + [aux_sym_cmd_identifier_token8] = ACTIONS(2489), + [aux_sym_cmd_identifier_token9] = ACTIONS(2489), + [aux_sym_cmd_identifier_token10] = ACTIONS(2489), + [aux_sym_cmd_identifier_token11] = ACTIONS(2489), + [aux_sym_cmd_identifier_token12] = ACTIONS(2489), + [aux_sym_cmd_identifier_token13] = ACTIONS(2489), + [aux_sym_cmd_identifier_token14] = ACTIONS(2489), + [aux_sym_cmd_identifier_token15] = ACTIONS(2489), + [aux_sym_cmd_identifier_token16] = ACTIONS(2489), + [aux_sym_cmd_identifier_token17] = ACTIONS(2489), + [aux_sym_cmd_identifier_token18] = ACTIONS(2489), + [aux_sym_cmd_identifier_token19] = ACTIONS(2489), + [aux_sym_cmd_identifier_token20] = ACTIONS(2489), + [aux_sym_cmd_identifier_token21] = ACTIONS(2489), + [aux_sym_cmd_identifier_token22] = ACTIONS(2489), + [aux_sym_cmd_identifier_token23] = ACTIONS(2489), + [aux_sym_cmd_identifier_token24] = ACTIONS(2489), + [aux_sym_cmd_identifier_token25] = ACTIONS(2489), + [aux_sym_cmd_identifier_token26] = ACTIONS(2489), + [aux_sym_cmd_identifier_token27] = ACTIONS(2489), + [aux_sym_cmd_identifier_token28] = ACTIONS(2489), + [aux_sym_cmd_identifier_token29] = ACTIONS(2489), + [aux_sym_cmd_identifier_token30] = ACTIONS(2489), + [aux_sym_cmd_identifier_token31] = ACTIONS(2489), + [aux_sym_cmd_identifier_token32] = ACTIONS(2489), + [aux_sym_cmd_identifier_token33] = ACTIONS(2489), + [aux_sym_cmd_identifier_token34] = ACTIONS(2489), + [aux_sym_cmd_identifier_token35] = ACTIONS(2489), + [aux_sym_cmd_identifier_token36] = ACTIONS(2489), + [anon_sym_true] = ACTIONS(2489), + [anon_sym_false] = ACTIONS(2489), + [anon_sym_null] = ACTIONS(2489), + [aux_sym_cmd_identifier_token38] = ACTIONS(2489), + [aux_sym_cmd_identifier_token39] = ACTIONS(2489), + [aux_sym_cmd_identifier_token40] = ACTIONS(2489), + [anon_sym_def] = ACTIONS(2489), + [anon_sym_export_DASHenv] = ACTIONS(2489), + [anon_sym_extern] = ACTIONS(2489), + [anon_sym_module] = ACTIONS(2489), + [anon_sym_use] = ACTIONS(2489), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_DOLLAR] = ACTIONS(2489), + [anon_sym_error] = ACTIONS(2489), + [anon_sym_list] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_break] = ACTIONS(2489), + [anon_sym_continue] = ACTIONS(2489), + [anon_sym_for] = ACTIONS(2489), + [anon_sym_in] = ACTIONS(2489), + [anon_sym_loop] = ACTIONS(2489), + [anon_sym_make] = ACTIONS(2489), + [anon_sym_while] = ACTIONS(2489), + [anon_sym_do] = ACTIONS(2489), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_else] = ACTIONS(2489), + [anon_sym_match] = ACTIONS(2489), + [anon_sym_RBRACE] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(2489), + [anon_sym_catch] = ACTIONS(2489), + [anon_sym_return] = ACTIONS(2489), + [anon_sym_source] = ACTIONS(2489), + [anon_sym_source_DASHenv] = ACTIONS(2489), + [anon_sym_register] = ACTIONS(2489), + [anon_sym_hide] = ACTIONS(2489), + [anon_sym_hide_DASHenv] = ACTIONS(2489), + [anon_sym_overlay] = ACTIONS(2489), + [anon_sym_new] = ACTIONS(2489), + [anon_sym_as] = ACTIONS(2489), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2489), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2489), + [aux_sym__val_number_decimal_token1] = ACTIONS(2489), + [aux_sym__val_number_decimal_token2] = ACTIONS(2489), + [aux_sym__val_number_decimal_token3] = ACTIONS(2489), + [aux_sym__val_number_decimal_token4] = ACTIONS(2489), + [aux_sym__val_number_token1] = ACTIONS(2489), + [aux_sym__val_number_token2] = ACTIONS(2489), + [aux_sym__val_number_token3] = ACTIONS(2489), + [anon_sym_DQUOTE] = ACTIONS(2489), + [sym__str_single_quotes] = ACTIONS(2489), + [sym__str_back_ticks] = ACTIONS(2489), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2489), + [sym__entry_separator] = ACTIONS(2491), + [anon_sym_PLUS] = ACTIONS(2489), [anon_sym_POUND] = ACTIONS(3), }, [575] = { [sym_comment] = STATE(575), - [anon_sym_export] = ACTIONS(1960), - [anon_sym_alias] = ACTIONS(1960), - [anon_sym_let] = ACTIONS(1960), - [anon_sym_let_DASHenv] = ACTIONS(1960), - [anon_sym_mut] = ACTIONS(1960), - [anon_sym_const] = ACTIONS(1960), - [aux_sym_cmd_identifier_token1] = ACTIONS(1960), - [aux_sym_cmd_identifier_token2] = ACTIONS(1960), - [aux_sym_cmd_identifier_token3] = ACTIONS(1960), - [aux_sym_cmd_identifier_token4] = ACTIONS(1960), - [aux_sym_cmd_identifier_token5] = ACTIONS(1960), - [aux_sym_cmd_identifier_token6] = ACTIONS(1960), - [aux_sym_cmd_identifier_token7] = ACTIONS(1960), - [aux_sym_cmd_identifier_token8] = ACTIONS(1960), - [aux_sym_cmd_identifier_token9] = ACTIONS(1960), - [aux_sym_cmd_identifier_token10] = ACTIONS(1960), - [aux_sym_cmd_identifier_token11] = ACTIONS(1960), - [aux_sym_cmd_identifier_token12] = ACTIONS(1960), - [aux_sym_cmd_identifier_token13] = ACTIONS(1960), - [aux_sym_cmd_identifier_token14] = ACTIONS(1960), - [aux_sym_cmd_identifier_token15] = ACTIONS(1960), - [aux_sym_cmd_identifier_token16] = ACTIONS(1960), - [aux_sym_cmd_identifier_token17] = ACTIONS(1960), - [aux_sym_cmd_identifier_token18] = ACTIONS(1960), - [aux_sym_cmd_identifier_token19] = ACTIONS(1960), - [aux_sym_cmd_identifier_token20] = ACTIONS(1960), - [aux_sym_cmd_identifier_token21] = ACTIONS(1960), - [aux_sym_cmd_identifier_token22] = ACTIONS(1960), - [aux_sym_cmd_identifier_token23] = ACTIONS(1960), - [aux_sym_cmd_identifier_token24] = ACTIONS(1960), - [aux_sym_cmd_identifier_token25] = ACTIONS(1960), - [aux_sym_cmd_identifier_token26] = ACTIONS(1960), - [aux_sym_cmd_identifier_token27] = ACTIONS(1960), - [aux_sym_cmd_identifier_token28] = ACTIONS(1960), - [aux_sym_cmd_identifier_token29] = ACTIONS(1960), - [aux_sym_cmd_identifier_token30] = ACTIONS(1960), - [aux_sym_cmd_identifier_token31] = ACTIONS(1960), - [aux_sym_cmd_identifier_token32] = ACTIONS(1960), - [aux_sym_cmd_identifier_token33] = ACTIONS(1960), - [aux_sym_cmd_identifier_token34] = ACTIONS(1960), - [aux_sym_cmd_identifier_token35] = ACTIONS(1960), - [aux_sym_cmd_identifier_token36] = ACTIONS(1960), - [anon_sym_true] = ACTIONS(1960), - [anon_sym_false] = ACTIONS(1960), - [anon_sym_null] = ACTIONS(1960), - [aux_sym_cmd_identifier_token38] = ACTIONS(1960), - [aux_sym_cmd_identifier_token39] = ACTIONS(1960), - [aux_sym_cmd_identifier_token40] = ACTIONS(1960), - [anon_sym_def] = ACTIONS(1960), - [anon_sym_export_DASHenv] = ACTIONS(1960), - [anon_sym_extern] = ACTIONS(1960), - [anon_sym_module] = ACTIONS(1960), - [anon_sym_use] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1960), - [anon_sym_DOLLAR] = ACTIONS(1960), - [anon_sym_error] = ACTIONS(1960), - [anon_sym_list] = ACTIONS(1960), - [anon_sym_DASH] = ACTIONS(1960), - [anon_sym_break] = ACTIONS(1960), - [anon_sym_continue] = ACTIONS(1960), - [anon_sym_for] = ACTIONS(1960), - [anon_sym_in] = ACTIONS(1960), - [anon_sym_loop] = ACTIONS(1960), - [anon_sym_make] = ACTIONS(1960), - [anon_sym_while] = ACTIONS(1960), - [anon_sym_do] = ACTIONS(1960), - [anon_sym_if] = ACTIONS(1960), - [anon_sym_else] = ACTIONS(1960), - [anon_sym_match] = ACTIONS(1960), - [anon_sym_RBRACE] = ACTIONS(1960), - [anon_sym_try] = ACTIONS(1960), - [anon_sym_catch] = ACTIONS(1960), - [anon_sym_return] = ACTIONS(1960), - [anon_sym_source] = ACTIONS(1960), - [anon_sym_source_DASHenv] = ACTIONS(1960), - [anon_sym_register] = ACTIONS(1960), - [anon_sym_hide] = ACTIONS(1960), - [anon_sym_hide_DASHenv] = ACTIONS(1960), - [anon_sym_overlay] = ACTIONS(1960), - [anon_sym_new] = ACTIONS(1960), - [anon_sym_as] = ACTIONS(1960), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1960), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1960), - [aux_sym__val_number_decimal_token1] = ACTIONS(1960), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [aux_sym__val_number_decimal_token3] = ACTIONS(1960), - [aux_sym__val_number_decimal_token4] = ACTIONS(1960), - [aux_sym__val_number_token1] = ACTIONS(1960), - [aux_sym__val_number_token2] = ACTIONS(1960), - [aux_sym__val_number_token3] = ACTIONS(1960), - [anon_sym_DQUOTE] = ACTIONS(1960), - [sym__str_single_quotes] = ACTIONS(1960), - [sym__str_back_ticks] = ACTIONS(1960), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1960), - [sym__entry_separator] = ACTIONS(1966), - [anon_sym_PLUS] = ACTIONS(1960), + [anon_sym_export] = ACTIONS(2493), + [anon_sym_alias] = ACTIONS(2493), + [anon_sym_let] = ACTIONS(2493), + [anon_sym_let_DASHenv] = ACTIONS(2493), + [anon_sym_mut] = ACTIONS(2493), + [anon_sym_const] = ACTIONS(2493), + [aux_sym_cmd_identifier_token1] = ACTIONS(2493), + [aux_sym_cmd_identifier_token2] = ACTIONS(2493), + [aux_sym_cmd_identifier_token3] = ACTIONS(2493), + [aux_sym_cmd_identifier_token4] = ACTIONS(2493), + [aux_sym_cmd_identifier_token5] = ACTIONS(2493), + [aux_sym_cmd_identifier_token6] = ACTIONS(2493), + [aux_sym_cmd_identifier_token7] = ACTIONS(2493), + [aux_sym_cmd_identifier_token8] = ACTIONS(2493), + [aux_sym_cmd_identifier_token9] = ACTIONS(2493), + [aux_sym_cmd_identifier_token10] = ACTIONS(2493), + [aux_sym_cmd_identifier_token11] = ACTIONS(2493), + [aux_sym_cmd_identifier_token12] = ACTIONS(2493), + [aux_sym_cmd_identifier_token13] = ACTIONS(2493), + [aux_sym_cmd_identifier_token14] = ACTIONS(2493), + [aux_sym_cmd_identifier_token15] = ACTIONS(2493), + [aux_sym_cmd_identifier_token16] = ACTIONS(2493), + [aux_sym_cmd_identifier_token17] = ACTIONS(2493), + [aux_sym_cmd_identifier_token18] = ACTIONS(2493), + [aux_sym_cmd_identifier_token19] = ACTIONS(2493), + [aux_sym_cmd_identifier_token20] = ACTIONS(2493), + [aux_sym_cmd_identifier_token21] = ACTIONS(2493), + [aux_sym_cmd_identifier_token22] = ACTIONS(2493), + [aux_sym_cmd_identifier_token23] = ACTIONS(2493), + [aux_sym_cmd_identifier_token24] = ACTIONS(2493), + [aux_sym_cmd_identifier_token25] = ACTIONS(2493), + [aux_sym_cmd_identifier_token26] = ACTIONS(2493), + [aux_sym_cmd_identifier_token27] = ACTIONS(2493), + [aux_sym_cmd_identifier_token28] = ACTIONS(2493), + [aux_sym_cmd_identifier_token29] = ACTIONS(2493), + [aux_sym_cmd_identifier_token30] = ACTIONS(2493), + [aux_sym_cmd_identifier_token31] = ACTIONS(2493), + [aux_sym_cmd_identifier_token32] = ACTIONS(2493), + [aux_sym_cmd_identifier_token33] = ACTIONS(2493), + [aux_sym_cmd_identifier_token34] = ACTIONS(2493), + [aux_sym_cmd_identifier_token35] = ACTIONS(2493), + [aux_sym_cmd_identifier_token36] = ACTIONS(2493), + [anon_sym_true] = ACTIONS(2493), + [anon_sym_false] = ACTIONS(2493), + [anon_sym_null] = ACTIONS(2493), + [aux_sym_cmd_identifier_token38] = ACTIONS(2493), + [aux_sym_cmd_identifier_token39] = ACTIONS(2493), + [aux_sym_cmd_identifier_token40] = ACTIONS(2493), + [anon_sym_def] = ACTIONS(2493), + [anon_sym_export_DASHenv] = ACTIONS(2493), + [anon_sym_extern] = ACTIONS(2493), + [anon_sym_module] = ACTIONS(2493), + [anon_sym_use] = ACTIONS(2493), + [anon_sym_LPAREN] = ACTIONS(2493), + [anon_sym_DOLLAR] = ACTIONS(2493), + [anon_sym_error] = ACTIONS(2493), + [anon_sym_list] = ACTIONS(2493), + [anon_sym_DASH] = ACTIONS(2493), + [anon_sym_break] = ACTIONS(2493), + [anon_sym_continue] = ACTIONS(2493), + [anon_sym_for] = ACTIONS(2493), + [anon_sym_in] = ACTIONS(2493), + [anon_sym_loop] = ACTIONS(2493), + [anon_sym_make] = ACTIONS(2493), + [anon_sym_while] = ACTIONS(2493), + [anon_sym_do] = ACTIONS(2493), + [anon_sym_if] = ACTIONS(2493), + [anon_sym_else] = ACTIONS(2493), + [anon_sym_match] = ACTIONS(2493), + [anon_sym_RBRACE] = ACTIONS(2493), + [anon_sym_try] = ACTIONS(2493), + [anon_sym_catch] = ACTIONS(2493), + [anon_sym_return] = ACTIONS(2493), + [anon_sym_source] = ACTIONS(2493), + [anon_sym_source_DASHenv] = ACTIONS(2493), + [anon_sym_register] = ACTIONS(2493), + [anon_sym_hide] = ACTIONS(2493), + [anon_sym_hide_DASHenv] = ACTIONS(2493), + [anon_sym_overlay] = ACTIONS(2493), + [anon_sym_new] = ACTIONS(2493), + [anon_sym_as] = ACTIONS(2493), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2493), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2493), + [aux_sym__val_number_decimal_token1] = ACTIONS(2493), + [aux_sym__val_number_decimal_token2] = ACTIONS(2493), + [aux_sym__val_number_decimal_token3] = ACTIONS(2493), + [aux_sym__val_number_decimal_token4] = ACTIONS(2493), + [aux_sym__val_number_token1] = ACTIONS(2493), + [aux_sym__val_number_token2] = ACTIONS(2493), + [aux_sym__val_number_token3] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2493), + [sym__str_single_quotes] = ACTIONS(2493), + [sym__str_back_ticks] = ACTIONS(2493), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2493), + [sym__entry_separator] = ACTIONS(2495), + [anon_sym_PLUS] = ACTIONS(2493), [anon_sym_POUND] = ACTIONS(3), }, [576] = { [sym_comment] = STATE(576), - [anon_sym_export] = ACTIONS(2405), - [anon_sym_alias] = ACTIONS(2405), - [anon_sym_let] = ACTIONS(2405), - [anon_sym_let_DASHenv] = ACTIONS(2405), - [anon_sym_mut] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [aux_sym_cmd_identifier_token1] = ACTIONS(2405), - [aux_sym_cmd_identifier_token2] = ACTIONS(2405), - [aux_sym_cmd_identifier_token3] = ACTIONS(2405), - [aux_sym_cmd_identifier_token4] = ACTIONS(2405), - [aux_sym_cmd_identifier_token5] = ACTIONS(2405), - [aux_sym_cmd_identifier_token6] = ACTIONS(2405), - [aux_sym_cmd_identifier_token7] = ACTIONS(2405), - [aux_sym_cmd_identifier_token8] = ACTIONS(2405), - [aux_sym_cmd_identifier_token9] = ACTIONS(2405), - [aux_sym_cmd_identifier_token10] = ACTIONS(2405), - [aux_sym_cmd_identifier_token11] = ACTIONS(2405), - [aux_sym_cmd_identifier_token12] = ACTIONS(2405), - [aux_sym_cmd_identifier_token13] = ACTIONS(2405), - [aux_sym_cmd_identifier_token14] = ACTIONS(2405), - [aux_sym_cmd_identifier_token15] = ACTIONS(2405), - [aux_sym_cmd_identifier_token16] = ACTIONS(2405), - [aux_sym_cmd_identifier_token17] = ACTIONS(2405), - [aux_sym_cmd_identifier_token18] = ACTIONS(2405), - [aux_sym_cmd_identifier_token19] = ACTIONS(2405), - [aux_sym_cmd_identifier_token20] = ACTIONS(2405), - [aux_sym_cmd_identifier_token21] = ACTIONS(2405), - [aux_sym_cmd_identifier_token22] = ACTIONS(2405), - [aux_sym_cmd_identifier_token23] = ACTIONS(2405), - [aux_sym_cmd_identifier_token24] = ACTIONS(2405), - [aux_sym_cmd_identifier_token25] = ACTIONS(2405), - [aux_sym_cmd_identifier_token26] = ACTIONS(2405), - [aux_sym_cmd_identifier_token27] = ACTIONS(2405), - [aux_sym_cmd_identifier_token28] = ACTIONS(2405), - [aux_sym_cmd_identifier_token29] = ACTIONS(2405), - [aux_sym_cmd_identifier_token30] = ACTIONS(2405), - [aux_sym_cmd_identifier_token31] = ACTIONS(2405), - [aux_sym_cmd_identifier_token32] = ACTIONS(2405), - [aux_sym_cmd_identifier_token33] = ACTIONS(2405), - [aux_sym_cmd_identifier_token34] = ACTIONS(2405), - [aux_sym_cmd_identifier_token35] = ACTIONS(2405), - [aux_sym_cmd_identifier_token36] = ACTIONS(2405), - [anon_sym_true] = ACTIONS(2405), - [anon_sym_false] = ACTIONS(2405), - [anon_sym_null] = ACTIONS(2405), - [aux_sym_cmd_identifier_token38] = ACTIONS(2405), - [aux_sym_cmd_identifier_token39] = ACTIONS(2405), - [aux_sym_cmd_identifier_token40] = ACTIONS(2405), - [anon_sym_def] = ACTIONS(2405), - [anon_sym_export_DASHenv] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym_module] = ACTIONS(2405), - [anon_sym_use] = ACTIONS(2405), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_DOLLAR] = ACTIONS(2405), - [anon_sym_error] = ACTIONS(2405), - [anon_sym_list] = ACTIONS(2405), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_in] = ACTIONS(2405), - [anon_sym_loop] = ACTIONS(2405), - [anon_sym_make] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_match] = ACTIONS(2405), - [anon_sym_RBRACE] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_catch] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_source] = ACTIONS(2405), - [anon_sym_source_DASHenv] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_hide] = ACTIONS(2405), - [anon_sym_hide_DASHenv] = ACTIONS(2405), - [anon_sym_overlay] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_as] = ACTIONS(2405), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2405), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2405), - [aux_sym__val_number_decimal_token1] = ACTIONS(2405), - [aux_sym__val_number_decimal_token2] = ACTIONS(2405), - [aux_sym__val_number_decimal_token3] = ACTIONS(2405), - [aux_sym__val_number_decimal_token4] = ACTIONS(2405), - [aux_sym__val_number_token1] = ACTIONS(2405), - [aux_sym__val_number_token2] = ACTIONS(2405), - [aux_sym__val_number_token3] = ACTIONS(2405), - [anon_sym_DQUOTE] = ACTIONS(2405), - [sym__str_single_quotes] = ACTIONS(2405), - [sym__str_back_ticks] = ACTIONS(2405), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2405), - [sym__entry_separator] = ACTIONS(2407), - [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_export] = ACTIONS(2497), + [anon_sym_alias] = ACTIONS(2497), + [anon_sym_let] = ACTIONS(2497), + [anon_sym_let_DASHenv] = ACTIONS(2497), + [anon_sym_mut] = ACTIONS(2497), + [anon_sym_const] = ACTIONS(2497), + [aux_sym_cmd_identifier_token1] = ACTIONS(2497), + [aux_sym_cmd_identifier_token2] = ACTIONS(2497), + [aux_sym_cmd_identifier_token3] = ACTIONS(2497), + [aux_sym_cmd_identifier_token4] = ACTIONS(2497), + [aux_sym_cmd_identifier_token5] = ACTIONS(2497), + [aux_sym_cmd_identifier_token6] = ACTIONS(2497), + [aux_sym_cmd_identifier_token7] = ACTIONS(2497), + [aux_sym_cmd_identifier_token8] = ACTIONS(2497), + [aux_sym_cmd_identifier_token9] = ACTIONS(2497), + [aux_sym_cmd_identifier_token10] = ACTIONS(2497), + [aux_sym_cmd_identifier_token11] = ACTIONS(2497), + [aux_sym_cmd_identifier_token12] = ACTIONS(2497), + [aux_sym_cmd_identifier_token13] = ACTIONS(2497), + [aux_sym_cmd_identifier_token14] = ACTIONS(2497), + [aux_sym_cmd_identifier_token15] = ACTIONS(2497), + [aux_sym_cmd_identifier_token16] = ACTIONS(2497), + [aux_sym_cmd_identifier_token17] = ACTIONS(2497), + [aux_sym_cmd_identifier_token18] = ACTIONS(2497), + [aux_sym_cmd_identifier_token19] = ACTIONS(2497), + [aux_sym_cmd_identifier_token20] = ACTIONS(2497), + [aux_sym_cmd_identifier_token21] = ACTIONS(2497), + [aux_sym_cmd_identifier_token22] = ACTIONS(2497), + [aux_sym_cmd_identifier_token23] = ACTIONS(2497), + [aux_sym_cmd_identifier_token24] = ACTIONS(2497), + [aux_sym_cmd_identifier_token25] = ACTIONS(2497), + [aux_sym_cmd_identifier_token26] = ACTIONS(2497), + [aux_sym_cmd_identifier_token27] = ACTIONS(2497), + [aux_sym_cmd_identifier_token28] = ACTIONS(2497), + [aux_sym_cmd_identifier_token29] = ACTIONS(2497), + [aux_sym_cmd_identifier_token30] = ACTIONS(2497), + [aux_sym_cmd_identifier_token31] = ACTIONS(2497), + [aux_sym_cmd_identifier_token32] = ACTIONS(2497), + [aux_sym_cmd_identifier_token33] = ACTIONS(2497), + [aux_sym_cmd_identifier_token34] = ACTIONS(2497), + [aux_sym_cmd_identifier_token35] = ACTIONS(2497), + [aux_sym_cmd_identifier_token36] = ACTIONS(2497), + [anon_sym_true] = ACTIONS(2497), + [anon_sym_false] = ACTIONS(2497), + [anon_sym_null] = ACTIONS(2497), + [aux_sym_cmd_identifier_token38] = ACTIONS(2497), + [aux_sym_cmd_identifier_token39] = ACTIONS(2497), + [aux_sym_cmd_identifier_token40] = ACTIONS(2497), + [anon_sym_def] = ACTIONS(2497), + [anon_sym_export_DASHenv] = ACTIONS(2497), + [anon_sym_extern] = ACTIONS(2497), + [anon_sym_module] = ACTIONS(2497), + [anon_sym_use] = ACTIONS(2497), + [anon_sym_LPAREN] = ACTIONS(2497), + [anon_sym_DOLLAR] = ACTIONS(2497), + [anon_sym_error] = ACTIONS(2497), + [anon_sym_list] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(2497), + [anon_sym_continue] = ACTIONS(2497), + [anon_sym_for] = ACTIONS(2497), + [anon_sym_in] = ACTIONS(2497), + [anon_sym_loop] = ACTIONS(2497), + [anon_sym_make] = ACTIONS(2497), + [anon_sym_while] = ACTIONS(2497), + [anon_sym_do] = ACTIONS(2497), + [anon_sym_if] = ACTIONS(2497), + [anon_sym_else] = ACTIONS(2497), + [anon_sym_match] = ACTIONS(2497), + [anon_sym_RBRACE] = ACTIONS(2497), + [anon_sym_try] = ACTIONS(2497), + [anon_sym_catch] = ACTIONS(2497), + [anon_sym_return] = ACTIONS(2497), + [anon_sym_source] = ACTIONS(2497), + [anon_sym_source_DASHenv] = ACTIONS(2497), + [anon_sym_register] = ACTIONS(2497), + [anon_sym_hide] = ACTIONS(2497), + [anon_sym_hide_DASHenv] = ACTIONS(2497), + [anon_sym_overlay] = ACTIONS(2497), + [anon_sym_new] = ACTIONS(2497), + [anon_sym_as] = ACTIONS(2497), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2497), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2497), + [aux_sym__val_number_decimal_token1] = ACTIONS(2497), + [aux_sym__val_number_decimal_token2] = ACTIONS(2497), + [aux_sym__val_number_decimal_token3] = ACTIONS(2497), + [aux_sym__val_number_decimal_token4] = ACTIONS(2497), + [aux_sym__val_number_token1] = ACTIONS(2497), + [aux_sym__val_number_token2] = ACTIONS(2497), + [aux_sym__val_number_token3] = ACTIONS(2497), + [anon_sym_DQUOTE] = ACTIONS(2497), + [sym__str_single_quotes] = ACTIONS(2497), + [sym__str_back_ticks] = ACTIONS(2497), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2497), + [sym__entry_separator] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2497), [anon_sym_POUND] = ACTIONS(3), }, [577] = { [sym_comment] = STATE(577), - [anon_sym_export] = ACTIONS(2409), - [anon_sym_alias] = ACTIONS(2409), - [anon_sym_let] = ACTIONS(2409), - [anon_sym_let_DASHenv] = ACTIONS(2409), - [anon_sym_mut] = ACTIONS(2409), - [anon_sym_const] = ACTIONS(2409), - [aux_sym_cmd_identifier_token1] = ACTIONS(2409), - [aux_sym_cmd_identifier_token2] = ACTIONS(2409), - [aux_sym_cmd_identifier_token3] = ACTIONS(2409), - [aux_sym_cmd_identifier_token4] = ACTIONS(2409), - [aux_sym_cmd_identifier_token5] = ACTIONS(2409), - [aux_sym_cmd_identifier_token6] = ACTIONS(2409), - [aux_sym_cmd_identifier_token7] = ACTIONS(2409), - [aux_sym_cmd_identifier_token8] = ACTIONS(2409), - [aux_sym_cmd_identifier_token9] = ACTIONS(2409), - [aux_sym_cmd_identifier_token10] = ACTIONS(2409), - [aux_sym_cmd_identifier_token11] = ACTIONS(2409), - [aux_sym_cmd_identifier_token12] = ACTIONS(2409), - [aux_sym_cmd_identifier_token13] = ACTIONS(2409), - [aux_sym_cmd_identifier_token14] = ACTIONS(2409), - [aux_sym_cmd_identifier_token15] = ACTIONS(2409), - [aux_sym_cmd_identifier_token16] = ACTIONS(2409), - [aux_sym_cmd_identifier_token17] = ACTIONS(2409), - [aux_sym_cmd_identifier_token18] = ACTIONS(2409), - [aux_sym_cmd_identifier_token19] = ACTIONS(2409), - [aux_sym_cmd_identifier_token20] = ACTIONS(2409), - [aux_sym_cmd_identifier_token21] = ACTIONS(2409), - [aux_sym_cmd_identifier_token22] = ACTIONS(2409), - [aux_sym_cmd_identifier_token23] = ACTIONS(2409), - [aux_sym_cmd_identifier_token24] = ACTIONS(2409), - [aux_sym_cmd_identifier_token25] = ACTIONS(2409), - [aux_sym_cmd_identifier_token26] = ACTIONS(2409), - [aux_sym_cmd_identifier_token27] = ACTIONS(2409), - [aux_sym_cmd_identifier_token28] = ACTIONS(2409), - [aux_sym_cmd_identifier_token29] = ACTIONS(2409), - [aux_sym_cmd_identifier_token30] = ACTIONS(2409), - [aux_sym_cmd_identifier_token31] = ACTIONS(2409), - [aux_sym_cmd_identifier_token32] = ACTIONS(2409), - [aux_sym_cmd_identifier_token33] = ACTIONS(2409), - [aux_sym_cmd_identifier_token34] = ACTIONS(2409), - [aux_sym_cmd_identifier_token35] = ACTIONS(2409), - [aux_sym_cmd_identifier_token36] = ACTIONS(2409), - [anon_sym_true] = ACTIONS(2409), - [anon_sym_false] = ACTIONS(2409), - [anon_sym_null] = ACTIONS(2409), - [aux_sym_cmd_identifier_token38] = ACTIONS(2409), - [aux_sym_cmd_identifier_token39] = ACTIONS(2409), - [aux_sym_cmd_identifier_token40] = ACTIONS(2409), - [anon_sym_def] = ACTIONS(2409), - [anon_sym_export_DASHenv] = ACTIONS(2409), - [anon_sym_extern] = ACTIONS(2409), - [anon_sym_module] = ACTIONS(2409), - [anon_sym_use] = ACTIONS(2409), - [anon_sym_LPAREN] = ACTIONS(2409), - [anon_sym_DOLLAR] = ACTIONS(2409), - [anon_sym_error] = ACTIONS(2409), - [anon_sym_list] = ACTIONS(2409), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_break] = ACTIONS(2409), - [anon_sym_continue] = ACTIONS(2409), - [anon_sym_for] = ACTIONS(2409), - [anon_sym_in] = ACTIONS(2409), - [anon_sym_loop] = ACTIONS(2409), - [anon_sym_make] = ACTIONS(2409), - [anon_sym_while] = ACTIONS(2409), - [anon_sym_do] = ACTIONS(2409), - [anon_sym_if] = ACTIONS(2409), - [anon_sym_else] = ACTIONS(2409), - [anon_sym_match] = ACTIONS(2409), - [anon_sym_RBRACE] = ACTIONS(2409), - [anon_sym_try] = ACTIONS(2409), - [anon_sym_catch] = ACTIONS(2409), - [anon_sym_return] = ACTIONS(2409), - [anon_sym_source] = ACTIONS(2409), - [anon_sym_source_DASHenv] = ACTIONS(2409), - [anon_sym_register] = ACTIONS(2409), - [anon_sym_hide] = ACTIONS(2409), - [anon_sym_hide_DASHenv] = ACTIONS(2409), - [anon_sym_overlay] = ACTIONS(2409), - [anon_sym_new] = ACTIONS(2409), - [anon_sym_as] = ACTIONS(2409), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2409), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2409), - [aux_sym__val_number_decimal_token1] = ACTIONS(2409), - [aux_sym__val_number_decimal_token2] = ACTIONS(2409), - [aux_sym__val_number_decimal_token3] = ACTIONS(2409), - [aux_sym__val_number_decimal_token4] = ACTIONS(2409), - [aux_sym__val_number_token1] = ACTIONS(2409), - [aux_sym__val_number_token2] = ACTIONS(2409), - [aux_sym__val_number_token3] = ACTIONS(2409), - [anon_sym_DQUOTE] = ACTIONS(2409), - [sym__str_single_quotes] = ACTIONS(2409), - [sym__str_back_ticks] = ACTIONS(2409), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2409), - [sym__entry_separator] = ACTIONS(2411), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1643), + [anon_sym_alias] = ACTIONS(1643), + [anon_sym_let] = ACTIONS(1643), + [anon_sym_let_DASHenv] = ACTIONS(1643), + [anon_sym_mut] = ACTIONS(1643), + [anon_sym_const] = ACTIONS(1643), + [aux_sym_cmd_identifier_token1] = ACTIONS(1643), + [aux_sym_cmd_identifier_token2] = ACTIONS(1643), + [aux_sym_cmd_identifier_token3] = ACTIONS(1643), + [aux_sym_cmd_identifier_token4] = ACTIONS(1643), + [aux_sym_cmd_identifier_token5] = ACTIONS(1643), + [aux_sym_cmd_identifier_token6] = ACTIONS(1643), + [aux_sym_cmd_identifier_token7] = ACTIONS(1643), + [aux_sym_cmd_identifier_token8] = ACTIONS(1643), + [aux_sym_cmd_identifier_token9] = ACTIONS(1643), + [aux_sym_cmd_identifier_token10] = ACTIONS(1643), + [aux_sym_cmd_identifier_token11] = ACTIONS(1643), + [aux_sym_cmd_identifier_token12] = ACTIONS(1643), + [aux_sym_cmd_identifier_token13] = ACTIONS(1643), + [aux_sym_cmd_identifier_token14] = ACTIONS(1643), + [aux_sym_cmd_identifier_token15] = ACTIONS(1643), + [aux_sym_cmd_identifier_token16] = ACTIONS(1643), + [aux_sym_cmd_identifier_token17] = ACTIONS(1643), + [aux_sym_cmd_identifier_token18] = ACTIONS(1643), + [aux_sym_cmd_identifier_token19] = ACTIONS(1643), + [aux_sym_cmd_identifier_token20] = ACTIONS(1643), + [aux_sym_cmd_identifier_token21] = ACTIONS(1643), + [aux_sym_cmd_identifier_token22] = ACTIONS(1643), + [aux_sym_cmd_identifier_token23] = ACTIONS(1643), + [aux_sym_cmd_identifier_token24] = ACTIONS(1643), + [aux_sym_cmd_identifier_token25] = ACTIONS(1643), + [aux_sym_cmd_identifier_token26] = ACTIONS(1643), + [aux_sym_cmd_identifier_token27] = ACTIONS(1643), + [aux_sym_cmd_identifier_token28] = ACTIONS(1643), + [aux_sym_cmd_identifier_token29] = ACTIONS(1643), + [aux_sym_cmd_identifier_token30] = ACTIONS(1643), + [aux_sym_cmd_identifier_token31] = ACTIONS(1643), + [aux_sym_cmd_identifier_token32] = ACTIONS(1643), + [aux_sym_cmd_identifier_token33] = ACTIONS(1643), + [aux_sym_cmd_identifier_token34] = ACTIONS(1643), + [aux_sym_cmd_identifier_token35] = ACTIONS(1643), + [aux_sym_cmd_identifier_token36] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [aux_sym_cmd_identifier_token38] = ACTIONS(1643), + [aux_sym_cmd_identifier_token39] = ACTIONS(1645), + [aux_sym_cmd_identifier_token40] = ACTIONS(1645), + [anon_sym_def] = ACTIONS(1643), + [anon_sym_export_DASHenv] = ACTIONS(1643), + [anon_sym_extern] = ACTIONS(1643), + [anon_sym_module] = ACTIONS(1643), + [anon_sym_use] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1645), + [anon_sym_DOLLAR] = ACTIONS(1645), + [anon_sym_error] = ACTIONS(1643), + [anon_sym_list] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_break] = ACTIONS(1643), + [anon_sym_continue] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_loop] = ACTIONS(1643), + [anon_sym_make] = ACTIONS(1643), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_do] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_else] = ACTIONS(1643), + [anon_sym_match] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1645), + [anon_sym_try] = ACTIONS(1643), + [anon_sym_catch] = ACTIONS(1643), + [anon_sym_return] = ACTIONS(1643), + [anon_sym_source] = ACTIONS(1643), + [anon_sym_source_DASHenv] = ACTIONS(1643), + [anon_sym_register] = ACTIONS(1643), + [anon_sym_hide] = ACTIONS(1643), + [anon_sym_hide_DASHenv] = ACTIONS(1643), + [anon_sym_overlay] = ACTIONS(1643), + [anon_sym_new] = ACTIONS(1643), + [anon_sym_as] = ACTIONS(1643), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1645), + [aux_sym__immediate_decimal_token2] = ACTIONS(2353), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1645), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1645), + [aux_sym__val_number_decimal_token3] = ACTIONS(1645), + [aux_sym__val_number_decimal_token4] = ACTIONS(1645), + [aux_sym__val_number_token1] = ACTIONS(1645), + [aux_sym__val_number_token2] = ACTIONS(1645), + [aux_sym__val_number_token3] = ACTIONS(1645), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym__str_single_quotes] = ACTIONS(1645), + [sym__str_back_ticks] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1645), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_POUND] = ACTIONS(247), }, [578] = { [sym_comment] = STATE(578), - [anon_sym_export] = ACTIONS(2413), - [anon_sym_alias] = ACTIONS(2413), - [anon_sym_let] = ACTIONS(2413), - [anon_sym_let_DASHenv] = ACTIONS(2413), - [anon_sym_mut] = ACTIONS(2413), - [anon_sym_const] = ACTIONS(2413), - [aux_sym_cmd_identifier_token1] = ACTIONS(2413), - [aux_sym_cmd_identifier_token2] = ACTIONS(2413), - [aux_sym_cmd_identifier_token3] = ACTIONS(2413), - [aux_sym_cmd_identifier_token4] = ACTIONS(2413), - [aux_sym_cmd_identifier_token5] = ACTIONS(2413), - [aux_sym_cmd_identifier_token6] = ACTIONS(2413), - [aux_sym_cmd_identifier_token7] = ACTIONS(2413), - [aux_sym_cmd_identifier_token8] = ACTIONS(2413), - [aux_sym_cmd_identifier_token9] = ACTIONS(2413), - [aux_sym_cmd_identifier_token10] = ACTIONS(2413), - [aux_sym_cmd_identifier_token11] = ACTIONS(2413), - [aux_sym_cmd_identifier_token12] = ACTIONS(2413), - [aux_sym_cmd_identifier_token13] = ACTIONS(2413), - [aux_sym_cmd_identifier_token14] = ACTIONS(2413), - [aux_sym_cmd_identifier_token15] = ACTIONS(2413), - [aux_sym_cmd_identifier_token16] = ACTIONS(2413), - [aux_sym_cmd_identifier_token17] = ACTIONS(2413), - [aux_sym_cmd_identifier_token18] = ACTIONS(2413), - [aux_sym_cmd_identifier_token19] = ACTIONS(2413), - [aux_sym_cmd_identifier_token20] = ACTIONS(2413), - [aux_sym_cmd_identifier_token21] = ACTIONS(2413), - [aux_sym_cmd_identifier_token22] = ACTIONS(2413), - [aux_sym_cmd_identifier_token23] = ACTIONS(2413), - [aux_sym_cmd_identifier_token24] = ACTIONS(2413), - [aux_sym_cmd_identifier_token25] = ACTIONS(2413), - [aux_sym_cmd_identifier_token26] = ACTIONS(2413), - [aux_sym_cmd_identifier_token27] = ACTIONS(2413), - [aux_sym_cmd_identifier_token28] = ACTIONS(2413), - [aux_sym_cmd_identifier_token29] = ACTIONS(2413), - [aux_sym_cmd_identifier_token30] = ACTIONS(2413), - [aux_sym_cmd_identifier_token31] = ACTIONS(2413), - [aux_sym_cmd_identifier_token32] = ACTIONS(2413), - [aux_sym_cmd_identifier_token33] = ACTIONS(2413), - [aux_sym_cmd_identifier_token34] = ACTIONS(2413), - [aux_sym_cmd_identifier_token35] = ACTIONS(2413), - [aux_sym_cmd_identifier_token36] = ACTIONS(2413), - [anon_sym_true] = ACTIONS(2413), - [anon_sym_false] = ACTIONS(2413), - [anon_sym_null] = ACTIONS(2413), - [aux_sym_cmd_identifier_token38] = ACTIONS(2413), - [aux_sym_cmd_identifier_token39] = ACTIONS(2413), - [aux_sym_cmd_identifier_token40] = ACTIONS(2413), - [anon_sym_def] = ACTIONS(2413), - [anon_sym_export_DASHenv] = ACTIONS(2413), - [anon_sym_extern] = ACTIONS(2413), - [anon_sym_module] = ACTIONS(2413), - [anon_sym_use] = ACTIONS(2413), - [anon_sym_LPAREN] = ACTIONS(2413), - [anon_sym_DOLLAR] = ACTIONS(2413), - [anon_sym_error] = ACTIONS(2413), - [anon_sym_list] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2413), - [anon_sym_break] = ACTIONS(2413), - [anon_sym_continue] = ACTIONS(2413), - [anon_sym_for] = ACTIONS(2413), - [anon_sym_in] = ACTIONS(2413), - [anon_sym_loop] = ACTIONS(2413), - [anon_sym_make] = ACTIONS(2413), - [anon_sym_while] = ACTIONS(2413), - [anon_sym_do] = ACTIONS(2413), - [anon_sym_if] = ACTIONS(2413), - [anon_sym_else] = ACTIONS(2413), - [anon_sym_match] = ACTIONS(2413), - [anon_sym_RBRACE] = ACTIONS(2413), - [anon_sym_try] = ACTIONS(2413), - [anon_sym_catch] = ACTIONS(2413), - [anon_sym_return] = ACTIONS(2413), - [anon_sym_source] = ACTIONS(2413), - [anon_sym_source_DASHenv] = ACTIONS(2413), - [anon_sym_register] = ACTIONS(2413), - [anon_sym_hide] = ACTIONS(2413), - [anon_sym_hide_DASHenv] = ACTIONS(2413), - [anon_sym_overlay] = ACTIONS(2413), - [anon_sym_new] = ACTIONS(2413), - [anon_sym_as] = ACTIONS(2413), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2413), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2413), - [aux_sym__val_number_decimal_token1] = ACTIONS(2413), - [aux_sym__val_number_decimal_token2] = ACTIONS(2413), - [aux_sym__val_number_decimal_token3] = ACTIONS(2413), - [aux_sym__val_number_decimal_token4] = ACTIONS(2413), - [aux_sym__val_number_token1] = ACTIONS(2413), - [aux_sym__val_number_token2] = ACTIONS(2413), - [aux_sym__val_number_token3] = ACTIONS(2413), - [anon_sym_DQUOTE] = ACTIONS(2413), - [sym__str_single_quotes] = ACTIONS(2413), - [sym__str_back_ticks] = ACTIONS(2413), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2413), - [sym__entry_separator] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_export] = ACTIONS(2501), + [anon_sym_alias] = ACTIONS(2501), + [anon_sym_let] = ACTIONS(2501), + [anon_sym_let_DASHenv] = ACTIONS(2501), + [anon_sym_mut] = ACTIONS(2501), + [anon_sym_const] = ACTIONS(2501), + [aux_sym_cmd_identifier_token1] = ACTIONS(2501), + [aux_sym_cmd_identifier_token2] = ACTIONS(2501), + [aux_sym_cmd_identifier_token3] = ACTIONS(2501), + [aux_sym_cmd_identifier_token4] = ACTIONS(2501), + [aux_sym_cmd_identifier_token5] = ACTIONS(2501), + [aux_sym_cmd_identifier_token6] = ACTIONS(2501), + [aux_sym_cmd_identifier_token7] = ACTIONS(2501), + [aux_sym_cmd_identifier_token8] = ACTIONS(2501), + [aux_sym_cmd_identifier_token9] = ACTIONS(2501), + [aux_sym_cmd_identifier_token10] = ACTIONS(2501), + [aux_sym_cmd_identifier_token11] = ACTIONS(2501), + [aux_sym_cmd_identifier_token12] = ACTIONS(2501), + [aux_sym_cmd_identifier_token13] = ACTIONS(2501), + [aux_sym_cmd_identifier_token14] = ACTIONS(2501), + [aux_sym_cmd_identifier_token15] = ACTIONS(2501), + [aux_sym_cmd_identifier_token16] = ACTIONS(2501), + [aux_sym_cmd_identifier_token17] = ACTIONS(2501), + [aux_sym_cmd_identifier_token18] = ACTIONS(2501), + [aux_sym_cmd_identifier_token19] = ACTIONS(2501), + [aux_sym_cmd_identifier_token20] = ACTIONS(2501), + [aux_sym_cmd_identifier_token21] = ACTIONS(2501), + [aux_sym_cmd_identifier_token22] = ACTIONS(2501), + [aux_sym_cmd_identifier_token23] = ACTIONS(2501), + [aux_sym_cmd_identifier_token24] = ACTIONS(2501), + [aux_sym_cmd_identifier_token25] = ACTIONS(2501), + [aux_sym_cmd_identifier_token26] = ACTIONS(2501), + [aux_sym_cmd_identifier_token27] = ACTIONS(2501), + [aux_sym_cmd_identifier_token28] = ACTIONS(2501), + [aux_sym_cmd_identifier_token29] = ACTIONS(2501), + [aux_sym_cmd_identifier_token30] = ACTIONS(2501), + [aux_sym_cmd_identifier_token31] = ACTIONS(2501), + [aux_sym_cmd_identifier_token32] = ACTIONS(2501), + [aux_sym_cmd_identifier_token33] = ACTIONS(2501), + [aux_sym_cmd_identifier_token34] = ACTIONS(2501), + [aux_sym_cmd_identifier_token35] = ACTIONS(2501), + [aux_sym_cmd_identifier_token36] = ACTIONS(2501), + [anon_sym_true] = ACTIONS(2501), + [anon_sym_false] = ACTIONS(2501), + [anon_sym_null] = ACTIONS(2501), + [aux_sym_cmd_identifier_token38] = ACTIONS(2501), + [aux_sym_cmd_identifier_token39] = ACTIONS(2501), + [aux_sym_cmd_identifier_token40] = ACTIONS(2501), + [anon_sym_def] = ACTIONS(2501), + [anon_sym_export_DASHenv] = ACTIONS(2501), + [anon_sym_extern] = ACTIONS(2501), + [anon_sym_module] = ACTIONS(2501), + [anon_sym_use] = ACTIONS(2501), + [anon_sym_LPAREN] = ACTIONS(2501), + [anon_sym_DOLLAR] = ACTIONS(2501), + [anon_sym_error] = ACTIONS(2501), + [anon_sym_list] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2501), + [anon_sym_break] = ACTIONS(2501), + [anon_sym_continue] = ACTIONS(2501), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_in] = ACTIONS(2501), + [anon_sym_loop] = ACTIONS(2501), + [anon_sym_make] = ACTIONS(2501), + [anon_sym_while] = ACTIONS(2501), + [anon_sym_do] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2501), + [anon_sym_else] = ACTIONS(2501), + [anon_sym_match] = ACTIONS(2501), + [anon_sym_RBRACE] = ACTIONS(2501), + [anon_sym_try] = ACTIONS(2501), + [anon_sym_catch] = ACTIONS(2501), + [anon_sym_return] = ACTIONS(2501), + [anon_sym_source] = ACTIONS(2501), + [anon_sym_source_DASHenv] = ACTIONS(2501), + [anon_sym_register] = ACTIONS(2501), + [anon_sym_hide] = ACTIONS(2501), + [anon_sym_hide_DASHenv] = ACTIONS(2501), + [anon_sym_overlay] = ACTIONS(2501), + [anon_sym_new] = ACTIONS(2501), + [anon_sym_as] = ACTIONS(2501), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2501), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2501), + [aux_sym__val_number_decimal_token1] = ACTIONS(2501), + [aux_sym__val_number_decimal_token2] = ACTIONS(2501), + [aux_sym__val_number_decimal_token3] = ACTIONS(2501), + [aux_sym__val_number_decimal_token4] = ACTIONS(2501), + [aux_sym__val_number_token1] = ACTIONS(2501), + [aux_sym__val_number_token2] = ACTIONS(2501), + [aux_sym__val_number_token3] = ACTIONS(2501), + [anon_sym_DQUOTE] = ACTIONS(2501), + [sym__str_single_quotes] = ACTIONS(2501), + [sym__str_back_ticks] = ACTIONS(2501), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2501), + [sym__entry_separator] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2501), [anon_sym_POUND] = ACTIONS(3), }, [579] = { [sym_comment] = STATE(579), - [anon_sym_export] = ACTIONS(2417), - [anon_sym_alias] = ACTIONS(2417), - [anon_sym_let] = ACTIONS(2417), - [anon_sym_let_DASHenv] = ACTIONS(2417), - [anon_sym_mut] = ACTIONS(2417), - [anon_sym_const] = ACTIONS(2417), - [aux_sym_cmd_identifier_token1] = ACTIONS(2417), - [aux_sym_cmd_identifier_token2] = ACTIONS(2417), - [aux_sym_cmd_identifier_token3] = ACTIONS(2417), - [aux_sym_cmd_identifier_token4] = ACTIONS(2417), - [aux_sym_cmd_identifier_token5] = ACTIONS(2417), - [aux_sym_cmd_identifier_token6] = ACTIONS(2417), - [aux_sym_cmd_identifier_token7] = ACTIONS(2417), - [aux_sym_cmd_identifier_token8] = ACTIONS(2417), - [aux_sym_cmd_identifier_token9] = ACTIONS(2417), - [aux_sym_cmd_identifier_token10] = ACTIONS(2417), - [aux_sym_cmd_identifier_token11] = ACTIONS(2417), - [aux_sym_cmd_identifier_token12] = ACTIONS(2417), - [aux_sym_cmd_identifier_token13] = ACTIONS(2417), - [aux_sym_cmd_identifier_token14] = ACTIONS(2417), - [aux_sym_cmd_identifier_token15] = ACTIONS(2417), - [aux_sym_cmd_identifier_token16] = ACTIONS(2417), - [aux_sym_cmd_identifier_token17] = ACTIONS(2417), - [aux_sym_cmd_identifier_token18] = ACTIONS(2417), - [aux_sym_cmd_identifier_token19] = ACTIONS(2417), - [aux_sym_cmd_identifier_token20] = ACTIONS(2417), - [aux_sym_cmd_identifier_token21] = ACTIONS(2417), - [aux_sym_cmd_identifier_token22] = ACTIONS(2417), - [aux_sym_cmd_identifier_token23] = ACTIONS(2417), - [aux_sym_cmd_identifier_token24] = ACTIONS(2417), - [aux_sym_cmd_identifier_token25] = ACTIONS(2417), - [aux_sym_cmd_identifier_token26] = ACTIONS(2417), - [aux_sym_cmd_identifier_token27] = ACTIONS(2417), - [aux_sym_cmd_identifier_token28] = ACTIONS(2417), - [aux_sym_cmd_identifier_token29] = ACTIONS(2417), - [aux_sym_cmd_identifier_token30] = ACTIONS(2417), - [aux_sym_cmd_identifier_token31] = ACTIONS(2417), - [aux_sym_cmd_identifier_token32] = ACTIONS(2417), - [aux_sym_cmd_identifier_token33] = ACTIONS(2417), - [aux_sym_cmd_identifier_token34] = ACTIONS(2417), - [aux_sym_cmd_identifier_token35] = ACTIONS(2417), - [aux_sym_cmd_identifier_token36] = ACTIONS(2417), - [anon_sym_true] = ACTIONS(2417), - [anon_sym_false] = ACTIONS(2417), - [anon_sym_null] = ACTIONS(2417), - [aux_sym_cmd_identifier_token38] = ACTIONS(2417), - [aux_sym_cmd_identifier_token39] = ACTIONS(2417), - [aux_sym_cmd_identifier_token40] = ACTIONS(2417), - [anon_sym_def] = ACTIONS(2417), - [anon_sym_export_DASHenv] = ACTIONS(2417), - [anon_sym_extern] = ACTIONS(2417), - [anon_sym_module] = ACTIONS(2417), - [anon_sym_use] = ACTIONS(2417), - [anon_sym_LPAREN] = ACTIONS(2417), - [anon_sym_DOLLAR] = ACTIONS(2417), - [anon_sym_error] = ACTIONS(2417), - [anon_sym_list] = ACTIONS(2417), - [anon_sym_DASH] = ACTIONS(2417), - [anon_sym_break] = ACTIONS(2417), - [anon_sym_continue] = ACTIONS(2417), - [anon_sym_for] = ACTIONS(2417), - [anon_sym_in] = ACTIONS(2417), - [anon_sym_loop] = ACTIONS(2417), - [anon_sym_make] = ACTIONS(2417), - [anon_sym_while] = ACTIONS(2417), - [anon_sym_do] = ACTIONS(2417), - [anon_sym_if] = ACTIONS(2417), - [anon_sym_else] = ACTIONS(2417), - [anon_sym_match] = ACTIONS(2417), - [anon_sym_RBRACE] = ACTIONS(2417), - [anon_sym_try] = ACTIONS(2417), - [anon_sym_catch] = ACTIONS(2417), - [anon_sym_return] = ACTIONS(2417), - [anon_sym_source] = ACTIONS(2417), - [anon_sym_source_DASHenv] = ACTIONS(2417), - [anon_sym_register] = ACTIONS(2417), - [anon_sym_hide] = ACTIONS(2417), - [anon_sym_hide_DASHenv] = ACTIONS(2417), - [anon_sym_overlay] = ACTIONS(2417), - [anon_sym_new] = ACTIONS(2417), - [anon_sym_as] = ACTIONS(2417), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2417), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2417), - [aux_sym__val_number_decimal_token1] = ACTIONS(2417), - [aux_sym__val_number_decimal_token2] = ACTIONS(2417), - [aux_sym__val_number_decimal_token3] = ACTIONS(2417), - [aux_sym__val_number_decimal_token4] = ACTIONS(2417), - [aux_sym__val_number_token1] = ACTIONS(2417), - [aux_sym__val_number_token2] = ACTIONS(2417), - [aux_sym__val_number_token3] = ACTIONS(2417), - [anon_sym_DQUOTE] = ACTIONS(2417), - [sym__str_single_quotes] = ACTIONS(2417), - [sym__str_back_ticks] = ACTIONS(2417), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2417), - [sym__entry_separator] = ACTIONS(2419), - [anon_sym_PLUS] = ACTIONS(2417), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1705), + [anon_sym_alias] = ACTIONS(1705), + [anon_sym_let] = ACTIONS(1705), + [anon_sym_let_DASHenv] = ACTIONS(1705), + [anon_sym_mut] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [aux_sym_cmd_identifier_token1] = ACTIONS(1705), + [aux_sym_cmd_identifier_token2] = ACTIONS(1705), + [aux_sym_cmd_identifier_token3] = ACTIONS(1705), + [aux_sym_cmd_identifier_token4] = ACTIONS(1705), + [aux_sym_cmd_identifier_token5] = ACTIONS(1705), + [aux_sym_cmd_identifier_token6] = ACTIONS(1705), + [aux_sym_cmd_identifier_token7] = ACTIONS(1705), + [aux_sym_cmd_identifier_token8] = ACTIONS(1705), + [aux_sym_cmd_identifier_token9] = ACTIONS(1705), + [aux_sym_cmd_identifier_token10] = ACTIONS(1705), + [aux_sym_cmd_identifier_token11] = ACTIONS(1705), + [aux_sym_cmd_identifier_token12] = ACTIONS(1705), + [aux_sym_cmd_identifier_token13] = ACTIONS(1705), + [aux_sym_cmd_identifier_token14] = ACTIONS(1705), + [aux_sym_cmd_identifier_token15] = ACTIONS(1705), + [aux_sym_cmd_identifier_token16] = ACTIONS(1705), + [aux_sym_cmd_identifier_token17] = ACTIONS(1705), + [aux_sym_cmd_identifier_token18] = ACTIONS(1705), + [aux_sym_cmd_identifier_token19] = ACTIONS(1705), + [aux_sym_cmd_identifier_token20] = ACTIONS(1705), + [aux_sym_cmd_identifier_token21] = ACTIONS(1705), + [aux_sym_cmd_identifier_token22] = ACTIONS(1705), + [aux_sym_cmd_identifier_token23] = ACTIONS(1705), + [aux_sym_cmd_identifier_token24] = ACTIONS(1705), + [aux_sym_cmd_identifier_token25] = ACTIONS(1705), + [aux_sym_cmd_identifier_token26] = ACTIONS(1705), + [aux_sym_cmd_identifier_token27] = ACTIONS(1705), + [aux_sym_cmd_identifier_token28] = ACTIONS(1705), + [aux_sym_cmd_identifier_token29] = ACTIONS(1705), + [aux_sym_cmd_identifier_token30] = ACTIONS(1705), + [aux_sym_cmd_identifier_token31] = ACTIONS(1705), + [aux_sym_cmd_identifier_token32] = ACTIONS(1705), + [aux_sym_cmd_identifier_token33] = ACTIONS(1705), + [aux_sym_cmd_identifier_token34] = ACTIONS(1705), + [aux_sym_cmd_identifier_token35] = ACTIONS(1705), + [aux_sym_cmd_identifier_token36] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1707), + [anon_sym_false] = ACTIONS(1707), + [anon_sym_null] = ACTIONS(1707), + [aux_sym_cmd_identifier_token38] = ACTIONS(1705), + [aux_sym_cmd_identifier_token39] = ACTIONS(1707), + [aux_sym_cmd_identifier_token40] = ACTIONS(1707), + [anon_sym_def] = ACTIONS(1705), + [anon_sym_export_DASHenv] = ACTIONS(1705), + [anon_sym_extern] = ACTIONS(1705), + [anon_sym_module] = ACTIONS(1705), + [anon_sym_use] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1707), + [anon_sym_DOLLAR] = ACTIONS(1707), + [anon_sym_error] = ACTIONS(1705), + [anon_sym_list] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_break] = ACTIONS(1705), + [anon_sym_continue] = ACTIONS(1705), + [anon_sym_for] = ACTIONS(1705), + [anon_sym_in] = ACTIONS(1705), + [anon_sym_loop] = ACTIONS(1705), + [anon_sym_make] = ACTIONS(1705), + [anon_sym_while] = ACTIONS(1705), + [anon_sym_do] = ACTIONS(1705), + [anon_sym_if] = ACTIONS(1705), + [anon_sym_else] = ACTIONS(1705), + [anon_sym_match] = ACTIONS(1705), + [anon_sym_RBRACE] = ACTIONS(1707), + [anon_sym_try] = ACTIONS(1705), + [anon_sym_catch] = ACTIONS(1705), + [anon_sym_return] = ACTIONS(1705), + [anon_sym_source] = ACTIONS(1705), + [anon_sym_source_DASHenv] = ACTIONS(1705), + [anon_sym_register] = ACTIONS(1705), + [anon_sym_hide] = ACTIONS(1705), + [anon_sym_hide_DASHenv] = ACTIONS(1705), + [anon_sym_overlay] = ACTIONS(1705), + [anon_sym_new] = ACTIONS(1705), + [anon_sym_as] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1707), + [aux_sym__immediate_decimal_token2] = ACTIONS(2505), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1707), + [aux_sym__val_number_decimal_token1] = ACTIONS(1705), + [aux_sym__val_number_decimal_token2] = ACTIONS(1707), + [aux_sym__val_number_decimal_token3] = ACTIONS(1707), + [aux_sym__val_number_decimal_token4] = ACTIONS(1707), + [aux_sym__val_number_token1] = ACTIONS(1707), + [aux_sym__val_number_token2] = ACTIONS(1707), + [aux_sym__val_number_token3] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1707), + [sym__str_single_quotes] = ACTIONS(1707), + [sym__str_back_ticks] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_POUND] = ACTIONS(247), }, [580] = { [sym_comment] = STATE(580), - [anon_sym_export] = ACTIONS(2421), - [anon_sym_alias] = ACTIONS(2421), - [anon_sym_let] = ACTIONS(2421), - [anon_sym_let_DASHenv] = ACTIONS(2421), - [anon_sym_mut] = ACTIONS(2421), - [anon_sym_const] = ACTIONS(2421), - [aux_sym_cmd_identifier_token1] = ACTIONS(2421), - [aux_sym_cmd_identifier_token2] = ACTIONS(2421), - [aux_sym_cmd_identifier_token3] = ACTIONS(2421), - [aux_sym_cmd_identifier_token4] = ACTIONS(2421), - [aux_sym_cmd_identifier_token5] = ACTIONS(2421), - [aux_sym_cmd_identifier_token6] = ACTIONS(2421), - [aux_sym_cmd_identifier_token7] = ACTIONS(2421), - [aux_sym_cmd_identifier_token8] = ACTIONS(2421), - [aux_sym_cmd_identifier_token9] = ACTIONS(2421), - [aux_sym_cmd_identifier_token10] = ACTIONS(2421), - [aux_sym_cmd_identifier_token11] = ACTIONS(2421), - [aux_sym_cmd_identifier_token12] = ACTIONS(2421), - [aux_sym_cmd_identifier_token13] = ACTIONS(2421), - [aux_sym_cmd_identifier_token14] = ACTIONS(2421), - [aux_sym_cmd_identifier_token15] = ACTIONS(2421), - [aux_sym_cmd_identifier_token16] = ACTIONS(2421), - [aux_sym_cmd_identifier_token17] = ACTIONS(2421), - [aux_sym_cmd_identifier_token18] = ACTIONS(2421), - [aux_sym_cmd_identifier_token19] = ACTIONS(2421), - [aux_sym_cmd_identifier_token20] = ACTIONS(2421), - [aux_sym_cmd_identifier_token21] = ACTIONS(2421), - [aux_sym_cmd_identifier_token22] = ACTIONS(2421), - [aux_sym_cmd_identifier_token23] = ACTIONS(2421), - [aux_sym_cmd_identifier_token24] = ACTIONS(2421), - [aux_sym_cmd_identifier_token25] = ACTIONS(2421), - [aux_sym_cmd_identifier_token26] = ACTIONS(2421), - [aux_sym_cmd_identifier_token27] = ACTIONS(2421), - [aux_sym_cmd_identifier_token28] = ACTIONS(2421), - [aux_sym_cmd_identifier_token29] = ACTIONS(2421), - [aux_sym_cmd_identifier_token30] = ACTIONS(2421), - [aux_sym_cmd_identifier_token31] = ACTIONS(2421), - [aux_sym_cmd_identifier_token32] = ACTIONS(2421), - [aux_sym_cmd_identifier_token33] = ACTIONS(2421), - [aux_sym_cmd_identifier_token34] = ACTIONS(2421), - [aux_sym_cmd_identifier_token35] = ACTIONS(2421), - [aux_sym_cmd_identifier_token36] = ACTIONS(2421), - [anon_sym_true] = ACTIONS(2421), - [anon_sym_false] = ACTIONS(2421), - [anon_sym_null] = ACTIONS(2421), - [aux_sym_cmd_identifier_token38] = ACTIONS(2421), - [aux_sym_cmd_identifier_token39] = ACTIONS(2421), - [aux_sym_cmd_identifier_token40] = ACTIONS(2421), - [anon_sym_def] = ACTIONS(2421), - [anon_sym_export_DASHenv] = ACTIONS(2421), - [anon_sym_extern] = ACTIONS(2421), - [anon_sym_module] = ACTIONS(2421), - [anon_sym_use] = ACTIONS(2421), - [anon_sym_LPAREN] = ACTIONS(2421), - [anon_sym_DOLLAR] = ACTIONS(2421), - [anon_sym_error] = ACTIONS(2421), - [anon_sym_list] = ACTIONS(2421), - [anon_sym_DASH] = ACTIONS(2421), - [anon_sym_break] = ACTIONS(2421), - [anon_sym_continue] = ACTIONS(2421), - [anon_sym_for] = ACTIONS(2421), - [anon_sym_in] = ACTIONS(2421), - [anon_sym_loop] = ACTIONS(2421), - [anon_sym_make] = ACTIONS(2421), - [anon_sym_while] = ACTIONS(2421), - [anon_sym_do] = ACTIONS(2421), - [anon_sym_if] = ACTIONS(2421), - [anon_sym_else] = ACTIONS(2421), - [anon_sym_match] = ACTIONS(2421), - [anon_sym_RBRACE] = ACTIONS(2421), - [anon_sym_try] = ACTIONS(2421), - [anon_sym_catch] = ACTIONS(2421), - [anon_sym_return] = ACTIONS(2421), - [anon_sym_source] = ACTIONS(2421), - [anon_sym_source_DASHenv] = ACTIONS(2421), - [anon_sym_register] = ACTIONS(2421), - [anon_sym_hide] = ACTIONS(2421), - [anon_sym_hide_DASHenv] = ACTIONS(2421), - [anon_sym_overlay] = ACTIONS(2421), - [anon_sym_new] = ACTIONS(2421), - [anon_sym_as] = ACTIONS(2421), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2421), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2421), - [aux_sym__val_number_decimal_token1] = ACTIONS(2421), - [aux_sym__val_number_decimal_token2] = ACTIONS(2421), - [aux_sym__val_number_decimal_token3] = ACTIONS(2421), - [aux_sym__val_number_decimal_token4] = ACTIONS(2421), - [aux_sym__val_number_token1] = ACTIONS(2421), - [aux_sym__val_number_token2] = ACTIONS(2421), - [aux_sym__val_number_token3] = ACTIONS(2421), - [anon_sym_DQUOTE] = ACTIONS(2421), - [sym__str_single_quotes] = ACTIONS(2421), - [sym__str_back_ticks] = ACTIONS(2421), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2421), - [sym__entry_separator] = ACTIONS(2423), - [anon_sym_PLUS] = ACTIONS(2421), + [anon_sym_export] = ACTIONS(1643), + [anon_sym_alias] = ACTIONS(1643), + [anon_sym_let] = ACTIONS(1643), + [anon_sym_let_DASHenv] = ACTIONS(1643), + [anon_sym_mut] = ACTIONS(1643), + [anon_sym_const] = ACTIONS(1643), + [aux_sym_cmd_identifier_token1] = ACTIONS(1643), + [aux_sym_cmd_identifier_token2] = ACTIONS(1643), + [aux_sym_cmd_identifier_token3] = ACTIONS(1643), + [aux_sym_cmd_identifier_token4] = ACTIONS(1643), + [aux_sym_cmd_identifier_token5] = ACTIONS(1643), + [aux_sym_cmd_identifier_token6] = ACTIONS(1643), + [aux_sym_cmd_identifier_token7] = ACTIONS(1643), + [aux_sym_cmd_identifier_token8] = ACTIONS(1643), + [aux_sym_cmd_identifier_token9] = ACTIONS(1643), + [aux_sym_cmd_identifier_token10] = ACTIONS(1643), + [aux_sym_cmd_identifier_token11] = ACTIONS(1643), + [aux_sym_cmd_identifier_token12] = ACTIONS(1643), + [aux_sym_cmd_identifier_token13] = ACTIONS(1643), + [aux_sym_cmd_identifier_token14] = ACTIONS(1643), + [aux_sym_cmd_identifier_token15] = ACTIONS(1643), + [aux_sym_cmd_identifier_token16] = ACTIONS(1643), + [aux_sym_cmd_identifier_token17] = ACTIONS(1643), + [aux_sym_cmd_identifier_token18] = ACTIONS(1643), + [aux_sym_cmd_identifier_token19] = ACTIONS(1643), + [aux_sym_cmd_identifier_token20] = ACTIONS(1643), + [aux_sym_cmd_identifier_token21] = ACTIONS(1643), + [aux_sym_cmd_identifier_token22] = ACTIONS(1643), + [aux_sym_cmd_identifier_token23] = ACTIONS(1643), + [aux_sym_cmd_identifier_token24] = ACTIONS(1643), + [aux_sym_cmd_identifier_token25] = ACTIONS(1643), + [aux_sym_cmd_identifier_token26] = ACTIONS(1643), + [aux_sym_cmd_identifier_token27] = ACTIONS(1643), + [aux_sym_cmd_identifier_token28] = ACTIONS(1643), + [aux_sym_cmd_identifier_token29] = ACTIONS(1643), + [aux_sym_cmd_identifier_token30] = ACTIONS(1643), + [aux_sym_cmd_identifier_token31] = ACTIONS(1643), + [aux_sym_cmd_identifier_token32] = ACTIONS(1643), + [aux_sym_cmd_identifier_token33] = ACTIONS(1643), + [aux_sym_cmd_identifier_token34] = ACTIONS(1643), + [aux_sym_cmd_identifier_token35] = ACTIONS(1643), + [aux_sym_cmd_identifier_token36] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [anon_sym_null] = ACTIONS(1643), + [aux_sym_cmd_identifier_token38] = ACTIONS(1643), + [aux_sym_cmd_identifier_token39] = ACTIONS(1643), + [aux_sym_cmd_identifier_token40] = ACTIONS(1643), + [anon_sym_def] = ACTIONS(1643), + [anon_sym_export_DASHenv] = ACTIONS(1643), + [anon_sym_extern] = ACTIONS(1643), + [anon_sym_module] = ACTIONS(1643), + [anon_sym_use] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(1643), + [anon_sym_error] = ACTIONS(1643), + [anon_sym_list] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_break] = ACTIONS(1643), + [anon_sym_continue] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_loop] = ACTIONS(1643), + [anon_sym_make] = ACTIONS(1643), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_do] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_else] = ACTIONS(1643), + [anon_sym_match] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), + [anon_sym_try] = ACTIONS(1643), + [anon_sym_catch] = ACTIONS(1643), + [anon_sym_return] = ACTIONS(1643), + [anon_sym_source] = ACTIONS(1643), + [anon_sym_source_DASHenv] = ACTIONS(1643), + [anon_sym_register] = ACTIONS(1643), + [anon_sym_hide] = ACTIONS(1643), + [anon_sym_hide_DASHenv] = ACTIONS(1643), + [anon_sym_overlay] = ACTIONS(1643), + [anon_sym_new] = ACTIONS(1643), + [anon_sym_as] = ACTIONS(1643), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1643), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1643), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1643), + [aux_sym__val_number_decimal_token3] = ACTIONS(1643), + [aux_sym__val_number_decimal_token4] = ACTIONS(1643), + [aux_sym__val_number_token1] = ACTIONS(1643), + [aux_sym__val_number_token2] = ACTIONS(1643), + [aux_sym__val_number_token3] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1643), + [sym__str_single_quotes] = ACTIONS(1643), + [sym__str_back_ticks] = ACTIONS(1643), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1643), + [sym__entry_separator] = ACTIONS(1645), + [anon_sym_PLUS] = ACTIONS(1643), [anon_sym_POUND] = ACTIONS(3), }, [581] = { [sym_comment] = STATE(581), - [anon_sym_export] = ACTIONS(2425), - [anon_sym_alias] = ACTIONS(2425), - [anon_sym_let] = ACTIONS(2425), - [anon_sym_let_DASHenv] = ACTIONS(2425), - [anon_sym_mut] = ACTIONS(2425), - [anon_sym_const] = ACTIONS(2425), - [aux_sym_cmd_identifier_token1] = ACTIONS(2425), - [aux_sym_cmd_identifier_token2] = ACTIONS(2425), - [aux_sym_cmd_identifier_token3] = ACTIONS(2425), - [aux_sym_cmd_identifier_token4] = ACTIONS(2425), - [aux_sym_cmd_identifier_token5] = ACTIONS(2425), - [aux_sym_cmd_identifier_token6] = ACTIONS(2425), - [aux_sym_cmd_identifier_token7] = ACTIONS(2425), - [aux_sym_cmd_identifier_token8] = ACTIONS(2425), - [aux_sym_cmd_identifier_token9] = ACTIONS(2425), - [aux_sym_cmd_identifier_token10] = ACTIONS(2425), - [aux_sym_cmd_identifier_token11] = ACTIONS(2425), - [aux_sym_cmd_identifier_token12] = ACTIONS(2425), - [aux_sym_cmd_identifier_token13] = ACTIONS(2425), - [aux_sym_cmd_identifier_token14] = ACTIONS(2425), - [aux_sym_cmd_identifier_token15] = ACTIONS(2425), - [aux_sym_cmd_identifier_token16] = ACTIONS(2425), - [aux_sym_cmd_identifier_token17] = ACTIONS(2425), - [aux_sym_cmd_identifier_token18] = ACTIONS(2425), - [aux_sym_cmd_identifier_token19] = ACTIONS(2425), - [aux_sym_cmd_identifier_token20] = ACTIONS(2425), - [aux_sym_cmd_identifier_token21] = ACTIONS(2425), - [aux_sym_cmd_identifier_token22] = ACTIONS(2425), - [aux_sym_cmd_identifier_token23] = ACTIONS(2425), - [aux_sym_cmd_identifier_token24] = ACTIONS(2425), - [aux_sym_cmd_identifier_token25] = ACTIONS(2425), - [aux_sym_cmd_identifier_token26] = ACTIONS(2425), - [aux_sym_cmd_identifier_token27] = ACTIONS(2425), - [aux_sym_cmd_identifier_token28] = ACTIONS(2425), - [aux_sym_cmd_identifier_token29] = ACTIONS(2425), - [aux_sym_cmd_identifier_token30] = ACTIONS(2425), - [aux_sym_cmd_identifier_token31] = ACTIONS(2425), - [aux_sym_cmd_identifier_token32] = ACTIONS(2425), - [aux_sym_cmd_identifier_token33] = ACTIONS(2425), - [aux_sym_cmd_identifier_token34] = ACTIONS(2425), - [aux_sym_cmd_identifier_token35] = ACTIONS(2425), - [aux_sym_cmd_identifier_token36] = ACTIONS(2425), - [anon_sym_true] = ACTIONS(2425), - [anon_sym_false] = ACTIONS(2425), - [anon_sym_null] = ACTIONS(2425), - [aux_sym_cmd_identifier_token38] = ACTIONS(2425), - [aux_sym_cmd_identifier_token39] = ACTIONS(2425), - [aux_sym_cmd_identifier_token40] = ACTIONS(2425), - [anon_sym_def] = ACTIONS(2425), - [anon_sym_export_DASHenv] = ACTIONS(2425), - [anon_sym_extern] = ACTIONS(2425), - [anon_sym_module] = ACTIONS(2425), - [anon_sym_use] = ACTIONS(2425), - [anon_sym_LPAREN] = ACTIONS(2425), - [anon_sym_DOLLAR] = ACTIONS(2425), - [anon_sym_error] = ACTIONS(2425), - [anon_sym_list] = ACTIONS(2425), - [anon_sym_DASH] = ACTIONS(2425), - [anon_sym_break] = ACTIONS(2425), - [anon_sym_continue] = ACTIONS(2425), - [anon_sym_for] = ACTIONS(2425), - [anon_sym_in] = ACTIONS(2425), - [anon_sym_loop] = ACTIONS(2425), - [anon_sym_make] = ACTIONS(2425), - [anon_sym_while] = ACTIONS(2425), - [anon_sym_do] = ACTIONS(2425), - [anon_sym_if] = ACTIONS(2425), - [anon_sym_else] = ACTIONS(2425), - [anon_sym_match] = ACTIONS(2425), - [anon_sym_RBRACE] = ACTIONS(2425), - [anon_sym_try] = ACTIONS(2425), - [anon_sym_catch] = ACTIONS(2425), - [anon_sym_return] = ACTIONS(2425), - [anon_sym_source] = ACTIONS(2425), - [anon_sym_source_DASHenv] = ACTIONS(2425), - [anon_sym_register] = ACTIONS(2425), - [anon_sym_hide] = ACTIONS(2425), - [anon_sym_hide_DASHenv] = ACTIONS(2425), - [anon_sym_overlay] = ACTIONS(2425), - [anon_sym_new] = ACTIONS(2425), - [anon_sym_as] = ACTIONS(2425), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2425), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2425), - [aux_sym__val_number_decimal_token1] = ACTIONS(2425), - [aux_sym__val_number_decimal_token2] = ACTIONS(2425), - [aux_sym__val_number_decimal_token3] = ACTIONS(2425), - [aux_sym__val_number_decimal_token4] = ACTIONS(2425), - [aux_sym__val_number_token1] = ACTIONS(2425), - [aux_sym__val_number_token2] = ACTIONS(2425), - [aux_sym__val_number_token3] = ACTIONS(2425), - [anon_sym_DQUOTE] = ACTIONS(2425), - [sym__str_single_quotes] = ACTIONS(2425), - [sym__str_back_ticks] = ACTIONS(2425), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2425), - [sym__entry_separator] = ACTIONS(2427), - [anon_sym_PLUS] = ACTIONS(2425), + [anon_sym_export] = ACTIONS(1631), + [anon_sym_alias] = ACTIONS(1631), + [anon_sym_let] = ACTIONS(1631), + [anon_sym_let_DASHenv] = ACTIONS(1631), + [anon_sym_mut] = ACTIONS(1631), + [anon_sym_const] = ACTIONS(1631), + [aux_sym_cmd_identifier_token1] = ACTIONS(1631), + [aux_sym_cmd_identifier_token2] = ACTIONS(1631), + [aux_sym_cmd_identifier_token3] = ACTIONS(1631), + [aux_sym_cmd_identifier_token4] = ACTIONS(1631), + [aux_sym_cmd_identifier_token5] = ACTIONS(1631), + [aux_sym_cmd_identifier_token6] = ACTIONS(1631), + [aux_sym_cmd_identifier_token7] = ACTIONS(1631), + [aux_sym_cmd_identifier_token8] = ACTIONS(1631), + [aux_sym_cmd_identifier_token9] = ACTIONS(1631), + [aux_sym_cmd_identifier_token10] = ACTIONS(1631), + [aux_sym_cmd_identifier_token11] = ACTIONS(1631), + [aux_sym_cmd_identifier_token12] = ACTIONS(1631), + [aux_sym_cmd_identifier_token13] = ACTIONS(1631), + [aux_sym_cmd_identifier_token14] = ACTIONS(1631), + [aux_sym_cmd_identifier_token15] = ACTIONS(1631), + [aux_sym_cmd_identifier_token16] = ACTIONS(1631), + [aux_sym_cmd_identifier_token17] = ACTIONS(1631), + [aux_sym_cmd_identifier_token18] = ACTIONS(1631), + [aux_sym_cmd_identifier_token19] = ACTIONS(1631), + [aux_sym_cmd_identifier_token20] = ACTIONS(1631), + [aux_sym_cmd_identifier_token21] = ACTIONS(1631), + [aux_sym_cmd_identifier_token22] = ACTIONS(1631), + [aux_sym_cmd_identifier_token23] = ACTIONS(1631), + [aux_sym_cmd_identifier_token24] = ACTIONS(1631), + [aux_sym_cmd_identifier_token25] = ACTIONS(1631), + [aux_sym_cmd_identifier_token26] = ACTIONS(1631), + [aux_sym_cmd_identifier_token27] = ACTIONS(1631), + [aux_sym_cmd_identifier_token28] = ACTIONS(1631), + [aux_sym_cmd_identifier_token29] = ACTIONS(1631), + [aux_sym_cmd_identifier_token30] = ACTIONS(1631), + [aux_sym_cmd_identifier_token31] = ACTIONS(1631), + [aux_sym_cmd_identifier_token32] = ACTIONS(1631), + [aux_sym_cmd_identifier_token33] = ACTIONS(1631), + [aux_sym_cmd_identifier_token34] = ACTIONS(1631), + [aux_sym_cmd_identifier_token35] = ACTIONS(1631), + [aux_sym_cmd_identifier_token36] = ACTIONS(1631), + [anon_sym_true] = ACTIONS(1631), + [anon_sym_false] = ACTIONS(1631), + [anon_sym_null] = ACTIONS(1631), + [aux_sym_cmd_identifier_token38] = ACTIONS(1631), + [aux_sym_cmd_identifier_token39] = ACTIONS(1631), + [aux_sym_cmd_identifier_token40] = ACTIONS(1631), + [anon_sym_def] = ACTIONS(1631), + [anon_sym_export_DASHenv] = ACTIONS(1631), + [anon_sym_extern] = ACTIONS(1631), + [anon_sym_module] = ACTIONS(1631), + [anon_sym_use] = ACTIONS(1631), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_DOLLAR] = ACTIONS(1631), + [anon_sym_error] = ACTIONS(1631), + [anon_sym_list] = ACTIONS(1631), + [anon_sym_DASH] = ACTIONS(1631), + [anon_sym_break] = ACTIONS(1631), + [anon_sym_continue] = ACTIONS(1631), + [anon_sym_for] = ACTIONS(1631), + [anon_sym_in] = ACTIONS(1631), + [anon_sym_loop] = ACTIONS(1631), + [anon_sym_make] = ACTIONS(1631), + [anon_sym_while] = ACTIONS(1631), + [anon_sym_do] = ACTIONS(1631), + [anon_sym_if] = ACTIONS(1631), + [anon_sym_else] = ACTIONS(1631), + [anon_sym_match] = ACTIONS(1631), + [anon_sym_RBRACE] = ACTIONS(1631), + [anon_sym_try] = ACTIONS(1631), + [anon_sym_catch] = ACTIONS(1631), + [anon_sym_return] = ACTIONS(1631), + [anon_sym_source] = ACTIONS(1631), + [anon_sym_source_DASHenv] = ACTIONS(1631), + [anon_sym_register] = ACTIONS(1631), + [anon_sym_hide] = ACTIONS(1631), + [anon_sym_hide_DASHenv] = ACTIONS(1631), + [anon_sym_overlay] = ACTIONS(1631), + [anon_sym_new] = ACTIONS(1631), + [anon_sym_as] = ACTIONS(1631), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1631), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1631), + [aux_sym__val_number_decimal_token1] = ACTIONS(1631), + [aux_sym__val_number_decimal_token2] = ACTIONS(1631), + [aux_sym__val_number_decimal_token3] = ACTIONS(1631), + [aux_sym__val_number_decimal_token4] = ACTIONS(1631), + [aux_sym__val_number_token1] = ACTIONS(1631), + [aux_sym__val_number_token2] = ACTIONS(1631), + [aux_sym__val_number_token3] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [sym__str_single_quotes] = ACTIONS(1631), + [sym__str_back_ticks] = ACTIONS(1631), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1631), + [sym__entry_separator] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1631), [anon_sym_POUND] = ACTIONS(3), }, [582] = { [sym_comment] = STATE(582), - [anon_sym_export] = ACTIONS(2429), - [anon_sym_alias] = ACTIONS(2429), - [anon_sym_let] = ACTIONS(2429), - [anon_sym_let_DASHenv] = ACTIONS(2429), - [anon_sym_mut] = ACTIONS(2429), - [anon_sym_const] = ACTIONS(2429), - [aux_sym_cmd_identifier_token1] = ACTIONS(2429), - [aux_sym_cmd_identifier_token2] = ACTIONS(2429), - [aux_sym_cmd_identifier_token3] = ACTIONS(2429), - [aux_sym_cmd_identifier_token4] = ACTIONS(2429), - [aux_sym_cmd_identifier_token5] = ACTIONS(2429), - [aux_sym_cmd_identifier_token6] = ACTIONS(2429), - [aux_sym_cmd_identifier_token7] = ACTIONS(2429), - [aux_sym_cmd_identifier_token8] = ACTIONS(2429), - [aux_sym_cmd_identifier_token9] = ACTIONS(2429), - [aux_sym_cmd_identifier_token10] = ACTIONS(2429), - [aux_sym_cmd_identifier_token11] = ACTIONS(2429), - [aux_sym_cmd_identifier_token12] = ACTIONS(2429), - [aux_sym_cmd_identifier_token13] = ACTIONS(2429), - [aux_sym_cmd_identifier_token14] = ACTIONS(2429), - [aux_sym_cmd_identifier_token15] = ACTIONS(2429), - [aux_sym_cmd_identifier_token16] = ACTIONS(2429), - [aux_sym_cmd_identifier_token17] = ACTIONS(2429), - [aux_sym_cmd_identifier_token18] = ACTIONS(2429), - [aux_sym_cmd_identifier_token19] = ACTIONS(2429), - [aux_sym_cmd_identifier_token20] = ACTIONS(2429), - [aux_sym_cmd_identifier_token21] = ACTIONS(2429), - [aux_sym_cmd_identifier_token22] = ACTIONS(2429), - [aux_sym_cmd_identifier_token23] = ACTIONS(2429), - [aux_sym_cmd_identifier_token24] = ACTIONS(2429), - [aux_sym_cmd_identifier_token25] = ACTIONS(2429), - [aux_sym_cmd_identifier_token26] = ACTIONS(2429), - [aux_sym_cmd_identifier_token27] = ACTIONS(2429), - [aux_sym_cmd_identifier_token28] = ACTIONS(2429), - [aux_sym_cmd_identifier_token29] = ACTIONS(2429), - [aux_sym_cmd_identifier_token30] = ACTIONS(2429), - [aux_sym_cmd_identifier_token31] = ACTIONS(2429), - [aux_sym_cmd_identifier_token32] = ACTIONS(2429), - [aux_sym_cmd_identifier_token33] = ACTIONS(2429), - [aux_sym_cmd_identifier_token34] = ACTIONS(2429), - [aux_sym_cmd_identifier_token35] = ACTIONS(2429), - [aux_sym_cmd_identifier_token36] = ACTIONS(2429), - [anon_sym_true] = ACTIONS(2429), - [anon_sym_false] = ACTIONS(2429), - [anon_sym_null] = ACTIONS(2429), - [aux_sym_cmd_identifier_token38] = ACTIONS(2429), - [aux_sym_cmd_identifier_token39] = ACTIONS(2429), - [aux_sym_cmd_identifier_token40] = ACTIONS(2429), - [anon_sym_def] = ACTIONS(2429), - [anon_sym_export_DASHenv] = ACTIONS(2429), - [anon_sym_extern] = ACTIONS(2429), - [anon_sym_module] = ACTIONS(2429), - [anon_sym_use] = ACTIONS(2429), - [anon_sym_LPAREN] = ACTIONS(2429), - [anon_sym_DOLLAR] = ACTIONS(2429), - [anon_sym_error] = ACTIONS(2429), - [anon_sym_list] = ACTIONS(2429), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_break] = ACTIONS(2429), - [anon_sym_continue] = ACTIONS(2429), - [anon_sym_for] = ACTIONS(2429), - [anon_sym_in] = ACTIONS(2429), - [anon_sym_loop] = ACTIONS(2429), - [anon_sym_make] = ACTIONS(2429), - [anon_sym_while] = ACTIONS(2429), - [anon_sym_do] = ACTIONS(2429), - [anon_sym_if] = ACTIONS(2429), - [anon_sym_else] = ACTIONS(2429), - [anon_sym_match] = ACTIONS(2429), - [anon_sym_RBRACE] = ACTIONS(2429), - [anon_sym_try] = ACTIONS(2429), - [anon_sym_catch] = ACTIONS(2429), - [anon_sym_return] = ACTIONS(2429), - [anon_sym_source] = ACTIONS(2429), - [anon_sym_source_DASHenv] = ACTIONS(2429), - [anon_sym_register] = ACTIONS(2429), - [anon_sym_hide] = ACTIONS(2429), - [anon_sym_hide_DASHenv] = ACTIONS(2429), - [anon_sym_overlay] = ACTIONS(2429), - [anon_sym_new] = ACTIONS(2429), - [anon_sym_as] = ACTIONS(2429), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2429), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2429), - [aux_sym__val_number_decimal_token1] = ACTIONS(2429), - [aux_sym__val_number_decimal_token2] = ACTIONS(2429), - [aux_sym__val_number_decimal_token3] = ACTIONS(2429), - [aux_sym__val_number_decimal_token4] = ACTIONS(2429), - [aux_sym__val_number_token1] = ACTIONS(2429), - [aux_sym__val_number_token2] = ACTIONS(2429), - [aux_sym__val_number_token3] = ACTIONS(2429), - [anon_sym_DQUOTE] = ACTIONS(2429), - [sym__str_single_quotes] = ACTIONS(2429), - [sym__str_back_ticks] = ACTIONS(2429), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2429), - [sym__entry_separator] = ACTIONS(2431), - [anon_sym_PLUS] = ACTIONS(2429), + [anon_sym_export] = ACTIONS(1705), + [anon_sym_alias] = ACTIONS(1705), + [anon_sym_let] = ACTIONS(1705), + [anon_sym_let_DASHenv] = ACTIONS(1705), + [anon_sym_mut] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [aux_sym_cmd_identifier_token1] = ACTIONS(1705), + [aux_sym_cmd_identifier_token2] = ACTIONS(1705), + [aux_sym_cmd_identifier_token3] = ACTIONS(1705), + [aux_sym_cmd_identifier_token4] = ACTIONS(1705), + [aux_sym_cmd_identifier_token5] = ACTIONS(1705), + [aux_sym_cmd_identifier_token6] = ACTIONS(1705), + [aux_sym_cmd_identifier_token7] = ACTIONS(1705), + [aux_sym_cmd_identifier_token8] = ACTIONS(1705), + [aux_sym_cmd_identifier_token9] = ACTIONS(1705), + [aux_sym_cmd_identifier_token10] = ACTIONS(1705), + [aux_sym_cmd_identifier_token11] = ACTIONS(1705), + [aux_sym_cmd_identifier_token12] = ACTIONS(1705), + [aux_sym_cmd_identifier_token13] = ACTIONS(1705), + [aux_sym_cmd_identifier_token14] = ACTIONS(1705), + [aux_sym_cmd_identifier_token15] = ACTIONS(1705), + [aux_sym_cmd_identifier_token16] = ACTIONS(1705), + [aux_sym_cmd_identifier_token17] = ACTIONS(1705), + [aux_sym_cmd_identifier_token18] = ACTIONS(1705), + [aux_sym_cmd_identifier_token19] = ACTIONS(1705), + [aux_sym_cmd_identifier_token20] = ACTIONS(1705), + [aux_sym_cmd_identifier_token21] = ACTIONS(1705), + [aux_sym_cmd_identifier_token22] = ACTIONS(1705), + [aux_sym_cmd_identifier_token23] = ACTIONS(1705), + [aux_sym_cmd_identifier_token24] = ACTIONS(1705), + [aux_sym_cmd_identifier_token25] = ACTIONS(1705), + [aux_sym_cmd_identifier_token26] = ACTIONS(1705), + [aux_sym_cmd_identifier_token27] = ACTIONS(1705), + [aux_sym_cmd_identifier_token28] = ACTIONS(1705), + [aux_sym_cmd_identifier_token29] = ACTIONS(1705), + [aux_sym_cmd_identifier_token30] = ACTIONS(1705), + [aux_sym_cmd_identifier_token31] = ACTIONS(1705), + [aux_sym_cmd_identifier_token32] = ACTIONS(1705), + [aux_sym_cmd_identifier_token33] = ACTIONS(1705), + [aux_sym_cmd_identifier_token34] = ACTIONS(1705), + [aux_sym_cmd_identifier_token35] = ACTIONS(1705), + [aux_sym_cmd_identifier_token36] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1705), + [anon_sym_false] = ACTIONS(1705), + [anon_sym_null] = ACTIONS(1705), + [aux_sym_cmd_identifier_token38] = ACTIONS(1705), + [aux_sym_cmd_identifier_token39] = ACTIONS(1705), + [aux_sym_cmd_identifier_token40] = ACTIONS(1705), + [anon_sym_def] = ACTIONS(1705), + [anon_sym_export_DASHenv] = ACTIONS(1705), + [anon_sym_extern] = ACTIONS(1705), + [anon_sym_module] = ACTIONS(1705), + [anon_sym_use] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1705), + [anon_sym_error] = ACTIONS(1705), + [anon_sym_list] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_break] = ACTIONS(1705), + [anon_sym_continue] = ACTIONS(1705), + [anon_sym_for] = ACTIONS(1705), + [anon_sym_in] = ACTIONS(1705), + [anon_sym_loop] = ACTIONS(1705), + [anon_sym_make] = ACTIONS(1705), + [anon_sym_while] = ACTIONS(1705), + [anon_sym_do] = ACTIONS(1705), + [anon_sym_if] = ACTIONS(1705), + [anon_sym_else] = ACTIONS(1705), + [anon_sym_match] = ACTIONS(1705), + [anon_sym_RBRACE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1705), + [anon_sym_catch] = ACTIONS(1705), + [anon_sym_return] = ACTIONS(1705), + [anon_sym_source] = ACTIONS(1705), + [anon_sym_source_DASHenv] = ACTIONS(1705), + [anon_sym_register] = ACTIONS(1705), + [anon_sym_hide] = ACTIONS(1705), + [anon_sym_hide_DASHenv] = ACTIONS(1705), + [anon_sym_overlay] = ACTIONS(1705), + [anon_sym_new] = ACTIONS(1705), + [anon_sym_as] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1705), + [aux_sym__val_number_decimal_token1] = ACTIONS(1705), + [aux_sym__val_number_decimal_token2] = ACTIONS(1705), + [aux_sym__val_number_decimal_token3] = ACTIONS(1705), + [aux_sym__val_number_decimal_token4] = ACTIONS(1705), + [aux_sym__val_number_token1] = ACTIONS(1705), + [aux_sym__val_number_token2] = ACTIONS(1705), + [aux_sym__val_number_token3] = ACTIONS(1705), + [anon_sym_DQUOTE] = ACTIONS(1705), + [sym__str_single_quotes] = ACTIONS(1705), + [sym__str_back_ticks] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1705), + [sym__entry_separator] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1705), [anon_sym_POUND] = ACTIONS(3), }, [583] = { [sym_comment] = STATE(583), - [anon_sym_export] = ACTIONS(2433), - [anon_sym_alias] = ACTIONS(2433), - [anon_sym_let] = ACTIONS(2433), - [anon_sym_let_DASHenv] = ACTIONS(2433), - [anon_sym_mut] = ACTIONS(2433), - [anon_sym_const] = ACTIONS(2433), - [aux_sym_cmd_identifier_token1] = ACTIONS(2433), - [aux_sym_cmd_identifier_token2] = ACTIONS(2433), - [aux_sym_cmd_identifier_token3] = ACTIONS(2433), - [aux_sym_cmd_identifier_token4] = ACTIONS(2433), - [aux_sym_cmd_identifier_token5] = ACTIONS(2433), - [aux_sym_cmd_identifier_token6] = ACTIONS(2433), - [aux_sym_cmd_identifier_token7] = ACTIONS(2433), - [aux_sym_cmd_identifier_token8] = ACTIONS(2433), - [aux_sym_cmd_identifier_token9] = ACTIONS(2433), - [aux_sym_cmd_identifier_token10] = ACTIONS(2433), - [aux_sym_cmd_identifier_token11] = ACTIONS(2433), - [aux_sym_cmd_identifier_token12] = ACTIONS(2433), - [aux_sym_cmd_identifier_token13] = ACTIONS(2433), - [aux_sym_cmd_identifier_token14] = ACTIONS(2433), - [aux_sym_cmd_identifier_token15] = ACTIONS(2433), - [aux_sym_cmd_identifier_token16] = ACTIONS(2433), - [aux_sym_cmd_identifier_token17] = ACTIONS(2433), - [aux_sym_cmd_identifier_token18] = ACTIONS(2433), - [aux_sym_cmd_identifier_token19] = ACTIONS(2433), - [aux_sym_cmd_identifier_token20] = ACTIONS(2433), - [aux_sym_cmd_identifier_token21] = ACTIONS(2433), - [aux_sym_cmd_identifier_token22] = ACTIONS(2433), - [aux_sym_cmd_identifier_token23] = ACTIONS(2433), - [aux_sym_cmd_identifier_token24] = ACTIONS(2433), - [aux_sym_cmd_identifier_token25] = ACTIONS(2433), - [aux_sym_cmd_identifier_token26] = ACTIONS(2433), - [aux_sym_cmd_identifier_token27] = ACTIONS(2433), - [aux_sym_cmd_identifier_token28] = ACTIONS(2433), - [aux_sym_cmd_identifier_token29] = ACTIONS(2433), - [aux_sym_cmd_identifier_token30] = ACTIONS(2433), - [aux_sym_cmd_identifier_token31] = ACTIONS(2433), - [aux_sym_cmd_identifier_token32] = ACTIONS(2433), - [aux_sym_cmd_identifier_token33] = ACTIONS(2433), - [aux_sym_cmd_identifier_token34] = ACTIONS(2433), - [aux_sym_cmd_identifier_token35] = ACTIONS(2433), - [aux_sym_cmd_identifier_token36] = ACTIONS(2433), - [anon_sym_true] = ACTIONS(2433), - [anon_sym_false] = ACTIONS(2433), - [anon_sym_null] = ACTIONS(2433), - [aux_sym_cmd_identifier_token38] = ACTIONS(2433), - [aux_sym_cmd_identifier_token39] = ACTIONS(2433), - [aux_sym_cmd_identifier_token40] = ACTIONS(2433), - [anon_sym_def] = ACTIONS(2433), - [anon_sym_export_DASHenv] = ACTIONS(2433), - [anon_sym_extern] = ACTIONS(2433), - [anon_sym_module] = ACTIONS(2433), - [anon_sym_use] = ACTIONS(2433), - [anon_sym_LPAREN] = ACTIONS(2433), - [anon_sym_DOLLAR] = ACTIONS(2433), - [anon_sym_error] = ACTIONS(2433), - [anon_sym_list] = ACTIONS(2433), - [anon_sym_DASH] = ACTIONS(2433), - [anon_sym_break] = ACTIONS(2433), - [anon_sym_continue] = ACTIONS(2433), - [anon_sym_for] = ACTIONS(2433), - [anon_sym_in] = ACTIONS(2433), - [anon_sym_loop] = ACTIONS(2433), - [anon_sym_make] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2433), - [anon_sym_do] = ACTIONS(2433), - [anon_sym_if] = ACTIONS(2433), - [anon_sym_else] = ACTIONS(2433), - [anon_sym_match] = ACTIONS(2433), - [anon_sym_RBRACE] = ACTIONS(2433), - [anon_sym_try] = ACTIONS(2433), - [anon_sym_catch] = ACTIONS(2433), - [anon_sym_return] = ACTIONS(2433), - [anon_sym_source] = ACTIONS(2433), - [anon_sym_source_DASHenv] = ACTIONS(2433), - [anon_sym_register] = ACTIONS(2433), - [anon_sym_hide] = ACTIONS(2433), - [anon_sym_hide_DASHenv] = ACTIONS(2433), - [anon_sym_overlay] = ACTIONS(2433), - [anon_sym_new] = ACTIONS(2433), - [anon_sym_as] = ACTIONS(2433), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2433), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2433), - [aux_sym__val_number_decimal_token1] = ACTIONS(2433), - [aux_sym__val_number_decimal_token2] = ACTIONS(2433), - [aux_sym__val_number_decimal_token3] = ACTIONS(2433), - [aux_sym__val_number_decimal_token4] = ACTIONS(2433), - [aux_sym__val_number_token1] = ACTIONS(2433), - [aux_sym__val_number_token2] = ACTIONS(2433), - [aux_sym__val_number_token3] = ACTIONS(2433), - [anon_sym_DQUOTE] = ACTIONS(2433), - [sym__str_single_quotes] = ACTIONS(2433), - [sym__str_back_ticks] = ACTIONS(2433), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2433), - [sym__entry_separator] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_export] = ACTIONS(1755), + [anon_sym_alias] = ACTIONS(1755), + [anon_sym_let] = ACTIONS(1755), + [anon_sym_let_DASHenv] = ACTIONS(1755), + [anon_sym_mut] = ACTIONS(1755), + [anon_sym_const] = ACTIONS(1755), + [aux_sym_cmd_identifier_token1] = ACTIONS(1755), + [aux_sym_cmd_identifier_token2] = ACTIONS(1755), + [aux_sym_cmd_identifier_token3] = ACTIONS(1755), + [aux_sym_cmd_identifier_token4] = ACTIONS(1755), + [aux_sym_cmd_identifier_token5] = ACTIONS(1755), + [aux_sym_cmd_identifier_token6] = ACTIONS(1755), + [aux_sym_cmd_identifier_token7] = ACTIONS(1755), + [aux_sym_cmd_identifier_token8] = ACTIONS(1755), + [aux_sym_cmd_identifier_token9] = ACTIONS(1755), + [aux_sym_cmd_identifier_token10] = ACTIONS(1755), + [aux_sym_cmd_identifier_token11] = ACTIONS(1755), + [aux_sym_cmd_identifier_token12] = ACTIONS(1755), + [aux_sym_cmd_identifier_token13] = ACTIONS(1755), + [aux_sym_cmd_identifier_token14] = ACTIONS(1755), + [aux_sym_cmd_identifier_token15] = ACTIONS(1755), + [aux_sym_cmd_identifier_token16] = ACTIONS(1755), + [aux_sym_cmd_identifier_token17] = ACTIONS(1755), + [aux_sym_cmd_identifier_token18] = ACTIONS(1755), + [aux_sym_cmd_identifier_token19] = ACTIONS(1755), + [aux_sym_cmd_identifier_token20] = ACTIONS(1755), + [aux_sym_cmd_identifier_token21] = ACTIONS(1755), + [aux_sym_cmd_identifier_token22] = ACTIONS(1755), + [aux_sym_cmd_identifier_token23] = ACTIONS(1755), + [aux_sym_cmd_identifier_token24] = ACTIONS(1755), + [aux_sym_cmd_identifier_token25] = ACTIONS(1755), + [aux_sym_cmd_identifier_token26] = ACTIONS(1755), + [aux_sym_cmd_identifier_token27] = ACTIONS(1755), + [aux_sym_cmd_identifier_token28] = ACTIONS(1755), + [aux_sym_cmd_identifier_token29] = ACTIONS(1755), + [aux_sym_cmd_identifier_token30] = ACTIONS(1755), + [aux_sym_cmd_identifier_token31] = ACTIONS(1755), + [aux_sym_cmd_identifier_token32] = ACTIONS(1755), + [aux_sym_cmd_identifier_token33] = ACTIONS(1755), + [aux_sym_cmd_identifier_token34] = ACTIONS(1755), + [aux_sym_cmd_identifier_token35] = ACTIONS(1755), + [aux_sym_cmd_identifier_token36] = ACTIONS(1755), + [anon_sym_true] = ACTIONS(1755), + [anon_sym_false] = ACTIONS(1755), + [anon_sym_null] = ACTIONS(1755), + [aux_sym_cmd_identifier_token38] = ACTIONS(1755), + [aux_sym_cmd_identifier_token39] = ACTIONS(1755), + [aux_sym_cmd_identifier_token40] = ACTIONS(1755), + [anon_sym_def] = ACTIONS(1755), + [anon_sym_export_DASHenv] = ACTIONS(1755), + [anon_sym_extern] = ACTIONS(1755), + [anon_sym_module] = ACTIONS(1755), + [anon_sym_use] = ACTIONS(1755), + [anon_sym_LPAREN] = ACTIONS(1755), + [anon_sym_DOLLAR] = ACTIONS(1755), + [anon_sym_error] = ACTIONS(1755), + [anon_sym_list] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_in] = ACTIONS(1755), + [anon_sym_loop] = ACTIONS(1755), + [anon_sym_make] = ACTIONS(1755), + [anon_sym_while] = ACTIONS(1755), + [anon_sym_do] = ACTIONS(1755), + [anon_sym_if] = ACTIONS(1755), + [anon_sym_else] = ACTIONS(1755), + [anon_sym_match] = ACTIONS(1755), + [anon_sym_RBRACE] = ACTIONS(1755), + [anon_sym_try] = ACTIONS(1755), + [anon_sym_catch] = ACTIONS(1755), + [anon_sym_return] = ACTIONS(1755), + [anon_sym_source] = ACTIONS(1755), + [anon_sym_source_DASHenv] = ACTIONS(1755), + [anon_sym_register] = ACTIONS(1755), + [anon_sym_hide] = ACTIONS(1755), + [anon_sym_hide_DASHenv] = ACTIONS(1755), + [anon_sym_overlay] = ACTIONS(1755), + [anon_sym_new] = ACTIONS(1755), + [anon_sym_as] = ACTIONS(1755), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1755), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1755), + [aux_sym__val_number_decimal_token1] = ACTIONS(1755), + [aux_sym__val_number_decimal_token2] = ACTIONS(1755), + [aux_sym__val_number_decimal_token3] = ACTIONS(1755), + [aux_sym__val_number_decimal_token4] = ACTIONS(1755), + [aux_sym__val_number_token1] = ACTIONS(1755), + [aux_sym__val_number_token2] = ACTIONS(1755), + [aux_sym__val_number_token3] = ACTIONS(1755), + [anon_sym_DQUOTE] = ACTIONS(1755), + [sym__str_single_quotes] = ACTIONS(1755), + [sym__str_back_ticks] = ACTIONS(1755), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1755), + [sym__entry_separator] = ACTIONS(1757), + [anon_sym_PLUS] = ACTIONS(1755), [anon_sym_POUND] = ACTIONS(3), }, [584] = { [sym_comment] = STATE(584), - [anon_sym_export] = ACTIONS(2437), - [anon_sym_alias] = ACTIONS(2437), - [anon_sym_let] = ACTIONS(2437), - [anon_sym_let_DASHenv] = ACTIONS(2437), - [anon_sym_mut] = ACTIONS(2437), - [anon_sym_const] = ACTIONS(2437), - [aux_sym_cmd_identifier_token1] = ACTIONS(2437), - [aux_sym_cmd_identifier_token2] = ACTIONS(2437), - [aux_sym_cmd_identifier_token3] = ACTIONS(2437), - [aux_sym_cmd_identifier_token4] = ACTIONS(2437), - [aux_sym_cmd_identifier_token5] = ACTIONS(2437), - [aux_sym_cmd_identifier_token6] = ACTIONS(2437), - [aux_sym_cmd_identifier_token7] = ACTIONS(2437), - [aux_sym_cmd_identifier_token8] = ACTIONS(2437), - [aux_sym_cmd_identifier_token9] = ACTIONS(2437), - [aux_sym_cmd_identifier_token10] = ACTIONS(2437), - [aux_sym_cmd_identifier_token11] = ACTIONS(2437), - [aux_sym_cmd_identifier_token12] = ACTIONS(2437), - [aux_sym_cmd_identifier_token13] = ACTIONS(2437), - [aux_sym_cmd_identifier_token14] = ACTIONS(2437), - [aux_sym_cmd_identifier_token15] = ACTIONS(2437), - [aux_sym_cmd_identifier_token16] = ACTIONS(2437), - [aux_sym_cmd_identifier_token17] = ACTIONS(2437), - [aux_sym_cmd_identifier_token18] = ACTIONS(2437), - [aux_sym_cmd_identifier_token19] = ACTIONS(2437), - [aux_sym_cmd_identifier_token20] = ACTIONS(2437), - [aux_sym_cmd_identifier_token21] = ACTIONS(2437), - [aux_sym_cmd_identifier_token22] = ACTIONS(2437), - [aux_sym_cmd_identifier_token23] = ACTIONS(2437), - [aux_sym_cmd_identifier_token24] = ACTIONS(2437), - [aux_sym_cmd_identifier_token25] = ACTIONS(2437), - [aux_sym_cmd_identifier_token26] = ACTIONS(2437), - [aux_sym_cmd_identifier_token27] = ACTIONS(2437), - [aux_sym_cmd_identifier_token28] = ACTIONS(2437), - [aux_sym_cmd_identifier_token29] = ACTIONS(2437), - [aux_sym_cmd_identifier_token30] = ACTIONS(2437), - [aux_sym_cmd_identifier_token31] = ACTIONS(2437), - [aux_sym_cmd_identifier_token32] = ACTIONS(2437), - [aux_sym_cmd_identifier_token33] = ACTIONS(2437), - [aux_sym_cmd_identifier_token34] = ACTIONS(2437), - [aux_sym_cmd_identifier_token35] = ACTIONS(2437), - [aux_sym_cmd_identifier_token36] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [anon_sym_null] = ACTIONS(2437), - [aux_sym_cmd_identifier_token38] = ACTIONS(2437), - [aux_sym_cmd_identifier_token39] = ACTIONS(2437), - [aux_sym_cmd_identifier_token40] = ACTIONS(2437), - [anon_sym_def] = ACTIONS(2437), - [anon_sym_export_DASHenv] = ACTIONS(2437), - [anon_sym_extern] = ACTIONS(2437), - [anon_sym_module] = ACTIONS(2437), - [anon_sym_use] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_list] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_in] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_make] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_else] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_RBRACE] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_catch] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_new] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2437), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = ACTIONS(2437), - [aux_sym__val_number_decimal_token4] = ACTIONS(2437), - [aux_sym__val_number_token1] = ACTIONS(2437), - [aux_sym__val_number_token2] = ACTIONS(2437), - [aux_sym__val_number_token3] = ACTIONS(2437), - [anon_sym_DQUOTE] = ACTIONS(2437), - [sym__str_single_quotes] = ACTIONS(2437), - [sym__str_back_ticks] = ACTIONS(2437), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2437), - [sym__entry_separator] = ACTIONS(2439), - [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_export] = ACTIONS(2507), + [anon_sym_alias] = ACTIONS(2507), + [anon_sym_let] = ACTIONS(2507), + [anon_sym_let_DASHenv] = ACTIONS(2507), + [anon_sym_mut] = ACTIONS(2507), + [anon_sym_const] = ACTIONS(2507), + [aux_sym_cmd_identifier_token1] = ACTIONS(2507), + [aux_sym_cmd_identifier_token2] = ACTIONS(2507), + [aux_sym_cmd_identifier_token3] = ACTIONS(2507), + [aux_sym_cmd_identifier_token4] = ACTIONS(2507), + [aux_sym_cmd_identifier_token5] = ACTIONS(2507), + [aux_sym_cmd_identifier_token6] = ACTIONS(2507), + [aux_sym_cmd_identifier_token7] = ACTIONS(2507), + [aux_sym_cmd_identifier_token8] = ACTIONS(2507), + [aux_sym_cmd_identifier_token9] = ACTIONS(2507), + [aux_sym_cmd_identifier_token10] = ACTIONS(2507), + [aux_sym_cmd_identifier_token11] = ACTIONS(2507), + [aux_sym_cmd_identifier_token12] = ACTIONS(2507), + [aux_sym_cmd_identifier_token13] = ACTIONS(2507), + [aux_sym_cmd_identifier_token14] = ACTIONS(2507), + [aux_sym_cmd_identifier_token15] = ACTIONS(2507), + [aux_sym_cmd_identifier_token16] = ACTIONS(2507), + [aux_sym_cmd_identifier_token17] = ACTIONS(2507), + [aux_sym_cmd_identifier_token18] = ACTIONS(2507), + [aux_sym_cmd_identifier_token19] = ACTIONS(2507), + [aux_sym_cmd_identifier_token20] = ACTIONS(2507), + [aux_sym_cmd_identifier_token21] = ACTIONS(2507), + [aux_sym_cmd_identifier_token22] = ACTIONS(2507), + [aux_sym_cmd_identifier_token23] = ACTIONS(2507), + [aux_sym_cmd_identifier_token24] = ACTIONS(2507), + [aux_sym_cmd_identifier_token25] = ACTIONS(2507), + [aux_sym_cmd_identifier_token26] = ACTIONS(2507), + [aux_sym_cmd_identifier_token27] = ACTIONS(2507), + [aux_sym_cmd_identifier_token28] = ACTIONS(2507), + [aux_sym_cmd_identifier_token29] = ACTIONS(2507), + [aux_sym_cmd_identifier_token30] = ACTIONS(2507), + [aux_sym_cmd_identifier_token31] = ACTIONS(2507), + [aux_sym_cmd_identifier_token32] = ACTIONS(2507), + [aux_sym_cmd_identifier_token33] = ACTIONS(2507), + [aux_sym_cmd_identifier_token34] = ACTIONS(2507), + [aux_sym_cmd_identifier_token35] = ACTIONS(2507), + [aux_sym_cmd_identifier_token36] = ACTIONS(2507), + [anon_sym_true] = ACTIONS(2507), + [anon_sym_false] = ACTIONS(2507), + [anon_sym_null] = ACTIONS(2507), + [aux_sym_cmd_identifier_token38] = ACTIONS(2507), + [aux_sym_cmd_identifier_token39] = ACTIONS(2507), + [aux_sym_cmd_identifier_token40] = ACTIONS(2507), + [anon_sym_def] = ACTIONS(2507), + [anon_sym_export_DASHenv] = ACTIONS(2507), + [anon_sym_extern] = ACTIONS(2507), + [anon_sym_module] = ACTIONS(2507), + [anon_sym_use] = ACTIONS(2507), + [anon_sym_LPAREN] = ACTIONS(2507), + [anon_sym_DOLLAR] = ACTIONS(2507), + [anon_sym_error] = ACTIONS(2507), + [anon_sym_list] = ACTIONS(2507), + [anon_sym_DASH] = ACTIONS(2507), + [anon_sym_break] = ACTIONS(2507), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_for] = ACTIONS(2507), + [anon_sym_in] = ACTIONS(2507), + [anon_sym_loop] = ACTIONS(2507), + [anon_sym_make] = ACTIONS(2507), + [anon_sym_while] = ACTIONS(2507), + [anon_sym_do] = ACTIONS(2507), + [anon_sym_if] = ACTIONS(2507), + [anon_sym_else] = ACTIONS(2507), + [anon_sym_match] = ACTIONS(2507), + [anon_sym_RBRACE] = ACTIONS(2507), + [anon_sym_try] = ACTIONS(2507), + [anon_sym_catch] = ACTIONS(2507), + [anon_sym_return] = ACTIONS(2507), + [anon_sym_source] = ACTIONS(2507), + [anon_sym_source_DASHenv] = ACTIONS(2507), + [anon_sym_register] = ACTIONS(2507), + [anon_sym_hide] = ACTIONS(2507), + [anon_sym_hide_DASHenv] = ACTIONS(2507), + [anon_sym_overlay] = ACTIONS(2507), + [anon_sym_new] = ACTIONS(2507), + [anon_sym_as] = ACTIONS(2507), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2507), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2507), + [aux_sym__val_number_decimal_token1] = ACTIONS(2507), + [aux_sym__val_number_decimal_token2] = ACTIONS(2507), + [aux_sym__val_number_decimal_token3] = ACTIONS(2507), + [aux_sym__val_number_decimal_token4] = ACTIONS(2507), + [aux_sym__val_number_token1] = ACTIONS(2507), + [aux_sym__val_number_token2] = ACTIONS(2507), + [aux_sym__val_number_token3] = ACTIONS(2507), + [anon_sym_DQUOTE] = ACTIONS(2507), + [sym__str_single_quotes] = ACTIONS(2507), + [sym__str_back_ticks] = ACTIONS(2507), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2507), + [sym__entry_separator] = ACTIONS(2509), + [anon_sym_PLUS] = ACTIONS(2507), [anon_sym_POUND] = ACTIONS(3), }, [585] = { [sym_comment] = STATE(585), - [anon_sym_export] = ACTIONS(2441), - [anon_sym_alias] = ACTIONS(2441), - [anon_sym_let] = ACTIONS(2441), - [anon_sym_let_DASHenv] = ACTIONS(2441), - [anon_sym_mut] = ACTIONS(2441), - [anon_sym_const] = ACTIONS(2441), - [aux_sym_cmd_identifier_token1] = ACTIONS(2441), - [aux_sym_cmd_identifier_token2] = ACTIONS(2441), - [aux_sym_cmd_identifier_token3] = ACTIONS(2441), - [aux_sym_cmd_identifier_token4] = ACTIONS(2441), - [aux_sym_cmd_identifier_token5] = ACTIONS(2441), - [aux_sym_cmd_identifier_token6] = ACTIONS(2441), - [aux_sym_cmd_identifier_token7] = ACTIONS(2441), - [aux_sym_cmd_identifier_token8] = ACTIONS(2441), - [aux_sym_cmd_identifier_token9] = ACTIONS(2441), - [aux_sym_cmd_identifier_token10] = ACTIONS(2441), - [aux_sym_cmd_identifier_token11] = ACTIONS(2441), - [aux_sym_cmd_identifier_token12] = ACTIONS(2441), - [aux_sym_cmd_identifier_token13] = ACTIONS(2441), - [aux_sym_cmd_identifier_token14] = ACTIONS(2441), - [aux_sym_cmd_identifier_token15] = ACTIONS(2441), - [aux_sym_cmd_identifier_token16] = ACTIONS(2441), - [aux_sym_cmd_identifier_token17] = ACTIONS(2441), - [aux_sym_cmd_identifier_token18] = ACTIONS(2441), - [aux_sym_cmd_identifier_token19] = ACTIONS(2441), - [aux_sym_cmd_identifier_token20] = ACTIONS(2441), - [aux_sym_cmd_identifier_token21] = ACTIONS(2441), - [aux_sym_cmd_identifier_token22] = ACTIONS(2441), - [aux_sym_cmd_identifier_token23] = ACTIONS(2441), - [aux_sym_cmd_identifier_token24] = ACTIONS(2441), - [aux_sym_cmd_identifier_token25] = ACTIONS(2441), - [aux_sym_cmd_identifier_token26] = ACTIONS(2441), - [aux_sym_cmd_identifier_token27] = ACTIONS(2441), - [aux_sym_cmd_identifier_token28] = ACTIONS(2441), - [aux_sym_cmd_identifier_token29] = ACTIONS(2441), - [aux_sym_cmd_identifier_token30] = ACTIONS(2441), - [aux_sym_cmd_identifier_token31] = ACTIONS(2441), - [aux_sym_cmd_identifier_token32] = ACTIONS(2441), - [aux_sym_cmd_identifier_token33] = ACTIONS(2441), - [aux_sym_cmd_identifier_token34] = ACTIONS(2441), - [aux_sym_cmd_identifier_token35] = ACTIONS(2441), - [aux_sym_cmd_identifier_token36] = ACTIONS(2441), - [anon_sym_true] = ACTIONS(2441), - [anon_sym_false] = ACTIONS(2441), - [anon_sym_null] = ACTIONS(2441), - [aux_sym_cmd_identifier_token38] = ACTIONS(2441), - [aux_sym_cmd_identifier_token39] = ACTIONS(2441), - [aux_sym_cmd_identifier_token40] = ACTIONS(2441), - [anon_sym_def] = ACTIONS(2441), - [anon_sym_export_DASHenv] = ACTIONS(2441), - [anon_sym_extern] = ACTIONS(2441), - [anon_sym_module] = ACTIONS(2441), - [anon_sym_use] = ACTIONS(2441), - [anon_sym_LPAREN] = ACTIONS(2441), - [anon_sym_DOLLAR] = ACTIONS(2441), - [anon_sym_error] = ACTIONS(2441), - [anon_sym_list] = ACTIONS(2441), - [anon_sym_DASH] = ACTIONS(2441), - [anon_sym_break] = ACTIONS(2441), - [anon_sym_continue] = ACTIONS(2441), - [anon_sym_for] = ACTIONS(2441), - [anon_sym_in] = ACTIONS(2441), - [anon_sym_loop] = ACTIONS(2441), - [anon_sym_make] = ACTIONS(2441), - [anon_sym_while] = ACTIONS(2441), - [anon_sym_do] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2441), - [anon_sym_else] = ACTIONS(2441), - [anon_sym_match] = ACTIONS(2441), - [anon_sym_RBRACE] = ACTIONS(2441), - [anon_sym_try] = ACTIONS(2441), - [anon_sym_catch] = ACTIONS(2441), - [anon_sym_return] = ACTIONS(2441), - [anon_sym_source] = ACTIONS(2441), - [anon_sym_source_DASHenv] = ACTIONS(2441), - [anon_sym_register] = ACTIONS(2441), - [anon_sym_hide] = ACTIONS(2441), - [anon_sym_hide_DASHenv] = ACTIONS(2441), - [anon_sym_overlay] = ACTIONS(2441), - [anon_sym_new] = ACTIONS(2441), - [anon_sym_as] = ACTIONS(2441), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2441), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2441), - [aux_sym__val_number_decimal_token1] = ACTIONS(2441), - [aux_sym__val_number_decimal_token2] = ACTIONS(2441), - [aux_sym__val_number_decimal_token3] = ACTIONS(2441), - [aux_sym__val_number_decimal_token4] = ACTIONS(2441), - [aux_sym__val_number_token1] = ACTIONS(2441), - [aux_sym__val_number_token2] = ACTIONS(2441), - [aux_sym__val_number_token3] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym__str_single_quotes] = ACTIONS(2441), - [sym__str_back_ticks] = ACTIONS(2441), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2441), - [sym__entry_separator] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(2441), + [anon_sym_export] = ACTIONS(2511), + [anon_sym_alias] = ACTIONS(2511), + [anon_sym_let] = ACTIONS(2511), + [anon_sym_let_DASHenv] = ACTIONS(2511), + [anon_sym_mut] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [aux_sym_cmd_identifier_token1] = ACTIONS(2511), + [aux_sym_cmd_identifier_token2] = ACTIONS(2511), + [aux_sym_cmd_identifier_token3] = ACTIONS(2511), + [aux_sym_cmd_identifier_token4] = ACTIONS(2511), + [aux_sym_cmd_identifier_token5] = ACTIONS(2511), + [aux_sym_cmd_identifier_token6] = ACTIONS(2511), + [aux_sym_cmd_identifier_token7] = ACTIONS(2511), + [aux_sym_cmd_identifier_token8] = ACTIONS(2511), + [aux_sym_cmd_identifier_token9] = ACTIONS(2511), + [aux_sym_cmd_identifier_token10] = ACTIONS(2511), + [aux_sym_cmd_identifier_token11] = ACTIONS(2511), + [aux_sym_cmd_identifier_token12] = ACTIONS(2511), + [aux_sym_cmd_identifier_token13] = ACTIONS(2511), + [aux_sym_cmd_identifier_token14] = ACTIONS(2511), + [aux_sym_cmd_identifier_token15] = ACTIONS(2511), + [aux_sym_cmd_identifier_token16] = ACTIONS(2511), + [aux_sym_cmd_identifier_token17] = ACTIONS(2511), + [aux_sym_cmd_identifier_token18] = ACTIONS(2511), + [aux_sym_cmd_identifier_token19] = ACTIONS(2511), + [aux_sym_cmd_identifier_token20] = ACTIONS(2511), + [aux_sym_cmd_identifier_token21] = ACTIONS(2511), + [aux_sym_cmd_identifier_token22] = ACTIONS(2511), + [aux_sym_cmd_identifier_token23] = ACTIONS(2511), + [aux_sym_cmd_identifier_token24] = ACTIONS(2511), + [aux_sym_cmd_identifier_token25] = ACTIONS(2511), + [aux_sym_cmd_identifier_token26] = ACTIONS(2511), + [aux_sym_cmd_identifier_token27] = ACTIONS(2511), + [aux_sym_cmd_identifier_token28] = ACTIONS(2511), + [aux_sym_cmd_identifier_token29] = ACTIONS(2511), + [aux_sym_cmd_identifier_token30] = ACTIONS(2511), + [aux_sym_cmd_identifier_token31] = ACTIONS(2511), + [aux_sym_cmd_identifier_token32] = ACTIONS(2511), + [aux_sym_cmd_identifier_token33] = ACTIONS(2511), + [aux_sym_cmd_identifier_token34] = ACTIONS(2511), + [aux_sym_cmd_identifier_token35] = ACTIONS(2511), + [aux_sym_cmd_identifier_token36] = ACTIONS(2511), + [anon_sym_true] = ACTIONS(2511), + [anon_sym_false] = ACTIONS(2511), + [anon_sym_null] = ACTIONS(2511), + [aux_sym_cmd_identifier_token38] = ACTIONS(2511), + [aux_sym_cmd_identifier_token39] = ACTIONS(2511), + [aux_sym_cmd_identifier_token40] = ACTIONS(2511), + [anon_sym_def] = ACTIONS(2511), + [anon_sym_export_DASHenv] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym_module] = ACTIONS(2511), + [anon_sym_use] = ACTIONS(2511), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_DOLLAR] = ACTIONS(2511), + [anon_sym_error] = ACTIONS(2511), + [anon_sym_list] = ACTIONS(2511), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_in] = ACTIONS(2511), + [anon_sym_loop] = ACTIONS(2511), + [anon_sym_make] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_do] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2511), + [anon_sym_RBRACE] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_catch] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_source] = ACTIONS(2511), + [anon_sym_source_DASHenv] = ACTIONS(2511), + [anon_sym_register] = ACTIONS(2511), + [anon_sym_hide] = ACTIONS(2511), + [anon_sym_hide_DASHenv] = ACTIONS(2511), + [anon_sym_overlay] = ACTIONS(2511), + [anon_sym_new] = ACTIONS(2511), + [anon_sym_as] = ACTIONS(2511), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2511), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2511), + [aux_sym__val_number_decimal_token1] = ACTIONS(2511), + [aux_sym__val_number_decimal_token2] = ACTIONS(2511), + [aux_sym__val_number_decimal_token3] = ACTIONS(2511), + [aux_sym__val_number_decimal_token4] = ACTIONS(2511), + [aux_sym__val_number_token1] = ACTIONS(2511), + [aux_sym__val_number_token2] = ACTIONS(2511), + [aux_sym__val_number_token3] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [sym__str_single_quotes] = ACTIONS(2511), + [sym__str_back_ticks] = ACTIONS(2511), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2511), + [sym__entry_separator] = ACTIONS(2513), + [anon_sym_PLUS] = ACTIONS(2511), [anon_sym_POUND] = ACTIONS(3), }, [586] = { [sym_comment] = STATE(586), - [anon_sym_export] = ACTIONS(986), - [anon_sym_alias] = ACTIONS(986), - [anon_sym_let] = ACTIONS(986), - [anon_sym_let_DASHenv] = ACTIONS(986), - [anon_sym_mut] = ACTIONS(986), - [anon_sym_const] = ACTIONS(986), - [aux_sym_cmd_identifier_token1] = ACTIONS(986), - [aux_sym_cmd_identifier_token2] = ACTIONS(986), - [aux_sym_cmd_identifier_token3] = ACTIONS(986), - [aux_sym_cmd_identifier_token4] = ACTIONS(986), - [aux_sym_cmd_identifier_token5] = ACTIONS(986), - [aux_sym_cmd_identifier_token6] = ACTIONS(986), - [aux_sym_cmd_identifier_token7] = ACTIONS(986), - [aux_sym_cmd_identifier_token8] = ACTIONS(986), - [aux_sym_cmd_identifier_token9] = ACTIONS(986), - [aux_sym_cmd_identifier_token10] = ACTIONS(986), - [aux_sym_cmd_identifier_token11] = ACTIONS(986), - [aux_sym_cmd_identifier_token12] = ACTIONS(986), - [aux_sym_cmd_identifier_token13] = ACTIONS(986), - [aux_sym_cmd_identifier_token14] = ACTIONS(986), - [aux_sym_cmd_identifier_token15] = ACTIONS(986), - [aux_sym_cmd_identifier_token16] = ACTIONS(986), - [aux_sym_cmd_identifier_token17] = ACTIONS(986), - [aux_sym_cmd_identifier_token18] = ACTIONS(986), - [aux_sym_cmd_identifier_token19] = ACTIONS(986), - [aux_sym_cmd_identifier_token20] = ACTIONS(986), - [aux_sym_cmd_identifier_token21] = ACTIONS(986), - [aux_sym_cmd_identifier_token22] = ACTIONS(986), - [aux_sym_cmd_identifier_token23] = ACTIONS(986), - [aux_sym_cmd_identifier_token24] = ACTIONS(986), - [aux_sym_cmd_identifier_token25] = ACTIONS(986), - [aux_sym_cmd_identifier_token26] = ACTIONS(986), - [aux_sym_cmd_identifier_token27] = ACTIONS(986), - [aux_sym_cmd_identifier_token28] = ACTIONS(986), - [aux_sym_cmd_identifier_token29] = ACTIONS(986), - [aux_sym_cmd_identifier_token30] = ACTIONS(986), - [aux_sym_cmd_identifier_token31] = ACTIONS(986), - [aux_sym_cmd_identifier_token32] = ACTIONS(986), - [aux_sym_cmd_identifier_token33] = ACTIONS(986), - [aux_sym_cmd_identifier_token34] = ACTIONS(986), - [aux_sym_cmd_identifier_token35] = ACTIONS(986), - [aux_sym_cmd_identifier_token36] = ACTIONS(986), - [anon_sym_true] = ACTIONS(988), - [anon_sym_false] = ACTIONS(988), - [anon_sym_null] = ACTIONS(988), - [aux_sym_cmd_identifier_token38] = ACTIONS(986), - [aux_sym_cmd_identifier_token39] = ACTIONS(988), - [aux_sym_cmd_identifier_token40] = ACTIONS(988), - [anon_sym_def] = ACTIONS(986), - [anon_sym_export_DASHenv] = ACTIONS(986), - [anon_sym_extern] = ACTIONS(986), - [anon_sym_module] = ACTIONS(986), - [anon_sym_use] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(988), - [anon_sym_DOLLAR] = ACTIONS(988), - [anon_sym_error] = ACTIONS(986), - [anon_sym_list] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_break] = ACTIONS(986), - [anon_sym_continue] = ACTIONS(986), - [anon_sym_for] = ACTIONS(986), - [anon_sym_in] = ACTIONS(986), - [anon_sym_loop] = ACTIONS(986), - [anon_sym_make] = ACTIONS(986), - [anon_sym_while] = ACTIONS(986), - [anon_sym_do] = ACTIONS(986), - [anon_sym_if] = ACTIONS(986), - [anon_sym_else] = ACTIONS(986), - [anon_sym_match] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(988), - [anon_sym_try] = ACTIONS(986), - [anon_sym_catch] = ACTIONS(986), - [anon_sym_return] = ACTIONS(986), - [anon_sym_source] = ACTIONS(986), - [anon_sym_source_DASHenv] = ACTIONS(986), - [anon_sym_register] = ACTIONS(986), - [anon_sym_hide] = ACTIONS(986), - [anon_sym_hide_DASHenv] = ACTIONS(986), - [anon_sym_overlay] = ACTIONS(986), - [anon_sym_new] = ACTIONS(986), - [anon_sym_as] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(988), - [anon_sym_DOT] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(988), - [aux_sym__val_number_decimal_token1] = ACTIONS(986), - [aux_sym__val_number_decimal_token2] = ACTIONS(988), - [aux_sym__val_number_decimal_token3] = ACTIONS(988), - [aux_sym__val_number_decimal_token4] = ACTIONS(988), - [aux_sym__val_number_token1] = ACTIONS(988), - [aux_sym__val_number_token2] = ACTIONS(988), - [aux_sym__val_number_token3] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym__str_single_quotes] = ACTIONS(988), - [sym__str_back_ticks] = ACTIONS(988), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(988), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(2515), + [anon_sym_alias] = ACTIONS(2515), + [anon_sym_let] = ACTIONS(2515), + [anon_sym_let_DASHenv] = ACTIONS(2515), + [anon_sym_mut] = ACTIONS(2515), + [anon_sym_const] = ACTIONS(2515), + [aux_sym_cmd_identifier_token1] = ACTIONS(2515), + [aux_sym_cmd_identifier_token2] = ACTIONS(2515), + [aux_sym_cmd_identifier_token3] = ACTIONS(2515), + [aux_sym_cmd_identifier_token4] = ACTIONS(2515), + [aux_sym_cmd_identifier_token5] = ACTIONS(2515), + [aux_sym_cmd_identifier_token6] = ACTIONS(2515), + [aux_sym_cmd_identifier_token7] = ACTIONS(2515), + [aux_sym_cmd_identifier_token8] = ACTIONS(2515), + [aux_sym_cmd_identifier_token9] = ACTIONS(2515), + [aux_sym_cmd_identifier_token10] = ACTIONS(2515), + [aux_sym_cmd_identifier_token11] = ACTIONS(2515), + [aux_sym_cmd_identifier_token12] = ACTIONS(2515), + [aux_sym_cmd_identifier_token13] = ACTIONS(2515), + [aux_sym_cmd_identifier_token14] = ACTIONS(2515), + [aux_sym_cmd_identifier_token15] = ACTIONS(2515), + [aux_sym_cmd_identifier_token16] = ACTIONS(2515), + [aux_sym_cmd_identifier_token17] = ACTIONS(2515), + [aux_sym_cmd_identifier_token18] = ACTIONS(2515), + [aux_sym_cmd_identifier_token19] = ACTIONS(2515), + [aux_sym_cmd_identifier_token20] = ACTIONS(2515), + [aux_sym_cmd_identifier_token21] = ACTIONS(2515), + [aux_sym_cmd_identifier_token22] = ACTIONS(2515), + [aux_sym_cmd_identifier_token23] = ACTIONS(2515), + [aux_sym_cmd_identifier_token24] = ACTIONS(2515), + [aux_sym_cmd_identifier_token25] = ACTIONS(2515), + [aux_sym_cmd_identifier_token26] = ACTIONS(2515), + [aux_sym_cmd_identifier_token27] = ACTIONS(2515), + [aux_sym_cmd_identifier_token28] = ACTIONS(2515), + [aux_sym_cmd_identifier_token29] = ACTIONS(2515), + [aux_sym_cmd_identifier_token30] = ACTIONS(2515), + [aux_sym_cmd_identifier_token31] = ACTIONS(2515), + [aux_sym_cmd_identifier_token32] = ACTIONS(2515), + [aux_sym_cmd_identifier_token33] = ACTIONS(2515), + [aux_sym_cmd_identifier_token34] = ACTIONS(2515), + [aux_sym_cmd_identifier_token35] = ACTIONS(2515), + [aux_sym_cmd_identifier_token36] = ACTIONS(2515), + [anon_sym_true] = ACTIONS(2515), + [anon_sym_false] = ACTIONS(2515), + [anon_sym_null] = ACTIONS(2515), + [aux_sym_cmd_identifier_token38] = ACTIONS(2515), + [aux_sym_cmd_identifier_token39] = ACTIONS(2515), + [aux_sym_cmd_identifier_token40] = ACTIONS(2515), + [anon_sym_def] = ACTIONS(2515), + [anon_sym_export_DASHenv] = ACTIONS(2515), + [anon_sym_extern] = ACTIONS(2515), + [anon_sym_module] = ACTIONS(2515), + [anon_sym_use] = ACTIONS(2515), + [anon_sym_LPAREN] = ACTIONS(2515), + [anon_sym_DOLLAR] = ACTIONS(2515), + [anon_sym_error] = ACTIONS(2515), + [anon_sym_list] = ACTIONS(2515), + [anon_sym_DASH] = ACTIONS(2515), + [anon_sym_break] = ACTIONS(2515), + [anon_sym_continue] = ACTIONS(2515), + [anon_sym_for] = ACTIONS(2515), + [anon_sym_in] = ACTIONS(2515), + [anon_sym_loop] = ACTIONS(2515), + [anon_sym_make] = ACTIONS(2515), + [anon_sym_while] = ACTIONS(2515), + [anon_sym_do] = ACTIONS(2515), + [anon_sym_if] = ACTIONS(2515), + [anon_sym_else] = ACTIONS(2515), + [anon_sym_match] = ACTIONS(2515), + [anon_sym_RBRACE] = ACTIONS(2515), + [anon_sym_try] = ACTIONS(2515), + [anon_sym_catch] = ACTIONS(2515), + [anon_sym_return] = ACTIONS(2515), + [anon_sym_source] = ACTIONS(2515), + [anon_sym_source_DASHenv] = ACTIONS(2515), + [anon_sym_register] = ACTIONS(2515), + [anon_sym_hide] = ACTIONS(2515), + [anon_sym_hide_DASHenv] = ACTIONS(2515), + [anon_sym_overlay] = ACTIONS(2515), + [anon_sym_new] = ACTIONS(2515), + [anon_sym_as] = ACTIONS(2515), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2515), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2515), + [aux_sym__val_number_decimal_token1] = ACTIONS(2515), + [aux_sym__val_number_decimal_token2] = ACTIONS(2515), + [aux_sym__val_number_decimal_token3] = ACTIONS(2515), + [aux_sym__val_number_decimal_token4] = ACTIONS(2515), + [aux_sym__val_number_token1] = ACTIONS(2515), + [aux_sym__val_number_token2] = ACTIONS(2515), + [aux_sym__val_number_token3] = ACTIONS(2515), + [anon_sym_DQUOTE] = ACTIONS(2515), + [sym__str_single_quotes] = ACTIONS(2515), + [sym__str_back_ticks] = ACTIONS(2515), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2515), + [sym__entry_separator] = ACTIONS(2517), + [anon_sym_PLUS] = ACTIONS(2515), + [anon_sym_POUND] = ACTIONS(3), }, [587] = { [sym_comment] = STATE(587), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [aux_sym_cmd_identifier_token1] = ACTIONS(990), - [aux_sym_cmd_identifier_token2] = ACTIONS(990), - [aux_sym_cmd_identifier_token3] = ACTIONS(990), - [aux_sym_cmd_identifier_token4] = ACTIONS(990), - [aux_sym_cmd_identifier_token5] = ACTIONS(990), - [aux_sym_cmd_identifier_token6] = ACTIONS(990), - [aux_sym_cmd_identifier_token7] = ACTIONS(990), - [aux_sym_cmd_identifier_token8] = ACTIONS(990), - [aux_sym_cmd_identifier_token9] = ACTIONS(990), - [aux_sym_cmd_identifier_token10] = ACTIONS(990), - [aux_sym_cmd_identifier_token11] = ACTIONS(990), - [aux_sym_cmd_identifier_token12] = ACTIONS(990), - [aux_sym_cmd_identifier_token13] = ACTIONS(990), - [aux_sym_cmd_identifier_token14] = ACTIONS(990), - [aux_sym_cmd_identifier_token15] = ACTIONS(990), - [aux_sym_cmd_identifier_token16] = ACTIONS(990), - [aux_sym_cmd_identifier_token17] = ACTIONS(990), - [aux_sym_cmd_identifier_token18] = ACTIONS(990), - [aux_sym_cmd_identifier_token19] = ACTIONS(990), - [aux_sym_cmd_identifier_token20] = ACTIONS(990), - [aux_sym_cmd_identifier_token21] = ACTIONS(990), - [aux_sym_cmd_identifier_token22] = ACTIONS(990), - [aux_sym_cmd_identifier_token23] = ACTIONS(990), - [aux_sym_cmd_identifier_token24] = ACTIONS(990), - [aux_sym_cmd_identifier_token25] = ACTIONS(990), - [aux_sym_cmd_identifier_token26] = ACTIONS(990), - [aux_sym_cmd_identifier_token27] = ACTIONS(990), - [aux_sym_cmd_identifier_token28] = ACTIONS(990), - [aux_sym_cmd_identifier_token29] = ACTIONS(990), - [aux_sym_cmd_identifier_token30] = ACTIONS(990), - [aux_sym_cmd_identifier_token31] = ACTIONS(990), - [aux_sym_cmd_identifier_token32] = ACTIONS(990), - [aux_sym_cmd_identifier_token33] = ACTIONS(990), - [aux_sym_cmd_identifier_token34] = ACTIONS(990), - [aux_sym_cmd_identifier_token35] = ACTIONS(990), - [aux_sym_cmd_identifier_token36] = ACTIONS(990), - [anon_sym_true] = ACTIONS(992), - [anon_sym_false] = ACTIONS(992), - [anon_sym_null] = ACTIONS(992), - [aux_sym_cmd_identifier_token38] = ACTIONS(990), - [aux_sym_cmd_identifier_token39] = ACTIONS(992), - [aux_sym_cmd_identifier_token40] = ACTIONS(992), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(992), - [anon_sym_error] = ACTIONS(990), - [anon_sym_list] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_in] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_make] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_try] = ACTIONS(990), - [anon_sym_catch] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_new] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(992), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(992), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(992), - [aux_sym__val_number_decimal_token3] = ACTIONS(992), - [aux_sym__val_number_decimal_token4] = ACTIONS(992), - [aux_sym__val_number_token1] = ACTIONS(992), - [aux_sym__val_number_token2] = ACTIONS(992), - [aux_sym__val_number_token3] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(992), - [anon_sym_PLUS] = ACTIONS(990), + [anon_sym_export] = ACTIONS(2309), + [anon_sym_alias] = ACTIONS(2309), + [anon_sym_let] = ACTIONS(2309), + [anon_sym_let_DASHenv] = ACTIONS(2309), + [anon_sym_mut] = ACTIONS(2309), + [anon_sym_const] = ACTIONS(2309), + [aux_sym_cmd_identifier_token1] = ACTIONS(2309), + [aux_sym_cmd_identifier_token2] = ACTIONS(2309), + [aux_sym_cmd_identifier_token3] = ACTIONS(2309), + [aux_sym_cmd_identifier_token4] = ACTIONS(2309), + [aux_sym_cmd_identifier_token5] = ACTIONS(2309), + [aux_sym_cmd_identifier_token6] = ACTIONS(2309), + [aux_sym_cmd_identifier_token7] = ACTIONS(2309), + [aux_sym_cmd_identifier_token8] = ACTIONS(2309), + [aux_sym_cmd_identifier_token9] = ACTIONS(2309), + [aux_sym_cmd_identifier_token10] = ACTIONS(2309), + [aux_sym_cmd_identifier_token11] = ACTIONS(2309), + [aux_sym_cmd_identifier_token12] = ACTIONS(2309), + [aux_sym_cmd_identifier_token13] = ACTIONS(2309), + [aux_sym_cmd_identifier_token14] = ACTIONS(2309), + [aux_sym_cmd_identifier_token15] = ACTIONS(2309), + [aux_sym_cmd_identifier_token16] = ACTIONS(2309), + [aux_sym_cmd_identifier_token17] = ACTIONS(2309), + [aux_sym_cmd_identifier_token18] = ACTIONS(2309), + [aux_sym_cmd_identifier_token19] = ACTIONS(2309), + [aux_sym_cmd_identifier_token20] = ACTIONS(2309), + [aux_sym_cmd_identifier_token21] = ACTIONS(2309), + [aux_sym_cmd_identifier_token22] = ACTIONS(2309), + [aux_sym_cmd_identifier_token23] = ACTIONS(2309), + [aux_sym_cmd_identifier_token24] = ACTIONS(2309), + [aux_sym_cmd_identifier_token25] = ACTIONS(2309), + [aux_sym_cmd_identifier_token26] = ACTIONS(2309), + [aux_sym_cmd_identifier_token27] = ACTIONS(2309), + [aux_sym_cmd_identifier_token28] = ACTIONS(2309), + [aux_sym_cmd_identifier_token29] = ACTIONS(2309), + [aux_sym_cmd_identifier_token30] = ACTIONS(2309), + [aux_sym_cmd_identifier_token31] = ACTIONS(2309), + [aux_sym_cmd_identifier_token32] = ACTIONS(2309), + [aux_sym_cmd_identifier_token33] = ACTIONS(2309), + [aux_sym_cmd_identifier_token34] = ACTIONS(2309), + [aux_sym_cmd_identifier_token35] = ACTIONS(2309), + [aux_sym_cmd_identifier_token36] = ACTIONS(2309), + [anon_sym_true] = ACTIONS(2311), + [anon_sym_false] = ACTIONS(2311), + [anon_sym_null] = ACTIONS(2311), + [aux_sym_cmd_identifier_token38] = ACTIONS(2309), + [aux_sym_cmd_identifier_token39] = ACTIONS(2311), + [aux_sym_cmd_identifier_token40] = ACTIONS(2311), + [anon_sym_def] = ACTIONS(2309), + [anon_sym_export_DASHenv] = ACTIONS(2309), + [anon_sym_extern] = ACTIONS(2309), + [anon_sym_module] = ACTIONS(2309), + [anon_sym_use] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(2309), + [anon_sym_DOLLAR] = ACTIONS(2311), + [anon_sym_error] = ACTIONS(2309), + [anon_sym_list] = ACTIONS(2309), + [anon_sym_DASH] = ACTIONS(2309), + [anon_sym_break] = ACTIONS(2309), + [anon_sym_continue] = ACTIONS(2309), + [anon_sym_for] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2309), + [anon_sym_loop] = ACTIONS(2309), + [anon_sym_make] = ACTIONS(2309), + [anon_sym_while] = ACTIONS(2309), + [anon_sym_do] = ACTIONS(2309), + [anon_sym_if] = ACTIONS(2309), + [anon_sym_else] = ACTIONS(2309), + [anon_sym_match] = ACTIONS(2309), + [anon_sym_RBRACE] = ACTIONS(2311), + [anon_sym_try] = ACTIONS(2309), + [anon_sym_catch] = ACTIONS(2309), + [anon_sym_return] = ACTIONS(2309), + [anon_sym_source] = ACTIONS(2309), + [anon_sym_source_DASHenv] = ACTIONS(2309), + [anon_sym_register] = ACTIONS(2309), + [anon_sym_hide] = ACTIONS(2309), + [anon_sym_hide_DASHenv] = ACTIONS(2309), + [anon_sym_overlay] = ACTIONS(2309), + [anon_sym_new] = ACTIONS(2309), + [anon_sym_as] = ACTIONS(2309), + [anon_sym_LPAREN2] = ACTIONS(2311), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2311), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2311), + [aux_sym__val_number_decimal_token1] = ACTIONS(2309), + [aux_sym__val_number_decimal_token2] = ACTIONS(2311), + [aux_sym__val_number_decimal_token3] = ACTIONS(2311), + [aux_sym__val_number_decimal_token4] = ACTIONS(2311), + [aux_sym__val_number_token1] = ACTIONS(2311), + [aux_sym__val_number_token2] = ACTIONS(2311), + [aux_sym__val_number_token3] = ACTIONS(2311), + [anon_sym_DQUOTE] = ACTIONS(2311), + [sym__str_single_quotes] = ACTIONS(2311), + [sym__str_back_ticks] = ACTIONS(2311), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2311), + [anon_sym_PLUS] = ACTIONS(2309), [anon_sym_POUND] = ACTIONS(247), }, [588] = { [sym_comment] = STATE(588), - [anon_sym_export] = ACTIONS(976), - [anon_sym_alias] = ACTIONS(976), - [anon_sym_let] = ACTIONS(976), - [anon_sym_let_DASHenv] = ACTIONS(976), - [anon_sym_mut] = ACTIONS(976), - [anon_sym_const] = ACTIONS(976), - [aux_sym_cmd_identifier_token1] = ACTIONS(976), - [aux_sym_cmd_identifier_token2] = ACTIONS(976), - [aux_sym_cmd_identifier_token3] = ACTIONS(976), - [aux_sym_cmd_identifier_token4] = ACTIONS(976), - [aux_sym_cmd_identifier_token5] = ACTIONS(976), - [aux_sym_cmd_identifier_token6] = ACTIONS(976), - [aux_sym_cmd_identifier_token7] = ACTIONS(976), - [aux_sym_cmd_identifier_token8] = ACTIONS(976), - [aux_sym_cmd_identifier_token9] = ACTIONS(976), - [aux_sym_cmd_identifier_token10] = ACTIONS(976), - [aux_sym_cmd_identifier_token11] = ACTIONS(976), - [aux_sym_cmd_identifier_token12] = ACTIONS(976), - [aux_sym_cmd_identifier_token13] = ACTIONS(976), - [aux_sym_cmd_identifier_token14] = ACTIONS(976), - [aux_sym_cmd_identifier_token15] = ACTIONS(976), - [aux_sym_cmd_identifier_token16] = ACTIONS(976), - [aux_sym_cmd_identifier_token17] = ACTIONS(976), - [aux_sym_cmd_identifier_token18] = ACTIONS(976), - [aux_sym_cmd_identifier_token19] = ACTIONS(976), - [aux_sym_cmd_identifier_token20] = ACTIONS(976), - [aux_sym_cmd_identifier_token21] = ACTIONS(976), - [aux_sym_cmd_identifier_token22] = ACTIONS(976), - [aux_sym_cmd_identifier_token23] = ACTIONS(976), - [aux_sym_cmd_identifier_token24] = ACTIONS(976), - [aux_sym_cmd_identifier_token25] = ACTIONS(976), - [aux_sym_cmd_identifier_token26] = ACTIONS(976), - [aux_sym_cmd_identifier_token27] = ACTIONS(976), - [aux_sym_cmd_identifier_token28] = ACTIONS(976), - [aux_sym_cmd_identifier_token29] = ACTIONS(976), - [aux_sym_cmd_identifier_token30] = ACTIONS(976), - [aux_sym_cmd_identifier_token31] = ACTIONS(976), - [aux_sym_cmd_identifier_token32] = ACTIONS(976), - [aux_sym_cmd_identifier_token33] = ACTIONS(976), - [aux_sym_cmd_identifier_token34] = ACTIONS(976), - [aux_sym_cmd_identifier_token35] = ACTIONS(976), - [aux_sym_cmd_identifier_token36] = ACTIONS(976), - [anon_sym_true] = ACTIONS(976), - [anon_sym_false] = ACTIONS(976), - [anon_sym_null] = ACTIONS(976), - [aux_sym_cmd_identifier_token38] = ACTIONS(976), - [aux_sym_cmd_identifier_token39] = ACTIONS(976), - [aux_sym_cmd_identifier_token40] = ACTIONS(976), - [anon_sym_def] = ACTIONS(976), - [anon_sym_export_DASHenv] = ACTIONS(976), - [anon_sym_extern] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_use] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(976), - [anon_sym_DOLLAR] = ACTIONS(976), - [anon_sym_error] = ACTIONS(976), - [anon_sym_list] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_break] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_in] = ACTIONS(976), - [anon_sym_loop] = ACTIONS(976), - [anon_sym_make] = ACTIONS(976), - [anon_sym_while] = ACTIONS(976), - [anon_sym_do] = ACTIONS(976), - [anon_sym_if] = ACTIONS(976), - [anon_sym_else] = ACTIONS(976), - [anon_sym_match] = ACTIONS(976), - [anon_sym_RBRACE] = ACTIONS(976), - [anon_sym_try] = ACTIONS(976), - [anon_sym_catch] = ACTIONS(976), - [anon_sym_return] = ACTIONS(976), - [anon_sym_source] = ACTIONS(976), - [anon_sym_source_DASHenv] = ACTIONS(976), - [anon_sym_register] = ACTIONS(976), - [anon_sym_hide] = ACTIONS(976), - [anon_sym_hide_DASHenv] = ACTIONS(976), - [anon_sym_overlay] = ACTIONS(976), - [anon_sym_new] = ACTIONS(976), - [anon_sym_as] = ACTIONS(976), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(976), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(976), - [aux_sym__val_number_decimal_token1] = ACTIONS(976), - [aux_sym__val_number_decimal_token2] = ACTIONS(976), - [aux_sym__val_number_decimal_token3] = ACTIONS(976), - [aux_sym__val_number_decimal_token4] = ACTIONS(976), - [aux_sym__val_number_token1] = ACTIONS(976), - [aux_sym__val_number_token2] = ACTIONS(976), - [aux_sym__val_number_token3] = ACTIONS(976), - [anon_sym_DQUOTE] = ACTIONS(976), - [sym__str_single_quotes] = ACTIONS(976), - [sym__str_back_ticks] = ACTIONS(976), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(976), - [sym__entry_separator] = ACTIONS(978), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2329), + [anon_sym_alias] = ACTIONS(2329), + [anon_sym_let] = ACTIONS(2329), + [anon_sym_let_DASHenv] = ACTIONS(2329), + [anon_sym_mut] = ACTIONS(2329), + [anon_sym_const] = ACTIONS(2329), + [aux_sym_cmd_identifier_token1] = ACTIONS(2329), + [aux_sym_cmd_identifier_token2] = ACTIONS(2329), + [aux_sym_cmd_identifier_token3] = ACTIONS(2329), + [aux_sym_cmd_identifier_token4] = ACTIONS(2329), + [aux_sym_cmd_identifier_token5] = ACTIONS(2329), + [aux_sym_cmd_identifier_token6] = ACTIONS(2329), + [aux_sym_cmd_identifier_token7] = ACTIONS(2329), + [aux_sym_cmd_identifier_token8] = ACTIONS(2329), + [aux_sym_cmd_identifier_token9] = ACTIONS(2329), + [aux_sym_cmd_identifier_token10] = ACTIONS(2329), + [aux_sym_cmd_identifier_token11] = ACTIONS(2329), + [aux_sym_cmd_identifier_token12] = ACTIONS(2329), + [aux_sym_cmd_identifier_token13] = ACTIONS(2329), + [aux_sym_cmd_identifier_token14] = ACTIONS(2329), + [aux_sym_cmd_identifier_token15] = ACTIONS(2329), + [aux_sym_cmd_identifier_token16] = ACTIONS(2329), + [aux_sym_cmd_identifier_token17] = ACTIONS(2329), + [aux_sym_cmd_identifier_token18] = ACTIONS(2329), + [aux_sym_cmd_identifier_token19] = ACTIONS(2329), + [aux_sym_cmd_identifier_token20] = ACTIONS(2329), + [aux_sym_cmd_identifier_token21] = ACTIONS(2329), + [aux_sym_cmd_identifier_token22] = ACTIONS(2329), + [aux_sym_cmd_identifier_token23] = ACTIONS(2329), + [aux_sym_cmd_identifier_token24] = ACTIONS(2329), + [aux_sym_cmd_identifier_token25] = ACTIONS(2329), + [aux_sym_cmd_identifier_token26] = ACTIONS(2329), + [aux_sym_cmd_identifier_token27] = ACTIONS(2329), + [aux_sym_cmd_identifier_token28] = ACTIONS(2329), + [aux_sym_cmd_identifier_token29] = ACTIONS(2329), + [aux_sym_cmd_identifier_token30] = ACTIONS(2329), + [aux_sym_cmd_identifier_token31] = ACTIONS(2329), + [aux_sym_cmd_identifier_token32] = ACTIONS(2329), + [aux_sym_cmd_identifier_token33] = ACTIONS(2329), + [aux_sym_cmd_identifier_token34] = ACTIONS(2329), + [aux_sym_cmd_identifier_token35] = ACTIONS(2329), + [aux_sym_cmd_identifier_token36] = ACTIONS(2329), + [anon_sym_true] = ACTIONS(2331), + [anon_sym_false] = ACTIONS(2331), + [anon_sym_null] = ACTIONS(2331), + [aux_sym_cmd_identifier_token38] = ACTIONS(2329), + [aux_sym_cmd_identifier_token39] = ACTIONS(2331), + [aux_sym_cmd_identifier_token40] = ACTIONS(2331), + [anon_sym_def] = ACTIONS(2329), + [anon_sym_export_DASHenv] = ACTIONS(2329), + [anon_sym_extern] = ACTIONS(2329), + [anon_sym_module] = ACTIONS(2329), + [anon_sym_use] = ACTIONS(2329), + [anon_sym_LPAREN] = ACTIONS(2329), + [anon_sym_DOLLAR] = ACTIONS(2331), + [anon_sym_error] = ACTIONS(2329), + [anon_sym_list] = ACTIONS(2329), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_break] = ACTIONS(2329), + [anon_sym_continue] = ACTIONS(2329), + [anon_sym_for] = ACTIONS(2329), + [anon_sym_in] = ACTIONS(2329), + [anon_sym_loop] = ACTIONS(2329), + [anon_sym_make] = ACTIONS(2329), + [anon_sym_while] = ACTIONS(2329), + [anon_sym_do] = ACTIONS(2329), + [anon_sym_if] = ACTIONS(2329), + [anon_sym_else] = ACTIONS(2329), + [anon_sym_match] = ACTIONS(2329), + [anon_sym_RBRACE] = ACTIONS(2331), + [anon_sym_try] = ACTIONS(2329), + [anon_sym_catch] = ACTIONS(2329), + [anon_sym_return] = ACTIONS(2329), + [anon_sym_source] = ACTIONS(2329), + [anon_sym_source_DASHenv] = ACTIONS(2329), + [anon_sym_register] = ACTIONS(2329), + [anon_sym_hide] = ACTIONS(2329), + [anon_sym_hide_DASHenv] = ACTIONS(2329), + [anon_sym_overlay] = ACTIONS(2329), + [anon_sym_new] = ACTIONS(2329), + [anon_sym_as] = ACTIONS(2329), + [anon_sym_LPAREN2] = ACTIONS(2331), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2331), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2331), + [aux_sym__val_number_decimal_token1] = ACTIONS(2329), + [aux_sym__val_number_decimal_token2] = ACTIONS(2331), + [aux_sym__val_number_decimal_token3] = ACTIONS(2331), + [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [aux_sym__val_number_token1] = ACTIONS(2331), + [aux_sym__val_number_token2] = ACTIONS(2331), + [aux_sym__val_number_token3] = ACTIONS(2331), + [anon_sym_DQUOTE] = ACTIONS(2331), + [sym__str_single_quotes] = ACTIONS(2331), + [sym__str_back_ticks] = ACTIONS(2331), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2331), + [anon_sym_PLUS] = ACTIONS(2329), + [anon_sym_POUND] = ACTIONS(247), }, [589] = { [sym_comment] = STATE(589), - [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), - [aux_sym_cmd_identifier_token1] = ACTIONS(1525), - [aux_sym_cmd_identifier_token2] = ACTIONS(1525), - [aux_sym_cmd_identifier_token3] = ACTIONS(1525), - [aux_sym_cmd_identifier_token4] = ACTIONS(1525), - [aux_sym_cmd_identifier_token5] = ACTIONS(1525), - [aux_sym_cmd_identifier_token6] = ACTIONS(1525), - [aux_sym_cmd_identifier_token7] = ACTIONS(1525), - [aux_sym_cmd_identifier_token8] = ACTIONS(1525), - [aux_sym_cmd_identifier_token9] = ACTIONS(1525), - [aux_sym_cmd_identifier_token10] = ACTIONS(1525), - [aux_sym_cmd_identifier_token11] = ACTIONS(1525), - [aux_sym_cmd_identifier_token12] = ACTIONS(1525), - [aux_sym_cmd_identifier_token13] = ACTIONS(1525), - [aux_sym_cmd_identifier_token14] = ACTIONS(1525), - [aux_sym_cmd_identifier_token15] = ACTIONS(1525), - [aux_sym_cmd_identifier_token16] = ACTIONS(1525), - [aux_sym_cmd_identifier_token17] = ACTIONS(1525), - [aux_sym_cmd_identifier_token18] = ACTIONS(1525), - [aux_sym_cmd_identifier_token19] = ACTIONS(1525), - [aux_sym_cmd_identifier_token20] = ACTIONS(1525), - [aux_sym_cmd_identifier_token21] = ACTIONS(1525), - [aux_sym_cmd_identifier_token22] = ACTIONS(1525), - [aux_sym_cmd_identifier_token23] = ACTIONS(1525), - [aux_sym_cmd_identifier_token24] = ACTIONS(1525), - [aux_sym_cmd_identifier_token25] = ACTIONS(1525), - [aux_sym_cmd_identifier_token26] = ACTIONS(1525), - [aux_sym_cmd_identifier_token27] = ACTIONS(1525), - [aux_sym_cmd_identifier_token28] = ACTIONS(1525), - [aux_sym_cmd_identifier_token29] = ACTIONS(1525), - [aux_sym_cmd_identifier_token30] = ACTIONS(1525), - [aux_sym_cmd_identifier_token31] = ACTIONS(1525), - [aux_sym_cmd_identifier_token32] = ACTIONS(1525), - [aux_sym_cmd_identifier_token33] = ACTIONS(1525), - [aux_sym_cmd_identifier_token34] = ACTIONS(1525), - [aux_sym_cmd_identifier_token35] = ACTIONS(1525), - [aux_sym_cmd_identifier_token36] = ACTIONS(1525), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_null] = ACTIONS(1537), - [aux_sym_cmd_identifier_token38] = ACTIONS(1525), - [aux_sym_cmd_identifier_token39] = ACTIONS(1537), - [aux_sym_cmd_identifier_token40] = ACTIONS(1537), - [anon_sym_def] = 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_LPAREN] = ACTIONS(1537), - [anon_sym_DOLLAR] = ACTIONS(1537), - [anon_sym_error] = ACTIONS(1525), - [anon_sym_list] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_break] = ACTIONS(1525), - [anon_sym_continue] = ACTIONS(1525), - [anon_sym_for] = ACTIONS(1525), - [anon_sym_in] = ACTIONS(1525), - [anon_sym_loop] = ACTIONS(1525), - [anon_sym_make] = ACTIONS(1525), - [anon_sym_while] = ACTIONS(1525), - [anon_sym_do] = ACTIONS(1525), - [anon_sym_if] = ACTIONS(1525), - [anon_sym_else] = ACTIONS(1525), - [anon_sym_match] = ACTIONS(1525), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_try] = ACTIONS(1525), - [anon_sym_catch] = 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_new] = ACTIONS(1525), - [anon_sym_as] = ACTIONS(1525), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1537), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1537), - [aux_sym__val_number_decimal_token1] = ACTIONS(1525), - [aux_sym__val_number_decimal_token2] = ACTIONS(1537), - [aux_sym__val_number_decimal_token3] = ACTIONS(1537), - [aux_sym__val_number_decimal_token4] = ACTIONS(1537), - [aux_sym__val_number_token1] = ACTIONS(1537), - [aux_sym__val_number_token2] = ACTIONS(1537), - [aux_sym__val_number_token3] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym__str_single_quotes] = ACTIONS(1537), - [sym__str_back_ticks] = ACTIONS(1537), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1525), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1567), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1879), + [anon_sym_alias] = ACTIONS(1879), + [anon_sym_let] = ACTIONS(1879), + [anon_sym_let_DASHenv] = ACTIONS(1879), + [anon_sym_mut] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1879), + [aux_sym_cmd_identifier_token1] = ACTIONS(1879), + [aux_sym_cmd_identifier_token2] = ACTIONS(1879), + [aux_sym_cmd_identifier_token3] = ACTIONS(1879), + [aux_sym_cmd_identifier_token4] = ACTIONS(1879), + [aux_sym_cmd_identifier_token5] = ACTIONS(1879), + [aux_sym_cmd_identifier_token6] = ACTIONS(1879), + [aux_sym_cmd_identifier_token7] = ACTIONS(1879), + [aux_sym_cmd_identifier_token8] = ACTIONS(1879), + [aux_sym_cmd_identifier_token9] = ACTIONS(1879), + [aux_sym_cmd_identifier_token10] = ACTIONS(1879), + [aux_sym_cmd_identifier_token11] = ACTIONS(1879), + [aux_sym_cmd_identifier_token12] = ACTIONS(1879), + [aux_sym_cmd_identifier_token13] = ACTIONS(1879), + [aux_sym_cmd_identifier_token14] = ACTIONS(1879), + [aux_sym_cmd_identifier_token15] = ACTIONS(1879), + [aux_sym_cmd_identifier_token16] = ACTIONS(1879), + [aux_sym_cmd_identifier_token17] = ACTIONS(1879), + [aux_sym_cmd_identifier_token18] = ACTIONS(1879), + [aux_sym_cmd_identifier_token19] = ACTIONS(1879), + [aux_sym_cmd_identifier_token20] = ACTIONS(1879), + [aux_sym_cmd_identifier_token21] = ACTIONS(1879), + [aux_sym_cmd_identifier_token22] = ACTIONS(1879), + [aux_sym_cmd_identifier_token23] = ACTIONS(1879), + [aux_sym_cmd_identifier_token24] = ACTIONS(1879), + [aux_sym_cmd_identifier_token25] = ACTIONS(1879), + [aux_sym_cmd_identifier_token26] = ACTIONS(1879), + [aux_sym_cmd_identifier_token27] = ACTIONS(1879), + [aux_sym_cmd_identifier_token28] = ACTIONS(1879), + [aux_sym_cmd_identifier_token29] = ACTIONS(1879), + [aux_sym_cmd_identifier_token30] = ACTIONS(1879), + [aux_sym_cmd_identifier_token31] = ACTIONS(1879), + [aux_sym_cmd_identifier_token32] = ACTIONS(1879), + [aux_sym_cmd_identifier_token33] = ACTIONS(1879), + [aux_sym_cmd_identifier_token34] = ACTIONS(1879), + [aux_sym_cmd_identifier_token35] = ACTIONS(1879), + [aux_sym_cmd_identifier_token36] = ACTIONS(1879), + [anon_sym_true] = ACTIONS(1879), + [anon_sym_false] = ACTIONS(1879), + [anon_sym_null] = ACTIONS(1879), + [aux_sym_cmd_identifier_token38] = ACTIONS(1879), + [aux_sym_cmd_identifier_token39] = ACTIONS(1879), + [aux_sym_cmd_identifier_token40] = ACTIONS(1879), + [anon_sym_def] = ACTIONS(1879), + [anon_sym_export_DASHenv] = ACTIONS(1879), + [anon_sym_extern] = ACTIONS(1879), + [anon_sym_module] = ACTIONS(1879), + [anon_sym_use] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(1879), + [anon_sym_DOLLAR] = ACTIONS(1879), + [anon_sym_error] = ACTIONS(1879), + [anon_sym_list] = ACTIONS(1879), + [anon_sym_DASH] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_in] = ACTIONS(1879), + [anon_sym_loop] = ACTIONS(1879), + [anon_sym_make] = ACTIONS(1879), + [anon_sym_while] = ACTIONS(1879), + [anon_sym_do] = ACTIONS(1879), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_else] = ACTIONS(1879), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_RBRACE] = ACTIONS(1879), + [anon_sym_try] = ACTIONS(1879), + [anon_sym_catch] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_source] = ACTIONS(1879), + [anon_sym_source_DASHenv] = ACTIONS(1879), + [anon_sym_register] = ACTIONS(1879), + [anon_sym_hide] = ACTIONS(1879), + [anon_sym_hide_DASHenv] = ACTIONS(1879), + [anon_sym_overlay] = ACTIONS(1879), + [anon_sym_new] = ACTIONS(1879), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1879), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1879), + [aux_sym__val_number_decimal_token1] = ACTIONS(1879), + [aux_sym__val_number_decimal_token2] = ACTIONS(1879), + [aux_sym__val_number_decimal_token3] = ACTIONS(1879), + [aux_sym__val_number_decimal_token4] = ACTIONS(1879), + [aux_sym__val_number_token1] = ACTIONS(1879), + [aux_sym__val_number_token2] = ACTIONS(1879), + [aux_sym__val_number_token3] = ACTIONS(1879), + [anon_sym_DQUOTE] = ACTIONS(1879), + [sym__str_single_quotes] = ACTIONS(1879), + [sym__str_back_ticks] = ACTIONS(1879), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1879), + [sym__entry_separator] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(1879), + [anon_sym_POUND] = ACTIONS(3), }, [590] = { [sym_comment] = STATE(590), - [anon_sym_export] = ACTIONS(1953), - [anon_sym_alias] = ACTIONS(1953), - [anon_sym_let] = ACTIONS(1953), - [anon_sym_let_DASHenv] = ACTIONS(1953), - [anon_sym_mut] = ACTIONS(1953), - [anon_sym_const] = ACTIONS(1953), - [aux_sym_cmd_identifier_token1] = ACTIONS(1953), - [aux_sym_cmd_identifier_token2] = ACTIONS(1953), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [aux_sym_cmd_identifier_token6] = ACTIONS(1953), - [aux_sym_cmd_identifier_token7] = ACTIONS(1953), - [aux_sym_cmd_identifier_token8] = ACTIONS(1953), - [aux_sym_cmd_identifier_token9] = ACTIONS(1953), - [aux_sym_cmd_identifier_token10] = ACTIONS(1953), - [aux_sym_cmd_identifier_token11] = ACTIONS(1953), - [aux_sym_cmd_identifier_token12] = ACTIONS(1953), - [aux_sym_cmd_identifier_token13] = ACTIONS(1953), - [aux_sym_cmd_identifier_token14] = ACTIONS(1953), - [aux_sym_cmd_identifier_token15] = ACTIONS(1953), - [aux_sym_cmd_identifier_token16] = ACTIONS(1953), - [aux_sym_cmd_identifier_token17] = ACTIONS(1953), - [aux_sym_cmd_identifier_token18] = ACTIONS(1953), - [aux_sym_cmd_identifier_token19] = ACTIONS(1953), - [aux_sym_cmd_identifier_token20] = ACTIONS(1953), - [aux_sym_cmd_identifier_token21] = ACTIONS(1953), - [aux_sym_cmd_identifier_token22] = ACTIONS(1953), - [aux_sym_cmd_identifier_token23] = ACTIONS(1953), - [aux_sym_cmd_identifier_token24] = ACTIONS(1953), - [aux_sym_cmd_identifier_token25] = ACTIONS(1953), - [aux_sym_cmd_identifier_token26] = ACTIONS(1953), - [aux_sym_cmd_identifier_token27] = ACTIONS(1953), - [aux_sym_cmd_identifier_token28] = ACTIONS(1953), - [aux_sym_cmd_identifier_token29] = ACTIONS(1953), - [aux_sym_cmd_identifier_token30] = ACTIONS(1953), - [aux_sym_cmd_identifier_token31] = ACTIONS(1953), - [aux_sym_cmd_identifier_token32] = ACTIONS(1953), - [aux_sym_cmd_identifier_token33] = ACTIONS(1953), - [aux_sym_cmd_identifier_token34] = ACTIONS(1953), - [aux_sym_cmd_identifier_token35] = ACTIONS(1953), - [aux_sym_cmd_identifier_token36] = ACTIONS(1953), - [anon_sym_true] = ACTIONS(1953), - [anon_sym_false] = ACTIONS(1953), - [anon_sym_null] = ACTIONS(1953), - [aux_sym_cmd_identifier_token38] = ACTIONS(1953), - [aux_sym_cmd_identifier_token39] = ACTIONS(1953), - [aux_sym_cmd_identifier_token40] = ACTIONS(1953), - [anon_sym_def] = ACTIONS(1953), - [anon_sym_export_DASHenv] = ACTIONS(1953), - [anon_sym_extern] = ACTIONS(1953), - [anon_sym_module] = ACTIONS(1953), - [anon_sym_use] = ACTIONS(1953), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_DOLLAR] = ACTIONS(1953), - [anon_sym_error] = ACTIONS(1953), - [anon_sym_list] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1953), - [anon_sym_break] = ACTIONS(1953), - [anon_sym_continue] = ACTIONS(1953), - [anon_sym_for] = ACTIONS(1953), - [anon_sym_in] = ACTIONS(1953), - [anon_sym_loop] = ACTIONS(1953), - [anon_sym_make] = ACTIONS(1953), - [anon_sym_while] = ACTIONS(1953), - [anon_sym_do] = ACTIONS(1953), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_else] = ACTIONS(1953), - [anon_sym_match] = ACTIONS(1953), - [anon_sym_RBRACE] = ACTIONS(1953), - [anon_sym_try] = ACTIONS(1953), - [anon_sym_catch] = ACTIONS(1953), - [anon_sym_return] = ACTIONS(1953), - [anon_sym_source] = ACTIONS(1953), - [anon_sym_source_DASHenv] = ACTIONS(1953), - [anon_sym_register] = ACTIONS(1953), - [anon_sym_hide] = ACTIONS(1953), - [anon_sym_hide_DASHenv] = ACTIONS(1953), - [anon_sym_overlay] = ACTIONS(1953), - [anon_sym_new] = ACTIONS(1953), - [anon_sym_as] = ACTIONS(1953), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1953), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1953), - [aux_sym__val_number_decimal_token2] = ACTIONS(1953), - [aux_sym__val_number_decimal_token3] = ACTIONS(1953), - [aux_sym__val_number_decimal_token4] = ACTIONS(1953), - [aux_sym__val_number_token1] = ACTIONS(1953), - [aux_sym__val_number_token2] = ACTIONS(1953), - [aux_sym__val_number_token3] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(1953), - [sym__str_single_quotes] = ACTIONS(1953), - [sym__str_back_ticks] = ACTIONS(1953), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1953), - [sym__entry_separator] = ACTIONS(1955), - [anon_sym_PLUS] = ACTIONS(1953), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1052), + [anon_sym_alias] = ACTIONS(1052), + [anon_sym_let] = ACTIONS(1052), + [anon_sym_let_DASHenv] = ACTIONS(1052), + [anon_sym_mut] = ACTIONS(1052), + [anon_sym_const] = ACTIONS(1052), + [aux_sym_cmd_identifier_token1] = ACTIONS(1052), + [aux_sym_cmd_identifier_token2] = ACTIONS(1052), + [aux_sym_cmd_identifier_token3] = ACTIONS(1052), + [aux_sym_cmd_identifier_token4] = ACTIONS(1052), + [aux_sym_cmd_identifier_token5] = ACTIONS(1052), + [aux_sym_cmd_identifier_token6] = ACTIONS(1052), + [aux_sym_cmd_identifier_token7] = ACTIONS(1052), + [aux_sym_cmd_identifier_token8] = ACTIONS(1052), + [aux_sym_cmd_identifier_token9] = ACTIONS(1052), + [aux_sym_cmd_identifier_token10] = ACTIONS(1052), + [aux_sym_cmd_identifier_token11] = ACTIONS(1052), + [aux_sym_cmd_identifier_token12] = ACTIONS(1052), + [aux_sym_cmd_identifier_token13] = ACTIONS(1052), + [aux_sym_cmd_identifier_token14] = ACTIONS(1052), + [aux_sym_cmd_identifier_token15] = ACTIONS(1052), + [aux_sym_cmd_identifier_token16] = ACTIONS(1052), + [aux_sym_cmd_identifier_token17] = ACTIONS(1052), + [aux_sym_cmd_identifier_token18] = ACTIONS(1052), + [aux_sym_cmd_identifier_token19] = ACTIONS(1052), + [aux_sym_cmd_identifier_token20] = ACTIONS(1052), + [aux_sym_cmd_identifier_token21] = ACTIONS(1052), + [aux_sym_cmd_identifier_token22] = ACTIONS(1052), + [aux_sym_cmd_identifier_token23] = ACTIONS(1052), + [aux_sym_cmd_identifier_token24] = ACTIONS(1052), + [aux_sym_cmd_identifier_token25] = ACTIONS(1052), + [aux_sym_cmd_identifier_token26] = ACTIONS(1052), + [aux_sym_cmd_identifier_token27] = ACTIONS(1052), + [aux_sym_cmd_identifier_token28] = ACTIONS(1052), + [aux_sym_cmd_identifier_token29] = ACTIONS(1052), + [aux_sym_cmd_identifier_token30] = ACTIONS(1052), + [aux_sym_cmd_identifier_token31] = ACTIONS(1052), + [aux_sym_cmd_identifier_token32] = ACTIONS(1052), + [aux_sym_cmd_identifier_token33] = ACTIONS(1052), + [aux_sym_cmd_identifier_token34] = ACTIONS(1052), + [aux_sym_cmd_identifier_token35] = ACTIONS(1052), + [aux_sym_cmd_identifier_token36] = ACTIONS(1052), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_null] = ACTIONS(1054), + [aux_sym_cmd_identifier_token38] = ACTIONS(1052), + [aux_sym_cmd_identifier_token39] = ACTIONS(1054), + [aux_sym_cmd_identifier_token40] = ACTIONS(1054), + [anon_sym_def] = ACTIONS(1052), + [anon_sym_export_DASHenv] = ACTIONS(1052), + [anon_sym_extern] = ACTIONS(1052), + [anon_sym_module] = ACTIONS(1052), + [anon_sym_use] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_DOLLAR] = ACTIONS(1054), + [anon_sym_error] = ACTIONS(1052), + [anon_sym_list] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_break] = ACTIONS(1052), + [anon_sym_continue] = ACTIONS(1052), + [anon_sym_for] = ACTIONS(1052), + [anon_sym_in] = ACTIONS(1052), + [anon_sym_loop] = ACTIONS(1052), + [anon_sym_make] = ACTIONS(1052), + [anon_sym_while] = ACTIONS(1052), + [anon_sym_do] = ACTIONS(1052), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_else] = ACTIONS(1052), + [anon_sym_match] = ACTIONS(1052), + [anon_sym_RBRACE] = ACTIONS(1054), + [anon_sym_try] = ACTIONS(1052), + [anon_sym_catch] = ACTIONS(1052), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_source] = ACTIONS(1052), + [anon_sym_source_DASHenv] = ACTIONS(1052), + [anon_sym_register] = ACTIONS(1052), + [anon_sym_hide] = ACTIONS(1052), + [anon_sym_hide_DASHenv] = ACTIONS(1052), + [anon_sym_overlay] = ACTIONS(1052), + [anon_sym_new] = ACTIONS(1052), + [anon_sym_as] = ACTIONS(1052), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1054), + [anon_sym_DOT] = ACTIONS(1052), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1054), + [aux_sym__val_number_decimal_token1] = ACTIONS(1052), + [aux_sym__val_number_decimal_token2] = ACTIONS(1054), + [aux_sym__val_number_decimal_token3] = ACTIONS(1054), + [aux_sym__val_number_decimal_token4] = ACTIONS(1054), + [aux_sym__val_number_token1] = ACTIONS(1054), + [aux_sym__val_number_token2] = ACTIONS(1054), + [aux_sym__val_number_token3] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym__str_single_quotes] = ACTIONS(1054), + [sym__str_back_ticks] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_POUND] = ACTIONS(247), }, [591] = { [sym_comment] = STATE(591), - [anon_sym_export] = ACTIONS(1943), - [anon_sym_alias] = ACTIONS(1943), - [anon_sym_let] = ACTIONS(1943), - [anon_sym_let_DASHenv] = ACTIONS(1943), - [anon_sym_mut] = ACTIONS(1943), - [anon_sym_const] = ACTIONS(1943), - [aux_sym_cmd_identifier_token1] = ACTIONS(1943), - [aux_sym_cmd_identifier_token2] = ACTIONS(1943), - [aux_sym_cmd_identifier_token3] = ACTIONS(1943), - [aux_sym_cmd_identifier_token4] = ACTIONS(1943), - [aux_sym_cmd_identifier_token5] = ACTIONS(1943), - [aux_sym_cmd_identifier_token6] = ACTIONS(1943), - [aux_sym_cmd_identifier_token7] = ACTIONS(1943), - [aux_sym_cmd_identifier_token8] = ACTIONS(1943), - [aux_sym_cmd_identifier_token9] = ACTIONS(1943), - [aux_sym_cmd_identifier_token10] = ACTIONS(1943), - [aux_sym_cmd_identifier_token11] = ACTIONS(1943), - [aux_sym_cmd_identifier_token12] = ACTIONS(1943), - [aux_sym_cmd_identifier_token13] = ACTIONS(1943), - [aux_sym_cmd_identifier_token14] = ACTIONS(1943), - [aux_sym_cmd_identifier_token15] = ACTIONS(1943), - [aux_sym_cmd_identifier_token16] = ACTIONS(1943), - [aux_sym_cmd_identifier_token17] = ACTIONS(1943), - [aux_sym_cmd_identifier_token18] = ACTIONS(1943), - [aux_sym_cmd_identifier_token19] = ACTIONS(1943), - [aux_sym_cmd_identifier_token20] = ACTIONS(1943), - [aux_sym_cmd_identifier_token21] = ACTIONS(1943), - [aux_sym_cmd_identifier_token22] = ACTIONS(1943), - [aux_sym_cmd_identifier_token23] = ACTIONS(1943), - [aux_sym_cmd_identifier_token24] = ACTIONS(1943), - [aux_sym_cmd_identifier_token25] = ACTIONS(1943), - [aux_sym_cmd_identifier_token26] = ACTIONS(1943), - [aux_sym_cmd_identifier_token27] = ACTIONS(1943), - [aux_sym_cmd_identifier_token28] = ACTIONS(1943), - [aux_sym_cmd_identifier_token29] = ACTIONS(1943), - [aux_sym_cmd_identifier_token30] = ACTIONS(1943), - [aux_sym_cmd_identifier_token31] = ACTIONS(1943), - [aux_sym_cmd_identifier_token32] = ACTIONS(1943), - [aux_sym_cmd_identifier_token33] = ACTIONS(1943), - [aux_sym_cmd_identifier_token34] = ACTIONS(1943), - [aux_sym_cmd_identifier_token35] = ACTIONS(1943), - [aux_sym_cmd_identifier_token36] = ACTIONS(1943), - [anon_sym_true] = ACTIONS(1943), - [anon_sym_false] = ACTIONS(1943), - [anon_sym_null] = ACTIONS(1943), - [aux_sym_cmd_identifier_token38] = ACTIONS(1943), - [aux_sym_cmd_identifier_token39] = ACTIONS(1943), - [aux_sym_cmd_identifier_token40] = ACTIONS(1943), - [anon_sym_def] = ACTIONS(1943), - [anon_sym_export_DASHenv] = ACTIONS(1943), - [anon_sym_extern] = ACTIONS(1943), - [anon_sym_module] = ACTIONS(1943), - [anon_sym_use] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1943), - [anon_sym_DOLLAR] = ACTIONS(1943), - [anon_sym_error] = ACTIONS(1943), - [anon_sym_list] = ACTIONS(1943), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_break] = ACTIONS(1943), - [anon_sym_continue] = ACTIONS(1943), - [anon_sym_for] = ACTIONS(1943), - [anon_sym_in] = ACTIONS(1943), - [anon_sym_loop] = ACTIONS(1943), - [anon_sym_make] = ACTIONS(1943), - [anon_sym_while] = ACTIONS(1943), - [anon_sym_do] = ACTIONS(1943), - [anon_sym_if] = ACTIONS(1943), - [anon_sym_else] = ACTIONS(1943), - [anon_sym_match] = ACTIONS(1943), - [anon_sym_RBRACE] = ACTIONS(1943), - [anon_sym_try] = ACTIONS(1943), - [anon_sym_catch] = ACTIONS(1943), - [anon_sym_return] = ACTIONS(1943), - [anon_sym_source] = ACTIONS(1943), - [anon_sym_source_DASHenv] = ACTIONS(1943), - [anon_sym_register] = ACTIONS(1943), - [anon_sym_hide] = ACTIONS(1943), - [anon_sym_hide_DASHenv] = ACTIONS(1943), - [anon_sym_overlay] = ACTIONS(1943), - [anon_sym_new] = ACTIONS(1943), - [anon_sym_as] = ACTIONS(1943), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1943), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1943), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1943), - [aux_sym__val_number_decimal_token3] = ACTIONS(1943), - [aux_sym__val_number_decimal_token4] = ACTIONS(1943), - [aux_sym__val_number_token1] = ACTIONS(1943), - [aux_sym__val_number_token2] = ACTIONS(1943), - [aux_sym__val_number_token3] = ACTIONS(1943), - [anon_sym_DQUOTE] = ACTIONS(1943), - [sym__str_single_quotes] = ACTIONS(1943), - [sym__str_back_ticks] = ACTIONS(1943), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1943), - [sym__entry_separator] = ACTIONS(1945), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2469), + [anon_sym_alias] = ACTIONS(2469), + [anon_sym_let] = ACTIONS(2469), + [anon_sym_let_DASHenv] = ACTIONS(2469), + [anon_sym_mut] = ACTIONS(2469), + [anon_sym_const] = ACTIONS(2469), + [aux_sym_cmd_identifier_token1] = ACTIONS(2469), + [aux_sym_cmd_identifier_token2] = ACTIONS(2469), + [aux_sym_cmd_identifier_token3] = ACTIONS(2469), + [aux_sym_cmd_identifier_token4] = ACTIONS(2469), + [aux_sym_cmd_identifier_token5] = ACTIONS(2469), + [aux_sym_cmd_identifier_token6] = ACTIONS(2469), + [aux_sym_cmd_identifier_token7] = ACTIONS(2469), + [aux_sym_cmd_identifier_token8] = ACTIONS(2469), + [aux_sym_cmd_identifier_token9] = ACTIONS(2469), + [aux_sym_cmd_identifier_token10] = ACTIONS(2469), + [aux_sym_cmd_identifier_token11] = ACTIONS(2469), + [aux_sym_cmd_identifier_token12] = ACTIONS(2469), + [aux_sym_cmd_identifier_token13] = ACTIONS(2469), + [aux_sym_cmd_identifier_token14] = ACTIONS(2469), + [aux_sym_cmd_identifier_token15] = ACTIONS(2469), + [aux_sym_cmd_identifier_token16] = ACTIONS(2469), + [aux_sym_cmd_identifier_token17] = ACTIONS(2469), + [aux_sym_cmd_identifier_token18] = ACTIONS(2469), + [aux_sym_cmd_identifier_token19] = ACTIONS(2469), + [aux_sym_cmd_identifier_token20] = ACTIONS(2469), + [aux_sym_cmd_identifier_token21] = ACTIONS(2469), + [aux_sym_cmd_identifier_token22] = ACTIONS(2469), + [aux_sym_cmd_identifier_token23] = ACTIONS(2469), + [aux_sym_cmd_identifier_token24] = ACTIONS(2469), + [aux_sym_cmd_identifier_token25] = ACTIONS(2469), + [aux_sym_cmd_identifier_token26] = ACTIONS(2469), + [aux_sym_cmd_identifier_token27] = ACTIONS(2469), + [aux_sym_cmd_identifier_token28] = ACTIONS(2469), + [aux_sym_cmd_identifier_token29] = ACTIONS(2469), + [aux_sym_cmd_identifier_token30] = ACTIONS(2469), + [aux_sym_cmd_identifier_token31] = ACTIONS(2469), + [aux_sym_cmd_identifier_token32] = ACTIONS(2469), + [aux_sym_cmd_identifier_token33] = ACTIONS(2469), + [aux_sym_cmd_identifier_token34] = ACTIONS(2469), + [aux_sym_cmd_identifier_token35] = ACTIONS(2469), + [aux_sym_cmd_identifier_token36] = ACTIONS(2469), + [anon_sym_true] = ACTIONS(2471), + [anon_sym_false] = ACTIONS(2471), + [anon_sym_null] = ACTIONS(2471), + [aux_sym_cmd_identifier_token38] = ACTIONS(2469), + [aux_sym_cmd_identifier_token39] = ACTIONS(2471), + [aux_sym_cmd_identifier_token40] = ACTIONS(2471), + [anon_sym_def] = ACTIONS(2469), + [anon_sym_export_DASHenv] = ACTIONS(2469), + [anon_sym_extern] = ACTIONS(2469), + [anon_sym_module] = ACTIONS(2469), + [anon_sym_use] = ACTIONS(2469), + [anon_sym_LPAREN] = ACTIONS(2471), + [anon_sym_DOLLAR] = ACTIONS(2471), + [anon_sym_error] = ACTIONS(2469), + [anon_sym_list] = ACTIONS(2469), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_break] = ACTIONS(2469), + [anon_sym_continue] = ACTIONS(2469), + [anon_sym_for] = ACTIONS(2469), + [anon_sym_in] = ACTIONS(2469), + [anon_sym_loop] = ACTIONS(2469), + [anon_sym_make] = ACTIONS(2469), + [anon_sym_while] = ACTIONS(2469), + [anon_sym_do] = ACTIONS(2469), + [anon_sym_if] = ACTIONS(2469), + [anon_sym_else] = ACTIONS(2469), + [anon_sym_match] = ACTIONS(2469), + [anon_sym_RBRACE] = ACTIONS(2471), + [anon_sym_try] = ACTIONS(2469), + [anon_sym_catch] = ACTIONS(2469), + [anon_sym_return] = ACTIONS(2469), + [anon_sym_source] = ACTIONS(2469), + [anon_sym_source_DASHenv] = ACTIONS(2469), + [anon_sym_register] = ACTIONS(2469), + [anon_sym_hide] = ACTIONS(2469), + [anon_sym_hide_DASHenv] = ACTIONS(2469), + [anon_sym_overlay] = ACTIONS(2469), + [anon_sym_new] = ACTIONS(2469), + [anon_sym_as] = ACTIONS(2469), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2471), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2471), + [aux_sym__val_number_decimal_token1] = ACTIONS(2469), + [aux_sym__val_number_decimal_token2] = ACTIONS(2471), + [aux_sym__val_number_decimal_token3] = ACTIONS(2471), + [aux_sym__val_number_decimal_token4] = ACTIONS(2471), + [aux_sym__val_number_token1] = ACTIONS(2471), + [aux_sym__val_number_token2] = ACTIONS(2471), + [aux_sym__val_number_token3] = ACTIONS(2471), + [anon_sym_DQUOTE] = ACTIONS(2471), + [sym__str_single_quotes] = ACTIONS(2471), + [sym__str_back_ticks] = ACTIONS(2471), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_POUND] = ACTIONS(247), }, [592] = { [sym_comment] = STATE(592), - [anon_sym_export] = ACTIONS(2267), - [anon_sym_alias] = ACTIONS(2267), - [anon_sym_let] = ACTIONS(2267), - [anon_sym_let_DASHenv] = ACTIONS(2267), - [anon_sym_mut] = ACTIONS(2267), - [anon_sym_const] = ACTIONS(2267), - [aux_sym_cmd_identifier_token1] = ACTIONS(2267), - [aux_sym_cmd_identifier_token2] = ACTIONS(2267), - [aux_sym_cmd_identifier_token3] = ACTIONS(2267), - [aux_sym_cmd_identifier_token4] = ACTIONS(2267), - [aux_sym_cmd_identifier_token5] = ACTIONS(2267), - [aux_sym_cmd_identifier_token6] = ACTIONS(2267), - [aux_sym_cmd_identifier_token7] = ACTIONS(2267), - [aux_sym_cmd_identifier_token8] = ACTIONS(2267), - [aux_sym_cmd_identifier_token9] = ACTIONS(2267), - [aux_sym_cmd_identifier_token10] = ACTIONS(2267), - [aux_sym_cmd_identifier_token11] = ACTIONS(2267), - [aux_sym_cmd_identifier_token12] = ACTIONS(2267), - [aux_sym_cmd_identifier_token13] = ACTIONS(2267), - [aux_sym_cmd_identifier_token14] = ACTIONS(2267), - [aux_sym_cmd_identifier_token15] = ACTIONS(2267), - [aux_sym_cmd_identifier_token16] = ACTIONS(2267), - [aux_sym_cmd_identifier_token17] = ACTIONS(2267), - [aux_sym_cmd_identifier_token18] = ACTIONS(2267), - [aux_sym_cmd_identifier_token19] = ACTIONS(2267), - [aux_sym_cmd_identifier_token20] = ACTIONS(2267), - [aux_sym_cmd_identifier_token21] = ACTIONS(2267), - [aux_sym_cmd_identifier_token22] = ACTIONS(2267), - [aux_sym_cmd_identifier_token23] = ACTIONS(2267), - [aux_sym_cmd_identifier_token24] = ACTIONS(2267), - [aux_sym_cmd_identifier_token25] = ACTIONS(2267), - [aux_sym_cmd_identifier_token26] = ACTIONS(2267), - [aux_sym_cmd_identifier_token27] = ACTIONS(2267), - [aux_sym_cmd_identifier_token28] = ACTIONS(2267), - [aux_sym_cmd_identifier_token29] = ACTIONS(2267), - [aux_sym_cmd_identifier_token30] = ACTIONS(2267), - [aux_sym_cmd_identifier_token31] = ACTIONS(2267), - [aux_sym_cmd_identifier_token32] = ACTIONS(2267), - [aux_sym_cmd_identifier_token33] = ACTIONS(2267), - [aux_sym_cmd_identifier_token34] = ACTIONS(2267), - [aux_sym_cmd_identifier_token35] = ACTIONS(2267), - [aux_sym_cmd_identifier_token36] = ACTIONS(2267), - [anon_sym_true] = ACTIONS(2269), - [anon_sym_false] = ACTIONS(2269), - [anon_sym_null] = ACTIONS(2269), - [aux_sym_cmd_identifier_token38] = ACTIONS(2267), - [aux_sym_cmd_identifier_token39] = ACTIONS(2269), - [aux_sym_cmd_identifier_token40] = ACTIONS(2269), - [anon_sym_def] = ACTIONS(2267), - [anon_sym_export_DASHenv] = ACTIONS(2267), - [anon_sym_extern] = ACTIONS(2267), - [anon_sym_module] = ACTIONS(2267), - [anon_sym_use] = ACTIONS(2267), - [anon_sym_LPAREN] = ACTIONS(2267), - [anon_sym_DOLLAR] = ACTIONS(2269), - [anon_sym_error] = ACTIONS(2267), - [anon_sym_list] = ACTIONS(2267), - [anon_sym_DASH] = ACTIONS(2267), - [anon_sym_break] = ACTIONS(2267), - [anon_sym_continue] = ACTIONS(2267), - [anon_sym_for] = ACTIONS(2267), - [anon_sym_in] = ACTIONS(2267), - [anon_sym_loop] = ACTIONS(2267), - [anon_sym_make] = ACTIONS(2267), - [anon_sym_while] = ACTIONS(2267), - [anon_sym_do] = ACTIONS(2267), - [anon_sym_if] = ACTIONS(2267), - [anon_sym_else] = ACTIONS(2267), - [anon_sym_match] = ACTIONS(2267), - [anon_sym_RBRACE] = ACTIONS(2269), - [anon_sym_try] = ACTIONS(2267), - [anon_sym_catch] = ACTIONS(2267), - [anon_sym_return] = ACTIONS(2267), - [anon_sym_source] = ACTIONS(2267), - [anon_sym_source_DASHenv] = ACTIONS(2267), - [anon_sym_register] = ACTIONS(2267), - [anon_sym_hide] = ACTIONS(2267), - [anon_sym_hide_DASHenv] = ACTIONS(2267), - [anon_sym_overlay] = ACTIONS(2267), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_as] = ACTIONS(2267), - [anon_sym_LPAREN2] = ACTIONS(2269), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2269), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2269), - [aux_sym__val_number_decimal_token1] = ACTIONS(2267), - [aux_sym__val_number_decimal_token2] = ACTIONS(2269), - [aux_sym__val_number_decimal_token3] = ACTIONS(2269), - [aux_sym__val_number_decimal_token4] = ACTIONS(2269), - [aux_sym__val_number_token1] = ACTIONS(2269), - [aux_sym__val_number_token2] = ACTIONS(2269), - [aux_sym__val_number_token3] = ACTIONS(2269), - [anon_sym_DQUOTE] = ACTIONS(2269), - [sym__str_single_quotes] = ACTIONS(2269), - [sym__str_back_ticks] = ACTIONS(2269), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2269), - [anon_sym_PLUS] = ACTIONS(2267), + [anon_sym_export] = ACTIONS(2388), + [anon_sym_alias] = ACTIONS(2388), + [anon_sym_let] = ACTIONS(2388), + [anon_sym_let_DASHenv] = ACTIONS(2388), + [anon_sym_mut] = ACTIONS(2388), + [anon_sym_const] = ACTIONS(2388), + [aux_sym_cmd_identifier_token1] = ACTIONS(2388), + [aux_sym_cmd_identifier_token2] = ACTIONS(2388), + [aux_sym_cmd_identifier_token3] = ACTIONS(2388), + [aux_sym_cmd_identifier_token4] = ACTIONS(2388), + [aux_sym_cmd_identifier_token5] = ACTIONS(2388), + [aux_sym_cmd_identifier_token6] = ACTIONS(2388), + [aux_sym_cmd_identifier_token7] = ACTIONS(2388), + [aux_sym_cmd_identifier_token8] = ACTIONS(2388), + [aux_sym_cmd_identifier_token9] = ACTIONS(2388), + [aux_sym_cmd_identifier_token10] = ACTIONS(2388), + [aux_sym_cmd_identifier_token11] = ACTIONS(2388), + [aux_sym_cmd_identifier_token12] = ACTIONS(2388), + [aux_sym_cmd_identifier_token13] = ACTIONS(2388), + [aux_sym_cmd_identifier_token14] = ACTIONS(2388), + [aux_sym_cmd_identifier_token15] = ACTIONS(2388), + [aux_sym_cmd_identifier_token16] = ACTIONS(2388), + [aux_sym_cmd_identifier_token17] = ACTIONS(2388), + [aux_sym_cmd_identifier_token18] = ACTIONS(2388), + [aux_sym_cmd_identifier_token19] = ACTIONS(2388), + [aux_sym_cmd_identifier_token20] = ACTIONS(2388), + [aux_sym_cmd_identifier_token21] = ACTIONS(2388), + [aux_sym_cmd_identifier_token22] = ACTIONS(2388), + [aux_sym_cmd_identifier_token23] = ACTIONS(2388), + [aux_sym_cmd_identifier_token24] = ACTIONS(2388), + [aux_sym_cmd_identifier_token25] = ACTIONS(2388), + [aux_sym_cmd_identifier_token26] = ACTIONS(2388), + [aux_sym_cmd_identifier_token27] = ACTIONS(2388), + [aux_sym_cmd_identifier_token28] = ACTIONS(2388), + [aux_sym_cmd_identifier_token29] = ACTIONS(2388), + [aux_sym_cmd_identifier_token30] = ACTIONS(2388), + [aux_sym_cmd_identifier_token31] = ACTIONS(2388), + [aux_sym_cmd_identifier_token32] = ACTIONS(2388), + [aux_sym_cmd_identifier_token33] = ACTIONS(2388), + [aux_sym_cmd_identifier_token34] = ACTIONS(2388), + [aux_sym_cmd_identifier_token35] = ACTIONS(2388), + [aux_sym_cmd_identifier_token36] = ACTIONS(2388), + [anon_sym_true] = ACTIONS(2390), + [anon_sym_false] = ACTIONS(2390), + [anon_sym_null] = ACTIONS(2390), + [aux_sym_cmd_identifier_token38] = ACTIONS(2388), + [aux_sym_cmd_identifier_token39] = ACTIONS(2390), + [aux_sym_cmd_identifier_token40] = ACTIONS(2390), + [anon_sym_def] = ACTIONS(2388), + [anon_sym_export_DASHenv] = ACTIONS(2388), + [anon_sym_extern] = ACTIONS(2388), + [anon_sym_module] = ACTIONS(2388), + [anon_sym_use] = ACTIONS(2388), + [anon_sym_LPAREN] = ACTIONS(2390), + [anon_sym_DOLLAR] = ACTIONS(2390), + [anon_sym_error] = ACTIONS(2388), + [anon_sym_list] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_break] = ACTIONS(2388), + [anon_sym_continue] = ACTIONS(2388), + [anon_sym_for] = ACTIONS(2388), + [anon_sym_in] = ACTIONS(2388), + [anon_sym_loop] = ACTIONS(2388), + [anon_sym_make] = ACTIONS(2388), + [anon_sym_while] = ACTIONS(2388), + [anon_sym_do] = ACTIONS(2388), + [anon_sym_if] = ACTIONS(2388), + [anon_sym_else] = ACTIONS(2388), + [anon_sym_match] = ACTIONS(2388), + [anon_sym_RBRACE] = ACTIONS(2390), + [anon_sym_try] = ACTIONS(2388), + [anon_sym_catch] = ACTIONS(2388), + [anon_sym_return] = ACTIONS(2388), + [anon_sym_source] = ACTIONS(2388), + [anon_sym_source_DASHenv] = ACTIONS(2388), + [anon_sym_register] = ACTIONS(2388), + [anon_sym_hide] = ACTIONS(2388), + [anon_sym_hide_DASHenv] = ACTIONS(2388), + [anon_sym_overlay] = ACTIONS(2388), + [anon_sym_new] = ACTIONS(2388), + [anon_sym_as] = ACTIONS(2388), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2390), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2390), + [aux_sym__val_number_decimal_token1] = ACTIONS(2388), + [aux_sym__val_number_decimal_token2] = ACTIONS(2390), + [aux_sym__val_number_decimal_token3] = ACTIONS(2390), + [aux_sym__val_number_decimal_token4] = ACTIONS(2390), + [aux_sym__val_number_token1] = ACTIONS(2390), + [aux_sym__val_number_token2] = ACTIONS(2390), + [aux_sym__val_number_token3] = ACTIONS(2390), + [anon_sym_DQUOTE] = ACTIONS(2390), + [sym__str_single_quotes] = ACTIONS(2390), + [sym__str_back_ticks] = ACTIONS(2390), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2390), + [anon_sym_PLUS] = ACTIONS(2388), [anon_sym_POUND] = ACTIONS(247), }, [593] = { [sym_comment] = STATE(593), - [anon_sym_export] = ACTIONS(2445), - [anon_sym_alias] = ACTIONS(2445), - [anon_sym_let] = ACTIONS(2445), - [anon_sym_let_DASHenv] = ACTIONS(2445), - [anon_sym_mut] = ACTIONS(2445), - [anon_sym_const] = ACTIONS(2445), - [aux_sym_cmd_identifier_token1] = ACTIONS(2445), - [aux_sym_cmd_identifier_token2] = ACTIONS(2445), - [aux_sym_cmd_identifier_token3] = ACTIONS(2445), - [aux_sym_cmd_identifier_token4] = ACTIONS(2445), - [aux_sym_cmd_identifier_token5] = ACTIONS(2445), - [aux_sym_cmd_identifier_token6] = ACTIONS(2445), - [aux_sym_cmd_identifier_token7] = ACTIONS(2445), - [aux_sym_cmd_identifier_token8] = ACTIONS(2445), - [aux_sym_cmd_identifier_token9] = ACTIONS(2445), - [aux_sym_cmd_identifier_token10] = ACTIONS(2445), - [aux_sym_cmd_identifier_token11] = ACTIONS(2445), - [aux_sym_cmd_identifier_token12] = ACTIONS(2445), - [aux_sym_cmd_identifier_token13] = ACTIONS(2445), - [aux_sym_cmd_identifier_token14] = ACTIONS(2445), - [aux_sym_cmd_identifier_token15] = ACTIONS(2445), - [aux_sym_cmd_identifier_token16] = ACTIONS(2445), - [aux_sym_cmd_identifier_token17] = ACTIONS(2445), - [aux_sym_cmd_identifier_token18] = ACTIONS(2445), - [aux_sym_cmd_identifier_token19] = ACTIONS(2445), - [aux_sym_cmd_identifier_token20] = ACTIONS(2445), - [aux_sym_cmd_identifier_token21] = ACTIONS(2445), - [aux_sym_cmd_identifier_token22] = ACTIONS(2445), - [aux_sym_cmd_identifier_token23] = ACTIONS(2445), - [aux_sym_cmd_identifier_token24] = ACTIONS(2445), - [aux_sym_cmd_identifier_token25] = ACTIONS(2445), - [aux_sym_cmd_identifier_token26] = ACTIONS(2445), - [aux_sym_cmd_identifier_token27] = ACTIONS(2445), - [aux_sym_cmd_identifier_token28] = ACTIONS(2445), - [aux_sym_cmd_identifier_token29] = ACTIONS(2445), - [aux_sym_cmd_identifier_token30] = ACTIONS(2445), - [aux_sym_cmd_identifier_token31] = ACTIONS(2445), - [aux_sym_cmd_identifier_token32] = ACTIONS(2445), - [aux_sym_cmd_identifier_token33] = ACTIONS(2445), - [aux_sym_cmd_identifier_token34] = ACTIONS(2445), - [aux_sym_cmd_identifier_token35] = ACTIONS(2445), - [aux_sym_cmd_identifier_token36] = ACTIONS(2445), + [anon_sym_export] = ACTIONS(2337), + [anon_sym_alias] = ACTIONS(2337), + [anon_sym_let] = ACTIONS(2337), + [anon_sym_let_DASHenv] = ACTIONS(2337), + [anon_sym_mut] = ACTIONS(2337), + [anon_sym_const] = ACTIONS(2337), + [aux_sym_cmd_identifier_token1] = ACTIONS(2337), + [aux_sym_cmd_identifier_token2] = ACTIONS(2337), + [aux_sym_cmd_identifier_token3] = ACTIONS(2337), + [aux_sym_cmd_identifier_token4] = ACTIONS(2337), + [aux_sym_cmd_identifier_token5] = ACTIONS(2337), + [aux_sym_cmd_identifier_token6] = ACTIONS(2337), + [aux_sym_cmd_identifier_token7] = ACTIONS(2337), + [aux_sym_cmd_identifier_token8] = ACTIONS(2337), + [aux_sym_cmd_identifier_token9] = ACTIONS(2337), + [aux_sym_cmd_identifier_token10] = ACTIONS(2337), + [aux_sym_cmd_identifier_token11] = ACTIONS(2337), + [aux_sym_cmd_identifier_token12] = ACTIONS(2337), + [aux_sym_cmd_identifier_token13] = ACTIONS(2337), + [aux_sym_cmd_identifier_token14] = ACTIONS(2337), + [aux_sym_cmd_identifier_token15] = ACTIONS(2337), + [aux_sym_cmd_identifier_token16] = ACTIONS(2337), + [aux_sym_cmd_identifier_token17] = ACTIONS(2337), + [aux_sym_cmd_identifier_token18] = ACTIONS(2337), + [aux_sym_cmd_identifier_token19] = ACTIONS(2337), + [aux_sym_cmd_identifier_token20] = ACTIONS(2337), + [aux_sym_cmd_identifier_token21] = ACTIONS(2337), + [aux_sym_cmd_identifier_token22] = ACTIONS(2337), + [aux_sym_cmd_identifier_token23] = ACTIONS(2337), + [aux_sym_cmd_identifier_token24] = ACTIONS(2337), + [aux_sym_cmd_identifier_token25] = ACTIONS(2337), + [aux_sym_cmd_identifier_token26] = ACTIONS(2337), + [aux_sym_cmd_identifier_token27] = ACTIONS(2337), + [aux_sym_cmd_identifier_token28] = ACTIONS(2337), + [aux_sym_cmd_identifier_token29] = ACTIONS(2337), + [aux_sym_cmd_identifier_token30] = ACTIONS(2337), + [aux_sym_cmd_identifier_token31] = ACTIONS(2337), + [aux_sym_cmd_identifier_token32] = ACTIONS(2337), + [aux_sym_cmd_identifier_token33] = ACTIONS(2337), + [aux_sym_cmd_identifier_token34] = ACTIONS(2337), + [aux_sym_cmd_identifier_token35] = ACTIONS(2337), + [aux_sym_cmd_identifier_token36] = ACTIONS(2337), + [anon_sym_true] = ACTIONS(2519), + [anon_sym_false] = ACTIONS(2519), + [anon_sym_null] = ACTIONS(2519), + [aux_sym_cmd_identifier_token38] = ACTIONS(2337), + [aux_sym_cmd_identifier_token39] = ACTIONS(2519), + [aux_sym_cmd_identifier_token40] = ACTIONS(2519), + [anon_sym_def] = ACTIONS(2337), + [anon_sym_export_DASHenv] = ACTIONS(2337), + [anon_sym_extern] = ACTIONS(2337), + [anon_sym_module] = ACTIONS(2337), + [anon_sym_use] = ACTIONS(2337), + [anon_sym_LPAREN] = ACTIONS(2519), + [anon_sym_DOLLAR] = ACTIONS(2519), + [anon_sym_error] = ACTIONS(2337), + [anon_sym_list] = ACTIONS(2337), + [anon_sym_DASH] = ACTIONS(2337), + [anon_sym_break] = ACTIONS(2337), + [anon_sym_continue] = ACTIONS(2337), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_in] = ACTIONS(2337), + [anon_sym_loop] = ACTIONS(2337), + [anon_sym_make] = ACTIONS(2337), + [anon_sym_while] = ACTIONS(2337), + [anon_sym_do] = ACTIONS(2337), + [anon_sym_if] = ACTIONS(2337), + [anon_sym_else] = ACTIONS(2337), + [anon_sym_match] = ACTIONS(2337), + [anon_sym_RBRACE] = ACTIONS(2519), + [anon_sym_try] = ACTIONS(2337), + [anon_sym_catch] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2337), + [anon_sym_source] = ACTIONS(2337), + [anon_sym_source_DASHenv] = ACTIONS(2337), + [anon_sym_register] = ACTIONS(2337), + [anon_sym_hide] = ACTIONS(2337), + [anon_sym_hide_DASHenv] = ACTIONS(2337), + [anon_sym_overlay] = ACTIONS(2337), + [anon_sym_new] = ACTIONS(2337), + [anon_sym_as] = ACTIONS(2337), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2519), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2519), + [aux_sym__val_number_decimal_token1] = ACTIONS(2337), + [aux_sym__val_number_decimal_token2] = ACTIONS(2519), + [aux_sym__val_number_decimal_token3] = ACTIONS(2519), + [aux_sym__val_number_decimal_token4] = ACTIONS(2519), + [aux_sym__val_number_token1] = ACTIONS(2519), + [aux_sym__val_number_token2] = ACTIONS(2519), + [aux_sym__val_number_token3] = ACTIONS(2519), + [anon_sym_DQUOTE] = ACTIONS(2519), + [sym__str_single_quotes] = ACTIONS(2519), + [sym__str_back_ticks] = ACTIONS(2519), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2519), + [anon_sym_PLUS] = ACTIONS(2337), + [anon_sym_POUND] = ACTIONS(247), + }, + [594] = { + [sym_comment] = STATE(594), + [anon_sym_export] = ACTIONS(2443), + [anon_sym_alias] = ACTIONS(2443), + [anon_sym_let] = ACTIONS(2443), + [anon_sym_let_DASHenv] = ACTIONS(2443), + [anon_sym_mut] = ACTIONS(2443), + [anon_sym_const] = ACTIONS(2443), + [aux_sym_cmd_identifier_token1] = ACTIONS(2443), + [aux_sym_cmd_identifier_token2] = ACTIONS(2443), + [aux_sym_cmd_identifier_token3] = ACTIONS(2443), + [aux_sym_cmd_identifier_token4] = ACTIONS(2443), + [aux_sym_cmd_identifier_token5] = ACTIONS(2443), + [aux_sym_cmd_identifier_token6] = ACTIONS(2443), + [aux_sym_cmd_identifier_token7] = ACTIONS(2443), + [aux_sym_cmd_identifier_token8] = ACTIONS(2443), + [aux_sym_cmd_identifier_token9] = ACTIONS(2443), + [aux_sym_cmd_identifier_token10] = ACTIONS(2443), + [aux_sym_cmd_identifier_token11] = ACTIONS(2443), + [aux_sym_cmd_identifier_token12] = ACTIONS(2443), + [aux_sym_cmd_identifier_token13] = ACTIONS(2443), + [aux_sym_cmd_identifier_token14] = ACTIONS(2443), + [aux_sym_cmd_identifier_token15] = ACTIONS(2443), + [aux_sym_cmd_identifier_token16] = ACTIONS(2443), + [aux_sym_cmd_identifier_token17] = ACTIONS(2443), + [aux_sym_cmd_identifier_token18] = ACTIONS(2443), + [aux_sym_cmd_identifier_token19] = ACTIONS(2443), + [aux_sym_cmd_identifier_token20] = ACTIONS(2443), + [aux_sym_cmd_identifier_token21] = ACTIONS(2443), + [aux_sym_cmd_identifier_token22] = ACTIONS(2443), + [aux_sym_cmd_identifier_token23] = ACTIONS(2443), + [aux_sym_cmd_identifier_token24] = ACTIONS(2443), + [aux_sym_cmd_identifier_token25] = ACTIONS(2443), + [aux_sym_cmd_identifier_token26] = ACTIONS(2443), + [aux_sym_cmd_identifier_token27] = ACTIONS(2443), + [aux_sym_cmd_identifier_token28] = ACTIONS(2443), + [aux_sym_cmd_identifier_token29] = ACTIONS(2443), + [aux_sym_cmd_identifier_token30] = ACTIONS(2443), + [aux_sym_cmd_identifier_token31] = ACTIONS(2443), + [aux_sym_cmd_identifier_token32] = ACTIONS(2443), + [aux_sym_cmd_identifier_token33] = ACTIONS(2443), + [aux_sym_cmd_identifier_token34] = ACTIONS(2443), + [aux_sym_cmd_identifier_token35] = ACTIONS(2443), + [aux_sym_cmd_identifier_token36] = ACTIONS(2443), [anon_sym_true] = ACTIONS(2445), [anon_sym_false] = ACTIONS(2445), [anon_sym_null] = ACTIONS(2445), - [aux_sym_cmd_identifier_token38] = ACTIONS(2445), + [aux_sym_cmd_identifier_token38] = ACTIONS(2443), [aux_sym_cmd_identifier_token39] = ACTIONS(2445), [aux_sym_cmd_identifier_token40] = ACTIONS(2445), - [anon_sym_def] = ACTIONS(2445), - [anon_sym_export_DASHenv] = ACTIONS(2445), - [anon_sym_extern] = ACTIONS(2445), - [anon_sym_module] = ACTIONS(2445), - [anon_sym_use] = ACTIONS(2445), + [anon_sym_def] = ACTIONS(2443), + [anon_sym_export_DASHenv] = ACTIONS(2443), + [anon_sym_extern] = ACTIONS(2443), + [anon_sym_module] = ACTIONS(2443), + [anon_sym_use] = ACTIONS(2443), [anon_sym_LPAREN] = ACTIONS(2445), [anon_sym_DOLLAR] = ACTIONS(2445), - [anon_sym_error] = ACTIONS(2445), - [anon_sym_list] = ACTIONS(2445), - [anon_sym_DASH] = ACTIONS(2445), - [anon_sym_break] = ACTIONS(2445), - [anon_sym_continue] = ACTIONS(2445), - [anon_sym_for] = ACTIONS(2445), - [anon_sym_in] = ACTIONS(2445), - [anon_sym_loop] = ACTIONS(2445), - [anon_sym_make] = ACTIONS(2445), - [anon_sym_while] = ACTIONS(2445), - [anon_sym_do] = ACTIONS(2445), - [anon_sym_if] = ACTIONS(2445), - [anon_sym_else] = ACTIONS(2445), - [anon_sym_match] = ACTIONS(2445), + [anon_sym_error] = ACTIONS(2443), + [anon_sym_list] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2443), + [anon_sym_break] = ACTIONS(2443), + [anon_sym_continue] = ACTIONS(2443), + [anon_sym_for] = ACTIONS(2443), + [anon_sym_in] = ACTIONS(2443), + [anon_sym_loop] = ACTIONS(2443), + [anon_sym_make] = ACTIONS(2443), + [anon_sym_while] = ACTIONS(2443), + [anon_sym_do] = ACTIONS(2443), + [anon_sym_if] = ACTIONS(2443), + [anon_sym_else] = ACTIONS(2443), + [anon_sym_match] = ACTIONS(2443), [anon_sym_RBRACE] = ACTIONS(2445), - [anon_sym_try] = ACTIONS(2445), - [anon_sym_catch] = ACTIONS(2445), - [anon_sym_return] = ACTIONS(2445), - [anon_sym_source] = ACTIONS(2445), - [anon_sym_source_DASHenv] = ACTIONS(2445), - [anon_sym_register] = ACTIONS(2445), - [anon_sym_hide] = ACTIONS(2445), - [anon_sym_hide_DASHenv] = ACTIONS(2445), - [anon_sym_overlay] = ACTIONS(2445), - [anon_sym_new] = ACTIONS(2445), - [anon_sym_as] = ACTIONS(2445), + [anon_sym_try] = ACTIONS(2443), + [anon_sym_catch] = ACTIONS(2443), + [anon_sym_return] = ACTIONS(2443), + [anon_sym_source] = ACTIONS(2443), + [anon_sym_source_DASHenv] = ACTIONS(2443), + [anon_sym_register] = ACTIONS(2443), + [anon_sym_hide] = ACTIONS(2443), + [anon_sym_hide_DASHenv] = ACTIONS(2443), + [anon_sym_overlay] = ACTIONS(2443), + [anon_sym_new] = ACTIONS(2443), + [anon_sym_as] = ACTIONS(2443), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2445), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2445), - [aux_sym__val_number_decimal_token1] = ACTIONS(2445), + [aux_sym__val_number_decimal_token1] = ACTIONS(2443), [aux_sym__val_number_decimal_token2] = ACTIONS(2445), [aux_sym__val_number_decimal_token3] = ACTIONS(2445), [aux_sym__val_number_decimal_token4] = ACTIONS(2445), @@ -143449,409 +139429,1595 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(2445), [sym__str_back_ticks] = ACTIONS(2445), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2445), - [sym__entry_separator] = ACTIONS(2447), - [anon_sym_PLUS] = ACTIONS(2445), - [anon_sym_POUND] = ACTIONS(3), - }, - [594] = { - [sym_comment] = STATE(594), - [anon_sym_export] = ACTIONS(966), - [anon_sym_alias] = ACTIONS(966), - [anon_sym_let] = ACTIONS(966), - [anon_sym_let_DASHenv] = ACTIONS(966), - [anon_sym_mut] = ACTIONS(966), - [anon_sym_const] = ACTIONS(966), - [aux_sym_cmd_identifier_token1] = ACTIONS(966), - [aux_sym_cmd_identifier_token2] = ACTIONS(966), - [aux_sym_cmd_identifier_token3] = ACTIONS(966), - [aux_sym_cmd_identifier_token4] = ACTIONS(966), - [aux_sym_cmd_identifier_token5] = ACTIONS(966), - [aux_sym_cmd_identifier_token6] = ACTIONS(966), - [aux_sym_cmd_identifier_token7] = ACTIONS(966), - [aux_sym_cmd_identifier_token8] = ACTIONS(966), - [aux_sym_cmd_identifier_token9] = ACTIONS(966), - [aux_sym_cmd_identifier_token10] = ACTIONS(966), - [aux_sym_cmd_identifier_token11] = ACTIONS(966), - [aux_sym_cmd_identifier_token12] = ACTIONS(966), - [aux_sym_cmd_identifier_token13] = ACTIONS(966), - [aux_sym_cmd_identifier_token14] = ACTIONS(966), - [aux_sym_cmd_identifier_token15] = ACTIONS(966), - [aux_sym_cmd_identifier_token16] = ACTIONS(966), - [aux_sym_cmd_identifier_token17] = ACTIONS(966), - [aux_sym_cmd_identifier_token18] = ACTIONS(966), - [aux_sym_cmd_identifier_token19] = ACTIONS(966), - [aux_sym_cmd_identifier_token20] = ACTIONS(966), - [aux_sym_cmd_identifier_token21] = ACTIONS(966), - [aux_sym_cmd_identifier_token22] = ACTIONS(966), - [aux_sym_cmd_identifier_token23] = ACTIONS(966), - [aux_sym_cmd_identifier_token24] = ACTIONS(966), - [aux_sym_cmd_identifier_token25] = ACTIONS(966), - [aux_sym_cmd_identifier_token26] = ACTIONS(966), - [aux_sym_cmd_identifier_token27] = ACTIONS(966), - [aux_sym_cmd_identifier_token28] = ACTIONS(966), - [aux_sym_cmd_identifier_token29] = ACTIONS(966), - [aux_sym_cmd_identifier_token30] = ACTIONS(966), - [aux_sym_cmd_identifier_token31] = ACTIONS(966), - [aux_sym_cmd_identifier_token32] = ACTIONS(966), - [aux_sym_cmd_identifier_token33] = ACTIONS(966), - [aux_sym_cmd_identifier_token34] = ACTIONS(966), - [aux_sym_cmd_identifier_token35] = ACTIONS(966), - [aux_sym_cmd_identifier_token36] = ACTIONS(966), - [anon_sym_true] = ACTIONS(966), - [anon_sym_false] = ACTIONS(966), - [anon_sym_null] = ACTIONS(966), - [aux_sym_cmd_identifier_token38] = ACTIONS(966), - [aux_sym_cmd_identifier_token39] = ACTIONS(966), - [aux_sym_cmd_identifier_token40] = ACTIONS(966), - [anon_sym_def] = ACTIONS(966), - [anon_sym_export_DASHenv] = ACTIONS(966), - [anon_sym_extern] = ACTIONS(966), - [anon_sym_module] = ACTIONS(966), - [anon_sym_use] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(966), - [anon_sym_DOLLAR] = ACTIONS(966), - [anon_sym_error] = ACTIONS(966), - [anon_sym_list] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_break] = ACTIONS(966), - [anon_sym_continue] = ACTIONS(966), - [anon_sym_for] = ACTIONS(966), - [anon_sym_in] = ACTIONS(966), - [anon_sym_loop] = ACTIONS(966), - [anon_sym_make] = ACTIONS(966), - [anon_sym_while] = ACTIONS(966), - [anon_sym_do] = ACTIONS(966), - [anon_sym_if] = ACTIONS(966), - [anon_sym_else] = ACTIONS(966), - [anon_sym_match] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(966), - [anon_sym_try] = ACTIONS(966), - [anon_sym_catch] = ACTIONS(966), - [anon_sym_return] = ACTIONS(966), - [anon_sym_source] = ACTIONS(966), - [anon_sym_source_DASHenv] = ACTIONS(966), - [anon_sym_register] = ACTIONS(966), - [anon_sym_hide] = ACTIONS(966), - [anon_sym_hide_DASHenv] = ACTIONS(966), - [anon_sym_overlay] = ACTIONS(966), - [anon_sym_new] = ACTIONS(966), - [anon_sym_as] = ACTIONS(966), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(966), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(966), - [aux_sym__val_number_decimal_token1] = ACTIONS(966), - [aux_sym__val_number_decimal_token2] = ACTIONS(966), - [aux_sym__val_number_decimal_token3] = ACTIONS(966), - [aux_sym__val_number_decimal_token4] = ACTIONS(966), - [aux_sym__val_number_token1] = ACTIONS(966), - [aux_sym__val_number_token2] = ACTIONS(966), - [aux_sym__val_number_token3] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(966), - [sym__str_single_quotes] = ACTIONS(966), - [sym__str_back_ticks] = ACTIONS(966), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(966), - [sym__entry_separator] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2443), + [anon_sym_POUND] = ACTIONS(247), }, [595] = { [sym_comment] = STATE(595), - [anon_sym_export] = ACTIONS(962), - [anon_sym_alias] = ACTIONS(962), - [anon_sym_let] = ACTIONS(962), - [anon_sym_let_DASHenv] = ACTIONS(962), - [anon_sym_mut] = ACTIONS(962), - [anon_sym_const] = ACTIONS(962), - [aux_sym_cmd_identifier_token1] = ACTIONS(962), - [aux_sym_cmd_identifier_token2] = ACTIONS(962), - [aux_sym_cmd_identifier_token3] = ACTIONS(962), - [aux_sym_cmd_identifier_token4] = ACTIONS(962), - [aux_sym_cmd_identifier_token5] = ACTIONS(962), - [aux_sym_cmd_identifier_token6] = ACTIONS(962), - [aux_sym_cmd_identifier_token7] = ACTIONS(962), - [aux_sym_cmd_identifier_token8] = ACTIONS(962), - [aux_sym_cmd_identifier_token9] = ACTIONS(962), - [aux_sym_cmd_identifier_token10] = ACTIONS(962), - [aux_sym_cmd_identifier_token11] = ACTIONS(962), - [aux_sym_cmd_identifier_token12] = ACTIONS(962), - [aux_sym_cmd_identifier_token13] = ACTIONS(962), - [aux_sym_cmd_identifier_token14] = ACTIONS(962), - [aux_sym_cmd_identifier_token15] = ACTIONS(962), - [aux_sym_cmd_identifier_token16] = ACTIONS(962), - [aux_sym_cmd_identifier_token17] = ACTIONS(962), - [aux_sym_cmd_identifier_token18] = ACTIONS(962), - [aux_sym_cmd_identifier_token19] = ACTIONS(962), - [aux_sym_cmd_identifier_token20] = ACTIONS(962), - [aux_sym_cmd_identifier_token21] = ACTIONS(962), - [aux_sym_cmd_identifier_token22] = ACTIONS(962), - [aux_sym_cmd_identifier_token23] = ACTIONS(962), - [aux_sym_cmd_identifier_token24] = ACTIONS(962), - [aux_sym_cmd_identifier_token25] = ACTIONS(962), - [aux_sym_cmd_identifier_token26] = ACTIONS(962), - [aux_sym_cmd_identifier_token27] = ACTIONS(962), - [aux_sym_cmd_identifier_token28] = ACTIONS(962), - [aux_sym_cmd_identifier_token29] = ACTIONS(962), - [aux_sym_cmd_identifier_token30] = ACTIONS(962), - [aux_sym_cmd_identifier_token31] = ACTIONS(962), - [aux_sym_cmd_identifier_token32] = ACTIONS(962), - [aux_sym_cmd_identifier_token33] = ACTIONS(962), - [aux_sym_cmd_identifier_token34] = ACTIONS(962), - [aux_sym_cmd_identifier_token35] = ACTIONS(962), - [aux_sym_cmd_identifier_token36] = ACTIONS(962), - [anon_sym_true] = ACTIONS(964), - [anon_sym_false] = ACTIONS(964), - [anon_sym_null] = ACTIONS(964), - [aux_sym_cmd_identifier_token38] = ACTIONS(962), - [aux_sym_cmd_identifier_token39] = ACTIONS(964), - [aux_sym_cmd_identifier_token40] = ACTIONS(964), - [anon_sym_def] = ACTIONS(962), - [anon_sym_export_DASHenv] = ACTIONS(962), - [anon_sym_extern] = ACTIONS(962), - [anon_sym_module] = ACTIONS(962), - [anon_sym_use] = ACTIONS(962), - [anon_sym_LPAREN] = ACTIONS(964), - [anon_sym_DOLLAR] = ACTIONS(964), - [anon_sym_error] = ACTIONS(962), - [anon_sym_list] = ACTIONS(962), - [anon_sym_DASH] = ACTIONS(962), - [anon_sym_break] = ACTIONS(962), - [anon_sym_continue] = ACTIONS(962), - [anon_sym_for] = ACTIONS(962), - [anon_sym_in] = ACTIONS(962), - [anon_sym_loop] = ACTIONS(962), - [anon_sym_make] = ACTIONS(962), - [anon_sym_while] = ACTIONS(962), - [anon_sym_do] = ACTIONS(962), - [anon_sym_if] = ACTIONS(962), - [anon_sym_else] = ACTIONS(962), - [anon_sym_match] = ACTIONS(962), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_try] = ACTIONS(962), - [anon_sym_catch] = ACTIONS(962), - [anon_sym_return] = ACTIONS(962), - [anon_sym_source] = ACTIONS(962), - [anon_sym_source_DASHenv] = ACTIONS(962), - [anon_sym_register] = ACTIONS(962), - [anon_sym_hide] = ACTIONS(962), - [anon_sym_hide_DASHenv] = ACTIONS(962), - [anon_sym_overlay] = ACTIONS(962), - [anon_sym_new] = ACTIONS(962), - [anon_sym_as] = ACTIONS(962), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(964), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(964), - [aux_sym__val_number_decimal_token1] = ACTIONS(962), - [aux_sym__val_number_decimal_token2] = ACTIONS(964), - [aux_sym__val_number_decimal_token3] = ACTIONS(964), - [aux_sym__val_number_decimal_token4] = ACTIONS(964), - [aux_sym__val_number_token1] = ACTIONS(964), - [aux_sym__val_number_token2] = ACTIONS(964), - [aux_sym__val_number_token3] = ACTIONS(964), - [anon_sym_DQUOTE] = ACTIONS(964), - [sym__str_single_quotes] = ACTIONS(964), - [sym__str_back_ticks] = ACTIONS(964), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(962), + [anon_sym_export] = ACTIONS(2019), + [anon_sym_alias] = ACTIONS(2019), + [anon_sym_let] = ACTIONS(2019), + [anon_sym_let_DASHenv] = ACTIONS(2019), + [anon_sym_mut] = ACTIONS(2019), + [anon_sym_const] = ACTIONS(2019), + [aux_sym_cmd_identifier_token1] = ACTIONS(2019), + [aux_sym_cmd_identifier_token2] = ACTIONS(2019), + [aux_sym_cmd_identifier_token3] = ACTIONS(2019), + [aux_sym_cmd_identifier_token4] = ACTIONS(2019), + [aux_sym_cmd_identifier_token5] = ACTIONS(2019), + [aux_sym_cmd_identifier_token6] = ACTIONS(2019), + [aux_sym_cmd_identifier_token7] = ACTIONS(2019), + [aux_sym_cmd_identifier_token8] = ACTIONS(2019), + [aux_sym_cmd_identifier_token9] = ACTIONS(2019), + [aux_sym_cmd_identifier_token10] = ACTIONS(2019), + [aux_sym_cmd_identifier_token11] = ACTIONS(2019), + [aux_sym_cmd_identifier_token12] = ACTIONS(2019), + [aux_sym_cmd_identifier_token13] = ACTIONS(2019), + [aux_sym_cmd_identifier_token14] = ACTIONS(2019), + [aux_sym_cmd_identifier_token15] = ACTIONS(2019), + [aux_sym_cmd_identifier_token16] = ACTIONS(2019), + [aux_sym_cmd_identifier_token17] = ACTIONS(2019), + [aux_sym_cmd_identifier_token18] = ACTIONS(2019), + [aux_sym_cmd_identifier_token19] = ACTIONS(2019), + [aux_sym_cmd_identifier_token20] = ACTIONS(2019), + [aux_sym_cmd_identifier_token21] = ACTIONS(2019), + [aux_sym_cmd_identifier_token22] = ACTIONS(2019), + [aux_sym_cmd_identifier_token23] = ACTIONS(2019), + [aux_sym_cmd_identifier_token24] = ACTIONS(2019), + [aux_sym_cmd_identifier_token25] = ACTIONS(2019), + [aux_sym_cmd_identifier_token26] = ACTIONS(2019), + [aux_sym_cmd_identifier_token27] = ACTIONS(2019), + [aux_sym_cmd_identifier_token28] = ACTIONS(2019), + [aux_sym_cmd_identifier_token29] = ACTIONS(2019), + [aux_sym_cmd_identifier_token30] = ACTIONS(2019), + [aux_sym_cmd_identifier_token31] = ACTIONS(2019), + [aux_sym_cmd_identifier_token32] = ACTIONS(2019), + [aux_sym_cmd_identifier_token33] = ACTIONS(2019), + [aux_sym_cmd_identifier_token34] = ACTIONS(2019), + [aux_sym_cmd_identifier_token35] = ACTIONS(2019), + [aux_sym_cmd_identifier_token36] = ACTIONS(2019), + [anon_sym_true] = ACTIONS(2021), + [anon_sym_false] = ACTIONS(2021), + [anon_sym_null] = ACTIONS(2021), + [aux_sym_cmd_identifier_token38] = ACTIONS(2019), + [aux_sym_cmd_identifier_token39] = ACTIONS(2021), + [aux_sym_cmd_identifier_token40] = ACTIONS(2021), + [anon_sym_def] = ACTIONS(2019), + [anon_sym_export_DASHenv] = ACTIONS(2019), + [anon_sym_extern] = ACTIONS(2019), + [anon_sym_module] = ACTIONS(2019), + [anon_sym_use] = ACTIONS(2019), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_DOLLAR] = ACTIONS(2021), + [anon_sym_error] = ACTIONS(2019), + [anon_sym_list] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_break] = ACTIONS(2019), + [anon_sym_continue] = ACTIONS(2019), + [anon_sym_for] = ACTIONS(2019), + [anon_sym_in] = ACTIONS(2019), + [anon_sym_loop] = ACTIONS(2019), + [anon_sym_make] = ACTIONS(2019), + [anon_sym_while] = ACTIONS(2019), + [anon_sym_do] = ACTIONS(2019), + [anon_sym_if] = ACTIONS(2019), + [anon_sym_else] = ACTIONS(2019), + [anon_sym_match] = ACTIONS(2019), + [anon_sym_RBRACE] = ACTIONS(2021), + [anon_sym_try] = ACTIONS(2019), + [anon_sym_catch] = ACTIONS(2019), + [anon_sym_return] = ACTIONS(2019), + [anon_sym_source] = ACTIONS(2019), + [anon_sym_source_DASHenv] = ACTIONS(2019), + [anon_sym_register] = ACTIONS(2019), + [anon_sym_hide] = ACTIONS(2019), + [anon_sym_hide_DASHenv] = ACTIONS(2019), + [anon_sym_overlay] = ACTIONS(2019), + [anon_sym_new] = ACTIONS(2019), + [anon_sym_as] = ACTIONS(2019), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2021), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2021), + [aux_sym__val_number_decimal_token1] = ACTIONS(2019), + [aux_sym__val_number_decimal_token2] = ACTIONS(2021), + [aux_sym__val_number_decimal_token3] = ACTIONS(2021), + [aux_sym__val_number_decimal_token4] = ACTIONS(2021), + [aux_sym__val_number_token1] = ACTIONS(2021), + [aux_sym__val_number_token2] = ACTIONS(2021), + [aux_sym__val_number_token3] = ACTIONS(2021), + [anon_sym_DQUOTE] = ACTIONS(2021), + [sym__str_single_quotes] = ACTIONS(2021), + [sym__str_back_ticks] = ACTIONS(2021), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(2019), [anon_sym_POUND] = ACTIONS(247), }, [596] = { [sym_comment] = STATE(596), - [anon_sym_export] = ACTIONS(2397), - [anon_sym_alias] = ACTIONS(2397), - [anon_sym_let] = ACTIONS(2397), - [anon_sym_let_DASHenv] = ACTIONS(2397), - [anon_sym_mut] = ACTIONS(2397), - [anon_sym_const] = ACTIONS(2397), - [aux_sym_cmd_identifier_token1] = ACTIONS(2397), - [aux_sym_cmd_identifier_token2] = ACTIONS(2397), - [aux_sym_cmd_identifier_token3] = ACTIONS(2397), - [aux_sym_cmd_identifier_token4] = ACTIONS(2397), - [aux_sym_cmd_identifier_token5] = ACTIONS(2397), - [aux_sym_cmd_identifier_token6] = ACTIONS(2397), - [aux_sym_cmd_identifier_token7] = ACTIONS(2397), - [aux_sym_cmd_identifier_token8] = ACTIONS(2397), - [aux_sym_cmd_identifier_token9] = ACTIONS(2397), - [aux_sym_cmd_identifier_token10] = ACTIONS(2397), - [aux_sym_cmd_identifier_token11] = ACTIONS(2397), - [aux_sym_cmd_identifier_token12] = ACTIONS(2397), - [aux_sym_cmd_identifier_token13] = ACTIONS(2397), - [aux_sym_cmd_identifier_token14] = ACTIONS(2397), - [aux_sym_cmd_identifier_token15] = ACTIONS(2397), - [aux_sym_cmd_identifier_token16] = ACTIONS(2397), - [aux_sym_cmd_identifier_token17] = ACTIONS(2397), - [aux_sym_cmd_identifier_token18] = ACTIONS(2397), - [aux_sym_cmd_identifier_token19] = ACTIONS(2397), - [aux_sym_cmd_identifier_token20] = ACTIONS(2397), - [aux_sym_cmd_identifier_token21] = ACTIONS(2397), - [aux_sym_cmd_identifier_token22] = ACTIONS(2397), - [aux_sym_cmd_identifier_token23] = ACTIONS(2397), - [aux_sym_cmd_identifier_token24] = ACTIONS(2397), - [aux_sym_cmd_identifier_token25] = ACTIONS(2397), - [aux_sym_cmd_identifier_token26] = ACTIONS(2397), - [aux_sym_cmd_identifier_token27] = ACTIONS(2397), - [aux_sym_cmd_identifier_token28] = ACTIONS(2397), - [aux_sym_cmd_identifier_token29] = ACTIONS(2397), - [aux_sym_cmd_identifier_token30] = ACTIONS(2397), - [aux_sym_cmd_identifier_token31] = ACTIONS(2397), - [aux_sym_cmd_identifier_token32] = ACTIONS(2397), - [aux_sym_cmd_identifier_token33] = ACTIONS(2397), - [aux_sym_cmd_identifier_token34] = ACTIONS(2397), - [aux_sym_cmd_identifier_token35] = ACTIONS(2397), - [aux_sym_cmd_identifier_token36] = ACTIONS(2397), - [anon_sym_true] = ACTIONS(2399), - [anon_sym_false] = ACTIONS(2399), - [anon_sym_null] = ACTIONS(2399), - [aux_sym_cmd_identifier_token38] = ACTIONS(2397), - [aux_sym_cmd_identifier_token39] = ACTIONS(2399), - [aux_sym_cmd_identifier_token40] = ACTIONS(2399), - [anon_sym_def] = ACTIONS(2397), - [anon_sym_export_DASHenv] = ACTIONS(2397), - [anon_sym_extern] = ACTIONS(2397), - [anon_sym_module] = ACTIONS(2397), - [anon_sym_use] = ACTIONS(2397), - [anon_sym_LPAREN] = ACTIONS(2399), - [anon_sym_DOLLAR] = ACTIONS(2399), - [anon_sym_error] = ACTIONS(2397), - [anon_sym_list] = ACTIONS(2397), - [anon_sym_DASH] = ACTIONS(2397), - [anon_sym_break] = ACTIONS(2397), - [anon_sym_continue] = ACTIONS(2397), - [anon_sym_for] = ACTIONS(2397), - [anon_sym_in] = ACTIONS(2397), - [anon_sym_loop] = ACTIONS(2397), - [anon_sym_make] = ACTIONS(2397), - [anon_sym_while] = ACTIONS(2397), - [anon_sym_do] = ACTIONS(2397), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_else] = ACTIONS(2397), - [anon_sym_match] = ACTIONS(2397), - [anon_sym_RBRACE] = ACTIONS(2399), - [anon_sym_try] = ACTIONS(2397), - [anon_sym_catch] = ACTIONS(2397), - [anon_sym_return] = ACTIONS(2397), - [anon_sym_source] = ACTIONS(2397), - [anon_sym_source_DASHenv] = ACTIONS(2397), - [anon_sym_register] = ACTIONS(2397), - [anon_sym_hide] = ACTIONS(2397), - [anon_sym_hide_DASHenv] = ACTIONS(2397), - [anon_sym_overlay] = ACTIONS(2397), - [anon_sym_new] = ACTIONS(2397), - [anon_sym_as] = ACTIONS(2397), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2399), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2399), - [aux_sym__val_number_decimal_token1] = ACTIONS(2397), - [aux_sym__val_number_decimal_token2] = ACTIONS(2399), - [aux_sym__val_number_decimal_token3] = ACTIONS(2399), - [aux_sym__val_number_decimal_token4] = ACTIONS(2399), - [aux_sym__val_number_token1] = ACTIONS(2399), - [aux_sym__val_number_token2] = ACTIONS(2399), - [aux_sym__val_number_token3] = ACTIONS(2399), - [anon_sym_DQUOTE] = ACTIONS(2399), - [sym__str_single_quotes] = ACTIONS(2399), - [sym__str_back_ticks] = ACTIONS(2399), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2399), - [anon_sym_PLUS] = ACTIONS(2397), + [anon_sym_export] = ACTIONS(2133), + [anon_sym_alias] = ACTIONS(2133), + [anon_sym_let] = ACTIONS(2133), + [anon_sym_let_DASHenv] = ACTIONS(2133), + [anon_sym_mut] = ACTIONS(2133), + [anon_sym_const] = ACTIONS(2133), + [aux_sym_cmd_identifier_token1] = ACTIONS(2133), + [aux_sym_cmd_identifier_token2] = ACTIONS(2133), + [aux_sym_cmd_identifier_token3] = ACTIONS(2133), + [aux_sym_cmd_identifier_token4] = ACTIONS(2133), + [aux_sym_cmd_identifier_token5] = ACTIONS(2133), + [aux_sym_cmd_identifier_token6] = ACTIONS(2133), + [aux_sym_cmd_identifier_token7] = ACTIONS(2133), + [aux_sym_cmd_identifier_token8] = ACTIONS(2133), + [aux_sym_cmd_identifier_token9] = ACTIONS(2133), + [aux_sym_cmd_identifier_token10] = ACTIONS(2133), + [aux_sym_cmd_identifier_token11] = ACTIONS(2133), + [aux_sym_cmd_identifier_token12] = ACTIONS(2133), + [aux_sym_cmd_identifier_token13] = ACTIONS(2133), + [aux_sym_cmd_identifier_token14] = ACTIONS(2133), + [aux_sym_cmd_identifier_token15] = ACTIONS(2133), + [aux_sym_cmd_identifier_token16] = ACTIONS(2133), + [aux_sym_cmd_identifier_token17] = ACTIONS(2133), + [aux_sym_cmd_identifier_token18] = ACTIONS(2133), + [aux_sym_cmd_identifier_token19] = ACTIONS(2133), + [aux_sym_cmd_identifier_token20] = ACTIONS(2133), + [aux_sym_cmd_identifier_token21] = ACTIONS(2133), + [aux_sym_cmd_identifier_token22] = ACTIONS(2133), + [aux_sym_cmd_identifier_token23] = ACTIONS(2133), + [aux_sym_cmd_identifier_token24] = ACTIONS(2133), + [aux_sym_cmd_identifier_token25] = ACTIONS(2133), + [aux_sym_cmd_identifier_token26] = ACTIONS(2133), + [aux_sym_cmd_identifier_token27] = ACTIONS(2133), + [aux_sym_cmd_identifier_token28] = ACTIONS(2133), + [aux_sym_cmd_identifier_token29] = ACTIONS(2133), + [aux_sym_cmd_identifier_token30] = ACTIONS(2133), + [aux_sym_cmd_identifier_token31] = ACTIONS(2133), + [aux_sym_cmd_identifier_token32] = ACTIONS(2133), + [aux_sym_cmd_identifier_token33] = ACTIONS(2133), + [aux_sym_cmd_identifier_token34] = ACTIONS(2133), + [aux_sym_cmd_identifier_token35] = ACTIONS(2133), + [aux_sym_cmd_identifier_token36] = ACTIONS(2133), + [anon_sym_true] = ACTIONS(2135), + [anon_sym_false] = ACTIONS(2135), + [anon_sym_null] = ACTIONS(2135), + [aux_sym_cmd_identifier_token38] = ACTIONS(2133), + [aux_sym_cmd_identifier_token39] = ACTIONS(2135), + [aux_sym_cmd_identifier_token40] = ACTIONS(2135), + [anon_sym_def] = ACTIONS(2133), + [anon_sym_export_DASHenv] = ACTIONS(2133), + [anon_sym_extern] = ACTIONS(2133), + [anon_sym_module] = ACTIONS(2133), + [anon_sym_use] = ACTIONS(2133), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_DOLLAR] = ACTIONS(2135), + [anon_sym_error] = ACTIONS(2133), + [anon_sym_list] = ACTIONS(2133), + [anon_sym_DASH] = ACTIONS(2133), + [anon_sym_break] = ACTIONS(2133), + [anon_sym_continue] = ACTIONS(2133), + [anon_sym_for] = ACTIONS(2133), + [anon_sym_in] = ACTIONS(2133), + [anon_sym_loop] = ACTIONS(2133), + [anon_sym_make] = ACTIONS(2133), + [anon_sym_while] = ACTIONS(2133), + [anon_sym_do] = ACTIONS(2133), + [anon_sym_if] = ACTIONS(2133), + [anon_sym_else] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_RBRACE] = ACTIONS(2135), + [anon_sym_try] = ACTIONS(2133), + [anon_sym_catch] = ACTIONS(2133), + [anon_sym_return] = ACTIONS(2133), + [anon_sym_source] = ACTIONS(2133), + [anon_sym_source_DASHenv] = ACTIONS(2133), + [anon_sym_register] = ACTIONS(2133), + [anon_sym_hide] = ACTIONS(2133), + [anon_sym_hide_DASHenv] = ACTIONS(2133), + [anon_sym_overlay] = ACTIONS(2133), + [anon_sym_new] = ACTIONS(2133), + [anon_sym_as] = ACTIONS(2133), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2135), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2135), + [aux_sym__val_number_decimal_token1] = ACTIONS(2133), + [aux_sym__val_number_decimal_token2] = ACTIONS(2135), + [aux_sym__val_number_decimal_token3] = ACTIONS(2135), + [aux_sym__val_number_decimal_token4] = ACTIONS(2135), + [aux_sym__val_number_token1] = ACTIONS(2135), + [aux_sym__val_number_token2] = ACTIONS(2135), + [aux_sym__val_number_token3] = ACTIONS(2135), + [anon_sym_DQUOTE] = ACTIONS(2135), + [sym__str_single_quotes] = ACTIONS(2135), + [sym__str_back_ticks] = ACTIONS(2135), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2135), + [anon_sym_PLUS] = ACTIONS(2133), [anon_sym_POUND] = ACTIONS(247), }, [597] = { [sym_comment] = STATE(597), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_alias] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_let_DASHenv] = ACTIONS(2332), - [anon_sym_mut] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [aux_sym_cmd_identifier_token1] = ACTIONS(2332), - [aux_sym_cmd_identifier_token2] = ACTIONS(2332), - [aux_sym_cmd_identifier_token3] = ACTIONS(2332), - [aux_sym_cmd_identifier_token4] = ACTIONS(2332), - [aux_sym_cmd_identifier_token5] = ACTIONS(2332), - [aux_sym_cmd_identifier_token6] = ACTIONS(2332), - [aux_sym_cmd_identifier_token7] = ACTIONS(2332), - [aux_sym_cmd_identifier_token8] = ACTIONS(2332), - [aux_sym_cmd_identifier_token9] = ACTIONS(2332), - [aux_sym_cmd_identifier_token10] = ACTIONS(2332), - [aux_sym_cmd_identifier_token11] = ACTIONS(2332), - [aux_sym_cmd_identifier_token12] = ACTIONS(2332), - [aux_sym_cmd_identifier_token13] = ACTIONS(2332), - [aux_sym_cmd_identifier_token14] = ACTIONS(2332), - [aux_sym_cmd_identifier_token15] = ACTIONS(2332), - [aux_sym_cmd_identifier_token16] = ACTIONS(2332), - [aux_sym_cmd_identifier_token17] = ACTIONS(2332), - [aux_sym_cmd_identifier_token18] = ACTIONS(2332), - [aux_sym_cmd_identifier_token19] = ACTIONS(2332), - [aux_sym_cmd_identifier_token20] = ACTIONS(2332), - [aux_sym_cmd_identifier_token21] = ACTIONS(2332), - [aux_sym_cmd_identifier_token22] = ACTIONS(2332), - [aux_sym_cmd_identifier_token23] = ACTIONS(2332), - [aux_sym_cmd_identifier_token24] = ACTIONS(2332), - [aux_sym_cmd_identifier_token25] = ACTIONS(2332), - [aux_sym_cmd_identifier_token26] = ACTIONS(2332), - [aux_sym_cmd_identifier_token27] = ACTIONS(2332), - [aux_sym_cmd_identifier_token28] = ACTIONS(2332), - [aux_sym_cmd_identifier_token29] = ACTIONS(2332), - [aux_sym_cmd_identifier_token30] = ACTIONS(2332), - [aux_sym_cmd_identifier_token31] = ACTIONS(2332), - [aux_sym_cmd_identifier_token32] = ACTIONS(2332), - [aux_sym_cmd_identifier_token33] = ACTIONS(2332), - [aux_sym_cmd_identifier_token34] = ACTIONS(2332), - [aux_sym_cmd_identifier_token35] = ACTIONS(2332), - [aux_sym_cmd_identifier_token36] = ACTIONS(2332), - [anon_sym_true] = ACTIONS(2334), - [anon_sym_false] = ACTIONS(2334), - [anon_sym_null] = ACTIONS(2334), - [aux_sym_cmd_identifier_token38] = ACTIONS(2332), - [aux_sym_cmd_identifier_token39] = ACTIONS(2334), - [aux_sym_cmd_identifier_token40] = ACTIONS(2334), - [anon_sym_def] = ACTIONS(2332), - [anon_sym_export_DASHenv] = ACTIONS(2332), - [anon_sym_extern] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_use] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2334), - [anon_sym_DOLLAR] = ACTIONS(2334), - [anon_sym_error] = ACTIONS(2332), - [anon_sym_list] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_in] = ACTIONS(2332), - [anon_sym_loop] = ACTIONS(2332), - [anon_sym_make] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_else] = ACTIONS(2332), - [anon_sym_match] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2334), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_catch] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_source] = ACTIONS(2332), - [anon_sym_source_DASHenv] = ACTIONS(2332), - [anon_sym_register] = ACTIONS(2332), - [anon_sym_hide] = ACTIONS(2332), - [anon_sym_hide_DASHenv] = ACTIONS(2332), - [anon_sym_overlay] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_as] = ACTIONS(2332), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2334), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2334), - [aux_sym__val_number_decimal_token1] = ACTIONS(2332), - [aux_sym__val_number_decimal_token2] = ACTIONS(2334), - [aux_sym__val_number_decimal_token3] = ACTIONS(2334), - [aux_sym__val_number_decimal_token4] = ACTIONS(2334), - [aux_sym__val_number_token1] = ACTIONS(2334), - [aux_sym__val_number_token2] = ACTIONS(2334), - [aux_sym__val_number_token3] = ACTIONS(2334), - [anon_sym_DQUOTE] = ACTIONS(2334), - [sym__str_single_quotes] = ACTIONS(2334), - [sym__str_back_ticks] = ACTIONS(2334), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_export] = ACTIONS(2485), + [anon_sym_alias] = ACTIONS(2485), + [anon_sym_let] = ACTIONS(2485), + [anon_sym_let_DASHenv] = ACTIONS(2485), + [anon_sym_mut] = ACTIONS(2485), + [anon_sym_const] = ACTIONS(2485), + [aux_sym_cmd_identifier_token1] = ACTIONS(2485), + [aux_sym_cmd_identifier_token2] = ACTIONS(2485), + [aux_sym_cmd_identifier_token3] = ACTIONS(2485), + [aux_sym_cmd_identifier_token4] = ACTIONS(2485), + [aux_sym_cmd_identifier_token5] = ACTIONS(2485), + [aux_sym_cmd_identifier_token6] = ACTIONS(2485), + [aux_sym_cmd_identifier_token7] = ACTIONS(2485), + [aux_sym_cmd_identifier_token8] = ACTIONS(2485), + [aux_sym_cmd_identifier_token9] = ACTIONS(2485), + [aux_sym_cmd_identifier_token10] = ACTIONS(2485), + [aux_sym_cmd_identifier_token11] = ACTIONS(2485), + [aux_sym_cmd_identifier_token12] = ACTIONS(2485), + [aux_sym_cmd_identifier_token13] = ACTIONS(2485), + [aux_sym_cmd_identifier_token14] = ACTIONS(2485), + [aux_sym_cmd_identifier_token15] = ACTIONS(2485), + [aux_sym_cmd_identifier_token16] = ACTIONS(2485), + [aux_sym_cmd_identifier_token17] = ACTIONS(2485), + [aux_sym_cmd_identifier_token18] = ACTIONS(2485), + [aux_sym_cmd_identifier_token19] = ACTIONS(2485), + [aux_sym_cmd_identifier_token20] = ACTIONS(2485), + [aux_sym_cmd_identifier_token21] = ACTIONS(2485), + [aux_sym_cmd_identifier_token22] = ACTIONS(2485), + [aux_sym_cmd_identifier_token23] = ACTIONS(2485), + [aux_sym_cmd_identifier_token24] = ACTIONS(2485), + [aux_sym_cmd_identifier_token25] = ACTIONS(2485), + [aux_sym_cmd_identifier_token26] = ACTIONS(2485), + [aux_sym_cmd_identifier_token27] = ACTIONS(2485), + [aux_sym_cmd_identifier_token28] = ACTIONS(2485), + [aux_sym_cmd_identifier_token29] = ACTIONS(2485), + [aux_sym_cmd_identifier_token30] = ACTIONS(2485), + [aux_sym_cmd_identifier_token31] = ACTIONS(2485), + [aux_sym_cmd_identifier_token32] = ACTIONS(2485), + [aux_sym_cmd_identifier_token33] = ACTIONS(2485), + [aux_sym_cmd_identifier_token34] = ACTIONS(2485), + [aux_sym_cmd_identifier_token35] = ACTIONS(2485), + [aux_sym_cmd_identifier_token36] = ACTIONS(2485), + [anon_sym_true] = ACTIONS(2487), + [anon_sym_false] = ACTIONS(2487), + [anon_sym_null] = ACTIONS(2487), + [aux_sym_cmd_identifier_token38] = ACTIONS(2485), + [aux_sym_cmd_identifier_token39] = ACTIONS(2487), + [aux_sym_cmd_identifier_token40] = ACTIONS(2487), + [anon_sym_def] = ACTIONS(2485), + [anon_sym_export_DASHenv] = ACTIONS(2485), + [anon_sym_extern] = ACTIONS(2485), + [anon_sym_module] = ACTIONS(2485), + [anon_sym_use] = ACTIONS(2485), + [anon_sym_LPAREN] = ACTIONS(2487), + [anon_sym_DOLLAR] = ACTIONS(2487), + [anon_sym_error] = ACTIONS(2485), + [anon_sym_list] = ACTIONS(2485), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_break] = ACTIONS(2485), + [anon_sym_continue] = ACTIONS(2485), + [anon_sym_for] = ACTIONS(2485), + [anon_sym_in] = ACTIONS(2485), + [anon_sym_loop] = ACTIONS(2485), + [anon_sym_make] = ACTIONS(2485), + [anon_sym_while] = ACTIONS(2485), + [anon_sym_do] = ACTIONS(2485), + [anon_sym_if] = ACTIONS(2485), + [anon_sym_else] = ACTIONS(2485), + [anon_sym_match] = ACTIONS(2485), + [anon_sym_RBRACE] = ACTIONS(2487), + [anon_sym_try] = ACTIONS(2485), + [anon_sym_catch] = ACTIONS(2485), + [anon_sym_return] = ACTIONS(2485), + [anon_sym_source] = ACTIONS(2485), + [anon_sym_source_DASHenv] = ACTIONS(2485), + [anon_sym_register] = ACTIONS(2485), + [anon_sym_hide] = ACTIONS(2485), + [anon_sym_hide_DASHenv] = ACTIONS(2485), + [anon_sym_overlay] = ACTIONS(2485), + [anon_sym_new] = ACTIONS(2485), + [anon_sym_as] = ACTIONS(2485), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2487), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2487), + [aux_sym__val_number_decimal_token1] = ACTIONS(2485), + [aux_sym__val_number_decimal_token2] = ACTIONS(2487), + [aux_sym__val_number_decimal_token3] = ACTIONS(2487), + [aux_sym__val_number_decimal_token4] = ACTIONS(2487), + [aux_sym__val_number_token1] = ACTIONS(2487), + [aux_sym__val_number_token2] = ACTIONS(2487), + [aux_sym__val_number_token3] = ACTIONS(2487), + [anon_sym_DQUOTE] = ACTIONS(2487), + [sym__str_single_quotes] = ACTIONS(2487), + [sym__str_back_ticks] = ACTIONS(2487), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2487), + [anon_sym_PLUS] = ACTIONS(2485), [anon_sym_POUND] = ACTIONS(247), }, [598] = { [sym_comment] = STATE(598), + [anon_sym_export] = ACTIONS(1345), + [anon_sym_alias] = ACTIONS(1345), + [anon_sym_let] = ACTIONS(1345), + [anon_sym_let_DASHenv] = ACTIONS(1345), + [anon_sym_mut] = ACTIONS(1345), + [anon_sym_const] = ACTIONS(1345), + [aux_sym_cmd_identifier_token1] = ACTIONS(1345), + [aux_sym_cmd_identifier_token2] = ACTIONS(1345), + [aux_sym_cmd_identifier_token3] = ACTIONS(1345), + [aux_sym_cmd_identifier_token4] = ACTIONS(1345), + [aux_sym_cmd_identifier_token5] = ACTIONS(1345), + [aux_sym_cmd_identifier_token6] = ACTIONS(1345), + [aux_sym_cmd_identifier_token7] = ACTIONS(1345), + [aux_sym_cmd_identifier_token8] = ACTIONS(1345), + [aux_sym_cmd_identifier_token9] = ACTIONS(1345), + [aux_sym_cmd_identifier_token10] = ACTIONS(1345), + [aux_sym_cmd_identifier_token11] = ACTIONS(1345), + [aux_sym_cmd_identifier_token12] = ACTIONS(1345), + [aux_sym_cmd_identifier_token13] = ACTIONS(1345), + [aux_sym_cmd_identifier_token14] = ACTIONS(1345), + [aux_sym_cmd_identifier_token15] = ACTIONS(1345), + [aux_sym_cmd_identifier_token16] = ACTIONS(1345), + [aux_sym_cmd_identifier_token17] = ACTIONS(1345), + [aux_sym_cmd_identifier_token18] = ACTIONS(1345), + [aux_sym_cmd_identifier_token19] = ACTIONS(1345), + [aux_sym_cmd_identifier_token20] = ACTIONS(1345), + [aux_sym_cmd_identifier_token21] = ACTIONS(1345), + [aux_sym_cmd_identifier_token22] = ACTIONS(1345), + [aux_sym_cmd_identifier_token23] = ACTIONS(1345), + [aux_sym_cmd_identifier_token24] = ACTIONS(1345), + [aux_sym_cmd_identifier_token25] = ACTIONS(1345), + [aux_sym_cmd_identifier_token26] = ACTIONS(1345), + [aux_sym_cmd_identifier_token27] = ACTIONS(1345), + [aux_sym_cmd_identifier_token28] = ACTIONS(1345), + [aux_sym_cmd_identifier_token29] = ACTIONS(1345), + [aux_sym_cmd_identifier_token30] = ACTIONS(1345), + [aux_sym_cmd_identifier_token31] = ACTIONS(1345), + [aux_sym_cmd_identifier_token32] = ACTIONS(1345), + [aux_sym_cmd_identifier_token33] = ACTIONS(1345), + [aux_sym_cmd_identifier_token34] = ACTIONS(1345), + [aux_sym_cmd_identifier_token35] = ACTIONS(1345), + [aux_sym_cmd_identifier_token36] = ACTIONS(1345), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [anon_sym_null] = ACTIONS(1349), + [aux_sym_cmd_identifier_token38] = ACTIONS(1345), + [aux_sym_cmd_identifier_token39] = ACTIONS(1349), + [aux_sym_cmd_identifier_token40] = ACTIONS(1349), + [sym__newline] = ACTIONS(1349), + [anon_sym_def] = ACTIONS(1345), + [anon_sym_export_DASHenv] = ACTIONS(1345), + [anon_sym_extern] = ACTIONS(1345), + [anon_sym_module] = ACTIONS(1345), + [anon_sym_use] = ACTIONS(1345), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_DOLLAR] = ACTIONS(1349), + [anon_sym_error] = ACTIONS(1345), + [anon_sym_list] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_break] = ACTIONS(1345), + [anon_sym_continue] = ACTIONS(1345), + [anon_sym_for] = ACTIONS(1345), + [anon_sym_in] = ACTIONS(1345), + [anon_sym_loop] = ACTIONS(1345), + [anon_sym_make] = ACTIONS(1345), + [anon_sym_while] = ACTIONS(1345), + [anon_sym_do] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_else] = ACTIONS(1345), + [anon_sym_match] = ACTIONS(1345), + [anon_sym_try] = ACTIONS(1345), + [anon_sym_catch] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1345), + [anon_sym_source] = ACTIONS(1345), + [anon_sym_source_DASHenv] = ACTIONS(1345), + [anon_sym_register] = ACTIONS(1345), + [anon_sym_hide] = ACTIONS(1345), + [anon_sym_hide_DASHenv] = ACTIONS(1345), + [anon_sym_overlay] = ACTIONS(1345), + [anon_sym_new] = ACTIONS(1345), + [anon_sym_as] = ACTIONS(1345), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1349), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1349), + [aux_sym__val_number_decimal_token1] = ACTIONS(1345), + [aux_sym__val_number_decimal_token2] = ACTIONS(1349), + [aux_sym__val_number_decimal_token3] = ACTIONS(1349), + [aux_sym__val_number_decimal_token4] = ACTIONS(1349), + [aux_sym__val_number_token1] = ACTIONS(1349), + [aux_sym__val_number_token2] = ACTIONS(1349), + [aux_sym__val_number_token3] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1349), + [sym__str_single_quotes] = ACTIONS(1349), + [sym__str_back_ticks] = ACTIONS(1349), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_POUND] = ACTIONS(247), + }, + [599] = { + [sym_comment] = STATE(599), + [anon_sym_export] = ACTIONS(2392), + [anon_sym_alias] = ACTIONS(2392), + [anon_sym_let] = ACTIONS(2392), + [anon_sym_let_DASHenv] = ACTIONS(2392), + [anon_sym_mut] = ACTIONS(2392), + [anon_sym_const] = ACTIONS(2392), + [aux_sym_cmd_identifier_token1] = ACTIONS(2392), + [aux_sym_cmd_identifier_token2] = ACTIONS(2392), + [aux_sym_cmd_identifier_token3] = ACTIONS(2392), + [aux_sym_cmd_identifier_token4] = ACTIONS(2392), + [aux_sym_cmd_identifier_token5] = ACTIONS(2392), + [aux_sym_cmd_identifier_token6] = ACTIONS(2392), + [aux_sym_cmd_identifier_token7] = ACTIONS(2392), + [aux_sym_cmd_identifier_token8] = ACTIONS(2392), + [aux_sym_cmd_identifier_token9] = ACTIONS(2392), + [aux_sym_cmd_identifier_token10] = ACTIONS(2392), + [aux_sym_cmd_identifier_token11] = ACTIONS(2392), + [aux_sym_cmd_identifier_token12] = ACTIONS(2392), + [aux_sym_cmd_identifier_token13] = ACTIONS(2392), + [aux_sym_cmd_identifier_token14] = ACTIONS(2392), + [aux_sym_cmd_identifier_token15] = ACTIONS(2392), + [aux_sym_cmd_identifier_token16] = ACTIONS(2392), + [aux_sym_cmd_identifier_token17] = ACTIONS(2392), + [aux_sym_cmd_identifier_token18] = ACTIONS(2392), + [aux_sym_cmd_identifier_token19] = ACTIONS(2392), + [aux_sym_cmd_identifier_token20] = ACTIONS(2392), + [aux_sym_cmd_identifier_token21] = ACTIONS(2392), + [aux_sym_cmd_identifier_token22] = ACTIONS(2392), + [aux_sym_cmd_identifier_token23] = ACTIONS(2392), + [aux_sym_cmd_identifier_token24] = ACTIONS(2392), + [aux_sym_cmd_identifier_token25] = ACTIONS(2392), + [aux_sym_cmd_identifier_token26] = ACTIONS(2392), + [aux_sym_cmd_identifier_token27] = ACTIONS(2392), + [aux_sym_cmd_identifier_token28] = ACTIONS(2392), + [aux_sym_cmd_identifier_token29] = ACTIONS(2392), + [aux_sym_cmd_identifier_token30] = ACTIONS(2392), + [aux_sym_cmd_identifier_token31] = ACTIONS(2392), + [aux_sym_cmd_identifier_token32] = ACTIONS(2392), + [aux_sym_cmd_identifier_token33] = ACTIONS(2392), + [aux_sym_cmd_identifier_token34] = ACTIONS(2392), + [aux_sym_cmd_identifier_token35] = ACTIONS(2392), + [aux_sym_cmd_identifier_token36] = ACTIONS(2392), + [anon_sym_true] = ACTIONS(2394), + [anon_sym_false] = ACTIONS(2394), + [anon_sym_null] = ACTIONS(2394), + [aux_sym_cmd_identifier_token38] = ACTIONS(2392), + [aux_sym_cmd_identifier_token39] = ACTIONS(2394), + [aux_sym_cmd_identifier_token40] = ACTIONS(2394), + [anon_sym_def] = ACTIONS(2392), + [anon_sym_export_DASHenv] = ACTIONS(2392), + [anon_sym_extern] = ACTIONS(2392), + [anon_sym_module] = ACTIONS(2392), + [anon_sym_use] = ACTIONS(2392), + [anon_sym_LPAREN] = ACTIONS(2394), + [anon_sym_DOLLAR] = ACTIONS(2394), + [anon_sym_error] = ACTIONS(2392), + [anon_sym_list] = ACTIONS(2392), + [anon_sym_DASH] = ACTIONS(2392), + [anon_sym_break] = ACTIONS(2392), + [anon_sym_continue] = ACTIONS(2392), + [anon_sym_for] = ACTIONS(2392), + [anon_sym_in] = ACTIONS(2392), + [anon_sym_loop] = ACTIONS(2392), + [anon_sym_make] = ACTIONS(2392), + [anon_sym_while] = ACTIONS(2392), + [anon_sym_do] = ACTIONS(2392), + [anon_sym_if] = ACTIONS(2392), + [anon_sym_else] = ACTIONS(2392), + [anon_sym_match] = ACTIONS(2392), + [anon_sym_RBRACE] = ACTIONS(2394), + [anon_sym_try] = ACTIONS(2392), + [anon_sym_catch] = ACTIONS(2392), + [anon_sym_return] = ACTIONS(2392), + [anon_sym_source] = ACTIONS(2392), + [anon_sym_source_DASHenv] = ACTIONS(2392), + [anon_sym_register] = ACTIONS(2392), + [anon_sym_hide] = ACTIONS(2392), + [anon_sym_hide_DASHenv] = ACTIONS(2392), + [anon_sym_overlay] = ACTIONS(2392), + [anon_sym_new] = ACTIONS(2392), + [anon_sym_as] = ACTIONS(2392), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2394), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2394), + [aux_sym__val_number_decimal_token1] = ACTIONS(2392), + [aux_sym__val_number_decimal_token2] = ACTIONS(2394), + [aux_sym__val_number_decimal_token3] = ACTIONS(2394), + [aux_sym__val_number_decimal_token4] = ACTIONS(2394), + [aux_sym__val_number_token1] = ACTIONS(2394), + [aux_sym__val_number_token2] = ACTIONS(2394), + [aux_sym__val_number_token3] = ACTIONS(2394), + [anon_sym_DQUOTE] = ACTIONS(2394), + [sym__str_single_quotes] = ACTIONS(2394), + [sym__str_back_ticks] = ACTIONS(2394), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2394), + [anon_sym_PLUS] = ACTIONS(2392), + [anon_sym_POUND] = ACTIONS(247), + }, + [600] = { + [sym_comment] = STATE(600), + [anon_sym_export] = ACTIONS(2396), + [anon_sym_alias] = ACTIONS(2396), + [anon_sym_let] = ACTIONS(2396), + [anon_sym_let_DASHenv] = ACTIONS(2396), + [anon_sym_mut] = ACTIONS(2396), + [anon_sym_const] = ACTIONS(2396), + [aux_sym_cmd_identifier_token1] = ACTIONS(2396), + [aux_sym_cmd_identifier_token2] = ACTIONS(2396), + [aux_sym_cmd_identifier_token3] = ACTIONS(2396), + [aux_sym_cmd_identifier_token4] = ACTIONS(2396), + [aux_sym_cmd_identifier_token5] = ACTIONS(2396), + [aux_sym_cmd_identifier_token6] = ACTIONS(2396), + [aux_sym_cmd_identifier_token7] = ACTIONS(2396), + [aux_sym_cmd_identifier_token8] = ACTIONS(2396), + [aux_sym_cmd_identifier_token9] = ACTIONS(2396), + [aux_sym_cmd_identifier_token10] = ACTIONS(2396), + [aux_sym_cmd_identifier_token11] = ACTIONS(2396), + [aux_sym_cmd_identifier_token12] = ACTIONS(2396), + [aux_sym_cmd_identifier_token13] = ACTIONS(2396), + [aux_sym_cmd_identifier_token14] = ACTIONS(2396), + [aux_sym_cmd_identifier_token15] = ACTIONS(2396), + [aux_sym_cmd_identifier_token16] = ACTIONS(2396), + [aux_sym_cmd_identifier_token17] = ACTIONS(2396), + [aux_sym_cmd_identifier_token18] = ACTIONS(2396), + [aux_sym_cmd_identifier_token19] = ACTIONS(2396), + [aux_sym_cmd_identifier_token20] = ACTIONS(2396), + [aux_sym_cmd_identifier_token21] = ACTIONS(2396), + [aux_sym_cmd_identifier_token22] = ACTIONS(2396), + [aux_sym_cmd_identifier_token23] = ACTIONS(2396), + [aux_sym_cmd_identifier_token24] = ACTIONS(2396), + [aux_sym_cmd_identifier_token25] = ACTIONS(2396), + [aux_sym_cmd_identifier_token26] = ACTIONS(2396), + [aux_sym_cmd_identifier_token27] = ACTIONS(2396), + [aux_sym_cmd_identifier_token28] = ACTIONS(2396), + [aux_sym_cmd_identifier_token29] = ACTIONS(2396), + [aux_sym_cmd_identifier_token30] = ACTIONS(2396), + [aux_sym_cmd_identifier_token31] = ACTIONS(2396), + [aux_sym_cmd_identifier_token32] = ACTIONS(2396), + [aux_sym_cmd_identifier_token33] = ACTIONS(2396), + [aux_sym_cmd_identifier_token34] = ACTIONS(2396), + [aux_sym_cmd_identifier_token35] = ACTIONS(2396), + [aux_sym_cmd_identifier_token36] = ACTIONS(2396), + [anon_sym_true] = ACTIONS(2398), + [anon_sym_false] = ACTIONS(2398), + [anon_sym_null] = ACTIONS(2398), + [aux_sym_cmd_identifier_token38] = ACTIONS(2396), + [aux_sym_cmd_identifier_token39] = ACTIONS(2398), + [aux_sym_cmd_identifier_token40] = ACTIONS(2398), + [anon_sym_def] = ACTIONS(2396), + [anon_sym_export_DASHenv] = ACTIONS(2396), + [anon_sym_extern] = ACTIONS(2396), + [anon_sym_module] = ACTIONS(2396), + [anon_sym_use] = ACTIONS(2396), + [anon_sym_LPAREN] = ACTIONS(2398), + [anon_sym_DOLLAR] = ACTIONS(2398), + [anon_sym_error] = ACTIONS(2396), + [anon_sym_list] = ACTIONS(2396), + [anon_sym_DASH] = ACTIONS(2396), + [anon_sym_break] = ACTIONS(2396), + [anon_sym_continue] = ACTIONS(2396), + [anon_sym_for] = ACTIONS(2396), + [anon_sym_in] = ACTIONS(2396), + [anon_sym_loop] = ACTIONS(2396), + [anon_sym_make] = ACTIONS(2396), + [anon_sym_while] = ACTIONS(2396), + [anon_sym_do] = ACTIONS(2396), + [anon_sym_if] = ACTIONS(2396), + [anon_sym_else] = ACTIONS(2396), + [anon_sym_match] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(2398), + [anon_sym_try] = ACTIONS(2396), + [anon_sym_catch] = ACTIONS(2396), + [anon_sym_return] = ACTIONS(2396), + [anon_sym_source] = ACTIONS(2396), + [anon_sym_source_DASHenv] = ACTIONS(2396), + [anon_sym_register] = ACTIONS(2396), + [anon_sym_hide] = ACTIONS(2396), + [anon_sym_hide_DASHenv] = ACTIONS(2396), + [anon_sym_overlay] = ACTIONS(2396), + [anon_sym_new] = ACTIONS(2396), + [anon_sym_as] = ACTIONS(2396), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2398), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2398), + [aux_sym__val_number_decimal_token1] = ACTIONS(2396), + [aux_sym__val_number_decimal_token2] = ACTIONS(2398), + [aux_sym__val_number_decimal_token3] = ACTIONS(2398), + [aux_sym__val_number_decimal_token4] = ACTIONS(2398), + [aux_sym__val_number_token1] = ACTIONS(2398), + [aux_sym__val_number_token2] = ACTIONS(2398), + [aux_sym__val_number_token3] = ACTIONS(2398), + [anon_sym_DQUOTE] = ACTIONS(2398), + [sym__str_single_quotes] = ACTIONS(2398), + [sym__str_back_ticks] = ACTIONS(2398), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2398), + [anon_sym_PLUS] = ACTIONS(2396), + [anon_sym_POUND] = ACTIONS(247), + }, + [601] = { + [sym_comment] = STATE(601), + [anon_sym_export] = ACTIONS(2497), + [anon_sym_alias] = ACTIONS(2497), + [anon_sym_let] = ACTIONS(2497), + [anon_sym_let_DASHenv] = ACTIONS(2497), + [anon_sym_mut] = ACTIONS(2497), + [anon_sym_const] = ACTIONS(2497), + [aux_sym_cmd_identifier_token1] = ACTIONS(2497), + [aux_sym_cmd_identifier_token2] = ACTIONS(2497), + [aux_sym_cmd_identifier_token3] = ACTIONS(2497), + [aux_sym_cmd_identifier_token4] = ACTIONS(2497), + [aux_sym_cmd_identifier_token5] = ACTIONS(2497), + [aux_sym_cmd_identifier_token6] = ACTIONS(2497), + [aux_sym_cmd_identifier_token7] = ACTIONS(2497), + [aux_sym_cmd_identifier_token8] = ACTIONS(2497), + [aux_sym_cmd_identifier_token9] = ACTIONS(2497), + [aux_sym_cmd_identifier_token10] = ACTIONS(2497), + [aux_sym_cmd_identifier_token11] = ACTIONS(2497), + [aux_sym_cmd_identifier_token12] = ACTIONS(2497), + [aux_sym_cmd_identifier_token13] = ACTIONS(2497), + [aux_sym_cmd_identifier_token14] = ACTIONS(2497), + [aux_sym_cmd_identifier_token15] = ACTIONS(2497), + [aux_sym_cmd_identifier_token16] = ACTIONS(2497), + [aux_sym_cmd_identifier_token17] = ACTIONS(2497), + [aux_sym_cmd_identifier_token18] = ACTIONS(2497), + [aux_sym_cmd_identifier_token19] = ACTIONS(2497), + [aux_sym_cmd_identifier_token20] = ACTIONS(2497), + [aux_sym_cmd_identifier_token21] = ACTIONS(2497), + [aux_sym_cmd_identifier_token22] = ACTIONS(2497), + [aux_sym_cmd_identifier_token23] = ACTIONS(2497), + [aux_sym_cmd_identifier_token24] = ACTIONS(2497), + [aux_sym_cmd_identifier_token25] = ACTIONS(2497), + [aux_sym_cmd_identifier_token26] = ACTIONS(2497), + [aux_sym_cmd_identifier_token27] = ACTIONS(2497), + [aux_sym_cmd_identifier_token28] = ACTIONS(2497), + [aux_sym_cmd_identifier_token29] = ACTIONS(2497), + [aux_sym_cmd_identifier_token30] = ACTIONS(2497), + [aux_sym_cmd_identifier_token31] = ACTIONS(2497), + [aux_sym_cmd_identifier_token32] = ACTIONS(2497), + [aux_sym_cmd_identifier_token33] = ACTIONS(2497), + [aux_sym_cmd_identifier_token34] = ACTIONS(2497), + [aux_sym_cmd_identifier_token35] = ACTIONS(2497), + [aux_sym_cmd_identifier_token36] = ACTIONS(2497), + [anon_sym_true] = ACTIONS(2499), + [anon_sym_false] = ACTIONS(2499), + [anon_sym_null] = ACTIONS(2499), + [aux_sym_cmd_identifier_token38] = ACTIONS(2497), + [aux_sym_cmd_identifier_token39] = ACTIONS(2499), + [aux_sym_cmd_identifier_token40] = ACTIONS(2499), + [anon_sym_def] = ACTIONS(2497), + [anon_sym_export_DASHenv] = ACTIONS(2497), + [anon_sym_extern] = ACTIONS(2497), + [anon_sym_module] = ACTIONS(2497), + [anon_sym_use] = ACTIONS(2497), + [anon_sym_LPAREN] = ACTIONS(2499), + [anon_sym_DOLLAR] = ACTIONS(2499), + [anon_sym_error] = ACTIONS(2497), + [anon_sym_list] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(2497), + [anon_sym_continue] = ACTIONS(2497), + [anon_sym_for] = ACTIONS(2497), + [anon_sym_in] = ACTIONS(2497), + [anon_sym_loop] = ACTIONS(2497), + [anon_sym_make] = ACTIONS(2497), + [anon_sym_while] = ACTIONS(2497), + [anon_sym_do] = ACTIONS(2497), + [anon_sym_if] = ACTIONS(2497), + [anon_sym_else] = ACTIONS(2497), + [anon_sym_match] = ACTIONS(2497), + [anon_sym_RBRACE] = ACTIONS(2499), + [anon_sym_try] = ACTIONS(2497), + [anon_sym_catch] = ACTIONS(2497), + [anon_sym_return] = ACTIONS(2497), + [anon_sym_source] = ACTIONS(2497), + [anon_sym_source_DASHenv] = ACTIONS(2497), + [anon_sym_register] = ACTIONS(2497), + [anon_sym_hide] = ACTIONS(2497), + [anon_sym_hide_DASHenv] = ACTIONS(2497), + [anon_sym_overlay] = ACTIONS(2497), + [anon_sym_new] = ACTIONS(2497), + [anon_sym_as] = ACTIONS(2497), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2499), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2499), + [aux_sym__val_number_decimal_token1] = ACTIONS(2497), + [aux_sym__val_number_decimal_token2] = ACTIONS(2499), + [aux_sym__val_number_decimal_token3] = ACTIONS(2499), + [aux_sym__val_number_decimal_token4] = ACTIONS(2499), + [aux_sym__val_number_token1] = ACTIONS(2499), + [aux_sym__val_number_token2] = ACTIONS(2499), + [aux_sym__val_number_token3] = ACTIONS(2499), + [anon_sym_DQUOTE] = ACTIONS(2499), + [sym__str_single_quotes] = ACTIONS(2499), + [sym__str_back_ticks] = ACTIONS(2499), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_POUND] = ACTIONS(247), + }, + [602] = { + [sym_comment] = STATE(602), + [anon_sym_export] = ACTIONS(1843), + [anon_sym_alias] = ACTIONS(1843), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_let_DASHenv] = ACTIONS(1843), + [anon_sym_mut] = ACTIONS(1843), + [anon_sym_const] = ACTIONS(1843), + [aux_sym_cmd_identifier_token1] = ACTIONS(1843), + [aux_sym_cmd_identifier_token2] = ACTIONS(1843), + [aux_sym_cmd_identifier_token3] = ACTIONS(1843), + [aux_sym_cmd_identifier_token4] = ACTIONS(1843), + [aux_sym_cmd_identifier_token5] = ACTIONS(1843), + [aux_sym_cmd_identifier_token6] = ACTIONS(1843), + [aux_sym_cmd_identifier_token7] = ACTIONS(1843), + [aux_sym_cmd_identifier_token8] = ACTIONS(1843), + [aux_sym_cmd_identifier_token9] = ACTIONS(1843), + [aux_sym_cmd_identifier_token10] = ACTIONS(1843), + [aux_sym_cmd_identifier_token11] = ACTIONS(1843), + [aux_sym_cmd_identifier_token12] = ACTIONS(1843), + [aux_sym_cmd_identifier_token13] = ACTIONS(1843), + [aux_sym_cmd_identifier_token14] = ACTIONS(1843), + [aux_sym_cmd_identifier_token15] = ACTIONS(1843), + [aux_sym_cmd_identifier_token16] = ACTIONS(1843), + [aux_sym_cmd_identifier_token17] = ACTIONS(1843), + [aux_sym_cmd_identifier_token18] = ACTIONS(1843), + [aux_sym_cmd_identifier_token19] = ACTIONS(1843), + [aux_sym_cmd_identifier_token20] = ACTIONS(1843), + [aux_sym_cmd_identifier_token21] = ACTIONS(1843), + [aux_sym_cmd_identifier_token22] = ACTIONS(1843), + [aux_sym_cmd_identifier_token23] = ACTIONS(1843), + [aux_sym_cmd_identifier_token24] = ACTIONS(1843), + [aux_sym_cmd_identifier_token25] = ACTIONS(1843), + [aux_sym_cmd_identifier_token26] = ACTIONS(1843), + [aux_sym_cmd_identifier_token27] = ACTIONS(1843), + [aux_sym_cmd_identifier_token28] = ACTIONS(1843), + [aux_sym_cmd_identifier_token29] = ACTIONS(1843), + [aux_sym_cmd_identifier_token30] = ACTIONS(1843), + [aux_sym_cmd_identifier_token31] = ACTIONS(1843), + [aux_sym_cmd_identifier_token32] = ACTIONS(1843), + [aux_sym_cmd_identifier_token33] = ACTIONS(1843), + [aux_sym_cmd_identifier_token34] = ACTIONS(1843), + [aux_sym_cmd_identifier_token35] = ACTIONS(1843), + [aux_sym_cmd_identifier_token36] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1845), + [anon_sym_false] = ACTIONS(1845), + [anon_sym_null] = ACTIONS(1845), + [aux_sym_cmd_identifier_token38] = ACTIONS(1843), + [aux_sym_cmd_identifier_token39] = ACTIONS(1845), + [aux_sym_cmd_identifier_token40] = ACTIONS(1845), + [anon_sym_def] = ACTIONS(1843), + [anon_sym_export_DASHenv] = ACTIONS(1843), + [anon_sym_extern] = ACTIONS(1843), + [anon_sym_module] = ACTIONS(1843), + [anon_sym_use] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_DOLLAR] = ACTIONS(1845), + [anon_sym_error] = ACTIONS(1843), + [anon_sym_list] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_break] = ACTIONS(1843), + [anon_sym_continue] = ACTIONS(1843), + [anon_sym_for] = ACTIONS(1843), + [anon_sym_in] = ACTIONS(1843), + [anon_sym_loop] = ACTIONS(1843), + [anon_sym_make] = ACTIONS(1843), + [anon_sym_while] = ACTIONS(1843), + [anon_sym_do] = ACTIONS(1843), + [anon_sym_if] = ACTIONS(1843), + [anon_sym_else] = ACTIONS(1843), + [anon_sym_match] = ACTIONS(1843), + [anon_sym_RBRACE] = ACTIONS(1845), + [anon_sym_try] = ACTIONS(1843), + [anon_sym_catch] = ACTIONS(1843), + [anon_sym_return] = ACTIONS(1843), + [anon_sym_source] = ACTIONS(1843), + [anon_sym_source_DASHenv] = ACTIONS(1843), + [anon_sym_register] = ACTIONS(1843), + [anon_sym_hide] = ACTIONS(1843), + [anon_sym_hide_DASHenv] = ACTIONS(1843), + [anon_sym_overlay] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1843), + [anon_sym_as] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1845), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1845), + [aux_sym__val_number_decimal_token1] = ACTIONS(1843), + [aux_sym__val_number_decimal_token2] = ACTIONS(1845), + [aux_sym__val_number_decimal_token3] = ACTIONS(1845), + [aux_sym__val_number_decimal_token4] = ACTIONS(1845), + [aux_sym__val_number_token1] = ACTIONS(1845), + [aux_sym__val_number_token2] = ACTIONS(1845), + [aux_sym__val_number_token3] = ACTIONS(1845), + [anon_sym_DQUOTE] = ACTIONS(1845), + [sym__str_single_quotes] = ACTIONS(1845), + [sym__str_back_ticks] = ACTIONS(1845), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_POUND] = ACTIONS(247), + }, + [603] = { + [sym_comment] = STATE(603), + [anon_sym_export] = ACTIONS(2355), + [anon_sym_alias] = ACTIONS(2355), + [anon_sym_let] = ACTIONS(2355), + [anon_sym_let_DASHenv] = ACTIONS(2355), + [anon_sym_mut] = ACTIONS(2355), + [anon_sym_const] = ACTIONS(2355), + [aux_sym_cmd_identifier_token1] = ACTIONS(2355), + [aux_sym_cmd_identifier_token2] = ACTIONS(2355), + [aux_sym_cmd_identifier_token3] = ACTIONS(2355), + [aux_sym_cmd_identifier_token4] = ACTIONS(2355), + [aux_sym_cmd_identifier_token5] = ACTIONS(2355), + [aux_sym_cmd_identifier_token6] = ACTIONS(2355), + [aux_sym_cmd_identifier_token7] = ACTIONS(2355), + [aux_sym_cmd_identifier_token8] = ACTIONS(2355), + [aux_sym_cmd_identifier_token9] = ACTIONS(2355), + [aux_sym_cmd_identifier_token10] = ACTIONS(2355), + [aux_sym_cmd_identifier_token11] = ACTIONS(2355), + [aux_sym_cmd_identifier_token12] = ACTIONS(2355), + [aux_sym_cmd_identifier_token13] = ACTIONS(2355), + [aux_sym_cmd_identifier_token14] = ACTIONS(2355), + [aux_sym_cmd_identifier_token15] = ACTIONS(2355), + [aux_sym_cmd_identifier_token16] = ACTIONS(2355), + [aux_sym_cmd_identifier_token17] = ACTIONS(2355), + [aux_sym_cmd_identifier_token18] = ACTIONS(2355), + [aux_sym_cmd_identifier_token19] = ACTIONS(2355), + [aux_sym_cmd_identifier_token20] = ACTIONS(2355), + [aux_sym_cmd_identifier_token21] = ACTIONS(2355), + [aux_sym_cmd_identifier_token22] = ACTIONS(2355), + [aux_sym_cmd_identifier_token23] = ACTIONS(2355), + [aux_sym_cmd_identifier_token24] = ACTIONS(2355), + [aux_sym_cmd_identifier_token25] = ACTIONS(2355), + [aux_sym_cmd_identifier_token26] = ACTIONS(2355), + [aux_sym_cmd_identifier_token27] = ACTIONS(2355), + [aux_sym_cmd_identifier_token28] = ACTIONS(2355), + [aux_sym_cmd_identifier_token29] = ACTIONS(2355), + [aux_sym_cmd_identifier_token30] = ACTIONS(2355), + [aux_sym_cmd_identifier_token31] = ACTIONS(2355), + [aux_sym_cmd_identifier_token32] = ACTIONS(2355), + [aux_sym_cmd_identifier_token33] = ACTIONS(2355), + [aux_sym_cmd_identifier_token34] = ACTIONS(2355), + [aux_sym_cmd_identifier_token35] = ACTIONS(2355), + [aux_sym_cmd_identifier_token36] = ACTIONS(2355), + [anon_sym_true] = ACTIONS(2357), + [anon_sym_false] = ACTIONS(2357), + [anon_sym_null] = ACTIONS(2357), + [aux_sym_cmd_identifier_token38] = ACTIONS(2355), + [aux_sym_cmd_identifier_token39] = ACTIONS(2357), + [aux_sym_cmd_identifier_token40] = ACTIONS(2357), + [anon_sym_def] = ACTIONS(2355), + [anon_sym_export_DASHenv] = ACTIONS(2355), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym_module] = ACTIONS(2355), + [anon_sym_use] = ACTIONS(2355), + [anon_sym_LPAREN] = ACTIONS(2357), + [anon_sym_DOLLAR] = ACTIONS(2357), + [anon_sym_error] = ACTIONS(2355), + [anon_sym_list] = ACTIONS(2355), + [anon_sym_DASH] = ACTIONS(2355), + [anon_sym_break] = ACTIONS(2355), + [anon_sym_continue] = ACTIONS(2355), + [anon_sym_for] = ACTIONS(2355), + [anon_sym_in] = ACTIONS(2355), + [anon_sym_loop] = ACTIONS(2355), + [anon_sym_make] = ACTIONS(2355), + [anon_sym_while] = ACTIONS(2355), + [anon_sym_do] = ACTIONS(2355), + [anon_sym_if] = ACTIONS(2355), + [anon_sym_else] = ACTIONS(2355), + [anon_sym_match] = ACTIONS(2355), + [anon_sym_RBRACE] = ACTIONS(2357), + [anon_sym_try] = ACTIONS(2355), + [anon_sym_catch] = ACTIONS(2355), + [anon_sym_return] = ACTIONS(2355), + [anon_sym_source] = ACTIONS(2355), + [anon_sym_source_DASHenv] = ACTIONS(2355), + [anon_sym_register] = ACTIONS(2355), + [anon_sym_hide] = ACTIONS(2355), + [anon_sym_hide_DASHenv] = ACTIONS(2355), + [anon_sym_overlay] = ACTIONS(2355), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_as] = ACTIONS(2355), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2357), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2357), + [aux_sym__val_number_decimal_token1] = ACTIONS(2355), + [aux_sym__val_number_decimal_token2] = ACTIONS(2357), + [aux_sym__val_number_decimal_token3] = ACTIONS(2357), + [aux_sym__val_number_decimal_token4] = ACTIONS(2357), + [aux_sym__val_number_token1] = ACTIONS(2357), + [aux_sym__val_number_token2] = ACTIONS(2357), + [aux_sym__val_number_token3] = ACTIONS(2357), + [anon_sym_DQUOTE] = ACTIONS(2357), + [sym__str_single_quotes] = ACTIONS(2357), + [sym__str_back_ticks] = ACTIONS(2357), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2355), + [anon_sym_POUND] = ACTIONS(247), + }, + [604] = { + [sym_comment] = STATE(604), + [anon_sym_export] = ACTIONS(2501), + [anon_sym_alias] = ACTIONS(2501), + [anon_sym_let] = ACTIONS(2501), + [anon_sym_let_DASHenv] = ACTIONS(2501), + [anon_sym_mut] = ACTIONS(2501), + [anon_sym_const] = ACTIONS(2501), + [aux_sym_cmd_identifier_token1] = ACTIONS(2501), + [aux_sym_cmd_identifier_token2] = ACTIONS(2501), + [aux_sym_cmd_identifier_token3] = ACTIONS(2501), + [aux_sym_cmd_identifier_token4] = ACTIONS(2501), + [aux_sym_cmd_identifier_token5] = ACTIONS(2501), + [aux_sym_cmd_identifier_token6] = ACTIONS(2501), + [aux_sym_cmd_identifier_token7] = ACTIONS(2501), + [aux_sym_cmd_identifier_token8] = ACTIONS(2501), + [aux_sym_cmd_identifier_token9] = ACTIONS(2501), + [aux_sym_cmd_identifier_token10] = ACTIONS(2501), + [aux_sym_cmd_identifier_token11] = ACTIONS(2501), + [aux_sym_cmd_identifier_token12] = ACTIONS(2501), + [aux_sym_cmd_identifier_token13] = ACTIONS(2501), + [aux_sym_cmd_identifier_token14] = ACTIONS(2501), + [aux_sym_cmd_identifier_token15] = ACTIONS(2501), + [aux_sym_cmd_identifier_token16] = ACTIONS(2501), + [aux_sym_cmd_identifier_token17] = ACTIONS(2501), + [aux_sym_cmd_identifier_token18] = ACTIONS(2501), + [aux_sym_cmd_identifier_token19] = ACTIONS(2501), + [aux_sym_cmd_identifier_token20] = ACTIONS(2501), + [aux_sym_cmd_identifier_token21] = ACTIONS(2501), + [aux_sym_cmd_identifier_token22] = ACTIONS(2501), + [aux_sym_cmd_identifier_token23] = ACTIONS(2501), + [aux_sym_cmd_identifier_token24] = ACTIONS(2501), + [aux_sym_cmd_identifier_token25] = ACTIONS(2501), + [aux_sym_cmd_identifier_token26] = ACTIONS(2501), + [aux_sym_cmd_identifier_token27] = ACTIONS(2501), + [aux_sym_cmd_identifier_token28] = ACTIONS(2501), + [aux_sym_cmd_identifier_token29] = ACTIONS(2501), + [aux_sym_cmd_identifier_token30] = ACTIONS(2501), + [aux_sym_cmd_identifier_token31] = ACTIONS(2501), + [aux_sym_cmd_identifier_token32] = ACTIONS(2501), + [aux_sym_cmd_identifier_token33] = ACTIONS(2501), + [aux_sym_cmd_identifier_token34] = ACTIONS(2501), + [aux_sym_cmd_identifier_token35] = ACTIONS(2501), + [aux_sym_cmd_identifier_token36] = ACTIONS(2501), + [anon_sym_true] = ACTIONS(2503), + [anon_sym_false] = ACTIONS(2503), + [anon_sym_null] = ACTIONS(2503), + [aux_sym_cmd_identifier_token38] = ACTIONS(2501), + [aux_sym_cmd_identifier_token39] = ACTIONS(2503), + [aux_sym_cmd_identifier_token40] = ACTIONS(2503), + [anon_sym_def] = ACTIONS(2501), + [anon_sym_export_DASHenv] = ACTIONS(2501), + [anon_sym_extern] = ACTIONS(2501), + [anon_sym_module] = ACTIONS(2501), + [anon_sym_use] = ACTIONS(2501), + [anon_sym_LPAREN] = ACTIONS(2503), + [anon_sym_DOLLAR] = ACTIONS(2503), + [anon_sym_error] = ACTIONS(2501), + [anon_sym_list] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2501), + [anon_sym_break] = ACTIONS(2501), + [anon_sym_continue] = ACTIONS(2501), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_in] = ACTIONS(2501), + [anon_sym_loop] = ACTIONS(2501), + [anon_sym_make] = ACTIONS(2501), + [anon_sym_while] = ACTIONS(2501), + [anon_sym_do] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2501), + [anon_sym_else] = ACTIONS(2501), + [anon_sym_match] = ACTIONS(2501), + [anon_sym_RBRACE] = ACTIONS(2503), + [anon_sym_try] = ACTIONS(2501), + [anon_sym_catch] = ACTIONS(2501), + [anon_sym_return] = ACTIONS(2501), + [anon_sym_source] = ACTIONS(2501), + [anon_sym_source_DASHenv] = ACTIONS(2501), + [anon_sym_register] = ACTIONS(2501), + [anon_sym_hide] = ACTIONS(2501), + [anon_sym_hide_DASHenv] = ACTIONS(2501), + [anon_sym_overlay] = ACTIONS(2501), + [anon_sym_new] = ACTIONS(2501), + [anon_sym_as] = ACTIONS(2501), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2503), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2503), + [aux_sym__val_number_decimal_token1] = ACTIONS(2501), + [aux_sym__val_number_decimal_token2] = ACTIONS(2503), + [aux_sym__val_number_decimal_token3] = ACTIONS(2503), + [aux_sym__val_number_decimal_token4] = ACTIONS(2503), + [aux_sym__val_number_token1] = ACTIONS(2503), + [aux_sym__val_number_token2] = ACTIONS(2503), + [aux_sym__val_number_token3] = ACTIONS(2503), + [anon_sym_DQUOTE] = ACTIONS(2503), + [sym__str_single_quotes] = ACTIONS(2503), + [sym__str_back_ticks] = ACTIONS(2503), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2501), + [anon_sym_POUND] = ACTIONS(247), + }, + [605] = { + [sym_comment] = STATE(605), + [anon_sym_export] = ACTIONS(2400), + [anon_sym_alias] = ACTIONS(2400), + [anon_sym_let] = ACTIONS(2400), + [anon_sym_let_DASHenv] = ACTIONS(2400), + [anon_sym_mut] = ACTIONS(2400), + [anon_sym_const] = ACTIONS(2400), + [aux_sym_cmd_identifier_token1] = ACTIONS(2400), + [aux_sym_cmd_identifier_token2] = ACTIONS(2400), + [aux_sym_cmd_identifier_token3] = ACTIONS(2400), + [aux_sym_cmd_identifier_token4] = ACTIONS(2400), + [aux_sym_cmd_identifier_token5] = ACTIONS(2400), + [aux_sym_cmd_identifier_token6] = ACTIONS(2400), + [aux_sym_cmd_identifier_token7] = ACTIONS(2400), + [aux_sym_cmd_identifier_token8] = ACTIONS(2400), + [aux_sym_cmd_identifier_token9] = ACTIONS(2400), + [aux_sym_cmd_identifier_token10] = ACTIONS(2400), + [aux_sym_cmd_identifier_token11] = ACTIONS(2400), + [aux_sym_cmd_identifier_token12] = ACTIONS(2400), + [aux_sym_cmd_identifier_token13] = ACTIONS(2400), + [aux_sym_cmd_identifier_token14] = ACTIONS(2400), + [aux_sym_cmd_identifier_token15] = ACTIONS(2400), + [aux_sym_cmd_identifier_token16] = ACTIONS(2400), + [aux_sym_cmd_identifier_token17] = ACTIONS(2400), + [aux_sym_cmd_identifier_token18] = ACTIONS(2400), + [aux_sym_cmd_identifier_token19] = ACTIONS(2400), + [aux_sym_cmd_identifier_token20] = ACTIONS(2400), + [aux_sym_cmd_identifier_token21] = ACTIONS(2400), + [aux_sym_cmd_identifier_token22] = ACTIONS(2400), + [aux_sym_cmd_identifier_token23] = ACTIONS(2400), + [aux_sym_cmd_identifier_token24] = ACTIONS(2400), + [aux_sym_cmd_identifier_token25] = ACTIONS(2400), + [aux_sym_cmd_identifier_token26] = ACTIONS(2400), + [aux_sym_cmd_identifier_token27] = ACTIONS(2400), + [aux_sym_cmd_identifier_token28] = ACTIONS(2400), + [aux_sym_cmd_identifier_token29] = ACTIONS(2400), + [aux_sym_cmd_identifier_token30] = ACTIONS(2400), + [aux_sym_cmd_identifier_token31] = ACTIONS(2400), + [aux_sym_cmd_identifier_token32] = ACTIONS(2400), + [aux_sym_cmd_identifier_token33] = ACTIONS(2400), + [aux_sym_cmd_identifier_token34] = ACTIONS(2400), + [aux_sym_cmd_identifier_token35] = ACTIONS(2400), + [aux_sym_cmd_identifier_token36] = ACTIONS(2400), + [anon_sym_true] = ACTIONS(2402), + [anon_sym_false] = ACTIONS(2402), + [anon_sym_null] = ACTIONS(2402), + [aux_sym_cmd_identifier_token38] = ACTIONS(2400), + [aux_sym_cmd_identifier_token39] = ACTIONS(2402), + [aux_sym_cmd_identifier_token40] = ACTIONS(2402), + [anon_sym_def] = ACTIONS(2400), + [anon_sym_export_DASHenv] = ACTIONS(2400), + [anon_sym_extern] = ACTIONS(2400), + [anon_sym_module] = ACTIONS(2400), + [anon_sym_use] = ACTIONS(2400), + [anon_sym_LPAREN] = ACTIONS(2402), + [anon_sym_DOLLAR] = ACTIONS(2402), + [anon_sym_error] = ACTIONS(2400), + [anon_sym_list] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_break] = ACTIONS(2400), + [anon_sym_continue] = ACTIONS(2400), + [anon_sym_for] = ACTIONS(2400), + [anon_sym_in] = ACTIONS(2400), + [anon_sym_loop] = ACTIONS(2400), + [anon_sym_make] = ACTIONS(2400), + [anon_sym_while] = ACTIONS(2400), + [anon_sym_do] = ACTIONS(2400), + [anon_sym_if] = ACTIONS(2400), + [anon_sym_else] = ACTIONS(2400), + [anon_sym_match] = ACTIONS(2400), + [anon_sym_RBRACE] = ACTIONS(2402), + [anon_sym_try] = ACTIONS(2400), + [anon_sym_catch] = ACTIONS(2400), + [anon_sym_return] = ACTIONS(2400), + [anon_sym_source] = ACTIONS(2400), + [anon_sym_source_DASHenv] = ACTIONS(2400), + [anon_sym_register] = ACTIONS(2400), + [anon_sym_hide] = ACTIONS(2400), + [anon_sym_hide_DASHenv] = ACTIONS(2400), + [anon_sym_overlay] = ACTIONS(2400), + [anon_sym_new] = ACTIONS(2400), + [anon_sym_as] = ACTIONS(2400), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2402), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2402), + [aux_sym__val_number_decimal_token1] = ACTIONS(2400), + [aux_sym__val_number_decimal_token2] = ACTIONS(2402), + [aux_sym__val_number_decimal_token3] = ACTIONS(2402), + [aux_sym__val_number_decimal_token4] = ACTIONS(2402), + [aux_sym__val_number_token1] = ACTIONS(2402), + [aux_sym__val_number_token2] = ACTIONS(2402), + [aux_sym__val_number_token3] = ACTIONS(2402), + [anon_sym_DQUOTE] = ACTIONS(2402), + [sym__str_single_quotes] = ACTIONS(2402), + [sym__str_back_ticks] = ACTIONS(2402), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2402), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_POUND] = ACTIONS(247), + }, + [606] = { + [sym_comment] = STATE(606), + [anon_sym_export] = ACTIONS(2404), + [anon_sym_alias] = ACTIONS(2404), + [anon_sym_let] = ACTIONS(2404), + [anon_sym_let_DASHenv] = ACTIONS(2404), + [anon_sym_mut] = ACTIONS(2404), + [anon_sym_const] = ACTIONS(2404), + [aux_sym_cmd_identifier_token1] = ACTIONS(2404), + [aux_sym_cmd_identifier_token2] = ACTIONS(2404), + [aux_sym_cmd_identifier_token3] = ACTIONS(2404), + [aux_sym_cmd_identifier_token4] = ACTIONS(2404), + [aux_sym_cmd_identifier_token5] = ACTIONS(2404), + [aux_sym_cmd_identifier_token6] = ACTIONS(2404), + [aux_sym_cmd_identifier_token7] = ACTIONS(2404), + [aux_sym_cmd_identifier_token8] = ACTIONS(2404), + [aux_sym_cmd_identifier_token9] = ACTIONS(2404), + [aux_sym_cmd_identifier_token10] = ACTIONS(2404), + [aux_sym_cmd_identifier_token11] = ACTIONS(2404), + [aux_sym_cmd_identifier_token12] = ACTIONS(2404), + [aux_sym_cmd_identifier_token13] = ACTIONS(2404), + [aux_sym_cmd_identifier_token14] = ACTIONS(2404), + [aux_sym_cmd_identifier_token15] = ACTIONS(2404), + [aux_sym_cmd_identifier_token16] = ACTIONS(2404), + [aux_sym_cmd_identifier_token17] = ACTIONS(2404), + [aux_sym_cmd_identifier_token18] = ACTIONS(2404), + [aux_sym_cmd_identifier_token19] = ACTIONS(2404), + [aux_sym_cmd_identifier_token20] = ACTIONS(2404), + [aux_sym_cmd_identifier_token21] = ACTIONS(2404), + [aux_sym_cmd_identifier_token22] = ACTIONS(2404), + [aux_sym_cmd_identifier_token23] = ACTIONS(2404), + [aux_sym_cmd_identifier_token24] = ACTIONS(2404), + [aux_sym_cmd_identifier_token25] = ACTIONS(2404), + [aux_sym_cmd_identifier_token26] = ACTIONS(2404), + [aux_sym_cmd_identifier_token27] = ACTIONS(2404), + [aux_sym_cmd_identifier_token28] = ACTIONS(2404), + [aux_sym_cmd_identifier_token29] = ACTIONS(2404), + [aux_sym_cmd_identifier_token30] = ACTIONS(2404), + [aux_sym_cmd_identifier_token31] = ACTIONS(2404), + [aux_sym_cmd_identifier_token32] = ACTIONS(2404), + [aux_sym_cmd_identifier_token33] = ACTIONS(2404), + [aux_sym_cmd_identifier_token34] = ACTIONS(2404), + [aux_sym_cmd_identifier_token35] = ACTIONS(2404), + [aux_sym_cmd_identifier_token36] = ACTIONS(2404), + [anon_sym_true] = ACTIONS(2406), + [anon_sym_false] = ACTIONS(2406), + [anon_sym_null] = ACTIONS(2406), + [aux_sym_cmd_identifier_token38] = ACTIONS(2404), + [aux_sym_cmd_identifier_token39] = ACTIONS(2406), + [aux_sym_cmd_identifier_token40] = ACTIONS(2406), + [anon_sym_def] = ACTIONS(2404), + [anon_sym_export_DASHenv] = ACTIONS(2404), + [anon_sym_extern] = ACTIONS(2404), + [anon_sym_module] = ACTIONS(2404), + [anon_sym_use] = ACTIONS(2404), + [anon_sym_LPAREN] = ACTIONS(2406), + [anon_sym_DOLLAR] = ACTIONS(2406), + [anon_sym_error] = ACTIONS(2404), + [anon_sym_list] = ACTIONS(2404), + [anon_sym_DASH] = ACTIONS(2404), + [anon_sym_break] = ACTIONS(2404), + [anon_sym_continue] = ACTIONS(2404), + [anon_sym_for] = ACTIONS(2404), + [anon_sym_in] = ACTIONS(2404), + [anon_sym_loop] = ACTIONS(2404), + [anon_sym_make] = ACTIONS(2404), + [anon_sym_while] = ACTIONS(2404), + [anon_sym_do] = ACTIONS(2404), + [anon_sym_if] = ACTIONS(2404), + [anon_sym_else] = ACTIONS(2404), + [anon_sym_match] = ACTIONS(2404), + [anon_sym_RBRACE] = ACTIONS(2406), + [anon_sym_try] = ACTIONS(2404), + [anon_sym_catch] = ACTIONS(2404), + [anon_sym_return] = ACTIONS(2404), + [anon_sym_source] = ACTIONS(2404), + [anon_sym_source_DASHenv] = ACTIONS(2404), + [anon_sym_register] = ACTIONS(2404), + [anon_sym_hide] = ACTIONS(2404), + [anon_sym_hide_DASHenv] = ACTIONS(2404), + [anon_sym_overlay] = ACTIONS(2404), + [anon_sym_new] = ACTIONS(2404), + [anon_sym_as] = ACTIONS(2404), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2406), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2406), + [aux_sym__val_number_decimal_token1] = ACTIONS(2404), + [aux_sym__val_number_decimal_token2] = ACTIONS(2406), + [aux_sym__val_number_decimal_token3] = ACTIONS(2406), + [aux_sym__val_number_decimal_token4] = ACTIONS(2406), + [aux_sym__val_number_token1] = ACTIONS(2406), + [aux_sym__val_number_token2] = ACTIONS(2406), + [aux_sym__val_number_token3] = ACTIONS(2406), + [anon_sym_DQUOTE] = ACTIONS(2406), + [sym__str_single_quotes] = ACTIONS(2406), + [sym__str_back_ticks] = ACTIONS(2406), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2406), + [anon_sym_PLUS] = ACTIONS(2404), + [anon_sym_POUND] = ACTIONS(247), + }, + [607] = { + [sym_comment] = STATE(607), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_alias] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_let_DASHenv] = ACTIONS(1859), + [anon_sym_mut] = ACTIONS(1859), + [anon_sym_const] = ACTIONS(1859), + [aux_sym_cmd_identifier_token1] = ACTIONS(1859), + [aux_sym_cmd_identifier_token2] = ACTIONS(1859), + [aux_sym_cmd_identifier_token3] = ACTIONS(1859), + [aux_sym_cmd_identifier_token4] = ACTIONS(1859), + [aux_sym_cmd_identifier_token5] = ACTIONS(1859), + [aux_sym_cmd_identifier_token6] = ACTIONS(1859), + [aux_sym_cmd_identifier_token7] = ACTIONS(1859), + [aux_sym_cmd_identifier_token8] = ACTIONS(1859), + [aux_sym_cmd_identifier_token9] = ACTIONS(1859), + [aux_sym_cmd_identifier_token10] = ACTIONS(1859), + [aux_sym_cmd_identifier_token11] = ACTIONS(1859), + [aux_sym_cmd_identifier_token12] = ACTIONS(1859), + [aux_sym_cmd_identifier_token13] = ACTIONS(1859), + [aux_sym_cmd_identifier_token14] = ACTIONS(1859), + [aux_sym_cmd_identifier_token15] = ACTIONS(1859), + [aux_sym_cmd_identifier_token16] = ACTIONS(1859), + [aux_sym_cmd_identifier_token17] = ACTIONS(1859), + [aux_sym_cmd_identifier_token18] = ACTIONS(1859), + [aux_sym_cmd_identifier_token19] = ACTIONS(1859), + [aux_sym_cmd_identifier_token20] = ACTIONS(1859), + [aux_sym_cmd_identifier_token21] = ACTIONS(1859), + [aux_sym_cmd_identifier_token22] = ACTIONS(1859), + [aux_sym_cmd_identifier_token23] = ACTIONS(1859), + [aux_sym_cmd_identifier_token24] = ACTIONS(1859), + [aux_sym_cmd_identifier_token25] = ACTIONS(1859), + [aux_sym_cmd_identifier_token26] = ACTIONS(1859), + [aux_sym_cmd_identifier_token27] = ACTIONS(1859), + [aux_sym_cmd_identifier_token28] = ACTIONS(1859), + [aux_sym_cmd_identifier_token29] = ACTIONS(1859), + [aux_sym_cmd_identifier_token30] = ACTIONS(1859), + [aux_sym_cmd_identifier_token31] = ACTIONS(1859), + [aux_sym_cmd_identifier_token32] = ACTIONS(1859), + [aux_sym_cmd_identifier_token33] = ACTIONS(1859), + [aux_sym_cmd_identifier_token34] = ACTIONS(1859), + [aux_sym_cmd_identifier_token35] = ACTIONS(1859), + [aux_sym_cmd_identifier_token36] = ACTIONS(1859), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1861), + [aux_sym_cmd_identifier_token38] = ACTIONS(1859), + [aux_sym_cmd_identifier_token39] = ACTIONS(1861), + [aux_sym_cmd_identifier_token40] = ACTIONS(1861), + [anon_sym_def] = ACTIONS(1859), + [anon_sym_export_DASHenv] = ACTIONS(1859), + [anon_sym_extern] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_use] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1861), + [anon_sym_DOLLAR] = ACTIONS(1861), + [anon_sym_error] = ACTIONS(1859), + [anon_sym_list] = ACTIONS(1859), + [anon_sym_DASH] = ACTIONS(1859), + [anon_sym_break] = ACTIONS(1859), + [anon_sym_continue] = ACTIONS(1859), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_in] = ACTIONS(1859), + [anon_sym_loop] = ACTIONS(1859), + [anon_sym_make] = ACTIONS(1859), + [anon_sym_while] = ACTIONS(1859), + [anon_sym_do] = ACTIONS(1859), + [anon_sym_if] = ACTIONS(1859), + [anon_sym_else] = ACTIONS(1859), + [anon_sym_match] = ACTIONS(1859), + [anon_sym_RBRACE] = ACTIONS(1861), + [anon_sym_try] = ACTIONS(1859), + [anon_sym_catch] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(1859), + [anon_sym_source] = ACTIONS(1859), + [anon_sym_source_DASHenv] = ACTIONS(1859), + [anon_sym_register] = ACTIONS(1859), + [anon_sym_hide] = ACTIONS(1859), + [anon_sym_hide_DASHenv] = ACTIONS(1859), + [anon_sym_overlay] = ACTIONS(1859), + [anon_sym_new] = ACTIONS(1859), + [anon_sym_as] = ACTIONS(1859), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1861), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1861), + [aux_sym__val_number_decimal_token1] = ACTIONS(1859), + [aux_sym__val_number_decimal_token2] = ACTIONS(1861), + [aux_sym__val_number_decimal_token3] = ACTIONS(1861), + [aux_sym__val_number_decimal_token4] = ACTIONS(1861), + [aux_sym__val_number_token1] = ACTIONS(1861), + [aux_sym__val_number_token2] = ACTIONS(1861), + [aux_sym__val_number_token3] = ACTIONS(1861), + [anon_sym_DQUOTE] = ACTIONS(1861), + [sym__str_single_quotes] = ACTIONS(1861), + [sym__str_back_ticks] = ACTIONS(1861), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1861), + [anon_sym_PLUS] = ACTIONS(1859), + [anon_sym_POUND] = ACTIONS(247), + }, + [608] = { + [sym_comment] = STATE(608), + [anon_sym_export] = ACTIONS(1064), + [anon_sym_alias] = ACTIONS(1064), + [anon_sym_let] = ACTIONS(1064), + [anon_sym_let_DASHenv] = ACTIONS(1064), + [anon_sym_mut] = ACTIONS(1064), + [anon_sym_const] = ACTIONS(1064), + [aux_sym_cmd_identifier_token1] = ACTIONS(1064), + [aux_sym_cmd_identifier_token2] = ACTIONS(1064), + [aux_sym_cmd_identifier_token3] = ACTIONS(1064), + [aux_sym_cmd_identifier_token4] = ACTIONS(1064), + [aux_sym_cmd_identifier_token5] = ACTIONS(1064), + [aux_sym_cmd_identifier_token6] = ACTIONS(1064), + [aux_sym_cmd_identifier_token7] = ACTIONS(1064), + [aux_sym_cmd_identifier_token8] = ACTIONS(1064), + [aux_sym_cmd_identifier_token9] = ACTIONS(1064), + [aux_sym_cmd_identifier_token10] = ACTIONS(1064), + [aux_sym_cmd_identifier_token11] = ACTIONS(1064), + [aux_sym_cmd_identifier_token12] = ACTIONS(1064), + [aux_sym_cmd_identifier_token13] = ACTIONS(1064), + [aux_sym_cmd_identifier_token14] = ACTIONS(1064), + [aux_sym_cmd_identifier_token15] = ACTIONS(1064), + [aux_sym_cmd_identifier_token16] = ACTIONS(1064), + [aux_sym_cmd_identifier_token17] = ACTIONS(1064), + [aux_sym_cmd_identifier_token18] = ACTIONS(1064), + [aux_sym_cmd_identifier_token19] = ACTIONS(1064), + [aux_sym_cmd_identifier_token20] = ACTIONS(1064), + [aux_sym_cmd_identifier_token21] = ACTIONS(1064), + [aux_sym_cmd_identifier_token22] = ACTIONS(1064), + [aux_sym_cmd_identifier_token23] = ACTIONS(1064), + [aux_sym_cmd_identifier_token24] = ACTIONS(1064), + [aux_sym_cmd_identifier_token25] = ACTIONS(1064), + [aux_sym_cmd_identifier_token26] = ACTIONS(1064), + [aux_sym_cmd_identifier_token27] = ACTIONS(1064), + [aux_sym_cmd_identifier_token28] = ACTIONS(1064), + [aux_sym_cmd_identifier_token29] = ACTIONS(1064), + [aux_sym_cmd_identifier_token30] = ACTIONS(1064), + [aux_sym_cmd_identifier_token31] = ACTIONS(1064), + [aux_sym_cmd_identifier_token32] = ACTIONS(1064), + [aux_sym_cmd_identifier_token33] = ACTIONS(1064), + [aux_sym_cmd_identifier_token34] = ACTIONS(1064), + [aux_sym_cmd_identifier_token35] = ACTIONS(1064), + [aux_sym_cmd_identifier_token36] = ACTIONS(1064), + [anon_sym_true] = ACTIONS(1066), + [anon_sym_false] = ACTIONS(1066), + [anon_sym_null] = ACTIONS(1066), + [aux_sym_cmd_identifier_token38] = ACTIONS(1064), + [aux_sym_cmd_identifier_token39] = ACTIONS(1066), + [aux_sym_cmd_identifier_token40] = ACTIONS(1066), + [anon_sym_def] = ACTIONS(1064), + [anon_sym_export_DASHenv] = ACTIONS(1064), + [anon_sym_extern] = ACTIONS(1064), + [anon_sym_module] = ACTIONS(1064), + [anon_sym_use] = ACTIONS(1064), + [anon_sym_LPAREN] = ACTIONS(1066), + [anon_sym_DOLLAR] = ACTIONS(1066), + [anon_sym_error] = ACTIONS(1064), + [anon_sym_list] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1064), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1064), + [anon_sym_for] = ACTIONS(1064), + [anon_sym_in] = ACTIONS(1064), + [anon_sym_loop] = ACTIONS(1064), + [anon_sym_make] = ACTIONS(1064), + [anon_sym_while] = ACTIONS(1064), + [anon_sym_do] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1064), + [anon_sym_else] = ACTIONS(1064), + [anon_sym_match] = ACTIONS(1064), + [anon_sym_RBRACE] = ACTIONS(1066), + [anon_sym_try] = ACTIONS(1064), + [anon_sym_catch] = ACTIONS(1064), + [anon_sym_return] = ACTIONS(1064), + [anon_sym_source] = ACTIONS(1064), + [anon_sym_source_DASHenv] = ACTIONS(1064), + [anon_sym_register] = ACTIONS(1064), + [anon_sym_hide] = ACTIONS(1064), + [anon_sym_hide_DASHenv] = ACTIONS(1064), + [anon_sym_overlay] = ACTIONS(1064), + [anon_sym_new] = ACTIONS(1064), + [anon_sym_as] = ACTIONS(1064), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1066), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1066), + [aux_sym__val_number_decimal_token1] = ACTIONS(1064), + [aux_sym__val_number_decimal_token2] = ACTIONS(1066), + [aux_sym__val_number_decimal_token3] = ACTIONS(1066), + [aux_sym__val_number_decimal_token4] = ACTIONS(1066), + [aux_sym__val_number_token1] = ACTIONS(1066), + [aux_sym__val_number_token2] = ACTIONS(1066), + [aux_sym__val_number_token3] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [sym__str_single_quotes] = ACTIONS(1066), + [sym__str_back_ticks] = ACTIONS(1066), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1066), + [anon_sym_PLUS] = ACTIONS(1064), + [anon_sym_POUND] = ACTIONS(247), + }, + [609] = { + [sym_comment] = STATE(609), + [anon_sym_export] = ACTIONS(2521), + [anon_sym_alias] = ACTIONS(2521), + [anon_sym_let] = ACTIONS(2521), + [anon_sym_let_DASHenv] = ACTIONS(2521), + [anon_sym_mut] = ACTIONS(2521), + [anon_sym_const] = ACTIONS(2521), + [aux_sym_cmd_identifier_token1] = ACTIONS(2521), + [aux_sym_cmd_identifier_token2] = ACTIONS(2521), + [aux_sym_cmd_identifier_token3] = ACTIONS(2521), + [aux_sym_cmd_identifier_token4] = ACTIONS(2521), + [aux_sym_cmd_identifier_token5] = ACTIONS(2521), + [aux_sym_cmd_identifier_token6] = ACTIONS(2521), + [aux_sym_cmd_identifier_token7] = ACTIONS(2521), + [aux_sym_cmd_identifier_token8] = ACTIONS(2521), + [aux_sym_cmd_identifier_token9] = ACTIONS(2521), + [aux_sym_cmd_identifier_token10] = ACTIONS(2521), + [aux_sym_cmd_identifier_token11] = ACTIONS(2521), + [aux_sym_cmd_identifier_token12] = ACTIONS(2521), + [aux_sym_cmd_identifier_token13] = ACTIONS(2521), + [aux_sym_cmd_identifier_token14] = ACTIONS(2521), + [aux_sym_cmd_identifier_token15] = ACTIONS(2521), + [aux_sym_cmd_identifier_token16] = ACTIONS(2521), + [aux_sym_cmd_identifier_token17] = ACTIONS(2521), + [aux_sym_cmd_identifier_token18] = ACTIONS(2521), + [aux_sym_cmd_identifier_token19] = ACTIONS(2521), + [aux_sym_cmd_identifier_token20] = ACTIONS(2521), + [aux_sym_cmd_identifier_token21] = ACTIONS(2521), + [aux_sym_cmd_identifier_token22] = ACTIONS(2521), + [aux_sym_cmd_identifier_token23] = ACTIONS(2521), + [aux_sym_cmd_identifier_token24] = ACTIONS(2521), + [aux_sym_cmd_identifier_token25] = ACTIONS(2521), + [aux_sym_cmd_identifier_token26] = ACTIONS(2521), + [aux_sym_cmd_identifier_token27] = ACTIONS(2521), + [aux_sym_cmd_identifier_token28] = ACTIONS(2521), + [aux_sym_cmd_identifier_token29] = ACTIONS(2521), + [aux_sym_cmd_identifier_token30] = ACTIONS(2521), + [aux_sym_cmd_identifier_token31] = ACTIONS(2521), + [aux_sym_cmd_identifier_token32] = ACTIONS(2521), + [aux_sym_cmd_identifier_token33] = ACTIONS(2521), + [aux_sym_cmd_identifier_token34] = ACTIONS(2521), + [aux_sym_cmd_identifier_token35] = ACTIONS(2521), + [aux_sym_cmd_identifier_token36] = ACTIONS(2521), + [anon_sym_true] = ACTIONS(2523), + [anon_sym_false] = ACTIONS(2523), + [anon_sym_null] = ACTIONS(2523), + [aux_sym_cmd_identifier_token38] = ACTIONS(2521), + [aux_sym_cmd_identifier_token39] = ACTIONS(2523), + [aux_sym_cmd_identifier_token40] = ACTIONS(2523), + [anon_sym_def] = ACTIONS(2521), + [anon_sym_export_DASHenv] = ACTIONS(2521), + [anon_sym_extern] = ACTIONS(2521), + [anon_sym_module] = ACTIONS(2521), + [anon_sym_use] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2523), + [anon_sym_DOLLAR] = ACTIONS(2523), + [anon_sym_error] = ACTIONS(2521), + [anon_sym_list] = ACTIONS(2521), + [anon_sym_DASH] = ACTIONS(2521), + [anon_sym_break] = ACTIONS(2521), + [anon_sym_continue] = ACTIONS(2521), + [anon_sym_for] = ACTIONS(2521), + [anon_sym_in] = ACTIONS(2521), + [anon_sym_loop] = ACTIONS(2521), + [anon_sym_make] = ACTIONS(2521), + [anon_sym_while] = ACTIONS(2521), + [anon_sym_do] = ACTIONS(2521), + [anon_sym_if] = ACTIONS(2521), + [anon_sym_else] = ACTIONS(2521), + [anon_sym_match] = ACTIONS(2521), + [anon_sym_RBRACE] = ACTIONS(2523), + [anon_sym_try] = ACTIONS(2521), + [anon_sym_catch] = ACTIONS(2521), + [anon_sym_return] = ACTIONS(2521), + [anon_sym_source] = ACTIONS(2521), + [anon_sym_source_DASHenv] = ACTIONS(2521), + [anon_sym_register] = ACTIONS(2521), + [anon_sym_hide] = ACTIONS(2521), + [anon_sym_hide_DASHenv] = ACTIONS(2521), + [anon_sym_overlay] = ACTIONS(2521), + [anon_sym_new] = ACTIONS(2521), + [anon_sym_as] = ACTIONS(2521), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2523), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2523), + [aux_sym__val_number_decimal_token1] = ACTIONS(2521), + [aux_sym__val_number_decimal_token2] = ACTIONS(2523), + [aux_sym__val_number_decimal_token3] = ACTIONS(2523), + [aux_sym__val_number_decimal_token4] = ACTIONS(2523), + [aux_sym__val_number_token1] = ACTIONS(2523), + [aux_sym__val_number_token2] = ACTIONS(2523), + [aux_sym__val_number_token3] = ACTIONS(2523), + [anon_sym_DQUOTE] = ACTIONS(2523), + [sym__str_single_quotes] = ACTIONS(2523), + [sym__str_back_ticks] = ACTIONS(2523), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2523), + [anon_sym_PLUS] = ACTIONS(2521), + [anon_sym_POUND] = ACTIONS(247), + }, + [610] = { + [sym_comment] = STATE(610), + [anon_sym_export] = ACTIONS(2489), + [anon_sym_alias] = ACTIONS(2489), + [anon_sym_let] = ACTIONS(2489), + [anon_sym_let_DASHenv] = ACTIONS(2489), + [anon_sym_mut] = ACTIONS(2489), + [anon_sym_const] = ACTIONS(2489), + [aux_sym_cmd_identifier_token1] = ACTIONS(2489), + [aux_sym_cmd_identifier_token2] = ACTIONS(2489), + [aux_sym_cmd_identifier_token3] = ACTIONS(2489), + [aux_sym_cmd_identifier_token4] = ACTIONS(2489), + [aux_sym_cmd_identifier_token5] = ACTIONS(2489), + [aux_sym_cmd_identifier_token6] = ACTIONS(2489), + [aux_sym_cmd_identifier_token7] = ACTIONS(2489), + [aux_sym_cmd_identifier_token8] = ACTIONS(2489), + [aux_sym_cmd_identifier_token9] = ACTIONS(2489), + [aux_sym_cmd_identifier_token10] = ACTIONS(2489), + [aux_sym_cmd_identifier_token11] = ACTIONS(2489), + [aux_sym_cmd_identifier_token12] = ACTIONS(2489), + [aux_sym_cmd_identifier_token13] = ACTIONS(2489), + [aux_sym_cmd_identifier_token14] = ACTIONS(2489), + [aux_sym_cmd_identifier_token15] = ACTIONS(2489), + [aux_sym_cmd_identifier_token16] = ACTIONS(2489), + [aux_sym_cmd_identifier_token17] = ACTIONS(2489), + [aux_sym_cmd_identifier_token18] = ACTIONS(2489), + [aux_sym_cmd_identifier_token19] = ACTIONS(2489), + [aux_sym_cmd_identifier_token20] = ACTIONS(2489), + [aux_sym_cmd_identifier_token21] = ACTIONS(2489), + [aux_sym_cmd_identifier_token22] = ACTIONS(2489), + [aux_sym_cmd_identifier_token23] = ACTIONS(2489), + [aux_sym_cmd_identifier_token24] = ACTIONS(2489), + [aux_sym_cmd_identifier_token25] = ACTIONS(2489), + [aux_sym_cmd_identifier_token26] = ACTIONS(2489), + [aux_sym_cmd_identifier_token27] = ACTIONS(2489), + [aux_sym_cmd_identifier_token28] = ACTIONS(2489), + [aux_sym_cmd_identifier_token29] = ACTIONS(2489), + [aux_sym_cmd_identifier_token30] = ACTIONS(2489), + [aux_sym_cmd_identifier_token31] = ACTIONS(2489), + [aux_sym_cmd_identifier_token32] = ACTIONS(2489), + [aux_sym_cmd_identifier_token33] = ACTIONS(2489), + [aux_sym_cmd_identifier_token34] = ACTIONS(2489), + [aux_sym_cmd_identifier_token35] = ACTIONS(2489), + [aux_sym_cmd_identifier_token36] = ACTIONS(2489), + [anon_sym_true] = ACTIONS(2491), + [anon_sym_false] = ACTIONS(2491), + [anon_sym_null] = ACTIONS(2491), + [aux_sym_cmd_identifier_token38] = ACTIONS(2489), + [aux_sym_cmd_identifier_token39] = ACTIONS(2491), + [aux_sym_cmd_identifier_token40] = ACTIONS(2491), + [anon_sym_def] = ACTIONS(2489), + [anon_sym_export_DASHenv] = ACTIONS(2489), + [anon_sym_extern] = ACTIONS(2489), + [anon_sym_module] = ACTIONS(2489), + [anon_sym_use] = ACTIONS(2489), + [anon_sym_LPAREN] = ACTIONS(2491), + [anon_sym_DOLLAR] = ACTIONS(2491), + [anon_sym_error] = ACTIONS(2489), + [anon_sym_list] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_break] = ACTIONS(2489), + [anon_sym_continue] = ACTIONS(2489), + [anon_sym_for] = ACTIONS(2489), + [anon_sym_in] = ACTIONS(2489), + [anon_sym_loop] = ACTIONS(2489), + [anon_sym_make] = ACTIONS(2489), + [anon_sym_while] = ACTIONS(2489), + [anon_sym_do] = ACTIONS(2489), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_else] = ACTIONS(2489), + [anon_sym_match] = ACTIONS(2489), + [anon_sym_RBRACE] = ACTIONS(2491), + [anon_sym_try] = ACTIONS(2489), + [anon_sym_catch] = ACTIONS(2489), + [anon_sym_return] = ACTIONS(2489), + [anon_sym_source] = ACTIONS(2489), + [anon_sym_source_DASHenv] = ACTIONS(2489), + [anon_sym_register] = ACTIONS(2489), + [anon_sym_hide] = ACTIONS(2489), + [anon_sym_hide_DASHenv] = ACTIONS(2489), + [anon_sym_overlay] = ACTIONS(2489), + [anon_sym_new] = ACTIONS(2489), + [anon_sym_as] = ACTIONS(2489), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2491), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2491), + [aux_sym__val_number_decimal_token1] = ACTIONS(2489), + [aux_sym__val_number_decimal_token2] = ACTIONS(2491), + [aux_sym__val_number_decimal_token3] = ACTIONS(2491), + [aux_sym__val_number_decimal_token4] = ACTIONS(2491), + [aux_sym__val_number_token1] = ACTIONS(2491), + [aux_sym__val_number_token2] = ACTIONS(2491), + [aux_sym__val_number_token3] = ACTIONS(2491), + [anon_sym_DQUOTE] = ACTIONS(2491), + [sym__str_single_quotes] = ACTIONS(2491), + [sym__str_back_ticks] = ACTIONS(2491), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2491), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_POUND] = ACTIONS(247), + }, + [611] = { + [sym_comment] = STATE(611), [anon_sym_export] = ACTIONS(1867), [anon_sym_alias] = ACTIONS(1867), [anon_sym_let] = ACTIONS(1867), @@ -143949,2483 +141115,3275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1867), [anon_sym_POUND] = ACTIONS(247), }, - [599] = { - [sym_comment] = STATE(599), - [anon_sym_export] = ACTIONS(1273), - [anon_sym_alias] = ACTIONS(1273), - [anon_sym_let] = ACTIONS(1273), - [anon_sym_let_DASHenv] = ACTIONS(1273), - [anon_sym_mut] = ACTIONS(1273), - [anon_sym_const] = ACTIONS(1273), - [aux_sym_cmd_identifier_token1] = ACTIONS(1273), - [aux_sym_cmd_identifier_token2] = ACTIONS(1273), - [aux_sym_cmd_identifier_token3] = ACTIONS(1273), - [aux_sym_cmd_identifier_token4] = ACTIONS(1273), - [aux_sym_cmd_identifier_token5] = ACTIONS(1273), - [aux_sym_cmd_identifier_token6] = ACTIONS(1273), - [aux_sym_cmd_identifier_token7] = ACTIONS(1273), - [aux_sym_cmd_identifier_token8] = ACTIONS(1273), - [aux_sym_cmd_identifier_token9] = ACTIONS(1273), - [aux_sym_cmd_identifier_token10] = ACTIONS(1273), - [aux_sym_cmd_identifier_token11] = ACTIONS(1273), - [aux_sym_cmd_identifier_token12] = ACTIONS(1273), - [aux_sym_cmd_identifier_token13] = ACTIONS(1273), - [aux_sym_cmd_identifier_token14] = ACTIONS(1273), - [aux_sym_cmd_identifier_token15] = ACTIONS(1273), - [aux_sym_cmd_identifier_token16] = ACTIONS(1273), - [aux_sym_cmd_identifier_token17] = ACTIONS(1273), - [aux_sym_cmd_identifier_token18] = ACTIONS(1273), - [aux_sym_cmd_identifier_token19] = ACTIONS(1273), - [aux_sym_cmd_identifier_token20] = ACTIONS(1273), - [aux_sym_cmd_identifier_token21] = ACTIONS(1273), - [aux_sym_cmd_identifier_token22] = ACTIONS(1273), - [aux_sym_cmd_identifier_token23] = ACTIONS(1273), - [aux_sym_cmd_identifier_token24] = ACTIONS(1273), - [aux_sym_cmd_identifier_token25] = ACTIONS(1273), - [aux_sym_cmd_identifier_token26] = ACTIONS(1273), - [aux_sym_cmd_identifier_token27] = ACTIONS(1273), - [aux_sym_cmd_identifier_token28] = ACTIONS(1273), - [aux_sym_cmd_identifier_token29] = ACTIONS(1273), - [aux_sym_cmd_identifier_token30] = ACTIONS(1273), - [aux_sym_cmd_identifier_token31] = ACTIONS(1273), - [aux_sym_cmd_identifier_token32] = ACTIONS(1273), - [aux_sym_cmd_identifier_token33] = ACTIONS(1273), - [aux_sym_cmd_identifier_token34] = ACTIONS(1273), - [aux_sym_cmd_identifier_token35] = ACTIONS(1273), - [aux_sym_cmd_identifier_token36] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_null] = ACTIONS(1277), - [aux_sym_cmd_identifier_token38] = ACTIONS(1273), - [aux_sym_cmd_identifier_token39] = ACTIONS(1277), - [aux_sym_cmd_identifier_token40] = ACTIONS(1277), - [sym__newline] = ACTIONS(1277), - [anon_sym_def] = ACTIONS(1273), - [anon_sym_export_DASHenv] = ACTIONS(1273), - [anon_sym_extern] = ACTIONS(1273), - [anon_sym_module] = ACTIONS(1273), - [anon_sym_use] = ACTIONS(1273), - [anon_sym_LPAREN] = ACTIONS(1277), - [anon_sym_DOLLAR] = ACTIONS(1277), - [anon_sym_error] = ACTIONS(1273), - [anon_sym_list] = ACTIONS(1273), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_break] = ACTIONS(1273), - [anon_sym_continue] = ACTIONS(1273), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_in] = ACTIONS(1273), - [anon_sym_loop] = ACTIONS(1273), - [anon_sym_make] = ACTIONS(1273), - [anon_sym_while] = ACTIONS(1273), - [anon_sym_do] = ACTIONS(1273), - [anon_sym_if] = ACTIONS(1273), - [anon_sym_else] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_try] = ACTIONS(1273), - [anon_sym_catch] = ACTIONS(1273), - [anon_sym_return] = ACTIONS(1273), - [anon_sym_source] = ACTIONS(1273), - [anon_sym_source_DASHenv] = ACTIONS(1273), - [anon_sym_register] = ACTIONS(1273), - [anon_sym_hide] = ACTIONS(1273), - [anon_sym_hide_DASHenv] = ACTIONS(1273), - [anon_sym_overlay] = ACTIONS(1273), - [anon_sym_new] = ACTIONS(1273), - [anon_sym_as] = ACTIONS(1273), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1277), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1277), - [aux_sym__val_number_decimal_token1] = ACTIONS(1273), - [aux_sym__val_number_decimal_token2] = ACTIONS(1277), - [aux_sym__val_number_decimal_token3] = ACTIONS(1277), - [aux_sym__val_number_decimal_token4] = ACTIONS(1277), - [aux_sym__val_number_token1] = ACTIONS(1277), - [aux_sym__val_number_token2] = ACTIONS(1277), - [aux_sym__val_number_token3] = ACTIONS(1277), - [anon_sym_DQUOTE] = ACTIONS(1277), - [sym__str_single_quotes] = ACTIONS(1277), - [sym__str_back_ticks] = ACTIONS(1277), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1277), - [anon_sym_PLUS] = ACTIONS(1273), - [anon_sym_POUND] = ACTIONS(247), - }, - [600] = { - [sym_comment] = STATE(600), - [anon_sym_export] = ACTIONS(1935), - [anon_sym_alias] = ACTIONS(1935), - [anon_sym_let] = ACTIONS(1935), - [anon_sym_let_DASHenv] = ACTIONS(1935), - [anon_sym_mut] = ACTIONS(1935), - [anon_sym_const] = ACTIONS(1935), - [aux_sym_cmd_identifier_token1] = ACTIONS(1935), - [aux_sym_cmd_identifier_token2] = ACTIONS(1935), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [aux_sym_cmd_identifier_token6] = ACTIONS(1935), - [aux_sym_cmd_identifier_token7] = ACTIONS(1935), - [aux_sym_cmd_identifier_token8] = ACTIONS(1935), - [aux_sym_cmd_identifier_token9] = ACTIONS(1935), - [aux_sym_cmd_identifier_token10] = ACTIONS(1935), - [aux_sym_cmd_identifier_token11] = ACTIONS(1935), - [aux_sym_cmd_identifier_token12] = ACTIONS(1935), - [aux_sym_cmd_identifier_token13] = ACTIONS(1935), - [aux_sym_cmd_identifier_token14] = ACTIONS(1935), - [aux_sym_cmd_identifier_token15] = ACTIONS(1935), - [aux_sym_cmd_identifier_token16] = ACTIONS(1935), - [aux_sym_cmd_identifier_token17] = ACTIONS(1935), - [aux_sym_cmd_identifier_token18] = ACTIONS(1935), - [aux_sym_cmd_identifier_token19] = ACTIONS(1935), - [aux_sym_cmd_identifier_token20] = ACTIONS(1935), - [aux_sym_cmd_identifier_token21] = ACTIONS(1935), - [aux_sym_cmd_identifier_token22] = ACTIONS(1935), - [aux_sym_cmd_identifier_token23] = ACTIONS(1935), - [aux_sym_cmd_identifier_token24] = ACTIONS(1935), - [aux_sym_cmd_identifier_token25] = ACTIONS(1935), - [aux_sym_cmd_identifier_token26] = ACTIONS(1935), - [aux_sym_cmd_identifier_token27] = ACTIONS(1935), - [aux_sym_cmd_identifier_token28] = ACTIONS(1935), - [aux_sym_cmd_identifier_token29] = ACTIONS(1935), - [aux_sym_cmd_identifier_token30] = ACTIONS(1935), - [aux_sym_cmd_identifier_token31] = ACTIONS(1935), - [aux_sym_cmd_identifier_token32] = ACTIONS(1935), - [aux_sym_cmd_identifier_token33] = ACTIONS(1935), - [aux_sym_cmd_identifier_token34] = ACTIONS(1935), - [aux_sym_cmd_identifier_token35] = ACTIONS(1935), - [aux_sym_cmd_identifier_token36] = ACTIONS(1935), - [anon_sym_true] = ACTIONS(1941), - [anon_sym_false] = ACTIONS(1941), - [anon_sym_null] = ACTIONS(1941), - [aux_sym_cmd_identifier_token38] = ACTIONS(1935), - [aux_sym_cmd_identifier_token39] = ACTIONS(1941), - [aux_sym_cmd_identifier_token40] = ACTIONS(1941), - [anon_sym_def] = ACTIONS(1935), - [anon_sym_export_DASHenv] = ACTIONS(1935), - [anon_sym_extern] = ACTIONS(1935), - [anon_sym_module] = ACTIONS(1935), - [anon_sym_use] = ACTIONS(1935), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_DOLLAR] = ACTIONS(1941), - [anon_sym_error] = ACTIONS(1935), - [anon_sym_list] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_break] = ACTIONS(1935), - [anon_sym_continue] = ACTIONS(1935), - [anon_sym_for] = ACTIONS(1935), - [anon_sym_in] = ACTIONS(1935), - [anon_sym_loop] = ACTIONS(1935), - [anon_sym_make] = ACTIONS(1935), - [anon_sym_while] = ACTIONS(1935), - [anon_sym_do] = ACTIONS(1935), - [anon_sym_if] = ACTIONS(1935), - [anon_sym_else] = ACTIONS(1935), - [anon_sym_match] = ACTIONS(1935), - [anon_sym_RBRACE] = ACTIONS(1941), - [anon_sym_try] = ACTIONS(1935), - [anon_sym_catch] = ACTIONS(1935), - [anon_sym_return] = ACTIONS(1935), - [anon_sym_source] = ACTIONS(1935), - [anon_sym_source_DASHenv] = ACTIONS(1935), - [anon_sym_register] = ACTIONS(1935), - [anon_sym_hide] = ACTIONS(1935), - [anon_sym_hide_DASHenv] = ACTIONS(1935), - [anon_sym_overlay] = ACTIONS(1935), - [anon_sym_new] = ACTIONS(1935), - [anon_sym_as] = ACTIONS(1935), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1941), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1941), - [aux_sym__val_number_decimal_token3] = ACTIONS(1941), - [aux_sym__val_number_decimal_token4] = ACTIONS(1941), - [aux_sym__val_number_token1] = ACTIONS(1941), - [aux_sym__val_number_token2] = ACTIONS(1941), - [aux_sym__val_number_token3] = ACTIONS(1941), - [anon_sym_DQUOTE] = ACTIONS(1941), - [sym__str_single_quotes] = ACTIONS(1941), - [sym__str_back_ticks] = ACTIONS(1941), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(1935), - [anon_sym_POUND] = ACTIONS(247), - }, - [601] = { - [sym_comment] = STATE(601), - [anon_sym_export] = ACTIONS(2401), - [anon_sym_alias] = ACTIONS(2401), - [anon_sym_let] = ACTIONS(2401), - [anon_sym_let_DASHenv] = ACTIONS(2401), - [anon_sym_mut] = ACTIONS(2401), - [anon_sym_const] = ACTIONS(2401), - [aux_sym_cmd_identifier_token1] = ACTIONS(2401), - [aux_sym_cmd_identifier_token2] = ACTIONS(2401), - [aux_sym_cmd_identifier_token3] = ACTIONS(2401), - [aux_sym_cmd_identifier_token4] = ACTIONS(2401), - [aux_sym_cmd_identifier_token5] = ACTIONS(2401), - [aux_sym_cmd_identifier_token6] = ACTIONS(2401), - [aux_sym_cmd_identifier_token7] = ACTIONS(2401), - [aux_sym_cmd_identifier_token8] = ACTIONS(2401), - [aux_sym_cmd_identifier_token9] = ACTIONS(2401), - [aux_sym_cmd_identifier_token10] = ACTIONS(2401), - [aux_sym_cmd_identifier_token11] = ACTIONS(2401), - [aux_sym_cmd_identifier_token12] = ACTIONS(2401), - [aux_sym_cmd_identifier_token13] = ACTIONS(2401), - [aux_sym_cmd_identifier_token14] = ACTIONS(2401), - [aux_sym_cmd_identifier_token15] = ACTIONS(2401), - [aux_sym_cmd_identifier_token16] = ACTIONS(2401), - [aux_sym_cmd_identifier_token17] = ACTIONS(2401), - [aux_sym_cmd_identifier_token18] = ACTIONS(2401), - [aux_sym_cmd_identifier_token19] = ACTIONS(2401), - [aux_sym_cmd_identifier_token20] = ACTIONS(2401), - [aux_sym_cmd_identifier_token21] = ACTIONS(2401), - [aux_sym_cmd_identifier_token22] = ACTIONS(2401), - [aux_sym_cmd_identifier_token23] = ACTIONS(2401), - [aux_sym_cmd_identifier_token24] = ACTIONS(2401), - [aux_sym_cmd_identifier_token25] = ACTIONS(2401), - [aux_sym_cmd_identifier_token26] = ACTIONS(2401), - [aux_sym_cmd_identifier_token27] = ACTIONS(2401), - [aux_sym_cmd_identifier_token28] = ACTIONS(2401), - [aux_sym_cmd_identifier_token29] = ACTIONS(2401), - [aux_sym_cmd_identifier_token30] = ACTIONS(2401), - [aux_sym_cmd_identifier_token31] = ACTIONS(2401), - [aux_sym_cmd_identifier_token32] = ACTIONS(2401), - [aux_sym_cmd_identifier_token33] = ACTIONS(2401), - [aux_sym_cmd_identifier_token34] = ACTIONS(2401), - [aux_sym_cmd_identifier_token35] = ACTIONS(2401), - [aux_sym_cmd_identifier_token36] = ACTIONS(2401), - [anon_sym_true] = ACTIONS(2403), - [anon_sym_false] = ACTIONS(2403), - [anon_sym_null] = ACTIONS(2403), - [aux_sym_cmd_identifier_token38] = ACTIONS(2401), - [aux_sym_cmd_identifier_token39] = ACTIONS(2403), - [aux_sym_cmd_identifier_token40] = ACTIONS(2403), - [anon_sym_def] = ACTIONS(2401), - [anon_sym_export_DASHenv] = ACTIONS(2401), - [anon_sym_extern] = ACTIONS(2401), - [anon_sym_module] = ACTIONS(2401), - [anon_sym_use] = ACTIONS(2401), - [anon_sym_LPAREN] = ACTIONS(2403), - [anon_sym_DOLLAR] = ACTIONS(2403), - [anon_sym_error] = ACTIONS(2401), - [anon_sym_list] = ACTIONS(2401), - [anon_sym_DASH] = ACTIONS(2401), - [anon_sym_break] = ACTIONS(2401), - [anon_sym_continue] = ACTIONS(2401), - [anon_sym_for] = ACTIONS(2401), - [anon_sym_in] = ACTIONS(2401), - [anon_sym_loop] = ACTIONS(2401), - [anon_sym_make] = ACTIONS(2401), - [anon_sym_while] = ACTIONS(2401), - [anon_sym_do] = ACTIONS(2401), - [anon_sym_if] = ACTIONS(2401), - [anon_sym_else] = ACTIONS(2401), - [anon_sym_match] = ACTIONS(2401), - [anon_sym_RBRACE] = ACTIONS(2403), - [anon_sym_try] = ACTIONS(2401), - [anon_sym_catch] = ACTIONS(2401), - [anon_sym_return] = ACTIONS(2401), - [anon_sym_source] = ACTIONS(2401), - [anon_sym_source_DASHenv] = ACTIONS(2401), - [anon_sym_register] = ACTIONS(2401), - [anon_sym_hide] = ACTIONS(2401), - [anon_sym_hide_DASHenv] = ACTIONS(2401), - [anon_sym_overlay] = ACTIONS(2401), - [anon_sym_new] = ACTIONS(2401), - [anon_sym_as] = ACTIONS(2401), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2403), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2403), - [aux_sym__val_number_decimal_token1] = ACTIONS(2401), - [aux_sym__val_number_decimal_token2] = ACTIONS(2403), - [aux_sym__val_number_decimal_token3] = ACTIONS(2403), - [aux_sym__val_number_decimal_token4] = ACTIONS(2403), - [aux_sym__val_number_token1] = ACTIONS(2403), - [aux_sym__val_number_token2] = ACTIONS(2403), - [aux_sym__val_number_token3] = ACTIONS(2403), - [anon_sym_DQUOTE] = ACTIONS(2403), - [sym__str_single_quotes] = ACTIONS(2403), - [sym__str_back_ticks] = ACTIONS(2403), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2403), - [anon_sym_PLUS] = ACTIONS(2401), - [anon_sym_POUND] = ACTIONS(247), - }, - [602] = { - [sym_comment] = STATE(602), - [anon_sym_export] = ACTIONS(2066), - [anon_sym_alias] = ACTIONS(2066), - [anon_sym_let] = ACTIONS(2066), - [anon_sym_let_DASHenv] = ACTIONS(2066), - [anon_sym_mut] = ACTIONS(2066), - [anon_sym_const] = ACTIONS(2066), - [aux_sym_cmd_identifier_token1] = ACTIONS(2066), - [aux_sym_cmd_identifier_token2] = ACTIONS(2066), - [aux_sym_cmd_identifier_token3] = ACTIONS(2066), - [aux_sym_cmd_identifier_token4] = ACTIONS(2066), - [aux_sym_cmd_identifier_token5] = ACTIONS(2066), - [aux_sym_cmd_identifier_token6] = ACTIONS(2066), - [aux_sym_cmd_identifier_token7] = ACTIONS(2066), - [aux_sym_cmd_identifier_token8] = ACTIONS(2066), - [aux_sym_cmd_identifier_token9] = ACTIONS(2066), - [aux_sym_cmd_identifier_token10] = ACTIONS(2066), - [aux_sym_cmd_identifier_token11] = ACTIONS(2066), - [aux_sym_cmd_identifier_token12] = ACTIONS(2066), - [aux_sym_cmd_identifier_token13] = ACTIONS(2066), - [aux_sym_cmd_identifier_token14] = ACTIONS(2066), - [aux_sym_cmd_identifier_token15] = ACTIONS(2066), - [aux_sym_cmd_identifier_token16] = ACTIONS(2066), - [aux_sym_cmd_identifier_token17] = ACTIONS(2066), - [aux_sym_cmd_identifier_token18] = ACTIONS(2066), - [aux_sym_cmd_identifier_token19] = ACTIONS(2066), - [aux_sym_cmd_identifier_token20] = ACTIONS(2066), - [aux_sym_cmd_identifier_token21] = ACTIONS(2066), - [aux_sym_cmd_identifier_token22] = ACTIONS(2066), - [aux_sym_cmd_identifier_token23] = ACTIONS(2066), - [aux_sym_cmd_identifier_token24] = ACTIONS(2066), - [aux_sym_cmd_identifier_token25] = ACTIONS(2066), - [aux_sym_cmd_identifier_token26] = ACTIONS(2066), - [aux_sym_cmd_identifier_token27] = ACTIONS(2066), - [aux_sym_cmd_identifier_token28] = ACTIONS(2066), - [aux_sym_cmd_identifier_token29] = ACTIONS(2066), - [aux_sym_cmd_identifier_token30] = ACTIONS(2066), - [aux_sym_cmd_identifier_token31] = ACTIONS(2066), - [aux_sym_cmd_identifier_token32] = ACTIONS(2066), - [aux_sym_cmd_identifier_token33] = ACTIONS(2066), - [aux_sym_cmd_identifier_token34] = ACTIONS(2066), - [aux_sym_cmd_identifier_token35] = ACTIONS(2066), - [aux_sym_cmd_identifier_token36] = ACTIONS(2066), - [anon_sym_true] = ACTIONS(2072), - [anon_sym_false] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2072), - [aux_sym_cmd_identifier_token38] = ACTIONS(2066), - [aux_sym_cmd_identifier_token39] = ACTIONS(2072), - [aux_sym_cmd_identifier_token40] = ACTIONS(2072), - [anon_sym_def] = ACTIONS(2066), - [anon_sym_export_DASHenv] = ACTIONS(2066), - [anon_sym_extern] = ACTIONS(2066), - [anon_sym_module] = ACTIONS(2066), - [anon_sym_use] = ACTIONS(2066), - [anon_sym_LPAREN] = ACTIONS(2072), - [anon_sym_DOLLAR] = ACTIONS(2072), - [anon_sym_error] = ACTIONS(2066), - [anon_sym_list] = ACTIONS(2066), - [anon_sym_DASH] = ACTIONS(2066), - [anon_sym_break] = ACTIONS(2066), - [anon_sym_continue] = ACTIONS(2066), - [anon_sym_for] = ACTIONS(2066), - [anon_sym_in] = ACTIONS(2066), - [anon_sym_loop] = ACTIONS(2066), - [anon_sym_make] = ACTIONS(2066), - [anon_sym_while] = ACTIONS(2066), - [anon_sym_do] = ACTIONS(2066), - [anon_sym_if] = ACTIONS(2066), - [anon_sym_else] = ACTIONS(2066), - [anon_sym_match] = ACTIONS(2066), - [anon_sym_RBRACE] = ACTIONS(2072), - [anon_sym_try] = ACTIONS(2066), - [anon_sym_catch] = ACTIONS(2066), - [anon_sym_return] = ACTIONS(2066), - [anon_sym_source] = ACTIONS(2066), - [anon_sym_source_DASHenv] = ACTIONS(2066), - [anon_sym_register] = ACTIONS(2066), - [anon_sym_hide] = ACTIONS(2066), - [anon_sym_hide_DASHenv] = ACTIONS(2066), - [anon_sym_overlay] = ACTIONS(2066), - [anon_sym_new] = ACTIONS(2066), - [anon_sym_as] = ACTIONS(2066), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2072), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2072), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2072), - [aux_sym__val_number_decimal_token3] = ACTIONS(2072), - [aux_sym__val_number_decimal_token4] = ACTIONS(2072), - [aux_sym__val_number_token1] = ACTIONS(2072), - [aux_sym__val_number_token2] = ACTIONS(2072), - [aux_sym__val_number_token3] = ACTIONS(2072), - [anon_sym_DQUOTE] = ACTIONS(2072), - [sym__str_single_quotes] = ACTIONS(2072), - [sym__str_back_ticks] = ACTIONS(2072), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2072), - [anon_sym_PLUS] = ACTIONS(2066), - [anon_sym_POUND] = ACTIONS(247), - }, - [603] = { - [sym_comment] = STATE(603), - [anon_sym_export] = ACTIONS(1972), - [anon_sym_alias] = ACTIONS(1972), - [anon_sym_let] = ACTIONS(1972), - [anon_sym_let_DASHenv] = ACTIONS(1972), - [anon_sym_mut] = ACTIONS(1972), - [anon_sym_const] = ACTIONS(1972), - [aux_sym_cmd_identifier_token1] = ACTIONS(1972), - [aux_sym_cmd_identifier_token2] = ACTIONS(1972), - [aux_sym_cmd_identifier_token3] = ACTIONS(1972), - [aux_sym_cmd_identifier_token4] = ACTIONS(1972), - [aux_sym_cmd_identifier_token5] = ACTIONS(1972), - [aux_sym_cmd_identifier_token6] = ACTIONS(1972), - [aux_sym_cmd_identifier_token7] = ACTIONS(1972), - [aux_sym_cmd_identifier_token8] = ACTIONS(1972), - [aux_sym_cmd_identifier_token9] = ACTIONS(1972), - [aux_sym_cmd_identifier_token10] = ACTIONS(1972), - [aux_sym_cmd_identifier_token11] = ACTIONS(1972), - [aux_sym_cmd_identifier_token12] = ACTIONS(1972), - [aux_sym_cmd_identifier_token13] = ACTIONS(1972), - [aux_sym_cmd_identifier_token14] = ACTIONS(1972), - [aux_sym_cmd_identifier_token15] = ACTIONS(1972), - [aux_sym_cmd_identifier_token16] = ACTIONS(1972), - [aux_sym_cmd_identifier_token17] = ACTIONS(1972), - [aux_sym_cmd_identifier_token18] = ACTIONS(1972), - [aux_sym_cmd_identifier_token19] = ACTIONS(1972), - [aux_sym_cmd_identifier_token20] = ACTIONS(1972), - [aux_sym_cmd_identifier_token21] = ACTIONS(1972), - [aux_sym_cmd_identifier_token22] = ACTIONS(1972), - [aux_sym_cmd_identifier_token23] = ACTIONS(1972), - [aux_sym_cmd_identifier_token24] = ACTIONS(1972), - [aux_sym_cmd_identifier_token25] = ACTIONS(1972), - [aux_sym_cmd_identifier_token26] = ACTIONS(1972), - [aux_sym_cmd_identifier_token27] = ACTIONS(1972), - [aux_sym_cmd_identifier_token28] = ACTIONS(1972), - [aux_sym_cmd_identifier_token29] = ACTIONS(1972), - [aux_sym_cmd_identifier_token30] = ACTIONS(1972), - [aux_sym_cmd_identifier_token31] = ACTIONS(1972), - [aux_sym_cmd_identifier_token32] = ACTIONS(1972), - [aux_sym_cmd_identifier_token33] = ACTIONS(1972), - [aux_sym_cmd_identifier_token34] = ACTIONS(1972), - [aux_sym_cmd_identifier_token35] = ACTIONS(1972), - [aux_sym_cmd_identifier_token36] = ACTIONS(1972), - [anon_sym_true] = ACTIONS(1978), - [anon_sym_false] = ACTIONS(1978), - [anon_sym_null] = ACTIONS(1978), - [aux_sym_cmd_identifier_token38] = ACTIONS(1972), - [aux_sym_cmd_identifier_token39] = ACTIONS(1978), - [aux_sym_cmd_identifier_token40] = ACTIONS(1978), - [anon_sym_def] = ACTIONS(1972), - [anon_sym_export_DASHenv] = ACTIONS(1972), - [anon_sym_extern] = ACTIONS(1972), - [anon_sym_module] = ACTIONS(1972), - [anon_sym_use] = ACTIONS(1972), - [anon_sym_LPAREN] = ACTIONS(1978), - [anon_sym_DOLLAR] = ACTIONS(1978), - [anon_sym_error] = ACTIONS(1972), - [anon_sym_list] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_break] = ACTIONS(1972), - [anon_sym_continue] = ACTIONS(1972), - [anon_sym_for] = ACTIONS(1972), - [anon_sym_in] = ACTIONS(1972), - [anon_sym_loop] = ACTIONS(1972), - [anon_sym_make] = ACTIONS(1972), - [anon_sym_while] = ACTIONS(1972), - [anon_sym_do] = ACTIONS(1972), - [anon_sym_if] = ACTIONS(1972), - [anon_sym_else] = ACTIONS(1972), - [anon_sym_match] = ACTIONS(1972), - [anon_sym_RBRACE] = ACTIONS(1978), - [anon_sym_try] = ACTIONS(1972), - [anon_sym_catch] = ACTIONS(1972), - [anon_sym_return] = ACTIONS(1972), - [anon_sym_source] = ACTIONS(1972), - [anon_sym_source_DASHenv] = ACTIONS(1972), - [anon_sym_register] = ACTIONS(1972), - [anon_sym_hide] = ACTIONS(1972), - [anon_sym_hide_DASHenv] = ACTIONS(1972), - [anon_sym_overlay] = ACTIONS(1972), - [anon_sym_new] = ACTIONS(1972), - [anon_sym_as] = ACTIONS(1972), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1978), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1978), - [aux_sym__val_number_decimal_token1] = ACTIONS(1972), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1978), - [aux_sym__val_number_decimal_token4] = ACTIONS(1978), - [aux_sym__val_number_token1] = ACTIONS(1978), - [aux_sym__val_number_token2] = ACTIONS(1978), - [aux_sym__val_number_token3] = ACTIONS(1978), - [anon_sym_DQUOTE] = ACTIONS(1978), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1978), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_POUND] = ACTIONS(247), - }, - [604] = { - [sym_comment] = STATE(604), - [anon_sym_export] = ACTIONS(1960), - [anon_sym_alias] = ACTIONS(1960), - [anon_sym_let] = ACTIONS(1960), - [anon_sym_let_DASHenv] = ACTIONS(1960), - [anon_sym_mut] = ACTIONS(1960), - [anon_sym_const] = ACTIONS(1960), - [aux_sym_cmd_identifier_token1] = ACTIONS(1960), - [aux_sym_cmd_identifier_token2] = ACTIONS(1960), - [aux_sym_cmd_identifier_token3] = ACTIONS(1960), - [aux_sym_cmd_identifier_token4] = ACTIONS(1960), - [aux_sym_cmd_identifier_token5] = ACTIONS(1960), - [aux_sym_cmd_identifier_token6] = ACTIONS(1960), - [aux_sym_cmd_identifier_token7] = ACTIONS(1960), - [aux_sym_cmd_identifier_token8] = ACTIONS(1960), - [aux_sym_cmd_identifier_token9] = ACTIONS(1960), - [aux_sym_cmd_identifier_token10] = ACTIONS(1960), - [aux_sym_cmd_identifier_token11] = ACTIONS(1960), - [aux_sym_cmd_identifier_token12] = ACTIONS(1960), - [aux_sym_cmd_identifier_token13] = ACTIONS(1960), - [aux_sym_cmd_identifier_token14] = ACTIONS(1960), - [aux_sym_cmd_identifier_token15] = ACTIONS(1960), - [aux_sym_cmd_identifier_token16] = ACTIONS(1960), - [aux_sym_cmd_identifier_token17] = ACTIONS(1960), - [aux_sym_cmd_identifier_token18] = ACTIONS(1960), - [aux_sym_cmd_identifier_token19] = ACTIONS(1960), - [aux_sym_cmd_identifier_token20] = ACTIONS(1960), - [aux_sym_cmd_identifier_token21] = ACTIONS(1960), - [aux_sym_cmd_identifier_token22] = ACTIONS(1960), - [aux_sym_cmd_identifier_token23] = ACTIONS(1960), - [aux_sym_cmd_identifier_token24] = ACTIONS(1960), - [aux_sym_cmd_identifier_token25] = ACTIONS(1960), - [aux_sym_cmd_identifier_token26] = ACTIONS(1960), - [aux_sym_cmd_identifier_token27] = ACTIONS(1960), - [aux_sym_cmd_identifier_token28] = ACTIONS(1960), - [aux_sym_cmd_identifier_token29] = ACTIONS(1960), - [aux_sym_cmd_identifier_token30] = ACTIONS(1960), - [aux_sym_cmd_identifier_token31] = ACTIONS(1960), - [aux_sym_cmd_identifier_token32] = ACTIONS(1960), - [aux_sym_cmd_identifier_token33] = ACTIONS(1960), - [aux_sym_cmd_identifier_token34] = ACTIONS(1960), - [aux_sym_cmd_identifier_token35] = ACTIONS(1960), - [aux_sym_cmd_identifier_token36] = ACTIONS(1960), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1966), - [aux_sym_cmd_identifier_token38] = ACTIONS(1960), - [aux_sym_cmd_identifier_token39] = ACTIONS(1966), - [aux_sym_cmd_identifier_token40] = ACTIONS(1966), - [anon_sym_def] = ACTIONS(1960), - [anon_sym_export_DASHenv] = ACTIONS(1960), - [anon_sym_extern] = ACTIONS(1960), - [anon_sym_module] = ACTIONS(1960), - [anon_sym_use] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1966), - [anon_sym_DOLLAR] = ACTIONS(1966), - [anon_sym_error] = ACTIONS(1960), - [anon_sym_list] = ACTIONS(1960), - [anon_sym_DASH] = ACTIONS(1960), - [anon_sym_break] = ACTIONS(1960), - [anon_sym_continue] = ACTIONS(1960), - [anon_sym_for] = ACTIONS(1960), - [anon_sym_in] = ACTIONS(1960), - [anon_sym_loop] = ACTIONS(1960), - [anon_sym_make] = ACTIONS(1960), - [anon_sym_while] = ACTIONS(1960), - [anon_sym_do] = ACTIONS(1960), - [anon_sym_if] = ACTIONS(1960), - [anon_sym_else] = ACTIONS(1960), - [anon_sym_match] = ACTIONS(1960), - [anon_sym_RBRACE] = ACTIONS(1966), - [anon_sym_try] = ACTIONS(1960), - [anon_sym_catch] = ACTIONS(1960), - [anon_sym_return] = ACTIONS(1960), - [anon_sym_source] = ACTIONS(1960), - [anon_sym_source_DASHenv] = ACTIONS(1960), - [anon_sym_register] = ACTIONS(1960), - [anon_sym_hide] = ACTIONS(1960), - [anon_sym_hide_DASHenv] = ACTIONS(1960), - [anon_sym_overlay] = ACTIONS(1960), - [anon_sym_new] = ACTIONS(1960), - [anon_sym_as] = ACTIONS(1960), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1966), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1966), - [aux_sym__val_number_decimal_token1] = ACTIONS(1960), - [aux_sym__val_number_decimal_token2] = ACTIONS(1966), - [aux_sym__val_number_decimal_token3] = ACTIONS(1966), - [aux_sym__val_number_decimal_token4] = ACTIONS(1966), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [anon_sym_DQUOTE] = ACTIONS(1966), - [sym__str_single_quotes] = ACTIONS(1966), - [sym__str_back_ticks] = ACTIONS(1966), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1966), - [anon_sym_PLUS] = ACTIONS(1960), - [anon_sym_POUND] = ACTIONS(247), - }, - [605] = { - [sym_comment] = STATE(605), - [anon_sym_export] = ACTIONS(2405), - [anon_sym_alias] = ACTIONS(2405), - [anon_sym_let] = ACTIONS(2405), - [anon_sym_let_DASHenv] = ACTIONS(2405), - [anon_sym_mut] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [aux_sym_cmd_identifier_token1] = ACTIONS(2405), - [aux_sym_cmd_identifier_token2] = ACTIONS(2405), - [aux_sym_cmd_identifier_token3] = ACTIONS(2405), - [aux_sym_cmd_identifier_token4] = ACTIONS(2405), - [aux_sym_cmd_identifier_token5] = ACTIONS(2405), - [aux_sym_cmd_identifier_token6] = ACTIONS(2405), - [aux_sym_cmd_identifier_token7] = ACTIONS(2405), - [aux_sym_cmd_identifier_token8] = ACTIONS(2405), - [aux_sym_cmd_identifier_token9] = ACTIONS(2405), - [aux_sym_cmd_identifier_token10] = ACTIONS(2405), - [aux_sym_cmd_identifier_token11] = ACTIONS(2405), - [aux_sym_cmd_identifier_token12] = ACTIONS(2405), - [aux_sym_cmd_identifier_token13] = ACTIONS(2405), - [aux_sym_cmd_identifier_token14] = ACTIONS(2405), - [aux_sym_cmd_identifier_token15] = ACTIONS(2405), - [aux_sym_cmd_identifier_token16] = ACTIONS(2405), - [aux_sym_cmd_identifier_token17] = ACTIONS(2405), - [aux_sym_cmd_identifier_token18] = ACTIONS(2405), - [aux_sym_cmd_identifier_token19] = ACTIONS(2405), - [aux_sym_cmd_identifier_token20] = ACTIONS(2405), - [aux_sym_cmd_identifier_token21] = ACTIONS(2405), - [aux_sym_cmd_identifier_token22] = ACTIONS(2405), - [aux_sym_cmd_identifier_token23] = ACTIONS(2405), - [aux_sym_cmd_identifier_token24] = ACTIONS(2405), - [aux_sym_cmd_identifier_token25] = ACTIONS(2405), - [aux_sym_cmd_identifier_token26] = ACTIONS(2405), - [aux_sym_cmd_identifier_token27] = ACTIONS(2405), - [aux_sym_cmd_identifier_token28] = ACTIONS(2405), - [aux_sym_cmd_identifier_token29] = ACTIONS(2405), - [aux_sym_cmd_identifier_token30] = ACTIONS(2405), - [aux_sym_cmd_identifier_token31] = ACTIONS(2405), - [aux_sym_cmd_identifier_token32] = ACTIONS(2405), - [aux_sym_cmd_identifier_token33] = ACTIONS(2405), - [aux_sym_cmd_identifier_token34] = ACTIONS(2405), - [aux_sym_cmd_identifier_token35] = ACTIONS(2405), - [aux_sym_cmd_identifier_token36] = ACTIONS(2405), - [anon_sym_true] = ACTIONS(2407), - [anon_sym_false] = ACTIONS(2407), - [anon_sym_null] = ACTIONS(2407), - [aux_sym_cmd_identifier_token38] = ACTIONS(2405), - [aux_sym_cmd_identifier_token39] = ACTIONS(2407), - [aux_sym_cmd_identifier_token40] = ACTIONS(2407), - [anon_sym_def] = ACTIONS(2405), - [anon_sym_export_DASHenv] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym_module] = ACTIONS(2405), - [anon_sym_use] = ACTIONS(2405), - [anon_sym_LPAREN] = ACTIONS(2407), - [anon_sym_DOLLAR] = ACTIONS(2407), - [anon_sym_error] = ACTIONS(2405), - [anon_sym_list] = ACTIONS(2405), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_in] = ACTIONS(2405), - [anon_sym_loop] = ACTIONS(2405), - [anon_sym_make] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_match] = ACTIONS(2405), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_catch] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_source] = ACTIONS(2405), - [anon_sym_source_DASHenv] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_hide] = ACTIONS(2405), - [anon_sym_hide_DASHenv] = ACTIONS(2405), - [anon_sym_overlay] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_as] = ACTIONS(2405), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2407), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2407), - [aux_sym__val_number_decimal_token1] = ACTIONS(2405), - [aux_sym__val_number_decimal_token2] = ACTIONS(2407), - [aux_sym__val_number_decimal_token3] = ACTIONS(2407), - [aux_sym__val_number_decimal_token4] = ACTIONS(2407), - [aux_sym__val_number_token1] = ACTIONS(2407), - [aux_sym__val_number_token2] = ACTIONS(2407), - [aux_sym__val_number_token3] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym__str_single_quotes] = ACTIONS(2407), - [sym__str_back_ticks] = ACTIONS(2407), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2407), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_POUND] = ACTIONS(247), - }, - [606] = { - [sym_comment] = STATE(606), - [anon_sym_export] = ACTIONS(2409), - [anon_sym_alias] = ACTIONS(2409), - [anon_sym_let] = ACTIONS(2409), - [anon_sym_let_DASHenv] = ACTIONS(2409), - [anon_sym_mut] = ACTIONS(2409), - [anon_sym_const] = ACTIONS(2409), - [aux_sym_cmd_identifier_token1] = ACTIONS(2409), - [aux_sym_cmd_identifier_token2] = ACTIONS(2409), - [aux_sym_cmd_identifier_token3] = ACTIONS(2409), - [aux_sym_cmd_identifier_token4] = ACTIONS(2409), - [aux_sym_cmd_identifier_token5] = ACTIONS(2409), - [aux_sym_cmd_identifier_token6] = ACTIONS(2409), - [aux_sym_cmd_identifier_token7] = ACTIONS(2409), - [aux_sym_cmd_identifier_token8] = ACTIONS(2409), - [aux_sym_cmd_identifier_token9] = ACTIONS(2409), - [aux_sym_cmd_identifier_token10] = ACTIONS(2409), - [aux_sym_cmd_identifier_token11] = ACTIONS(2409), - [aux_sym_cmd_identifier_token12] = ACTIONS(2409), - [aux_sym_cmd_identifier_token13] = ACTIONS(2409), - [aux_sym_cmd_identifier_token14] = ACTIONS(2409), - [aux_sym_cmd_identifier_token15] = ACTIONS(2409), - [aux_sym_cmd_identifier_token16] = ACTIONS(2409), - [aux_sym_cmd_identifier_token17] = ACTIONS(2409), - [aux_sym_cmd_identifier_token18] = ACTIONS(2409), - [aux_sym_cmd_identifier_token19] = ACTIONS(2409), - [aux_sym_cmd_identifier_token20] = ACTIONS(2409), - [aux_sym_cmd_identifier_token21] = ACTIONS(2409), - [aux_sym_cmd_identifier_token22] = ACTIONS(2409), - [aux_sym_cmd_identifier_token23] = ACTIONS(2409), - [aux_sym_cmd_identifier_token24] = ACTIONS(2409), - [aux_sym_cmd_identifier_token25] = ACTIONS(2409), - [aux_sym_cmd_identifier_token26] = ACTIONS(2409), - [aux_sym_cmd_identifier_token27] = ACTIONS(2409), - [aux_sym_cmd_identifier_token28] = ACTIONS(2409), - [aux_sym_cmd_identifier_token29] = ACTIONS(2409), - [aux_sym_cmd_identifier_token30] = ACTIONS(2409), - [aux_sym_cmd_identifier_token31] = ACTIONS(2409), - [aux_sym_cmd_identifier_token32] = ACTIONS(2409), - [aux_sym_cmd_identifier_token33] = ACTIONS(2409), - [aux_sym_cmd_identifier_token34] = ACTIONS(2409), - [aux_sym_cmd_identifier_token35] = ACTIONS(2409), - [aux_sym_cmd_identifier_token36] = ACTIONS(2409), - [anon_sym_true] = ACTIONS(2411), - [anon_sym_false] = ACTIONS(2411), - [anon_sym_null] = ACTIONS(2411), - [aux_sym_cmd_identifier_token38] = ACTIONS(2409), - [aux_sym_cmd_identifier_token39] = ACTIONS(2411), - [aux_sym_cmd_identifier_token40] = ACTIONS(2411), - [anon_sym_def] = ACTIONS(2409), - [anon_sym_export_DASHenv] = ACTIONS(2409), - [anon_sym_extern] = ACTIONS(2409), - [anon_sym_module] = ACTIONS(2409), - [anon_sym_use] = ACTIONS(2409), - [anon_sym_LPAREN] = ACTIONS(2411), - [anon_sym_DOLLAR] = ACTIONS(2411), - [anon_sym_error] = ACTIONS(2409), - [anon_sym_list] = ACTIONS(2409), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_break] = ACTIONS(2409), - [anon_sym_continue] = ACTIONS(2409), - [anon_sym_for] = ACTIONS(2409), - [anon_sym_in] = ACTIONS(2409), - [anon_sym_loop] = ACTIONS(2409), - [anon_sym_make] = ACTIONS(2409), - [anon_sym_while] = ACTIONS(2409), - [anon_sym_do] = ACTIONS(2409), - [anon_sym_if] = ACTIONS(2409), - [anon_sym_else] = ACTIONS(2409), - [anon_sym_match] = ACTIONS(2409), - [anon_sym_RBRACE] = ACTIONS(2411), - [anon_sym_try] = ACTIONS(2409), - [anon_sym_catch] = ACTIONS(2409), - [anon_sym_return] = ACTIONS(2409), - [anon_sym_source] = ACTIONS(2409), - [anon_sym_source_DASHenv] = ACTIONS(2409), - [anon_sym_register] = ACTIONS(2409), - [anon_sym_hide] = ACTIONS(2409), - [anon_sym_hide_DASHenv] = ACTIONS(2409), - [anon_sym_overlay] = ACTIONS(2409), - [anon_sym_new] = ACTIONS(2409), - [anon_sym_as] = ACTIONS(2409), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2411), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2411), - [aux_sym__val_number_decimal_token1] = ACTIONS(2409), - [aux_sym__val_number_decimal_token2] = ACTIONS(2411), - [aux_sym__val_number_decimal_token3] = ACTIONS(2411), - [aux_sym__val_number_decimal_token4] = ACTIONS(2411), - [aux_sym__val_number_token1] = ACTIONS(2411), - [aux_sym__val_number_token2] = ACTIONS(2411), - [aux_sym__val_number_token3] = ACTIONS(2411), - [anon_sym_DQUOTE] = ACTIONS(2411), - [sym__str_single_quotes] = ACTIONS(2411), - [sym__str_back_ticks] = ACTIONS(2411), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2411), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_POUND] = ACTIONS(247), - }, - [607] = { - [sym_comment] = STATE(607), - [anon_sym_export] = ACTIONS(1778), - [anon_sym_alias] = ACTIONS(1778), - [anon_sym_let] = ACTIONS(1778), - [anon_sym_let_DASHenv] = ACTIONS(1778), - [anon_sym_mut] = ACTIONS(1778), - [anon_sym_const] = ACTIONS(1778), - [aux_sym_cmd_identifier_token1] = ACTIONS(1778), - [aux_sym_cmd_identifier_token2] = ACTIONS(1778), - [aux_sym_cmd_identifier_token3] = ACTIONS(1778), - [aux_sym_cmd_identifier_token4] = ACTIONS(1778), - [aux_sym_cmd_identifier_token5] = ACTIONS(1778), - [aux_sym_cmd_identifier_token6] = ACTIONS(1778), - [aux_sym_cmd_identifier_token7] = ACTIONS(1778), - [aux_sym_cmd_identifier_token8] = ACTIONS(1778), - [aux_sym_cmd_identifier_token9] = ACTIONS(1778), - [aux_sym_cmd_identifier_token10] = ACTIONS(1778), - [aux_sym_cmd_identifier_token11] = ACTIONS(1778), - [aux_sym_cmd_identifier_token12] = ACTIONS(1778), - [aux_sym_cmd_identifier_token13] = ACTIONS(1778), - [aux_sym_cmd_identifier_token14] = ACTIONS(1778), - [aux_sym_cmd_identifier_token15] = ACTIONS(1778), - [aux_sym_cmd_identifier_token16] = ACTIONS(1778), - [aux_sym_cmd_identifier_token17] = ACTIONS(1778), - [aux_sym_cmd_identifier_token18] = ACTIONS(1778), - [aux_sym_cmd_identifier_token19] = ACTIONS(1778), - [aux_sym_cmd_identifier_token20] = ACTIONS(1778), - [aux_sym_cmd_identifier_token21] = ACTIONS(1778), - [aux_sym_cmd_identifier_token22] = ACTIONS(1778), - [aux_sym_cmd_identifier_token23] = ACTIONS(1778), - [aux_sym_cmd_identifier_token24] = ACTIONS(1778), - [aux_sym_cmd_identifier_token25] = ACTIONS(1778), - [aux_sym_cmd_identifier_token26] = ACTIONS(1778), - [aux_sym_cmd_identifier_token27] = ACTIONS(1778), - [aux_sym_cmd_identifier_token28] = ACTIONS(1778), - [aux_sym_cmd_identifier_token29] = ACTIONS(1778), - [aux_sym_cmd_identifier_token30] = ACTIONS(1778), - [aux_sym_cmd_identifier_token31] = ACTIONS(1778), - [aux_sym_cmd_identifier_token32] = ACTIONS(1778), - [aux_sym_cmd_identifier_token33] = ACTIONS(1778), - [aux_sym_cmd_identifier_token34] = ACTIONS(1778), - [aux_sym_cmd_identifier_token35] = ACTIONS(1778), - [aux_sym_cmd_identifier_token36] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_null] = ACTIONS(1780), - [aux_sym_cmd_identifier_token38] = ACTIONS(1778), - [aux_sym_cmd_identifier_token39] = ACTIONS(1780), - [aux_sym_cmd_identifier_token40] = ACTIONS(1780), - [anon_sym_def] = ACTIONS(1778), - [anon_sym_export_DASHenv] = ACTIONS(1778), - [anon_sym_extern] = ACTIONS(1778), - [anon_sym_module] = ACTIONS(1778), - [anon_sym_use] = ACTIONS(1778), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_DOLLAR] = ACTIONS(1780), - [anon_sym_error] = ACTIONS(1778), - [anon_sym_list] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_break] = ACTIONS(1778), - [anon_sym_continue] = ACTIONS(1778), - [anon_sym_for] = ACTIONS(1778), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_loop] = ACTIONS(1778), - [anon_sym_make] = ACTIONS(1778), - [anon_sym_while] = ACTIONS(1778), - [anon_sym_do] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_match] = ACTIONS(1778), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1778), - [anon_sym_catch] = ACTIONS(1778), - [anon_sym_return] = ACTIONS(1778), - [anon_sym_source] = ACTIONS(1778), - [anon_sym_source_DASHenv] = ACTIONS(1778), - [anon_sym_register] = ACTIONS(1778), - [anon_sym_hide] = ACTIONS(1778), - [anon_sym_hide_DASHenv] = ACTIONS(1778), - [anon_sym_overlay] = ACTIONS(1778), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_as] = ACTIONS(1778), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1780), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1780), - [aux_sym__val_number_decimal_token1] = ACTIONS(1778), - [aux_sym__val_number_decimal_token2] = ACTIONS(1780), - [aux_sym__val_number_decimal_token3] = ACTIONS(1780), - [aux_sym__val_number_decimal_token4] = ACTIONS(1780), - [aux_sym__val_number_token1] = ACTIONS(1780), - [aux_sym__val_number_token2] = ACTIONS(1780), - [aux_sym__val_number_token3] = ACTIONS(1780), - [anon_sym_DQUOTE] = ACTIONS(1780), - [sym__str_single_quotes] = ACTIONS(1780), - [sym__str_back_ticks] = ACTIONS(1780), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_POUND] = ACTIONS(247), - }, - [608] = { - [sym_comment] = STATE(608), - [anon_sym_export] = ACTIONS(2315), - [anon_sym_alias] = ACTIONS(2315), - [anon_sym_let] = ACTIONS(2315), - [anon_sym_let_DASHenv] = ACTIONS(2315), - [anon_sym_mut] = ACTIONS(2315), - [anon_sym_const] = ACTIONS(2315), - [aux_sym_cmd_identifier_token1] = ACTIONS(2315), - [aux_sym_cmd_identifier_token2] = ACTIONS(2315), - [aux_sym_cmd_identifier_token3] = ACTIONS(2315), - [aux_sym_cmd_identifier_token4] = ACTIONS(2315), - [aux_sym_cmd_identifier_token5] = ACTIONS(2315), - [aux_sym_cmd_identifier_token6] = ACTIONS(2315), - [aux_sym_cmd_identifier_token7] = ACTIONS(2315), - [aux_sym_cmd_identifier_token8] = ACTIONS(2315), - [aux_sym_cmd_identifier_token9] = ACTIONS(2315), - [aux_sym_cmd_identifier_token10] = ACTIONS(2315), - [aux_sym_cmd_identifier_token11] = ACTIONS(2315), - [aux_sym_cmd_identifier_token12] = ACTIONS(2315), - [aux_sym_cmd_identifier_token13] = ACTIONS(2315), - [aux_sym_cmd_identifier_token14] = ACTIONS(2315), - [aux_sym_cmd_identifier_token15] = ACTIONS(2315), - [aux_sym_cmd_identifier_token16] = ACTIONS(2315), - [aux_sym_cmd_identifier_token17] = ACTIONS(2315), - [aux_sym_cmd_identifier_token18] = ACTIONS(2315), - [aux_sym_cmd_identifier_token19] = ACTIONS(2315), - [aux_sym_cmd_identifier_token20] = ACTIONS(2315), - [aux_sym_cmd_identifier_token21] = ACTIONS(2315), - [aux_sym_cmd_identifier_token22] = ACTIONS(2315), - [aux_sym_cmd_identifier_token23] = ACTIONS(2315), - [aux_sym_cmd_identifier_token24] = ACTIONS(2315), - [aux_sym_cmd_identifier_token25] = ACTIONS(2315), - [aux_sym_cmd_identifier_token26] = ACTIONS(2315), - [aux_sym_cmd_identifier_token27] = ACTIONS(2315), - [aux_sym_cmd_identifier_token28] = ACTIONS(2315), - [aux_sym_cmd_identifier_token29] = ACTIONS(2315), - [aux_sym_cmd_identifier_token30] = ACTIONS(2315), - [aux_sym_cmd_identifier_token31] = ACTIONS(2315), - [aux_sym_cmd_identifier_token32] = ACTIONS(2315), - [aux_sym_cmd_identifier_token33] = ACTIONS(2315), - [aux_sym_cmd_identifier_token34] = ACTIONS(2315), - [aux_sym_cmd_identifier_token35] = ACTIONS(2315), - [aux_sym_cmd_identifier_token36] = ACTIONS(2315), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2317), - [aux_sym_cmd_identifier_token38] = ACTIONS(2315), - [aux_sym_cmd_identifier_token39] = ACTIONS(2317), - [aux_sym_cmd_identifier_token40] = ACTIONS(2317), - [anon_sym_def] = ACTIONS(2315), - [anon_sym_export_DASHenv] = ACTIONS(2315), - [anon_sym_extern] = ACTIONS(2315), - [anon_sym_module] = ACTIONS(2315), - [anon_sym_use] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2317), - [anon_sym_DOLLAR] = ACTIONS(2317), - [anon_sym_error] = ACTIONS(2315), - [anon_sym_list] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2315), - [anon_sym_break] = ACTIONS(2315), - [anon_sym_continue] = ACTIONS(2315), - [anon_sym_for] = ACTIONS(2315), - [anon_sym_in] = ACTIONS(2315), - [anon_sym_loop] = ACTIONS(2315), - [anon_sym_make] = ACTIONS(2315), - [anon_sym_while] = ACTIONS(2315), - [anon_sym_do] = ACTIONS(2315), - [anon_sym_if] = ACTIONS(2315), - [anon_sym_else] = ACTIONS(2315), - [anon_sym_match] = ACTIONS(2315), - [anon_sym_RBRACE] = ACTIONS(2317), - [anon_sym_try] = ACTIONS(2315), - [anon_sym_catch] = ACTIONS(2315), - [anon_sym_return] = ACTIONS(2315), - [anon_sym_source] = ACTIONS(2315), - [anon_sym_source_DASHenv] = ACTIONS(2315), - [anon_sym_register] = ACTIONS(2315), - [anon_sym_hide] = ACTIONS(2315), - [anon_sym_hide_DASHenv] = ACTIONS(2315), - [anon_sym_overlay] = ACTIONS(2315), - [anon_sym_new] = ACTIONS(2315), - [anon_sym_as] = ACTIONS(2315), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2317), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2317), - [aux_sym__val_number_decimal_token1] = ACTIONS(2315), - [aux_sym__val_number_decimal_token2] = ACTIONS(2317), - [aux_sym__val_number_decimal_token3] = ACTIONS(2317), - [aux_sym__val_number_decimal_token4] = ACTIONS(2317), - [aux_sym__val_number_token1] = ACTIONS(2317), - [aux_sym__val_number_token2] = ACTIONS(2317), - [aux_sym__val_number_token3] = ACTIONS(2317), - [anon_sym_DQUOTE] = ACTIONS(2317), - [sym__str_single_quotes] = ACTIONS(2317), - [sym__str_back_ticks] = ACTIONS(2317), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2317), - [anon_sym_PLUS] = ACTIONS(2315), - [anon_sym_POUND] = ACTIONS(247), - }, - [609] = { - [sym_comment] = STATE(609), - [anon_sym_export] = ACTIONS(2336), - [anon_sym_alias] = ACTIONS(2336), - [anon_sym_let] = ACTIONS(2336), - [anon_sym_let_DASHenv] = ACTIONS(2336), - [anon_sym_mut] = ACTIONS(2336), - [anon_sym_const] = ACTIONS(2336), - [aux_sym_cmd_identifier_token1] = ACTIONS(2336), - [aux_sym_cmd_identifier_token2] = ACTIONS(2336), - [aux_sym_cmd_identifier_token3] = ACTIONS(2336), - [aux_sym_cmd_identifier_token4] = ACTIONS(2336), - [aux_sym_cmd_identifier_token5] = ACTIONS(2336), - [aux_sym_cmd_identifier_token6] = ACTIONS(2336), - [aux_sym_cmd_identifier_token7] = ACTIONS(2336), - [aux_sym_cmd_identifier_token8] = ACTIONS(2336), - [aux_sym_cmd_identifier_token9] = ACTIONS(2336), - [aux_sym_cmd_identifier_token10] = ACTIONS(2336), - [aux_sym_cmd_identifier_token11] = ACTIONS(2336), - [aux_sym_cmd_identifier_token12] = ACTIONS(2336), - [aux_sym_cmd_identifier_token13] = ACTIONS(2336), - [aux_sym_cmd_identifier_token14] = ACTIONS(2336), - [aux_sym_cmd_identifier_token15] = ACTIONS(2336), - [aux_sym_cmd_identifier_token16] = ACTIONS(2336), - [aux_sym_cmd_identifier_token17] = ACTIONS(2336), - [aux_sym_cmd_identifier_token18] = ACTIONS(2336), - [aux_sym_cmd_identifier_token19] = ACTIONS(2336), - [aux_sym_cmd_identifier_token20] = ACTIONS(2336), - [aux_sym_cmd_identifier_token21] = ACTIONS(2336), - [aux_sym_cmd_identifier_token22] = ACTIONS(2336), - [aux_sym_cmd_identifier_token23] = ACTIONS(2336), - [aux_sym_cmd_identifier_token24] = ACTIONS(2336), - [aux_sym_cmd_identifier_token25] = ACTIONS(2336), - [aux_sym_cmd_identifier_token26] = ACTIONS(2336), - [aux_sym_cmd_identifier_token27] = ACTIONS(2336), - [aux_sym_cmd_identifier_token28] = ACTIONS(2336), - [aux_sym_cmd_identifier_token29] = ACTIONS(2336), - [aux_sym_cmd_identifier_token30] = ACTIONS(2336), - [aux_sym_cmd_identifier_token31] = ACTIONS(2336), - [aux_sym_cmd_identifier_token32] = ACTIONS(2336), - [aux_sym_cmd_identifier_token33] = ACTIONS(2336), - [aux_sym_cmd_identifier_token34] = ACTIONS(2336), - [aux_sym_cmd_identifier_token35] = ACTIONS(2336), - [aux_sym_cmd_identifier_token36] = ACTIONS(2336), - [anon_sym_true] = ACTIONS(2338), - [anon_sym_false] = ACTIONS(2338), - [anon_sym_null] = ACTIONS(2338), - [aux_sym_cmd_identifier_token38] = ACTIONS(2336), - [aux_sym_cmd_identifier_token39] = ACTIONS(2338), - [aux_sym_cmd_identifier_token40] = ACTIONS(2338), - [anon_sym_def] = ACTIONS(2336), - [anon_sym_export_DASHenv] = ACTIONS(2336), - [anon_sym_extern] = ACTIONS(2336), - [anon_sym_module] = ACTIONS(2336), - [anon_sym_use] = ACTIONS(2336), - [anon_sym_LPAREN] = ACTIONS(2338), - [anon_sym_DOLLAR] = ACTIONS(2338), - [anon_sym_error] = ACTIONS(2336), - [anon_sym_list] = ACTIONS(2336), - [anon_sym_DASH] = ACTIONS(2336), - [anon_sym_break] = ACTIONS(2336), - [anon_sym_continue] = ACTIONS(2336), - [anon_sym_for] = ACTIONS(2336), - [anon_sym_in] = ACTIONS(2336), - [anon_sym_loop] = ACTIONS(2336), - [anon_sym_make] = ACTIONS(2336), - [anon_sym_while] = ACTIONS(2336), - [anon_sym_do] = ACTIONS(2336), - [anon_sym_if] = ACTIONS(2336), - [anon_sym_else] = ACTIONS(2336), - [anon_sym_match] = ACTIONS(2336), - [anon_sym_RBRACE] = ACTIONS(2338), - [anon_sym_try] = ACTIONS(2336), - [anon_sym_catch] = ACTIONS(2336), - [anon_sym_return] = ACTIONS(2336), - [anon_sym_source] = ACTIONS(2336), - [anon_sym_source_DASHenv] = ACTIONS(2336), - [anon_sym_register] = ACTIONS(2336), - [anon_sym_hide] = ACTIONS(2336), - [anon_sym_hide_DASHenv] = ACTIONS(2336), - [anon_sym_overlay] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2336), - [anon_sym_as] = ACTIONS(2336), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2338), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2338), - [aux_sym__val_number_decimal_token1] = ACTIONS(2336), - [aux_sym__val_number_decimal_token2] = ACTIONS(2338), - [aux_sym__val_number_decimal_token3] = ACTIONS(2338), - [aux_sym__val_number_decimal_token4] = ACTIONS(2338), - [aux_sym__val_number_token1] = ACTIONS(2338), - [aux_sym__val_number_token2] = ACTIONS(2338), - [aux_sym__val_number_token3] = ACTIONS(2338), - [anon_sym_DQUOTE] = ACTIONS(2338), - [sym__str_single_quotes] = ACTIONS(2338), - [sym__str_back_ticks] = ACTIONS(2338), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2338), - [anon_sym_PLUS] = ACTIONS(2336), - [anon_sym_POUND] = ACTIONS(247), - }, - [610] = { - [sym_comment] = STATE(610), - [anon_sym_export] = ACTIONS(2413), - [anon_sym_alias] = ACTIONS(2413), - [anon_sym_let] = ACTIONS(2413), - [anon_sym_let_DASHenv] = ACTIONS(2413), - [anon_sym_mut] = ACTIONS(2413), - [anon_sym_const] = ACTIONS(2413), - [aux_sym_cmd_identifier_token1] = ACTIONS(2413), - [aux_sym_cmd_identifier_token2] = ACTIONS(2413), - [aux_sym_cmd_identifier_token3] = ACTIONS(2413), - [aux_sym_cmd_identifier_token4] = ACTIONS(2413), - [aux_sym_cmd_identifier_token5] = ACTIONS(2413), - [aux_sym_cmd_identifier_token6] = ACTIONS(2413), - [aux_sym_cmd_identifier_token7] = ACTIONS(2413), - [aux_sym_cmd_identifier_token8] = ACTIONS(2413), - [aux_sym_cmd_identifier_token9] = ACTIONS(2413), - [aux_sym_cmd_identifier_token10] = ACTIONS(2413), - [aux_sym_cmd_identifier_token11] = ACTIONS(2413), - [aux_sym_cmd_identifier_token12] = ACTIONS(2413), - [aux_sym_cmd_identifier_token13] = ACTIONS(2413), - [aux_sym_cmd_identifier_token14] = ACTIONS(2413), - [aux_sym_cmd_identifier_token15] = ACTIONS(2413), - [aux_sym_cmd_identifier_token16] = ACTIONS(2413), - [aux_sym_cmd_identifier_token17] = ACTIONS(2413), - [aux_sym_cmd_identifier_token18] = ACTIONS(2413), - [aux_sym_cmd_identifier_token19] = ACTIONS(2413), - [aux_sym_cmd_identifier_token20] = ACTIONS(2413), - [aux_sym_cmd_identifier_token21] = ACTIONS(2413), - [aux_sym_cmd_identifier_token22] = ACTIONS(2413), - [aux_sym_cmd_identifier_token23] = ACTIONS(2413), - [aux_sym_cmd_identifier_token24] = ACTIONS(2413), - [aux_sym_cmd_identifier_token25] = ACTIONS(2413), - [aux_sym_cmd_identifier_token26] = ACTIONS(2413), - [aux_sym_cmd_identifier_token27] = ACTIONS(2413), - [aux_sym_cmd_identifier_token28] = ACTIONS(2413), - [aux_sym_cmd_identifier_token29] = ACTIONS(2413), - [aux_sym_cmd_identifier_token30] = ACTIONS(2413), - [aux_sym_cmd_identifier_token31] = ACTIONS(2413), - [aux_sym_cmd_identifier_token32] = ACTIONS(2413), - [aux_sym_cmd_identifier_token33] = ACTIONS(2413), - [aux_sym_cmd_identifier_token34] = ACTIONS(2413), - [aux_sym_cmd_identifier_token35] = ACTIONS(2413), - [aux_sym_cmd_identifier_token36] = ACTIONS(2413), - [anon_sym_true] = ACTIONS(2415), - [anon_sym_false] = ACTIONS(2415), - [anon_sym_null] = ACTIONS(2415), - [aux_sym_cmd_identifier_token38] = ACTIONS(2413), - [aux_sym_cmd_identifier_token39] = ACTIONS(2415), - [aux_sym_cmd_identifier_token40] = ACTIONS(2415), - [anon_sym_def] = ACTIONS(2413), - [anon_sym_export_DASHenv] = ACTIONS(2413), - [anon_sym_extern] = ACTIONS(2413), - [anon_sym_module] = ACTIONS(2413), - [anon_sym_use] = ACTIONS(2413), - [anon_sym_LPAREN] = ACTIONS(2415), - [anon_sym_DOLLAR] = ACTIONS(2415), - [anon_sym_error] = ACTIONS(2413), - [anon_sym_list] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2413), - [anon_sym_break] = ACTIONS(2413), - [anon_sym_continue] = ACTIONS(2413), - [anon_sym_for] = ACTIONS(2413), - [anon_sym_in] = ACTIONS(2413), - [anon_sym_loop] = ACTIONS(2413), - [anon_sym_make] = ACTIONS(2413), - [anon_sym_while] = ACTIONS(2413), - [anon_sym_do] = ACTIONS(2413), - [anon_sym_if] = ACTIONS(2413), - [anon_sym_else] = ACTIONS(2413), - [anon_sym_match] = ACTIONS(2413), - [anon_sym_RBRACE] = ACTIONS(2415), - [anon_sym_try] = ACTIONS(2413), - [anon_sym_catch] = ACTIONS(2413), - [anon_sym_return] = ACTIONS(2413), - [anon_sym_source] = ACTIONS(2413), - [anon_sym_source_DASHenv] = ACTIONS(2413), - [anon_sym_register] = ACTIONS(2413), - [anon_sym_hide] = ACTIONS(2413), - [anon_sym_hide_DASHenv] = ACTIONS(2413), - [anon_sym_overlay] = ACTIONS(2413), - [anon_sym_new] = ACTIONS(2413), - [anon_sym_as] = ACTIONS(2413), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2415), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2415), - [aux_sym__val_number_decimal_token1] = ACTIONS(2413), - [aux_sym__val_number_decimal_token2] = ACTIONS(2415), - [aux_sym__val_number_decimal_token3] = ACTIONS(2415), - [aux_sym__val_number_decimal_token4] = ACTIONS(2415), - [aux_sym__val_number_token1] = ACTIONS(2415), - [aux_sym__val_number_token2] = ACTIONS(2415), - [aux_sym__val_number_token3] = ACTIONS(2415), - [anon_sym_DQUOTE] = ACTIONS(2415), - [sym__str_single_quotes] = ACTIONS(2415), - [sym__str_back_ticks] = ACTIONS(2415), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2413), - [anon_sym_POUND] = ACTIONS(247), - }, - [611] = { - [sym_comment] = STATE(611), - [anon_sym_export] = ACTIONS(2389), - [anon_sym_alias] = ACTIONS(2389), - [anon_sym_let] = ACTIONS(2389), - [anon_sym_let_DASHenv] = ACTIONS(2389), - [anon_sym_mut] = ACTIONS(2389), - [anon_sym_const] = ACTIONS(2389), - [aux_sym_cmd_identifier_token1] = ACTIONS(2389), - [aux_sym_cmd_identifier_token2] = ACTIONS(2389), - [aux_sym_cmd_identifier_token3] = ACTIONS(2389), - [aux_sym_cmd_identifier_token4] = ACTIONS(2389), - [aux_sym_cmd_identifier_token5] = ACTIONS(2389), - [aux_sym_cmd_identifier_token6] = ACTIONS(2389), - [aux_sym_cmd_identifier_token7] = ACTIONS(2389), - [aux_sym_cmd_identifier_token8] = ACTIONS(2389), - [aux_sym_cmd_identifier_token9] = ACTIONS(2389), - [aux_sym_cmd_identifier_token10] = ACTIONS(2389), - [aux_sym_cmd_identifier_token11] = ACTIONS(2389), - [aux_sym_cmd_identifier_token12] = ACTIONS(2389), - [aux_sym_cmd_identifier_token13] = ACTIONS(2389), - [aux_sym_cmd_identifier_token14] = ACTIONS(2389), - [aux_sym_cmd_identifier_token15] = ACTIONS(2389), - [aux_sym_cmd_identifier_token16] = ACTIONS(2389), - [aux_sym_cmd_identifier_token17] = ACTIONS(2389), - [aux_sym_cmd_identifier_token18] = ACTIONS(2389), - [aux_sym_cmd_identifier_token19] = ACTIONS(2389), - [aux_sym_cmd_identifier_token20] = ACTIONS(2389), - [aux_sym_cmd_identifier_token21] = ACTIONS(2389), - [aux_sym_cmd_identifier_token22] = ACTIONS(2389), - [aux_sym_cmd_identifier_token23] = ACTIONS(2389), - [aux_sym_cmd_identifier_token24] = ACTIONS(2389), - [aux_sym_cmd_identifier_token25] = ACTIONS(2389), - [aux_sym_cmd_identifier_token26] = ACTIONS(2389), - [aux_sym_cmd_identifier_token27] = ACTIONS(2389), - [aux_sym_cmd_identifier_token28] = ACTIONS(2389), - [aux_sym_cmd_identifier_token29] = ACTIONS(2389), - [aux_sym_cmd_identifier_token30] = ACTIONS(2389), - [aux_sym_cmd_identifier_token31] = ACTIONS(2389), - [aux_sym_cmd_identifier_token32] = ACTIONS(2389), - [aux_sym_cmd_identifier_token33] = ACTIONS(2389), - [aux_sym_cmd_identifier_token34] = ACTIONS(2389), - [aux_sym_cmd_identifier_token35] = ACTIONS(2389), - [aux_sym_cmd_identifier_token36] = ACTIONS(2389), - [anon_sym_true] = ACTIONS(2391), - [anon_sym_false] = ACTIONS(2391), - [anon_sym_null] = ACTIONS(2391), - [aux_sym_cmd_identifier_token38] = ACTIONS(2389), - [aux_sym_cmd_identifier_token39] = ACTIONS(2391), - [aux_sym_cmd_identifier_token40] = ACTIONS(2391), - [anon_sym_def] = ACTIONS(2389), - [anon_sym_export_DASHenv] = ACTIONS(2389), - [anon_sym_extern] = ACTIONS(2389), - [anon_sym_module] = ACTIONS(2389), - [anon_sym_use] = ACTIONS(2389), - [anon_sym_LPAREN] = ACTIONS(2391), - [anon_sym_DOLLAR] = ACTIONS(2391), - [anon_sym_error] = ACTIONS(2389), - [anon_sym_list] = ACTIONS(2389), - [anon_sym_DASH] = ACTIONS(2389), - [anon_sym_break] = ACTIONS(2389), - [anon_sym_continue] = ACTIONS(2389), - [anon_sym_for] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(2389), - [anon_sym_loop] = ACTIONS(2389), - [anon_sym_make] = ACTIONS(2389), - [anon_sym_while] = ACTIONS(2389), - [anon_sym_do] = ACTIONS(2389), - [anon_sym_if] = ACTIONS(2389), - [anon_sym_else] = ACTIONS(2389), - [anon_sym_match] = ACTIONS(2389), - [anon_sym_RBRACE] = ACTIONS(2391), - [anon_sym_try] = ACTIONS(2389), - [anon_sym_catch] = ACTIONS(2389), - [anon_sym_return] = ACTIONS(2389), - [anon_sym_source] = ACTIONS(2389), - [anon_sym_source_DASHenv] = ACTIONS(2389), - [anon_sym_register] = ACTIONS(2389), - [anon_sym_hide] = ACTIONS(2389), - [anon_sym_hide_DASHenv] = ACTIONS(2389), - [anon_sym_overlay] = ACTIONS(2389), - [anon_sym_new] = ACTIONS(2389), - [anon_sym_as] = ACTIONS(2389), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2391), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2391), - [aux_sym__val_number_decimal_token1] = ACTIONS(2389), - [aux_sym__val_number_decimal_token2] = ACTIONS(2391), - [aux_sym__val_number_decimal_token3] = ACTIONS(2391), - [aux_sym__val_number_decimal_token4] = ACTIONS(2391), - [aux_sym__val_number_token1] = ACTIONS(2391), - [aux_sym__val_number_token2] = ACTIONS(2391), - [aux_sym__val_number_token3] = ACTIONS(2391), - [anon_sym_DQUOTE] = ACTIONS(2391), - [sym__str_single_quotes] = ACTIONS(2391), - [sym__str_back_ticks] = ACTIONS(2391), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(2389), - [anon_sym_POUND] = ACTIONS(247), - }, [612] = { [sym_comment] = STATE(612), - [anon_sym_export] = ACTIONS(2255), - [anon_sym_alias] = ACTIONS(2255), - [anon_sym_let] = ACTIONS(2255), - [anon_sym_let_DASHenv] = ACTIONS(2255), - [anon_sym_mut] = ACTIONS(2255), - [anon_sym_const] = ACTIONS(2255), - [aux_sym_cmd_identifier_token1] = ACTIONS(2255), - [aux_sym_cmd_identifier_token2] = ACTIONS(2255), - [aux_sym_cmd_identifier_token3] = ACTIONS(2255), - [aux_sym_cmd_identifier_token4] = ACTIONS(2255), - [aux_sym_cmd_identifier_token5] = ACTIONS(2255), - [aux_sym_cmd_identifier_token6] = ACTIONS(2255), - [aux_sym_cmd_identifier_token7] = ACTIONS(2255), - [aux_sym_cmd_identifier_token8] = ACTIONS(2255), - [aux_sym_cmd_identifier_token9] = ACTIONS(2255), - [aux_sym_cmd_identifier_token10] = ACTIONS(2255), - [aux_sym_cmd_identifier_token11] = ACTIONS(2255), - [aux_sym_cmd_identifier_token12] = ACTIONS(2255), - [aux_sym_cmd_identifier_token13] = ACTIONS(2255), - [aux_sym_cmd_identifier_token14] = ACTIONS(2255), - [aux_sym_cmd_identifier_token15] = ACTIONS(2255), - [aux_sym_cmd_identifier_token16] = ACTIONS(2255), - [aux_sym_cmd_identifier_token17] = ACTIONS(2255), - [aux_sym_cmd_identifier_token18] = ACTIONS(2255), - [aux_sym_cmd_identifier_token19] = ACTIONS(2255), - [aux_sym_cmd_identifier_token20] = ACTIONS(2255), - [aux_sym_cmd_identifier_token21] = ACTIONS(2255), - [aux_sym_cmd_identifier_token22] = ACTIONS(2255), - [aux_sym_cmd_identifier_token23] = ACTIONS(2255), - [aux_sym_cmd_identifier_token24] = ACTIONS(2255), - [aux_sym_cmd_identifier_token25] = ACTIONS(2255), - [aux_sym_cmd_identifier_token26] = ACTIONS(2255), - [aux_sym_cmd_identifier_token27] = ACTIONS(2255), - [aux_sym_cmd_identifier_token28] = ACTIONS(2255), - [aux_sym_cmd_identifier_token29] = ACTIONS(2255), - [aux_sym_cmd_identifier_token30] = ACTIONS(2255), - [aux_sym_cmd_identifier_token31] = ACTIONS(2255), - [aux_sym_cmd_identifier_token32] = ACTIONS(2255), - [aux_sym_cmd_identifier_token33] = ACTIONS(2255), - [aux_sym_cmd_identifier_token34] = ACTIONS(2255), - [aux_sym_cmd_identifier_token35] = ACTIONS(2255), - [aux_sym_cmd_identifier_token36] = ACTIONS(2255), - [anon_sym_true] = ACTIONS(2257), - [anon_sym_false] = ACTIONS(2257), - [anon_sym_null] = ACTIONS(2257), - [aux_sym_cmd_identifier_token38] = ACTIONS(2255), - [aux_sym_cmd_identifier_token39] = ACTIONS(2257), - [aux_sym_cmd_identifier_token40] = ACTIONS(2257), - [anon_sym_def] = ACTIONS(2255), - [anon_sym_export_DASHenv] = ACTIONS(2255), - [anon_sym_extern] = ACTIONS(2255), - [anon_sym_module] = ACTIONS(2255), - [anon_sym_use] = ACTIONS(2255), - [anon_sym_LPAREN] = ACTIONS(2257), - [anon_sym_DOLLAR] = ACTIONS(2257), - [anon_sym_error] = ACTIONS(2255), - [anon_sym_list] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_break] = ACTIONS(2255), - [anon_sym_continue] = ACTIONS(2255), - [anon_sym_for] = ACTIONS(2255), - [anon_sym_in] = ACTIONS(2255), - [anon_sym_loop] = ACTIONS(2255), - [anon_sym_make] = ACTIONS(2255), - [anon_sym_while] = ACTIONS(2255), - [anon_sym_do] = ACTIONS(2255), - [anon_sym_if] = ACTIONS(2255), - [anon_sym_else] = ACTIONS(2255), - [anon_sym_match] = ACTIONS(2255), - [anon_sym_RBRACE] = ACTIONS(2257), - [anon_sym_try] = ACTIONS(2255), - [anon_sym_catch] = ACTIONS(2255), - [anon_sym_return] = ACTIONS(2255), - [anon_sym_source] = ACTIONS(2255), - [anon_sym_source_DASHenv] = ACTIONS(2255), - [anon_sym_register] = ACTIONS(2255), - [anon_sym_hide] = ACTIONS(2255), - [anon_sym_hide_DASHenv] = ACTIONS(2255), - [anon_sym_overlay] = ACTIONS(2255), - [anon_sym_new] = ACTIONS(2255), - [anon_sym_as] = ACTIONS(2255), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2257), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2257), - [aux_sym__val_number_decimal_token1] = ACTIONS(2255), - [aux_sym__val_number_decimal_token2] = ACTIONS(2257), - [aux_sym__val_number_decimal_token3] = ACTIONS(2257), - [aux_sym__val_number_decimal_token4] = ACTIONS(2257), - [aux_sym__val_number_token1] = ACTIONS(2257), - [aux_sym__val_number_token2] = ACTIONS(2257), - [aux_sym__val_number_token3] = ACTIONS(2257), - [anon_sym_DQUOTE] = ACTIONS(2257), - [sym__str_single_quotes] = ACTIONS(2257), - [sym__str_back_ticks] = ACTIONS(2257), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2257), - [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_export] = ACTIONS(1871), + [anon_sym_alias] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1871), + [anon_sym_let_DASHenv] = ACTIONS(1871), + [anon_sym_mut] = ACTIONS(1871), + [anon_sym_const] = ACTIONS(1871), + [aux_sym_cmd_identifier_token1] = ACTIONS(1871), + [aux_sym_cmd_identifier_token2] = ACTIONS(1871), + [aux_sym_cmd_identifier_token3] = ACTIONS(1871), + [aux_sym_cmd_identifier_token4] = ACTIONS(1871), + [aux_sym_cmd_identifier_token5] = ACTIONS(1871), + [aux_sym_cmd_identifier_token6] = ACTIONS(1871), + [aux_sym_cmd_identifier_token7] = ACTIONS(1871), + [aux_sym_cmd_identifier_token8] = ACTIONS(1871), + [aux_sym_cmd_identifier_token9] = ACTIONS(1871), + [aux_sym_cmd_identifier_token10] = ACTIONS(1871), + [aux_sym_cmd_identifier_token11] = ACTIONS(1871), + [aux_sym_cmd_identifier_token12] = ACTIONS(1871), + [aux_sym_cmd_identifier_token13] = ACTIONS(1871), + [aux_sym_cmd_identifier_token14] = ACTIONS(1871), + [aux_sym_cmd_identifier_token15] = ACTIONS(1871), + [aux_sym_cmd_identifier_token16] = ACTIONS(1871), + [aux_sym_cmd_identifier_token17] = ACTIONS(1871), + [aux_sym_cmd_identifier_token18] = ACTIONS(1871), + [aux_sym_cmd_identifier_token19] = ACTIONS(1871), + [aux_sym_cmd_identifier_token20] = ACTIONS(1871), + [aux_sym_cmd_identifier_token21] = ACTIONS(1871), + [aux_sym_cmd_identifier_token22] = ACTIONS(1871), + [aux_sym_cmd_identifier_token23] = ACTIONS(1871), + [aux_sym_cmd_identifier_token24] = ACTIONS(1871), + [aux_sym_cmd_identifier_token25] = ACTIONS(1871), + [aux_sym_cmd_identifier_token26] = ACTIONS(1871), + [aux_sym_cmd_identifier_token27] = ACTIONS(1871), + [aux_sym_cmd_identifier_token28] = ACTIONS(1871), + [aux_sym_cmd_identifier_token29] = ACTIONS(1871), + [aux_sym_cmd_identifier_token30] = ACTIONS(1871), + [aux_sym_cmd_identifier_token31] = ACTIONS(1871), + [aux_sym_cmd_identifier_token32] = ACTIONS(1871), + [aux_sym_cmd_identifier_token33] = ACTIONS(1871), + [aux_sym_cmd_identifier_token34] = ACTIONS(1871), + [aux_sym_cmd_identifier_token35] = ACTIONS(1871), + [aux_sym_cmd_identifier_token36] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(1873), + [anon_sym_false] = ACTIONS(1873), + [anon_sym_null] = ACTIONS(1873), + [aux_sym_cmd_identifier_token38] = ACTIONS(1871), + [aux_sym_cmd_identifier_token39] = ACTIONS(1873), + [aux_sym_cmd_identifier_token40] = ACTIONS(1873), + [anon_sym_def] = ACTIONS(1871), + [anon_sym_export_DASHenv] = ACTIONS(1871), + [anon_sym_extern] = ACTIONS(1871), + [anon_sym_module] = ACTIONS(1871), + [anon_sym_use] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1873), + [anon_sym_DOLLAR] = ACTIONS(1873), + [anon_sym_error] = ACTIONS(1871), + [anon_sym_list] = ACTIONS(1871), + [anon_sym_DASH] = ACTIONS(1871), + [anon_sym_break] = ACTIONS(1871), + [anon_sym_continue] = ACTIONS(1871), + [anon_sym_for] = ACTIONS(1871), + [anon_sym_in] = ACTIONS(1871), + [anon_sym_loop] = ACTIONS(1871), + [anon_sym_make] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1871), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_if] = ACTIONS(1871), + [anon_sym_else] = ACTIONS(1871), + [anon_sym_match] = ACTIONS(1871), + [anon_sym_RBRACE] = ACTIONS(1873), + [anon_sym_try] = ACTIONS(1871), + [anon_sym_catch] = ACTIONS(1871), + [anon_sym_return] = ACTIONS(1871), + [anon_sym_source] = ACTIONS(1871), + [anon_sym_source_DASHenv] = ACTIONS(1871), + [anon_sym_register] = ACTIONS(1871), + [anon_sym_hide] = ACTIONS(1871), + [anon_sym_hide_DASHenv] = ACTIONS(1871), + [anon_sym_overlay] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1871), + [anon_sym_as] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1873), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1873), + [aux_sym__val_number_decimal_token1] = ACTIONS(1871), + [aux_sym__val_number_decimal_token2] = ACTIONS(1873), + [aux_sym__val_number_decimal_token3] = ACTIONS(1873), + [aux_sym__val_number_decimal_token4] = ACTIONS(1873), + [aux_sym__val_number_token1] = ACTIONS(1873), + [aux_sym__val_number_token2] = ACTIONS(1873), + [aux_sym__val_number_token3] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(1873), + [sym__str_single_quotes] = ACTIONS(1873), + [sym__str_back_ticks] = ACTIONS(1873), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1873), + [anon_sym_PLUS] = ACTIONS(1871), [anon_sym_POUND] = ACTIONS(247), }, [613] = { [sym_comment] = STATE(613), - [anon_sym_export] = ACTIONS(2340), - [anon_sym_alias] = ACTIONS(2340), - [anon_sym_let] = ACTIONS(2340), - [anon_sym_let_DASHenv] = ACTIONS(2340), - [anon_sym_mut] = ACTIONS(2340), - [anon_sym_const] = ACTIONS(2340), - [aux_sym_cmd_identifier_token1] = ACTIONS(2340), - [aux_sym_cmd_identifier_token2] = ACTIONS(2340), - [aux_sym_cmd_identifier_token3] = ACTIONS(2340), - [aux_sym_cmd_identifier_token4] = ACTIONS(2340), - [aux_sym_cmd_identifier_token5] = ACTIONS(2340), - [aux_sym_cmd_identifier_token6] = ACTIONS(2340), - [aux_sym_cmd_identifier_token7] = ACTIONS(2340), - [aux_sym_cmd_identifier_token8] = ACTIONS(2340), - [aux_sym_cmd_identifier_token9] = ACTIONS(2340), - [aux_sym_cmd_identifier_token10] = ACTIONS(2340), - [aux_sym_cmd_identifier_token11] = ACTIONS(2340), - [aux_sym_cmd_identifier_token12] = ACTIONS(2340), - [aux_sym_cmd_identifier_token13] = ACTIONS(2340), - [aux_sym_cmd_identifier_token14] = ACTIONS(2340), - [aux_sym_cmd_identifier_token15] = ACTIONS(2340), - [aux_sym_cmd_identifier_token16] = ACTIONS(2340), - [aux_sym_cmd_identifier_token17] = ACTIONS(2340), - [aux_sym_cmd_identifier_token18] = ACTIONS(2340), - [aux_sym_cmd_identifier_token19] = ACTIONS(2340), - [aux_sym_cmd_identifier_token20] = ACTIONS(2340), - [aux_sym_cmd_identifier_token21] = ACTIONS(2340), - [aux_sym_cmd_identifier_token22] = ACTIONS(2340), - [aux_sym_cmd_identifier_token23] = ACTIONS(2340), - [aux_sym_cmd_identifier_token24] = ACTIONS(2340), - [aux_sym_cmd_identifier_token25] = ACTIONS(2340), - [aux_sym_cmd_identifier_token26] = ACTIONS(2340), - [aux_sym_cmd_identifier_token27] = ACTIONS(2340), - [aux_sym_cmd_identifier_token28] = ACTIONS(2340), - [aux_sym_cmd_identifier_token29] = ACTIONS(2340), - [aux_sym_cmd_identifier_token30] = ACTIONS(2340), - [aux_sym_cmd_identifier_token31] = ACTIONS(2340), - [aux_sym_cmd_identifier_token32] = ACTIONS(2340), - [aux_sym_cmd_identifier_token33] = ACTIONS(2340), - [aux_sym_cmd_identifier_token34] = ACTIONS(2340), - [aux_sym_cmd_identifier_token35] = ACTIONS(2340), - [aux_sym_cmd_identifier_token36] = ACTIONS(2340), - [anon_sym_true] = ACTIONS(2342), - [anon_sym_false] = ACTIONS(2342), - [anon_sym_null] = ACTIONS(2342), - [aux_sym_cmd_identifier_token38] = ACTIONS(2340), - [aux_sym_cmd_identifier_token39] = ACTIONS(2342), - [aux_sym_cmd_identifier_token40] = ACTIONS(2342), - [anon_sym_def] = ACTIONS(2340), - [anon_sym_export_DASHenv] = ACTIONS(2340), - [anon_sym_extern] = ACTIONS(2340), - [anon_sym_module] = ACTIONS(2340), - [anon_sym_use] = ACTIONS(2340), - [anon_sym_LPAREN] = ACTIONS(2342), - [anon_sym_DOLLAR] = ACTIONS(2342), - [anon_sym_error] = ACTIONS(2340), - [anon_sym_list] = ACTIONS(2340), - [anon_sym_DASH] = ACTIONS(2340), - [anon_sym_break] = ACTIONS(2340), - [anon_sym_continue] = ACTIONS(2340), - [anon_sym_for] = ACTIONS(2340), - [anon_sym_in] = ACTIONS(2340), - [anon_sym_loop] = ACTIONS(2340), - [anon_sym_make] = ACTIONS(2340), - [anon_sym_while] = ACTIONS(2340), - [anon_sym_do] = ACTIONS(2340), - [anon_sym_if] = ACTIONS(2340), - [anon_sym_else] = ACTIONS(2340), - [anon_sym_match] = ACTIONS(2340), - [anon_sym_RBRACE] = ACTIONS(2342), - [anon_sym_try] = ACTIONS(2340), - [anon_sym_catch] = ACTIONS(2340), - [anon_sym_return] = ACTIONS(2340), - [anon_sym_source] = ACTIONS(2340), - [anon_sym_source_DASHenv] = ACTIONS(2340), - [anon_sym_register] = ACTIONS(2340), - [anon_sym_hide] = ACTIONS(2340), - [anon_sym_hide_DASHenv] = ACTIONS(2340), - [anon_sym_overlay] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(2340), - [anon_sym_as] = ACTIONS(2340), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2342), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2342), - [aux_sym__val_number_decimal_token1] = ACTIONS(2340), - [aux_sym__val_number_decimal_token2] = ACTIONS(2342), - [aux_sym__val_number_decimal_token3] = ACTIONS(2342), - [aux_sym__val_number_decimal_token4] = ACTIONS(2342), - [aux_sym__val_number_token1] = ACTIONS(2342), - [aux_sym__val_number_token2] = ACTIONS(2342), - [aux_sym__val_number_token3] = ACTIONS(2342), - [anon_sym_DQUOTE] = ACTIONS(2342), - [sym__str_single_quotes] = ACTIONS(2342), - [sym__str_back_ticks] = ACTIONS(2342), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2342), - [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_export] = ACTIONS(2408), + [anon_sym_alias] = ACTIONS(2408), + [anon_sym_let] = ACTIONS(2408), + [anon_sym_let_DASHenv] = ACTIONS(2408), + [anon_sym_mut] = ACTIONS(2408), + [anon_sym_const] = ACTIONS(2408), + [aux_sym_cmd_identifier_token1] = ACTIONS(2408), + [aux_sym_cmd_identifier_token2] = ACTIONS(2408), + [aux_sym_cmd_identifier_token3] = ACTIONS(2408), + [aux_sym_cmd_identifier_token4] = ACTIONS(2408), + [aux_sym_cmd_identifier_token5] = ACTIONS(2408), + [aux_sym_cmd_identifier_token6] = ACTIONS(2408), + [aux_sym_cmd_identifier_token7] = ACTIONS(2408), + [aux_sym_cmd_identifier_token8] = ACTIONS(2408), + [aux_sym_cmd_identifier_token9] = ACTIONS(2408), + [aux_sym_cmd_identifier_token10] = ACTIONS(2408), + [aux_sym_cmd_identifier_token11] = ACTIONS(2408), + [aux_sym_cmd_identifier_token12] = ACTIONS(2408), + [aux_sym_cmd_identifier_token13] = ACTIONS(2408), + [aux_sym_cmd_identifier_token14] = ACTIONS(2408), + [aux_sym_cmd_identifier_token15] = ACTIONS(2408), + [aux_sym_cmd_identifier_token16] = ACTIONS(2408), + [aux_sym_cmd_identifier_token17] = ACTIONS(2408), + [aux_sym_cmd_identifier_token18] = ACTIONS(2408), + [aux_sym_cmd_identifier_token19] = ACTIONS(2408), + [aux_sym_cmd_identifier_token20] = ACTIONS(2408), + [aux_sym_cmd_identifier_token21] = ACTIONS(2408), + [aux_sym_cmd_identifier_token22] = ACTIONS(2408), + [aux_sym_cmd_identifier_token23] = ACTIONS(2408), + [aux_sym_cmd_identifier_token24] = ACTIONS(2408), + [aux_sym_cmd_identifier_token25] = ACTIONS(2408), + [aux_sym_cmd_identifier_token26] = ACTIONS(2408), + [aux_sym_cmd_identifier_token27] = ACTIONS(2408), + [aux_sym_cmd_identifier_token28] = ACTIONS(2408), + [aux_sym_cmd_identifier_token29] = ACTIONS(2408), + [aux_sym_cmd_identifier_token30] = ACTIONS(2408), + [aux_sym_cmd_identifier_token31] = ACTIONS(2408), + [aux_sym_cmd_identifier_token32] = ACTIONS(2408), + [aux_sym_cmd_identifier_token33] = ACTIONS(2408), + [aux_sym_cmd_identifier_token34] = ACTIONS(2408), + [aux_sym_cmd_identifier_token35] = ACTIONS(2408), + [aux_sym_cmd_identifier_token36] = ACTIONS(2408), + [anon_sym_true] = ACTIONS(2410), + [anon_sym_false] = ACTIONS(2410), + [anon_sym_null] = ACTIONS(2410), + [aux_sym_cmd_identifier_token38] = ACTIONS(2408), + [aux_sym_cmd_identifier_token39] = ACTIONS(2410), + [aux_sym_cmd_identifier_token40] = ACTIONS(2410), + [anon_sym_def] = ACTIONS(2408), + [anon_sym_export_DASHenv] = ACTIONS(2408), + [anon_sym_extern] = ACTIONS(2408), + [anon_sym_module] = ACTIONS(2408), + [anon_sym_use] = ACTIONS(2408), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_DOLLAR] = ACTIONS(2410), + [anon_sym_error] = ACTIONS(2408), + [anon_sym_list] = ACTIONS(2408), + [anon_sym_DASH] = ACTIONS(2408), + [anon_sym_break] = ACTIONS(2408), + [anon_sym_continue] = ACTIONS(2408), + [anon_sym_for] = ACTIONS(2408), + [anon_sym_in] = ACTIONS(2408), + [anon_sym_loop] = ACTIONS(2408), + [anon_sym_make] = ACTIONS(2408), + [anon_sym_while] = ACTIONS(2408), + [anon_sym_do] = ACTIONS(2408), + [anon_sym_if] = ACTIONS(2408), + [anon_sym_else] = ACTIONS(2408), + [anon_sym_match] = ACTIONS(2408), + [anon_sym_RBRACE] = ACTIONS(2410), + [anon_sym_try] = ACTIONS(2408), + [anon_sym_catch] = ACTIONS(2408), + [anon_sym_return] = ACTIONS(2408), + [anon_sym_source] = ACTIONS(2408), + [anon_sym_source_DASHenv] = ACTIONS(2408), + [anon_sym_register] = ACTIONS(2408), + [anon_sym_hide] = ACTIONS(2408), + [anon_sym_hide_DASHenv] = ACTIONS(2408), + [anon_sym_overlay] = ACTIONS(2408), + [anon_sym_new] = ACTIONS(2408), + [anon_sym_as] = ACTIONS(2408), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2410), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2410), + [aux_sym__val_number_decimal_token1] = ACTIONS(2408), + [aux_sym__val_number_decimal_token2] = ACTIONS(2410), + [aux_sym__val_number_decimal_token3] = ACTIONS(2410), + [aux_sym__val_number_decimal_token4] = ACTIONS(2410), + [aux_sym__val_number_token1] = ACTIONS(2410), + [aux_sym__val_number_token2] = ACTIONS(2410), + [aux_sym__val_number_token3] = ACTIONS(2410), + [anon_sym_DQUOTE] = ACTIONS(2410), + [sym__str_single_quotes] = ACTIONS(2410), + [sym__str_back_ticks] = ACTIONS(2410), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2410), + [anon_sym_PLUS] = ACTIONS(2408), [anon_sym_POUND] = ACTIONS(247), }, [614] = { [sym_comment] = STATE(614), - [anon_sym_export] = ACTIONS(2259), - [anon_sym_alias] = ACTIONS(2259), - [anon_sym_let] = ACTIONS(2259), - [anon_sym_let_DASHenv] = ACTIONS(2259), - [anon_sym_mut] = ACTIONS(2259), - [anon_sym_const] = ACTIONS(2259), - [aux_sym_cmd_identifier_token1] = ACTIONS(2259), - [aux_sym_cmd_identifier_token2] = ACTIONS(2259), - [aux_sym_cmd_identifier_token3] = ACTIONS(2259), - [aux_sym_cmd_identifier_token4] = ACTIONS(2259), - [aux_sym_cmd_identifier_token5] = ACTIONS(2259), - [aux_sym_cmd_identifier_token6] = ACTIONS(2259), - [aux_sym_cmd_identifier_token7] = ACTIONS(2259), - [aux_sym_cmd_identifier_token8] = ACTIONS(2259), - [aux_sym_cmd_identifier_token9] = ACTIONS(2259), - [aux_sym_cmd_identifier_token10] = ACTIONS(2259), - [aux_sym_cmd_identifier_token11] = ACTIONS(2259), - [aux_sym_cmd_identifier_token12] = ACTIONS(2259), - [aux_sym_cmd_identifier_token13] = ACTIONS(2259), - [aux_sym_cmd_identifier_token14] = ACTIONS(2259), - [aux_sym_cmd_identifier_token15] = ACTIONS(2259), - [aux_sym_cmd_identifier_token16] = ACTIONS(2259), - [aux_sym_cmd_identifier_token17] = ACTIONS(2259), - [aux_sym_cmd_identifier_token18] = ACTIONS(2259), - [aux_sym_cmd_identifier_token19] = ACTIONS(2259), - [aux_sym_cmd_identifier_token20] = ACTIONS(2259), - [aux_sym_cmd_identifier_token21] = ACTIONS(2259), - [aux_sym_cmd_identifier_token22] = ACTIONS(2259), - [aux_sym_cmd_identifier_token23] = ACTIONS(2259), - [aux_sym_cmd_identifier_token24] = ACTIONS(2259), - [aux_sym_cmd_identifier_token25] = ACTIONS(2259), - [aux_sym_cmd_identifier_token26] = ACTIONS(2259), - [aux_sym_cmd_identifier_token27] = ACTIONS(2259), - [aux_sym_cmd_identifier_token28] = ACTIONS(2259), - [aux_sym_cmd_identifier_token29] = ACTIONS(2259), - [aux_sym_cmd_identifier_token30] = ACTIONS(2259), - [aux_sym_cmd_identifier_token31] = ACTIONS(2259), - [aux_sym_cmd_identifier_token32] = ACTIONS(2259), - [aux_sym_cmd_identifier_token33] = ACTIONS(2259), - [aux_sym_cmd_identifier_token34] = ACTIONS(2259), - [aux_sym_cmd_identifier_token35] = ACTIONS(2259), - [aux_sym_cmd_identifier_token36] = ACTIONS(2259), - [anon_sym_true] = ACTIONS(2261), - [anon_sym_false] = ACTIONS(2261), - [anon_sym_null] = ACTIONS(2261), - [aux_sym_cmd_identifier_token38] = ACTIONS(2259), - [aux_sym_cmd_identifier_token39] = ACTIONS(2261), - [aux_sym_cmd_identifier_token40] = ACTIONS(2261), - [anon_sym_def] = ACTIONS(2259), - [anon_sym_export_DASHenv] = ACTIONS(2259), - [anon_sym_extern] = ACTIONS(2259), - [anon_sym_module] = ACTIONS(2259), - [anon_sym_use] = ACTIONS(2259), - [anon_sym_LPAREN] = ACTIONS(2261), - [anon_sym_DOLLAR] = ACTIONS(2261), - [anon_sym_error] = ACTIONS(2259), - [anon_sym_list] = ACTIONS(2259), - [anon_sym_DASH] = ACTIONS(2259), - [anon_sym_break] = ACTIONS(2259), - [anon_sym_continue] = ACTIONS(2259), - [anon_sym_for] = ACTIONS(2259), - [anon_sym_in] = ACTIONS(2259), - [anon_sym_loop] = ACTIONS(2259), - [anon_sym_make] = ACTIONS(2259), - [anon_sym_while] = ACTIONS(2259), - [anon_sym_do] = ACTIONS(2259), - [anon_sym_if] = ACTIONS(2259), - [anon_sym_else] = ACTIONS(2259), - [anon_sym_match] = ACTIONS(2259), - [anon_sym_RBRACE] = ACTIONS(2261), - [anon_sym_try] = ACTIONS(2259), - [anon_sym_catch] = ACTIONS(2259), - [anon_sym_return] = ACTIONS(2259), - [anon_sym_source] = ACTIONS(2259), - [anon_sym_source_DASHenv] = ACTIONS(2259), - [anon_sym_register] = ACTIONS(2259), - [anon_sym_hide] = ACTIONS(2259), - [anon_sym_hide_DASHenv] = ACTIONS(2259), - [anon_sym_overlay] = ACTIONS(2259), - [anon_sym_new] = ACTIONS(2259), - [anon_sym_as] = ACTIONS(2259), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2261), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2261), - [aux_sym__val_number_decimal_token1] = ACTIONS(2259), - [aux_sym__val_number_decimal_token2] = ACTIONS(2261), - [aux_sym__val_number_decimal_token3] = ACTIONS(2261), - [aux_sym__val_number_decimal_token4] = ACTIONS(2261), - [aux_sym__val_number_token1] = ACTIONS(2261), - [aux_sym__val_number_token2] = ACTIONS(2261), - [aux_sym__val_number_token3] = ACTIONS(2261), - [anon_sym_DQUOTE] = ACTIONS(2261), - [sym__str_single_quotes] = ACTIONS(2261), - [sym__str_back_ticks] = ACTIONS(2261), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2261), - [anon_sym_PLUS] = ACTIONS(2259), + [anon_sym_export] = ACTIONS(1040), + [anon_sym_alias] = ACTIONS(1040), + [anon_sym_let] = ACTIONS(1040), + [anon_sym_let_DASHenv] = ACTIONS(1040), + [anon_sym_mut] = ACTIONS(1040), + [anon_sym_const] = ACTIONS(1040), + [aux_sym_cmd_identifier_token1] = ACTIONS(1040), + [aux_sym_cmd_identifier_token2] = ACTIONS(1040), + [aux_sym_cmd_identifier_token3] = ACTIONS(1040), + [aux_sym_cmd_identifier_token4] = ACTIONS(1040), + [aux_sym_cmd_identifier_token5] = ACTIONS(1040), + [aux_sym_cmd_identifier_token6] = ACTIONS(1040), + [aux_sym_cmd_identifier_token7] = ACTIONS(1040), + [aux_sym_cmd_identifier_token8] = ACTIONS(1040), + [aux_sym_cmd_identifier_token9] = ACTIONS(1040), + [aux_sym_cmd_identifier_token10] = ACTIONS(1040), + [aux_sym_cmd_identifier_token11] = ACTIONS(1040), + [aux_sym_cmd_identifier_token12] = ACTIONS(1040), + [aux_sym_cmd_identifier_token13] = ACTIONS(1040), + [aux_sym_cmd_identifier_token14] = ACTIONS(1040), + [aux_sym_cmd_identifier_token15] = ACTIONS(1040), + [aux_sym_cmd_identifier_token16] = ACTIONS(1040), + [aux_sym_cmd_identifier_token17] = ACTIONS(1040), + [aux_sym_cmd_identifier_token18] = ACTIONS(1040), + [aux_sym_cmd_identifier_token19] = ACTIONS(1040), + [aux_sym_cmd_identifier_token20] = ACTIONS(1040), + [aux_sym_cmd_identifier_token21] = ACTIONS(1040), + [aux_sym_cmd_identifier_token22] = ACTIONS(1040), + [aux_sym_cmd_identifier_token23] = ACTIONS(1040), + [aux_sym_cmd_identifier_token24] = ACTIONS(1040), + [aux_sym_cmd_identifier_token25] = ACTIONS(1040), + [aux_sym_cmd_identifier_token26] = ACTIONS(1040), + [aux_sym_cmd_identifier_token27] = ACTIONS(1040), + [aux_sym_cmd_identifier_token28] = ACTIONS(1040), + [aux_sym_cmd_identifier_token29] = ACTIONS(1040), + [aux_sym_cmd_identifier_token30] = ACTIONS(1040), + [aux_sym_cmd_identifier_token31] = ACTIONS(1040), + [aux_sym_cmd_identifier_token32] = ACTIONS(1040), + [aux_sym_cmd_identifier_token33] = ACTIONS(1040), + [aux_sym_cmd_identifier_token34] = ACTIONS(1040), + [aux_sym_cmd_identifier_token35] = ACTIONS(1040), + [aux_sym_cmd_identifier_token36] = ACTIONS(1040), + [anon_sym_true] = ACTIONS(1042), + [anon_sym_false] = ACTIONS(1042), + [anon_sym_null] = ACTIONS(1042), + [aux_sym_cmd_identifier_token38] = ACTIONS(1040), + [aux_sym_cmd_identifier_token39] = ACTIONS(1042), + [aux_sym_cmd_identifier_token40] = ACTIONS(1042), + [anon_sym_def] = ACTIONS(1040), + [anon_sym_export_DASHenv] = ACTIONS(1040), + [anon_sym_extern] = ACTIONS(1040), + [anon_sym_module] = ACTIONS(1040), + [anon_sym_use] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1042), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_error] = ACTIONS(1040), + [anon_sym_list] = ACTIONS(1040), + [anon_sym_DASH] = ACTIONS(1040), + [anon_sym_break] = ACTIONS(1040), + [anon_sym_continue] = ACTIONS(1040), + [anon_sym_for] = ACTIONS(1040), + [anon_sym_in] = ACTIONS(1040), + [anon_sym_loop] = ACTIONS(1040), + [anon_sym_make] = ACTIONS(1040), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_do] = ACTIONS(1040), + [anon_sym_if] = ACTIONS(1040), + [anon_sym_else] = ACTIONS(1040), + [anon_sym_match] = ACTIONS(1040), + [anon_sym_RBRACE] = ACTIONS(1042), + [anon_sym_try] = ACTIONS(1040), + [anon_sym_catch] = ACTIONS(1040), + [anon_sym_return] = ACTIONS(1040), + [anon_sym_source] = ACTIONS(1040), + [anon_sym_source_DASHenv] = ACTIONS(1040), + [anon_sym_register] = ACTIONS(1040), + [anon_sym_hide] = ACTIONS(1040), + [anon_sym_hide_DASHenv] = ACTIONS(1040), + [anon_sym_overlay] = ACTIONS(1040), + [anon_sym_new] = ACTIONS(1040), + [anon_sym_as] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1042), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1042), + [aux_sym__val_number_decimal_token1] = ACTIONS(1040), + [aux_sym__val_number_decimal_token2] = ACTIONS(1042), + [aux_sym__val_number_decimal_token3] = ACTIONS(1042), + [aux_sym__val_number_decimal_token4] = ACTIONS(1042), + [aux_sym__val_number_token1] = ACTIONS(1042), + [aux_sym__val_number_token2] = ACTIONS(1042), + [aux_sym__val_number_token3] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1042), + [sym__str_single_quotes] = ACTIONS(1042), + [sym__str_back_ticks] = ACTIONS(1042), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1040), [anon_sym_POUND] = ACTIONS(247), }, [615] = { [sym_comment] = STATE(615), - [anon_sym_export] = ACTIONS(2417), - [anon_sym_alias] = ACTIONS(2417), - [anon_sym_let] = ACTIONS(2417), - [anon_sym_let_DASHenv] = ACTIONS(2417), - [anon_sym_mut] = ACTIONS(2417), - [anon_sym_const] = ACTIONS(2417), - [aux_sym_cmd_identifier_token1] = ACTIONS(2417), - [aux_sym_cmd_identifier_token2] = ACTIONS(2417), - [aux_sym_cmd_identifier_token3] = ACTIONS(2417), - [aux_sym_cmd_identifier_token4] = ACTIONS(2417), - [aux_sym_cmd_identifier_token5] = ACTIONS(2417), - [aux_sym_cmd_identifier_token6] = ACTIONS(2417), - [aux_sym_cmd_identifier_token7] = ACTIONS(2417), - [aux_sym_cmd_identifier_token8] = ACTIONS(2417), - [aux_sym_cmd_identifier_token9] = ACTIONS(2417), - [aux_sym_cmd_identifier_token10] = ACTIONS(2417), - [aux_sym_cmd_identifier_token11] = ACTIONS(2417), - [aux_sym_cmd_identifier_token12] = ACTIONS(2417), - [aux_sym_cmd_identifier_token13] = ACTIONS(2417), - [aux_sym_cmd_identifier_token14] = ACTIONS(2417), - [aux_sym_cmd_identifier_token15] = ACTIONS(2417), - [aux_sym_cmd_identifier_token16] = ACTIONS(2417), - [aux_sym_cmd_identifier_token17] = ACTIONS(2417), - [aux_sym_cmd_identifier_token18] = ACTIONS(2417), - [aux_sym_cmd_identifier_token19] = ACTIONS(2417), - [aux_sym_cmd_identifier_token20] = ACTIONS(2417), - [aux_sym_cmd_identifier_token21] = ACTIONS(2417), - [aux_sym_cmd_identifier_token22] = ACTIONS(2417), - [aux_sym_cmd_identifier_token23] = ACTIONS(2417), - [aux_sym_cmd_identifier_token24] = ACTIONS(2417), - [aux_sym_cmd_identifier_token25] = ACTIONS(2417), - [aux_sym_cmd_identifier_token26] = ACTIONS(2417), - [aux_sym_cmd_identifier_token27] = ACTIONS(2417), - [aux_sym_cmd_identifier_token28] = ACTIONS(2417), - [aux_sym_cmd_identifier_token29] = ACTIONS(2417), - [aux_sym_cmd_identifier_token30] = ACTIONS(2417), - [aux_sym_cmd_identifier_token31] = ACTIONS(2417), - [aux_sym_cmd_identifier_token32] = ACTIONS(2417), - [aux_sym_cmd_identifier_token33] = ACTIONS(2417), - [aux_sym_cmd_identifier_token34] = ACTIONS(2417), - [aux_sym_cmd_identifier_token35] = ACTIONS(2417), - [aux_sym_cmd_identifier_token36] = ACTIONS(2417), - [anon_sym_true] = ACTIONS(2419), - [anon_sym_false] = ACTIONS(2419), - [anon_sym_null] = ACTIONS(2419), - [aux_sym_cmd_identifier_token38] = ACTIONS(2417), - [aux_sym_cmd_identifier_token39] = ACTIONS(2419), - [aux_sym_cmd_identifier_token40] = ACTIONS(2419), - [anon_sym_def] = ACTIONS(2417), - [anon_sym_export_DASHenv] = ACTIONS(2417), - [anon_sym_extern] = ACTIONS(2417), - [anon_sym_module] = ACTIONS(2417), - [anon_sym_use] = ACTIONS(2417), - [anon_sym_LPAREN] = ACTIONS(2419), - [anon_sym_DOLLAR] = ACTIONS(2419), - [anon_sym_error] = ACTIONS(2417), - [anon_sym_list] = ACTIONS(2417), - [anon_sym_DASH] = ACTIONS(2417), - [anon_sym_break] = ACTIONS(2417), - [anon_sym_continue] = ACTIONS(2417), - [anon_sym_for] = ACTIONS(2417), - [anon_sym_in] = ACTIONS(2417), - [anon_sym_loop] = ACTIONS(2417), - [anon_sym_make] = ACTIONS(2417), - [anon_sym_while] = ACTIONS(2417), - [anon_sym_do] = ACTIONS(2417), - [anon_sym_if] = ACTIONS(2417), - [anon_sym_else] = ACTIONS(2417), - [anon_sym_match] = ACTIONS(2417), - [anon_sym_RBRACE] = ACTIONS(2419), - [anon_sym_try] = ACTIONS(2417), - [anon_sym_catch] = ACTIONS(2417), - [anon_sym_return] = ACTIONS(2417), - [anon_sym_source] = ACTIONS(2417), - [anon_sym_source_DASHenv] = ACTIONS(2417), - [anon_sym_register] = ACTIONS(2417), - [anon_sym_hide] = ACTIONS(2417), - [anon_sym_hide_DASHenv] = ACTIONS(2417), - [anon_sym_overlay] = ACTIONS(2417), - [anon_sym_new] = ACTIONS(2417), - [anon_sym_as] = ACTIONS(2417), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2419), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2419), - [aux_sym__val_number_decimal_token1] = ACTIONS(2417), - [aux_sym__val_number_decimal_token2] = ACTIONS(2419), - [aux_sym__val_number_decimal_token3] = ACTIONS(2419), - [aux_sym__val_number_decimal_token4] = ACTIONS(2419), - [aux_sym__val_number_token1] = ACTIONS(2419), - [aux_sym__val_number_token2] = ACTIONS(2419), - [aux_sym__val_number_token3] = ACTIONS(2419), - [anon_sym_DQUOTE] = ACTIONS(2419), - [sym__str_single_quotes] = ACTIONS(2419), - [sym__str_back_ticks] = ACTIONS(2419), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2419), - [anon_sym_PLUS] = ACTIONS(2417), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_alias] = ACTIONS(1890), + [anon_sym_let] = ACTIONS(1890), + [anon_sym_let_DASHenv] = ACTIONS(1890), + [anon_sym_mut] = ACTIONS(1890), + [anon_sym_const] = ACTIONS(1890), + [aux_sym_cmd_identifier_token1] = ACTIONS(1890), + [aux_sym_cmd_identifier_token2] = ACTIONS(1890), + [aux_sym_cmd_identifier_token3] = ACTIONS(1890), + [aux_sym_cmd_identifier_token4] = ACTIONS(1890), + [aux_sym_cmd_identifier_token5] = ACTIONS(1890), + [aux_sym_cmd_identifier_token6] = ACTIONS(1890), + [aux_sym_cmd_identifier_token7] = ACTIONS(1890), + [aux_sym_cmd_identifier_token8] = ACTIONS(1890), + [aux_sym_cmd_identifier_token9] = ACTIONS(1890), + [aux_sym_cmd_identifier_token10] = ACTIONS(1890), + [aux_sym_cmd_identifier_token11] = ACTIONS(1890), + [aux_sym_cmd_identifier_token12] = ACTIONS(1890), + [aux_sym_cmd_identifier_token13] = ACTIONS(1890), + [aux_sym_cmd_identifier_token14] = ACTIONS(1890), + [aux_sym_cmd_identifier_token15] = ACTIONS(1890), + [aux_sym_cmd_identifier_token16] = ACTIONS(1890), + [aux_sym_cmd_identifier_token17] = ACTIONS(1890), + [aux_sym_cmd_identifier_token18] = ACTIONS(1890), + [aux_sym_cmd_identifier_token19] = ACTIONS(1890), + [aux_sym_cmd_identifier_token20] = ACTIONS(1890), + [aux_sym_cmd_identifier_token21] = ACTIONS(1890), + [aux_sym_cmd_identifier_token22] = ACTIONS(1890), + [aux_sym_cmd_identifier_token23] = ACTIONS(1890), + [aux_sym_cmd_identifier_token24] = ACTIONS(1890), + [aux_sym_cmd_identifier_token25] = ACTIONS(1890), + [aux_sym_cmd_identifier_token26] = ACTIONS(1890), + [aux_sym_cmd_identifier_token27] = ACTIONS(1890), + [aux_sym_cmd_identifier_token28] = ACTIONS(1890), + [aux_sym_cmd_identifier_token29] = ACTIONS(1890), + [aux_sym_cmd_identifier_token30] = ACTIONS(1890), + [aux_sym_cmd_identifier_token31] = ACTIONS(1890), + [aux_sym_cmd_identifier_token32] = ACTIONS(1890), + [aux_sym_cmd_identifier_token33] = ACTIONS(1890), + [aux_sym_cmd_identifier_token34] = ACTIONS(1890), + [aux_sym_cmd_identifier_token35] = ACTIONS(1890), + [aux_sym_cmd_identifier_token36] = ACTIONS(1890), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1892), + [aux_sym_cmd_identifier_token38] = ACTIONS(1890), + [aux_sym_cmd_identifier_token39] = ACTIONS(1892), + [aux_sym_cmd_identifier_token40] = ACTIONS(1892), + [anon_sym_def] = ACTIONS(1890), + [anon_sym_export_DASHenv] = ACTIONS(1890), + [anon_sym_extern] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_use] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1892), + [anon_sym_error] = ACTIONS(1890), + [anon_sym_list] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_in] = ACTIONS(1890), + [anon_sym_loop] = ACTIONS(1890), + [anon_sym_make] = ACTIONS(1890), + [anon_sym_while] = ACTIONS(1890), + [anon_sym_do] = ACTIONS(1890), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_else] = ACTIONS(1890), + [anon_sym_match] = ACTIONS(1890), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_try] = ACTIONS(1890), + [anon_sym_catch] = ACTIONS(1890), + [anon_sym_return] = ACTIONS(1890), + [anon_sym_source] = ACTIONS(1890), + [anon_sym_source_DASHenv] = ACTIONS(1890), + [anon_sym_register] = ACTIONS(1890), + [anon_sym_hide] = ACTIONS(1890), + [anon_sym_hide_DASHenv] = ACTIONS(1890), + [anon_sym_overlay] = ACTIONS(1890), + [anon_sym_new] = ACTIONS(1890), + [anon_sym_as] = ACTIONS(1890), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1892), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1892), + [aux_sym__val_number_decimal_token1] = ACTIONS(1890), + [aux_sym__val_number_decimal_token2] = ACTIONS(1892), + [aux_sym__val_number_decimal_token3] = ACTIONS(1892), + [aux_sym__val_number_decimal_token4] = ACTIONS(1892), + [aux_sym__val_number_token1] = ACTIONS(1892), + [aux_sym__val_number_token2] = ACTIONS(1892), + [aux_sym__val_number_token3] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [sym__str_single_quotes] = ACTIONS(1892), + [sym__str_back_ticks] = ACTIONS(1892), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1890), [anon_sym_POUND] = ACTIONS(247), }, [616] = { [sym_comment] = STATE(616), - [anon_sym_export] = ACTIONS(2421), - [anon_sym_alias] = ACTIONS(2421), - [anon_sym_let] = ACTIONS(2421), - [anon_sym_let_DASHenv] = ACTIONS(2421), - [anon_sym_mut] = ACTIONS(2421), - [anon_sym_const] = ACTIONS(2421), - [aux_sym_cmd_identifier_token1] = ACTIONS(2421), - [aux_sym_cmd_identifier_token2] = ACTIONS(2421), - [aux_sym_cmd_identifier_token3] = ACTIONS(2421), - [aux_sym_cmd_identifier_token4] = ACTIONS(2421), - [aux_sym_cmd_identifier_token5] = ACTIONS(2421), - [aux_sym_cmd_identifier_token6] = ACTIONS(2421), - [aux_sym_cmd_identifier_token7] = ACTIONS(2421), - [aux_sym_cmd_identifier_token8] = ACTIONS(2421), - [aux_sym_cmd_identifier_token9] = ACTIONS(2421), - [aux_sym_cmd_identifier_token10] = ACTIONS(2421), - [aux_sym_cmd_identifier_token11] = ACTIONS(2421), - [aux_sym_cmd_identifier_token12] = ACTIONS(2421), - [aux_sym_cmd_identifier_token13] = ACTIONS(2421), - [aux_sym_cmd_identifier_token14] = ACTIONS(2421), - [aux_sym_cmd_identifier_token15] = ACTIONS(2421), - [aux_sym_cmd_identifier_token16] = ACTIONS(2421), - [aux_sym_cmd_identifier_token17] = ACTIONS(2421), - [aux_sym_cmd_identifier_token18] = ACTIONS(2421), - [aux_sym_cmd_identifier_token19] = ACTIONS(2421), - [aux_sym_cmd_identifier_token20] = ACTIONS(2421), - [aux_sym_cmd_identifier_token21] = ACTIONS(2421), - [aux_sym_cmd_identifier_token22] = ACTIONS(2421), - [aux_sym_cmd_identifier_token23] = ACTIONS(2421), - [aux_sym_cmd_identifier_token24] = ACTIONS(2421), - [aux_sym_cmd_identifier_token25] = ACTIONS(2421), - [aux_sym_cmd_identifier_token26] = ACTIONS(2421), - [aux_sym_cmd_identifier_token27] = ACTIONS(2421), - [aux_sym_cmd_identifier_token28] = ACTIONS(2421), - [aux_sym_cmd_identifier_token29] = ACTIONS(2421), - [aux_sym_cmd_identifier_token30] = ACTIONS(2421), - [aux_sym_cmd_identifier_token31] = ACTIONS(2421), - [aux_sym_cmd_identifier_token32] = ACTIONS(2421), - [aux_sym_cmd_identifier_token33] = ACTIONS(2421), - [aux_sym_cmd_identifier_token34] = ACTIONS(2421), - [aux_sym_cmd_identifier_token35] = ACTIONS(2421), - [aux_sym_cmd_identifier_token36] = ACTIONS(2421), - [anon_sym_true] = ACTIONS(2423), - [anon_sym_false] = ACTIONS(2423), - [anon_sym_null] = ACTIONS(2423), - [aux_sym_cmd_identifier_token38] = ACTIONS(2421), - [aux_sym_cmd_identifier_token39] = ACTIONS(2423), - [aux_sym_cmd_identifier_token40] = ACTIONS(2423), - [anon_sym_def] = ACTIONS(2421), - [anon_sym_export_DASHenv] = ACTIONS(2421), - [anon_sym_extern] = ACTIONS(2421), - [anon_sym_module] = ACTIONS(2421), - [anon_sym_use] = ACTIONS(2421), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_DOLLAR] = ACTIONS(2423), - [anon_sym_error] = ACTIONS(2421), - [anon_sym_list] = ACTIONS(2421), - [anon_sym_DASH] = ACTIONS(2421), - [anon_sym_break] = ACTIONS(2421), - [anon_sym_continue] = ACTIONS(2421), - [anon_sym_for] = ACTIONS(2421), - [anon_sym_in] = ACTIONS(2421), - [anon_sym_loop] = ACTIONS(2421), - [anon_sym_make] = ACTIONS(2421), - [anon_sym_while] = ACTIONS(2421), - [anon_sym_do] = ACTIONS(2421), - [anon_sym_if] = ACTIONS(2421), - [anon_sym_else] = ACTIONS(2421), - [anon_sym_match] = ACTIONS(2421), - [anon_sym_RBRACE] = ACTIONS(2423), - [anon_sym_try] = ACTIONS(2421), - [anon_sym_catch] = ACTIONS(2421), - [anon_sym_return] = ACTIONS(2421), - [anon_sym_source] = ACTIONS(2421), - [anon_sym_source_DASHenv] = ACTIONS(2421), - [anon_sym_register] = ACTIONS(2421), - [anon_sym_hide] = ACTIONS(2421), - [anon_sym_hide_DASHenv] = ACTIONS(2421), - [anon_sym_overlay] = ACTIONS(2421), - [anon_sym_new] = ACTIONS(2421), - [anon_sym_as] = ACTIONS(2421), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2423), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2423), - [aux_sym__val_number_decimal_token1] = ACTIONS(2421), - [aux_sym__val_number_decimal_token2] = ACTIONS(2423), - [aux_sym__val_number_decimal_token3] = ACTIONS(2423), - [aux_sym__val_number_decimal_token4] = ACTIONS(2423), - [aux_sym__val_number_token1] = ACTIONS(2423), - [aux_sym__val_number_token2] = ACTIONS(2423), - [aux_sym__val_number_token3] = ACTIONS(2423), - [anon_sym_DQUOTE] = ACTIONS(2423), - [sym__str_single_quotes] = ACTIONS(2423), - [sym__str_back_ticks] = ACTIONS(2423), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2423), - [anon_sym_PLUS] = ACTIONS(2421), + [anon_sym_export] = ACTIONS(2412), + [anon_sym_alias] = ACTIONS(2412), + [anon_sym_let] = ACTIONS(2412), + [anon_sym_let_DASHenv] = ACTIONS(2412), + [anon_sym_mut] = ACTIONS(2412), + [anon_sym_const] = ACTIONS(2412), + [aux_sym_cmd_identifier_token1] = ACTIONS(2412), + [aux_sym_cmd_identifier_token2] = ACTIONS(2412), + [aux_sym_cmd_identifier_token3] = ACTIONS(2412), + [aux_sym_cmd_identifier_token4] = ACTIONS(2412), + [aux_sym_cmd_identifier_token5] = ACTIONS(2412), + [aux_sym_cmd_identifier_token6] = ACTIONS(2412), + [aux_sym_cmd_identifier_token7] = ACTIONS(2412), + [aux_sym_cmd_identifier_token8] = ACTIONS(2412), + [aux_sym_cmd_identifier_token9] = ACTIONS(2412), + [aux_sym_cmd_identifier_token10] = ACTIONS(2412), + [aux_sym_cmd_identifier_token11] = ACTIONS(2412), + [aux_sym_cmd_identifier_token12] = ACTIONS(2412), + [aux_sym_cmd_identifier_token13] = ACTIONS(2412), + [aux_sym_cmd_identifier_token14] = ACTIONS(2412), + [aux_sym_cmd_identifier_token15] = ACTIONS(2412), + [aux_sym_cmd_identifier_token16] = ACTIONS(2412), + [aux_sym_cmd_identifier_token17] = ACTIONS(2412), + [aux_sym_cmd_identifier_token18] = ACTIONS(2412), + [aux_sym_cmd_identifier_token19] = ACTIONS(2412), + [aux_sym_cmd_identifier_token20] = ACTIONS(2412), + [aux_sym_cmd_identifier_token21] = ACTIONS(2412), + [aux_sym_cmd_identifier_token22] = ACTIONS(2412), + [aux_sym_cmd_identifier_token23] = ACTIONS(2412), + [aux_sym_cmd_identifier_token24] = ACTIONS(2412), + [aux_sym_cmd_identifier_token25] = ACTIONS(2412), + [aux_sym_cmd_identifier_token26] = ACTIONS(2412), + [aux_sym_cmd_identifier_token27] = ACTIONS(2412), + [aux_sym_cmd_identifier_token28] = ACTIONS(2412), + [aux_sym_cmd_identifier_token29] = ACTIONS(2412), + [aux_sym_cmd_identifier_token30] = ACTIONS(2412), + [aux_sym_cmd_identifier_token31] = ACTIONS(2412), + [aux_sym_cmd_identifier_token32] = ACTIONS(2412), + [aux_sym_cmd_identifier_token33] = ACTIONS(2412), + [aux_sym_cmd_identifier_token34] = ACTIONS(2412), + [aux_sym_cmd_identifier_token35] = ACTIONS(2412), + [aux_sym_cmd_identifier_token36] = ACTIONS(2412), + [anon_sym_true] = ACTIONS(2414), + [anon_sym_false] = ACTIONS(2414), + [anon_sym_null] = ACTIONS(2414), + [aux_sym_cmd_identifier_token38] = ACTIONS(2412), + [aux_sym_cmd_identifier_token39] = ACTIONS(2414), + [aux_sym_cmd_identifier_token40] = ACTIONS(2414), + [anon_sym_def] = ACTIONS(2412), + [anon_sym_export_DASHenv] = ACTIONS(2412), + [anon_sym_extern] = ACTIONS(2412), + [anon_sym_module] = ACTIONS(2412), + [anon_sym_use] = ACTIONS(2412), + [anon_sym_LPAREN] = ACTIONS(2414), + [anon_sym_DOLLAR] = ACTIONS(2414), + [anon_sym_error] = ACTIONS(2412), + [anon_sym_list] = ACTIONS(2412), + [anon_sym_DASH] = ACTIONS(2412), + [anon_sym_break] = ACTIONS(2412), + [anon_sym_continue] = ACTIONS(2412), + [anon_sym_for] = ACTIONS(2412), + [anon_sym_in] = ACTIONS(2412), + [anon_sym_loop] = ACTIONS(2412), + [anon_sym_make] = ACTIONS(2412), + [anon_sym_while] = ACTIONS(2412), + [anon_sym_do] = ACTIONS(2412), + [anon_sym_if] = ACTIONS(2412), + [anon_sym_else] = ACTIONS(2412), + [anon_sym_match] = ACTIONS(2412), + [anon_sym_RBRACE] = ACTIONS(2414), + [anon_sym_try] = ACTIONS(2412), + [anon_sym_catch] = ACTIONS(2412), + [anon_sym_return] = ACTIONS(2412), + [anon_sym_source] = ACTIONS(2412), + [anon_sym_source_DASHenv] = ACTIONS(2412), + [anon_sym_register] = ACTIONS(2412), + [anon_sym_hide] = ACTIONS(2412), + [anon_sym_hide_DASHenv] = ACTIONS(2412), + [anon_sym_overlay] = ACTIONS(2412), + [anon_sym_new] = ACTIONS(2412), + [anon_sym_as] = ACTIONS(2412), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2414), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2414), + [aux_sym__val_number_decimal_token1] = ACTIONS(2412), + [aux_sym__val_number_decimal_token2] = ACTIONS(2414), + [aux_sym__val_number_decimal_token3] = ACTIONS(2414), + [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [aux_sym__val_number_token1] = ACTIONS(2414), + [aux_sym__val_number_token2] = ACTIONS(2414), + [aux_sym__val_number_token3] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym__str_single_quotes] = ACTIONS(2414), + [sym__str_back_ticks] = ACTIONS(2414), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2414), + [anon_sym_PLUS] = ACTIONS(2412), [anon_sym_POUND] = ACTIONS(247), }, [617] = { [sym_comment] = STATE(617), - [anon_sym_export] = ACTIONS(2281), - [anon_sym_alias] = ACTIONS(2281), - [anon_sym_let] = ACTIONS(2281), - [anon_sym_let_DASHenv] = ACTIONS(2281), - [anon_sym_mut] = ACTIONS(2281), - [anon_sym_const] = ACTIONS(2281), - [aux_sym_cmd_identifier_token1] = ACTIONS(2281), - [aux_sym_cmd_identifier_token2] = ACTIONS(2281), - [aux_sym_cmd_identifier_token3] = ACTIONS(2281), - [aux_sym_cmd_identifier_token4] = ACTIONS(2281), - [aux_sym_cmd_identifier_token5] = ACTIONS(2281), - [aux_sym_cmd_identifier_token6] = ACTIONS(2281), - [aux_sym_cmd_identifier_token7] = ACTIONS(2281), - [aux_sym_cmd_identifier_token8] = ACTIONS(2281), - [aux_sym_cmd_identifier_token9] = ACTIONS(2281), - [aux_sym_cmd_identifier_token10] = ACTIONS(2281), - [aux_sym_cmd_identifier_token11] = ACTIONS(2281), - [aux_sym_cmd_identifier_token12] = ACTIONS(2281), - [aux_sym_cmd_identifier_token13] = ACTIONS(2281), - [aux_sym_cmd_identifier_token14] = ACTIONS(2281), - [aux_sym_cmd_identifier_token15] = ACTIONS(2281), - [aux_sym_cmd_identifier_token16] = ACTIONS(2281), - [aux_sym_cmd_identifier_token17] = ACTIONS(2281), - [aux_sym_cmd_identifier_token18] = ACTIONS(2281), - [aux_sym_cmd_identifier_token19] = ACTIONS(2281), - [aux_sym_cmd_identifier_token20] = ACTIONS(2281), - [aux_sym_cmd_identifier_token21] = ACTIONS(2281), - [aux_sym_cmd_identifier_token22] = ACTIONS(2281), - [aux_sym_cmd_identifier_token23] = ACTIONS(2281), - [aux_sym_cmd_identifier_token24] = ACTIONS(2281), - [aux_sym_cmd_identifier_token25] = ACTIONS(2281), - [aux_sym_cmd_identifier_token26] = ACTIONS(2281), - [aux_sym_cmd_identifier_token27] = ACTIONS(2281), - [aux_sym_cmd_identifier_token28] = ACTIONS(2281), - [aux_sym_cmd_identifier_token29] = ACTIONS(2281), - [aux_sym_cmd_identifier_token30] = ACTIONS(2281), - [aux_sym_cmd_identifier_token31] = ACTIONS(2281), - [aux_sym_cmd_identifier_token32] = ACTIONS(2281), - [aux_sym_cmd_identifier_token33] = ACTIONS(2281), - [aux_sym_cmd_identifier_token34] = ACTIONS(2281), - [aux_sym_cmd_identifier_token35] = ACTIONS(2281), - [aux_sym_cmd_identifier_token36] = ACTIONS(2281), - [anon_sym_true] = ACTIONS(2283), - [anon_sym_false] = ACTIONS(2283), - [anon_sym_null] = ACTIONS(2283), - [aux_sym_cmd_identifier_token38] = ACTIONS(2281), - [aux_sym_cmd_identifier_token39] = ACTIONS(2283), - [aux_sym_cmd_identifier_token40] = ACTIONS(2283), - [anon_sym_def] = ACTIONS(2281), - [anon_sym_export_DASHenv] = ACTIONS(2281), - [anon_sym_extern] = ACTIONS(2281), - [anon_sym_module] = ACTIONS(2281), - [anon_sym_use] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(2283), - [anon_sym_DOLLAR] = ACTIONS(2283), - [anon_sym_error] = ACTIONS(2281), - [anon_sym_list] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_break] = ACTIONS(2281), - [anon_sym_continue] = ACTIONS(2281), - [anon_sym_for] = ACTIONS(2281), - [anon_sym_in] = ACTIONS(2281), - [anon_sym_loop] = ACTIONS(2281), - [anon_sym_make] = ACTIONS(2281), - [anon_sym_while] = ACTIONS(2281), - [anon_sym_do] = ACTIONS(2281), - [anon_sym_if] = ACTIONS(2281), - [anon_sym_else] = ACTIONS(2281), - [anon_sym_match] = ACTIONS(2281), - [anon_sym_RBRACE] = ACTIONS(2283), - [anon_sym_try] = ACTIONS(2281), - [anon_sym_catch] = ACTIONS(2281), - [anon_sym_return] = ACTIONS(2281), - [anon_sym_source] = ACTIONS(2281), - [anon_sym_source_DASHenv] = ACTIONS(2281), - [anon_sym_register] = ACTIONS(2281), - [anon_sym_hide] = ACTIONS(2281), - [anon_sym_hide_DASHenv] = ACTIONS(2281), - [anon_sym_overlay] = ACTIONS(2281), - [anon_sym_new] = ACTIONS(2281), - [anon_sym_as] = ACTIONS(2281), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2283), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2283), - [aux_sym__val_number_decimal_token1] = ACTIONS(2281), - [aux_sym__val_number_decimal_token2] = ACTIONS(2283), - [aux_sym__val_number_decimal_token3] = ACTIONS(2283), - [aux_sym__val_number_decimal_token4] = ACTIONS(2283), - [aux_sym__val_number_token1] = ACTIONS(2283), - [aux_sym__val_number_token2] = ACTIONS(2283), - [aux_sym__val_number_token3] = ACTIONS(2283), - [anon_sym_DQUOTE] = ACTIONS(2283), - [sym__str_single_quotes] = ACTIONS(2283), - [sym__str_back_ticks] = ACTIONS(2283), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2283), - [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_alias] = ACTIONS(1044), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_let_DASHenv] = ACTIONS(1044), + [anon_sym_mut] = ACTIONS(1044), + [anon_sym_const] = ACTIONS(1044), + [aux_sym_cmd_identifier_token1] = ACTIONS(1044), + [aux_sym_cmd_identifier_token2] = ACTIONS(1044), + [aux_sym_cmd_identifier_token3] = ACTIONS(1044), + [aux_sym_cmd_identifier_token4] = ACTIONS(1044), + [aux_sym_cmd_identifier_token5] = ACTIONS(1044), + [aux_sym_cmd_identifier_token6] = ACTIONS(1044), + [aux_sym_cmd_identifier_token7] = ACTIONS(1044), + [aux_sym_cmd_identifier_token8] = ACTIONS(1044), + [aux_sym_cmd_identifier_token9] = ACTIONS(1044), + [aux_sym_cmd_identifier_token10] = ACTIONS(1044), + [aux_sym_cmd_identifier_token11] = ACTIONS(1044), + [aux_sym_cmd_identifier_token12] = ACTIONS(1044), + [aux_sym_cmd_identifier_token13] = ACTIONS(1044), + [aux_sym_cmd_identifier_token14] = ACTIONS(1044), + [aux_sym_cmd_identifier_token15] = ACTIONS(1044), + [aux_sym_cmd_identifier_token16] = ACTIONS(1044), + [aux_sym_cmd_identifier_token17] = ACTIONS(1044), + [aux_sym_cmd_identifier_token18] = ACTIONS(1044), + [aux_sym_cmd_identifier_token19] = ACTIONS(1044), + [aux_sym_cmd_identifier_token20] = ACTIONS(1044), + [aux_sym_cmd_identifier_token21] = ACTIONS(1044), + [aux_sym_cmd_identifier_token22] = ACTIONS(1044), + [aux_sym_cmd_identifier_token23] = ACTIONS(1044), + [aux_sym_cmd_identifier_token24] = ACTIONS(1044), + [aux_sym_cmd_identifier_token25] = ACTIONS(1044), + [aux_sym_cmd_identifier_token26] = ACTIONS(1044), + [aux_sym_cmd_identifier_token27] = ACTIONS(1044), + [aux_sym_cmd_identifier_token28] = ACTIONS(1044), + [aux_sym_cmd_identifier_token29] = ACTIONS(1044), + [aux_sym_cmd_identifier_token30] = ACTIONS(1044), + [aux_sym_cmd_identifier_token31] = ACTIONS(1044), + [aux_sym_cmd_identifier_token32] = ACTIONS(1044), + [aux_sym_cmd_identifier_token33] = ACTIONS(1044), + [aux_sym_cmd_identifier_token34] = ACTIONS(1044), + [aux_sym_cmd_identifier_token35] = ACTIONS(1044), + [aux_sym_cmd_identifier_token36] = ACTIONS(1044), + [anon_sym_true] = ACTIONS(1046), + [anon_sym_false] = ACTIONS(1046), + [anon_sym_null] = ACTIONS(1046), + [aux_sym_cmd_identifier_token38] = ACTIONS(1044), + [aux_sym_cmd_identifier_token39] = ACTIONS(1046), + [aux_sym_cmd_identifier_token40] = ACTIONS(1046), + [anon_sym_def] = ACTIONS(1044), + [anon_sym_export_DASHenv] = ACTIONS(1044), + [anon_sym_extern] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_use] = ACTIONS(1044), + [anon_sym_LPAREN] = ACTIONS(1046), + [anon_sym_DOLLAR] = ACTIONS(1046), + [anon_sym_error] = ACTIONS(1044), + [anon_sym_list] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_break] = ACTIONS(1044), + [anon_sym_continue] = ACTIONS(1044), + [anon_sym_for] = ACTIONS(1044), + [anon_sym_in] = ACTIONS(1044), + [anon_sym_loop] = ACTIONS(1044), + [anon_sym_make] = ACTIONS(1044), + [anon_sym_while] = ACTIONS(1044), + [anon_sym_do] = ACTIONS(1044), + [anon_sym_if] = ACTIONS(1044), + [anon_sym_else] = ACTIONS(1044), + [anon_sym_match] = ACTIONS(1044), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_try] = ACTIONS(1044), + [anon_sym_catch] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_source] = ACTIONS(1044), + [anon_sym_source_DASHenv] = ACTIONS(1044), + [anon_sym_register] = ACTIONS(1044), + [anon_sym_hide] = ACTIONS(1044), + [anon_sym_hide_DASHenv] = ACTIONS(1044), + [anon_sym_overlay] = ACTIONS(1044), + [anon_sym_new] = ACTIONS(1044), + [anon_sym_as] = ACTIONS(1044), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1046), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1046), + [aux_sym__val_number_decimal_token1] = ACTIONS(1044), + [aux_sym__val_number_decimal_token2] = ACTIONS(1046), + [aux_sym__val_number_decimal_token3] = ACTIONS(1046), + [aux_sym__val_number_decimal_token4] = ACTIONS(1046), + [aux_sym__val_number_token1] = ACTIONS(1046), + [aux_sym__val_number_token2] = ACTIONS(1046), + [aux_sym__val_number_token3] = ACTIONS(1046), + [anon_sym_DQUOTE] = ACTIONS(1046), + [sym__str_single_quotes] = ACTIONS(1046), + [sym__str_back_ticks] = ACTIONS(1046), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1046), + [anon_sym_PLUS] = ACTIONS(1044), [anon_sym_POUND] = ACTIONS(247), }, [618] = { [sym_comment] = STATE(618), - [anon_sym_export] = ACTIONS(2425), - [anon_sym_alias] = ACTIONS(2425), - [anon_sym_let] = ACTIONS(2425), - [anon_sym_let_DASHenv] = ACTIONS(2425), - [anon_sym_mut] = ACTIONS(2425), - [anon_sym_const] = ACTIONS(2425), - [aux_sym_cmd_identifier_token1] = ACTIONS(2425), - [aux_sym_cmd_identifier_token2] = ACTIONS(2425), - [aux_sym_cmd_identifier_token3] = ACTIONS(2425), - [aux_sym_cmd_identifier_token4] = ACTIONS(2425), - [aux_sym_cmd_identifier_token5] = ACTIONS(2425), - [aux_sym_cmd_identifier_token6] = ACTIONS(2425), - [aux_sym_cmd_identifier_token7] = ACTIONS(2425), - [aux_sym_cmd_identifier_token8] = ACTIONS(2425), - [aux_sym_cmd_identifier_token9] = ACTIONS(2425), - [aux_sym_cmd_identifier_token10] = ACTIONS(2425), - [aux_sym_cmd_identifier_token11] = ACTIONS(2425), - [aux_sym_cmd_identifier_token12] = ACTIONS(2425), - [aux_sym_cmd_identifier_token13] = ACTIONS(2425), - [aux_sym_cmd_identifier_token14] = ACTIONS(2425), - [aux_sym_cmd_identifier_token15] = ACTIONS(2425), - [aux_sym_cmd_identifier_token16] = ACTIONS(2425), - [aux_sym_cmd_identifier_token17] = ACTIONS(2425), - [aux_sym_cmd_identifier_token18] = ACTIONS(2425), - [aux_sym_cmd_identifier_token19] = ACTIONS(2425), - [aux_sym_cmd_identifier_token20] = ACTIONS(2425), - [aux_sym_cmd_identifier_token21] = ACTIONS(2425), - [aux_sym_cmd_identifier_token22] = ACTIONS(2425), - [aux_sym_cmd_identifier_token23] = ACTIONS(2425), - [aux_sym_cmd_identifier_token24] = ACTIONS(2425), - [aux_sym_cmd_identifier_token25] = ACTIONS(2425), - [aux_sym_cmd_identifier_token26] = ACTIONS(2425), - [aux_sym_cmd_identifier_token27] = ACTIONS(2425), - [aux_sym_cmd_identifier_token28] = ACTIONS(2425), - [aux_sym_cmd_identifier_token29] = ACTIONS(2425), - [aux_sym_cmd_identifier_token30] = ACTIONS(2425), - [aux_sym_cmd_identifier_token31] = ACTIONS(2425), - [aux_sym_cmd_identifier_token32] = ACTIONS(2425), - [aux_sym_cmd_identifier_token33] = ACTIONS(2425), - [aux_sym_cmd_identifier_token34] = ACTIONS(2425), - [aux_sym_cmd_identifier_token35] = ACTIONS(2425), - [aux_sym_cmd_identifier_token36] = ACTIONS(2425), - [anon_sym_true] = ACTIONS(2427), - [anon_sym_false] = ACTIONS(2427), - [anon_sym_null] = ACTIONS(2427), - [aux_sym_cmd_identifier_token38] = ACTIONS(2425), - [aux_sym_cmd_identifier_token39] = ACTIONS(2427), - [aux_sym_cmd_identifier_token40] = ACTIONS(2427), - [anon_sym_def] = ACTIONS(2425), - [anon_sym_export_DASHenv] = ACTIONS(2425), - [anon_sym_extern] = ACTIONS(2425), - [anon_sym_module] = ACTIONS(2425), - [anon_sym_use] = ACTIONS(2425), - [anon_sym_LPAREN] = ACTIONS(2427), - [anon_sym_DOLLAR] = ACTIONS(2427), - [anon_sym_error] = ACTIONS(2425), - [anon_sym_list] = ACTIONS(2425), - [anon_sym_DASH] = ACTIONS(2425), - [anon_sym_break] = ACTIONS(2425), - [anon_sym_continue] = ACTIONS(2425), - [anon_sym_for] = ACTIONS(2425), - [anon_sym_in] = ACTIONS(2425), - [anon_sym_loop] = ACTIONS(2425), - [anon_sym_make] = ACTIONS(2425), - [anon_sym_while] = ACTIONS(2425), - [anon_sym_do] = ACTIONS(2425), - [anon_sym_if] = ACTIONS(2425), - [anon_sym_else] = ACTIONS(2425), - [anon_sym_match] = ACTIONS(2425), - [anon_sym_RBRACE] = ACTIONS(2427), - [anon_sym_try] = ACTIONS(2425), - [anon_sym_catch] = ACTIONS(2425), - [anon_sym_return] = ACTIONS(2425), - [anon_sym_source] = ACTIONS(2425), - [anon_sym_source_DASHenv] = ACTIONS(2425), - [anon_sym_register] = ACTIONS(2425), - [anon_sym_hide] = ACTIONS(2425), - [anon_sym_hide_DASHenv] = ACTIONS(2425), - [anon_sym_overlay] = ACTIONS(2425), - [anon_sym_new] = ACTIONS(2425), - [anon_sym_as] = ACTIONS(2425), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2427), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2427), - [aux_sym__val_number_decimal_token1] = ACTIONS(2425), - [aux_sym__val_number_decimal_token2] = ACTIONS(2427), - [aux_sym__val_number_decimal_token3] = ACTIONS(2427), - [aux_sym__val_number_decimal_token4] = ACTIONS(2427), - [aux_sym__val_number_token1] = ACTIONS(2427), - [aux_sym__val_number_token2] = ACTIONS(2427), - [aux_sym__val_number_token3] = ACTIONS(2427), - [anon_sym_DQUOTE] = ACTIONS(2427), - [sym__str_single_quotes] = ACTIONS(2427), - [sym__str_back_ticks] = ACTIONS(2427), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2427), - [anon_sym_PLUS] = ACTIONS(2425), + [anon_sym_export] = ACTIONS(1076), + [anon_sym_alias] = ACTIONS(1076), + [anon_sym_let] = ACTIONS(1076), + [anon_sym_let_DASHenv] = ACTIONS(1076), + [anon_sym_mut] = ACTIONS(1076), + [anon_sym_const] = ACTIONS(1076), + [aux_sym_cmd_identifier_token1] = ACTIONS(1076), + [aux_sym_cmd_identifier_token2] = ACTIONS(1076), + [aux_sym_cmd_identifier_token3] = ACTIONS(1076), + [aux_sym_cmd_identifier_token4] = ACTIONS(1076), + [aux_sym_cmd_identifier_token5] = ACTIONS(1076), + [aux_sym_cmd_identifier_token6] = ACTIONS(1076), + [aux_sym_cmd_identifier_token7] = ACTIONS(1076), + [aux_sym_cmd_identifier_token8] = ACTIONS(1076), + [aux_sym_cmd_identifier_token9] = ACTIONS(1076), + [aux_sym_cmd_identifier_token10] = ACTIONS(1076), + [aux_sym_cmd_identifier_token11] = ACTIONS(1076), + [aux_sym_cmd_identifier_token12] = ACTIONS(1076), + [aux_sym_cmd_identifier_token13] = ACTIONS(1076), + [aux_sym_cmd_identifier_token14] = ACTIONS(1076), + [aux_sym_cmd_identifier_token15] = ACTIONS(1076), + [aux_sym_cmd_identifier_token16] = ACTIONS(1076), + [aux_sym_cmd_identifier_token17] = ACTIONS(1076), + [aux_sym_cmd_identifier_token18] = ACTIONS(1076), + [aux_sym_cmd_identifier_token19] = ACTIONS(1076), + [aux_sym_cmd_identifier_token20] = ACTIONS(1076), + [aux_sym_cmd_identifier_token21] = ACTIONS(1076), + [aux_sym_cmd_identifier_token22] = ACTIONS(1076), + [aux_sym_cmd_identifier_token23] = ACTIONS(1076), + [aux_sym_cmd_identifier_token24] = ACTIONS(1076), + [aux_sym_cmd_identifier_token25] = ACTIONS(1076), + [aux_sym_cmd_identifier_token26] = ACTIONS(1076), + [aux_sym_cmd_identifier_token27] = ACTIONS(1076), + [aux_sym_cmd_identifier_token28] = ACTIONS(1076), + [aux_sym_cmd_identifier_token29] = ACTIONS(1076), + [aux_sym_cmd_identifier_token30] = ACTIONS(1076), + [aux_sym_cmd_identifier_token31] = ACTIONS(1076), + [aux_sym_cmd_identifier_token32] = ACTIONS(1076), + [aux_sym_cmd_identifier_token33] = ACTIONS(1076), + [aux_sym_cmd_identifier_token34] = ACTIONS(1076), + [aux_sym_cmd_identifier_token35] = ACTIONS(1076), + [aux_sym_cmd_identifier_token36] = ACTIONS(1076), + [anon_sym_true] = ACTIONS(1078), + [anon_sym_false] = ACTIONS(1078), + [anon_sym_null] = ACTIONS(1078), + [aux_sym_cmd_identifier_token38] = ACTIONS(1076), + [aux_sym_cmd_identifier_token39] = ACTIONS(1078), + [aux_sym_cmd_identifier_token40] = ACTIONS(1078), + [anon_sym_def] = ACTIONS(1076), + [anon_sym_export_DASHenv] = ACTIONS(1076), + [anon_sym_extern] = ACTIONS(1076), + [anon_sym_module] = ACTIONS(1076), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_DOLLAR] = ACTIONS(1078), + [anon_sym_error] = ACTIONS(1076), + [anon_sym_list] = ACTIONS(1076), + [anon_sym_DASH] = ACTIONS(1076), + [anon_sym_break] = ACTIONS(1076), + [anon_sym_continue] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1076), + [anon_sym_in] = ACTIONS(1076), + [anon_sym_loop] = ACTIONS(1076), + [anon_sym_make] = ACTIONS(1076), + [anon_sym_while] = ACTIONS(1076), + [anon_sym_do] = ACTIONS(1076), + [anon_sym_if] = ACTIONS(1076), + [anon_sym_else] = ACTIONS(1076), + [anon_sym_match] = ACTIONS(1076), + [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_try] = ACTIONS(1076), + [anon_sym_catch] = ACTIONS(1076), + [anon_sym_return] = ACTIONS(1076), + [anon_sym_source] = ACTIONS(1076), + [anon_sym_source_DASHenv] = ACTIONS(1076), + [anon_sym_register] = ACTIONS(1076), + [anon_sym_hide] = ACTIONS(1076), + [anon_sym_hide_DASHenv] = ACTIONS(1076), + [anon_sym_overlay] = ACTIONS(1076), + [anon_sym_new] = ACTIONS(1076), + [anon_sym_as] = ACTIONS(1076), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1078), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1078), + [aux_sym__val_number_decimal_token1] = ACTIONS(1076), + [aux_sym__val_number_decimal_token2] = ACTIONS(1078), + [aux_sym__val_number_decimal_token3] = ACTIONS(1078), + [aux_sym__val_number_decimal_token4] = ACTIONS(1078), + [aux_sym__val_number_token1] = ACTIONS(1078), + [aux_sym__val_number_token2] = ACTIONS(1078), + [aux_sym__val_number_token3] = ACTIONS(1078), + [anon_sym_DQUOTE] = ACTIONS(1078), + [sym__str_single_quotes] = ACTIONS(1078), + [sym__str_back_ticks] = ACTIONS(1078), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1076), [anon_sym_POUND] = ACTIONS(247), }, [619] = { [sym_comment] = STATE(619), - [anon_sym_export] = ACTIONS(2429), - [anon_sym_alias] = ACTIONS(2429), - [anon_sym_let] = ACTIONS(2429), - [anon_sym_let_DASHenv] = ACTIONS(2429), - [anon_sym_mut] = ACTIONS(2429), - [anon_sym_const] = ACTIONS(2429), - [aux_sym_cmd_identifier_token1] = ACTIONS(2429), - [aux_sym_cmd_identifier_token2] = ACTIONS(2429), - [aux_sym_cmd_identifier_token3] = ACTIONS(2429), - [aux_sym_cmd_identifier_token4] = ACTIONS(2429), - [aux_sym_cmd_identifier_token5] = ACTIONS(2429), - [aux_sym_cmd_identifier_token6] = ACTIONS(2429), - [aux_sym_cmd_identifier_token7] = ACTIONS(2429), - [aux_sym_cmd_identifier_token8] = ACTIONS(2429), - [aux_sym_cmd_identifier_token9] = ACTIONS(2429), - [aux_sym_cmd_identifier_token10] = ACTIONS(2429), - [aux_sym_cmd_identifier_token11] = ACTIONS(2429), - [aux_sym_cmd_identifier_token12] = ACTIONS(2429), - [aux_sym_cmd_identifier_token13] = ACTIONS(2429), - [aux_sym_cmd_identifier_token14] = ACTIONS(2429), - [aux_sym_cmd_identifier_token15] = ACTIONS(2429), - [aux_sym_cmd_identifier_token16] = ACTIONS(2429), - [aux_sym_cmd_identifier_token17] = ACTIONS(2429), - [aux_sym_cmd_identifier_token18] = ACTIONS(2429), - [aux_sym_cmd_identifier_token19] = ACTIONS(2429), - [aux_sym_cmd_identifier_token20] = ACTIONS(2429), - [aux_sym_cmd_identifier_token21] = ACTIONS(2429), - [aux_sym_cmd_identifier_token22] = ACTIONS(2429), - [aux_sym_cmd_identifier_token23] = ACTIONS(2429), - [aux_sym_cmd_identifier_token24] = ACTIONS(2429), - [aux_sym_cmd_identifier_token25] = ACTIONS(2429), - [aux_sym_cmd_identifier_token26] = ACTIONS(2429), - [aux_sym_cmd_identifier_token27] = ACTIONS(2429), - [aux_sym_cmd_identifier_token28] = ACTIONS(2429), - [aux_sym_cmd_identifier_token29] = ACTIONS(2429), - [aux_sym_cmd_identifier_token30] = ACTIONS(2429), - [aux_sym_cmd_identifier_token31] = ACTIONS(2429), - [aux_sym_cmd_identifier_token32] = ACTIONS(2429), - [aux_sym_cmd_identifier_token33] = ACTIONS(2429), - [aux_sym_cmd_identifier_token34] = ACTIONS(2429), - [aux_sym_cmd_identifier_token35] = ACTIONS(2429), - [aux_sym_cmd_identifier_token36] = ACTIONS(2429), - [anon_sym_true] = ACTIONS(2431), - [anon_sym_false] = ACTIONS(2431), - [anon_sym_null] = ACTIONS(2431), - [aux_sym_cmd_identifier_token38] = ACTIONS(2429), - [aux_sym_cmd_identifier_token39] = ACTIONS(2431), - [aux_sym_cmd_identifier_token40] = ACTIONS(2431), - [anon_sym_def] = ACTIONS(2429), - [anon_sym_export_DASHenv] = ACTIONS(2429), - [anon_sym_extern] = ACTIONS(2429), - [anon_sym_module] = ACTIONS(2429), - [anon_sym_use] = ACTIONS(2429), - [anon_sym_LPAREN] = ACTIONS(2431), - [anon_sym_DOLLAR] = ACTIONS(2431), - [anon_sym_error] = ACTIONS(2429), - [anon_sym_list] = ACTIONS(2429), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_break] = ACTIONS(2429), - [anon_sym_continue] = ACTIONS(2429), - [anon_sym_for] = ACTIONS(2429), - [anon_sym_in] = ACTIONS(2429), - [anon_sym_loop] = ACTIONS(2429), - [anon_sym_make] = ACTIONS(2429), - [anon_sym_while] = ACTIONS(2429), - [anon_sym_do] = ACTIONS(2429), - [anon_sym_if] = ACTIONS(2429), - [anon_sym_else] = ACTIONS(2429), - [anon_sym_match] = ACTIONS(2429), - [anon_sym_RBRACE] = ACTIONS(2431), - [anon_sym_try] = ACTIONS(2429), - [anon_sym_catch] = ACTIONS(2429), - [anon_sym_return] = ACTIONS(2429), - [anon_sym_source] = ACTIONS(2429), - [anon_sym_source_DASHenv] = ACTIONS(2429), - [anon_sym_register] = ACTIONS(2429), - [anon_sym_hide] = ACTIONS(2429), - [anon_sym_hide_DASHenv] = ACTIONS(2429), - [anon_sym_overlay] = ACTIONS(2429), - [anon_sym_new] = ACTIONS(2429), - [anon_sym_as] = ACTIONS(2429), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2431), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2431), - [aux_sym__val_number_decimal_token1] = ACTIONS(2429), - [aux_sym__val_number_decimal_token2] = ACTIONS(2431), - [aux_sym__val_number_decimal_token3] = ACTIONS(2431), - [aux_sym__val_number_decimal_token4] = ACTIONS(2431), - [aux_sym__val_number_token1] = ACTIONS(2431), - [aux_sym__val_number_token2] = ACTIONS(2431), - [aux_sym__val_number_token3] = ACTIONS(2431), - [anon_sym_DQUOTE] = ACTIONS(2431), - [sym__str_single_quotes] = ACTIONS(2431), - [sym__str_back_ticks] = ACTIONS(2431), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2431), - [anon_sym_PLUS] = ACTIONS(2429), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_alias] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_let_DASHenv] = ACTIONS(1048), + [anon_sym_mut] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1048), + [aux_sym_cmd_identifier_token1] = ACTIONS(1048), + [aux_sym_cmd_identifier_token2] = ACTIONS(1048), + [aux_sym_cmd_identifier_token3] = ACTIONS(1048), + [aux_sym_cmd_identifier_token4] = ACTIONS(1048), + [aux_sym_cmd_identifier_token5] = ACTIONS(1048), + [aux_sym_cmd_identifier_token6] = ACTIONS(1048), + [aux_sym_cmd_identifier_token7] = ACTIONS(1048), + [aux_sym_cmd_identifier_token8] = ACTIONS(1048), + [aux_sym_cmd_identifier_token9] = ACTIONS(1048), + [aux_sym_cmd_identifier_token10] = ACTIONS(1048), + [aux_sym_cmd_identifier_token11] = ACTIONS(1048), + [aux_sym_cmd_identifier_token12] = ACTIONS(1048), + [aux_sym_cmd_identifier_token13] = ACTIONS(1048), + [aux_sym_cmd_identifier_token14] = ACTIONS(1048), + [aux_sym_cmd_identifier_token15] = ACTIONS(1048), + [aux_sym_cmd_identifier_token16] = ACTIONS(1048), + [aux_sym_cmd_identifier_token17] = ACTIONS(1048), + [aux_sym_cmd_identifier_token18] = ACTIONS(1048), + [aux_sym_cmd_identifier_token19] = ACTIONS(1048), + [aux_sym_cmd_identifier_token20] = ACTIONS(1048), + [aux_sym_cmd_identifier_token21] = ACTIONS(1048), + [aux_sym_cmd_identifier_token22] = ACTIONS(1048), + [aux_sym_cmd_identifier_token23] = ACTIONS(1048), + [aux_sym_cmd_identifier_token24] = ACTIONS(1048), + [aux_sym_cmd_identifier_token25] = ACTIONS(1048), + [aux_sym_cmd_identifier_token26] = ACTIONS(1048), + [aux_sym_cmd_identifier_token27] = ACTIONS(1048), + [aux_sym_cmd_identifier_token28] = ACTIONS(1048), + [aux_sym_cmd_identifier_token29] = ACTIONS(1048), + [aux_sym_cmd_identifier_token30] = ACTIONS(1048), + [aux_sym_cmd_identifier_token31] = ACTIONS(1048), + [aux_sym_cmd_identifier_token32] = ACTIONS(1048), + [aux_sym_cmd_identifier_token33] = ACTIONS(1048), + [aux_sym_cmd_identifier_token34] = ACTIONS(1048), + [aux_sym_cmd_identifier_token35] = ACTIONS(1048), + [aux_sym_cmd_identifier_token36] = ACTIONS(1048), + [anon_sym_true] = ACTIONS(1050), + [anon_sym_false] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1050), + [aux_sym_cmd_identifier_token38] = ACTIONS(1048), + [aux_sym_cmd_identifier_token39] = ACTIONS(1050), + [aux_sym_cmd_identifier_token40] = ACTIONS(1050), + [anon_sym_def] = ACTIONS(1048), + [anon_sym_export_DASHenv] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_use] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_error] = ACTIONS(1048), + [anon_sym_list] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_in] = ACTIONS(1048), + [anon_sym_loop] = ACTIONS(1048), + [anon_sym_make] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_else] = ACTIONS(1048), + [anon_sym_match] = ACTIONS(1048), + [anon_sym_RBRACE] = ACTIONS(1050), + [anon_sym_try] = ACTIONS(1048), + [anon_sym_catch] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_source] = ACTIONS(1048), + [anon_sym_source_DASHenv] = ACTIONS(1048), + [anon_sym_register] = ACTIONS(1048), + [anon_sym_hide] = ACTIONS(1048), + [anon_sym_hide_DASHenv] = ACTIONS(1048), + [anon_sym_overlay] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1048), + [anon_sym_as] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1050), + [aux_sym__val_number_decimal_token1] = ACTIONS(1048), + [aux_sym__val_number_decimal_token2] = ACTIONS(1050), + [aux_sym__val_number_decimal_token3] = ACTIONS(1050), + [aux_sym__val_number_decimal_token4] = ACTIONS(1050), + [aux_sym__val_number_token1] = ACTIONS(1050), + [aux_sym__val_number_token2] = ACTIONS(1050), + [aux_sym__val_number_token3] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym__str_single_quotes] = ACTIONS(1050), + [sym__str_back_ticks] = ACTIONS(1050), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1048), [anon_sym_POUND] = ACTIONS(247), }, [620] = { [sym_comment] = STATE(620), - [anon_sym_export] = ACTIONS(2299), - [anon_sym_alias] = ACTIONS(2299), - [anon_sym_let] = ACTIONS(2299), - [anon_sym_let_DASHenv] = ACTIONS(2299), - [anon_sym_mut] = ACTIONS(2299), - [anon_sym_const] = ACTIONS(2299), - [aux_sym_cmd_identifier_token1] = ACTIONS(2299), - [aux_sym_cmd_identifier_token2] = ACTIONS(2299), - [aux_sym_cmd_identifier_token3] = ACTIONS(2299), - [aux_sym_cmd_identifier_token4] = ACTIONS(2299), - [aux_sym_cmd_identifier_token5] = ACTIONS(2299), - [aux_sym_cmd_identifier_token6] = ACTIONS(2299), - [aux_sym_cmd_identifier_token7] = ACTIONS(2299), - [aux_sym_cmd_identifier_token8] = ACTIONS(2299), - [aux_sym_cmd_identifier_token9] = ACTIONS(2299), - [aux_sym_cmd_identifier_token10] = ACTIONS(2299), - [aux_sym_cmd_identifier_token11] = ACTIONS(2299), - [aux_sym_cmd_identifier_token12] = ACTIONS(2299), - [aux_sym_cmd_identifier_token13] = ACTIONS(2299), - [aux_sym_cmd_identifier_token14] = ACTIONS(2299), - [aux_sym_cmd_identifier_token15] = ACTIONS(2299), - [aux_sym_cmd_identifier_token16] = ACTIONS(2299), - [aux_sym_cmd_identifier_token17] = ACTIONS(2299), - [aux_sym_cmd_identifier_token18] = ACTIONS(2299), - [aux_sym_cmd_identifier_token19] = ACTIONS(2299), - [aux_sym_cmd_identifier_token20] = ACTIONS(2299), - [aux_sym_cmd_identifier_token21] = ACTIONS(2299), - [aux_sym_cmd_identifier_token22] = ACTIONS(2299), - [aux_sym_cmd_identifier_token23] = ACTIONS(2299), - [aux_sym_cmd_identifier_token24] = ACTIONS(2299), - [aux_sym_cmd_identifier_token25] = ACTIONS(2299), - [aux_sym_cmd_identifier_token26] = ACTIONS(2299), - [aux_sym_cmd_identifier_token27] = ACTIONS(2299), - [aux_sym_cmd_identifier_token28] = ACTIONS(2299), - [aux_sym_cmd_identifier_token29] = ACTIONS(2299), - [aux_sym_cmd_identifier_token30] = ACTIONS(2299), - [aux_sym_cmd_identifier_token31] = ACTIONS(2299), - [aux_sym_cmd_identifier_token32] = ACTIONS(2299), - [aux_sym_cmd_identifier_token33] = ACTIONS(2299), - [aux_sym_cmd_identifier_token34] = ACTIONS(2299), - [aux_sym_cmd_identifier_token35] = ACTIONS(2299), - [aux_sym_cmd_identifier_token36] = ACTIONS(2299), - [anon_sym_true] = ACTIONS(2449), - [anon_sym_false] = ACTIONS(2449), - [anon_sym_null] = ACTIONS(2449), - [aux_sym_cmd_identifier_token38] = ACTIONS(2299), - [aux_sym_cmd_identifier_token39] = ACTIONS(2449), - [aux_sym_cmd_identifier_token40] = ACTIONS(2449), - [anon_sym_def] = ACTIONS(2299), - [anon_sym_export_DASHenv] = ACTIONS(2299), - [anon_sym_extern] = ACTIONS(2299), - [anon_sym_module] = ACTIONS(2299), - [anon_sym_use] = ACTIONS(2299), - [anon_sym_LPAREN] = ACTIONS(2449), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_error] = ACTIONS(2299), - [anon_sym_list] = ACTIONS(2299), - [anon_sym_DASH] = ACTIONS(2299), - [anon_sym_break] = ACTIONS(2299), - [anon_sym_continue] = ACTIONS(2299), - [anon_sym_for] = ACTIONS(2299), - [anon_sym_in] = ACTIONS(2299), - [anon_sym_loop] = ACTIONS(2299), - [anon_sym_make] = ACTIONS(2299), - [anon_sym_while] = ACTIONS(2299), - [anon_sym_do] = ACTIONS(2299), - [anon_sym_if] = ACTIONS(2299), - [anon_sym_else] = ACTIONS(2299), - [anon_sym_match] = ACTIONS(2299), - [anon_sym_RBRACE] = ACTIONS(2449), - [anon_sym_try] = ACTIONS(2299), - [anon_sym_catch] = ACTIONS(2299), - [anon_sym_return] = ACTIONS(2299), - [anon_sym_source] = ACTIONS(2299), - [anon_sym_source_DASHenv] = ACTIONS(2299), - [anon_sym_register] = ACTIONS(2299), - [anon_sym_hide] = ACTIONS(2299), - [anon_sym_hide_DASHenv] = ACTIONS(2299), - [anon_sym_overlay] = ACTIONS(2299), - [anon_sym_new] = ACTIONS(2299), - [anon_sym_as] = ACTIONS(2299), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2449), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2449), - [aux_sym__val_number_decimal_token1] = ACTIONS(2299), - [aux_sym__val_number_decimal_token2] = ACTIONS(2449), - [aux_sym__val_number_decimal_token3] = ACTIONS(2449), - [aux_sym__val_number_decimal_token4] = ACTIONS(2449), - [aux_sym__val_number_token1] = ACTIONS(2449), - [aux_sym__val_number_token2] = ACTIONS(2449), - [aux_sym__val_number_token3] = ACTIONS(2449), - [anon_sym_DQUOTE] = ACTIONS(2449), - [sym__str_single_quotes] = ACTIONS(2449), - [sym__str_back_ticks] = ACTIONS(2449), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2449), - [anon_sym_PLUS] = ACTIONS(2299), + [anon_sym_export] = ACTIONS(2416), + [anon_sym_alias] = ACTIONS(2416), + [anon_sym_let] = ACTIONS(2416), + [anon_sym_let_DASHenv] = ACTIONS(2416), + [anon_sym_mut] = ACTIONS(2416), + [anon_sym_const] = ACTIONS(2416), + [aux_sym_cmd_identifier_token1] = ACTIONS(2416), + [aux_sym_cmd_identifier_token2] = ACTIONS(2416), + [aux_sym_cmd_identifier_token3] = ACTIONS(2416), + [aux_sym_cmd_identifier_token4] = ACTIONS(2416), + [aux_sym_cmd_identifier_token5] = ACTIONS(2416), + [aux_sym_cmd_identifier_token6] = ACTIONS(2416), + [aux_sym_cmd_identifier_token7] = ACTIONS(2416), + [aux_sym_cmd_identifier_token8] = ACTIONS(2416), + [aux_sym_cmd_identifier_token9] = ACTIONS(2416), + [aux_sym_cmd_identifier_token10] = ACTIONS(2416), + [aux_sym_cmd_identifier_token11] = ACTIONS(2416), + [aux_sym_cmd_identifier_token12] = ACTIONS(2416), + [aux_sym_cmd_identifier_token13] = ACTIONS(2416), + [aux_sym_cmd_identifier_token14] = ACTIONS(2416), + [aux_sym_cmd_identifier_token15] = ACTIONS(2416), + [aux_sym_cmd_identifier_token16] = ACTIONS(2416), + [aux_sym_cmd_identifier_token17] = ACTIONS(2416), + [aux_sym_cmd_identifier_token18] = ACTIONS(2416), + [aux_sym_cmd_identifier_token19] = ACTIONS(2416), + [aux_sym_cmd_identifier_token20] = ACTIONS(2416), + [aux_sym_cmd_identifier_token21] = ACTIONS(2416), + [aux_sym_cmd_identifier_token22] = ACTIONS(2416), + [aux_sym_cmd_identifier_token23] = ACTIONS(2416), + [aux_sym_cmd_identifier_token24] = ACTIONS(2416), + [aux_sym_cmd_identifier_token25] = ACTIONS(2416), + [aux_sym_cmd_identifier_token26] = ACTIONS(2416), + [aux_sym_cmd_identifier_token27] = ACTIONS(2416), + [aux_sym_cmd_identifier_token28] = ACTIONS(2416), + [aux_sym_cmd_identifier_token29] = ACTIONS(2416), + [aux_sym_cmd_identifier_token30] = ACTIONS(2416), + [aux_sym_cmd_identifier_token31] = ACTIONS(2416), + [aux_sym_cmd_identifier_token32] = ACTIONS(2416), + [aux_sym_cmd_identifier_token33] = ACTIONS(2416), + [aux_sym_cmd_identifier_token34] = ACTIONS(2416), + [aux_sym_cmd_identifier_token35] = ACTIONS(2416), + [aux_sym_cmd_identifier_token36] = ACTIONS(2416), + [anon_sym_true] = ACTIONS(2418), + [anon_sym_false] = ACTIONS(2418), + [anon_sym_null] = ACTIONS(2418), + [aux_sym_cmd_identifier_token38] = ACTIONS(2416), + [aux_sym_cmd_identifier_token39] = ACTIONS(2418), + [aux_sym_cmd_identifier_token40] = ACTIONS(2418), + [anon_sym_def] = ACTIONS(2416), + [anon_sym_export_DASHenv] = ACTIONS(2416), + [anon_sym_extern] = ACTIONS(2416), + [anon_sym_module] = ACTIONS(2416), + [anon_sym_use] = ACTIONS(2416), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_DOLLAR] = ACTIONS(2418), + [anon_sym_error] = ACTIONS(2416), + [anon_sym_list] = ACTIONS(2416), + [anon_sym_DASH] = ACTIONS(2416), + [anon_sym_break] = ACTIONS(2416), + [anon_sym_continue] = ACTIONS(2416), + [anon_sym_for] = ACTIONS(2416), + [anon_sym_in] = ACTIONS(2416), + [anon_sym_loop] = ACTIONS(2416), + [anon_sym_make] = ACTIONS(2416), + [anon_sym_while] = ACTIONS(2416), + [anon_sym_do] = ACTIONS(2416), + [anon_sym_if] = ACTIONS(2416), + [anon_sym_else] = ACTIONS(2416), + [anon_sym_match] = ACTIONS(2416), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_try] = ACTIONS(2416), + [anon_sym_catch] = ACTIONS(2416), + [anon_sym_return] = ACTIONS(2416), + [anon_sym_source] = ACTIONS(2416), + [anon_sym_source_DASHenv] = ACTIONS(2416), + [anon_sym_register] = ACTIONS(2416), + [anon_sym_hide] = ACTIONS(2416), + [anon_sym_hide_DASHenv] = ACTIONS(2416), + [anon_sym_overlay] = ACTIONS(2416), + [anon_sym_new] = ACTIONS(2416), + [anon_sym_as] = ACTIONS(2416), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2418), + [aux_sym__val_number_decimal_token1] = ACTIONS(2416), + [aux_sym__val_number_decimal_token2] = ACTIONS(2418), + [aux_sym__val_number_decimal_token3] = ACTIONS(2418), + [aux_sym__val_number_decimal_token4] = ACTIONS(2418), + [aux_sym__val_number_token1] = ACTIONS(2418), + [aux_sym__val_number_token2] = ACTIONS(2418), + [aux_sym__val_number_token3] = ACTIONS(2418), + [anon_sym_DQUOTE] = ACTIONS(2418), + [sym__str_single_quotes] = ACTIONS(2418), + [sym__str_back_ticks] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2418), + [anon_sym_PLUS] = ACTIONS(2416), [anon_sym_POUND] = ACTIONS(247), }, [621] = { [sym_comment] = STATE(621), - [anon_sym_export] = ACTIONS(2433), - [anon_sym_alias] = ACTIONS(2433), - [anon_sym_let] = ACTIONS(2433), - [anon_sym_let_DASHenv] = ACTIONS(2433), - [anon_sym_mut] = ACTIONS(2433), - [anon_sym_const] = ACTIONS(2433), - [aux_sym_cmd_identifier_token1] = ACTIONS(2433), - [aux_sym_cmd_identifier_token2] = ACTIONS(2433), - [aux_sym_cmd_identifier_token3] = ACTIONS(2433), - [aux_sym_cmd_identifier_token4] = ACTIONS(2433), - [aux_sym_cmd_identifier_token5] = ACTIONS(2433), - [aux_sym_cmd_identifier_token6] = ACTIONS(2433), - [aux_sym_cmd_identifier_token7] = ACTIONS(2433), - [aux_sym_cmd_identifier_token8] = ACTIONS(2433), - [aux_sym_cmd_identifier_token9] = ACTIONS(2433), - [aux_sym_cmd_identifier_token10] = ACTIONS(2433), - [aux_sym_cmd_identifier_token11] = ACTIONS(2433), - [aux_sym_cmd_identifier_token12] = ACTIONS(2433), - [aux_sym_cmd_identifier_token13] = ACTIONS(2433), - [aux_sym_cmd_identifier_token14] = ACTIONS(2433), - [aux_sym_cmd_identifier_token15] = ACTIONS(2433), - [aux_sym_cmd_identifier_token16] = ACTIONS(2433), - [aux_sym_cmd_identifier_token17] = ACTIONS(2433), - [aux_sym_cmd_identifier_token18] = ACTIONS(2433), - [aux_sym_cmd_identifier_token19] = ACTIONS(2433), - [aux_sym_cmd_identifier_token20] = ACTIONS(2433), - [aux_sym_cmd_identifier_token21] = ACTIONS(2433), - [aux_sym_cmd_identifier_token22] = ACTIONS(2433), - [aux_sym_cmd_identifier_token23] = ACTIONS(2433), - [aux_sym_cmd_identifier_token24] = ACTIONS(2433), - [aux_sym_cmd_identifier_token25] = ACTIONS(2433), - [aux_sym_cmd_identifier_token26] = ACTIONS(2433), - [aux_sym_cmd_identifier_token27] = ACTIONS(2433), - [aux_sym_cmd_identifier_token28] = ACTIONS(2433), - [aux_sym_cmd_identifier_token29] = ACTIONS(2433), - [aux_sym_cmd_identifier_token30] = ACTIONS(2433), - [aux_sym_cmd_identifier_token31] = ACTIONS(2433), - [aux_sym_cmd_identifier_token32] = ACTIONS(2433), - [aux_sym_cmd_identifier_token33] = ACTIONS(2433), - [aux_sym_cmd_identifier_token34] = ACTIONS(2433), - [aux_sym_cmd_identifier_token35] = ACTIONS(2433), - [aux_sym_cmd_identifier_token36] = ACTIONS(2433), - [anon_sym_true] = ACTIONS(2435), - [anon_sym_false] = ACTIONS(2435), - [anon_sym_null] = ACTIONS(2435), - [aux_sym_cmd_identifier_token38] = ACTIONS(2433), - [aux_sym_cmd_identifier_token39] = ACTIONS(2435), - [aux_sym_cmd_identifier_token40] = ACTIONS(2435), - [anon_sym_def] = ACTIONS(2433), - [anon_sym_export_DASHenv] = ACTIONS(2433), - [anon_sym_extern] = ACTIONS(2433), - [anon_sym_module] = ACTIONS(2433), - [anon_sym_use] = ACTIONS(2433), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_DOLLAR] = ACTIONS(2435), - [anon_sym_error] = ACTIONS(2433), - [anon_sym_list] = ACTIONS(2433), - [anon_sym_DASH] = ACTIONS(2433), - [anon_sym_break] = ACTIONS(2433), - [anon_sym_continue] = ACTIONS(2433), - [anon_sym_for] = ACTIONS(2433), - [anon_sym_in] = ACTIONS(2433), - [anon_sym_loop] = ACTIONS(2433), - [anon_sym_make] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2433), - [anon_sym_do] = ACTIONS(2433), - [anon_sym_if] = ACTIONS(2433), - [anon_sym_else] = ACTIONS(2433), - [anon_sym_match] = ACTIONS(2433), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_try] = ACTIONS(2433), - [anon_sym_catch] = ACTIONS(2433), - [anon_sym_return] = ACTIONS(2433), - [anon_sym_source] = ACTIONS(2433), - [anon_sym_source_DASHenv] = ACTIONS(2433), - [anon_sym_register] = ACTIONS(2433), - [anon_sym_hide] = ACTIONS(2433), - [anon_sym_hide_DASHenv] = ACTIONS(2433), - [anon_sym_overlay] = ACTIONS(2433), - [anon_sym_new] = ACTIONS(2433), - [anon_sym_as] = ACTIONS(2433), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2435), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2435), - [aux_sym__val_number_decimal_token1] = ACTIONS(2433), - [aux_sym__val_number_decimal_token2] = ACTIONS(2435), - [aux_sym__val_number_decimal_token3] = ACTIONS(2435), - [aux_sym__val_number_decimal_token4] = ACTIONS(2435), - [aux_sym__val_number_token1] = ACTIONS(2435), - [aux_sym__val_number_token2] = ACTIONS(2435), - [aux_sym__val_number_token3] = ACTIONS(2435), - [anon_sym_DQUOTE] = ACTIONS(2435), - [sym__str_single_quotes] = ACTIONS(2435), - [sym__str_back_ticks] = ACTIONS(2435), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2433), + [anon_sym_export] = ACTIONS(1643), + [anon_sym_alias] = ACTIONS(1643), + [anon_sym_let] = ACTIONS(1643), + [anon_sym_let_DASHenv] = ACTIONS(1643), + [anon_sym_mut] = ACTIONS(1643), + [anon_sym_const] = ACTIONS(1643), + [aux_sym_cmd_identifier_token1] = ACTIONS(1643), + [aux_sym_cmd_identifier_token2] = ACTIONS(1643), + [aux_sym_cmd_identifier_token3] = ACTIONS(1643), + [aux_sym_cmd_identifier_token4] = ACTIONS(1643), + [aux_sym_cmd_identifier_token5] = ACTIONS(1643), + [aux_sym_cmd_identifier_token6] = ACTIONS(1643), + [aux_sym_cmd_identifier_token7] = ACTIONS(1643), + [aux_sym_cmd_identifier_token8] = ACTIONS(1643), + [aux_sym_cmd_identifier_token9] = ACTIONS(1643), + [aux_sym_cmd_identifier_token10] = ACTIONS(1643), + [aux_sym_cmd_identifier_token11] = ACTIONS(1643), + [aux_sym_cmd_identifier_token12] = ACTIONS(1643), + [aux_sym_cmd_identifier_token13] = ACTIONS(1643), + [aux_sym_cmd_identifier_token14] = ACTIONS(1643), + [aux_sym_cmd_identifier_token15] = ACTIONS(1643), + [aux_sym_cmd_identifier_token16] = ACTIONS(1643), + [aux_sym_cmd_identifier_token17] = ACTIONS(1643), + [aux_sym_cmd_identifier_token18] = ACTIONS(1643), + [aux_sym_cmd_identifier_token19] = ACTIONS(1643), + [aux_sym_cmd_identifier_token20] = ACTIONS(1643), + [aux_sym_cmd_identifier_token21] = ACTIONS(1643), + [aux_sym_cmd_identifier_token22] = ACTIONS(1643), + [aux_sym_cmd_identifier_token23] = ACTIONS(1643), + [aux_sym_cmd_identifier_token24] = ACTIONS(1643), + [aux_sym_cmd_identifier_token25] = ACTIONS(1643), + [aux_sym_cmd_identifier_token26] = ACTIONS(1643), + [aux_sym_cmd_identifier_token27] = ACTIONS(1643), + [aux_sym_cmd_identifier_token28] = ACTIONS(1643), + [aux_sym_cmd_identifier_token29] = ACTIONS(1643), + [aux_sym_cmd_identifier_token30] = ACTIONS(1643), + [aux_sym_cmd_identifier_token31] = ACTIONS(1643), + [aux_sym_cmd_identifier_token32] = ACTIONS(1643), + [aux_sym_cmd_identifier_token33] = ACTIONS(1643), + [aux_sym_cmd_identifier_token34] = ACTIONS(1643), + [aux_sym_cmd_identifier_token35] = ACTIONS(1643), + [aux_sym_cmd_identifier_token36] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [aux_sym_cmd_identifier_token38] = ACTIONS(1643), + [aux_sym_cmd_identifier_token39] = ACTIONS(1645), + [aux_sym_cmd_identifier_token40] = ACTIONS(1645), + [anon_sym_def] = ACTIONS(1643), + [anon_sym_export_DASHenv] = ACTIONS(1643), + [anon_sym_extern] = ACTIONS(1643), + [anon_sym_module] = ACTIONS(1643), + [anon_sym_use] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1645), + [anon_sym_DOLLAR] = ACTIONS(1645), + [anon_sym_error] = ACTIONS(1643), + [anon_sym_list] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_break] = ACTIONS(1643), + [anon_sym_continue] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_loop] = ACTIONS(1643), + [anon_sym_make] = ACTIONS(1643), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_do] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_else] = ACTIONS(1643), + [anon_sym_match] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1645), + [anon_sym_try] = ACTIONS(1643), + [anon_sym_catch] = ACTIONS(1643), + [anon_sym_return] = ACTIONS(1643), + [anon_sym_source] = ACTIONS(1643), + [anon_sym_source_DASHenv] = ACTIONS(1643), + [anon_sym_register] = ACTIONS(1643), + [anon_sym_hide] = ACTIONS(1643), + [anon_sym_hide_DASHenv] = ACTIONS(1643), + [anon_sym_overlay] = ACTIONS(1643), + [anon_sym_new] = ACTIONS(1643), + [anon_sym_as] = ACTIONS(1643), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1645), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1645), + [aux_sym__val_number_decimal_token3] = ACTIONS(1645), + [aux_sym__val_number_decimal_token4] = ACTIONS(1645), + [aux_sym__val_number_token1] = ACTIONS(1645), + [aux_sym__val_number_token2] = ACTIONS(1645), + [aux_sym__val_number_token3] = ACTIONS(1645), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym__str_single_quotes] = ACTIONS(1645), + [sym__str_back_ticks] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1645), + [anon_sym_PLUS] = ACTIONS(1643), [anon_sym_POUND] = ACTIONS(247), }, [622] = { [sym_comment] = STATE(622), - [anon_sym_export] = ACTIONS(2344), - [anon_sym_alias] = ACTIONS(2344), - [anon_sym_let] = ACTIONS(2344), - [anon_sym_let_DASHenv] = ACTIONS(2344), - [anon_sym_mut] = ACTIONS(2344), - [anon_sym_const] = ACTIONS(2344), - [aux_sym_cmd_identifier_token1] = ACTIONS(2344), - [aux_sym_cmd_identifier_token2] = ACTIONS(2344), - [aux_sym_cmd_identifier_token3] = ACTIONS(2344), - [aux_sym_cmd_identifier_token4] = ACTIONS(2344), - [aux_sym_cmd_identifier_token5] = ACTIONS(2344), - [aux_sym_cmd_identifier_token6] = ACTIONS(2344), - [aux_sym_cmd_identifier_token7] = ACTIONS(2344), - [aux_sym_cmd_identifier_token8] = ACTIONS(2344), - [aux_sym_cmd_identifier_token9] = ACTIONS(2344), - [aux_sym_cmd_identifier_token10] = ACTIONS(2344), - [aux_sym_cmd_identifier_token11] = ACTIONS(2344), - [aux_sym_cmd_identifier_token12] = ACTIONS(2344), - [aux_sym_cmd_identifier_token13] = ACTIONS(2344), - [aux_sym_cmd_identifier_token14] = ACTIONS(2344), - [aux_sym_cmd_identifier_token15] = ACTIONS(2344), - [aux_sym_cmd_identifier_token16] = ACTIONS(2344), - [aux_sym_cmd_identifier_token17] = ACTIONS(2344), - [aux_sym_cmd_identifier_token18] = ACTIONS(2344), - [aux_sym_cmd_identifier_token19] = ACTIONS(2344), - [aux_sym_cmd_identifier_token20] = ACTIONS(2344), - [aux_sym_cmd_identifier_token21] = ACTIONS(2344), - [aux_sym_cmd_identifier_token22] = ACTIONS(2344), - [aux_sym_cmd_identifier_token23] = ACTIONS(2344), - [aux_sym_cmd_identifier_token24] = ACTIONS(2344), - [aux_sym_cmd_identifier_token25] = ACTIONS(2344), - [aux_sym_cmd_identifier_token26] = ACTIONS(2344), - [aux_sym_cmd_identifier_token27] = ACTIONS(2344), - [aux_sym_cmd_identifier_token28] = ACTIONS(2344), - [aux_sym_cmd_identifier_token29] = ACTIONS(2344), - [aux_sym_cmd_identifier_token30] = ACTIONS(2344), - [aux_sym_cmd_identifier_token31] = ACTIONS(2344), - [aux_sym_cmd_identifier_token32] = ACTIONS(2344), - [aux_sym_cmd_identifier_token33] = ACTIONS(2344), - [aux_sym_cmd_identifier_token34] = ACTIONS(2344), - [aux_sym_cmd_identifier_token35] = ACTIONS(2344), - [aux_sym_cmd_identifier_token36] = ACTIONS(2344), - [anon_sym_true] = ACTIONS(2346), - [anon_sym_false] = ACTIONS(2346), - [anon_sym_null] = ACTIONS(2346), - [aux_sym_cmd_identifier_token38] = ACTIONS(2344), - [aux_sym_cmd_identifier_token39] = ACTIONS(2346), - [aux_sym_cmd_identifier_token40] = ACTIONS(2346), - [anon_sym_def] = ACTIONS(2344), - [anon_sym_export_DASHenv] = ACTIONS(2344), - [anon_sym_extern] = ACTIONS(2344), - [anon_sym_module] = ACTIONS(2344), - [anon_sym_use] = ACTIONS(2344), - [anon_sym_LPAREN] = ACTIONS(2346), - [anon_sym_DOLLAR] = ACTIONS(2346), - [anon_sym_error] = ACTIONS(2344), - [anon_sym_list] = ACTIONS(2344), - [anon_sym_DASH] = ACTIONS(2344), - [anon_sym_break] = ACTIONS(2344), - [anon_sym_continue] = ACTIONS(2344), - [anon_sym_for] = ACTIONS(2344), - [anon_sym_in] = ACTIONS(2344), - [anon_sym_loop] = ACTIONS(2344), - [anon_sym_make] = ACTIONS(2344), - [anon_sym_while] = ACTIONS(2344), - [anon_sym_do] = ACTIONS(2344), - [anon_sym_if] = ACTIONS(2344), - [anon_sym_else] = ACTIONS(2344), - [anon_sym_match] = ACTIONS(2344), - [anon_sym_RBRACE] = ACTIONS(2346), - [anon_sym_try] = ACTIONS(2344), - [anon_sym_catch] = ACTIONS(2344), - [anon_sym_return] = ACTIONS(2344), - [anon_sym_source] = ACTIONS(2344), - [anon_sym_source_DASHenv] = ACTIONS(2344), - [anon_sym_register] = ACTIONS(2344), - [anon_sym_hide] = ACTIONS(2344), - [anon_sym_hide_DASHenv] = ACTIONS(2344), - [anon_sym_overlay] = ACTIONS(2344), - [anon_sym_new] = ACTIONS(2344), - [anon_sym_as] = ACTIONS(2344), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2346), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2346), - [aux_sym__val_number_decimal_token1] = ACTIONS(2344), - [aux_sym__val_number_decimal_token2] = ACTIONS(2346), - [aux_sym__val_number_decimal_token3] = ACTIONS(2346), - [aux_sym__val_number_decimal_token4] = ACTIONS(2346), - [aux_sym__val_number_token1] = ACTIONS(2346), - [aux_sym__val_number_token2] = ACTIONS(2346), - [aux_sym__val_number_token3] = ACTIONS(2346), - [anon_sym_DQUOTE] = ACTIONS(2346), - [sym__str_single_quotes] = ACTIONS(2346), - [sym__str_back_ticks] = ACTIONS(2346), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2346), - [anon_sym_PLUS] = ACTIONS(2344), + [anon_sym_export] = ACTIONS(2453), + [anon_sym_alias] = ACTIONS(2453), + [anon_sym_let] = ACTIONS(2453), + [anon_sym_let_DASHenv] = ACTIONS(2453), + [anon_sym_mut] = ACTIONS(2453), + [anon_sym_const] = ACTIONS(2453), + [aux_sym_cmd_identifier_token1] = ACTIONS(2453), + [aux_sym_cmd_identifier_token2] = ACTIONS(2453), + [aux_sym_cmd_identifier_token3] = ACTIONS(2453), + [aux_sym_cmd_identifier_token4] = ACTIONS(2453), + [aux_sym_cmd_identifier_token5] = ACTIONS(2453), + [aux_sym_cmd_identifier_token6] = ACTIONS(2453), + [aux_sym_cmd_identifier_token7] = ACTIONS(2453), + [aux_sym_cmd_identifier_token8] = ACTIONS(2453), + [aux_sym_cmd_identifier_token9] = ACTIONS(2453), + [aux_sym_cmd_identifier_token10] = ACTIONS(2453), + [aux_sym_cmd_identifier_token11] = ACTIONS(2453), + [aux_sym_cmd_identifier_token12] = ACTIONS(2453), + [aux_sym_cmd_identifier_token13] = ACTIONS(2453), + [aux_sym_cmd_identifier_token14] = ACTIONS(2453), + [aux_sym_cmd_identifier_token15] = ACTIONS(2453), + [aux_sym_cmd_identifier_token16] = ACTIONS(2453), + [aux_sym_cmd_identifier_token17] = ACTIONS(2453), + [aux_sym_cmd_identifier_token18] = ACTIONS(2453), + [aux_sym_cmd_identifier_token19] = ACTIONS(2453), + [aux_sym_cmd_identifier_token20] = ACTIONS(2453), + [aux_sym_cmd_identifier_token21] = ACTIONS(2453), + [aux_sym_cmd_identifier_token22] = ACTIONS(2453), + [aux_sym_cmd_identifier_token23] = ACTIONS(2453), + [aux_sym_cmd_identifier_token24] = ACTIONS(2453), + [aux_sym_cmd_identifier_token25] = ACTIONS(2453), + [aux_sym_cmd_identifier_token26] = ACTIONS(2453), + [aux_sym_cmd_identifier_token27] = ACTIONS(2453), + [aux_sym_cmd_identifier_token28] = ACTIONS(2453), + [aux_sym_cmd_identifier_token29] = ACTIONS(2453), + [aux_sym_cmd_identifier_token30] = ACTIONS(2453), + [aux_sym_cmd_identifier_token31] = ACTIONS(2453), + [aux_sym_cmd_identifier_token32] = ACTIONS(2453), + [aux_sym_cmd_identifier_token33] = ACTIONS(2453), + [aux_sym_cmd_identifier_token34] = ACTIONS(2453), + [aux_sym_cmd_identifier_token35] = ACTIONS(2453), + [aux_sym_cmd_identifier_token36] = ACTIONS(2453), + [anon_sym_true] = ACTIONS(2455), + [anon_sym_false] = ACTIONS(2455), + [anon_sym_null] = ACTIONS(2455), + [aux_sym_cmd_identifier_token38] = ACTIONS(2453), + [aux_sym_cmd_identifier_token39] = ACTIONS(2455), + [aux_sym_cmd_identifier_token40] = ACTIONS(2455), + [anon_sym_def] = ACTIONS(2453), + [anon_sym_export_DASHenv] = ACTIONS(2453), + [anon_sym_extern] = ACTIONS(2453), + [anon_sym_module] = ACTIONS(2453), + [anon_sym_use] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_DOLLAR] = ACTIONS(2455), + [anon_sym_error] = ACTIONS(2453), + [anon_sym_list] = ACTIONS(2453), + [anon_sym_DASH] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_in] = ACTIONS(2453), + [anon_sym_loop] = ACTIONS(2453), + [anon_sym_make] = ACTIONS(2453), + [anon_sym_while] = ACTIONS(2453), + [anon_sym_do] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_else] = ACTIONS(2453), + [anon_sym_match] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2455), + [anon_sym_try] = ACTIONS(2453), + [anon_sym_catch] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_source] = ACTIONS(2453), + [anon_sym_source_DASHenv] = ACTIONS(2453), + [anon_sym_register] = ACTIONS(2453), + [anon_sym_hide] = ACTIONS(2453), + [anon_sym_hide_DASHenv] = ACTIONS(2453), + [anon_sym_overlay] = ACTIONS(2453), + [anon_sym_new] = ACTIONS(2453), + [anon_sym_as] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2455), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2455), + [aux_sym__val_number_decimal_token1] = ACTIONS(2453), + [aux_sym__val_number_decimal_token2] = ACTIONS(2455), + [aux_sym__val_number_decimal_token3] = ACTIONS(2455), + [aux_sym__val_number_decimal_token4] = ACTIONS(2455), + [aux_sym__val_number_token1] = ACTIONS(2455), + [aux_sym__val_number_token2] = ACTIONS(2455), + [aux_sym__val_number_token3] = ACTIONS(2455), + [anon_sym_DQUOTE] = ACTIONS(2455), + [sym__str_single_quotes] = ACTIONS(2455), + [sym__str_back_ticks] = ACTIONS(2455), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2455), + [anon_sym_PLUS] = ACTIONS(2453), [anon_sym_POUND] = ACTIONS(247), }, [623] = { [sym_comment] = STATE(623), - [anon_sym_export] = ACTIONS(2437), - [anon_sym_alias] = ACTIONS(2437), - [anon_sym_let] = ACTIONS(2437), - [anon_sym_let_DASHenv] = ACTIONS(2437), - [anon_sym_mut] = ACTIONS(2437), - [anon_sym_const] = ACTIONS(2437), - [aux_sym_cmd_identifier_token1] = ACTIONS(2437), - [aux_sym_cmd_identifier_token2] = ACTIONS(2437), - [aux_sym_cmd_identifier_token3] = ACTIONS(2437), - [aux_sym_cmd_identifier_token4] = ACTIONS(2437), - [aux_sym_cmd_identifier_token5] = ACTIONS(2437), - [aux_sym_cmd_identifier_token6] = ACTIONS(2437), - [aux_sym_cmd_identifier_token7] = ACTIONS(2437), - [aux_sym_cmd_identifier_token8] = ACTIONS(2437), - [aux_sym_cmd_identifier_token9] = ACTIONS(2437), - [aux_sym_cmd_identifier_token10] = ACTIONS(2437), - [aux_sym_cmd_identifier_token11] = ACTIONS(2437), - [aux_sym_cmd_identifier_token12] = ACTIONS(2437), - [aux_sym_cmd_identifier_token13] = ACTIONS(2437), - [aux_sym_cmd_identifier_token14] = ACTIONS(2437), - [aux_sym_cmd_identifier_token15] = ACTIONS(2437), - [aux_sym_cmd_identifier_token16] = ACTIONS(2437), - [aux_sym_cmd_identifier_token17] = ACTIONS(2437), - [aux_sym_cmd_identifier_token18] = ACTIONS(2437), - [aux_sym_cmd_identifier_token19] = ACTIONS(2437), - [aux_sym_cmd_identifier_token20] = ACTIONS(2437), - [aux_sym_cmd_identifier_token21] = ACTIONS(2437), - [aux_sym_cmd_identifier_token22] = ACTIONS(2437), - [aux_sym_cmd_identifier_token23] = ACTIONS(2437), - [aux_sym_cmd_identifier_token24] = ACTIONS(2437), - [aux_sym_cmd_identifier_token25] = ACTIONS(2437), - [aux_sym_cmd_identifier_token26] = ACTIONS(2437), - [aux_sym_cmd_identifier_token27] = ACTIONS(2437), - [aux_sym_cmd_identifier_token28] = ACTIONS(2437), - [aux_sym_cmd_identifier_token29] = ACTIONS(2437), - [aux_sym_cmd_identifier_token30] = ACTIONS(2437), - [aux_sym_cmd_identifier_token31] = ACTIONS(2437), - [aux_sym_cmd_identifier_token32] = ACTIONS(2437), - [aux_sym_cmd_identifier_token33] = ACTIONS(2437), - [aux_sym_cmd_identifier_token34] = ACTIONS(2437), - [aux_sym_cmd_identifier_token35] = ACTIONS(2437), - [aux_sym_cmd_identifier_token36] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2439), - [anon_sym_false] = ACTIONS(2439), - [anon_sym_null] = ACTIONS(2439), - [aux_sym_cmd_identifier_token38] = ACTIONS(2437), - [aux_sym_cmd_identifier_token39] = ACTIONS(2439), - [aux_sym_cmd_identifier_token40] = ACTIONS(2439), - [anon_sym_def] = ACTIONS(2437), - [anon_sym_export_DASHenv] = ACTIONS(2437), - [anon_sym_extern] = ACTIONS(2437), - [anon_sym_module] = ACTIONS(2437), - [anon_sym_use] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_DOLLAR] = ACTIONS(2439), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_list] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_in] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_make] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_else] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_RBRACE] = ACTIONS(2439), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_catch] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_new] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2439), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2439), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2439), - [aux_sym__val_number_decimal_token3] = ACTIONS(2439), - [aux_sym__val_number_decimal_token4] = ACTIONS(2439), - [aux_sym__val_number_token1] = ACTIONS(2439), - [aux_sym__val_number_token2] = ACTIONS(2439), - [aux_sym__val_number_token3] = ACTIONS(2439), - [anon_sym_DQUOTE] = ACTIONS(2439), - [sym__str_single_quotes] = ACTIONS(2439), - [sym__str_back_ticks] = ACTIONS(2439), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2439), - [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_export] = ACTIONS(2457), + [anon_sym_alias] = ACTIONS(2457), + [anon_sym_let] = ACTIONS(2457), + [anon_sym_let_DASHenv] = ACTIONS(2457), + [anon_sym_mut] = ACTIONS(2457), + [anon_sym_const] = ACTIONS(2457), + [aux_sym_cmd_identifier_token1] = ACTIONS(2457), + [aux_sym_cmd_identifier_token2] = ACTIONS(2457), + [aux_sym_cmd_identifier_token3] = ACTIONS(2457), + [aux_sym_cmd_identifier_token4] = ACTIONS(2457), + [aux_sym_cmd_identifier_token5] = ACTIONS(2457), + [aux_sym_cmd_identifier_token6] = ACTIONS(2457), + [aux_sym_cmd_identifier_token7] = ACTIONS(2457), + [aux_sym_cmd_identifier_token8] = ACTIONS(2457), + [aux_sym_cmd_identifier_token9] = ACTIONS(2457), + [aux_sym_cmd_identifier_token10] = ACTIONS(2457), + [aux_sym_cmd_identifier_token11] = ACTIONS(2457), + [aux_sym_cmd_identifier_token12] = ACTIONS(2457), + [aux_sym_cmd_identifier_token13] = ACTIONS(2457), + [aux_sym_cmd_identifier_token14] = ACTIONS(2457), + [aux_sym_cmd_identifier_token15] = ACTIONS(2457), + [aux_sym_cmd_identifier_token16] = ACTIONS(2457), + [aux_sym_cmd_identifier_token17] = ACTIONS(2457), + [aux_sym_cmd_identifier_token18] = ACTIONS(2457), + [aux_sym_cmd_identifier_token19] = ACTIONS(2457), + [aux_sym_cmd_identifier_token20] = ACTIONS(2457), + [aux_sym_cmd_identifier_token21] = ACTIONS(2457), + [aux_sym_cmd_identifier_token22] = ACTIONS(2457), + [aux_sym_cmd_identifier_token23] = ACTIONS(2457), + [aux_sym_cmd_identifier_token24] = ACTIONS(2457), + [aux_sym_cmd_identifier_token25] = ACTIONS(2457), + [aux_sym_cmd_identifier_token26] = ACTIONS(2457), + [aux_sym_cmd_identifier_token27] = ACTIONS(2457), + [aux_sym_cmd_identifier_token28] = ACTIONS(2457), + [aux_sym_cmd_identifier_token29] = ACTIONS(2457), + [aux_sym_cmd_identifier_token30] = ACTIONS(2457), + [aux_sym_cmd_identifier_token31] = ACTIONS(2457), + [aux_sym_cmd_identifier_token32] = ACTIONS(2457), + [aux_sym_cmd_identifier_token33] = ACTIONS(2457), + [aux_sym_cmd_identifier_token34] = ACTIONS(2457), + [aux_sym_cmd_identifier_token35] = ACTIONS(2457), + [aux_sym_cmd_identifier_token36] = ACTIONS(2457), + [anon_sym_true] = ACTIONS(2459), + [anon_sym_false] = ACTIONS(2459), + [anon_sym_null] = ACTIONS(2459), + [aux_sym_cmd_identifier_token38] = ACTIONS(2457), + [aux_sym_cmd_identifier_token39] = ACTIONS(2459), + [aux_sym_cmd_identifier_token40] = ACTIONS(2459), + [anon_sym_def] = ACTIONS(2457), + [anon_sym_export_DASHenv] = ACTIONS(2457), + [anon_sym_extern] = ACTIONS(2457), + [anon_sym_module] = ACTIONS(2457), + [anon_sym_use] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(2459), + [anon_sym_DOLLAR] = ACTIONS(2459), + [anon_sym_error] = ACTIONS(2457), + [anon_sym_list] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2457), + [anon_sym_break] = ACTIONS(2457), + [anon_sym_continue] = ACTIONS(2457), + [anon_sym_for] = ACTIONS(2457), + [anon_sym_in] = ACTIONS(2457), + [anon_sym_loop] = ACTIONS(2457), + [anon_sym_make] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(2457), + [anon_sym_do] = ACTIONS(2457), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_else] = ACTIONS(2457), + [anon_sym_match] = ACTIONS(2457), + [anon_sym_RBRACE] = ACTIONS(2459), + [anon_sym_try] = ACTIONS(2457), + [anon_sym_catch] = ACTIONS(2457), + [anon_sym_return] = ACTIONS(2457), + [anon_sym_source] = ACTIONS(2457), + [anon_sym_source_DASHenv] = ACTIONS(2457), + [anon_sym_register] = ACTIONS(2457), + [anon_sym_hide] = ACTIONS(2457), + [anon_sym_hide_DASHenv] = ACTIONS(2457), + [anon_sym_overlay] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2457), + [anon_sym_as] = ACTIONS(2457), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2459), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2459), + [aux_sym__val_number_decimal_token1] = ACTIONS(2457), + [aux_sym__val_number_decimal_token2] = ACTIONS(2459), + [aux_sym__val_number_decimal_token3] = ACTIONS(2459), + [aux_sym__val_number_decimal_token4] = ACTIONS(2459), + [aux_sym__val_number_token1] = ACTIONS(2459), + [aux_sym__val_number_token2] = ACTIONS(2459), + [aux_sym__val_number_token3] = ACTIONS(2459), + [anon_sym_DQUOTE] = ACTIONS(2459), + [sym__str_single_quotes] = ACTIONS(2459), + [sym__str_back_ticks] = ACTIONS(2459), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2459), + [anon_sym_PLUS] = ACTIONS(2457), [anon_sym_POUND] = ACTIONS(247), }, [624] = { [sym_comment] = STATE(624), + [anon_sym_export] = ACTIONS(1894), + [anon_sym_alias] = ACTIONS(1894), + [anon_sym_let] = ACTIONS(1894), + [anon_sym_let_DASHenv] = ACTIONS(1894), + [anon_sym_mut] = ACTIONS(1894), + [anon_sym_const] = ACTIONS(1894), + [aux_sym_cmd_identifier_token1] = ACTIONS(1894), + [aux_sym_cmd_identifier_token2] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1894), + [aux_sym_cmd_identifier_token4] = ACTIONS(1894), + [aux_sym_cmd_identifier_token5] = ACTIONS(1894), + [aux_sym_cmd_identifier_token6] = ACTIONS(1894), + [aux_sym_cmd_identifier_token7] = ACTIONS(1894), + [aux_sym_cmd_identifier_token8] = ACTIONS(1894), + [aux_sym_cmd_identifier_token9] = ACTIONS(1894), + [aux_sym_cmd_identifier_token10] = ACTIONS(1894), + [aux_sym_cmd_identifier_token11] = ACTIONS(1894), + [aux_sym_cmd_identifier_token12] = ACTIONS(1894), + [aux_sym_cmd_identifier_token13] = ACTIONS(1894), + [aux_sym_cmd_identifier_token14] = ACTIONS(1894), + [aux_sym_cmd_identifier_token15] = ACTIONS(1894), + [aux_sym_cmd_identifier_token16] = ACTIONS(1894), + [aux_sym_cmd_identifier_token17] = ACTIONS(1894), + [aux_sym_cmd_identifier_token18] = ACTIONS(1894), + [aux_sym_cmd_identifier_token19] = ACTIONS(1894), + [aux_sym_cmd_identifier_token20] = ACTIONS(1894), + [aux_sym_cmd_identifier_token21] = ACTIONS(1894), + [aux_sym_cmd_identifier_token22] = ACTIONS(1894), + [aux_sym_cmd_identifier_token23] = ACTIONS(1894), + [aux_sym_cmd_identifier_token24] = ACTIONS(1894), + [aux_sym_cmd_identifier_token25] = ACTIONS(1894), + [aux_sym_cmd_identifier_token26] = ACTIONS(1894), + [aux_sym_cmd_identifier_token27] = ACTIONS(1894), + [aux_sym_cmd_identifier_token28] = ACTIONS(1894), + [aux_sym_cmd_identifier_token29] = ACTIONS(1894), + [aux_sym_cmd_identifier_token30] = ACTIONS(1894), + [aux_sym_cmd_identifier_token31] = ACTIONS(1894), + [aux_sym_cmd_identifier_token32] = ACTIONS(1894), + [aux_sym_cmd_identifier_token33] = ACTIONS(1894), + [aux_sym_cmd_identifier_token34] = ACTIONS(1894), + [aux_sym_cmd_identifier_token35] = ACTIONS(1894), + [aux_sym_cmd_identifier_token36] = ACTIONS(1894), + [anon_sym_true] = ACTIONS(1896), + [anon_sym_false] = ACTIONS(1896), + [anon_sym_null] = ACTIONS(1896), + [aux_sym_cmd_identifier_token38] = ACTIONS(1894), + [aux_sym_cmd_identifier_token39] = ACTIONS(1896), + [aux_sym_cmd_identifier_token40] = ACTIONS(1896), + [anon_sym_def] = ACTIONS(1894), + [anon_sym_export_DASHenv] = ACTIONS(1894), + [anon_sym_extern] = ACTIONS(1894), + [anon_sym_module] = ACTIONS(1894), + [anon_sym_use] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1896), + [anon_sym_DOLLAR] = ACTIONS(1896), + [anon_sym_error] = ACTIONS(1894), + [anon_sym_list] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_break] = ACTIONS(1894), + [anon_sym_continue] = ACTIONS(1894), + [anon_sym_for] = ACTIONS(1894), + [anon_sym_in] = ACTIONS(1894), + [anon_sym_loop] = ACTIONS(1894), + [anon_sym_make] = ACTIONS(1894), + [anon_sym_while] = ACTIONS(1894), + [anon_sym_do] = ACTIONS(1894), + [anon_sym_if] = ACTIONS(1894), + [anon_sym_else] = ACTIONS(1894), + [anon_sym_match] = ACTIONS(1894), + [anon_sym_RBRACE] = ACTIONS(1896), + [anon_sym_try] = ACTIONS(1894), + [anon_sym_catch] = ACTIONS(1894), + [anon_sym_return] = ACTIONS(1894), + [anon_sym_source] = ACTIONS(1894), + [anon_sym_source_DASHenv] = ACTIONS(1894), + [anon_sym_register] = ACTIONS(1894), + [anon_sym_hide] = ACTIONS(1894), + [anon_sym_hide_DASHenv] = ACTIONS(1894), + [anon_sym_overlay] = ACTIONS(1894), + [anon_sym_new] = ACTIONS(1894), + [anon_sym_as] = ACTIONS(1894), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1896), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1896), + [aux_sym__val_number_decimal_token1] = ACTIONS(1894), + [aux_sym__val_number_decimal_token2] = ACTIONS(1896), + [aux_sym__val_number_decimal_token3] = ACTIONS(1896), + [aux_sym__val_number_decimal_token4] = ACTIONS(1896), + [aux_sym__val_number_token1] = ACTIONS(1896), + [aux_sym__val_number_token2] = ACTIONS(1896), + [aux_sym__val_number_token3] = ACTIONS(1896), + [anon_sym_DQUOTE] = ACTIONS(1896), + [sym__str_single_quotes] = ACTIONS(1896), + [sym__str_back_ticks] = ACTIONS(1896), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1896), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_POUND] = ACTIONS(247), + }, + [625] = { + [sym_comment] = STATE(625), + [anon_sym_export] = ACTIONS(1631), + [anon_sym_alias] = ACTIONS(1631), + [anon_sym_let] = ACTIONS(1631), + [anon_sym_let_DASHenv] = ACTIONS(1631), + [anon_sym_mut] = ACTIONS(1631), + [anon_sym_const] = ACTIONS(1631), + [aux_sym_cmd_identifier_token1] = ACTIONS(1631), + [aux_sym_cmd_identifier_token2] = ACTIONS(1631), + [aux_sym_cmd_identifier_token3] = ACTIONS(1631), + [aux_sym_cmd_identifier_token4] = ACTIONS(1631), + [aux_sym_cmd_identifier_token5] = ACTIONS(1631), + [aux_sym_cmd_identifier_token6] = ACTIONS(1631), + [aux_sym_cmd_identifier_token7] = ACTIONS(1631), + [aux_sym_cmd_identifier_token8] = ACTIONS(1631), + [aux_sym_cmd_identifier_token9] = ACTIONS(1631), + [aux_sym_cmd_identifier_token10] = ACTIONS(1631), + [aux_sym_cmd_identifier_token11] = ACTIONS(1631), + [aux_sym_cmd_identifier_token12] = ACTIONS(1631), + [aux_sym_cmd_identifier_token13] = ACTIONS(1631), + [aux_sym_cmd_identifier_token14] = ACTIONS(1631), + [aux_sym_cmd_identifier_token15] = ACTIONS(1631), + [aux_sym_cmd_identifier_token16] = ACTIONS(1631), + [aux_sym_cmd_identifier_token17] = ACTIONS(1631), + [aux_sym_cmd_identifier_token18] = ACTIONS(1631), + [aux_sym_cmd_identifier_token19] = ACTIONS(1631), + [aux_sym_cmd_identifier_token20] = ACTIONS(1631), + [aux_sym_cmd_identifier_token21] = ACTIONS(1631), + [aux_sym_cmd_identifier_token22] = ACTIONS(1631), + [aux_sym_cmd_identifier_token23] = ACTIONS(1631), + [aux_sym_cmd_identifier_token24] = ACTIONS(1631), + [aux_sym_cmd_identifier_token25] = ACTIONS(1631), + [aux_sym_cmd_identifier_token26] = ACTIONS(1631), + [aux_sym_cmd_identifier_token27] = ACTIONS(1631), + [aux_sym_cmd_identifier_token28] = ACTIONS(1631), + [aux_sym_cmd_identifier_token29] = ACTIONS(1631), + [aux_sym_cmd_identifier_token30] = ACTIONS(1631), + [aux_sym_cmd_identifier_token31] = ACTIONS(1631), + [aux_sym_cmd_identifier_token32] = ACTIONS(1631), + [aux_sym_cmd_identifier_token33] = ACTIONS(1631), + [aux_sym_cmd_identifier_token34] = ACTIONS(1631), + [aux_sym_cmd_identifier_token35] = ACTIONS(1631), + [aux_sym_cmd_identifier_token36] = ACTIONS(1631), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [aux_sym_cmd_identifier_token38] = ACTIONS(1631), + [aux_sym_cmd_identifier_token39] = ACTIONS(1633), + [aux_sym_cmd_identifier_token40] = ACTIONS(1633), + [anon_sym_def] = ACTIONS(1631), + [anon_sym_export_DASHenv] = ACTIONS(1631), + [anon_sym_extern] = ACTIONS(1631), + [anon_sym_module] = ACTIONS(1631), + [anon_sym_use] = ACTIONS(1631), + [anon_sym_LPAREN] = ACTIONS(1633), + [anon_sym_DOLLAR] = ACTIONS(1633), + [anon_sym_error] = ACTIONS(1631), + [anon_sym_list] = ACTIONS(1631), + [anon_sym_DASH] = ACTIONS(1631), + [anon_sym_break] = ACTIONS(1631), + [anon_sym_continue] = ACTIONS(1631), + [anon_sym_for] = ACTIONS(1631), + [anon_sym_in] = ACTIONS(1631), + [anon_sym_loop] = ACTIONS(1631), + [anon_sym_make] = ACTIONS(1631), + [anon_sym_while] = ACTIONS(1631), + [anon_sym_do] = ACTIONS(1631), + [anon_sym_if] = ACTIONS(1631), + [anon_sym_else] = ACTIONS(1631), + [anon_sym_match] = ACTIONS(1631), + [anon_sym_RBRACE] = ACTIONS(1633), + [anon_sym_try] = ACTIONS(1631), + [anon_sym_catch] = ACTIONS(1631), + [anon_sym_return] = ACTIONS(1631), + [anon_sym_source] = ACTIONS(1631), + [anon_sym_source_DASHenv] = ACTIONS(1631), + [anon_sym_register] = ACTIONS(1631), + [anon_sym_hide] = ACTIONS(1631), + [anon_sym_hide_DASHenv] = ACTIONS(1631), + [anon_sym_overlay] = ACTIONS(1631), + [anon_sym_new] = ACTIONS(1631), + [anon_sym_as] = ACTIONS(1631), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1633), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1633), + [aux_sym__val_number_decimal_token1] = ACTIONS(1631), + [aux_sym__val_number_decimal_token2] = ACTIONS(1633), + [aux_sym__val_number_decimal_token3] = ACTIONS(1633), + [aux_sym__val_number_decimal_token4] = ACTIONS(1633), + [aux_sym__val_number_token1] = ACTIONS(1633), + [aux_sym__val_number_token2] = ACTIONS(1633), + [aux_sym__val_number_token3] = ACTIONS(1633), + [anon_sym_DQUOTE] = ACTIONS(1633), + [sym__str_single_quotes] = ACTIONS(1633), + [sym__str_back_ticks] = ACTIONS(1633), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1631), + [anon_sym_POUND] = ACTIONS(247), + }, + [626] = { + [sym_comment] = STATE(626), + [anon_sym_export] = ACTIONS(1945), + [anon_sym_alias] = ACTIONS(1945), + [anon_sym_let] = ACTIONS(1945), + [anon_sym_let_DASHenv] = ACTIONS(1945), + [anon_sym_mut] = ACTIONS(1945), + [anon_sym_const] = ACTIONS(1945), + [aux_sym_cmd_identifier_token1] = ACTIONS(1945), + [aux_sym_cmd_identifier_token2] = ACTIONS(1945), + [aux_sym_cmd_identifier_token3] = ACTIONS(1945), + [aux_sym_cmd_identifier_token4] = ACTIONS(1945), + [aux_sym_cmd_identifier_token5] = ACTIONS(1945), + [aux_sym_cmd_identifier_token6] = ACTIONS(1945), + [aux_sym_cmd_identifier_token7] = ACTIONS(1945), + [aux_sym_cmd_identifier_token8] = ACTIONS(1945), + [aux_sym_cmd_identifier_token9] = ACTIONS(1945), + [aux_sym_cmd_identifier_token10] = ACTIONS(1945), + [aux_sym_cmd_identifier_token11] = ACTIONS(1945), + [aux_sym_cmd_identifier_token12] = ACTIONS(1945), + [aux_sym_cmd_identifier_token13] = ACTIONS(1945), + [aux_sym_cmd_identifier_token14] = ACTIONS(1945), + [aux_sym_cmd_identifier_token15] = ACTIONS(1945), + [aux_sym_cmd_identifier_token16] = ACTIONS(1945), + [aux_sym_cmd_identifier_token17] = ACTIONS(1945), + [aux_sym_cmd_identifier_token18] = ACTIONS(1945), + [aux_sym_cmd_identifier_token19] = ACTIONS(1945), + [aux_sym_cmd_identifier_token20] = ACTIONS(1945), + [aux_sym_cmd_identifier_token21] = ACTIONS(1945), + [aux_sym_cmd_identifier_token22] = ACTIONS(1945), + [aux_sym_cmd_identifier_token23] = ACTIONS(1945), + [aux_sym_cmd_identifier_token24] = ACTIONS(1945), + [aux_sym_cmd_identifier_token25] = ACTIONS(1945), + [aux_sym_cmd_identifier_token26] = ACTIONS(1945), + [aux_sym_cmd_identifier_token27] = ACTIONS(1945), + [aux_sym_cmd_identifier_token28] = ACTIONS(1945), + [aux_sym_cmd_identifier_token29] = ACTIONS(1945), + [aux_sym_cmd_identifier_token30] = ACTIONS(1945), + [aux_sym_cmd_identifier_token31] = ACTIONS(1945), + [aux_sym_cmd_identifier_token32] = ACTIONS(1945), + [aux_sym_cmd_identifier_token33] = ACTIONS(1945), + [aux_sym_cmd_identifier_token34] = ACTIONS(1945), + [aux_sym_cmd_identifier_token35] = ACTIONS(1945), + [aux_sym_cmd_identifier_token36] = ACTIONS(1945), + [anon_sym_true] = ACTIONS(1947), + [anon_sym_false] = ACTIONS(1947), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token38] = ACTIONS(1945), + [aux_sym_cmd_identifier_token39] = ACTIONS(1947), + [aux_sym_cmd_identifier_token40] = ACTIONS(1947), + [anon_sym_def] = ACTIONS(1945), + [anon_sym_export_DASHenv] = ACTIONS(1945), + [anon_sym_extern] = ACTIONS(1945), + [anon_sym_module] = ACTIONS(1945), + [anon_sym_use] = ACTIONS(1945), + [anon_sym_LPAREN] = ACTIONS(1947), + [anon_sym_DOLLAR] = ACTIONS(1947), + [anon_sym_error] = ACTIONS(1945), + [anon_sym_list] = ACTIONS(1945), + [anon_sym_DASH] = ACTIONS(1945), + [anon_sym_break] = ACTIONS(1945), + [anon_sym_continue] = ACTIONS(1945), + [anon_sym_for] = ACTIONS(1945), + [anon_sym_in] = ACTIONS(1945), + [anon_sym_loop] = ACTIONS(1945), + [anon_sym_make] = ACTIONS(1945), + [anon_sym_while] = ACTIONS(1945), + [anon_sym_do] = ACTIONS(1945), + [anon_sym_if] = ACTIONS(1945), + [anon_sym_else] = ACTIONS(1945), + [anon_sym_match] = ACTIONS(1945), + [anon_sym_RBRACE] = ACTIONS(1947), + [anon_sym_try] = ACTIONS(1945), + [anon_sym_catch] = ACTIONS(1945), + [anon_sym_return] = ACTIONS(1945), + [anon_sym_source] = ACTIONS(1945), + [anon_sym_source_DASHenv] = ACTIONS(1945), + [anon_sym_register] = ACTIONS(1945), + [anon_sym_hide] = ACTIONS(1945), + [anon_sym_hide_DASHenv] = ACTIONS(1945), + [anon_sym_overlay] = ACTIONS(1945), + [anon_sym_new] = ACTIONS(1945), + [anon_sym_as] = ACTIONS(1945), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1947), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1947), + [aux_sym__val_number_decimal_token1] = ACTIONS(1945), + [aux_sym__val_number_decimal_token2] = ACTIONS(1947), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), + [aux_sym__val_number_token1] = ACTIONS(1947), + [aux_sym__val_number_token2] = ACTIONS(1947), + [aux_sym__val_number_token3] = ACTIONS(1947), + [anon_sym_DQUOTE] = ACTIONS(1947), + [sym__str_single_quotes] = ACTIONS(1947), + [sym__str_back_ticks] = ACTIONS(1947), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1947), + [anon_sym_PLUS] = ACTIONS(1945), + [anon_sym_POUND] = ACTIONS(247), + }, + [627] = { + [sym_comment] = STATE(627), + [anon_sym_export] = ACTIONS(2477), + [anon_sym_alias] = ACTIONS(2477), + [anon_sym_let] = ACTIONS(2477), + [anon_sym_let_DASHenv] = ACTIONS(2477), + [anon_sym_mut] = ACTIONS(2477), + [anon_sym_const] = ACTIONS(2477), + [aux_sym_cmd_identifier_token1] = ACTIONS(2477), + [aux_sym_cmd_identifier_token2] = ACTIONS(2477), + [aux_sym_cmd_identifier_token3] = ACTIONS(2477), + [aux_sym_cmd_identifier_token4] = ACTIONS(2477), + [aux_sym_cmd_identifier_token5] = ACTIONS(2477), + [aux_sym_cmd_identifier_token6] = ACTIONS(2477), + [aux_sym_cmd_identifier_token7] = ACTIONS(2477), + [aux_sym_cmd_identifier_token8] = ACTIONS(2477), + [aux_sym_cmd_identifier_token9] = ACTIONS(2477), + [aux_sym_cmd_identifier_token10] = ACTIONS(2477), + [aux_sym_cmd_identifier_token11] = ACTIONS(2477), + [aux_sym_cmd_identifier_token12] = ACTIONS(2477), + [aux_sym_cmd_identifier_token13] = ACTIONS(2477), + [aux_sym_cmd_identifier_token14] = ACTIONS(2477), + [aux_sym_cmd_identifier_token15] = ACTIONS(2477), + [aux_sym_cmd_identifier_token16] = ACTIONS(2477), + [aux_sym_cmd_identifier_token17] = ACTIONS(2477), + [aux_sym_cmd_identifier_token18] = ACTIONS(2477), + [aux_sym_cmd_identifier_token19] = ACTIONS(2477), + [aux_sym_cmd_identifier_token20] = ACTIONS(2477), + [aux_sym_cmd_identifier_token21] = ACTIONS(2477), + [aux_sym_cmd_identifier_token22] = ACTIONS(2477), + [aux_sym_cmd_identifier_token23] = ACTIONS(2477), + [aux_sym_cmd_identifier_token24] = ACTIONS(2477), + [aux_sym_cmd_identifier_token25] = ACTIONS(2477), + [aux_sym_cmd_identifier_token26] = ACTIONS(2477), + [aux_sym_cmd_identifier_token27] = ACTIONS(2477), + [aux_sym_cmd_identifier_token28] = ACTIONS(2477), + [aux_sym_cmd_identifier_token29] = ACTIONS(2477), + [aux_sym_cmd_identifier_token30] = ACTIONS(2477), + [aux_sym_cmd_identifier_token31] = ACTIONS(2477), + [aux_sym_cmd_identifier_token32] = ACTIONS(2477), + [aux_sym_cmd_identifier_token33] = ACTIONS(2477), + [aux_sym_cmd_identifier_token34] = ACTIONS(2477), + [aux_sym_cmd_identifier_token35] = ACTIONS(2477), + [aux_sym_cmd_identifier_token36] = ACTIONS(2477), + [anon_sym_true] = ACTIONS(2479), + [anon_sym_false] = ACTIONS(2479), + [anon_sym_null] = ACTIONS(2479), + [aux_sym_cmd_identifier_token38] = ACTIONS(2477), + [aux_sym_cmd_identifier_token39] = ACTIONS(2479), + [aux_sym_cmd_identifier_token40] = ACTIONS(2479), + [anon_sym_def] = ACTIONS(2477), + [anon_sym_export_DASHenv] = ACTIONS(2477), + [anon_sym_extern] = ACTIONS(2477), + [anon_sym_module] = ACTIONS(2477), + [anon_sym_use] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(2479), + [anon_sym_DOLLAR] = ACTIONS(2479), + [anon_sym_error] = ACTIONS(2477), + [anon_sym_list] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(2477), + [anon_sym_break] = ACTIONS(2477), + [anon_sym_continue] = ACTIONS(2477), + [anon_sym_for] = ACTIONS(2477), + [anon_sym_in] = ACTIONS(2477), + [anon_sym_loop] = ACTIONS(2477), + [anon_sym_make] = ACTIONS(2477), + [anon_sym_while] = ACTIONS(2477), + [anon_sym_do] = ACTIONS(2477), + [anon_sym_if] = ACTIONS(2477), + [anon_sym_else] = ACTIONS(2477), + [anon_sym_match] = ACTIONS(2477), + [anon_sym_RBRACE] = ACTIONS(2479), + [anon_sym_try] = ACTIONS(2477), + [anon_sym_catch] = ACTIONS(2477), + [anon_sym_return] = ACTIONS(2477), + [anon_sym_source] = ACTIONS(2477), + [anon_sym_source_DASHenv] = ACTIONS(2477), + [anon_sym_register] = ACTIONS(2477), + [anon_sym_hide] = ACTIONS(2477), + [anon_sym_hide_DASHenv] = ACTIONS(2477), + [anon_sym_overlay] = ACTIONS(2477), + [anon_sym_new] = ACTIONS(2477), + [anon_sym_as] = ACTIONS(2477), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2479), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2479), + [aux_sym__val_number_decimal_token1] = ACTIONS(2477), + [aux_sym__val_number_decimal_token2] = ACTIONS(2479), + [aux_sym__val_number_decimal_token3] = ACTIONS(2479), + [aux_sym__val_number_decimal_token4] = ACTIONS(2479), + [aux_sym__val_number_token1] = ACTIONS(2479), + [aux_sym__val_number_token2] = ACTIONS(2479), + [aux_sym__val_number_token3] = ACTIONS(2479), + [anon_sym_DQUOTE] = ACTIONS(2479), + [sym__str_single_quotes] = ACTIONS(2479), + [sym__str_back_ticks] = ACTIONS(2479), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2479), + [anon_sym_PLUS] = ACTIONS(2477), + [anon_sym_POUND] = ACTIONS(247), + }, + [628] = { + [sym_comment] = STATE(628), + [anon_sym_export] = ACTIONS(1705), + [anon_sym_alias] = ACTIONS(1705), + [anon_sym_let] = ACTIONS(1705), + [anon_sym_let_DASHenv] = ACTIONS(1705), + [anon_sym_mut] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [aux_sym_cmd_identifier_token1] = ACTIONS(1705), + [aux_sym_cmd_identifier_token2] = ACTIONS(1705), + [aux_sym_cmd_identifier_token3] = ACTIONS(1705), + [aux_sym_cmd_identifier_token4] = ACTIONS(1705), + [aux_sym_cmd_identifier_token5] = ACTIONS(1705), + [aux_sym_cmd_identifier_token6] = ACTIONS(1705), + [aux_sym_cmd_identifier_token7] = ACTIONS(1705), + [aux_sym_cmd_identifier_token8] = ACTIONS(1705), + [aux_sym_cmd_identifier_token9] = ACTIONS(1705), + [aux_sym_cmd_identifier_token10] = ACTIONS(1705), + [aux_sym_cmd_identifier_token11] = ACTIONS(1705), + [aux_sym_cmd_identifier_token12] = ACTIONS(1705), + [aux_sym_cmd_identifier_token13] = ACTIONS(1705), + [aux_sym_cmd_identifier_token14] = ACTIONS(1705), + [aux_sym_cmd_identifier_token15] = ACTIONS(1705), + [aux_sym_cmd_identifier_token16] = ACTIONS(1705), + [aux_sym_cmd_identifier_token17] = ACTIONS(1705), + [aux_sym_cmd_identifier_token18] = ACTIONS(1705), + [aux_sym_cmd_identifier_token19] = ACTIONS(1705), + [aux_sym_cmd_identifier_token20] = ACTIONS(1705), + [aux_sym_cmd_identifier_token21] = ACTIONS(1705), + [aux_sym_cmd_identifier_token22] = ACTIONS(1705), + [aux_sym_cmd_identifier_token23] = ACTIONS(1705), + [aux_sym_cmd_identifier_token24] = ACTIONS(1705), + [aux_sym_cmd_identifier_token25] = ACTIONS(1705), + [aux_sym_cmd_identifier_token26] = ACTIONS(1705), + [aux_sym_cmd_identifier_token27] = ACTIONS(1705), + [aux_sym_cmd_identifier_token28] = ACTIONS(1705), + [aux_sym_cmd_identifier_token29] = ACTIONS(1705), + [aux_sym_cmd_identifier_token30] = ACTIONS(1705), + [aux_sym_cmd_identifier_token31] = ACTIONS(1705), + [aux_sym_cmd_identifier_token32] = ACTIONS(1705), + [aux_sym_cmd_identifier_token33] = ACTIONS(1705), + [aux_sym_cmd_identifier_token34] = ACTIONS(1705), + [aux_sym_cmd_identifier_token35] = ACTIONS(1705), + [aux_sym_cmd_identifier_token36] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1707), + [anon_sym_false] = ACTIONS(1707), + [anon_sym_null] = ACTIONS(1707), + [aux_sym_cmd_identifier_token38] = ACTIONS(1705), + [aux_sym_cmd_identifier_token39] = ACTIONS(1707), + [aux_sym_cmd_identifier_token40] = ACTIONS(1707), + [anon_sym_def] = ACTIONS(1705), + [anon_sym_export_DASHenv] = ACTIONS(1705), + [anon_sym_extern] = ACTIONS(1705), + [anon_sym_module] = ACTIONS(1705), + [anon_sym_use] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1707), + [anon_sym_DOLLAR] = ACTIONS(1707), + [anon_sym_error] = ACTIONS(1705), + [anon_sym_list] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_break] = ACTIONS(1705), + [anon_sym_continue] = ACTIONS(1705), + [anon_sym_for] = ACTIONS(1705), + [anon_sym_in] = ACTIONS(1705), + [anon_sym_loop] = ACTIONS(1705), + [anon_sym_make] = ACTIONS(1705), + [anon_sym_while] = ACTIONS(1705), + [anon_sym_do] = ACTIONS(1705), + [anon_sym_if] = ACTIONS(1705), + [anon_sym_else] = ACTIONS(1705), + [anon_sym_match] = ACTIONS(1705), + [anon_sym_RBRACE] = ACTIONS(1707), + [anon_sym_try] = ACTIONS(1705), + [anon_sym_catch] = ACTIONS(1705), + [anon_sym_return] = ACTIONS(1705), + [anon_sym_source] = ACTIONS(1705), + [anon_sym_source_DASHenv] = ACTIONS(1705), + [anon_sym_register] = ACTIONS(1705), + [anon_sym_hide] = ACTIONS(1705), + [anon_sym_hide_DASHenv] = ACTIONS(1705), + [anon_sym_overlay] = ACTIONS(1705), + [anon_sym_new] = ACTIONS(1705), + [anon_sym_as] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1707), + [aux_sym__val_number_decimal_token1] = ACTIONS(1705), + [aux_sym__val_number_decimal_token2] = ACTIONS(1707), + [aux_sym__val_number_decimal_token3] = ACTIONS(1707), + [aux_sym__val_number_decimal_token4] = ACTIONS(1707), + [aux_sym__val_number_token1] = ACTIONS(1707), + [aux_sym__val_number_token2] = ACTIONS(1707), + [aux_sym__val_number_token3] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1707), + [sym__str_single_quotes] = ACTIONS(1707), + [sym__str_back_ticks] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_POUND] = ACTIONS(247), + }, + [629] = { + [sym_comment] = STATE(629), + [anon_sym_export] = ACTIONS(2465), + [anon_sym_alias] = ACTIONS(2465), + [anon_sym_let] = ACTIONS(2465), + [anon_sym_let_DASHenv] = ACTIONS(2465), + [anon_sym_mut] = ACTIONS(2465), + [anon_sym_const] = ACTIONS(2465), + [aux_sym_cmd_identifier_token1] = ACTIONS(2465), + [aux_sym_cmd_identifier_token2] = ACTIONS(2465), + [aux_sym_cmd_identifier_token3] = ACTIONS(2465), + [aux_sym_cmd_identifier_token4] = ACTIONS(2465), + [aux_sym_cmd_identifier_token5] = ACTIONS(2465), + [aux_sym_cmd_identifier_token6] = ACTIONS(2465), + [aux_sym_cmd_identifier_token7] = ACTIONS(2465), + [aux_sym_cmd_identifier_token8] = ACTIONS(2465), + [aux_sym_cmd_identifier_token9] = ACTIONS(2465), + [aux_sym_cmd_identifier_token10] = ACTIONS(2465), + [aux_sym_cmd_identifier_token11] = ACTIONS(2465), + [aux_sym_cmd_identifier_token12] = ACTIONS(2465), + [aux_sym_cmd_identifier_token13] = ACTIONS(2465), + [aux_sym_cmd_identifier_token14] = ACTIONS(2465), + [aux_sym_cmd_identifier_token15] = ACTIONS(2465), + [aux_sym_cmd_identifier_token16] = ACTIONS(2465), + [aux_sym_cmd_identifier_token17] = ACTIONS(2465), + [aux_sym_cmd_identifier_token18] = ACTIONS(2465), + [aux_sym_cmd_identifier_token19] = ACTIONS(2465), + [aux_sym_cmd_identifier_token20] = ACTIONS(2465), + [aux_sym_cmd_identifier_token21] = ACTIONS(2465), + [aux_sym_cmd_identifier_token22] = ACTIONS(2465), + [aux_sym_cmd_identifier_token23] = ACTIONS(2465), + [aux_sym_cmd_identifier_token24] = ACTIONS(2465), + [aux_sym_cmd_identifier_token25] = ACTIONS(2465), + [aux_sym_cmd_identifier_token26] = ACTIONS(2465), + [aux_sym_cmd_identifier_token27] = ACTIONS(2465), + [aux_sym_cmd_identifier_token28] = ACTIONS(2465), + [aux_sym_cmd_identifier_token29] = ACTIONS(2465), + [aux_sym_cmd_identifier_token30] = ACTIONS(2465), + [aux_sym_cmd_identifier_token31] = ACTIONS(2465), + [aux_sym_cmd_identifier_token32] = ACTIONS(2465), + [aux_sym_cmd_identifier_token33] = ACTIONS(2465), + [aux_sym_cmd_identifier_token34] = ACTIONS(2465), + [aux_sym_cmd_identifier_token35] = ACTIONS(2465), + [aux_sym_cmd_identifier_token36] = ACTIONS(2465), + [anon_sym_true] = ACTIONS(2467), + [anon_sym_false] = ACTIONS(2467), + [anon_sym_null] = ACTIONS(2467), + [aux_sym_cmd_identifier_token38] = ACTIONS(2465), + [aux_sym_cmd_identifier_token39] = ACTIONS(2467), + [aux_sym_cmd_identifier_token40] = ACTIONS(2467), + [anon_sym_def] = ACTIONS(2465), + [anon_sym_export_DASHenv] = ACTIONS(2465), + [anon_sym_extern] = ACTIONS(2465), + [anon_sym_module] = ACTIONS(2465), + [anon_sym_use] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(2467), + [anon_sym_DOLLAR] = ACTIONS(2467), + [anon_sym_error] = ACTIONS(2465), + [anon_sym_list] = ACTIONS(2465), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_break] = ACTIONS(2465), + [anon_sym_continue] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(2465), + [anon_sym_loop] = ACTIONS(2465), + [anon_sym_make] = ACTIONS(2465), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_do] = ACTIONS(2465), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_else] = ACTIONS(2465), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_RBRACE] = ACTIONS(2467), + [anon_sym_try] = ACTIONS(2465), + [anon_sym_catch] = ACTIONS(2465), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_source] = ACTIONS(2465), + [anon_sym_source_DASHenv] = ACTIONS(2465), + [anon_sym_register] = ACTIONS(2465), + [anon_sym_hide] = ACTIONS(2465), + [anon_sym_hide_DASHenv] = ACTIONS(2465), + [anon_sym_overlay] = ACTIONS(2465), + [anon_sym_new] = ACTIONS(2465), + [anon_sym_as] = ACTIONS(2465), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2467), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2467), + [aux_sym__val_number_decimal_token1] = ACTIONS(2465), + [aux_sym__val_number_decimal_token2] = ACTIONS(2467), + [aux_sym__val_number_decimal_token3] = ACTIONS(2467), + [aux_sym__val_number_decimal_token4] = ACTIONS(2467), + [aux_sym__val_number_token1] = ACTIONS(2467), + [aux_sym__val_number_token2] = ACTIONS(2467), + [aux_sym__val_number_token3] = ACTIONS(2467), + [anon_sym_DQUOTE] = ACTIONS(2467), + [sym__str_single_quotes] = ACTIONS(2467), + [sym__str_back_ticks] = ACTIONS(2467), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2467), + [anon_sym_PLUS] = ACTIONS(2465), + [anon_sym_POUND] = ACTIONS(247), + }, + [630] = { + [sym_comment] = STATE(630), + [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), + [aux_sym_cmd_identifier_token1] = ACTIONS(2061), + [aux_sym_cmd_identifier_token2] = ACTIONS(2061), + [aux_sym_cmd_identifier_token3] = ACTIONS(2061), + [aux_sym_cmd_identifier_token4] = ACTIONS(2061), + [aux_sym_cmd_identifier_token5] = ACTIONS(2061), + [aux_sym_cmd_identifier_token6] = ACTIONS(2061), + [aux_sym_cmd_identifier_token7] = ACTIONS(2061), + [aux_sym_cmd_identifier_token8] = ACTIONS(2061), + [aux_sym_cmd_identifier_token9] = ACTIONS(2061), + [aux_sym_cmd_identifier_token10] = ACTIONS(2061), + [aux_sym_cmd_identifier_token11] = ACTIONS(2061), + [aux_sym_cmd_identifier_token12] = ACTIONS(2061), + [aux_sym_cmd_identifier_token13] = ACTIONS(2061), + [aux_sym_cmd_identifier_token14] = ACTIONS(2061), + [aux_sym_cmd_identifier_token15] = ACTIONS(2061), + [aux_sym_cmd_identifier_token16] = ACTIONS(2061), + [aux_sym_cmd_identifier_token17] = ACTIONS(2061), + [aux_sym_cmd_identifier_token18] = ACTIONS(2061), + [aux_sym_cmd_identifier_token19] = ACTIONS(2061), + [aux_sym_cmd_identifier_token20] = ACTIONS(2061), + [aux_sym_cmd_identifier_token21] = ACTIONS(2061), + [aux_sym_cmd_identifier_token22] = ACTIONS(2061), + [aux_sym_cmd_identifier_token23] = ACTIONS(2061), + [aux_sym_cmd_identifier_token24] = ACTIONS(2061), + [aux_sym_cmd_identifier_token25] = ACTIONS(2061), + [aux_sym_cmd_identifier_token26] = ACTIONS(2061), + [aux_sym_cmd_identifier_token27] = ACTIONS(2061), + [aux_sym_cmd_identifier_token28] = ACTIONS(2061), + [aux_sym_cmd_identifier_token29] = ACTIONS(2061), + [aux_sym_cmd_identifier_token30] = ACTIONS(2061), + [aux_sym_cmd_identifier_token31] = ACTIONS(2061), + [aux_sym_cmd_identifier_token32] = ACTIONS(2061), + [aux_sym_cmd_identifier_token33] = ACTIONS(2061), + [aux_sym_cmd_identifier_token34] = ACTIONS(2061), + [aux_sym_cmd_identifier_token35] = ACTIONS(2061), + [aux_sym_cmd_identifier_token36] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2067), + [anon_sym_false] = ACTIONS(2067), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token38] = ACTIONS(2061), + [aux_sym_cmd_identifier_token39] = ACTIONS(2067), + [aux_sym_cmd_identifier_token40] = ACTIONS(2067), + [anon_sym_def] = 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_LPAREN] = ACTIONS(2067), + [anon_sym_DOLLAR] = ACTIONS(2067), + [anon_sym_error] = ACTIONS(2061), + [anon_sym_list] = ACTIONS(2061), + [anon_sym_DASH] = ACTIONS(2061), + [anon_sym_break] = ACTIONS(2061), + [anon_sym_continue] = ACTIONS(2061), + [anon_sym_for] = ACTIONS(2061), + [anon_sym_in] = ACTIONS(2061), + [anon_sym_loop] = ACTIONS(2061), + [anon_sym_make] = ACTIONS(2061), + [anon_sym_while] = ACTIONS(2061), + [anon_sym_do] = ACTIONS(2061), + [anon_sym_if] = ACTIONS(2061), + [anon_sym_else] = ACTIONS(2061), + [anon_sym_match] = ACTIONS(2061), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_try] = ACTIONS(2061), + [anon_sym_catch] = 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_new] = ACTIONS(2061), + [anon_sym_as] = ACTIONS(2061), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2067), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2067), + [aux_sym__val_number_decimal_token1] = ACTIONS(2061), + [aux_sym__val_number_decimal_token2] = ACTIONS(2067), + [aux_sym__val_number_decimal_token3] = ACTIONS(2067), + [aux_sym__val_number_decimal_token4] = ACTIONS(2067), + [aux_sym__val_number_token1] = ACTIONS(2067), + [aux_sym__val_number_token2] = ACTIONS(2067), + [aux_sym__val_number_token3] = ACTIONS(2067), + [anon_sym_DQUOTE] = ACTIONS(2067), + [sym__str_single_quotes] = ACTIONS(2067), + [sym__str_back_ticks] = ACTIONS(2067), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2061), + [anon_sym_POUND] = ACTIONS(247), + }, + [631] = { + [sym_comment] = STATE(631), + [anon_sym_export] = ACTIONS(2449), + [anon_sym_alias] = ACTIONS(2449), + [anon_sym_let] = ACTIONS(2449), + [anon_sym_let_DASHenv] = ACTIONS(2449), + [anon_sym_mut] = ACTIONS(2449), + [anon_sym_const] = ACTIONS(2449), + [aux_sym_cmd_identifier_token1] = ACTIONS(2449), + [aux_sym_cmd_identifier_token2] = ACTIONS(2449), + [aux_sym_cmd_identifier_token3] = ACTIONS(2449), + [aux_sym_cmd_identifier_token4] = ACTIONS(2449), + [aux_sym_cmd_identifier_token5] = ACTIONS(2449), + [aux_sym_cmd_identifier_token6] = ACTIONS(2449), + [aux_sym_cmd_identifier_token7] = ACTIONS(2449), + [aux_sym_cmd_identifier_token8] = ACTIONS(2449), + [aux_sym_cmd_identifier_token9] = ACTIONS(2449), + [aux_sym_cmd_identifier_token10] = ACTIONS(2449), + [aux_sym_cmd_identifier_token11] = ACTIONS(2449), + [aux_sym_cmd_identifier_token12] = ACTIONS(2449), + [aux_sym_cmd_identifier_token13] = ACTIONS(2449), + [aux_sym_cmd_identifier_token14] = ACTIONS(2449), + [aux_sym_cmd_identifier_token15] = ACTIONS(2449), + [aux_sym_cmd_identifier_token16] = ACTIONS(2449), + [aux_sym_cmd_identifier_token17] = ACTIONS(2449), + [aux_sym_cmd_identifier_token18] = ACTIONS(2449), + [aux_sym_cmd_identifier_token19] = ACTIONS(2449), + [aux_sym_cmd_identifier_token20] = ACTIONS(2449), + [aux_sym_cmd_identifier_token21] = ACTIONS(2449), + [aux_sym_cmd_identifier_token22] = ACTIONS(2449), + [aux_sym_cmd_identifier_token23] = ACTIONS(2449), + [aux_sym_cmd_identifier_token24] = ACTIONS(2449), + [aux_sym_cmd_identifier_token25] = ACTIONS(2449), + [aux_sym_cmd_identifier_token26] = ACTIONS(2449), + [aux_sym_cmd_identifier_token27] = ACTIONS(2449), + [aux_sym_cmd_identifier_token28] = ACTIONS(2449), + [aux_sym_cmd_identifier_token29] = ACTIONS(2449), + [aux_sym_cmd_identifier_token30] = ACTIONS(2449), + [aux_sym_cmd_identifier_token31] = ACTIONS(2449), + [aux_sym_cmd_identifier_token32] = ACTIONS(2449), + [aux_sym_cmd_identifier_token33] = ACTIONS(2449), + [aux_sym_cmd_identifier_token34] = ACTIONS(2449), + [aux_sym_cmd_identifier_token35] = ACTIONS(2449), + [aux_sym_cmd_identifier_token36] = ACTIONS(2449), + [anon_sym_true] = ACTIONS(2451), + [anon_sym_false] = ACTIONS(2451), + [anon_sym_null] = ACTIONS(2451), + [aux_sym_cmd_identifier_token38] = ACTIONS(2449), + [aux_sym_cmd_identifier_token39] = ACTIONS(2451), + [aux_sym_cmd_identifier_token40] = ACTIONS(2451), + [anon_sym_def] = ACTIONS(2449), + [anon_sym_export_DASHenv] = ACTIONS(2449), + [anon_sym_extern] = ACTIONS(2449), + [anon_sym_module] = ACTIONS(2449), + [anon_sym_use] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_DOLLAR] = ACTIONS(2451), + [anon_sym_error] = ACTIONS(2449), + [anon_sym_list] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_break] = ACTIONS(2449), + [anon_sym_continue] = ACTIONS(2449), + [anon_sym_for] = ACTIONS(2449), + [anon_sym_in] = ACTIONS(2449), + [anon_sym_loop] = ACTIONS(2449), + [anon_sym_make] = ACTIONS(2449), + [anon_sym_while] = ACTIONS(2449), + [anon_sym_do] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_else] = ACTIONS(2449), + [anon_sym_match] = ACTIONS(2449), + [anon_sym_RBRACE] = ACTIONS(2451), + [anon_sym_try] = ACTIONS(2449), + [anon_sym_catch] = ACTIONS(2449), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_source] = ACTIONS(2449), + [anon_sym_source_DASHenv] = ACTIONS(2449), + [anon_sym_register] = ACTIONS(2449), + [anon_sym_hide] = ACTIONS(2449), + [anon_sym_hide_DASHenv] = ACTIONS(2449), + [anon_sym_overlay] = ACTIONS(2449), + [anon_sym_new] = ACTIONS(2449), + [anon_sym_as] = ACTIONS(2449), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2451), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2451), + [aux_sym__val_number_decimal_token1] = ACTIONS(2449), + [aux_sym__val_number_decimal_token2] = ACTIONS(2451), + [aux_sym__val_number_decimal_token3] = ACTIONS(2451), + [aux_sym__val_number_decimal_token4] = ACTIONS(2451), + [aux_sym__val_number_token1] = ACTIONS(2451), + [aux_sym__val_number_token2] = ACTIONS(2451), + [aux_sym__val_number_token3] = ACTIONS(2451), + [anon_sym_DQUOTE] = ACTIONS(2451), + [sym__str_single_quotes] = ACTIONS(2451), + [sym__str_back_ticks] = ACTIONS(2451), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2451), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_POUND] = ACTIONS(247), + }, + [632] = { + [sym_comment] = STATE(632), + [anon_sym_export] = ACTIONS(2420), + [anon_sym_alias] = ACTIONS(2420), + [anon_sym_let] = ACTIONS(2420), + [anon_sym_let_DASHenv] = ACTIONS(2420), + [anon_sym_mut] = ACTIONS(2420), + [anon_sym_const] = ACTIONS(2420), + [aux_sym_cmd_identifier_token1] = ACTIONS(2420), + [aux_sym_cmd_identifier_token2] = ACTIONS(2420), + [aux_sym_cmd_identifier_token3] = ACTIONS(2420), + [aux_sym_cmd_identifier_token4] = ACTIONS(2420), + [aux_sym_cmd_identifier_token5] = ACTIONS(2420), + [aux_sym_cmd_identifier_token6] = ACTIONS(2420), + [aux_sym_cmd_identifier_token7] = ACTIONS(2420), + [aux_sym_cmd_identifier_token8] = ACTIONS(2420), + [aux_sym_cmd_identifier_token9] = ACTIONS(2420), + [aux_sym_cmd_identifier_token10] = ACTIONS(2420), + [aux_sym_cmd_identifier_token11] = ACTIONS(2420), + [aux_sym_cmd_identifier_token12] = ACTIONS(2420), + [aux_sym_cmd_identifier_token13] = ACTIONS(2420), + [aux_sym_cmd_identifier_token14] = ACTIONS(2420), + [aux_sym_cmd_identifier_token15] = ACTIONS(2420), + [aux_sym_cmd_identifier_token16] = ACTIONS(2420), + [aux_sym_cmd_identifier_token17] = ACTIONS(2420), + [aux_sym_cmd_identifier_token18] = ACTIONS(2420), + [aux_sym_cmd_identifier_token19] = ACTIONS(2420), + [aux_sym_cmd_identifier_token20] = ACTIONS(2420), + [aux_sym_cmd_identifier_token21] = ACTIONS(2420), + [aux_sym_cmd_identifier_token22] = ACTIONS(2420), + [aux_sym_cmd_identifier_token23] = ACTIONS(2420), + [aux_sym_cmd_identifier_token24] = ACTIONS(2420), + [aux_sym_cmd_identifier_token25] = ACTIONS(2420), + [aux_sym_cmd_identifier_token26] = ACTIONS(2420), + [aux_sym_cmd_identifier_token27] = ACTIONS(2420), + [aux_sym_cmd_identifier_token28] = ACTIONS(2420), + [aux_sym_cmd_identifier_token29] = ACTIONS(2420), + [aux_sym_cmd_identifier_token30] = ACTIONS(2420), + [aux_sym_cmd_identifier_token31] = ACTIONS(2420), + [aux_sym_cmd_identifier_token32] = ACTIONS(2420), + [aux_sym_cmd_identifier_token33] = ACTIONS(2420), + [aux_sym_cmd_identifier_token34] = ACTIONS(2420), + [aux_sym_cmd_identifier_token35] = ACTIONS(2420), + [aux_sym_cmd_identifier_token36] = ACTIONS(2420), + [anon_sym_true] = ACTIONS(2422), + [anon_sym_false] = ACTIONS(2422), + [anon_sym_null] = ACTIONS(2422), + [aux_sym_cmd_identifier_token38] = ACTIONS(2420), + [aux_sym_cmd_identifier_token39] = ACTIONS(2422), + [aux_sym_cmd_identifier_token40] = ACTIONS(2422), + [anon_sym_def] = ACTIONS(2420), + [anon_sym_export_DASHenv] = ACTIONS(2420), + [anon_sym_extern] = ACTIONS(2420), + [anon_sym_module] = ACTIONS(2420), + [anon_sym_use] = ACTIONS(2420), + [anon_sym_LPAREN] = ACTIONS(2422), + [anon_sym_DOLLAR] = ACTIONS(2422), + [anon_sym_error] = ACTIONS(2420), + [anon_sym_list] = ACTIONS(2420), + [anon_sym_DASH] = ACTIONS(2420), + [anon_sym_break] = ACTIONS(2420), + [anon_sym_continue] = ACTIONS(2420), + [anon_sym_for] = ACTIONS(2420), + [anon_sym_in] = ACTIONS(2420), + [anon_sym_loop] = ACTIONS(2420), + [anon_sym_make] = ACTIONS(2420), + [anon_sym_while] = ACTIONS(2420), + [anon_sym_do] = ACTIONS(2420), + [anon_sym_if] = ACTIONS(2420), + [anon_sym_else] = ACTIONS(2420), + [anon_sym_match] = ACTIONS(2420), + [anon_sym_RBRACE] = ACTIONS(2422), + [anon_sym_try] = ACTIONS(2420), + [anon_sym_catch] = ACTIONS(2420), + [anon_sym_return] = ACTIONS(2420), + [anon_sym_source] = ACTIONS(2420), + [anon_sym_source_DASHenv] = ACTIONS(2420), + [anon_sym_register] = ACTIONS(2420), + [anon_sym_hide] = ACTIONS(2420), + [anon_sym_hide_DASHenv] = ACTIONS(2420), + [anon_sym_overlay] = ACTIONS(2420), + [anon_sym_new] = ACTIONS(2420), + [anon_sym_as] = ACTIONS(2420), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2422), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2422), + [aux_sym__val_number_decimal_token1] = ACTIONS(2420), + [aux_sym__val_number_decimal_token2] = ACTIONS(2422), + [aux_sym__val_number_decimal_token3] = ACTIONS(2422), + [aux_sym__val_number_decimal_token4] = ACTIONS(2422), + [aux_sym__val_number_token1] = ACTIONS(2422), + [aux_sym__val_number_token2] = ACTIONS(2422), + [aux_sym__val_number_token3] = ACTIONS(2422), + [anon_sym_DQUOTE] = ACTIONS(2422), + [sym__str_single_quotes] = ACTIONS(2422), + [sym__str_back_ticks] = ACTIONS(2422), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2422), + [anon_sym_PLUS] = ACTIONS(2420), + [anon_sym_POUND] = ACTIONS(247), + }, + [633] = { + [sym_comment] = STATE(633), + [anon_sym_export] = ACTIONS(2424), + [anon_sym_alias] = ACTIONS(2424), + [anon_sym_let] = ACTIONS(2424), + [anon_sym_let_DASHenv] = ACTIONS(2424), + [anon_sym_mut] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [aux_sym_cmd_identifier_token1] = ACTIONS(2424), + [aux_sym_cmd_identifier_token2] = ACTIONS(2424), + [aux_sym_cmd_identifier_token3] = ACTIONS(2424), + [aux_sym_cmd_identifier_token4] = ACTIONS(2424), + [aux_sym_cmd_identifier_token5] = ACTIONS(2424), + [aux_sym_cmd_identifier_token6] = ACTIONS(2424), + [aux_sym_cmd_identifier_token7] = ACTIONS(2424), + [aux_sym_cmd_identifier_token8] = ACTIONS(2424), + [aux_sym_cmd_identifier_token9] = ACTIONS(2424), + [aux_sym_cmd_identifier_token10] = ACTIONS(2424), + [aux_sym_cmd_identifier_token11] = ACTIONS(2424), + [aux_sym_cmd_identifier_token12] = ACTIONS(2424), + [aux_sym_cmd_identifier_token13] = ACTIONS(2424), + [aux_sym_cmd_identifier_token14] = ACTIONS(2424), + [aux_sym_cmd_identifier_token15] = ACTIONS(2424), + [aux_sym_cmd_identifier_token16] = ACTIONS(2424), + [aux_sym_cmd_identifier_token17] = ACTIONS(2424), + [aux_sym_cmd_identifier_token18] = ACTIONS(2424), + [aux_sym_cmd_identifier_token19] = ACTIONS(2424), + [aux_sym_cmd_identifier_token20] = ACTIONS(2424), + [aux_sym_cmd_identifier_token21] = ACTIONS(2424), + [aux_sym_cmd_identifier_token22] = ACTIONS(2424), + [aux_sym_cmd_identifier_token23] = ACTIONS(2424), + [aux_sym_cmd_identifier_token24] = ACTIONS(2424), + [aux_sym_cmd_identifier_token25] = ACTIONS(2424), + [aux_sym_cmd_identifier_token26] = ACTIONS(2424), + [aux_sym_cmd_identifier_token27] = ACTIONS(2424), + [aux_sym_cmd_identifier_token28] = ACTIONS(2424), + [aux_sym_cmd_identifier_token29] = ACTIONS(2424), + [aux_sym_cmd_identifier_token30] = ACTIONS(2424), + [aux_sym_cmd_identifier_token31] = ACTIONS(2424), + [aux_sym_cmd_identifier_token32] = ACTIONS(2424), + [aux_sym_cmd_identifier_token33] = ACTIONS(2424), + [aux_sym_cmd_identifier_token34] = ACTIONS(2424), + [aux_sym_cmd_identifier_token35] = ACTIONS(2424), + [aux_sym_cmd_identifier_token36] = ACTIONS(2424), + [anon_sym_true] = ACTIONS(2426), + [anon_sym_false] = ACTIONS(2426), + [anon_sym_null] = ACTIONS(2426), + [aux_sym_cmd_identifier_token38] = ACTIONS(2424), + [aux_sym_cmd_identifier_token39] = ACTIONS(2426), + [aux_sym_cmd_identifier_token40] = ACTIONS(2426), + [anon_sym_def] = ACTIONS(2424), + [anon_sym_export_DASHenv] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym_module] = ACTIONS(2424), + [anon_sym_use] = ACTIONS(2424), + [anon_sym_LPAREN] = ACTIONS(2426), + [anon_sym_DOLLAR] = ACTIONS(2426), + [anon_sym_error] = ACTIONS(2424), + [anon_sym_list] = ACTIONS(2424), + [anon_sym_DASH] = ACTIONS(2424), + [anon_sym_break] = ACTIONS(2424), + [anon_sym_continue] = ACTIONS(2424), + [anon_sym_for] = ACTIONS(2424), + [anon_sym_in] = ACTIONS(2424), + [anon_sym_loop] = ACTIONS(2424), + [anon_sym_make] = ACTIONS(2424), + [anon_sym_while] = ACTIONS(2424), + [anon_sym_do] = ACTIONS(2424), + [anon_sym_if] = ACTIONS(2424), + [anon_sym_else] = ACTIONS(2424), + [anon_sym_match] = ACTIONS(2424), + [anon_sym_RBRACE] = ACTIONS(2426), + [anon_sym_try] = ACTIONS(2424), + [anon_sym_catch] = ACTIONS(2424), + [anon_sym_return] = ACTIONS(2424), + [anon_sym_source] = ACTIONS(2424), + [anon_sym_source_DASHenv] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_hide] = ACTIONS(2424), + [anon_sym_hide_DASHenv] = ACTIONS(2424), + [anon_sym_overlay] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2424), + [anon_sym_as] = ACTIONS(2424), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2426), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2426), + [aux_sym__val_number_decimal_token1] = ACTIONS(2424), + [aux_sym__val_number_decimal_token2] = ACTIONS(2426), + [aux_sym__val_number_decimal_token3] = ACTIONS(2426), + [aux_sym__val_number_decimal_token4] = ACTIONS(2426), + [aux_sym__val_number_token1] = ACTIONS(2426), + [aux_sym__val_number_token2] = ACTIONS(2426), + [aux_sym__val_number_token3] = ACTIONS(2426), + [anon_sym_DQUOTE] = ACTIONS(2426), + [sym__str_single_quotes] = ACTIONS(2426), + [sym__str_back_ticks] = ACTIONS(2426), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2426), + [anon_sym_PLUS] = ACTIONS(2424), + [anon_sym_POUND] = ACTIONS(247), + }, + [634] = { + [sym_comment] = STATE(634), + [anon_sym_export] = ACTIONS(2507), + [anon_sym_alias] = ACTIONS(2507), + [anon_sym_let] = ACTIONS(2507), + [anon_sym_let_DASHenv] = ACTIONS(2507), + [anon_sym_mut] = ACTIONS(2507), + [anon_sym_const] = ACTIONS(2507), + [aux_sym_cmd_identifier_token1] = ACTIONS(2507), + [aux_sym_cmd_identifier_token2] = ACTIONS(2507), + [aux_sym_cmd_identifier_token3] = ACTIONS(2507), + [aux_sym_cmd_identifier_token4] = ACTIONS(2507), + [aux_sym_cmd_identifier_token5] = ACTIONS(2507), + [aux_sym_cmd_identifier_token6] = ACTIONS(2507), + [aux_sym_cmd_identifier_token7] = ACTIONS(2507), + [aux_sym_cmd_identifier_token8] = ACTIONS(2507), + [aux_sym_cmd_identifier_token9] = ACTIONS(2507), + [aux_sym_cmd_identifier_token10] = ACTIONS(2507), + [aux_sym_cmd_identifier_token11] = ACTIONS(2507), + [aux_sym_cmd_identifier_token12] = ACTIONS(2507), + [aux_sym_cmd_identifier_token13] = ACTIONS(2507), + [aux_sym_cmd_identifier_token14] = ACTIONS(2507), + [aux_sym_cmd_identifier_token15] = ACTIONS(2507), + [aux_sym_cmd_identifier_token16] = ACTIONS(2507), + [aux_sym_cmd_identifier_token17] = ACTIONS(2507), + [aux_sym_cmd_identifier_token18] = ACTIONS(2507), + [aux_sym_cmd_identifier_token19] = ACTIONS(2507), + [aux_sym_cmd_identifier_token20] = ACTIONS(2507), + [aux_sym_cmd_identifier_token21] = ACTIONS(2507), + [aux_sym_cmd_identifier_token22] = ACTIONS(2507), + [aux_sym_cmd_identifier_token23] = ACTIONS(2507), + [aux_sym_cmd_identifier_token24] = ACTIONS(2507), + [aux_sym_cmd_identifier_token25] = ACTIONS(2507), + [aux_sym_cmd_identifier_token26] = ACTIONS(2507), + [aux_sym_cmd_identifier_token27] = ACTIONS(2507), + [aux_sym_cmd_identifier_token28] = ACTIONS(2507), + [aux_sym_cmd_identifier_token29] = ACTIONS(2507), + [aux_sym_cmd_identifier_token30] = ACTIONS(2507), + [aux_sym_cmd_identifier_token31] = ACTIONS(2507), + [aux_sym_cmd_identifier_token32] = ACTIONS(2507), + [aux_sym_cmd_identifier_token33] = ACTIONS(2507), + [aux_sym_cmd_identifier_token34] = ACTIONS(2507), + [aux_sym_cmd_identifier_token35] = ACTIONS(2507), + [aux_sym_cmd_identifier_token36] = ACTIONS(2507), + [anon_sym_true] = ACTIONS(2509), + [anon_sym_false] = ACTIONS(2509), + [anon_sym_null] = ACTIONS(2509), + [aux_sym_cmd_identifier_token38] = ACTIONS(2507), + [aux_sym_cmd_identifier_token39] = ACTIONS(2509), + [aux_sym_cmd_identifier_token40] = ACTIONS(2509), + [anon_sym_def] = ACTIONS(2507), + [anon_sym_export_DASHenv] = ACTIONS(2507), + [anon_sym_extern] = ACTIONS(2507), + [anon_sym_module] = ACTIONS(2507), + [anon_sym_use] = ACTIONS(2507), + [anon_sym_LPAREN] = ACTIONS(2509), + [anon_sym_DOLLAR] = ACTIONS(2509), + [anon_sym_error] = ACTIONS(2507), + [anon_sym_list] = ACTIONS(2507), + [anon_sym_DASH] = ACTIONS(2507), + [anon_sym_break] = ACTIONS(2507), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_for] = ACTIONS(2507), + [anon_sym_in] = ACTIONS(2507), + [anon_sym_loop] = ACTIONS(2507), + [anon_sym_make] = ACTIONS(2507), + [anon_sym_while] = ACTIONS(2507), + [anon_sym_do] = ACTIONS(2507), + [anon_sym_if] = ACTIONS(2507), + [anon_sym_else] = ACTIONS(2507), + [anon_sym_match] = ACTIONS(2507), + [anon_sym_RBRACE] = ACTIONS(2509), + [anon_sym_try] = ACTIONS(2507), + [anon_sym_catch] = ACTIONS(2507), + [anon_sym_return] = ACTIONS(2507), + [anon_sym_source] = ACTIONS(2507), + [anon_sym_source_DASHenv] = ACTIONS(2507), + [anon_sym_register] = ACTIONS(2507), + [anon_sym_hide] = ACTIONS(2507), + [anon_sym_hide_DASHenv] = ACTIONS(2507), + [anon_sym_overlay] = ACTIONS(2507), + [anon_sym_new] = ACTIONS(2507), + [anon_sym_as] = ACTIONS(2507), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2509), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2509), + [aux_sym__val_number_decimal_token1] = ACTIONS(2507), + [aux_sym__val_number_decimal_token2] = ACTIONS(2509), + [aux_sym__val_number_decimal_token3] = ACTIONS(2509), + [aux_sym__val_number_decimal_token4] = ACTIONS(2509), + [aux_sym__val_number_token1] = ACTIONS(2509), + [aux_sym__val_number_token2] = ACTIONS(2509), + [aux_sym__val_number_token3] = ACTIONS(2509), + [anon_sym_DQUOTE] = ACTIONS(2509), + [sym__str_single_quotes] = ACTIONS(2509), + [sym__str_back_ticks] = ACTIONS(2509), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2509), + [anon_sym_PLUS] = ACTIONS(2507), + [anon_sym_POUND] = ACTIONS(247), + }, + [635] = { + [sym_comment] = STATE(635), + [anon_sym_export] = ACTIONS(2515), + [anon_sym_alias] = ACTIONS(2515), + [anon_sym_let] = ACTIONS(2515), + [anon_sym_let_DASHenv] = ACTIONS(2515), + [anon_sym_mut] = ACTIONS(2515), + [anon_sym_const] = ACTIONS(2515), + [aux_sym_cmd_identifier_token1] = ACTIONS(2515), + [aux_sym_cmd_identifier_token2] = ACTIONS(2515), + [aux_sym_cmd_identifier_token3] = ACTIONS(2515), + [aux_sym_cmd_identifier_token4] = ACTIONS(2515), + [aux_sym_cmd_identifier_token5] = ACTIONS(2515), + [aux_sym_cmd_identifier_token6] = ACTIONS(2515), + [aux_sym_cmd_identifier_token7] = ACTIONS(2515), + [aux_sym_cmd_identifier_token8] = ACTIONS(2515), + [aux_sym_cmd_identifier_token9] = ACTIONS(2515), + [aux_sym_cmd_identifier_token10] = ACTIONS(2515), + [aux_sym_cmd_identifier_token11] = ACTIONS(2515), + [aux_sym_cmd_identifier_token12] = ACTIONS(2515), + [aux_sym_cmd_identifier_token13] = ACTIONS(2515), + [aux_sym_cmd_identifier_token14] = ACTIONS(2515), + [aux_sym_cmd_identifier_token15] = ACTIONS(2515), + [aux_sym_cmd_identifier_token16] = ACTIONS(2515), + [aux_sym_cmd_identifier_token17] = ACTIONS(2515), + [aux_sym_cmd_identifier_token18] = ACTIONS(2515), + [aux_sym_cmd_identifier_token19] = ACTIONS(2515), + [aux_sym_cmd_identifier_token20] = ACTIONS(2515), + [aux_sym_cmd_identifier_token21] = ACTIONS(2515), + [aux_sym_cmd_identifier_token22] = ACTIONS(2515), + [aux_sym_cmd_identifier_token23] = ACTIONS(2515), + [aux_sym_cmd_identifier_token24] = ACTIONS(2515), + [aux_sym_cmd_identifier_token25] = ACTIONS(2515), + [aux_sym_cmd_identifier_token26] = ACTIONS(2515), + [aux_sym_cmd_identifier_token27] = ACTIONS(2515), + [aux_sym_cmd_identifier_token28] = ACTIONS(2515), + [aux_sym_cmd_identifier_token29] = ACTIONS(2515), + [aux_sym_cmd_identifier_token30] = ACTIONS(2515), + [aux_sym_cmd_identifier_token31] = ACTIONS(2515), + [aux_sym_cmd_identifier_token32] = ACTIONS(2515), + [aux_sym_cmd_identifier_token33] = ACTIONS(2515), + [aux_sym_cmd_identifier_token34] = ACTIONS(2515), + [aux_sym_cmd_identifier_token35] = ACTIONS(2515), + [aux_sym_cmd_identifier_token36] = ACTIONS(2515), + [anon_sym_true] = ACTIONS(2517), + [anon_sym_false] = ACTIONS(2517), + [anon_sym_null] = ACTIONS(2517), + [aux_sym_cmd_identifier_token38] = ACTIONS(2515), + [aux_sym_cmd_identifier_token39] = ACTIONS(2517), + [aux_sym_cmd_identifier_token40] = ACTIONS(2517), + [anon_sym_def] = ACTIONS(2515), + [anon_sym_export_DASHenv] = ACTIONS(2515), + [anon_sym_extern] = ACTIONS(2515), + [anon_sym_module] = ACTIONS(2515), + [anon_sym_use] = ACTIONS(2515), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_DOLLAR] = ACTIONS(2517), + [anon_sym_error] = ACTIONS(2515), + [anon_sym_list] = ACTIONS(2515), + [anon_sym_DASH] = ACTIONS(2515), + [anon_sym_break] = ACTIONS(2515), + [anon_sym_continue] = ACTIONS(2515), + [anon_sym_for] = ACTIONS(2515), + [anon_sym_in] = ACTIONS(2515), + [anon_sym_loop] = ACTIONS(2515), + [anon_sym_make] = ACTIONS(2515), + [anon_sym_while] = ACTIONS(2515), + [anon_sym_do] = ACTIONS(2515), + [anon_sym_if] = ACTIONS(2515), + [anon_sym_else] = ACTIONS(2515), + [anon_sym_match] = ACTIONS(2515), + [anon_sym_RBRACE] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2515), + [anon_sym_catch] = ACTIONS(2515), + [anon_sym_return] = ACTIONS(2515), + [anon_sym_source] = ACTIONS(2515), + [anon_sym_source_DASHenv] = ACTIONS(2515), + [anon_sym_register] = ACTIONS(2515), + [anon_sym_hide] = ACTIONS(2515), + [anon_sym_hide_DASHenv] = ACTIONS(2515), + [anon_sym_overlay] = ACTIONS(2515), + [anon_sym_new] = ACTIONS(2515), + [anon_sym_as] = ACTIONS(2515), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2517), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2517), + [aux_sym__val_number_decimal_token1] = ACTIONS(2515), + [aux_sym__val_number_decimal_token2] = ACTIONS(2517), + [aux_sym__val_number_decimal_token3] = ACTIONS(2517), + [aux_sym__val_number_decimal_token4] = ACTIONS(2517), + [aux_sym__val_number_token1] = ACTIONS(2517), + [aux_sym__val_number_token2] = ACTIONS(2517), + [aux_sym__val_number_token3] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [sym__str_single_quotes] = ACTIONS(2517), + [sym__str_back_ticks] = ACTIONS(2517), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2517), + [anon_sym_PLUS] = ACTIONS(2515), + [anon_sym_POUND] = ACTIONS(247), + }, + [636] = { + [sym_comment] = STATE(636), + [anon_sym_export] = ACTIONS(2481), + [anon_sym_alias] = ACTIONS(2481), + [anon_sym_let] = ACTIONS(2481), + [anon_sym_let_DASHenv] = ACTIONS(2481), + [anon_sym_mut] = ACTIONS(2481), + [anon_sym_const] = ACTIONS(2481), + [aux_sym_cmd_identifier_token1] = ACTIONS(2481), + [aux_sym_cmd_identifier_token2] = ACTIONS(2481), + [aux_sym_cmd_identifier_token3] = ACTIONS(2481), + [aux_sym_cmd_identifier_token4] = ACTIONS(2481), + [aux_sym_cmd_identifier_token5] = ACTIONS(2481), + [aux_sym_cmd_identifier_token6] = ACTIONS(2481), + [aux_sym_cmd_identifier_token7] = ACTIONS(2481), + [aux_sym_cmd_identifier_token8] = ACTIONS(2481), + [aux_sym_cmd_identifier_token9] = ACTIONS(2481), + [aux_sym_cmd_identifier_token10] = ACTIONS(2481), + [aux_sym_cmd_identifier_token11] = ACTIONS(2481), + [aux_sym_cmd_identifier_token12] = ACTIONS(2481), + [aux_sym_cmd_identifier_token13] = ACTIONS(2481), + [aux_sym_cmd_identifier_token14] = ACTIONS(2481), + [aux_sym_cmd_identifier_token15] = ACTIONS(2481), + [aux_sym_cmd_identifier_token16] = ACTIONS(2481), + [aux_sym_cmd_identifier_token17] = ACTIONS(2481), + [aux_sym_cmd_identifier_token18] = ACTIONS(2481), + [aux_sym_cmd_identifier_token19] = ACTIONS(2481), + [aux_sym_cmd_identifier_token20] = ACTIONS(2481), + [aux_sym_cmd_identifier_token21] = ACTIONS(2481), + [aux_sym_cmd_identifier_token22] = ACTIONS(2481), + [aux_sym_cmd_identifier_token23] = ACTIONS(2481), + [aux_sym_cmd_identifier_token24] = ACTIONS(2481), + [aux_sym_cmd_identifier_token25] = ACTIONS(2481), + [aux_sym_cmd_identifier_token26] = ACTIONS(2481), + [aux_sym_cmd_identifier_token27] = ACTIONS(2481), + [aux_sym_cmd_identifier_token28] = ACTIONS(2481), + [aux_sym_cmd_identifier_token29] = ACTIONS(2481), + [aux_sym_cmd_identifier_token30] = ACTIONS(2481), + [aux_sym_cmd_identifier_token31] = ACTIONS(2481), + [aux_sym_cmd_identifier_token32] = ACTIONS(2481), + [aux_sym_cmd_identifier_token33] = ACTIONS(2481), + [aux_sym_cmd_identifier_token34] = ACTIONS(2481), + [aux_sym_cmd_identifier_token35] = ACTIONS(2481), + [aux_sym_cmd_identifier_token36] = ACTIONS(2481), + [anon_sym_true] = ACTIONS(2483), + [anon_sym_false] = ACTIONS(2483), + [anon_sym_null] = ACTIONS(2483), + [aux_sym_cmd_identifier_token38] = ACTIONS(2481), + [aux_sym_cmd_identifier_token39] = ACTIONS(2483), + [aux_sym_cmd_identifier_token40] = ACTIONS(2483), + [anon_sym_def] = ACTIONS(2481), + [anon_sym_export_DASHenv] = ACTIONS(2481), + [anon_sym_extern] = ACTIONS(2481), + [anon_sym_module] = ACTIONS(2481), + [anon_sym_use] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2483), + [anon_sym_DOLLAR] = ACTIONS(2483), + [anon_sym_error] = ACTIONS(2481), + [anon_sym_list] = ACTIONS(2481), + [anon_sym_DASH] = ACTIONS(2481), + [anon_sym_break] = ACTIONS(2481), + [anon_sym_continue] = ACTIONS(2481), + [anon_sym_for] = ACTIONS(2481), + [anon_sym_in] = ACTIONS(2481), + [anon_sym_loop] = ACTIONS(2481), + [anon_sym_make] = ACTIONS(2481), + [anon_sym_while] = ACTIONS(2481), + [anon_sym_do] = ACTIONS(2481), + [anon_sym_if] = ACTIONS(2481), + [anon_sym_else] = ACTIONS(2481), + [anon_sym_match] = ACTIONS(2481), + [anon_sym_RBRACE] = ACTIONS(2483), + [anon_sym_try] = ACTIONS(2481), + [anon_sym_catch] = ACTIONS(2481), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_source] = ACTIONS(2481), + [anon_sym_source_DASHenv] = ACTIONS(2481), + [anon_sym_register] = ACTIONS(2481), + [anon_sym_hide] = ACTIONS(2481), + [anon_sym_hide_DASHenv] = ACTIONS(2481), + [anon_sym_overlay] = ACTIONS(2481), + [anon_sym_new] = ACTIONS(2481), + [anon_sym_as] = ACTIONS(2481), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2483), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2483), + [aux_sym__val_number_decimal_token1] = ACTIONS(2481), + [aux_sym__val_number_decimal_token2] = ACTIONS(2483), + [aux_sym__val_number_decimal_token3] = ACTIONS(2483), + [aux_sym__val_number_decimal_token4] = ACTIONS(2483), + [aux_sym__val_number_token1] = ACTIONS(2483), + [aux_sym__val_number_token2] = ACTIONS(2483), + [aux_sym__val_number_token3] = ACTIONS(2483), + [anon_sym_DQUOTE] = ACTIONS(2483), + [sym__str_single_quotes] = ACTIONS(2483), + [sym__str_back_ticks] = ACTIONS(2483), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2483), + [anon_sym_PLUS] = ACTIONS(2481), + [anon_sym_POUND] = ACTIONS(247), + }, + [637] = { + [sym_comment] = STATE(637), + [anon_sym_export] = ACTIONS(1949), + [anon_sym_alias] = ACTIONS(1949), + [anon_sym_let] = ACTIONS(1949), + [anon_sym_let_DASHenv] = ACTIONS(1949), + [anon_sym_mut] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(1949), + [aux_sym_cmd_identifier_token1] = ACTIONS(1949), + [aux_sym_cmd_identifier_token2] = ACTIONS(1949), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [aux_sym_cmd_identifier_token6] = ACTIONS(1949), + [aux_sym_cmd_identifier_token7] = ACTIONS(1949), + [aux_sym_cmd_identifier_token8] = ACTIONS(1949), + [aux_sym_cmd_identifier_token9] = ACTIONS(1949), + [aux_sym_cmd_identifier_token10] = ACTIONS(1949), + [aux_sym_cmd_identifier_token11] = ACTIONS(1949), + [aux_sym_cmd_identifier_token12] = ACTIONS(1949), + [aux_sym_cmd_identifier_token13] = ACTIONS(1949), + [aux_sym_cmd_identifier_token14] = ACTIONS(1949), + [aux_sym_cmd_identifier_token15] = ACTIONS(1949), + [aux_sym_cmd_identifier_token16] = ACTIONS(1949), + [aux_sym_cmd_identifier_token17] = ACTIONS(1949), + [aux_sym_cmd_identifier_token18] = ACTIONS(1949), + [aux_sym_cmd_identifier_token19] = ACTIONS(1949), + [aux_sym_cmd_identifier_token20] = ACTIONS(1949), + [aux_sym_cmd_identifier_token21] = ACTIONS(1949), + [aux_sym_cmd_identifier_token22] = ACTIONS(1949), + [aux_sym_cmd_identifier_token23] = ACTIONS(1949), + [aux_sym_cmd_identifier_token24] = ACTIONS(1949), + [aux_sym_cmd_identifier_token25] = ACTIONS(1949), + [aux_sym_cmd_identifier_token26] = ACTIONS(1949), + [aux_sym_cmd_identifier_token27] = ACTIONS(1949), + [aux_sym_cmd_identifier_token28] = ACTIONS(1949), + [aux_sym_cmd_identifier_token29] = ACTIONS(1949), + [aux_sym_cmd_identifier_token30] = ACTIONS(1949), + [aux_sym_cmd_identifier_token31] = ACTIONS(1949), + [aux_sym_cmd_identifier_token32] = ACTIONS(1949), + [aux_sym_cmd_identifier_token33] = ACTIONS(1949), + [aux_sym_cmd_identifier_token34] = ACTIONS(1949), + [aux_sym_cmd_identifier_token35] = ACTIONS(1949), + [aux_sym_cmd_identifier_token36] = ACTIONS(1949), + [anon_sym_true] = ACTIONS(1951), + [anon_sym_false] = ACTIONS(1951), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token38] = ACTIONS(1949), + [aux_sym_cmd_identifier_token39] = ACTIONS(1951), + [aux_sym_cmd_identifier_token40] = ACTIONS(1951), + [anon_sym_def] = ACTIONS(1949), + [anon_sym_export_DASHenv] = ACTIONS(1949), + [anon_sym_extern] = ACTIONS(1949), + [anon_sym_module] = ACTIONS(1949), + [anon_sym_use] = ACTIONS(1949), + [anon_sym_LPAREN] = ACTIONS(1951), + [anon_sym_DOLLAR] = ACTIONS(1951), + [anon_sym_error] = ACTIONS(1949), + [anon_sym_list] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1949), + [anon_sym_break] = ACTIONS(1949), + [anon_sym_continue] = ACTIONS(1949), + [anon_sym_for] = ACTIONS(1949), + [anon_sym_in] = ACTIONS(1949), + [anon_sym_loop] = ACTIONS(1949), + [anon_sym_make] = ACTIONS(1949), + [anon_sym_while] = ACTIONS(1949), + [anon_sym_do] = ACTIONS(1949), + [anon_sym_if] = ACTIONS(1949), + [anon_sym_else] = ACTIONS(1949), + [anon_sym_match] = ACTIONS(1949), + [anon_sym_RBRACE] = ACTIONS(1951), + [anon_sym_try] = ACTIONS(1949), + [anon_sym_catch] = ACTIONS(1949), + [anon_sym_return] = ACTIONS(1949), + [anon_sym_source] = ACTIONS(1949), + [anon_sym_source_DASHenv] = ACTIONS(1949), + [anon_sym_register] = ACTIONS(1949), + [anon_sym_hide] = ACTIONS(1949), + [anon_sym_hide_DASHenv] = ACTIONS(1949), + [anon_sym_overlay] = ACTIONS(1949), + [anon_sym_new] = ACTIONS(1949), + [anon_sym_as] = ACTIONS(1949), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1951), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1951), + [aux_sym__val_number_decimal_token1] = ACTIONS(1949), + [aux_sym__val_number_decimal_token2] = ACTIONS(1951), + [aux_sym__val_number_decimal_token3] = ACTIONS(1951), + [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [aux_sym__val_number_token1] = ACTIONS(1951), + [aux_sym__val_number_token2] = ACTIONS(1951), + [aux_sym__val_number_token3] = ACTIONS(1951), + [anon_sym_DQUOTE] = ACTIONS(1951), + [sym__str_single_quotes] = ACTIONS(1951), + [sym__str_back_ticks] = ACTIONS(1951), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1949), + [anon_sym_POUND] = ACTIONS(247), + }, + [638] = { + [sym_comment] = STATE(638), + [anon_sym_export] = ACTIONS(2035), + [anon_sym_alias] = ACTIONS(2035), + [anon_sym_let] = ACTIONS(2035), + [anon_sym_let_DASHenv] = ACTIONS(2035), + [anon_sym_mut] = ACTIONS(2035), + [anon_sym_const] = ACTIONS(2035), + [aux_sym_cmd_identifier_token1] = ACTIONS(2035), + [aux_sym_cmd_identifier_token2] = ACTIONS(2035), + [aux_sym_cmd_identifier_token3] = ACTIONS(2035), + [aux_sym_cmd_identifier_token4] = ACTIONS(2035), + [aux_sym_cmd_identifier_token5] = ACTIONS(2035), + [aux_sym_cmd_identifier_token6] = ACTIONS(2035), + [aux_sym_cmd_identifier_token7] = ACTIONS(2035), + [aux_sym_cmd_identifier_token8] = ACTIONS(2035), + [aux_sym_cmd_identifier_token9] = ACTIONS(2035), + [aux_sym_cmd_identifier_token10] = ACTIONS(2035), + [aux_sym_cmd_identifier_token11] = ACTIONS(2035), + [aux_sym_cmd_identifier_token12] = ACTIONS(2035), + [aux_sym_cmd_identifier_token13] = ACTIONS(2035), + [aux_sym_cmd_identifier_token14] = ACTIONS(2035), + [aux_sym_cmd_identifier_token15] = ACTIONS(2035), + [aux_sym_cmd_identifier_token16] = ACTIONS(2035), + [aux_sym_cmd_identifier_token17] = ACTIONS(2035), + [aux_sym_cmd_identifier_token18] = ACTIONS(2035), + [aux_sym_cmd_identifier_token19] = ACTIONS(2035), + [aux_sym_cmd_identifier_token20] = ACTIONS(2035), + [aux_sym_cmd_identifier_token21] = ACTIONS(2035), + [aux_sym_cmd_identifier_token22] = ACTIONS(2035), + [aux_sym_cmd_identifier_token23] = ACTIONS(2035), + [aux_sym_cmd_identifier_token24] = ACTIONS(2035), + [aux_sym_cmd_identifier_token25] = ACTIONS(2035), + [aux_sym_cmd_identifier_token26] = ACTIONS(2035), + [aux_sym_cmd_identifier_token27] = ACTIONS(2035), + [aux_sym_cmd_identifier_token28] = ACTIONS(2035), + [aux_sym_cmd_identifier_token29] = ACTIONS(2035), + [aux_sym_cmd_identifier_token30] = ACTIONS(2035), + [aux_sym_cmd_identifier_token31] = ACTIONS(2035), + [aux_sym_cmd_identifier_token32] = ACTIONS(2035), + [aux_sym_cmd_identifier_token33] = ACTIONS(2035), + [aux_sym_cmd_identifier_token34] = ACTIONS(2035), + [aux_sym_cmd_identifier_token35] = ACTIONS(2035), + [aux_sym_cmd_identifier_token36] = ACTIONS(2035), + [anon_sym_true] = ACTIONS(2041), + [anon_sym_false] = ACTIONS(2041), + [anon_sym_null] = ACTIONS(2041), + [aux_sym_cmd_identifier_token38] = ACTIONS(2035), + [aux_sym_cmd_identifier_token39] = ACTIONS(2041), + [aux_sym_cmd_identifier_token40] = ACTIONS(2041), + [anon_sym_def] = ACTIONS(2035), + [anon_sym_export_DASHenv] = ACTIONS(2035), + [anon_sym_extern] = ACTIONS(2035), + [anon_sym_module] = ACTIONS(2035), + [anon_sym_use] = ACTIONS(2035), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_DOLLAR] = ACTIONS(2041), + [anon_sym_error] = ACTIONS(2035), + [anon_sym_list] = ACTIONS(2035), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_break] = ACTIONS(2035), + [anon_sym_continue] = ACTIONS(2035), + [anon_sym_for] = ACTIONS(2035), + [anon_sym_in] = ACTIONS(2035), + [anon_sym_loop] = ACTIONS(2035), + [anon_sym_make] = ACTIONS(2035), + [anon_sym_while] = ACTIONS(2035), + [anon_sym_do] = ACTIONS(2035), + [anon_sym_if] = ACTIONS(2035), + [anon_sym_else] = ACTIONS(2035), + [anon_sym_match] = ACTIONS(2035), + [anon_sym_RBRACE] = ACTIONS(2041), + [anon_sym_try] = ACTIONS(2035), + [anon_sym_catch] = ACTIONS(2035), + [anon_sym_return] = ACTIONS(2035), + [anon_sym_source] = ACTIONS(2035), + [anon_sym_source_DASHenv] = ACTIONS(2035), + [anon_sym_register] = ACTIONS(2035), + [anon_sym_hide] = ACTIONS(2035), + [anon_sym_hide_DASHenv] = ACTIONS(2035), + [anon_sym_overlay] = ACTIONS(2035), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_as] = ACTIONS(2035), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2041), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2041), + [aux_sym__val_number_decimal_token1] = ACTIONS(2035), + [aux_sym__val_number_decimal_token2] = ACTIONS(2041), + [aux_sym__val_number_decimal_token3] = ACTIONS(2041), + [aux_sym__val_number_decimal_token4] = ACTIONS(2041), + [aux_sym__val_number_token1] = ACTIONS(2041), + [aux_sym__val_number_token2] = ACTIONS(2041), + [aux_sym__val_number_token3] = ACTIONS(2041), + [anon_sym_DQUOTE] = ACTIONS(2041), + [sym__str_single_quotes] = ACTIONS(2041), + [sym__str_back_ticks] = ACTIONS(2041), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2041), + [anon_sym_PLUS] = ACTIONS(2035), + [anon_sym_POUND] = ACTIONS(247), + }, + [639] = { + [sym_comment] = STATE(639), + [anon_sym_export] = ACTIONS(2493), + [anon_sym_alias] = ACTIONS(2493), + [anon_sym_let] = ACTIONS(2493), + [anon_sym_let_DASHenv] = ACTIONS(2493), + [anon_sym_mut] = ACTIONS(2493), + [anon_sym_const] = ACTIONS(2493), + [aux_sym_cmd_identifier_token1] = ACTIONS(2493), + [aux_sym_cmd_identifier_token2] = ACTIONS(2493), + [aux_sym_cmd_identifier_token3] = ACTIONS(2493), + [aux_sym_cmd_identifier_token4] = ACTIONS(2493), + [aux_sym_cmd_identifier_token5] = ACTIONS(2493), + [aux_sym_cmd_identifier_token6] = ACTIONS(2493), + [aux_sym_cmd_identifier_token7] = ACTIONS(2493), + [aux_sym_cmd_identifier_token8] = ACTIONS(2493), + [aux_sym_cmd_identifier_token9] = ACTIONS(2493), + [aux_sym_cmd_identifier_token10] = ACTIONS(2493), + [aux_sym_cmd_identifier_token11] = ACTIONS(2493), + [aux_sym_cmd_identifier_token12] = ACTIONS(2493), + [aux_sym_cmd_identifier_token13] = ACTIONS(2493), + [aux_sym_cmd_identifier_token14] = ACTIONS(2493), + [aux_sym_cmd_identifier_token15] = ACTIONS(2493), + [aux_sym_cmd_identifier_token16] = ACTIONS(2493), + [aux_sym_cmd_identifier_token17] = ACTIONS(2493), + [aux_sym_cmd_identifier_token18] = ACTIONS(2493), + [aux_sym_cmd_identifier_token19] = ACTIONS(2493), + [aux_sym_cmd_identifier_token20] = ACTIONS(2493), + [aux_sym_cmd_identifier_token21] = ACTIONS(2493), + [aux_sym_cmd_identifier_token22] = ACTIONS(2493), + [aux_sym_cmd_identifier_token23] = ACTIONS(2493), + [aux_sym_cmd_identifier_token24] = ACTIONS(2493), + [aux_sym_cmd_identifier_token25] = ACTIONS(2493), + [aux_sym_cmd_identifier_token26] = ACTIONS(2493), + [aux_sym_cmd_identifier_token27] = ACTIONS(2493), + [aux_sym_cmd_identifier_token28] = ACTIONS(2493), + [aux_sym_cmd_identifier_token29] = ACTIONS(2493), + [aux_sym_cmd_identifier_token30] = ACTIONS(2493), + [aux_sym_cmd_identifier_token31] = ACTIONS(2493), + [aux_sym_cmd_identifier_token32] = ACTIONS(2493), + [aux_sym_cmd_identifier_token33] = ACTIONS(2493), + [aux_sym_cmd_identifier_token34] = ACTIONS(2493), + [aux_sym_cmd_identifier_token35] = ACTIONS(2493), + [aux_sym_cmd_identifier_token36] = ACTIONS(2493), + [anon_sym_true] = ACTIONS(2495), + [anon_sym_false] = ACTIONS(2495), + [anon_sym_null] = ACTIONS(2495), + [aux_sym_cmd_identifier_token38] = ACTIONS(2493), + [aux_sym_cmd_identifier_token39] = ACTIONS(2495), + [aux_sym_cmd_identifier_token40] = ACTIONS(2495), + [anon_sym_def] = ACTIONS(2493), + [anon_sym_export_DASHenv] = ACTIONS(2493), + [anon_sym_extern] = ACTIONS(2493), + [anon_sym_module] = ACTIONS(2493), + [anon_sym_use] = ACTIONS(2493), + [anon_sym_LPAREN] = ACTIONS(2495), + [anon_sym_DOLLAR] = ACTIONS(2495), + [anon_sym_error] = ACTIONS(2493), + [anon_sym_list] = ACTIONS(2493), + [anon_sym_DASH] = ACTIONS(2493), + [anon_sym_break] = ACTIONS(2493), + [anon_sym_continue] = ACTIONS(2493), + [anon_sym_for] = ACTIONS(2493), + [anon_sym_in] = ACTIONS(2493), + [anon_sym_loop] = ACTIONS(2493), + [anon_sym_make] = ACTIONS(2493), + [anon_sym_while] = ACTIONS(2493), + [anon_sym_do] = ACTIONS(2493), + [anon_sym_if] = ACTIONS(2493), + [anon_sym_else] = ACTIONS(2493), + [anon_sym_match] = ACTIONS(2493), + [anon_sym_RBRACE] = ACTIONS(2495), + [anon_sym_try] = ACTIONS(2493), + [anon_sym_catch] = ACTIONS(2493), + [anon_sym_return] = ACTIONS(2493), + [anon_sym_source] = ACTIONS(2493), + [anon_sym_source_DASHenv] = ACTIONS(2493), + [anon_sym_register] = ACTIONS(2493), + [anon_sym_hide] = ACTIONS(2493), + [anon_sym_hide_DASHenv] = ACTIONS(2493), + [anon_sym_overlay] = ACTIONS(2493), + [anon_sym_new] = ACTIONS(2493), + [anon_sym_as] = ACTIONS(2493), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2495), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2495), + [aux_sym__val_number_decimal_token1] = ACTIONS(2493), + [aux_sym__val_number_decimal_token2] = ACTIONS(2495), + [aux_sym__val_number_decimal_token3] = ACTIONS(2495), + [aux_sym__val_number_decimal_token4] = ACTIONS(2495), + [aux_sym__val_number_token1] = ACTIONS(2495), + [aux_sym__val_number_token2] = ACTIONS(2495), + [aux_sym__val_number_token3] = ACTIONS(2495), + [anon_sym_DQUOTE] = ACTIONS(2495), + [sym__str_single_quotes] = ACTIONS(2495), + [sym__str_back_ticks] = ACTIONS(2495), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2495), + [anon_sym_PLUS] = ACTIONS(2493), + [anon_sym_POUND] = ACTIONS(247), + }, + [640] = { + [sym_comment] = STATE(640), + [anon_sym_export] = ACTIONS(2428), + [anon_sym_alias] = ACTIONS(2428), + [anon_sym_let] = ACTIONS(2428), + [anon_sym_let_DASHenv] = ACTIONS(2428), + [anon_sym_mut] = ACTIONS(2428), + [anon_sym_const] = ACTIONS(2428), + [aux_sym_cmd_identifier_token1] = ACTIONS(2428), + [aux_sym_cmd_identifier_token2] = ACTIONS(2428), + [aux_sym_cmd_identifier_token3] = ACTIONS(2428), + [aux_sym_cmd_identifier_token4] = ACTIONS(2428), + [aux_sym_cmd_identifier_token5] = ACTIONS(2428), + [aux_sym_cmd_identifier_token6] = ACTIONS(2428), + [aux_sym_cmd_identifier_token7] = ACTIONS(2428), + [aux_sym_cmd_identifier_token8] = ACTIONS(2428), + [aux_sym_cmd_identifier_token9] = ACTIONS(2428), + [aux_sym_cmd_identifier_token10] = ACTIONS(2428), + [aux_sym_cmd_identifier_token11] = ACTIONS(2428), + [aux_sym_cmd_identifier_token12] = ACTIONS(2428), + [aux_sym_cmd_identifier_token13] = ACTIONS(2428), + [aux_sym_cmd_identifier_token14] = ACTIONS(2428), + [aux_sym_cmd_identifier_token15] = ACTIONS(2428), + [aux_sym_cmd_identifier_token16] = ACTIONS(2428), + [aux_sym_cmd_identifier_token17] = ACTIONS(2428), + [aux_sym_cmd_identifier_token18] = ACTIONS(2428), + [aux_sym_cmd_identifier_token19] = ACTIONS(2428), + [aux_sym_cmd_identifier_token20] = ACTIONS(2428), + [aux_sym_cmd_identifier_token21] = ACTIONS(2428), + [aux_sym_cmd_identifier_token22] = ACTIONS(2428), + [aux_sym_cmd_identifier_token23] = ACTIONS(2428), + [aux_sym_cmd_identifier_token24] = ACTIONS(2428), + [aux_sym_cmd_identifier_token25] = ACTIONS(2428), + [aux_sym_cmd_identifier_token26] = ACTIONS(2428), + [aux_sym_cmd_identifier_token27] = ACTIONS(2428), + [aux_sym_cmd_identifier_token28] = ACTIONS(2428), + [aux_sym_cmd_identifier_token29] = ACTIONS(2428), + [aux_sym_cmd_identifier_token30] = ACTIONS(2428), + [aux_sym_cmd_identifier_token31] = ACTIONS(2428), + [aux_sym_cmd_identifier_token32] = ACTIONS(2428), + [aux_sym_cmd_identifier_token33] = ACTIONS(2428), + [aux_sym_cmd_identifier_token34] = ACTIONS(2428), + [aux_sym_cmd_identifier_token35] = ACTIONS(2428), + [aux_sym_cmd_identifier_token36] = ACTIONS(2428), + [anon_sym_true] = ACTIONS(2430), + [anon_sym_false] = ACTIONS(2430), + [anon_sym_null] = ACTIONS(2430), + [aux_sym_cmd_identifier_token38] = ACTIONS(2428), + [aux_sym_cmd_identifier_token39] = ACTIONS(2430), + [aux_sym_cmd_identifier_token40] = ACTIONS(2430), + [anon_sym_def] = ACTIONS(2428), + [anon_sym_export_DASHenv] = ACTIONS(2428), + [anon_sym_extern] = ACTIONS(2428), + [anon_sym_module] = ACTIONS(2428), + [anon_sym_use] = ACTIONS(2428), + [anon_sym_LPAREN] = ACTIONS(2430), + [anon_sym_DOLLAR] = ACTIONS(2430), + [anon_sym_error] = ACTIONS(2428), + [anon_sym_list] = ACTIONS(2428), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_break] = ACTIONS(2428), + [anon_sym_continue] = ACTIONS(2428), + [anon_sym_for] = ACTIONS(2428), + [anon_sym_in] = ACTIONS(2428), + [anon_sym_loop] = ACTIONS(2428), + [anon_sym_make] = ACTIONS(2428), + [anon_sym_while] = ACTIONS(2428), + [anon_sym_do] = ACTIONS(2428), + [anon_sym_if] = ACTIONS(2428), + [anon_sym_else] = ACTIONS(2428), + [anon_sym_match] = ACTIONS(2428), + [anon_sym_RBRACE] = ACTIONS(2430), + [anon_sym_try] = ACTIONS(2428), + [anon_sym_catch] = ACTIONS(2428), + [anon_sym_return] = ACTIONS(2428), + [anon_sym_source] = ACTIONS(2428), + [anon_sym_source_DASHenv] = ACTIONS(2428), + [anon_sym_register] = ACTIONS(2428), + [anon_sym_hide] = ACTIONS(2428), + [anon_sym_hide_DASHenv] = ACTIONS(2428), + [anon_sym_overlay] = ACTIONS(2428), + [anon_sym_new] = ACTIONS(2428), + [anon_sym_as] = ACTIONS(2428), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2430), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2430), + [aux_sym__val_number_decimal_token1] = ACTIONS(2428), + [aux_sym__val_number_decimal_token2] = ACTIONS(2430), + [aux_sym__val_number_decimal_token3] = ACTIONS(2430), + [aux_sym__val_number_decimal_token4] = ACTIONS(2430), + [aux_sym__val_number_token1] = ACTIONS(2430), + [aux_sym__val_number_token2] = ACTIONS(2430), + [aux_sym__val_number_token3] = ACTIONS(2430), + [anon_sym_DQUOTE] = ACTIONS(2430), + [sym__str_single_quotes] = ACTIONS(2430), + [sym__str_back_ticks] = ACTIONS(2430), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2430), + [anon_sym_PLUS] = ACTIONS(2428), + [anon_sym_POUND] = ACTIONS(247), + }, + [641] = { + [sym_comment] = STATE(641), + [anon_sym_export] = ACTIONS(2473), + [anon_sym_alias] = ACTIONS(2473), + [anon_sym_let] = ACTIONS(2473), + [anon_sym_let_DASHenv] = ACTIONS(2473), + [anon_sym_mut] = ACTIONS(2473), + [anon_sym_const] = ACTIONS(2473), + [aux_sym_cmd_identifier_token1] = ACTIONS(2473), + [aux_sym_cmd_identifier_token2] = ACTIONS(2473), + [aux_sym_cmd_identifier_token3] = ACTIONS(2473), + [aux_sym_cmd_identifier_token4] = ACTIONS(2473), + [aux_sym_cmd_identifier_token5] = ACTIONS(2473), + [aux_sym_cmd_identifier_token6] = ACTIONS(2473), + [aux_sym_cmd_identifier_token7] = ACTIONS(2473), + [aux_sym_cmd_identifier_token8] = ACTIONS(2473), + [aux_sym_cmd_identifier_token9] = ACTIONS(2473), + [aux_sym_cmd_identifier_token10] = ACTIONS(2473), + [aux_sym_cmd_identifier_token11] = ACTIONS(2473), + [aux_sym_cmd_identifier_token12] = ACTIONS(2473), + [aux_sym_cmd_identifier_token13] = ACTIONS(2473), + [aux_sym_cmd_identifier_token14] = ACTIONS(2473), + [aux_sym_cmd_identifier_token15] = ACTIONS(2473), + [aux_sym_cmd_identifier_token16] = ACTIONS(2473), + [aux_sym_cmd_identifier_token17] = ACTIONS(2473), + [aux_sym_cmd_identifier_token18] = ACTIONS(2473), + [aux_sym_cmd_identifier_token19] = ACTIONS(2473), + [aux_sym_cmd_identifier_token20] = ACTIONS(2473), + [aux_sym_cmd_identifier_token21] = ACTIONS(2473), + [aux_sym_cmd_identifier_token22] = ACTIONS(2473), + [aux_sym_cmd_identifier_token23] = ACTIONS(2473), + [aux_sym_cmd_identifier_token24] = ACTIONS(2473), + [aux_sym_cmd_identifier_token25] = ACTIONS(2473), + [aux_sym_cmd_identifier_token26] = ACTIONS(2473), + [aux_sym_cmd_identifier_token27] = ACTIONS(2473), + [aux_sym_cmd_identifier_token28] = ACTIONS(2473), + [aux_sym_cmd_identifier_token29] = ACTIONS(2473), + [aux_sym_cmd_identifier_token30] = ACTIONS(2473), + [aux_sym_cmd_identifier_token31] = ACTIONS(2473), + [aux_sym_cmd_identifier_token32] = ACTIONS(2473), + [aux_sym_cmd_identifier_token33] = ACTIONS(2473), + [aux_sym_cmd_identifier_token34] = ACTIONS(2473), + [aux_sym_cmd_identifier_token35] = ACTIONS(2473), + [aux_sym_cmd_identifier_token36] = ACTIONS(2473), + [anon_sym_true] = ACTIONS(2475), + [anon_sym_false] = ACTIONS(2475), + [anon_sym_null] = ACTIONS(2475), + [aux_sym_cmd_identifier_token38] = ACTIONS(2473), + [aux_sym_cmd_identifier_token39] = ACTIONS(2475), + [aux_sym_cmd_identifier_token40] = ACTIONS(2475), + [anon_sym_def] = ACTIONS(2473), + [anon_sym_export_DASHenv] = ACTIONS(2473), + [anon_sym_extern] = ACTIONS(2473), + [anon_sym_module] = ACTIONS(2473), + [anon_sym_use] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), + [anon_sym_DOLLAR] = ACTIONS(2475), + [anon_sym_error] = ACTIONS(2473), + [anon_sym_list] = ACTIONS(2473), + [anon_sym_DASH] = ACTIONS(2473), + [anon_sym_break] = ACTIONS(2473), + [anon_sym_continue] = ACTIONS(2473), + [anon_sym_for] = ACTIONS(2473), + [anon_sym_in] = ACTIONS(2473), + [anon_sym_loop] = ACTIONS(2473), + [anon_sym_make] = ACTIONS(2473), + [anon_sym_while] = ACTIONS(2473), + [anon_sym_do] = ACTIONS(2473), + [anon_sym_if] = ACTIONS(2473), + [anon_sym_else] = ACTIONS(2473), + [anon_sym_match] = ACTIONS(2473), + [anon_sym_RBRACE] = ACTIONS(2475), + [anon_sym_try] = ACTIONS(2473), + [anon_sym_catch] = ACTIONS(2473), + [anon_sym_return] = ACTIONS(2473), + [anon_sym_source] = ACTIONS(2473), + [anon_sym_source_DASHenv] = ACTIONS(2473), + [anon_sym_register] = ACTIONS(2473), + [anon_sym_hide] = ACTIONS(2473), + [anon_sym_hide_DASHenv] = ACTIONS(2473), + [anon_sym_overlay] = ACTIONS(2473), + [anon_sym_new] = ACTIONS(2473), + [anon_sym_as] = ACTIONS(2473), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2475), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2475), + [aux_sym__val_number_decimal_token1] = ACTIONS(2473), + [aux_sym__val_number_decimal_token2] = ACTIONS(2475), + [aux_sym__val_number_decimal_token3] = ACTIONS(2475), + [aux_sym__val_number_decimal_token4] = ACTIONS(2475), + [aux_sym__val_number_token1] = ACTIONS(2475), + [aux_sym__val_number_token2] = ACTIONS(2475), + [aux_sym__val_number_token3] = ACTIONS(2475), + [anon_sym_DQUOTE] = ACTIONS(2475), + [sym__str_single_quotes] = ACTIONS(2475), + [sym__str_back_ticks] = ACTIONS(2475), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2475), + [anon_sym_PLUS] = ACTIONS(2473), + [anon_sym_POUND] = ACTIONS(247), + }, + [642] = { + [sym_comment] = STATE(642), + [anon_sym_export] = ACTIONS(2432), + [anon_sym_alias] = ACTIONS(2432), + [anon_sym_let] = ACTIONS(2432), + [anon_sym_let_DASHenv] = ACTIONS(2432), + [anon_sym_mut] = ACTIONS(2432), + [anon_sym_const] = ACTIONS(2432), + [aux_sym_cmd_identifier_token1] = ACTIONS(2432), + [aux_sym_cmd_identifier_token2] = ACTIONS(2432), + [aux_sym_cmd_identifier_token3] = ACTIONS(2432), + [aux_sym_cmd_identifier_token4] = ACTIONS(2432), + [aux_sym_cmd_identifier_token5] = ACTIONS(2432), + [aux_sym_cmd_identifier_token6] = ACTIONS(2432), + [aux_sym_cmd_identifier_token7] = ACTIONS(2432), + [aux_sym_cmd_identifier_token8] = ACTIONS(2432), + [aux_sym_cmd_identifier_token9] = ACTIONS(2432), + [aux_sym_cmd_identifier_token10] = ACTIONS(2432), + [aux_sym_cmd_identifier_token11] = ACTIONS(2432), + [aux_sym_cmd_identifier_token12] = ACTIONS(2432), + [aux_sym_cmd_identifier_token13] = ACTIONS(2432), + [aux_sym_cmd_identifier_token14] = ACTIONS(2432), + [aux_sym_cmd_identifier_token15] = ACTIONS(2432), + [aux_sym_cmd_identifier_token16] = ACTIONS(2432), + [aux_sym_cmd_identifier_token17] = ACTIONS(2432), + [aux_sym_cmd_identifier_token18] = ACTIONS(2432), + [aux_sym_cmd_identifier_token19] = ACTIONS(2432), + [aux_sym_cmd_identifier_token20] = ACTIONS(2432), + [aux_sym_cmd_identifier_token21] = ACTIONS(2432), + [aux_sym_cmd_identifier_token22] = ACTIONS(2432), + [aux_sym_cmd_identifier_token23] = ACTIONS(2432), + [aux_sym_cmd_identifier_token24] = ACTIONS(2432), + [aux_sym_cmd_identifier_token25] = ACTIONS(2432), + [aux_sym_cmd_identifier_token26] = ACTIONS(2432), + [aux_sym_cmd_identifier_token27] = ACTIONS(2432), + [aux_sym_cmd_identifier_token28] = ACTIONS(2432), + [aux_sym_cmd_identifier_token29] = ACTIONS(2432), + [aux_sym_cmd_identifier_token30] = ACTIONS(2432), + [aux_sym_cmd_identifier_token31] = ACTIONS(2432), + [aux_sym_cmd_identifier_token32] = ACTIONS(2432), + [aux_sym_cmd_identifier_token33] = ACTIONS(2432), + [aux_sym_cmd_identifier_token34] = ACTIONS(2432), + [aux_sym_cmd_identifier_token35] = ACTIONS(2432), + [aux_sym_cmd_identifier_token36] = ACTIONS(2432), + [anon_sym_true] = ACTIONS(2434), + [anon_sym_false] = ACTIONS(2434), + [anon_sym_null] = ACTIONS(2434), + [aux_sym_cmd_identifier_token38] = ACTIONS(2432), + [aux_sym_cmd_identifier_token39] = ACTIONS(2434), + [aux_sym_cmd_identifier_token40] = ACTIONS(2434), + [anon_sym_def] = ACTIONS(2432), + [anon_sym_export_DASHenv] = ACTIONS(2432), + [anon_sym_extern] = ACTIONS(2432), + [anon_sym_module] = ACTIONS(2432), + [anon_sym_use] = ACTIONS(2432), + [anon_sym_LPAREN] = ACTIONS(2434), + [anon_sym_DOLLAR] = ACTIONS(2434), + [anon_sym_error] = ACTIONS(2432), + [anon_sym_list] = ACTIONS(2432), + [anon_sym_DASH] = ACTIONS(2432), + [anon_sym_break] = ACTIONS(2432), + [anon_sym_continue] = ACTIONS(2432), + [anon_sym_for] = ACTIONS(2432), + [anon_sym_in] = ACTIONS(2432), + [anon_sym_loop] = ACTIONS(2432), + [anon_sym_make] = ACTIONS(2432), + [anon_sym_while] = ACTIONS(2432), + [anon_sym_do] = ACTIONS(2432), + [anon_sym_if] = ACTIONS(2432), + [anon_sym_else] = ACTIONS(2432), + [anon_sym_match] = ACTIONS(2432), + [anon_sym_RBRACE] = ACTIONS(2434), + [anon_sym_try] = ACTIONS(2432), + [anon_sym_catch] = ACTIONS(2432), + [anon_sym_return] = ACTIONS(2432), + [anon_sym_source] = ACTIONS(2432), + [anon_sym_source_DASHenv] = ACTIONS(2432), + [anon_sym_register] = ACTIONS(2432), + [anon_sym_hide] = ACTIONS(2432), + [anon_sym_hide_DASHenv] = ACTIONS(2432), + [anon_sym_overlay] = ACTIONS(2432), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_as] = ACTIONS(2432), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2434), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2434), + [aux_sym__val_number_decimal_token1] = ACTIONS(2432), + [aux_sym__val_number_decimal_token2] = ACTIONS(2434), + [aux_sym__val_number_decimal_token3] = ACTIONS(2434), + [aux_sym__val_number_decimal_token4] = ACTIONS(2434), + [aux_sym__val_number_token1] = ACTIONS(2434), + [aux_sym__val_number_token2] = ACTIONS(2434), + [aux_sym__val_number_token3] = ACTIONS(2434), + [anon_sym_DQUOTE] = ACTIONS(2434), + [sym__str_single_quotes] = ACTIONS(2434), + [sym__str_back_ticks] = ACTIONS(2434), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2434), + [anon_sym_PLUS] = ACTIONS(2432), + [anon_sym_POUND] = ACTIONS(247), + }, + [643] = { + [sym_comment] = STATE(643), + [anon_sym_export] = ACTIONS(2043), + [anon_sym_alias] = ACTIONS(2043), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_DASHenv] = ACTIONS(2043), + [anon_sym_mut] = ACTIONS(2043), + [anon_sym_const] = ACTIONS(2043), + [aux_sym_cmd_identifier_token1] = ACTIONS(2043), + [aux_sym_cmd_identifier_token2] = ACTIONS(2043), + [aux_sym_cmd_identifier_token3] = ACTIONS(2043), + [aux_sym_cmd_identifier_token4] = ACTIONS(2043), + [aux_sym_cmd_identifier_token5] = ACTIONS(2043), + [aux_sym_cmd_identifier_token6] = ACTIONS(2043), + [aux_sym_cmd_identifier_token7] = ACTIONS(2043), + [aux_sym_cmd_identifier_token8] = ACTIONS(2043), + [aux_sym_cmd_identifier_token9] = ACTIONS(2043), + [aux_sym_cmd_identifier_token10] = ACTIONS(2043), + [aux_sym_cmd_identifier_token11] = ACTIONS(2043), + [aux_sym_cmd_identifier_token12] = ACTIONS(2043), + [aux_sym_cmd_identifier_token13] = ACTIONS(2043), + [aux_sym_cmd_identifier_token14] = ACTIONS(2043), + [aux_sym_cmd_identifier_token15] = ACTIONS(2043), + [aux_sym_cmd_identifier_token16] = ACTIONS(2043), + [aux_sym_cmd_identifier_token17] = ACTIONS(2043), + [aux_sym_cmd_identifier_token18] = ACTIONS(2043), + [aux_sym_cmd_identifier_token19] = ACTIONS(2043), + [aux_sym_cmd_identifier_token20] = ACTIONS(2043), + [aux_sym_cmd_identifier_token21] = ACTIONS(2043), + [aux_sym_cmd_identifier_token22] = ACTIONS(2043), + [aux_sym_cmd_identifier_token23] = ACTIONS(2043), + [aux_sym_cmd_identifier_token24] = ACTIONS(2043), + [aux_sym_cmd_identifier_token25] = ACTIONS(2043), + [aux_sym_cmd_identifier_token26] = ACTIONS(2043), + [aux_sym_cmd_identifier_token27] = ACTIONS(2043), + [aux_sym_cmd_identifier_token28] = ACTIONS(2043), + [aux_sym_cmd_identifier_token29] = ACTIONS(2043), + [aux_sym_cmd_identifier_token30] = ACTIONS(2043), + [aux_sym_cmd_identifier_token31] = ACTIONS(2043), + [aux_sym_cmd_identifier_token32] = ACTIONS(2043), + [aux_sym_cmd_identifier_token33] = ACTIONS(2043), + [aux_sym_cmd_identifier_token34] = ACTIONS(2043), + [aux_sym_cmd_identifier_token35] = ACTIONS(2043), + [aux_sym_cmd_identifier_token36] = ACTIONS(2043), + [anon_sym_true] = ACTIONS(2049), + [anon_sym_false] = ACTIONS(2049), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token38] = ACTIONS(2043), + [aux_sym_cmd_identifier_token39] = ACTIONS(2049), + [aux_sym_cmd_identifier_token40] = ACTIONS(2049), + [anon_sym_def] = ACTIONS(2043), + [anon_sym_export_DASHenv] = ACTIONS(2043), + [anon_sym_extern] = ACTIONS(2043), + [anon_sym_module] = ACTIONS(2043), + [anon_sym_use] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_DOLLAR] = ACTIONS(2049), + [anon_sym_error] = ACTIONS(2043), + [anon_sym_list] = ACTIONS(2043), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_break] = ACTIONS(2043), + [anon_sym_continue] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_in] = ACTIONS(2043), + [anon_sym_loop] = ACTIONS(2043), + [anon_sym_make] = ACTIONS(2043), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_do] = ACTIONS(2043), + [anon_sym_if] = ACTIONS(2043), + [anon_sym_else] = ACTIONS(2043), + [anon_sym_match] = ACTIONS(2043), + [anon_sym_RBRACE] = ACTIONS(2049), + [anon_sym_try] = ACTIONS(2043), + [anon_sym_catch] = ACTIONS(2043), + [anon_sym_return] = ACTIONS(2043), + [anon_sym_source] = ACTIONS(2043), + [anon_sym_source_DASHenv] = ACTIONS(2043), + [anon_sym_register] = ACTIONS(2043), + [anon_sym_hide] = ACTIONS(2043), + [anon_sym_hide_DASHenv] = ACTIONS(2043), + [anon_sym_overlay] = ACTIONS(2043), + [anon_sym_new] = ACTIONS(2043), + [anon_sym_as] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2049), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2049), + [aux_sym__val_number_decimal_token1] = ACTIONS(2043), + [aux_sym__val_number_decimal_token2] = ACTIONS(2049), + [aux_sym__val_number_decimal_token3] = ACTIONS(2049), + [aux_sym__val_number_decimal_token4] = ACTIONS(2049), + [aux_sym__val_number_token1] = ACTIONS(2049), + [aux_sym__val_number_token2] = ACTIONS(2049), + [aux_sym__val_number_token3] = ACTIONS(2049), + [anon_sym_DQUOTE] = ACTIONS(2049), + [sym__str_single_quotes] = ACTIONS(2049), + [sym__str_back_ticks] = ACTIONS(2049), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2049), + [anon_sym_PLUS] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(247), + }, + [644] = { + [sym_comment] = STATE(644), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_alias] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_let_DASHenv] = ACTIONS(2368), + [anon_sym_mut] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [aux_sym_cmd_identifier_token1] = ACTIONS(2368), + [aux_sym_cmd_identifier_token2] = ACTIONS(2368), + [aux_sym_cmd_identifier_token3] = ACTIONS(2368), + [aux_sym_cmd_identifier_token4] = ACTIONS(2368), + [aux_sym_cmd_identifier_token5] = ACTIONS(2368), + [aux_sym_cmd_identifier_token6] = ACTIONS(2368), + [aux_sym_cmd_identifier_token7] = ACTIONS(2368), + [aux_sym_cmd_identifier_token8] = ACTIONS(2368), + [aux_sym_cmd_identifier_token9] = ACTIONS(2368), + [aux_sym_cmd_identifier_token10] = ACTIONS(2368), + [aux_sym_cmd_identifier_token11] = ACTIONS(2368), + [aux_sym_cmd_identifier_token12] = ACTIONS(2368), + [aux_sym_cmd_identifier_token13] = ACTIONS(2368), + [aux_sym_cmd_identifier_token14] = ACTIONS(2368), + [aux_sym_cmd_identifier_token15] = ACTIONS(2368), + [aux_sym_cmd_identifier_token16] = ACTIONS(2368), + [aux_sym_cmd_identifier_token17] = ACTIONS(2368), + [aux_sym_cmd_identifier_token18] = ACTIONS(2368), + [aux_sym_cmd_identifier_token19] = ACTIONS(2368), + [aux_sym_cmd_identifier_token20] = ACTIONS(2368), + [aux_sym_cmd_identifier_token21] = ACTIONS(2368), + [aux_sym_cmd_identifier_token22] = ACTIONS(2368), + [aux_sym_cmd_identifier_token23] = ACTIONS(2368), + [aux_sym_cmd_identifier_token24] = ACTIONS(2368), + [aux_sym_cmd_identifier_token25] = ACTIONS(2368), + [aux_sym_cmd_identifier_token26] = ACTIONS(2368), + [aux_sym_cmd_identifier_token27] = ACTIONS(2368), + [aux_sym_cmd_identifier_token28] = ACTIONS(2368), + [aux_sym_cmd_identifier_token29] = ACTIONS(2368), + [aux_sym_cmd_identifier_token30] = ACTIONS(2368), + [aux_sym_cmd_identifier_token31] = ACTIONS(2368), + [aux_sym_cmd_identifier_token32] = ACTIONS(2368), + [aux_sym_cmd_identifier_token33] = ACTIONS(2368), + [aux_sym_cmd_identifier_token34] = ACTIONS(2368), + [aux_sym_cmd_identifier_token35] = ACTIONS(2368), + [aux_sym_cmd_identifier_token36] = ACTIONS(2368), + [anon_sym_true] = ACTIONS(2370), + [anon_sym_false] = ACTIONS(2370), + [anon_sym_null] = ACTIONS(2370), + [aux_sym_cmd_identifier_token38] = ACTIONS(2368), + [aux_sym_cmd_identifier_token39] = ACTIONS(2370), + [aux_sym_cmd_identifier_token40] = ACTIONS(2370), + [anon_sym_def] = ACTIONS(2368), + [anon_sym_export_DASHenv] = ACTIONS(2368), + [anon_sym_extern] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_use] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_DOLLAR] = ACTIONS(2370), + [anon_sym_error] = ACTIONS(2368), + [anon_sym_list] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_in] = ACTIONS(2368), + [anon_sym_loop] = ACTIONS(2368), + [anon_sym_make] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_else] = ACTIONS(2368), + [anon_sym_match] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_catch] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_source] = ACTIONS(2368), + [anon_sym_source_DASHenv] = ACTIONS(2368), + [anon_sym_register] = ACTIONS(2368), + [anon_sym_hide] = ACTIONS(2368), + [anon_sym_hide_DASHenv] = ACTIONS(2368), + [anon_sym_overlay] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_as] = ACTIONS(2368), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2370), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2370), + [aux_sym__val_number_decimal_token1] = ACTIONS(2368), + [aux_sym__val_number_decimal_token2] = ACTIONS(2370), + [aux_sym__val_number_decimal_token3] = ACTIONS(2370), + [aux_sym__val_number_decimal_token4] = ACTIONS(2370), + [aux_sym__val_number_token1] = ACTIONS(2370), + [aux_sym__val_number_token2] = ACTIONS(2370), + [aux_sym__val_number_token3] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [sym__str_single_quotes] = ACTIONS(2370), + [sym__str_back_ticks] = ACTIONS(2370), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_POUND] = ACTIONS(247), + }, + [645] = { + [sym_comment] = STATE(645), [anon_sym_export] = ACTIONS(1879), [anon_sym_alias] = ACTIONS(1879), [anon_sym_let] = ACTIONS(1879), @@ -146523,983 +144481,884 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1879), [anon_sym_POUND] = ACTIONS(247), }, - [625] = { - [sym_comment] = STATE(625), - [anon_sym_export] = ACTIONS(976), - [anon_sym_alias] = ACTIONS(976), - [anon_sym_let] = ACTIONS(976), - [anon_sym_let_DASHenv] = ACTIONS(976), - [anon_sym_mut] = ACTIONS(976), - [anon_sym_const] = ACTIONS(976), - [aux_sym_cmd_identifier_token1] = ACTIONS(976), - [aux_sym_cmd_identifier_token2] = ACTIONS(976), - [aux_sym_cmd_identifier_token3] = ACTIONS(976), - [aux_sym_cmd_identifier_token4] = ACTIONS(976), - [aux_sym_cmd_identifier_token5] = ACTIONS(976), - [aux_sym_cmd_identifier_token6] = ACTIONS(976), - [aux_sym_cmd_identifier_token7] = ACTIONS(976), - [aux_sym_cmd_identifier_token8] = ACTIONS(976), - [aux_sym_cmd_identifier_token9] = ACTIONS(976), - [aux_sym_cmd_identifier_token10] = ACTIONS(976), - [aux_sym_cmd_identifier_token11] = ACTIONS(976), - [aux_sym_cmd_identifier_token12] = ACTIONS(976), - [aux_sym_cmd_identifier_token13] = ACTIONS(976), - [aux_sym_cmd_identifier_token14] = ACTIONS(976), - [aux_sym_cmd_identifier_token15] = ACTIONS(976), - [aux_sym_cmd_identifier_token16] = ACTIONS(976), - [aux_sym_cmd_identifier_token17] = ACTIONS(976), - [aux_sym_cmd_identifier_token18] = ACTIONS(976), - [aux_sym_cmd_identifier_token19] = ACTIONS(976), - [aux_sym_cmd_identifier_token20] = ACTIONS(976), - [aux_sym_cmd_identifier_token21] = ACTIONS(976), - [aux_sym_cmd_identifier_token22] = ACTIONS(976), - [aux_sym_cmd_identifier_token23] = ACTIONS(976), - [aux_sym_cmd_identifier_token24] = ACTIONS(976), - [aux_sym_cmd_identifier_token25] = ACTIONS(976), - [aux_sym_cmd_identifier_token26] = ACTIONS(976), - [aux_sym_cmd_identifier_token27] = ACTIONS(976), - [aux_sym_cmd_identifier_token28] = ACTIONS(976), - [aux_sym_cmd_identifier_token29] = ACTIONS(976), - [aux_sym_cmd_identifier_token30] = ACTIONS(976), - [aux_sym_cmd_identifier_token31] = ACTIONS(976), - [aux_sym_cmd_identifier_token32] = ACTIONS(976), - [aux_sym_cmd_identifier_token33] = ACTIONS(976), - [aux_sym_cmd_identifier_token34] = ACTIONS(976), - [aux_sym_cmd_identifier_token35] = ACTIONS(976), - [aux_sym_cmd_identifier_token36] = ACTIONS(976), - [anon_sym_true] = ACTIONS(978), - [anon_sym_false] = ACTIONS(978), - [anon_sym_null] = ACTIONS(978), - [aux_sym_cmd_identifier_token38] = ACTIONS(976), - [aux_sym_cmd_identifier_token39] = ACTIONS(978), - [aux_sym_cmd_identifier_token40] = ACTIONS(978), - [anon_sym_def] = ACTIONS(976), - [anon_sym_export_DASHenv] = ACTIONS(976), - [anon_sym_extern] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_use] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(978), - [anon_sym_DOLLAR] = ACTIONS(978), - [anon_sym_error] = ACTIONS(976), - [anon_sym_list] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_break] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_in] = ACTIONS(976), - [anon_sym_loop] = ACTIONS(976), - [anon_sym_make] = ACTIONS(976), - [anon_sym_while] = ACTIONS(976), - [anon_sym_do] = ACTIONS(976), - [anon_sym_if] = ACTIONS(976), - [anon_sym_else] = ACTIONS(976), - [anon_sym_match] = ACTIONS(976), - [anon_sym_RBRACE] = ACTIONS(978), - [anon_sym_try] = ACTIONS(976), - [anon_sym_catch] = ACTIONS(976), - [anon_sym_return] = ACTIONS(976), - [anon_sym_source] = ACTIONS(976), - [anon_sym_source_DASHenv] = ACTIONS(976), - [anon_sym_register] = ACTIONS(976), - [anon_sym_hide] = ACTIONS(976), - [anon_sym_hide_DASHenv] = ACTIONS(976), - [anon_sym_overlay] = ACTIONS(976), - [anon_sym_new] = ACTIONS(976), - [anon_sym_as] = ACTIONS(976), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(978), - [aux_sym__val_number_decimal_token1] = ACTIONS(976), - [aux_sym__val_number_decimal_token2] = ACTIONS(978), - [aux_sym__val_number_decimal_token3] = ACTIONS(978), - [aux_sym__val_number_decimal_token4] = ACTIONS(978), - [aux_sym__val_number_token1] = ACTIONS(978), - [aux_sym__val_number_token2] = ACTIONS(978), - [aux_sym__val_number_token3] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(978), - [sym__str_single_quotes] = ACTIONS(978), - [sym__str_back_ticks] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(978), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(247), - }, - [626] = { - [sym_comment] = STATE(626), - [anon_sym_export] = ACTIONS(2441), - [anon_sym_alias] = ACTIONS(2441), - [anon_sym_let] = ACTIONS(2441), - [anon_sym_let_DASHenv] = ACTIONS(2441), - [anon_sym_mut] = ACTIONS(2441), - [anon_sym_const] = ACTIONS(2441), - [aux_sym_cmd_identifier_token1] = ACTIONS(2441), - [aux_sym_cmd_identifier_token2] = ACTIONS(2441), - [aux_sym_cmd_identifier_token3] = ACTIONS(2441), - [aux_sym_cmd_identifier_token4] = ACTIONS(2441), - [aux_sym_cmd_identifier_token5] = ACTIONS(2441), - [aux_sym_cmd_identifier_token6] = ACTIONS(2441), - [aux_sym_cmd_identifier_token7] = ACTIONS(2441), - [aux_sym_cmd_identifier_token8] = ACTIONS(2441), - [aux_sym_cmd_identifier_token9] = ACTIONS(2441), - [aux_sym_cmd_identifier_token10] = ACTIONS(2441), - [aux_sym_cmd_identifier_token11] = ACTIONS(2441), - [aux_sym_cmd_identifier_token12] = ACTIONS(2441), - [aux_sym_cmd_identifier_token13] = ACTIONS(2441), - [aux_sym_cmd_identifier_token14] = ACTIONS(2441), - [aux_sym_cmd_identifier_token15] = ACTIONS(2441), - [aux_sym_cmd_identifier_token16] = ACTIONS(2441), - [aux_sym_cmd_identifier_token17] = ACTIONS(2441), - [aux_sym_cmd_identifier_token18] = ACTIONS(2441), - [aux_sym_cmd_identifier_token19] = ACTIONS(2441), - [aux_sym_cmd_identifier_token20] = ACTIONS(2441), - [aux_sym_cmd_identifier_token21] = ACTIONS(2441), - [aux_sym_cmd_identifier_token22] = ACTIONS(2441), - [aux_sym_cmd_identifier_token23] = ACTIONS(2441), - [aux_sym_cmd_identifier_token24] = ACTIONS(2441), - [aux_sym_cmd_identifier_token25] = ACTIONS(2441), - [aux_sym_cmd_identifier_token26] = ACTIONS(2441), - [aux_sym_cmd_identifier_token27] = ACTIONS(2441), - [aux_sym_cmd_identifier_token28] = ACTIONS(2441), - [aux_sym_cmd_identifier_token29] = ACTIONS(2441), - [aux_sym_cmd_identifier_token30] = ACTIONS(2441), - [aux_sym_cmd_identifier_token31] = ACTIONS(2441), - [aux_sym_cmd_identifier_token32] = ACTIONS(2441), - [aux_sym_cmd_identifier_token33] = ACTIONS(2441), - [aux_sym_cmd_identifier_token34] = ACTIONS(2441), - [aux_sym_cmd_identifier_token35] = ACTIONS(2441), - [aux_sym_cmd_identifier_token36] = ACTIONS(2441), - [anon_sym_true] = ACTIONS(2443), - [anon_sym_false] = ACTIONS(2443), - [anon_sym_null] = ACTIONS(2443), - [aux_sym_cmd_identifier_token38] = ACTIONS(2441), - [aux_sym_cmd_identifier_token39] = ACTIONS(2443), - [aux_sym_cmd_identifier_token40] = ACTIONS(2443), - [anon_sym_def] = ACTIONS(2441), - [anon_sym_export_DASHenv] = ACTIONS(2441), - [anon_sym_extern] = ACTIONS(2441), - [anon_sym_module] = ACTIONS(2441), - [anon_sym_use] = ACTIONS(2441), - [anon_sym_LPAREN] = ACTIONS(2443), - [anon_sym_DOLLAR] = ACTIONS(2443), - [anon_sym_error] = ACTIONS(2441), - [anon_sym_list] = ACTIONS(2441), - [anon_sym_DASH] = ACTIONS(2441), - [anon_sym_break] = ACTIONS(2441), - [anon_sym_continue] = ACTIONS(2441), - [anon_sym_for] = ACTIONS(2441), - [anon_sym_in] = ACTIONS(2441), - [anon_sym_loop] = ACTIONS(2441), - [anon_sym_make] = ACTIONS(2441), - [anon_sym_while] = ACTIONS(2441), - [anon_sym_do] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2441), - [anon_sym_else] = ACTIONS(2441), - [anon_sym_match] = ACTIONS(2441), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_try] = ACTIONS(2441), - [anon_sym_catch] = ACTIONS(2441), - [anon_sym_return] = ACTIONS(2441), - [anon_sym_source] = ACTIONS(2441), - [anon_sym_source_DASHenv] = ACTIONS(2441), - [anon_sym_register] = ACTIONS(2441), - [anon_sym_hide] = ACTIONS(2441), - [anon_sym_hide_DASHenv] = ACTIONS(2441), - [anon_sym_overlay] = ACTIONS(2441), - [anon_sym_new] = ACTIONS(2441), - [anon_sym_as] = ACTIONS(2441), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2443), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2443), - [aux_sym__val_number_decimal_token1] = ACTIONS(2441), - [aux_sym__val_number_decimal_token2] = ACTIONS(2443), - [aux_sym__val_number_decimal_token3] = ACTIONS(2443), - [aux_sym__val_number_decimal_token4] = ACTIONS(2443), - [aux_sym__val_number_token1] = ACTIONS(2443), - [aux_sym__val_number_token2] = ACTIONS(2443), - [aux_sym__val_number_token3] = ACTIONS(2443), - [anon_sym_DQUOTE] = ACTIONS(2443), - [sym__str_single_quotes] = ACTIONS(2443), - [sym__str_back_ticks] = ACTIONS(2443), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(2441), + [646] = { + [sym_comment] = STATE(646), + [anon_sym_export] = ACTIONS(1961), + [anon_sym_alias] = ACTIONS(1961), + [anon_sym_let] = ACTIONS(1961), + [anon_sym_let_DASHenv] = ACTIONS(1961), + [anon_sym_mut] = ACTIONS(1961), + [anon_sym_const] = ACTIONS(1961), + [aux_sym_cmd_identifier_token1] = ACTIONS(1961), + [aux_sym_cmd_identifier_token2] = ACTIONS(1961), + [aux_sym_cmd_identifier_token3] = ACTIONS(1961), + [aux_sym_cmd_identifier_token4] = ACTIONS(1961), + [aux_sym_cmd_identifier_token5] = ACTIONS(1961), + [aux_sym_cmd_identifier_token6] = ACTIONS(1961), + [aux_sym_cmd_identifier_token7] = ACTIONS(1961), + [aux_sym_cmd_identifier_token8] = ACTIONS(1961), + [aux_sym_cmd_identifier_token9] = ACTIONS(1961), + [aux_sym_cmd_identifier_token10] = ACTIONS(1961), + [aux_sym_cmd_identifier_token11] = ACTIONS(1961), + [aux_sym_cmd_identifier_token12] = ACTIONS(1961), + [aux_sym_cmd_identifier_token13] = ACTIONS(1961), + [aux_sym_cmd_identifier_token14] = ACTIONS(1961), + [aux_sym_cmd_identifier_token15] = ACTIONS(1961), + [aux_sym_cmd_identifier_token16] = ACTIONS(1961), + [aux_sym_cmd_identifier_token17] = ACTIONS(1961), + [aux_sym_cmd_identifier_token18] = ACTIONS(1961), + [aux_sym_cmd_identifier_token19] = ACTIONS(1961), + [aux_sym_cmd_identifier_token20] = ACTIONS(1961), + [aux_sym_cmd_identifier_token21] = ACTIONS(1961), + [aux_sym_cmd_identifier_token22] = ACTIONS(1961), + [aux_sym_cmd_identifier_token23] = ACTIONS(1961), + [aux_sym_cmd_identifier_token24] = ACTIONS(1961), + [aux_sym_cmd_identifier_token25] = ACTIONS(1961), + [aux_sym_cmd_identifier_token26] = ACTIONS(1961), + [aux_sym_cmd_identifier_token27] = ACTIONS(1961), + [aux_sym_cmd_identifier_token28] = ACTIONS(1961), + [aux_sym_cmd_identifier_token29] = ACTIONS(1961), + [aux_sym_cmd_identifier_token30] = ACTIONS(1961), + [aux_sym_cmd_identifier_token31] = ACTIONS(1961), + [aux_sym_cmd_identifier_token32] = ACTIONS(1961), + [aux_sym_cmd_identifier_token33] = ACTIONS(1961), + [aux_sym_cmd_identifier_token34] = ACTIONS(1961), + [aux_sym_cmd_identifier_token35] = ACTIONS(1961), + [aux_sym_cmd_identifier_token36] = ACTIONS(1961), + [anon_sym_true] = ACTIONS(1963), + [anon_sym_false] = ACTIONS(1963), + [anon_sym_null] = ACTIONS(1963), + [aux_sym_cmd_identifier_token38] = ACTIONS(1961), + [aux_sym_cmd_identifier_token39] = ACTIONS(1963), + [aux_sym_cmd_identifier_token40] = ACTIONS(1963), + [anon_sym_def] = ACTIONS(1961), + [anon_sym_export_DASHenv] = ACTIONS(1961), + [anon_sym_extern] = ACTIONS(1961), + [anon_sym_module] = ACTIONS(1961), + [anon_sym_use] = ACTIONS(1961), + [anon_sym_LPAREN] = ACTIONS(1963), + [anon_sym_DOLLAR] = ACTIONS(1963), + [anon_sym_error] = ACTIONS(1961), + [anon_sym_list] = ACTIONS(1961), + [anon_sym_DASH] = ACTIONS(1961), + [anon_sym_break] = ACTIONS(1961), + [anon_sym_continue] = ACTIONS(1961), + [anon_sym_for] = ACTIONS(1961), + [anon_sym_in] = ACTIONS(1961), + [anon_sym_loop] = ACTIONS(1961), + [anon_sym_make] = ACTIONS(1961), + [anon_sym_while] = ACTIONS(1961), + [anon_sym_do] = ACTIONS(1961), + [anon_sym_if] = ACTIONS(1961), + [anon_sym_else] = ACTIONS(1961), + [anon_sym_match] = ACTIONS(1961), + [anon_sym_RBRACE] = ACTIONS(1963), + [anon_sym_try] = ACTIONS(1961), + [anon_sym_catch] = ACTIONS(1961), + [anon_sym_return] = ACTIONS(1961), + [anon_sym_source] = ACTIONS(1961), + [anon_sym_source_DASHenv] = ACTIONS(1961), + [anon_sym_register] = ACTIONS(1961), + [anon_sym_hide] = ACTIONS(1961), + [anon_sym_hide_DASHenv] = ACTIONS(1961), + [anon_sym_overlay] = ACTIONS(1961), + [anon_sym_new] = ACTIONS(1961), + [anon_sym_as] = ACTIONS(1961), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1963), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1963), + [aux_sym__val_number_decimal_token4] = ACTIONS(1963), + [aux_sym__val_number_token1] = ACTIONS(1963), + [aux_sym__val_number_token2] = ACTIONS(1963), + [aux_sym__val_number_token3] = ACTIONS(1963), + [anon_sym_DQUOTE] = ACTIONS(1963), + [sym__str_single_quotes] = ACTIONS(1963), + [sym__str_back_ticks] = ACTIONS(1963), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1961), [anon_sym_POUND] = ACTIONS(247), }, - [627] = { - [sym_comment] = STATE(627), - [anon_sym_export] = ACTIONS(2311), - [anon_sym_alias] = ACTIONS(2311), - [anon_sym_let] = ACTIONS(2311), - [anon_sym_let_DASHenv] = ACTIONS(2311), - [anon_sym_mut] = ACTIONS(2311), - [anon_sym_const] = ACTIONS(2311), - [aux_sym_cmd_identifier_token1] = ACTIONS(2311), - [aux_sym_cmd_identifier_token2] = ACTIONS(2311), - [aux_sym_cmd_identifier_token3] = ACTIONS(2311), - [aux_sym_cmd_identifier_token4] = ACTIONS(2311), - [aux_sym_cmd_identifier_token5] = ACTIONS(2311), - [aux_sym_cmd_identifier_token6] = ACTIONS(2311), - [aux_sym_cmd_identifier_token7] = ACTIONS(2311), - [aux_sym_cmd_identifier_token8] = ACTIONS(2311), - [aux_sym_cmd_identifier_token9] = ACTIONS(2311), - [aux_sym_cmd_identifier_token10] = ACTIONS(2311), - [aux_sym_cmd_identifier_token11] = ACTIONS(2311), - [aux_sym_cmd_identifier_token12] = ACTIONS(2311), - [aux_sym_cmd_identifier_token13] = ACTIONS(2311), - [aux_sym_cmd_identifier_token14] = ACTIONS(2311), - [aux_sym_cmd_identifier_token15] = ACTIONS(2311), - [aux_sym_cmd_identifier_token16] = ACTIONS(2311), - [aux_sym_cmd_identifier_token17] = ACTIONS(2311), - [aux_sym_cmd_identifier_token18] = ACTIONS(2311), - [aux_sym_cmd_identifier_token19] = ACTIONS(2311), - [aux_sym_cmd_identifier_token20] = ACTIONS(2311), - [aux_sym_cmd_identifier_token21] = ACTIONS(2311), - [aux_sym_cmd_identifier_token22] = ACTIONS(2311), - [aux_sym_cmd_identifier_token23] = ACTIONS(2311), - [aux_sym_cmd_identifier_token24] = ACTIONS(2311), - [aux_sym_cmd_identifier_token25] = ACTIONS(2311), - [aux_sym_cmd_identifier_token26] = ACTIONS(2311), - [aux_sym_cmd_identifier_token27] = ACTIONS(2311), - [aux_sym_cmd_identifier_token28] = ACTIONS(2311), - [aux_sym_cmd_identifier_token29] = ACTIONS(2311), - [aux_sym_cmd_identifier_token30] = ACTIONS(2311), - [aux_sym_cmd_identifier_token31] = ACTIONS(2311), - [aux_sym_cmd_identifier_token32] = ACTIONS(2311), - [aux_sym_cmd_identifier_token33] = ACTIONS(2311), - [aux_sym_cmd_identifier_token34] = ACTIONS(2311), - [aux_sym_cmd_identifier_token35] = ACTIONS(2311), - [aux_sym_cmd_identifier_token36] = ACTIONS(2311), - [anon_sym_true] = ACTIONS(2313), - [anon_sym_false] = ACTIONS(2313), - [anon_sym_null] = ACTIONS(2313), - [aux_sym_cmd_identifier_token38] = ACTIONS(2311), - [aux_sym_cmd_identifier_token39] = ACTIONS(2313), - [aux_sym_cmd_identifier_token40] = ACTIONS(2313), - [anon_sym_def] = ACTIONS(2311), - [anon_sym_export_DASHenv] = ACTIONS(2311), - [anon_sym_extern] = ACTIONS(2311), - [anon_sym_module] = ACTIONS(2311), - [anon_sym_use] = ACTIONS(2311), - [anon_sym_LPAREN] = ACTIONS(2313), - [anon_sym_DOLLAR] = ACTIONS(2313), - [anon_sym_error] = ACTIONS(2311), - [anon_sym_list] = ACTIONS(2311), - [anon_sym_DASH] = ACTIONS(2311), - [anon_sym_break] = ACTIONS(2311), - [anon_sym_continue] = ACTIONS(2311), - [anon_sym_for] = ACTIONS(2311), - [anon_sym_in] = ACTIONS(2311), - [anon_sym_loop] = ACTIONS(2311), - [anon_sym_make] = ACTIONS(2311), - [anon_sym_while] = ACTIONS(2311), - [anon_sym_do] = ACTIONS(2311), - [anon_sym_if] = ACTIONS(2311), - [anon_sym_else] = ACTIONS(2311), - [anon_sym_match] = ACTIONS(2311), - [anon_sym_RBRACE] = ACTIONS(2313), - [anon_sym_try] = ACTIONS(2311), - [anon_sym_catch] = ACTIONS(2311), - [anon_sym_return] = ACTIONS(2311), - [anon_sym_source] = ACTIONS(2311), - [anon_sym_source_DASHenv] = ACTIONS(2311), - [anon_sym_register] = ACTIONS(2311), - [anon_sym_hide] = ACTIONS(2311), - [anon_sym_hide_DASHenv] = ACTIONS(2311), - [anon_sym_overlay] = ACTIONS(2311), - [anon_sym_new] = ACTIONS(2311), - [anon_sym_as] = ACTIONS(2311), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2313), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2313), - [aux_sym__val_number_decimal_token1] = ACTIONS(2311), - [aux_sym__val_number_decimal_token2] = ACTIONS(2313), - [aux_sym__val_number_decimal_token3] = ACTIONS(2313), - [aux_sym__val_number_decimal_token4] = ACTIONS(2313), - [aux_sym__val_number_token1] = ACTIONS(2313), - [aux_sym__val_number_token2] = ACTIONS(2313), - [aux_sym__val_number_token3] = ACTIONS(2313), - [anon_sym_DQUOTE] = ACTIONS(2313), - [sym__str_single_quotes] = ACTIONS(2313), - [sym__str_back_ticks] = ACTIONS(2313), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2311), + [647] = { + [sym_comment] = STATE(647), + [anon_sym_export] = ACTIONS(1575), + [anon_sym_alias] = ACTIONS(1575), + [anon_sym_let] = ACTIONS(1575), + [anon_sym_let_DASHenv] = ACTIONS(1575), + [anon_sym_mut] = ACTIONS(1575), + [anon_sym_const] = ACTIONS(1575), + [aux_sym_cmd_identifier_token1] = ACTIONS(1575), + [aux_sym_cmd_identifier_token2] = ACTIONS(1575), + [aux_sym_cmd_identifier_token3] = ACTIONS(1575), + [aux_sym_cmd_identifier_token4] = ACTIONS(1575), + [aux_sym_cmd_identifier_token5] = ACTIONS(1575), + [aux_sym_cmd_identifier_token6] = ACTIONS(1575), + [aux_sym_cmd_identifier_token7] = ACTIONS(1575), + [aux_sym_cmd_identifier_token8] = ACTIONS(1575), + [aux_sym_cmd_identifier_token9] = ACTIONS(1575), + [aux_sym_cmd_identifier_token10] = ACTIONS(1575), + [aux_sym_cmd_identifier_token11] = ACTIONS(1575), + [aux_sym_cmd_identifier_token12] = ACTIONS(1575), + [aux_sym_cmd_identifier_token13] = ACTIONS(1575), + [aux_sym_cmd_identifier_token14] = ACTIONS(1575), + [aux_sym_cmd_identifier_token15] = ACTIONS(1575), + [aux_sym_cmd_identifier_token16] = ACTIONS(1575), + [aux_sym_cmd_identifier_token17] = ACTIONS(1575), + [aux_sym_cmd_identifier_token18] = ACTIONS(1575), + [aux_sym_cmd_identifier_token19] = ACTIONS(1575), + [aux_sym_cmd_identifier_token20] = ACTIONS(1575), + [aux_sym_cmd_identifier_token21] = ACTIONS(1575), + [aux_sym_cmd_identifier_token22] = ACTIONS(1575), + [aux_sym_cmd_identifier_token23] = ACTIONS(1575), + [aux_sym_cmd_identifier_token24] = ACTIONS(1575), + [aux_sym_cmd_identifier_token25] = ACTIONS(1575), + [aux_sym_cmd_identifier_token26] = ACTIONS(1575), + [aux_sym_cmd_identifier_token27] = ACTIONS(1575), + [aux_sym_cmd_identifier_token28] = ACTIONS(1575), + [aux_sym_cmd_identifier_token29] = ACTIONS(1575), + [aux_sym_cmd_identifier_token30] = ACTIONS(1575), + [aux_sym_cmd_identifier_token31] = ACTIONS(1575), + [aux_sym_cmd_identifier_token32] = ACTIONS(1575), + [aux_sym_cmd_identifier_token33] = ACTIONS(1575), + [aux_sym_cmd_identifier_token34] = ACTIONS(1575), + [aux_sym_cmd_identifier_token35] = ACTIONS(1575), + [aux_sym_cmd_identifier_token36] = ACTIONS(1575), + [anon_sym_true] = ACTIONS(1587), + [anon_sym_false] = ACTIONS(1587), + [anon_sym_null] = ACTIONS(1587), + [aux_sym_cmd_identifier_token38] = ACTIONS(1575), + [aux_sym_cmd_identifier_token39] = ACTIONS(1587), + [aux_sym_cmd_identifier_token40] = ACTIONS(1587), + [anon_sym_def] = ACTIONS(1575), + [anon_sym_export_DASHenv] = ACTIONS(1575), + [anon_sym_extern] = ACTIONS(1575), + [anon_sym_module] = ACTIONS(1575), + [anon_sym_use] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_DOLLAR] = ACTIONS(1587), + [anon_sym_error] = ACTIONS(1575), + [anon_sym_list] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_break] = ACTIONS(1575), + [anon_sym_continue] = ACTIONS(1575), + [anon_sym_for] = ACTIONS(1575), + [anon_sym_in] = ACTIONS(1575), + [anon_sym_loop] = ACTIONS(1575), + [anon_sym_make] = ACTIONS(1575), + [anon_sym_while] = ACTIONS(1575), + [anon_sym_do] = ACTIONS(1575), + [anon_sym_if] = ACTIONS(1575), + [anon_sym_else] = ACTIONS(1575), + [anon_sym_match] = ACTIONS(1575), + [anon_sym_RBRACE] = ACTIONS(1587), + [anon_sym_try] = ACTIONS(1575), + [anon_sym_catch] = ACTIONS(1575), + [anon_sym_return] = ACTIONS(1575), + [anon_sym_source] = ACTIONS(1575), + [anon_sym_source_DASHenv] = ACTIONS(1575), + [anon_sym_register] = ACTIONS(1575), + [anon_sym_hide] = ACTIONS(1575), + [anon_sym_hide_DASHenv] = ACTIONS(1575), + [anon_sym_overlay] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1575), + [anon_sym_as] = ACTIONS(1575), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1587), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1587), + [aux_sym__val_number_decimal_token1] = ACTIONS(1575), + [aux_sym__val_number_decimal_token2] = ACTIONS(1587), + [aux_sym__val_number_decimal_token3] = ACTIONS(1587), + [aux_sym__val_number_decimal_token4] = ACTIONS(1587), + [aux_sym__val_number_token1] = ACTIONS(1587), + [aux_sym__val_number_token2] = ACTIONS(1587), + [aux_sym__val_number_token3] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [sym__str_single_quotes] = ACTIONS(1587), + [sym__str_back_ticks] = ACTIONS(1587), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(1575), [anon_sym_POUND] = ACTIONS(247), }, - [628] = { - [sym_comment] = STATE(628), - [anon_sym_export] = ACTIONS(2311), - [anon_sym_alias] = ACTIONS(2311), - [anon_sym_let] = ACTIONS(2311), - [anon_sym_let_DASHenv] = ACTIONS(2311), - [anon_sym_mut] = ACTIONS(2311), - [anon_sym_const] = ACTIONS(2311), - [aux_sym_cmd_identifier_token1] = ACTIONS(2311), - [aux_sym_cmd_identifier_token2] = ACTIONS(2311), - [aux_sym_cmd_identifier_token3] = ACTIONS(2311), - [aux_sym_cmd_identifier_token4] = ACTIONS(2311), - [aux_sym_cmd_identifier_token5] = ACTIONS(2311), - [aux_sym_cmd_identifier_token6] = ACTIONS(2311), - [aux_sym_cmd_identifier_token7] = ACTIONS(2311), - [aux_sym_cmd_identifier_token8] = ACTIONS(2311), - [aux_sym_cmd_identifier_token9] = ACTIONS(2311), - [aux_sym_cmd_identifier_token10] = ACTIONS(2311), - [aux_sym_cmd_identifier_token11] = ACTIONS(2311), - [aux_sym_cmd_identifier_token12] = ACTIONS(2311), - [aux_sym_cmd_identifier_token13] = ACTIONS(2311), - [aux_sym_cmd_identifier_token14] = ACTIONS(2311), - [aux_sym_cmd_identifier_token15] = ACTIONS(2311), - [aux_sym_cmd_identifier_token16] = ACTIONS(2311), - [aux_sym_cmd_identifier_token17] = ACTIONS(2311), - [aux_sym_cmd_identifier_token18] = ACTIONS(2311), - [aux_sym_cmd_identifier_token19] = ACTIONS(2311), - [aux_sym_cmd_identifier_token20] = ACTIONS(2311), - [aux_sym_cmd_identifier_token21] = ACTIONS(2311), - [aux_sym_cmd_identifier_token22] = ACTIONS(2311), - [aux_sym_cmd_identifier_token23] = ACTIONS(2311), - [aux_sym_cmd_identifier_token24] = ACTIONS(2311), - [aux_sym_cmd_identifier_token25] = ACTIONS(2311), - [aux_sym_cmd_identifier_token26] = ACTIONS(2311), - [aux_sym_cmd_identifier_token27] = ACTIONS(2311), - [aux_sym_cmd_identifier_token28] = ACTIONS(2311), - [aux_sym_cmd_identifier_token29] = ACTIONS(2311), - [aux_sym_cmd_identifier_token30] = ACTIONS(2311), - [aux_sym_cmd_identifier_token31] = ACTIONS(2311), - [aux_sym_cmd_identifier_token32] = ACTIONS(2311), - [aux_sym_cmd_identifier_token33] = ACTIONS(2311), - [aux_sym_cmd_identifier_token34] = ACTIONS(2311), - [aux_sym_cmd_identifier_token35] = ACTIONS(2311), - [aux_sym_cmd_identifier_token36] = ACTIONS(2311), - [anon_sym_true] = ACTIONS(2313), - [anon_sym_false] = ACTIONS(2313), - [anon_sym_null] = ACTIONS(2313), - [aux_sym_cmd_identifier_token38] = ACTIONS(2311), - [aux_sym_cmd_identifier_token39] = ACTIONS(2313), - [aux_sym_cmd_identifier_token40] = ACTIONS(2313), - [anon_sym_def] = ACTIONS(2311), - [anon_sym_export_DASHenv] = ACTIONS(2311), - [anon_sym_extern] = ACTIONS(2311), - [anon_sym_module] = ACTIONS(2311), - [anon_sym_use] = ACTIONS(2311), - [anon_sym_LPAREN] = ACTIONS(2313), - [anon_sym_DOLLAR] = ACTIONS(2313), - [anon_sym_error] = ACTIONS(2311), - [anon_sym_list] = ACTIONS(2311), - [anon_sym_DASH] = ACTIONS(2311), - [anon_sym_break] = ACTIONS(2311), - [anon_sym_continue] = ACTIONS(2311), - [anon_sym_for] = ACTIONS(2311), - [anon_sym_in] = ACTIONS(2311), - [anon_sym_loop] = ACTIONS(2311), - [anon_sym_make] = ACTIONS(2311), - [anon_sym_while] = ACTIONS(2311), - [anon_sym_do] = ACTIONS(2311), - [anon_sym_if] = ACTIONS(2311), - [anon_sym_else] = ACTIONS(2311), - [anon_sym_match] = ACTIONS(2311), - [anon_sym_RBRACE] = ACTIONS(2313), - [anon_sym_try] = ACTIONS(2311), - [anon_sym_catch] = ACTIONS(2311), - [anon_sym_return] = ACTIONS(2311), - [anon_sym_source] = ACTIONS(2311), - [anon_sym_source_DASHenv] = ACTIONS(2311), - [anon_sym_register] = ACTIONS(2311), - [anon_sym_hide] = ACTIONS(2311), - [anon_sym_hide_DASHenv] = ACTIONS(2311), - [anon_sym_overlay] = ACTIONS(2311), - [anon_sym_new] = ACTIONS(2311), - [anon_sym_as] = ACTIONS(2311), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2313), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2313), - [aux_sym__val_number_decimal_token1] = ACTIONS(2311), - [aux_sym__val_number_decimal_token2] = ACTIONS(2313), - [aux_sym__val_number_decimal_token3] = ACTIONS(2313), - [aux_sym__val_number_decimal_token4] = ACTIONS(2313), - [aux_sym__val_number_token1] = ACTIONS(2313), - [aux_sym__val_number_token2] = ACTIONS(2313), - [aux_sym__val_number_token3] = ACTIONS(2313), - [anon_sym_DQUOTE] = ACTIONS(2313), - [sym__str_single_quotes] = ACTIONS(2313), - [sym__str_back_ticks] = ACTIONS(2313), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2311), + [648] = { + [sym_comment] = STATE(648), + [anon_sym_export] = ACTIONS(2436), + [anon_sym_alias] = ACTIONS(2436), + [anon_sym_let] = ACTIONS(2436), + [anon_sym_let_DASHenv] = ACTIONS(2436), + [anon_sym_mut] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [aux_sym_cmd_identifier_token1] = ACTIONS(2436), + [aux_sym_cmd_identifier_token2] = ACTIONS(2436), + [aux_sym_cmd_identifier_token3] = ACTIONS(2436), + [aux_sym_cmd_identifier_token4] = ACTIONS(2436), + [aux_sym_cmd_identifier_token5] = ACTIONS(2436), + [aux_sym_cmd_identifier_token6] = ACTIONS(2436), + [aux_sym_cmd_identifier_token7] = ACTIONS(2436), + [aux_sym_cmd_identifier_token8] = ACTIONS(2436), + [aux_sym_cmd_identifier_token9] = ACTIONS(2436), + [aux_sym_cmd_identifier_token10] = ACTIONS(2436), + [aux_sym_cmd_identifier_token11] = ACTIONS(2436), + [aux_sym_cmd_identifier_token12] = ACTIONS(2436), + [aux_sym_cmd_identifier_token13] = ACTIONS(2436), + [aux_sym_cmd_identifier_token14] = ACTIONS(2436), + [aux_sym_cmd_identifier_token15] = ACTIONS(2436), + [aux_sym_cmd_identifier_token16] = ACTIONS(2436), + [aux_sym_cmd_identifier_token17] = ACTIONS(2436), + [aux_sym_cmd_identifier_token18] = ACTIONS(2436), + [aux_sym_cmd_identifier_token19] = ACTIONS(2436), + [aux_sym_cmd_identifier_token20] = ACTIONS(2436), + [aux_sym_cmd_identifier_token21] = ACTIONS(2436), + [aux_sym_cmd_identifier_token22] = ACTIONS(2436), + [aux_sym_cmd_identifier_token23] = ACTIONS(2436), + [aux_sym_cmd_identifier_token24] = ACTIONS(2436), + [aux_sym_cmd_identifier_token25] = ACTIONS(2436), + [aux_sym_cmd_identifier_token26] = ACTIONS(2436), + [aux_sym_cmd_identifier_token27] = ACTIONS(2436), + [aux_sym_cmd_identifier_token28] = ACTIONS(2436), + [aux_sym_cmd_identifier_token29] = ACTIONS(2436), + [aux_sym_cmd_identifier_token30] = ACTIONS(2436), + [aux_sym_cmd_identifier_token31] = ACTIONS(2436), + [aux_sym_cmd_identifier_token32] = ACTIONS(2436), + [aux_sym_cmd_identifier_token33] = ACTIONS(2436), + [aux_sym_cmd_identifier_token34] = ACTIONS(2436), + [aux_sym_cmd_identifier_token35] = ACTIONS(2436), + [aux_sym_cmd_identifier_token36] = ACTIONS(2436), + [anon_sym_true] = ACTIONS(2438), + [anon_sym_false] = ACTIONS(2438), + [anon_sym_null] = ACTIONS(2438), + [aux_sym_cmd_identifier_token38] = ACTIONS(2436), + [aux_sym_cmd_identifier_token39] = ACTIONS(2438), + [aux_sym_cmd_identifier_token40] = ACTIONS(2438), + [anon_sym_def] = ACTIONS(2436), + [anon_sym_export_DASHenv] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym_module] = ACTIONS(2436), + [anon_sym_use] = ACTIONS(2436), + [anon_sym_LPAREN] = ACTIONS(2438), + [anon_sym_DOLLAR] = ACTIONS(2438), + [anon_sym_error] = ACTIONS(2436), + [anon_sym_list] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_break] = ACTIONS(2436), + [anon_sym_continue] = ACTIONS(2436), + [anon_sym_for] = ACTIONS(2436), + [anon_sym_in] = ACTIONS(2436), + [anon_sym_loop] = ACTIONS(2436), + [anon_sym_make] = ACTIONS(2436), + [anon_sym_while] = ACTIONS(2436), + [anon_sym_do] = ACTIONS(2436), + [anon_sym_if] = ACTIONS(2436), + [anon_sym_else] = ACTIONS(2436), + [anon_sym_match] = ACTIONS(2436), + [anon_sym_RBRACE] = ACTIONS(2438), + [anon_sym_try] = ACTIONS(2436), + [anon_sym_catch] = ACTIONS(2436), + [anon_sym_return] = ACTIONS(2436), + [anon_sym_source] = ACTIONS(2436), + [anon_sym_source_DASHenv] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_hide] = ACTIONS(2436), + [anon_sym_hide_DASHenv] = ACTIONS(2436), + [anon_sym_overlay] = ACTIONS(2436), + [anon_sym_new] = ACTIONS(2436), + [anon_sym_as] = ACTIONS(2436), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2438), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2438), + [aux_sym__val_number_decimal_token1] = ACTIONS(2436), + [aux_sym__val_number_decimal_token2] = ACTIONS(2438), + [aux_sym__val_number_decimal_token3] = ACTIONS(2438), + [aux_sym__val_number_decimal_token4] = ACTIONS(2438), + [aux_sym__val_number_token1] = ACTIONS(2438), + [aux_sym__val_number_token2] = ACTIONS(2438), + [aux_sym__val_number_token3] = ACTIONS(2438), + [anon_sym_DQUOTE] = ACTIONS(2438), + [sym__str_single_quotes] = ACTIONS(2438), + [sym__str_back_ticks] = ACTIONS(2438), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2438), + [anon_sym_PLUS] = ACTIONS(2436), [anon_sym_POUND] = ACTIONS(247), }, - [629] = { - [sym_comment] = STATE(629), - [anon_sym_export] = ACTIONS(2451), - [anon_sym_alias] = ACTIONS(2451), - [anon_sym_let] = ACTIONS(2451), - [anon_sym_let_DASHenv] = ACTIONS(2451), - [anon_sym_mut] = ACTIONS(2451), - [anon_sym_const] = ACTIONS(2451), - [aux_sym_cmd_identifier_token1] = ACTIONS(2451), - [aux_sym_cmd_identifier_token2] = ACTIONS(2451), - [aux_sym_cmd_identifier_token3] = ACTIONS(2451), - [aux_sym_cmd_identifier_token4] = ACTIONS(2451), - [aux_sym_cmd_identifier_token5] = ACTIONS(2451), - [aux_sym_cmd_identifier_token6] = ACTIONS(2451), - [aux_sym_cmd_identifier_token7] = ACTIONS(2451), - [aux_sym_cmd_identifier_token8] = ACTIONS(2451), - [aux_sym_cmd_identifier_token9] = ACTIONS(2451), - [aux_sym_cmd_identifier_token10] = ACTIONS(2451), - [aux_sym_cmd_identifier_token11] = ACTIONS(2451), - [aux_sym_cmd_identifier_token12] = ACTIONS(2451), - [aux_sym_cmd_identifier_token13] = ACTIONS(2451), - [aux_sym_cmd_identifier_token14] = ACTIONS(2451), - [aux_sym_cmd_identifier_token15] = ACTIONS(2451), - [aux_sym_cmd_identifier_token16] = ACTIONS(2451), - [aux_sym_cmd_identifier_token17] = ACTIONS(2451), - [aux_sym_cmd_identifier_token18] = ACTIONS(2451), - [aux_sym_cmd_identifier_token19] = ACTIONS(2451), - [aux_sym_cmd_identifier_token20] = ACTIONS(2451), - [aux_sym_cmd_identifier_token21] = ACTIONS(2451), - [aux_sym_cmd_identifier_token22] = ACTIONS(2451), - [aux_sym_cmd_identifier_token23] = ACTIONS(2451), - [aux_sym_cmd_identifier_token24] = ACTIONS(2451), - [aux_sym_cmd_identifier_token25] = ACTIONS(2451), - [aux_sym_cmd_identifier_token26] = ACTIONS(2451), - [aux_sym_cmd_identifier_token27] = ACTIONS(2451), - [aux_sym_cmd_identifier_token28] = ACTIONS(2451), - [aux_sym_cmd_identifier_token29] = ACTIONS(2451), - [aux_sym_cmd_identifier_token30] = ACTIONS(2451), - [aux_sym_cmd_identifier_token31] = ACTIONS(2451), - [aux_sym_cmd_identifier_token32] = ACTIONS(2451), - [aux_sym_cmd_identifier_token33] = ACTIONS(2451), - [aux_sym_cmd_identifier_token34] = ACTIONS(2451), - [aux_sym_cmd_identifier_token35] = ACTIONS(2451), - [aux_sym_cmd_identifier_token36] = ACTIONS(2451), - [anon_sym_true] = ACTIONS(2453), - [anon_sym_false] = ACTIONS(2453), - [anon_sym_null] = ACTIONS(2453), - [aux_sym_cmd_identifier_token38] = ACTIONS(2451), - [aux_sym_cmd_identifier_token39] = ACTIONS(2453), - [aux_sym_cmd_identifier_token40] = ACTIONS(2453), - [anon_sym_def] = ACTIONS(2451), - [anon_sym_export_DASHenv] = ACTIONS(2451), - [anon_sym_extern] = ACTIONS(2451), - [anon_sym_module] = ACTIONS(2451), - [anon_sym_use] = ACTIONS(2451), - [anon_sym_LPAREN] = ACTIONS(2453), - [anon_sym_DOLLAR] = ACTIONS(2453), - [anon_sym_error] = ACTIONS(2451), - [anon_sym_list] = ACTIONS(2451), - [anon_sym_DASH] = ACTIONS(2451), - [anon_sym_break] = ACTIONS(2451), - [anon_sym_continue] = ACTIONS(2451), - [anon_sym_for] = ACTIONS(2451), - [anon_sym_in] = ACTIONS(2451), - [anon_sym_loop] = ACTIONS(2451), - [anon_sym_make] = ACTIONS(2451), - [anon_sym_while] = ACTIONS(2451), - [anon_sym_do] = ACTIONS(2451), - [anon_sym_if] = ACTIONS(2451), - [anon_sym_else] = ACTIONS(2451), - [anon_sym_match] = ACTIONS(2451), - [anon_sym_RBRACE] = ACTIONS(2453), - [anon_sym_try] = ACTIONS(2451), - [anon_sym_catch] = ACTIONS(2451), - [anon_sym_return] = ACTIONS(2451), - [anon_sym_source] = ACTIONS(2451), - [anon_sym_source_DASHenv] = ACTIONS(2451), - [anon_sym_register] = ACTIONS(2451), - [anon_sym_hide] = ACTIONS(2451), - [anon_sym_hide_DASHenv] = ACTIONS(2451), - [anon_sym_overlay] = ACTIONS(2451), - [anon_sym_new] = ACTIONS(2451), - [anon_sym_as] = ACTIONS(2451), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2453), - [aux_sym__val_number_decimal_token1] = ACTIONS(2451), - [aux_sym__val_number_decimal_token2] = ACTIONS(2453), - [aux_sym__val_number_decimal_token3] = ACTIONS(2453), - [aux_sym__val_number_decimal_token4] = ACTIONS(2453), - [aux_sym__val_number_token1] = ACTIONS(2453), - [aux_sym__val_number_token2] = ACTIONS(2453), - [aux_sym__val_number_token3] = ACTIONS(2453), - [anon_sym_DQUOTE] = ACTIONS(2453), - [sym__str_single_quotes] = ACTIONS(2453), - [sym__str_back_ticks] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2453), - [anon_sym_PLUS] = ACTIONS(2451), + [649] = { + [sym_comment] = STATE(649), + [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), + [aux_sym_cmd_identifier_token1] = ACTIONS(1921), + [aux_sym_cmd_identifier_token2] = ACTIONS(1921), + [aux_sym_cmd_identifier_token3] = ACTIONS(1921), + [aux_sym_cmd_identifier_token4] = ACTIONS(1921), + [aux_sym_cmd_identifier_token5] = ACTIONS(1921), + [aux_sym_cmd_identifier_token6] = ACTIONS(1921), + [aux_sym_cmd_identifier_token7] = ACTIONS(1921), + [aux_sym_cmd_identifier_token8] = ACTIONS(1921), + [aux_sym_cmd_identifier_token9] = ACTIONS(1921), + [aux_sym_cmd_identifier_token10] = ACTIONS(1921), + [aux_sym_cmd_identifier_token11] = ACTIONS(1921), + [aux_sym_cmd_identifier_token12] = ACTIONS(1921), + [aux_sym_cmd_identifier_token13] = ACTIONS(1921), + [aux_sym_cmd_identifier_token14] = ACTIONS(1921), + [aux_sym_cmd_identifier_token15] = ACTIONS(1921), + [aux_sym_cmd_identifier_token16] = ACTIONS(1921), + [aux_sym_cmd_identifier_token17] = ACTIONS(1921), + [aux_sym_cmd_identifier_token18] = ACTIONS(1921), + [aux_sym_cmd_identifier_token19] = ACTIONS(1921), + [aux_sym_cmd_identifier_token20] = ACTIONS(1921), + [aux_sym_cmd_identifier_token21] = ACTIONS(1921), + [aux_sym_cmd_identifier_token22] = ACTIONS(1921), + [aux_sym_cmd_identifier_token23] = ACTIONS(1921), + [aux_sym_cmd_identifier_token24] = ACTIONS(1921), + [aux_sym_cmd_identifier_token25] = ACTIONS(1921), + [aux_sym_cmd_identifier_token26] = ACTIONS(1921), + [aux_sym_cmd_identifier_token27] = ACTIONS(1921), + [aux_sym_cmd_identifier_token28] = ACTIONS(1921), + [aux_sym_cmd_identifier_token29] = ACTIONS(1921), + [aux_sym_cmd_identifier_token30] = ACTIONS(1921), + [aux_sym_cmd_identifier_token31] = ACTIONS(1921), + [aux_sym_cmd_identifier_token32] = ACTIONS(1921), + [aux_sym_cmd_identifier_token33] = ACTIONS(1921), + [aux_sym_cmd_identifier_token34] = ACTIONS(1921), + [aux_sym_cmd_identifier_token35] = ACTIONS(1921), + [aux_sym_cmd_identifier_token36] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1923), + [aux_sym_cmd_identifier_token38] = ACTIONS(1921), + [aux_sym_cmd_identifier_token39] = ACTIONS(1923), + [aux_sym_cmd_identifier_token40] = ACTIONS(1923), + [anon_sym_def] = 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_LPAREN] = ACTIONS(1923), + [anon_sym_DOLLAR] = ACTIONS(1923), + [anon_sym_error] = ACTIONS(1921), + [anon_sym_list] = ACTIONS(1921), + [anon_sym_DASH] = ACTIONS(1921), + [anon_sym_break] = ACTIONS(1921), + [anon_sym_continue] = ACTIONS(1921), + [anon_sym_for] = ACTIONS(1921), + [anon_sym_in] = ACTIONS(1921), + [anon_sym_loop] = ACTIONS(1921), + [anon_sym_make] = ACTIONS(1921), + [anon_sym_while] = ACTIONS(1921), + [anon_sym_do] = ACTIONS(1921), + [anon_sym_if] = ACTIONS(1921), + [anon_sym_else] = ACTIONS(1921), + [anon_sym_match] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(1923), + [anon_sym_try] = ACTIONS(1921), + [anon_sym_catch] = 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_new] = ACTIONS(1921), + [anon_sym_as] = ACTIONS(1921), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1923), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1923), + [aux_sym__val_number_decimal_token1] = ACTIONS(1921), + [aux_sym__val_number_decimal_token2] = ACTIONS(1923), + [aux_sym__val_number_decimal_token3] = ACTIONS(1923), + [aux_sym__val_number_decimal_token4] = ACTIONS(1923), + [aux_sym__val_number_token1] = ACTIONS(1923), + [aux_sym__val_number_token2] = ACTIONS(1923), + [aux_sym__val_number_token3] = ACTIONS(1923), + [anon_sym_DQUOTE] = ACTIONS(1923), + [sym__str_single_quotes] = ACTIONS(1923), + [sym__str_back_ticks] = ACTIONS(1923), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1921), [anon_sym_POUND] = ACTIONS(247), }, - [630] = { - [sym_comment] = STATE(630), - [anon_sym_export] = ACTIONS(2348), - [anon_sym_alias] = ACTIONS(2348), - [anon_sym_let] = ACTIONS(2348), - [anon_sym_let_DASHenv] = ACTIONS(2348), - [anon_sym_mut] = ACTIONS(2348), - [anon_sym_const] = ACTIONS(2348), - [aux_sym_cmd_identifier_token1] = ACTIONS(2348), - [aux_sym_cmd_identifier_token2] = ACTIONS(2348), - [aux_sym_cmd_identifier_token3] = ACTIONS(2348), - [aux_sym_cmd_identifier_token4] = ACTIONS(2348), - [aux_sym_cmd_identifier_token5] = ACTIONS(2348), - [aux_sym_cmd_identifier_token6] = ACTIONS(2348), - [aux_sym_cmd_identifier_token7] = ACTIONS(2348), - [aux_sym_cmd_identifier_token8] = ACTIONS(2348), - [aux_sym_cmd_identifier_token9] = ACTIONS(2348), - [aux_sym_cmd_identifier_token10] = ACTIONS(2348), - [aux_sym_cmd_identifier_token11] = ACTIONS(2348), - [aux_sym_cmd_identifier_token12] = ACTIONS(2348), - [aux_sym_cmd_identifier_token13] = ACTIONS(2348), - [aux_sym_cmd_identifier_token14] = ACTIONS(2348), - [aux_sym_cmd_identifier_token15] = ACTIONS(2348), - [aux_sym_cmd_identifier_token16] = ACTIONS(2348), - [aux_sym_cmd_identifier_token17] = ACTIONS(2348), - [aux_sym_cmd_identifier_token18] = ACTIONS(2348), - [aux_sym_cmd_identifier_token19] = ACTIONS(2348), - [aux_sym_cmd_identifier_token20] = ACTIONS(2348), - [aux_sym_cmd_identifier_token21] = ACTIONS(2348), - [aux_sym_cmd_identifier_token22] = ACTIONS(2348), - [aux_sym_cmd_identifier_token23] = ACTIONS(2348), - [aux_sym_cmd_identifier_token24] = ACTIONS(2348), - [aux_sym_cmd_identifier_token25] = ACTIONS(2348), - [aux_sym_cmd_identifier_token26] = ACTIONS(2348), - [aux_sym_cmd_identifier_token27] = ACTIONS(2348), - [aux_sym_cmd_identifier_token28] = ACTIONS(2348), - [aux_sym_cmd_identifier_token29] = ACTIONS(2348), - [aux_sym_cmd_identifier_token30] = ACTIONS(2348), - [aux_sym_cmd_identifier_token31] = ACTIONS(2348), - [aux_sym_cmd_identifier_token32] = ACTIONS(2348), - [aux_sym_cmd_identifier_token33] = ACTIONS(2348), - [aux_sym_cmd_identifier_token34] = ACTIONS(2348), - [aux_sym_cmd_identifier_token35] = ACTIONS(2348), - [aux_sym_cmd_identifier_token36] = ACTIONS(2348), - [anon_sym_true] = ACTIONS(2350), - [anon_sym_false] = ACTIONS(2350), - [anon_sym_null] = ACTIONS(2350), - [aux_sym_cmd_identifier_token38] = ACTIONS(2348), - [aux_sym_cmd_identifier_token39] = ACTIONS(2350), - [aux_sym_cmd_identifier_token40] = ACTIONS(2350), - [anon_sym_def] = ACTIONS(2348), - [anon_sym_export_DASHenv] = ACTIONS(2348), - [anon_sym_extern] = ACTIONS(2348), - [anon_sym_module] = ACTIONS(2348), - [anon_sym_use] = ACTIONS(2348), - [anon_sym_LPAREN] = ACTIONS(2350), - [anon_sym_DOLLAR] = ACTIONS(2350), - [anon_sym_error] = ACTIONS(2348), - [anon_sym_list] = ACTIONS(2348), - [anon_sym_DASH] = ACTIONS(2348), - [anon_sym_break] = ACTIONS(2348), - [anon_sym_continue] = ACTIONS(2348), - [anon_sym_for] = ACTIONS(2348), - [anon_sym_in] = ACTIONS(2348), - [anon_sym_loop] = ACTIONS(2348), - [anon_sym_make] = ACTIONS(2348), - [anon_sym_while] = ACTIONS(2348), - [anon_sym_do] = ACTIONS(2348), - [anon_sym_if] = ACTIONS(2348), - [anon_sym_else] = ACTIONS(2348), - [anon_sym_match] = ACTIONS(2348), - [anon_sym_RBRACE] = ACTIONS(2350), - [anon_sym_try] = ACTIONS(2348), - [anon_sym_catch] = ACTIONS(2348), - [anon_sym_return] = ACTIONS(2348), - [anon_sym_source] = ACTIONS(2348), - [anon_sym_source_DASHenv] = ACTIONS(2348), - [anon_sym_register] = ACTIONS(2348), - [anon_sym_hide] = ACTIONS(2348), - [anon_sym_hide_DASHenv] = ACTIONS(2348), - [anon_sym_overlay] = ACTIONS(2348), - [anon_sym_new] = ACTIONS(2348), - [anon_sym_as] = ACTIONS(2348), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2350), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2350), - [aux_sym__val_number_decimal_token1] = ACTIONS(2348), - [aux_sym__val_number_decimal_token2] = ACTIONS(2350), - [aux_sym__val_number_decimal_token3] = ACTIONS(2350), - [aux_sym__val_number_decimal_token4] = ACTIONS(2350), - [aux_sym__val_number_token1] = ACTIONS(2350), - [aux_sym__val_number_token2] = ACTIONS(2350), - [aux_sym__val_number_token3] = ACTIONS(2350), - [anon_sym_DQUOTE] = ACTIONS(2350), - [sym__str_single_quotes] = ACTIONS(2350), - [sym__str_back_ticks] = ACTIONS(2350), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2348), + [650] = { + [sym_comment] = STATE(650), + [anon_sym_export] = ACTIONS(2380), + [anon_sym_alias] = ACTIONS(2380), + [anon_sym_let] = ACTIONS(2380), + [anon_sym_let_DASHenv] = ACTIONS(2380), + [anon_sym_mut] = ACTIONS(2380), + [anon_sym_const] = ACTIONS(2380), + [aux_sym_cmd_identifier_token1] = ACTIONS(2380), + [aux_sym_cmd_identifier_token2] = ACTIONS(2380), + [aux_sym_cmd_identifier_token3] = ACTIONS(2380), + [aux_sym_cmd_identifier_token4] = ACTIONS(2380), + [aux_sym_cmd_identifier_token5] = ACTIONS(2380), + [aux_sym_cmd_identifier_token6] = ACTIONS(2380), + [aux_sym_cmd_identifier_token7] = ACTIONS(2380), + [aux_sym_cmd_identifier_token8] = ACTIONS(2380), + [aux_sym_cmd_identifier_token9] = ACTIONS(2380), + [aux_sym_cmd_identifier_token10] = ACTIONS(2380), + [aux_sym_cmd_identifier_token11] = ACTIONS(2380), + [aux_sym_cmd_identifier_token12] = ACTIONS(2380), + [aux_sym_cmd_identifier_token13] = ACTIONS(2380), + [aux_sym_cmd_identifier_token14] = ACTIONS(2380), + [aux_sym_cmd_identifier_token15] = ACTIONS(2380), + [aux_sym_cmd_identifier_token16] = ACTIONS(2380), + [aux_sym_cmd_identifier_token17] = ACTIONS(2380), + [aux_sym_cmd_identifier_token18] = ACTIONS(2380), + [aux_sym_cmd_identifier_token19] = ACTIONS(2380), + [aux_sym_cmd_identifier_token20] = ACTIONS(2380), + [aux_sym_cmd_identifier_token21] = ACTIONS(2380), + [aux_sym_cmd_identifier_token22] = ACTIONS(2380), + [aux_sym_cmd_identifier_token23] = ACTIONS(2380), + [aux_sym_cmd_identifier_token24] = ACTIONS(2380), + [aux_sym_cmd_identifier_token25] = ACTIONS(2380), + [aux_sym_cmd_identifier_token26] = ACTIONS(2380), + [aux_sym_cmd_identifier_token27] = ACTIONS(2380), + [aux_sym_cmd_identifier_token28] = ACTIONS(2380), + [aux_sym_cmd_identifier_token29] = ACTIONS(2380), + [aux_sym_cmd_identifier_token30] = ACTIONS(2380), + [aux_sym_cmd_identifier_token31] = ACTIONS(2380), + [aux_sym_cmd_identifier_token32] = ACTIONS(2380), + [aux_sym_cmd_identifier_token33] = ACTIONS(2380), + [aux_sym_cmd_identifier_token34] = ACTIONS(2380), + [aux_sym_cmd_identifier_token35] = ACTIONS(2380), + [aux_sym_cmd_identifier_token36] = ACTIONS(2380), + [anon_sym_true] = ACTIONS(2382), + [anon_sym_false] = ACTIONS(2382), + [anon_sym_null] = ACTIONS(2382), + [aux_sym_cmd_identifier_token38] = ACTIONS(2380), + [aux_sym_cmd_identifier_token39] = ACTIONS(2382), + [aux_sym_cmd_identifier_token40] = ACTIONS(2382), + [anon_sym_def] = ACTIONS(2380), + [anon_sym_export_DASHenv] = ACTIONS(2380), + [anon_sym_extern] = ACTIONS(2380), + [anon_sym_module] = ACTIONS(2380), + [anon_sym_use] = ACTIONS(2380), + [anon_sym_LPAREN] = ACTIONS(2382), + [anon_sym_DOLLAR] = ACTIONS(2382), + [anon_sym_error] = ACTIONS(2380), + [anon_sym_list] = ACTIONS(2380), + [anon_sym_DASH] = ACTIONS(2380), + [anon_sym_break] = ACTIONS(2380), + [anon_sym_continue] = ACTIONS(2380), + [anon_sym_for] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(2380), + [anon_sym_loop] = ACTIONS(2380), + [anon_sym_make] = ACTIONS(2380), + [anon_sym_while] = ACTIONS(2380), + [anon_sym_do] = ACTIONS(2380), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_else] = ACTIONS(2380), + [anon_sym_match] = ACTIONS(2380), + [anon_sym_RBRACE] = ACTIONS(2382), + [anon_sym_try] = ACTIONS(2380), + [anon_sym_catch] = ACTIONS(2380), + [anon_sym_return] = ACTIONS(2380), + [anon_sym_source] = ACTIONS(2380), + [anon_sym_source_DASHenv] = ACTIONS(2380), + [anon_sym_register] = ACTIONS(2380), + [anon_sym_hide] = ACTIONS(2380), + [anon_sym_hide_DASHenv] = ACTIONS(2380), + [anon_sym_overlay] = ACTIONS(2380), + [anon_sym_new] = ACTIONS(2380), + [anon_sym_as] = ACTIONS(2380), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2382), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2382), + [aux_sym__val_number_decimal_token1] = ACTIONS(2380), + [aux_sym__val_number_decimal_token2] = ACTIONS(2382), + [aux_sym__val_number_decimal_token3] = ACTIONS(2382), + [aux_sym__val_number_decimal_token4] = ACTIONS(2382), + [aux_sym__val_number_token1] = ACTIONS(2382), + [aux_sym__val_number_token2] = ACTIONS(2382), + [aux_sym__val_number_token3] = ACTIONS(2382), + [anon_sym_DQUOTE] = ACTIONS(2382), + [sym__str_single_quotes] = ACTIONS(2382), + [sym__str_back_ticks] = ACTIONS(2382), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2382), + [anon_sym_PLUS] = ACTIONS(2380), [anon_sym_POUND] = ACTIONS(247), }, - [631] = { - [sym_comment] = STATE(631), - [anon_sym_export] = ACTIONS(2352), - [anon_sym_alias] = ACTIONS(2352), - [anon_sym_let] = ACTIONS(2352), - [anon_sym_let_DASHenv] = ACTIONS(2352), - [anon_sym_mut] = ACTIONS(2352), - [anon_sym_const] = ACTIONS(2352), - [aux_sym_cmd_identifier_token1] = ACTIONS(2352), - [aux_sym_cmd_identifier_token2] = ACTIONS(2352), - [aux_sym_cmd_identifier_token3] = ACTIONS(2352), - [aux_sym_cmd_identifier_token4] = ACTIONS(2352), - [aux_sym_cmd_identifier_token5] = ACTIONS(2352), - [aux_sym_cmd_identifier_token6] = ACTIONS(2352), - [aux_sym_cmd_identifier_token7] = ACTIONS(2352), - [aux_sym_cmd_identifier_token8] = ACTIONS(2352), - [aux_sym_cmd_identifier_token9] = ACTIONS(2352), - [aux_sym_cmd_identifier_token10] = ACTIONS(2352), - [aux_sym_cmd_identifier_token11] = ACTIONS(2352), - [aux_sym_cmd_identifier_token12] = ACTIONS(2352), - [aux_sym_cmd_identifier_token13] = ACTIONS(2352), - [aux_sym_cmd_identifier_token14] = ACTIONS(2352), - [aux_sym_cmd_identifier_token15] = ACTIONS(2352), - [aux_sym_cmd_identifier_token16] = ACTIONS(2352), - [aux_sym_cmd_identifier_token17] = ACTIONS(2352), - [aux_sym_cmd_identifier_token18] = ACTIONS(2352), - [aux_sym_cmd_identifier_token19] = ACTIONS(2352), - [aux_sym_cmd_identifier_token20] = ACTIONS(2352), - [aux_sym_cmd_identifier_token21] = ACTIONS(2352), - [aux_sym_cmd_identifier_token22] = ACTIONS(2352), - [aux_sym_cmd_identifier_token23] = ACTIONS(2352), - [aux_sym_cmd_identifier_token24] = ACTIONS(2352), - [aux_sym_cmd_identifier_token25] = ACTIONS(2352), - [aux_sym_cmd_identifier_token26] = ACTIONS(2352), - [aux_sym_cmd_identifier_token27] = ACTIONS(2352), - [aux_sym_cmd_identifier_token28] = ACTIONS(2352), - [aux_sym_cmd_identifier_token29] = ACTIONS(2352), - [aux_sym_cmd_identifier_token30] = ACTIONS(2352), - [aux_sym_cmd_identifier_token31] = ACTIONS(2352), - [aux_sym_cmd_identifier_token32] = ACTIONS(2352), - [aux_sym_cmd_identifier_token33] = ACTIONS(2352), - [aux_sym_cmd_identifier_token34] = ACTIONS(2352), - [aux_sym_cmd_identifier_token35] = ACTIONS(2352), - [aux_sym_cmd_identifier_token36] = ACTIONS(2352), - [anon_sym_true] = ACTIONS(2354), - [anon_sym_false] = ACTIONS(2354), - [anon_sym_null] = ACTIONS(2354), - [aux_sym_cmd_identifier_token38] = ACTIONS(2352), - [aux_sym_cmd_identifier_token39] = ACTIONS(2354), - [aux_sym_cmd_identifier_token40] = ACTIONS(2354), - [anon_sym_def] = ACTIONS(2352), - [anon_sym_export_DASHenv] = ACTIONS(2352), - [anon_sym_extern] = ACTIONS(2352), - [anon_sym_module] = ACTIONS(2352), - [anon_sym_use] = ACTIONS(2352), - [anon_sym_LPAREN] = ACTIONS(2354), - [anon_sym_DOLLAR] = ACTIONS(2354), - [anon_sym_error] = ACTIONS(2352), - [anon_sym_list] = ACTIONS(2352), - [anon_sym_DASH] = ACTIONS(2352), - [anon_sym_break] = ACTIONS(2352), - [anon_sym_continue] = ACTIONS(2352), - [anon_sym_for] = ACTIONS(2352), - [anon_sym_in] = ACTIONS(2352), - [anon_sym_loop] = ACTIONS(2352), - [anon_sym_make] = ACTIONS(2352), - [anon_sym_while] = ACTIONS(2352), - [anon_sym_do] = ACTIONS(2352), - [anon_sym_if] = ACTIONS(2352), - [anon_sym_else] = ACTIONS(2352), - [anon_sym_match] = ACTIONS(2352), - [anon_sym_RBRACE] = ACTIONS(2354), - [anon_sym_try] = ACTIONS(2352), - [anon_sym_catch] = ACTIONS(2352), - [anon_sym_return] = ACTIONS(2352), - [anon_sym_source] = ACTIONS(2352), - [anon_sym_source_DASHenv] = ACTIONS(2352), - [anon_sym_register] = ACTIONS(2352), - [anon_sym_hide] = ACTIONS(2352), - [anon_sym_hide_DASHenv] = ACTIONS(2352), - [anon_sym_overlay] = ACTIONS(2352), - [anon_sym_new] = ACTIONS(2352), - [anon_sym_as] = ACTIONS(2352), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2354), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2354), - [aux_sym__val_number_decimal_token1] = ACTIONS(2352), - [aux_sym__val_number_decimal_token2] = ACTIONS(2354), - [aux_sym__val_number_decimal_token3] = ACTIONS(2354), - [aux_sym__val_number_decimal_token4] = ACTIONS(2354), - [aux_sym__val_number_token1] = ACTIONS(2354), - [aux_sym__val_number_token2] = ACTIONS(2354), - [aux_sym__val_number_token3] = ACTIONS(2354), - [anon_sym_DQUOTE] = ACTIONS(2354), - [sym__str_single_quotes] = ACTIONS(2354), - [sym__str_back_ticks] = ACTIONS(2354), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2354), - [anon_sym_PLUS] = ACTIONS(2352), + [651] = { + [sym_comment] = STATE(651), + [anon_sym_export] = ACTIONS(2051), + [anon_sym_alias] = ACTIONS(2051), + [anon_sym_let] = ACTIONS(2051), + [anon_sym_let_DASHenv] = ACTIONS(2051), + [anon_sym_mut] = ACTIONS(2051), + [anon_sym_const] = ACTIONS(2051), + [aux_sym_cmd_identifier_token1] = ACTIONS(2051), + [aux_sym_cmd_identifier_token2] = ACTIONS(2051), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [aux_sym_cmd_identifier_token6] = ACTIONS(2051), + [aux_sym_cmd_identifier_token7] = ACTIONS(2051), + [aux_sym_cmd_identifier_token8] = ACTIONS(2051), + [aux_sym_cmd_identifier_token9] = ACTIONS(2051), + [aux_sym_cmd_identifier_token10] = ACTIONS(2051), + [aux_sym_cmd_identifier_token11] = ACTIONS(2051), + [aux_sym_cmd_identifier_token12] = ACTIONS(2051), + [aux_sym_cmd_identifier_token13] = ACTIONS(2051), + [aux_sym_cmd_identifier_token14] = ACTIONS(2051), + [aux_sym_cmd_identifier_token15] = ACTIONS(2051), + [aux_sym_cmd_identifier_token16] = ACTIONS(2051), + [aux_sym_cmd_identifier_token17] = ACTIONS(2051), + [aux_sym_cmd_identifier_token18] = ACTIONS(2051), + [aux_sym_cmd_identifier_token19] = ACTIONS(2051), + [aux_sym_cmd_identifier_token20] = ACTIONS(2051), + [aux_sym_cmd_identifier_token21] = ACTIONS(2051), + [aux_sym_cmd_identifier_token22] = ACTIONS(2051), + [aux_sym_cmd_identifier_token23] = ACTIONS(2051), + [aux_sym_cmd_identifier_token24] = ACTIONS(2051), + [aux_sym_cmd_identifier_token25] = ACTIONS(2051), + [aux_sym_cmd_identifier_token26] = ACTIONS(2051), + [aux_sym_cmd_identifier_token27] = ACTIONS(2051), + [aux_sym_cmd_identifier_token28] = ACTIONS(2051), + [aux_sym_cmd_identifier_token29] = ACTIONS(2051), + [aux_sym_cmd_identifier_token30] = ACTIONS(2051), + [aux_sym_cmd_identifier_token31] = ACTIONS(2051), + [aux_sym_cmd_identifier_token32] = ACTIONS(2051), + [aux_sym_cmd_identifier_token33] = ACTIONS(2051), + [aux_sym_cmd_identifier_token34] = ACTIONS(2051), + [aux_sym_cmd_identifier_token35] = ACTIONS(2051), + [aux_sym_cmd_identifier_token36] = ACTIONS(2051), + [anon_sym_true] = ACTIONS(2057), + [anon_sym_false] = ACTIONS(2057), + [anon_sym_null] = ACTIONS(2057), + [aux_sym_cmd_identifier_token38] = ACTIONS(2051), + [aux_sym_cmd_identifier_token39] = ACTIONS(2057), + [aux_sym_cmd_identifier_token40] = ACTIONS(2057), + [anon_sym_def] = ACTIONS(2051), + [anon_sym_export_DASHenv] = ACTIONS(2051), + [anon_sym_extern] = ACTIONS(2051), + [anon_sym_module] = ACTIONS(2051), + [anon_sym_use] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_DOLLAR] = ACTIONS(2057), + [anon_sym_error] = ACTIONS(2051), + [anon_sym_list] = ACTIONS(2051), + [anon_sym_DASH] = ACTIONS(2051), + [anon_sym_break] = ACTIONS(2051), + [anon_sym_continue] = ACTIONS(2051), + [anon_sym_for] = ACTIONS(2051), + [anon_sym_in] = ACTIONS(2051), + [anon_sym_loop] = ACTIONS(2051), + [anon_sym_make] = ACTIONS(2051), + [anon_sym_while] = ACTIONS(2051), + [anon_sym_do] = ACTIONS(2051), + [anon_sym_if] = ACTIONS(2051), + [anon_sym_else] = ACTIONS(2051), + [anon_sym_match] = ACTIONS(2051), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2051), + [anon_sym_catch] = ACTIONS(2051), + [anon_sym_return] = ACTIONS(2051), + [anon_sym_source] = ACTIONS(2051), + [anon_sym_source_DASHenv] = ACTIONS(2051), + [anon_sym_register] = ACTIONS(2051), + [anon_sym_hide] = ACTIONS(2051), + [anon_sym_hide_DASHenv] = ACTIONS(2051), + [anon_sym_overlay] = ACTIONS(2051), + [anon_sym_new] = ACTIONS(2051), + [anon_sym_as] = ACTIONS(2051), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2057), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2057), + [aux_sym__val_number_decimal_token1] = ACTIONS(2051), + [aux_sym__val_number_decimal_token2] = ACTIONS(2057), + [aux_sym__val_number_decimal_token3] = ACTIONS(2057), + [aux_sym__val_number_decimal_token4] = ACTIONS(2057), + [aux_sym__val_number_token1] = ACTIONS(2057), + [aux_sym__val_number_token2] = ACTIONS(2057), + [aux_sym__val_number_token3] = ACTIONS(2057), + [anon_sym_DQUOTE] = ACTIONS(2057), + [sym__str_single_quotes] = ACTIONS(2057), + [sym__str_back_ticks] = ACTIONS(2057), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2051), [anon_sym_POUND] = ACTIONS(247), }, - [632] = { - [sym_comment] = STATE(632), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_alias] = ACTIONS(1569), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_let_DASHenv] = ACTIONS(1569), - [anon_sym_mut] = ACTIONS(1569), - [anon_sym_const] = ACTIONS(1569), - [aux_sym_cmd_identifier_token1] = ACTIONS(1569), - [aux_sym_cmd_identifier_token2] = ACTIONS(1569), - [aux_sym_cmd_identifier_token3] = ACTIONS(1569), - [aux_sym_cmd_identifier_token4] = ACTIONS(1569), - [aux_sym_cmd_identifier_token5] = ACTIONS(1569), - [aux_sym_cmd_identifier_token6] = ACTIONS(1569), - [aux_sym_cmd_identifier_token7] = ACTIONS(1569), - [aux_sym_cmd_identifier_token8] = ACTIONS(1569), - [aux_sym_cmd_identifier_token9] = ACTIONS(1569), - [aux_sym_cmd_identifier_token10] = ACTIONS(1569), - [aux_sym_cmd_identifier_token11] = ACTIONS(1569), - [aux_sym_cmd_identifier_token12] = ACTIONS(1569), - [aux_sym_cmd_identifier_token13] = ACTIONS(1569), - [aux_sym_cmd_identifier_token14] = ACTIONS(1569), - [aux_sym_cmd_identifier_token15] = ACTIONS(1569), - [aux_sym_cmd_identifier_token16] = ACTIONS(1569), - [aux_sym_cmd_identifier_token17] = ACTIONS(1569), - [aux_sym_cmd_identifier_token18] = ACTIONS(1569), - [aux_sym_cmd_identifier_token19] = ACTIONS(1569), - [aux_sym_cmd_identifier_token20] = ACTIONS(1569), - [aux_sym_cmd_identifier_token21] = ACTIONS(1569), - [aux_sym_cmd_identifier_token22] = ACTIONS(1569), - [aux_sym_cmd_identifier_token23] = ACTIONS(1569), - [aux_sym_cmd_identifier_token24] = ACTIONS(1569), - [aux_sym_cmd_identifier_token25] = ACTIONS(1569), - [aux_sym_cmd_identifier_token26] = ACTIONS(1569), - [aux_sym_cmd_identifier_token27] = ACTIONS(1569), - [aux_sym_cmd_identifier_token28] = ACTIONS(1569), - [aux_sym_cmd_identifier_token29] = ACTIONS(1569), - [aux_sym_cmd_identifier_token30] = ACTIONS(1569), - [aux_sym_cmd_identifier_token31] = ACTIONS(1569), - [aux_sym_cmd_identifier_token32] = ACTIONS(1569), - [aux_sym_cmd_identifier_token33] = ACTIONS(1569), - [aux_sym_cmd_identifier_token34] = ACTIONS(1569), - [aux_sym_cmd_identifier_token35] = ACTIONS(1569), - [aux_sym_cmd_identifier_token36] = ACTIONS(1569), - [anon_sym_true] = ACTIONS(1571), - [anon_sym_false] = ACTIONS(1571), - [anon_sym_null] = ACTIONS(1571), - [aux_sym_cmd_identifier_token38] = ACTIONS(1569), - [aux_sym_cmd_identifier_token39] = ACTIONS(1571), - [aux_sym_cmd_identifier_token40] = ACTIONS(1571), - [anon_sym_def] = ACTIONS(1569), - [anon_sym_export_DASHenv] = ACTIONS(1569), - [anon_sym_extern] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_use] = ACTIONS(1569), - [anon_sym_LPAREN] = ACTIONS(1571), - [anon_sym_DOLLAR] = ACTIONS(1571), - [anon_sym_error] = ACTIONS(1569), - [anon_sym_list] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_break] = ACTIONS(1569), - [anon_sym_continue] = ACTIONS(1569), - [anon_sym_for] = ACTIONS(1569), - [anon_sym_in] = ACTIONS(1569), - [anon_sym_loop] = ACTIONS(1569), - [anon_sym_make] = ACTIONS(1569), - [anon_sym_while] = ACTIONS(1569), - [anon_sym_do] = ACTIONS(1569), - [anon_sym_if] = ACTIONS(1569), - [anon_sym_else] = ACTIONS(1569), - [anon_sym_match] = ACTIONS(1569), - [anon_sym_RBRACE] = ACTIONS(1571), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_catch] = ACTIONS(1569), - [anon_sym_return] = ACTIONS(1569), - [anon_sym_source] = ACTIONS(1569), - [anon_sym_source_DASHenv] = ACTIONS(1569), - [anon_sym_register] = ACTIONS(1569), - [anon_sym_hide] = ACTIONS(1569), - [anon_sym_hide_DASHenv] = ACTIONS(1569), - [anon_sym_overlay] = ACTIONS(1569), - [anon_sym_new] = ACTIONS(1569), - [anon_sym_as] = ACTIONS(1569), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1571), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1571), - [aux_sym__val_number_decimal_token1] = ACTIONS(1569), - [aux_sym__val_number_decimal_token2] = ACTIONS(1571), - [aux_sym__val_number_decimal_token3] = ACTIONS(1571), - [aux_sym__val_number_decimal_token4] = ACTIONS(1571), - [aux_sym__val_number_token1] = ACTIONS(1571), - [aux_sym__val_number_token2] = ACTIONS(1571), - [aux_sym__val_number_token3] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [sym__str_single_quotes] = ACTIONS(1571), - [sym__str_back_ticks] = ACTIONS(1571), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1569), + [652] = { + [sym_comment] = STATE(652), + [anon_sym_export] = ACTIONS(1993), + [anon_sym_alias] = ACTIONS(1993), + [anon_sym_let] = ACTIONS(1993), + [anon_sym_let_DASHenv] = ACTIONS(1993), + [anon_sym_mut] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1993), + [aux_sym_cmd_identifier_token1] = ACTIONS(1993), + [aux_sym_cmd_identifier_token2] = ACTIONS(1993), + [aux_sym_cmd_identifier_token3] = ACTIONS(1993), + [aux_sym_cmd_identifier_token4] = ACTIONS(1993), + [aux_sym_cmd_identifier_token5] = ACTIONS(1993), + [aux_sym_cmd_identifier_token6] = ACTIONS(1993), + [aux_sym_cmd_identifier_token7] = ACTIONS(1993), + [aux_sym_cmd_identifier_token8] = ACTIONS(1993), + [aux_sym_cmd_identifier_token9] = ACTIONS(1993), + [aux_sym_cmd_identifier_token10] = ACTIONS(1993), + [aux_sym_cmd_identifier_token11] = ACTIONS(1993), + [aux_sym_cmd_identifier_token12] = ACTIONS(1993), + [aux_sym_cmd_identifier_token13] = ACTIONS(1993), + [aux_sym_cmd_identifier_token14] = ACTIONS(1993), + [aux_sym_cmd_identifier_token15] = ACTIONS(1993), + [aux_sym_cmd_identifier_token16] = ACTIONS(1993), + [aux_sym_cmd_identifier_token17] = ACTIONS(1993), + [aux_sym_cmd_identifier_token18] = ACTIONS(1993), + [aux_sym_cmd_identifier_token19] = ACTIONS(1993), + [aux_sym_cmd_identifier_token20] = ACTIONS(1993), + [aux_sym_cmd_identifier_token21] = ACTIONS(1993), + [aux_sym_cmd_identifier_token22] = ACTIONS(1993), + [aux_sym_cmd_identifier_token23] = ACTIONS(1993), + [aux_sym_cmd_identifier_token24] = ACTIONS(1993), + [aux_sym_cmd_identifier_token25] = ACTIONS(1993), + [aux_sym_cmd_identifier_token26] = ACTIONS(1993), + [aux_sym_cmd_identifier_token27] = ACTIONS(1993), + [aux_sym_cmd_identifier_token28] = ACTIONS(1993), + [aux_sym_cmd_identifier_token29] = ACTIONS(1993), + [aux_sym_cmd_identifier_token30] = ACTIONS(1993), + [aux_sym_cmd_identifier_token31] = ACTIONS(1993), + [aux_sym_cmd_identifier_token32] = ACTIONS(1993), + [aux_sym_cmd_identifier_token33] = ACTIONS(1993), + [aux_sym_cmd_identifier_token34] = ACTIONS(1993), + [aux_sym_cmd_identifier_token35] = ACTIONS(1993), + [aux_sym_cmd_identifier_token36] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(1999), + [anon_sym_false] = ACTIONS(1999), + [anon_sym_null] = ACTIONS(1999), + [aux_sym_cmd_identifier_token38] = ACTIONS(1993), + [aux_sym_cmd_identifier_token39] = ACTIONS(1999), + [aux_sym_cmd_identifier_token40] = ACTIONS(1999), + [anon_sym_def] = ACTIONS(1993), + [anon_sym_export_DASHenv] = ACTIONS(1993), + [anon_sym_extern] = ACTIONS(1993), + [anon_sym_module] = ACTIONS(1993), + [anon_sym_use] = ACTIONS(1993), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(1999), + [anon_sym_error] = ACTIONS(1993), + [anon_sym_list] = ACTIONS(1993), + [anon_sym_DASH] = ACTIONS(1993), + [anon_sym_break] = ACTIONS(1993), + [anon_sym_continue] = ACTIONS(1993), + [anon_sym_for] = ACTIONS(1993), + [anon_sym_in] = ACTIONS(1993), + [anon_sym_loop] = ACTIONS(1993), + [anon_sym_make] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1993), + [anon_sym_do] = ACTIONS(1993), + [anon_sym_if] = ACTIONS(1993), + [anon_sym_else] = ACTIONS(1993), + [anon_sym_match] = ACTIONS(1993), + [anon_sym_RBRACE] = ACTIONS(1999), + [anon_sym_try] = ACTIONS(1993), + [anon_sym_catch] = ACTIONS(1993), + [anon_sym_return] = ACTIONS(1993), + [anon_sym_source] = ACTIONS(1993), + [anon_sym_source_DASHenv] = ACTIONS(1993), + [anon_sym_register] = ACTIONS(1993), + [anon_sym_hide] = ACTIONS(1993), + [anon_sym_hide_DASHenv] = ACTIONS(1993), + [anon_sym_overlay] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_as] = ACTIONS(1993), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1999), + [aux_sym__val_number_decimal_token1] = ACTIONS(1993), + [aux_sym__val_number_decimal_token2] = ACTIONS(1999), + [aux_sym__val_number_decimal_token3] = ACTIONS(1999), + [aux_sym__val_number_decimal_token4] = ACTIONS(1999), + [aux_sym__val_number_token1] = ACTIONS(1999), + [aux_sym__val_number_token2] = ACTIONS(1999), + [aux_sym__val_number_token3] = ACTIONS(1999), + [anon_sym_DQUOTE] = ACTIONS(1999), + [sym__str_single_quotes] = ACTIONS(1999), + [sym__str_back_ticks] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(1993), [anon_sym_POUND] = ACTIONS(247), }, - [633] = { - [sym_comment] = STATE(633), - [anon_sym_export] = ACTIONS(2251), - [anon_sym_alias] = ACTIONS(2251), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_let_DASHenv] = ACTIONS(2251), - [anon_sym_mut] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2251), - [aux_sym_cmd_identifier_token1] = ACTIONS(2251), - [aux_sym_cmd_identifier_token2] = ACTIONS(2251), - [aux_sym_cmd_identifier_token3] = ACTIONS(2251), - [aux_sym_cmd_identifier_token4] = ACTIONS(2251), - [aux_sym_cmd_identifier_token5] = ACTIONS(2251), - [aux_sym_cmd_identifier_token6] = ACTIONS(2251), - [aux_sym_cmd_identifier_token7] = ACTIONS(2251), - [aux_sym_cmd_identifier_token8] = ACTIONS(2251), - [aux_sym_cmd_identifier_token9] = ACTIONS(2251), - [aux_sym_cmd_identifier_token10] = ACTIONS(2251), - [aux_sym_cmd_identifier_token11] = ACTIONS(2251), - [aux_sym_cmd_identifier_token12] = ACTIONS(2251), - [aux_sym_cmd_identifier_token13] = ACTIONS(2251), - [aux_sym_cmd_identifier_token14] = ACTIONS(2251), - [aux_sym_cmd_identifier_token15] = ACTIONS(2251), - [aux_sym_cmd_identifier_token16] = ACTIONS(2251), - [aux_sym_cmd_identifier_token17] = ACTIONS(2251), - [aux_sym_cmd_identifier_token18] = ACTIONS(2251), - [aux_sym_cmd_identifier_token19] = ACTIONS(2251), - [aux_sym_cmd_identifier_token20] = ACTIONS(2251), - [aux_sym_cmd_identifier_token21] = ACTIONS(2251), - [aux_sym_cmd_identifier_token22] = ACTIONS(2251), - [aux_sym_cmd_identifier_token23] = ACTIONS(2251), - [aux_sym_cmd_identifier_token24] = ACTIONS(2251), - [aux_sym_cmd_identifier_token25] = ACTIONS(2251), - [aux_sym_cmd_identifier_token26] = ACTIONS(2251), - [aux_sym_cmd_identifier_token27] = ACTIONS(2251), - [aux_sym_cmd_identifier_token28] = ACTIONS(2251), - [aux_sym_cmd_identifier_token29] = ACTIONS(2251), - [aux_sym_cmd_identifier_token30] = ACTIONS(2251), - [aux_sym_cmd_identifier_token31] = ACTIONS(2251), - [aux_sym_cmd_identifier_token32] = ACTIONS(2251), - [aux_sym_cmd_identifier_token33] = ACTIONS(2251), - [aux_sym_cmd_identifier_token34] = ACTIONS(2251), - [aux_sym_cmd_identifier_token35] = ACTIONS(2251), - [aux_sym_cmd_identifier_token36] = ACTIONS(2251), - [anon_sym_true] = ACTIONS(2253), - [anon_sym_false] = ACTIONS(2253), - [anon_sym_null] = ACTIONS(2253), - [aux_sym_cmd_identifier_token38] = ACTIONS(2251), - [aux_sym_cmd_identifier_token39] = ACTIONS(2253), - [aux_sym_cmd_identifier_token40] = ACTIONS(2253), - [anon_sym_def] = ACTIONS(2251), - [anon_sym_export_DASHenv] = ACTIONS(2251), - [anon_sym_extern] = ACTIONS(2251), - [anon_sym_module] = ACTIONS(2251), - [anon_sym_use] = ACTIONS(2251), - [anon_sym_LPAREN] = ACTIONS(2253), - [anon_sym_DOLLAR] = ACTIONS(2253), - [anon_sym_error] = ACTIONS(2251), - [anon_sym_list] = ACTIONS(2251), - [anon_sym_DASH] = ACTIONS(2251), - [anon_sym_break] = ACTIONS(2251), - [anon_sym_continue] = ACTIONS(2251), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_in] = ACTIONS(2251), - [anon_sym_loop] = ACTIONS(2251), - [anon_sym_make] = ACTIONS(2251), - [anon_sym_while] = ACTIONS(2251), - [anon_sym_do] = ACTIONS(2251), - [anon_sym_if] = ACTIONS(2251), - [anon_sym_else] = ACTIONS(2251), - [anon_sym_match] = ACTIONS(2251), - [anon_sym_RBRACE] = ACTIONS(2253), - [anon_sym_try] = ACTIONS(2251), - [anon_sym_catch] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(2251), - [anon_sym_source] = ACTIONS(2251), - [anon_sym_source_DASHenv] = ACTIONS(2251), - [anon_sym_register] = ACTIONS(2251), - [anon_sym_hide] = ACTIONS(2251), - [anon_sym_hide_DASHenv] = ACTIONS(2251), - [anon_sym_overlay] = ACTIONS(2251), - [anon_sym_new] = ACTIONS(2251), - [anon_sym_as] = ACTIONS(2251), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2253), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2253), - [aux_sym__val_number_decimal_token1] = ACTIONS(2251), - [aux_sym__val_number_decimal_token2] = ACTIONS(2253), - [aux_sym__val_number_decimal_token3] = ACTIONS(2253), - [aux_sym__val_number_decimal_token4] = ACTIONS(2253), - [aux_sym__val_number_token1] = ACTIONS(2253), - [aux_sym__val_number_token2] = ACTIONS(2253), - [aux_sym__val_number_token3] = ACTIONS(2253), - [anon_sym_DQUOTE] = ACTIONS(2253), - [sym__str_single_quotes] = ACTIONS(2253), - [sym__str_back_ticks] = ACTIONS(2253), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2253), - [anon_sym_PLUS] = ACTIONS(2251), + [653] = { + [sym_comment] = STATE(653), + [anon_sym_export] = ACTIONS(2364), + [anon_sym_alias] = ACTIONS(2364), + [anon_sym_let] = ACTIONS(2364), + [anon_sym_let_DASHenv] = ACTIONS(2364), + [anon_sym_mut] = ACTIONS(2364), + [anon_sym_const] = ACTIONS(2364), + [aux_sym_cmd_identifier_token1] = ACTIONS(2364), + [aux_sym_cmd_identifier_token2] = ACTIONS(2364), + [aux_sym_cmd_identifier_token3] = ACTIONS(2364), + [aux_sym_cmd_identifier_token4] = ACTIONS(2364), + [aux_sym_cmd_identifier_token5] = ACTIONS(2364), + [aux_sym_cmd_identifier_token6] = ACTIONS(2364), + [aux_sym_cmd_identifier_token7] = ACTIONS(2364), + [aux_sym_cmd_identifier_token8] = ACTIONS(2364), + [aux_sym_cmd_identifier_token9] = ACTIONS(2364), + [aux_sym_cmd_identifier_token10] = ACTIONS(2364), + [aux_sym_cmd_identifier_token11] = ACTIONS(2364), + [aux_sym_cmd_identifier_token12] = ACTIONS(2364), + [aux_sym_cmd_identifier_token13] = ACTIONS(2364), + [aux_sym_cmd_identifier_token14] = ACTIONS(2364), + [aux_sym_cmd_identifier_token15] = ACTIONS(2364), + [aux_sym_cmd_identifier_token16] = ACTIONS(2364), + [aux_sym_cmd_identifier_token17] = ACTIONS(2364), + [aux_sym_cmd_identifier_token18] = ACTIONS(2364), + [aux_sym_cmd_identifier_token19] = ACTIONS(2364), + [aux_sym_cmd_identifier_token20] = ACTIONS(2364), + [aux_sym_cmd_identifier_token21] = ACTIONS(2364), + [aux_sym_cmd_identifier_token22] = ACTIONS(2364), + [aux_sym_cmd_identifier_token23] = ACTIONS(2364), + [aux_sym_cmd_identifier_token24] = ACTIONS(2364), + [aux_sym_cmd_identifier_token25] = ACTIONS(2364), + [aux_sym_cmd_identifier_token26] = ACTIONS(2364), + [aux_sym_cmd_identifier_token27] = ACTIONS(2364), + [aux_sym_cmd_identifier_token28] = ACTIONS(2364), + [aux_sym_cmd_identifier_token29] = ACTIONS(2364), + [aux_sym_cmd_identifier_token30] = ACTIONS(2364), + [aux_sym_cmd_identifier_token31] = ACTIONS(2364), + [aux_sym_cmd_identifier_token32] = ACTIONS(2364), + [aux_sym_cmd_identifier_token33] = ACTIONS(2364), + [aux_sym_cmd_identifier_token34] = ACTIONS(2364), + [aux_sym_cmd_identifier_token35] = ACTIONS(2364), + [aux_sym_cmd_identifier_token36] = ACTIONS(2364), + [anon_sym_true] = ACTIONS(2366), + [anon_sym_false] = ACTIONS(2366), + [anon_sym_null] = ACTIONS(2366), + [aux_sym_cmd_identifier_token38] = ACTIONS(2364), + [aux_sym_cmd_identifier_token39] = ACTIONS(2366), + [aux_sym_cmd_identifier_token40] = ACTIONS(2366), + [anon_sym_def] = ACTIONS(2364), + [anon_sym_export_DASHenv] = ACTIONS(2364), + [anon_sym_extern] = ACTIONS(2364), + [anon_sym_module] = ACTIONS(2364), + [anon_sym_use] = ACTIONS(2364), + [anon_sym_LPAREN] = ACTIONS(2366), + [anon_sym_DOLLAR] = ACTIONS(2366), + [anon_sym_error] = ACTIONS(2364), + [anon_sym_list] = ACTIONS(2364), + [anon_sym_DASH] = ACTIONS(2364), + [anon_sym_break] = ACTIONS(2364), + [anon_sym_continue] = ACTIONS(2364), + [anon_sym_for] = ACTIONS(2364), + [anon_sym_in] = ACTIONS(2364), + [anon_sym_loop] = ACTIONS(2364), + [anon_sym_make] = ACTIONS(2364), + [anon_sym_while] = ACTIONS(2364), + [anon_sym_do] = ACTIONS(2364), + [anon_sym_if] = ACTIONS(2364), + [anon_sym_else] = ACTIONS(2364), + [anon_sym_match] = ACTIONS(2364), + [anon_sym_RBRACE] = ACTIONS(2366), + [anon_sym_try] = ACTIONS(2364), + [anon_sym_catch] = ACTIONS(2364), + [anon_sym_return] = ACTIONS(2364), + [anon_sym_source] = ACTIONS(2364), + [anon_sym_source_DASHenv] = ACTIONS(2364), + [anon_sym_register] = ACTIONS(2364), + [anon_sym_hide] = ACTIONS(2364), + [anon_sym_hide_DASHenv] = ACTIONS(2364), + [anon_sym_overlay] = ACTIONS(2364), + [anon_sym_new] = ACTIONS(2364), + [anon_sym_as] = ACTIONS(2364), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2366), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2366), + [aux_sym__val_number_decimal_token1] = ACTIONS(2364), + [aux_sym__val_number_decimal_token2] = ACTIONS(2366), + [aux_sym__val_number_decimal_token3] = ACTIONS(2366), + [aux_sym__val_number_decimal_token4] = ACTIONS(2366), + [aux_sym__val_number_token1] = ACTIONS(2366), + [aux_sym__val_number_token2] = ACTIONS(2366), + [aux_sym__val_number_token3] = ACTIONS(2366), + [anon_sym_DQUOTE] = ACTIONS(2366), + [sym__str_single_quotes] = ACTIONS(2366), + [sym__str_back_ticks] = ACTIONS(2366), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2366), + [anon_sym_PLUS] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(247), }, - [634] = { - [sym_comment] = STATE(634), - [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), - [aux_sym_cmd_identifier_token1] = ACTIONS(1905), - [aux_sym_cmd_identifier_token2] = ACTIONS(1905), - [aux_sym_cmd_identifier_token3] = ACTIONS(1905), - [aux_sym_cmd_identifier_token4] = ACTIONS(1905), - [aux_sym_cmd_identifier_token5] = ACTIONS(1905), - [aux_sym_cmd_identifier_token6] = ACTIONS(1905), - [aux_sym_cmd_identifier_token7] = ACTIONS(1905), - [aux_sym_cmd_identifier_token8] = ACTIONS(1905), - [aux_sym_cmd_identifier_token9] = ACTIONS(1905), - [aux_sym_cmd_identifier_token10] = ACTIONS(1905), - [aux_sym_cmd_identifier_token11] = ACTIONS(1905), - [aux_sym_cmd_identifier_token12] = ACTIONS(1905), - [aux_sym_cmd_identifier_token13] = ACTIONS(1905), - [aux_sym_cmd_identifier_token14] = ACTIONS(1905), - [aux_sym_cmd_identifier_token15] = ACTIONS(1905), - [aux_sym_cmd_identifier_token16] = ACTIONS(1905), - [aux_sym_cmd_identifier_token17] = ACTIONS(1905), - [aux_sym_cmd_identifier_token18] = ACTIONS(1905), - [aux_sym_cmd_identifier_token19] = ACTIONS(1905), - [aux_sym_cmd_identifier_token20] = ACTIONS(1905), - [aux_sym_cmd_identifier_token21] = ACTIONS(1905), - [aux_sym_cmd_identifier_token22] = ACTIONS(1905), - [aux_sym_cmd_identifier_token23] = ACTIONS(1905), - [aux_sym_cmd_identifier_token24] = ACTIONS(1905), - [aux_sym_cmd_identifier_token25] = ACTIONS(1905), - [aux_sym_cmd_identifier_token26] = ACTIONS(1905), - [aux_sym_cmd_identifier_token27] = ACTIONS(1905), - [aux_sym_cmd_identifier_token28] = ACTIONS(1905), - [aux_sym_cmd_identifier_token29] = ACTIONS(1905), - [aux_sym_cmd_identifier_token30] = ACTIONS(1905), - [aux_sym_cmd_identifier_token31] = ACTIONS(1905), - [aux_sym_cmd_identifier_token32] = ACTIONS(1905), - [aux_sym_cmd_identifier_token33] = ACTIONS(1905), - [aux_sym_cmd_identifier_token34] = ACTIONS(1905), - [aux_sym_cmd_identifier_token35] = ACTIONS(1905), - [aux_sym_cmd_identifier_token36] = ACTIONS(1905), + [654] = { + [sym_comment] = STATE(654), + [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), + [aux_sym_cmd_identifier_token1] = ACTIONS(1909), + [aux_sym_cmd_identifier_token2] = ACTIONS(1909), + [aux_sym_cmd_identifier_token3] = ACTIONS(1909), + [aux_sym_cmd_identifier_token4] = ACTIONS(1909), + [aux_sym_cmd_identifier_token5] = ACTIONS(1909), + [aux_sym_cmd_identifier_token6] = ACTIONS(1909), + [aux_sym_cmd_identifier_token7] = ACTIONS(1909), + [aux_sym_cmd_identifier_token8] = ACTIONS(1909), + [aux_sym_cmd_identifier_token9] = ACTIONS(1909), + [aux_sym_cmd_identifier_token10] = ACTIONS(1909), + [aux_sym_cmd_identifier_token11] = ACTIONS(1909), + [aux_sym_cmd_identifier_token12] = ACTIONS(1909), + [aux_sym_cmd_identifier_token13] = ACTIONS(1909), + [aux_sym_cmd_identifier_token14] = ACTIONS(1909), + [aux_sym_cmd_identifier_token15] = ACTIONS(1909), + [aux_sym_cmd_identifier_token16] = ACTIONS(1909), + [aux_sym_cmd_identifier_token17] = ACTIONS(1909), + [aux_sym_cmd_identifier_token18] = ACTIONS(1909), + [aux_sym_cmd_identifier_token19] = ACTIONS(1909), + [aux_sym_cmd_identifier_token20] = ACTIONS(1909), + [aux_sym_cmd_identifier_token21] = ACTIONS(1909), + [aux_sym_cmd_identifier_token22] = ACTIONS(1909), + [aux_sym_cmd_identifier_token23] = ACTIONS(1909), + [aux_sym_cmd_identifier_token24] = ACTIONS(1909), + [aux_sym_cmd_identifier_token25] = ACTIONS(1909), + [aux_sym_cmd_identifier_token26] = ACTIONS(1909), + [aux_sym_cmd_identifier_token27] = ACTIONS(1909), + [aux_sym_cmd_identifier_token28] = ACTIONS(1909), + [aux_sym_cmd_identifier_token29] = ACTIONS(1909), + [aux_sym_cmd_identifier_token30] = ACTIONS(1909), + [aux_sym_cmd_identifier_token31] = ACTIONS(1909), + [aux_sym_cmd_identifier_token32] = ACTIONS(1909), + [aux_sym_cmd_identifier_token33] = ACTIONS(1909), + [aux_sym_cmd_identifier_token34] = ACTIONS(1909), + [aux_sym_cmd_identifier_token35] = ACTIONS(1909), + [aux_sym_cmd_identifier_token36] = ACTIONS(1909), [anon_sym_true] = ACTIONS(1911), [anon_sym_false] = ACTIONS(1911), [anon_sym_null] = ACTIONS(1911), - [aux_sym_cmd_identifier_token38] = ACTIONS(1905), + [aux_sym_cmd_identifier_token38] = ACTIONS(1909), [aux_sym_cmd_identifier_token39] = ACTIONS(1911), [aux_sym_cmd_identifier_token40] = ACTIONS(1911), - [anon_sym_def] = 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_def] = 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_LPAREN] = ACTIONS(1911), [anon_sym_DOLLAR] = ACTIONS(1911), - [anon_sym_error] = ACTIONS(1905), - [anon_sym_list] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_break] = ACTIONS(1905), - [anon_sym_continue] = ACTIONS(1905), - [anon_sym_for] = ACTIONS(1905), - [anon_sym_in] = ACTIONS(1905), - [anon_sym_loop] = ACTIONS(1905), - [anon_sym_make] = ACTIONS(1905), - [anon_sym_while] = ACTIONS(1905), - [anon_sym_do] = ACTIONS(1905), - [anon_sym_if] = ACTIONS(1905), - [anon_sym_else] = ACTIONS(1905), - [anon_sym_match] = ACTIONS(1905), + [anon_sym_error] = ACTIONS(1909), + [anon_sym_list] = ACTIONS(1909), + [anon_sym_DASH] = ACTIONS(1909), + [anon_sym_break] = ACTIONS(1909), + [anon_sym_continue] = ACTIONS(1909), + [anon_sym_for] = ACTIONS(1909), + [anon_sym_in] = ACTIONS(1909), + [anon_sym_loop] = ACTIONS(1909), + [anon_sym_make] = ACTIONS(1909), + [anon_sym_while] = ACTIONS(1909), + [anon_sym_do] = ACTIONS(1909), + [anon_sym_if] = ACTIONS(1909), + [anon_sym_else] = ACTIONS(1909), + [anon_sym_match] = ACTIONS(1909), [anon_sym_RBRACE] = ACTIONS(1911), - [anon_sym_try] = ACTIONS(1905), - [anon_sym_catch] = 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_new] = ACTIONS(1905), - [anon_sym_as] = ACTIONS(1905), + [anon_sym_try] = ACTIONS(1909), + [anon_sym_catch] = 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_new] = ACTIONS(1909), + [anon_sym_as] = ACTIONS(1909), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1911), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1911), - [aux_sym__val_number_decimal_token1] = ACTIONS(1905), + [aux_sym__val_number_decimal_token1] = ACTIONS(1909), [aux_sym__val_number_decimal_token2] = ACTIONS(1911), [aux_sym__val_number_decimal_token3] = ACTIONS(1911), [aux_sym__val_number_decimal_token4] = ACTIONS(1911), @@ -147510,42343 +145369,39831 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(1911), [sym__str_back_ticks] = ACTIONS(1911), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1911), - [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_PLUS] = ACTIONS(1909), [anon_sym_POUND] = ACTIONS(247), }, - [635] = { - [sym_comment] = STATE(635), - [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), - [aux_sym_cmd_identifier_token1] = ACTIONS(1525), - [aux_sym_cmd_identifier_token2] = ACTIONS(1525), - [aux_sym_cmd_identifier_token3] = ACTIONS(1525), - [aux_sym_cmd_identifier_token4] = ACTIONS(1525), - [aux_sym_cmd_identifier_token5] = ACTIONS(1525), - [aux_sym_cmd_identifier_token6] = ACTIONS(1525), - [aux_sym_cmd_identifier_token7] = ACTIONS(1525), - [aux_sym_cmd_identifier_token8] = ACTIONS(1525), - [aux_sym_cmd_identifier_token9] = ACTIONS(1525), - [aux_sym_cmd_identifier_token10] = ACTIONS(1525), - [aux_sym_cmd_identifier_token11] = ACTIONS(1525), - [aux_sym_cmd_identifier_token12] = ACTIONS(1525), - [aux_sym_cmd_identifier_token13] = ACTIONS(1525), - [aux_sym_cmd_identifier_token14] = ACTIONS(1525), - [aux_sym_cmd_identifier_token15] = ACTIONS(1525), - [aux_sym_cmd_identifier_token16] = ACTIONS(1525), - [aux_sym_cmd_identifier_token17] = ACTIONS(1525), - [aux_sym_cmd_identifier_token18] = ACTIONS(1525), - [aux_sym_cmd_identifier_token19] = ACTIONS(1525), - [aux_sym_cmd_identifier_token20] = ACTIONS(1525), - [aux_sym_cmd_identifier_token21] = ACTIONS(1525), - [aux_sym_cmd_identifier_token22] = ACTIONS(1525), - [aux_sym_cmd_identifier_token23] = ACTIONS(1525), - [aux_sym_cmd_identifier_token24] = ACTIONS(1525), - [aux_sym_cmd_identifier_token25] = ACTIONS(1525), - [aux_sym_cmd_identifier_token26] = ACTIONS(1525), - [aux_sym_cmd_identifier_token27] = ACTIONS(1525), - [aux_sym_cmd_identifier_token28] = ACTIONS(1525), - [aux_sym_cmd_identifier_token29] = ACTIONS(1525), - [aux_sym_cmd_identifier_token30] = ACTIONS(1525), - [aux_sym_cmd_identifier_token31] = ACTIONS(1525), - [aux_sym_cmd_identifier_token32] = ACTIONS(1525), - [aux_sym_cmd_identifier_token33] = ACTIONS(1525), - [aux_sym_cmd_identifier_token34] = ACTIONS(1525), - [aux_sym_cmd_identifier_token35] = ACTIONS(1525), - [aux_sym_cmd_identifier_token36] = ACTIONS(1525), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_null] = ACTIONS(1537), - [aux_sym_cmd_identifier_token38] = ACTIONS(1525), - [aux_sym_cmd_identifier_token39] = ACTIONS(1537), - [aux_sym_cmd_identifier_token40] = ACTIONS(1537), - [anon_sym_def] = 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_LPAREN] = ACTIONS(1537), - [anon_sym_DOLLAR] = ACTIONS(1537), - [anon_sym_error] = ACTIONS(1525), - [anon_sym_list] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_break] = ACTIONS(1525), - [anon_sym_continue] = ACTIONS(1525), - [anon_sym_for] = ACTIONS(1525), - [anon_sym_in] = ACTIONS(1525), - [anon_sym_loop] = ACTIONS(1525), - [anon_sym_make] = ACTIONS(1525), - [anon_sym_while] = ACTIONS(1525), - [anon_sym_do] = ACTIONS(1525), - [anon_sym_if] = ACTIONS(1525), - [anon_sym_else] = ACTIONS(1525), - [anon_sym_match] = ACTIONS(1525), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_try] = ACTIONS(1525), - [anon_sym_catch] = 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_new] = ACTIONS(1525), - [anon_sym_as] = ACTIONS(1525), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1537), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1537), - [aux_sym__val_number_decimal_token1] = ACTIONS(1525), - [aux_sym__val_number_decimal_token2] = ACTIONS(1537), - [aux_sym__val_number_decimal_token3] = ACTIONS(1537), - [aux_sym__val_number_decimal_token4] = ACTIONS(1537), - [aux_sym__val_number_token1] = ACTIONS(1537), - [aux_sym__val_number_token2] = ACTIONS(1537), - [aux_sym__val_number_token3] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym__str_single_quotes] = ACTIONS(1537), - [sym__str_back_ticks] = ACTIONS(1537), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1525), + [655] = { + [sym_comment] = STATE(655), + [anon_sym_export] = ACTIONS(2023), + [anon_sym_alias] = ACTIONS(2023), + [anon_sym_let] = ACTIONS(2023), + [anon_sym_let_DASHenv] = ACTIONS(2023), + [anon_sym_mut] = ACTIONS(2023), + [anon_sym_const] = ACTIONS(2023), + [aux_sym_cmd_identifier_token1] = ACTIONS(2023), + [aux_sym_cmd_identifier_token2] = ACTIONS(2023), + [aux_sym_cmd_identifier_token3] = ACTIONS(2023), + [aux_sym_cmd_identifier_token4] = ACTIONS(2023), + [aux_sym_cmd_identifier_token5] = ACTIONS(2023), + [aux_sym_cmd_identifier_token6] = ACTIONS(2023), + [aux_sym_cmd_identifier_token7] = ACTIONS(2023), + [aux_sym_cmd_identifier_token8] = ACTIONS(2023), + [aux_sym_cmd_identifier_token9] = ACTIONS(2023), + [aux_sym_cmd_identifier_token10] = ACTIONS(2023), + [aux_sym_cmd_identifier_token11] = ACTIONS(2023), + [aux_sym_cmd_identifier_token12] = ACTIONS(2023), + [aux_sym_cmd_identifier_token13] = ACTIONS(2023), + [aux_sym_cmd_identifier_token14] = ACTIONS(2023), + [aux_sym_cmd_identifier_token15] = ACTIONS(2023), + [aux_sym_cmd_identifier_token16] = ACTIONS(2023), + [aux_sym_cmd_identifier_token17] = ACTIONS(2023), + [aux_sym_cmd_identifier_token18] = ACTIONS(2023), + [aux_sym_cmd_identifier_token19] = ACTIONS(2023), + [aux_sym_cmd_identifier_token20] = ACTIONS(2023), + [aux_sym_cmd_identifier_token21] = ACTIONS(2023), + [aux_sym_cmd_identifier_token22] = ACTIONS(2023), + [aux_sym_cmd_identifier_token23] = ACTIONS(2023), + [aux_sym_cmd_identifier_token24] = ACTIONS(2023), + [aux_sym_cmd_identifier_token25] = ACTIONS(2023), + [aux_sym_cmd_identifier_token26] = ACTIONS(2023), + [aux_sym_cmd_identifier_token27] = ACTIONS(2023), + [aux_sym_cmd_identifier_token28] = ACTIONS(2023), + [aux_sym_cmd_identifier_token29] = ACTIONS(2023), + [aux_sym_cmd_identifier_token30] = ACTIONS(2023), + [aux_sym_cmd_identifier_token31] = ACTIONS(2023), + [aux_sym_cmd_identifier_token32] = ACTIONS(2023), + [aux_sym_cmd_identifier_token33] = ACTIONS(2023), + [aux_sym_cmd_identifier_token34] = ACTIONS(2023), + [aux_sym_cmd_identifier_token35] = ACTIONS(2023), + [aux_sym_cmd_identifier_token36] = ACTIONS(2023), + [anon_sym_true] = ACTIONS(2025), + [anon_sym_false] = ACTIONS(2025), + [anon_sym_null] = ACTIONS(2025), + [aux_sym_cmd_identifier_token38] = ACTIONS(2023), + [aux_sym_cmd_identifier_token39] = ACTIONS(2025), + [aux_sym_cmd_identifier_token40] = ACTIONS(2025), + [anon_sym_def] = ACTIONS(2023), + [anon_sym_export_DASHenv] = ACTIONS(2023), + [anon_sym_extern] = ACTIONS(2023), + [anon_sym_module] = ACTIONS(2023), + [anon_sym_use] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(2025), + [anon_sym_DOLLAR] = ACTIONS(2025), + [anon_sym_error] = ACTIONS(2023), + [anon_sym_list] = ACTIONS(2023), + [anon_sym_DASH] = ACTIONS(2023), + [anon_sym_break] = ACTIONS(2023), + [anon_sym_continue] = ACTIONS(2023), + [anon_sym_for] = ACTIONS(2023), + [anon_sym_in] = ACTIONS(2023), + [anon_sym_loop] = ACTIONS(2023), + [anon_sym_make] = ACTIONS(2023), + [anon_sym_while] = ACTIONS(2023), + [anon_sym_do] = ACTIONS(2023), + [anon_sym_if] = ACTIONS(2023), + [anon_sym_else] = ACTIONS(2023), + [anon_sym_match] = ACTIONS(2023), + [anon_sym_RBRACE] = ACTIONS(2025), + [anon_sym_try] = ACTIONS(2023), + [anon_sym_catch] = ACTIONS(2023), + [anon_sym_return] = ACTIONS(2023), + [anon_sym_source] = ACTIONS(2023), + [anon_sym_source_DASHenv] = ACTIONS(2023), + [anon_sym_register] = ACTIONS(2023), + [anon_sym_hide] = ACTIONS(2023), + [anon_sym_hide_DASHenv] = ACTIONS(2023), + [anon_sym_overlay] = ACTIONS(2023), + [anon_sym_new] = ACTIONS(2023), + [anon_sym_as] = ACTIONS(2023), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2025), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2025), + [aux_sym__val_number_decimal_token1] = ACTIONS(2023), + [aux_sym__val_number_decimal_token2] = ACTIONS(2025), + [aux_sym__val_number_decimal_token3] = ACTIONS(2025), + [aux_sym__val_number_decimal_token4] = ACTIONS(2025), + [aux_sym__val_number_token1] = ACTIONS(2025), + [aux_sym__val_number_token2] = ACTIONS(2025), + [aux_sym__val_number_token3] = ACTIONS(2025), + [anon_sym_DQUOTE] = ACTIONS(2025), + [sym__str_single_quotes] = ACTIONS(2025), + [sym__str_back_ticks] = ACTIONS(2025), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2025), + [anon_sym_PLUS] = ACTIONS(2023), [anon_sym_POUND] = ACTIONS(247), }, - [636] = { - [sym_comment] = STATE(636), - [anon_sym_export] = ACTIONS(1021), - [anon_sym_alias] = ACTIONS(1021), - [anon_sym_let] = ACTIONS(1021), - [anon_sym_let_DASHenv] = ACTIONS(1021), - [anon_sym_mut] = ACTIONS(1021), - [anon_sym_const] = ACTIONS(1021), - [aux_sym_cmd_identifier_token1] = ACTIONS(1021), - [aux_sym_cmd_identifier_token2] = ACTIONS(1021), - [aux_sym_cmd_identifier_token3] = ACTIONS(1021), - [aux_sym_cmd_identifier_token4] = ACTIONS(1021), - [aux_sym_cmd_identifier_token5] = ACTIONS(1021), - [aux_sym_cmd_identifier_token6] = ACTIONS(1021), - [aux_sym_cmd_identifier_token7] = ACTIONS(1021), - [aux_sym_cmd_identifier_token8] = ACTIONS(1021), - [aux_sym_cmd_identifier_token9] = ACTIONS(1021), - [aux_sym_cmd_identifier_token10] = ACTIONS(1021), - [aux_sym_cmd_identifier_token11] = ACTIONS(1021), - [aux_sym_cmd_identifier_token12] = ACTIONS(1021), - [aux_sym_cmd_identifier_token13] = ACTIONS(1021), - [aux_sym_cmd_identifier_token14] = ACTIONS(1021), - [aux_sym_cmd_identifier_token15] = ACTIONS(1021), - [aux_sym_cmd_identifier_token16] = ACTIONS(1021), - [aux_sym_cmd_identifier_token17] = ACTIONS(1021), - [aux_sym_cmd_identifier_token18] = ACTIONS(1021), - [aux_sym_cmd_identifier_token19] = ACTIONS(1021), - [aux_sym_cmd_identifier_token20] = ACTIONS(1021), - [aux_sym_cmd_identifier_token21] = ACTIONS(1021), - [aux_sym_cmd_identifier_token22] = ACTIONS(1021), - [aux_sym_cmd_identifier_token23] = ACTIONS(1021), - [aux_sym_cmd_identifier_token24] = ACTIONS(1021), - [aux_sym_cmd_identifier_token25] = ACTIONS(1021), - [aux_sym_cmd_identifier_token26] = ACTIONS(1021), - [aux_sym_cmd_identifier_token27] = ACTIONS(1021), - [aux_sym_cmd_identifier_token28] = ACTIONS(1021), - [aux_sym_cmd_identifier_token29] = ACTIONS(1021), - [aux_sym_cmd_identifier_token30] = ACTIONS(1021), - [aux_sym_cmd_identifier_token31] = ACTIONS(1021), - [aux_sym_cmd_identifier_token32] = ACTIONS(1021), - [aux_sym_cmd_identifier_token33] = ACTIONS(1021), - [aux_sym_cmd_identifier_token34] = ACTIONS(1021), - [aux_sym_cmd_identifier_token35] = ACTIONS(1021), - [aux_sym_cmd_identifier_token36] = ACTIONS(1021), - [anon_sym_true] = ACTIONS(1023), - [anon_sym_false] = ACTIONS(1023), - [anon_sym_null] = ACTIONS(1023), - [aux_sym_cmd_identifier_token38] = ACTIONS(1021), - [aux_sym_cmd_identifier_token39] = ACTIONS(1023), - [aux_sym_cmd_identifier_token40] = ACTIONS(1023), - [anon_sym_def] = ACTIONS(1021), - [anon_sym_export_DASHenv] = ACTIONS(1021), - [anon_sym_extern] = ACTIONS(1021), - [anon_sym_module] = ACTIONS(1021), - [anon_sym_use] = ACTIONS(1021), - [anon_sym_LPAREN] = ACTIONS(1023), - [anon_sym_DOLLAR] = ACTIONS(1023), - [anon_sym_error] = ACTIONS(1021), - [anon_sym_list] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_break] = ACTIONS(1021), - [anon_sym_continue] = ACTIONS(1021), - [anon_sym_for] = ACTIONS(1021), - [anon_sym_in] = ACTIONS(1021), - [anon_sym_loop] = ACTIONS(1021), - [anon_sym_make] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1021), - [anon_sym_do] = ACTIONS(1021), - [anon_sym_if] = ACTIONS(1021), - [anon_sym_else] = ACTIONS(1021), - [anon_sym_match] = ACTIONS(1021), - [anon_sym_RBRACE] = ACTIONS(1023), - [anon_sym_try] = ACTIONS(1021), - [anon_sym_catch] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1021), - [anon_sym_source] = ACTIONS(1021), - [anon_sym_source_DASHenv] = ACTIONS(1021), - [anon_sym_register] = ACTIONS(1021), - [anon_sym_hide] = ACTIONS(1021), - [anon_sym_hide_DASHenv] = ACTIONS(1021), - [anon_sym_overlay] = ACTIONS(1021), - [anon_sym_new] = ACTIONS(1021), - [anon_sym_as] = ACTIONS(1021), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1023), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1023), - [aux_sym__val_number_decimal_token1] = ACTIONS(1021), - [aux_sym__val_number_decimal_token2] = ACTIONS(1023), - [aux_sym__val_number_decimal_token3] = ACTIONS(1023), - [aux_sym__val_number_decimal_token4] = ACTIONS(1023), - [aux_sym__val_number_token1] = ACTIONS(1023), - [aux_sym__val_number_token2] = ACTIONS(1023), - [aux_sym__val_number_token3] = ACTIONS(1023), - [anon_sym_DQUOTE] = ACTIONS(1023), - [sym__str_single_quotes] = ACTIONS(1023), - [sym__str_back_ticks] = ACTIONS(1023), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1023), - [anon_sym_PLUS] = ACTIONS(1021), + [656] = { + [sym_comment] = STATE(656), + [anon_sym_export] = ACTIONS(2364), + [anon_sym_alias] = ACTIONS(2364), + [anon_sym_let] = ACTIONS(2364), + [anon_sym_let_DASHenv] = ACTIONS(2364), + [anon_sym_mut] = ACTIONS(2364), + [anon_sym_const] = ACTIONS(2364), + [aux_sym_cmd_identifier_token1] = ACTIONS(2364), + [aux_sym_cmd_identifier_token2] = ACTIONS(2364), + [aux_sym_cmd_identifier_token3] = ACTIONS(2364), + [aux_sym_cmd_identifier_token4] = ACTIONS(2364), + [aux_sym_cmd_identifier_token5] = ACTIONS(2364), + [aux_sym_cmd_identifier_token6] = ACTIONS(2364), + [aux_sym_cmd_identifier_token7] = ACTIONS(2364), + [aux_sym_cmd_identifier_token8] = ACTIONS(2364), + [aux_sym_cmd_identifier_token9] = ACTIONS(2364), + [aux_sym_cmd_identifier_token10] = ACTIONS(2364), + [aux_sym_cmd_identifier_token11] = ACTIONS(2364), + [aux_sym_cmd_identifier_token12] = ACTIONS(2364), + [aux_sym_cmd_identifier_token13] = ACTIONS(2364), + [aux_sym_cmd_identifier_token14] = ACTIONS(2364), + [aux_sym_cmd_identifier_token15] = ACTIONS(2364), + [aux_sym_cmd_identifier_token16] = ACTIONS(2364), + [aux_sym_cmd_identifier_token17] = ACTIONS(2364), + [aux_sym_cmd_identifier_token18] = ACTIONS(2364), + [aux_sym_cmd_identifier_token19] = ACTIONS(2364), + [aux_sym_cmd_identifier_token20] = ACTIONS(2364), + [aux_sym_cmd_identifier_token21] = ACTIONS(2364), + [aux_sym_cmd_identifier_token22] = ACTIONS(2364), + [aux_sym_cmd_identifier_token23] = ACTIONS(2364), + [aux_sym_cmd_identifier_token24] = ACTIONS(2364), + [aux_sym_cmd_identifier_token25] = ACTIONS(2364), + [aux_sym_cmd_identifier_token26] = ACTIONS(2364), + [aux_sym_cmd_identifier_token27] = ACTIONS(2364), + [aux_sym_cmd_identifier_token28] = ACTIONS(2364), + [aux_sym_cmd_identifier_token29] = ACTIONS(2364), + [aux_sym_cmd_identifier_token30] = ACTIONS(2364), + [aux_sym_cmd_identifier_token31] = ACTIONS(2364), + [aux_sym_cmd_identifier_token32] = ACTIONS(2364), + [aux_sym_cmd_identifier_token33] = ACTIONS(2364), + [aux_sym_cmd_identifier_token34] = ACTIONS(2364), + [aux_sym_cmd_identifier_token35] = ACTIONS(2364), + [aux_sym_cmd_identifier_token36] = ACTIONS(2364), + [anon_sym_true] = ACTIONS(2366), + [anon_sym_false] = ACTIONS(2366), + [anon_sym_null] = ACTIONS(2366), + [aux_sym_cmd_identifier_token38] = ACTIONS(2364), + [aux_sym_cmd_identifier_token39] = ACTIONS(2366), + [aux_sym_cmd_identifier_token40] = ACTIONS(2366), + [anon_sym_def] = ACTIONS(2364), + [anon_sym_export_DASHenv] = ACTIONS(2364), + [anon_sym_extern] = ACTIONS(2364), + [anon_sym_module] = ACTIONS(2364), + [anon_sym_use] = ACTIONS(2364), + [anon_sym_LPAREN] = ACTIONS(2366), + [anon_sym_DOLLAR] = ACTIONS(2366), + [anon_sym_error] = ACTIONS(2364), + [anon_sym_list] = ACTIONS(2364), + [anon_sym_DASH] = ACTIONS(2364), + [anon_sym_break] = ACTIONS(2364), + [anon_sym_continue] = ACTIONS(2364), + [anon_sym_for] = ACTIONS(2364), + [anon_sym_in] = ACTIONS(2364), + [anon_sym_loop] = ACTIONS(2364), + [anon_sym_make] = ACTIONS(2364), + [anon_sym_while] = ACTIONS(2364), + [anon_sym_do] = ACTIONS(2364), + [anon_sym_if] = ACTIONS(2364), + [anon_sym_else] = ACTIONS(2364), + [anon_sym_match] = ACTIONS(2364), + [anon_sym_RBRACE] = ACTIONS(2366), + [anon_sym_try] = ACTIONS(2364), + [anon_sym_catch] = ACTIONS(2364), + [anon_sym_return] = ACTIONS(2364), + [anon_sym_source] = ACTIONS(2364), + [anon_sym_source_DASHenv] = ACTIONS(2364), + [anon_sym_register] = ACTIONS(2364), + [anon_sym_hide] = ACTIONS(2364), + [anon_sym_hide_DASHenv] = ACTIONS(2364), + [anon_sym_overlay] = ACTIONS(2364), + [anon_sym_new] = ACTIONS(2364), + [anon_sym_as] = ACTIONS(2364), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2366), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2366), + [aux_sym__val_number_decimal_token1] = ACTIONS(2364), + [aux_sym__val_number_decimal_token2] = ACTIONS(2366), + [aux_sym__val_number_decimal_token3] = ACTIONS(2366), + [aux_sym__val_number_decimal_token4] = ACTIONS(2366), + [aux_sym__val_number_token1] = ACTIONS(2366), + [aux_sym__val_number_token2] = ACTIONS(2366), + [aux_sym__val_number_token3] = ACTIONS(2366), + [anon_sym_DQUOTE] = ACTIONS(2366), + [sym__str_single_quotes] = ACTIONS(2366), + [sym__str_back_ticks] = ACTIONS(2366), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2366), + [anon_sym_PLUS] = ACTIONS(2364), [anon_sym_POUND] = ACTIONS(247), }, - [637] = { - [sym_comment] = STATE(637), - [anon_sym_export] = ACTIONS(1747), - [anon_sym_alias] = ACTIONS(1747), - [anon_sym_let] = ACTIONS(1747), - [anon_sym_let_DASHenv] = ACTIONS(1747), - [anon_sym_mut] = ACTIONS(1747), - [anon_sym_const] = ACTIONS(1747), - [aux_sym_cmd_identifier_token1] = ACTIONS(1747), - [aux_sym_cmd_identifier_token2] = ACTIONS(1747), - [aux_sym_cmd_identifier_token3] = ACTIONS(1747), - [aux_sym_cmd_identifier_token4] = ACTIONS(1747), - [aux_sym_cmd_identifier_token5] = ACTIONS(1747), - [aux_sym_cmd_identifier_token6] = ACTIONS(1747), - [aux_sym_cmd_identifier_token7] = ACTIONS(1747), - [aux_sym_cmd_identifier_token8] = ACTIONS(1747), - [aux_sym_cmd_identifier_token9] = ACTIONS(1747), - [aux_sym_cmd_identifier_token10] = ACTIONS(1747), - [aux_sym_cmd_identifier_token11] = ACTIONS(1747), - [aux_sym_cmd_identifier_token12] = ACTIONS(1747), - [aux_sym_cmd_identifier_token13] = ACTIONS(1747), - [aux_sym_cmd_identifier_token14] = ACTIONS(1747), - [aux_sym_cmd_identifier_token15] = ACTIONS(1747), - [aux_sym_cmd_identifier_token16] = ACTIONS(1747), - [aux_sym_cmd_identifier_token17] = ACTIONS(1747), - [aux_sym_cmd_identifier_token18] = ACTIONS(1747), - [aux_sym_cmd_identifier_token19] = ACTIONS(1747), - [aux_sym_cmd_identifier_token20] = ACTIONS(1747), - [aux_sym_cmd_identifier_token21] = ACTIONS(1747), - [aux_sym_cmd_identifier_token22] = ACTIONS(1747), - [aux_sym_cmd_identifier_token23] = ACTIONS(1747), - [aux_sym_cmd_identifier_token24] = ACTIONS(1747), - [aux_sym_cmd_identifier_token25] = ACTIONS(1747), - [aux_sym_cmd_identifier_token26] = ACTIONS(1747), - [aux_sym_cmd_identifier_token27] = ACTIONS(1747), - [aux_sym_cmd_identifier_token28] = ACTIONS(1747), - [aux_sym_cmd_identifier_token29] = ACTIONS(1747), - [aux_sym_cmd_identifier_token30] = ACTIONS(1747), - [aux_sym_cmd_identifier_token31] = ACTIONS(1747), - [aux_sym_cmd_identifier_token32] = ACTIONS(1747), - [aux_sym_cmd_identifier_token33] = ACTIONS(1747), - [aux_sym_cmd_identifier_token34] = ACTIONS(1747), - [aux_sym_cmd_identifier_token35] = ACTIONS(1747), - [aux_sym_cmd_identifier_token36] = ACTIONS(1747), - [anon_sym_true] = ACTIONS(1749), - [anon_sym_false] = ACTIONS(1749), - [anon_sym_null] = ACTIONS(1749), - [aux_sym_cmd_identifier_token38] = ACTIONS(1747), - [aux_sym_cmd_identifier_token39] = ACTIONS(1749), - [aux_sym_cmd_identifier_token40] = ACTIONS(1749), - [anon_sym_def] = ACTIONS(1747), - [anon_sym_export_DASHenv] = ACTIONS(1747), - [anon_sym_extern] = ACTIONS(1747), - [anon_sym_module] = ACTIONS(1747), - [anon_sym_use] = ACTIONS(1747), - [anon_sym_LPAREN] = ACTIONS(1749), - [anon_sym_DOLLAR] = ACTIONS(1749), - [anon_sym_error] = ACTIONS(1747), - [anon_sym_list] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_break] = ACTIONS(1747), - [anon_sym_continue] = ACTIONS(1747), - [anon_sym_for] = ACTIONS(1747), - [anon_sym_in] = ACTIONS(1747), - [anon_sym_loop] = ACTIONS(1747), - [anon_sym_make] = ACTIONS(1747), - [anon_sym_while] = ACTIONS(1747), - [anon_sym_do] = ACTIONS(1747), - [anon_sym_if] = ACTIONS(1747), - [anon_sym_else] = ACTIONS(1747), - [anon_sym_match] = ACTIONS(1747), - [anon_sym_RBRACE] = ACTIONS(1749), - [anon_sym_try] = ACTIONS(1747), - [anon_sym_catch] = ACTIONS(1747), - [anon_sym_return] = ACTIONS(1747), - [anon_sym_source] = ACTIONS(1747), - [anon_sym_source_DASHenv] = ACTIONS(1747), - [anon_sym_register] = ACTIONS(1747), - [anon_sym_hide] = ACTIONS(1747), - [anon_sym_hide_DASHenv] = ACTIONS(1747), - [anon_sym_overlay] = ACTIONS(1747), - [anon_sym_new] = ACTIONS(1747), - [anon_sym_as] = ACTIONS(1747), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1749), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1749), - [aux_sym__val_number_decimal_token1] = ACTIONS(1747), - [aux_sym__val_number_decimal_token2] = ACTIONS(1749), - [aux_sym__val_number_decimal_token3] = ACTIONS(1749), - [aux_sym__val_number_decimal_token4] = ACTIONS(1749), - [aux_sym__val_number_token1] = ACTIONS(1749), - [aux_sym__val_number_token2] = ACTIONS(1749), - [aux_sym__val_number_token3] = ACTIONS(1749), - [anon_sym_DQUOTE] = ACTIONS(1749), - [sym__str_single_quotes] = ACTIONS(1749), - [sym__str_back_ticks] = ACTIONS(1749), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1749), - [anon_sym_PLUS] = ACTIONS(1747), + [657] = { + [sym_comment] = STATE(657), + [anon_sym_export] = ACTIONS(2345), + [anon_sym_alias] = ACTIONS(2345), + [anon_sym_let] = ACTIONS(2345), + [anon_sym_let_DASHenv] = ACTIONS(2345), + [anon_sym_mut] = ACTIONS(2345), + [anon_sym_const] = ACTIONS(2345), + [aux_sym_cmd_identifier_token1] = ACTIONS(2345), + [aux_sym_cmd_identifier_token2] = ACTIONS(2345), + [aux_sym_cmd_identifier_token3] = ACTIONS(2345), + [aux_sym_cmd_identifier_token4] = ACTIONS(2345), + [aux_sym_cmd_identifier_token5] = ACTIONS(2345), + [aux_sym_cmd_identifier_token6] = ACTIONS(2345), + [aux_sym_cmd_identifier_token7] = ACTIONS(2345), + [aux_sym_cmd_identifier_token8] = ACTIONS(2345), + [aux_sym_cmd_identifier_token9] = ACTIONS(2345), + [aux_sym_cmd_identifier_token10] = ACTIONS(2345), + [aux_sym_cmd_identifier_token11] = ACTIONS(2345), + [aux_sym_cmd_identifier_token12] = ACTIONS(2345), + [aux_sym_cmd_identifier_token13] = ACTIONS(2345), + [aux_sym_cmd_identifier_token14] = ACTIONS(2345), + [aux_sym_cmd_identifier_token15] = ACTIONS(2345), + [aux_sym_cmd_identifier_token16] = ACTIONS(2345), + [aux_sym_cmd_identifier_token17] = ACTIONS(2345), + [aux_sym_cmd_identifier_token18] = ACTIONS(2345), + [aux_sym_cmd_identifier_token19] = ACTIONS(2345), + [aux_sym_cmd_identifier_token20] = ACTIONS(2345), + [aux_sym_cmd_identifier_token21] = ACTIONS(2345), + [aux_sym_cmd_identifier_token22] = ACTIONS(2345), + [aux_sym_cmd_identifier_token23] = ACTIONS(2345), + [aux_sym_cmd_identifier_token24] = ACTIONS(2345), + [aux_sym_cmd_identifier_token25] = ACTIONS(2345), + [aux_sym_cmd_identifier_token26] = ACTIONS(2345), + [aux_sym_cmd_identifier_token27] = ACTIONS(2345), + [aux_sym_cmd_identifier_token28] = ACTIONS(2345), + [aux_sym_cmd_identifier_token29] = ACTIONS(2345), + [aux_sym_cmd_identifier_token30] = ACTIONS(2345), + [aux_sym_cmd_identifier_token31] = ACTIONS(2345), + [aux_sym_cmd_identifier_token32] = ACTIONS(2345), + [aux_sym_cmd_identifier_token33] = ACTIONS(2345), + [aux_sym_cmd_identifier_token34] = ACTIONS(2345), + [aux_sym_cmd_identifier_token35] = ACTIONS(2345), + [aux_sym_cmd_identifier_token36] = ACTIONS(2345), + [anon_sym_true] = ACTIONS(2347), + [anon_sym_false] = ACTIONS(2347), + [anon_sym_null] = ACTIONS(2347), + [aux_sym_cmd_identifier_token38] = ACTIONS(2345), + [aux_sym_cmd_identifier_token39] = ACTIONS(2347), + [aux_sym_cmd_identifier_token40] = ACTIONS(2347), + [anon_sym_def] = ACTIONS(2345), + [anon_sym_export_DASHenv] = ACTIONS(2345), + [anon_sym_extern] = ACTIONS(2345), + [anon_sym_module] = ACTIONS(2345), + [anon_sym_use] = ACTIONS(2345), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_DOLLAR] = ACTIONS(2347), + [anon_sym_error] = ACTIONS(2345), + [anon_sym_list] = ACTIONS(2345), + [anon_sym_DASH] = ACTIONS(2345), + [anon_sym_break] = ACTIONS(2345), + [anon_sym_continue] = ACTIONS(2345), + [anon_sym_for] = ACTIONS(2345), + [anon_sym_in] = ACTIONS(2345), + [anon_sym_loop] = ACTIONS(2345), + [anon_sym_make] = ACTIONS(2345), + [anon_sym_while] = ACTIONS(2345), + [anon_sym_do] = ACTIONS(2345), + [anon_sym_if] = ACTIONS(2345), + [anon_sym_else] = ACTIONS(2345), + [anon_sym_match] = ACTIONS(2345), + [anon_sym_RBRACE] = ACTIONS(2347), + [anon_sym_try] = ACTIONS(2345), + [anon_sym_catch] = ACTIONS(2345), + [anon_sym_return] = ACTIONS(2345), + [anon_sym_source] = ACTIONS(2345), + [anon_sym_source_DASHenv] = ACTIONS(2345), + [anon_sym_register] = ACTIONS(2345), + [anon_sym_hide] = ACTIONS(2345), + [anon_sym_hide_DASHenv] = ACTIONS(2345), + [anon_sym_overlay] = ACTIONS(2345), + [anon_sym_new] = ACTIONS(2345), + [anon_sym_as] = ACTIONS(2345), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2347), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2347), + [aux_sym__val_number_decimal_token1] = ACTIONS(2345), + [aux_sym__val_number_decimal_token2] = ACTIONS(2347), + [aux_sym__val_number_decimal_token3] = ACTIONS(2347), + [aux_sym__val_number_decimal_token4] = ACTIONS(2347), + [aux_sym__val_number_token1] = ACTIONS(2347), + [aux_sym__val_number_token2] = ACTIONS(2347), + [aux_sym__val_number_token3] = ACTIONS(2347), + [anon_sym_DQUOTE] = ACTIONS(2347), + [sym__str_single_quotes] = ACTIONS(2347), + [sym__str_back_ticks] = ACTIONS(2347), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2347), + [anon_sym_PLUS] = ACTIONS(2345), [anon_sym_POUND] = ACTIONS(247), }, - [638] = { - [sym_comment] = STATE(638), - [anon_sym_export] = ACTIONS(1855), - [anon_sym_alias] = ACTIONS(1855), - [anon_sym_let] = ACTIONS(1855), - [anon_sym_let_DASHenv] = ACTIONS(1855), - [anon_sym_mut] = ACTIONS(1855), - [anon_sym_const] = ACTIONS(1855), - [aux_sym_cmd_identifier_token1] = ACTIONS(1855), - [aux_sym_cmd_identifier_token2] = ACTIONS(1855), - [aux_sym_cmd_identifier_token3] = ACTIONS(1855), - [aux_sym_cmd_identifier_token4] = ACTIONS(1855), - [aux_sym_cmd_identifier_token5] = ACTIONS(1855), - [aux_sym_cmd_identifier_token6] = ACTIONS(1855), - [aux_sym_cmd_identifier_token7] = ACTIONS(1855), - [aux_sym_cmd_identifier_token8] = ACTIONS(1855), - [aux_sym_cmd_identifier_token9] = ACTIONS(1855), - [aux_sym_cmd_identifier_token10] = ACTIONS(1855), - [aux_sym_cmd_identifier_token11] = ACTIONS(1855), - [aux_sym_cmd_identifier_token12] = ACTIONS(1855), - [aux_sym_cmd_identifier_token13] = ACTIONS(1855), - [aux_sym_cmd_identifier_token14] = ACTIONS(1855), - [aux_sym_cmd_identifier_token15] = ACTIONS(1855), - [aux_sym_cmd_identifier_token16] = ACTIONS(1855), - [aux_sym_cmd_identifier_token17] = ACTIONS(1855), - [aux_sym_cmd_identifier_token18] = ACTIONS(1855), - [aux_sym_cmd_identifier_token19] = ACTIONS(1855), - [aux_sym_cmd_identifier_token20] = ACTIONS(1855), - [aux_sym_cmd_identifier_token21] = ACTIONS(1855), - [aux_sym_cmd_identifier_token22] = ACTIONS(1855), - [aux_sym_cmd_identifier_token23] = ACTIONS(1855), - [aux_sym_cmd_identifier_token24] = ACTIONS(1855), - [aux_sym_cmd_identifier_token25] = ACTIONS(1855), - [aux_sym_cmd_identifier_token26] = ACTIONS(1855), - [aux_sym_cmd_identifier_token27] = ACTIONS(1855), - [aux_sym_cmd_identifier_token28] = ACTIONS(1855), - [aux_sym_cmd_identifier_token29] = ACTIONS(1855), - [aux_sym_cmd_identifier_token30] = ACTIONS(1855), - [aux_sym_cmd_identifier_token31] = ACTIONS(1855), - [aux_sym_cmd_identifier_token32] = ACTIONS(1855), - [aux_sym_cmd_identifier_token33] = ACTIONS(1855), - [aux_sym_cmd_identifier_token34] = ACTIONS(1855), - [aux_sym_cmd_identifier_token35] = ACTIONS(1855), - [aux_sym_cmd_identifier_token36] = ACTIONS(1855), - [anon_sym_true] = ACTIONS(1857), - [anon_sym_false] = ACTIONS(1857), - [anon_sym_null] = ACTIONS(1857), - [aux_sym_cmd_identifier_token38] = ACTIONS(1855), - [aux_sym_cmd_identifier_token39] = ACTIONS(1857), - [aux_sym_cmd_identifier_token40] = ACTIONS(1857), - [anon_sym_def] = ACTIONS(1855), - [anon_sym_export_DASHenv] = ACTIONS(1855), - [anon_sym_extern] = ACTIONS(1855), - [anon_sym_module] = ACTIONS(1855), - [anon_sym_use] = ACTIONS(1855), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_DOLLAR] = ACTIONS(1857), - [anon_sym_error] = ACTIONS(1855), - [anon_sym_list] = ACTIONS(1855), - [anon_sym_DASH] = ACTIONS(1855), - [anon_sym_break] = ACTIONS(1855), - [anon_sym_continue] = ACTIONS(1855), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_in] = ACTIONS(1855), - [anon_sym_loop] = ACTIONS(1855), - [anon_sym_make] = ACTIONS(1855), - [anon_sym_while] = ACTIONS(1855), - [anon_sym_do] = ACTIONS(1855), - [anon_sym_if] = ACTIONS(1855), - [anon_sym_else] = ACTIONS(1855), - [anon_sym_match] = ACTIONS(1855), - [anon_sym_RBRACE] = ACTIONS(1857), - [anon_sym_try] = ACTIONS(1855), - [anon_sym_catch] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1855), - [anon_sym_source] = ACTIONS(1855), - [anon_sym_source_DASHenv] = ACTIONS(1855), - [anon_sym_register] = ACTIONS(1855), - [anon_sym_hide] = ACTIONS(1855), - [anon_sym_hide_DASHenv] = ACTIONS(1855), - [anon_sym_overlay] = ACTIONS(1855), - [anon_sym_new] = ACTIONS(1855), - [anon_sym_as] = ACTIONS(1855), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1857), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1857), - [aux_sym__val_number_decimal_token1] = ACTIONS(1855), - [aux_sym__val_number_decimal_token2] = ACTIONS(1857), - [aux_sym__val_number_decimal_token3] = ACTIONS(1857), - [aux_sym__val_number_decimal_token4] = ACTIONS(1857), - [aux_sym__val_number_token1] = ACTIONS(1857), - [aux_sym__val_number_token2] = ACTIONS(1857), - [aux_sym__val_number_token3] = ACTIONS(1857), - [anon_sym_DQUOTE] = ACTIONS(1857), - [sym__str_single_quotes] = ACTIONS(1857), - [sym__str_back_ticks] = ACTIONS(1857), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1857), - [anon_sym_PLUS] = ACTIONS(1855), + [658] = { + [sym_comment] = STATE(658), + [anon_sym_export] = ACTIONS(2461), + [anon_sym_alias] = ACTIONS(2461), + [anon_sym_let] = ACTIONS(2461), + [anon_sym_let_DASHenv] = ACTIONS(2461), + [anon_sym_mut] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2461), + [aux_sym_cmd_identifier_token1] = ACTIONS(2461), + [aux_sym_cmd_identifier_token2] = ACTIONS(2461), + [aux_sym_cmd_identifier_token3] = ACTIONS(2461), + [aux_sym_cmd_identifier_token4] = ACTIONS(2461), + [aux_sym_cmd_identifier_token5] = ACTIONS(2461), + [aux_sym_cmd_identifier_token6] = ACTIONS(2461), + [aux_sym_cmd_identifier_token7] = ACTIONS(2461), + [aux_sym_cmd_identifier_token8] = ACTIONS(2461), + [aux_sym_cmd_identifier_token9] = ACTIONS(2461), + [aux_sym_cmd_identifier_token10] = ACTIONS(2461), + [aux_sym_cmd_identifier_token11] = ACTIONS(2461), + [aux_sym_cmd_identifier_token12] = ACTIONS(2461), + [aux_sym_cmd_identifier_token13] = ACTIONS(2461), + [aux_sym_cmd_identifier_token14] = ACTIONS(2461), + [aux_sym_cmd_identifier_token15] = ACTIONS(2461), + [aux_sym_cmd_identifier_token16] = ACTIONS(2461), + [aux_sym_cmd_identifier_token17] = ACTIONS(2461), + [aux_sym_cmd_identifier_token18] = ACTIONS(2461), + [aux_sym_cmd_identifier_token19] = ACTIONS(2461), + [aux_sym_cmd_identifier_token20] = ACTIONS(2461), + [aux_sym_cmd_identifier_token21] = ACTIONS(2461), + [aux_sym_cmd_identifier_token22] = ACTIONS(2461), + [aux_sym_cmd_identifier_token23] = ACTIONS(2461), + [aux_sym_cmd_identifier_token24] = ACTIONS(2461), + [aux_sym_cmd_identifier_token25] = ACTIONS(2461), + [aux_sym_cmd_identifier_token26] = ACTIONS(2461), + [aux_sym_cmd_identifier_token27] = ACTIONS(2461), + [aux_sym_cmd_identifier_token28] = ACTIONS(2461), + [aux_sym_cmd_identifier_token29] = ACTIONS(2461), + [aux_sym_cmd_identifier_token30] = ACTIONS(2461), + [aux_sym_cmd_identifier_token31] = ACTIONS(2461), + [aux_sym_cmd_identifier_token32] = ACTIONS(2461), + [aux_sym_cmd_identifier_token33] = ACTIONS(2461), + [aux_sym_cmd_identifier_token34] = ACTIONS(2461), + [aux_sym_cmd_identifier_token35] = ACTIONS(2461), + [aux_sym_cmd_identifier_token36] = ACTIONS(2461), + [anon_sym_true] = ACTIONS(2463), + [anon_sym_false] = ACTIONS(2463), + [anon_sym_null] = ACTIONS(2463), + [aux_sym_cmd_identifier_token38] = ACTIONS(2461), + [aux_sym_cmd_identifier_token39] = ACTIONS(2463), + [aux_sym_cmd_identifier_token40] = ACTIONS(2463), + [anon_sym_def] = ACTIONS(2461), + [anon_sym_export_DASHenv] = ACTIONS(2461), + [anon_sym_extern] = ACTIONS(2461), + [anon_sym_module] = ACTIONS(2461), + [anon_sym_use] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(2463), + [anon_sym_DOLLAR] = ACTIONS(2463), + [anon_sym_error] = ACTIONS(2461), + [anon_sym_list] = ACTIONS(2461), + [anon_sym_DASH] = ACTIONS(2461), + [anon_sym_break] = ACTIONS(2461), + [anon_sym_continue] = ACTIONS(2461), + [anon_sym_for] = ACTIONS(2461), + [anon_sym_in] = ACTIONS(2461), + [anon_sym_loop] = ACTIONS(2461), + [anon_sym_make] = ACTIONS(2461), + [anon_sym_while] = ACTIONS(2461), + [anon_sym_do] = ACTIONS(2461), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_else] = ACTIONS(2461), + [anon_sym_match] = ACTIONS(2461), + [anon_sym_RBRACE] = ACTIONS(2463), + [anon_sym_try] = ACTIONS(2461), + [anon_sym_catch] = ACTIONS(2461), + [anon_sym_return] = ACTIONS(2461), + [anon_sym_source] = ACTIONS(2461), + [anon_sym_source_DASHenv] = ACTIONS(2461), + [anon_sym_register] = ACTIONS(2461), + [anon_sym_hide] = ACTIONS(2461), + [anon_sym_hide_DASHenv] = ACTIONS(2461), + [anon_sym_overlay] = ACTIONS(2461), + [anon_sym_new] = ACTIONS(2461), + [anon_sym_as] = ACTIONS(2461), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2463), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2463), + [aux_sym__val_number_decimal_token1] = ACTIONS(2461), + [aux_sym__val_number_decimal_token2] = ACTIONS(2463), + [aux_sym__val_number_decimal_token3] = ACTIONS(2463), + [aux_sym__val_number_decimal_token4] = ACTIONS(2463), + [aux_sym__val_number_token1] = ACTIONS(2463), + [aux_sym__val_number_token2] = ACTIONS(2463), + [aux_sym__val_number_token3] = ACTIONS(2463), + [anon_sym_DQUOTE] = ACTIONS(2463), + [sym__str_single_quotes] = ACTIONS(2463), + [sym__str_back_ticks] = ACTIONS(2463), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2463), + [anon_sym_PLUS] = ACTIONS(2461), [anon_sym_POUND] = ACTIONS(247), }, - [639] = { - [sym_comment] = STATE(639), - [anon_sym_export] = ACTIONS(1796), - [anon_sym_alias] = ACTIONS(1796), - [anon_sym_let] = ACTIONS(1796), - [anon_sym_let_DASHenv] = ACTIONS(1796), - [anon_sym_mut] = ACTIONS(1796), - [anon_sym_const] = ACTIONS(1796), - [aux_sym_cmd_identifier_token1] = ACTIONS(1796), - [aux_sym_cmd_identifier_token2] = ACTIONS(1796), - [aux_sym_cmd_identifier_token3] = ACTIONS(1796), - [aux_sym_cmd_identifier_token4] = ACTIONS(1796), - [aux_sym_cmd_identifier_token5] = ACTIONS(1796), - [aux_sym_cmd_identifier_token6] = ACTIONS(1796), - [aux_sym_cmd_identifier_token7] = ACTIONS(1796), - [aux_sym_cmd_identifier_token8] = ACTIONS(1796), - [aux_sym_cmd_identifier_token9] = ACTIONS(1796), - [aux_sym_cmd_identifier_token10] = ACTIONS(1796), - [aux_sym_cmd_identifier_token11] = ACTIONS(1796), - [aux_sym_cmd_identifier_token12] = ACTIONS(1796), - [aux_sym_cmd_identifier_token13] = ACTIONS(1796), - [aux_sym_cmd_identifier_token14] = ACTIONS(1796), - [aux_sym_cmd_identifier_token15] = ACTIONS(1796), - [aux_sym_cmd_identifier_token16] = ACTIONS(1796), - [aux_sym_cmd_identifier_token17] = ACTIONS(1796), - [aux_sym_cmd_identifier_token18] = ACTIONS(1796), - [aux_sym_cmd_identifier_token19] = ACTIONS(1796), - [aux_sym_cmd_identifier_token20] = ACTIONS(1796), - [aux_sym_cmd_identifier_token21] = ACTIONS(1796), - [aux_sym_cmd_identifier_token22] = ACTIONS(1796), - [aux_sym_cmd_identifier_token23] = ACTIONS(1796), - [aux_sym_cmd_identifier_token24] = ACTIONS(1796), - [aux_sym_cmd_identifier_token25] = ACTIONS(1796), - [aux_sym_cmd_identifier_token26] = ACTIONS(1796), - [aux_sym_cmd_identifier_token27] = ACTIONS(1796), - [aux_sym_cmd_identifier_token28] = ACTIONS(1796), - [aux_sym_cmd_identifier_token29] = ACTIONS(1796), - [aux_sym_cmd_identifier_token30] = ACTIONS(1796), - [aux_sym_cmd_identifier_token31] = ACTIONS(1796), - [aux_sym_cmd_identifier_token32] = ACTIONS(1796), - [aux_sym_cmd_identifier_token33] = ACTIONS(1796), - [aux_sym_cmd_identifier_token34] = ACTIONS(1796), - [aux_sym_cmd_identifier_token35] = ACTIONS(1796), - [aux_sym_cmd_identifier_token36] = ACTIONS(1796), - [anon_sym_true] = ACTIONS(1798), - [anon_sym_false] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1798), - [aux_sym_cmd_identifier_token38] = ACTIONS(1796), - [aux_sym_cmd_identifier_token39] = ACTIONS(1798), - [aux_sym_cmd_identifier_token40] = ACTIONS(1798), - [anon_sym_def] = ACTIONS(1796), - [anon_sym_export_DASHenv] = ACTIONS(1796), - [anon_sym_extern] = ACTIONS(1796), - [anon_sym_module] = ACTIONS(1796), - [anon_sym_use] = ACTIONS(1796), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_DOLLAR] = ACTIONS(1798), - [anon_sym_error] = ACTIONS(1796), - [anon_sym_list] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_for] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_loop] = ACTIONS(1796), - [anon_sym_make] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_do] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_match] = ACTIONS(1796), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_catch] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_source] = ACTIONS(1796), - [anon_sym_source_DASHenv] = ACTIONS(1796), - [anon_sym_register] = ACTIONS(1796), - [anon_sym_hide] = ACTIONS(1796), - [anon_sym_hide_DASHenv] = ACTIONS(1796), - [anon_sym_overlay] = ACTIONS(1796), - [anon_sym_new] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1798), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1798), - [aux_sym__val_number_decimal_token1] = ACTIONS(1796), - [aux_sym__val_number_decimal_token2] = ACTIONS(1798), - [aux_sym__val_number_decimal_token3] = ACTIONS(1798), - [aux_sym__val_number_decimal_token4] = ACTIONS(1798), - [aux_sym__val_number_token1] = ACTIONS(1798), - [aux_sym__val_number_token2] = ACTIONS(1798), - [aux_sym__val_number_token3] = ACTIONS(1798), - [anon_sym_DQUOTE] = ACTIONS(1798), - [sym__str_single_quotes] = ACTIONS(1798), - [sym__str_back_ticks] = ACTIONS(1798), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), + [659] = { + [sym_comment] = STATE(659), + [anon_sym_export] = ACTIONS(2372), + [anon_sym_alias] = ACTIONS(2372), + [anon_sym_let] = ACTIONS(2372), + [anon_sym_let_DASHenv] = ACTIONS(2372), + [anon_sym_mut] = ACTIONS(2372), + [anon_sym_const] = ACTIONS(2372), + [aux_sym_cmd_identifier_token1] = ACTIONS(2372), + [aux_sym_cmd_identifier_token2] = ACTIONS(2372), + [aux_sym_cmd_identifier_token3] = ACTIONS(2372), + [aux_sym_cmd_identifier_token4] = ACTIONS(2372), + [aux_sym_cmd_identifier_token5] = ACTIONS(2372), + [aux_sym_cmd_identifier_token6] = ACTIONS(2372), + [aux_sym_cmd_identifier_token7] = ACTIONS(2372), + [aux_sym_cmd_identifier_token8] = ACTIONS(2372), + [aux_sym_cmd_identifier_token9] = ACTIONS(2372), + [aux_sym_cmd_identifier_token10] = ACTIONS(2372), + [aux_sym_cmd_identifier_token11] = ACTIONS(2372), + [aux_sym_cmd_identifier_token12] = ACTIONS(2372), + [aux_sym_cmd_identifier_token13] = ACTIONS(2372), + [aux_sym_cmd_identifier_token14] = ACTIONS(2372), + [aux_sym_cmd_identifier_token15] = ACTIONS(2372), + [aux_sym_cmd_identifier_token16] = ACTIONS(2372), + [aux_sym_cmd_identifier_token17] = ACTIONS(2372), + [aux_sym_cmd_identifier_token18] = ACTIONS(2372), + [aux_sym_cmd_identifier_token19] = ACTIONS(2372), + [aux_sym_cmd_identifier_token20] = ACTIONS(2372), + [aux_sym_cmd_identifier_token21] = ACTIONS(2372), + [aux_sym_cmd_identifier_token22] = ACTIONS(2372), + [aux_sym_cmd_identifier_token23] = ACTIONS(2372), + [aux_sym_cmd_identifier_token24] = ACTIONS(2372), + [aux_sym_cmd_identifier_token25] = ACTIONS(2372), + [aux_sym_cmd_identifier_token26] = ACTIONS(2372), + [aux_sym_cmd_identifier_token27] = ACTIONS(2372), + [aux_sym_cmd_identifier_token28] = ACTIONS(2372), + [aux_sym_cmd_identifier_token29] = ACTIONS(2372), + [aux_sym_cmd_identifier_token30] = ACTIONS(2372), + [aux_sym_cmd_identifier_token31] = ACTIONS(2372), + [aux_sym_cmd_identifier_token32] = ACTIONS(2372), + [aux_sym_cmd_identifier_token33] = ACTIONS(2372), + [aux_sym_cmd_identifier_token34] = ACTIONS(2372), + [aux_sym_cmd_identifier_token35] = ACTIONS(2372), + [aux_sym_cmd_identifier_token36] = ACTIONS(2372), + [anon_sym_true] = ACTIONS(2374), + [anon_sym_false] = ACTIONS(2374), + [anon_sym_null] = ACTIONS(2374), + [aux_sym_cmd_identifier_token38] = ACTIONS(2372), + [aux_sym_cmd_identifier_token39] = ACTIONS(2374), + [aux_sym_cmd_identifier_token40] = ACTIONS(2374), + [anon_sym_def] = ACTIONS(2372), + [anon_sym_export_DASHenv] = ACTIONS(2372), + [anon_sym_extern] = ACTIONS(2372), + [anon_sym_module] = ACTIONS(2372), + [anon_sym_use] = ACTIONS(2372), + [anon_sym_LPAREN] = ACTIONS(2374), + [anon_sym_DOLLAR] = ACTIONS(2374), + [anon_sym_error] = ACTIONS(2372), + [anon_sym_list] = ACTIONS(2372), + [anon_sym_DASH] = ACTIONS(2372), + [anon_sym_break] = ACTIONS(2372), + [anon_sym_continue] = ACTIONS(2372), + [anon_sym_for] = ACTIONS(2372), + [anon_sym_in] = ACTIONS(2372), + [anon_sym_loop] = ACTIONS(2372), + [anon_sym_make] = ACTIONS(2372), + [anon_sym_while] = ACTIONS(2372), + [anon_sym_do] = ACTIONS(2372), + [anon_sym_if] = ACTIONS(2372), + [anon_sym_else] = ACTIONS(2372), + [anon_sym_match] = ACTIONS(2372), + [anon_sym_RBRACE] = ACTIONS(2374), + [anon_sym_try] = ACTIONS(2372), + [anon_sym_catch] = ACTIONS(2372), + [anon_sym_return] = ACTIONS(2372), + [anon_sym_source] = ACTIONS(2372), + [anon_sym_source_DASHenv] = ACTIONS(2372), + [anon_sym_register] = ACTIONS(2372), + [anon_sym_hide] = ACTIONS(2372), + [anon_sym_hide_DASHenv] = ACTIONS(2372), + [anon_sym_overlay] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2372), + [anon_sym_as] = ACTIONS(2372), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2374), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2374), + [aux_sym__val_number_decimal_token1] = ACTIONS(2372), + [aux_sym__val_number_decimal_token2] = ACTIONS(2374), + [aux_sym__val_number_decimal_token3] = ACTIONS(2374), + [aux_sym__val_number_decimal_token4] = ACTIONS(2374), + [aux_sym__val_number_token1] = ACTIONS(2374), + [aux_sym__val_number_token2] = ACTIONS(2374), + [aux_sym__val_number_token3] = ACTIONS(2374), + [anon_sym_DQUOTE] = ACTIONS(2374), + [sym__str_single_quotes] = ACTIONS(2374), + [sym__str_back_ticks] = ACTIONS(2374), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2374), + [anon_sym_PLUS] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(247), }, - [640] = { - [sym_comment] = STATE(640), - [anon_sym_export] = ACTIONS(2241), - [anon_sym_alias] = ACTIONS(2241), - [anon_sym_let] = ACTIONS(2241), - [anon_sym_let_DASHenv] = ACTIONS(2241), - [anon_sym_mut] = ACTIONS(2241), - [anon_sym_const] = ACTIONS(2241), - [aux_sym_cmd_identifier_token1] = ACTIONS(2241), - [aux_sym_cmd_identifier_token2] = ACTIONS(2241), - [aux_sym_cmd_identifier_token3] = ACTIONS(2241), - [aux_sym_cmd_identifier_token4] = ACTIONS(2241), - [aux_sym_cmd_identifier_token5] = ACTIONS(2241), - [aux_sym_cmd_identifier_token6] = ACTIONS(2241), - [aux_sym_cmd_identifier_token7] = ACTIONS(2241), - [aux_sym_cmd_identifier_token8] = ACTIONS(2241), - [aux_sym_cmd_identifier_token9] = ACTIONS(2241), - [aux_sym_cmd_identifier_token10] = ACTIONS(2241), - [aux_sym_cmd_identifier_token11] = ACTIONS(2241), - [aux_sym_cmd_identifier_token12] = ACTIONS(2241), - [aux_sym_cmd_identifier_token13] = ACTIONS(2241), - [aux_sym_cmd_identifier_token14] = ACTIONS(2241), - [aux_sym_cmd_identifier_token15] = ACTIONS(2241), - [aux_sym_cmd_identifier_token16] = ACTIONS(2241), - [aux_sym_cmd_identifier_token17] = ACTIONS(2241), - [aux_sym_cmd_identifier_token18] = ACTIONS(2241), - [aux_sym_cmd_identifier_token19] = ACTIONS(2241), - [aux_sym_cmd_identifier_token20] = ACTIONS(2241), - [aux_sym_cmd_identifier_token21] = ACTIONS(2241), - [aux_sym_cmd_identifier_token22] = ACTIONS(2241), - [aux_sym_cmd_identifier_token23] = ACTIONS(2241), - [aux_sym_cmd_identifier_token24] = ACTIONS(2241), - [aux_sym_cmd_identifier_token25] = ACTIONS(2241), - [aux_sym_cmd_identifier_token26] = ACTIONS(2241), - [aux_sym_cmd_identifier_token27] = ACTIONS(2241), - [aux_sym_cmd_identifier_token28] = ACTIONS(2241), - [aux_sym_cmd_identifier_token29] = ACTIONS(2241), - [aux_sym_cmd_identifier_token30] = ACTIONS(2241), - [aux_sym_cmd_identifier_token31] = ACTIONS(2241), - [aux_sym_cmd_identifier_token32] = ACTIONS(2241), - [aux_sym_cmd_identifier_token33] = ACTIONS(2241), - [aux_sym_cmd_identifier_token34] = ACTIONS(2241), - [aux_sym_cmd_identifier_token35] = ACTIONS(2241), - [aux_sym_cmd_identifier_token36] = ACTIONS(2241), - [anon_sym_true] = ACTIONS(2243), - [anon_sym_false] = ACTIONS(2243), - [anon_sym_null] = ACTIONS(2243), - [aux_sym_cmd_identifier_token38] = ACTIONS(2241), - [aux_sym_cmd_identifier_token39] = ACTIONS(2243), - [aux_sym_cmd_identifier_token40] = ACTIONS(2243), - [anon_sym_def] = ACTIONS(2241), - [anon_sym_export_DASHenv] = ACTIONS(2241), - [anon_sym_extern] = ACTIONS(2241), - [anon_sym_module] = ACTIONS(2241), - [anon_sym_use] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_DOLLAR] = ACTIONS(2243), - [anon_sym_error] = ACTIONS(2241), - [anon_sym_list] = ACTIONS(2241), - [anon_sym_DASH] = ACTIONS(2241), - [anon_sym_break] = ACTIONS(2241), - [anon_sym_continue] = ACTIONS(2241), - [anon_sym_for] = ACTIONS(2241), - [anon_sym_in] = ACTIONS(2241), - [anon_sym_loop] = ACTIONS(2241), - [anon_sym_make] = ACTIONS(2241), - [anon_sym_while] = ACTIONS(2241), - [anon_sym_do] = ACTIONS(2241), - [anon_sym_if] = ACTIONS(2241), - [anon_sym_else] = ACTIONS(2241), - [anon_sym_match] = ACTIONS(2241), - [anon_sym_RBRACE] = ACTIONS(2243), - [anon_sym_try] = ACTIONS(2241), - [anon_sym_catch] = ACTIONS(2241), - [anon_sym_return] = ACTIONS(2241), - [anon_sym_source] = ACTIONS(2241), - [anon_sym_source_DASHenv] = ACTIONS(2241), - [anon_sym_register] = ACTIONS(2241), - [anon_sym_hide] = ACTIONS(2241), - [anon_sym_hide_DASHenv] = ACTIONS(2241), - [anon_sym_overlay] = ACTIONS(2241), - [anon_sym_new] = ACTIONS(2241), - [anon_sym_as] = ACTIONS(2241), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2243), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2243), - [aux_sym__val_number_decimal_token1] = ACTIONS(2241), - [aux_sym__val_number_decimal_token2] = ACTIONS(2243), - [aux_sym__val_number_decimal_token3] = ACTIONS(2243), - [aux_sym__val_number_decimal_token4] = ACTIONS(2243), - [aux_sym__val_number_token1] = ACTIONS(2243), - [aux_sym__val_number_token2] = ACTIONS(2243), - [aux_sym__val_number_token3] = ACTIONS(2243), - [anon_sym_DQUOTE] = ACTIONS(2243), - [sym__str_single_quotes] = ACTIONS(2243), - [sym__str_back_ticks] = ACTIONS(2243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2243), - [anon_sym_PLUS] = ACTIONS(2241), + [660] = { + [sym_comment] = STATE(660), + [anon_sym_export] = ACTIONS(2376), + [anon_sym_alias] = ACTIONS(2376), + [anon_sym_let] = ACTIONS(2376), + [anon_sym_let_DASHenv] = ACTIONS(2376), + [anon_sym_mut] = ACTIONS(2376), + [anon_sym_const] = ACTIONS(2376), + [aux_sym_cmd_identifier_token1] = ACTIONS(2376), + [aux_sym_cmd_identifier_token2] = ACTIONS(2376), + [aux_sym_cmd_identifier_token3] = ACTIONS(2376), + [aux_sym_cmd_identifier_token4] = ACTIONS(2376), + [aux_sym_cmd_identifier_token5] = ACTIONS(2376), + [aux_sym_cmd_identifier_token6] = ACTIONS(2376), + [aux_sym_cmd_identifier_token7] = ACTIONS(2376), + [aux_sym_cmd_identifier_token8] = ACTIONS(2376), + [aux_sym_cmd_identifier_token9] = ACTIONS(2376), + [aux_sym_cmd_identifier_token10] = ACTIONS(2376), + [aux_sym_cmd_identifier_token11] = ACTIONS(2376), + [aux_sym_cmd_identifier_token12] = ACTIONS(2376), + [aux_sym_cmd_identifier_token13] = ACTIONS(2376), + [aux_sym_cmd_identifier_token14] = ACTIONS(2376), + [aux_sym_cmd_identifier_token15] = ACTIONS(2376), + [aux_sym_cmd_identifier_token16] = ACTIONS(2376), + [aux_sym_cmd_identifier_token17] = ACTIONS(2376), + [aux_sym_cmd_identifier_token18] = ACTIONS(2376), + [aux_sym_cmd_identifier_token19] = ACTIONS(2376), + [aux_sym_cmd_identifier_token20] = ACTIONS(2376), + [aux_sym_cmd_identifier_token21] = ACTIONS(2376), + [aux_sym_cmd_identifier_token22] = ACTIONS(2376), + [aux_sym_cmd_identifier_token23] = ACTIONS(2376), + [aux_sym_cmd_identifier_token24] = ACTIONS(2376), + [aux_sym_cmd_identifier_token25] = ACTIONS(2376), + [aux_sym_cmd_identifier_token26] = ACTIONS(2376), + [aux_sym_cmd_identifier_token27] = ACTIONS(2376), + [aux_sym_cmd_identifier_token28] = ACTIONS(2376), + [aux_sym_cmd_identifier_token29] = ACTIONS(2376), + [aux_sym_cmd_identifier_token30] = ACTIONS(2376), + [aux_sym_cmd_identifier_token31] = ACTIONS(2376), + [aux_sym_cmd_identifier_token32] = ACTIONS(2376), + [aux_sym_cmd_identifier_token33] = ACTIONS(2376), + [aux_sym_cmd_identifier_token34] = ACTIONS(2376), + [aux_sym_cmd_identifier_token35] = ACTIONS(2376), + [aux_sym_cmd_identifier_token36] = ACTIONS(2376), + [anon_sym_true] = ACTIONS(2378), + [anon_sym_false] = ACTIONS(2378), + [anon_sym_null] = ACTIONS(2378), + [aux_sym_cmd_identifier_token38] = ACTIONS(2376), + [aux_sym_cmd_identifier_token39] = ACTIONS(2378), + [aux_sym_cmd_identifier_token40] = ACTIONS(2378), + [anon_sym_def] = ACTIONS(2376), + [anon_sym_export_DASHenv] = ACTIONS(2376), + [anon_sym_extern] = ACTIONS(2376), + [anon_sym_module] = ACTIONS(2376), + [anon_sym_use] = ACTIONS(2376), + [anon_sym_LPAREN] = ACTIONS(2378), + [anon_sym_DOLLAR] = ACTIONS(2378), + [anon_sym_error] = ACTIONS(2376), + [anon_sym_list] = ACTIONS(2376), + [anon_sym_DASH] = ACTIONS(2376), + [anon_sym_break] = ACTIONS(2376), + [anon_sym_continue] = ACTIONS(2376), + [anon_sym_for] = ACTIONS(2376), + [anon_sym_in] = ACTIONS(2376), + [anon_sym_loop] = ACTIONS(2376), + [anon_sym_make] = ACTIONS(2376), + [anon_sym_while] = ACTIONS(2376), + [anon_sym_do] = ACTIONS(2376), + [anon_sym_if] = ACTIONS(2376), + [anon_sym_else] = ACTIONS(2376), + [anon_sym_match] = ACTIONS(2376), + [anon_sym_RBRACE] = ACTIONS(2378), + [anon_sym_try] = ACTIONS(2376), + [anon_sym_catch] = ACTIONS(2376), + [anon_sym_return] = ACTIONS(2376), + [anon_sym_source] = ACTIONS(2376), + [anon_sym_source_DASHenv] = ACTIONS(2376), + [anon_sym_register] = ACTIONS(2376), + [anon_sym_hide] = ACTIONS(2376), + [anon_sym_hide_DASHenv] = ACTIONS(2376), + [anon_sym_overlay] = ACTIONS(2376), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_as] = ACTIONS(2376), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2378), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2378), + [aux_sym__val_number_decimal_token1] = ACTIONS(2376), + [aux_sym__val_number_decimal_token2] = ACTIONS(2378), + [aux_sym__val_number_decimal_token3] = ACTIONS(2378), + [aux_sym__val_number_decimal_token4] = ACTIONS(2378), + [aux_sym__val_number_token1] = ACTIONS(2378), + [aux_sym__val_number_token2] = ACTIONS(2378), + [aux_sym__val_number_token3] = ACTIONS(2378), + [anon_sym_DQUOTE] = ACTIONS(2378), + [sym__str_single_quotes] = ACTIONS(2378), + [sym__str_back_ticks] = ACTIONS(2378), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2378), + [anon_sym_PLUS] = ACTIONS(2376), [anon_sym_POUND] = ACTIONS(247), }, - [641] = { - [sym_comment] = STATE(641), - [anon_sym_export] = ACTIONS(1589), - [anon_sym_alias] = ACTIONS(1589), - [anon_sym_let] = ACTIONS(1589), - [anon_sym_let_DASHenv] = ACTIONS(1589), - [anon_sym_mut] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [aux_sym_cmd_identifier_token1] = ACTIONS(1589), - [aux_sym_cmd_identifier_token2] = ACTIONS(1589), - [aux_sym_cmd_identifier_token3] = ACTIONS(1589), - [aux_sym_cmd_identifier_token4] = ACTIONS(1589), - [aux_sym_cmd_identifier_token5] = ACTIONS(1589), - [aux_sym_cmd_identifier_token6] = ACTIONS(1589), - [aux_sym_cmd_identifier_token7] = ACTIONS(1589), - [aux_sym_cmd_identifier_token8] = ACTIONS(1589), - [aux_sym_cmd_identifier_token9] = ACTIONS(1589), - [aux_sym_cmd_identifier_token10] = ACTIONS(1589), - [aux_sym_cmd_identifier_token11] = ACTIONS(1589), - [aux_sym_cmd_identifier_token12] = ACTIONS(1589), - [aux_sym_cmd_identifier_token13] = ACTIONS(1589), - [aux_sym_cmd_identifier_token14] = ACTIONS(1589), - [aux_sym_cmd_identifier_token15] = ACTIONS(1589), - [aux_sym_cmd_identifier_token16] = ACTIONS(1589), - [aux_sym_cmd_identifier_token17] = ACTIONS(1589), - [aux_sym_cmd_identifier_token18] = ACTIONS(1589), - [aux_sym_cmd_identifier_token19] = ACTIONS(1589), - [aux_sym_cmd_identifier_token20] = ACTIONS(1589), - [aux_sym_cmd_identifier_token21] = ACTIONS(1589), - [aux_sym_cmd_identifier_token22] = ACTIONS(1589), - [aux_sym_cmd_identifier_token23] = ACTIONS(1589), - [aux_sym_cmd_identifier_token24] = ACTIONS(1589), - [aux_sym_cmd_identifier_token25] = ACTIONS(1589), - [aux_sym_cmd_identifier_token26] = ACTIONS(1589), - [aux_sym_cmd_identifier_token27] = ACTIONS(1589), - [aux_sym_cmd_identifier_token28] = ACTIONS(1589), - [aux_sym_cmd_identifier_token29] = ACTIONS(1589), - [aux_sym_cmd_identifier_token30] = ACTIONS(1589), - [aux_sym_cmd_identifier_token31] = ACTIONS(1589), - [aux_sym_cmd_identifier_token32] = ACTIONS(1589), - [aux_sym_cmd_identifier_token33] = ACTIONS(1589), - [aux_sym_cmd_identifier_token34] = ACTIONS(1589), - [aux_sym_cmd_identifier_token35] = ACTIONS(1589), - [aux_sym_cmd_identifier_token36] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [anon_sym_null] = ACTIONS(1591), - [aux_sym_cmd_identifier_token38] = ACTIONS(1589), - [aux_sym_cmd_identifier_token39] = ACTIONS(1591), - [aux_sym_cmd_identifier_token40] = ACTIONS(1591), - [anon_sym_def] = ACTIONS(1589), - [anon_sym_export_DASHenv] = ACTIONS(1589), - [anon_sym_extern] = ACTIONS(1589), - [anon_sym_module] = ACTIONS(1589), - [anon_sym_use] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1591), - [anon_sym_DOLLAR] = ACTIONS(1591), - [anon_sym_error] = ACTIONS(1589), - [anon_sym_list] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_loop] = ACTIONS(1589), - [anon_sym_make] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_else] = ACTIONS(1589), - [anon_sym_match] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_try] = ACTIONS(1589), - [anon_sym_catch] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_source] = ACTIONS(1589), - [anon_sym_source_DASHenv] = ACTIONS(1589), - [anon_sym_register] = ACTIONS(1589), - [anon_sym_hide] = ACTIONS(1589), - [anon_sym_hide_DASHenv] = ACTIONS(1589), - [anon_sym_overlay] = ACTIONS(1589), - [anon_sym_new] = ACTIONS(1589), - [anon_sym_as] = ACTIONS(1589), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1591), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1591), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token3] = ACTIONS(1591), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(1591), - [aux_sym__val_number_token2] = ACTIONS(1591), - [aux_sym__val_number_token3] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym__str_single_quotes] = ACTIONS(1591), - [sym__str_back_ticks] = ACTIONS(1591), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1591), - [anon_sym_PLUS] = ACTIONS(1589), + [661] = { + [sym_comment] = STATE(661), + [anon_sym_export] = ACTIONS(2321), + [anon_sym_alias] = ACTIONS(2321), + [anon_sym_let] = ACTIONS(2321), + [anon_sym_let_DASHenv] = ACTIONS(2321), + [anon_sym_mut] = ACTIONS(2321), + [anon_sym_const] = ACTIONS(2321), + [aux_sym_cmd_identifier_token1] = ACTIONS(2321), + [aux_sym_cmd_identifier_token2] = ACTIONS(2321), + [aux_sym_cmd_identifier_token3] = ACTIONS(2321), + [aux_sym_cmd_identifier_token4] = ACTIONS(2321), + [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [aux_sym_cmd_identifier_token6] = ACTIONS(2321), + [aux_sym_cmd_identifier_token7] = ACTIONS(2321), + [aux_sym_cmd_identifier_token8] = ACTIONS(2321), + [aux_sym_cmd_identifier_token9] = ACTIONS(2321), + [aux_sym_cmd_identifier_token10] = ACTIONS(2321), + [aux_sym_cmd_identifier_token11] = ACTIONS(2321), + [aux_sym_cmd_identifier_token12] = ACTIONS(2321), + [aux_sym_cmd_identifier_token13] = ACTIONS(2321), + [aux_sym_cmd_identifier_token14] = ACTIONS(2321), + [aux_sym_cmd_identifier_token15] = ACTIONS(2321), + [aux_sym_cmd_identifier_token16] = ACTIONS(2321), + [aux_sym_cmd_identifier_token17] = ACTIONS(2321), + [aux_sym_cmd_identifier_token18] = ACTIONS(2321), + [aux_sym_cmd_identifier_token19] = ACTIONS(2321), + [aux_sym_cmd_identifier_token20] = ACTIONS(2321), + [aux_sym_cmd_identifier_token21] = ACTIONS(2321), + [aux_sym_cmd_identifier_token22] = ACTIONS(2321), + [aux_sym_cmd_identifier_token23] = ACTIONS(2321), + [aux_sym_cmd_identifier_token24] = ACTIONS(2321), + [aux_sym_cmd_identifier_token25] = ACTIONS(2321), + [aux_sym_cmd_identifier_token26] = ACTIONS(2321), + [aux_sym_cmd_identifier_token27] = ACTIONS(2321), + [aux_sym_cmd_identifier_token28] = ACTIONS(2321), + [aux_sym_cmd_identifier_token29] = ACTIONS(2321), + [aux_sym_cmd_identifier_token30] = ACTIONS(2321), + [aux_sym_cmd_identifier_token31] = ACTIONS(2321), + [aux_sym_cmd_identifier_token32] = ACTIONS(2321), + [aux_sym_cmd_identifier_token33] = ACTIONS(2321), + [aux_sym_cmd_identifier_token34] = ACTIONS(2321), + [aux_sym_cmd_identifier_token35] = ACTIONS(2321), + [aux_sym_cmd_identifier_token36] = ACTIONS(2321), + [anon_sym_true] = ACTIONS(2323), + [anon_sym_false] = ACTIONS(2323), + [anon_sym_null] = ACTIONS(2323), + [aux_sym_cmd_identifier_token38] = ACTIONS(2321), + [aux_sym_cmd_identifier_token39] = ACTIONS(2323), + [aux_sym_cmd_identifier_token40] = ACTIONS(2323), + [anon_sym_def] = ACTIONS(2321), + [anon_sym_export_DASHenv] = ACTIONS(2321), + [anon_sym_extern] = ACTIONS(2321), + [anon_sym_module] = ACTIONS(2321), + [anon_sym_use] = ACTIONS(2321), + [anon_sym_LPAREN] = ACTIONS(2323), + [anon_sym_DOLLAR] = ACTIONS(2323), + [anon_sym_error] = ACTIONS(2321), + [anon_sym_list] = ACTIONS(2321), + [anon_sym_DASH] = ACTIONS(2321), + [anon_sym_break] = ACTIONS(2321), + [anon_sym_continue] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2321), + [anon_sym_in] = ACTIONS(2321), + [anon_sym_loop] = ACTIONS(2321), + [anon_sym_make] = ACTIONS(2321), + [anon_sym_while] = ACTIONS(2321), + [anon_sym_do] = ACTIONS(2321), + [anon_sym_if] = ACTIONS(2321), + [anon_sym_else] = ACTIONS(2321), + [anon_sym_match] = ACTIONS(2321), + [anon_sym_RBRACE] = ACTIONS(2323), + [anon_sym_try] = ACTIONS(2321), + [anon_sym_catch] = ACTIONS(2321), + [anon_sym_return] = ACTIONS(2321), + [anon_sym_source] = ACTIONS(2321), + [anon_sym_source_DASHenv] = ACTIONS(2321), + [anon_sym_register] = ACTIONS(2321), + [anon_sym_hide] = ACTIONS(2321), + [anon_sym_hide_DASHenv] = ACTIONS(2321), + [anon_sym_overlay] = ACTIONS(2321), + [anon_sym_new] = ACTIONS(2321), + [anon_sym_as] = ACTIONS(2321), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2323), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2323), + [aux_sym__val_number_decimal_token1] = ACTIONS(2321), + [aux_sym__val_number_decimal_token2] = ACTIONS(2323), + [aux_sym__val_number_decimal_token3] = ACTIONS(2323), + [aux_sym__val_number_decimal_token4] = ACTIONS(2323), + [aux_sym__val_number_token1] = ACTIONS(2323), + [aux_sym__val_number_token2] = ACTIONS(2323), + [aux_sym__val_number_token3] = ACTIONS(2323), + [anon_sym_DQUOTE] = ACTIONS(2323), + [sym__str_single_quotes] = ACTIONS(2323), + [sym__str_back_ticks] = ACTIONS(2323), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2323), + [anon_sym_PLUS] = ACTIONS(2321), [anon_sym_POUND] = ACTIONS(247), }, - [642] = { - [sym_comment] = STATE(642), - [anon_sym_export] = ACTIONS(2303), - [anon_sym_alias] = ACTIONS(2303), - [anon_sym_let] = ACTIONS(2303), - [anon_sym_let_DASHenv] = ACTIONS(2303), - [anon_sym_mut] = ACTIONS(2303), - [anon_sym_const] = ACTIONS(2303), - [aux_sym_cmd_identifier_token1] = ACTIONS(2303), - [aux_sym_cmd_identifier_token2] = ACTIONS(2303), - [aux_sym_cmd_identifier_token3] = ACTIONS(2303), - [aux_sym_cmd_identifier_token4] = ACTIONS(2303), - [aux_sym_cmd_identifier_token5] = ACTIONS(2303), - [aux_sym_cmd_identifier_token6] = ACTIONS(2303), - [aux_sym_cmd_identifier_token7] = ACTIONS(2303), - [aux_sym_cmd_identifier_token8] = ACTIONS(2303), - [aux_sym_cmd_identifier_token9] = ACTIONS(2303), - [aux_sym_cmd_identifier_token10] = ACTIONS(2303), - [aux_sym_cmd_identifier_token11] = ACTIONS(2303), - [aux_sym_cmd_identifier_token12] = ACTIONS(2303), - [aux_sym_cmd_identifier_token13] = ACTIONS(2303), - [aux_sym_cmd_identifier_token14] = ACTIONS(2303), - [aux_sym_cmd_identifier_token15] = ACTIONS(2303), - [aux_sym_cmd_identifier_token16] = ACTIONS(2303), - [aux_sym_cmd_identifier_token17] = ACTIONS(2303), - [aux_sym_cmd_identifier_token18] = ACTIONS(2303), - [aux_sym_cmd_identifier_token19] = ACTIONS(2303), - [aux_sym_cmd_identifier_token20] = ACTIONS(2303), - [aux_sym_cmd_identifier_token21] = ACTIONS(2303), - [aux_sym_cmd_identifier_token22] = ACTIONS(2303), - [aux_sym_cmd_identifier_token23] = ACTIONS(2303), - [aux_sym_cmd_identifier_token24] = ACTIONS(2303), - [aux_sym_cmd_identifier_token25] = ACTIONS(2303), - [aux_sym_cmd_identifier_token26] = ACTIONS(2303), - [aux_sym_cmd_identifier_token27] = ACTIONS(2303), - [aux_sym_cmd_identifier_token28] = ACTIONS(2303), - [aux_sym_cmd_identifier_token29] = ACTIONS(2303), - [aux_sym_cmd_identifier_token30] = ACTIONS(2303), - [aux_sym_cmd_identifier_token31] = ACTIONS(2303), - [aux_sym_cmd_identifier_token32] = ACTIONS(2303), - [aux_sym_cmd_identifier_token33] = ACTIONS(2303), - [aux_sym_cmd_identifier_token34] = ACTIONS(2303), - [aux_sym_cmd_identifier_token35] = ACTIONS(2303), - [aux_sym_cmd_identifier_token36] = ACTIONS(2303), - [anon_sym_true] = ACTIONS(2305), - [anon_sym_false] = ACTIONS(2305), - [anon_sym_null] = ACTIONS(2305), - [aux_sym_cmd_identifier_token38] = ACTIONS(2303), - [aux_sym_cmd_identifier_token39] = ACTIONS(2305), - [aux_sym_cmd_identifier_token40] = ACTIONS(2305), - [anon_sym_def] = ACTIONS(2303), - [anon_sym_export_DASHenv] = ACTIONS(2303), - [anon_sym_extern] = ACTIONS(2303), - [anon_sym_module] = ACTIONS(2303), - [anon_sym_use] = ACTIONS(2303), - [anon_sym_LPAREN] = ACTIONS(2305), - [anon_sym_DOLLAR] = ACTIONS(2305), - [anon_sym_error] = ACTIONS(2303), - [anon_sym_list] = ACTIONS(2303), - [anon_sym_DASH] = ACTIONS(2303), - [anon_sym_break] = ACTIONS(2303), - [anon_sym_continue] = ACTIONS(2303), - [anon_sym_for] = ACTIONS(2303), - [anon_sym_in] = ACTIONS(2303), - [anon_sym_loop] = ACTIONS(2303), - [anon_sym_make] = ACTIONS(2303), - [anon_sym_while] = ACTIONS(2303), - [anon_sym_do] = ACTIONS(2303), - [anon_sym_if] = ACTIONS(2303), - [anon_sym_else] = ACTIONS(2303), - [anon_sym_match] = ACTIONS(2303), - [anon_sym_RBRACE] = ACTIONS(2305), - [anon_sym_try] = ACTIONS(2303), - [anon_sym_catch] = ACTIONS(2303), - [anon_sym_return] = ACTIONS(2303), - [anon_sym_source] = ACTIONS(2303), - [anon_sym_source_DASHenv] = ACTIONS(2303), - [anon_sym_register] = ACTIONS(2303), - [anon_sym_hide] = ACTIONS(2303), - [anon_sym_hide_DASHenv] = ACTIONS(2303), - [anon_sym_overlay] = ACTIONS(2303), - [anon_sym_new] = ACTIONS(2303), - [anon_sym_as] = ACTIONS(2303), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2305), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2305), - [aux_sym__val_number_decimal_token1] = ACTIONS(2303), - [aux_sym__val_number_decimal_token2] = ACTIONS(2305), - [aux_sym__val_number_decimal_token3] = ACTIONS(2305), - [aux_sym__val_number_decimal_token4] = ACTIONS(2305), - [aux_sym__val_number_token1] = ACTIONS(2305), - [aux_sym__val_number_token2] = ACTIONS(2305), - [aux_sym__val_number_token3] = ACTIONS(2305), - [anon_sym_DQUOTE] = ACTIONS(2305), - [sym__str_single_quotes] = ACTIONS(2305), - [sym__str_back_ticks] = ACTIONS(2305), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2303), + [662] = { + [sym_comment] = STATE(662), + [anon_sym_export] = ACTIONS(2384), + [anon_sym_alias] = ACTIONS(2384), + [anon_sym_let] = ACTIONS(2384), + [anon_sym_let_DASHenv] = ACTIONS(2384), + [anon_sym_mut] = ACTIONS(2384), + [anon_sym_const] = ACTIONS(2384), + [aux_sym_cmd_identifier_token1] = ACTIONS(2384), + [aux_sym_cmd_identifier_token2] = ACTIONS(2384), + [aux_sym_cmd_identifier_token3] = ACTIONS(2384), + [aux_sym_cmd_identifier_token4] = ACTIONS(2384), + [aux_sym_cmd_identifier_token5] = ACTIONS(2384), + [aux_sym_cmd_identifier_token6] = ACTIONS(2384), + [aux_sym_cmd_identifier_token7] = ACTIONS(2384), + [aux_sym_cmd_identifier_token8] = ACTIONS(2384), + [aux_sym_cmd_identifier_token9] = ACTIONS(2384), + [aux_sym_cmd_identifier_token10] = ACTIONS(2384), + [aux_sym_cmd_identifier_token11] = ACTIONS(2384), + [aux_sym_cmd_identifier_token12] = ACTIONS(2384), + [aux_sym_cmd_identifier_token13] = ACTIONS(2384), + [aux_sym_cmd_identifier_token14] = ACTIONS(2384), + [aux_sym_cmd_identifier_token15] = ACTIONS(2384), + [aux_sym_cmd_identifier_token16] = ACTIONS(2384), + [aux_sym_cmd_identifier_token17] = ACTIONS(2384), + [aux_sym_cmd_identifier_token18] = ACTIONS(2384), + [aux_sym_cmd_identifier_token19] = ACTIONS(2384), + [aux_sym_cmd_identifier_token20] = ACTIONS(2384), + [aux_sym_cmd_identifier_token21] = ACTIONS(2384), + [aux_sym_cmd_identifier_token22] = ACTIONS(2384), + [aux_sym_cmd_identifier_token23] = ACTIONS(2384), + [aux_sym_cmd_identifier_token24] = ACTIONS(2384), + [aux_sym_cmd_identifier_token25] = ACTIONS(2384), + [aux_sym_cmd_identifier_token26] = ACTIONS(2384), + [aux_sym_cmd_identifier_token27] = ACTIONS(2384), + [aux_sym_cmd_identifier_token28] = ACTIONS(2384), + [aux_sym_cmd_identifier_token29] = ACTIONS(2384), + [aux_sym_cmd_identifier_token30] = ACTIONS(2384), + [aux_sym_cmd_identifier_token31] = ACTIONS(2384), + [aux_sym_cmd_identifier_token32] = ACTIONS(2384), + [aux_sym_cmd_identifier_token33] = ACTIONS(2384), + [aux_sym_cmd_identifier_token34] = ACTIONS(2384), + [aux_sym_cmd_identifier_token35] = ACTIONS(2384), + [aux_sym_cmd_identifier_token36] = ACTIONS(2384), + [anon_sym_true] = ACTIONS(2386), + [anon_sym_false] = ACTIONS(2386), + [anon_sym_null] = ACTIONS(2386), + [aux_sym_cmd_identifier_token38] = ACTIONS(2384), + [aux_sym_cmd_identifier_token39] = ACTIONS(2386), + [aux_sym_cmd_identifier_token40] = ACTIONS(2386), + [anon_sym_def] = ACTIONS(2384), + [anon_sym_export_DASHenv] = ACTIONS(2384), + [anon_sym_extern] = ACTIONS(2384), + [anon_sym_module] = ACTIONS(2384), + [anon_sym_use] = ACTIONS(2384), + [anon_sym_LPAREN] = ACTIONS(2386), + [anon_sym_DOLLAR] = ACTIONS(2386), + [anon_sym_error] = ACTIONS(2384), + [anon_sym_list] = ACTIONS(2384), + [anon_sym_DASH] = ACTIONS(2384), + [anon_sym_break] = ACTIONS(2384), + [anon_sym_continue] = ACTIONS(2384), + [anon_sym_for] = ACTIONS(2384), + [anon_sym_in] = ACTIONS(2384), + [anon_sym_loop] = ACTIONS(2384), + [anon_sym_make] = ACTIONS(2384), + [anon_sym_while] = ACTIONS(2384), + [anon_sym_do] = ACTIONS(2384), + [anon_sym_if] = ACTIONS(2384), + [anon_sym_else] = ACTIONS(2384), + [anon_sym_match] = ACTIONS(2384), + [anon_sym_RBRACE] = ACTIONS(2386), + [anon_sym_try] = ACTIONS(2384), + [anon_sym_catch] = ACTIONS(2384), + [anon_sym_return] = ACTIONS(2384), + [anon_sym_source] = ACTIONS(2384), + [anon_sym_source_DASHenv] = ACTIONS(2384), + [anon_sym_register] = ACTIONS(2384), + [anon_sym_hide] = ACTIONS(2384), + [anon_sym_hide_DASHenv] = ACTIONS(2384), + [anon_sym_overlay] = ACTIONS(2384), + [anon_sym_new] = ACTIONS(2384), + [anon_sym_as] = ACTIONS(2384), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2386), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2386), + [aux_sym__val_number_decimal_token1] = ACTIONS(2384), + [aux_sym__val_number_decimal_token2] = ACTIONS(2386), + [aux_sym__val_number_decimal_token3] = ACTIONS(2386), + [aux_sym__val_number_decimal_token4] = ACTIONS(2386), + [aux_sym__val_number_token1] = ACTIONS(2386), + [aux_sym__val_number_token2] = ACTIONS(2386), + [aux_sym__val_number_token3] = ACTIONS(2386), + [anon_sym_DQUOTE] = ACTIONS(2386), + [sym__str_single_quotes] = ACTIONS(2386), + [sym__str_back_ticks] = ACTIONS(2386), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2386), + [anon_sym_PLUS] = ACTIONS(2384), [anon_sym_POUND] = ACTIONS(247), }, - [643] = { - [sym_comment] = STATE(643), - [anon_sym_export] = ACTIONS(2359), - [anon_sym_alias] = ACTIONS(2359), - [anon_sym_let] = ACTIONS(2359), - [anon_sym_let_DASHenv] = ACTIONS(2359), - [anon_sym_mut] = ACTIONS(2359), - [anon_sym_const] = ACTIONS(2359), - [aux_sym_cmd_identifier_token1] = ACTIONS(2359), - [aux_sym_cmd_identifier_token2] = ACTIONS(2359), - [aux_sym_cmd_identifier_token3] = ACTIONS(2359), - [aux_sym_cmd_identifier_token4] = ACTIONS(2359), - [aux_sym_cmd_identifier_token5] = ACTIONS(2359), - [aux_sym_cmd_identifier_token6] = ACTIONS(2359), - [aux_sym_cmd_identifier_token7] = ACTIONS(2359), - [aux_sym_cmd_identifier_token8] = ACTIONS(2359), - [aux_sym_cmd_identifier_token9] = ACTIONS(2359), - [aux_sym_cmd_identifier_token10] = ACTIONS(2359), - [aux_sym_cmd_identifier_token11] = ACTIONS(2359), - [aux_sym_cmd_identifier_token12] = ACTIONS(2359), - [aux_sym_cmd_identifier_token13] = ACTIONS(2359), - [aux_sym_cmd_identifier_token14] = ACTIONS(2359), - [aux_sym_cmd_identifier_token15] = ACTIONS(2359), - [aux_sym_cmd_identifier_token16] = ACTIONS(2359), - [aux_sym_cmd_identifier_token17] = ACTIONS(2359), - [aux_sym_cmd_identifier_token18] = ACTIONS(2359), - [aux_sym_cmd_identifier_token19] = ACTIONS(2359), - [aux_sym_cmd_identifier_token20] = ACTIONS(2359), - [aux_sym_cmd_identifier_token21] = ACTIONS(2359), - [aux_sym_cmd_identifier_token22] = ACTIONS(2359), - [aux_sym_cmd_identifier_token23] = ACTIONS(2359), - [aux_sym_cmd_identifier_token24] = ACTIONS(2359), - [aux_sym_cmd_identifier_token25] = ACTIONS(2359), - [aux_sym_cmd_identifier_token26] = ACTIONS(2359), - [aux_sym_cmd_identifier_token27] = ACTIONS(2359), - [aux_sym_cmd_identifier_token28] = ACTIONS(2359), - [aux_sym_cmd_identifier_token29] = ACTIONS(2359), - [aux_sym_cmd_identifier_token30] = ACTIONS(2359), - [aux_sym_cmd_identifier_token31] = ACTIONS(2359), - [aux_sym_cmd_identifier_token32] = ACTIONS(2359), - [aux_sym_cmd_identifier_token33] = ACTIONS(2359), - [aux_sym_cmd_identifier_token34] = ACTIONS(2359), - [aux_sym_cmd_identifier_token35] = ACTIONS(2359), - [aux_sym_cmd_identifier_token36] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(2361), - [anon_sym_false] = ACTIONS(2361), - [anon_sym_null] = ACTIONS(2361), - [aux_sym_cmd_identifier_token38] = ACTIONS(2359), - [aux_sym_cmd_identifier_token39] = ACTIONS(2361), - [aux_sym_cmd_identifier_token40] = ACTIONS(2361), - [anon_sym_def] = ACTIONS(2359), - [anon_sym_export_DASHenv] = ACTIONS(2359), - [anon_sym_extern] = ACTIONS(2359), - [anon_sym_module] = ACTIONS(2359), - [anon_sym_use] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2361), - [anon_sym_DOLLAR] = ACTIONS(2361), - [anon_sym_error] = ACTIONS(2359), - [anon_sym_list] = ACTIONS(2359), - [anon_sym_DASH] = ACTIONS(2359), - [anon_sym_break] = ACTIONS(2359), - [anon_sym_continue] = ACTIONS(2359), - [anon_sym_for] = ACTIONS(2359), - [anon_sym_in] = ACTIONS(2359), - [anon_sym_loop] = ACTIONS(2359), - [anon_sym_make] = ACTIONS(2359), - [anon_sym_while] = ACTIONS(2359), - [anon_sym_do] = ACTIONS(2359), - [anon_sym_if] = ACTIONS(2359), - [anon_sym_else] = ACTIONS(2359), - [anon_sym_match] = ACTIONS(2359), - [anon_sym_RBRACE] = ACTIONS(2361), - [anon_sym_try] = ACTIONS(2359), - [anon_sym_catch] = ACTIONS(2359), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_source] = ACTIONS(2359), - [anon_sym_source_DASHenv] = ACTIONS(2359), - [anon_sym_register] = ACTIONS(2359), - [anon_sym_hide] = ACTIONS(2359), - [anon_sym_hide_DASHenv] = ACTIONS(2359), - [anon_sym_overlay] = ACTIONS(2359), - [anon_sym_new] = ACTIONS(2359), - [anon_sym_as] = ACTIONS(2359), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2361), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2361), - [aux_sym__val_number_decimal_token1] = ACTIONS(2359), - [aux_sym__val_number_decimal_token2] = ACTIONS(2361), - [aux_sym__val_number_decimal_token3] = ACTIONS(2361), - [aux_sym__val_number_decimal_token4] = ACTIONS(2361), - [aux_sym__val_number_token1] = ACTIONS(2361), - [aux_sym__val_number_token2] = ACTIONS(2361), - [aux_sym__val_number_token3] = ACTIONS(2361), - [anon_sym_DQUOTE] = ACTIONS(2361), - [sym__str_single_quotes] = ACTIONS(2361), - [sym__str_back_ticks] = ACTIONS(2361), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2361), - [anon_sym_PLUS] = ACTIONS(2359), + [663] = { + [sym_comment] = STATE(663), + [anon_sym_export] = ACTIONS(1755), + [anon_sym_alias] = ACTIONS(1755), + [anon_sym_let] = ACTIONS(1755), + [anon_sym_let_DASHenv] = ACTIONS(1755), + [anon_sym_mut] = ACTIONS(1755), + [anon_sym_const] = ACTIONS(1755), + [aux_sym_cmd_identifier_token1] = ACTIONS(1755), + [aux_sym_cmd_identifier_token2] = ACTIONS(1755), + [aux_sym_cmd_identifier_token3] = ACTIONS(1755), + [aux_sym_cmd_identifier_token4] = ACTIONS(1755), + [aux_sym_cmd_identifier_token5] = ACTIONS(1755), + [aux_sym_cmd_identifier_token6] = ACTIONS(1755), + [aux_sym_cmd_identifier_token7] = ACTIONS(1755), + [aux_sym_cmd_identifier_token8] = ACTIONS(1755), + [aux_sym_cmd_identifier_token9] = ACTIONS(1755), + [aux_sym_cmd_identifier_token10] = ACTIONS(1755), + [aux_sym_cmd_identifier_token11] = ACTIONS(1755), + [aux_sym_cmd_identifier_token12] = ACTIONS(1755), + [aux_sym_cmd_identifier_token13] = ACTIONS(1755), + [aux_sym_cmd_identifier_token14] = ACTIONS(1755), + [aux_sym_cmd_identifier_token15] = ACTIONS(1755), + [aux_sym_cmd_identifier_token16] = ACTIONS(1755), + [aux_sym_cmd_identifier_token17] = ACTIONS(1755), + [aux_sym_cmd_identifier_token18] = ACTIONS(1755), + [aux_sym_cmd_identifier_token19] = ACTIONS(1755), + [aux_sym_cmd_identifier_token20] = ACTIONS(1755), + [aux_sym_cmd_identifier_token21] = ACTIONS(1755), + [aux_sym_cmd_identifier_token22] = ACTIONS(1755), + [aux_sym_cmd_identifier_token23] = ACTIONS(1755), + [aux_sym_cmd_identifier_token24] = ACTIONS(1755), + [aux_sym_cmd_identifier_token25] = ACTIONS(1755), + [aux_sym_cmd_identifier_token26] = ACTIONS(1755), + [aux_sym_cmd_identifier_token27] = ACTIONS(1755), + [aux_sym_cmd_identifier_token28] = ACTIONS(1755), + [aux_sym_cmd_identifier_token29] = ACTIONS(1755), + [aux_sym_cmd_identifier_token30] = ACTIONS(1755), + [aux_sym_cmd_identifier_token31] = ACTIONS(1755), + [aux_sym_cmd_identifier_token32] = ACTIONS(1755), + [aux_sym_cmd_identifier_token33] = ACTIONS(1755), + [aux_sym_cmd_identifier_token34] = ACTIONS(1755), + [aux_sym_cmd_identifier_token35] = ACTIONS(1755), + [aux_sym_cmd_identifier_token36] = ACTIONS(1755), + [anon_sym_true] = ACTIONS(1757), + [anon_sym_false] = ACTIONS(1757), + [anon_sym_null] = ACTIONS(1757), + [aux_sym_cmd_identifier_token38] = ACTIONS(1755), + [aux_sym_cmd_identifier_token39] = ACTIONS(1757), + [aux_sym_cmd_identifier_token40] = ACTIONS(1757), + [anon_sym_def] = ACTIONS(1755), + [anon_sym_export_DASHenv] = ACTIONS(1755), + [anon_sym_extern] = ACTIONS(1755), + [anon_sym_module] = ACTIONS(1755), + [anon_sym_use] = ACTIONS(1755), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_DOLLAR] = ACTIONS(1757), + [anon_sym_error] = ACTIONS(1755), + [anon_sym_list] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_in] = ACTIONS(1755), + [anon_sym_loop] = ACTIONS(1755), + [anon_sym_make] = ACTIONS(1755), + [anon_sym_while] = ACTIONS(1755), + [anon_sym_do] = ACTIONS(1755), + [anon_sym_if] = ACTIONS(1755), + [anon_sym_else] = ACTIONS(1755), + [anon_sym_match] = ACTIONS(1755), + [anon_sym_RBRACE] = ACTIONS(1757), + [anon_sym_try] = ACTIONS(1755), + [anon_sym_catch] = ACTIONS(1755), + [anon_sym_return] = ACTIONS(1755), + [anon_sym_source] = ACTIONS(1755), + [anon_sym_source_DASHenv] = ACTIONS(1755), + [anon_sym_register] = ACTIONS(1755), + [anon_sym_hide] = ACTIONS(1755), + [anon_sym_hide_DASHenv] = ACTIONS(1755), + [anon_sym_overlay] = ACTIONS(1755), + [anon_sym_new] = ACTIONS(1755), + [anon_sym_as] = ACTIONS(1755), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1757), + [aux_sym__val_number_decimal_token1] = ACTIONS(1755), + [aux_sym__val_number_decimal_token2] = ACTIONS(1757), + [aux_sym__val_number_decimal_token3] = ACTIONS(1757), + [aux_sym__val_number_decimal_token4] = ACTIONS(1757), + [aux_sym__val_number_token1] = ACTIONS(1757), + [aux_sym__val_number_token2] = ACTIONS(1757), + [aux_sym__val_number_token3] = ACTIONS(1757), + [anon_sym_DQUOTE] = ACTIONS(1757), + [sym__str_single_quotes] = ACTIONS(1757), + [sym__str_back_ticks] = ACTIONS(1757), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), + [anon_sym_PLUS] = ACTIONS(1755), [anon_sym_POUND] = ACTIONS(247), }, - [644] = { - [sym_comment] = STATE(644), - [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), - [aux_sym_cmd_identifier_token1] = ACTIONS(1741), - [aux_sym_cmd_identifier_token2] = ACTIONS(1741), - [aux_sym_cmd_identifier_token3] = ACTIONS(1741), - [aux_sym_cmd_identifier_token4] = ACTIONS(1741), - [aux_sym_cmd_identifier_token5] = ACTIONS(1741), - [aux_sym_cmd_identifier_token6] = ACTIONS(1741), - [aux_sym_cmd_identifier_token7] = ACTIONS(1741), - [aux_sym_cmd_identifier_token8] = ACTIONS(1741), - [aux_sym_cmd_identifier_token9] = ACTIONS(1741), - [aux_sym_cmd_identifier_token10] = ACTIONS(1741), - [aux_sym_cmd_identifier_token11] = ACTIONS(1741), - [aux_sym_cmd_identifier_token12] = ACTIONS(1741), - [aux_sym_cmd_identifier_token13] = ACTIONS(1741), - [aux_sym_cmd_identifier_token14] = ACTIONS(1741), - [aux_sym_cmd_identifier_token15] = ACTIONS(1741), - [aux_sym_cmd_identifier_token16] = ACTIONS(1741), - [aux_sym_cmd_identifier_token17] = ACTIONS(1741), - [aux_sym_cmd_identifier_token18] = ACTIONS(1741), - [aux_sym_cmd_identifier_token19] = ACTIONS(1741), - [aux_sym_cmd_identifier_token20] = ACTIONS(1741), - [aux_sym_cmd_identifier_token21] = ACTIONS(1741), - [aux_sym_cmd_identifier_token22] = ACTIONS(1741), - [aux_sym_cmd_identifier_token23] = ACTIONS(1741), - [aux_sym_cmd_identifier_token24] = ACTIONS(1741), - [aux_sym_cmd_identifier_token25] = ACTIONS(1741), - [aux_sym_cmd_identifier_token26] = ACTIONS(1741), - [aux_sym_cmd_identifier_token27] = ACTIONS(1741), - [aux_sym_cmd_identifier_token28] = ACTIONS(1741), - [aux_sym_cmd_identifier_token29] = ACTIONS(1741), - [aux_sym_cmd_identifier_token30] = ACTIONS(1741), - [aux_sym_cmd_identifier_token31] = ACTIONS(1741), - [aux_sym_cmd_identifier_token32] = ACTIONS(1741), - [aux_sym_cmd_identifier_token33] = ACTIONS(1741), - [aux_sym_cmd_identifier_token34] = ACTIONS(1741), - [aux_sym_cmd_identifier_token35] = ACTIONS(1741), - [aux_sym_cmd_identifier_token36] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(1745), - [anon_sym_false] = ACTIONS(1745), - [anon_sym_null] = ACTIONS(1745), - [aux_sym_cmd_identifier_token38] = ACTIONS(1741), - [aux_sym_cmd_identifier_token39] = ACTIONS(1745), - [aux_sym_cmd_identifier_token40] = ACTIONS(1745), - [anon_sym_def] = 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_LPAREN] = ACTIONS(1745), - [anon_sym_DOLLAR] = ACTIONS(1745), - [anon_sym_error] = ACTIONS(1741), - [anon_sym_list] = ACTIONS(1741), - [anon_sym_DASH] = ACTIONS(1741), - [anon_sym_break] = ACTIONS(1741), - [anon_sym_continue] = ACTIONS(1741), - [anon_sym_for] = ACTIONS(1741), - [anon_sym_in] = ACTIONS(1741), - [anon_sym_loop] = ACTIONS(1741), - [anon_sym_make] = ACTIONS(1741), - [anon_sym_while] = ACTIONS(1741), - [anon_sym_do] = ACTIONS(1741), - [anon_sym_if] = ACTIONS(1741), - [anon_sym_else] = ACTIONS(1741), - [anon_sym_match] = ACTIONS(1741), - [anon_sym_RBRACE] = ACTIONS(1745), - [anon_sym_try] = ACTIONS(1741), - [anon_sym_catch] = 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_new] = ACTIONS(1741), - [anon_sym_as] = ACTIONS(1741), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1745), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1745), - [aux_sym__val_number_decimal_token1] = ACTIONS(1741), - [aux_sym__val_number_decimal_token2] = ACTIONS(1745), - [aux_sym__val_number_decimal_token3] = ACTIONS(1745), - [aux_sym__val_number_decimal_token4] = ACTIONS(1745), - [aux_sym__val_number_token1] = ACTIONS(1745), - [aux_sym__val_number_token2] = ACTIONS(1745), - [aux_sym__val_number_token3] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1745), - [sym__str_single_quotes] = ACTIONS(1745), - [sym__str_back_ticks] = ACTIONS(1745), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1745), - [anon_sym_PLUS] = ACTIONS(1741), + [664] = { + [sym_expr_parenthesized] = STATE(1340), + [sym_val_range] = STATE(1611), + [sym__val_range] = STATE(7566), + [sym__val_range_with_end] = STATE(7410), + [sym__value] = STATE(1611), + [sym_val_nothing] = STATE(1755), + [sym_val_bool] = STATE(1405), + [sym_val_variable] = STATE(1306), + [sym_val_number] = STATE(1755), + [sym__val_number_decimal] = STATE(1060), + [sym__val_number] = STATE(1569), + [sym_val_duration] = STATE(1755), + [sym_val_filesize] = STATE(1755), + [sym_val_binary] = STATE(1755), + [sym_val_string] = STATE(1755), + [sym__str_double_quotes] = STATE(1657), + [sym_val_interpolated] = STATE(1755), + [sym__inter_single_quotes] = STATE(1574), + [sym__inter_double_quotes] = STATE(1575), + [sym_val_list] = STATE(1755), + [sym_val_record] = STATE(1755), + [sym_val_table] = STATE(1755), + [sym_val_closure] = STATE(1755), + [sym__flag] = STATE(1611), + [sym_short_flag] = STATE(1719), + [sym_long_flag] = STATE(1719), + [sym_unquoted] = STATE(1444), + [sym__unquoted_with_expr] = STATE(1612), + [sym__unquoted_anonymous_prefix] = STATE(7281), + [sym_comment] = STATE(664), + [aux_sym_ctrl_do_repeat2] = STATE(665), + [anon_sym_true] = ACTIONS(2525), + [anon_sym_false] = ACTIONS(2525), + [anon_sym_null] = ACTIONS(2527), + [aux_sym_cmd_identifier_token38] = ACTIONS(2529), + [aux_sym_cmd_identifier_token39] = ACTIONS(2529), + [aux_sym_cmd_identifier_token40] = ACTIONS(2529), + [sym__newline] = ACTIONS(2531), + [anon_sym_SEMI] = ACTIONS(2531), + [anon_sym_PIPE] = ACTIONS(2531), + [anon_sym_err_GT_PIPE] = ACTIONS(2531), + [anon_sym_out_GT_PIPE] = ACTIONS(2531), + [anon_sym_e_GT_PIPE] = ACTIONS(2531), + [anon_sym_o_GT_PIPE] = ACTIONS(2531), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2531), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2531), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2531), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2531), + [anon_sym_LBRACK] = ACTIONS(2533), + [anon_sym_LPAREN] = ACTIONS(2535), + [anon_sym_RPAREN] = ACTIONS(2531), + [anon_sym_DOLLAR] = ACTIONS(2537), + [anon_sym_DASH_DASH] = ACTIONS(2539), + [anon_sym_DASH] = ACTIONS(2541), + [aux_sym_ctrl_match_token1] = ACTIONS(2543), + [anon_sym_RBRACE] = ACTIONS(2531), + [anon_sym_DOT_DOT] = ACTIONS(2545), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), + [anon_sym_DOT_DOT_LT] = ACTIONS(2547), + [aux_sym__val_number_decimal_token1] = ACTIONS(2549), + [aux_sym__val_number_decimal_token2] = ACTIONS(2551), + [aux_sym__val_number_decimal_token3] = ACTIONS(2553), + [aux_sym__val_number_decimal_token4] = ACTIONS(2555), + [aux_sym__val_number_token1] = ACTIONS(2557), + [aux_sym__val_number_token2] = ACTIONS(2557), + [aux_sym__val_number_token3] = ACTIONS(2557), + [anon_sym_0b] = ACTIONS(2559), + [anon_sym_0o] = ACTIONS(2561), + [anon_sym_0x] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2563), + [anon_sym_DQUOTE] = ACTIONS(2565), + [sym__str_single_quotes] = ACTIONS(2567), + [sym__str_back_ticks] = ACTIONS(2567), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2569), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2571), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(2577), [anon_sym_POUND] = ACTIONS(247), }, - [645] = { - [sym_comment] = STATE(645), - [anon_sym_export] = ACTIONS(2363), - [anon_sym_alias] = ACTIONS(2363), - [anon_sym_let] = ACTIONS(2363), - [anon_sym_let_DASHenv] = ACTIONS(2363), - [anon_sym_mut] = ACTIONS(2363), - [anon_sym_const] = ACTIONS(2363), - [aux_sym_cmd_identifier_token1] = ACTIONS(2363), - [aux_sym_cmd_identifier_token2] = ACTIONS(2363), - [aux_sym_cmd_identifier_token3] = ACTIONS(2363), - [aux_sym_cmd_identifier_token4] = ACTIONS(2363), - [aux_sym_cmd_identifier_token5] = ACTIONS(2363), - [aux_sym_cmd_identifier_token6] = ACTIONS(2363), - [aux_sym_cmd_identifier_token7] = ACTIONS(2363), - [aux_sym_cmd_identifier_token8] = ACTIONS(2363), - [aux_sym_cmd_identifier_token9] = ACTIONS(2363), - [aux_sym_cmd_identifier_token10] = ACTIONS(2363), - [aux_sym_cmd_identifier_token11] = ACTIONS(2363), - [aux_sym_cmd_identifier_token12] = ACTIONS(2363), - [aux_sym_cmd_identifier_token13] = ACTIONS(2363), - [aux_sym_cmd_identifier_token14] = ACTIONS(2363), - [aux_sym_cmd_identifier_token15] = ACTIONS(2363), - [aux_sym_cmd_identifier_token16] = ACTIONS(2363), - [aux_sym_cmd_identifier_token17] = ACTIONS(2363), - [aux_sym_cmd_identifier_token18] = ACTIONS(2363), - [aux_sym_cmd_identifier_token19] = ACTIONS(2363), - [aux_sym_cmd_identifier_token20] = ACTIONS(2363), - [aux_sym_cmd_identifier_token21] = ACTIONS(2363), - [aux_sym_cmd_identifier_token22] = ACTIONS(2363), - [aux_sym_cmd_identifier_token23] = ACTIONS(2363), - [aux_sym_cmd_identifier_token24] = ACTIONS(2363), - [aux_sym_cmd_identifier_token25] = ACTIONS(2363), - [aux_sym_cmd_identifier_token26] = ACTIONS(2363), - [aux_sym_cmd_identifier_token27] = ACTIONS(2363), - [aux_sym_cmd_identifier_token28] = ACTIONS(2363), - [aux_sym_cmd_identifier_token29] = ACTIONS(2363), - [aux_sym_cmd_identifier_token30] = ACTIONS(2363), - [aux_sym_cmd_identifier_token31] = ACTIONS(2363), - [aux_sym_cmd_identifier_token32] = ACTIONS(2363), - [aux_sym_cmd_identifier_token33] = ACTIONS(2363), - [aux_sym_cmd_identifier_token34] = ACTIONS(2363), - [aux_sym_cmd_identifier_token35] = ACTIONS(2363), - [aux_sym_cmd_identifier_token36] = ACTIONS(2363), - [anon_sym_true] = ACTIONS(2365), - [anon_sym_false] = ACTIONS(2365), - [anon_sym_null] = ACTIONS(2365), - [aux_sym_cmd_identifier_token38] = ACTIONS(2363), - [aux_sym_cmd_identifier_token39] = ACTIONS(2365), - [aux_sym_cmd_identifier_token40] = ACTIONS(2365), - [anon_sym_def] = ACTIONS(2363), - [anon_sym_export_DASHenv] = ACTIONS(2363), - [anon_sym_extern] = ACTIONS(2363), - [anon_sym_module] = ACTIONS(2363), - [anon_sym_use] = ACTIONS(2363), - [anon_sym_LPAREN] = ACTIONS(2365), - [anon_sym_DOLLAR] = ACTIONS(2365), - [anon_sym_error] = ACTIONS(2363), - [anon_sym_list] = ACTIONS(2363), - [anon_sym_DASH] = ACTIONS(2363), - [anon_sym_break] = ACTIONS(2363), - [anon_sym_continue] = ACTIONS(2363), - [anon_sym_for] = ACTIONS(2363), - [anon_sym_in] = ACTIONS(2363), - [anon_sym_loop] = ACTIONS(2363), - [anon_sym_make] = ACTIONS(2363), - [anon_sym_while] = ACTIONS(2363), - [anon_sym_do] = ACTIONS(2363), - [anon_sym_if] = ACTIONS(2363), - [anon_sym_else] = ACTIONS(2363), - [anon_sym_match] = ACTIONS(2363), - [anon_sym_RBRACE] = ACTIONS(2365), - [anon_sym_try] = ACTIONS(2363), - [anon_sym_catch] = ACTIONS(2363), - [anon_sym_return] = ACTIONS(2363), - [anon_sym_source] = ACTIONS(2363), - [anon_sym_source_DASHenv] = ACTIONS(2363), - [anon_sym_register] = ACTIONS(2363), - [anon_sym_hide] = ACTIONS(2363), - [anon_sym_hide_DASHenv] = ACTIONS(2363), - [anon_sym_overlay] = ACTIONS(2363), - [anon_sym_new] = ACTIONS(2363), - [anon_sym_as] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2365), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2365), - [aux_sym__val_number_decimal_token1] = ACTIONS(2363), - [aux_sym__val_number_decimal_token2] = ACTIONS(2365), - [aux_sym__val_number_decimal_token3] = ACTIONS(2365), - [aux_sym__val_number_decimal_token4] = ACTIONS(2365), - [aux_sym__val_number_token1] = ACTIONS(2365), - [aux_sym__val_number_token2] = ACTIONS(2365), - [aux_sym__val_number_token3] = ACTIONS(2365), - [anon_sym_DQUOTE] = ACTIONS(2365), - [sym__str_single_quotes] = ACTIONS(2365), - [sym__str_back_ticks] = ACTIONS(2365), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2365), - [anon_sym_PLUS] = ACTIONS(2363), + [665] = { + [sym_expr_parenthesized] = STATE(1340), + [sym_val_range] = STATE(1611), + [sym__val_range] = STATE(7566), + [sym__val_range_with_end] = STATE(7410), + [sym__value] = STATE(1611), + [sym_val_nothing] = STATE(1755), + [sym_val_bool] = STATE(1405), + [sym_val_variable] = STATE(1306), + [sym_val_number] = STATE(1755), + [sym__val_number_decimal] = STATE(1060), + [sym__val_number] = STATE(1569), + [sym_val_duration] = STATE(1755), + [sym_val_filesize] = STATE(1755), + [sym_val_binary] = STATE(1755), + [sym_val_string] = STATE(1755), + [sym__str_double_quotes] = STATE(1657), + [sym_val_interpolated] = STATE(1755), + [sym__inter_single_quotes] = STATE(1574), + [sym__inter_double_quotes] = STATE(1575), + [sym_val_list] = STATE(1755), + [sym_val_record] = STATE(1755), + [sym_val_table] = STATE(1755), + [sym_val_closure] = STATE(1755), + [sym__flag] = STATE(1611), + [sym_short_flag] = STATE(1719), + [sym_long_flag] = STATE(1719), + [sym_unquoted] = STATE(1444), + [sym__unquoted_with_expr] = STATE(1612), + [sym__unquoted_anonymous_prefix] = STATE(7281), + [sym_comment] = STATE(665), + [aux_sym_ctrl_do_repeat2] = STATE(665), + [anon_sym_true] = ACTIONS(2579), + [anon_sym_false] = ACTIONS(2579), + [anon_sym_null] = ACTIONS(2582), + [aux_sym_cmd_identifier_token38] = ACTIONS(2585), + [aux_sym_cmd_identifier_token39] = ACTIONS(2585), + [aux_sym_cmd_identifier_token40] = ACTIONS(2585), + [sym__newline] = ACTIONS(2588), + [anon_sym_SEMI] = ACTIONS(2588), + [anon_sym_PIPE] = ACTIONS(2588), + [anon_sym_err_GT_PIPE] = ACTIONS(2588), + [anon_sym_out_GT_PIPE] = ACTIONS(2588), + [anon_sym_e_GT_PIPE] = ACTIONS(2588), + [anon_sym_o_GT_PIPE] = ACTIONS(2588), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2588), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2588), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2588), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2588), + [anon_sym_LBRACK] = ACTIONS(2590), + [anon_sym_LPAREN] = ACTIONS(2593), + [anon_sym_RPAREN] = ACTIONS(2588), + [anon_sym_DOLLAR] = ACTIONS(2596), + [anon_sym_DASH_DASH] = ACTIONS(2599), + [anon_sym_DASH] = ACTIONS(2602), + [aux_sym_ctrl_match_token1] = ACTIONS(2605), + [anon_sym_RBRACE] = ACTIONS(2588), + [anon_sym_DOT_DOT] = ACTIONS(2608), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2611), + [anon_sym_DOT_DOT_LT] = ACTIONS(2611), + [aux_sym__val_number_decimal_token1] = ACTIONS(2614), + [aux_sym__val_number_decimal_token2] = ACTIONS(2617), + [aux_sym__val_number_decimal_token3] = ACTIONS(2620), + [aux_sym__val_number_decimal_token4] = ACTIONS(2623), + [aux_sym__val_number_token1] = ACTIONS(2626), + [aux_sym__val_number_token2] = ACTIONS(2626), + [aux_sym__val_number_token3] = ACTIONS(2626), + [anon_sym_0b] = ACTIONS(2629), + [anon_sym_0o] = ACTIONS(2632), + [anon_sym_0x] = ACTIONS(2632), + [sym_val_date] = ACTIONS(2635), + [anon_sym_DQUOTE] = ACTIONS(2638), + [sym__str_single_quotes] = ACTIONS(2641), + [sym__str_back_ticks] = ACTIONS(2641), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2644), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2647), + [anon_sym_err_GT] = ACTIONS(2650), + [anon_sym_out_GT] = ACTIONS(2650), + [anon_sym_e_GT] = ACTIONS(2650), + [anon_sym_o_GT] = ACTIONS(2650), + [anon_sym_err_PLUSout_GT] = ACTIONS(2650), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2650), + [anon_sym_o_PLUSe_GT] = ACTIONS(2650), + [anon_sym_e_PLUSo_GT] = ACTIONS(2650), + [anon_sym_err_GT_GT] = ACTIONS(2653), + [anon_sym_out_GT_GT] = ACTIONS(2653), + [anon_sym_e_GT_GT] = ACTIONS(2653), + [anon_sym_o_GT_GT] = ACTIONS(2653), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2653), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2653), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2653), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2653), + [aux_sym_unquoted_token1] = ACTIONS(2656), [anon_sym_POUND] = ACTIONS(247), }, - [646] = { - [sym_comment] = STATE(646), - [anon_sym_export] = ACTIONS(2263), - [anon_sym_alias] = ACTIONS(2263), - [anon_sym_let] = ACTIONS(2263), - [anon_sym_let_DASHenv] = ACTIONS(2263), - [anon_sym_mut] = ACTIONS(2263), - [anon_sym_const] = ACTIONS(2263), - [aux_sym_cmd_identifier_token1] = ACTIONS(2263), - [aux_sym_cmd_identifier_token2] = ACTIONS(2263), - [aux_sym_cmd_identifier_token3] = ACTIONS(2263), - [aux_sym_cmd_identifier_token4] = ACTIONS(2263), - [aux_sym_cmd_identifier_token5] = ACTIONS(2263), - [aux_sym_cmd_identifier_token6] = ACTIONS(2263), - [aux_sym_cmd_identifier_token7] = ACTIONS(2263), - [aux_sym_cmd_identifier_token8] = ACTIONS(2263), - [aux_sym_cmd_identifier_token9] = ACTIONS(2263), - [aux_sym_cmd_identifier_token10] = ACTIONS(2263), - [aux_sym_cmd_identifier_token11] = ACTIONS(2263), - [aux_sym_cmd_identifier_token12] = ACTIONS(2263), - [aux_sym_cmd_identifier_token13] = ACTIONS(2263), - [aux_sym_cmd_identifier_token14] = ACTIONS(2263), - [aux_sym_cmd_identifier_token15] = ACTIONS(2263), - [aux_sym_cmd_identifier_token16] = ACTIONS(2263), - [aux_sym_cmd_identifier_token17] = ACTIONS(2263), - [aux_sym_cmd_identifier_token18] = ACTIONS(2263), - [aux_sym_cmd_identifier_token19] = ACTIONS(2263), - [aux_sym_cmd_identifier_token20] = ACTIONS(2263), - [aux_sym_cmd_identifier_token21] = ACTIONS(2263), - [aux_sym_cmd_identifier_token22] = ACTIONS(2263), - [aux_sym_cmd_identifier_token23] = ACTIONS(2263), - [aux_sym_cmd_identifier_token24] = ACTIONS(2263), - [aux_sym_cmd_identifier_token25] = ACTIONS(2263), - [aux_sym_cmd_identifier_token26] = ACTIONS(2263), - [aux_sym_cmd_identifier_token27] = ACTIONS(2263), - [aux_sym_cmd_identifier_token28] = ACTIONS(2263), - [aux_sym_cmd_identifier_token29] = ACTIONS(2263), - [aux_sym_cmd_identifier_token30] = ACTIONS(2263), - [aux_sym_cmd_identifier_token31] = ACTIONS(2263), - [aux_sym_cmd_identifier_token32] = ACTIONS(2263), - [aux_sym_cmd_identifier_token33] = ACTIONS(2263), - [aux_sym_cmd_identifier_token34] = ACTIONS(2263), - [aux_sym_cmd_identifier_token35] = ACTIONS(2263), - [aux_sym_cmd_identifier_token36] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(2265), - [anon_sym_false] = ACTIONS(2265), - [anon_sym_null] = ACTIONS(2265), - [aux_sym_cmd_identifier_token38] = ACTIONS(2263), - [aux_sym_cmd_identifier_token39] = ACTIONS(2265), - [aux_sym_cmd_identifier_token40] = ACTIONS(2265), - [anon_sym_def] = ACTIONS(2263), - [anon_sym_export_DASHenv] = ACTIONS(2263), - [anon_sym_extern] = ACTIONS(2263), - [anon_sym_module] = ACTIONS(2263), - [anon_sym_use] = ACTIONS(2263), - [anon_sym_LPAREN] = ACTIONS(2265), - [anon_sym_DOLLAR] = ACTIONS(2265), - [anon_sym_error] = ACTIONS(2263), - [anon_sym_list] = ACTIONS(2263), - [anon_sym_DASH] = ACTIONS(2263), - [anon_sym_break] = ACTIONS(2263), - [anon_sym_continue] = ACTIONS(2263), - [anon_sym_for] = ACTIONS(2263), - [anon_sym_in] = ACTIONS(2263), - [anon_sym_loop] = ACTIONS(2263), - [anon_sym_make] = ACTIONS(2263), - [anon_sym_while] = ACTIONS(2263), - [anon_sym_do] = ACTIONS(2263), - [anon_sym_if] = ACTIONS(2263), - [anon_sym_else] = ACTIONS(2263), - [anon_sym_match] = ACTIONS(2263), - [anon_sym_RBRACE] = ACTIONS(2265), - [anon_sym_try] = ACTIONS(2263), - [anon_sym_catch] = ACTIONS(2263), - [anon_sym_return] = ACTIONS(2263), - [anon_sym_source] = ACTIONS(2263), - [anon_sym_source_DASHenv] = ACTIONS(2263), - [anon_sym_register] = ACTIONS(2263), - [anon_sym_hide] = ACTIONS(2263), - [anon_sym_hide_DASHenv] = ACTIONS(2263), - [anon_sym_overlay] = ACTIONS(2263), - [anon_sym_new] = ACTIONS(2263), - [anon_sym_as] = ACTIONS(2263), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2265), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2265), - [aux_sym__val_number_decimal_token1] = ACTIONS(2263), - [aux_sym__val_number_decimal_token2] = ACTIONS(2265), - [aux_sym__val_number_decimal_token3] = ACTIONS(2265), - [aux_sym__val_number_decimal_token4] = ACTIONS(2265), - [aux_sym__val_number_token1] = ACTIONS(2265), - [aux_sym__val_number_token2] = ACTIONS(2265), - [aux_sym__val_number_token3] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2265), - [sym__str_single_quotes] = ACTIONS(2265), - [sym__str_back_ticks] = ACTIONS(2265), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2265), - [anon_sym_PLUS] = ACTIONS(2263), + [666] = { + [sym_expr_parenthesized] = STATE(1470), + [sym_val_range] = STATE(1807), + [sym__val_range] = STATE(7566), + [sym__val_range_with_end] = STATE(7410), + [sym__value] = STATE(1807), + [sym_val_nothing] = STATE(1755), + [sym_val_bool] = STATE(1405), + [sym_val_variable] = STATE(1306), + [sym_val_number] = STATE(1755), + [sym__val_number_decimal] = STATE(1060), + [sym__val_number] = STATE(1569), + [sym_val_duration] = STATE(1755), + [sym_val_filesize] = STATE(1755), + [sym_val_binary] = STATE(1755), + [sym_val_string] = STATE(1755), + [sym__str_double_quotes] = STATE(1657), + [sym_val_interpolated] = STATE(1755), + [sym__inter_single_quotes] = STATE(1574), + [sym__inter_double_quotes] = STATE(1575), + [sym_val_list] = STATE(1755), + [sym_val_record] = STATE(1755), + [sym_val_table] = STATE(1755), + [sym_val_closure] = STATE(1755), + [sym__flag] = STATE(1807), + [sym_short_flag] = STATE(1719), + [sym_long_flag] = STATE(1719), + [sym_unquoted] = STATE(1481), + [sym__unquoted_with_expr] = STATE(1808), + [sym__unquoted_anonymous_prefix] = STATE(7281), + [sym_comment] = STATE(666), + [aux_sym_shebang_repeat1] = STATE(884), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(666), + [anon_sym_true] = ACTIONS(2659), + [anon_sym_false] = ACTIONS(2659), + [anon_sym_null] = ACTIONS(2662), + [aux_sym_cmd_identifier_token38] = ACTIONS(2665), + [aux_sym_cmd_identifier_token39] = ACTIONS(2665), + [aux_sym_cmd_identifier_token40] = ACTIONS(2665), + [sym__newline] = ACTIONS(2668), + [anon_sym_SEMI] = ACTIONS(2671), + [anon_sym_PIPE] = ACTIONS(2671), + [anon_sym_err_GT_PIPE] = ACTIONS(2671), + [anon_sym_out_GT_PIPE] = ACTIONS(2671), + [anon_sym_e_GT_PIPE] = ACTIONS(2671), + [anon_sym_o_GT_PIPE] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2671), + [anon_sym_LBRACK] = ACTIONS(2673), + [anon_sym_LPAREN] = ACTIONS(2676), + [anon_sym_RPAREN] = ACTIONS(2671), + [anon_sym_DOLLAR] = ACTIONS(2679), + [anon_sym_DASH_DASH] = ACTIONS(2682), + [anon_sym_DASH] = ACTIONS(2685), + [aux_sym_ctrl_match_token1] = ACTIONS(2688), + [anon_sym_DOT_DOT] = ACTIONS(2691), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2694), + [anon_sym_DOT_DOT_LT] = ACTIONS(2694), + [aux_sym__val_number_decimal_token1] = ACTIONS(2697), + [aux_sym__val_number_decimal_token2] = ACTIONS(2700), + [aux_sym__val_number_decimal_token3] = ACTIONS(2703), + [aux_sym__val_number_decimal_token4] = ACTIONS(2706), + [aux_sym__val_number_token1] = ACTIONS(2709), + [aux_sym__val_number_token2] = ACTIONS(2709), + [aux_sym__val_number_token3] = ACTIONS(2709), + [anon_sym_0b] = ACTIONS(2712), + [anon_sym_0o] = ACTIONS(2715), + [anon_sym_0x] = ACTIONS(2715), + [sym_val_date] = ACTIONS(2718), + [anon_sym_DQUOTE] = ACTIONS(2721), + [sym__str_single_quotes] = ACTIONS(2724), + [sym__str_back_ticks] = ACTIONS(2724), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2727), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2730), + [anon_sym_err_GT] = ACTIONS(2733), + [anon_sym_out_GT] = ACTIONS(2733), + [anon_sym_e_GT] = ACTIONS(2733), + [anon_sym_o_GT] = ACTIONS(2733), + [anon_sym_err_PLUSout_GT] = ACTIONS(2733), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2733), + [anon_sym_o_PLUSe_GT] = ACTIONS(2733), + [anon_sym_e_PLUSo_GT] = ACTIONS(2733), + [anon_sym_err_GT_GT] = ACTIONS(2736), + [anon_sym_out_GT_GT] = ACTIONS(2736), + [anon_sym_e_GT_GT] = ACTIONS(2736), + [anon_sym_o_GT_GT] = ACTIONS(2736), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [aux_sym_unquoted_token1] = ACTIONS(2739), [anon_sym_POUND] = ACTIONS(247), }, - [647] = { - [sym_comment] = STATE(647), - [anon_sym_export] = ACTIONS(1949), - [anon_sym_alias] = ACTIONS(1949), - [anon_sym_let] = ACTIONS(1949), - [anon_sym_let_DASHenv] = ACTIONS(1949), - [anon_sym_mut] = ACTIONS(1949), - [anon_sym_const] = ACTIONS(1949), - [aux_sym_cmd_identifier_token1] = ACTIONS(1949), - [aux_sym_cmd_identifier_token2] = ACTIONS(1949), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [aux_sym_cmd_identifier_token6] = ACTIONS(1949), - [aux_sym_cmd_identifier_token7] = ACTIONS(1949), - [aux_sym_cmd_identifier_token8] = ACTIONS(1949), - [aux_sym_cmd_identifier_token9] = ACTIONS(1949), - [aux_sym_cmd_identifier_token10] = ACTIONS(1949), - [aux_sym_cmd_identifier_token11] = ACTIONS(1949), - [aux_sym_cmd_identifier_token12] = ACTIONS(1949), - [aux_sym_cmd_identifier_token13] = ACTIONS(1949), - [aux_sym_cmd_identifier_token14] = ACTIONS(1949), - [aux_sym_cmd_identifier_token15] = ACTIONS(1949), - [aux_sym_cmd_identifier_token16] = ACTIONS(1949), - [aux_sym_cmd_identifier_token17] = ACTIONS(1949), - [aux_sym_cmd_identifier_token18] = ACTIONS(1949), - [aux_sym_cmd_identifier_token19] = ACTIONS(1949), - [aux_sym_cmd_identifier_token20] = ACTIONS(1949), - [aux_sym_cmd_identifier_token21] = ACTIONS(1949), - [aux_sym_cmd_identifier_token22] = ACTIONS(1949), - [aux_sym_cmd_identifier_token23] = ACTIONS(1949), - [aux_sym_cmd_identifier_token24] = ACTIONS(1949), - [aux_sym_cmd_identifier_token25] = ACTIONS(1949), - [aux_sym_cmd_identifier_token26] = ACTIONS(1949), - [aux_sym_cmd_identifier_token27] = ACTIONS(1949), - [aux_sym_cmd_identifier_token28] = ACTIONS(1949), - [aux_sym_cmd_identifier_token29] = ACTIONS(1949), - [aux_sym_cmd_identifier_token30] = ACTIONS(1949), - [aux_sym_cmd_identifier_token31] = ACTIONS(1949), - [aux_sym_cmd_identifier_token32] = ACTIONS(1949), - [aux_sym_cmd_identifier_token33] = ACTIONS(1949), - [aux_sym_cmd_identifier_token34] = ACTIONS(1949), - [aux_sym_cmd_identifier_token35] = ACTIONS(1949), - [aux_sym_cmd_identifier_token36] = ACTIONS(1949), - [anon_sym_true] = ACTIONS(1951), - [anon_sym_false] = ACTIONS(1951), - [anon_sym_null] = ACTIONS(1951), - [aux_sym_cmd_identifier_token38] = ACTIONS(1949), - [aux_sym_cmd_identifier_token39] = ACTIONS(1951), - [aux_sym_cmd_identifier_token40] = ACTIONS(1951), - [anon_sym_def] = ACTIONS(1949), - [anon_sym_export_DASHenv] = ACTIONS(1949), - [anon_sym_extern] = ACTIONS(1949), - [anon_sym_module] = ACTIONS(1949), - [anon_sym_use] = ACTIONS(1949), - [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym_DOLLAR] = ACTIONS(1951), - [anon_sym_error] = ACTIONS(1949), - [anon_sym_list] = ACTIONS(1949), - [anon_sym_DASH] = ACTIONS(1949), - [anon_sym_break] = ACTIONS(1949), - [anon_sym_continue] = ACTIONS(1949), - [anon_sym_for] = ACTIONS(1949), - [anon_sym_in] = ACTIONS(1949), - [anon_sym_loop] = ACTIONS(1949), - [anon_sym_make] = ACTIONS(1949), - [anon_sym_while] = ACTIONS(1949), - [anon_sym_do] = ACTIONS(1949), - [anon_sym_if] = ACTIONS(1949), - [anon_sym_else] = ACTIONS(1949), - [anon_sym_match] = ACTIONS(1949), - [anon_sym_RBRACE] = ACTIONS(1951), - [anon_sym_try] = ACTIONS(1949), - [anon_sym_catch] = ACTIONS(1949), - [anon_sym_return] = ACTIONS(1949), - [anon_sym_source] = ACTIONS(1949), - [anon_sym_source_DASHenv] = ACTIONS(1949), - [anon_sym_register] = ACTIONS(1949), - [anon_sym_hide] = ACTIONS(1949), - [anon_sym_hide_DASHenv] = ACTIONS(1949), - [anon_sym_overlay] = ACTIONS(1949), - [anon_sym_new] = ACTIONS(1949), - [anon_sym_as] = ACTIONS(1949), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1951), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1951), - [aux_sym__val_number_decimal_token1] = ACTIONS(1949), - [aux_sym__val_number_decimal_token2] = ACTIONS(1951), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), - [aux_sym__val_number_token1] = ACTIONS(1951), - [aux_sym__val_number_token2] = ACTIONS(1951), - [aux_sym__val_number_token3] = ACTIONS(1951), - [anon_sym_DQUOTE] = ACTIONS(1951), - [sym__str_single_quotes] = ACTIONS(1951), - [sym__str_back_ticks] = ACTIONS(1951), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1951), - [anon_sym_PLUS] = ACTIONS(1949), + [667] = { + [sym_expr_parenthesized] = STATE(1470), + [sym_val_range] = STATE(1807), + [sym__val_range] = STATE(7566), + [sym__val_range_with_end] = STATE(7410), + [sym__value] = STATE(1807), + [sym_val_nothing] = STATE(1755), + [sym_val_bool] = STATE(1405), + [sym_val_variable] = STATE(1306), + [sym_val_number] = STATE(1755), + [sym__val_number_decimal] = STATE(1060), + [sym__val_number] = STATE(1569), + [sym_val_duration] = STATE(1755), + [sym_val_filesize] = STATE(1755), + [sym_val_binary] = STATE(1755), + [sym_val_string] = STATE(1755), + [sym__str_double_quotes] = STATE(1657), + [sym_val_interpolated] = STATE(1755), + [sym__inter_single_quotes] = STATE(1574), + [sym__inter_double_quotes] = STATE(1575), + [sym_val_list] = STATE(1755), + [sym_val_record] = STATE(1755), + [sym_val_table] = STATE(1755), + [sym_val_closure] = STATE(1755), + [sym__flag] = STATE(1807), + [sym_short_flag] = STATE(1719), + [sym_long_flag] = STATE(1719), + [sym_unquoted] = STATE(1481), + [sym__unquoted_with_expr] = STATE(1808), + [sym__unquoted_anonymous_prefix] = STATE(7281), + [sym_comment] = STATE(667), + [aux_sym_shebang_repeat1] = STATE(884), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(672), + [anon_sym_true] = ACTIONS(2525), + [anon_sym_false] = ACTIONS(2525), + [anon_sym_null] = ACTIONS(2527), + [aux_sym_cmd_identifier_token38] = ACTIONS(2529), + [aux_sym_cmd_identifier_token39] = ACTIONS(2529), + [aux_sym_cmd_identifier_token40] = ACTIONS(2529), + [sym__newline] = ACTIONS(2742), + [anon_sym_SEMI] = ACTIONS(2742), + [anon_sym_PIPE] = ACTIONS(2742), + [anon_sym_err_GT_PIPE] = ACTIONS(2742), + [anon_sym_out_GT_PIPE] = ACTIONS(2742), + [anon_sym_e_GT_PIPE] = ACTIONS(2742), + [anon_sym_o_GT_PIPE] = ACTIONS(2742), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2742), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2742), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2742), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2742), + [anon_sym_LBRACK] = ACTIONS(2533), + [anon_sym_LPAREN] = ACTIONS(2535), + [anon_sym_RPAREN] = ACTIONS(2742), + [anon_sym_DOLLAR] = ACTIONS(2537), + [anon_sym_DASH_DASH] = ACTIONS(2539), + [anon_sym_DASH] = ACTIONS(2541), + [aux_sym_ctrl_match_token1] = ACTIONS(2543), + [anon_sym_DOT_DOT] = ACTIONS(2545), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), + [anon_sym_DOT_DOT_LT] = ACTIONS(2547), + [aux_sym__val_number_decimal_token1] = ACTIONS(2549), + [aux_sym__val_number_decimal_token2] = ACTIONS(2551), + [aux_sym__val_number_decimal_token3] = ACTIONS(2553), + [aux_sym__val_number_decimal_token4] = ACTIONS(2555), + [aux_sym__val_number_token1] = ACTIONS(2557), + [aux_sym__val_number_token2] = ACTIONS(2557), + [aux_sym__val_number_token3] = ACTIONS(2557), + [anon_sym_0b] = ACTIONS(2559), + [anon_sym_0o] = ACTIONS(2561), + [anon_sym_0x] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2563), + [anon_sym_DQUOTE] = ACTIONS(2565), + [sym__str_single_quotes] = ACTIONS(2567), + [sym__str_back_ticks] = ACTIONS(2567), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2569), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2571), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(2577), [anon_sym_POUND] = ACTIONS(247), }, - [648] = { - [sym_comment] = STATE(648), - [anon_sym_export] = ACTIONS(1782), - [anon_sym_alias] = ACTIONS(1782), - [anon_sym_let] = ACTIONS(1782), - [anon_sym_let_DASHenv] = ACTIONS(1782), - [anon_sym_mut] = ACTIONS(1782), - [anon_sym_const] = ACTIONS(1782), - [aux_sym_cmd_identifier_token1] = ACTIONS(1782), - [aux_sym_cmd_identifier_token2] = ACTIONS(1782), - [aux_sym_cmd_identifier_token3] = ACTIONS(1782), - [aux_sym_cmd_identifier_token4] = ACTIONS(1782), - [aux_sym_cmd_identifier_token5] = ACTIONS(1782), - [aux_sym_cmd_identifier_token6] = ACTIONS(1782), - [aux_sym_cmd_identifier_token7] = ACTIONS(1782), - [aux_sym_cmd_identifier_token8] = ACTIONS(1782), - [aux_sym_cmd_identifier_token9] = ACTIONS(1782), - [aux_sym_cmd_identifier_token10] = ACTIONS(1782), - [aux_sym_cmd_identifier_token11] = ACTIONS(1782), - [aux_sym_cmd_identifier_token12] = ACTIONS(1782), - [aux_sym_cmd_identifier_token13] = ACTIONS(1782), - [aux_sym_cmd_identifier_token14] = ACTIONS(1782), - [aux_sym_cmd_identifier_token15] = ACTIONS(1782), - [aux_sym_cmd_identifier_token16] = ACTIONS(1782), - [aux_sym_cmd_identifier_token17] = ACTIONS(1782), - [aux_sym_cmd_identifier_token18] = ACTIONS(1782), - [aux_sym_cmd_identifier_token19] = ACTIONS(1782), - [aux_sym_cmd_identifier_token20] = ACTIONS(1782), - [aux_sym_cmd_identifier_token21] = ACTIONS(1782), - [aux_sym_cmd_identifier_token22] = ACTIONS(1782), - [aux_sym_cmd_identifier_token23] = ACTIONS(1782), - [aux_sym_cmd_identifier_token24] = ACTIONS(1782), - [aux_sym_cmd_identifier_token25] = ACTIONS(1782), - [aux_sym_cmd_identifier_token26] = ACTIONS(1782), - [aux_sym_cmd_identifier_token27] = ACTIONS(1782), - [aux_sym_cmd_identifier_token28] = ACTIONS(1782), - [aux_sym_cmd_identifier_token29] = ACTIONS(1782), - [aux_sym_cmd_identifier_token30] = ACTIONS(1782), - [aux_sym_cmd_identifier_token31] = ACTIONS(1782), - [aux_sym_cmd_identifier_token32] = ACTIONS(1782), - [aux_sym_cmd_identifier_token33] = ACTIONS(1782), - [aux_sym_cmd_identifier_token34] = ACTIONS(1782), - [aux_sym_cmd_identifier_token35] = ACTIONS(1782), - [aux_sym_cmd_identifier_token36] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_null] = ACTIONS(1784), - [aux_sym_cmd_identifier_token38] = ACTIONS(1782), - [aux_sym_cmd_identifier_token39] = ACTIONS(1784), - [aux_sym_cmd_identifier_token40] = ACTIONS(1784), - [anon_sym_def] = ACTIONS(1782), - [anon_sym_export_DASHenv] = ACTIONS(1782), - [anon_sym_extern] = ACTIONS(1782), - [anon_sym_module] = ACTIONS(1782), - [anon_sym_use] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_DOLLAR] = ACTIONS(1784), - [anon_sym_error] = ACTIONS(1782), - [anon_sym_list] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_break] = ACTIONS(1782), - [anon_sym_continue] = ACTIONS(1782), - [anon_sym_for] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1782), - [anon_sym_loop] = ACTIONS(1782), - [anon_sym_make] = ACTIONS(1782), - [anon_sym_while] = ACTIONS(1782), - [anon_sym_do] = ACTIONS(1782), - [anon_sym_if] = ACTIONS(1782), - [anon_sym_else] = ACTIONS(1782), - [anon_sym_match] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1782), - [anon_sym_catch] = ACTIONS(1782), - [anon_sym_return] = ACTIONS(1782), - [anon_sym_source] = ACTIONS(1782), - [anon_sym_source_DASHenv] = ACTIONS(1782), - [anon_sym_register] = ACTIONS(1782), - [anon_sym_hide] = ACTIONS(1782), - [anon_sym_hide_DASHenv] = ACTIONS(1782), - [anon_sym_overlay] = ACTIONS(1782), - [anon_sym_new] = ACTIONS(1782), - [anon_sym_as] = ACTIONS(1782), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1784), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1784), - [aux_sym__val_number_decimal_token1] = ACTIONS(1782), - [aux_sym__val_number_decimal_token2] = ACTIONS(1784), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), - [aux_sym__val_number_token1] = ACTIONS(1784), - [aux_sym__val_number_token2] = ACTIONS(1784), - [aux_sym__val_number_token3] = ACTIONS(1784), - [anon_sym_DQUOTE] = ACTIONS(1784), - [sym__str_single_quotes] = ACTIONS(1784), - [sym__str_back_ticks] = ACTIONS(1784), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1782), + [668] = { + [sym_expr_parenthesized] = STATE(1470), + [sym_val_range] = STATE(1807), + [sym__val_range] = STATE(7566), + [sym__val_range_with_end] = STATE(7410), + [sym__value] = STATE(1807), + [sym_val_nothing] = STATE(1755), + [sym_val_bool] = STATE(1405), + [sym_val_variable] = STATE(1306), + [sym_val_number] = STATE(1755), + [sym__val_number_decimal] = STATE(1060), + [sym__val_number] = STATE(1569), + [sym_val_duration] = STATE(1755), + [sym_val_filesize] = STATE(1755), + [sym_val_binary] = STATE(1755), + [sym_val_string] = STATE(1755), + [sym__str_double_quotes] = STATE(1657), + [sym_val_interpolated] = STATE(1755), + [sym__inter_single_quotes] = STATE(1574), + [sym__inter_double_quotes] = STATE(1575), + [sym_val_list] = STATE(1755), + [sym_val_record] = STATE(1755), + [sym_val_table] = STATE(1755), + [sym_val_closure] = STATE(1755), + [sym__flag] = STATE(1807), + [sym_short_flag] = STATE(1719), + [sym_long_flag] = STATE(1719), + [sym_unquoted] = STATE(1481), + [sym__unquoted_with_expr] = STATE(1808), + [sym__unquoted_anonymous_prefix] = STATE(7281), + [sym_comment] = STATE(668), + [aux_sym_shebang_repeat1] = STATE(884), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(666), + [anon_sym_true] = ACTIONS(2525), + [anon_sym_false] = ACTIONS(2525), + [anon_sym_null] = ACTIONS(2527), + [aux_sym_cmd_identifier_token38] = ACTIONS(2529), + [aux_sym_cmd_identifier_token39] = ACTIONS(2529), + [aux_sym_cmd_identifier_token40] = ACTIONS(2529), + [sym__newline] = ACTIONS(2744), + [anon_sym_SEMI] = ACTIONS(2746), + [anon_sym_PIPE] = ACTIONS(2746), + [anon_sym_err_GT_PIPE] = ACTIONS(2746), + [anon_sym_out_GT_PIPE] = ACTIONS(2746), + [anon_sym_e_GT_PIPE] = ACTIONS(2746), + [anon_sym_o_GT_PIPE] = ACTIONS(2746), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2746), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2746), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2746), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2746), + [anon_sym_LBRACK] = ACTIONS(2533), + [anon_sym_LPAREN] = ACTIONS(2535), + [anon_sym_RPAREN] = ACTIONS(2746), + [anon_sym_DOLLAR] = ACTIONS(2537), + [anon_sym_DASH_DASH] = ACTIONS(2539), + [anon_sym_DASH] = ACTIONS(2541), + [aux_sym_ctrl_match_token1] = ACTIONS(2543), + [anon_sym_DOT_DOT] = ACTIONS(2545), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), + [anon_sym_DOT_DOT_LT] = ACTIONS(2547), + [aux_sym__val_number_decimal_token1] = ACTIONS(2549), + [aux_sym__val_number_decimal_token2] = ACTIONS(2551), + [aux_sym__val_number_decimal_token3] = ACTIONS(2553), + [aux_sym__val_number_decimal_token4] = ACTIONS(2555), + [aux_sym__val_number_token1] = ACTIONS(2557), + [aux_sym__val_number_token2] = ACTIONS(2557), + [aux_sym__val_number_token3] = ACTIONS(2557), + [anon_sym_0b] = ACTIONS(2559), + [anon_sym_0o] = ACTIONS(2561), + [anon_sym_0x] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2563), + [anon_sym_DQUOTE] = ACTIONS(2565), + [sym__str_single_quotes] = ACTIONS(2567), + [sym__str_back_ticks] = ACTIONS(2567), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2569), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2571), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(2577), [anon_sym_POUND] = ACTIONS(247), }, - [649] = { - [sym_comment] = STATE(649), - [anon_sym_export] = ACTIONS(2367), - [anon_sym_alias] = ACTIONS(2367), - [anon_sym_let] = ACTIONS(2367), - [anon_sym_let_DASHenv] = ACTIONS(2367), - [anon_sym_mut] = ACTIONS(2367), - [anon_sym_const] = ACTIONS(2367), - [aux_sym_cmd_identifier_token1] = ACTIONS(2367), - [aux_sym_cmd_identifier_token2] = ACTIONS(2367), - [aux_sym_cmd_identifier_token3] = ACTIONS(2367), - [aux_sym_cmd_identifier_token4] = ACTIONS(2367), - [aux_sym_cmd_identifier_token5] = ACTIONS(2367), - [aux_sym_cmd_identifier_token6] = ACTIONS(2367), - [aux_sym_cmd_identifier_token7] = ACTIONS(2367), - [aux_sym_cmd_identifier_token8] = ACTIONS(2367), - [aux_sym_cmd_identifier_token9] = ACTIONS(2367), - [aux_sym_cmd_identifier_token10] = ACTIONS(2367), - [aux_sym_cmd_identifier_token11] = ACTIONS(2367), - [aux_sym_cmd_identifier_token12] = ACTIONS(2367), - [aux_sym_cmd_identifier_token13] = ACTIONS(2367), - [aux_sym_cmd_identifier_token14] = ACTIONS(2367), - [aux_sym_cmd_identifier_token15] = ACTIONS(2367), - [aux_sym_cmd_identifier_token16] = ACTIONS(2367), - [aux_sym_cmd_identifier_token17] = ACTIONS(2367), - [aux_sym_cmd_identifier_token18] = ACTIONS(2367), - [aux_sym_cmd_identifier_token19] = ACTIONS(2367), - [aux_sym_cmd_identifier_token20] = ACTIONS(2367), - [aux_sym_cmd_identifier_token21] = ACTIONS(2367), - [aux_sym_cmd_identifier_token22] = ACTIONS(2367), - [aux_sym_cmd_identifier_token23] = ACTIONS(2367), - [aux_sym_cmd_identifier_token24] = ACTIONS(2367), - [aux_sym_cmd_identifier_token25] = ACTIONS(2367), - [aux_sym_cmd_identifier_token26] = ACTIONS(2367), - [aux_sym_cmd_identifier_token27] = ACTIONS(2367), - [aux_sym_cmd_identifier_token28] = ACTIONS(2367), - [aux_sym_cmd_identifier_token29] = ACTIONS(2367), - [aux_sym_cmd_identifier_token30] = ACTIONS(2367), - [aux_sym_cmd_identifier_token31] = ACTIONS(2367), - [aux_sym_cmd_identifier_token32] = ACTIONS(2367), - [aux_sym_cmd_identifier_token33] = ACTIONS(2367), - [aux_sym_cmd_identifier_token34] = ACTIONS(2367), - [aux_sym_cmd_identifier_token35] = ACTIONS(2367), - [aux_sym_cmd_identifier_token36] = ACTIONS(2367), - [anon_sym_true] = ACTIONS(2369), - [anon_sym_false] = ACTIONS(2369), - [anon_sym_null] = ACTIONS(2369), - [aux_sym_cmd_identifier_token38] = ACTIONS(2367), - [aux_sym_cmd_identifier_token39] = ACTIONS(2369), - [aux_sym_cmd_identifier_token40] = ACTIONS(2369), - [anon_sym_def] = ACTIONS(2367), - [anon_sym_export_DASHenv] = ACTIONS(2367), - [anon_sym_extern] = ACTIONS(2367), - [anon_sym_module] = ACTIONS(2367), - [anon_sym_use] = ACTIONS(2367), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_DOLLAR] = ACTIONS(2369), - [anon_sym_error] = ACTIONS(2367), - [anon_sym_list] = ACTIONS(2367), - [anon_sym_DASH] = ACTIONS(2367), - [anon_sym_break] = ACTIONS(2367), - [anon_sym_continue] = ACTIONS(2367), - [anon_sym_for] = ACTIONS(2367), - [anon_sym_in] = ACTIONS(2367), - [anon_sym_loop] = ACTIONS(2367), - [anon_sym_make] = ACTIONS(2367), - [anon_sym_while] = ACTIONS(2367), - [anon_sym_do] = ACTIONS(2367), - [anon_sym_if] = ACTIONS(2367), - [anon_sym_else] = ACTIONS(2367), - [anon_sym_match] = ACTIONS(2367), - [anon_sym_RBRACE] = ACTIONS(2369), - [anon_sym_try] = ACTIONS(2367), - [anon_sym_catch] = ACTIONS(2367), - [anon_sym_return] = ACTIONS(2367), - [anon_sym_source] = ACTIONS(2367), - [anon_sym_source_DASHenv] = ACTIONS(2367), - [anon_sym_register] = ACTIONS(2367), - [anon_sym_hide] = ACTIONS(2367), - [anon_sym_hide_DASHenv] = ACTIONS(2367), - [anon_sym_overlay] = ACTIONS(2367), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_as] = ACTIONS(2367), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2369), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2369), - [aux_sym__val_number_decimal_token1] = ACTIONS(2367), - [aux_sym__val_number_decimal_token2] = ACTIONS(2369), - [aux_sym__val_number_decimal_token3] = ACTIONS(2369), - [aux_sym__val_number_decimal_token4] = ACTIONS(2369), - [aux_sym__val_number_token1] = ACTIONS(2369), - [aux_sym__val_number_token2] = ACTIONS(2369), - [aux_sym__val_number_token3] = ACTIONS(2369), - [anon_sym_DQUOTE] = ACTIONS(2369), - [sym__str_single_quotes] = ACTIONS(2369), - [sym__str_back_ticks] = ACTIONS(2369), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2369), - [anon_sym_PLUS] = ACTIONS(2367), + [669] = { + [sym_expr_parenthesized] = STATE(1340), + [sym_val_range] = STATE(1611), + [sym__val_range] = STATE(7566), + [sym__val_range_with_end] = STATE(7410), + [sym__value] = STATE(1611), + [sym_val_nothing] = STATE(1755), + [sym_val_bool] = STATE(1405), + [sym_val_variable] = STATE(1306), + [sym_val_number] = STATE(1755), + [sym__val_number_decimal] = STATE(1060), + [sym__val_number] = STATE(1569), + [sym_val_duration] = STATE(1755), + [sym_val_filesize] = STATE(1755), + [sym_val_binary] = STATE(1755), + [sym_val_string] = STATE(1755), + [sym__str_double_quotes] = STATE(1657), + [sym_val_interpolated] = STATE(1755), + [sym__inter_single_quotes] = STATE(1574), + [sym__inter_double_quotes] = STATE(1575), + [sym_val_list] = STATE(1755), + [sym_val_record] = STATE(1755), + [sym_val_table] = STATE(1755), + [sym_val_closure] = STATE(1755), + [sym__flag] = STATE(1611), + [sym_short_flag] = STATE(1719), + [sym_long_flag] = STATE(1719), + [sym_unquoted] = STATE(1444), + [sym__unquoted_with_expr] = STATE(1612), + [sym__unquoted_anonymous_prefix] = STATE(7281), + [sym_comment] = STATE(669), + [aux_sym_ctrl_do_repeat2] = STATE(665), + [anon_sym_true] = ACTIONS(2525), + [anon_sym_false] = ACTIONS(2525), + [anon_sym_null] = ACTIONS(2527), + [aux_sym_cmd_identifier_token38] = ACTIONS(2529), + [aux_sym_cmd_identifier_token39] = ACTIONS(2529), + [aux_sym_cmd_identifier_token40] = ACTIONS(2529), + [sym__newline] = ACTIONS(2748), + [anon_sym_SEMI] = ACTIONS(2748), + [anon_sym_PIPE] = ACTIONS(2748), + [anon_sym_err_GT_PIPE] = ACTIONS(2748), + [anon_sym_out_GT_PIPE] = ACTIONS(2748), + [anon_sym_e_GT_PIPE] = ACTIONS(2748), + [anon_sym_o_GT_PIPE] = ACTIONS(2748), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2748), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2748), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2748), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2748), + [anon_sym_LBRACK] = ACTIONS(2533), + [anon_sym_LPAREN] = ACTIONS(2535), + [anon_sym_RPAREN] = ACTIONS(2748), + [anon_sym_DOLLAR] = ACTIONS(2537), + [anon_sym_DASH_DASH] = ACTIONS(2539), + [anon_sym_DASH] = ACTIONS(2541), + [aux_sym_ctrl_match_token1] = ACTIONS(2543), + [anon_sym_RBRACE] = ACTIONS(2748), + [anon_sym_DOT_DOT] = ACTIONS(2545), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), + [anon_sym_DOT_DOT_LT] = ACTIONS(2547), + [aux_sym__val_number_decimal_token1] = ACTIONS(2549), + [aux_sym__val_number_decimal_token2] = ACTIONS(2551), + [aux_sym__val_number_decimal_token3] = ACTIONS(2553), + [aux_sym__val_number_decimal_token4] = ACTIONS(2555), + [aux_sym__val_number_token1] = ACTIONS(2557), + [aux_sym__val_number_token2] = ACTIONS(2557), + [aux_sym__val_number_token3] = ACTIONS(2557), + [anon_sym_0b] = ACTIONS(2559), + [anon_sym_0o] = ACTIONS(2561), + [anon_sym_0x] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2563), + [anon_sym_DQUOTE] = ACTIONS(2565), + [sym__str_single_quotes] = ACTIONS(2567), + [sym__str_back_ticks] = ACTIONS(2567), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2569), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2571), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(2577), [anon_sym_POUND] = ACTIONS(247), }, - [650] = { - [sym_comment] = STATE(650), - [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), - [aux_sym_cmd_identifier_token1] = ACTIONS(1899), - [aux_sym_cmd_identifier_token2] = ACTIONS(1899), - [aux_sym_cmd_identifier_token3] = ACTIONS(1899), - [aux_sym_cmd_identifier_token4] = ACTIONS(1899), - [aux_sym_cmd_identifier_token5] = ACTIONS(1899), - [aux_sym_cmd_identifier_token6] = ACTIONS(1899), - [aux_sym_cmd_identifier_token7] = ACTIONS(1899), - [aux_sym_cmd_identifier_token8] = ACTIONS(1899), - [aux_sym_cmd_identifier_token9] = ACTIONS(1899), - [aux_sym_cmd_identifier_token10] = ACTIONS(1899), - [aux_sym_cmd_identifier_token11] = ACTIONS(1899), - [aux_sym_cmd_identifier_token12] = ACTIONS(1899), - [aux_sym_cmd_identifier_token13] = ACTIONS(1899), - [aux_sym_cmd_identifier_token14] = ACTIONS(1899), - [aux_sym_cmd_identifier_token15] = ACTIONS(1899), - [aux_sym_cmd_identifier_token16] = ACTIONS(1899), - [aux_sym_cmd_identifier_token17] = ACTIONS(1899), - [aux_sym_cmd_identifier_token18] = ACTIONS(1899), - [aux_sym_cmd_identifier_token19] = ACTIONS(1899), - [aux_sym_cmd_identifier_token20] = ACTIONS(1899), - [aux_sym_cmd_identifier_token21] = ACTIONS(1899), - [aux_sym_cmd_identifier_token22] = ACTIONS(1899), - [aux_sym_cmd_identifier_token23] = ACTIONS(1899), - [aux_sym_cmd_identifier_token24] = ACTIONS(1899), - [aux_sym_cmd_identifier_token25] = ACTIONS(1899), - [aux_sym_cmd_identifier_token26] = ACTIONS(1899), - [aux_sym_cmd_identifier_token27] = ACTIONS(1899), - [aux_sym_cmd_identifier_token28] = ACTIONS(1899), - [aux_sym_cmd_identifier_token29] = ACTIONS(1899), - [aux_sym_cmd_identifier_token30] = ACTIONS(1899), - [aux_sym_cmd_identifier_token31] = ACTIONS(1899), - [aux_sym_cmd_identifier_token32] = ACTIONS(1899), - [aux_sym_cmd_identifier_token33] = ACTIONS(1899), - [aux_sym_cmd_identifier_token34] = ACTIONS(1899), - [aux_sym_cmd_identifier_token35] = ACTIONS(1899), - [aux_sym_cmd_identifier_token36] = ACTIONS(1899), - [anon_sym_true] = ACTIONS(1901), - [anon_sym_false] = ACTIONS(1901), - [anon_sym_null] = ACTIONS(1901), - [aux_sym_cmd_identifier_token38] = ACTIONS(1899), - [aux_sym_cmd_identifier_token39] = ACTIONS(1901), - [aux_sym_cmd_identifier_token40] = ACTIONS(1901), - [anon_sym_def] = 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_LPAREN] = ACTIONS(1901), - [anon_sym_DOLLAR] = ACTIONS(1901), - [anon_sym_error] = ACTIONS(1899), - [anon_sym_list] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_break] = ACTIONS(1899), - [anon_sym_continue] = ACTIONS(1899), - [anon_sym_for] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(1899), - [anon_sym_loop] = ACTIONS(1899), - [anon_sym_make] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1899), - [anon_sym_do] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_else] = ACTIONS(1899), - [anon_sym_match] = ACTIONS(1899), - [anon_sym_RBRACE] = ACTIONS(1901), - [anon_sym_try] = ACTIONS(1899), - [anon_sym_catch] = 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_new] = ACTIONS(1899), - [anon_sym_as] = ACTIONS(1899), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1901), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1901), - [aux_sym__val_number_decimal_token1] = ACTIONS(1899), - [aux_sym__val_number_decimal_token2] = ACTIONS(1901), - [aux_sym__val_number_decimal_token3] = ACTIONS(1901), - [aux_sym__val_number_decimal_token4] = ACTIONS(1901), - [aux_sym__val_number_token1] = ACTIONS(1901), - [aux_sym__val_number_token2] = ACTIONS(1901), - [aux_sym__val_number_token3] = ACTIONS(1901), - [anon_sym_DQUOTE] = ACTIONS(1901), - [sym__str_single_quotes] = ACTIONS(1901), - [sym__str_back_ticks] = ACTIONS(1901), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1901), - [anon_sym_PLUS] = ACTIONS(1899), + [670] = { + [sym_expr_parenthesized] = STATE(1340), + [sym_val_range] = STATE(1611), + [sym__val_range] = STATE(7566), + [sym__val_range_with_end] = STATE(7410), + [sym__value] = STATE(1611), + [sym_val_nothing] = STATE(1755), + [sym_val_bool] = STATE(1405), + [sym_val_variable] = STATE(1306), + [sym_val_number] = STATE(1755), + [sym__val_number_decimal] = STATE(1060), + [sym__val_number] = STATE(1569), + [sym_val_duration] = STATE(1755), + [sym_val_filesize] = STATE(1755), + [sym_val_binary] = STATE(1755), + [sym_val_string] = STATE(1755), + [sym__str_double_quotes] = STATE(1657), + [sym_val_interpolated] = STATE(1755), + [sym__inter_single_quotes] = STATE(1574), + [sym__inter_double_quotes] = STATE(1575), + [sym_val_list] = STATE(1755), + [sym_val_record] = STATE(1755), + [sym_val_table] = STATE(1755), + [sym_val_closure] = STATE(1755), + [sym__flag] = STATE(1611), + [sym_short_flag] = STATE(1719), + [sym_long_flag] = STATE(1719), + [sym_unquoted] = STATE(1444), + [sym__unquoted_with_expr] = STATE(1612), + [sym__unquoted_anonymous_prefix] = STATE(7281), + [sym_comment] = STATE(670), + [aux_sym_ctrl_do_repeat2] = STATE(669), + [anon_sym_true] = ACTIONS(2525), + [anon_sym_false] = ACTIONS(2525), + [anon_sym_null] = ACTIONS(2527), + [aux_sym_cmd_identifier_token38] = ACTIONS(2529), + [aux_sym_cmd_identifier_token39] = ACTIONS(2529), + [aux_sym_cmd_identifier_token40] = ACTIONS(2529), + [sym__newline] = ACTIONS(2750), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_err_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_GT_PIPE] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2750), + [anon_sym_LBRACK] = ACTIONS(2533), + [anon_sym_LPAREN] = ACTIONS(2535), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_DOLLAR] = ACTIONS(2537), + [anon_sym_DASH_DASH] = ACTIONS(2539), + [anon_sym_DASH] = ACTIONS(2541), + [aux_sym_ctrl_match_token1] = ACTIONS(2543), + [anon_sym_RBRACE] = ACTIONS(2750), + [anon_sym_DOT_DOT] = ACTIONS(2545), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), + [anon_sym_DOT_DOT_LT] = ACTIONS(2547), + [aux_sym__val_number_decimal_token1] = ACTIONS(2549), + [aux_sym__val_number_decimal_token2] = ACTIONS(2551), + [aux_sym__val_number_decimal_token3] = ACTIONS(2553), + [aux_sym__val_number_decimal_token4] = ACTIONS(2555), + [aux_sym__val_number_token1] = ACTIONS(2557), + [aux_sym__val_number_token2] = ACTIONS(2557), + [aux_sym__val_number_token3] = ACTIONS(2557), + [anon_sym_0b] = ACTIONS(2559), + [anon_sym_0o] = ACTIONS(2561), + [anon_sym_0x] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2563), + [anon_sym_DQUOTE] = ACTIONS(2565), + [sym__str_single_quotes] = ACTIONS(2567), + [sym__str_back_ticks] = ACTIONS(2567), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2569), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2571), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(2577), [anon_sym_POUND] = ACTIONS(247), }, - [651] = { - [sym_comment] = STATE(651), - [anon_sym_export] = ACTIONS(1835), - [anon_sym_alias] = ACTIONS(1835), - [anon_sym_let] = ACTIONS(1835), - [anon_sym_let_DASHenv] = ACTIONS(1835), - [anon_sym_mut] = ACTIONS(1835), - [anon_sym_const] = ACTIONS(1835), - [aux_sym_cmd_identifier_token1] = ACTIONS(1835), - [aux_sym_cmd_identifier_token2] = ACTIONS(1835), - [aux_sym_cmd_identifier_token3] = ACTIONS(1835), - [aux_sym_cmd_identifier_token4] = ACTIONS(1835), - [aux_sym_cmd_identifier_token5] = ACTIONS(1835), - [aux_sym_cmd_identifier_token6] = ACTIONS(1835), - [aux_sym_cmd_identifier_token7] = ACTIONS(1835), - [aux_sym_cmd_identifier_token8] = ACTIONS(1835), - [aux_sym_cmd_identifier_token9] = ACTIONS(1835), - [aux_sym_cmd_identifier_token10] = ACTIONS(1835), - [aux_sym_cmd_identifier_token11] = ACTIONS(1835), - [aux_sym_cmd_identifier_token12] = ACTIONS(1835), - [aux_sym_cmd_identifier_token13] = ACTIONS(1835), - [aux_sym_cmd_identifier_token14] = ACTIONS(1835), - [aux_sym_cmd_identifier_token15] = ACTIONS(1835), - [aux_sym_cmd_identifier_token16] = ACTIONS(1835), - [aux_sym_cmd_identifier_token17] = ACTIONS(1835), - [aux_sym_cmd_identifier_token18] = ACTIONS(1835), - [aux_sym_cmd_identifier_token19] = ACTIONS(1835), - [aux_sym_cmd_identifier_token20] = ACTIONS(1835), - [aux_sym_cmd_identifier_token21] = ACTIONS(1835), - [aux_sym_cmd_identifier_token22] = ACTIONS(1835), - [aux_sym_cmd_identifier_token23] = ACTIONS(1835), - [aux_sym_cmd_identifier_token24] = ACTIONS(1835), - [aux_sym_cmd_identifier_token25] = ACTIONS(1835), - [aux_sym_cmd_identifier_token26] = ACTIONS(1835), - [aux_sym_cmd_identifier_token27] = ACTIONS(1835), - [aux_sym_cmd_identifier_token28] = ACTIONS(1835), - [aux_sym_cmd_identifier_token29] = ACTIONS(1835), - [aux_sym_cmd_identifier_token30] = ACTIONS(1835), - [aux_sym_cmd_identifier_token31] = ACTIONS(1835), - [aux_sym_cmd_identifier_token32] = ACTIONS(1835), - [aux_sym_cmd_identifier_token33] = ACTIONS(1835), - [aux_sym_cmd_identifier_token34] = ACTIONS(1835), - [aux_sym_cmd_identifier_token35] = ACTIONS(1835), - [aux_sym_cmd_identifier_token36] = ACTIONS(1835), - [anon_sym_true] = ACTIONS(1837), - [anon_sym_false] = ACTIONS(1837), - [anon_sym_null] = ACTIONS(1837), - [aux_sym_cmd_identifier_token38] = ACTIONS(1835), - [aux_sym_cmd_identifier_token39] = ACTIONS(1837), - [aux_sym_cmd_identifier_token40] = ACTIONS(1837), - [anon_sym_def] = ACTIONS(1835), - [anon_sym_export_DASHenv] = ACTIONS(1835), - [anon_sym_extern] = ACTIONS(1835), - [anon_sym_module] = ACTIONS(1835), - [anon_sym_use] = ACTIONS(1835), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1837), - [anon_sym_error] = ACTIONS(1835), - [anon_sym_list] = ACTIONS(1835), - [anon_sym_DASH] = ACTIONS(1835), - [anon_sym_break] = ACTIONS(1835), - [anon_sym_continue] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_in] = ACTIONS(1835), - [anon_sym_loop] = ACTIONS(1835), - [anon_sym_make] = ACTIONS(1835), - [anon_sym_while] = ACTIONS(1835), - [anon_sym_do] = ACTIONS(1835), - [anon_sym_if] = ACTIONS(1835), - [anon_sym_else] = ACTIONS(1835), - [anon_sym_match] = ACTIONS(1835), - [anon_sym_RBRACE] = ACTIONS(1837), - [anon_sym_try] = ACTIONS(1835), - [anon_sym_catch] = ACTIONS(1835), - [anon_sym_return] = ACTIONS(1835), - [anon_sym_source] = ACTIONS(1835), - [anon_sym_source_DASHenv] = ACTIONS(1835), - [anon_sym_register] = ACTIONS(1835), - [anon_sym_hide] = ACTIONS(1835), - [anon_sym_hide_DASHenv] = ACTIONS(1835), - [anon_sym_overlay] = ACTIONS(1835), - [anon_sym_new] = ACTIONS(1835), - [anon_sym_as] = ACTIONS(1835), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1837), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1837), - [aux_sym__val_number_decimal_token1] = ACTIONS(1835), - [aux_sym__val_number_decimal_token2] = ACTIONS(1837), - [aux_sym__val_number_decimal_token3] = ACTIONS(1837), - [aux_sym__val_number_decimal_token4] = ACTIONS(1837), - [aux_sym__val_number_token1] = ACTIONS(1837), - [aux_sym__val_number_token2] = ACTIONS(1837), - [aux_sym__val_number_token3] = ACTIONS(1837), - [anon_sym_DQUOTE] = ACTIONS(1837), - [sym__str_single_quotes] = ACTIONS(1837), - [sym__str_back_ticks] = ACTIONS(1837), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1835), + [671] = { + [sym_expr_parenthesized] = STATE(1340), + [sym_val_range] = STATE(1611), + [sym__val_range] = STATE(7566), + [sym__val_range_with_end] = STATE(7410), + [sym__value] = STATE(1611), + [sym_val_nothing] = STATE(1755), + [sym_val_bool] = STATE(1405), + [sym_val_variable] = STATE(1306), + [sym_val_number] = STATE(1755), + [sym__val_number_decimal] = STATE(1060), + [sym__val_number] = STATE(1569), + [sym_val_duration] = STATE(1755), + [sym_val_filesize] = STATE(1755), + [sym_val_binary] = STATE(1755), + [sym_val_string] = STATE(1755), + [sym__str_double_quotes] = STATE(1657), + [sym_val_interpolated] = STATE(1755), + [sym__inter_single_quotes] = STATE(1574), + [sym__inter_double_quotes] = STATE(1575), + [sym_val_list] = STATE(1755), + [sym_val_record] = STATE(1755), + [sym_val_table] = STATE(1755), + [sym_val_closure] = STATE(1755), + [sym__flag] = STATE(1611), + [sym_short_flag] = STATE(1719), + [sym_long_flag] = STATE(1719), + [sym_unquoted] = STATE(1444), + [sym__unquoted_with_expr] = STATE(1612), + [sym__unquoted_anonymous_prefix] = STATE(7281), + [sym_comment] = STATE(671), + [aux_sym_ctrl_do_repeat2] = STATE(664), + [anon_sym_true] = ACTIONS(2525), + [anon_sym_false] = ACTIONS(2525), + [anon_sym_null] = ACTIONS(2527), + [aux_sym_cmd_identifier_token38] = ACTIONS(2529), + [aux_sym_cmd_identifier_token39] = ACTIONS(2529), + [aux_sym_cmd_identifier_token40] = ACTIONS(2529), + [sym__newline] = ACTIONS(2748), + [anon_sym_SEMI] = ACTIONS(2748), + [anon_sym_PIPE] = ACTIONS(2748), + [anon_sym_err_GT_PIPE] = ACTIONS(2748), + [anon_sym_out_GT_PIPE] = ACTIONS(2748), + [anon_sym_e_GT_PIPE] = ACTIONS(2748), + [anon_sym_o_GT_PIPE] = ACTIONS(2748), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2748), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2748), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2748), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2748), + [anon_sym_LBRACK] = ACTIONS(2533), + [anon_sym_LPAREN] = ACTIONS(2535), + [anon_sym_RPAREN] = ACTIONS(2748), + [anon_sym_DOLLAR] = ACTIONS(2537), + [anon_sym_DASH_DASH] = ACTIONS(2539), + [anon_sym_DASH] = ACTIONS(2541), + [aux_sym_ctrl_match_token1] = ACTIONS(2543), + [anon_sym_RBRACE] = ACTIONS(2748), + [anon_sym_DOT_DOT] = ACTIONS(2545), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), + [anon_sym_DOT_DOT_LT] = ACTIONS(2547), + [aux_sym__val_number_decimal_token1] = ACTIONS(2549), + [aux_sym__val_number_decimal_token2] = ACTIONS(2551), + [aux_sym__val_number_decimal_token3] = ACTIONS(2553), + [aux_sym__val_number_decimal_token4] = ACTIONS(2555), + [aux_sym__val_number_token1] = ACTIONS(2557), + [aux_sym__val_number_token2] = ACTIONS(2557), + [aux_sym__val_number_token3] = ACTIONS(2557), + [anon_sym_0b] = ACTIONS(2559), + [anon_sym_0o] = ACTIONS(2561), + [anon_sym_0x] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2563), + [anon_sym_DQUOTE] = ACTIONS(2565), + [sym__str_single_quotes] = ACTIONS(2567), + [sym__str_back_ticks] = ACTIONS(2567), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2569), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2571), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(2577), [anon_sym_POUND] = ACTIONS(247), }, - [652] = { - [sym_comment] = STATE(652), - [anon_sym_export] = ACTIONS(2295), - [anon_sym_alias] = ACTIONS(2295), - [anon_sym_let] = ACTIONS(2295), - [anon_sym_let_DASHenv] = ACTIONS(2295), - [anon_sym_mut] = ACTIONS(2295), - [anon_sym_const] = ACTIONS(2295), - [aux_sym_cmd_identifier_token1] = ACTIONS(2295), - [aux_sym_cmd_identifier_token2] = ACTIONS(2295), - [aux_sym_cmd_identifier_token3] = ACTIONS(2295), - [aux_sym_cmd_identifier_token4] = ACTIONS(2295), - [aux_sym_cmd_identifier_token5] = ACTIONS(2295), - [aux_sym_cmd_identifier_token6] = ACTIONS(2295), - [aux_sym_cmd_identifier_token7] = ACTIONS(2295), - [aux_sym_cmd_identifier_token8] = ACTIONS(2295), - [aux_sym_cmd_identifier_token9] = ACTIONS(2295), - [aux_sym_cmd_identifier_token10] = ACTIONS(2295), - [aux_sym_cmd_identifier_token11] = ACTIONS(2295), - [aux_sym_cmd_identifier_token12] = ACTIONS(2295), - [aux_sym_cmd_identifier_token13] = ACTIONS(2295), - [aux_sym_cmd_identifier_token14] = ACTIONS(2295), - [aux_sym_cmd_identifier_token15] = ACTIONS(2295), - [aux_sym_cmd_identifier_token16] = ACTIONS(2295), - [aux_sym_cmd_identifier_token17] = ACTIONS(2295), - [aux_sym_cmd_identifier_token18] = ACTIONS(2295), - [aux_sym_cmd_identifier_token19] = ACTIONS(2295), - [aux_sym_cmd_identifier_token20] = ACTIONS(2295), - [aux_sym_cmd_identifier_token21] = ACTIONS(2295), - [aux_sym_cmd_identifier_token22] = ACTIONS(2295), - [aux_sym_cmd_identifier_token23] = ACTIONS(2295), - [aux_sym_cmd_identifier_token24] = ACTIONS(2295), - [aux_sym_cmd_identifier_token25] = ACTIONS(2295), - [aux_sym_cmd_identifier_token26] = ACTIONS(2295), - [aux_sym_cmd_identifier_token27] = ACTIONS(2295), - [aux_sym_cmd_identifier_token28] = ACTIONS(2295), - [aux_sym_cmd_identifier_token29] = ACTIONS(2295), - [aux_sym_cmd_identifier_token30] = ACTIONS(2295), - [aux_sym_cmd_identifier_token31] = ACTIONS(2295), - [aux_sym_cmd_identifier_token32] = ACTIONS(2295), - [aux_sym_cmd_identifier_token33] = ACTIONS(2295), - [aux_sym_cmd_identifier_token34] = ACTIONS(2295), - [aux_sym_cmd_identifier_token35] = ACTIONS(2295), - [aux_sym_cmd_identifier_token36] = ACTIONS(2295), - [anon_sym_true] = ACTIONS(2297), - [anon_sym_false] = ACTIONS(2297), - [anon_sym_null] = ACTIONS(2297), - [aux_sym_cmd_identifier_token38] = ACTIONS(2295), - [aux_sym_cmd_identifier_token39] = ACTIONS(2297), - [aux_sym_cmd_identifier_token40] = ACTIONS(2297), - [anon_sym_def] = ACTIONS(2295), - [anon_sym_export_DASHenv] = ACTIONS(2295), - [anon_sym_extern] = ACTIONS(2295), - [anon_sym_module] = ACTIONS(2295), - [anon_sym_use] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_DOLLAR] = ACTIONS(2297), - [anon_sym_error] = ACTIONS(2295), - [anon_sym_list] = ACTIONS(2295), - [anon_sym_DASH] = ACTIONS(2295), - [anon_sym_break] = ACTIONS(2295), - [anon_sym_continue] = ACTIONS(2295), - [anon_sym_for] = ACTIONS(2295), - [anon_sym_in] = ACTIONS(2295), - [anon_sym_loop] = ACTIONS(2295), - [anon_sym_make] = ACTIONS(2295), - [anon_sym_while] = ACTIONS(2295), - [anon_sym_do] = ACTIONS(2295), - [anon_sym_if] = ACTIONS(2295), - [anon_sym_else] = ACTIONS(2295), - [anon_sym_match] = ACTIONS(2295), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_try] = ACTIONS(2295), - [anon_sym_catch] = ACTIONS(2295), - [anon_sym_return] = ACTIONS(2295), - [anon_sym_source] = ACTIONS(2295), - [anon_sym_source_DASHenv] = ACTIONS(2295), - [anon_sym_register] = ACTIONS(2295), - [anon_sym_hide] = ACTIONS(2295), - [anon_sym_hide_DASHenv] = ACTIONS(2295), - [anon_sym_overlay] = ACTIONS(2295), - [anon_sym_new] = ACTIONS(2295), - [anon_sym_as] = ACTIONS(2295), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2297), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2297), - [aux_sym__val_number_decimal_token1] = ACTIONS(2295), - [aux_sym__val_number_decimal_token2] = ACTIONS(2297), - [aux_sym__val_number_decimal_token3] = ACTIONS(2297), - [aux_sym__val_number_decimal_token4] = ACTIONS(2297), - [aux_sym__val_number_token1] = ACTIONS(2297), - [aux_sym__val_number_token2] = ACTIONS(2297), - [aux_sym__val_number_token3] = ACTIONS(2297), - [anon_sym_DQUOTE] = ACTIONS(2297), - [sym__str_single_quotes] = ACTIONS(2297), - [sym__str_back_ticks] = ACTIONS(2297), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2295), + [672] = { + [sym_expr_parenthesized] = STATE(1470), + [sym_val_range] = STATE(1807), + [sym__val_range] = STATE(7566), + [sym__val_range_with_end] = STATE(7410), + [sym__value] = STATE(1807), + [sym_val_nothing] = STATE(1755), + [sym_val_bool] = STATE(1405), + [sym_val_variable] = STATE(1306), + [sym_val_number] = STATE(1755), + [sym__val_number_decimal] = STATE(1060), + [sym__val_number] = STATE(1569), + [sym_val_duration] = STATE(1755), + [sym_val_filesize] = STATE(1755), + [sym_val_binary] = STATE(1755), + [sym_val_string] = STATE(1755), + [sym__str_double_quotes] = STATE(1657), + [sym_val_interpolated] = STATE(1755), + [sym__inter_single_quotes] = STATE(1574), + [sym__inter_double_quotes] = STATE(1575), + [sym_val_list] = STATE(1755), + [sym_val_record] = STATE(1755), + [sym_val_table] = STATE(1755), + [sym_val_closure] = STATE(1755), + [sym__flag] = STATE(1807), + [sym_short_flag] = STATE(1719), + [sym_long_flag] = STATE(1719), + [sym_unquoted] = STATE(1481), + [sym__unquoted_with_expr] = STATE(1808), + [sym__unquoted_anonymous_prefix] = STATE(7281), + [sym_comment] = STATE(672), + [aux_sym_shebang_repeat1] = STATE(884), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(666), + [anon_sym_true] = ACTIONS(2525), + [anon_sym_false] = ACTIONS(2525), + [anon_sym_null] = ACTIONS(2527), + [aux_sym_cmd_identifier_token38] = ACTIONS(2529), + [aux_sym_cmd_identifier_token39] = ACTIONS(2529), + [aux_sym_cmd_identifier_token40] = ACTIONS(2529), + [sym__newline] = ACTIONS(2744), + [anon_sym_SEMI] = ACTIONS(2752), + [anon_sym_PIPE] = ACTIONS(2752), + [anon_sym_err_GT_PIPE] = ACTIONS(2752), + [anon_sym_out_GT_PIPE] = ACTIONS(2752), + [anon_sym_e_GT_PIPE] = ACTIONS(2752), + [anon_sym_o_GT_PIPE] = ACTIONS(2752), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2752), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2752), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2752), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2533), + [anon_sym_LPAREN] = ACTIONS(2535), + [anon_sym_RPAREN] = ACTIONS(2752), + [anon_sym_DOLLAR] = ACTIONS(2537), + [anon_sym_DASH_DASH] = ACTIONS(2539), + [anon_sym_DASH] = ACTIONS(2541), + [aux_sym_ctrl_match_token1] = ACTIONS(2543), + [anon_sym_DOT_DOT] = ACTIONS(2545), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), + [anon_sym_DOT_DOT_LT] = ACTIONS(2547), + [aux_sym__val_number_decimal_token1] = ACTIONS(2549), + [aux_sym__val_number_decimal_token2] = ACTIONS(2551), + [aux_sym__val_number_decimal_token3] = ACTIONS(2553), + [aux_sym__val_number_decimal_token4] = ACTIONS(2555), + [aux_sym__val_number_token1] = ACTIONS(2557), + [aux_sym__val_number_token2] = ACTIONS(2557), + [aux_sym__val_number_token3] = ACTIONS(2557), + [anon_sym_0b] = ACTIONS(2559), + [anon_sym_0o] = ACTIONS(2561), + [anon_sym_0x] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2563), + [anon_sym_DQUOTE] = ACTIONS(2565), + [sym__str_single_quotes] = ACTIONS(2567), + [sym__str_back_ticks] = ACTIONS(2567), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2569), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2571), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(2577), [anon_sym_POUND] = ACTIONS(247), }, - [653] = { - [sym_comment] = STATE(653), - [anon_sym_export] = ACTIONS(2371), - [anon_sym_alias] = ACTIONS(2371), - [anon_sym_let] = ACTIONS(2371), - [anon_sym_let_DASHenv] = ACTIONS(2371), - [anon_sym_mut] = ACTIONS(2371), - [anon_sym_const] = ACTIONS(2371), - [aux_sym_cmd_identifier_token1] = ACTIONS(2371), - [aux_sym_cmd_identifier_token2] = ACTIONS(2371), - [aux_sym_cmd_identifier_token3] = ACTIONS(2371), - [aux_sym_cmd_identifier_token4] = ACTIONS(2371), - [aux_sym_cmd_identifier_token5] = ACTIONS(2371), - [aux_sym_cmd_identifier_token6] = ACTIONS(2371), - [aux_sym_cmd_identifier_token7] = ACTIONS(2371), - [aux_sym_cmd_identifier_token8] = ACTIONS(2371), - [aux_sym_cmd_identifier_token9] = ACTIONS(2371), - [aux_sym_cmd_identifier_token10] = ACTIONS(2371), - [aux_sym_cmd_identifier_token11] = ACTIONS(2371), - [aux_sym_cmd_identifier_token12] = ACTIONS(2371), - [aux_sym_cmd_identifier_token13] = ACTIONS(2371), - [aux_sym_cmd_identifier_token14] = ACTIONS(2371), - [aux_sym_cmd_identifier_token15] = ACTIONS(2371), - [aux_sym_cmd_identifier_token16] = ACTIONS(2371), - [aux_sym_cmd_identifier_token17] = ACTIONS(2371), - [aux_sym_cmd_identifier_token18] = ACTIONS(2371), - [aux_sym_cmd_identifier_token19] = ACTIONS(2371), - [aux_sym_cmd_identifier_token20] = ACTIONS(2371), - [aux_sym_cmd_identifier_token21] = ACTIONS(2371), - [aux_sym_cmd_identifier_token22] = ACTIONS(2371), - [aux_sym_cmd_identifier_token23] = ACTIONS(2371), - [aux_sym_cmd_identifier_token24] = ACTIONS(2371), - [aux_sym_cmd_identifier_token25] = ACTIONS(2371), - [aux_sym_cmd_identifier_token26] = ACTIONS(2371), - [aux_sym_cmd_identifier_token27] = ACTIONS(2371), - [aux_sym_cmd_identifier_token28] = ACTIONS(2371), - [aux_sym_cmd_identifier_token29] = ACTIONS(2371), - [aux_sym_cmd_identifier_token30] = ACTIONS(2371), - [aux_sym_cmd_identifier_token31] = ACTIONS(2371), - [aux_sym_cmd_identifier_token32] = ACTIONS(2371), - [aux_sym_cmd_identifier_token33] = ACTIONS(2371), - [aux_sym_cmd_identifier_token34] = ACTIONS(2371), - [aux_sym_cmd_identifier_token35] = ACTIONS(2371), - [aux_sym_cmd_identifier_token36] = ACTIONS(2371), - [anon_sym_true] = ACTIONS(2373), - [anon_sym_false] = ACTIONS(2373), - [anon_sym_null] = ACTIONS(2373), - [aux_sym_cmd_identifier_token38] = ACTIONS(2371), - [aux_sym_cmd_identifier_token39] = ACTIONS(2373), - [aux_sym_cmd_identifier_token40] = ACTIONS(2373), - [anon_sym_def] = ACTIONS(2371), - [anon_sym_export_DASHenv] = ACTIONS(2371), - [anon_sym_extern] = ACTIONS(2371), - [anon_sym_module] = ACTIONS(2371), - [anon_sym_use] = ACTIONS(2371), - [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_DOLLAR] = ACTIONS(2373), - [anon_sym_error] = ACTIONS(2371), - [anon_sym_list] = ACTIONS(2371), - [anon_sym_DASH] = ACTIONS(2371), - [anon_sym_break] = ACTIONS(2371), - [anon_sym_continue] = ACTIONS(2371), - [anon_sym_for] = ACTIONS(2371), - [anon_sym_in] = ACTIONS(2371), - [anon_sym_loop] = ACTIONS(2371), - [anon_sym_make] = ACTIONS(2371), - [anon_sym_while] = ACTIONS(2371), - [anon_sym_do] = ACTIONS(2371), - [anon_sym_if] = ACTIONS(2371), - [anon_sym_else] = ACTIONS(2371), - [anon_sym_match] = ACTIONS(2371), - [anon_sym_RBRACE] = ACTIONS(2373), - [anon_sym_try] = ACTIONS(2371), - [anon_sym_catch] = ACTIONS(2371), - [anon_sym_return] = ACTIONS(2371), - [anon_sym_source] = ACTIONS(2371), - [anon_sym_source_DASHenv] = ACTIONS(2371), - [anon_sym_register] = ACTIONS(2371), - [anon_sym_hide] = ACTIONS(2371), - [anon_sym_hide_DASHenv] = ACTIONS(2371), - [anon_sym_overlay] = ACTIONS(2371), - [anon_sym_new] = ACTIONS(2371), - [anon_sym_as] = ACTIONS(2371), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2373), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2373), - [aux_sym__val_number_decimal_token1] = ACTIONS(2371), - [aux_sym__val_number_decimal_token2] = ACTIONS(2373), - [aux_sym__val_number_decimal_token3] = ACTIONS(2373), - [aux_sym__val_number_decimal_token4] = ACTIONS(2373), - [aux_sym__val_number_token1] = ACTIONS(2373), - [aux_sym__val_number_token2] = ACTIONS(2373), - [aux_sym__val_number_token3] = ACTIONS(2373), - [anon_sym_DQUOTE] = ACTIONS(2373), - [sym__str_single_quotes] = ACTIONS(2373), - [sym__str_back_ticks] = ACTIONS(2373), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2373), - [anon_sym_PLUS] = ACTIONS(2371), + [673] = { + [sym_expr_parenthesized] = STATE(1470), + [sym_val_range] = STATE(1807), + [sym__val_range] = STATE(7566), + [sym__val_range_with_end] = STATE(7410), + [sym__value] = STATE(1807), + [sym_val_nothing] = STATE(1755), + [sym_val_bool] = STATE(1405), + [sym_val_variable] = STATE(1306), + [sym_val_number] = STATE(1755), + [sym__val_number_decimal] = STATE(1060), + [sym__val_number] = STATE(1569), + [sym_val_duration] = STATE(1755), + [sym_val_filesize] = STATE(1755), + [sym_val_binary] = STATE(1755), + [sym_val_string] = STATE(1755), + [sym__str_double_quotes] = STATE(1657), + [sym_val_interpolated] = STATE(1755), + [sym__inter_single_quotes] = STATE(1574), + [sym__inter_double_quotes] = STATE(1575), + [sym_val_list] = STATE(1755), + [sym_val_record] = STATE(1755), + [sym_val_table] = STATE(1755), + [sym_val_closure] = STATE(1755), + [sym__flag] = STATE(1807), + [sym_short_flag] = STATE(1719), + [sym_long_flag] = STATE(1719), + [sym_unquoted] = STATE(1481), + [sym__unquoted_with_expr] = STATE(1808), + [sym__unquoted_anonymous_prefix] = STATE(7281), + [sym_comment] = STATE(673), + [aux_sym_shebang_repeat1] = STATE(884), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(668), + [anon_sym_true] = ACTIONS(2525), + [anon_sym_false] = ACTIONS(2525), + [anon_sym_null] = ACTIONS(2527), + [aux_sym_cmd_identifier_token38] = ACTIONS(2529), + [aux_sym_cmd_identifier_token39] = ACTIONS(2529), + [aux_sym_cmd_identifier_token40] = ACTIONS(2529), + [sym__newline] = ACTIONS(2752), + [anon_sym_SEMI] = ACTIONS(2752), + [anon_sym_PIPE] = ACTIONS(2752), + [anon_sym_err_GT_PIPE] = ACTIONS(2752), + [anon_sym_out_GT_PIPE] = ACTIONS(2752), + [anon_sym_e_GT_PIPE] = ACTIONS(2752), + [anon_sym_o_GT_PIPE] = ACTIONS(2752), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2752), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2752), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2752), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2533), + [anon_sym_LPAREN] = ACTIONS(2535), + [anon_sym_RPAREN] = ACTIONS(2752), + [anon_sym_DOLLAR] = ACTIONS(2537), + [anon_sym_DASH_DASH] = ACTIONS(2539), + [anon_sym_DASH] = ACTIONS(2541), + [aux_sym_ctrl_match_token1] = ACTIONS(2543), + [anon_sym_DOT_DOT] = ACTIONS(2545), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), + [anon_sym_DOT_DOT_LT] = ACTIONS(2547), + [aux_sym__val_number_decimal_token1] = ACTIONS(2549), + [aux_sym__val_number_decimal_token2] = ACTIONS(2551), + [aux_sym__val_number_decimal_token3] = ACTIONS(2553), + [aux_sym__val_number_decimal_token4] = ACTIONS(2555), + [aux_sym__val_number_token1] = ACTIONS(2557), + [aux_sym__val_number_token2] = ACTIONS(2557), + [aux_sym__val_number_token3] = ACTIONS(2557), + [anon_sym_0b] = ACTIONS(2559), + [anon_sym_0o] = ACTIONS(2561), + [anon_sym_0x] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2563), + [anon_sym_DQUOTE] = ACTIONS(2565), + [sym__str_single_quotes] = ACTIONS(2567), + [sym__str_back_ticks] = ACTIONS(2567), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2569), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2571), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(2577), [anon_sym_POUND] = ACTIONS(247), }, - [654] = { - [sym_comment] = STATE(654), - [anon_sym_export] = ACTIONS(1953), - [anon_sym_alias] = ACTIONS(1953), - [anon_sym_let] = ACTIONS(1953), - [anon_sym_let_DASHenv] = ACTIONS(1953), - [anon_sym_mut] = ACTIONS(1953), - [anon_sym_const] = ACTIONS(1953), - [aux_sym_cmd_identifier_token1] = ACTIONS(1953), - [aux_sym_cmd_identifier_token2] = ACTIONS(1953), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [aux_sym_cmd_identifier_token6] = ACTIONS(1953), - [aux_sym_cmd_identifier_token7] = ACTIONS(1953), - [aux_sym_cmd_identifier_token8] = ACTIONS(1953), - [aux_sym_cmd_identifier_token9] = ACTIONS(1953), - [aux_sym_cmd_identifier_token10] = ACTIONS(1953), - [aux_sym_cmd_identifier_token11] = ACTIONS(1953), - [aux_sym_cmd_identifier_token12] = ACTIONS(1953), - [aux_sym_cmd_identifier_token13] = ACTIONS(1953), - [aux_sym_cmd_identifier_token14] = ACTIONS(1953), - [aux_sym_cmd_identifier_token15] = ACTIONS(1953), - [aux_sym_cmd_identifier_token16] = ACTIONS(1953), - [aux_sym_cmd_identifier_token17] = ACTIONS(1953), - [aux_sym_cmd_identifier_token18] = ACTIONS(1953), - [aux_sym_cmd_identifier_token19] = ACTIONS(1953), - [aux_sym_cmd_identifier_token20] = ACTIONS(1953), - [aux_sym_cmd_identifier_token21] = ACTIONS(1953), - [aux_sym_cmd_identifier_token22] = ACTIONS(1953), - [aux_sym_cmd_identifier_token23] = ACTIONS(1953), - [aux_sym_cmd_identifier_token24] = ACTIONS(1953), - [aux_sym_cmd_identifier_token25] = ACTIONS(1953), - [aux_sym_cmd_identifier_token26] = ACTIONS(1953), - [aux_sym_cmd_identifier_token27] = ACTIONS(1953), - [aux_sym_cmd_identifier_token28] = ACTIONS(1953), - [aux_sym_cmd_identifier_token29] = ACTIONS(1953), - [aux_sym_cmd_identifier_token30] = ACTIONS(1953), - [aux_sym_cmd_identifier_token31] = ACTIONS(1953), - [aux_sym_cmd_identifier_token32] = ACTIONS(1953), - [aux_sym_cmd_identifier_token33] = ACTIONS(1953), - [aux_sym_cmd_identifier_token34] = ACTIONS(1953), - [aux_sym_cmd_identifier_token35] = ACTIONS(1953), - [aux_sym_cmd_identifier_token36] = ACTIONS(1953), - [anon_sym_true] = ACTIONS(1955), - [anon_sym_false] = ACTIONS(1955), - [anon_sym_null] = ACTIONS(1955), - [aux_sym_cmd_identifier_token38] = ACTIONS(1953), - [aux_sym_cmd_identifier_token39] = ACTIONS(1955), - [aux_sym_cmd_identifier_token40] = ACTIONS(1955), - [anon_sym_def] = ACTIONS(1953), - [anon_sym_export_DASHenv] = ACTIONS(1953), - [anon_sym_extern] = ACTIONS(1953), - [anon_sym_module] = ACTIONS(1953), - [anon_sym_use] = ACTIONS(1953), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_DOLLAR] = ACTIONS(1955), - [anon_sym_error] = ACTIONS(1953), - [anon_sym_list] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1953), - [anon_sym_break] = ACTIONS(1953), - [anon_sym_continue] = ACTIONS(1953), - [anon_sym_for] = ACTIONS(1953), - [anon_sym_in] = ACTIONS(1953), - [anon_sym_loop] = ACTIONS(1953), - [anon_sym_make] = ACTIONS(1953), - [anon_sym_while] = ACTIONS(1953), - [anon_sym_do] = ACTIONS(1953), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_else] = ACTIONS(1953), - [anon_sym_match] = ACTIONS(1953), - [anon_sym_RBRACE] = ACTIONS(1955), - [anon_sym_try] = ACTIONS(1953), - [anon_sym_catch] = ACTIONS(1953), - [anon_sym_return] = ACTIONS(1953), - [anon_sym_source] = ACTIONS(1953), - [anon_sym_source_DASHenv] = ACTIONS(1953), - [anon_sym_register] = ACTIONS(1953), - [anon_sym_hide] = ACTIONS(1953), - [anon_sym_hide_DASHenv] = ACTIONS(1953), - [anon_sym_overlay] = ACTIONS(1953), - [anon_sym_new] = ACTIONS(1953), - [anon_sym_as] = ACTIONS(1953), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1955), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1955), - [aux_sym__val_number_decimal_token1] = ACTIONS(1953), - [aux_sym__val_number_decimal_token2] = ACTIONS(1955), - [aux_sym__val_number_decimal_token3] = ACTIONS(1955), - [aux_sym__val_number_decimal_token4] = ACTIONS(1955), - [aux_sym__val_number_token1] = ACTIONS(1955), - [aux_sym__val_number_token2] = ACTIONS(1955), - [aux_sym__val_number_token3] = ACTIONS(1955), - [anon_sym_DQUOTE] = ACTIONS(1955), - [sym__str_single_quotes] = ACTIONS(1955), - [sym__str_back_ticks] = ACTIONS(1955), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1955), - [anon_sym_PLUS] = ACTIONS(1953), + [674] = { + [sym_expr_parenthesized] = STATE(1403), + [sym_val_range] = STATE(1784), + [sym__val_range] = STATE(7679), + [sym__val_range_with_end] = STATE(7434), + [sym__value] = STATE(1784), + [sym_val_nothing] = STATE(1822), + [sym_val_bool] = STATE(1486), + [sym_val_variable] = STATE(1406), + [sym_val_number] = STATE(1822), + [sym__val_number_decimal] = STATE(1140), + [sym__val_number] = STATE(1866), + [sym_val_duration] = STATE(1822), + [sym_val_filesize] = STATE(1822), + [sym_val_binary] = STATE(1822), + [sym_val_string] = STATE(1822), + [sym__str_double_quotes] = STATE(1910), + [sym_val_interpolated] = STATE(1822), + [sym__inter_single_quotes] = STATE(1911), + [sym__inter_double_quotes] = STATE(1912), + [sym_val_list] = STATE(1822), + [sym_val_record] = STATE(1822), + [sym_val_table] = STATE(1822), + [sym_val_closure] = STATE(1822), + [sym__flag] = STATE(1784), + [sym_short_flag] = STATE(1786), + [sym_long_flag] = STATE(1786), + [sym_unquoted] = STATE(1480), + [sym__unquoted_with_expr] = STATE(1790), + [sym__unquoted_anonymous_prefix] = STATE(6696), + [sym_comment] = STATE(674), + [aux_sym_ctrl_do_repeat2] = STATE(680), + [ts_builtin_sym_end] = ACTIONS(2531), + [anon_sym_true] = ACTIONS(2754), + [anon_sym_false] = ACTIONS(2754), + [anon_sym_null] = ACTIONS(2756), + [aux_sym_cmd_identifier_token38] = ACTIONS(2758), + [aux_sym_cmd_identifier_token39] = ACTIONS(2758), + [aux_sym_cmd_identifier_token40] = ACTIONS(2758), + [sym__newline] = ACTIONS(2531), + [anon_sym_SEMI] = ACTIONS(2531), + [anon_sym_PIPE] = ACTIONS(2531), + [anon_sym_err_GT_PIPE] = ACTIONS(2531), + [anon_sym_out_GT_PIPE] = ACTIONS(2531), + [anon_sym_e_GT_PIPE] = ACTIONS(2531), + [anon_sym_o_GT_PIPE] = ACTIONS(2531), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2531), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2531), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2531), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2531), + [anon_sym_LBRACK] = ACTIONS(2760), + [anon_sym_LPAREN] = ACTIONS(2762), + [anon_sym_DOLLAR] = ACTIONS(2764), + [anon_sym_DASH_DASH] = ACTIONS(2766), + [anon_sym_DASH] = ACTIONS(2768), + [aux_sym_ctrl_match_token1] = ACTIONS(2770), + [anon_sym_DOT_DOT] = ACTIONS(2772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2774), + [anon_sym_DOT_DOT_LT] = ACTIONS(2774), + [aux_sym__val_number_decimal_token1] = ACTIONS(2776), + [aux_sym__val_number_decimal_token2] = ACTIONS(2778), + [aux_sym__val_number_decimal_token3] = ACTIONS(2780), + [aux_sym__val_number_decimal_token4] = ACTIONS(2782), + [aux_sym__val_number_token1] = ACTIONS(2784), + [aux_sym__val_number_token2] = ACTIONS(2784), + [aux_sym__val_number_token3] = ACTIONS(2784), + [anon_sym_0b] = ACTIONS(2786), + [anon_sym_0o] = ACTIONS(2788), + [anon_sym_0x] = ACTIONS(2788), + [sym_val_date] = ACTIONS(2790), + [anon_sym_DQUOTE] = ACTIONS(2792), + [sym__str_single_quotes] = ACTIONS(2794), + [sym__str_back_ticks] = ACTIONS(2794), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2796), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2798), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(2800), [anon_sym_POUND] = ACTIONS(247), }, - [655] = { - [sym_comment] = STATE(655), - [anon_sym_export] = ACTIONS(1943), - [anon_sym_alias] = ACTIONS(1943), - [anon_sym_let] = ACTIONS(1943), - [anon_sym_let_DASHenv] = ACTIONS(1943), - [anon_sym_mut] = ACTIONS(1943), - [anon_sym_const] = ACTIONS(1943), - [aux_sym_cmd_identifier_token1] = ACTIONS(1943), - [aux_sym_cmd_identifier_token2] = ACTIONS(1943), - [aux_sym_cmd_identifier_token3] = ACTIONS(1943), - [aux_sym_cmd_identifier_token4] = ACTIONS(1943), - [aux_sym_cmd_identifier_token5] = ACTIONS(1943), - [aux_sym_cmd_identifier_token6] = ACTIONS(1943), - [aux_sym_cmd_identifier_token7] = ACTIONS(1943), - [aux_sym_cmd_identifier_token8] = ACTIONS(1943), - [aux_sym_cmd_identifier_token9] = ACTIONS(1943), - [aux_sym_cmd_identifier_token10] = ACTIONS(1943), - [aux_sym_cmd_identifier_token11] = ACTIONS(1943), - [aux_sym_cmd_identifier_token12] = ACTIONS(1943), - [aux_sym_cmd_identifier_token13] = ACTIONS(1943), - [aux_sym_cmd_identifier_token14] = ACTIONS(1943), - [aux_sym_cmd_identifier_token15] = ACTIONS(1943), - [aux_sym_cmd_identifier_token16] = ACTIONS(1943), - [aux_sym_cmd_identifier_token17] = ACTIONS(1943), - [aux_sym_cmd_identifier_token18] = ACTIONS(1943), - [aux_sym_cmd_identifier_token19] = ACTIONS(1943), - [aux_sym_cmd_identifier_token20] = ACTIONS(1943), - [aux_sym_cmd_identifier_token21] = ACTIONS(1943), - [aux_sym_cmd_identifier_token22] = ACTIONS(1943), - [aux_sym_cmd_identifier_token23] = ACTIONS(1943), - [aux_sym_cmd_identifier_token24] = ACTIONS(1943), - [aux_sym_cmd_identifier_token25] = ACTIONS(1943), - [aux_sym_cmd_identifier_token26] = ACTIONS(1943), - [aux_sym_cmd_identifier_token27] = ACTIONS(1943), - [aux_sym_cmd_identifier_token28] = ACTIONS(1943), - [aux_sym_cmd_identifier_token29] = ACTIONS(1943), - [aux_sym_cmd_identifier_token30] = ACTIONS(1943), - [aux_sym_cmd_identifier_token31] = ACTIONS(1943), - [aux_sym_cmd_identifier_token32] = ACTIONS(1943), - [aux_sym_cmd_identifier_token33] = ACTIONS(1943), - [aux_sym_cmd_identifier_token34] = ACTIONS(1943), - [aux_sym_cmd_identifier_token35] = ACTIONS(1943), - [aux_sym_cmd_identifier_token36] = ACTIONS(1943), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1945), - [aux_sym_cmd_identifier_token38] = ACTIONS(1943), - [aux_sym_cmd_identifier_token39] = ACTIONS(1945), - [aux_sym_cmd_identifier_token40] = ACTIONS(1945), - [anon_sym_def] = ACTIONS(1943), - [anon_sym_export_DASHenv] = ACTIONS(1943), - [anon_sym_extern] = ACTIONS(1943), - [anon_sym_module] = ACTIONS(1943), - [anon_sym_use] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_DOLLAR] = ACTIONS(1945), - [anon_sym_error] = ACTIONS(1943), - [anon_sym_list] = ACTIONS(1943), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_break] = ACTIONS(1943), - [anon_sym_continue] = ACTIONS(1943), - [anon_sym_for] = ACTIONS(1943), - [anon_sym_in] = ACTIONS(1943), - [anon_sym_loop] = ACTIONS(1943), - [anon_sym_make] = ACTIONS(1943), - [anon_sym_while] = ACTIONS(1943), - [anon_sym_do] = ACTIONS(1943), - [anon_sym_if] = ACTIONS(1943), - [anon_sym_else] = ACTIONS(1943), - [anon_sym_match] = ACTIONS(1943), - [anon_sym_RBRACE] = ACTIONS(1945), - [anon_sym_try] = ACTIONS(1943), - [anon_sym_catch] = ACTIONS(1943), - [anon_sym_return] = ACTIONS(1943), - [anon_sym_source] = ACTIONS(1943), - [anon_sym_source_DASHenv] = ACTIONS(1943), - [anon_sym_register] = ACTIONS(1943), - [anon_sym_hide] = ACTIONS(1943), - [anon_sym_hide_DASHenv] = ACTIONS(1943), - [anon_sym_overlay] = ACTIONS(1943), - [anon_sym_new] = ACTIONS(1943), - [anon_sym_as] = ACTIONS(1943), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1945), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1945), - [aux_sym__val_number_decimal_token4] = ACTIONS(1945), - [aux_sym__val_number_token1] = ACTIONS(1945), - [aux_sym__val_number_token2] = ACTIONS(1945), - [aux_sym__val_number_token3] = ACTIONS(1945), - [anon_sym_DQUOTE] = ACTIONS(1945), - [sym__str_single_quotes] = ACTIONS(1945), - [sym__str_back_ticks] = ACTIONS(1945), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1945), - [anon_sym_PLUS] = ACTIONS(1943), + [675] = { + [sym__match_pattern_expression] = STATE(3052), + [sym__match_pattern_value] = STATE(3028), + [sym__match_pattern_list] = STATE(3029), + [sym__match_pattern_rest] = STATE(7798), + [sym__match_pattern_record] = STATE(3030), + [sym_expr_parenthesized] = STATE(2710), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(2957), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(2958), + [sym_val_bool] = STATE(2798), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(2728), + [sym_val_number] = STATE(2958), + [sym__val_number_decimal] = STATE(2468), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(2958), + [sym_val_filesize] = STATE(2958), + [sym_val_binary] = STATE(2958), + [sym_val_string] = STATE(2958), + [sym__str_double_quotes] = STATE(2931), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(6663), + [sym__spread_list] = STATE(7324), + [sym_list_body] = STATE(7755), + [sym_val_entry] = STATE(7059), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(2958), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(2852), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), + [sym_comment] = STATE(675), + [aux_sym_shebang_repeat1] = STATE(738), + [aux_sym__match_pattern_list_repeat1] = STATE(1101), + [aux_sym_list_body_repeat1] = STATE(743), + [anon_sym_true] = ACTIONS(2802), + [anon_sym_false] = ACTIONS(2802), + [anon_sym_null] = ACTIONS(2804), + [aux_sym_cmd_identifier_token38] = ACTIONS(2806), + [aux_sym_cmd_identifier_token39] = ACTIONS(2806), + [aux_sym_cmd_identifier_token40] = ACTIONS(2806), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2810), + [anon_sym_RBRACK] = ACTIONS(2812), + [anon_sym_LPAREN] = ACTIONS(2814), + [anon_sym_DOLLAR] = ACTIONS(2816), + [aux_sym_ctrl_match_token1] = ACTIONS(2818), + [anon_sym_DOT_DOT] = ACTIONS(2820), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2822), + [anon_sym_DOT_DOT_LT] = ACTIONS(2822), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2824), + [aux_sym__val_number_decimal_token2] = ACTIONS(2826), + [aux_sym__val_number_decimal_token3] = ACTIONS(2828), + [aux_sym__val_number_decimal_token4] = ACTIONS(2830), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(2838), + [anon_sym_DQUOTE] = ACTIONS(2840), + [sym__str_single_quotes] = ACTIONS(2842), + [sym__str_back_ticks] = ACTIONS(2842), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, - [656] = { - [sym_comment] = STATE(656), - [anon_sym_export] = ACTIONS(2379), - [anon_sym_alias] = ACTIONS(2379), - [anon_sym_let] = ACTIONS(2379), - [anon_sym_let_DASHenv] = ACTIONS(2379), - [anon_sym_mut] = ACTIONS(2379), - [anon_sym_const] = ACTIONS(2379), - [aux_sym_cmd_identifier_token1] = ACTIONS(2379), - [aux_sym_cmd_identifier_token2] = ACTIONS(2379), - [aux_sym_cmd_identifier_token3] = ACTIONS(2379), - [aux_sym_cmd_identifier_token4] = ACTIONS(2379), - [aux_sym_cmd_identifier_token5] = ACTIONS(2379), - [aux_sym_cmd_identifier_token6] = ACTIONS(2379), - [aux_sym_cmd_identifier_token7] = ACTIONS(2379), - [aux_sym_cmd_identifier_token8] = ACTIONS(2379), - [aux_sym_cmd_identifier_token9] = ACTIONS(2379), - [aux_sym_cmd_identifier_token10] = ACTIONS(2379), - [aux_sym_cmd_identifier_token11] = ACTIONS(2379), - [aux_sym_cmd_identifier_token12] = ACTIONS(2379), - [aux_sym_cmd_identifier_token13] = ACTIONS(2379), - [aux_sym_cmd_identifier_token14] = ACTIONS(2379), - [aux_sym_cmd_identifier_token15] = ACTIONS(2379), - [aux_sym_cmd_identifier_token16] = ACTIONS(2379), - [aux_sym_cmd_identifier_token17] = ACTIONS(2379), - [aux_sym_cmd_identifier_token18] = ACTIONS(2379), - [aux_sym_cmd_identifier_token19] = ACTIONS(2379), - [aux_sym_cmd_identifier_token20] = ACTIONS(2379), - [aux_sym_cmd_identifier_token21] = ACTIONS(2379), - [aux_sym_cmd_identifier_token22] = ACTIONS(2379), - [aux_sym_cmd_identifier_token23] = ACTIONS(2379), - [aux_sym_cmd_identifier_token24] = ACTIONS(2379), - [aux_sym_cmd_identifier_token25] = ACTIONS(2379), - [aux_sym_cmd_identifier_token26] = ACTIONS(2379), - [aux_sym_cmd_identifier_token27] = ACTIONS(2379), - [aux_sym_cmd_identifier_token28] = ACTIONS(2379), - [aux_sym_cmd_identifier_token29] = ACTIONS(2379), - [aux_sym_cmd_identifier_token30] = ACTIONS(2379), - [aux_sym_cmd_identifier_token31] = ACTIONS(2379), - [aux_sym_cmd_identifier_token32] = ACTIONS(2379), - [aux_sym_cmd_identifier_token33] = ACTIONS(2379), - [aux_sym_cmd_identifier_token34] = ACTIONS(2379), - [aux_sym_cmd_identifier_token35] = ACTIONS(2379), - [aux_sym_cmd_identifier_token36] = ACTIONS(2379), - [anon_sym_true] = ACTIONS(2381), - [anon_sym_false] = ACTIONS(2381), - [anon_sym_null] = ACTIONS(2381), - [aux_sym_cmd_identifier_token38] = ACTIONS(2379), - [aux_sym_cmd_identifier_token39] = ACTIONS(2381), - [aux_sym_cmd_identifier_token40] = ACTIONS(2381), - [anon_sym_def] = ACTIONS(2379), - [anon_sym_export_DASHenv] = ACTIONS(2379), - [anon_sym_extern] = ACTIONS(2379), - [anon_sym_module] = ACTIONS(2379), - [anon_sym_use] = ACTIONS(2379), - [anon_sym_LPAREN] = ACTIONS(2381), - [anon_sym_DOLLAR] = ACTIONS(2381), - [anon_sym_error] = ACTIONS(2379), - [anon_sym_list] = ACTIONS(2379), - [anon_sym_DASH] = ACTIONS(2379), - [anon_sym_break] = ACTIONS(2379), - [anon_sym_continue] = ACTIONS(2379), - [anon_sym_for] = ACTIONS(2379), - [anon_sym_in] = ACTIONS(2379), - [anon_sym_loop] = ACTIONS(2379), - [anon_sym_make] = ACTIONS(2379), - [anon_sym_while] = ACTIONS(2379), - [anon_sym_do] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(2379), - [anon_sym_else] = ACTIONS(2379), - [anon_sym_match] = ACTIONS(2379), - [anon_sym_RBRACE] = ACTIONS(2381), - [anon_sym_try] = ACTIONS(2379), - [anon_sym_catch] = ACTIONS(2379), - [anon_sym_return] = ACTIONS(2379), - [anon_sym_source] = ACTIONS(2379), - [anon_sym_source_DASHenv] = ACTIONS(2379), - [anon_sym_register] = ACTIONS(2379), - [anon_sym_hide] = ACTIONS(2379), - [anon_sym_hide_DASHenv] = ACTIONS(2379), - [anon_sym_overlay] = ACTIONS(2379), - [anon_sym_new] = ACTIONS(2379), - [anon_sym_as] = ACTIONS(2379), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2381), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2381), - [aux_sym__val_number_decimal_token1] = ACTIONS(2379), - [aux_sym__val_number_decimal_token2] = ACTIONS(2381), - [aux_sym__val_number_decimal_token3] = ACTIONS(2381), - [aux_sym__val_number_decimal_token4] = ACTIONS(2381), - [aux_sym__val_number_token1] = ACTIONS(2381), - [aux_sym__val_number_token2] = ACTIONS(2381), - [aux_sym__val_number_token3] = ACTIONS(2381), - [anon_sym_DQUOTE] = ACTIONS(2381), - [sym__str_single_quotes] = ACTIONS(2381), - [sym__str_back_ticks] = ACTIONS(2381), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2379), + [676] = { + [sym_expr_parenthesized] = STATE(1403), + [sym_val_range] = STATE(1784), + [sym__val_range] = STATE(7679), + [sym__val_range_with_end] = STATE(7434), + [sym__value] = STATE(1784), + [sym_val_nothing] = STATE(1822), + [sym_val_bool] = STATE(1486), + [sym_val_variable] = STATE(1406), + [sym_val_number] = STATE(1822), + [sym__val_number_decimal] = STATE(1140), + [sym__val_number] = STATE(1866), + [sym_val_duration] = STATE(1822), + [sym_val_filesize] = STATE(1822), + [sym_val_binary] = STATE(1822), + [sym_val_string] = STATE(1822), + [sym__str_double_quotes] = STATE(1910), + [sym_val_interpolated] = STATE(1822), + [sym__inter_single_quotes] = STATE(1911), + [sym__inter_double_quotes] = STATE(1912), + [sym_val_list] = STATE(1822), + [sym_val_record] = STATE(1822), + [sym_val_table] = STATE(1822), + [sym_val_closure] = STATE(1822), + [sym__flag] = STATE(1784), + [sym_short_flag] = STATE(1786), + [sym_long_flag] = STATE(1786), + [sym_unquoted] = STATE(1480), + [sym__unquoted_with_expr] = STATE(1790), + [sym__unquoted_anonymous_prefix] = STATE(6696), + [sym_comment] = STATE(676), + [aux_sym_ctrl_do_repeat2] = STATE(680), + [ts_builtin_sym_end] = ACTIONS(2748), + [anon_sym_true] = ACTIONS(2754), + [anon_sym_false] = ACTIONS(2754), + [anon_sym_null] = ACTIONS(2756), + [aux_sym_cmd_identifier_token38] = ACTIONS(2758), + [aux_sym_cmd_identifier_token39] = ACTIONS(2758), + [aux_sym_cmd_identifier_token40] = ACTIONS(2758), + [sym__newline] = ACTIONS(2748), + [anon_sym_SEMI] = ACTIONS(2748), + [anon_sym_PIPE] = ACTIONS(2748), + [anon_sym_err_GT_PIPE] = ACTIONS(2748), + [anon_sym_out_GT_PIPE] = ACTIONS(2748), + [anon_sym_e_GT_PIPE] = ACTIONS(2748), + [anon_sym_o_GT_PIPE] = ACTIONS(2748), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2748), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2748), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2748), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2748), + [anon_sym_LBRACK] = ACTIONS(2760), + [anon_sym_LPAREN] = ACTIONS(2762), + [anon_sym_DOLLAR] = ACTIONS(2764), + [anon_sym_DASH_DASH] = ACTIONS(2766), + [anon_sym_DASH] = ACTIONS(2768), + [aux_sym_ctrl_match_token1] = ACTIONS(2770), + [anon_sym_DOT_DOT] = ACTIONS(2772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2774), + [anon_sym_DOT_DOT_LT] = ACTIONS(2774), + [aux_sym__val_number_decimal_token1] = ACTIONS(2776), + [aux_sym__val_number_decimal_token2] = ACTIONS(2778), + [aux_sym__val_number_decimal_token3] = ACTIONS(2780), + [aux_sym__val_number_decimal_token4] = ACTIONS(2782), + [aux_sym__val_number_token1] = ACTIONS(2784), + [aux_sym__val_number_token2] = ACTIONS(2784), + [aux_sym__val_number_token3] = ACTIONS(2784), + [anon_sym_0b] = ACTIONS(2786), + [anon_sym_0o] = ACTIONS(2788), + [anon_sym_0x] = ACTIONS(2788), + [sym_val_date] = ACTIONS(2790), + [anon_sym_DQUOTE] = ACTIONS(2792), + [sym__str_single_quotes] = ACTIONS(2794), + [sym__str_back_ticks] = ACTIONS(2794), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2796), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2798), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(2800), [anon_sym_POUND] = ACTIONS(247), }, - [657] = { - [sym_comment] = STATE(657), - [anon_sym_export] = ACTIONS(2393), - [anon_sym_alias] = ACTIONS(2393), - [anon_sym_let] = ACTIONS(2393), - [anon_sym_let_DASHenv] = ACTIONS(2393), - [anon_sym_mut] = ACTIONS(2393), - [anon_sym_const] = ACTIONS(2393), - [aux_sym_cmd_identifier_token1] = ACTIONS(2393), - [aux_sym_cmd_identifier_token2] = ACTIONS(2393), - [aux_sym_cmd_identifier_token3] = ACTIONS(2393), - [aux_sym_cmd_identifier_token4] = ACTIONS(2393), - [aux_sym_cmd_identifier_token5] = ACTIONS(2393), - [aux_sym_cmd_identifier_token6] = ACTIONS(2393), - [aux_sym_cmd_identifier_token7] = ACTIONS(2393), - [aux_sym_cmd_identifier_token8] = ACTIONS(2393), - [aux_sym_cmd_identifier_token9] = ACTIONS(2393), - [aux_sym_cmd_identifier_token10] = ACTIONS(2393), - [aux_sym_cmd_identifier_token11] = ACTIONS(2393), - [aux_sym_cmd_identifier_token12] = ACTIONS(2393), - [aux_sym_cmd_identifier_token13] = ACTIONS(2393), - [aux_sym_cmd_identifier_token14] = ACTIONS(2393), - [aux_sym_cmd_identifier_token15] = ACTIONS(2393), - [aux_sym_cmd_identifier_token16] = ACTIONS(2393), - [aux_sym_cmd_identifier_token17] = ACTIONS(2393), - [aux_sym_cmd_identifier_token18] = ACTIONS(2393), - [aux_sym_cmd_identifier_token19] = ACTIONS(2393), - [aux_sym_cmd_identifier_token20] = ACTIONS(2393), - [aux_sym_cmd_identifier_token21] = ACTIONS(2393), - [aux_sym_cmd_identifier_token22] = ACTIONS(2393), - [aux_sym_cmd_identifier_token23] = ACTIONS(2393), - [aux_sym_cmd_identifier_token24] = ACTIONS(2393), - [aux_sym_cmd_identifier_token25] = ACTIONS(2393), - [aux_sym_cmd_identifier_token26] = ACTIONS(2393), - [aux_sym_cmd_identifier_token27] = ACTIONS(2393), - [aux_sym_cmd_identifier_token28] = ACTIONS(2393), - [aux_sym_cmd_identifier_token29] = ACTIONS(2393), - [aux_sym_cmd_identifier_token30] = ACTIONS(2393), - [aux_sym_cmd_identifier_token31] = ACTIONS(2393), - [aux_sym_cmd_identifier_token32] = ACTIONS(2393), - [aux_sym_cmd_identifier_token33] = ACTIONS(2393), - [aux_sym_cmd_identifier_token34] = ACTIONS(2393), - [aux_sym_cmd_identifier_token35] = ACTIONS(2393), - [aux_sym_cmd_identifier_token36] = ACTIONS(2393), - [anon_sym_true] = ACTIONS(2395), - [anon_sym_false] = ACTIONS(2395), - [anon_sym_null] = ACTIONS(2395), - [aux_sym_cmd_identifier_token38] = ACTIONS(2393), - [aux_sym_cmd_identifier_token39] = ACTIONS(2395), - [aux_sym_cmd_identifier_token40] = ACTIONS(2395), - [anon_sym_def] = ACTIONS(2393), - [anon_sym_export_DASHenv] = ACTIONS(2393), - [anon_sym_extern] = ACTIONS(2393), - [anon_sym_module] = ACTIONS(2393), - [anon_sym_use] = ACTIONS(2393), - [anon_sym_LPAREN] = ACTIONS(2395), - [anon_sym_DOLLAR] = ACTIONS(2395), - [anon_sym_error] = ACTIONS(2393), - [anon_sym_list] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_break] = ACTIONS(2393), - [anon_sym_continue] = ACTIONS(2393), - [anon_sym_for] = ACTIONS(2393), - [anon_sym_in] = ACTIONS(2393), - [anon_sym_loop] = ACTIONS(2393), - [anon_sym_make] = ACTIONS(2393), - [anon_sym_while] = ACTIONS(2393), - [anon_sym_do] = ACTIONS(2393), - [anon_sym_if] = ACTIONS(2393), - [anon_sym_else] = ACTIONS(2393), - [anon_sym_match] = ACTIONS(2393), - [anon_sym_RBRACE] = ACTIONS(2395), - [anon_sym_try] = ACTIONS(2393), - [anon_sym_catch] = ACTIONS(2393), - [anon_sym_return] = ACTIONS(2393), - [anon_sym_source] = ACTIONS(2393), - [anon_sym_source_DASHenv] = ACTIONS(2393), - [anon_sym_register] = ACTIONS(2393), - [anon_sym_hide] = ACTIONS(2393), - [anon_sym_hide_DASHenv] = ACTIONS(2393), - [anon_sym_overlay] = ACTIONS(2393), - [anon_sym_new] = ACTIONS(2393), - [anon_sym_as] = ACTIONS(2393), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2395), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2395), - [aux_sym__val_number_decimal_token1] = ACTIONS(2393), - [aux_sym__val_number_decimal_token2] = ACTIONS(2395), - [aux_sym__val_number_decimal_token3] = ACTIONS(2395), - [aux_sym__val_number_decimal_token4] = ACTIONS(2395), - [aux_sym__val_number_token1] = ACTIONS(2395), - [aux_sym__val_number_token2] = ACTIONS(2395), - [aux_sym__val_number_token3] = ACTIONS(2395), - [anon_sym_DQUOTE] = ACTIONS(2395), - [sym__str_single_quotes] = ACTIONS(2395), - [sym__str_back_ticks] = ACTIONS(2395), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2395), - [anon_sym_PLUS] = ACTIONS(2393), + [677] = { + [sym_expr_parenthesized] = STATE(1403), + [sym_val_range] = STATE(1784), + [sym__val_range] = STATE(7679), + [sym__val_range_with_end] = STATE(7434), + [sym__value] = STATE(1784), + [sym_val_nothing] = STATE(1822), + [sym_val_bool] = STATE(1486), + [sym_val_variable] = STATE(1406), + [sym_val_number] = STATE(1822), + [sym__val_number_decimal] = STATE(1140), + [sym__val_number] = STATE(1866), + [sym_val_duration] = STATE(1822), + [sym_val_filesize] = STATE(1822), + [sym_val_binary] = STATE(1822), + [sym_val_string] = STATE(1822), + [sym__str_double_quotes] = STATE(1910), + [sym_val_interpolated] = STATE(1822), + [sym__inter_single_quotes] = STATE(1911), + [sym__inter_double_quotes] = STATE(1912), + [sym_val_list] = STATE(1822), + [sym_val_record] = STATE(1822), + [sym_val_table] = STATE(1822), + [sym_val_closure] = STATE(1822), + [sym__flag] = STATE(1784), + [sym_short_flag] = STATE(1786), + [sym_long_flag] = STATE(1786), + [sym_unquoted] = STATE(1480), + [sym__unquoted_with_expr] = STATE(1790), + [sym__unquoted_anonymous_prefix] = STATE(6696), + [sym_comment] = STATE(677), + [aux_sym_ctrl_do_repeat2] = STATE(676), + [ts_builtin_sym_end] = ACTIONS(2750), + [anon_sym_true] = ACTIONS(2754), + [anon_sym_false] = ACTIONS(2754), + [anon_sym_null] = ACTIONS(2756), + [aux_sym_cmd_identifier_token38] = ACTIONS(2758), + [aux_sym_cmd_identifier_token39] = ACTIONS(2758), + [aux_sym_cmd_identifier_token40] = ACTIONS(2758), + [sym__newline] = ACTIONS(2750), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_err_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_GT_PIPE] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2750), + [anon_sym_LBRACK] = ACTIONS(2760), + [anon_sym_LPAREN] = ACTIONS(2762), + [anon_sym_DOLLAR] = ACTIONS(2764), + [anon_sym_DASH_DASH] = ACTIONS(2766), + [anon_sym_DASH] = ACTIONS(2768), + [aux_sym_ctrl_match_token1] = ACTIONS(2770), + [anon_sym_DOT_DOT] = ACTIONS(2772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2774), + [anon_sym_DOT_DOT_LT] = ACTIONS(2774), + [aux_sym__val_number_decimal_token1] = ACTIONS(2776), + [aux_sym__val_number_decimal_token2] = ACTIONS(2778), + [aux_sym__val_number_decimal_token3] = ACTIONS(2780), + [aux_sym__val_number_decimal_token4] = ACTIONS(2782), + [aux_sym__val_number_token1] = ACTIONS(2784), + [aux_sym__val_number_token2] = ACTIONS(2784), + [aux_sym__val_number_token3] = ACTIONS(2784), + [anon_sym_0b] = ACTIONS(2786), + [anon_sym_0o] = ACTIONS(2788), + [anon_sym_0x] = ACTIONS(2788), + [sym_val_date] = ACTIONS(2790), + [anon_sym_DQUOTE] = ACTIONS(2792), + [sym__str_single_quotes] = ACTIONS(2794), + [sym__str_back_ticks] = ACTIONS(2794), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2796), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2798), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(2800), [anon_sym_POUND] = ACTIONS(247), }, - [658] = { - [sym_comment] = STATE(658), - [anon_sym_export] = ACTIONS(2375), - [anon_sym_alias] = ACTIONS(2375), - [anon_sym_let] = ACTIONS(2375), - [anon_sym_let_DASHenv] = ACTIONS(2375), - [anon_sym_mut] = ACTIONS(2375), - [anon_sym_const] = ACTIONS(2375), - [aux_sym_cmd_identifier_token1] = ACTIONS(2375), - [aux_sym_cmd_identifier_token2] = ACTIONS(2375), - [aux_sym_cmd_identifier_token3] = ACTIONS(2375), - [aux_sym_cmd_identifier_token4] = ACTIONS(2375), - [aux_sym_cmd_identifier_token5] = ACTIONS(2375), - [aux_sym_cmd_identifier_token6] = ACTIONS(2375), - [aux_sym_cmd_identifier_token7] = ACTIONS(2375), - [aux_sym_cmd_identifier_token8] = ACTIONS(2375), - [aux_sym_cmd_identifier_token9] = ACTIONS(2375), - [aux_sym_cmd_identifier_token10] = ACTIONS(2375), - [aux_sym_cmd_identifier_token11] = ACTIONS(2375), - [aux_sym_cmd_identifier_token12] = ACTIONS(2375), - [aux_sym_cmd_identifier_token13] = ACTIONS(2375), - [aux_sym_cmd_identifier_token14] = ACTIONS(2375), - [aux_sym_cmd_identifier_token15] = ACTIONS(2375), - [aux_sym_cmd_identifier_token16] = ACTIONS(2375), - [aux_sym_cmd_identifier_token17] = ACTIONS(2375), - [aux_sym_cmd_identifier_token18] = ACTIONS(2375), - [aux_sym_cmd_identifier_token19] = ACTIONS(2375), - [aux_sym_cmd_identifier_token20] = ACTIONS(2375), - [aux_sym_cmd_identifier_token21] = ACTIONS(2375), - [aux_sym_cmd_identifier_token22] = ACTIONS(2375), - [aux_sym_cmd_identifier_token23] = ACTIONS(2375), - [aux_sym_cmd_identifier_token24] = ACTIONS(2375), - [aux_sym_cmd_identifier_token25] = ACTIONS(2375), - [aux_sym_cmd_identifier_token26] = ACTIONS(2375), - [aux_sym_cmd_identifier_token27] = ACTIONS(2375), - [aux_sym_cmd_identifier_token28] = ACTIONS(2375), - [aux_sym_cmd_identifier_token29] = ACTIONS(2375), - [aux_sym_cmd_identifier_token30] = ACTIONS(2375), - [aux_sym_cmd_identifier_token31] = ACTIONS(2375), - [aux_sym_cmd_identifier_token32] = ACTIONS(2375), - [aux_sym_cmd_identifier_token33] = ACTIONS(2375), - [aux_sym_cmd_identifier_token34] = ACTIONS(2375), - [aux_sym_cmd_identifier_token35] = ACTIONS(2375), - [aux_sym_cmd_identifier_token36] = ACTIONS(2375), - [anon_sym_true] = ACTIONS(2377), - [anon_sym_false] = ACTIONS(2377), - [anon_sym_null] = ACTIONS(2377), - [aux_sym_cmd_identifier_token38] = ACTIONS(2375), - [aux_sym_cmd_identifier_token39] = ACTIONS(2377), - [aux_sym_cmd_identifier_token40] = ACTIONS(2377), - [anon_sym_def] = ACTIONS(2375), - [anon_sym_export_DASHenv] = ACTIONS(2375), - [anon_sym_extern] = ACTIONS(2375), - [anon_sym_module] = ACTIONS(2375), - [anon_sym_use] = ACTIONS(2375), - [anon_sym_LPAREN] = ACTIONS(2377), - [anon_sym_DOLLAR] = ACTIONS(2377), - [anon_sym_error] = ACTIONS(2375), - [anon_sym_list] = ACTIONS(2375), - [anon_sym_DASH] = ACTIONS(2375), - [anon_sym_break] = ACTIONS(2375), - [anon_sym_continue] = ACTIONS(2375), - [anon_sym_for] = ACTIONS(2375), - [anon_sym_in] = ACTIONS(2375), - [anon_sym_loop] = ACTIONS(2375), - [anon_sym_make] = ACTIONS(2375), - [anon_sym_while] = ACTIONS(2375), - [anon_sym_do] = ACTIONS(2375), - [anon_sym_if] = ACTIONS(2375), - [anon_sym_else] = ACTIONS(2375), - [anon_sym_match] = ACTIONS(2375), - [anon_sym_RBRACE] = ACTIONS(2377), - [anon_sym_try] = ACTIONS(2375), - [anon_sym_catch] = ACTIONS(2375), - [anon_sym_return] = ACTIONS(2375), - [anon_sym_source] = ACTIONS(2375), - [anon_sym_source_DASHenv] = ACTIONS(2375), - [anon_sym_register] = ACTIONS(2375), - [anon_sym_hide] = ACTIONS(2375), - [anon_sym_hide_DASHenv] = ACTIONS(2375), - [anon_sym_overlay] = ACTIONS(2375), - [anon_sym_new] = ACTIONS(2375), - [anon_sym_as] = ACTIONS(2375), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2377), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2377), - [aux_sym__val_number_decimal_token1] = ACTIONS(2375), - [aux_sym__val_number_decimal_token2] = ACTIONS(2377), - [aux_sym__val_number_decimal_token3] = ACTIONS(2377), - [aux_sym__val_number_decimal_token4] = ACTIONS(2377), - [aux_sym__val_number_token1] = ACTIONS(2377), - [aux_sym__val_number_token2] = ACTIONS(2377), - [aux_sym__val_number_token3] = ACTIONS(2377), - [anon_sym_DQUOTE] = ACTIONS(2377), - [sym__str_single_quotes] = ACTIONS(2377), - [sym__str_back_ticks] = ACTIONS(2377), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2377), - [anon_sym_PLUS] = ACTIONS(2375), + [678] = { + [sym_expr_parenthesized] = STATE(1403), + [sym_val_range] = STATE(1784), + [sym__val_range] = STATE(7679), + [sym__val_range_with_end] = STATE(7434), + [sym__value] = STATE(1784), + [sym_val_nothing] = STATE(1822), + [sym_val_bool] = STATE(1486), + [sym_val_variable] = STATE(1406), + [sym_val_number] = STATE(1822), + [sym__val_number_decimal] = STATE(1140), + [sym__val_number] = STATE(1866), + [sym_val_duration] = STATE(1822), + [sym_val_filesize] = STATE(1822), + [sym_val_binary] = STATE(1822), + [sym_val_string] = STATE(1822), + [sym__str_double_quotes] = STATE(1910), + [sym_val_interpolated] = STATE(1822), + [sym__inter_single_quotes] = STATE(1911), + [sym__inter_double_quotes] = STATE(1912), + [sym_val_list] = STATE(1822), + [sym_val_record] = STATE(1822), + [sym_val_table] = STATE(1822), + [sym_val_closure] = STATE(1822), + [sym__flag] = STATE(1784), + [sym_short_flag] = STATE(1786), + [sym_long_flag] = STATE(1786), + [sym_unquoted] = STATE(1480), + [sym__unquoted_with_expr] = STATE(1790), + [sym__unquoted_anonymous_prefix] = STATE(6696), + [sym_comment] = STATE(678), + [aux_sym_ctrl_do_repeat2] = STATE(674), + [ts_builtin_sym_end] = ACTIONS(2748), + [anon_sym_true] = ACTIONS(2754), + [anon_sym_false] = ACTIONS(2754), + [anon_sym_null] = ACTIONS(2756), + [aux_sym_cmd_identifier_token38] = ACTIONS(2758), + [aux_sym_cmd_identifier_token39] = ACTIONS(2758), + [aux_sym_cmd_identifier_token40] = ACTIONS(2758), + [sym__newline] = ACTIONS(2748), + [anon_sym_SEMI] = ACTIONS(2748), + [anon_sym_PIPE] = ACTIONS(2748), + [anon_sym_err_GT_PIPE] = ACTIONS(2748), + [anon_sym_out_GT_PIPE] = ACTIONS(2748), + [anon_sym_e_GT_PIPE] = ACTIONS(2748), + [anon_sym_o_GT_PIPE] = ACTIONS(2748), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2748), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2748), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2748), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2748), + [anon_sym_LBRACK] = ACTIONS(2760), + [anon_sym_LPAREN] = ACTIONS(2762), + [anon_sym_DOLLAR] = ACTIONS(2764), + [anon_sym_DASH_DASH] = ACTIONS(2766), + [anon_sym_DASH] = ACTIONS(2768), + [aux_sym_ctrl_match_token1] = ACTIONS(2770), + [anon_sym_DOT_DOT] = ACTIONS(2772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2774), + [anon_sym_DOT_DOT_LT] = ACTIONS(2774), + [aux_sym__val_number_decimal_token1] = ACTIONS(2776), + [aux_sym__val_number_decimal_token2] = ACTIONS(2778), + [aux_sym__val_number_decimal_token3] = ACTIONS(2780), + [aux_sym__val_number_decimal_token4] = ACTIONS(2782), + [aux_sym__val_number_token1] = ACTIONS(2784), + [aux_sym__val_number_token2] = ACTIONS(2784), + [aux_sym__val_number_token3] = ACTIONS(2784), + [anon_sym_0b] = ACTIONS(2786), + [anon_sym_0o] = ACTIONS(2788), + [anon_sym_0x] = ACTIONS(2788), + [sym_val_date] = ACTIONS(2790), + [anon_sym_DQUOTE] = ACTIONS(2792), + [sym__str_single_quotes] = ACTIONS(2794), + [sym__str_back_ticks] = ACTIONS(2794), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2796), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2798), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(2800), [anon_sym_POUND] = ACTIONS(247), }, - [659] = { - [sym_comment] = STATE(659), - [anon_sym_export] = ACTIONS(1648), - [anon_sym_alias] = ACTIONS(1648), - [anon_sym_let] = ACTIONS(1648), - [anon_sym_let_DASHenv] = ACTIONS(1648), - [anon_sym_mut] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1648), - [aux_sym_cmd_identifier_token1] = ACTIONS(1648), - [aux_sym_cmd_identifier_token2] = ACTIONS(1648), - [aux_sym_cmd_identifier_token3] = ACTIONS(1648), - [aux_sym_cmd_identifier_token4] = ACTIONS(1648), - [aux_sym_cmd_identifier_token5] = ACTIONS(1648), - [aux_sym_cmd_identifier_token6] = ACTIONS(1648), - [aux_sym_cmd_identifier_token7] = ACTIONS(1648), - [aux_sym_cmd_identifier_token8] = ACTIONS(1648), - [aux_sym_cmd_identifier_token9] = ACTIONS(1648), - [aux_sym_cmd_identifier_token10] = ACTIONS(1648), - [aux_sym_cmd_identifier_token11] = ACTIONS(1648), - [aux_sym_cmd_identifier_token12] = ACTIONS(1648), - [aux_sym_cmd_identifier_token13] = ACTIONS(1648), - [aux_sym_cmd_identifier_token14] = ACTIONS(1648), - [aux_sym_cmd_identifier_token15] = ACTIONS(1648), - [aux_sym_cmd_identifier_token16] = ACTIONS(1648), - [aux_sym_cmd_identifier_token17] = ACTIONS(1648), - [aux_sym_cmd_identifier_token18] = ACTIONS(1648), - [aux_sym_cmd_identifier_token19] = ACTIONS(1648), - [aux_sym_cmd_identifier_token20] = ACTIONS(1648), - [aux_sym_cmd_identifier_token21] = ACTIONS(1648), - [aux_sym_cmd_identifier_token22] = ACTIONS(1648), - [aux_sym_cmd_identifier_token23] = ACTIONS(1648), - [aux_sym_cmd_identifier_token24] = ACTIONS(1648), - [aux_sym_cmd_identifier_token25] = ACTIONS(1648), - [aux_sym_cmd_identifier_token26] = ACTIONS(1648), - [aux_sym_cmd_identifier_token27] = ACTIONS(1648), - [aux_sym_cmd_identifier_token28] = ACTIONS(1648), - [aux_sym_cmd_identifier_token29] = ACTIONS(1648), - [aux_sym_cmd_identifier_token30] = ACTIONS(1648), - [aux_sym_cmd_identifier_token31] = ACTIONS(1648), - [aux_sym_cmd_identifier_token32] = ACTIONS(1648), - [aux_sym_cmd_identifier_token33] = ACTIONS(1648), - [aux_sym_cmd_identifier_token34] = ACTIONS(1648), - [aux_sym_cmd_identifier_token35] = ACTIONS(1648), - [aux_sym_cmd_identifier_token36] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [anon_sym_null] = ACTIONS(1650), - [aux_sym_cmd_identifier_token38] = ACTIONS(1648), - [aux_sym_cmd_identifier_token39] = ACTIONS(1650), - [aux_sym_cmd_identifier_token40] = ACTIONS(1650), - [anon_sym_def] = ACTIONS(1648), - [anon_sym_export_DASHenv] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1648), - [anon_sym_module] = ACTIONS(1648), - [anon_sym_use] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1650), - [anon_sym_error] = ACTIONS(1648), - [anon_sym_list] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_in] = ACTIONS(1648), - [anon_sym_loop] = ACTIONS(1648), - [anon_sym_make] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_do] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1648), - [anon_sym_match] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_try] = ACTIONS(1648), - [anon_sym_catch] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_source] = ACTIONS(1648), - [anon_sym_source_DASHenv] = ACTIONS(1648), - [anon_sym_register] = ACTIONS(1648), - [anon_sym_hide] = ACTIONS(1648), - [anon_sym_hide_DASHenv] = ACTIONS(1648), - [anon_sym_overlay] = ACTIONS(1648), - [anon_sym_new] = ACTIONS(1648), - [anon_sym_as] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1650), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token3] = ACTIONS(1650), - [aux_sym__val_number_decimal_token4] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(247), - }, - [660] = { - [sym_comment] = STATE(660), - [anon_sym_export] = ACTIONS(1721), - [anon_sym_alias] = ACTIONS(1721), - [anon_sym_let] = ACTIONS(1721), - [anon_sym_let_DASHenv] = ACTIONS(1721), - [anon_sym_mut] = ACTIONS(1721), - [anon_sym_const] = ACTIONS(1721), - [aux_sym_cmd_identifier_token1] = ACTIONS(1721), - [aux_sym_cmd_identifier_token2] = ACTIONS(1721), - [aux_sym_cmd_identifier_token3] = ACTIONS(1721), - [aux_sym_cmd_identifier_token4] = ACTIONS(1721), - [aux_sym_cmd_identifier_token5] = ACTIONS(1721), - [aux_sym_cmd_identifier_token6] = ACTIONS(1721), - [aux_sym_cmd_identifier_token7] = ACTIONS(1721), - [aux_sym_cmd_identifier_token8] = ACTIONS(1721), - [aux_sym_cmd_identifier_token9] = ACTIONS(1721), - [aux_sym_cmd_identifier_token10] = ACTIONS(1721), - [aux_sym_cmd_identifier_token11] = ACTIONS(1721), - [aux_sym_cmd_identifier_token12] = ACTIONS(1721), - [aux_sym_cmd_identifier_token13] = ACTIONS(1721), - [aux_sym_cmd_identifier_token14] = ACTIONS(1721), - [aux_sym_cmd_identifier_token15] = ACTIONS(1721), - [aux_sym_cmd_identifier_token16] = ACTIONS(1721), - [aux_sym_cmd_identifier_token17] = ACTIONS(1721), - [aux_sym_cmd_identifier_token18] = ACTIONS(1721), - [aux_sym_cmd_identifier_token19] = ACTIONS(1721), - [aux_sym_cmd_identifier_token20] = ACTIONS(1721), - [aux_sym_cmd_identifier_token21] = ACTIONS(1721), - [aux_sym_cmd_identifier_token22] = ACTIONS(1721), - [aux_sym_cmd_identifier_token23] = ACTIONS(1721), - [aux_sym_cmd_identifier_token24] = ACTIONS(1721), - [aux_sym_cmd_identifier_token25] = ACTIONS(1721), - [aux_sym_cmd_identifier_token26] = ACTIONS(1721), - [aux_sym_cmd_identifier_token27] = ACTIONS(1721), - [aux_sym_cmd_identifier_token28] = ACTIONS(1721), - [aux_sym_cmd_identifier_token29] = ACTIONS(1721), - [aux_sym_cmd_identifier_token30] = ACTIONS(1721), - [aux_sym_cmd_identifier_token31] = ACTIONS(1721), - [aux_sym_cmd_identifier_token32] = ACTIONS(1721), - [aux_sym_cmd_identifier_token33] = ACTIONS(1721), - [aux_sym_cmd_identifier_token34] = ACTIONS(1721), - [aux_sym_cmd_identifier_token35] = ACTIONS(1721), - [aux_sym_cmd_identifier_token36] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1723), - [aux_sym_cmd_identifier_token38] = ACTIONS(1721), - [aux_sym_cmd_identifier_token39] = ACTIONS(1723), - [aux_sym_cmd_identifier_token40] = ACTIONS(1723), - [anon_sym_def] = ACTIONS(1721), - [anon_sym_export_DASHenv] = ACTIONS(1721), - [anon_sym_extern] = ACTIONS(1721), - [anon_sym_module] = ACTIONS(1721), - [anon_sym_use] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1723), - [anon_sym_DOLLAR] = ACTIONS(1723), - [anon_sym_error] = ACTIONS(1721), - [anon_sym_list] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_break] = ACTIONS(1721), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_for] = ACTIONS(1721), - [anon_sym_in] = ACTIONS(1721), - [anon_sym_loop] = ACTIONS(1721), - [anon_sym_make] = ACTIONS(1721), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_do] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_else] = ACTIONS(1721), - [anon_sym_match] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_try] = ACTIONS(1721), - [anon_sym_catch] = ACTIONS(1721), - [anon_sym_return] = ACTIONS(1721), - [anon_sym_source] = ACTIONS(1721), - [anon_sym_source_DASHenv] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1721), - [anon_sym_hide] = ACTIONS(1721), - [anon_sym_hide_DASHenv] = ACTIONS(1721), - [anon_sym_overlay] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1721), - [anon_sym_as] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1723), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token3] = ACTIONS(1723), - [aux_sym__val_number_decimal_token4] = ACTIONS(1723), - [aux_sym__val_number_token1] = ACTIONS(1723), - [aux_sym__val_number_token2] = ACTIONS(1723), - [aux_sym__val_number_token3] = ACTIONS(1723), - [anon_sym_DQUOTE] = ACTIONS(1723), - [sym__str_single_quotes] = ACTIONS(1723), - [sym__str_back_ticks] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1723), - [anon_sym_PLUS] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(247), - }, - [661] = { - [sym_comment] = STATE(661), - [anon_sym_export] = ACTIONS(1839), - [anon_sym_alias] = ACTIONS(1839), - [anon_sym_let] = ACTIONS(1839), - [anon_sym_let_DASHenv] = ACTIONS(1839), - [anon_sym_mut] = ACTIONS(1839), - [anon_sym_const] = ACTIONS(1839), - [aux_sym_cmd_identifier_token1] = ACTIONS(1839), - [aux_sym_cmd_identifier_token2] = ACTIONS(1839), - [aux_sym_cmd_identifier_token3] = ACTIONS(1839), - [aux_sym_cmd_identifier_token4] = ACTIONS(1839), - [aux_sym_cmd_identifier_token5] = ACTIONS(1839), - [aux_sym_cmd_identifier_token6] = ACTIONS(1839), - [aux_sym_cmd_identifier_token7] = ACTIONS(1839), - [aux_sym_cmd_identifier_token8] = ACTIONS(1839), - [aux_sym_cmd_identifier_token9] = ACTIONS(1839), - [aux_sym_cmd_identifier_token10] = ACTIONS(1839), - [aux_sym_cmd_identifier_token11] = ACTIONS(1839), - [aux_sym_cmd_identifier_token12] = ACTIONS(1839), - [aux_sym_cmd_identifier_token13] = ACTIONS(1839), - [aux_sym_cmd_identifier_token14] = ACTIONS(1839), - [aux_sym_cmd_identifier_token15] = ACTIONS(1839), - [aux_sym_cmd_identifier_token16] = ACTIONS(1839), - [aux_sym_cmd_identifier_token17] = ACTIONS(1839), - [aux_sym_cmd_identifier_token18] = ACTIONS(1839), - [aux_sym_cmd_identifier_token19] = ACTIONS(1839), - [aux_sym_cmd_identifier_token20] = ACTIONS(1839), - [aux_sym_cmd_identifier_token21] = ACTIONS(1839), - [aux_sym_cmd_identifier_token22] = ACTIONS(1839), - [aux_sym_cmd_identifier_token23] = ACTIONS(1839), - [aux_sym_cmd_identifier_token24] = ACTIONS(1839), - [aux_sym_cmd_identifier_token25] = ACTIONS(1839), - [aux_sym_cmd_identifier_token26] = ACTIONS(1839), - [aux_sym_cmd_identifier_token27] = ACTIONS(1839), - [aux_sym_cmd_identifier_token28] = ACTIONS(1839), - [aux_sym_cmd_identifier_token29] = ACTIONS(1839), - [aux_sym_cmd_identifier_token30] = ACTIONS(1839), - [aux_sym_cmd_identifier_token31] = ACTIONS(1839), - [aux_sym_cmd_identifier_token32] = ACTIONS(1839), - [aux_sym_cmd_identifier_token33] = ACTIONS(1839), - [aux_sym_cmd_identifier_token34] = ACTIONS(1839), - [aux_sym_cmd_identifier_token35] = ACTIONS(1839), - [aux_sym_cmd_identifier_token36] = ACTIONS(1839), - [anon_sym_true] = ACTIONS(1841), - [anon_sym_false] = ACTIONS(1841), - [anon_sym_null] = ACTIONS(1841), - [aux_sym_cmd_identifier_token38] = ACTIONS(1839), - [aux_sym_cmd_identifier_token39] = ACTIONS(1841), - [aux_sym_cmd_identifier_token40] = ACTIONS(1841), - [anon_sym_def] = ACTIONS(1839), - [anon_sym_export_DASHenv] = ACTIONS(1839), - [anon_sym_extern] = ACTIONS(1839), - [anon_sym_module] = ACTIONS(1839), - [anon_sym_use] = ACTIONS(1839), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_error] = ACTIONS(1839), - [anon_sym_list] = ACTIONS(1839), - [anon_sym_DASH] = ACTIONS(1839), - [anon_sym_break] = ACTIONS(1839), - [anon_sym_continue] = ACTIONS(1839), - [anon_sym_for] = ACTIONS(1839), - [anon_sym_in] = ACTIONS(1839), - [anon_sym_loop] = ACTIONS(1839), - [anon_sym_make] = ACTIONS(1839), - [anon_sym_while] = ACTIONS(1839), - [anon_sym_do] = ACTIONS(1839), - [anon_sym_if] = ACTIONS(1839), - [anon_sym_else] = ACTIONS(1839), - [anon_sym_match] = ACTIONS(1839), - [anon_sym_RBRACE] = ACTIONS(1841), - [anon_sym_try] = ACTIONS(1839), - [anon_sym_catch] = ACTIONS(1839), - [anon_sym_return] = ACTIONS(1839), - [anon_sym_source] = ACTIONS(1839), - [anon_sym_source_DASHenv] = ACTIONS(1839), - [anon_sym_register] = ACTIONS(1839), - [anon_sym_hide] = ACTIONS(1839), - [anon_sym_hide_DASHenv] = ACTIONS(1839), - [anon_sym_overlay] = ACTIONS(1839), - [anon_sym_new] = ACTIONS(1839), - [anon_sym_as] = ACTIONS(1839), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1841), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1841), - [aux_sym__val_number_decimal_token1] = ACTIONS(1839), - [aux_sym__val_number_decimal_token2] = ACTIONS(1841), - [aux_sym__val_number_decimal_token3] = ACTIONS(1841), - [aux_sym__val_number_decimal_token4] = ACTIONS(1841), - [aux_sym__val_number_token1] = ACTIONS(1841), - [aux_sym__val_number_token2] = ACTIONS(1841), - [aux_sym__val_number_token3] = ACTIONS(1841), - [anon_sym_DQUOTE] = ACTIONS(1841), - [sym__str_single_quotes] = ACTIONS(1841), - [sym__str_back_ticks] = ACTIONS(1841), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1841), - [anon_sym_PLUS] = ACTIONS(1839), - [anon_sym_POUND] = ACTIONS(247), - }, - [662] = { - [sym_comment] = STATE(662), - [anon_sym_export] = ACTIONS(966), - [anon_sym_alias] = ACTIONS(966), - [anon_sym_let] = ACTIONS(966), - [anon_sym_let_DASHenv] = ACTIONS(966), - [anon_sym_mut] = ACTIONS(966), - [anon_sym_const] = ACTIONS(966), - [aux_sym_cmd_identifier_token1] = ACTIONS(966), - [aux_sym_cmd_identifier_token2] = ACTIONS(966), - [aux_sym_cmd_identifier_token3] = ACTIONS(966), - [aux_sym_cmd_identifier_token4] = ACTIONS(966), - [aux_sym_cmd_identifier_token5] = ACTIONS(966), - [aux_sym_cmd_identifier_token6] = ACTIONS(966), - [aux_sym_cmd_identifier_token7] = ACTIONS(966), - [aux_sym_cmd_identifier_token8] = ACTIONS(966), - [aux_sym_cmd_identifier_token9] = ACTIONS(966), - [aux_sym_cmd_identifier_token10] = ACTIONS(966), - [aux_sym_cmd_identifier_token11] = ACTIONS(966), - [aux_sym_cmd_identifier_token12] = ACTIONS(966), - [aux_sym_cmd_identifier_token13] = ACTIONS(966), - [aux_sym_cmd_identifier_token14] = ACTIONS(966), - [aux_sym_cmd_identifier_token15] = ACTIONS(966), - [aux_sym_cmd_identifier_token16] = ACTIONS(966), - [aux_sym_cmd_identifier_token17] = ACTIONS(966), - [aux_sym_cmd_identifier_token18] = ACTIONS(966), - [aux_sym_cmd_identifier_token19] = ACTIONS(966), - [aux_sym_cmd_identifier_token20] = ACTIONS(966), - [aux_sym_cmd_identifier_token21] = ACTIONS(966), - [aux_sym_cmd_identifier_token22] = ACTIONS(966), - [aux_sym_cmd_identifier_token23] = ACTIONS(966), - [aux_sym_cmd_identifier_token24] = ACTIONS(966), - [aux_sym_cmd_identifier_token25] = ACTIONS(966), - [aux_sym_cmd_identifier_token26] = ACTIONS(966), - [aux_sym_cmd_identifier_token27] = ACTIONS(966), - [aux_sym_cmd_identifier_token28] = ACTIONS(966), - [aux_sym_cmd_identifier_token29] = ACTIONS(966), - [aux_sym_cmd_identifier_token30] = ACTIONS(966), - [aux_sym_cmd_identifier_token31] = ACTIONS(966), - [aux_sym_cmd_identifier_token32] = ACTIONS(966), - [aux_sym_cmd_identifier_token33] = ACTIONS(966), - [aux_sym_cmd_identifier_token34] = ACTIONS(966), - [aux_sym_cmd_identifier_token35] = ACTIONS(966), - [aux_sym_cmd_identifier_token36] = ACTIONS(966), - [anon_sym_true] = ACTIONS(968), - [anon_sym_false] = ACTIONS(968), - [anon_sym_null] = ACTIONS(968), - [aux_sym_cmd_identifier_token38] = ACTIONS(966), - [aux_sym_cmd_identifier_token39] = ACTIONS(968), - [aux_sym_cmd_identifier_token40] = ACTIONS(968), - [anon_sym_def] = ACTIONS(966), - [anon_sym_export_DASHenv] = ACTIONS(966), - [anon_sym_extern] = ACTIONS(966), - [anon_sym_module] = ACTIONS(966), - [anon_sym_use] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_error] = ACTIONS(966), - [anon_sym_list] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_break] = ACTIONS(966), - [anon_sym_continue] = ACTIONS(966), - [anon_sym_for] = ACTIONS(966), - [anon_sym_in] = ACTIONS(966), - [anon_sym_loop] = ACTIONS(966), - [anon_sym_make] = ACTIONS(966), - [anon_sym_while] = ACTIONS(966), - [anon_sym_do] = ACTIONS(966), - [anon_sym_if] = ACTIONS(966), - [anon_sym_else] = ACTIONS(966), - [anon_sym_match] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_try] = ACTIONS(966), - [anon_sym_catch] = ACTIONS(966), - [anon_sym_return] = ACTIONS(966), - [anon_sym_source] = ACTIONS(966), - [anon_sym_source_DASHenv] = ACTIONS(966), - [anon_sym_register] = ACTIONS(966), - [anon_sym_hide] = ACTIONS(966), - [anon_sym_hide_DASHenv] = ACTIONS(966), - [anon_sym_overlay] = ACTIONS(966), - [anon_sym_new] = ACTIONS(966), - [anon_sym_as] = ACTIONS(966), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(968), - [aux_sym__val_number_decimal_token1] = ACTIONS(966), - [aux_sym__val_number_decimal_token2] = ACTIONS(968), - [aux_sym__val_number_decimal_token3] = ACTIONS(968), - [aux_sym__val_number_decimal_token4] = ACTIONS(968), - [aux_sym__val_number_token1] = ACTIONS(968), - [aux_sym__val_number_token2] = ACTIONS(968), - [aux_sym__val_number_token3] = ACTIONS(968), - [anon_sym_DQUOTE] = ACTIONS(968), - [sym__str_single_quotes] = ACTIONS(968), - [sym__str_back_ticks] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_POUND] = ACTIONS(247), - }, - [663] = { - [sym_comment] = STATE(663), - [anon_sym_export] = ACTIONS(1770), - [anon_sym_alias] = ACTIONS(1770), - [anon_sym_let] = ACTIONS(1770), - [anon_sym_let_DASHenv] = ACTIONS(1770), - [anon_sym_mut] = ACTIONS(1770), - [anon_sym_const] = ACTIONS(1770), - [aux_sym_cmd_identifier_token1] = ACTIONS(1770), - [aux_sym_cmd_identifier_token2] = ACTIONS(1770), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [aux_sym_cmd_identifier_token6] = ACTIONS(1770), - [aux_sym_cmd_identifier_token7] = ACTIONS(1770), - [aux_sym_cmd_identifier_token8] = ACTIONS(1770), - [aux_sym_cmd_identifier_token9] = ACTIONS(1770), - [aux_sym_cmd_identifier_token10] = ACTIONS(1770), - [aux_sym_cmd_identifier_token11] = ACTIONS(1770), - [aux_sym_cmd_identifier_token12] = ACTIONS(1770), - [aux_sym_cmd_identifier_token13] = ACTIONS(1770), - [aux_sym_cmd_identifier_token14] = ACTIONS(1770), - [aux_sym_cmd_identifier_token15] = ACTIONS(1770), - [aux_sym_cmd_identifier_token16] = ACTIONS(1770), - [aux_sym_cmd_identifier_token17] = ACTIONS(1770), - [aux_sym_cmd_identifier_token18] = ACTIONS(1770), - [aux_sym_cmd_identifier_token19] = ACTIONS(1770), - [aux_sym_cmd_identifier_token20] = ACTIONS(1770), - [aux_sym_cmd_identifier_token21] = ACTIONS(1770), - [aux_sym_cmd_identifier_token22] = ACTIONS(1770), - [aux_sym_cmd_identifier_token23] = ACTIONS(1770), - [aux_sym_cmd_identifier_token24] = ACTIONS(1770), - [aux_sym_cmd_identifier_token25] = ACTIONS(1770), - [aux_sym_cmd_identifier_token26] = ACTIONS(1770), - [aux_sym_cmd_identifier_token27] = ACTIONS(1770), - [aux_sym_cmd_identifier_token28] = ACTIONS(1770), - [aux_sym_cmd_identifier_token29] = ACTIONS(1770), - [aux_sym_cmd_identifier_token30] = ACTIONS(1770), - [aux_sym_cmd_identifier_token31] = ACTIONS(1770), - [aux_sym_cmd_identifier_token32] = ACTIONS(1770), - [aux_sym_cmd_identifier_token33] = ACTIONS(1770), - [aux_sym_cmd_identifier_token34] = ACTIONS(1770), - [aux_sym_cmd_identifier_token35] = ACTIONS(1770), - [aux_sym_cmd_identifier_token36] = ACTIONS(1770), - [anon_sym_true] = ACTIONS(1772), - [anon_sym_false] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1772), - [aux_sym_cmd_identifier_token38] = ACTIONS(1770), - [aux_sym_cmd_identifier_token39] = ACTIONS(1772), - [aux_sym_cmd_identifier_token40] = ACTIONS(1772), - [anon_sym_def] = ACTIONS(1770), - [anon_sym_export_DASHenv] = ACTIONS(1770), - [anon_sym_extern] = ACTIONS(1770), - [anon_sym_module] = ACTIONS(1770), - [anon_sym_use] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_DOLLAR] = ACTIONS(1772), - [anon_sym_error] = ACTIONS(1770), - [anon_sym_list] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_for] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_loop] = ACTIONS(1770), - [anon_sym_make] = ACTIONS(1770), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_do] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1770), - [anon_sym_match] = ACTIONS(1770), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_catch] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_source] = ACTIONS(1770), - [anon_sym_source_DASHenv] = ACTIONS(1770), - [anon_sym_register] = ACTIONS(1770), - [anon_sym_hide] = ACTIONS(1770), - [anon_sym_hide_DASHenv] = ACTIONS(1770), - [anon_sym_overlay] = ACTIONS(1770), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_as] = ACTIONS(1770), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1772), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1772), - [aux_sym__val_number_decimal_token1] = ACTIONS(1770), - [aux_sym__val_number_decimal_token2] = ACTIONS(1772), - [aux_sym__val_number_decimal_token3] = ACTIONS(1772), - [aux_sym__val_number_decimal_token4] = ACTIONS(1772), - [aux_sym__val_number_token1] = ACTIONS(1772), - [aux_sym__val_number_token2] = ACTIONS(1772), - [aux_sym__val_number_token3] = ACTIONS(1772), - [anon_sym_DQUOTE] = ACTIONS(1772), - [sym__str_single_quotes] = ACTIONS(1772), - [sym__str_back_ticks] = ACTIONS(1772), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_POUND] = ACTIONS(247), - }, - [664] = { - [sym_comment] = STATE(664), - [anon_sym_export] = ACTIONS(2383), - [anon_sym_alias] = ACTIONS(2383), - [anon_sym_let] = ACTIONS(2383), - [anon_sym_let_DASHenv] = ACTIONS(2383), - [anon_sym_mut] = ACTIONS(2383), - [anon_sym_const] = ACTIONS(2383), - [aux_sym_cmd_identifier_token1] = ACTIONS(2383), - [aux_sym_cmd_identifier_token2] = ACTIONS(2383), - [aux_sym_cmd_identifier_token3] = ACTIONS(2383), - [aux_sym_cmd_identifier_token4] = ACTIONS(2383), - [aux_sym_cmd_identifier_token5] = ACTIONS(2383), - [aux_sym_cmd_identifier_token6] = ACTIONS(2383), - [aux_sym_cmd_identifier_token7] = ACTIONS(2383), - [aux_sym_cmd_identifier_token8] = ACTIONS(2383), - [aux_sym_cmd_identifier_token9] = ACTIONS(2383), - [aux_sym_cmd_identifier_token10] = ACTIONS(2383), - [aux_sym_cmd_identifier_token11] = ACTIONS(2383), - [aux_sym_cmd_identifier_token12] = ACTIONS(2383), - [aux_sym_cmd_identifier_token13] = ACTIONS(2383), - [aux_sym_cmd_identifier_token14] = ACTIONS(2383), - [aux_sym_cmd_identifier_token15] = ACTIONS(2383), - [aux_sym_cmd_identifier_token16] = ACTIONS(2383), - [aux_sym_cmd_identifier_token17] = ACTIONS(2383), - [aux_sym_cmd_identifier_token18] = ACTIONS(2383), - [aux_sym_cmd_identifier_token19] = ACTIONS(2383), - [aux_sym_cmd_identifier_token20] = ACTIONS(2383), - [aux_sym_cmd_identifier_token21] = ACTIONS(2383), - [aux_sym_cmd_identifier_token22] = ACTIONS(2383), - [aux_sym_cmd_identifier_token23] = ACTIONS(2383), - [aux_sym_cmd_identifier_token24] = ACTIONS(2383), - [aux_sym_cmd_identifier_token25] = ACTIONS(2383), - [aux_sym_cmd_identifier_token26] = ACTIONS(2383), - [aux_sym_cmd_identifier_token27] = ACTIONS(2383), - [aux_sym_cmd_identifier_token28] = ACTIONS(2383), - [aux_sym_cmd_identifier_token29] = ACTIONS(2383), - [aux_sym_cmd_identifier_token30] = ACTIONS(2383), - [aux_sym_cmd_identifier_token31] = ACTIONS(2383), - [aux_sym_cmd_identifier_token32] = ACTIONS(2383), - [aux_sym_cmd_identifier_token33] = ACTIONS(2383), - [aux_sym_cmd_identifier_token34] = ACTIONS(2383), - [aux_sym_cmd_identifier_token35] = ACTIONS(2383), - [aux_sym_cmd_identifier_token36] = ACTIONS(2383), - [anon_sym_true] = ACTIONS(2385), - [anon_sym_false] = ACTIONS(2385), - [anon_sym_null] = ACTIONS(2385), - [aux_sym_cmd_identifier_token38] = ACTIONS(2383), - [aux_sym_cmd_identifier_token39] = ACTIONS(2385), - [aux_sym_cmd_identifier_token40] = ACTIONS(2385), - [anon_sym_def] = ACTIONS(2383), - [anon_sym_export_DASHenv] = ACTIONS(2383), - [anon_sym_extern] = ACTIONS(2383), - [anon_sym_module] = ACTIONS(2383), - [anon_sym_use] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_DOLLAR] = ACTIONS(2385), - [anon_sym_error] = ACTIONS(2383), - [anon_sym_list] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2383), - [anon_sym_break] = ACTIONS(2383), - [anon_sym_continue] = ACTIONS(2383), - [anon_sym_for] = ACTIONS(2383), - [anon_sym_in] = ACTIONS(2383), - [anon_sym_loop] = ACTIONS(2383), - [anon_sym_make] = ACTIONS(2383), - [anon_sym_while] = ACTIONS(2383), - [anon_sym_do] = ACTIONS(2383), - [anon_sym_if] = ACTIONS(2383), - [anon_sym_else] = ACTIONS(2383), - [anon_sym_match] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(2385), - [anon_sym_try] = ACTIONS(2383), - [anon_sym_catch] = ACTIONS(2383), - [anon_sym_return] = ACTIONS(2383), - [anon_sym_source] = ACTIONS(2383), - [anon_sym_source_DASHenv] = ACTIONS(2383), - [anon_sym_register] = ACTIONS(2383), - [anon_sym_hide] = ACTIONS(2383), - [anon_sym_hide_DASHenv] = ACTIONS(2383), - [anon_sym_overlay] = ACTIONS(2383), - [anon_sym_new] = ACTIONS(2383), - [anon_sym_as] = ACTIONS(2383), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2385), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2385), - [aux_sym__val_number_decimal_token1] = ACTIONS(2383), - [aux_sym__val_number_decimal_token2] = ACTIONS(2385), - [aux_sym__val_number_decimal_token3] = ACTIONS(2385), - [aux_sym__val_number_decimal_token4] = ACTIONS(2385), - [aux_sym__val_number_token1] = ACTIONS(2385), - [aux_sym__val_number_token2] = ACTIONS(2385), - [aux_sym__val_number_token3] = ACTIONS(2385), - [anon_sym_DQUOTE] = ACTIONS(2385), - [sym__str_single_quotes] = ACTIONS(2385), - [sym__str_back_ticks] = ACTIONS(2385), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2385), - [anon_sym_PLUS] = ACTIONS(2383), - [anon_sym_POUND] = ACTIONS(247), - }, - [665] = { - [sym_comment] = STATE(665), - [anon_sym_export] = ACTIONS(2326), - [anon_sym_alias] = ACTIONS(2326), - [anon_sym_let] = ACTIONS(2326), - [anon_sym_let_DASHenv] = ACTIONS(2326), - [anon_sym_mut] = ACTIONS(2326), - [anon_sym_const] = ACTIONS(2326), - [aux_sym_cmd_identifier_token1] = ACTIONS(2326), - [aux_sym_cmd_identifier_token2] = ACTIONS(2326), - [aux_sym_cmd_identifier_token3] = ACTIONS(2326), - [aux_sym_cmd_identifier_token4] = ACTIONS(2326), - [aux_sym_cmd_identifier_token5] = ACTIONS(2326), - [aux_sym_cmd_identifier_token6] = ACTIONS(2326), - [aux_sym_cmd_identifier_token7] = ACTIONS(2326), - [aux_sym_cmd_identifier_token8] = ACTIONS(2326), - [aux_sym_cmd_identifier_token9] = ACTIONS(2326), - [aux_sym_cmd_identifier_token10] = ACTIONS(2326), - [aux_sym_cmd_identifier_token11] = ACTIONS(2326), - [aux_sym_cmd_identifier_token12] = ACTIONS(2326), - [aux_sym_cmd_identifier_token13] = ACTIONS(2326), - [aux_sym_cmd_identifier_token14] = ACTIONS(2326), - [aux_sym_cmd_identifier_token15] = ACTIONS(2326), - [aux_sym_cmd_identifier_token16] = ACTIONS(2326), - [aux_sym_cmd_identifier_token17] = ACTIONS(2326), - [aux_sym_cmd_identifier_token18] = ACTIONS(2326), - [aux_sym_cmd_identifier_token19] = ACTIONS(2326), - [aux_sym_cmd_identifier_token20] = ACTIONS(2326), - [aux_sym_cmd_identifier_token21] = ACTIONS(2326), - [aux_sym_cmd_identifier_token22] = ACTIONS(2326), - [aux_sym_cmd_identifier_token23] = ACTIONS(2326), - [aux_sym_cmd_identifier_token24] = ACTIONS(2326), - [aux_sym_cmd_identifier_token25] = ACTIONS(2326), - [aux_sym_cmd_identifier_token26] = ACTIONS(2326), - [aux_sym_cmd_identifier_token27] = ACTIONS(2326), - [aux_sym_cmd_identifier_token28] = ACTIONS(2326), - [aux_sym_cmd_identifier_token29] = ACTIONS(2326), - [aux_sym_cmd_identifier_token30] = ACTIONS(2326), - [aux_sym_cmd_identifier_token31] = ACTIONS(2326), - [aux_sym_cmd_identifier_token32] = ACTIONS(2326), - [aux_sym_cmd_identifier_token33] = ACTIONS(2326), - [aux_sym_cmd_identifier_token34] = ACTIONS(2326), - [aux_sym_cmd_identifier_token35] = ACTIONS(2326), - [aux_sym_cmd_identifier_token36] = ACTIONS(2326), - [anon_sym_true] = ACTIONS(2328), - [anon_sym_false] = ACTIONS(2328), - [anon_sym_null] = ACTIONS(2328), - [aux_sym_cmd_identifier_token38] = ACTIONS(2326), - [aux_sym_cmd_identifier_token39] = ACTIONS(2328), - [aux_sym_cmd_identifier_token40] = ACTIONS(2328), - [anon_sym_def] = ACTIONS(2326), - [anon_sym_export_DASHenv] = ACTIONS(2326), - [anon_sym_extern] = ACTIONS(2326), - [anon_sym_module] = ACTIONS(2326), - [anon_sym_use] = ACTIONS(2326), - [anon_sym_LPAREN] = ACTIONS(2328), - [anon_sym_DOLLAR] = ACTIONS(2328), - [anon_sym_error] = ACTIONS(2326), - [anon_sym_list] = ACTIONS(2326), - [anon_sym_DASH] = ACTIONS(2326), - [anon_sym_break] = ACTIONS(2326), - [anon_sym_continue] = ACTIONS(2326), - [anon_sym_for] = ACTIONS(2326), - [anon_sym_in] = ACTIONS(2326), - [anon_sym_loop] = ACTIONS(2326), - [anon_sym_make] = ACTIONS(2326), - [anon_sym_while] = ACTIONS(2326), - [anon_sym_do] = ACTIONS(2326), - [anon_sym_if] = ACTIONS(2326), - [anon_sym_else] = ACTIONS(2326), - [anon_sym_match] = ACTIONS(2326), - [anon_sym_RBRACE] = ACTIONS(2328), - [anon_sym_try] = ACTIONS(2326), - [anon_sym_catch] = ACTIONS(2326), - [anon_sym_return] = ACTIONS(2326), - [anon_sym_source] = ACTIONS(2326), - [anon_sym_source_DASHenv] = ACTIONS(2326), - [anon_sym_register] = ACTIONS(2326), - [anon_sym_hide] = ACTIONS(2326), - [anon_sym_hide_DASHenv] = ACTIONS(2326), - [anon_sym_overlay] = ACTIONS(2326), - [anon_sym_new] = ACTIONS(2326), - [anon_sym_as] = ACTIONS(2326), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2328), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2328), - [aux_sym__val_number_decimal_token1] = ACTIONS(2326), - [aux_sym__val_number_decimal_token2] = ACTIONS(2328), - [aux_sym__val_number_decimal_token3] = ACTIONS(2328), - [aux_sym__val_number_decimal_token4] = ACTIONS(2328), - [aux_sym__val_number_token1] = ACTIONS(2328), - [aux_sym__val_number_token2] = ACTIONS(2328), - [aux_sym__val_number_token3] = ACTIONS(2328), - [anon_sym_DQUOTE] = ACTIONS(2328), - [sym__str_single_quotes] = ACTIONS(2328), - [sym__str_back_ticks] = ACTIONS(2328), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2328), - [anon_sym_PLUS] = ACTIONS(2326), - [anon_sym_POUND] = ACTIONS(247), - }, - [666] = { - [sym_comment] = STATE(666), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_alias] = ACTIONS(1006), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_let_DASHenv] = ACTIONS(1006), - [anon_sym_mut] = ACTIONS(1006), - [anon_sym_const] = ACTIONS(1006), - [aux_sym_cmd_identifier_token1] = ACTIONS(1006), - [aux_sym_cmd_identifier_token2] = ACTIONS(1006), - [aux_sym_cmd_identifier_token3] = ACTIONS(1006), - [aux_sym_cmd_identifier_token4] = ACTIONS(1006), - [aux_sym_cmd_identifier_token5] = ACTIONS(1006), - [aux_sym_cmd_identifier_token6] = ACTIONS(1006), - [aux_sym_cmd_identifier_token7] = ACTIONS(1006), - [aux_sym_cmd_identifier_token8] = ACTIONS(1006), - [aux_sym_cmd_identifier_token9] = ACTIONS(1006), - [aux_sym_cmd_identifier_token10] = ACTIONS(1006), - [aux_sym_cmd_identifier_token11] = ACTIONS(1006), - [aux_sym_cmd_identifier_token12] = ACTIONS(1006), - [aux_sym_cmd_identifier_token13] = ACTIONS(1006), - [aux_sym_cmd_identifier_token14] = ACTIONS(1006), - [aux_sym_cmd_identifier_token15] = ACTIONS(1006), - [aux_sym_cmd_identifier_token16] = ACTIONS(1006), - [aux_sym_cmd_identifier_token17] = ACTIONS(1006), - [aux_sym_cmd_identifier_token18] = ACTIONS(1006), - [aux_sym_cmd_identifier_token19] = ACTIONS(1006), - [aux_sym_cmd_identifier_token20] = ACTIONS(1006), - [aux_sym_cmd_identifier_token21] = ACTIONS(1006), - [aux_sym_cmd_identifier_token22] = ACTIONS(1006), - [aux_sym_cmd_identifier_token23] = ACTIONS(1006), - [aux_sym_cmd_identifier_token24] = ACTIONS(1006), - [aux_sym_cmd_identifier_token25] = ACTIONS(1006), - [aux_sym_cmd_identifier_token26] = ACTIONS(1006), - [aux_sym_cmd_identifier_token27] = ACTIONS(1006), - [aux_sym_cmd_identifier_token28] = ACTIONS(1006), - [aux_sym_cmd_identifier_token29] = ACTIONS(1006), - [aux_sym_cmd_identifier_token30] = ACTIONS(1006), - [aux_sym_cmd_identifier_token31] = ACTIONS(1006), - [aux_sym_cmd_identifier_token32] = ACTIONS(1006), - [aux_sym_cmd_identifier_token33] = ACTIONS(1006), - [aux_sym_cmd_identifier_token34] = ACTIONS(1006), - [aux_sym_cmd_identifier_token35] = ACTIONS(1006), - [aux_sym_cmd_identifier_token36] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1008), - [anon_sym_false] = ACTIONS(1008), - [anon_sym_null] = ACTIONS(1008), - [aux_sym_cmd_identifier_token38] = ACTIONS(1006), - [aux_sym_cmd_identifier_token39] = ACTIONS(1008), - [aux_sym_cmd_identifier_token40] = ACTIONS(1008), - [anon_sym_def] = ACTIONS(1006), - [anon_sym_export_DASHenv] = ACTIONS(1006), - [anon_sym_extern] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_use] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_DOLLAR] = ACTIONS(1008), - [anon_sym_error] = ACTIONS(1006), - [anon_sym_list] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_in] = ACTIONS(1006), - [anon_sym_loop] = ACTIONS(1006), - [anon_sym_make] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_else] = ACTIONS(1006), - [anon_sym_match] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1008), - [anon_sym_try] = ACTIONS(1006), - [anon_sym_catch] = ACTIONS(1006), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_source] = ACTIONS(1006), - [anon_sym_source_DASHenv] = ACTIONS(1006), - [anon_sym_register] = ACTIONS(1006), - [anon_sym_hide] = ACTIONS(1006), - [anon_sym_hide_DASHenv] = ACTIONS(1006), - [anon_sym_overlay] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1006), - [anon_sym_as] = ACTIONS(1006), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1008), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1008), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1008), - [aux_sym__val_number_decimal_token3] = ACTIONS(1008), - [aux_sym__val_number_decimal_token4] = ACTIONS(1008), - [aux_sym__val_number_token1] = ACTIONS(1008), - [aux_sym__val_number_token2] = ACTIONS(1008), - [aux_sym__val_number_token3] = ACTIONS(1008), - [anon_sym_DQUOTE] = ACTIONS(1008), - [sym__str_single_quotes] = ACTIONS(1008), - [sym__str_back_ticks] = ACTIONS(1008), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(247), - }, - [667] = { - [sym_comment] = STATE(667), - [anon_sym_export] = ACTIONS(2271), - [anon_sym_alias] = ACTIONS(2271), - [anon_sym_let] = ACTIONS(2271), - [anon_sym_let_DASHenv] = ACTIONS(2271), - [anon_sym_mut] = ACTIONS(2271), - [anon_sym_const] = ACTIONS(2271), - [aux_sym_cmd_identifier_token1] = ACTIONS(2271), - [aux_sym_cmd_identifier_token2] = ACTIONS(2271), - [aux_sym_cmd_identifier_token3] = ACTIONS(2271), - [aux_sym_cmd_identifier_token4] = ACTIONS(2271), - [aux_sym_cmd_identifier_token5] = ACTIONS(2271), - [aux_sym_cmd_identifier_token6] = ACTIONS(2271), - [aux_sym_cmd_identifier_token7] = ACTIONS(2271), - [aux_sym_cmd_identifier_token8] = ACTIONS(2271), - [aux_sym_cmd_identifier_token9] = ACTIONS(2271), - [aux_sym_cmd_identifier_token10] = ACTIONS(2271), - [aux_sym_cmd_identifier_token11] = ACTIONS(2271), - [aux_sym_cmd_identifier_token12] = ACTIONS(2271), - [aux_sym_cmd_identifier_token13] = ACTIONS(2271), - [aux_sym_cmd_identifier_token14] = ACTIONS(2271), - [aux_sym_cmd_identifier_token15] = ACTIONS(2271), - [aux_sym_cmd_identifier_token16] = ACTIONS(2271), - [aux_sym_cmd_identifier_token17] = ACTIONS(2271), - [aux_sym_cmd_identifier_token18] = ACTIONS(2271), - [aux_sym_cmd_identifier_token19] = ACTIONS(2271), - [aux_sym_cmd_identifier_token20] = ACTIONS(2271), - [aux_sym_cmd_identifier_token21] = ACTIONS(2271), - [aux_sym_cmd_identifier_token22] = ACTIONS(2271), - [aux_sym_cmd_identifier_token23] = ACTIONS(2271), - [aux_sym_cmd_identifier_token24] = ACTIONS(2271), - [aux_sym_cmd_identifier_token25] = ACTIONS(2271), - [aux_sym_cmd_identifier_token26] = ACTIONS(2271), - [aux_sym_cmd_identifier_token27] = ACTIONS(2271), - [aux_sym_cmd_identifier_token28] = ACTIONS(2271), - [aux_sym_cmd_identifier_token29] = ACTIONS(2271), - [aux_sym_cmd_identifier_token30] = ACTIONS(2271), - [aux_sym_cmd_identifier_token31] = ACTIONS(2271), - [aux_sym_cmd_identifier_token32] = ACTIONS(2271), - [aux_sym_cmd_identifier_token33] = ACTIONS(2271), - [aux_sym_cmd_identifier_token34] = ACTIONS(2271), - [aux_sym_cmd_identifier_token35] = ACTIONS(2271), - [aux_sym_cmd_identifier_token36] = ACTIONS(2271), - [anon_sym_true] = ACTIONS(2273), - [anon_sym_false] = ACTIONS(2273), - [anon_sym_null] = ACTIONS(2273), - [aux_sym_cmd_identifier_token38] = ACTIONS(2271), - [aux_sym_cmd_identifier_token39] = ACTIONS(2273), - [aux_sym_cmd_identifier_token40] = ACTIONS(2273), - [anon_sym_def] = ACTIONS(2271), - [anon_sym_export_DASHenv] = ACTIONS(2271), - [anon_sym_extern] = ACTIONS(2271), - [anon_sym_module] = ACTIONS(2271), - [anon_sym_use] = ACTIONS(2271), - [anon_sym_LPAREN] = ACTIONS(2273), - [anon_sym_DOLLAR] = ACTIONS(2273), - [anon_sym_error] = ACTIONS(2271), - [anon_sym_list] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_break] = ACTIONS(2271), - [anon_sym_continue] = ACTIONS(2271), - [anon_sym_for] = ACTIONS(2271), - [anon_sym_in] = ACTIONS(2271), - [anon_sym_loop] = ACTIONS(2271), - [anon_sym_make] = ACTIONS(2271), - [anon_sym_while] = ACTIONS(2271), - [anon_sym_do] = ACTIONS(2271), - [anon_sym_if] = ACTIONS(2271), - [anon_sym_else] = ACTIONS(2271), - [anon_sym_match] = ACTIONS(2271), - [anon_sym_RBRACE] = ACTIONS(2273), - [anon_sym_try] = ACTIONS(2271), - [anon_sym_catch] = ACTIONS(2271), - [anon_sym_return] = ACTIONS(2271), - [anon_sym_source] = ACTIONS(2271), - [anon_sym_source_DASHenv] = ACTIONS(2271), - [anon_sym_register] = ACTIONS(2271), - [anon_sym_hide] = ACTIONS(2271), - [anon_sym_hide_DASHenv] = ACTIONS(2271), - [anon_sym_overlay] = ACTIONS(2271), - [anon_sym_new] = ACTIONS(2271), - [anon_sym_as] = ACTIONS(2271), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2273), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2273), - [aux_sym__val_number_decimal_token1] = ACTIONS(2271), - [aux_sym__val_number_decimal_token2] = ACTIONS(2273), - [aux_sym__val_number_decimal_token3] = ACTIONS(2273), - [aux_sym__val_number_decimal_token4] = ACTIONS(2273), - [aux_sym__val_number_token1] = ACTIONS(2273), - [aux_sym__val_number_token2] = ACTIONS(2273), - [aux_sym__val_number_token3] = ACTIONS(2273), - [anon_sym_DQUOTE] = ACTIONS(2273), - [sym__str_single_quotes] = ACTIONS(2273), - [sym__str_back_ticks] = ACTIONS(2273), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2273), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_POUND] = ACTIONS(247), - }, - [668] = { - [sym_expr_parenthesized] = STATE(1646), - [sym_val_range] = STATE(2010), - [sym__val_range] = STATE(7839), - [sym__val_range_with_end] = STATE(7660), - [sym__value] = STATE(2010), - [sym_val_nothing] = STATE(1867), - [sym_val_bool] = STATE(1677), - [sym_val_variable] = STATE(1542), - [sym_val_number] = STATE(1867), - [sym__val_number_decimal] = STATE(1275), - [sym__val_number] = STATE(1945), - [sym_val_duration] = STATE(1867), - [sym_val_filesize] = STATE(1867), - [sym_val_binary] = STATE(1867), - [sym_val_string] = STATE(1867), - [sym__str_double_quotes] = STATE(1954), - [sym_val_interpolated] = STATE(1867), - [sym__inter_single_quotes] = STATE(1824), - [sym__inter_double_quotes] = STATE(1826), - [sym_val_list] = STATE(1867), - [sym_val_record] = STATE(1867), - [sym_val_table] = STATE(1867), - [sym_val_closure] = STATE(1867), - [sym__flag] = STATE(2010), - [sym_short_flag] = STATE(1924), - [sym_long_flag] = STATE(1924), - [sym_unquoted] = STATE(1694), - [sym__unquoted_with_expr] = STATE(2021), - [sym__unquoted_anonymous_prefix] = STATE(7414), - [sym_comment] = STATE(668), - [aux_sym_shebang_repeat1] = STATE(825), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(677), - [anon_sym_true] = ACTIONS(2455), - [anon_sym_false] = ACTIONS(2455), - [anon_sym_null] = ACTIONS(2457), - [aux_sym_cmd_identifier_token38] = ACTIONS(2459), - [aux_sym_cmd_identifier_token39] = ACTIONS(2459), - [aux_sym_cmd_identifier_token40] = ACTIONS(2459), - [sym__newline] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2463), - [anon_sym_PIPE] = ACTIONS(2463), - [anon_sym_err_GT_PIPE] = ACTIONS(2463), - [anon_sym_out_GT_PIPE] = ACTIONS(2463), - [anon_sym_e_GT_PIPE] = ACTIONS(2463), - [anon_sym_o_GT_PIPE] = ACTIONS(2463), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2463), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2463), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2463), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2463), - [anon_sym_LBRACK] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2467), - [anon_sym_RPAREN] = ACTIONS(2463), - [anon_sym_DOLLAR] = ACTIONS(2469), - [anon_sym_DASH_DASH] = ACTIONS(2471), - [anon_sym_DASH] = ACTIONS(2473), - [aux_sym_ctrl_match_token1] = ACTIONS(2475), - [anon_sym_DOT_DOT] = ACTIONS(2477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2479), - [anon_sym_DOT_DOT_LT] = ACTIONS(2479), - [aux_sym__val_number_decimal_token1] = ACTIONS(2481), - [aux_sym__val_number_decimal_token2] = ACTIONS(2483), - [aux_sym__val_number_decimal_token3] = ACTIONS(2485), - [aux_sym__val_number_decimal_token4] = ACTIONS(2487), - [aux_sym__val_number_token1] = ACTIONS(2489), - [aux_sym__val_number_token2] = ACTIONS(2489), - [aux_sym__val_number_token3] = ACTIONS(2489), - [anon_sym_0b] = ACTIONS(2491), - [anon_sym_0o] = ACTIONS(2493), - [anon_sym_0x] = ACTIONS(2493), - [sym_val_date] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [sym__str_single_quotes] = ACTIONS(2499), - [sym__str_back_ticks] = ACTIONS(2499), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2501), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2503), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(2509), - [anon_sym_POUND] = ACTIONS(247), - }, - [669] = { - [sym_expr_parenthesized] = STATE(1543), - [sym_val_range] = STATE(1909), - [sym__val_range] = STATE(7839), - [sym__val_range_with_end] = STATE(7660), - [sym__value] = STATE(1909), - [sym_val_nothing] = STATE(1867), - [sym_val_bool] = STATE(1677), - [sym_val_variable] = STATE(1542), - [sym_val_number] = STATE(1867), - [sym__val_number_decimal] = STATE(1275), - [sym__val_number] = STATE(1945), - [sym_val_duration] = STATE(1867), - [sym_val_filesize] = STATE(1867), - [sym_val_binary] = STATE(1867), - [sym_val_string] = STATE(1867), - [sym__str_double_quotes] = STATE(1954), - [sym_val_interpolated] = STATE(1867), - [sym__inter_single_quotes] = STATE(1824), - [sym__inter_double_quotes] = STATE(1826), - [sym_val_list] = STATE(1867), - [sym_val_record] = STATE(1867), - [sym_val_table] = STATE(1867), - [sym_val_closure] = STATE(1867), - [sym__flag] = STATE(1909), - [sym_short_flag] = STATE(1924), - [sym_long_flag] = STATE(1924), - [sym_unquoted] = STATE(1670), - [sym__unquoted_with_expr] = STATE(1915), - [sym__unquoted_anonymous_prefix] = STATE(7414), - [sym_comment] = STATE(669), - [aux_sym_ctrl_do_repeat2] = STATE(669), - [anon_sym_true] = ACTIONS(2511), - [anon_sym_false] = ACTIONS(2511), - [anon_sym_null] = ACTIONS(2514), - [aux_sym_cmd_identifier_token38] = ACTIONS(2517), - [aux_sym_cmd_identifier_token39] = ACTIONS(2517), - [aux_sym_cmd_identifier_token40] = ACTIONS(2517), - [sym__newline] = ACTIONS(2520), - [anon_sym_SEMI] = ACTIONS(2520), - [anon_sym_PIPE] = ACTIONS(2520), - [anon_sym_err_GT_PIPE] = ACTIONS(2520), - [anon_sym_out_GT_PIPE] = ACTIONS(2520), - [anon_sym_e_GT_PIPE] = ACTIONS(2520), - [anon_sym_o_GT_PIPE] = ACTIONS(2520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_LPAREN] = ACTIONS(2525), - [anon_sym_RPAREN] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2528), - [anon_sym_DASH_DASH] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2534), - [aux_sym_ctrl_match_token1] = ACTIONS(2537), - [anon_sym_RBRACE] = ACTIONS(2520), - [anon_sym_DOT_DOT] = ACTIONS(2540), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2543), - [anon_sym_DOT_DOT_LT] = ACTIONS(2543), - [aux_sym__val_number_decimal_token1] = ACTIONS(2546), - [aux_sym__val_number_decimal_token2] = ACTIONS(2549), - [aux_sym__val_number_decimal_token3] = ACTIONS(2552), - [aux_sym__val_number_decimal_token4] = ACTIONS(2555), - [aux_sym__val_number_token1] = ACTIONS(2558), - [aux_sym__val_number_token2] = ACTIONS(2558), - [aux_sym__val_number_token3] = ACTIONS(2558), - [anon_sym_0b] = ACTIONS(2561), - [anon_sym_0o] = ACTIONS(2564), - [anon_sym_0x] = ACTIONS(2564), - [sym_val_date] = ACTIONS(2567), - [anon_sym_DQUOTE] = ACTIONS(2570), - [sym__str_single_quotes] = ACTIONS(2573), - [sym__str_back_ticks] = ACTIONS(2573), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2576), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2579), - [anon_sym_err_GT] = ACTIONS(2582), - [anon_sym_out_GT] = ACTIONS(2582), - [anon_sym_e_GT] = ACTIONS(2582), - [anon_sym_o_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT] = ACTIONS(2582), - [anon_sym_err_GT_GT] = ACTIONS(2585), - [anon_sym_out_GT_GT] = ACTIONS(2585), - [anon_sym_e_GT_GT] = ACTIONS(2585), - [anon_sym_o_GT_GT] = ACTIONS(2585), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2585), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2585), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2585), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2585), - [aux_sym_unquoted_token1] = ACTIONS(2588), - [anon_sym_POUND] = ACTIONS(247), - }, - [670] = { - [sym_expr_parenthesized] = STATE(1646), - [sym_val_range] = STATE(2010), - [sym__val_range] = STATE(7839), - [sym__val_range_with_end] = STATE(7660), - [sym__value] = STATE(2010), - [sym_val_nothing] = STATE(1867), - [sym_val_bool] = STATE(1677), - [sym_val_variable] = STATE(1542), - [sym_val_number] = STATE(1867), - [sym__val_number_decimal] = STATE(1275), - [sym__val_number] = STATE(1945), - [sym_val_duration] = STATE(1867), - [sym_val_filesize] = STATE(1867), - [sym_val_binary] = STATE(1867), - [sym_val_string] = STATE(1867), - [sym__str_double_quotes] = STATE(1954), - [sym_val_interpolated] = STATE(1867), - [sym__inter_single_quotes] = STATE(1824), - [sym__inter_double_quotes] = STATE(1826), - [sym_val_list] = STATE(1867), - [sym_val_record] = STATE(1867), - [sym_val_table] = STATE(1867), - [sym_val_closure] = STATE(1867), - [sym__flag] = STATE(2010), - [sym_short_flag] = STATE(1924), - [sym_long_flag] = STATE(1924), - [sym_unquoted] = STATE(1694), - [sym__unquoted_with_expr] = STATE(2021), - [sym__unquoted_anonymous_prefix] = STATE(7414), - [sym_comment] = STATE(670), - [aux_sym_shebang_repeat1] = STATE(825), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(671), - [anon_sym_true] = ACTIONS(2455), - [anon_sym_false] = ACTIONS(2455), - [anon_sym_null] = ACTIONS(2457), - [aux_sym_cmd_identifier_token38] = ACTIONS(2459), - [aux_sym_cmd_identifier_token39] = ACTIONS(2459), - [aux_sym_cmd_identifier_token40] = ACTIONS(2459), - [sym__newline] = ACTIONS(2591), - [anon_sym_SEMI] = ACTIONS(2591), - [anon_sym_PIPE] = ACTIONS(2591), - [anon_sym_err_GT_PIPE] = ACTIONS(2591), - [anon_sym_out_GT_PIPE] = ACTIONS(2591), - [anon_sym_e_GT_PIPE] = ACTIONS(2591), - [anon_sym_o_GT_PIPE] = ACTIONS(2591), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2591), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2591), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2591), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2591), - [anon_sym_LBRACK] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2467), - [anon_sym_RPAREN] = ACTIONS(2591), - [anon_sym_DOLLAR] = ACTIONS(2469), - [anon_sym_DASH_DASH] = ACTIONS(2471), - [anon_sym_DASH] = ACTIONS(2473), - [aux_sym_ctrl_match_token1] = ACTIONS(2475), - [anon_sym_DOT_DOT] = ACTIONS(2477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2479), - [anon_sym_DOT_DOT_LT] = ACTIONS(2479), - [aux_sym__val_number_decimal_token1] = ACTIONS(2481), - [aux_sym__val_number_decimal_token2] = ACTIONS(2483), - [aux_sym__val_number_decimal_token3] = ACTIONS(2485), - [aux_sym__val_number_decimal_token4] = ACTIONS(2487), - [aux_sym__val_number_token1] = ACTIONS(2489), - [aux_sym__val_number_token2] = ACTIONS(2489), - [aux_sym__val_number_token3] = ACTIONS(2489), - [anon_sym_0b] = ACTIONS(2491), - [anon_sym_0o] = ACTIONS(2493), - [anon_sym_0x] = ACTIONS(2493), - [sym_val_date] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [sym__str_single_quotes] = ACTIONS(2499), - [sym__str_back_ticks] = ACTIONS(2499), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2501), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2503), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(2509), - [anon_sym_POUND] = ACTIONS(247), - }, - [671] = { - [sym_expr_parenthesized] = STATE(1646), - [sym_val_range] = STATE(2010), - [sym__val_range] = STATE(7839), - [sym__val_range_with_end] = STATE(7660), - [sym__value] = STATE(2010), - [sym_val_nothing] = STATE(1867), - [sym_val_bool] = STATE(1677), - [sym_val_variable] = STATE(1542), - [sym_val_number] = STATE(1867), - [sym__val_number_decimal] = STATE(1275), - [sym__val_number] = STATE(1945), - [sym_val_duration] = STATE(1867), - [sym_val_filesize] = STATE(1867), - [sym_val_binary] = STATE(1867), - [sym_val_string] = STATE(1867), - [sym__str_double_quotes] = STATE(1954), - [sym_val_interpolated] = STATE(1867), - [sym__inter_single_quotes] = STATE(1824), - [sym__inter_double_quotes] = STATE(1826), - [sym_val_list] = STATE(1867), - [sym_val_record] = STATE(1867), - [sym_val_table] = STATE(1867), - [sym_val_closure] = STATE(1867), - [sym__flag] = STATE(2010), - [sym_short_flag] = STATE(1924), - [sym_long_flag] = STATE(1924), - [sym_unquoted] = STATE(1694), - [sym__unquoted_with_expr] = STATE(2021), - [sym__unquoted_anonymous_prefix] = STATE(7414), - [sym_comment] = STATE(671), - [aux_sym_shebang_repeat1] = STATE(825), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(677), - [anon_sym_true] = ACTIONS(2455), - [anon_sym_false] = ACTIONS(2455), - [anon_sym_null] = ACTIONS(2457), - [aux_sym_cmd_identifier_token38] = ACTIONS(2459), - [aux_sym_cmd_identifier_token39] = ACTIONS(2459), - [aux_sym_cmd_identifier_token40] = ACTIONS(2459), - [sym__newline] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2593), - [anon_sym_PIPE] = ACTIONS(2593), - [anon_sym_err_GT_PIPE] = ACTIONS(2593), - [anon_sym_out_GT_PIPE] = ACTIONS(2593), - [anon_sym_e_GT_PIPE] = ACTIONS(2593), - [anon_sym_o_GT_PIPE] = ACTIONS(2593), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2593), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2593), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2593), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2593), - [anon_sym_LBRACK] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2467), - [anon_sym_RPAREN] = ACTIONS(2593), - [anon_sym_DOLLAR] = ACTIONS(2469), - [anon_sym_DASH_DASH] = ACTIONS(2471), - [anon_sym_DASH] = ACTIONS(2473), - [aux_sym_ctrl_match_token1] = ACTIONS(2475), - [anon_sym_DOT_DOT] = ACTIONS(2477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2479), - [anon_sym_DOT_DOT_LT] = ACTIONS(2479), - [aux_sym__val_number_decimal_token1] = ACTIONS(2481), - [aux_sym__val_number_decimal_token2] = ACTIONS(2483), - [aux_sym__val_number_decimal_token3] = ACTIONS(2485), - [aux_sym__val_number_decimal_token4] = ACTIONS(2487), - [aux_sym__val_number_token1] = ACTIONS(2489), - [aux_sym__val_number_token2] = ACTIONS(2489), - [aux_sym__val_number_token3] = ACTIONS(2489), - [anon_sym_0b] = ACTIONS(2491), - [anon_sym_0o] = ACTIONS(2493), - [anon_sym_0x] = ACTIONS(2493), - [sym_val_date] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [sym__str_single_quotes] = ACTIONS(2499), - [sym__str_back_ticks] = ACTIONS(2499), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2501), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2503), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(2509), - [anon_sym_POUND] = ACTIONS(247), - }, - [672] = { - [sym_expr_parenthesized] = STATE(1646), - [sym_val_range] = STATE(2010), - [sym__val_range] = STATE(7839), - [sym__val_range_with_end] = STATE(7660), - [sym__value] = STATE(2010), - [sym_val_nothing] = STATE(1867), - [sym_val_bool] = STATE(1677), - [sym_val_variable] = STATE(1542), - [sym_val_number] = STATE(1867), - [sym__val_number_decimal] = STATE(1275), - [sym__val_number] = STATE(1945), - [sym_val_duration] = STATE(1867), - [sym_val_filesize] = STATE(1867), - [sym_val_binary] = STATE(1867), - [sym_val_string] = STATE(1867), - [sym__str_double_quotes] = STATE(1954), - [sym_val_interpolated] = STATE(1867), - [sym__inter_single_quotes] = STATE(1824), - [sym__inter_double_quotes] = STATE(1826), - [sym_val_list] = STATE(1867), - [sym_val_record] = STATE(1867), - [sym_val_table] = STATE(1867), - [sym_val_closure] = STATE(1867), - [sym__flag] = STATE(2010), - [sym_short_flag] = STATE(1924), - [sym_long_flag] = STATE(1924), - [sym_unquoted] = STATE(1694), - [sym__unquoted_with_expr] = STATE(2021), - [sym__unquoted_anonymous_prefix] = STATE(7414), - [sym_comment] = STATE(672), - [aux_sym_shebang_repeat1] = STATE(825), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(668), - [anon_sym_true] = ACTIONS(2455), - [anon_sym_false] = ACTIONS(2455), - [anon_sym_null] = ACTIONS(2457), - [aux_sym_cmd_identifier_token38] = ACTIONS(2459), - [aux_sym_cmd_identifier_token39] = ACTIONS(2459), - [aux_sym_cmd_identifier_token40] = ACTIONS(2459), - [sym__newline] = ACTIONS(2593), - [anon_sym_SEMI] = ACTIONS(2593), - [anon_sym_PIPE] = ACTIONS(2593), - [anon_sym_err_GT_PIPE] = ACTIONS(2593), - [anon_sym_out_GT_PIPE] = ACTIONS(2593), - [anon_sym_e_GT_PIPE] = ACTIONS(2593), - [anon_sym_o_GT_PIPE] = ACTIONS(2593), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2593), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2593), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2593), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2593), - [anon_sym_LBRACK] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2467), - [anon_sym_RPAREN] = ACTIONS(2593), - [anon_sym_DOLLAR] = ACTIONS(2469), - [anon_sym_DASH_DASH] = ACTIONS(2471), - [anon_sym_DASH] = ACTIONS(2473), - [aux_sym_ctrl_match_token1] = ACTIONS(2475), - [anon_sym_DOT_DOT] = ACTIONS(2477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2479), - [anon_sym_DOT_DOT_LT] = ACTIONS(2479), - [aux_sym__val_number_decimal_token1] = ACTIONS(2481), - [aux_sym__val_number_decimal_token2] = ACTIONS(2483), - [aux_sym__val_number_decimal_token3] = ACTIONS(2485), - [aux_sym__val_number_decimal_token4] = ACTIONS(2487), - [aux_sym__val_number_token1] = ACTIONS(2489), - [aux_sym__val_number_token2] = ACTIONS(2489), - [aux_sym__val_number_token3] = ACTIONS(2489), - [anon_sym_0b] = ACTIONS(2491), - [anon_sym_0o] = ACTIONS(2493), - [anon_sym_0x] = ACTIONS(2493), - [sym_val_date] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [sym__str_single_quotes] = ACTIONS(2499), - [sym__str_back_ticks] = ACTIONS(2499), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2501), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2503), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(2509), - [anon_sym_POUND] = ACTIONS(247), - }, - [673] = { - [sym_expr_parenthesized] = STATE(1543), - [sym_val_range] = STATE(1909), - [sym__val_range] = STATE(7839), - [sym__val_range_with_end] = STATE(7660), - [sym__value] = STATE(1909), - [sym_val_nothing] = STATE(1867), - [sym_val_bool] = STATE(1677), - [sym_val_variable] = STATE(1542), - [sym_val_number] = STATE(1867), - [sym__val_number_decimal] = STATE(1275), - [sym__val_number] = STATE(1945), - [sym_val_duration] = STATE(1867), - [sym_val_filesize] = STATE(1867), - [sym_val_binary] = STATE(1867), - [sym_val_string] = STATE(1867), - [sym__str_double_quotes] = STATE(1954), - [sym_val_interpolated] = STATE(1867), - [sym__inter_single_quotes] = STATE(1824), - [sym__inter_double_quotes] = STATE(1826), - [sym_val_list] = STATE(1867), - [sym_val_record] = STATE(1867), - [sym_val_table] = STATE(1867), - [sym_val_closure] = STATE(1867), - [sym__flag] = STATE(1909), - [sym_short_flag] = STATE(1924), - [sym_long_flag] = STATE(1924), - [sym_unquoted] = STATE(1670), - [sym__unquoted_with_expr] = STATE(1915), - [sym__unquoted_anonymous_prefix] = STATE(7414), - [sym_comment] = STATE(673), - [aux_sym_ctrl_do_repeat2] = STATE(675), - [anon_sym_true] = ACTIONS(2455), - [anon_sym_false] = ACTIONS(2455), - [anon_sym_null] = ACTIONS(2457), - [aux_sym_cmd_identifier_token38] = ACTIONS(2459), - [aux_sym_cmd_identifier_token39] = ACTIONS(2459), - [aux_sym_cmd_identifier_token40] = ACTIONS(2459), - [sym__newline] = ACTIONS(2595), - [anon_sym_SEMI] = ACTIONS(2595), - [anon_sym_PIPE] = ACTIONS(2595), - [anon_sym_err_GT_PIPE] = ACTIONS(2595), - [anon_sym_out_GT_PIPE] = ACTIONS(2595), - [anon_sym_e_GT_PIPE] = ACTIONS(2595), - [anon_sym_o_GT_PIPE] = ACTIONS(2595), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2595), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2595), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2595), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2595), - [anon_sym_LBRACK] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2467), - [anon_sym_RPAREN] = ACTIONS(2595), - [anon_sym_DOLLAR] = ACTIONS(2469), - [anon_sym_DASH_DASH] = ACTIONS(2471), - [anon_sym_DASH] = ACTIONS(2473), - [aux_sym_ctrl_match_token1] = ACTIONS(2475), - [anon_sym_RBRACE] = ACTIONS(2595), - [anon_sym_DOT_DOT] = ACTIONS(2477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2479), - [anon_sym_DOT_DOT_LT] = ACTIONS(2479), - [aux_sym__val_number_decimal_token1] = ACTIONS(2481), - [aux_sym__val_number_decimal_token2] = ACTIONS(2483), - [aux_sym__val_number_decimal_token3] = ACTIONS(2485), - [aux_sym__val_number_decimal_token4] = ACTIONS(2487), - [aux_sym__val_number_token1] = ACTIONS(2489), - [aux_sym__val_number_token2] = ACTIONS(2489), - [aux_sym__val_number_token3] = ACTIONS(2489), - [anon_sym_0b] = ACTIONS(2491), - [anon_sym_0o] = ACTIONS(2493), - [anon_sym_0x] = ACTIONS(2493), - [sym_val_date] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [sym__str_single_quotes] = ACTIONS(2499), - [sym__str_back_ticks] = ACTIONS(2499), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2501), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2503), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(2509), - [anon_sym_POUND] = ACTIONS(247), - }, - [674] = { - [sym_expr_parenthesized] = STATE(1543), - [sym_val_range] = STATE(1909), - [sym__val_range] = STATE(7839), - [sym__val_range_with_end] = STATE(7660), - [sym__value] = STATE(1909), - [sym_val_nothing] = STATE(1867), - [sym_val_bool] = STATE(1677), - [sym_val_variable] = STATE(1542), - [sym_val_number] = STATE(1867), - [sym__val_number_decimal] = STATE(1275), - [sym__val_number] = STATE(1945), - [sym_val_duration] = STATE(1867), - [sym_val_filesize] = STATE(1867), - [sym_val_binary] = STATE(1867), - [sym_val_string] = STATE(1867), - [sym__str_double_quotes] = STATE(1954), - [sym_val_interpolated] = STATE(1867), - [sym__inter_single_quotes] = STATE(1824), - [sym__inter_double_quotes] = STATE(1826), - [sym_val_list] = STATE(1867), - [sym_val_record] = STATE(1867), - [sym_val_table] = STATE(1867), - [sym_val_closure] = STATE(1867), - [sym__flag] = STATE(1909), - [sym_short_flag] = STATE(1924), - [sym_long_flag] = STATE(1924), - [sym_unquoted] = STATE(1670), - [sym__unquoted_with_expr] = STATE(1915), - [sym__unquoted_anonymous_prefix] = STATE(7414), - [sym_comment] = STATE(674), - [aux_sym_ctrl_do_repeat2] = STATE(676), - [anon_sym_true] = ACTIONS(2455), - [anon_sym_false] = ACTIONS(2455), - [anon_sym_null] = ACTIONS(2457), - [aux_sym_cmd_identifier_token38] = ACTIONS(2459), - [aux_sym_cmd_identifier_token39] = ACTIONS(2459), - [aux_sym_cmd_identifier_token40] = ACTIONS(2459), - [sym__newline] = ACTIONS(2597), - [anon_sym_SEMI] = ACTIONS(2597), - [anon_sym_PIPE] = ACTIONS(2597), - [anon_sym_err_GT_PIPE] = ACTIONS(2597), - [anon_sym_out_GT_PIPE] = ACTIONS(2597), - [anon_sym_e_GT_PIPE] = ACTIONS(2597), - [anon_sym_o_GT_PIPE] = ACTIONS(2597), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2597), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2597), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2597), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2597), - [anon_sym_LBRACK] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2467), - [anon_sym_RPAREN] = ACTIONS(2597), - [anon_sym_DOLLAR] = ACTIONS(2469), - [anon_sym_DASH_DASH] = ACTIONS(2471), - [anon_sym_DASH] = ACTIONS(2473), - [aux_sym_ctrl_match_token1] = ACTIONS(2475), - [anon_sym_RBRACE] = ACTIONS(2597), - [anon_sym_DOT_DOT] = ACTIONS(2477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2479), - [anon_sym_DOT_DOT_LT] = ACTIONS(2479), - [aux_sym__val_number_decimal_token1] = ACTIONS(2481), - [aux_sym__val_number_decimal_token2] = ACTIONS(2483), - [aux_sym__val_number_decimal_token3] = ACTIONS(2485), - [aux_sym__val_number_decimal_token4] = ACTIONS(2487), - [aux_sym__val_number_token1] = ACTIONS(2489), - [aux_sym__val_number_token2] = ACTIONS(2489), - [aux_sym__val_number_token3] = ACTIONS(2489), - [anon_sym_0b] = ACTIONS(2491), - [anon_sym_0o] = ACTIONS(2493), - [anon_sym_0x] = ACTIONS(2493), - [sym_val_date] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [sym__str_single_quotes] = ACTIONS(2499), - [sym__str_back_ticks] = ACTIONS(2499), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2501), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2503), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(2509), - [anon_sym_POUND] = ACTIONS(247), - }, - [675] = { - [sym_expr_parenthesized] = STATE(1543), - [sym_val_range] = STATE(1909), - [sym__val_range] = STATE(7839), - [sym__val_range_with_end] = STATE(7660), - [sym__value] = STATE(1909), - [sym_val_nothing] = STATE(1867), - [sym_val_bool] = STATE(1677), - [sym_val_variable] = STATE(1542), - [sym_val_number] = STATE(1867), - [sym__val_number_decimal] = STATE(1275), - [sym__val_number] = STATE(1945), - [sym_val_duration] = STATE(1867), - [sym_val_filesize] = STATE(1867), - [sym_val_binary] = STATE(1867), - [sym_val_string] = STATE(1867), - [sym__str_double_quotes] = STATE(1954), - [sym_val_interpolated] = STATE(1867), - [sym__inter_single_quotes] = STATE(1824), - [sym__inter_double_quotes] = STATE(1826), - [sym_val_list] = STATE(1867), - [sym_val_record] = STATE(1867), - [sym_val_table] = STATE(1867), - [sym_val_closure] = STATE(1867), - [sym__flag] = STATE(1909), - [sym_short_flag] = STATE(1924), - [sym_long_flag] = STATE(1924), - [sym_unquoted] = STATE(1670), - [sym__unquoted_with_expr] = STATE(1915), - [sym__unquoted_anonymous_prefix] = STATE(7414), - [sym_comment] = STATE(675), - [aux_sym_ctrl_do_repeat2] = STATE(669), - [anon_sym_true] = ACTIONS(2455), - [anon_sym_false] = ACTIONS(2455), - [anon_sym_null] = ACTIONS(2457), - [aux_sym_cmd_identifier_token38] = ACTIONS(2459), - [aux_sym_cmd_identifier_token39] = ACTIONS(2459), - [aux_sym_cmd_identifier_token40] = ACTIONS(2459), - [sym__newline] = ACTIONS(2599), - [anon_sym_SEMI] = ACTIONS(2599), - [anon_sym_PIPE] = ACTIONS(2599), - [anon_sym_err_GT_PIPE] = ACTIONS(2599), - [anon_sym_out_GT_PIPE] = ACTIONS(2599), - [anon_sym_e_GT_PIPE] = ACTIONS(2599), - [anon_sym_o_GT_PIPE] = ACTIONS(2599), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2599), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2599), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2599), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2599), - [anon_sym_LBRACK] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2467), - [anon_sym_RPAREN] = ACTIONS(2599), - [anon_sym_DOLLAR] = ACTIONS(2469), - [anon_sym_DASH_DASH] = ACTIONS(2471), - [anon_sym_DASH] = ACTIONS(2473), - [aux_sym_ctrl_match_token1] = ACTIONS(2475), - [anon_sym_RBRACE] = ACTIONS(2599), - [anon_sym_DOT_DOT] = ACTIONS(2477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2479), - [anon_sym_DOT_DOT_LT] = ACTIONS(2479), - [aux_sym__val_number_decimal_token1] = ACTIONS(2481), - [aux_sym__val_number_decimal_token2] = ACTIONS(2483), - [aux_sym__val_number_decimal_token3] = ACTIONS(2485), - [aux_sym__val_number_decimal_token4] = ACTIONS(2487), - [aux_sym__val_number_token1] = ACTIONS(2489), - [aux_sym__val_number_token2] = ACTIONS(2489), - [aux_sym__val_number_token3] = ACTIONS(2489), - [anon_sym_0b] = ACTIONS(2491), - [anon_sym_0o] = ACTIONS(2493), - [anon_sym_0x] = ACTIONS(2493), - [sym_val_date] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [sym__str_single_quotes] = ACTIONS(2499), - [sym__str_back_ticks] = ACTIONS(2499), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2501), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2503), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(2509), - [anon_sym_POUND] = ACTIONS(247), - }, - [676] = { - [sym_expr_parenthesized] = STATE(1543), - [sym_val_range] = STATE(1909), - [sym__val_range] = STATE(7839), - [sym__val_range_with_end] = STATE(7660), - [sym__value] = STATE(1909), - [sym_val_nothing] = STATE(1867), - [sym_val_bool] = STATE(1677), - [sym_val_variable] = STATE(1542), - [sym_val_number] = STATE(1867), - [sym__val_number_decimal] = STATE(1275), - [sym__val_number] = STATE(1945), - [sym_val_duration] = STATE(1867), - [sym_val_filesize] = STATE(1867), - [sym_val_binary] = STATE(1867), - [sym_val_string] = STATE(1867), - [sym__str_double_quotes] = STATE(1954), - [sym_val_interpolated] = STATE(1867), - [sym__inter_single_quotes] = STATE(1824), - [sym__inter_double_quotes] = STATE(1826), - [sym_val_list] = STATE(1867), - [sym_val_record] = STATE(1867), - [sym_val_table] = STATE(1867), - [sym_val_closure] = STATE(1867), - [sym__flag] = STATE(1909), - [sym_short_flag] = STATE(1924), - [sym_long_flag] = STATE(1924), - [sym_unquoted] = STATE(1670), - [sym__unquoted_with_expr] = STATE(1915), - [sym__unquoted_anonymous_prefix] = STATE(7414), - [sym_comment] = STATE(676), - [aux_sym_ctrl_do_repeat2] = STATE(669), - [anon_sym_true] = ACTIONS(2455), - [anon_sym_false] = ACTIONS(2455), - [anon_sym_null] = ACTIONS(2457), - [aux_sym_cmd_identifier_token38] = ACTIONS(2459), - [aux_sym_cmd_identifier_token39] = ACTIONS(2459), - [aux_sym_cmd_identifier_token40] = ACTIONS(2459), - [sym__newline] = ACTIONS(2595), - [anon_sym_SEMI] = ACTIONS(2595), - [anon_sym_PIPE] = ACTIONS(2595), - [anon_sym_err_GT_PIPE] = ACTIONS(2595), - [anon_sym_out_GT_PIPE] = ACTIONS(2595), - [anon_sym_e_GT_PIPE] = ACTIONS(2595), - [anon_sym_o_GT_PIPE] = ACTIONS(2595), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2595), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2595), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2595), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2595), - [anon_sym_LBRACK] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2467), - [anon_sym_RPAREN] = ACTIONS(2595), - [anon_sym_DOLLAR] = ACTIONS(2469), - [anon_sym_DASH_DASH] = ACTIONS(2471), - [anon_sym_DASH] = ACTIONS(2473), - [aux_sym_ctrl_match_token1] = ACTIONS(2475), - [anon_sym_RBRACE] = ACTIONS(2595), - [anon_sym_DOT_DOT] = ACTIONS(2477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2479), - [anon_sym_DOT_DOT_LT] = ACTIONS(2479), - [aux_sym__val_number_decimal_token1] = ACTIONS(2481), - [aux_sym__val_number_decimal_token2] = ACTIONS(2483), - [aux_sym__val_number_decimal_token3] = ACTIONS(2485), - [aux_sym__val_number_decimal_token4] = ACTIONS(2487), - [aux_sym__val_number_token1] = ACTIONS(2489), - [aux_sym__val_number_token2] = ACTIONS(2489), - [aux_sym__val_number_token3] = ACTIONS(2489), - [anon_sym_0b] = ACTIONS(2491), - [anon_sym_0o] = ACTIONS(2493), - [anon_sym_0x] = ACTIONS(2493), - [sym_val_date] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [sym__str_single_quotes] = ACTIONS(2499), - [sym__str_back_ticks] = ACTIONS(2499), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2501), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2503), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(2509), - [anon_sym_POUND] = ACTIONS(247), - }, - [677] = { - [sym_expr_parenthesized] = STATE(1646), - [sym_val_range] = STATE(2010), - [sym__val_range] = STATE(7839), - [sym__val_range_with_end] = STATE(7660), - [sym__value] = STATE(2010), - [sym_val_nothing] = STATE(1867), - [sym_val_bool] = STATE(1677), - [sym_val_variable] = STATE(1542), - [sym_val_number] = STATE(1867), - [sym__val_number_decimal] = STATE(1275), - [sym__val_number] = STATE(1945), - [sym_val_duration] = STATE(1867), - [sym_val_filesize] = STATE(1867), - [sym_val_binary] = STATE(1867), - [sym_val_string] = STATE(1867), - [sym__str_double_quotes] = STATE(1954), - [sym_val_interpolated] = STATE(1867), - [sym__inter_single_quotes] = STATE(1824), - [sym__inter_double_quotes] = STATE(1826), - [sym_val_list] = STATE(1867), - [sym_val_record] = STATE(1867), - [sym_val_table] = STATE(1867), - [sym_val_closure] = STATE(1867), - [sym__flag] = STATE(2010), - [sym_short_flag] = STATE(1924), - [sym_long_flag] = STATE(1924), - [sym_unquoted] = STATE(1694), - [sym__unquoted_with_expr] = STATE(2021), - [sym__unquoted_anonymous_prefix] = STATE(7414), - [sym_comment] = STATE(677), - [aux_sym_shebang_repeat1] = STATE(825), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(677), - [anon_sym_true] = ACTIONS(2601), - [anon_sym_false] = ACTIONS(2601), - [anon_sym_null] = ACTIONS(2604), - [aux_sym_cmd_identifier_token38] = ACTIONS(2607), - [aux_sym_cmd_identifier_token39] = ACTIONS(2607), - [aux_sym_cmd_identifier_token40] = ACTIONS(2607), - [sym__newline] = ACTIONS(2610), - [anon_sym_SEMI] = ACTIONS(2613), - [anon_sym_PIPE] = ACTIONS(2613), - [anon_sym_err_GT_PIPE] = ACTIONS(2613), - [anon_sym_out_GT_PIPE] = ACTIONS(2613), - [anon_sym_e_GT_PIPE] = ACTIONS(2613), - [anon_sym_o_GT_PIPE] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2615), - [anon_sym_LPAREN] = ACTIONS(2618), - [anon_sym_RPAREN] = ACTIONS(2613), - [anon_sym_DOLLAR] = ACTIONS(2621), - [anon_sym_DASH_DASH] = ACTIONS(2624), - [anon_sym_DASH] = ACTIONS(2627), - [aux_sym_ctrl_match_token1] = ACTIONS(2630), - [anon_sym_DOT_DOT] = ACTIONS(2633), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2636), - [anon_sym_DOT_DOT_LT] = ACTIONS(2636), - [aux_sym__val_number_decimal_token1] = ACTIONS(2639), - [aux_sym__val_number_decimal_token2] = ACTIONS(2642), - [aux_sym__val_number_decimal_token3] = ACTIONS(2645), - [aux_sym__val_number_decimal_token4] = ACTIONS(2648), - [aux_sym__val_number_token1] = ACTIONS(2651), - [aux_sym__val_number_token2] = ACTIONS(2651), - [aux_sym__val_number_token3] = ACTIONS(2651), - [anon_sym_0b] = ACTIONS(2654), - [anon_sym_0o] = ACTIONS(2657), - [anon_sym_0x] = ACTIONS(2657), - [sym_val_date] = ACTIONS(2660), - [anon_sym_DQUOTE] = ACTIONS(2663), - [sym__str_single_quotes] = ACTIONS(2666), - [sym__str_back_ticks] = ACTIONS(2666), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2672), - [anon_sym_err_GT] = ACTIONS(2675), - [anon_sym_out_GT] = ACTIONS(2675), - [anon_sym_e_GT] = ACTIONS(2675), - [anon_sym_o_GT] = ACTIONS(2675), - [anon_sym_err_PLUSout_GT] = ACTIONS(2675), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), - [anon_sym_o_PLUSe_GT] = ACTIONS(2675), - [anon_sym_e_PLUSo_GT] = ACTIONS(2675), - [anon_sym_err_GT_GT] = ACTIONS(2678), - [anon_sym_out_GT_GT] = ACTIONS(2678), - [anon_sym_e_GT_GT] = ACTIONS(2678), - [anon_sym_o_GT_GT] = ACTIONS(2678), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2678), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2678), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2678), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2678), - [aux_sym_unquoted_token1] = ACTIONS(2681), - [anon_sym_POUND] = ACTIONS(247), - }, - [678] = { - [sym_expr_parenthesized] = STATE(1630), - [sym_val_range] = STATE(2014), - [sym__val_range] = STATE(8051), - [sym__val_range_with_end] = STATE(7644), - [sym__value] = STATE(2014), - [sym_val_nothing] = STATE(2094), - [sym_val_bool] = STATE(1728), - [sym_val_variable] = STATE(1601), - [sym_val_number] = STATE(2094), - [sym__val_number_decimal] = STATE(1305), - [sym__val_number] = STATE(2080), - [sym_val_duration] = STATE(2094), - [sym_val_filesize] = STATE(2094), - [sym_val_binary] = STATE(2094), - [sym_val_string] = STATE(2094), - [sym__str_double_quotes] = STATE(2042), - [sym_val_interpolated] = STATE(2094), - [sym__inter_single_quotes] = STATE(1955), - [sym__inter_double_quotes] = STATE(2073), - [sym_val_list] = STATE(2094), - [sym_val_record] = STATE(2094), - [sym_val_table] = STATE(2094), - [sym_val_closure] = STATE(2094), - [sym__flag] = STATE(2014), - [sym_short_flag] = STATE(1993), - [sym_long_flag] = STATE(1993), - [sym_unquoted] = STATE(1776), - [sym__unquoted_with_expr] = STATE(2024), - [sym__unquoted_anonymous_prefix] = STATE(7474), - [sym_comment] = STATE(678), - [aux_sym_ctrl_do_repeat2] = STATE(681), - [ts_builtin_sym_end] = ACTIONS(2599), - [anon_sym_true] = ACTIONS(2684), - [anon_sym_false] = ACTIONS(2684), - [anon_sym_null] = ACTIONS(2686), - [aux_sym_cmd_identifier_token38] = ACTIONS(2688), - [aux_sym_cmd_identifier_token39] = ACTIONS(2688), - [aux_sym_cmd_identifier_token40] = ACTIONS(2688), - [sym__newline] = ACTIONS(2599), - [anon_sym_SEMI] = ACTIONS(2599), - [anon_sym_PIPE] = ACTIONS(2599), - [anon_sym_err_GT_PIPE] = ACTIONS(2599), - [anon_sym_out_GT_PIPE] = ACTIONS(2599), - [anon_sym_e_GT_PIPE] = ACTIONS(2599), - [anon_sym_o_GT_PIPE] = ACTIONS(2599), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2599), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2599), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2599), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2599), - [anon_sym_LBRACK] = ACTIONS(2690), - [anon_sym_LPAREN] = ACTIONS(2692), - [anon_sym_DOLLAR] = ACTIONS(2694), - [anon_sym_DASH_DASH] = ACTIONS(2696), - [anon_sym_DASH] = ACTIONS(2698), - [aux_sym_ctrl_match_token1] = ACTIONS(2700), - [anon_sym_DOT_DOT] = ACTIONS(2702), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2704), - [anon_sym_DOT_DOT_LT] = ACTIONS(2704), - [aux_sym__val_number_decimal_token1] = ACTIONS(2706), - [aux_sym__val_number_decimal_token2] = ACTIONS(2708), - [aux_sym__val_number_decimal_token3] = ACTIONS(2710), - [aux_sym__val_number_decimal_token4] = ACTIONS(2712), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [anon_sym_0b] = ACTIONS(2716), - [anon_sym_0o] = ACTIONS(2718), - [anon_sym_0x] = ACTIONS(2718), - [sym_val_date] = ACTIONS(2720), - [anon_sym_DQUOTE] = ACTIONS(2722), - [sym__str_single_quotes] = ACTIONS(2724), - [sym__str_back_ticks] = ACTIONS(2724), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2726), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(2730), - [anon_sym_POUND] = ACTIONS(247), - }, - [679] = { - [sym_expr_parenthesized] = STATE(1630), - [sym_val_range] = STATE(2014), - [sym__val_range] = STATE(8051), - [sym__val_range_with_end] = STATE(7644), - [sym__value] = STATE(2014), - [sym_val_nothing] = STATE(2094), - [sym_val_bool] = STATE(1728), - [sym_val_variable] = STATE(1601), - [sym_val_number] = STATE(2094), - [sym__val_number_decimal] = STATE(1305), - [sym__val_number] = STATE(2080), - [sym_val_duration] = STATE(2094), - [sym_val_filesize] = STATE(2094), - [sym_val_binary] = STATE(2094), - [sym_val_string] = STATE(2094), - [sym__str_double_quotes] = STATE(2042), - [sym_val_interpolated] = STATE(2094), - [sym__inter_single_quotes] = STATE(1955), - [sym__inter_double_quotes] = STATE(2073), - [sym_val_list] = STATE(2094), - [sym_val_record] = STATE(2094), - [sym_val_table] = STATE(2094), - [sym_val_closure] = STATE(2094), - [sym__flag] = STATE(2014), - [sym_short_flag] = STATE(1993), - [sym_long_flag] = STATE(1993), - [sym_unquoted] = STATE(1776), - [sym__unquoted_with_expr] = STATE(2024), - [sym__unquoted_anonymous_prefix] = STATE(7474), - [sym_comment] = STATE(679), - [aux_sym_ctrl_do_repeat2] = STATE(678), - [ts_builtin_sym_end] = ACTIONS(2595), - [anon_sym_true] = ACTIONS(2684), - [anon_sym_false] = ACTIONS(2684), - [anon_sym_null] = ACTIONS(2686), - [aux_sym_cmd_identifier_token38] = ACTIONS(2688), - [aux_sym_cmd_identifier_token39] = ACTIONS(2688), - [aux_sym_cmd_identifier_token40] = ACTIONS(2688), - [sym__newline] = ACTIONS(2595), - [anon_sym_SEMI] = ACTIONS(2595), - [anon_sym_PIPE] = ACTIONS(2595), - [anon_sym_err_GT_PIPE] = ACTIONS(2595), - [anon_sym_out_GT_PIPE] = ACTIONS(2595), - [anon_sym_e_GT_PIPE] = ACTIONS(2595), - [anon_sym_o_GT_PIPE] = ACTIONS(2595), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2595), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2595), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2595), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2595), - [anon_sym_LBRACK] = ACTIONS(2690), - [anon_sym_LPAREN] = ACTIONS(2692), - [anon_sym_DOLLAR] = ACTIONS(2694), - [anon_sym_DASH_DASH] = ACTIONS(2696), - [anon_sym_DASH] = ACTIONS(2698), - [aux_sym_ctrl_match_token1] = ACTIONS(2700), - [anon_sym_DOT_DOT] = ACTIONS(2702), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2704), - [anon_sym_DOT_DOT_LT] = ACTIONS(2704), - [aux_sym__val_number_decimal_token1] = ACTIONS(2706), - [aux_sym__val_number_decimal_token2] = ACTIONS(2708), - [aux_sym__val_number_decimal_token3] = ACTIONS(2710), - [aux_sym__val_number_decimal_token4] = ACTIONS(2712), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [anon_sym_0b] = ACTIONS(2716), - [anon_sym_0o] = ACTIONS(2718), - [anon_sym_0x] = ACTIONS(2718), - [sym_val_date] = ACTIONS(2720), - [anon_sym_DQUOTE] = ACTIONS(2722), - [sym__str_single_quotes] = ACTIONS(2724), - [sym__str_back_ticks] = ACTIONS(2724), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2726), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(2730), + [679] = { + [sym__match_pattern_expression] = STATE(3052), + [sym__match_pattern_value] = STATE(3028), + [sym__match_pattern_list] = STATE(3029), + [sym__match_pattern_rest] = STATE(7798), + [sym__match_pattern_record] = STATE(3030), + [sym_expr_parenthesized] = STATE(2710), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(2957), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(2958), + [sym_val_bool] = STATE(2798), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(2728), + [sym_val_number] = STATE(2958), + [sym__val_number_decimal] = STATE(2468), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(2958), + [sym_val_filesize] = STATE(2958), + [sym_val_binary] = STATE(2958), + [sym_val_string] = STATE(2958), + [sym__str_double_quotes] = STATE(2931), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7245), + [sym__spread_list] = STATE(7324), + [sym_list_body] = STATE(7675), + [sym_val_entry] = STATE(7059), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(2958), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(2852), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), + [sym_comment] = STATE(679), + [aux_sym_shebang_repeat1] = STATE(733), + [aux_sym__match_pattern_list_repeat1] = STATE(1101), + [aux_sym_list_body_repeat1] = STATE(743), + [anon_sym_true] = ACTIONS(2802), + [anon_sym_false] = ACTIONS(2802), + [anon_sym_null] = ACTIONS(2804), + [aux_sym_cmd_identifier_token38] = ACTIONS(2806), + [aux_sym_cmd_identifier_token39] = ACTIONS(2806), + [aux_sym_cmd_identifier_token40] = ACTIONS(2806), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2810), + [anon_sym_RBRACK] = ACTIONS(2856), + [anon_sym_LPAREN] = ACTIONS(2814), + [anon_sym_DOLLAR] = ACTIONS(2816), + [aux_sym_ctrl_match_token1] = ACTIONS(2818), + [anon_sym_DOT_DOT] = ACTIONS(2820), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2822), + [anon_sym_DOT_DOT_LT] = ACTIONS(2822), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2824), + [aux_sym__val_number_decimal_token2] = ACTIONS(2826), + [aux_sym__val_number_decimal_token3] = ACTIONS(2828), + [aux_sym__val_number_decimal_token4] = ACTIONS(2830), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(2838), + [anon_sym_DQUOTE] = ACTIONS(2840), + [sym__str_single_quotes] = ACTIONS(2842), + [sym__str_back_ticks] = ACTIONS(2842), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [680] = { - [sym__match_pattern_expression] = STATE(3315), - [sym__match_pattern_value] = STATE(3273), - [sym__match_pattern_list] = STATE(3277), - [sym__match_pattern_rest] = STATE(7997), - [sym__match_pattern_record] = STATE(3287), - [sym_expr_parenthesized] = STATE(2920), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(3235), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(3238), - [sym_val_bool] = STATE(3064), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(2937), - [sym_val_number] = STATE(3238), - [sym__val_number_decimal] = STATE(2664), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(3238), - [sym_val_filesize] = STATE(3238), - [sym_val_binary] = STATE(3238), - [sym_val_string] = STATE(3238), - [sym__str_double_quotes] = STATE(3216), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7465), - [sym__spread_list] = STATE(7624), - [sym_list_body] = STATE(7755), - [sym_val_entry] = STATE(6977), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(3238), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(3076), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_parenthesized] = STATE(1403), + [sym_val_range] = STATE(1784), + [sym__val_range] = STATE(7679), + [sym__val_range_with_end] = STATE(7434), + [sym__value] = STATE(1784), + [sym_val_nothing] = STATE(1822), + [sym_val_bool] = STATE(1486), + [sym_val_variable] = STATE(1406), + [sym_val_number] = STATE(1822), + [sym__val_number_decimal] = STATE(1140), + [sym__val_number] = STATE(1866), + [sym_val_duration] = STATE(1822), + [sym_val_filesize] = STATE(1822), + [sym_val_binary] = STATE(1822), + [sym_val_string] = STATE(1822), + [sym__str_double_quotes] = STATE(1910), + [sym_val_interpolated] = STATE(1822), + [sym__inter_single_quotes] = STATE(1911), + [sym__inter_double_quotes] = STATE(1912), + [sym_val_list] = STATE(1822), + [sym_val_record] = STATE(1822), + [sym_val_table] = STATE(1822), + [sym_val_closure] = STATE(1822), + [sym__flag] = STATE(1784), + [sym_short_flag] = STATE(1786), + [sym_long_flag] = STATE(1786), + [sym_unquoted] = STATE(1480), + [sym__unquoted_with_expr] = STATE(1790), + [sym__unquoted_anonymous_prefix] = STATE(6696), [sym_comment] = STATE(680), - [aux_sym_shebang_repeat1] = STATE(758), - [aux_sym__match_pattern_list_repeat1] = STATE(1306), - [aux_sym_list_body_repeat1] = STATE(779), - [anon_sym_true] = ACTIONS(2732), - [anon_sym_false] = ACTIONS(2732), - [anon_sym_null] = ACTIONS(2734), - [aux_sym_cmd_identifier_token38] = ACTIONS(2736), - [aux_sym_cmd_identifier_token39] = ACTIONS(2736), - [aux_sym_cmd_identifier_token40] = ACTIONS(2736), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2740), - [anon_sym_RBRACK] = ACTIONS(2742), - [anon_sym_LPAREN] = ACTIONS(2744), - [anon_sym_DOLLAR] = ACTIONS(2746), - [aux_sym_ctrl_match_token1] = ACTIONS(2748), - [anon_sym_DOT_DOT] = ACTIONS(2750), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2752), - [anon_sym_DOT_DOT_LT] = ACTIONS(2752), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2754), - [aux_sym__val_number_decimal_token2] = ACTIONS(2756), - [aux_sym__val_number_decimal_token3] = ACTIONS(2758), - [aux_sym__val_number_decimal_token4] = ACTIONS(2760), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2768), - [anon_sym_DQUOTE] = ACTIONS(2770), - [sym__str_single_quotes] = ACTIONS(2772), - [sym__str_back_ticks] = ACTIONS(2772), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym_ctrl_do_repeat2] = STATE(680), + [ts_builtin_sym_end] = ACTIONS(2588), + [anon_sym_true] = ACTIONS(2858), + [anon_sym_false] = ACTIONS(2858), + [anon_sym_null] = ACTIONS(2861), + [aux_sym_cmd_identifier_token38] = ACTIONS(2864), + [aux_sym_cmd_identifier_token39] = ACTIONS(2864), + [aux_sym_cmd_identifier_token40] = ACTIONS(2864), + [sym__newline] = ACTIONS(2588), + [anon_sym_SEMI] = ACTIONS(2588), + [anon_sym_PIPE] = ACTIONS(2588), + [anon_sym_err_GT_PIPE] = ACTIONS(2588), + [anon_sym_out_GT_PIPE] = ACTIONS(2588), + [anon_sym_e_GT_PIPE] = ACTIONS(2588), + [anon_sym_o_GT_PIPE] = ACTIONS(2588), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2588), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2588), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2588), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2588), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_LPAREN] = ACTIONS(2870), + [anon_sym_DOLLAR] = ACTIONS(2873), + [anon_sym_DASH_DASH] = ACTIONS(2876), + [anon_sym_DASH] = ACTIONS(2879), + [aux_sym_ctrl_match_token1] = ACTIONS(2882), + [anon_sym_DOT_DOT] = ACTIONS(2885), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2888), + [anon_sym_DOT_DOT_LT] = ACTIONS(2888), + [aux_sym__val_number_decimal_token1] = ACTIONS(2891), + [aux_sym__val_number_decimal_token2] = ACTIONS(2894), + [aux_sym__val_number_decimal_token3] = ACTIONS(2897), + [aux_sym__val_number_decimal_token4] = ACTIONS(2900), + [aux_sym__val_number_token1] = ACTIONS(2903), + [aux_sym__val_number_token2] = ACTIONS(2903), + [aux_sym__val_number_token3] = ACTIONS(2903), + [anon_sym_0b] = ACTIONS(2906), + [anon_sym_0o] = ACTIONS(2909), + [anon_sym_0x] = ACTIONS(2909), + [sym_val_date] = ACTIONS(2912), + [anon_sym_DQUOTE] = ACTIONS(2915), + [sym__str_single_quotes] = ACTIONS(2918), + [sym__str_back_ticks] = ACTIONS(2918), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2924), + [anon_sym_err_GT] = ACTIONS(2650), + [anon_sym_out_GT] = ACTIONS(2650), + [anon_sym_e_GT] = ACTIONS(2650), + [anon_sym_o_GT] = ACTIONS(2650), + [anon_sym_err_PLUSout_GT] = ACTIONS(2650), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2650), + [anon_sym_o_PLUSe_GT] = ACTIONS(2650), + [anon_sym_e_PLUSo_GT] = ACTIONS(2650), + [anon_sym_err_GT_GT] = ACTIONS(2653), + [anon_sym_out_GT_GT] = ACTIONS(2653), + [anon_sym_e_GT_GT] = ACTIONS(2653), + [anon_sym_o_GT_GT] = ACTIONS(2653), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2653), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2653), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2653), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2653), + [aux_sym_unquoted_token1] = ACTIONS(2927), [anon_sym_POUND] = ACTIONS(247), }, [681] = { - [sym_expr_parenthesized] = STATE(1630), - [sym_val_range] = STATE(2014), - [sym__val_range] = STATE(8051), - [sym__val_range_with_end] = STATE(7644), - [sym__value] = STATE(2014), - [sym_val_nothing] = STATE(2094), - [sym_val_bool] = STATE(1728), - [sym_val_variable] = STATE(1601), - [sym_val_number] = STATE(2094), - [sym__val_number_decimal] = STATE(1305), - [sym__val_number] = STATE(2080), - [sym_val_duration] = STATE(2094), - [sym_val_filesize] = STATE(2094), - [sym_val_binary] = STATE(2094), - [sym_val_string] = STATE(2094), - [sym__str_double_quotes] = STATE(2042), - [sym_val_interpolated] = STATE(2094), - [sym__inter_single_quotes] = STATE(1955), - [sym__inter_double_quotes] = STATE(2073), - [sym_val_list] = STATE(2094), - [sym_val_record] = STATE(2094), - [sym_val_table] = STATE(2094), - [sym_val_closure] = STATE(2094), - [sym__flag] = STATE(2014), - [sym_short_flag] = STATE(1993), - [sym_long_flag] = STATE(1993), - [sym_unquoted] = STATE(1776), - [sym__unquoted_with_expr] = STATE(2024), - [sym__unquoted_anonymous_prefix] = STATE(7474), + [aux_sym__pipe_separator] = STATE(682), [sym_comment] = STATE(681), - [aux_sym_ctrl_do_repeat2] = STATE(681), - [ts_builtin_sym_end] = ACTIONS(2520), - [anon_sym_true] = ACTIONS(2786), - [anon_sym_false] = ACTIONS(2786), - [anon_sym_null] = ACTIONS(2789), - [aux_sym_cmd_identifier_token38] = ACTIONS(2792), - [aux_sym_cmd_identifier_token39] = ACTIONS(2792), - [aux_sym_cmd_identifier_token40] = ACTIONS(2792), - [sym__newline] = ACTIONS(2520), - [anon_sym_SEMI] = ACTIONS(2520), - [anon_sym_PIPE] = ACTIONS(2520), - [anon_sym_err_GT_PIPE] = ACTIONS(2520), - [anon_sym_out_GT_PIPE] = ACTIONS(2520), - [anon_sym_e_GT_PIPE] = ACTIONS(2520), - [anon_sym_o_GT_PIPE] = ACTIONS(2520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2798), - [anon_sym_DOLLAR] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(2804), - [anon_sym_DASH] = ACTIONS(2807), - [aux_sym_ctrl_match_token1] = ACTIONS(2810), - [anon_sym_DOT_DOT] = ACTIONS(2813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2816), - [anon_sym_DOT_DOT_LT] = ACTIONS(2816), - [aux_sym__val_number_decimal_token1] = ACTIONS(2819), - [aux_sym__val_number_decimal_token2] = ACTIONS(2822), - [aux_sym__val_number_decimal_token3] = ACTIONS(2825), - [aux_sym__val_number_decimal_token4] = ACTIONS(2828), - [aux_sym__val_number_token1] = ACTIONS(2831), - [aux_sym__val_number_token2] = ACTIONS(2831), - [aux_sym__val_number_token3] = ACTIONS(2831), - [anon_sym_0b] = ACTIONS(2834), - [anon_sym_0o] = ACTIONS(2837), - [anon_sym_0x] = ACTIONS(2837), - [sym_val_date] = ACTIONS(2840), - [anon_sym_DQUOTE] = ACTIONS(2843), - [sym__str_single_quotes] = ACTIONS(2846), - [sym__str_back_ticks] = ACTIONS(2846), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2849), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2852), - [anon_sym_err_GT] = ACTIONS(2582), - [anon_sym_out_GT] = ACTIONS(2582), - [anon_sym_e_GT] = ACTIONS(2582), - [anon_sym_o_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT] = ACTIONS(2582), - [anon_sym_err_GT_GT] = ACTIONS(2585), - [anon_sym_out_GT_GT] = ACTIONS(2585), - [anon_sym_e_GT_GT] = ACTIONS(2585), - [anon_sym_o_GT_GT] = ACTIONS(2585), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2585), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2585), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2585), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2585), - [aux_sym_unquoted_token1] = ACTIONS(2855), + [aux_sym_shebang_repeat1] = STATE(5112), + [aux_sym_cmd_identifier_token1] = ACTIONS(2930), + [aux_sym_cmd_identifier_token2] = ACTIONS(2932), + [aux_sym_cmd_identifier_token3] = ACTIONS(2932), + [aux_sym_cmd_identifier_token4] = ACTIONS(2932), + [aux_sym_cmd_identifier_token5] = ACTIONS(2932), + [aux_sym_cmd_identifier_token6] = ACTIONS(2932), + [aux_sym_cmd_identifier_token7] = ACTIONS(2932), + [aux_sym_cmd_identifier_token8] = ACTIONS(2932), + [aux_sym_cmd_identifier_token9] = ACTIONS(2930), + [aux_sym_cmd_identifier_token10] = ACTIONS(2932), + [aux_sym_cmd_identifier_token11] = ACTIONS(2932), + [aux_sym_cmd_identifier_token12] = ACTIONS(2932), + [aux_sym_cmd_identifier_token13] = ACTIONS(2930), + [aux_sym_cmd_identifier_token14] = ACTIONS(2932), + [aux_sym_cmd_identifier_token15] = ACTIONS(2930), + [aux_sym_cmd_identifier_token16] = ACTIONS(2932), + [aux_sym_cmd_identifier_token17] = ACTIONS(2932), + [aux_sym_cmd_identifier_token18] = ACTIONS(2932), + [aux_sym_cmd_identifier_token19] = ACTIONS(2932), + [aux_sym_cmd_identifier_token20] = ACTIONS(2932), + [aux_sym_cmd_identifier_token21] = ACTIONS(2932), + [aux_sym_cmd_identifier_token22] = ACTIONS(2930), + [aux_sym_cmd_identifier_token23] = ACTIONS(2930), + [aux_sym_cmd_identifier_token24] = ACTIONS(2932), + [aux_sym_cmd_identifier_token25] = ACTIONS(2930), + [aux_sym_cmd_identifier_token26] = ACTIONS(2932), + [aux_sym_cmd_identifier_token27] = ACTIONS(2930), + [aux_sym_cmd_identifier_token28] = ACTIONS(2930), + [aux_sym_cmd_identifier_token29] = ACTIONS(2930), + [aux_sym_cmd_identifier_token30] = ACTIONS(2930), + [aux_sym_cmd_identifier_token31] = ACTIONS(2932), + [aux_sym_cmd_identifier_token32] = ACTIONS(2932), + [aux_sym_cmd_identifier_token33] = ACTIONS(2932), + [aux_sym_cmd_identifier_token34] = ACTIONS(2932), + [aux_sym_cmd_identifier_token35] = ACTIONS(2932), + [aux_sym_cmd_identifier_token36] = ACTIONS(2930), + [anon_sym_true] = ACTIONS(2932), + [anon_sym_false] = ACTIONS(2932), + [anon_sym_null] = ACTIONS(2932), + [aux_sym_cmd_identifier_token38] = ACTIONS(2930), + [aux_sym_cmd_identifier_token39] = ACTIONS(2932), + [aux_sym_cmd_identifier_token40] = ACTIONS(2932), + [sym__newline] = ACTIONS(2934), + [anon_sym_PIPE] = ACTIONS(2936), + [anon_sym_err_GT_PIPE] = ACTIONS(2936), + [anon_sym_out_GT_PIPE] = ACTIONS(2936), + [anon_sym_e_GT_PIPE] = ACTIONS(2936), + [anon_sym_o_GT_PIPE] = ACTIONS(2936), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2936), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2936), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2936), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2936), + [anon_sym_LBRACK] = ACTIONS(2932), + [anon_sym_LPAREN] = ACTIONS(2932), + [anon_sym_DOLLAR] = ACTIONS(2930), + [anon_sym_DASH] = ACTIONS(2930), + [anon_sym_break] = ACTIONS(2930), + [anon_sym_continue] = ACTIONS(2930), + [anon_sym_do] = ACTIONS(2930), + [anon_sym_if] = ACTIONS(2930), + [anon_sym_match] = ACTIONS(2930), + [aux_sym_ctrl_match_token1] = ACTIONS(2932), + [anon_sym_DOT_DOT] = ACTIONS(2930), + [anon_sym_try] = ACTIONS(2930), + [anon_sym_return] = ACTIONS(2930), + [anon_sym_where] = ACTIONS(2932), + [aux_sym_expr_unary_token1] = ACTIONS(2932), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2932), + [anon_sym_DOT_DOT_LT] = ACTIONS(2932), + [aux_sym__val_number_decimal_token1] = ACTIONS(2930), + [aux_sym__val_number_decimal_token2] = ACTIONS(2932), + [aux_sym__val_number_decimal_token3] = ACTIONS(2932), + [aux_sym__val_number_decimal_token4] = ACTIONS(2932), + [aux_sym__val_number_token1] = ACTIONS(2932), + [aux_sym__val_number_token2] = ACTIONS(2932), + [aux_sym__val_number_token3] = ACTIONS(2932), + [anon_sym_0b] = ACTIONS(2930), + [anon_sym_0o] = ACTIONS(2930), + [anon_sym_0x] = ACTIONS(2930), + [sym_val_date] = ACTIONS(2932), + [anon_sym_DQUOTE] = ACTIONS(2932), + [sym__str_single_quotes] = ACTIONS(2932), + [sym__str_back_ticks] = ACTIONS(2932), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2932), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2932), + [aux_sym_env_var_token1] = ACTIONS(2930), + [anon_sym_CARET] = ACTIONS(2932), [anon_sym_POUND] = ACTIONS(247), }, [682] = { - [sym_expr_parenthesized] = STATE(1630), - [sym_val_range] = STATE(2014), - [sym__val_range] = STATE(8051), - [sym__val_range_with_end] = STATE(7644), - [sym__value] = STATE(2014), - [sym_val_nothing] = STATE(2094), - [sym_val_bool] = STATE(1728), - [sym_val_variable] = STATE(1601), - [sym_val_number] = STATE(2094), - [sym__val_number_decimal] = STATE(1305), - [sym__val_number] = STATE(2080), - [sym_val_duration] = STATE(2094), - [sym_val_filesize] = STATE(2094), - [sym_val_binary] = STATE(2094), - [sym_val_string] = STATE(2094), - [sym__str_double_quotes] = STATE(2042), - [sym_val_interpolated] = STATE(2094), - [sym__inter_single_quotes] = STATE(1955), - [sym__inter_double_quotes] = STATE(2073), - [sym_val_list] = STATE(2094), - [sym_val_record] = STATE(2094), - [sym_val_table] = STATE(2094), - [sym_val_closure] = STATE(2094), - [sym__flag] = STATE(2014), - [sym_short_flag] = STATE(1993), - [sym_long_flag] = STATE(1993), - [sym_unquoted] = STATE(1776), - [sym__unquoted_with_expr] = STATE(2024), - [sym__unquoted_anonymous_prefix] = STATE(7474), + [aux_sym__pipe_separator] = STATE(682), [sym_comment] = STATE(682), - [aux_sym_ctrl_do_repeat2] = STATE(683), - [ts_builtin_sym_end] = ACTIONS(2597), - [anon_sym_true] = ACTIONS(2684), - [anon_sym_false] = ACTIONS(2684), - [anon_sym_null] = ACTIONS(2686), - [aux_sym_cmd_identifier_token38] = ACTIONS(2688), - [aux_sym_cmd_identifier_token39] = ACTIONS(2688), - [aux_sym_cmd_identifier_token40] = ACTIONS(2688), - [sym__newline] = ACTIONS(2597), - [anon_sym_SEMI] = ACTIONS(2597), - [anon_sym_PIPE] = ACTIONS(2597), - [anon_sym_err_GT_PIPE] = ACTIONS(2597), - [anon_sym_out_GT_PIPE] = ACTIONS(2597), - [anon_sym_e_GT_PIPE] = ACTIONS(2597), - [anon_sym_o_GT_PIPE] = ACTIONS(2597), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2597), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2597), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2597), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2597), - [anon_sym_LBRACK] = ACTIONS(2690), - [anon_sym_LPAREN] = ACTIONS(2692), - [anon_sym_DOLLAR] = ACTIONS(2694), - [anon_sym_DASH_DASH] = ACTIONS(2696), - [anon_sym_DASH] = ACTIONS(2698), - [aux_sym_ctrl_match_token1] = ACTIONS(2700), - [anon_sym_DOT_DOT] = ACTIONS(2702), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2704), - [anon_sym_DOT_DOT_LT] = ACTIONS(2704), - [aux_sym__val_number_decimal_token1] = ACTIONS(2706), - [aux_sym__val_number_decimal_token2] = ACTIONS(2708), - [aux_sym__val_number_decimal_token3] = ACTIONS(2710), - [aux_sym__val_number_decimal_token4] = ACTIONS(2712), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [anon_sym_0b] = ACTIONS(2716), - [anon_sym_0o] = ACTIONS(2718), - [anon_sym_0x] = ACTIONS(2718), - [sym_val_date] = ACTIONS(2720), - [anon_sym_DQUOTE] = ACTIONS(2722), - [sym__str_single_quotes] = ACTIONS(2724), - [sym__str_back_ticks] = ACTIONS(2724), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2726), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(2730), + [aux_sym_shebang_repeat1] = STATE(5112), + [aux_sym_cmd_identifier_token1] = ACTIONS(2938), + [aux_sym_cmd_identifier_token2] = ACTIONS(2940), + [aux_sym_cmd_identifier_token3] = ACTIONS(2940), + [aux_sym_cmd_identifier_token4] = ACTIONS(2940), + [aux_sym_cmd_identifier_token5] = ACTIONS(2940), + [aux_sym_cmd_identifier_token6] = ACTIONS(2940), + [aux_sym_cmd_identifier_token7] = ACTIONS(2940), + [aux_sym_cmd_identifier_token8] = ACTIONS(2940), + [aux_sym_cmd_identifier_token9] = ACTIONS(2938), + [aux_sym_cmd_identifier_token10] = ACTIONS(2940), + [aux_sym_cmd_identifier_token11] = ACTIONS(2940), + [aux_sym_cmd_identifier_token12] = ACTIONS(2940), + [aux_sym_cmd_identifier_token13] = ACTIONS(2938), + [aux_sym_cmd_identifier_token14] = ACTIONS(2940), + [aux_sym_cmd_identifier_token15] = ACTIONS(2938), + [aux_sym_cmd_identifier_token16] = ACTIONS(2940), + [aux_sym_cmd_identifier_token17] = ACTIONS(2940), + [aux_sym_cmd_identifier_token18] = ACTIONS(2940), + [aux_sym_cmd_identifier_token19] = ACTIONS(2940), + [aux_sym_cmd_identifier_token20] = ACTIONS(2940), + [aux_sym_cmd_identifier_token21] = ACTIONS(2940), + [aux_sym_cmd_identifier_token22] = ACTIONS(2938), + [aux_sym_cmd_identifier_token23] = ACTIONS(2938), + [aux_sym_cmd_identifier_token24] = ACTIONS(2940), + [aux_sym_cmd_identifier_token25] = ACTIONS(2938), + [aux_sym_cmd_identifier_token26] = ACTIONS(2940), + [aux_sym_cmd_identifier_token27] = ACTIONS(2938), + [aux_sym_cmd_identifier_token28] = ACTIONS(2938), + [aux_sym_cmd_identifier_token29] = ACTIONS(2938), + [aux_sym_cmd_identifier_token30] = ACTIONS(2938), + [aux_sym_cmd_identifier_token31] = ACTIONS(2940), + [aux_sym_cmd_identifier_token32] = ACTIONS(2940), + [aux_sym_cmd_identifier_token33] = ACTIONS(2940), + [aux_sym_cmd_identifier_token34] = ACTIONS(2940), + [aux_sym_cmd_identifier_token35] = ACTIONS(2940), + [aux_sym_cmd_identifier_token36] = ACTIONS(2938), + [anon_sym_true] = ACTIONS(2940), + [anon_sym_false] = ACTIONS(2940), + [anon_sym_null] = ACTIONS(2940), + [aux_sym_cmd_identifier_token38] = ACTIONS(2938), + [aux_sym_cmd_identifier_token39] = ACTIONS(2940), + [aux_sym_cmd_identifier_token40] = ACTIONS(2940), + [sym__newline] = ACTIONS(2942), + [anon_sym_PIPE] = ACTIONS(2945), + [anon_sym_err_GT_PIPE] = ACTIONS(2945), + [anon_sym_out_GT_PIPE] = ACTIONS(2945), + [anon_sym_e_GT_PIPE] = ACTIONS(2945), + [anon_sym_o_GT_PIPE] = ACTIONS(2945), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2945), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2945), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2945), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(2940), + [anon_sym_LPAREN] = ACTIONS(2940), + [anon_sym_DOLLAR] = ACTIONS(2938), + [anon_sym_DASH] = ACTIONS(2938), + [anon_sym_break] = ACTIONS(2938), + [anon_sym_continue] = ACTIONS(2938), + [anon_sym_do] = ACTIONS(2938), + [anon_sym_if] = ACTIONS(2938), + [anon_sym_match] = ACTIONS(2938), + [aux_sym_ctrl_match_token1] = ACTIONS(2940), + [anon_sym_DOT_DOT] = ACTIONS(2938), + [anon_sym_try] = ACTIONS(2938), + [anon_sym_return] = ACTIONS(2938), + [anon_sym_where] = ACTIONS(2940), + [aux_sym_expr_unary_token1] = ACTIONS(2940), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2940), + [anon_sym_DOT_DOT_LT] = ACTIONS(2940), + [aux_sym__val_number_decimal_token1] = ACTIONS(2938), + [aux_sym__val_number_decimal_token2] = ACTIONS(2940), + [aux_sym__val_number_decimal_token3] = ACTIONS(2940), + [aux_sym__val_number_decimal_token4] = ACTIONS(2940), + [aux_sym__val_number_token1] = ACTIONS(2940), + [aux_sym__val_number_token2] = ACTIONS(2940), + [aux_sym__val_number_token3] = ACTIONS(2940), + [anon_sym_0b] = ACTIONS(2938), + [anon_sym_0o] = ACTIONS(2938), + [anon_sym_0x] = ACTIONS(2938), + [sym_val_date] = ACTIONS(2940), + [anon_sym_DQUOTE] = ACTIONS(2940), + [sym__str_single_quotes] = ACTIONS(2940), + [sym__str_back_ticks] = ACTIONS(2940), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2940), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2940), + [aux_sym_env_var_token1] = ACTIONS(2938), + [anon_sym_CARET] = ACTIONS(2940), [anon_sym_POUND] = ACTIONS(247), }, [683] = { - [sym_expr_parenthesized] = STATE(1630), - [sym_val_range] = STATE(2014), - [sym__val_range] = STATE(8051), - [sym__val_range_with_end] = STATE(7644), - [sym__value] = STATE(2014), - [sym_val_nothing] = STATE(2094), - [sym_val_bool] = STATE(1728), - [sym_val_variable] = STATE(1601), - [sym_val_number] = STATE(2094), - [sym__val_number_decimal] = STATE(1305), - [sym__val_number] = STATE(2080), - [sym_val_duration] = STATE(2094), - [sym_val_filesize] = STATE(2094), - [sym_val_binary] = STATE(2094), - [sym_val_string] = STATE(2094), - [sym__str_double_quotes] = STATE(2042), - [sym_val_interpolated] = STATE(2094), - [sym__inter_single_quotes] = STATE(1955), - [sym__inter_double_quotes] = STATE(2073), - [sym_val_list] = STATE(2094), - [sym_val_record] = STATE(2094), - [sym_val_table] = STATE(2094), - [sym_val_closure] = STATE(2094), - [sym__flag] = STATE(2014), - [sym_short_flag] = STATE(1993), - [sym_long_flag] = STATE(1993), - [sym_unquoted] = STATE(1776), - [sym__unquoted_with_expr] = STATE(2024), - [sym__unquoted_anonymous_prefix] = STATE(7474), + [aux_sym__pipe_separator] = STATE(682), [sym_comment] = STATE(683), - [aux_sym_ctrl_do_repeat2] = STATE(681), - [ts_builtin_sym_end] = ACTIONS(2595), - [anon_sym_true] = ACTIONS(2684), - [anon_sym_false] = ACTIONS(2684), - [anon_sym_null] = ACTIONS(2686), - [aux_sym_cmd_identifier_token38] = ACTIONS(2688), - [aux_sym_cmd_identifier_token39] = ACTIONS(2688), - [aux_sym_cmd_identifier_token40] = ACTIONS(2688), - [sym__newline] = ACTIONS(2595), - [anon_sym_SEMI] = ACTIONS(2595), - [anon_sym_PIPE] = ACTIONS(2595), - [anon_sym_err_GT_PIPE] = ACTIONS(2595), - [anon_sym_out_GT_PIPE] = ACTIONS(2595), - [anon_sym_e_GT_PIPE] = ACTIONS(2595), - [anon_sym_o_GT_PIPE] = ACTIONS(2595), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2595), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2595), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2595), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2595), - [anon_sym_LBRACK] = ACTIONS(2690), - [anon_sym_LPAREN] = ACTIONS(2692), - [anon_sym_DOLLAR] = ACTIONS(2694), - [anon_sym_DASH_DASH] = ACTIONS(2696), - [anon_sym_DASH] = ACTIONS(2698), - [aux_sym_ctrl_match_token1] = ACTIONS(2700), - [anon_sym_DOT_DOT] = ACTIONS(2702), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2704), - [anon_sym_DOT_DOT_LT] = ACTIONS(2704), - [aux_sym__val_number_decimal_token1] = ACTIONS(2706), - [aux_sym__val_number_decimal_token2] = ACTIONS(2708), - [aux_sym__val_number_decimal_token3] = ACTIONS(2710), - [aux_sym__val_number_decimal_token4] = ACTIONS(2712), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [anon_sym_0b] = ACTIONS(2716), - [anon_sym_0o] = ACTIONS(2718), - [anon_sym_0x] = ACTIONS(2718), - [sym_val_date] = ACTIONS(2720), - [anon_sym_DQUOTE] = ACTIONS(2722), - [sym__str_single_quotes] = ACTIONS(2724), - [sym__str_back_ticks] = ACTIONS(2724), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2726), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(2730), + [aux_sym_shebang_repeat1] = STATE(685), + [aux_sym_cmd_identifier_token1] = ACTIONS(2948), + [aux_sym_cmd_identifier_token2] = ACTIONS(2950), + [aux_sym_cmd_identifier_token3] = ACTIONS(2950), + [aux_sym_cmd_identifier_token4] = ACTIONS(2950), + [aux_sym_cmd_identifier_token5] = ACTIONS(2950), + [aux_sym_cmd_identifier_token6] = ACTIONS(2950), + [aux_sym_cmd_identifier_token7] = ACTIONS(2950), + [aux_sym_cmd_identifier_token8] = ACTIONS(2950), + [aux_sym_cmd_identifier_token9] = ACTIONS(2948), + [aux_sym_cmd_identifier_token10] = ACTIONS(2950), + [aux_sym_cmd_identifier_token11] = ACTIONS(2950), + [aux_sym_cmd_identifier_token12] = ACTIONS(2950), + [aux_sym_cmd_identifier_token13] = ACTIONS(2948), + [aux_sym_cmd_identifier_token14] = ACTIONS(2950), + [aux_sym_cmd_identifier_token15] = ACTIONS(2948), + [aux_sym_cmd_identifier_token16] = ACTIONS(2950), + [aux_sym_cmd_identifier_token17] = ACTIONS(2950), + [aux_sym_cmd_identifier_token18] = ACTIONS(2950), + [aux_sym_cmd_identifier_token19] = ACTIONS(2950), + [aux_sym_cmd_identifier_token20] = ACTIONS(2950), + [aux_sym_cmd_identifier_token21] = ACTIONS(2950), + [aux_sym_cmd_identifier_token22] = ACTIONS(2948), + [aux_sym_cmd_identifier_token23] = ACTIONS(2948), + [aux_sym_cmd_identifier_token24] = ACTIONS(2950), + [aux_sym_cmd_identifier_token25] = ACTIONS(2948), + [aux_sym_cmd_identifier_token26] = ACTIONS(2950), + [aux_sym_cmd_identifier_token27] = ACTIONS(2948), + [aux_sym_cmd_identifier_token28] = ACTIONS(2948), + [aux_sym_cmd_identifier_token29] = ACTIONS(2948), + [aux_sym_cmd_identifier_token30] = ACTIONS(2948), + [aux_sym_cmd_identifier_token31] = ACTIONS(2950), + [aux_sym_cmd_identifier_token32] = ACTIONS(2950), + [aux_sym_cmd_identifier_token33] = ACTIONS(2950), + [aux_sym_cmd_identifier_token34] = ACTIONS(2950), + [aux_sym_cmd_identifier_token35] = ACTIONS(2950), + [aux_sym_cmd_identifier_token36] = ACTIONS(2948), + [anon_sym_true] = ACTIONS(2950), + [anon_sym_false] = ACTIONS(2950), + [anon_sym_null] = ACTIONS(2950), + [aux_sym_cmd_identifier_token38] = ACTIONS(2948), + [aux_sym_cmd_identifier_token39] = ACTIONS(2950), + [aux_sym_cmd_identifier_token40] = ACTIONS(2950), + [sym__newline] = ACTIONS(2952), + [anon_sym_PIPE] = ACTIONS(2936), + [anon_sym_err_GT_PIPE] = ACTIONS(2936), + [anon_sym_out_GT_PIPE] = ACTIONS(2936), + [anon_sym_e_GT_PIPE] = ACTIONS(2936), + [anon_sym_o_GT_PIPE] = ACTIONS(2936), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2936), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2936), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2936), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2936), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_LPAREN] = ACTIONS(2950), + [anon_sym_DOLLAR] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_break] = ACTIONS(2948), + [anon_sym_continue] = ACTIONS(2948), + [anon_sym_do] = ACTIONS(2948), + [anon_sym_if] = ACTIONS(2948), + [anon_sym_match] = ACTIONS(2948), + [aux_sym_ctrl_match_token1] = ACTIONS(2950), + [anon_sym_DOT_DOT] = ACTIONS(2948), + [anon_sym_try] = ACTIONS(2948), + [anon_sym_return] = ACTIONS(2948), + [anon_sym_where] = ACTIONS(2950), + [aux_sym_expr_unary_token1] = ACTIONS(2950), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2950), + [anon_sym_DOT_DOT_LT] = ACTIONS(2950), + [aux_sym__val_number_decimal_token1] = ACTIONS(2948), + [aux_sym__val_number_decimal_token2] = ACTIONS(2950), + [aux_sym__val_number_decimal_token3] = ACTIONS(2950), + [aux_sym__val_number_decimal_token4] = ACTIONS(2950), + [aux_sym__val_number_token1] = ACTIONS(2950), + [aux_sym__val_number_token2] = ACTIONS(2950), + [aux_sym__val_number_token3] = ACTIONS(2950), + [anon_sym_0b] = ACTIONS(2948), + [anon_sym_0o] = ACTIONS(2948), + [anon_sym_0x] = ACTIONS(2948), + [sym_val_date] = ACTIONS(2950), + [anon_sym_DQUOTE] = ACTIONS(2950), + [sym__str_single_quotes] = ACTIONS(2950), + [sym__str_back_ticks] = ACTIONS(2950), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2950), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2950), + [aux_sym_env_var_token1] = ACTIONS(2948), + [anon_sym_CARET] = ACTIONS(2950), [anon_sym_POUND] = ACTIONS(247), }, [684] = { - [sym__match_pattern_expression] = STATE(3315), - [sym__match_pattern_value] = STATE(3273), - [sym__match_pattern_list] = STATE(3277), - [sym__match_pattern_rest] = STATE(7997), - [sym__match_pattern_record] = STATE(3287), - [sym_expr_parenthesized] = STATE(2920), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(3235), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(3238), - [sym_val_bool] = STATE(3064), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(2937), - [sym_val_number] = STATE(3238), - [sym__val_number_decimal] = STATE(2664), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(3238), - [sym_val_filesize] = STATE(3238), - [sym_val_binary] = STATE(3238), - [sym_val_string] = STATE(3238), - [sym__str_double_quotes] = STATE(3216), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7488), - [sym__spread_list] = STATE(7624), - [sym_list_body] = STATE(7892), - [sym_val_entry] = STATE(6977), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(3238), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(3076), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), [sym_comment] = STATE(684), - [aux_sym_shebang_repeat1] = STATE(739), - [aux_sym__match_pattern_list_repeat1] = STATE(1306), - [aux_sym_list_body_repeat1] = STATE(779), - [anon_sym_true] = ACTIONS(2732), - [anon_sym_false] = ACTIONS(2732), - [anon_sym_null] = ACTIONS(2734), - [aux_sym_cmd_identifier_token38] = ACTIONS(2736), - [aux_sym_cmd_identifier_token39] = ACTIONS(2736), - [aux_sym_cmd_identifier_token40] = ACTIONS(2736), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2740), - [anon_sym_RBRACK] = ACTIONS(2858), - [anon_sym_LPAREN] = ACTIONS(2744), - [anon_sym_DOLLAR] = ACTIONS(2746), - [aux_sym_ctrl_match_token1] = ACTIONS(2748), - [anon_sym_DOT_DOT] = ACTIONS(2750), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2752), - [anon_sym_DOT_DOT_LT] = ACTIONS(2752), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2754), - [aux_sym__val_number_decimal_token2] = ACTIONS(2756), - [aux_sym__val_number_decimal_token3] = ACTIONS(2758), - [aux_sym__val_number_decimal_token4] = ACTIONS(2760), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2768), - [anon_sym_DQUOTE] = ACTIONS(2770), - [sym__str_single_quotes] = ACTIONS(2772), - [sym__str_back_ticks] = ACTIONS(2772), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym_shebang_repeat1] = STATE(684), + [aux_sym_cmd_identifier_token1] = ACTIONS(1898), + [aux_sym_cmd_identifier_token2] = ACTIONS(1900), + [aux_sym_cmd_identifier_token3] = ACTIONS(1900), + [aux_sym_cmd_identifier_token4] = ACTIONS(1900), + [aux_sym_cmd_identifier_token5] = ACTIONS(1900), + [aux_sym_cmd_identifier_token6] = ACTIONS(1900), + [aux_sym_cmd_identifier_token7] = ACTIONS(1900), + [aux_sym_cmd_identifier_token8] = ACTIONS(1900), + [aux_sym_cmd_identifier_token9] = ACTIONS(1898), + [aux_sym_cmd_identifier_token10] = ACTIONS(1900), + [aux_sym_cmd_identifier_token11] = ACTIONS(1900), + [aux_sym_cmd_identifier_token12] = ACTIONS(1900), + [aux_sym_cmd_identifier_token13] = ACTIONS(1898), + [aux_sym_cmd_identifier_token14] = ACTIONS(1900), + [aux_sym_cmd_identifier_token15] = ACTIONS(1898), + [aux_sym_cmd_identifier_token16] = ACTIONS(1900), + [aux_sym_cmd_identifier_token17] = ACTIONS(1900), + [aux_sym_cmd_identifier_token18] = ACTIONS(1900), + [aux_sym_cmd_identifier_token19] = ACTIONS(1900), + [aux_sym_cmd_identifier_token20] = ACTIONS(1900), + [aux_sym_cmd_identifier_token21] = ACTIONS(1900), + [aux_sym_cmd_identifier_token22] = ACTIONS(1898), + [aux_sym_cmd_identifier_token23] = ACTIONS(1898), + [aux_sym_cmd_identifier_token24] = ACTIONS(1900), + [aux_sym_cmd_identifier_token25] = ACTIONS(1898), + [aux_sym_cmd_identifier_token26] = ACTIONS(1900), + [aux_sym_cmd_identifier_token27] = ACTIONS(1898), + [aux_sym_cmd_identifier_token28] = ACTIONS(1898), + [aux_sym_cmd_identifier_token29] = ACTIONS(1898), + [aux_sym_cmd_identifier_token30] = ACTIONS(1898), + [aux_sym_cmd_identifier_token31] = ACTIONS(1900), + [aux_sym_cmd_identifier_token32] = ACTIONS(1900), + [aux_sym_cmd_identifier_token33] = ACTIONS(1900), + [aux_sym_cmd_identifier_token34] = ACTIONS(1900), + [aux_sym_cmd_identifier_token35] = ACTIONS(1900), + [aux_sym_cmd_identifier_token36] = ACTIONS(1898), + [anon_sym_true] = ACTIONS(1900), + [anon_sym_false] = ACTIONS(1900), + [anon_sym_null] = ACTIONS(1900), + [aux_sym_cmd_identifier_token38] = ACTIONS(1898), + [aux_sym_cmd_identifier_token39] = ACTIONS(1900), + [aux_sym_cmd_identifier_token40] = ACTIONS(1900), + [sym__newline] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(1900), + [anon_sym_err_GT_PIPE] = ACTIONS(1900), + [anon_sym_out_GT_PIPE] = ACTIONS(1900), + [anon_sym_e_GT_PIPE] = ACTIONS(1900), + [anon_sym_o_GT_PIPE] = ACTIONS(1900), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1900), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1900), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1900), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1900), + [anon_sym_LBRACK] = ACTIONS(1900), + [anon_sym_LPAREN] = ACTIONS(1900), + [anon_sym_DOLLAR] = ACTIONS(1898), + [anon_sym_DASH] = ACTIONS(1898), + [anon_sym_break] = ACTIONS(1898), + [anon_sym_continue] = ACTIONS(1898), + [anon_sym_do] = ACTIONS(1898), + [anon_sym_if] = ACTIONS(1898), + [anon_sym_match] = ACTIONS(1898), + [aux_sym_ctrl_match_token1] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(1898), + [anon_sym_try] = ACTIONS(1898), + [anon_sym_return] = ACTIONS(1898), + [anon_sym_where] = ACTIONS(1900), + [aux_sym_expr_unary_token1] = ACTIONS(1900), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1900), + [anon_sym_DOT_DOT_LT] = ACTIONS(1900), + [aux_sym__val_number_decimal_token1] = ACTIONS(1898), + [aux_sym__val_number_decimal_token2] = ACTIONS(1900), + [aux_sym__val_number_decimal_token3] = ACTIONS(1900), + [aux_sym__val_number_decimal_token4] = ACTIONS(1900), + [aux_sym__val_number_token1] = ACTIONS(1900), + [aux_sym__val_number_token2] = ACTIONS(1900), + [aux_sym__val_number_token3] = ACTIONS(1900), + [anon_sym_0b] = ACTIONS(1898), + [anon_sym_0o] = ACTIONS(1898), + [anon_sym_0x] = ACTIONS(1898), + [sym_val_date] = ACTIONS(1900), + [anon_sym_DQUOTE] = ACTIONS(1900), + [sym__str_single_quotes] = ACTIONS(1900), + [sym__str_back_ticks] = ACTIONS(1900), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1900), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1900), + [aux_sym_env_var_token1] = ACTIONS(1898), + [anon_sym_CARET] = ACTIONS(1900), [anon_sym_POUND] = ACTIONS(247), }, [685] = { - [aux_sym__pipe_separator] = STATE(686), [sym_comment] = STATE(685), - [aux_sym_shebang_repeat1] = STATE(5418), - [aux_sym_cmd_identifier_token1] = ACTIONS(2860), - [aux_sym_cmd_identifier_token2] = ACTIONS(2862), - [aux_sym_cmd_identifier_token3] = ACTIONS(2862), - [aux_sym_cmd_identifier_token4] = ACTIONS(2862), - [aux_sym_cmd_identifier_token5] = ACTIONS(2862), - [aux_sym_cmd_identifier_token6] = ACTIONS(2862), - [aux_sym_cmd_identifier_token7] = ACTIONS(2862), - [aux_sym_cmd_identifier_token8] = ACTIONS(2862), - [aux_sym_cmd_identifier_token9] = ACTIONS(2860), - [aux_sym_cmd_identifier_token10] = ACTIONS(2862), - [aux_sym_cmd_identifier_token11] = ACTIONS(2862), - [aux_sym_cmd_identifier_token12] = ACTIONS(2862), - [aux_sym_cmd_identifier_token13] = ACTIONS(2860), - [aux_sym_cmd_identifier_token14] = ACTIONS(2862), - [aux_sym_cmd_identifier_token15] = ACTIONS(2860), - [aux_sym_cmd_identifier_token16] = ACTIONS(2862), - [aux_sym_cmd_identifier_token17] = ACTIONS(2862), - [aux_sym_cmd_identifier_token18] = ACTIONS(2862), - [aux_sym_cmd_identifier_token19] = ACTIONS(2862), - [aux_sym_cmd_identifier_token20] = ACTIONS(2862), - [aux_sym_cmd_identifier_token21] = ACTIONS(2862), - [aux_sym_cmd_identifier_token22] = ACTIONS(2860), - [aux_sym_cmd_identifier_token23] = ACTIONS(2860), - [aux_sym_cmd_identifier_token24] = ACTIONS(2862), - [aux_sym_cmd_identifier_token25] = ACTIONS(2860), - [aux_sym_cmd_identifier_token26] = ACTIONS(2862), - [aux_sym_cmd_identifier_token27] = ACTIONS(2860), - [aux_sym_cmd_identifier_token28] = ACTIONS(2860), - [aux_sym_cmd_identifier_token29] = ACTIONS(2860), - [aux_sym_cmd_identifier_token30] = ACTIONS(2860), - [aux_sym_cmd_identifier_token31] = ACTIONS(2862), - [aux_sym_cmd_identifier_token32] = ACTIONS(2862), - [aux_sym_cmd_identifier_token33] = ACTIONS(2862), - [aux_sym_cmd_identifier_token34] = ACTIONS(2862), - [aux_sym_cmd_identifier_token35] = ACTIONS(2862), - [aux_sym_cmd_identifier_token36] = ACTIONS(2860), - [anon_sym_true] = ACTIONS(2862), - [anon_sym_false] = ACTIONS(2862), - [anon_sym_null] = ACTIONS(2862), - [aux_sym_cmd_identifier_token38] = ACTIONS(2860), - [aux_sym_cmd_identifier_token39] = ACTIONS(2862), - [aux_sym_cmd_identifier_token40] = ACTIONS(2862), - [sym__newline] = ACTIONS(2864), - [anon_sym_PIPE] = ACTIONS(2866), - [anon_sym_err_GT_PIPE] = ACTIONS(2866), - [anon_sym_out_GT_PIPE] = ACTIONS(2866), - [anon_sym_e_GT_PIPE] = ACTIONS(2866), - [anon_sym_o_GT_PIPE] = ACTIONS(2866), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2866), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2866), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2866), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2866), - [anon_sym_LBRACK] = ACTIONS(2862), - [anon_sym_LPAREN] = ACTIONS(2862), - [anon_sym_DOLLAR] = ACTIONS(2860), - [anon_sym_DASH] = ACTIONS(2860), - [anon_sym_break] = ACTIONS(2860), - [anon_sym_continue] = ACTIONS(2860), - [anon_sym_do] = ACTIONS(2860), - [anon_sym_if] = ACTIONS(2860), - [anon_sym_match] = ACTIONS(2860), - [aux_sym_ctrl_match_token1] = ACTIONS(2862), - [anon_sym_DOT_DOT] = ACTIONS(2860), - [anon_sym_try] = ACTIONS(2860), - [anon_sym_return] = ACTIONS(2860), - [anon_sym_where] = ACTIONS(2862), - [aux_sym_expr_unary_token1] = ACTIONS(2862), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2862), - [anon_sym_DOT_DOT_LT] = ACTIONS(2862), - [aux_sym__val_number_decimal_token1] = ACTIONS(2860), - [aux_sym__val_number_decimal_token2] = ACTIONS(2862), - [aux_sym__val_number_decimal_token3] = ACTIONS(2862), - [aux_sym__val_number_decimal_token4] = ACTIONS(2862), - [aux_sym__val_number_token1] = ACTIONS(2862), - [aux_sym__val_number_token2] = ACTIONS(2862), - [aux_sym__val_number_token3] = ACTIONS(2862), - [anon_sym_0b] = ACTIONS(2860), - [anon_sym_0o] = ACTIONS(2860), - [anon_sym_0x] = ACTIONS(2860), - [sym_val_date] = ACTIONS(2862), - [anon_sym_DQUOTE] = ACTIONS(2862), - [sym__str_single_quotes] = ACTIONS(2862), - [sym__str_back_ticks] = ACTIONS(2862), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2862), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2862), - [aux_sym_env_var_token1] = ACTIONS(2860), - [anon_sym_CARET] = ACTIONS(2862), + [aux_sym_shebang_repeat1] = STATE(684), + [aux_sym_cmd_identifier_token1] = ACTIONS(2957), + [aux_sym_cmd_identifier_token2] = ACTIONS(2959), + [aux_sym_cmd_identifier_token3] = ACTIONS(2959), + [aux_sym_cmd_identifier_token4] = ACTIONS(2959), + [aux_sym_cmd_identifier_token5] = ACTIONS(2959), + [aux_sym_cmd_identifier_token6] = ACTIONS(2959), + [aux_sym_cmd_identifier_token7] = ACTIONS(2959), + [aux_sym_cmd_identifier_token8] = ACTIONS(2959), + [aux_sym_cmd_identifier_token9] = ACTIONS(2957), + [aux_sym_cmd_identifier_token10] = ACTIONS(2959), + [aux_sym_cmd_identifier_token11] = ACTIONS(2959), + [aux_sym_cmd_identifier_token12] = ACTIONS(2959), + [aux_sym_cmd_identifier_token13] = ACTIONS(2957), + [aux_sym_cmd_identifier_token14] = ACTIONS(2959), + [aux_sym_cmd_identifier_token15] = ACTIONS(2957), + [aux_sym_cmd_identifier_token16] = ACTIONS(2959), + [aux_sym_cmd_identifier_token17] = ACTIONS(2959), + [aux_sym_cmd_identifier_token18] = ACTIONS(2959), + [aux_sym_cmd_identifier_token19] = ACTIONS(2959), + [aux_sym_cmd_identifier_token20] = ACTIONS(2959), + [aux_sym_cmd_identifier_token21] = ACTIONS(2959), + [aux_sym_cmd_identifier_token22] = ACTIONS(2957), + [aux_sym_cmd_identifier_token23] = ACTIONS(2957), + [aux_sym_cmd_identifier_token24] = ACTIONS(2959), + [aux_sym_cmd_identifier_token25] = ACTIONS(2957), + [aux_sym_cmd_identifier_token26] = ACTIONS(2959), + [aux_sym_cmd_identifier_token27] = ACTIONS(2957), + [aux_sym_cmd_identifier_token28] = ACTIONS(2957), + [aux_sym_cmd_identifier_token29] = ACTIONS(2957), + [aux_sym_cmd_identifier_token30] = ACTIONS(2957), + [aux_sym_cmd_identifier_token31] = ACTIONS(2959), + [aux_sym_cmd_identifier_token32] = ACTIONS(2959), + [aux_sym_cmd_identifier_token33] = ACTIONS(2959), + [aux_sym_cmd_identifier_token34] = ACTIONS(2959), + [aux_sym_cmd_identifier_token35] = ACTIONS(2959), + [aux_sym_cmd_identifier_token36] = ACTIONS(2957), + [anon_sym_true] = ACTIONS(2959), + [anon_sym_false] = ACTIONS(2959), + [anon_sym_null] = ACTIONS(2959), + [aux_sym_cmd_identifier_token38] = ACTIONS(2957), + [aux_sym_cmd_identifier_token39] = ACTIONS(2959), + [aux_sym_cmd_identifier_token40] = ACTIONS(2959), + [sym__newline] = ACTIONS(2952), + [anon_sym_PIPE] = ACTIONS(2961), + [anon_sym_err_GT_PIPE] = ACTIONS(2961), + [anon_sym_out_GT_PIPE] = ACTIONS(2961), + [anon_sym_e_GT_PIPE] = ACTIONS(2961), + [anon_sym_o_GT_PIPE] = ACTIONS(2961), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2961), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2961), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2961), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2961), + [anon_sym_LBRACK] = ACTIONS(2959), + [anon_sym_LPAREN] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_do] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_match] = ACTIONS(2957), + [aux_sym_ctrl_match_token1] = ACTIONS(2959), + [anon_sym_DOT_DOT] = ACTIONS(2957), + [anon_sym_try] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_where] = ACTIONS(2959), + [aux_sym_expr_unary_token1] = ACTIONS(2959), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2959), + [anon_sym_DOT_DOT_LT] = ACTIONS(2959), + [aux_sym__val_number_decimal_token1] = ACTIONS(2957), + [aux_sym__val_number_decimal_token2] = ACTIONS(2959), + [aux_sym__val_number_decimal_token3] = ACTIONS(2959), + [aux_sym__val_number_decimal_token4] = ACTIONS(2959), + [aux_sym__val_number_token1] = ACTIONS(2959), + [aux_sym__val_number_token2] = ACTIONS(2959), + [aux_sym__val_number_token3] = ACTIONS(2959), + [anon_sym_0b] = ACTIONS(2957), + [anon_sym_0o] = ACTIONS(2957), + [anon_sym_0x] = ACTIONS(2957), + [sym_val_date] = ACTIONS(2959), + [anon_sym_DQUOTE] = ACTIONS(2959), + [sym__str_single_quotes] = ACTIONS(2959), + [sym__str_back_ticks] = ACTIONS(2959), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2959), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2959), + [aux_sym_env_var_token1] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(2959), [anon_sym_POUND] = ACTIONS(247), }, [686] = { - [aux_sym__pipe_separator] = STATE(686), [sym_comment] = STATE(686), - [aux_sym_shebang_repeat1] = STATE(5418), - [aux_sym_cmd_identifier_token1] = ACTIONS(2868), - [aux_sym_cmd_identifier_token2] = ACTIONS(2870), - [aux_sym_cmd_identifier_token3] = ACTIONS(2870), - [aux_sym_cmd_identifier_token4] = ACTIONS(2870), - [aux_sym_cmd_identifier_token5] = ACTIONS(2870), - [aux_sym_cmd_identifier_token6] = ACTIONS(2870), - [aux_sym_cmd_identifier_token7] = ACTIONS(2870), - [aux_sym_cmd_identifier_token8] = ACTIONS(2870), - [aux_sym_cmd_identifier_token9] = ACTIONS(2868), - [aux_sym_cmd_identifier_token10] = ACTIONS(2870), - [aux_sym_cmd_identifier_token11] = ACTIONS(2870), - [aux_sym_cmd_identifier_token12] = ACTIONS(2870), - [aux_sym_cmd_identifier_token13] = ACTIONS(2868), - [aux_sym_cmd_identifier_token14] = ACTIONS(2870), - [aux_sym_cmd_identifier_token15] = ACTIONS(2868), - [aux_sym_cmd_identifier_token16] = ACTIONS(2870), - [aux_sym_cmd_identifier_token17] = ACTIONS(2870), - [aux_sym_cmd_identifier_token18] = ACTIONS(2870), - [aux_sym_cmd_identifier_token19] = ACTIONS(2870), - [aux_sym_cmd_identifier_token20] = ACTIONS(2870), - [aux_sym_cmd_identifier_token21] = ACTIONS(2870), - [aux_sym_cmd_identifier_token22] = ACTIONS(2868), - [aux_sym_cmd_identifier_token23] = ACTIONS(2868), - [aux_sym_cmd_identifier_token24] = ACTIONS(2870), - [aux_sym_cmd_identifier_token25] = ACTIONS(2868), - [aux_sym_cmd_identifier_token26] = ACTIONS(2870), - [aux_sym_cmd_identifier_token27] = ACTIONS(2868), - [aux_sym_cmd_identifier_token28] = ACTIONS(2868), - [aux_sym_cmd_identifier_token29] = ACTIONS(2868), - [aux_sym_cmd_identifier_token30] = ACTIONS(2868), - [aux_sym_cmd_identifier_token31] = ACTIONS(2870), - [aux_sym_cmd_identifier_token32] = ACTIONS(2870), - [aux_sym_cmd_identifier_token33] = ACTIONS(2870), - [aux_sym_cmd_identifier_token34] = ACTIONS(2870), - [aux_sym_cmd_identifier_token35] = ACTIONS(2870), - [aux_sym_cmd_identifier_token36] = ACTIONS(2868), - [anon_sym_true] = ACTIONS(2870), - [anon_sym_false] = ACTIONS(2870), - [anon_sym_null] = ACTIONS(2870), - [aux_sym_cmd_identifier_token38] = ACTIONS(2868), - [aux_sym_cmd_identifier_token39] = ACTIONS(2870), - [aux_sym_cmd_identifier_token40] = ACTIONS(2870), - [sym__newline] = ACTIONS(2872), - [anon_sym_PIPE] = ACTIONS(2875), - [anon_sym_err_GT_PIPE] = ACTIONS(2875), - [anon_sym_out_GT_PIPE] = ACTIONS(2875), - [anon_sym_e_GT_PIPE] = ACTIONS(2875), - [anon_sym_o_GT_PIPE] = ACTIONS(2875), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2875), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2875), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2875), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2875), - [anon_sym_LBRACK] = ACTIONS(2870), - [anon_sym_LPAREN] = ACTIONS(2870), - [anon_sym_DOLLAR] = ACTIONS(2868), - [anon_sym_DASH] = ACTIONS(2868), - [anon_sym_break] = ACTIONS(2868), - [anon_sym_continue] = ACTIONS(2868), - [anon_sym_do] = ACTIONS(2868), - [anon_sym_if] = ACTIONS(2868), - [anon_sym_match] = ACTIONS(2868), - [aux_sym_ctrl_match_token1] = ACTIONS(2870), - [anon_sym_DOT_DOT] = ACTIONS(2868), - [anon_sym_try] = ACTIONS(2868), - [anon_sym_return] = ACTIONS(2868), - [anon_sym_where] = ACTIONS(2870), - [aux_sym_expr_unary_token1] = ACTIONS(2870), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2870), - [anon_sym_DOT_DOT_LT] = ACTIONS(2870), - [aux_sym__val_number_decimal_token1] = ACTIONS(2868), - [aux_sym__val_number_decimal_token2] = ACTIONS(2870), - [aux_sym__val_number_decimal_token3] = ACTIONS(2870), - [aux_sym__val_number_decimal_token4] = ACTIONS(2870), - [aux_sym__val_number_token1] = ACTIONS(2870), - [aux_sym__val_number_token2] = ACTIONS(2870), - [aux_sym__val_number_token3] = ACTIONS(2870), - [anon_sym_0b] = ACTIONS(2868), - [anon_sym_0o] = ACTIONS(2868), - [anon_sym_0x] = ACTIONS(2868), - [sym_val_date] = ACTIONS(2870), - [anon_sym_DQUOTE] = ACTIONS(2870), - [sym__str_single_quotes] = ACTIONS(2870), - [sym__str_back_ticks] = ACTIONS(2870), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2870), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2870), - [aux_sym_env_var_token1] = ACTIONS(2868), - [anon_sym_CARET] = ACTIONS(2870), + [aux_sym_cmd_identifier_token1] = ACTIONS(2938), + [aux_sym_cmd_identifier_token2] = ACTIONS(2940), + [aux_sym_cmd_identifier_token3] = ACTIONS(2940), + [aux_sym_cmd_identifier_token4] = ACTIONS(2940), + [aux_sym_cmd_identifier_token5] = ACTIONS(2940), + [aux_sym_cmd_identifier_token6] = ACTIONS(2940), + [aux_sym_cmd_identifier_token7] = ACTIONS(2940), + [aux_sym_cmd_identifier_token8] = ACTIONS(2940), + [aux_sym_cmd_identifier_token9] = ACTIONS(2938), + [aux_sym_cmd_identifier_token10] = ACTIONS(2940), + [aux_sym_cmd_identifier_token11] = ACTIONS(2940), + [aux_sym_cmd_identifier_token12] = ACTIONS(2940), + [aux_sym_cmd_identifier_token13] = ACTIONS(2938), + [aux_sym_cmd_identifier_token14] = ACTIONS(2940), + [aux_sym_cmd_identifier_token15] = ACTIONS(2938), + [aux_sym_cmd_identifier_token16] = ACTIONS(2940), + [aux_sym_cmd_identifier_token17] = ACTIONS(2940), + [aux_sym_cmd_identifier_token18] = ACTIONS(2940), + [aux_sym_cmd_identifier_token19] = ACTIONS(2940), + [aux_sym_cmd_identifier_token20] = ACTIONS(2940), + [aux_sym_cmd_identifier_token21] = ACTIONS(2940), + [aux_sym_cmd_identifier_token22] = ACTIONS(2938), + [aux_sym_cmd_identifier_token23] = ACTIONS(2938), + [aux_sym_cmd_identifier_token24] = ACTIONS(2940), + [aux_sym_cmd_identifier_token25] = ACTIONS(2938), + [aux_sym_cmd_identifier_token26] = ACTIONS(2940), + [aux_sym_cmd_identifier_token27] = ACTIONS(2938), + [aux_sym_cmd_identifier_token28] = ACTIONS(2938), + [aux_sym_cmd_identifier_token29] = ACTIONS(2938), + [aux_sym_cmd_identifier_token30] = ACTIONS(2938), + [aux_sym_cmd_identifier_token31] = ACTIONS(2940), + [aux_sym_cmd_identifier_token32] = ACTIONS(2940), + [aux_sym_cmd_identifier_token33] = ACTIONS(2940), + [aux_sym_cmd_identifier_token34] = ACTIONS(2940), + [aux_sym_cmd_identifier_token35] = ACTIONS(2940), + [aux_sym_cmd_identifier_token36] = ACTIONS(2938), + [anon_sym_true] = ACTIONS(2940), + [anon_sym_false] = ACTIONS(2940), + [anon_sym_null] = ACTIONS(2940), + [aux_sym_cmd_identifier_token38] = ACTIONS(2938), + [aux_sym_cmd_identifier_token39] = ACTIONS(2940), + [aux_sym_cmd_identifier_token40] = ACTIONS(2940), + [sym__newline] = ACTIONS(2940), + [anon_sym_PIPE] = ACTIONS(2940), + [anon_sym_err_GT_PIPE] = ACTIONS(2940), + [anon_sym_out_GT_PIPE] = ACTIONS(2940), + [anon_sym_e_GT_PIPE] = ACTIONS(2940), + [anon_sym_o_GT_PIPE] = ACTIONS(2940), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2940), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2940), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2940), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2940), + [anon_sym_LBRACK] = ACTIONS(2940), + [anon_sym_LPAREN] = ACTIONS(2940), + [anon_sym_DOLLAR] = ACTIONS(2938), + [anon_sym_DASH] = ACTIONS(2938), + [anon_sym_break] = ACTIONS(2938), + [anon_sym_continue] = ACTIONS(2938), + [anon_sym_do] = ACTIONS(2938), + [anon_sym_if] = ACTIONS(2938), + [anon_sym_match] = ACTIONS(2938), + [aux_sym_ctrl_match_token1] = ACTIONS(2940), + [anon_sym_DOT_DOT] = ACTIONS(2938), + [anon_sym_try] = ACTIONS(2938), + [anon_sym_return] = ACTIONS(2938), + [anon_sym_where] = ACTIONS(2940), + [aux_sym_expr_unary_token1] = ACTIONS(2940), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2940), + [anon_sym_DOT_DOT_LT] = ACTIONS(2940), + [aux_sym__val_number_decimal_token1] = ACTIONS(2938), + [aux_sym__val_number_decimal_token2] = ACTIONS(2940), + [aux_sym__val_number_decimal_token3] = ACTIONS(2940), + [aux_sym__val_number_decimal_token4] = ACTIONS(2940), + [aux_sym__val_number_token1] = ACTIONS(2940), + [aux_sym__val_number_token2] = ACTIONS(2940), + [aux_sym__val_number_token3] = ACTIONS(2940), + [anon_sym_0b] = ACTIONS(2938), + [anon_sym_0o] = ACTIONS(2938), + [anon_sym_0x] = ACTIONS(2938), + [sym_val_date] = ACTIONS(2940), + [anon_sym_DQUOTE] = ACTIONS(2940), + [sym__str_single_quotes] = ACTIONS(2940), + [sym__str_back_ticks] = ACTIONS(2940), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2940), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2940), + [aux_sym_env_var_token1] = ACTIONS(2938), + [anon_sym_CARET] = ACTIONS(2940), [anon_sym_POUND] = ACTIONS(247), }, [687] = { - [aux_sym__pipe_separator] = STATE(686), [sym_comment] = STATE(687), - [aux_sym_shebang_repeat1] = STATE(689), - [aux_sym_cmd_identifier_token1] = ACTIONS(2878), - [aux_sym_cmd_identifier_token2] = ACTIONS(2880), - [aux_sym_cmd_identifier_token3] = ACTIONS(2880), - [aux_sym_cmd_identifier_token4] = ACTIONS(2880), - [aux_sym_cmd_identifier_token5] = ACTIONS(2880), - [aux_sym_cmd_identifier_token6] = ACTIONS(2880), - [aux_sym_cmd_identifier_token7] = ACTIONS(2880), - [aux_sym_cmd_identifier_token8] = ACTIONS(2880), - [aux_sym_cmd_identifier_token9] = ACTIONS(2878), - [aux_sym_cmd_identifier_token10] = ACTIONS(2880), - [aux_sym_cmd_identifier_token11] = ACTIONS(2880), - [aux_sym_cmd_identifier_token12] = ACTIONS(2880), - [aux_sym_cmd_identifier_token13] = ACTIONS(2878), - [aux_sym_cmd_identifier_token14] = ACTIONS(2880), - [aux_sym_cmd_identifier_token15] = ACTIONS(2878), - [aux_sym_cmd_identifier_token16] = ACTIONS(2880), - [aux_sym_cmd_identifier_token17] = ACTIONS(2880), - [aux_sym_cmd_identifier_token18] = ACTIONS(2880), - [aux_sym_cmd_identifier_token19] = ACTIONS(2880), - [aux_sym_cmd_identifier_token20] = ACTIONS(2880), - [aux_sym_cmd_identifier_token21] = ACTIONS(2880), - [aux_sym_cmd_identifier_token22] = ACTIONS(2878), - [aux_sym_cmd_identifier_token23] = ACTIONS(2878), - [aux_sym_cmd_identifier_token24] = ACTIONS(2880), - [aux_sym_cmd_identifier_token25] = ACTIONS(2878), - [aux_sym_cmd_identifier_token26] = ACTIONS(2880), - [aux_sym_cmd_identifier_token27] = ACTIONS(2878), - [aux_sym_cmd_identifier_token28] = ACTIONS(2878), - [aux_sym_cmd_identifier_token29] = ACTIONS(2878), - [aux_sym_cmd_identifier_token30] = ACTIONS(2878), - [aux_sym_cmd_identifier_token31] = ACTIONS(2880), - [aux_sym_cmd_identifier_token32] = ACTIONS(2880), - [aux_sym_cmd_identifier_token33] = ACTIONS(2880), - [aux_sym_cmd_identifier_token34] = ACTIONS(2880), - [aux_sym_cmd_identifier_token35] = ACTIONS(2880), - [aux_sym_cmd_identifier_token36] = ACTIONS(2878), - [anon_sym_true] = ACTIONS(2880), - [anon_sym_false] = ACTIONS(2880), - [anon_sym_null] = ACTIONS(2880), - [aux_sym_cmd_identifier_token38] = ACTIONS(2878), - [aux_sym_cmd_identifier_token39] = ACTIONS(2880), - [aux_sym_cmd_identifier_token40] = ACTIONS(2880), - [sym__newline] = ACTIONS(2882), - [anon_sym_PIPE] = ACTIONS(2866), - [anon_sym_err_GT_PIPE] = ACTIONS(2866), - [anon_sym_out_GT_PIPE] = ACTIONS(2866), - [anon_sym_e_GT_PIPE] = ACTIONS(2866), - [anon_sym_o_GT_PIPE] = ACTIONS(2866), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2866), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2866), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2866), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2866), - [anon_sym_LBRACK] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(2880), - [anon_sym_DOLLAR] = ACTIONS(2878), - [anon_sym_DASH] = ACTIONS(2878), - [anon_sym_break] = ACTIONS(2878), - [anon_sym_continue] = ACTIONS(2878), - [anon_sym_do] = ACTIONS(2878), - [anon_sym_if] = ACTIONS(2878), - [anon_sym_match] = ACTIONS(2878), - [aux_sym_ctrl_match_token1] = ACTIONS(2880), - [anon_sym_DOT_DOT] = ACTIONS(2878), - [anon_sym_try] = ACTIONS(2878), - [anon_sym_return] = ACTIONS(2878), - [anon_sym_where] = ACTIONS(2880), - [aux_sym_expr_unary_token1] = ACTIONS(2880), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2880), - [anon_sym_DOT_DOT_LT] = ACTIONS(2880), - [aux_sym__val_number_decimal_token1] = ACTIONS(2878), - [aux_sym__val_number_decimal_token2] = ACTIONS(2880), - [aux_sym__val_number_decimal_token3] = ACTIONS(2880), - [aux_sym__val_number_decimal_token4] = ACTIONS(2880), - [aux_sym__val_number_token1] = ACTIONS(2880), - [aux_sym__val_number_token2] = ACTIONS(2880), - [aux_sym__val_number_token3] = ACTIONS(2880), - [anon_sym_0b] = ACTIONS(2878), - [anon_sym_0o] = ACTIONS(2878), - [anon_sym_0x] = ACTIONS(2878), - [sym_val_date] = ACTIONS(2880), - [anon_sym_DQUOTE] = ACTIONS(2880), - [sym__str_single_quotes] = ACTIONS(2880), - [sym__str_back_ticks] = ACTIONS(2880), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2880), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2880), - [aux_sym_env_var_token1] = ACTIONS(2878), - [anon_sym_CARET] = ACTIONS(2880), + [aux_sym_cmd_identifier_token1] = ACTIONS(1345), + [aux_sym_cmd_identifier_token2] = ACTIONS(1349), + [aux_sym_cmd_identifier_token3] = ACTIONS(1349), + [aux_sym_cmd_identifier_token4] = ACTIONS(1349), + [aux_sym_cmd_identifier_token5] = ACTIONS(1349), + [aux_sym_cmd_identifier_token6] = ACTIONS(1349), + [aux_sym_cmd_identifier_token7] = ACTIONS(1349), + [aux_sym_cmd_identifier_token8] = ACTIONS(1349), + [aux_sym_cmd_identifier_token9] = ACTIONS(1345), + [aux_sym_cmd_identifier_token10] = ACTIONS(1349), + [aux_sym_cmd_identifier_token11] = ACTIONS(1349), + [aux_sym_cmd_identifier_token12] = ACTIONS(1349), + [aux_sym_cmd_identifier_token13] = ACTIONS(1345), + [aux_sym_cmd_identifier_token14] = ACTIONS(1349), + [aux_sym_cmd_identifier_token15] = ACTIONS(1345), + [aux_sym_cmd_identifier_token16] = ACTIONS(1349), + [aux_sym_cmd_identifier_token17] = ACTIONS(1349), + [aux_sym_cmd_identifier_token18] = ACTIONS(1349), + [aux_sym_cmd_identifier_token19] = ACTIONS(1349), + [aux_sym_cmd_identifier_token20] = ACTIONS(1349), + [aux_sym_cmd_identifier_token21] = ACTIONS(1349), + [aux_sym_cmd_identifier_token22] = ACTIONS(1345), + [aux_sym_cmd_identifier_token23] = ACTIONS(1345), + [aux_sym_cmd_identifier_token24] = ACTIONS(1349), + [aux_sym_cmd_identifier_token25] = ACTIONS(1345), + [aux_sym_cmd_identifier_token26] = ACTIONS(1349), + [aux_sym_cmd_identifier_token27] = ACTIONS(1345), + [aux_sym_cmd_identifier_token28] = ACTIONS(1345), + [aux_sym_cmd_identifier_token29] = ACTIONS(1345), + [aux_sym_cmd_identifier_token30] = ACTIONS(1345), + [aux_sym_cmd_identifier_token31] = ACTIONS(1349), + [aux_sym_cmd_identifier_token32] = ACTIONS(1349), + [aux_sym_cmd_identifier_token33] = ACTIONS(1349), + [aux_sym_cmd_identifier_token34] = ACTIONS(1349), + [aux_sym_cmd_identifier_token35] = ACTIONS(1349), + [aux_sym_cmd_identifier_token36] = ACTIONS(1345), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [anon_sym_null] = ACTIONS(1349), + [aux_sym_cmd_identifier_token38] = ACTIONS(1345), + [aux_sym_cmd_identifier_token39] = ACTIONS(1349), + [aux_sym_cmd_identifier_token40] = ACTIONS(1349), + [sym__newline] = ACTIONS(1349), + [anon_sym_PIPE] = ACTIONS(1349), + [anon_sym_err_GT_PIPE] = ACTIONS(1349), + [anon_sym_out_GT_PIPE] = ACTIONS(1349), + [anon_sym_e_GT_PIPE] = ACTIONS(1349), + [anon_sym_o_GT_PIPE] = ACTIONS(1349), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1349), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1349), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1349), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_DOLLAR] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_break] = ACTIONS(1345), + [anon_sym_continue] = ACTIONS(1345), + [anon_sym_do] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_match] = ACTIONS(1345), + [aux_sym_ctrl_match_token1] = ACTIONS(1349), + [anon_sym_DOT_DOT] = ACTIONS(1345), + [anon_sym_try] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1345), + [anon_sym_where] = ACTIONS(1349), + [aux_sym_expr_unary_token1] = ACTIONS(1349), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1349), + [anon_sym_DOT_DOT_LT] = ACTIONS(1349), + [aux_sym__val_number_decimal_token1] = ACTIONS(1345), + [aux_sym__val_number_decimal_token2] = ACTIONS(1349), + [aux_sym__val_number_decimal_token3] = ACTIONS(1349), + [aux_sym__val_number_decimal_token4] = ACTIONS(1349), + [aux_sym__val_number_token1] = ACTIONS(1349), + [aux_sym__val_number_token2] = ACTIONS(1349), + [aux_sym__val_number_token3] = ACTIONS(1349), + [anon_sym_0b] = ACTIONS(1345), + [anon_sym_0o] = ACTIONS(1345), + [anon_sym_0x] = ACTIONS(1345), + [sym_val_date] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1349), + [sym__str_single_quotes] = ACTIONS(1349), + [sym__str_back_ticks] = ACTIONS(1349), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1349), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1349), + [aux_sym_env_var_token1] = ACTIONS(1345), + [anon_sym_CARET] = ACTIONS(1349), [anon_sym_POUND] = ACTIONS(247), }, [688] = { [sym_comment] = STATE(688), - [aux_sym_shebang_repeat1] = STATE(688), - [aux_sym_cmd_identifier_token1] = ACTIONS(1755), - [aux_sym_cmd_identifier_token2] = ACTIONS(1757), - [aux_sym_cmd_identifier_token3] = ACTIONS(1757), - [aux_sym_cmd_identifier_token4] = ACTIONS(1757), - [aux_sym_cmd_identifier_token5] = ACTIONS(1757), - [aux_sym_cmd_identifier_token6] = ACTIONS(1757), - [aux_sym_cmd_identifier_token7] = ACTIONS(1757), - [aux_sym_cmd_identifier_token8] = ACTIONS(1757), - [aux_sym_cmd_identifier_token9] = ACTIONS(1755), - [aux_sym_cmd_identifier_token10] = ACTIONS(1757), - [aux_sym_cmd_identifier_token11] = ACTIONS(1757), - [aux_sym_cmd_identifier_token12] = ACTIONS(1757), - [aux_sym_cmd_identifier_token13] = ACTIONS(1755), - [aux_sym_cmd_identifier_token14] = ACTIONS(1757), - [aux_sym_cmd_identifier_token15] = ACTIONS(1755), - [aux_sym_cmd_identifier_token16] = ACTIONS(1757), - [aux_sym_cmd_identifier_token17] = ACTIONS(1757), - [aux_sym_cmd_identifier_token18] = ACTIONS(1757), - [aux_sym_cmd_identifier_token19] = ACTIONS(1757), - [aux_sym_cmd_identifier_token20] = ACTIONS(1757), - [aux_sym_cmd_identifier_token21] = ACTIONS(1757), - [aux_sym_cmd_identifier_token22] = ACTIONS(1755), - [aux_sym_cmd_identifier_token23] = ACTIONS(1755), - [aux_sym_cmd_identifier_token24] = ACTIONS(1757), - [aux_sym_cmd_identifier_token25] = ACTIONS(1755), - [aux_sym_cmd_identifier_token26] = ACTIONS(1757), - [aux_sym_cmd_identifier_token27] = ACTIONS(1755), - [aux_sym_cmd_identifier_token28] = ACTIONS(1755), - [aux_sym_cmd_identifier_token29] = ACTIONS(1755), - [aux_sym_cmd_identifier_token30] = ACTIONS(1755), - [aux_sym_cmd_identifier_token31] = ACTIONS(1757), - [aux_sym_cmd_identifier_token32] = ACTIONS(1757), - [aux_sym_cmd_identifier_token33] = ACTIONS(1757), - [aux_sym_cmd_identifier_token34] = ACTIONS(1757), - [aux_sym_cmd_identifier_token35] = ACTIONS(1757), - [aux_sym_cmd_identifier_token36] = ACTIONS(1755), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [anon_sym_null] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [sym__newline] = ACTIONS(2884), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_err_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_GT_PIPE] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_match] = ACTIONS(1755), - [aux_sym_ctrl_match_token1] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_where] = ACTIONS(1757), - [aux_sym_expr_unary_token1] = ACTIONS(1757), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [anon_sym_0b] = ACTIONS(1755), - [anon_sym_0o] = ACTIONS(1755), - [anon_sym_0x] = ACTIONS(1755), - [sym_val_date] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), - [aux_sym_env_var_token1] = ACTIONS(1755), - [anon_sym_CARET] = ACTIONS(1757), + [aux_sym_cmd_identifier_token1] = ACTIONS(2963), + [aux_sym_cmd_identifier_token2] = ACTIONS(2965), + [aux_sym_cmd_identifier_token3] = ACTIONS(2965), + [aux_sym_cmd_identifier_token4] = ACTIONS(2965), + [aux_sym_cmd_identifier_token5] = ACTIONS(2965), + [aux_sym_cmd_identifier_token6] = ACTIONS(2965), + [aux_sym_cmd_identifier_token7] = ACTIONS(2965), + [aux_sym_cmd_identifier_token8] = ACTIONS(2965), + [aux_sym_cmd_identifier_token9] = ACTIONS(2963), + [aux_sym_cmd_identifier_token10] = ACTIONS(2965), + [aux_sym_cmd_identifier_token11] = ACTIONS(2965), + [aux_sym_cmd_identifier_token12] = ACTIONS(2965), + [aux_sym_cmd_identifier_token13] = ACTIONS(2963), + [aux_sym_cmd_identifier_token14] = ACTIONS(2965), + [aux_sym_cmd_identifier_token15] = ACTIONS(2963), + [aux_sym_cmd_identifier_token16] = ACTIONS(2965), + [aux_sym_cmd_identifier_token17] = ACTIONS(2965), + [aux_sym_cmd_identifier_token18] = ACTIONS(2965), + [aux_sym_cmd_identifier_token19] = ACTIONS(2965), + [aux_sym_cmd_identifier_token20] = ACTIONS(2965), + [aux_sym_cmd_identifier_token21] = ACTIONS(2965), + [aux_sym_cmd_identifier_token22] = ACTIONS(2963), + [aux_sym_cmd_identifier_token23] = ACTIONS(2963), + [aux_sym_cmd_identifier_token24] = ACTIONS(2965), + [aux_sym_cmd_identifier_token25] = ACTIONS(2963), + [aux_sym_cmd_identifier_token26] = ACTIONS(2965), + [aux_sym_cmd_identifier_token27] = ACTIONS(2963), + [aux_sym_cmd_identifier_token28] = ACTIONS(2963), + [aux_sym_cmd_identifier_token29] = ACTIONS(2963), + [aux_sym_cmd_identifier_token30] = ACTIONS(2963), + [aux_sym_cmd_identifier_token31] = ACTIONS(2965), + [aux_sym_cmd_identifier_token32] = ACTIONS(2965), + [aux_sym_cmd_identifier_token33] = ACTIONS(2965), + [aux_sym_cmd_identifier_token34] = ACTIONS(2965), + [aux_sym_cmd_identifier_token35] = ACTIONS(2965), + [aux_sym_cmd_identifier_token36] = ACTIONS(2963), + [anon_sym_true] = ACTIONS(2965), + [anon_sym_false] = ACTIONS(2965), + [anon_sym_null] = ACTIONS(2965), + [aux_sym_cmd_identifier_token38] = ACTIONS(2963), + [aux_sym_cmd_identifier_token39] = ACTIONS(2965), + [aux_sym_cmd_identifier_token40] = ACTIONS(2965), + [sym__newline] = ACTIONS(1349), + [anon_sym_PIPE] = ACTIONS(1349), + [anon_sym_err_GT_PIPE] = ACTIONS(1349), + [anon_sym_out_GT_PIPE] = ACTIONS(1349), + [anon_sym_e_GT_PIPE] = ACTIONS(1349), + [anon_sym_o_GT_PIPE] = ACTIONS(1349), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1349), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1349), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1349), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(2965), + [anon_sym_LPAREN] = ACTIONS(2965), + [anon_sym_DOLLAR] = ACTIONS(2963), + [anon_sym_DASH] = ACTIONS(2963), + [anon_sym_break] = ACTIONS(2963), + [anon_sym_continue] = ACTIONS(2963), + [anon_sym_do] = ACTIONS(2963), + [anon_sym_if] = ACTIONS(2963), + [anon_sym_match] = ACTIONS(2963), + [aux_sym_ctrl_match_token1] = ACTIONS(2965), + [anon_sym_DOT_DOT] = ACTIONS(2963), + [anon_sym_try] = ACTIONS(2963), + [anon_sym_return] = ACTIONS(2963), + [anon_sym_where] = ACTIONS(2965), + [aux_sym_expr_unary_token1] = ACTIONS(2965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2965), + [anon_sym_DOT_DOT_LT] = ACTIONS(2965), + [aux_sym__val_number_decimal_token1] = ACTIONS(2963), + [aux_sym__val_number_decimal_token2] = ACTIONS(2965), + [aux_sym__val_number_decimal_token3] = ACTIONS(2965), + [aux_sym__val_number_decimal_token4] = ACTIONS(2965), + [aux_sym__val_number_token1] = ACTIONS(2965), + [aux_sym__val_number_token2] = ACTIONS(2965), + [aux_sym__val_number_token3] = ACTIONS(2965), + [anon_sym_0b] = ACTIONS(2963), + [anon_sym_0o] = ACTIONS(2963), + [anon_sym_0x] = ACTIONS(2963), + [sym_val_date] = ACTIONS(2965), + [anon_sym_DQUOTE] = ACTIONS(2965), + [sym__str_single_quotes] = ACTIONS(2965), + [sym__str_back_ticks] = ACTIONS(2965), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2965), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2965), + [aux_sym_env_var_token1] = ACTIONS(2963), + [anon_sym_CARET] = ACTIONS(2965), [anon_sym_POUND] = ACTIONS(247), }, [689] = { [sym_comment] = STATE(689), - [aux_sym_shebang_repeat1] = STATE(688), - [aux_sym_cmd_identifier_token1] = ACTIONS(2887), - [aux_sym_cmd_identifier_token2] = ACTIONS(2889), - [aux_sym_cmd_identifier_token3] = ACTIONS(2889), - [aux_sym_cmd_identifier_token4] = ACTIONS(2889), - [aux_sym_cmd_identifier_token5] = ACTIONS(2889), - [aux_sym_cmd_identifier_token6] = ACTIONS(2889), - [aux_sym_cmd_identifier_token7] = ACTIONS(2889), - [aux_sym_cmd_identifier_token8] = ACTIONS(2889), - [aux_sym_cmd_identifier_token9] = ACTIONS(2887), - [aux_sym_cmd_identifier_token10] = ACTIONS(2889), - [aux_sym_cmd_identifier_token11] = ACTIONS(2889), - [aux_sym_cmd_identifier_token12] = ACTIONS(2889), - [aux_sym_cmd_identifier_token13] = ACTIONS(2887), - [aux_sym_cmd_identifier_token14] = ACTIONS(2889), - [aux_sym_cmd_identifier_token15] = ACTIONS(2887), - [aux_sym_cmd_identifier_token16] = ACTIONS(2889), - [aux_sym_cmd_identifier_token17] = ACTIONS(2889), - [aux_sym_cmd_identifier_token18] = ACTIONS(2889), - [aux_sym_cmd_identifier_token19] = ACTIONS(2889), - [aux_sym_cmd_identifier_token20] = ACTIONS(2889), - [aux_sym_cmd_identifier_token21] = ACTIONS(2889), - [aux_sym_cmd_identifier_token22] = ACTIONS(2887), - [aux_sym_cmd_identifier_token23] = ACTIONS(2887), - [aux_sym_cmd_identifier_token24] = ACTIONS(2889), - [aux_sym_cmd_identifier_token25] = ACTIONS(2887), - [aux_sym_cmd_identifier_token26] = ACTIONS(2889), - [aux_sym_cmd_identifier_token27] = ACTIONS(2887), - [aux_sym_cmd_identifier_token28] = ACTIONS(2887), - [aux_sym_cmd_identifier_token29] = ACTIONS(2887), - [aux_sym_cmd_identifier_token30] = ACTIONS(2887), - [aux_sym_cmd_identifier_token31] = ACTIONS(2889), - [aux_sym_cmd_identifier_token32] = ACTIONS(2889), - [aux_sym_cmd_identifier_token33] = ACTIONS(2889), - [aux_sym_cmd_identifier_token34] = ACTIONS(2889), - [aux_sym_cmd_identifier_token35] = ACTIONS(2889), - [aux_sym_cmd_identifier_token36] = ACTIONS(2887), - [anon_sym_true] = ACTIONS(2889), - [anon_sym_false] = ACTIONS(2889), - [anon_sym_null] = ACTIONS(2889), - [aux_sym_cmd_identifier_token38] = ACTIONS(2887), - [aux_sym_cmd_identifier_token39] = ACTIONS(2889), - [aux_sym_cmd_identifier_token40] = ACTIONS(2889), - [sym__newline] = ACTIONS(2882), - [anon_sym_PIPE] = ACTIONS(2891), - [anon_sym_err_GT_PIPE] = ACTIONS(2891), - [anon_sym_out_GT_PIPE] = ACTIONS(2891), - [anon_sym_e_GT_PIPE] = ACTIONS(2891), - [anon_sym_o_GT_PIPE] = ACTIONS(2891), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2891), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2891), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2891), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2891), - [anon_sym_LBRACK] = ACTIONS(2889), - [anon_sym_LPAREN] = ACTIONS(2889), - [anon_sym_DOLLAR] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_break] = ACTIONS(2887), - [anon_sym_continue] = ACTIONS(2887), - [anon_sym_do] = ACTIONS(2887), - [anon_sym_if] = ACTIONS(2887), - [anon_sym_match] = ACTIONS(2887), - [aux_sym_ctrl_match_token1] = ACTIONS(2889), - [anon_sym_DOT_DOT] = ACTIONS(2887), - [anon_sym_try] = ACTIONS(2887), - [anon_sym_return] = ACTIONS(2887), - [anon_sym_where] = ACTIONS(2889), - [aux_sym_expr_unary_token1] = ACTIONS(2889), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2889), - [anon_sym_DOT_DOT_LT] = ACTIONS(2889), - [aux_sym__val_number_decimal_token1] = ACTIONS(2887), - [aux_sym__val_number_decimal_token2] = ACTIONS(2889), - [aux_sym__val_number_decimal_token3] = ACTIONS(2889), - [aux_sym__val_number_decimal_token4] = ACTIONS(2889), - [aux_sym__val_number_token1] = ACTIONS(2889), - [aux_sym__val_number_token2] = ACTIONS(2889), - [aux_sym__val_number_token3] = ACTIONS(2889), - [anon_sym_0b] = ACTIONS(2887), - [anon_sym_0o] = ACTIONS(2887), - [anon_sym_0x] = ACTIONS(2887), - [sym_val_date] = ACTIONS(2889), - [anon_sym_DQUOTE] = ACTIONS(2889), - [sym__str_single_quotes] = ACTIONS(2889), - [sym__str_back_ticks] = ACTIONS(2889), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2889), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2889), - [aux_sym_env_var_token1] = ACTIONS(2887), - [anon_sym_CARET] = ACTIONS(2889), + [aux_sym_cmd_identifier_token1] = ACTIONS(2967), + [aux_sym_cmd_identifier_token2] = ACTIONS(2969), + [aux_sym_cmd_identifier_token3] = ACTIONS(2969), + [aux_sym_cmd_identifier_token4] = ACTIONS(2969), + [aux_sym_cmd_identifier_token5] = ACTIONS(2969), + [aux_sym_cmd_identifier_token6] = ACTIONS(2969), + [aux_sym_cmd_identifier_token7] = ACTIONS(2969), + [aux_sym_cmd_identifier_token8] = ACTIONS(2969), + [aux_sym_cmd_identifier_token9] = ACTIONS(2967), + [aux_sym_cmd_identifier_token10] = ACTIONS(2969), + [aux_sym_cmd_identifier_token11] = ACTIONS(2969), + [aux_sym_cmd_identifier_token12] = ACTIONS(2969), + [aux_sym_cmd_identifier_token13] = ACTIONS(2967), + [aux_sym_cmd_identifier_token14] = ACTIONS(2969), + [aux_sym_cmd_identifier_token15] = ACTIONS(2967), + [aux_sym_cmd_identifier_token16] = ACTIONS(2969), + [aux_sym_cmd_identifier_token17] = ACTIONS(2969), + [aux_sym_cmd_identifier_token18] = ACTIONS(2969), + [aux_sym_cmd_identifier_token19] = ACTIONS(2969), + [aux_sym_cmd_identifier_token20] = ACTIONS(2969), + [aux_sym_cmd_identifier_token21] = ACTIONS(2969), + [aux_sym_cmd_identifier_token22] = ACTIONS(2967), + [aux_sym_cmd_identifier_token23] = ACTIONS(2967), + [aux_sym_cmd_identifier_token24] = ACTIONS(2969), + [aux_sym_cmd_identifier_token25] = ACTIONS(2967), + [aux_sym_cmd_identifier_token26] = ACTIONS(2969), + [aux_sym_cmd_identifier_token27] = ACTIONS(2967), + [aux_sym_cmd_identifier_token28] = ACTIONS(2967), + [aux_sym_cmd_identifier_token29] = ACTIONS(2967), + [aux_sym_cmd_identifier_token30] = ACTIONS(2967), + [aux_sym_cmd_identifier_token31] = ACTIONS(2969), + [aux_sym_cmd_identifier_token32] = ACTIONS(2969), + [aux_sym_cmd_identifier_token33] = ACTIONS(2969), + [aux_sym_cmd_identifier_token34] = ACTIONS(2969), + [aux_sym_cmd_identifier_token35] = ACTIONS(2969), + [aux_sym_cmd_identifier_token36] = ACTIONS(2967), + [anon_sym_true] = ACTIONS(2969), + [anon_sym_false] = ACTIONS(2969), + [anon_sym_null] = ACTIONS(2969), + [aux_sym_cmd_identifier_token38] = ACTIONS(2967), + [aux_sym_cmd_identifier_token39] = ACTIONS(2969), + [aux_sym_cmd_identifier_token40] = ACTIONS(2969), + [sym__newline] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2969), + [anon_sym_err_GT_PIPE] = ACTIONS(2969), + [anon_sym_out_GT_PIPE] = ACTIONS(2969), + [anon_sym_e_GT_PIPE] = ACTIONS(2969), + [anon_sym_o_GT_PIPE] = ACTIONS(2969), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2969), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2969), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2969), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2969), + [anon_sym_LBRACK] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2969), + [anon_sym_DOLLAR] = ACTIONS(2967), + [anon_sym_DASH] = ACTIONS(2967), + [anon_sym_break] = ACTIONS(2967), + [anon_sym_continue] = ACTIONS(2967), + [anon_sym_do] = ACTIONS(2967), + [anon_sym_if] = ACTIONS(2967), + [anon_sym_match] = ACTIONS(2967), + [aux_sym_ctrl_match_token1] = ACTIONS(2969), + [anon_sym_DOT_DOT] = ACTIONS(2967), + [anon_sym_try] = ACTIONS(2967), + [anon_sym_return] = ACTIONS(2967), + [anon_sym_where] = ACTIONS(2969), + [aux_sym_expr_unary_token1] = ACTIONS(2969), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2969), + [anon_sym_DOT_DOT_LT] = ACTIONS(2969), + [aux_sym__val_number_decimal_token1] = ACTIONS(2967), + [aux_sym__val_number_decimal_token2] = ACTIONS(2969), + [aux_sym__val_number_decimal_token3] = ACTIONS(2969), + [aux_sym__val_number_decimal_token4] = ACTIONS(2969), + [aux_sym__val_number_token1] = ACTIONS(2969), + [aux_sym__val_number_token2] = ACTIONS(2969), + [aux_sym__val_number_token3] = ACTIONS(2969), + [anon_sym_0b] = ACTIONS(2967), + [anon_sym_0o] = ACTIONS(2967), + [anon_sym_0x] = ACTIONS(2967), + [sym_val_date] = ACTIONS(2969), + [anon_sym_DQUOTE] = ACTIONS(2969), + [sym__str_single_quotes] = ACTIONS(2969), + [sym__str_back_ticks] = ACTIONS(2969), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2969), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2969), + [aux_sym_env_var_token1] = ACTIONS(2967), + [anon_sym_CARET] = ACTIONS(2969), [anon_sym_POUND] = ACTIONS(247), }, [690] = { [sym_comment] = STATE(690), - [aux_sym_cmd_identifier_token1] = ACTIONS(2868), - [aux_sym_cmd_identifier_token2] = ACTIONS(2870), - [aux_sym_cmd_identifier_token3] = ACTIONS(2870), - [aux_sym_cmd_identifier_token4] = ACTIONS(2870), - [aux_sym_cmd_identifier_token5] = ACTIONS(2870), - [aux_sym_cmd_identifier_token6] = ACTIONS(2870), - [aux_sym_cmd_identifier_token7] = ACTIONS(2870), - [aux_sym_cmd_identifier_token8] = ACTIONS(2870), - [aux_sym_cmd_identifier_token9] = ACTIONS(2868), - [aux_sym_cmd_identifier_token10] = ACTIONS(2870), - [aux_sym_cmd_identifier_token11] = ACTIONS(2870), - [aux_sym_cmd_identifier_token12] = ACTIONS(2870), - [aux_sym_cmd_identifier_token13] = ACTIONS(2868), - [aux_sym_cmd_identifier_token14] = ACTIONS(2870), - [aux_sym_cmd_identifier_token15] = ACTIONS(2868), - [aux_sym_cmd_identifier_token16] = ACTIONS(2870), - [aux_sym_cmd_identifier_token17] = ACTIONS(2870), - [aux_sym_cmd_identifier_token18] = ACTIONS(2870), - [aux_sym_cmd_identifier_token19] = ACTIONS(2870), - [aux_sym_cmd_identifier_token20] = ACTIONS(2870), - [aux_sym_cmd_identifier_token21] = ACTIONS(2870), - [aux_sym_cmd_identifier_token22] = ACTIONS(2868), - [aux_sym_cmd_identifier_token23] = ACTIONS(2868), - [aux_sym_cmd_identifier_token24] = ACTIONS(2870), - [aux_sym_cmd_identifier_token25] = ACTIONS(2868), - [aux_sym_cmd_identifier_token26] = ACTIONS(2870), - [aux_sym_cmd_identifier_token27] = ACTIONS(2868), - [aux_sym_cmd_identifier_token28] = ACTIONS(2868), - [aux_sym_cmd_identifier_token29] = ACTIONS(2868), - [aux_sym_cmd_identifier_token30] = ACTIONS(2868), - [aux_sym_cmd_identifier_token31] = ACTIONS(2870), - [aux_sym_cmd_identifier_token32] = ACTIONS(2870), - [aux_sym_cmd_identifier_token33] = ACTIONS(2870), - [aux_sym_cmd_identifier_token34] = ACTIONS(2870), - [aux_sym_cmd_identifier_token35] = ACTIONS(2870), - [aux_sym_cmd_identifier_token36] = ACTIONS(2868), - [anon_sym_true] = ACTIONS(2870), - [anon_sym_false] = ACTIONS(2870), - [anon_sym_null] = ACTIONS(2870), - [aux_sym_cmd_identifier_token38] = ACTIONS(2868), - [aux_sym_cmd_identifier_token39] = ACTIONS(2870), - [aux_sym_cmd_identifier_token40] = ACTIONS(2870), - [sym__newline] = ACTIONS(2870), - [anon_sym_PIPE] = ACTIONS(2870), - [anon_sym_err_GT_PIPE] = ACTIONS(2870), - [anon_sym_out_GT_PIPE] = ACTIONS(2870), - [anon_sym_e_GT_PIPE] = ACTIONS(2870), - [anon_sym_o_GT_PIPE] = ACTIONS(2870), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2870), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2870), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2870), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2870), - [anon_sym_LBRACK] = ACTIONS(2870), - [anon_sym_LPAREN] = ACTIONS(2870), - [anon_sym_DOLLAR] = ACTIONS(2868), - [anon_sym_DASH] = ACTIONS(2868), - [anon_sym_break] = ACTIONS(2868), - [anon_sym_continue] = ACTIONS(2868), - [anon_sym_do] = ACTIONS(2868), - [anon_sym_if] = ACTIONS(2868), - [anon_sym_match] = ACTIONS(2868), - [aux_sym_ctrl_match_token1] = ACTIONS(2870), - [anon_sym_DOT_DOT] = ACTIONS(2868), - [anon_sym_try] = ACTIONS(2868), - [anon_sym_return] = ACTIONS(2868), - [anon_sym_where] = ACTIONS(2870), - [aux_sym_expr_unary_token1] = ACTIONS(2870), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2870), - [anon_sym_DOT_DOT_LT] = ACTIONS(2870), - [aux_sym__val_number_decimal_token1] = ACTIONS(2868), - [aux_sym__val_number_decimal_token2] = ACTIONS(2870), - [aux_sym__val_number_decimal_token3] = ACTIONS(2870), - [aux_sym__val_number_decimal_token4] = ACTIONS(2870), - [aux_sym__val_number_token1] = ACTIONS(2870), - [aux_sym__val_number_token2] = ACTIONS(2870), - [aux_sym__val_number_token3] = ACTIONS(2870), - [anon_sym_0b] = ACTIONS(2868), - [anon_sym_0o] = ACTIONS(2868), - [anon_sym_0x] = ACTIONS(2868), - [sym_val_date] = ACTIONS(2870), - [anon_sym_DQUOTE] = ACTIONS(2870), - [sym__str_single_quotes] = ACTIONS(2870), - [sym__str_back_ticks] = ACTIONS(2870), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2870), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2870), - [aux_sym_env_var_token1] = ACTIONS(2868), - [anon_sym_CARET] = ACTIONS(2870), + [aux_sym_shebang_repeat1] = STATE(690), + [anon_sym_EQ] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1900), + [anon_sym_false] = ACTIONS(1900), + [anon_sym_null] = ACTIONS(1900), + [aux_sym_cmd_identifier_token38] = ACTIONS(1900), + [aux_sym_cmd_identifier_token39] = ACTIONS(1900), + [aux_sym_cmd_identifier_token40] = ACTIONS(1900), + [sym__newline] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(1900), + [anon_sym_PIPE] = ACTIONS(1900), + [anon_sym_err_GT_PIPE] = ACTIONS(1900), + [anon_sym_out_GT_PIPE] = ACTIONS(1900), + [anon_sym_e_GT_PIPE] = ACTIONS(1900), + [anon_sym_o_GT_PIPE] = ACTIONS(1900), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1900), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1900), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1900), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1900), + [anon_sym_COLON] = ACTIONS(1900), + [anon_sym_LBRACK] = ACTIONS(1900), + [anon_sym_LPAREN] = ACTIONS(1900), + [anon_sym_RPAREN] = ACTIONS(1900), + [anon_sym_DOLLAR] = ACTIONS(1898), + [anon_sym_any] = ACTIONS(1900), + [anon_sym_binary] = ACTIONS(1900), + [anon_sym_block] = ACTIONS(1900), + [anon_sym_bool] = ACTIONS(1900), + [anon_sym_cell_DASHpath] = ACTIONS(1900), + [anon_sym_closure] = ACTIONS(1900), + [anon_sym_cond] = ACTIONS(1900), + [anon_sym_datetime] = ACTIONS(1900), + [anon_sym_directory] = ACTIONS(1900), + [anon_sym_duration] = ACTIONS(1900), + [anon_sym_error] = ACTIONS(1900), + [anon_sym_expr] = ACTIONS(1900), + [anon_sym_float] = ACTIONS(1900), + [anon_sym_decimal] = ACTIONS(1900), + [anon_sym_filesize] = ACTIONS(1900), + [anon_sym_full_DASHcell_DASHpath] = ACTIONS(1900), + [anon_sym_glob] = ACTIONS(1900), + [anon_sym_int] = ACTIONS(1900), + [anon_sym_import_DASHpattern] = ACTIONS(1900), + [anon_sym_keyword] = ACTIONS(1900), + [anon_sym_math] = ACTIONS(1900), + [anon_sym_nothing] = ACTIONS(1900), + [anon_sym_number] = ACTIONS(1900), + [anon_sym_one_DASHof] = ACTIONS(1900), + [anon_sym_operator] = ACTIONS(1900), + [anon_sym_path] = ACTIONS(1900), + [anon_sym_range] = ACTIONS(1900), + [anon_sym_signature] = ACTIONS(1900), + [anon_sym_string] = ACTIONS(1900), + [anon_sym_table] = ACTIONS(1900), + [anon_sym_variable] = ACTIONS(1900), + [anon_sym_var_DASHwith_DASHopt_DASHtype] = ACTIONS(1900), + [anon_sym_record] = ACTIONS(1900), + [anon_sym_list] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1898), + [anon_sym_else] = ACTIONS(1900), + [aux_sym_ctrl_match_token1] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(1898), + [anon_sym_catch] = ACTIONS(1900), + [anon_sym_and] = ACTIONS(1900), + [anon_sym_xor] = ACTIONS(1900), + [anon_sym_or] = ACTIONS(1900), + [aux_sym_expr_unary_token1] = ACTIONS(1900), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1900), + [anon_sym_DOT_DOT_LT] = ACTIONS(1900), + [aux_sym__val_number_decimal_token1] = ACTIONS(1898), + [aux_sym__val_number_decimal_token2] = ACTIONS(1900), + [aux_sym__val_number_decimal_token3] = ACTIONS(1900), + [aux_sym__val_number_decimal_token4] = ACTIONS(1900), + [aux_sym__val_number_token1] = ACTIONS(1900), + [aux_sym__val_number_token2] = ACTIONS(1900), + [aux_sym__val_number_token3] = ACTIONS(1900), + [anon_sym_0b] = ACTIONS(1898), + [anon_sym_0o] = ACTIONS(1898), + [anon_sym_0x] = ACTIONS(1898), + [sym_val_date] = ACTIONS(1900), + [anon_sym_DQUOTE] = ACTIONS(1900), + [sym__str_single_quotes] = ACTIONS(1900), + [sym__str_back_ticks] = ACTIONS(1900), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1900), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1900), [anon_sym_POUND] = ACTIONS(247), }, [691] = { + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7252), + [sym__spread_list] = STATE(7324), + [sym_list_body] = STATE(7532), + [sym_val_entry] = STATE(7059), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(691), - [aux_sym_cmd_identifier_token1] = ACTIONS(2893), - [aux_sym_cmd_identifier_token2] = ACTIONS(2895), - [aux_sym_cmd_identifier_token3] = ACTIONS(2895), - [aux_sym_cmd_identifier_token4] = ACTIONS(2895), - [aux_sym_cmd_identifier_token5] = ACTIONS(2895), - [aux_sym_cmd_identifier_token6] = ACTIONS(2895), - [aux_sym_cmd_identifier_token7] = ACTIONS(2895), - [aux_sym_cmd_identifier_token8] = ACTIONS(2895), - [aux_sym_cmd_identifier_token9] = ACTIONS(2893), - [aux_sym_cmd_identifier_token10] = ACTIONS(2895), - [aux_sym_cmd_identifier_token11] = ACTIONS(2895), - [aux_sym_cmd_identifier_token12] = ACTIONS(2895), - [aux_sym_cmd_identifier_token13] = ACTIONS(2893), - [aux_sym_cmd_identifier_token14] = ACTIONS(2895), - [aux_sym_cmd_identifier_token15] = ACTIONS(2893), - [aux_sym_cmd_identifier_token16] = ACTIONS(2895), - [aux_sym_cmd_identifier_token17] = ACTIONS(2895), - [aux_sym_cmd_identifier_token18] = ACTIONS(2895), - [aux_sym_cmd_identifier_token19] = ACTIONS(2895), - [aux_sym_cmd_identifier_token20] = ACTIONS(2895), - [aux_sym_cmd_identifier_token21] = ACTIONS(2895), - [aux_sym_cmd_identifier_token22] = ACTIONS(2893), - [aux_sym_cmd_identifier_token23] = ACTIONS(2893), - [aux_sym_cmd_identifier_token24] = ACTIONS(2895), - [aux_sym_cmd_identifier_token25] = ACTIONS(2893), - [aux_sym_cmd_identifier_token26] = ACTIONS(2895), - [aux_sym_cmd_identifier_token27] = ACTIONS(2893), - [aux_sym_cmd_identifier_token28] = ACTIONS(2893), - [aux_sym_cmd_identifier_token29] = ACTIONS(2893), - [aux_sym_cmd_identifier_token30] = ACTIONS(2893), - [aux_sym_cmd_identifier_token31] = ACTIONS(2895), - [aux_sym_cmd_identifier_token32] = ACTIONS(2895), - [aux_sym_cmd_identifier_token33] = ACTIONS(2895), - [aux_sym_cmd_identifier_token34] = ACTIONS(2895), - [aux_sym_cmd_identifier_token35] = ACTIONS(2895), - [aux_sym_cmd_identifier_token36] = ACTIONS(2893), - [anon_sym_true] = ACTIONS(2895), - [anon_sym_false] = ACTIONS(2895), - [anon_sym_null] = ACTIONS(2895), - [aux_sym_cmd_identifier_token38] = ACTIONS(2893), - [aux_sym_cmd_identifier_token39] = ACTIONS(2895), - [aux_sym_cmd_identifier_token40] = ACTIONS(2895), - [sym__newline] = ACTIONS(2895), - [anon_sym_PIPE] = ACTIONS(2895), - [anon_sym_err_GT_PIPE] = ACTIONS(2895), - [anon_sym_out_GT_PIPE] = ACTIONS(2895), - [anon_sym_e_GT_PIPE] = ACTIONS(2895), - [anon_sym_o_GT_PIPE] = ACTIONS(2895), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2895), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2895), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2895), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2895), - [anon_sym_LBRACK] = ACTIONS(2895), - [anon_sym_LPAREN] = ACTIONS(2895), - [anon_sym_DOLLAR] = ACTIONS(2893), - [anon_sym_DASH] = ACTIONS(2893), - [anon_sym_break] = ACTIONS(2893), - [anon_sym_continue] = ACTIONS(2893), - [anon_sym_do] = ACTIONS(2893), - [anon_sym_if] = ACTIONS(2893), - [anon_sym_match] = ACTIONS(2893), - [aux_sym_ctrl_match_token1] = ACTIONS(2895), - [anon_sym_DOT_DOT] = ACTIONS(2893), - [anon_sym_try] = ACTIONS(2893), - [anon_sym_return] = ACTIONS(2893), - [anon_sym_where] = ACTIONS(2895), - [aux_sym_expr_unary_token1] = ACTIONS(2895), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2895), - [anon_sym_DOT_DOT_LT] = ACTIONS(2895), - [aux_sym__val_number_decimal_token1] = ACTIONS(2893), - [aux_sym__val_number_decimal_token2] = ACTIONS(2895), - [aux_sym__val_number_decimal_token3] = ACTIONS(2895), - [aux_sym__val_number_decimal_token4] = ACTIONS(2895), - [aux_sym__val_number_token1] = ACTIONS(2895), - [aux_sym__val_number_token2] = ACTIONS(2895), - [aux_sym__val_number_token3] = ACTIONS(2895), - [anon_sym_0b] = ACTIONS(2893), - [anon_sym_0o] = ACTIONS(2893), - [anon_sym_0x] = ACTIONS(2893), - [sym_val_date] = ACTIONS(2895), - [anon_sym_DQUOTE] = ACTIONS(2895), - [sym__str_single_quotes] = ACTIONS(2895), - [sym__str_back_ticks] = ACTIONS(2895), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2895), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2895), - [aux_sym_env_var_token1] = ACTIONS(2893), - [anon_sym_CARET] = ACTIONS(2895), + [aux_sym_shebang_repeat1] = STATE(722), + [aux_sym_list_body_repeat1] = STATE(743), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_RBRACK] = ACTIONS(2982), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [692] = { + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7048), + [sym__spread_list] = STATE(7324), + [sym_list_body] = STATE(7624), + [sym_val_entry] = STATE(7059), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(692), - [aux_sym_cmd_identifier_token1] = ACTIONS(1273), - [aux_sym_cmd_identifier_token2] = ACTIONS(1277), - [aux_sym_cmd_identifier_token3] = ACTIONS(1277), - [aux_sym_cmd_identifier_token4] = ACTIONS(1277), - [aux_sym_cmd_identifier_token5] = ACTIONS(1277), - [aux_sym_cmd_identifier_token6] = ACTIONS(1277), - [aux_sym_cmd_identifier_token7] = ACTIONS(1277), - [aux_sym_cmd_identifier_token8] = ACTIONS(1277), - [aux_sym_cmd_identifier_token9] = ACTIONS(1273), - [aux_sym_cmd_identifier_token10] = ACTIONS(1277), - [aux_sym_cmd_identifier_token11] = ACTIONS(1277), - [aux_sym_cmd_identifier_token12] = ACTIONS(1277), - [aux_sym_cmd_identifier_token13] = ACTIONS(1273), - [aux_sym_cmd_identifier_token14] = ACTIONS(1277), - [aux_sym_cmd_identifier_token15] = ACTIONS(1273), - [aux_sym_cmd_identifier_token16] = ACTIONS(1277), - [aux_sym_cmd_identifier_token17] = ACTIONS(1277), - [aux_sym_cmd_identifier_token18] = ACTIONS(1277), - [aux_sym_cmd_identifier_token19] = ACTIONS(1277), - [aux_sym_cmd_identifier_token20] = ACTIONS(1277), - [aux_sym_cmd_identifier_token21] = ACTIONS(1277), - [aux_sym_cmd_identifier_token22] = ACTIONS(1273), - [aux_sym_cmd_identifier_token23] = ACTIONS(1273), - [aux_sym_cmd_identifier_token24] = ACTIONS(1277), - [aux_sym_cmd_identifier_token25] = ACTIONS(1273), - [aux_sym_cmd_identifier_token26] = ACTIONS(1277), - [aux_sym_cmd_identifier_token27] = ACTIONS(1273), - [aux_sym_cmd_identifier_token28] = ACTIONS(1273), - [aux_sym_cmd_identifier_token29] = ACTIONS(1273), - [aux_sym_cmd_identifier_token30] = ACTIONS(1273), - [aux_sym_cmd_identifier_token31] = ACTIONS(1277), - [aux_sym_cmd_identifier_token32] = ACTIONS(1277), - [aux_sym_cmd_identifier_token33] = ACTIONS(1277), - [aux_sym_cmd_identifier_token34] = ACTIONS(1277), - [aux_sym_cmd_identifier_token35] = ACTIONS(1277), - [aux_sym_cmd_identifier_token36] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_null] = ACTIONS(1277), - [aux_sym_cmd_identifier_token38] = ACTIONS(1273), - [aux_sym_cmd_identifier_token39] = ACTIONS(1277), - [aux_sym_cmd_identifier_token40] = ACTIONS(1277), - [sym__newline] = ACTIONS(1277), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_err_GT_PIPE] = ACTIONS(1277), - [anon_sym_out_GT_PIPE] = ACTIONS(1277), - [anon_sym_e_GT_PIPE] = ACTIONS(1277), - [anon_sym_o_GT_PIPE] = ACTIONS(1277), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1277), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1277), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1277), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1277), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(1277), - [anon_sym_DOLLAR] = ACTIONS(1273), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_break] = ACTIONS(1273), - [anon_sym_continue] = ACTIONS(1273), - [anon_sym_do] = ACTIONS(1273), - [anon_sym_if] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [aux_sym_ctrl_match_token1] = ACTIONS(1277), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_try] = ACTIONS(1273), - [anon_sym_return] = ACTIONS(1273), - [anon_sym_where] = ACTIONS(1277), - [aux_sym_expr_unary_token1] = ACTIONS(1277), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_DOT_DOT_LT] = ACTIONS(1277), - [aux_sym__val_number_decimal_token1] = ACTIONS(1273), - [aux_sym__val_number_decimal_token2] = ACTIONS(1277), - [aux_sym__val_number_decimal_token3] = ACTIONS(1277), - [aux_sym__val_number_decimal_token4] = ACTIONS(1277), - [aux_sym__val_number_token1] = ACTIONS(1277), - [aux_sym__val_number_token2] = ACTIONS(1277), - [aux_sym__val_number_token3] = ACTIONS(1277), - [anon_sym_0b] = ACTIONS(1273), - [anon_sym_0o] = ACTIONS(1273), - [anon_sym_0x] = ACTIONS(1273), - [sym_val_date] = ACTIONS(1277), - [anon_sym_DQUOTE] = ACTIONS(1277), - [sym__str_single_quotes] = ACTIONS(1277), - [sym__str_back_ticks] = ACTIONS(1277), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1277), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1277), - [aux_sym_env_var_token1] = ACTIONS(1273), - [anon_sym_CARET] = ACTIONS(1277), + [aux_sym_shebang_repeat1] = STATE(720), + [aux_sym_list_body_repeat1] = STATE(743), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_RBRACK] = ACTIONS(3008), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [693] = { [sym_comment] = STATE(693), - [aux_sym_cmd_identifier_token1] = ACTIONS(2897), - [aux_sym_cmd_identifier_token2] = ACTIONS(2899), - [aux_sym_cmd_identifier_token3] = ACTIONS(2899), - [aux_sym_cmd_identifier_token4] = ACTIONS(2899), - [aux_sym_cmd_identifier_token5] = ACTIONS(2899), - [aux_sym_cmd_identifier_token6] = ACTIONS(2899), - [aux_sym_cmd_identifier_token7] = ACTIONS(2899), - [aux_sym_cmd_identifier_token8] = ACTIONS(2899), - [aux_sym_cmd_identifier_token9] = ACTIONS(2897), - [aux_sym_cmd_identifier_token10] = ACTIONS(2899), - [aux_sym_cmd_identifier_token11] = ACTIONS(2899), - [aux_sym_cmd_identifier_token12] = ACTIONS(2899), - [aux_sym_cmd_identifier_token13] = ACTIONS(2897), - [aux_sym_cmd_identifier_token14] = ACTIONS(2899), - [aux_sym_cmd_identifier_token15] = ACTIONS(2897), - [aux_sym_cmd_identifier_token16] = ACTIONS(2899), - [aux_sym_cmd_identifier_token17] = ACTIONS(2899), - [aux_sym_cmd_identifier_token18] = ACTIONS(2899), - [aux_sym_cmd_identifier_token19] = ACTIONS(2899), - [aux_sym_cmd_identifier_token20] = ACTIONS(2899), - [aux_sym_cmd_identifier_token21] = ACTIONS(2899), - [aux_sym_cmd_identifier_token22] = ACTIONS(2897), - [aux_sym_cmd_identifier_token23] = ACTIONS(2897), - [aux_sym_cmd_identifier_token24] = ACTIONS(2899), - [aux_sym_cmd_identifier_token25] = ACTIONS(2897), - [aux_sym_cmd_identifier_token26] = ACTIONS(2899), - [aux_sym_cmd_identifier_token27] = ACTIONS(2897), - [aux_sym_cmd_identifier_token28] = ACTIONS(2897), - [aux_sym_cmd_identifier_token29] = ACTIONS(2897), - [aux_sym_cmd_identifier_token30] = ACTIONS(2897), - [aux_sym_cmd_identifier_token31] = ACTIONS(2899), - [aux_sym_cmd_identifier_token32] = ACTIONS(2899), - [aux_sym_cmd_identifier_token33] = ACTIONS(2899), - [aux_sym_cmd_identifier_token34] = ACTIONS(2899), - [aux_sym_cmd_identifier_token35] = ACTIONS(2899), - [aux_sym_cmd_identifier_token36] = ACTIONS(2897), - [anon_sym_true] = ACTIONS(2899), - [anon_sym_false] = ACTIONS(2899), - [anon_sym_null] = ACTIONS(2899), - [aux_sym_cmd_identifier_token38] = ACTIONS(2897), - [aux_sym_cmd_identifier_token39] = ACTIONS(2899), - [aux_sym_cmd_identifier_token40] = ACTIONS(2899), - [sym__newline] = ACTIONS(1277), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_err_GT_PIPE] = ACTIONS(1277), - [anon_sym_out_GT_PIPE] = ACTIONS(1277), - [anon_sym_e_GT_PIPE] = ACTIONS(1277), - [anon_sym_o_GT_PIPE] = ACTIONS(1277), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1277), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1277), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1277), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1277), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_LPAREN] = ACTIONS(2899), - [anon_sym_DOLLAR] = ACTIONS(2897), - [anon_sym_DASH] = ACTIONS(2897), - [anon_sym_break] = ACTIONS(2897), - [anon_sym_continue] = ACTIONS(2897), - [anon_sym_do] = ACTIONS(2897), - [anon_sym_if] = ACTIONS(2897), - [anon_sym_match] = ACTIONS(2897), - [aux_sym_ctrl_match_token1] = ACTIONS(2899), - [anon_sym_DOT_DOT] = ACTIONS(2897), - [anon_sym_try] = ACTIONS(2897), - [anon_sym_return] = ACTIONS(2897), - [anon_sym_where] = ACTIONS(2899), - [aux_sym_expr_unary_token1] = ACTIONS(2899), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2899), - [anon_sym_DOT_DOT_LT] = ACTIONS(2899), - [aux_sym__val_number_decimal_token1] = ACTIONS(2897), - [aux_sym__val_number_decimal_token2] = ACTIONS(2899), - [aux_sym__val_number_decimal_token3] = ACTIONS(2899), - [aux_sym__val_number_decimal_token4] = ACTIONS(2899), - [aux_sym__val_number_token1] = ACTIONS(2899), - [aux_sym__val_number_token2] = ACTIONS(2899), - [aux_sym__val_number_token3] = ACTIONS(2899), - [anon_sym_0b] = ACTIONS(2897), - [anon_sym_0o] = ACTIONS(2897), - [anon_sym_0x] = ACTIONS(2897), - [sym_val_date] = ACTIONS(2899), - [anon_sym_DQUOTE] = ACTIONS(2899), - [sym__str_single_quotes] = ACTIONS(2899), - [sym__str_back_ticks] = ACTIONS(2899), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2899), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2899), - [aux_sym_env_var_token1] = ACTIONS(2897), - [anon_sym_CARET] = ACTIONS(2899), + [anon_sym_EQ] = ACTIONS(1349), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [anon_sym_null] = ACTIONS(1349), + [aux_sym_cmd_identifier_token38] = ACTIONS(1349), + [aux_sym_cmd_identifier_token39] = ACTIONS(1349), + [aux_sym_cmd_identifier_token40] = ACTIONS(1349), + [sym__newline] = ACTIONS(1349), + [anon_sym_SEMI] = ACTIONS(1349), + [anon_sym_PIPE] = ACTIONS(1349), + [anon_sym_err_GT_PIPE] = ACTIONS(1349), + [anon_sym_out_GT_PIPE] = ACTIONS(1349), + [anon_sym_e_GT_PIPE] = ACTIONS(1349), + [anon_sym_o_GT_PIPE] = ACTIONS(1349), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1349), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1349), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1349), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1349), + [anon_sym_COLON] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_RPAREN] = ACTIONS(1349), + [anon_sym_DOLLAR] = ACTIONS(1345), + [anon_sym_any] = ACTIONS(1349), + [anon_sym_binary] = ACTIONS(1349), + [anon_sym_block] = ACTIONS(1349), + [anon_sym_bool] = ACTIONS(1349), + [anon_sym_cell_DASHpath] = ACTIONS(1349), + [anon_sym_closure] = ACTIONS(1349), + [anon_sym_cond] = ACTIONS(1349), + [anon_sym_datetime] = ACTIONS(1349), + [anon_sym_directory] = ACTIONS(1349), + [anon_sym_duration] = ACTIONS(1349), + [anon_sym_error] = ACTIONS(1349), + [anon_sym_expr] = ACTIONS(1349), + [anon_sym_float] = ACTIONS(1349), + [anon_sym_decimal] = ACTIONS(1349), + [anon_sym_filesize] = ACTIONS(1349), + [anon_sym_full_DASHcell_DASHpath] = ACTIONS(1349), + [anon_sym_glob] = ACTIONS(1349), + [anon_sym_int] = ACTIONS(1349), + [anon_sym_import_DASHpattern] = ACTIONS(1349), + [anon_sym_keyword] = ACTIONS(1349), + [anon_sym_math] = ACTIONS(1349), + [anon_sym_nothing] = ACTIONS(1349), + [anon_sym_number] = ACTIONS(1349), + [anon_sym_one_DASHof] = ACTIONS(1349), + [anon_sym_operator] = ACTIONS(1349), + [anon_sym_path] = ACTIONS(1349), + [anon_sym_range] = ACTIONS(1349), + [anon_sym_signature] = ACTIONS(1349), + [anon_sym_string] = ACTIONS(1349), + [anon_sym_table] = ACTIONS(1349), + [anon_sym_variable] = ACTIONS(1349), + [anon_sym_var_DASHwith_DASHopt_DASHtype] = ACTIONS(1349), + [anon_sym_record] = ACTIONS(1349), + [anon_sym_list] = ACTIONS(1349), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_else] = ACTIONS(1349), + [aux_sym_ctrl_match_token1] = ACTIONS(1349), + [anon_sym_DOT_DOT] = ACTIONS(1345), + [anon_sym_catch] = ACTIONS(1349), + [anon_sym_and] = ACTIONS(1349), + [anon_sym_xor] = ACTIONS(1349), + [anon_sym_or] = ACTIONS(1349), + [aux_sym_expr_unary_token1] = ACTIONS(1349), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1349), + [anon_sym_DOT_DOT_LT] = ACTIONS(1349), + [aux_sym__val_number_decimal_token1] = ACTIONS(1345), + [aux_sym__val_number_decimal_token2] = ACTIONS(1349), + [aux_sym__val_number_decimal_token3] = ACTIONS(1349), + [aux_sym__val_number_decimal_token4] = ACTIONS(1349), + [aux_sym__val_number_token1] = ACTIONS(1349), + [aux_sym__val_number_token2] = ACTIONS(1349), + [aux_sym__val_number_token3] = ACTIONS(1349), + [anon_sym_0b] = ACTIONS(1345), + [anon_sym_0o] = ACTIONS(1345), + [anon_sym_0x] = ACTIONS(1345), + [sym_val_date] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1349), + [sym__str_single_quotes] = ACTIONS(1349), + [sym__str_back_ticks] = ACTIONS(1349), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1349), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1349), [anon_sym_POUND] = ACTIONS(247), }, [694] = { + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7031), + [sym__spread_list] = STATE(7324), + [sym_list_body] = STATE(7675), + [sym_val_entry] = STATE(7059), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(694), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [anon_sym_null] = ACTIONS(1483), - [aux_sym_cmd_identifier_token38] = ACTIONS(1483), - [aux_sym_cmd_identifier_token39] = ACTIONS(1483), - [aux_sym_cmd_identifier_token40] = ACTIONS(1483), - [sym__newline] = ACTIONS(1483), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_LPAREN] = ACTIONS(1481), - [anon_sym_COMMA] = ACTIONS(1483), - [anon_sym_DOLLAR] = ACTIONS(1483), - [aux_sym_ctrl_match_token1] = ACTIONS(1483), - [anon_sym_RBRACE] = ACTIONS(1483), - [anon_sym__] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1481), - [anon_sym_LPAREN2] = ACTIONS(1483), - [aux_sym_expr_binary_token1] = ACTIONS(1483), - [aux_sym_expr_binary_token2] = ACTIONS(1483), - [aux_sym_expr_binary_token3] = ACTIONS(1483), - [aux_sym_expr_binary_token4] = ACTIONS(1483), - [aux_sym_expr_binary_token5] = ACTIONS(1483), - [aux_sym_expr_binary_token6] = ACTIONS(1483), - [aux_sym_expr_binary_token7] = ACTIONS(1483), - [aux_sym_expr_binary_token8] = ACTIONS(1483), - [aux_sym_expr_binary_token9] = ACTIONS(1483), - [aux_sym_expr_binary_token10] = ACTIONS(1483), - [aux_sym_expr_binary_token11] = ACTIONS(1483), - [aux_sym_expr_binary_token12] = ACTIONS(1483), - [aux_sym_expr_binary_token13] = ACTIONS(1483), - [aux_sym_expr_binary_token14] = ACTIONS(1483), - [aux_sym_expr_binary_token15] = ACTIONS(1483), - [aux_sym_expr_binary_token16] = ACTIONS(1483), - [aux_sym_expr_binary_token17] = ACTIONS(1483), - [aux_sym_expr_binary_token18] = ACTIONS(1483), - [aux_sym_expr_binary_token19] = ACTIONS(1483), - [aux_sym_expr_binary_token20] = ACTIONS(1483), - [aux_sym_expr_binary_token21] = ACTIONS(1483), - [aux_sym_expr_binary_token22] = ACTIONS(1483), - [aux_sym_expr_binary_token23] = ACTIONS(1483), - [aux_sym_expr_binary_token24] = ACTIONS(1483), - [aux_sym_expr_binary_token25] = ACTIONS(1483), - [aux_sym_expr_binary_token26] = ACTIONS(1483), - [aux_sym_expr_binary_token27] = ACTIONS(1483), - [aux_sym_expr_binary_token28] = ACTIONS(1483), - [anon_sym_DOT_DOT2] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), - [anon_sym_DOT_DOT_LT] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), - [aux_sym__immediate_decimal_token1] = ACTIONS(2901), - [aux_sym__immediate_decimal_token2] = ACTIONS(2903), - [aux_sym__val_number_decimal_token1] = ACTIONS(1481), - [aux_sym__val_number_decimal_token2] = ACTIONS(1483), - [aux_sym__val_number_decimal_token3] = ACTIONS(1483), - [aux_sym__val_number_decimal_token4] = ACTIONS(1483), - [aux_sym__val_number_token1] = ACTIONS(1483), - [aux_sym__val_number_token2] = ACTIONS(1483), - [aux_sym__val_number_token3] = ACTIONS(1483), - [anon_sym_0b] = ACTIONS(1481), - [sym_filesize_unit] = ACTIONS(1483), - [sym_duration_unit] = ACTIONS(1483), - [anon_sym_0o] = ACTIONS(1481), - [anon_sym_0x] = ACTIONS(1481), - [sym_val_date] = ACTIONS(1483), - [anon_sym_DQUOTE] = ACTIONS(1483), - [sym__str_single_quotes] = ACTIONS(1483), - [sym__str_back_ticks] = ACTIONS(1483), - [anon_sym_err_GT] = ACTIONS(1481), - [anon_sym_out_GT] = ACTIONS(1481), - [anon_sym_e_GT] = ACTIONS(1481), - [anon_sym_o_GT] = ACTIONS(1481), - [anon_sym_err_PLUSout_GT] = ACTIONS(1481), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), - [anon_sym_o_PLUSe_GT] = ACTIONS(1481), - [anon_sym_e_PLUSo_GT] = ACTIONS(1481), - [anon_sym_err_GT_GT] = ACTIONS(1483), - [anon_sym_out_GT_GT] = ACTIONS(1483), - [anon_sym_e_GT_GT] = ACTIONS(1483), - [anon_sym_o_GT_GT] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), - [aux_sym_unquoted_token1] = ACTIONS(1481), - [aux_sym_unquoted_token2] = ACTIONS(1481), + [aux_sym_shebang_repeat1] = STATE(724), + [aux_sym_list_body_repeat1] = STATE(743), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_RBRACK] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [695] = { + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(6275), + [sym__spread_list] = STATE(7324), + [sym_list_body] = STATE(7663), + [sym_val_entry] = STATE(7059), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(695), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [aux_sym_cmd_identifier_token38] = ACTIONS(1475), - [aux_sym_cmd_identifier_token39] = ACTIONS(1475), - [aux_sym_cmd_identifier_token40] = ACTIONS(1475), - [sym__newline] = ACTIONS(1475), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1473), - [anon_sym_COMMA] = ACTIONS(1475), - [anon_sym_DOLLAR] = ACTIONS(1475), - [aux_sym_ctrl_match_token1] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym__] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1473), - [anon_sym_LPAREN2] = ACTIONS(1475), - [aux_sym_expr_binary_token1] = ACTIONS(1475), - [aux_sym_expr_binary_token2] = ACTIONS(1475), - [aux_sym_expr_binary_token3] = ACTIONS(1475), - [aux_sym_expr_binary_token4] = ACTIONS(1475), - [aux_sym_expr_binary_token5] = ACTIONS(1475), - [aux_sym_expr_binary_token6] = ACTIONS(1475), - [aux_sym_expr_binary_token7] = ACTIONS(1475), - [aux_sym_expr_binary_token8] = ACTIONS(1475), - [aux_sym_expr_binary_token9] = ACTIONS(1475), - [aux_sym_expr_binary_token10] = ACTIONS(1475), - [aux_sym_expr_binary_token11] = ACTIONS(1475), - [aux_sym_expr_binary_token12] = ACTIONS(1475), - [aux_sym_expr_binary_token13] = ACTIONS(1475), - [aux_sym_expr_binary_token14] = ACTIONS(1475), - [aux_sym_expr_binary_token15] = ACTIONS(1475), - [aux_sym_expr_binary_token16] = ACTIONS(1475), - [aux_sym_expr_binary_token17] = ACTIONS(1475), - [aux_sym_expr_binary_token18] = ACTIONS(1475), - [aux_sym_expr_binary_token19] = ACTIONS(1475), - [aux_sym_expr_binary_token20] = ACTIONS(1475), - [aux_sym_expr_binary_token21] = ACTIONS(1475), - [aux_sym_expr_binary_token22] = ACTIONS(1475), - [aux_sym_expr_binary_token23] = ACTIONS(1475), - [aux_sym_expr_binary_token24] = ACTIONS(1475), - [aux_sym_expr_binary_token25] = ACTIONS(1475), - [aux_sym_expr_binary_token26] = ACTIONS(1475), - [aux_sym_expr_binary_token27] = ACTIONS(1475), - [aux_sym_expr_binary_token28] = ACTIONS(1475), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT] = ACTIONS(2905), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), - [anon_sym_DOT_DOT_LT] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [aux_sym__immediate_decimal_token2] = ACTIONS(2907), - [aux_sym__val_number_decimal_token1] = ACTIONS(1473), - [aux_sym__val_number_decimal_token2] = ACTIONS(1475), - [aux_sym__val_number_decimal_token3] = ACTIONS(1475), - [aux_sym__val_number_decimal_token4] = ACTIONS(1475), - [aux_sym__val_number_token1] = ACTIONS(1475), - [aux_sym__val_number_token2] = ACTIONS(1475), - [aux_sym__val_number_token3] = ACTIONS(1475), - [anon_sym_0b] = ACTIONS(1473), - [sym_filesize_unit] = ACTIONS(1475), - [sym_duration_unit] = ACTIONS(1475), - [anon_sym_0o] = ACTIONS(1473), - [anon_sym_0x] = ACTIONS(1473), - [sym_val_date] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym__str_single_quotes] = ACTIONS(1475), - [sym__str_back_ticks] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1473), - [anon_sym_out_GT] = ACTIONS(1473), - [anon_sym_e_GT] = ACTIONS(1473), - [anon_sym_o_GT] = ACTIONS(1473), - [anon_sym_err_PLUSout_GT] = ACTIONS(1473), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), - [anon_sym_o_PLUSe_GT] = ACTIONS(1473), - [anon_sym_e_PLUSo_GT] = ACTIONS(1473), - [anon_sym_err_GT_GT] = ACTIONS(1475), - [anon_sym_out_GT_GT] = ACTIONS(1475), - [anon_sym_e_GT_GT] = ACTIONS(1475), - [anon_sym_o_GT_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), - [aux_sym_unquoted_token1] = ACTIONS(1473), - [aux_sym_unquoted_token2] = ACTIONS(1473), + [aux_sym_shebang_repeat1] = STATE(721), + [aux_sym_list_body_repeat1] = STATE(743), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_RBRACK] = ACTIONS(3014), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [696] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7501), - [sym__spread_list] = STATE(7624), - [sym_list_body] = STATE(7867), - [sym_val_entry] = STATE(6977), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(6275), + [sym__spread_list] = STATE(7324), + [sym_list_body] = STATE(7755), + [sym_val_entry] = STATE(7059), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(696), - [aux_sym_shebang_repeat1] = STATE(735), - [aux_sym_list_body_repeat1] = STATE(779), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_RBRACK] = ACTIONS(2917), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), + [aux_sym_shebang_repeat1] = STATE(721), + [aux_sym_list_body_repeat1] = STATE(743), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_RBRACK] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [697] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7520), - [sym__spread_list] = STATE(7624), - [sym_list_body] = STATE(7728), - [sym_val_entry] = STATE(6977), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7123), + [sym__spread_list] = STATE(7324), + [sym_list_body] = STATE(7509), + [sym_val_entry] = STATE(7059), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(697), - [aux_sym_shebang_repeat1] = STATE(737), - [aux_sym_list_body_repeat1] = STATE(779), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_RBRACK] = ACTIONS(2943), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), + [aux_sym_shebang_repeat1] = STATE(725), + [aux_sym_list_body_repeat1] = STATE(743), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_RBRACK] = ACTIONS(3018), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [698] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7411), - [sym__spread_list] = STATE(7624), - [sym_list_body] = STATE(7949), - [sym_val_entry] = STATE(6977), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(6275), + [sym__spread_list] = STATE(7324), + [sym_list_body] = STATE(7681), + [sym_val_entry] = STATE(7059), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(698), - [aux_sym_shebang_repeat1] = STATE(751), - [aux_sym_list_body_repeat1] = STATE(779), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_RBRACK] = ACTIONS(2945), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), + [aux_sym_shebang_repeat1] = STATE(721), + [aux_sym_list_body_repeat1] = STATE(743), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_RBRACK] = ACTIONS(3020), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [699] = { - [sym__expr_parenthesized_immediate] = STATE(7594), + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7134), + [sym__spread_list] = STATE(7324), + [sym_list_body] = STATE(7688), + [sym_val_entry] = STATE(7059), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(699), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_null] = ACTIONS(1537), - [aux_sym_cmd_identifier_token38] = ACTIONS(1537), - [aux_sym_cmd_identifier_token39] = ACTIONS(1537), - [aux_sym_cmd_identifier_token40] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_COMMA] = ACTIONS(1537), - [anon_sym_DOLLAR] = ACTIONS(1537), - [aux_sym_ctrl_match_token1] = ACTIONS(1537), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym__] = ACTIONS(1525), - [anon_sym_DOT_DOT] = ACTIONS(1525), - [anon_sym_LPAREN2] = ACTIONS(2947), - [aux_sym_expr_binary_token1] = ACTIONS(1537), - [aux_sym_expr_binary_token2] = ACTIONS(1537), - [aux_sym_expr_binary_token3] = ACTIONS(1537), - [aux_sym_expr_binary_token4] = ACTIONS(1537), - [aux_sym_expr_binary_token5] = ACTIONS(1537), - [aux_sym_expr_binary_token6] = ACTIONS(1537), - [aux_sym_expr_binary_token7] = ACTIONS(1537), - [aux_sym_expr_binary_token8] = ACTIONS(1537), - [aux_sym_expr_binary_token9] = ACTIONS(1537), - [aux_sym_expr_binary_token10] = ACTIONS(1537), - [aux_sym_expr_binary_token11] = ACTIONS(1537), - [aux_sym_expr_binary_token12] = ACTIONS(1537), - [aux_sym_expr_binary_token13] = ACTIONS(1537), - [aux_sym_expr_binary_token14] = ACTIONS(1537), - [aux_sym_expr_binary_token15] = ACTIONS(1537), - [aux_sym_expr_binary_token16] = ACTIONS(1537), - [aux_sym_expr_binary_token17] = ACTIONS(1537), - [aux_sym_expr_binary_token18] = ACTIONS(1537), - [aux_sym_expr_binary_token19] = ACTIONS(1537), - [aux_sym_expr_binary_token20] = ACTIONS(1537), - [aux_sym_expr_binary_token21] = ACTIONS(1537), - [aux_sym_expr_binary_token22] = ACTIONS(1537), - [aux_sym_expr_binary_token23] = ACTIONS(1537), - [aux_sym_expr_binary_token24] = ACTIONS(1537), - [aux_sym_expr_binary_token25] = ACTIONS(1537), - [aux_sym_expr_binary_token26] = ACTIONS(1537), - [aux_sym_expr_binary_token27] = ACTIONS(1537), - [aux_sym_expr_binary_token28] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(2949), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1525), - [anon_sym_DOT_DOT_LT] = ACTIONS(1525), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2951), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2951), - [aux_sym__val_number_decimal_token1] = ACTIONS(1525), - [aux_sym__val_number_decimal_token2] = ACTIONS(1537), - [aux_sym__val_number_decimal_token3] = ACTIONS(1537), - [aux_sym__val_number_decimal_token4] = ACTIONS(1537), - [aux_sym__val_number_token1] = ACTIONS(1537), - [aux_sym__val_number_token2] = ACTIONS(1537), - [aux_sym__val_number_token3] = ACTIONS(1537), - [anon_sym_0b] = ACTIONS(1525), - [sym_filesize_unit] = ACTIONS(2953), - [sym_duration_unit] = ACTIONS(2955), - [anon_sym_0o] = ACTIONS(1525), - [anon_sym_0x] = ACTIONS(1525), - [sym_val_date] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym__str_single_quotes] = ACTIONS(1537), - [sym__str_back_ticks] = ACTIONS(1537), - [anon_sym_err_GT] = ACTIONS(1525), - [anon_sym_out_GT] = ACTIONS(1525), - [anon_sym_e_GT] = ACTIONS(1525), - [anon_sym_o_GT] = ACTIONS(1525), - [anon_sym_err_PLUSout_GT] = ACTIONS(1525), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), - [anon_sym_o_PLUSe_GT] = ACTIONS(1525), - [anon_sym_e_PLUSo_GT] = ACTIONS(1525), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), - [aux_sym_unquoted_token1] = ACTIONS(1525), - [aux_sym_unquoted_token2] = ACTIONS(2957), + [aux_sym_shebang_repeat1] = STATE(726), + [aux_sym_list_body_repeat1] = STATE(743), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_RBRACK] = ACTIONS(3022), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [700] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7426), - [sym__spread_list] = STATE(7624), - [sym_list_body] = STATE(7851), - [sym_val_entry] = STATE(6977), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7143), + [sym__spread_list] = STATE(7324), + [sym_list_body] = STATE(7480), + [sym_val_entry] = STATE(7059), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(700), - [aux_sym_shebang_repeat1] = STATE(753), - [aux_sym_list_body_repeat1] = STATE(779), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_RBRACK] = ACTIONS(2959), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), + [aux_sym_shebang_repeat1] = STATE(727), + [aux_sym_list_body_repeat1] = STATE(743), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_RBRACK] = ACTIONS(3024), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [701] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7495), - [sym__spread_list] = STATE(7624), - [sym_list_body] = STATE(7821), - [sym_val_entry] = STATE(6977), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7031), + [sym__spread_list] = STATE(7324), + [sym_list_body] = STATE(7532), + [sym_val_entry] = STATE(7059), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(701), - [aux_sym_shebang_repeat1] = STATE(743), - [aux_sym_list_body_repeat1] = STATE(779), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_RBRACK] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), + [aux_sym_shebang_repeat1] = STATE(724), + [aux_sym_list_body_repeat1] = STATE(743), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_RBRACK] = ACTIONS(2982), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [702] = { + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7158), + [sym__spread_list] = STATE(7324), + [sym_list_body] = STATE(7752), + [sym_val_entry] = STATE(7059), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(702), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [aux_sym_cmd_identifier_token38] = ACTIONS(1475), - [aux_sym_cmd_identifier_token39] = ACTIONS(1475), - [aux_sym_cmd_identifier_token40] = ACTIONS(1475), - [sym__newline] = ACTIONS(1475), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1473), - [anon_sym_COMMA] = ACTIONS(1475), - [anon_sym_DOLLAR] = ACTIONS(1475), - [aux_sym_ctrl_match_token1] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym__] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1473), - [anon_sym_LPAREN2] = ACTIONS(1475), - [aux_sym_expr_binary_token1] = ACTIONS(1475), - [aux_sym_expr_binary_token2] = ACTIONS(1475), - [aux_sym_expr_binary_token3] = ACTIONS(1475), - [aux_sym_expr_binary_token4] = ACTIONS(1475), - [aux_sym_expr_binary_token5] = ACTIONS(1475), - [aux_sym_expr_binary_token6] = ACTIONS(1475), - [aux_sym_expr_binary_token7] = ACTIONS(1475), - [aux_sym_expr_binary_token8] = ACTIONS(1475), - [aux_sym_expr_binary_token9] = ACTIONS(1475), - [aux_sym_expr_binary_token10] = ACTIONS(1475), - [aux_sym_expr_binary_token11] = ACTIONS(1475), - [aux_sym_expr_binary_token12] = ACTIONS(1475), - [aux_sym_expr_binary_token13] = ACTIONS(1475), - [aux_sym_expr_binary_token14] = ACTIONS(1475), - [aux_sym_expr_binary_token15] = ACTIONS(1475), - [aux_sym_expr_binary_token16] = ACTIONS(1475), - [aux_sym_expr_binary_token17] = ACTIONS(1475), - [aux_sym_expr_binary_token18] = ACTIONS(1475), - [aux_sym_expr_binary_token19] = ACTIONS(1475), - [aux_sym_expr_binary_token20] = ACTIONS(1475), - [aux_sym_expr_binary_token21] = ACTIONS(1475), - [aux_sym_expr_binary_token22] = ACTIONS(1475), - [aux_sym_expr_binary_token23] = ACTIONS(1475), - [aux_sym_expr_binary_token24] = ACTIONS(1475), - [aux_sym_expr_binary_token25] = ACTIONS(1475), - [aux_sym_expr_binary_token26] = ACTIONS(1475), - [aux_sym_expr_binary_token27] = ACTIONS(1475), - [aux_sym_expr_binary_token28] = ACTIONS(1475), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), - [anon_sym_DOT_DOT_LT] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [aux_sym__immediate_decimal_token2] = ACTIONS(2907), - [aux_sym__val_number_decimal_token1] = ACTIONS(1473), - [aux_sym__val_number_decimal_token2] = ACTIONS(1475), - [aux_sym__val_number_decimal_token3] = ACTIONS(1475), - [aux_sym__val_number_decimal_token4] = ACTIONS(1475), - [aux_sym__val_number_token1] = ACTIONS(1475), - [aux_sym__val_number_token2] = ACTIONS(1475), - [aux_sym__val_number_token3] = ACTIONS(1475), - [anon_sym_0b] = ACTIONS(1473), - [sym_filesize_unit] = ACTIONS(1475), - [sym_duration_unit] = ACTIONS(1475), - [anon_sym_0o] = ACTIONS(1473), - [anon_sym_0x] = ACTIONS(1473), - [sym_val_date] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym__str_single_quotes] = ACTIONS(1475), - [sym__str_back_ticks] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1473), - [anon_sym_out_GT] = ACTIONS(1473), - [anon_sym_e_GT] = ACTIONS(1473), - [anon_sym_o_GT] = ACTIONS(1473), - [anon_sym_err_PLUSout_GT] = ACTIONS(1473), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), - [anon_sym_o_PLUSe_GT] = ACTIONS(1473), - [anon_sym_e_PLUSo_GT] = ACTIONS(1473), - [anon_sym_err_GT_GT] = ACTIONS(1475), - [anon_sym_out_GT_GT] = ACTIONS(1475), - [anon_sym_e_GT_GT] = ACTIONS(1475), - [anon_sym_o_GT_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), - [aux_sym_unquoted_token1] = ACTIONS(1473), - [aux_sym_unquoted_token2] = ACTIONS(1473), + [aux_sym_shebang_repeat1] = STATE(729), + [aux_sym_list_body_repeat1] = STATE(743), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_RBRACK] = ACTIONS(3026), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [703] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7434), - [sym__spread_list] = STATE(7624), - [sym_list_body] = STATE(8039), - [sym_val_entry] = STATE(6977), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7165), + [sym__spread_list] = STATE(7324), + [sym_list_body] = STATE(7701), + [sym_val_entry] = STATE(7059), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(703), - [aux_sym_shebang_repeat1] = STATE(734), - [aux_sym_list_body_repeat1] = STATE(779), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_RBRACK] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), + [aux_sym_shebang_repeat1] = STATE(730), + [aux_sym_list_body_repeat1] = STATE(743), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_RBRACK] = ACTIONS(3028), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [704] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7472), - [sym__spread_list] = STATE(7624), - [sym_list_body] = STATE(8017), - [sym_val_entry] = STATE(6977), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7174), + [sym__spread_list] = STATE(7324), + [sym_list_body] = STATE(7730), + [sym_val_entry] = STATE(7059), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(704), - [aux_sym_shebang_repeat1] = STATE(759), - [aux_sym_list_body_repeat1] = STATE(779), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_RBRACK] = ACTIONS(2965), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), + [aux_sym_shebang_repeat1] = STATE(731), + [aux_sym_list_body_repeat1] = STATE(743), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_RBRACK] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [705] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(517), - [sym__spread_list] = STATE(7624), - [sym_list_body] = STATE(8048), - [sym_val_entry] = STATE(6977), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7182), + [sym__spread_list] = STATE(7324), + [sym_list_body] = STATE(7628), + [sym_val_entry] = STATE(7059), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(705), - [aux_sym_shebang_repeat1] = STATE(736), - [aux_sym_list_body_repeat1] = STATE(779), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_RBRACK] = ACTIONS(2969), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), + [aux_sym_shebang_repeat1] = STATE(732), + [aux_sym_list_body_repeat1] = STATE(743), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_RBRACK] = ACTIONS(3032), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [706] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7443), - [sym__spread_list] = STATE(7624), - [sym_list_body] = STATE(7779), - [sym_val_entry] = STATE(6977), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7196), + [sym__spread_list] = STATE(7324), + [sym_list_body] = STATE(7489), + [sym_val_entry] = STATE(7059), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(706), - [aux_sym_shebang_repeat1] = STATE(755), - [aux_sym_list_body_repeat1] = STATE(779), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_RBRACK] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), + [aux_sym_shebang_repeat1] = STATE(734), + [aux_sym_list_body_repeat1] = STATE(743), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_RBRACK] = ACTIONS(3034), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [707] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7373), - [sym__spread_list] = STATE(7624), - [sym_list_body] = STATE(7936), - [sym_val_entry] = STATE(6977), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7204), + [sym__spread_list] = STATE(7324), + [sym_list_body] = STATE(7634), + [sym_val_entry] = STATE(7059), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(707), - [aux_sym_shebang_repeat1] = STATE(746), - [aux_sym_list_body_repeat1] = STATE(779), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_RBRACK] = ACTIONS(2973), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), + [aux_sym_shebang_repeat1] = STATE(735), + [aux_sym_list_body_repeat1] = STATE(743), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_RBRACK] = ACTIONS(3036), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [708] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(517), - [sym__spread_list] = STATE(7624), - [sym_list_body] = STATE(7755), - [sym_val_entry] = STATE(6977), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7190), + [sym__spread_list] = STATE(7324), + [sym_list_body] = STATE(7776), + [sym_val_entry] = STATE(7059), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(708), - [aux_sym_shebang_repeat1] = STATE(736), - [aux_sym_list_body_repeat1] = STATE(779), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_RBRACK] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), + [aux_sym_shebang_repeat1] = STATE(718), + [aux_sym_list_body_repeat1] = STATE(743), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_RBRACK] = ACTIONS(3038), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [709] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7508), - [sym__spread_list] = STATE(7624), - [sym_list_body] = STATE(7907), - [sym_val_entry] = STATE(6977), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(6275), + [sym__spread_list] = STATE(7324), + [sym_list_body] = STATE(7532), + [sym_val_entry] = STATE(7059), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(709), - [aux_sym_shebang_repeat1] = STATE(754), - [aux_sym_list_body_repeat1] = STATE(779), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_RBRACK] = ACTIONS(2977), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), + [aux_sym_shebang_repeat1] = STATE(721), + [aux_sym_list_body_repeat1] = STATE(743), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_RBRACK] = ACTIONS(2982), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [710] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7450), - [sym__spread_list] = STATE(7624), - [sym_list_body] = STATE(7895), - [sym_val_entry] = STATE(6977), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7212), + [sym__spread_list] = STATE(7324), + [sym_list_body] = STATE(7748), + [sym_val_entry] = STATE(7059), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(710), - [aux_sym_shebang_repeat1] = STATE(756), - [aux_sym_list_body_repeat1] = STATE(779), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_RBRACK] = ACTIONS(2979), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), + [aux_sym_shebang_repeat1] = STATE(736), + [aux_sym_list_body_repeat1] = STATE(743), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_RBRACK] = ACTIONS(3040), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [711] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7282), - [sym__spread_list] = STATE(7624), - [sym_list_body] = STATE(7892), - [sym_val_entry] = STATE(6977), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7219), + [sym__spread_list] = STATE(7324), + [sym_list_body] = STATE(7494), + [sym_val_entry] = STATE(7059), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(711), - [aux_sym_shebang_repeat1] = STATE(744), - [aux_sym_list_body_repeat1] = STATE(779), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_RBRACK] = ACTIONS(2981), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), + [aux_sym_shebang_repeat1] = STATE(737), + [aux_sym_list_body_repeat1] = STATE(743), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_RBRACK] = ACTIONS(3042), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [712] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7396), - [sym__spread_list] = STATE(7624), - [sym_list_body] = STATE(7827), - [sym_val_entry] = STATE(6977), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7232), + [sym__spread_list] = STATE(7324), + [sym_list_body] = STATE(7510), + [sym_val_entry] = STATE(7059), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(712), - [aux_sym_shebang_repeat1] = STATE(749), - [aux_sym_list_body_repeat1] = STATE(779), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_RBRACK] = ACTIONS(2983), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), + [aux_sym_shebang_repeat1] = STATE(739), + [aux_sym_list_body_repeat1] = STATE(743), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_RBRACK] = ACTIONS(3044), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [713] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7380), - [sym__spread_list] = STATE(7624), - [sym_list_body] = STATE(7751), - [sym_val_entry] = STATE(6977), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7239), + [sym__spread_list] = STATE(7324), + [sym_list_body] = STATE(7576), + [sym_val_entry] = STATE(7059), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(713), - [aux_sym_shebang_repeat1] = STATE(747), - [aux_sym_list_body_repeat1] = STATE(779), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_RBRACK] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), + [aux_sym_shebang_repeat1] = STATE(740), + [aux_sym_list_body_repeat1] = STATE(743), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_RBRACK] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [714] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7388), - [sym__spread_list] = STATE(7624), - [sym_list_body] = STATE(7988), - [sym_val_entry] = STATE(6977), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7258), + [sym__spread_list] = STATE(7324), + [sym_list_body] = STATE(7618), + [sym_val_entry] = STATE(7059), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(714), - [aux_sym_shebang_repeat1] = STATE(748), - [aux_sym_list_body_repeat1] = STATE(779), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_RBRACK] = ACTIONS(2987), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), + [aux_sym_shebang_repeat1] = STATE(719), + [aux_sym_list_body_repeat1] = STATE(743), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_RBRACK] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [715] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(517), - [sym__spread_list] = STATE(7624), - [sym_list_body] = STATE(7739), - [sym_val_entry] = STATE(6977), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7265), + [sym__spread_list] = STATE(7324), + [sym_list_body] = STATE(7656), + [sym_val_entry] = STATE(7059), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(715), - [aux_sym_shebang_repeat1] = STATE(736), - [aux_sym_list_body_repeat1] = STATE(779), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_RBRACK] = ACTIONS(2989), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), + [aux_sym_shebang_repeat1] = STATE(723), + [aux_sym_list_body_repeat1] = STATE(743), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_RBRACK] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [716] = { + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7150), + [sym__spread_list] = STATE(7324), + [sym_list_body] = STATE(7526), + [sym_val_entry] = STATE(7059), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(716), - [anon_sym_true] = ACTIONS(1521), - [anon_sym_false] = ACTIONS(1521), - [anon_sym_null] = ACTIONS(1521), - [aux_sym_cmd_identifier_token38] = ACTIONS(1521), - [aux_sym_cmd_identifier_token39] = ACTIONS(1521), - [aux_sym_cmd_identifier_token40] = ACTIONS(1521), - [sym__newline] = ACTIONS(1521), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1519), - [anon_sym_COMMA] = ACTIONS(1521), - [anon_sym_DOLLAR] = ACTIONS(1521), - [aux_sym_ctrl_match_token1] = ACTIONS(1521), - [anon_sym_RBRACE] = ACTIONS(1521), - [anon_sym__] = ACTIONS(1519), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_LPAREN2] = ACTIONS(1521), - [aux_sym_expr_binary_token1] = ACTIONS(1521), - [aux_sym_expr_binary_token2] = ACTIONS(1521), - [aux_sym_expr_binary_token3] = ACTIONS(1521), - [aux_sym_expr_binary_token4] = ACTIONS(1521), - [aux_sym_expr_binary_token5] = ACTIONS(1521), - [aux_sym_expr_binary_token6] = ACTIONS(1521), - [aux_sym_expr_binary_token7] = ACTIONS(1521), - [aux_sym_expr_binary_token8] = ACTIONS(1521), - [aux_sym_expr_binary_token9] = ACTIONS(1521), - [aux_sym_expr_binary_token10] = ACTIONS(1521), - [aux_sym_expr_binary_token11] = ACTIONS(1521), - [aux_sym_expr_binary_token12] = ACTIONS(1521), - [aux_sym_expr_binary_token13] = ACTIONS(1521), - [aux_sym_expr_binary_token14] = ACTIONS(1521), - [aux_sym_expr_binary_token15] = ACTIONS(1521), - [aux_sym_expr_binary_token16] = ACTIONS(1521), - [aux_sym_expr_binary_token17] = ACTIONS(1521), - [aux_sym_expr_binary_token18] = ACTIONS(1521), - [aux_sym_expr_binary_token19] = ACTIONS(1521), - [aux_sym_expr_binary_token20] = ACTIONS(1521), - [aux_sym_expr_binary_token21] = ACTIONS(1521), - [aux_sym_expr_binary_token22] = ACTIONS(1521), - [aux_sym_expr_binary_token23] = ACTIONS(1521), - [aux_sym_expr_binary_token24] = ACTIONS(1521), - [aux_sym_expr_binary_token25] = ACTIONS(1521), - [aux_sym_expr_binary_token26] = ACTIONS(1521), - [aux_sym_expr_binary_token27] = ACTIONS(1521), - [aux_sym_expr_binary_token28] = ACTIONS(1521), - [anon_sym_DOT_DOT2] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1519), - [anon_sym_DOT_DOT_LT] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), - [aux_sym__immediate_decimal_token2] = ACTIONS(2991), - [aux_sym__val_number_decimal_token1] = ACTIONS(1519), - [aux_sym__val_number_decimal_token2] = ACTIONS(1521), - [aux_sym__val_number_decimal_token3] = ACTIONS(1521), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(1521), - [aux_sym__val_number_token2] = ACTIONS(1521), - [aux_sym__val_number_token3] = ACTIONS(1521), - [anon_sym_0b] = ACTIONS(1519), - [sym_filesize_unit] = ACTIONS(1521), - [sym_duration_unit] = ACTIONS(1521), - [anon_sym_0o] = ACTIONS(1519), - [anon_sym_0x] = ACTIONS(1519), - [sym_val_date] = ACTIONS(1521), - [anon_sym_DQUOTE] = ACTIONS(1521), - [sym__str_single_quotes] = ACTIONS(1521), - [sym__str_back_ticks] = ACTIONS(1521), - [anon_sym_err_GT] = ACTIONS(1519), - [anon_sym_out_GT] = ACTIONS(1519), - [anon_sym_e_GT] = ACTIONS(1519), - [anon_sym_o_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT] = ACTIONS(1519), - [anon_sym_err_GT_GT] = ACTIONS(1521), - [anon_sym_out_GT_GT] = ACTIONS(1521), - [anon_sym_e_GT_GT] = ACTIONS(1521), - [anon_sym_o_GT_GT] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), - [aux_sym_unquoted_token1] = ACTIONS(1519), - [aux_sym_unquoted_token2] = ACTIONS(1519), + [aux_sym_shebang_repeat1] = STATE(728), + [aux_sym_list_body_repeat1] = STATE(743), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_RBRACK] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [717] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(6947), - [sym__spread_list] = STATE(7624), - [sym_list_body] = STATE(8035), - [sym_val_entry] = STATE(6977), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(6275), + [sym__spread_list] = STATE(7324), + [sym_list_body] = STATE(7711), + [sym_val_entry] = STATE(7059), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(717), - [aux_sym_shebang_repeat1] = STATE(757), - [aux_sym_list_body_repeat1] = STATE(779), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_RBRACK] = ACTIONS(2993), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), + [aux_sym_shebang_repeat1] = STATE(721), + [aux_sym_list_body_repeat1] = STATE(743), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_RBRACK] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [718] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7358), - [sym__spread_list] = STATE(7624), - [sym_list_body] = STATE(7820), - [sym_val_entry] = STATE(6977), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7191), + [sym__spread_list] = STATE(7324), + [sym_val_entry] = STATE(7287), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(718), - [aux_sym_shebang_repeat1] = STATE(745), - [aux_sym_list_body_repeat1] = STATE(779), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_RBRACK] = ACTIONS(2995), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), + [aux_sym_shebang_repeat1] = STATE(2586), + [aux_sym_list_body_repeat1] = STATE(742), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [719] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7480), - [sym__spread_list] = STATE(7624), - [sym_list_body] = STATE(7771), - [sym_val_entry] = STATE(6977), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7259), + [sym__spread_list] = STATE(7324), + [sym_val_entry] = STATE(7287), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(719), - [aux_sym_shebang_repeat1] = STATE(760), - [aux_sym_list_body_repeat1] = STATE(779), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_RBRACK] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), + [aux_sym_shebang_repeat1] = STATE(2586), + [aux_sym_list_body_repeat1] = STATE(742), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [720] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7419), - [sym__spread_list] = STATE(7624), - [sym_list_body] = STATE(7935), - [sym_val_entry] = STATE(6977), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7216), + [sym__spread_list] = STATE(7324), + [sym_val_entry] = STATE(7287), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(720), - [aux_sym_shebang_repeat1] = STATE(752), - [aux_sym_list_body_repeat1] = STATE(779), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_RBRACK] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), + [aux_sym_shebang_repeat1] = STATE(2586), + [aux_sym_list_body_repeat1] = STATE(742), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [721] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7404), - [sym__spread_list] = STATE(7624), - [sym_list_body] = STATE(8006), - [sym_val_entry] = STATE(6977), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(6275), + [sym__spread_list] = STATE(7324), + [sym_val_entry] = STATE(7287), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(721), - [aux_sym_shebang_repeat1] = STATE(750), - [aux_sym_list_body_repeat1] = STATE(779), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_RBRACK] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), + [aux_sym_shebang_repeat1] = STATE(2586), + [aux_sym_list_body_repeat1] = STATE(742), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [722] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(517), - [sym__spread_list] = STATE(7624), - [sym_list_body] = STATE(7750), - [sym_val_entry] = STATE(6977), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7253), + [sym__spread_list] = STATE(7324), + [sym_val_entry] = STATE(7287), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(722), - [aux_sym_shebang_repeat1] = STATE(736), - [aux_sym_list_body_repeat1] = STATE(779), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_RBRACK] = ACTIONS(3003), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), + [aux_sym_shebang_repeat1] = STATE(2586), + [aux_sym_list_body_repeat1] = STATE(742), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [723] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(517), - [sym__spread_list] = STATE(7624), - [sym_list_body] = STATE(7769), - [sym_val_entry] = STATE(6977), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7266), + [sym__spread_list] = STATE(7324), + [sym_val_entry] = STATE(7287), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(723), - [aux_sym_shebang_repeat1] = STATE(736), - [aux_sym_list_body_repeat1] = STATE(779), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_RBRACK] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), + [aux_sym_shebang_repeat1] = STATE(2586), + [aux_sym_list_body_repeat1] = STATE(742), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [724] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7282), - [sym__spread_list] = STATE(7624), - [sym_list_body] = STATE(7750), - [sym_val_entry] = STATE(6977), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7051), + [sym__spread_list] = STATE(7324), + [sym_val_entry] = STATE(7287), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(724), - [aux_sym_shebang_repeat1] = STATE(744), - [aux_sym_list_body_repeat1] = STATE(779), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_RBRACK] = ACTIONS(3003), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), + [aux_sym_shebang_repeat1] = STATE(2586), + [aux_sym_list_body_repeat1] = STATE(742), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [725] = { - [sym_cell_path] = STATE(816), - [sym_path] = STATE(784), + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7126), + [sym__spread_list] = STATE(7324), + [sym_val_entry] = STATE(7287), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(725), - [aux_sym_cell_path_repeat1] = STATE(761), - [anon_sym_true] = ACTIONS(1603), - [anon_sym_false] = ACTIONS(1603), - [anon_sym_null] = ACTIONS(1603), - [aux_sym_cmd_identifier_token38] = ACTIONS(1603), - [aux_sym_cmd_identifier_token39] = ACTIONS(1603), - [aux_sym_cmd_identifier_token40] = ACTIONS(1603), - [sym__newline] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1603), - [anon_sym_LPAREN] = ACTIONS(1603), - [anon_sym_COMMA] = ACTIONS(1603), - [anon_sym_DOLLAR] = ACTIONS(1603), - [aux_sym_ctrl_match_token1] = ACTIONS(1603), - [anon_sym_RBRACE] = ACTIONS(1603), - [anon_sym__] = ACTIONS(1599), - [anon_sym_DOT_DOT] = ACTIONS(1599), - [aux_sym_expr_binary_token1] = ACTIONS(1603), - [aux_sym_expr_binary_token2] = ACTIONS(1603), - [aux_sym_expr_binary_token3] = ACTIONS(1603), - [aux_sym_expr_binary_token4] = ACTIONS(1603), - [aux_sym_expr_binary_token5] = ACTIONS(1603), - [aux_sym_expr_binary_token6] = ACTIONS(1603), - [aux_sym_expr_binary_token7] = ACTIONS(1603), - [aux_sym_expr_binary_token8] = ACTIONS(1603), - [aux_sym_expr_binary_token9] = ACTIONS(1603), - [aux_sym_expr_binary_token10] = ACTIONS(1603), - [aux_sym_expr_binary_token11] = ACTIONS(1603), - [aux_sym_expr_binary_token12] = ACTIONS(1603), - [aux_sym_expr_binary_token13] = ACTIONS(1603), - [aux_sym_expr_binary_token14] = ACTIONS(1603), - [aux_sym_expr_binary_token15] = ACTIONS(1603), - [aux_sym_expr_binary_token16] = ACTIONS(1603), - [aux_sym_expr_binary_token17] = ACTIONS(1603), - [aux_sym_expr_binary_token18] = ACTIONS(1603), - [aux_sym_expr_binary_token19] = ACTIONS(1603), - [aux_sym_expr_binary_token20] = ACTIONS(1603), - [aux_sym_expr_binary_token21] = ACTIONS(1603), - [aux_sym_expr_binary_token22] = ACTIONS(1603), - [aux_sym_expr_binary_token23] = ACTIONS(1603), - [aux_sym_expr_binary_token24] = ACTIONS(1603), - [aux_sym_expr_binary_token25] = ACTIONS(1603), - [aux_sym_expr_binary_token26] = ACTIONS(1603), - [aux_sym_expr_binary_token27] = ACTIONS(1603), - [aux_sym_expr_binary_token28] = ACTIONS(1603), - [anon_sym_DOT_DOT2] = ACTIONS(1599), - [anon_sym_DOT] = ACTIONS(3007), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1599), - [anon_sym_DOT_DOT_LT] = ACTIONS(1599), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1603), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1603), - [aux_sym__val_number_decimal_token1] = ACTIONS(1599), - [aux_sym__val_number_decimal_token2] = ACTIONS(1603), - [aux_sym__val_number_decimal_token3] = ACTIONS(1603), - [aux_sym__val_number_decimal_token4] = ACTIONS(1603), - [aux_sym__val_number_token1] = ACTIONS(1603), - [aux_sym__val_number_token2] = ACTIONS(1603), - [aux_sym__val_number_token3] = ACTIONS(1603), - [anon_sym_0b] = ACTIONS(1599), - [anon_sym_0o] = ACTIONS(1599), - [anon_sym_0x] = ACTIONS(1599), - [sym_val_date] = ACTIONS(1603), - [anon_sym_DQUOTE] = ACTIONS(1603), - [sym__str_single_quotes] = ACTIONS(1603), - [sym__str_back_ticks] = ACTIONS(1603), - [anon_sym_err_GT] = ACTIONS(1599), - [anon_sym_out_GT] = ACTIONS(1599), - [anon_sym_e_GT] = ACTIONS(1599), - [anon_sym_o_GT] = ACTIONS(1599), - [anon_sym_err_PLUSout_GT] = ACTIONS(1599), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), - [anon_sym_o_PLUSe_GT] = ACTIONS(1599), - [anon_sym_e_PLUSo_GT] = ACTIONS(1599), - [anon_sym_err_GT_GT] = ACTIONS(1603), - [anon_sym_out_GT_GT] = ACTIONS(1603), - [anon_sym_e_GT_GT] = ACTIONS(1603), - [anon_sym_o_GT_GT] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1603), - [aux_sym_unquoted_token1] = ACTIONS(1599), + [aux_sym_shebang_repeat1] = STATE(2586), + [aux_sym_list_body_repeat1] = STATE(742), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [726] = { + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7136), + [sym__spread_list] = STATE(7324), + [sym_val_entry] = STATE(7287), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(726), - [anon_sym_true] = ACTIONS(1521), - [anon_sym_false] = ACTIONS(1521), - [anon_sym_null] = ACTIONS(1521), - [aux_sym_cmd_identifier_token38] = ACTIONS(1521), - [aux_sym_cmd_identifier_token39] = ACTIONS(1521), - [aux_sym_cmd_identifier_token40] = ACTIONS(1521), - [sym__newline] = ACTIONS(1521), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1519), - [anon_sym_COMMA] = ACTIONS(1521), - [anon_sym_DOLLAR] = ACTIONS(1521), - [aux_sym_ctrl_match_token1] = ACTIONS(1521), - [anon_sym_RBRACE] = ACTIONS(1521), - [anon_sym__] = ACTIONS(1519), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_LPAREN2] = ACTIONS(1521), - [aux_sym_expr_binary_token1] = ACTIONS(1521), - [aux_sym_expr_binary_token2] = ACTIONS(1521), - [aux_sym_expr_binary_token3] = ACTIONS(1521), - [aux_sym_expr_binary_token4] = ACTIONS(1521), - [aux_sym_expr_binary_token5] = ACTIONS(1521), - [aux_sym_expr_binary_token6] = ACTIONS(1521), - [aux_sym_expr_binary_token7] = ACTIONS(1521), - [aux_sym_expr_binary_token8] = ACTIONS(1521), - [aux_sym_expr_binary_token9] = ACTIONS(1521), - [aux_sym_expr_binary_token10] = ACTIONS(1521), - [aux_sym_expr_binary_token11] = ACTIONS(1521), - [aux_sym_expr_binary_token12] = ACTIONS(1521), - [aux_sym_expr_binary_token13] = ACTIONS(1521), - [aux_sym_expr_binary_token14] = ACTIONS(1521), - [aux_sym_expr_binary_token15] = ACTIONS(1521), - [aux_sym_expr_binary_token16] = ACTIONS(1521), - [aux_sym_expr_binary_token17] = ACTIONS(1521), - [aux_sym_expr_binary_token18] = ACTIONS(1521), - [aux_sym_expr_binary_token19] = ACTIONS(1521), - [aux_sym_expr_binary_token20] = ACTIONS(1521), - [aux_sym_expr_binary_token21] = ACTIONS(1521), - [aux_sym_expr_binary_token22] = ACTIONS(1521), - [aux_sym_expr_binary_token23] = ACTIONS(1521), - [aux_sym_expr_binary_token24] = ACTIONS(1521), - [aux_sym_expr_binary_token25] = ACTIONS(1521), - [aux_sym_expr_binary_token26] = ACTIONS(1521), - [aux_sym_expr_binary_token27] = ACTIONS(1521), - [aux_sym_expr_binary_token28] = ACTIONS(1521), - [anon_sym_DOT_DOT2] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1519), - [anon_sym_DOT_DOT_LT] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), - [aux_sym__val_number_decimal_token1] = ACTIONS(1519), - [aux_sym__val_number_decimal_token2] = ACTIONS(1521), - [aux_sym__val_number_decimal_token3] = ACTIONS(1521), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(1521), - [aux_sym__val_number_token2] = ACTIONS(1521), - [aux_sym__val_number_token3] = ACTIONS(1521), - [anon_sym_0b] = ACTIONS(1519), - [sym_filesize_unit] = ACTIONS(1521), - [sym_duration_unit] = ACTIONS(1521), - [anon_sym_0o] = ACTIONS(1519), - [anon_sym_0x] = ACTIONS(1519), - [sym_val_date] = ACTIONS(1521), - [anon_sym_DQUOTE] = ACTIONS(1521), - [sym__str_single_quotes] = ACTIONS(1521), - [sym__str_back_ticks] = ACTIONS(1521), - [anon_sym_err_GT] = ACTIONS(1519), - [anon_sym_out_GT] = ACTIONS(1519), - [anon_sym_e_GT] = ACTIONS(1519), - [anon_sym_o_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT] = ACTIONS(1519), - [anon_sym_err_GT_GT] = ACTIONS(1521), - [anon_sym_out_GT_GT] = ACTIONS(1521), - [anon_sym_e_GT_GT] = ACTIONS(1521), - [anon_sym_o_GT_GT] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), - [aux_sym_unquoted_token1] = ACTIONS(1519), - [aux_sym_unquoted_token2] = ACTIONS(1519), + [aux_sym_shebang_repeat1] = STATE(2586), + [aux_sym_list_body_repeat1] = STATE(742), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [727] = { + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7145), + [sym__spread_list] = STATE(7324), + [sym_val_entry] = STATE(7287), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(727), - [anon_sym_true] = ACTIONS(1587), - [anon_sym_false] = ACTIONS(1587), - [anon_sym_null] = ACTIONS(1587), - [aux_sym_cmd_identifier_token38] = ACTIONS(1587), - [aux_sym_cmd_identifier_token39] = ACTIONS(1587), - [aux_sym_cmd_identifier_token40] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_COMMA] = ACTIONS(1587), - [anon_sym_DOLLAR] = ACTIONS(1587), - [aux_sym_ctrl_match_token1] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1587), - [anon_sym__] = ACTIONS(1585), - [anon_sym_DOT_DOT] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1587), - [aux_sym_expr_binary_token1] = ACTIONS(1587), - [aux_sym_expr_binary_token2] = ACTIONS(1587), - [aux_sym_expr_binary_token3] = ACTIONS(1587), - [aux_sym_expr_binary_token4] = ACTIONS(1587), - [aux_sym_expr_binary_token5] = ACTIONS(1587), - [aux_sym_expr_binary_token6] = ACTIONS(1587), - [aux_sym_expr_binary_token7] = ACTIONS(1587), - [aux_sym_expr_binary_token8] = ACTIONS(1587), - [aux_sym_expr_binary_token9] = ACTIONS(1587), - [aux_sym_expr_binary_token10] = ACTIONS(1587), - [aux_sym_expr_binary_token11] = ACTIONS(1587), - [aux_sym_expr_binary_token12] = ACTIONS(1587), - [aux_sym_expr_binary_token13] = ACTIONS(1587), - [aux_sym_expr_binary_token14] = ACTIONS(1587), - [aux_sym_expr_binary_token15] = ACTIONS(1587), - [aux_sym_expr_binary_token16] = ACTIONS(1587), - [aux_sym_expr_binary_token17] = ACTIONS(1587), - [aux_sym_expr_binary_token18] = ACTIONS(1587), - [aux_sym_expr_binary_token19] = ACTIONS(1587), - [aux_sym_expr_binary_token20] = ACTIONS(1587), - [aux_sym_expr_binary_token21] = ACTIONS(1587), - [aux_sym_expr_binary_token22] = ACTIONS(1587), - [aux_sym_expr_binary_token23] = ACTIONS(1587), - [aux_sym_expr_binary_token24] = ACTIONS(1587), - [aux_sym_expr_binary_token25] = ACTIONS(1587), - [aux_sym_expr_binary_token26] = ACTIONS(1587), - [aux_sym_expr_binary_token27] = ACTIONS(1587), - [aux_sym_expr_binary_token28] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1585), - [anon_sym_DOT_DOT_LT] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1587), - [aux_sym__val_number_decimal_token4] = ACTIONS(1587), - [aux_sym__val_number_token1] = ACTIONS(1587), - [aux_sym__val_number_token2] = ACTIONS(1587), - [aux_sym__val_number_token3] = ACTIONS(1587), - [anon_sym_0b] = ACTIONS(1585), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1587), - [anon_sym_0o] = ACTIONS(1585), - [anon_sym_0x] = ACTIONS(1585), - [sym_val_date] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1587), - [sym__str_single_quotes] = ACTIONS(1587), - [sym__str_back_ticks] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1585), - [anon_sym_out_GT] = ACTIONS(1585), - [anon_sym_e_GT] = ACTIONS(1585), - [anon_sym_o_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT] = ACTIONS(1585), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), - [aux_sym_unquoted_token1] = ACTIONS(1585), - [aux_sym_unquoted_token2] = ACTIONS(1585), + [aux_sym_shebang_repeat1] = STATE(2586), + [aux_sym_list_body_repeat1] = STATE(742), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [728] = { + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7152), + [sym__spread_list] = STATE(7324), + [sym_val_entry] = STATE(7287), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(728), - [aux_sym_shebang_repeat1] = STATE(728), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [anon_sym_null] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1757), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [sym__newline] = ACTIONS(3009), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_err_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_GT_PIPE] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_RPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_any] = ACTIONS(1757), - [anon_sym_binary] = ACTIONS(1757), - [anon_sym_block] = ACTIONS(1757), - [anon_sym_bool] = ACTIONS(1757), - [anon_sym_cell_DASHpath] = ACTIONS(1757), - [anon_sym_closure] = ACTIONS(1757), - [anon_sym_cond] = ACTIONS(1757), - [anon_sym_datetime] = ACTIONS(1757), - [anon_sym_directory] = ACTIONS(1757), - [anon_sym_duration] = ACTIONS(1757), - [anon_sym_error] = ACTIONS(1757), - [anon_sym_expr] = ACTIONS(1757), - [anon_sym_float] = ACTIONS(1757), - [anon_sym_decimal] = ACTIONS(1757), - [anon_sym_filesize] = ACTIONS(1757), - [anon_sym_full_DASHcell_DASHpath] = ACTIONS(1757), - [anon_sym_glob] = ACTIONS(1757), - [anon_sym_int] = ACTIONS(1757), - [anon_sym_import_DASHpattern] = ACTIONS(1757), - [anon_sym_keyword] = ACTIONS(1757), - [anon_sym_math] = ACTIONS(1757), - [anon_sym_nothing] = ACTIONS(1757), - [anon_sym_number] = ACTIONS(1757), - [anon_sym_one_DASHof] = ACTIONS(1757), - [anon_sym_operator] = ACTIONS(1757), - [anon_sym_path] = ACTIONS(1757), - [anon_sym_range] = ACTIONS(1757), - [anon_sym_signature] = ACTIONS(1757), - [anon_sym_string] = ACTIONS(1757), - [anon_sym_table] = ACTIONS(1757), - [anon_sym_variable] = ACTIONS(1757), - [anon_sym_var_DASHwith_DASHopt_DASHtype] = ACTIONS(1757), - [anon_sym_record] = ACTIONS(1757), - [anon_sym_list] = ACTIONS(1757), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_else] = ACTIONS(1757), - [aux_sym_ctrl_match_token1] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_catch] = ACTIONS(1757), - [anon_sym_and] = ACTIONS(1757), - [anon_sym_xor] = ACTIONS(1757), - [anon_sym_or] = ACTIONS(1757), - [aux_sym_expr_unary_token1] = ACTIONS(1757), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [anon_sym_0b] = ACTIONS(1755), - [anon_sym_0o] = ACTIONS(1755), - [anon_sym_0x] = ACTIONS(1755), - [sym_val_date] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), + [aux_sym_shebang_repeat1] = STATE(2586), + [aux_sym_list_body_repeat1] = STATE(742), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [729] = { + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7160), + [sym__spread_list] = STATE(7324), + [sym_val_entry] = STATE(7287), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(729), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [anon_sym_null] = ACTIONS(1483), - [aux_sym_cmd_identifier_token38] = ACTIONS(1483), - [aux_sym_cmd_identifier_token39] = ACTIONS(1483), - [aux_sym_cmd_identifier_token40] = ACTIONS(1483), - [sym__newline] = ACTIONS(1483), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_COMMA] = ACTIONS(1483), - [anon_sym_DOLLAR] = ACTIONS(1483), - [aux_sym_ctrl_match_token1] = ACTIONS(1483), - [anon_sym_RBRACE] = ACTIONS(1483), - [anon_sym__] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1481), - [aux_sym_expr_binary_token1] = ACTIONS(1483), - [aux_sym_expr_binary_token2] = ACTIONS(1483), - [aux_sym_expr_binary_token3] = ACTIONS(1483), - [aux_sym_expr_binary_token4] = ACTIONS(1483), - [aux_sym_expr_binary_token5] = ACTIONS(1483), - [aux_sym_expr_binary_token6] = ACTIONS(1483), - [aux_sym_expr_binary_token7] = ACTIONS(1483), - [aux_sym_expr_binary_token8] = ACTIONS(1483), - [aux_sym_expr_binary_token9] = ACTIONS(1483), - [aux_sym_expr_binary_token10] = ACTIONS(1483), - [aux_sym_expr_binary_token11] = ACTIONS(1483), - [aux_sym_expr_binary_token12] = ACTIONS(1483), - [aux_sym_expr_binary_token13] = ACTIONS(1483), - [aux_sym_expr_binary_token14] = ACTIONS(1483), - [aux_sym_expr_binary_token15] = ACTIONS(1483), - [aux_sym_expr_binary_token16] = ACTIONS(1483), - [aux_sym_expr_binary_token17] = ACTIONS(1483), - [aux_sym_expr_binary_token18] = ACTIONS(1483), - [aux_sym_expr_binary_token19] = ACTIONS(1483), - [aux_sym_expr_binary_token20] = ACTIONS(1483), - [aux_sym_expr_binary_token21] = ACTIONS(1483), - [aux_sym_expr_binary_token22] = ACTIONS(1483), - [aux_sym_expr_binary_token23] = ACTIONS(1483), - [aux_sym_expr_binary_token24] = ACTIONS(1483), - [aux_sym_expr_binary_token25] = ACTIONS(1483), - [aux_sym_expr_binary_token26] = ACTIONS(1483), - [aux_sym_expr_binary_token27] = ACTIONS(1483), - [aux_sym_expr_binary_token28] = ACTIONS(1483), - [anon_sym_DOT_DOT2] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), - [anon_sym_DOT_DOT_LT] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), - [aux_sym__immediate_decimal_token1] = ACTIONS(3012), - [aux_sym__immediate_decimal_token2] = ACTIONS(3014), - [aux_sym__val_number_decimal_token1] = ACTIONS(1481), - [aux_sym__val_number_decimal_token2] = ACTIONS(1483), - [aux_sym__val_number_decimal_token3] = ACTIONS(1483), - [aux_sym__val_number_decimal_token4] = ACTIONS(1483), - [aux_sym__val_number_token1] = ACTIONS(1483), - [aux_sym__val_number_token2] = ACTIONS(1483), - [aux_sym__val_number_token3] = ACTIONS(1483), - [anon_sym_0b] = ACTIONS(1481), - [sym_filesize_unit] = ACTIONS(1483), - [sym_duration_unit] = ACTIONS(1483), - [anon_sym_0o] = ACTIONS(1481), - [anon_sym_0x] = ACTIONS(1481), - [sym_val_date] = ACTIONS(1483), - [anon_sym_DQUOTE] = ACTIONS(1483), - [sym__str_single_quotes] = ACTIONS(1483), - [sym__str_back_ticks] = ACTIONS(1483), - [anon_sym_err_GT] = ACTIONS(1481), - [anon_sym_out_GT] = ACTIONS(1481), - [anon_sym_e_GT] = ACTIONS(1481), - [anon_sym_o_GT] = ACTIONS(1481), - [anon_sym_err_PLUSout_GT] = ACTIONS(1481), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), - [anon_sym_o_PLUSe_GT] = ACTIONS(1481), - [anon_sym_e_PLUSo_GT] = ACTIONS(1481), - [anon_sym_err_GT_GT] = ACTIONS(1483), - [anon_sym_out_GT_GT] = ACTIONS(1483), - [anon_sym_e_GT_GT] = ACTIONS(1483), - [anon_sym_o_GT_GT] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), - [aux_sym_unquoted_token1] = ACTIONS(1481), + [aux_sym_shebang_repeat1] = STATE(2586), + [aux_sym_list_body_repeat1] = STATE(742), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [730] = { + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7167), + [sym__spread_list] = STATE(7324), + [sym_val_entry] = STATE(7287), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(730), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [anon_sym_null] = ACTIONS(1483), - [aux_sym_cmd_identifier_token38] = ACTIONS(1483), - [aux_sym_cmd_identifier_token39] = ACTIONS(1483), - [aux_sym_cmd_identifier_token40] = ACTIONS(1483), - [sym__newline] = ACTIONS(1483), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_LPAREN] = ACTIONS(1481), - [anon_sym_COMMA] = ACTIONS(1483), - [anon_sym_DOLLAR] = ACTIONS(1483), - [aux_sym_ctrl_match_token1] = ACTIONS(1483), - [anon_sym_RBRACE] = ACTIONS(1483), - [anon_sym__] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1481), - [anon_sym_LPAREN2] = ACTIONS(1483), - [aux_sym_expr_binary_token1] = ACTIONS(1483), - [aux_sym_expr_binary_token2] = ACTIONS(1483), - [aux_sym_expr_binary_token3] = ACTIONS(1483), - [aux_sym_expr_binary_token4] = ACTIONS(1483), - [aux_sym_expr_binary_token5] = ACTIONS(1483), - [aux_sym_expr_binary_token6] = ACTIONS(1483), - [aux_sym_expr_binary_token7] = ACTIONS(1483), - [aux_sym_expr_binary_token8] = ACTIONS(1483), - [aux_sym_expr_binary_token9] = ACTIONS(1483), - [aux_sym_expr_binary_token10] = ACTIONS(1483), - [aux_sym_expr_binary_token11] = ACTIONS(1483), - [aux_sym_expr_binary_token12] = ACTIONS(1483), - [aux_sym_expr_binary_token13] = ACTIONS(1483), - [aux_sym_expr_binary_token14] = ACTIONS(1483), - [aux_sym_expr_binary_token15] = ACTIONS(1483), - [aux_sym_expr_binary_token16] = ACTIONS(1483), - [aux_sym_expr_binary_token17] = ACTIONS(1483), - [aux_sym_expr_binary_token18] = ACTIONS(1483), - [aux_sym_expr_binary_token19] = ACTIONS(1483), - [aux_sym_expr_binary_token20] = ACTIONS(1483), - [aux_sym_expr_binary_token21] = ACTIONS(1483), - [aux_sym_expr_binary_token22] = ACTIONS(1483), - [aux_sym_expr_binary_token23] = ACTIONS(1483), - [aux_sym_expr_binary_token24] = ACTIONS(1483), - [aux_sym_expr_binary_token25] = ACTIONS(1483), - [aux_sym_expr_binary_token26] = ACTIONS(1483), - [aux_sym_expr_binary_token27] = ACTIONS(1483), - [aux_sym_expr_binary_token28] = ACTIONS(1483), - [anon_sym_DOT_DOT2] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), - [anon_sym_DOT_DOT_LT] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), - [aux_sym__val_number_decimal_token1] = ACTIONS(1481), - [aux_sym__val_number_decimal_token2] = ACTIONS(1483), - [aux_sym__val_number_decimal_token3] = ACTIONS(1483), - [aux_sym__val_number_decimal_token4] = ACTIONS(1483), - [aux_sym__val_number_token1] = ACTIONS(1483), - [aux_sym__val_number_token2] = ACTIONS(1483), - [aux_sym__val_number_token3] = ACTIONS(1483), - [anon_sym_0b] = ACTIONS(1481), - [sym_filesize_unit] = ACTIONS(1483), - [sym_duration_unit] = ACTIONS(1483), - [anon_sym_0o] = ACTIONS(1481), - [anon_sym_0x] = ACTIONS(1481), - [sym_val_date] = ACTIONS(1483), - [anon_sym_DQUOTE] = ACTIONS(1483), - [sym__str_single_quotes] = ACTIONS(1483), - [sym__str_back_ticks] = ACTIONS(1483), - [anon_sym_err_GT] = ACTIONS(1481), - [anon_sym_out_GT] = ACTIONS(1481), - [anon_sym_e_GT] = ACTIONS(1481), - [anon_sym_o_GT] = ACTIONS(1481), - [anon_sym_err_PLUSout_GT] = ACTIONS(1481), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), - [anon_sym_o_PLUSe_GT] = ACTIONS(1481), - [anon_sym_e_PLUSo_GT] = ACTIONS(1481), - [anon_sym_err_GT_GT] = ACTIONS(1483), - [anon_sym_out_GT_GT] = ACTIONS(1483), - [anon_sym_e_GT_GT] = ACTIONS(1483), - [anon_sym_o_GT_GT] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), - [aux_sym_unquoted_token1] = ACTIONS(1481), - [aux_sym_unquoted_token2] = ACTIONS(1481), + [aux_sym_shebang_repeat1] = STATE(2586), + [aux_sym_list_body_repeat1] = STATE(742), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [731] = { + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7176), + [sym__spread_list] = STATE(7324), + [sym_val_entry] = STATE(7287), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(731), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [aux_sym_cmd_identifier_token38] = ACTIONS(1475), - [aux_sym_cmd_identifier_token39] = ACTIONS(1475), - [aux_sym_cmd_identifier_token40] = ACTIONS(1475), - [sym__newline] = ACTIONS(1475), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1475), - [anon_sym_COMMA] = ACTIONS(1475), - [anon_sym_DOLLAR] = ACTIONS(1475), - [aux_sym_ctrl_match_token1] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym__] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1473), - [aux_sym_expr_binary_token1] = ACTIONS(1475), - [aux_sym_expr_binary_token2] = ACTIONS(1475), - [aux_sym_expr_binary_token3] = ACTIONS(1475), - [aux_sym_expr_binary_token4] = ACTIONS(1475), - [aux_sym_expr_binary_token5] = ACTIONS(1475), - [aux_sym_expr_binary_token6] = ACTIONS(1475), - [aux_sym_expr_binary_token7] = ACTIONS(1475), - [aux_sym_expr_binary_token8] = ACTIONS(1475), - [aux_sym_expr_binary_token9] = ACTIONS(1475), - [aux_sym_expr_binary_token10] = ACTIONS(1475), - [aux_sym_expr_binary_token11] = ACTIONS(1475), - [aux_sym_expr_binary_token12] = ACTIONS(1475), - [aux_sym_expr_binary_token13] = ACTIONS(1475), - [aux_sym_expr_binary_token14] = ACTIONS(1475), - [aux_sym_expr_binary_token15] = ACTIONS(1475), - [aux_sym_expr_binary_token16] = ACTIONS(1475), - [aux_sym_expr_binary_token17] = ACTIONS(1475), - [aux_sym_expr_binary_token18] = ACTIONS(1475), - [aux_sym_expr_binary_token19] = ACTIONS(1475), - [aux_sym_expr_binary_token20] = ACTIONS(1475), - [aux_sym_expr_binary_token21] = ACTIONS(1475), - [aux_sym_expr_binary_token22] = ACTIONS(1475), - [aux_sym_expr_binary_token23] = ACTIONS(1475), - [aux_sym_expr_binary_token24] = ACTIONS(1475), - [aux_sym_expr_binary_token25] = ACTIONS(1475), - [aux_sym_expr_binary_token26] = ACTIONS(1475), - [aux_sym_expr_binary_token27] = ACTIONS(1475), - [aux_sym_expr_binary_token28] = ACTIONS(1475), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT] = ACTIONS(3016), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), - [anon_sym_DOT_DOT_LT] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [aux_sym__immediate_decimal_token2] = ACTIONS(3018), - [aux_sym__val_number_decimal_token1] = ACTIONS(1473), - [aux_sym__val_number_decimal_token2] = ACTIONS(1475), - [aux_sym__val_number_decimal_token3] = ACTIONS(1475), - [aux_sym__val_number_decimal_token4] = ACTIONS(1475), - [aux_sym__val_number_token1] = ACTIONS(1475), - [aux_sym__val_number_token2] = ACTIONS(1475), - [aux_sym__val_number_token3] = ACTIONS(1475), - [anon_sym_0b] = ACTIONS(1473), - [sym_filesize_unit] = ACTIONS(1475), - [sym_duration_unit] = ACTIONS(1475), - [anon_sym_0o] = ACTIONS(1473), - [anon_sym_0x] = ACTIONS(1473), - [sym_val_date] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym__str_single_quotes] = ACTIONS(1475), - [sym__str_back_ticks] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1473), - [anon_sym_out_GT] = ACTIONS(1473), - [anon_sym_e_GT] = ACTIONS(1473), - [anon_sym_o_GT] = ACTIONS(1473), - [anon_sym_err_PLUSout_GT] = ACTIONS(1473), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), - [anon_sym_o_PLUSe_GT] = ACTIONS(1473), - [anon_sym_e_PLUSo_GT] = ACTIONS(1473), - [anon_sym_err_GT_GT] = ACTIONS(1475), - [anon_sym_out_GT_GT] = ACTIONS(1475), - [anon_sym_e_GT_GT] = ACTIONS(1475), - [anon_sym_o_GT_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), - [aux_sym_unquoted_token1] = ACTIONS(1473), + [aux_sym_shebang_repeat1] = STATE(2586), + [aux_sym_list_body_repeat1] = STATE(742), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [732] = { + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7183), + [sym__spread_list] = STATE(7324), + [sym_val_entry] = STATE(7287), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(732), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [aux_sym_cmd_identifier_token38] = ACTIONS(1475), - [aux_sym_cmd_identifier_token39] = ACTIONS(1475), - [aux_sym_cmd_identifier_token40] = ACTIONS(1475), - [sym__newline] = ACTIONS(1475), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1473), - [anon_sym_COMMA] = ACTIONS(1475), - [anon_sym_DOLLAR] = ACTIONS(1475), - [aux_sym_ctrl_match_token1] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym__] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1473), - [anon_sym_LPAREN2] = ACTIONS(1475), - [aux_sym_expr_binary_token1] = ACTIONS(1475), - [aux_sym_expr_binary_token2] = ACTIONS(1475), - [aux_sym_expr_binary_token3] = ACTIONS(1475), - [aux_sym_expr_binary_token4] = ACTIONS(1475), - [aux_sym_expr_binary_token5] = ACTIONS(1475), - [aux_sym_expr_binary_token6] = ACTIONS(1475), - [aux_sym_expr_binary_token7] = ACTIONS(1475), - [aux_sym_expr_binary_token8] = ACTIONS(1475), - [aux_sym_expr_binary_token9] = ACTIONS(1475), - [aux_sym_expr_binary_token10] = ACTIONS(1475), - [aux_sym_expr_binary_token11] = ACTIONS(1475), - [aux_sym_expr_binary_token12] = ACTIONS(1475), - [aux_sym_expr_binary_token13] = ACTIONS(1475), - [aux_sym_expr_binary_token14] = ACTIONS(1475), - [aux_sym_expr_binary_token15] = ACTIONS(1475), - [aux_sym_expr_binary_token16] = ACTIONS(1475), - [aux_sym_expr_binary_token17] = ACTIONS(1475), - [aux_sym_expr_binary_token18] = ACTIONS(1475), - [aux_sym_expr_binary_token19] = ACTIONS(1475), - [aux_sym_expr_binary_token20] = ACTIONS(1475), - [aux_sym_expr_binary_token21] = ACTIONS(1475), - [aux_sym_expr_binary_token22] = ACTIONS(1475), - [aux_sym_expr_binary_token23] = ACTIONS(1475), - [aux_sym_expr_binary_token24] = ACTIONS(1475), - [aux_sym_expr_binary_token25] = ACTIONS(1475), - [aux_sym_expr_binary_token26] = ACTIONS(1475), - [aux_sym_expr_binary_token27] = ACTIONS(1475), - [aux_sym_expr_binary_token28] = ACTIONS(1475), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), - [anon_sym_DOT_DOT_LT] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [aux_sym__val_number_decimal_token1] = ACTIONS(1473), - [aux_sym__val_number_decimal_token2] = ACTIONS(1475), - [aux_sym__val_number_decimal_token3] = ACTIONS(1475), - [aux_sym__val_number_decimal_token4] = ACTIONS(1475), - [aux_sym__val_number_token1] = ACTIONS(1475), - [aux_sym__val_number_token2] = ACTIONS(1475), - [aux_sym__val_number_token3] = ACTIONS(1475), - [anon_sym_0b] = ACTIONS(1473), - [sym_filesize_unit] = ACTIONS(1475), - [sym_duration_unit] = ACTIONS(1475), - [anon_sym_0o] = ACTIONS(1473), - [anon_sym_0x] = ACTIONS(1473), - [sym_val_date] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym__str_single_quotes] = ACTIONS(1475), - [sym__str_back_ticks] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1473), - [anon_sym_out_GT] = ACTIONS(1473), - [anon_sym_e_GT] = ACTIONS(1473), - [anon_sym_o_GT] = ACTIONS(1473), - [anon_sym_err_PLUSout_GT] = ACTIONS(1473), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), - [anon_sym_o_PLUSe_GT] = ACTIONS(1473), - [anon_sym_e_PLUSo_GT] = ACTIONS(1473), - [anon_sym_err_GT_GT] = ACTIONS(1475), - [anon_sym_out_GT_GT] = ACTIONS(1475), - [anon_sym_e_GT_GT] = ACTIONS(1475), - [anon_sym_o_GT_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), - [aux_sym_unquoted_token1] = ACTIONS(1473), - [aux_sym_unquoted_token2] = ACTIONS(1473), + [aux_sym_shebang_repeat1] = STATE(2586), + [aux_sym_list_body_repeat1] = STATE(742), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [733] = { - [sym_cell_path] = STATE(963), - [sym_path] = STATE(784), + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7246), + [sym__spread_list] = STATE(7324), + [sym_val_entry] = STATE(7287), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(733), - [aux_sym_cell_path_repeat1] = STATE(761), - [anon_sym_true] = ACTIONS(947), - [anon_sym_false] = ACTIONS(947), - [anon_sym_null] = ACTIONS(947), - [aux_sym_cmd_identifier_token38] = ACTIONS(947), - [aux_sym_cmd_identifier_token39] = ACTIONS(947), - [aux_sym_cmd_identifier_token40] = ACTIONS(947), - [sym__newline] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_COMMA] = ACTIONS(947), - [anon_sym_DOLLAR] = ACTIONS(947), - [aux_sym_ctrl_match_token1] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(947), - [anon_sym__] = ACTIONS(945), - [anon_sym_DOT_DOT] = ACTIONS(945), - [aux_sym_expr_binary_token1] = ACTIONS(947), - [aux_sym_expr_binary_token2] = ACTIONS(947), - [aux_sym_expr_binary_token3] = ACTIONS(947), - [aux_sym_expr_binary_token4] = ACTIONS(947), - [aux_sym_expr_binary_token5] = ACTIONS(947), - [aux_sym_expr_binary_token6] = ACTIONS(947), - [aux_sym_expr_binary_token7] = ACTIONS(947), - [aux_sym_expr_binary_token8] = ACTIONS(947), - [aux_sym_expr_binary_token9] = ACTIONS(947), - [aux_sym_expr_binary_token10] = ACTIONS(947), - [aux_sym_expr_binary_token11] = ACTIONS(947), - [aux_sym_expr_binary_token12] = ACTIONS(947), - [aux_sym_expr_binary_token13] = ACTIONS(947), - [aux_sym_expr_binary_token14] = ACTIONS(947), - [aux_sym_expr_binary_token15] = ACTIONS(947), - [aux_sym_expr_binary_token16] = ACTIONS(947), - [aux_sym_expr_binary_token17] = ACTIONS(947), - [aux_sym_expr_binary_token18] = ACTIONS(947), - [aux_sym_expr_binary_token19] = ACTIONS(947), - [aux_sym_expr_binary_token20] = ACTIONS(947), - [aux_sym_expr_binary_token21] = ACTIONS(947), - [aux_sym_expr_binary_token22] = ACTIONS(947), - [aux_sym_expr_binary_token23] = ACTIONS(947), - [aux_sym_expr_binary_token24] = ACTIONS(947), - [aux_sym_expr_binary_token25] = ACTIONS(947), - [aux_sym_expr_binary_token26] = ACTIONS(947), - [aux_sym_expr_binary_token27] = ACTIONS(947), - [aux_sym_expr_binary_token28] = ACTIONS(947), - [anon_sym_DOT_DOT2] = ACTIONS(945), - [anon_sym_DOT] = ACTIONS(3007), - [anon_sym_DOT_DOT_EQ] = ACTIONS(945), - [anon_sym_DOT_DOT_LT] = ACTIONS(945), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(947), - [anon_sym_DOT_DOT_LT2] = ACTIONS(947), - [aux_sym__val_number_decimal_token1] = ACTIONS(945), - [aux_sym__val_number_decimal_token2] = ACTIONS(947), - [aux_sym__val_number_decimal_token3] = ACTIONS(947), - [aux_sym__val_number_decimal_token4] = ACTIONS(947), - [aux_sym__val_number_token1] = ACTIONS(947), - [aux_sym__val_number_token2] = ACTIONS(947), - [aux_sym__val_number_token3] = ACTIONS(947), - [anon_sym_0b] = ACTIONS(945), - [anon_sym_0o] = ACTIONS(945), - [anon_sym_0x] = ACTIONS(945), - [sym_val_date] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(947), - [sym__str_single_quotes] = ACTIONS(947), - [sym__str_back_ticks] = ACTIONS(947), - [anon_sym_err_GT] = ACTIONS(945), - [anon_sym_out_GT] = ACTIONS(945), - [anon_sym_e_GT] = ACTIONS(945), - [anon_sym_o_GT] = ACTIONS(945), - [anon_sym_err_PLUSout_GT] = ACTIONS(945), - [anon_sym_out_PLUSerr_GT] = ACTIONS(945), - [anon_sym_o_PLUSe_GT] = ACTIONS(945), - [anon_sym_e_PLUSo_GT] = ACTIONS(945), - [anon_sym_err_GT_GT] = ACTIONS(947), - [anon_sym_out_GT_GT] = ACTIONS(947), - [anon_sym_e_GT_GT] = ACTIONS(947), - [anon_sym_o_GT_GT] = ACTIONS(947), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(947), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(947), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(947), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(947), - [aux_sym_unquoted_token1] = ACTIONS(945), + [aux_sym_shebang_repeat1] = STATE(2586), + [aux_sym_list_body_repeat1] = STATE(742), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [734] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7435), - [sym__spread_list] = STATE(7624), - [sym_val_entry] = STATE(7015), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7198), + [sym__spread_list] = STATE(7324), + [sym_val_entry] = STATE(7287), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(734), - [aux_sym_shebang_repeat1] = STATE(2777), - [aux_sym_list_body_repeat1] = STATE(797), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), + [aux_sym_shebang_repeat1] = STATE(2586), + [aux_sym_list_body_repeat1] = STATE(742), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [735] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7502), - [sym__spread_list] = STATE(7624), - [sym_val_entry] = STATE(7015), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7206), + [sym__spread_list] = STATE(7324), + [sym_val_entry] = STATE(7287), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(735), - [aux_sym_shebang_repeat1] = STATE(2777), - [aux_sym_list_body_repeat1] = STATE(797), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), + [aux_sym_shebang_repeat1] = STATE(2586), + [aux_sym_list_body_repeat1] = STATE(742), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [736] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(517), - [sym__spread_list] = STATE(7624), - [sym_val_entry] = STATE(7015), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7213), + [sym__spread_list] = STATE(7324), + [sym_val_entry] = STATE(7287), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(736), - [aux_sym_shebang_repeat1] = STATE(2777), - [aux_sym_list_body_repeat1] = STATE(797), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), + [aux_sym_shebang_repeat1] = STATE(2586), + [aux_sym_list_body_repeat1] = STATE(742), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [737] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7014), - [sym__spread_list] = STATE(7624), - [sym_val_entry] = STATE(7015), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7221), + [sym__spread_list] = STATE(7324), + [sym_val_entry] = STATE(7287), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(737), - [aux_sym_shebang_repeat1] = STATE(2777), - [aux_sym_list_body_repeat1] = STATE(797), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), + [aux_sym_shebang_repeat1] = STATE(2586), + [aux_sym_list_body_repeat1] = STATE(742), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [738] = { + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7226), + [sym__spread_list] = STATE(7324), + [sym_val_entry] = STATE(7287), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(738), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_null] = ACTIONS(1277), - [aux_sym_cmd_identifier_token38] = ACTIONS(1277), - [aux_sym_cmd_identifier_token39] = ACTIONS(1277), - [aux_sym_cmd_identifier_token40] = ACTIONS(1277), - [sym__newline] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1277), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_err_GT_PIPE] = ACTIONS(1277), - [anon_sym_out_GT_PIPE] = ACTIONS(1277), - [anon_sym_e_GT_PIPE] = ACTIONS(1277), - [anon_sym_o_GT_PIPE] = ACTIONS(1277), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1277), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1277), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1277), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1277), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(1277), - [anon_sym_RPAREN] = ACTIONS(1277), - [anon_sym_DOLLAR] = ACTIONS(1273), - [anon_sym_any] = ACTIONS(1277), - [anon_sym_binary] = ACTIONS(1277), - [anon_sym_block] = ACTIONS(1277), - [anon_sym_bool] = ACTIONS(1277), - [anon_sym_cell_DASHpath] = ACTIONS(1277), - [anon_sym_closure] = ACTIONS(1277), - [anon_sym_cond] = ACTIONS(1277), - [anon_sym_datetime] = ACTIONS(1277), - [anon_sym_directory] = ACTIONS(1277), - [anon_sym_duration] = ACTIONS(1277), - [anon_sym_error] = ACTIONS(1277), - [anon_sym_expr] = ACTIONS(1277), - [anon_sym_float] = ACTIONS(1277), - [anon_sym_decimal] = ACTIONS(1277), - [anon_sym_filesize] = ACTIONS(1277), - [anon_sym_full_DASHcell_DASHpath] = ACTIONS(1277), - [anon_sym_glob] = ACTIONS(1277), - [anon_sym_int] = ACTIONS(1277), - [anon_sym_import_DASHpattern] = ACTIONS(1277), - [anon_sym_keyword] = ACTIONS(1277), - [anon_sym_math] = ACTIONS(1277), - [anon_sym_nothing] = ACTIONS(1277), - [anon_sym_number] = ACTIONS(1277), - [anon_sym_one_DASHof] = ACTIONS(1277), - [anon_sym_operator] = ACTIONS(1277), - [anon_sym_path] = ACTIONS(1277), - [anon_sym_range] = ACTIONS(1277), - [anon_sym_signature] = ACTIONS(1277), - [anon_sym_string] = ACTIONS(1277), - [anon_sym_table] = ACTIONS(1277), - [anon_sym_variable] = ACTIONS(1277), - [anon_sym_var_DASHwith_DASHopt_DASHtype] = ACTIONS(1277), - [anon_sym_record] = ACTIONS(1277), - [anon_sym_list] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_else] = ACTIONS(1277), - [aux_sym_ctrl_match_token1] = ACTIONS(1277), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_catch] = ACTIONS(1277), - [anon_sym_and] = ACTIONS(1277), - [anon_sym_xor] = ACTIONS(1277), - [anon_sym_or] = ACTIONS(1277), - [aux_sym_expr_unary_token1] = ACTIONS(1277), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_DOT_DOT_LT] = ACTIONS(1277), - [aux_sym__val_number_decimal_token1] = ACTIONS(1273), - [aux_sym__val_number_decimal_token2] = ACTIONS(1277), - [aux_sym__val_number_decimal_token3] = ACTIONS(1277), - [aux_sym__val_number_decimal_token4] = ACTIONS(1277), - [aux_sym__val_number_token1] = ACTIONS(1277), - [aux_sym__val_number_token2] = ACTIONS(1277), - [aux_sym__val_number_token3] = ACTIONS(1277), - [anon_sym_0b] = ACTIONS(1273), - [anon_sym_0o] = ACTIONS(1273), - [anon_sym_0x] = ACTIONS(1273), - [sym_val_date] = ACTIONS(1277), - [anon_sym_DQUOTE] = ACTIONS(1277), - [sym__str_single_quotes] = ACTIONS(1277), - [sym__str_back_ticks] = ACTIONS(1277), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1277), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1277), + [aux_sym_shebang_repeat1] = STATE(2586), + [aux_sym_list_body_repeat1] = STATE(742), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [739] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7489), - [sym__spread_list] = STATE(7624), - [sym_val_entry] = STATE(7015), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7233), + [sym__spread_list] = STATE(7324), + [sym_val_entry] = STATE(7287), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(739), - [aux_sym_shebang_repeat1] = STATE(2777), - [aux_sym_list_body_repeat1] = STATE(797), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), + [aux_sym_shebang_repeat1] = STATE(2586), + [aux_sym_list_body_repeat1] = STATE(742), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [740] = { - [sym_path] = STATE(784), + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(7240), + [sym__spread_list] = STATE(7324), + [sym_val_entry] = STATE(7287), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(740), - [aux_sym_cell_path_repeat1] = STATE(740), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_null] = ACTIONS(957), - [aux_sym_cmd_identifier_token38] = ACTIONS(957), - [aux_sym_cmd_identifier_token39] = ACTIONS(957), - [aux_sym_cmd_identifier_token40] = ACTIONS(957), - [sym__newline] = ACTIONS(957), - [anon_sym_LBRACK] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(957), - [anon_sym_COMMA] = ACTIONS(957), - [anon_sym_DOLLAR] = ACTIONS(957), - [aux_sym_ctrl_match_token1] = ACTIONS(957), - [anon_sym_RBRACE] = ACTIONS(957), - [anon_sym__] = ACTIONS(955), - [anon_sym_DOT_DOT] = ACTIONS(955), - [aux_sym_expr_binary_token1] = ACTIONS(957), - [aux_sym_expr_binary_token2] = ACTIONS(957), - [aux_sym_expr_binary_token3] = ACTIONS(957), - [aux_sym_expr_binary_token4] = ACTIONS(957), - [aux_sym_expr_binary_token5] = ACTIONS(957), - [aux_sym_expr_binary_token6] = ACTIONS(957), - [aux_sym_expr_binary_token7] = ACTIONS(957), - [aux_sym_expr_binary_token8] = ACTIONS(957), - [aux_sym_expr_binary_token9] = ACTIONS(957), - [aux_sym_expr_binary_token10] = ACTIONS(957), - [aux_sym_expr_binary_token11] = ACTIONS(957), - [aux_sym_expr_binary_token12] = ACTIONS(957), - [aux_sym_expr_binary_token13] = ACTIONS(957), - [aux_sym_expr_binary_token14] = ACTIONS(957), - [aux_sym_expr_binary_token15] = ACTIONS(957), - [aux_sym_expr_binary_token16] = ACTIONS(957), - [aux_sym_expr_binary_token17] = ACTIONS(957), - [aux_sym_expr_binary_token18] = ACTIONS(957), - [aux_sym_expr_binary_token19] = ACTIONS(957), - [aux_sym_expr_binary_token20] = ACTIONS(957), - [aux_sym_expr_binary_token21] = ACTIONS(957), - [aux_sym_expr_binary_token22] = ACTIONS(957), - [aux_sym_expr_binary_token23] = ACTIONS(957), - [aux_sym_expr_binary_token24] = ACTIONS(957), - [aux_sym_expr_binary_token25] = ACTIONS(957), - [aux_sym_expr_binary_token26] = ACTIONS(957), - [aux_sym_expr_binary_token27] = ACTIONS(957), - [aux_sym_expr_binary_token28] = ACTIONS(957), - [anon_sym_DOT_DOT2] = ACTIONS(955), - [anon_sym_DOT] = ACTIONS(3020), - [anon_sym_DOT_DOT_EQ] = ACTIONS(955), - [anon_sym_DOT_DOT_LT] = ACTIONS(955), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(957), - [anon_sym_DOT_DOT_LT2] = ACTIONS(957), - [aux_sym__val_number_decimal_token1] = ACTIONS(955), - [aux_sym__val_number_decimal_token2] = ACTIONS(957), - [aux_sym__val_number_decimal_token3] = ACTIONS(957), - [aux_sym__val_number_decimal_token4] = ACTIONS(957), - [aux_sym__val_number_token1] = ACTIONS(957), - [aux_sym__val_number_token2] = ACTIONS(957), - [aux_sym__val_number_token3] = ACTIONS(957), - [anon_sym_0b] = ACTIONS(955), - [anon_sym_0o] = ACTIONS(955), - [anon_sym_0x] = ACTIONS(955), - [sym_val_date] = ACTIONS(957), - [anon_sym_DQUOTE] = ACTIONS(957), - [sym__str_single_quotes] = ACTIONS(957), - [sym__str_back_ticks] = ACTIONS(957), - [anon_sym_err_GT] = ACTIONS(955), - [anon_sym_out_GT] = ACTIONS(955), - [anon_sym_e_GT] = ACTIONS(955), - [anon_sym_o_GT] = ACTIONS(955), - [anon_sym_err_PLUSout_GT] = ACTIONS(955), - [anon_sym_out_PLUSerr_GT] = ACTIONS(955), - [anon_sym_o_PLUSe_GT] = ACTIONS(955), - [anon_sym_e_PLUSo_GT] = ACTIONS(955), - [anon_sym_err_GT_GT] = ACTIONS(957), - [anon_sym_out_GT_GT] = ACTIONS(957), - [anon_sym_e_GT_GT] = ACTIONS(957), - [anon_sym_o_GT_GT] = ACTIONS(957), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(957), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(957), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(957), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(957), - [aux_sym_unquoted_token1] = ACTIONS(955), + [aux_sym_shebang_repeat1] = STATE(2586), + [aux_sym_list_body_repeat1] = STATE(742), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [741] = { + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(6275), + [sym__spread_list] = STATE(7324), + [sym_val_entry] = STATE(7409), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(741), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [aux_sym_cmd_identifier_token38] = ACTIONS(1475), - [aux_sym_cmd_identifier_token39] = ACTIONS(1475), - [aux_sym_cmd_identifier_token40] = ACTIONS(1475), - [sym__newline] = ACTIONS(1475), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1475), - [anon_sym_COMMA] = ACTIONS(1475), - [anon_sym_DOLLAR] = ACTIONS(1475), - [aux_sym_ctrl_match_token1] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym__] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1473), - [aux_sym_expr_binary_token1] = ACTIONS(1475), - [aux_sym_expr_binary_token2] = ACTIONS(1475), - [aux_sym_expr_binary_token3] = ACTIONS(1475), - [aux_sym_expr_binary_token4] = ACTIONS(1475), - [aux_sym_expr_binary_token5] = ACTIONS(1475), - [aux_sym_expr_binary_token6] = ACTIONS(1475), - [aux_sym_expr_binary_token7] = ACTIONS(1475), - [aux_sym_expr_binary_token8] = ACTIONS(1475), - [aux_sym_expr_binary_token9] = ACTIONS(1475), - [aux_sym_expr_binary_token10] = ACTIONS(1475), - [aux_sym_expr_binary_token11] = ACTIONS(1475), - [aux_sym_expr_binary_token12] = ACTIONS(1475), - [aux_sym_expr_binary_token13] = ACTIONS(1475), - [aux_sym_expr_binary_token14] = ACTIONS(1475), - [aux_sym_expr_binary_token15] = ACTIONS(1475), - [aux_sym_expr_binary_token16] = ACTIONS(1475), - [aux_sym_expr_binary_token17] = ACTIONS(1475), - [aux_sym_expr_binary_token18] = ACTIONS(1475), - [aux_sym_expr_binary_token19] = ACTIONS(1475), - [aux_sym_expr_binary_token20] = ACTIONS(1475), - [aux_sym_expr_binary_token21] = ACTIONS(1475), - [aux_sym_expr_binary_token22] = ACTIONS(1475), - [aux_sym_expr_binary_token23] = ACTIONS(1475), - [aux_sym_expr_binary_token24] = ACTIONS(1475), - [aux_sym_expr_binary_token25] = ACTIONS(1475), - [aux_sym_expr_binary_token26] = ACTIONS(1475), - [aux_sym_expr_binary_token27] = ACTIONS(1475), - [aux_sym_expr_binary_token28] = ACTIONS(1475), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), - [anon_sym_DOT_DOT_LT] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [aux_sym__immediate_decimal_token2] = ACTIONS(3018), - [aux_sym__val_number_decimal_token1] = ACTIONS(1473), - [aux_sym__val_number_decimal_token2] = ACTIONS(1475), - [aux_sym__val_number_decimal_token3] = ACTIONS(1475), - [aux_sym__val_number_decimal_token4] = ACTIONS(1475), - [aux_sym__val_number_token1] = ACTIONS(1475), - [aux_sym__val_number_token2] = ACTIONS(1475), - [aux_sym__val_number_token3] = ACTIONS(1475), - [anon_sym_0b] = ACTIONS(1473), - [sym_filesize_unit] = ACTIONS(1475), - [sym_duration_unit] = ACTIONS(1475), - [anon_sym_0o] = ACTIONS(1473), - [anon_sym_0x] = ACTIONS(1473), - [sym_val_date] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym__str_single_quotes] = ACTIONS(1475), - [sym__str_back_ticks] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1473), - [anon_sym_out_GT] = ACTIONS(1473), - [anon_sym_e_GT] = ACTIONS(1473), - [anon_sym_o_GT] = ACTIONS(1473), - [anon_sym_err_PLUSout_GT] = ACTIONS(1473), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), - [anon_sym_o_PLUSe_GT] = ACTIONS(1473), - [anon_sym_e_PLUSo_GT] = ACTIONS(1473), - [anon_sym_err_GT_GT] = ACTIONS(1475), - [anon_sym_out_GT_GT] = ACTIONS(1475), - [anon_sym_e_GT_GT] = ACTIONS(1475), - [anon_sym_o_GT_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), - [aux_sym_unquoted_token1] = ACTIONS(1473), + [aux_sym_list_body_repeat1] = STATE(741), + [anon_sym_true] = ACTIONS(3056), + [anon_sym_false] = ACTIONS(3056), + [anon_sym_null] = ACTIONS(3059), + [aux_sym_cmd_identifier_token38] = ACTIONS(3062), + [aux_sym_cmd_identifier_token39] = ACTIONS(3062), + [aux_sym_cmd_identifier_token40] = ACTIONS(3062), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3068), + [anon_sym_DOLLAR] = ACTIONS(3071), + [aux_sym_ctrl_match_token1] = ACTIONS(3074), + [anon_sym_DOT_DOT] = ACTIONS(3077), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(3080), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3083), + [anon_sym_DOT_DOT_LT] = ACTIONS(3083), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(3086), + [aux_sym__val_number_decimal_token1] = ACTIONS(3089), + [aux_sym__val_number_decimal_token2] = ACTIONS(3092), + [aux_sym__val_number_decimal_token3] = ACTIONS(3095), + [aux_sym__val_number_decimal_token4] = ACTIONS(3098), + [aux_sym__val_number_token1] = ACTIONS(3101), + [aux_sym__val_number_token2] = ACTIONS(3101), + [aux_sym__val_number_token3] = ACTIONS(3101), + [anon_sym_0b] = ACTIONS(3104), + [anon_sym_0o] = ACTIONS(3107), + [anon_sym_0x] = ACTIONS(3107), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3113), + [sym__str_single_quotes] = ACTIONS(3116), + [sym__str_back_ticks] = ACTIONS(3116), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3119), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3122), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(3125), + [anon_sym_err_GT] = ACTIONS(3128), + [anon_sym_out_GT] = ACTIONS(3128), + [anon_sym_e_GT] = ACTIONS(3128), + [anon_sym_o_GT] = ACTIONS(3128), + [anon_sym_err_PLUSout_GT] = ACTIONS(3128), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3128), + [anon_sym_o_PLUSe_GT] = ACTIONS(3128), + [anon_sym_e_PLUSo_GT] = ACTIONS(3128), + [anon_sym_err_GT_GT] = ACTIONS(3131), + [anon_sym_out_GT_GT] = ACTIONS(3131), + [anon_sym_e_GT_GT] = ACTIONS(3131), + [anon_sym_o_GT_GT] = ACTIONS(3131), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3131), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3131), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3131), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3131), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3134), [anon_sym_POUND] = ACTIONS(247), }, [742] = { + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(6275), + [sym__spread_list] = STATE(7324), + [sym_val_entry] = STATE(6924), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(742), - [anon_sym_true] = ACTIONS(1521), - [anon_sym_false] = ACTIONS(1521), - [anon_sym_null] = ACTIONS(1521), - [aux_sym_cmd_identifier_token38] = ACTIONS(1521), - [aux_sym_cmd_identifier_token39] = ACTIONS(1521), - [aux_sym_cmd_identifier_token40] = ACTIONS(1521), - [sym__newline] = ACTIONS(1521), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_COMMA] = ACTIONS(1521), - [anon_sym_DOLLAR] = ACTIONS(1521), - [aux_sym_ctrl_match_token1] = ACTIONS(1521), - [anon_sym_RBRACE] = ACTIONS(1521), - [anon_sym__] = ACTIONS(1519), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [aux_sym_expr_binary_token1] = ACTIONS(1521), - [aux_sym_expr_binary_token2] = ACTIONS(1521), - [aux_sym_expr_binary_token3] = ACTIONS(1521), - [aux_sym_expr_binary_token4] = ACTIONS(1521), - [aux_sym_expr_binary_token5] = ACTIONS(1521), - [aux_sym_expr_binary_token6] = ACTIONS(1521), - [aux_sym_expr_binary_token7] = ACTIONS(1521), - [aux_sym_expr_binary_token8] = ACTIONS(1521), - [aux_sym_expr_binary_token9] = ACTIONS(1521), - [aux_sym_expr_binary_token10] = ACTIONS(1521), - [aux_sym_expr_binary_token11] = ACTIONS(1521), - [aux_sym_expr_binary_token12] = ACTIONS(1521), - [aux_sym_expr_binary_token13] = ACTIONS(1521), - [aux_sym_expr_binary_token14] = ACTIONS(1521), - [aux_sym_expr_binary_token15] = ACTIONS(1521), - [aux_sym_expr_binary_token16] = ACTIONS(1521), - [aux_sym_expr_binary_token17] = ACTIONS(1521), - [aux_sym_expr_binary_token18] = ACTIONS(1521), - [aux_sym_expr_binary_token19] = ACTIONS(1521), - [aux_sym_expr_binary_token20] = ACTIONS(1521), - [aux_sym_expr_binary_token21] = ACTIONS(1521), - [aux_sym_expr_binary_token22] = ACTIONS(1521), - [aux_sym_expr_binary_token23] = ACTIONS(1521), - [aux_sym_expr_binary_token24] = ACTIONS(1521), - [aux_sym_expr_binary_token25] = ACTIONS(1521), - [aux_sym_expr_binary_token26] = ACTIONS(1521), - [aux_sym_expr_binary_token27] = ACTIONS(1521), - [aux_sym_expr_binary_token28] = ACTIONS(1521), - [anon_sym_DOT_DOT2] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1519), - [anon_sym_DOT_DOT_LT] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), - [aux_sym__immediate_decimal_token2] = ACTIONS(3023), - [aux_sym__val_number_decimal_token1] = ACTIONS(1519), - [aux_sym__val_number_decimal_token2] = ACTIONS(1521), - [aux_sym__val_number_decimal_token3] = ACTIONS(1521), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(1521), - [aux_sym__val_number_token2] = ACTIONS(1521), - [aux_sym__val_number_token3] = ACTIONS(1521), - [anon_sym_0b] = ACTIONS(1519), - [sym_filesize_unit] = ACTIONS(1521), - [sym_duration_unit] = ACTIONS(1521), - [anon_sym_0o] = ACTIONS(1519), - [anon_sym_0x] = ACTIONS(1519), - [sym_val_date] = ACTIONS(1521), - [anon_sym_DQUOTE] = ACTIONS(1521), - [sym__str_single_quotes] = ACTIONS(1521), - [sym__str_back_ticks] = ACTIONS(1521), - [anon_sym_err_GT] = ACTIONS(1519), - [anon_sym_out_GT] = ACTIONS(1519), - [anon_sym_e_GT] = ACTIONS(1519), - [anon_sym_o_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT] = ACTIONS(1519), - [anon_sym_err_GT_GT] = ACTIONS(1521), - [anon_sym_out_GT_GT] = ACTIONS(1521), - [anon_sym_e_GT_GT] = ACTIONS(1521), - [anon_sym_o_GT_GT] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), - [aux_sym_unquoted_token1] = ACTIONS(1519), + [aux_sym_list_body_repeat1] = STATE(741), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [743] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7496), - [sym__spread_list] = STATE(7624), - [sym_val_entry] = STATE(7015), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_parenthesized] = STATE(6013), + [sym__spread_parenthesized] = STATE(7324), + [sym_val_range] = STATE(7325), + [sym__val_range] = STATE(7600), + [sym__val_range_with_end] = STATE(7326), + [sym__value] = STATE(7325), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6298), + [sym__spread_variable] = STATE(7327), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5236), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(6275), + [sym__spread_list] = STATE(7324), + [sym_val_entry] = STATE(6673), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_list] = STATE(6559), + [sym__unquoted_in_list_with_expr] = STATE(7325), + [sym__unquoted_anonymous_prefix] = STATE(6995), [sym_comment] = STATE(743), - [aux_sym_shebang_repeat1] = STATE(2777), - [aux_sym_list_body_repeat1] = STATE(797), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), + [aux_sym_list_body_repeat1] = STATE(741), + [anon_sym_true] = ACTIONS(2974), + [anon_sym_false] = ACTIONS(2974), + [anon_sym_null] = ACTIONS(2976), + [aux_sym_cmd_identifier_token38] = ACTIONS(2978), + [aux_sym_cmd_identifier_token39] = ACTIONS(2978), + [aux_sym_cmd_identifier_token40] = ACTIONS(2978), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(2990), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2992), + [anon_sym_DOT_DOT_LT] = ACTIONS(2992), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym__val_number_decimal_token1] = ACTIONS(2994), + [aux_sym__val_number_decimal_token2] = ACTIONS(2996), + [aux_sym__val_number_decimal_token3] = ACTIONS(2998), + [aux_sym__val_number_decimal_token4] = ACTIONS(3000), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2854), [anon_sym_POUND] = ACTIONS(247), }, [744] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7301), - [sym__spread_list] = STATE(7624), - [sym_val_entry] = STATE(7015), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3156), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1758), + [sym__unquoted_with_expr] = STATE(2130), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(744), - [aux_sym_shebang_repeat1] = STATE(2777), - [aux_sym_list_body_repeat1] = STATE(797), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym_shebang_repeat1] = STATE(819), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [745] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7361), - [sym__spread_list] = STATE(7624), - [sym_val_entry] = STATE(7015), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3550), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1903), + [sym__unquoted_with_expr] = STATE(2122), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(745), - [aux_sym_shebang_repeat1] = STATE(2777), - [aux_sym_list_body_repeat1] = STATE(797), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym_shebang_repeat1] = STATE(759), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [746] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7375), - [sym__spread_list] = STATE(7624), - [sym_val_entry] = STATE(7015), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3551), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1905), + [sym__unquoted_with_expr] = STATE(2125), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(746), - [aux_sym_shebang_repeat1] = STATE(2777), - [aux_sym_list_body_repeat1] = STATE(797), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym_shebang_repeat1] = STATE(760), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [747] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7382), - [sym__spread_list] = STATE(7624), - [sym_val_entry] = STATE(7015), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3552), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1907), + [sym__unquoted_with_expr] = STATE(2129), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(747), - [aux_sym_shebang_repeat1] = STATE(2777), - [aux_sym_list_body_repeat1] = STATE(797), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym_shebang_repeat1] = STATE(761), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [748] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7389), - [sym__spread_list] = STATE(7624), - [sym_val_entry] = STATE(7015), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3553), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1849), + [sym__unquoted_with_expr] = STATE(2045), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(748), - [aux_sym_shebang_repeat1] = STATE(2777), - [aux_sym_list_body_repeat1] = STATE(797), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym_shebang_repeat1] = STATE(762), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [749] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7398), - [sym__spread_list] = STATE(7624), - [sym_val_entry] = STATE(7015), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3554), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1758), + [sym__unquoted_with_expr] = STATE(2130), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(749), - [aux_sym_shebang_repeat1] = STATE(2777), - [aux_sym_list_body_repeat1] = STATE(797), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym_shebang_repeat1] = STATE(763), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [750] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7405), - [sym__spread_list] = STATE(7624), - [sym_val_entry] = STATE(7015), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3555), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1760), + [sym__unquoted_with_expr] = STATE(2133), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(750), - [aux_sym_shebang_repeat1] = STATE(2777), - [aux_sym_list_body_repeat1] = STATE(797), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym_shebang_repeat1] = STATE(764), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [751] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7413), - [sym__spread_list] = STATE(7624), - [sym_val_entry] = STATE(7015), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3556), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1762), + [sym__unquoted_with_expr] = STATE(2021), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(751), - [aux_sym_shebang_repeat1] = STATE(2777), - [aux_sym_list_body_repeat1] = STATE(797), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym_shebang_repeat1] = STATE(765), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [752] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7421), - [sym__spread_list] = STATE(7624), - [sym_val_entry] = STATE(7015), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3557), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1764), + [sym__unquoted_with_expr] = STATE(2146), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(752), - [aux_sym_shebang_repeat1] = STATE(2777), - [aux_sym_list_body_repeat1] = STATE(797), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym_shebang_repeat1] = STATE(766), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [753] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7428), - [sym__spread_list] = STATE(7624), - [sym_val_entry] = STATE(7015), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3558), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1766), + [sym__unquoted_with_expr] = STATE(2079), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(753), - [aux_sym_shebang_repeat1] = STATE(2777), - [aux_sym_list_body_repeat1] = STATE(797), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym_shebang_repeat1] = STATE(767), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [754] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7509), - [sym__spread_list] = STATE(7624), - [sym_val_entry] = STATE(7015), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3559), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1769), + [sym__unquoted_with_expr] = STATE(2011), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(754), - [aux_sym_shebang_repeat1] = STATE(2777), - [aux_sym_list_body_repeat1] = STATE(797), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym_shebang_repeat1] = STATE(768), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [755] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7445), - [sym__spread_list] = STATE(7624), - [sym_val_entry] = STATE(7015), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3560), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1771), + [sym__unquoted_with_expr] = STATE(2032), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(755), - [aux_sym_shebang_repeat1] = STATE(2777), - [aux_sym_list_body_repeat1] = STATE(797), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym_shebang_repeat1] = STATE(769), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [756] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7451), - [sym__spread_list] = STATE(7624), - [sym_val_entry] = STATE(7015), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2317), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1890), + [sym__unquoted_with_expr] = STATE(2085), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(756), - [aux_sym_shebang_repeat1] = STATE(2777), - [aux_sym_list_body_repeat1] = STATE(797), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym_shebang_repeat1] = STATE(876), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [757] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7459), - [sym__spread_list] = STATE(7624), - [sym_val_entry] = STATE(7015), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2148), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1813), + [sym__unquoted_with_expr] = STATE(2152), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(757), - [aux_sym_shebang_repeat1] = STATE(2777), - [aux_sym_list_body_repeat1] = STATE(797), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [758] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7466), - [sym__spread_list] = STATE(7624), - [sym_val_entry] = STATE(7015), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3563), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1821), + [sym__unquoted_with_expr] = STATE(2037), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(758), - [aux_sym_shebang_repeat1] = STATE(2777), - [aux_sym_list_body_repeat1] = STATE(797), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [759] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7473), - [sym__spread_list] = STATE(7624), - [sym_val_entry] = STATE(7015), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3565), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1825), + [sym__unquoted_with_expr] = STATE(2075), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(759), - [aux_sym_shebang_repeat1] = STATE(2777), - [aux_sym_list_body_repeat1] = STATE(797), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [760] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(7481), - [sym__spread_list] = STATE(7624), - [sym_val_entry] = STATE(7015), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3567), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1829), + [sym__unquoted_with_expr] = STATE(2088), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(760), - [aux_sym_shebang_repeat1] = STATE(2777), - [aux_sym_list_body_repeat1] = STATE(797), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [761] = { - [sym_path] = STATE(784), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3569), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1830), + [sym__unquoted_with_expr] = STATE(2111), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(761), - [aux_sym_cell_path_repeat1] = STATE(740), - [anon_sym_true] = ACTIONS(953), - [anon_sym_false] = ACTIONS(953), - [anon_sym_null] = ACTIONS(953), - [aux_sym_cmd_identifier_token38] = ACTIONS(953), - [aux_sym_cmd_identifier_token39] = ACTIONS(953), - [aux_sym_cmd_identifier_token40] = ACTIONS(953), - [sym__newline] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(953), - [anon_sym_DOLLAR] = ACTIONS(953), - [aux_sym_ctrl_match_token1] = ACTIONS(953), - [anon_sym_RBRACE] = ACTIONS(953), - [anon_sym__] = ACTIONS(951), - [anon_sym_DOT_DOT] = ACTIONS(951), - [aux_sym_expr_binary_token1] = ACTIONS(953), - [aux_sym_expr_binary_token2] = ACTIONS(953), - [aux_sym_expr_binary_token3] = ACTIONS(953), - [aux_sym_expr_binary_token4] = ACTIONS(953), - [aux_sym_expr_binary_token5] = ACTIONS(953), - [aux_sym_expr_binary_token6] = ACTIONS(953), - [aux_sym_expr_binary_token7] = ACTIONS(953), - [aux_sym_expr_binary_token8] = ACTIONS(953), - [aux_sym_expr_binary_token9] = ACTIONS(953), - [aux_sym_expr_binary_token10] = ACTIONS(953), - [aux_sym_expr_binary_token11] = ACTIONS(953), - [aux_sym_expr_binary_token12] = ACTIONS(953), - [aux_sym_expr_binary_token13] = ACTIONS(953), - [aux_sym_expr_binary_token14] = ACTIONS(953), - [aux_sym_expr_binary_token15] = ACTIONS(953), - [aux_sym_expr_binary_token16] = ACTIONS(953), - [aux_sym_expr_binary_token17] = ACTIONS(953), - [aux_sym_expr_binary_token18] = ACTIONS(953), - [aux_sym_expr_binary_token19] = ACTIONS(953), - [aux_sym_expr_binary_token20] = ACTIONS(953), - [aux_sym_expr_binary_token21] = ACTIONS(953), - [aux_sym_expr_binary_token22] = ACTIONS(953), - [aux_sym_expr_binary_token23] = ACTIONS(953), - [aux_sym_expr_binary_token24] = ACTIONS(953), - [aux_sym_expr_binary_token25] = ACTIONS(953), - [aux_sym_expr_binary_token26] = ACTIONS(953), - [aux_sym_expr_binary_token27] = ACTIONS(953), - [aux_sym_expr_binary_token28] = ACTIONS(953), - [anon_sym_DOT_DOT2] = ACTIONS(951), - [anon_sym_DOT] = ACTIONS(3007), - [anon_sym_DOT_DOT_EQ] = ACTIONS(951), - [anon_sym_DOT_DOT_LT] = ACTIONS(951), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(953), - [anon_sym_DOT_DOT_LT2] = ACTIONS(953), - [aux_sym__val_number_decimal_token1] = ACTIONS(951), - [aux_sym__val_number_decimal_token2] = ACTIONS(953), - [aux_sym__val_number_decimal_token3] = ACTIONS(953), - [aux_sym__val_number_decimal_token4] = ACTIONS(953), - [aux_sym__val_number_token1] = ACTIONS(953), - [aux_sym__val_number_token2] = ACTIONS(953), - [aux_sym__val_number_token3] = ACTIONS(953), - [anon_sym_0b] = ACTIONS(951), - [anon_sym_0o] = ACTIONS(951), - [anon_sym_0x] = ACTIONS(951), - [sym_val_date] = ACTIONS(953), - [anon_sym_DQUOTE] = ACTIONS(953), - [sym__str_single_quotes] = ACTIONS(953), - [sym__str_back_ticks] = ACTIONS(953), - [anon_sym_err_GT] = ACTIONS(951), - [anon_sym_out_GT] = ACTIONS(951), - [anon_sym_e_GT] = ACTIONS(951), - [anon_sym_o_GT] = ACTIONS(951), - [anon_sym_err_PLUSout_GT] = ACTIONS(951), - [anon_sym_out_PLUSerr_GT] = ACTIONS(951), - [anon_sym_o_PLUSe_GT] = ACTIONS(951), - [anon_sym_e_PLUSo_GT] = ACTIONS(951), - [anon_sym_err_GT_GT] = ACTIONS(953), - [anon_sym_out_GT_GT] = ACTIONS(953), - [anon_sym_e_GT_GT] = ACTIONS(953), - [anon_sym_o_GT_GT] = ACTIONS(953), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(953), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(953), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(953), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(953), - [aux_sym_unquoted_token1] = ACTIONS(951), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [762] = { + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3571), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1838), + [sym__unquoted_with_expr] = STATE(2150), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(762), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_null] = ACTIONS(1537), - [aux_sym_cmd_identifier_token38] = ACTIONS(1537), - [aux_sym_cmd_identifier_token39] = ACTIONS(1537), - [aux_sym_cmd_identifier_token40] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_COMMA] = ACTIONS(1537), - [anon_sym_DOLLAR] = ACTIONS(1537), - [aux_sym_ctrl_match_token1] = ACTIONS(1537), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym__] = ACTIONS(1525), - [anon_sym_DOT_DOT] = ACTIONS(1525), - [aux_sym_expr_binary_token1] = ACTIONS(1537), - [aux_sym_expr_binary_token2] = ACTIONS(1537), - [aux_sym_expr_binary_token3] = ACTIONS(1537), - [aux_sym_expr_binary_token4] = ACTIONS(1537), - [aux_sym_expr_binary_token5] = ACTIONS(1537), - [aux_sym_expr_binary_token6] = ACTIONS(1537), - [aux_sym_expr_binary_token7] = ACTIONS(1537), - [aux_sym_expr_binary_token8] = ACTIONS(1537), - [aux_sym_expr_binary_token9] = ACTIONS(1537), - [aux_sym_expr_binary_token10] = ACTIONS(1537), - [aux_sym_expr_binary_token11] = ACTIONS(1537), - [aux_sym_expr_binary_token12] = ACTIONS(1537), - [aux_sym_expr_binary_token13] = ACTIONS(1537), - [aux_sym_expr_binary_token14] = ACTIONS(1537), - [aux_sym_expr_binary_token15] = ACTIONS(1537), - [aux_sym_expr_binary_token16] = ACTIONS(1537), - [aux_sym_expr_binary_token17] = ACTIONS(1537), - [aux_sym_expr_binary_token18] = ACTIONS(1537), - [aux_sym_expr_binary_token19] = ACTIONS(1537), - [aux_sym_expr_binary_token20] = ACTIONS(1537), - [aux_sym_expr_binary_token21] = ACTIONS(1537), - [aux_sym_expr_binary_token22] = ACTIONS(1537), - [aux_sym_expr_binary_token23] = ACTIONS(1537), - [aux_sym_expr_binary_token24] = ACTIONS(1537), - [aux_sym_expr_binary_token25] = ACTIONS(1537), - [aux_sym_expr_binary_token26] = ACTIONS(1537), - [aux_sym_expr_binary_token27] = ACTIONS(1537), - [aux_sym_expr_binary_token28] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(3025), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1525), - [anon_sym_DOT_DOT_LT] = ACTIONS(1525), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3027), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3027), - [aux_sym__val_number_decimal_token1] = ACTIONS(1525), - [aux_sym__val_number_decimal_token2] = ACTIONS(1537), - [aux_sym__val_number_decimal_token3] = ACTIONS(1537), - [aux_sym__val_number_decimal_token4] = ACTIONS(1537), - [aux_sym__val_number_token1] = ACTIONS(1537), - [aux_sym__val_number_token2] = ACTIONS(1537), - [aux_sym__val_number_token3] = ACTIONS(1537), - [anon_sym_0b] = ACTIONS(1525), - [sym_filesize_unit] = ACTIONS(3029), - [sym_duration_unit] = ACTIONS(3031), - [anon_sym_0o] = ACTIONS(1525), - [anon_sym_0x] = ACTIONS(1525), - [sym_val_date] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym__str_single_quotes] = ACTIONS(1537), - [sym__str_back_ticks] = ACTIONS(1537), - [anon_sym_err_GT] = ACTIONS(1525), - [anon_sym_out_GT] = ACTIONS(1525), - [anon_sym_e_GT] = ACTIONS(1525), - [anon_sym_o_GT] = ACTIONS(1525), - [anon_sym_err_PLUSout_GT] = ACTIONS(1525), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), - [anon_sym_o_PLUSe_GT] = ACTIONS(1525), - [anon_sym_e_PLUSo_GT] = ACTIONS(1525), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), - [aux_sym_unquoted_token1] = ACTIONS(1525), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [763] = { + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3573), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1842), + [sym__unquoted_with_expr] = STATE(1994), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(763), - [anon_sym_true] = ACTIONS(972), - [anon_sym_false] = ACTIONS(972), - [anon_sym_null] = ACTIONS(972), - [aux_sym_cmd_identifier_token38] = ACTIONS(972), - [aux_sym_cmd_identifier_token39] = ACTIONS(972), - [aux_sym_cmd_identifier_token40] = ACTIONS(972), - [sym__newline] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(972), - [anon_sym_COMMA] = ACTIONS(972), - [anon_sym_DOLLAR] = ACTIONS(972), - [aux_sym_ctrl_match_token1] = ACTIONS(972), - [anon_sym_RBRACE] = ACTIONS(972), - [anon_sym__] = ACTIONS(970), - [anon_sym_DOT_DOT] = ACTIONS(970), - [anon_sym_QMARK2] = ACTIONS(3033), - [aux_sym_expr_binary_token1] = ACTIONS(972), - [aux_sym_expr_binary_token2] = ACTIONS(972), - [aux_sym_expr_binary_token3] = ACTIONS(972), - [aux_sym_expr_binary_token4] = ACTIONS(972), - [aux_sym_expr_binary_token5] = ACTIONS(972), - [aux_sym_expr_binary_token6] = ACTIONS(972), - [aux_sym_expr_binary_token7] = ACTIONS(972), - [aux_sym_expr_binary_token8] = ACTIONS(972), - [aux_sym_expr_binary_token9] = ACTIONS(972), - [aux_sym_expr_binary_token10] = ACTIONS(972), - [aux_sym_expr_binary_token11] = ACTIONS(972), - [aux_sym_expr_binary_token12] = ACTIONS(972), - [aux_sym_expr_binary_token13] = ACTIONS(972), - [aux_sym_expr_binary_token14] = ACTIONS(972), - [aux_sym_expr_binary_token15] = ACTIONS(972), - [aux_sym_expr_binary_token16] = ACTIONS(972), - [aux_sym_expr_binary_token17] = ACTIONS(972), - [aux_sym_expr_binary_token18] = ACTIONS(972), - [aux_sym_expr_binary_token19] = ACTIONS(972), - [aux_sym_expr_binary_token20] = ACTIONS(972), - [aux_sym_expr_binary_token21] = ACTIONS(972), - [aux_sym_expr_binary_token22] = ACTIONS(972), - [aux_sym_expr_binary_token23] = ACTIONS(972), - [aux_sym_expr_binary_token24] = ACTIONS(972), - [aux_sym_expr_binary_token25] = ACTIONS(972), - [aux_sym_expr_binary_token26] = ACTIONS(972), - [aux_sym_expr_binary_token27] = ACTIONS(972), - [aux_sym_expr_binary_token28] = ACTIONS(972), - [anon_sym_DOT_DOT2] = ACTIONS(970), - [anon_sym_DOT] = ACTIONS(970), - [anon_sym_DOT_DOT_EQ] = ACTIONS(970), - [anon_sym_DOT_DOT_LT] = ACTIONS(970), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(972), - [anon_sym_DOT_DOT_LT2] = ACTIONS(972), - [aux_sym__val_number_decimal_token1] = ACTIONS(970), - [aux_sym__val_number_decimal_token2] = ACTIONS(972), - [aux_sym__val_number_decimal_token3] = ACTIONS(972), - [aux_sym__val_number_decimal_token4] = ACTIONS(972), - [aux_sym__val_number_token1] = ACTIONS(972), - [aux_sym__val_number_token2] = ACTIONS(972), - [aux_sym__val_number_token3] = ACTIONS(972), - [anon_sym_0b] = ACTIONS(970), - [anon_sym_0o] = ACTIONS(970), - [anon_sym_0x] = ACTIONS(970), - [sym_val_date] = ACTIONS(972), - [anon_sym_DQUOTE] = ACTIONS(972), - [sym__str_single_quotes] = ACTIONS(972), - [sym__str_back_ticks] = ACTIONS(972), - [anon_sym_err_GT] = ACTIONS(970), - [anon_sym_out_GT] = ACTIONS(970), - [anon_sym_e_GT] = ACTIONS(970), - [anon_sym_o_GT] = ACTIONS(970), - [anon_sym_err_PLUSout_GT] = ACTIONS(970), - [anon_sym_out_PLUSerr_GT] = ACTIONS(970), - [anon_sym_o_PLUSe_GT] = ACTIONS(970), - [anon_sym_e_PLUSo_GT] = ACTIONS(970), - [anon_sym_err_GT_GT] = ACTIONS(972), - [anon_sym_out_GT_GT] = ACTIONS(972), - [anon_sym_e_GT_GT] = ACTIONS(972), - [anon_sym_o_GT_GT] = ACTIONS(972), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(972), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(972), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(972), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(972), - [aux_sym_unquoted_token1] = ACTIONS(970), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [764] = { + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3575), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1845), + [sym__unquoted_with_expr] = STATE(2004), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(764), - [anon_sym_true] = ACTIONS(982), - [anon_sym_false] = ACTIONS(982), - [anon_sym_null] = ACTIONS(982), - [aux_sym_cmd_identifier_token38] = ACTIONS(982), - [aux_sym_cmd_identifier_token39] = ACTIONS(982), - [aux_sym_cmd_identifier_token40] = ACTIONS(982), - [sym__newline] = ACTIONS(982), - [anon_sym_LBRACK] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(982), - [anon_sym_COMMA] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(982), - [aux_sym_ctrl_match_token1] = ACTIONS(982), - [anon_sym_RBRACE] = ACTIONS(982), - [anon_sym__] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(980), - [anon_sym_QMARK2] = ACTIONS(3035), - [aux_sym_expr_binary_token1] = ACTIONS(982), - [aux_sym_expr_binary_token2] = ACTIONS(982), - [aux_sym_expr_binary_token3] = ACTIONS(982), - [aux_sym_expr_binary_token4] = ACTIONS(982), - [aux_sym_expr_binary_token5] = ACTIONS(982), - [aux_sym_expr_binary_token6] = ACTIONS(982), - [aux_sym_expr_binary_token7] = ACTIONS(982), - [aux_sym_expr_binary_token8] = ACTIONS(982), - [aux_sym_expr_binary_token9] = ACTIONS(982), - [aux_sym_expr_binary_token10] = ACTIONS(982), - [aux_sym_expr_binary_token11] = ACTIONS(982), - [aux_sym_expr_binary_token12] = ACTIONS(982), - [aux_sym_expr_binary_token13] = ACTIONS(982), - [aux_sym_expr_binary_token14] = ACTIONS(982), - [aux_sym_expr_binary_token15] = ACTIONS(982), - [aux_sym_expr_binary_token16] = ACTIONS(982), - [aux_sym_expr_binary_token17] = ACTIONS(982), - [aux_sym_expr_binary_token18] = ACTIONS(982), - [aux_sym_expr_binary_token19] = ACTIONS(982), - [aux_sym_expr_binary_token20] = ACTIONS(982), - [aux_sym_expr_binary_token21] = ACTIONS(982), - [aux_sym_expr_binary_token22] = ACTIONS(982), - [aux_sym_expr_binary_token23] = ACTIONS(982), - [aux_sym_expr_binary_token24] = ACTIONS(982), - [aux_sym_expr_binary_token25] = ACTIONS(982), - [aux_sym_expr_binary_token26] = ACTIONS(982), - [aux_sym_expr_binary_token27] = ACTIONS(982), - [aux_sym_expr_binary_token28] = ACTIONS(982), - [anon_sym_DOT_DOT2] = ACTIONS(980), - [anon_sym_DOT] = ACTIONS(980), - [anon_sym_DOT_DOT_EQ] = ACTIONS(980), - [anon_sym_DOT_DOT_LT] = ACTIONS(980), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(982), - [anon_sym_DOT_DOT_LT2] = ACTIONS(982), - [aux_sym__val_number_decimal_token1] = ACTIONS(980), - [aux_sym__val_number_decimal_token2] = ACTIONS(982), - [aux_sym__val_number_decimal_token3] = ACTIONS(982), - [aux_sym__val_number_decimal_token4] = ACTIONS(982), - [aux_sym__val_number_token1] = ACTIONS(982), - [aux_sym__val_number_token2] = ACTIONS(982), - [aux_sym__val_number_token3] = ACTIONS(982), - [anon_sym_0b] = ACTIONS(980), - [anon_sym_0o] = ACTIONS(980), - [anon_sym_0x] = ACTIONS(980), - [sym_val_date] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(982), - [sym__str_single_quotes] = ACTIONS(982), - [sym__str_back_ticks] = ACTIONS(982), - [anon_sym_err_GT] = ACTIONS(980), - [anon_sym_out_GT] = ACTIONS(980), - [anon_sym_e_GT] = ACTIONS(980), - [anon_sym_o_GT] = ACTIONS(980), - [anon_sym_err_PLUSout_GT] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT] = ACTIONS(980), - [anon_sym_o_PLUSe_GT] = ACTIONS(980), - [anon_sym_e_PLUSo_GT] = ACTIONS(980), - [anon_sym_err_GT_GT] = ACTIONS(982), - [anon_sym_out_GT_GT] = ACTIONS(982), - [anon_sym_e_GT_GT] = ACTIONS(982), - [anon_sym_o_GT_GT] = ACTIONS(982), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(982), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(982), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(982), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(982), - [aux_sym_unquoted_token1] = ACTIONS(980), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [765] = { + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3577), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1927), + [sym__unquoted_with_expr] = STATE(2013), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(765), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [aux_sym_cmd_identifier_token38] = ACTIONS(1475), - [aux_sym_cmd_identifier_token39] = ACTIONS(1475), - [aux_sym_cmd_identifier_token40] = ACTIONS(1475), - [sym__newline] = ACTIONS(1475), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1475), - [anon_sym_COMMA] = ACTIONS(1475), - [anon_sym_DOLLAR] = ACTIONS(1475), - [aux_sym_ctrl_match_token1] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym__] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1473), - [aux_sym_expr_binary_token1] = ACTIONS(1475), - [aux_sym_expr_binary_token2] = ACTIONS(1475), - [aux_sym_expr_binary_token3] = ACTIONS(1475), - [aux_sym_expr_binary_token4] = ACTIONS(1475), - [aux_sym_expr_binary_token5] = ACTIONS(1475), - [aux_sym_expr_binary_token6] = ACTIONS(1475), - [aux_sym_expr_binary_token7] = ACTIONS(1475), - [aux_sym_expr_binary_token8] = ACTIONS(1475), - [aux_sym_expr_binary_token9] = ACTIONS(1475), - [aux_sym_expr_binary_token10] = ACTIONS(1475), - [aux_sym_expr_binary_token11] = ACTIONS(1475), - [aux_sym_expr_binary_token12] = ACTIONS(1475), - [aux_sym_expr_binary_token13] = ACTIONS(1475), - [aux_sym_expr_binary_token14] = ACTIONS(1475), - [aux_sym_expr_binary_token15] = ACTIONS(1475), - [aux_sym_expr_binary_token16] = ACTIONS(1475), - [aux_sym_expr_binary_token17] = ACTIONS(1475), - [aux_sym_expr_binary_token18] = ACTIONS(1475), - [aux_sym_expr_binary_token19] = ACTIONS(1475), - [aux_sym_expr_binary_token20] = ACTIONS(1475), - [aux_sym_expr_binary_token21] = ACTIONS(1475), - [aux_sym_expr_binary_token22] = ACTIONS(1475), - [aux_sym_expr_binary_token23] = ACTIONS(1475), - [aux_sym_expr_binary_token24] = ACTIONS(1475), - [aux_sym_expr_binary_token25] = ACTIONS(1475), - [aux_sym_expr_binary_token26] = ACTIONS(1475), - [aux_sym_expr_binary_token27] = ACTIONS(1475), - [aux_sym_expr_binary_token28] = ACTIONS(1475), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), - [anon_sym_DOT_DOT_LT] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [aux_sym__val_number_decimal_token1] = ACTIONS(1473), - [aux_sym__val_number_decimal_token2] = ACTIONS(1475), - [aux_sym__val_number_decimal_token3] = ACTIONS(1475), - [aux_sym__val_number_decimal_token4] = ACTIONS(1475), - [aux_sym__val_number_token1] = ACTIONS(1475), - [aux_sym__val_number_token2] = ACTIONS(1475), - [aux_sym__val_number_token3] = ACTIONS(1475), - [anon_sym_0b] = ACTIONS(1473), - [sym_filesize_unit] = ACTIONS(1475), - [sym_duration_unit] = ACTIONS(1475), - [anon_sym_0o] = ACTIONS(1473), - [anon_sym_0x] = ACTIONS(1473), - [sym_val_date] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym__str_single_quotes] = ACTIONS(1475), - [sym__str_back_ticks] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1473), - [anon_sym_out_GT] = ACTIONS(1473), - [anon_sym_e_GT] = ACTIONS(1473), - [anon_sym_o_GT] = ACTIONS(1473), - [anon_sym_err_PLUSout_GT] = ACTIONS(1473), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), - [anon_sym_o_PLUSe_GT] = ACTIONS(1473), - [anon_sym_e_PLUSo_GT] = ACTIONS(1473), - [anon_sym_err_GT_GT] = ACTIONS(1475), - [anon_sym_out_GT_GT] = ACTIONS(1475), - [anon_sym_e_GT_GT] = ACTIONS(1475), - [anon_sym_o_GT_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), - [aux_sym_unquoted_token1] = ACTIONS(1473), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [766] = { + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3579), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1854), + [sym__unquoted_with_expr] = STATE(2022), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(766), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [anon_sym_null] = ACTIONS(1483), - [aux_sym_cmd_identifier_token38] = ACTIONS(1483), - [aux_sym_cmd_identifier_token39] = ACTIONS(1483), - [aux_sym_cmd_identifier_token40] = ACTIONS(1483), - [sym__newline] = ACTIONS(1483), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_COMMA] = ACTIONS(1483), - [anon_sym_DOLLAR] = ACTIONS(1483), - [aux_sym_ctrl_match_token1] = ACTIONS(1483), - [anon_sym_RBRACE] = ACTIONS(1483), - [anon_sym__] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1481), - [aux_sym_expr_binary_token1] = ACTIONS(1483), - [aux_sym_expr_binary_token2] = ACTIONS(1483), - [aux_sym_expr_binary_token3] = ACTIONS(1483), - [aux_sym_expr_binary_token4] = ACTIONS(1483), - [aux_sym_expr_binary_token5] = ACTIONS(1483), - [aux_sym_expr_binary_token6] = ACTIONS(1483), - [aux_sym_expr_binary_token7] = ACTIONS(1483), - [aux_sym_expr_binary_token8] = ACTIONS(1483), - [aux_sym_expr_binary_token9] = ACTIONS(1483), - [aux_sym_expr_binary_token10] = ACTIONS(1483), - [aux_sym_expr_binary_token11] = ACTIONS(1483), - [aux_sym_expr_binary_token12] = ACTIONS(1483), - [aux_sym_expr_binary_token13] = ACTIONS(1483), - [aux_sym_expr_binary_token14] = ACTIONS(1483), - [aux_sym_expr_binary_token15] = ACTIONS(1483), - [aux_sym_expr_binary_token16] = ACTIONS(1483), - [aux_sym_expr_binary_token17] = ACTIONS(1483), - [aux_sym_expr_binary_token18] = ACTIONS(1483), - [aux_sym_expr_binary_token19] = ACTIONS(1483), - [aux_sym_expr_binary_token20] = ACTIONS(1483), - [aux_sym_expr_binary_token21] = ACTIONS(1483), - [aux_sym_expr_binary_token22] = ACTIONS(1483), - [aux_sym_expr_binary_token23] = ACTIONS(1483), - [aux_sym_expr_binary_token24] = ACTIONS(1483), - [aux_sym_expr_binary_token25] = ACTIONS(1483), - [aux_sym_expr_binary_token26] = ACTIONS(1483), - [aux_sym_expr_binary_token27] = ACTIONS(1483), - [aux_sym_expr_binary_token28] = ACTIONS(1483), - [anon_sym_DOT_DOT2] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), - [anon_sym_DOT_DOT_LT] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), - [aux_sym__val_number_decimal_token1] = ACTIONS(1481), - [aux_sym__val_number_decimal_token2] = ACTIONS(1483), - [aux_sym__val_number_decimal_token3] = ACTIONS(1483), - [aux_sym__val_number_decimal_token4] = ACTIONS(1483), - [aux_sym__val_number_token1] = ACTIONS(1483), - [aux_sym__val_number_token2] = ACTIONS(1483), - [aux_sym__val_number_token3] = ACTIONS(1483), - [anon_sym_0b] = ACTIONS(1481), - [sym_filesize_unit] = ACTIONS(1483), - [sym_duration_unit] = ACTIONS(1483), - [anon_sym_0o] = ACTIONS(1481), - [anon_sym_0x] = ACTIONS(1481), - [sym_val_date] = ACTIONS(1483), - [anon_sym_DQUOTE] = ACTIONS(1483), - [sym__str_single_quotes] = ACTIONS(1483), - [sym__str_back_ticks] = ACTIONS(1483), - [anon_sym_err_GT] = ACTIONS(1481), - [anon_sym_out_GT] = ACTIONS(1481), - [anon_sym_e_GT] = ACTIONS(1481), - [anon_sym_o_GT] = ACTIONS(1481), - [anon_sym_err_PLUSout_GT] = ACTIONS(1481), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), - [anon_sym_o_PLUSe_GT] = ACTIONS(1481), - [anon_sym_e_PLUSo_GT] = ACTIONS(1481), - [anon_sym_err_GT_GT] = ACTIONS(1483), - [anon_sym_out_GT_GT] = ACTIONS(1483), - [anon_sym_e_GT_GT] = ACTIONS(1483), - [anon_sym_o_GT_GT] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), - [aux_sym_unquoted_token1] = ACTIONS(1481), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [767] = { + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3581), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1864), + [sym__unquoted_with_expr] = STATE(2031), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(767), - [anon_sym_true] = ACTIONS(1521), - [anon_sym_false] = ACTIONS(1521), - [anon_sym_null] = ACTIONS(1521), - [aux_sym_cmd_identifier_token38] = ACTIONS(1521), - [aux_sym_cmd_identifier_token39] = ACTIONS(1521), - [aux_sym_cmd_identifier_token40] = ACTIONS(1521), - [sym__newline] = ACTIONS(1521), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_COMMA] = ACTIONS(1521), - [anon_sym_DOLLAR] = ACTIONS(1521), - [aux_sym_ctrl_match_token1] = ACTIONS(1521), - [anon_sym_RBRACE] = ACTIONS(1521), - [anon_sym__] = ACTIONS(1519), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [aux_sym_expr_binary_token1] = ACTIONS(1521), - [aux_sym_expr_binary_token2] = ACTIONS(1521), - [aux_sym_expr_binary_token3] = ACTIONS(1521), - [aux_sym_expr_binary_token4] = ACTIONS(1521), - [aux_sym_expr_binary_token5] = ACTIONS(1521), - [aux_sym_expr_binary_token6] = ACTIONS(1521), - [aux_sym_expr_binary_token7] = ACTIONS(1521), - [aux_sym_expr_binary_token8] = ACTIONS(1521), - [aux_sym_expr_binary_token9] = ACTIONS(1521), - [aux_sym_expr_binary_token10] = ACTIONS(1521), - [aux_sym_expr_binary_token11] = ACTIONS(1521), - [aux_sym_expr_binary_token12] = ACTIONS(1521), - [aux_sym_expr_binary_token13] = ACTIONS(1521), - [aux_sym_expr_binary_token14] = ACTIONS(1521), - [aux_sym_expr_binary_token15] = ACTIONS(1521), - [aux_sym_expr_binary_token16] = ACTIONS(1521), - [aux_sym_expr_binary_token17] = ACTIONS(1521), - [aux_sym_expr_binary_token18] = ACTIONS(1521), - [aux_sym_expr_binary_token19] = ACTIONS(1521), - [aux_sym_expr_binary_token20] = ACTIONS(1521), - [aux_sym_expr_binary_token21] = ACTIONS(1521), - [aux_sym_expr_binary_token22] = ACTIONS(1521), - [aux_sym_expr_binary_token23] = ACTIONS(1521), - [aux_sym_expr_binary_token24] = ACTIONS(1521), - [aux_sym_expr_binary_token25] = ACTIONS(1521), - [aux_sym_expr_binary_token26] = ACTIONS(1521), - [aux_sym_expr_binary_token27] = ACTIONS(1521), - [aux_sym_expr_binary_token28] = ACTIONS(1521), - [anon_sym_DOT_DOT2] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1519), - [anon_sym_DOT_DOT_LT] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), - [aux_sym__val_number_decimal_token1] = ACTIONS(1519), - [aux_sym__val_number_decimal_token2] = ACTIONS(1521), - [aux_sym__val_number_decimal_token3] = ACTIONS(1521), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(1521), - [aux_sym__val_number_token2] = ACTIONS(1521), - [aux_sym__val_number_token3] = ACTIONS(1521), - [anon_sym_0b] = ACTIONS(1519), - [sym_filesize_unit] = ACTIONS(1521), - [sym_duration_unit] = ACTIONS(1521), - [anon_sym_0o] = ACTIONS(1519), - [anon_sym_0x] = ACTIONS(1519), - [sym_val_date] = ACTIONS(1521), - [anon_sym_DQUOTE] = ACTIONS(1521), - [sym__str_single_quotes] = ACTIONS(1521), - [sym__str_back_ticks] = ACTIONS(1521), - [anon_sym_err_GT] = ACTIONS(1519), - [anon_sym_out_GT] = ACTIONS(1519), - [anon_sym_e_GT] = ACTIONS(1519), - [anon_sym_o_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT] = ACTIONS(1519), - [anon_sym_err_GT_GT] = ACTIONS(1521), - [anon_sym_out_GT_GT] = ACTIONS(1521), - [anon_sym_e_GT_GT] = ACTIONS(1521), - [anon_sym_o_GT_GT] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), - [aux_sym_unquoted_token1] = ACTIONS(1519), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [768] = { + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3583), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1867), + [sym__unquoted_with_expr] = STATE(2036), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(768), - [anon_sym_true] = ACTIONS(1587), - [anon_sym_false] = ACTIONS(1587), - [anon_sym_null] = ACTIONS(1587), - [aux_sym_cmd_identifier_token38] = ACTIONS(1587), - [aux_sym_cmd_identifier_token39] = ACTIONS(1587), - [aux_sym_cmd_identifier_token40] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_COMMA] = ACTIONS(1587), - [anon_sym_DOLLAR] = ACTIONS(1587), - [aux_sym_ctrl_match_token1] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1587), - [anon_sym__] = ACTIONS(1585), - [anon_sym_DOT_DOT] = ACTIONS(1585), - [aux_sym_expr_binary_token1] = ACTIONS(1587), - [aux_sym_expr_binary_token2] = ACTIONS(1587), - [aux_sym_expr_binary_token3] = ACTIONS(1587), - [aux_sym_expr_binary_token4] = ACTIONS(1587), - [aux_sym_expr_binary_token5] = ACTIONS(1587), - [aux_sym_expr_binary_token6] = ACTIONS(1587), - [aux_sym_expr_binary_token7] = ACTIONS(1587), - [aux_sym_expr_binary_token8] = ACTIONS(1587), - [aux_sym_expr_binary_token9] = ACTIONS(1587), - [aux_sym_expr_binary_token10] = ACTIONS(1587), - [aux_sym_expr_binary_token11] = ACTIONS(1587), - [aux_sym_expr_binary_token12] = ACTIONS(1587), - [aux_sym_expr_binary_token13] = ACTIONS(1587), - [aux_sym_expr_binary_token14] = ACTIONS(1587), - [aux_sym_expr_binary_token15] = ACTIONS(1587), - [aux_sym_expr_binary_token16] = ACTIONS(1587), - [aux_sym_expr_binary_token17] = ACTIONS(1587), - [aux_sym_expr_binary_token18] = ACTIONS(1587), - [aux_sym_expr_binary_token19] = ACTIONS(1587), - [aux_sym_expr_binary_token20] = ACTIONS(1587), - [aux_sym_expr_binary_token21] = ACTIONS(1587), - [aux_sym_expr_binary_token22] = ACTIONS(1587), - [aux_sym_expr_binary_token23] = ACTIONS(1587), - [aux_sym_expr_binary_token24] = ACTIONS(1587), - [aux_sym_expr_binary_token25] = ACTIONS(1587), - [aux_sym_expr_binary_token26] = ACTIONS(1587), - [aux_sym_expr_binary_token27] = ACTIONS(1587), - [aux_sym_expr_binary_token28] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1585), - [anon_sym_DOT_DOT_LT] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1587), - [aux_sym__val_number_decimal_token4] = ACTIONS(1587), - [aux_sym__val_number_token1] = ACTIONS(1587), - [aux_sym__val_number_token2] = ACTIONS(1587), - [aux_sym__val_number_token3] = ACTIONS(1587), - [anon_sym_0b] = ACTIONS(1585), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1587), - [anon_sym_0o] = ACTIONS(1585), - [anon_sym_0x] = ACTIONS(1585), - [sym_val_date] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1587), - [sym__str_single_quotes] = ACTIONS(1587), - [sym__str_back_ticks] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1585), - [anon_sym_out_GT] = ACTIONS(1585), - [anon_sym_e_GT] = ACTIONS(1585), - [anon_sym_o_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT] = ACTIONS(1585), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), - [aux_sym_unquoted_token1] = ACTIONS(1585), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [769] = { + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3585), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1869), + [sym__unquoted_with_expr] = STATE(2040), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(769), - [anon_sym_true] = ACTIONS(968), - [anon_sym_false] = ACTIONS(968), - [anon_sym_null] = ACTIONS(968), - [aux_sym_cmd_identifier_token38] = ACTIONS(968), - [aux_sym_cmd_identifier_token39] = ACTIONS(968), - [aux_sym_cmd_identifier_token40] = ACTIONS(968), - [sym__newline] = ACTIONS(968), - [anon_sym_LBRACK] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_COMMA] = ACTIONS(968), - [anon_sym_DOLLAR] = ACTIONS(968), - [aux_sym_ctrl_match_token1] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym__] = ACTIONS(966), - [anon_sym_DOT_DOT] = ACTIONS(966), - [anon_sym_QMARK2] = ACTIONS(968), - [aux_sym_expr_binary_token1] = ACTIONS(968), - [aux_sym_expr_binary_token2] = ACTIONS(968), - [aux_sym_expr_binary_token3] = ACTIONS(968), - [aux_sym_expr_binary_token4] = ACTIONS(968), - [aux_sym_expr_binary_token5] = ACTIONS(968), - [aux_sym_expr_binary_token6] = ACTIONS(968), - [aux_sym_expr_binary_token7] = ACTIONS(968), - [aux_sym_expr_binary_token8] = ACTIONS(968), - [aux_sym_expr_binary_token9] = ACTIONS(968), - [aux_sym_expr_binary_token10] = ACTIONS(968), - [aux_sym_expr_binary_token11] = ACTIONS(968), - [aux_sym_expr_binary_token12] = ACTIONS(968), - [aux_sym_expr_binary_token13] = ACTIONS(968), - [aux_sym_expr_binary_token14] = ACTIONS(968), - [aux_sym_expr_binary_token15] = ACTIONS(968), - [aux_sym_expr_binary_token16] = ACTIONS(968), - [aux_sym_expr_binary_token17] = ACTIONS(968), - [aux_sym_expr_binary_token18] = ACTIONS(968), - [aux_sym_expr_binary_token19] = ACTIONS(968), - [aux_sym_expr_binary_token20] = ACTIONS(968), - [aux_sym_expr_binary_token21] = ACTIONS(968), - [aux_sym_expr_binary_token22] = ACTIONS(968), - [aux_sym_expr_binary_token23] = ACTIONS(968), - [aux_sym_expr_binary_token24] = ACTIONS(968), - [aux_sym_expr_binary_token25] = ACTIONS(968), - [aux_sym_expr_binary_token26] = ACTIONS(968), - [aux_sym_expr_binary_token27] = ACTIONS(968), - [aux_sym_expr_binary_token28] = ACTIONS(968), - [anon_sym_DOT_DOT2] = ACTIONS(966), - [anon_sym_DOT] = ACTIONS(966), - [anon_sym_DOT_DOT_EQ] = ACTIONS(966), - [anon_sym_DOT_DOT_LT] = ACTIONS(966), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(968), - [anon_sym_DOT_DOT_LT2] = ACTIONS(968), - [aux_sym__val_number_decimal_token1] = ACTIONS(966), - [aux_sym__val_number_decimal_token2] = ACTIONS(968), - [aux_sym__val_number_decimal_token3] = ACTIONS(968), - [aux_sym__val_number_decimal_token4] = ACTIONS(968), - [aux_sym__val_number_token1] = ACTIONS(968), - [aux_sym__val_number_token2] = ACTIONS(968), - [aux_sym__val_number_token3] = ACTIONS(968), - [anon_sym_0b] = ACTIONS(966), - [anon_sym_0o] = ACTIONS(966), - [anon_sym_0x] = ACTIONS(966), - [sym_val_date] = ACTIONS(968), - [anon_sym_DQUOTE] = ACTIONS(968), - [sym__str_single_quotes] = ACTIONS(968), - [sym__str_back_ticks] = ACTIONS(968), - [anon_sym_err_GT] = ACTIONS(966), - [anon_sym_out_GT] = ACTIONS(966), - [anon_sym_e_GT] = ACTIONS(966), - [anon_sym_o_GT] = ACTIONS(966), - [anon_sym_err_PLUSout_GT] = ACTIONS(966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(966), - [anon_sym_o_PLUSe_GT] = ACTIONS(966), - [anon_sym_e_PLUSo_GT] = ACTIONS(966), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [aux_sym_unquoted_token1] = ACTIONS(966), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [770] = { + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2041), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1871), + [sym__unquoted_with_expr] = STATE(2044), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(770), - [anon_sym_true] = ACTIONS(978), - [anon_sym_false] = ACTIONS(978), - [anon_sym_null] = ACTIONS(978), - [aux_sym_cmd_identifier_token38] = ACTIONS(978), - [aux_sym_cmd_identifier_token39] = ACTIONS(978), - [aux_sym_cmd_identifier_token40] = ACTIONS(978), - [sym__newline] = ACTIONS(978), - [anon_sym_LBRACK] = ACTIONS(978), - [anon_sym_LPAREN] = ACTIONS(978), - [anon_sym_COMMA] = ACTIONS(978), - [anon_sym_DOLLAR] = ACTIONS(978), - [aux_sym_ctrl_match_token1] = ACTIONS(978), - [anon_sym_RBRACE] = ACTIONS(978), - [anon_sym__] = ACTIONS(976), - [anon_sym_DOT_DOT] = ACTIONS(976), - [anon_sym_QMARK2] = ACTIONS(978), - [aux_sym_expr_binary_token1] = ACTIONS(978), - [aux_sym_expr_binary_token2] = ACTIONS(978), - [aux_sym_expr_binary_token3] = ACTIONS(978), - [aux_sym_expr_binary_token4] = ACTIONS(978), - [aux_sym_expr_binary_token5] = ACTIONS(978), - [aux_sym_expr_binary_token6] = ACTIONS(978), - [aux_sym_expr_binary_token7] = ACTIONS(978), - [aux_sym_expr_binary_token8] = ACTIONS(978), - [aux_sym_expr_binary_token9] = ACTIONS(978), - [aux_sym_expr_binary_token10] = ACTIONS(978), - [aux_sym_expr_binary_token11] = ACTIONS(978), - [aux_sym_expr_binary_token12] = ACTIONS(978), - [aux_sym_expr_binary_token13] = ACTIONS(978), - [aux_sym_expr_binary_token14] = ACTIONS(978), - [aux_sym_expr_binary_token15] = ACTIONS(978), - [aux_sym_expr_binary_token16] = ACTIONS(978), - [aux_sym_expr_binary_token17] = ACTIONS(978), - [aux_sym_expr_binary_token18] = ACTIONS(978), - [aux_sym_expr_binary_token19] = ACTIONS(978), - [aux_sym_expr_binary_token20] = ACTIONS(978), - [aux_sym_expr_binary_token21] = ACTIONS(978), - [aux_sym_expr_binary_token22] = ACTIONS(978), - [aux_sym_expr_binary_token23] = ACTIONS(978), - [aux_sym_expr_binary_token24] = ACTIONS(978), - [aux_sym_expr_binary_token25] = ACTIONS(978), - [aux_sym_expr_binary_token26] = ACTIONS(978), - [aux_sym_expr_binary_token27] = ACTIONS(978), - [aux_sym_expr_binary_token28] = ACTIONS(978), - [anon_sym_DOT_DOT2] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ] = ACTIONS(976), - [anon_sym_DOT_DOT_LT] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), - [anon_sym_DOT_DOT_LT2] = ACTIONS(978), - [aux_sym__val_number_decimal_token1] = ACTIONS(976), - [aux_sym__val_number_decimal_token2] = ACTIONS(978), - [aux_sym__val_number_decimal_token3] = ACTIONS(978), - [aux_sym__val_number_decimal_token4] = ACTIONS(978), - [aux_sym__val_number_token1] = ACTIONS(978), - [aux_sym__val_number_token2] = ACTIONS(978), - [aux_sym__val_number_token3] = ACTIONS(978), - [anon_sym_0b] = ACTIONS(976), - [anon_sym_0o] = ACTIONS(976), - [anon_sym_0x] = ACTIONS(976), - [sym_val_date] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(978), - [sym__str_single_quotes] = ACTIONS(978), - [sym__str_back_ticks] = ACTIONS(978), - [anon_sym_err_GT] = ACTIONS(976), - [anon_sym_out_GT] = ACTIONS(976), - [anon_sym_e_GT] = ACTIONS(976), - [anon_sym_o_GT] = ACTIONS(976), - [anon_sym_err_PLUSout_GT] = ACTIONS(976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(976), - [anon_sym_o_PLUSe_GT] = ACTIONS(976), - [anon_sym_e_PLUSo_GT] = ACTIONS(976), - [anon_sym_err_GT_GT] = ACTIONS(978), - [anon_sym_out_GT_GT] = ACTIONS(978), - [anon_sym_e_GT_GT] = ACTIONS(978), - [anon_sym_o_GT_GT] = ACTIONS(978), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(978), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(978), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(978), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(978), - [aux_sym_unquoted_token1] = ACTIONS(976), + [aux_sym_shebang_repeat1] = STATE(783), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [771] = { + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3586), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1872), + [sym__unquoted_with_expr] = STATE(2047), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(771), - [anon_sym_true] = ACTIONS(964), - [anon_sym_false] = ACTIONS(964), - [anon_sym_null] = ACTIONS(964), - [aux_sym_cmd_identifier_token38] = ACTIONS(964), - [aux_sym_cmd_identifier_token39] = ACTIONS(964), - [aux_sym_cmd_identifier_token40] = ACTIONS(964), - [sym__newline] = ACTIONS(964), - [anon_sym_LBRACK] = ACTIONS(964), - [anon_sym_LPAREN] = ACTIONS(964), - [anon_sym_COMMA] = ACTIONS(964), - [anon_sym_DOLLAR] = ACTIONS(964), - [aux_sym_ctrl_match_token1] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym__] = ACTIONS(962), - [anon_sym_DOT_DOT] = ACTIONS(962), - [anon_sym_QMARK2] = ACTIONS(964), - [aux_sym_expr_binary_token1] = ACTIONS(964), - [aux_sym_expr_binary_token2] = ACTIONS(964), - [aux_sym_expr_binary_token3] = ACTIONS(964), - [aux_sym_expr_binary_token4] = ACTIONS(964), - [aux_sym_expr_binary_token5] = ACTIONS(964), - [aux_sym_expr_binary_token6] = ACTIONS(964), - [aux_sym_expr_binary_token7] = ACTIONS(964), - [aux_sym_expr_binary_token8] = ACTIONS(964), - [aux_sym_expr_binary_token9] = ACTIONS(964), - [aux_sym_expr_binary_token10] = ACTIONS(964), - [aux_sym_expr_binary_token11] = ACTIONS(964), - [aux_sym_expr_binary_token12] = ACTIONS(964), - [aux_sym_expr_binary_token13] = ACTIONS(964), - [aux_sym_expr_binary_token14] = ACTIONS(964), - [aux_sym_expr_binary_token15] = ACTIONS(964), - [aux_sym_expr_binary_token16] = ACTIONS(964), - [aux_sym_expr_binary_token17] = ACTIONS(964), - [aux_sym_expr_binary_token18] = ACTIONS(964), - [aux_sym_expr_binary_token19] = ACTIONS(964), - [aux_sym_expr_binary_token20] = ACTIONS(964), - [aux_sym_expr_binary_token21] = ACTIONS(964), - [aux_sym_expr_binary_token22] = ACTIONS(964), - [aux_sym_expr_binary_token23] = ACTIONS(964), - [aux_sym_expr_binary_token24] = ACTIONS(964), - [aux_sym_expr_binary_token25] = ACTIONS(964), - [aux_sym_expr_binary_token26] = ACTIONS(964), - [aux_sym_expr_binary_token27] = ACTIONS(964), - [aux_sym_expr_binary_token28] = ACTIONS(964), - [anon_sym_DOT_DOT2] = ACTIONS(962), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_DOT_DOT_EQ] = ACTIONS(962), - [anon_sym_DOT_DOT_LT] = ACTIONS(962), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(964), - [anon_sym_DOT_DOT_LT2] = ACTIONS(964), - [aux_sym__val_number_decimal_token1] = ACTIONS(962), - [aux_sym__val_number_decimal_token2] = ACTIONS(964), - [aux_sym__val_number_decimal_token3] = ACTIONS(964), - [aux_sym__val_number_decimal_token4] = ACTIONS(964), - [aux_sym__val_number_token1] = ACTIONS(964), - [aux_sym__val_number_token2] = ACTIONS(964), - [aux_sym__val_number_token3] = ACTIONS(964), - [anon_sym_0b] = ACTIONS(962), - [anon_sym_0o] = ACTIONS(962), - [anon_sym_0x] = ACTIONS(962), - [sym_val_date] = ACTIONS(964), - [anon_sym_DQUOTE] = ACTIONS(964), - [sym__str_single_quotes] = ACTIONS(964), - [sym__str_back_ticks] = ACTIONS(964), - [anon_sym_err_GT] = ACTIONS(962), - [anon_sym_out_GT] = ACTIONS(962), - [anon_sym_e_GT] = ACTIONS(962), - [anon_sym_o_GT] = ACTIONS(962), - [anon_sym_err_PLUSout_GT] = ACTIONS(962), - [anon_sym_out_PLUSerr_GT] = ACTIONS(962), - [anon_sym_o_PLUSe_GT] = ACTIONS(962), - [anon_sym_e_PLUSo_GT] = ACTIONS(962), - [anon_sym_err_GT_GT] = ACTIONS(964), - [anon_sym_out_GT_GT] = ACTIONS(964), - [anon_sym_e_GT_GT] = ACTIONS(964), - [anon_sym_o_GT_GT] = ACTIONS(964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(964), - [aux_sym_unquoted_token1] = ACTIONS(962), + [aux_sym_shebang_repeat1] = STATE(784), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [772] = { - [sym_cell_path] = STATE(1202), - [sym_path] = STATE(1014), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3587), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1875), + [sym__unquoted_with_expr] = STATE(2050), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(772), - [aux_sym_cell_path_repeat1] = STATE(806), - [anon_sym_true] = ACTIONS(1822), - [anon_sym_false] = ACTIONS(1822), - [anon_sym_null] = ACTIONS(1822), - [aux_sym_cmd_identifier_token38] = ACTIONS(1822), - [aux_sym_cmd_identifier_token39] = ACTIONS(1822), - [aux_sym_cmd_identifier_token40] = ACTIONS(1822), - [sym__newline] = ACTIONS(1822), - [anon_sym_LBRACK] = ACTIONS(1822), - [anon_sym_LPAREN] = ACTIONS(1822), - [anon_sym_COMMA] = ACTIONS(1822), - [anon_sym_DOLLAR] = ACTIONS(1822), - [aux_sym_ctrl_match_token1] = ACTIONS(1822), - [anon_sym_RBRACE] = ACTIONS(1822), - [anon_sym__] = ACTIONS(1820), - [anon_sym_DOT_DOT] = ACTIONS(1820), - [aux_sym_expr_binary_token1] = ACTIONS(1822), - [aux_sym_expr_binary_token2] = ACTIONS(1822), - [aux_sym_expr_binary_token3] = ACTIONS(1822), - [aux_sym_expr_binary_token4] = ACTIONS(1822), - [aux_sym_expr_binary_token5] = ACTIONS(1822), - [aux_sym_expr_binary_token6] = ACTIONS(1822), - [aux_sym_expr_binary_token7] = ACTIONS(1822), - [aux_sym_expr_binary_token8] = ACTIONS(1822), - [aux_sym_expr_binary_token9] = ACTIONS(1822), - [aux_sym_expr_binary_token10] = ACTIONS(1822), - [aux_sym_expr_binary_token11] = ACTIONS(1822), - [aux_sym_expr_binary_token12] = ACTIONS(1822), - [aux_sym_expr_binary_token13] = ACTIONS(1822), - [aux_sym_expr_binary_token14] = ACTIONS(1822), - [aux_sym_expr_binary_token15] = ACTIONS(1822), - [aux_sym_expr_binary_token16] = ACTIONS(1822), - [aux_sym_expr_binary_token17] = ACTIONS(1822), - [aux_sym_expr_binary_token18] = ACTIONS(1822), - [aux_sym_expr_binary_token19] = ACTIONS(1822), - [aux_sym_expr_binary_token20] = ACTIONS(1822), - [aux_sym_expr_binary_token21] = ACTIONS(1822), - [aux_sym_expr_binary_token22] = ACTIONS(1822), - [aux_sym_expr_binary_token23] = ACTIONS(1822), - [aux_sym_expr_binary_token24] = ACTIONS(1822), - [aux_sym_expr_binary_token25] = ACTIONS(1822), - [aux_sym_expr_binary_token26] = ACTIONS(1822), - [aux_sym_expr_binary_token27] = ACTIONS(1822), - [aux_sym_expr_binary_token28] = ACTIONS(1822), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1822), - [anon_sym_DOT_DOT_LT] = ACTIONS(1822), - [aux_sym__val_number_decimal_token1] = ACTIONS(1820), - [aux_sym__val_number_decimal_token2] = ACTIONS(1822), - [aux_sym__val_number_decimal_token3] = ACTIONS(1822), - [aux_sym__val_number_decimal_token4] = ACTIONS(1822), - [aux_sym__val_number_token1] = ACTIONS(1822), - [aux_sym__val_number_token2] = ACTIONS(1822), - [aux_sym__val_number_token3] = ACTIONS(1822), - [anon_sym_0b] = ACTIONS(1820), - [anon_sym_0o] = ACTIONS(1820), - [anon_sym_0x] = ACTIONS(1820), - [sym_val_date] = ACTIONS(1822), - [anon_sym_DQUOTE] = ACTIONS(1822), - [sym__str_single_quotes] = ACTIONS(1822), - [sym__str_back_ticks] = ACTIONS(1822), - [anon_sym_err_GT] = ACTIONS(1820), - [anon_sym_out_GT] = ACTIONS(1820), - [anon_sym_e_GT] = ACTIONS(1820), - [anon_sym_o_GT] = ACTIONS(1820), - [anon_sym_err_PLUSout_GT] = ACTIONS(1820), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1820), - [anon_sym_o_PLUSe_GT] = ACTIONS(1820), - [anon_sym_e_PLUSo_GT] = ACTIONS(1820), - [anon_sym_err_GT_GT] = ACTIONS(1822), - [anon_sym_out_GT_GT] = ACTIONS(1822), - [anon_sym_e_GT_GT] = ACTIONS(1822), - [anon_sym_o_GT_GT] = ACTIONS(1822), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1822), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1822), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1822), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1822), - [aux_sym_unquoted_token1] = ACTIONS(1820), + [aux_sym_shebang_repeat1] = STATE(785), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [773] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(517), - [sym__spread_list] = STATE(7624), - [sym_val_entry] = STATE(7605), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3588), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1879), + [sym__unquoted_with_expr] = STATE(2055), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(773), - [aux_sym_list_body_repeat1] = STATE(773), - [anon_sym_true] = ACTIONS(3039), - [anon_sym_false] = ACTIONS(3039), - [anon_sym_null] = ACTIONS(3042), - [aux_sym_cmd_identifier_token38] = ACTIONS(3045), - [aux_sym_cmd_identifier_token39] = ACTIONS(3045), - [aux_sym_cmd_identifier_token40] = ACTIONS(3045), - [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3051), - [anon_sym_DOLLAR] = ACTIONS(3054), - [aux_sym_ctrl_match_token1] = ACTIONS(3057), - [anon_sym_DOT_DOT] = ACTIONS(3060), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(3063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3066), - [anon_sym_DOT_DOT_LT] = ACTIONS(3066), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(3069), - [aux_sym__val_number_decimal_token1] = ACTIONS(3072), - [aux_sym__val_number_decimal_token2] = ACTIONS(3075), - [aux_sym__val_number_decimal_token3] = ACTIONS(3078), - [aux_sym__val_number_decimal_token4] = ACTIONS(3081), - [aux_sym__val_number_token1] = ACTIONS(3084), - [aux_sym__val_number_token2] = ACTIONS(3084), - [aux_sym__val_number_token3] = ACTIONS(3084), - [anon_sym_0b] = ACTIONS(3087), - [anon_sym_0o] = ACTIONS(3090), - [anon_sym_0x] = ACTIONS(3090), - [sym_val_date] = ACTIONS(3093), - [anon_sym_DQUOTE] = ACTIONS(3096), - [sym__str_single_quotes] = ACTIONS(3099), - [sym__str_back_ticks] = ACTIONS(3099), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3102), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3105), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(3108), - [anon_sym_err_GT] = ACTIONS(3111), - [anon_sym_out_GT] = ACTIONS(3111), - [anon_sym_e_GT] = ACTIONS(3111), - [anon_sym_o_GT] = ACTIONS(3111), - [anon_sym_err_PLUSout_GT] = ACTIONS(3111), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3111), - [anon_sym_o_PLUSe_GT] = ACTIONS(3111), - [anon_sym_e_PLUSo_GT] = ACTIONS(3111), - [anon_sym_err_GT_GT] = ACTIONS(3114), - [anon_sym_out_GT_GT] = ACTIONS(3114), - [anon_sym_e_GT_GT] = ACTIONS(3114), - [anon_sym_o_GT_GT] = ACTIONS(3114), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3114), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3114), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3114), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3114), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3117), + [aux_sym_shebang_repeat1] = STATE(786), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [774] = { - [sym_cell_path] = STATE(1146), - [sym_path] = STATE(1014), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3589), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1880), + [sym__unquoted_with_expr] = STATE(2058), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(774), - [aux_sym_cell_path_repeat1] = STATE(806), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_null] = ACTIONS(1764), - [aux_sym_cmd_identifier_token38] = ACTIONS(1764), - [aux_sym_cmd_identifier_token39] = ACTIONS(1764), - [aux_sym_cmd_identifier_token40] = ACTIONS(1764), - [sym__newline] = ACTIONS(1764), - [anon_sym_LBRACK] = ACTIONS(1764), - [anon_sym_LPAREN] = ACTIONS(1764), - [anon_sym_COMMA] = ACTIONS(1764), - [anon_sym_DOLLAR] = ACTIONS(1764), - [aux_sym_ctrl_match_token1] = ACTIONS(1764), - [anon_sym_RBRACE] = ACTIONS(1764), - [anon_sym__] = ACTIONS(1762), - [anon_sym_DOT_DOT] = ACTIONS(1762), - [aux_sym_expr_binary_token1] = ACTIONS(1764), - [aux_sym_expr_binary_token2] = ACTIONS(1764), - [aux_sym_expr_binary_token3] = ACTIONS(1764), - [aux_sym_expr_binary_token4] = ACTIONS(1764), - [aux_sym_expr_binary_token5] = ACTIONS(1764), - [aux_sym_expr_binary_token6] = ACTIONS(1764), - [aux_sym_expr_binary_token7] = ACTIONS(1764), - [aux_sym_expr_binary_token8] = ACTIONS(1764), - [aux_sym_expr_binary_token9] = ACTIONS(1764), - [aux_sym_expr_binary_token10] = ACTIONS(1764), - [aux_sym_expr_binary_token11] = ACTIONS(1764), - [aux_sym_expr_binary_token12] = ACTIONS(1764), - [aux_sym_expr_binary_token13] = ACTIONS(1764), - [aux_sym_expr_binary_token14] = ACTIONS(1764), - [aux_sym_expr_binary_token15] = ACTIONS(1764), - [aux_sym_expr_binary_token16] = ACTIONS(1764), - [aux_sym_expr_binary_token17] = ACTIONS(1764), - [aux_sym_expr_binary_token18] = ACTIONS(1764), - [aux_sym_expr_binary_token19] = ACTIONS(1764), - [aux_sym_expr_binary_token20] = ACTIONS(1764), - [aux_sym_expr_binary_token21] = ACTIONS(1764), - [aux_sym_expr_binary_token22] = ACTIONS(1764), - [aux_sym_expr_binary_token23] = ACTIONS(1764), - [aux_sym_expr_binary_token24] = ACTIONS(1764), - [aux_sym_expr_binary_token25] = ACTIONS(1764), - [aux_sym_expr_binary_token26] = ACTIONS(1764), - [aux_sym_expr_binary_token27] = ACTIONS(1764), - [aux_sym_expr_binary_token28] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1764), - [anon_sym_DOT_DOT_LT] = ACTIONS(1764), - [aux_sym__val_number_decimal_token1] = ACTIONS(1762), - [aux_sym__val_number_decimal_token2] = ACTIONS(1764), - [aux_sym__val_number_decimal_token3] = ACTIONS(1764), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), - [aux_sym__val_number_token1] = ACTIONS(1764), - [aux_sym__val_number_token2] = ACTIONS(1764), - [aux_sym__val_number_token3] = ACTIONS(1764), - [anon_sym_0b] = ACTIONS(1762), - [anon_sym_0o] = ACTIONS(1762), - [anon_sym_0x] = ACTIONS(1762), - [sym_val_date] = ACTIONS(1764), - [anon_sym_DQUOTE] = ACTIONS(1764), - [sym__str_single_quotes] = ACTIONS(1764), - [sym__str_back_ticks] = ACTIONS(1764), - [anon_sym_err_GT] = ACTIONS(1762), - [anon_sym_out_GT] = ACTIONS(1762), - [anon_sym_e_GT] = ACTIONS(1762), - [anon_sym_o_GT] = ACTIONS(1762), - [anon_sym_err_PLUSout_GT] = ACTIONS(1762), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1762), - [anon_sym_o_PLUSe_GT] = ACTIONS(1762), - [anon_sym_e_PLUSo_GT] = ACTIONS(1762), - [anon_sym_err_GT_GT] = ACTIONS(1764), - [anon_sym_out_GT_GT] = ACTIONS(1764), - [anon_sym_e_GT_GT] = ACTIONS(1764), - [anon_sym_o_GT_GT] = ACTIONS(1764), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1764), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1764), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1764), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1764), - [aux_sym_unquoted_token1] = ACTIONS(1762), + [aux_sym_shebang_repeat1] = STATE(787), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [775] = { - [sym_cell_path] = STATE(1135), - [sym_path] = STATE(1014), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3590), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1881), + [sym__unquoted_with_expr] = STATE(1989), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(775), - [aux_sym_cell_path_repeat1] = STATE(806), - [anon_sym_true] = ACTIONS(947), - [anon_sym_false] = ACTIONS(947), - [anon_sym_null] = ACTIONS(947), - [aux_sym_cmd_identifier_token38] = ACTIONS(947), - [aux_sym_cmd_identifier_token39] = ACTIONS(947), - [aux_sym_cmd_identifier_token40] = ACTIONS(947), - [sym__newline] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_COMMA] = ACTIONS(947), - [anon_sym_DOLLAR] = ACTIONS(947), - [aux_sym_ctrl_match_token1] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(947), - [anon_sym__] = ACTIONS(945), - [anon_sym_DOT_DOT] = ACTIONS(945), - [aux_sym_expr_binary_token1] = ACTIONS(947), - [aux_sym_expr_binary_token2] = ACTIONS(947), - [aux_sym_expr_binary_token3] = ACTIONS(947), - [aux_sym_expr_binary_token4] = ACTIONS(947), - [aux_sym_expr_binary_token5] = ACTIONS(947), - [aux_sym_expr_binary_token6] = ACTIONS(947), - [aux_sym_expr_binary_token7] = ACTIONS(947), - [aux_sym_expr_binary_token8] = ACTIONS(947), - [aux_sym_expr_binary_token9] = ACTIONS(947), - [aux_sym_expr_binary_token10] = ACTIONS(947), - [aux_sym_expr_binary_token11] = ACTIONS(947), - [aux_sym_expr_binary_token12] = ACTIONS(947), - [aux_sym_expr_binary_token13] = ACTIONS(947), - [aux_sym_expr_binary_token14] = ACTIONS(947), - [aux_sym_expr_binary_token15] = ACTIONS(947), - [aux_sym_expr_binary_token16] = ACTIONS(947), - [aux_sym_expr_binary_token17] = ACTIONS(947), - [aux_sym_expr_binary_token18] = ACTIONS(947), - [aux_sym_expr_binary_token19] = ACTIONS(947), - [aux_sym_expr_binary_token20] = ACTIONS(947), - [aux_sym_expr_binary_token21] = ACTIONS(947), - [aux_sym_expr_binary_token22] = ACTIONS(947), - [aux_sym_expr_binary_token23] = ACTIONS(947), - [aux_sym_expr_binary_token24] = ACTIONS(947), - [aux_sym_expr_binary_token25] = ACTIONS(947), - [aux_sym_expr_binary_token26] = ACTIONS(947), - [aux_sym_expr_binary_token27] = ACTIONS(947), - [aux_sym_expr_binary_token28] = ACTIONS(947), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(947), - [anon_sym_DOT_DOT_LT] = ACTIONS(947), - [aux_sym__val_number_decimal_token1] = ACTIONS(945), - [aux_sym__val_number_decimal_token2] = ACTIONS(947), - [aux_sym__val_number_decimal_token3] = ACTIONS(947), - [aux_sym__val_number_decimal_token4] = ACTIONS(947), - [aux_sym__val_number_token1] = ACTIONS(947), - [aux_sym__val_number_token2] = ACTIONS(947), - [aux_sym__val_number_token3] = ACTIONS(947), - [anon_sym_0b] = ACTIONS(945), - [anon_sym_0o] = ACTIONS(945), - [anon_sym_0x] = ACTIONS(945), - [sym_val_date] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(947), - [sym__str_single_quotes] = ACTIONS(947), - [sym__str_back_ticks] = ACTIONS(947), - [anon_sym_err_GT] = ACTIONS(945), - [anon_sym_out_GT] = ACTIONS(945), - [anon_sym_e_GT] = ACTIONS(945), - [anon_sym_o_GT] = ACTIONS(945), - [anon_sym_err_PLUSout_GT] = ACTIONS(945), - [anon_sym_out_PLUSerr_GT] = ACTIONS(945), - [anon_sym_o_PLUSe_GT] = ACTIONS(945), - [anon_sym_e_PLUSo_GT] = ACTIONS(945), - [anon_sym_err_GT_GT] = ACTIONS(947), - [anon_sym_out_GT_GT] = ACTIONS(947), - [anon_sym_e_GT_GT] = ACTIONS(947), - [anon_sym_o_GT_GT] = ACTIONS(947), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(947), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(947), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(947), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(947), - [aux_sym_unquoted_token1] = ACTIONS(945), + [aux_sym_shebang_repeat1] = STATE(788), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [776] = { - [sym_cell_path] = STATE(1149), - [sym_path] = STATE(1014), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3591), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1884), + [sym__unquoted_with_expr] = STATE(2065), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(776), - [aux_sym_cell_path_repeat1] = STATE(806), - [anon_sym_true] = ACTIONS(1772), - [anon_sym_false] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1772), - [aux_sym_cmd_identifier_token38] = ACTIONS(1772), - [aux_sym_cmd_identifier_token39] = ACTIONS(1772), - [aux_sym_cmd_identifier_token40] = ACTIONS(1772), - [sym__newline] = ACTIONS(1772), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_DOLLAR] = ACTIONS(1772), - [aux_sym_ctrl_match_token1] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym__] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1770), - [aux_sym_expr_binary_token1] = ACTIONS(1772), - [aux_sym_expr_binary_token2] = ACTIONS(1772), - [aux_sym_expr_binary_token3] = ACTIONS(1772), - [aux_sym_expr_binary_token4] = ACTIONS(1772), - [aux_sym_expr_binary_token5] = ACTIONS(1772), - [aux_sym_expr_binary_token6] = ACTIONS(1772), - [aux_sym_expr_binary_token7] = ACTIONS(1772), - [aux_sym_expr_binary_token8] = ACTIONS(1772), - [aux_sym_expr_binary_token9] = ACTIONS(1772), - [aux_sym_expr_binary_token10] = ACTIONS(1772), - [aux_sym_expr_binary_token11] = ACTIONS(1772), - [aux_sym_expr_binary_token12] = ACTIONS(1772), - [aux_sym_expr_binary_token13] = ACTIONS(1772), - [aux_sym_expr_binary_token14] = ACTIONS(1772), - [aux_sym_expr_binary_token15] = ACTIONS(1772), - [aux_sym_expr_binary_token16] = ACTIONS(1772), - [aux_sym_expr_binary_token17] = ACTIONS(1772), - [aux_sym_expr_binary_token18] = ACTIONS(1772), - [aux_sym_expr_binary_token19] = ACTIONS(1772), - [aux_sym_expr_binary_token20] = ACTIONS(1772), - [aux_sym_expr_binary_token21] = ACTIONS(1772), - [aux_sym_expr_binary_token22] = ACTIONS(1772), - [aux_sym_expr_binary_token23] = ACTIONS(1772), - [aux_sym_expr_binary_token24] = ACTIONS(1772), - [aux_sym_expr_binary_token25] = ACTIONS(1772), - [aux_sym_expr_binary_token26] = ACTIONS(1772), - [aux_sym_expr_binary_token27] = ACTIONS(1772), - [aux_sym_expr_binary_token28] = ACTIONS(1772), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1772), - [anon_sym_DOT_DOT_LT] = ACTIONS(1772), - [aux_sym__val_number_decimal_token1] = ACTIONS(1770), - [aux_sym__val_number_decimal_token2] = ACTIONS(1772), - [aux_sym__val_number_decimal_token3] = ACTIONS(1772), - [aux_sym__val_number_decimal_token4] = ACTIONS(1772), - [aux_sym__val_number_token1] = ACTIONS(1772), - [aux_sym__val_number_token2] = ACTIONS(1772), - [aux_sym__val_number_token3] = ACTIONS(1772), - [anon_sym_0b] = ACTIONS(1770), - [anon_sym_0o] = ACTIONS(1770), - [anon_sym_0x] = ACTIONS(1770), - [sym_val_date] = ACTIONS(1772), - [anon_sym_DQUOTE] = ACTIONS(1772), - [sym__str_single_quotes] = ACTIONS(1772), - [sym__str_back_ticks] = ACTIONS(1772), - [anon_sym_err_GT] = ACTIONS(1770), - [anon_sym_out_GT] = ACTIONS(1770), - [anon_sym_e_GT] = ACTIONS(1770), - [anon_sym_o_GT] = ACTIONS(1770), - [anon_sym_err_PLUSout_GT] = ACTIONS(1770), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1770), - [anon_sym_o_PLUSe_GT] = ACTIONS(1770), - [anon_sym_e_PLUSo_GT] = ACTIONS(1770), - [anon_sym_err_GT_GT] = ACTIONS(1772), - [anon_sym_out_GT_GT] = ACTIONS(1772), - [anon_sym_e_GT_GT] = ACTIONS(1772), - [anon_sym_o_GT_GT] = ACTIONS(1772), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1772), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1772), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1772), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1772), - [aux_sym_unquoted_token1] = ACTIONS(1770), + [aux_sym_shebang_repeat1] = STATE(789), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [777] = { - [sym_cell_path] = STATE(1151), - [sym_path] = STATE(1014), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3592), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1885), + [sym__unquoted_with_expr] = STATE(2067), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(777), - [aux_sym_cell_path_repeat1] = STATE(806), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_null] = ACTIONS(1780), - [aux_sym_cmd_identifier_token38] = ACTIONS(1780), - [aux_sym_cmd_identifier_token39] = ACTIONS(1780), - [aux_sym_cmd_identifier_token40] = ACTIONS(1780), - [sym__newline] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_COMMA] = ACTIONS(1780), - [anon_sym_DOLLAR] = ACTIONS(1780), - [aux_sym_ctrl_match_token1] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym__] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(1778), - [aux_sym_expr_binary_token1] = ACTIONS(1780), - [aux_sym_expr_binary_token2] = ACTIONS(1780), - [aux_sym_expr_binary_token3] = ACTIONS(1780), - [aux_sym_expr_binary_token4] = ACTIONS(1780), - [aux_sym_expr_binary_token5] = ACTIONS(1780), - [aux_sym_expr_binary_token6] = ACTIONS(1780), - [aux_sym_expr_binary_token7] = ACTIONS(1780), - [aux_sym_expr_binary_token8] = ACTIONS(1780), - [aux_sym_expr_binary_token9] = ACTIONS(1780), - [aux_sym_expr_binary_token10] = ACTIONS(1780), - [aux_sym_expr_binary_token11] = ACTIONS(1780), - [aux_sym_expr_binary_token12] = ACTIONS(1780), - [aux_sym_expr_binary_token13] = ACTIONS(1780), - [aux_sym_expr_binary_token14] = ACTIONS(1780), - [aux_sym_expr_binary_token15] = ACTIONS(1780), - [aux_sym_expr_binary_token16] = ACTIONS(1780), - [aux_sym_expr_binary_token17] = ACTIONS(1780), - [aux_sym_expr_binary_token18] = ACTIONS(1780), - [aux_sym_expr_binary_token19] = ACTIONS(1780), - [aux_sym_expr_binary_token20] = ACTIONS(1780), - [aux_sym_expr_binary_token21] = ACTIONS(1780), - [aux_sym_expr_binary_token22] = ACTIONS(1780), - [aux_sym_expr_binary_token23] = ACTIONS(1780), - [aux_sym_expr_binary_token24] = ACTIONS(1780), - [aux_sym_expr_binary_token25] = ACTIONS(1780), - [aux_sym_expr_binary_token26] = ACTIONS(1780), - [aux_sym_expr_binary_token27] = ACTIONS(1780), - [aux_sym_expr_binary_token28] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1780), - [anon_sym_DOT_DOT_LT] = ACTIONS(1780), - [aux_sym__val_number_decimal_token1] = ACTIONS(1778), - [aux_sym__val_number_decimal_token2] = ACTIONS(1780), - [aux_sym__val_number_decimal_token3] = ACTIONS(1780), - [aux_sym__val_number_decimal_token4] = ACTIONS(1780), - [aux_sym__val_number_token1] = ACTIONS(1780), - [aux_sym__val_number_token2] = ACTIONS(1780), - [aux_sym__val_number_token3] = ACTIONS(1780), - [anon_sym_0b] = ACTIONS(1778), - [anon_sym_0o] = ACTIONS(1778), - [anon_sym_0x] = ACTIONS(1778), - [sym_val_date] = ACTIONS(1780), - [anon_sym_DQUOTE] = ACTIONS(1780), - [sym__str_single_quotes] = ACTIONS(1780), - [sym__str_back_ticks] = ACTIONS(1780), - [anon_sym_err_GT] = ACTIONS(1778), - [anon_sym_out_GT] = ACTIONS(1778), - [anon_sym_e_GT] = ACTIONS(1778), - [anon_sym_o_GT] = ACTIONS(1778), - [anon_sym_err_PLUSout_GT] = ACTIONS(1778), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1778), - [anon_sym_o_PLUSe_GT] = ACTIONS(1778), - [anon_sym_e_PLUSo_GT] = ACTIONS(1778), - [anon_sym_err_GT_GT] = ACTIONS(1780), - [anon_sym_out_GT_GT] = ACTIONS(1780), - [anon_sym_e_GT_GT] = ACTIONS(1780), - [anon_sym_o_GT_GT] = ACTIONS(1780), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1780), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1780), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1780), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1780), - [aux_sym_unquoted_token1] = ACTIONS(1778), + [aux_sym_shebang_repeat1] = STATE(790), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [778] = { - [sym_cell_path] = STATE(1158), - [sym_path] = STATE(1014), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3593), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1886), + [sym__unquoted_with_expr] = STATE(2074), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(778), - [aux_sym_cell_path_repeat1] = STATE(806), - [anon_sym_true] = ACTIONS(1603), - [anon_sym_false] = ACTIONS(1603), - [anon_sym_null] = ACTIONS(1603), - [aux_sym_cmd_identifier_token38] = ACTIONS(1603), - [aux_sym_cmd_identifier_token39] = ACTIONS(1603), - [aux_sym_cmd_identifier_token40] = ACTIONS(1603), - [sym__newline] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1603), - [anon_sym_LPAREN] = ACTIONS(1603), - [anon_sym_COMMA] = ACTIONS(1603), - [anon_sym_DOLLAR] = ACTIONS(1603), - [aux_sym_ctrl_match_token1] = ACTIONS(1603), - [anon_sym_RBRACE] = ACTIONS(1603), - [anon_sym__] = ACTIONS(1599), - [anon_sym_DOT_DOT] = ACTIONS(1599), - [aux_sym_expr_binary_token1] = ACTIONS(1603), - [aux_sym_expr_binary_token2] = ACTIONS(1603), - [aux_sym_expr_binary_token3] = ACTIONS(1603), - [aux_sym_expr_binary_token4] = ACTIONS(1603), - [aux_sym_expr_binary_token5] = ACTIONS(1603), - [aux_sym_expr_binary_token6] = ACTIONS(1603), - [aux_sym_expr_binary_token7] = ACTIONS(1603), - [aux_sym_expr_binary_token8] = ACTIONS(1603), - [aux_sym_expr_binary_token9] = ACTIONS(1603), - [aux_sym_expr_binary_token10] = ACTIONS(1603), - [aux_sym_expr_binary_token11] = ACTIONS(1603), - [aux_sym_expr_binary_token12] = ACTIONS(1603), - [aux_sym_expr_binary_token13] = ACTIONS(1603), - [aux_sym_expr_binary_token14] = ACTIONS(1603), - [aux_sym_expr_binary_token15] = ACTIONS(1603), - [aux_sym_expr_binary_token16] = ACTIONS(1603), - [aux_sym_expr_binary_token17] = ACTIONS(1603), - [aux_sym_expr_binary_token18] = ACTIONS(1603), - [aux_sym_expr_binary_token19] = ACTIONS(1603), - [aux_sym_expr_binary_token20] = ACTIONS(1603), - [aux_sym_expr_binary_token21] = ACTIONS(1603), - [aux_sym_expr_binary_token22] = ACTIONS(1603), - [aux_sym_expr_binary_token23] = ACTIONS(1603), - [aux_sym_expr_binary_token24] = ACTIONS(1603), - [aux_sym_expr_binary_token25] = ACTIONS(1603), - [aux_sym_expr_binary_token26] = ACTIONS(1603), - [aux_sym_expr_binary_token27] = ACTIONS(1603), - [aux_sym_expr_binary_token28] = ACTIONS(1603), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1603), - [anon_sym_DOT_DOT_LT] = ACTIONS(1603), - [aux_sym__val_number_decimal_token1] = ACTIONS(1599), - [aux_sym__val_number_decimal_token2] = ACTIONS(1603), - [aux_sym__val_number_decimal_token3] = ACTIONS(1603), - [aux_sym__val_number_decimal_token4] = ACTIONS(1603), - [aux_sym__val_number_token1] = ACTIONS(1603), - [aux_sym__val_number_token2] = ACTIONS(1603), - [aux_sym__val_number_token3] = ACTIONS(1603), - [anon_sym_0b] = ACTIONS(1599), - [anon_sym_0o] = ACTIONS(1599), - [anon_sym_0x] = ACTIONS(1599), - [sym_val_date] = ACTIONS(1603), - [anon_sym_DQUOTE] = ACTIONS(1603), - [sym__str_single_quotes] = ACTIONS(1603), - [sym__str_back_ticks] = ACTIONS(1603), - [anon_sym_err_GT] = ACTIONS(1599), - [anon_sym_out_GT] = ACTIONS(1599), - [anon_sym_e_GT] = ACTIONS(1599), - [anon_sym_o_GT] = ACTIONS(1599), - [anon_sym_err_PLUSout_GT] = ACTIONS(1599), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), - [anon_sym_o_PLUSe_GT] = ACTIONS(1599), - [anon_sym_e_PLUSo_GT] = ACTIONS(1599), - [anon_sym_err_GT_GT] = ACTIONS(1603), - [anon_sym_out_GT_GT] = ACTIONS(1603), - [anon_sym_e_GT_GT] = ACTIONS(1603), - [anon_sym_o_GT_GT] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1603), - [aux_sym_unquoted_token1] = ACTIONS(1599), + [aux_sym_shebang_repeat1] = STATE(791), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [779] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(517), - [sym__spread_list] = STATE(7624), - [sym_val_entry] = STATE(7055), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3594), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1887), + [sym__unquoted_with_expr] = STATE(2076), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(779), - [aux_sym_list_body_repeat1] = STATE(773), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym_shebang_repeat1] = STATE(792), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [780] = { - [sym_cell_path] = STATE(1150), - [sym_path] = STATE(1014), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3595), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1888), + [sym__unquoted_with_expr] = STATE(2158), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(780), - [aux_sym_cell_path_repeat1] = STATE(806), - [anon_sym_true] = ACTIONS(1776), - [anon_sym_false] = ACTIONS(1776), - [anon_sym_null] = ACTIONS(1776), - [aux_sym_cmd_identifier_token38] = ACTIONS(1776), - [aux_sym_cmd_identifier_token39] = ACTIONS(1776), - [aux_sym_cmd_identifier_token40] = ACTIONS(1776), - [sym__newline] = ACTIONS(1776), - [anon_sym_LBRACK] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1776), - [anon_sym_COMMA] = ACTIONS(1776), - [anon_sym_DOLLAR] = ACTIONS(1776), - [aux_sym_ctrl_match_token1] = ACTIONS(1776), - [anon_sym_RBRACE] = ACTIONS(1776), - [anon_sym__] = ACTIONS(1774), - [anon_sym_DOT_DOT] = ACTIONS(1774), - [aux_sym_expr_binary_token1] = ACTIONS(1776), - [aux_sym_expr_binary_token2] = ACTIONS(1776), - [aux_sym_expr_binary_token3] = ACTIONS(1776), - [aux_sym_expr_binary_token4] = ACTIONS(1776), - [aux_sym_expr_binary_token5] = ACTIONS(1776), - [aux_sym_expr_binary_token6] = ACTIONS(1776), - [aux_sym_expr_binary_token7] = ACTIONS(1776), - [aux_sym_expr_binary_token8] = ACTIONS(1776), - [aux_sym_expr_binary_token9] = ACTIONS(1776), - [aux_sym_expr_binary_token10] = ACTIONS(1776), - [aux_sym_expr_binary_token11] = ACTIONS(1776), - [aux_sym_expr_binary_token12] = ACTIONS(1776), - [aux_sym_expr_binary_token13] = ACTIONS(1776), - [aux_sym_expr_binary_token14] = ACTIONS(1776), - [aux_sym_expr_binary_token15] = ACTIONS(1776), - [aux_sym_expr_binary_token16] = ACTIONS(1776), - [aux_sym_expr_binary_token17] = ACTIONS(1776), - [aux_sym_expr_binary_token18] = ACTIONS(1776), - [aux_sym_expr_binary_token19] = ACTIONS(1776), - [aux_sym_expr_binary_token20] = ACTIONS(1776), - [aux_sym_expr_binary_token21] = ACTIONS(1776), - [aux_sym_expr_binary_token22] = ACTIONS(1776), - [aux_sym_expr_binary_token23] = ACTIONS(1776), - [aux_sym_expr_binary_token24] = ACTIONS(1776), - [aux_sym_expr_binary_token25] = ACTIONS(1776), - [aux_sym_expr_binary_token26] = ACTIONS(1776), - [aux_sym_expr_binary_token27] = ACTIONS(1776), - [aux_sym_expr_binary_token28] = ACTIONS(1776), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1776), - [anon_sym_DOT_DOT_LT] = ACTIONS(1776), - [aux_sym__val_number_decimal_token1] = ACTIONS(1774), - [aux_sym__val_number_decimal_token2] = ACTIONS(1776), - [aux_sym__val_number_decimal_token3] = ACTIONS(1776), - [aux_sym__val_number_decimal_token4] = ACTIONS(1776), - [aux_sym__val_number_token1] = ACTIONS(1776), - [aux_sym__val_number_token2] = ACTIONS(1776), - [aux_sym__val_number_token3] = ACTIONS(1776), - [anon_sym_0b] = ACTIONS(1774), - [anon_sym_0o] = ACTIONS(1774), - [anon_sym_0x] = ACTIONS(1774), - [sym_val_date] = ACTIONS(1776), - [anon_sym_DQUOTE] = ACTIONS(1776), - [sym__str_single_quotes] = ACTIONS(1776), - [sym__str_back_ticks] = ACTIONS(1776), - [anon_sym_err_GT] = ACTIONS(1774), - [anon_sym_out_GT] = ACTIONS(1774), - [anon_sym_e_GT] = ACTIONS(1774), - [anon_sym_o_GT] = ACTIONS(1774), - [anon_sym_err_PLUSout_GT] = ACTIONS(1774), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1774), - [anon_sym_o_PLUSe_GT] = ACTIONS(1774), - [anon_sym_e_PLUSo_GT] = ACTIONS(1774), - [anon_sym_err_GT_GT] = ACTIONS(1776), - [anon_sym_out_GT_GT] = ACTIONS(1776), - [anon_sym_e_GT_GT] = ACTIONS(1776), - [anon_sym_o_GT_GT] = ACTIONS(1776), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1776), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1776), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1776), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1776), - [aux_sym_unquoted_token1] = ACTIONS(1774), + [aux_sym_shebang_repeat1] = STATE(793), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [781] = { + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3596), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1890), + [sym__unquoted_with_expr] = STATE(2085), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(781), - [anon_sym_true] = ACTIONS(988), - [anon_sym_false] = ACTIONS(988), - [anon_sym_null] = ACTIONS(988), - [aux_sym_cmd_identifier_token38] = ACTIONS(988), - [aux_sym_cmd_identifier_token39] = ACTIONS(988), - [aux_sym_cmd_identifier_token40] = ACTIONS(988), - [sym__newline] = ACTIONS(988), - [anon_sym_LBRACK] = ACTIONS(988), - [anon_sym_LPAREN] = ACTIONS(988), - [anon_sym_COMMA] = ACTIONS(988), - [anon_sym_DOLLAR] = ACTIONS(988), - [aux_sym_ctrl_match_token1] = ACTIONS(988), - [anon_sym_RBRACE] = ACTIONS(988), - [anon_sym__] = ACTIONS(986), - [anon_sym_DOT_DOT] = ACTIONS(986), - [aux_sym_expr_binary_token1] = ACTIONS(988), - [aux_sym_expr_binary_token2] = ACTIONS(988), - [aux_sym_expr_binary_token3] = ACTIONS(988), - [aux_sym_expr_binary_token4] = ACTIONS(988), - [aux_sym_expr_binary_token5] = ACTIONS(988), - [aux_sym_expr_binary_token6] = ACTIONS(988), - [aux_sym_expr_binary_token7] = ACTIONS(988), - [aux_sym_expr_binary_token8] = ACTIONS(988), - [aux_sym_expr_binary_token9] = ACTIONS(988), - [aux_sym_expr_binary_token10] = ACTIONS(988), - [aux_sym_expr_binary_token11] = ACTIONS(988), - [aux_sym_expr_binary_token12] = ACTIONS(988), - [aux_sym_expr_binary_token13] = ACTIONS(988), - [aux_sym_expr_binary_token14] = ACTIONS(988), - [aux_sym_expr_binary_token15] = ACTIONS(988), - [aux_sym_expr_binary_token16] = ACTIONS(988), - [aux_sym_expr_binary_token17] = ACTIONS(988), - [aux_sym_expr_binary_token18] = ACTIONS(988), - [aux_sym_expr_binary_token19] = ACTIONS(988), - [aux_sym_expr_binary_token20] = ACTIONS(988), - [aux_sym_expr_binary_token21] = ACTIONS(988), - [aux_sym_expr_binary_token22] = ACTIONS(988), - [aux_sym_expr_binary_token23] = ACTIONS(988), - [aux_sym_expr_binary_token24] = ACTIONS(988), - [aux_sym_expr_binary_token25] = ACTIONS(988), - [aux_sym_expr_binary_token26] = ACTIONS(988), - [aux_sym_expr_binary_token27] = ACTIONS(988), - [aux_sym_expr_binary_token28] = ACTIONS(988), - [anon_sym_DOT_DOT2] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(986), - [anon_sym_DOT_DOT_EQ] = ACTIONS(986), - [anon_sym_DOT_DOT_LT] = ACTIONS(986), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), - [anon_sym_DOT_DOT_LT2] = ACTIONS(988), - [aux_sym__val_number_decimal_token1] = ACTIONS(986), - [aux_sym__val_number_decimal_token2] = ACTIONS(988), - [aux_sym__val_number_decimal_token3] = ACTIONS(988), - [aux_sym__val_number_decimal_token4] = ACTIONS(988), - [aux_sym__val_number_token1] = ACTIONS(988), - [aux_sym__val_number_token2] = ACTIONS(988), - [aux_sym__val_number_token3] = ACTIONS(988), - [anon_sym_0b] = ACTIONS(986), - [anon_sym_0o] = ACTIONS(986), - [anon_sym_0x] = ACTIONS(986), - [sym_val_date] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym__str_single_quotes] = ACTIONS(988), - [sym__str_back_ticks] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(986), - [anon_sym_out_GT] = ACTIONS(986), - [anon_sym_e_GT] = ACTIONS(986), - [anon_sym_o_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT] = ACTIONS(986), - [anon_sym_err_GT_GT] = ACTIONS(988), - [anon_sym_out_GT_GT] = ACTIONS(988), - [anon_sym_e_GT_GT] = ACTIONS(988), - [anon_sym_o_GT_GT] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), - [aux_sym_unquoted_token1] = ACTIONS(986), + [aux_sym_shebang_repeat1] = STATE(794), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [782] = { + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3597), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1891), + [sym__unquoted_with_expr] = STATE(2087), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(782), - [anon_sym_true] = ACTIONS(992), - [anon_sym_false] = ACTIONS(992), - [anon_sym_null] = ACTIONS(992), - [aux_sym_cmd_identifier_token38] = ACTIONS(992), - [aux_sym_cmd_identifier_token39] = ACTIONS(992), - [aux_sym_cmd_identifier_token40] = ACTIONS(992), - [sym__newline] = ACTIONS(992), - [anon_sym_LBRACK] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_COMMA] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(992), - [aux_sym_ctrl_match_token1] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym__] = ACTIONS(990), - [anon_sym_DOT_DOT] = ACTIONS(990), - [aux_sym_expr_binary_token1] = ACTIONS(992), - [aux_sym_expr_binary_token2] = ACTIONS(992), - [aux_sym_expr_binary_token3] = ACTIONS(992), - [aux_sym_expr_binary_token4] = ACTIONS(992), - [aux_sym_expr_binary_token5] = ACTIONS(992), - [aux_sym_expr_binary_token6] = ACTIONS(992), - [aux_sym_expr_binary_token7] = ACTIONS(992), - [aux_sym_expr_binary_token8] = ACTIONS(992), - [aux_sym_expr_binary_token9] = ACTIONS(992), - [aux_sym_expr_binary_token10] = ACTIONS(992), - [aux_sym_expr_binary_token11] = ACTIONS(992), - [aux_sym_expr_binary_token12] = ACTIONS(992), - [aux_sym_expr_binary_token13] = ACTIONS(992), - [aux_sym_expr_binary_token14] = ACTIONS(992), - [aux_sym_expr_binary_token15] = ACTIONS(992), - [aux_sym_expr_binary_token16] = ACTIONS(992), - [aux_sym_expr_binary_token17] = ACTIONS(992), - [aux_sym_expr_binary_token18] = ACTIONS(992), - [aux_sym_expr_binary_token19] = ACTIONS(992), - [aux_sym_expr_binary_token20] = ACTIONS(992), - [aux_sym_expr_binary_token21] = ACTIONS(992), - [aux_sym_expr_binary_token22] = ACTIONS(992), - [aux_sym_expr_binary_token23] = ACTIONS(992), - [aux_sym_expr_binary_token24] = ACTIONS(992), - [aux_sym_expr_binary_token25] = ACTIONS(992), - [aux_sym_expr_binary_token26] = ACTIONS(992), - [aux_sym_expr_binary_token27] = ACTIONS(992), - [aux_sym_expr_binary_token28] = ACTIONS(992), - [anon_sym_DOT_DOT2] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ] = ACTIONS(990), - [anon_sym_DOT_DOT_LT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), - [anon_sym_DOT_DOT_LT2] = ACTIONS(992), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(992), - [aux_sym__val_number_decimal_token3] = ACTIONS(992), - [aux_sym__val_number_decimal_token4] = ACTIONS(992), - [aux_sym__val_number_token1] = ACTIONS(992), - [aux_sym__val_number_token2] = ACTIONS(992), - [aux_sym__val_number_token3] = ACTIONS(992), - [anon_sym_0b] = ACTIONS(990), - [anon_sym_0o] = ACTIONS(990), - [anon_sym_0x] = ACTIONS(990), - [sym_val_date] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(990), - [anon_sym_out_GT] = ACTIONS(990), - [anon_sym_e_GT] = ACTIONS(990), - [anon_sym_o_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT] = ACTIONS(990), - [anon_sym_err_GT_GT] = ACTIONS(992), - [anon_sym_out_GT_GT] = ACTIONS(992), - [anon_sym_e_GT_GT] = ACTIONS(992), - [anon_sym_o_GT_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), - [aux_sym_unquoted_token1] = ACTIONS(990), + [aux_sym_shebang_repeat1] = STATE(795), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [783] = { - [sym_cell_path] = STATE(1177), - [sym_path] = STATE(1014), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2138), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1817), + [sym__unquoted_with_expr] = STATE(2012), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(783), - [aux_sym_cell_path_repeat1] = STATE(806), - [anon_sym_true] = ACTIONS(1849), - [anon_sym_false] = ACTIONS(1849), - [anon_sym_null] = ACTIONS(1849), - [aux_sym_cmd_identifier_token38] = ACTIONS(1849), - [aux_sym_cmd_identifier_token39] = ACTIONS(1849), - [aux_sym_cmd_identifier_token40] = ACTIONS(1849), - [sym__newline] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1849), - [anon_sym_LPAREN] = ACTIONS(1849), - [anon_sym_COMMA] = ACTIONS(1849), - [anon_sym_DOLLAR] = ACTIONS(1849), - [aux_sym_ctrl_match_token1] = ACTIONS(1849), - [anon_sym_RBRACE] = ACTIONS(1849), - [anon_sym__] = ACTIONS(1847), - [anon_sym_DOT_DOT] = ACTIONS(1847), - [aux_sym_expr_binary_token1] = ACTIONS(1849), - [aux_sym_expr_binary_token2] = ACTIONS(1849), - [aux_sym_expr_binary_token3] = ACTIONS(1849), - [aux_sym_expr_binary_token4] = ACTIONS(1849), - [aux_sym_expr_binary_token5] = ACTIONS(1849), - [aux_sym_expr_binary_token6] = ACTIONS(1849), - [aux_sym_expr_binary_token7] = ACTIONS(1849), - [aux_sym_expr_binary_token8] = ACTIONS(1849), - [aux_sym_expr_binary_token9] = ACTIONS(1849), - [aux_sym_expr_binary_token10] = ACTIONS(1849), - [aux_sym_expr_binary_token11] = ACTIONS(1849), - [aux_sym_expr_binary_token12] = ACTIONS(1849), - [aux_sym_expr_binary_token13] = ACTIONS(1849), - [aux_sym_expr_binary_token14] = ACTIONS(1849), - [aux_sym_expr_binary_token15] = ACTIONS(1849), - [aux_sym_expr_binary_token16] = ACTIONS(1849), - [aux_sym_expr_binary_token17] = ACTIONS(1849), - [aux_sym_expr_binary_token18] = ACTIONS(1849), - [aux_sym_expr_binary_token19] = ACTIONS(1849), - [aux_sym_expr_binary_token20] = ACTIONS(1849), - [aux_sym_expr_binary_token21] = ACTIONS(1849), - [aux_sym_expr_binary_token22] = ACTIONS(1849), - [aux_sym_expr_binary_token23] = ACTIONS(1849), - [aux_sym_expr_binary_token24] = ACTIONS(1849), - [aux_sym_expr_binary_token25] = ACTIONS(1849), - [aux_sym_expr_binary_token26] = ACTIONS(1849), - [aux_sym_expr_binary_token27] = ACTIONS(1849), - [aux_sym_expr_binary_token28] = ACTIONS(1849), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1849), - [anon_sym_DOT_DOT_LT] = ACTIONS(1849), - [aux_sym__val_number_decimal_token1] = ACTIONS(1847), - [aux_sym__val_number_decimal_token2] = ACTIONS(1849), - [aux_sym__val_number_decimal_token3] = ACTIONS(1849), - [aux_sym__val_number_decimal_token4] = ACTIONS(1849), - [aux_sym__val_number_token1] = ACTIONS(1849), - [aux_sym__val_number_token2] = ACTIONS(1849), - [aux_sym__val_number_token3] = ACTIONS(1849), - [anon_sym_0b] = ACTIONS(1847), - [anon_sym_0o] = ACTIONS(1847), - [anon_sym_0x] = ACTIONS(1847), - [sym_val_date] = ACTIONS(1849), - [anon_sym_DQUOTE] = ACTIONS(1849), - [sym__str_single_quotes] = ACTIONS(1849), - [sym__str_back_ticks] = ACTIONS(1849), - [anon_sym_err_GT] = ACTIONS(1847), - [anon_sym_out_GT] = ACTIONS(1847), - [anon_sym_e_GT] = ACTIONS(1847), - [anon_sym_o_GT] = ACTIONS(1847), - [anon_sym_err_PLUSout_GT] = ACTIONS(1847), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1847), - [anon_sym_o_PLUSe_GT] = ACTIONS(1847), - [anon_sym_e_PLUSo_GT] = ACTIONS(1847), - [anon_sym_err_GT_GT] = ACTIONS(1849), - [anon_sym_out_GT_GT] = ACTIONS(1849), - [anon_sym_e_GT_GT] = ACTIONS(1849), - [anon_sym_o_GT_GT] = ACTIONS(1849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1849), - [aux_sym_unquoted_token1] = ACTIONS(1847), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [784] = { + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1882), + [sym__unquoted_with_expr] = STATE(2094), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(784), - [anon_sym_true] = ACTIONS(996), - [anon_sym_false] = ACTIONS(996), - [anon_sym_null] = ACTIONS(996), - [aux_sym_cmd_identifier_token38] = ACTIONS(996), - [aux_sym_cmd_identifier_token39] = ACTIONS(996), - [aux_sym_cmd_identifier_token40] = ACTIONS(996), - [sym__newline] = ACTIONS(996), - [anon_sym_LBRACK] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_COMMA] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(996), - [aux_sym_ctrl_match_token1] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym__] = ACTIONS(994), - [anon_sym_DOT_DOT] = ACTIONS(994), - [aux_sym_expr_binary_token1] = ACTIONS(996), - [aux_sym_expr_binary_token2] = ACTIONS(996), - [aux_sym_expr_binary_token3] = ACTIONS(996), - [aux_sym_expr_binary_token4] = ACTIONS(996), - [aux_sym_expr_binary_token5] = ACTIONS(996), - [aux_sym_expr_binary_token6] = ACTIONS(996), - [aux_sym_expr_binary_token7] = ACTIONS(996), - [aux_sym_expr_binary_token8] = ACTIONS(996), - [aux_sym_expr_binary_token9] = ACTIONS(996), - [aux_sym_expr_binary_token10] = ACTIONS(996), - [aux_sym_expr_binary_token11] = ACTIONS(996), - [aux_sym_expr_binary_token12] = ACTIONS(996), - [aux_sym_expr_binary_token13] = ACTIONS(996), - [aux_sym_expr_binary_token14] = ACTIONS(996), - [aux_sym_expr_binary_token15] = ACTIONS(996), - [aux_sym_expr_binary_token16] = ACTIONS(996), - [aux_sym_expr_binary_token17] = ACTIONS(996), - [aux_sym_expr_binary_token18] = ACTIONS(996), - [aux_sym_expr_binary_token19] = ACTIONS(996), - [aux_sym_expr_binary_token20] = ACTIONS(996), - [aux_sym_expr_binary_token21] = ACTIONS(996), - [aux_sym_expr_binary_token22] = ACTIONS(996), - [aux_sym_expr_binary_token23] = ACTIONS(996), - [aux_sym_expr_binary_token24] = ACTIONS(996), - [aux_sym_expr_binary_token25] = ACTIONS(996), - [aux_sym_expr_binary_token26] = ACTIONS(996), - [aux_sym_expr_binary_token27] = ACTIONS(996), - [aux_sym_expr_binary_token28] = ACTIONS(996), - [anon_sym_DOT_DOT2] = ACTIONS(994), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_EQ] = ACTIONS(994), - [anon_sym_DOT_DOT_LT] = ACTIONS(994), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), - [anon_sym_DOT_DOT_LT2] = ACTIONS(996), - [aux_sym__val_number_decimal_token1] = ACTIONS(994), - [aux_sym__val_number_decimal_token2] = ACTIONS(996), - [aux_sym__val_number_decimal_token3] = ACTIONS(996), - [aux_sym__val_number_decimal_token4] = ACTIONS(996), - [aux_sym__val_number_token1] = ACTIONS(996), - [aux_sym__val_number_token2] = ACTIONS(996), - [aux_sym__val_number_token3] = ACTIONS(996), - [anon_sym_0b] = ACTIONS(994), - [anon_sym_0o] = ACTIONS(994), - [anon_sym_0x] = ACTIONS(994), - [sym_val_date] = ACTIONS(996), - [anon_sym_DQUOTE] = ACTIONS(996), - [sym__str_single_quotes] = ACTIONS(996), - [sym__str_back_ticks] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(994), - [anon_sym_out_GT] = ACTIONS(994), - [anon_sym_e_GT] = ACTIONS(994), - [anon_sym_o_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT] = ACTIONS(994), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), - [aux_sym_unquoted_token1] = ACTIONS(994), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [785] = { - [sym_cell_path] = STATE(1146), - [sym_path] = STATE(1014), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3613), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1897), + [sym__unquoted_with_expr] = STATE(2110), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(785), - [aux_sym_cell_path_repeat1] = STATE(806), - [anon_sym_true] = ACTIONS(3120), - [anon_sym_false] = ACTIONS(3120), - [anon_sym_null] = ACTIONS(3120), - [aux_sym_cmd_identifier_token38] = ACTIONS(3120), - [aux_sym_cmd_identifier_token39] = ACTIONS(3120), - [aux_sym_cmd_identifier_token40] = ACTIONS(3120), - [sym__newline] = ACTIONS(3120), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_COMMA] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3120), - [aux_sym_ctrl_match_token1] = ACTIONS(3120), - [anon_sym_RBRACE] = ACTIONS(3120), - [anon_sym__] = ACTIONS(3123), - [anon_sym_DOT_DOT] = ACTIONS(3123), - [aux_sym_expr_binary_token1] = ACTIONS(1764), - [aux_sym_expr_binary_token2] = ACTIONS(1764), - [aux_sym_expr_binary_token3] = ACTIONS(1764), - [aux_sym_expr_binary_token4] = ACTIONS(1764), - [aux_sym_expr_binary_token5] = ACTIONS(1764), - [aux_sym_expr_binary_token6] = ACTIONS(1764), - [aux_sym_expr_binary_token7] = ACTIONS(1764), - [aux_sym_expr_binary_token8] = ACTIONS(1764), - [aux_sym_expr_binary_token9] = ACTIONS(1764), - [aux_sym_expr_binary_token10] = ACTIONS(1764), - [aux_sym_expr_binary_token11] = ACTIONS(1764), - [aux_sym_expr_binary_token12] = ACTIONS(1764), - [aux_sym_expr_binary_token13] = ACTIONS(1764), - [aux_sym_expr_binary_token14] = ACTIONS(1764), - [aux_sym_expr_binary_token15] = ACTIONS(1764), - [aux_sym_expr_binary_token16] = ACTIONS(1764), - [aux_sym_expr_binary_token17] = ACTIONS(1764), - [aux_sym_expr_binary_token18] = ACTIONS(1764), - [aux_sym_expr_binary_token19] = ACTIONS(1764), - [aux_sym_expr_binary_token20] = ACTIONS(1764), - [aux_sym_expr_binary_token21] = ACTIONS(1764), - [aux_sym_expr_binary_token22] = ACTIONS(1764), - [aux_sym_expr_binary_token23] = ACTIONS(1764), - [aux_sym_expr_binary_token24] = ACTIONS(1764), - [aux_sym_expr_binary_token25] = ACTIONS(1764), - [aux_sym_expr_binary_token26] = ACTIONS(1764), - [aux_sym_expr_binary_token27] = ACTIONS(1764), - [aux_sym_expr_binary_token28] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3120), - [anon_sym_DOT_DOT_LT] = ACTIONS(3120), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3120), - [aux_sym__val_number_decimal_token3] = ACTIONS(3120), - [aux_sym__val_number_decimal_token4] = ACTIONS(3120), - [aux_sym__val_number_token1] = ACTIONS(3120), - [aux_sym__val_number_token2] = ACTIONS(3120), - [aux_sym__val_number_token3] = ACTIONS(3120), - [anon_sym_0b] = ACTIONS(3123), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(3120), - [sym__str_single_quotes] = ACTIONS(3120), - [sym__str_back_ticks] = ACTIONS(3120), - [anon_sym_err_GT] = ACTIONS(3123), - [anon_sym_out_GT] = ACTIONS(3123), - [anon_sym_e_GT] = ACTIONS(3123), - [anon_sym_o_GT] = ACTIONS(3123), - [anon_sym_err_PLUSout_GT] = ACTIONS(3123), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3123), - [anon_sym_o_PLUSe_GT] = ACTIONS(3123), - [anon_sym_e_PLUSo_GT] = ACTIONS(3123), - [anon_sym_err_GT_GT] = ACTIONS(3120), - [anon_sym_out_GT_GT] = ACTIONS(3120), - [anon_sym_e_GT_GT] = ACTIONS(3120), - [anon_sym_o_GT_GT] = ACTIONS(3120), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3120), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3120), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3120), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3120), - [aux_sym_unquoted_token1] = ACTIONS(3123), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [786] = { - [sym_cell_path] = STATE(1178), - [sym_path] = STATE(1014), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3615), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1761), + [sym__unquoted_with_expr] = STATE(2134), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(786), - [aux_sym_cell_path_repeat1] = STATE(806), - [anon_sym_true] = ACTIONS(1873), - [anon_sym_false] = ACTIONS(1873), - [anon_sym_null] = ACTIONS(1873), - [aux_sym_cmd_identifier_token38] = ACTIONS(1873), - [aux_sym_cmd_identifier_token39] = ACTIONS(1873), - [aux_sym_cmd_identifier_token40] = ACTIONS(1873), - [sym__newline] = ACTIONS(1873), - [anon_sym_LBRACK] = ACTIONS(1873), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_COMMA] = ACTIONS(1873), - [anon_sym_DOLLAR] = ACTIONS(1873), - [aux_sym_ctrl_match_token1] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(1873), - [anon_sym__] = ACTIONS(1871), - [anon_sym_DOT_DOT] = ACTIONS(1871), - [aux_sym_expr_binary_token1] = ACTIONS(1873), - [aux_sym_expr_binary_token2] = ACTIONS(1873), - [aux_sym_expr_binary_token3] = ACTIONS(1873), - [aux_sym_expr_binary_token4] = ACTIONS(1873), - [aux_sym_expr_binary_token5] = ACTIONS(1873), - [aux_sym_expr_binary_token6] = ACTIONS(1873), - [aux_sym_expr_binary_token7] = ACTIONS(1873), - [aux_sym_expr_binary_token8] = ACTIONS(1873), - [aux_sym_expr_binary_token9] = ACTIONS(1873), - [aux_sym_expr_binary_token10] = ACTIONS(1873), - [aux_sym_expr_binary_token11] = ACTIONS(1873), - [aux_sym_expr_binary_token12] = ACTIONS(1873), - [aux_sym_expr_binary_token13] = ACTIONS(1873), - [aux_sym_expr_binary_token14] = ACTIONS(1873), - [aux_sym_expr_binary_token15] = ACTIONS(1873), - [aux_sym_expr_binary_token16] = ACTIONS(1873), - [aux_sym_expr_binary_token17] = ACTIONS(1873), - [aux_sym_expr_binary_token18] = ACTIONS(1873), - [aux_sym_expr_binary_token19] = ACTIONS(1873), - [aux_sym_expr_binary_token20] = ACTIONS(1873), - [aux_sym_expr_binary_token21] = ACTIONS(1873), - [aux_sym_expr_binary_token22] = ACTIONS(1873), - [aux_sym_expr_binary_token23] = ACTIONS(1873), - [aux_sym_expr_binary_token24] = ACTIONS(1873), - [aux_sym_expr_binary_token25] = ACTIONS(1873), - [aux_sym_expr_binary_token26] = ACTIONS(1873), - [aux_sym_expr_binary_token27] = ACTIONS(1873), - [aux_sym_expr_binary_token28] = ACTIONS(1873), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1873), - [anon_sym_DOT_DOT_LT] = ACTIONS(1873), - [aux_sym__val_number_decimal_token1] = ACTIONS(1871), - [aux_sym__val_number_decimal_token2] = ACTIONS(1873), - [aux_sym__val_number_decimal_token3] = ACTIONS(1873), - [aux_sym__val_number_decimal_token4] = ACTIONS(1873), - [aux_sym__val_number_token1] = ACTIONS(1873), - [aux_sym__val_number_token2] = ACTIONS(1873), - [aux_sym__val_number_token3] = ACTIONS(1873), - [anon_sym_0b] = ACTIONS(1871), - [anon_sym_0o] = ACTIONS(1871), - [anon_sym_0x] = ACTIONS(1871), - [sym_val_date] = ACTIONS(1873), - [anon_sym_DQUOTE] = ACTIONS(1873), - [sym__str_single_quotes] = ACTIONS(1873), - [sym__str_back_ticks] = ACTIONS(1873), - [anon_sym_err_GT] = ACTIONS(1871), - [anon_sym_out_GT] = ACTIONS(1871), - [anon_sym_e_GT] = ACTIONS(1871), - [anon_sym_o_GT] = ACTIONS(1871), - [anon_sym_err_PLUSout_GT] = ACTIONS(1871), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1871), - [anon_sym_o_PLUSe_GT] = ACTIONS(1871), - [anon_sym_e_PLUSo_GT] = ACTIONS(1871), - [anon_sym_err_GT_GT] = ACTIONS(1873), - [anon_sym_out_GT_GT] = ACTIONS(1873), - [anon_sym_e_GT_GT] = ACTIONS(1873), - [anon_sym_o_GT_GT] = ACTIONS(1873), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1873), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1873), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1873), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1873), - [aux_sym_unquoted_token1] = ACTIONS(1871), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [787] = { - [sym_cell_path] = STATE(1188), - [sym_path] = STATE(1014), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3617), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1763), + [sym__unquoted_with_expr] = STATE(2135), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(787), - [aux_sym_cell_path_repeat1] = STATE(806), - [anon_sym_true] = ACTIONS(1877), - [anon_sym_false] = ACTIONS(1877), - [anon_sym_null] = ACTIONS(1877), - [aux_sym_cmd_identifier_token38] = ACTIONS(1877), - [aux_sym_cmd_identifier_token39] = ACTIONS(1877), - [aux_sym_cmd_identifier_token40] = ACTIONS(1877), - [sym__newline] = ACTIONS(1877), - [anon_sym_LBRACK] = ACTIONS(1877), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_COMMA] = ACTIONS(1877), - [anon_sym_DOLLAR] = ACTIONS(1877), - [aux_sym_ctrl_match_token1] = ACTIONS(1877), - [anon_sym_RBRACE] = ACTIONS(1877), - [anon_sym__] = ACTIONS(1875), - [anon_sym_DOT_DOT] = ACTIONS(1875), - [aux_sym_expr_binary_token1] = ACTIONS(1877), - [aux_sym_expr_binary_token2] = ACTIONS(1877), - [aux_sym_expr_binary_token3] = ACTIONS(1877), - [aux_sym_expr_binary_token4] = ACTIONS(1877), - [aux_sym_expr_binary_token5] = ACTIONS(1877), - [aux_sym_expr_binary_token6] = ACTIONS(1877), - [aux_sym_expr_binary_token7] = ACTIONS(1877), - [aux_sym_expr_binary_token8] = ACTIONS(1877), - [aux_sym_expr_binary_token9] = ACTIONS(1877), - [aux_sym_expr_binary_token10] = ACTIONS(1877), - [aux_sym_expr_binary_token11] = ACTIONS(1877), - [aux_sym_expr_binary_token12] = ACTIONS(1877), - [aux_sym_expr_binary_token13] = ACTIONS(1877), - [aux_sym_expr_binary_token14] = ACTIONS(1877), - [aux_sym_expr_binary_token15] = ACTIONS(1877), - [aux_sym_expr_binary_token16] = ACTIONS(1877), - [aux_sym_expr_binary_token17] = ACTIONS(1877), - [aux_sym_expr_binary_token18] = ACTIONS(1877), - [aux_sym_expr_binary_token19] = ACTIONS(1877), - [aux_sym_expr_binary_token20] = ACTIONS(1877), - [aux_sym_expr_binary_token21] = ACTIONS(1877), - [aux_sym_expr_binary_token22] = ACTIONS(1877), - [aux_sym_expr_binary_token23] = ACTIONS(1877), - [aux_sym_expr_binary_token24] = ACTIONS(1877), - [aux_sym_expr_binary_token25] = ACTIONS(1877), - [aux_sym_expr_binary_token26] = ACTIONS(1877), - [aux_sym_expr_binary_token27] = ACTIONS(1877), - [aux_sym_expr_binary_token28] = ACTIONS(1877), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1877), - [anon_sym_DOT_DOT_LT] = ACTIONS(1877), - [aux_sym__val_number_decimal_token1] = ACTIONS(1875), - [aux_sym__val_number_decimal_token2] = ACTIONS(1877), - [aux_sym__val_number_decimal_token3] = ACTIONS(1877), - [aux_sym__val_number_decimal_token4] = ACTIONS(1877), - [aux_sym__val_number_token1] = ACTIONS(1877), - [aux_sym__val_number_token2] = ACTIONS(1877), - [aux_sym__val_number_token3] = ACTIONS(1877), - [anon_sym_0b] = ACTIONS(1875), - [anon_sym_0o] = ACTIONS(1875), - [anon_sym_0x] = ACTIONS(1875), - [sym_val_date] = ACTIONS(1877), - [anon_sym_DQUOTE] = ACTIONS(1877), - [sym__str_single_quotes] = ACTIONS(1877), - [sym__str_back_ticks] = ACTIONS(1877), - [anon_sym_err_GT] = ACTIONS(1875), - [anon_sym_out_GT] = ACTIONS(1875), - [anon_sym_e_GT] = ACTIONS(1875), - [anon_sym_o_GT] = ACTIONS(1875), - [anon_sym_err_PLUSout_GT] = ACTIONS(1875), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1875), - [anon_sym_o_PLUSe_GT] = ACTIONS(1875), - [anon_sym_e_PLUSo_GT] = ACTIONS(1875), - [anon_sym_err_GT_GT] = ACTIONS(1877), - [anon_sym_out_GT_GT] = ACTIONS(1877), - [anon_sym_e_GT_GT] = ACTIONS(1877), - [anon_sym_o_GT_GT] = ACTIONS(1877), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1877), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1877), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1877), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1877), - [aux_sym_unquoted_token1] = ACTIONS(1875), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [788] = { - [sym_cell_path] = STATE(1189), - [sym_path] = STATE(1014), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3619), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1765), + [sym__unquoted_with_expr] = STATE(2027), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(788), - [aux_sym_cell_path_repeat1] = STATE(806), - [anon_sym_true] = ACTIONS(1881), - [anon_sym_false] = ACTIONS(1881), - [anon_sym_null] = ACTIONS(1881), - [aux_sym_cmd_identifier_token38] = ACTIONS(1881), - [aux_sym_cmd_identifier_token39] = ACTIONS(1881), - [aux_sym_cmd_identifier_token40] = ACTIONS(1881), - [sym__newline] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_COMMA] = ACTIONS(1881), - [anon_sym_DOLLAR] = ACTIONS(1881), - [aux_sym_ctrl_match_token1] = ACTIONS(1881), - [anon_sym_RBRACE] = ACTIONS(1881), - [anon_sym__] = ACTIONS(1879), - [anon_sym_DOT_DOT] = ACTIONS(1879), - [aux_sym_expr_binary_token1] = ACTIONS(1881), - [aux_sym_expr_binary_token2] = ACTIONS(1881), - [aux_sym_expr_binary_token3] = ACTIONS(1881), - [aux_sym_expr_binary_token4] = ACTIONS(1881), - [aux_sym_expr_binary_token5] = ACTIONS(1881), - [aux_sym_expr_binary_token6] = ACTIONS(1881), - [aux_sym_expr_binary_token7] = ACTIONS(1881), - [aux_sym_expr_binary_token8] = ACTIONS(1881), - [aux_sym_expr_binary_token9] = ACTIONS(1881), - [aux_sym_expr_binary_token10] = ACTIONS(1881), - [aux_sym_expr_binary_token11] = ACTIONS(1881), - [aux_sym_expr_binary_token12] = ACTIONS(1881), - [aux_sym_expr_binary_token13] = ACTIONS(1881), - [aux_sym_expr_binary_token14] = ACTIONS(1881), - [aux_sym_expr_binary_token15] = ACTIONS(1881), - [aux_sym_expr_binary_token16] = ACTIONS(1881), - [aux_sym_expr_binary_token17] = ACTIONS(1881), - [aux_sym_expr_binary_token18] = ACTIONS(1881), - [aux_sym_expr_binary_token19] = ACTIONS(1881), - [aux_sym_expr_binary_token20] = ACTIONS(1881), - [aux_sym_expr_binary_token21] = ACTIONS(1881), - [aux_sym_expr_binary_token22] = ACTIONS(1881), - [aux_sym_expr_binary_token23] = ACTIONS(1881), - [aux_sym_expr_binary_token24] = ACTIONS(1881), - [aux_sym_expr_binary_token25] = ACTIONS(1881), - [aux_sym_expr_binary_token26] = ACTIONS(1881), - [aux_sym_expr_binary_token27] = ACTIONS(1881), - [aux_sym_expr_binary_token28] = ACTIONS(1881), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1881), - [anon_sym_DOT_DOT_LT] = ACTIONS(1881), - [aux_sym__val_number_decimal_token1] = ACTIONS(1879), - [aux_sym__val_number_decimal_token2] = ACTIONS(1881), - [aux_sym__val_number_decimal_token3] = ACTIONS(1881), - [aux_sym__val_number_decimal_token4] = ACTIONS(1881), - [aux_sym__val_number_token1] = ACTIONS(1881), - [aux_sym__val_number_token2] = ACTIONS(1881), - [aux_sym__val_number_token3] = ACTIONS(1881), - [anon_sym_0b] = ACTIONS(1879), - [anon_sym_0o] = ACTIONS(1879), - [anon_sym_0x] = ACTIONS(1879), - [sym_val_date] = ACTIONS(1881), - [anon_sym_DQUOTE] = ACTIONS(1881), - [sym__str_single_quotes] = ACTIONS(1881), - [sym__str_back_ticks] = ACTIONS(1881), - [anon_sym_err_GT] = ACTIONS(1879), - [anon_sym_out_GT] = ACTIONS(1879), - [anon_sym_e_GT] = ACTIONS(1879), - [anon_sym_o_GT] = ACTIONS(1879), - [anon_sym_err_PLUSout_GT] = ACTIONS(1879), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1879), - [anon_sym_o_PLUSe_GT] = ACTIONS(1879), - [anon_sym_e_PLUSo_GT] = ACTIONS(1879), - [anon_sym_err_GT_GT] = ACTIONS(1881), - [anon_sym_out_GT_GT] = ACTIONS(1881), - [anon_sym_e_GT_GT] = ACTIONS(1881), - [anon_sym_o_GT_GT] = ACTIONS(1881), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1881), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1881), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1881), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1881), - [aux_sym_unquoted_token1] = ACTIONS(1879), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [789] = { - [sym_cell_path] = STATE(1195), - [sym_path] = STATE(1014), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3621), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1767), + [sym__unquoted_with_expr] = STATE(1990), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(789), - [aux_sym_cell_path_repeat1] = STATE(806), - [anon_sym_true] = ACTIONS(1885), - [anon_sym_false] = ACTIONS(1885), - [anon_sym_null] = ACTIONS(1885), - [aux_sym_cmd_identifier_token38] = ACTIONS(1885), - [aux_sym_cmd_identifier_token39] = ACTIONS(1885), - [aux_sym_cmd_identifier_token40] = ACTIONS(1885), - [sym__newline] = ACTIONS(1885), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_COMMA] = ACTIONS(1885), - [anon_sym_DOLLAR] = ACTIONS(1885), - [aux_sym_ctrl_match_token1] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym__] = ACTIONS(1883), - [anon_sym_DOT_DOT] = ACTIONS(1883), - [aux_sym_expr_binary_token1] = ACTIONS(1885), - [aux_sym_expr_binary_token2] = ACTIONS(1885), - [aux_sym_expr_binary_token3] = ACTIONS(1885), - [aux_sym_expr_binary_token4] = ACTIONS(1885), - [aux_sym_expr_binary_token5] = ACTIONS(1885), - [aux_sym_expr_binary_token6] = ACTIONS(1885), - [aux_sym_expr_binary_token7] = ACTIONS(1885), - [aux_sym_expr_binary_token8] = ACTIONS(1885), - [aux_sym_expr_binary_token9] = ACTIONS(1885), - [aux_sym_expr_binary_token10] = ACTIONS(1885), - [aux_sym_expr_binary_token11] = ACTIONS(1885), - [aux_sym_expr_binary_token12] = ACTIONS(1885), - [aux_sym_expr_binary_token13] = ACTIONS(1885), - [aux_sym_expr_binary_token14] = ACTIONS(1885), - [aux_sym_expr_binary_token15] = ACTIONS(1885), - [aux_sym_expr_binary_token16] = ACTIONS(1885), - [aux_sym_expr_binary_token17] = ACTIONS(1885), - [aux_sym_expr_binary_token18] = ACTIONS(1885), - [aux_sym_expr_binary_token19] = ACTIONS(1885), - [aux_sym_expr_binary_token20] = ACTIONS(1885), - [aux_sym_expr_binary_token21] = ACTIONS(1885), - [aux_sym_expr_binary_token22] = ACTIONS(1885), - [aux_sym_expr_binary_token23] = ACTIONS(1885), - [aux_sym_expr_binary_token24] = ACTIONS(1885), - [aux_sym_expr_binary_token25] = ACTIONS(1885), - [aux_sym_expr_binary_token26] = ACTIONS(1885), - [aux_sym_expr_binary_token27] = ACTIONS(1885), - [aux_sym_expr_binary_token28] = ACTIONS(1885), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1885), - [anon_sym_DOT_DOT_LT] = ACTIONS(1885), - [aux_sym__val_number_decimal_token1] = ACTIONS(1883), - [aux_sym__val_number_decimal_token2] = ACTIONS(1885), - [aux_sym__val_number_decimal_token3] = ACTIONS(1885), - [aux_sym__val_number_decimal_token4] = ACTIONS(1885), - [aux_sym__val_number_token1] = ACTIONS(1885), - [aux_sym__val_number_token2] = ACTIONS(1885), - [aux_sym__val_number_token3] = ACTIONS(1885), - [anon_sym_0b] = ACTIONS(1883), - [anon_sym_0o] = ACTIONS(1883), - [anon_sym_0x] = ACTIONS(1883), - [sym_val_date] = ACTIONS(1885), - [anon_sym_DQUOTE] = ACTIONS(1885), - [sym__str_single_quotes] = ACTIONS(1885), - [sym__str_back_ticks] = ACTIONS(1885), - [anon_sym_err_GT] = ACTIONS(1883), - [anon_sym_out_GT] = ACTIONS(1883), - [anon_sym_e_GT] = ACTIONS(1883), - [anon_sym_o_GT] = ACTIONS(1883), - [anon_sym_err_PLUSout_GT] = ACTIONS(1883), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1883), - [anon_sym_o_PLUSe_GT] = ACTIONS(1883), - [anon_sym_e_PLUSo_GT] = ACTIONS(1883), - [anon_sym_err_GT_GT] = ACTIONS(1885), - [anon_sym_out_GT_GT] = ACTIONS(1885), - [anon_sym_e_GT_GT] = ACTIONS(1885), - [anon_sym_o_GT_GT] = ACTIONS(1885), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1885), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1885), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1885), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1885), - [aux_sym_unquoted_token1] = ACTIONS(1883), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [790] = { - [sym_cell_path] = STATE(1196), - [sym_path] = STATE(1014), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3623), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1775), + [sym__unquoted_with_expr] = STATE(2139), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(790), - [aux_sym_cell_path_repeat1] = STATE(806), - [anon_sym_true] = ACTIONS(1893), - [anon_sym_false] = ACTIONS(1893), - [anon_sym_null] = ACTIONS(1893), - [aux_sym_cmd_identifier_token38] = ACTIONS(1893), - [aux_sym_cmd_identifier_token39] = ACTIONS(1893), - [aux_sym_cmd_identifier_token40] = ACTIONS(1893), - [sym__newline] = ACTIONS(1893), - [anon_sym_LBRACK] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1893), - [anon_sym_COMMA] = ACTIONS(1893), - [anon_sym_DOLLAR] = ACTIONS(1893), - [aux_sym_ctrl_match_token1] = ACTIONS(1893), - [anon_sym_RBRACE] = ACTIONS(1893), - [anon_sym__] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1891), - [aux_sym_expr_binary_token1] = ACTIONS(1893), - [aux_sym_expr_binary_token2] = ACTIONS(1893), - [aux_sym_expr_binary_token3] = ACTIONS(1893), - [aux_sym_expr_binary_token4] = ACTIONS(1893), - [aux_sym_expr_binary_token5] = ACTIONS(1893), - [aux_sym_expr_binary_token6] = ACTIONS(1893), - [aux_sym_expr_binary_token7] = ACTIONS(1893), - [aux_sym_expr_binary_token8] = ACTIONS(1893), - [aux_sym_expr_binary_token9] = ACTIONS(1893), - [aux_sym_expr_binary_token10] = ACTIONS(1893), - [aux_sym_expr_binary_token11] = ACTIONS(1893), - [aux_sym_expr_binary_token12] = ACTIONS(1893), - [aux_sym_expr_binary_token13] = ACTIONS(1893), - [aux_sym_expr_binary_token14] = ACTIONS(1893), - [aux_sym_expr_binary_token15] = ACTIONS(1893), - [aux_sym_expr_binary_token16] = ACTIONS(1893), - [aux_sym_expr_binary_token17] = ACTIONS(1893), - [aux_sym_expr_binary_token18] = ACTIONS(1893), - [aux_sym_expr_binary_token19] = ACTIONS(1893), - [aux_sym_expr_binary_token20] = ACTIONS(1893), - [aux_sym_expr_binary_token21] = ACTIONS(1893), - [aux_sym_expr_binary_token22] = ACTIONS(1893), - [aux_sym_expr_binary_token23] = ACTIONS(1893), - [aux_sym_expr_binary_token24] = ACTIONS(1893), - [aux_sym_expr_binary_token25] = ACTIONS(1893), - [aux_sym_expr_binary_token26] = ACTIONS(1893), - [aux_sym_expr_binary_token27] = ACTIONS(1893), - [aux_sym_expr_binary_token28] = ACTIONS(1893), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1893), - [anon_sym_DOT_DOT_LT] = ACTIONS(1893), - [aux_sym__val_number_decimal_token1] = ACTIONS(1891), - [aux_sym__val_number_decimal_token2] = ACTIONS(1893), - [aux_sym__val_number_decimal_token3] = ACTIONS(1893), - [aux_sym__val_number_decimal_token4] = ACTIONS(1893), - [aux_sym__val_number_token1] = ACTIONS(1893), - [aux_sym__val_number_token2] = ACTIONS(1893), - [aux_sym__val_number_token3] = ACTIONS(1893), - [anon_sym_0b] = ACTIONS(1891), - [anon_sym_0o] = ACTIONS(1891), - [anon_sym_0x] = ACTIONS(1891), - [sym_val_date] = ACTIONS(1893), - [anon_sym_DQUOTE] = ACTIONS(1893), - [sym__str_single_quotes] = ACTIONS(1893), - [sym__str_back_ticks] = ACTIONS(1893), - [anon_sym_err_GT] = ACTIONS(1891), - [anon_sym_out_GT] = ACTIONS(1891), - [anon_sym_e_GT] = ACTIONS(1891), - [anon_sym_o_GT] = ACTIONS(1891), - [anon_sym_err_PLUSout_GT] = ACTIONS(1891), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1891), - [anon_sym_o_PLUSe_GT] = ACTIONS(1891), - [anon_sym_e_PLUSo_GT] = ACTIONS(1891), - [anon_sym_err_GT_GT] = ACTIONS(1893), - [anon_sym_out_GT_GT] = ACTIONS(1893), - [anon_sym_e_GT_GT] = ACTIONS(1893), - [anon_sym_o_GT_GT] = ACTIONS(1893), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1893), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1893), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1893), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1893), - [aux_sym_unquoted_token1] = ACTIONS(1891), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [791] = { - [sym_cell_path] = STATE(1197), - [sym_path] = STATE(1014), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3625), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1777), + [sym__unquoted_with_expr] = STATE(2151), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(791), - [aux_sym_cell_path_repeat1] = STATE(806), - [anon_sym_true] = ACTIONS(1897), - [anon_sym_false] = ACTIONS(1897), - [anon_sym_null] = ACTIONS(1897), - [aux_sym_cmd_identifier_token38] = ACTIONS(1897), - [aux_sym_cmd_identifier_token39] = ACTIONS(1897), - [aux_sym_cmd_identifier_token40] = ACTIONS(1897), - [sym__newline] = ACTIONS(1897), - [anon_sym_LBRACK] = ACTIONS(1897), - [anon_sym_LPAREN] = ACTIONS(1897), - [anon_sym_COMMA] = ACTIONS(1897), - [anon_sym_DOLLAR] = ACTIONS(1897), - [aux_sym_ctrl_match_token1] = ACTIONS(1897), - [anon_sym_RBRACE] = ACTIONS(1897), - [anon_sym__] = ACTIONS(1895), - [anon_sym_DOT_DOT] = ACTIONS(1895), - [aux_sym_expr_binary_token1] = ACTIONS(1897), - [aux_sym_expr_binary_token2] = ACTIONS(1897), - [aux_sym_expr_binary_token3] = ACTIONS(1897), - [aux_sym_expr_binary_token4] = ACTIONS(1897), - [aux_sym_expr_binary_token5] = ACTIONS(1897), - [aux_sym_expr_binary_token6] = ACTIONS(1897), - [aux_sym_expr_binary_token7] = ACTIONS(1897), - [aux_sym_expr_binary_token8] = ACTIONS(1897), - [aux_sym_expr_binary_token9] = ACTIONS(1897), - [aux_sym_expr_binary_token10] = ACTIONS(1897), - [aux_sym_expr_binary_token11] = ACTIONS(1897), - [aux_sym_expr_binary_token12] = ACTIONS(1897), - [aux_sym_expr_binary_token13] = ACTIONS(1897), - [aux_sym_expr_binary_token14] = ACTIONS(1897), - [aux_sym_expr_binary_token15] = ACTIONS(1897), - [aux_sym_expr_binary_token16] = ACTIONS(1897), - [aux_sym_expr_binary_token17] = ACTIONS(1897), - [aux_sym_expr_binary_token18] = ACTIONS(1897), - [aux_sym_expr_binary_token19] = ACTIONS(1897), - [aux_sym_expr_binary_token20] = ACTIONS(1897), - [aux_sym_expr_binary_token21] = ACTIONS(1897), - [aux_sym_expr_binary_token22] = ACTIONS(1897), - [aux_sym_expr_binary_token23] = ACTIONS(1897), - [aux_sym_expr_binary_token24] = ACTIONS(1897), - [aux_sym_expr_binary_token25] = ACTIONS(1897), - [aux_sym_expr_binary_token26] = ACTIONS(1897), - [aux_sym_expr_binary_token27] = ACTIONS(1897), - [aux_sym_expr_binary_token28] = ACTIONS(1897), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1897), - [anon_sym_DOT_DOT_LT] = ACTIONS(1897), - [aux_sym__val_number_decimal_token1] = ACTIONS(1895), - [aux_sym__val_number_decimal_token2] = ACTIONS(1897), - [aux_sym__val_number_decimal_token3] = ACTIONS(1897), - [aux_sym__val_number_decimal_token4] = ACTIONS(1897), - [aux_sym__val_number_token1] = ACTIONS(1897), - [aux_sym__val_number_token2] = ACTIONS(1897), - [aux_sym__val_number_token3] = ACTIONS(1897), - [anon_sym_0b] = ACTIONS(1895), - [anon_sym_0o] = ACTIONS(1895), - [anon_sym_0x] = ACTIONS(1895), - [sym_val_date] = ACTIONS(1897), - [anon_sym_DQUOTE] = ACTIONS(1897), - [sym__str_single_quotes] = ACTIONS(1897), - [sym__str_back_ticks] = ACTIONS(1897), - [anon_sym_err_GT] = ACTIONS(1895), - [anon_sym_out_GT] = ACTIONS(1895), - [anon_sym_e_GT] = ACTIONS(1895), - [anon_sym_o_GT] = ACTIONS(1895), - [anon_sym_err_PLUSout_GT] = ACTIONS(1895), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1895), - [anon_sym_o_PLUSe_GT] = ACTIONS(1895), - [anon_sym_e_PLUSo_GT] = ACTIONS(1895), - [anon_sym_err_GT_GT] = ACTIONS(1897), - [anon_sym_out_GT_GT] = ACTIONS(1897), - [anon_sym_e_GT_GT] = ACTIONS(1897), - [anon_sym_o_GT_GT] = ACTIONS(1897), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1897), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1897), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1897), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1897), - [aux_sym_unquoted_token1] = ACTIONS(1895), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [792] = { - [sym_cell_path] = STATE(1125), - [sym_path] = STATE(1014), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3627), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1783), + [sym__unquoted_with_expr] = STATE(2103), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(792), - [aux_sym_cell_path_repeat1] = STATE(806), - [anon_sym_true] = ACTIONS(1749), - [anon_sym_false] = ACTIONS(1749), - [anon_sym_null] = ACTIONS(1749), - [aux_sym_cmd_identifier_token38] = ACTIONS(1749), - [aux_sym_cmd_identifier_token39] = ACTIONS(1749), - [aux_sym_cmd_identifier_token40] = ACTIONS(1749), - [sym__newline] = ACTIONS(1749), - [anon_sym_LBRACK] = ACTIONS(1749), - [anon_sym_LPAREN] = ACTIONS(1749), - [anon_sym_COMMA] = ACTIONS(1749), - [anon_sym_DOLLAR] = ACTIONS(1749), - [aux_sym_ctrl_match_token1] = ACTIONS(1749), - [anon_sym_RBRACE] = ACTIONS(1749), - [anon_sym__] = ACTIONS(1747), - [anon_sym_DOT_DOT] = ACTIONS(1747), - [aux_sym_expr_binary_token1] = ACTIONS(1749), - [aux_sym_expr_binary_token2] = ACTIONS(1749), - [aux_sym_expr_binary_token3] = ACTIONS(1749), - [aux_sym_expr_binary_token4] = ACTIONS(1749), - [aux_sym_expr_binary_token5] = ACTIONS(1749), - [aux_sym_expr_binary_token6] = ACTIONS(1749), - [aux_sym_expr_binary_token7] = ACTIONS(1749), - [aux_sym_expr_binary_token8] = ACTIONS(1749), - [aux_sym_expr_binary_token9] = ACTIONS(1749), - [aux_sym_expr_binary_token10] = ACTIONS(1749), - [aux_sym_expr_binary_token11] = ACTIONS(1749), - [aux_sym_expr_binary_token12] = ACTIONS(1749), - [aux_sym_expr_binary_token13] = ACTIONS(1749), - [aux_sym_expr_binary_token14] = ACTIONS(1749), - [aux_sym_expr_binary_token15] = ACTIONS(1749), - [aux_sym_expr_binary_token16] = ACTIONS(1749), - [aux_sym_expr_binary_token17] = ACTIONS(1749), - [aux_sym_expr_binary_token18] = ACTIONS(1749), - [aux_sym_expr_binary_token19] = ACTIONS(1749), - [aux_sym_expr_binary_token20] = ACTIONS(1749), - [aux_sym_expr_binary_token21] = ACTIONS(1749), - [aux_sym_expr_binary_token22] = ACTIONS(1749), - [aux_sym_expr_binary_token23] = ACTIONS(1749), - [aux_sym_expr_binary_token24] = ACTIONS(1749), - [aux_sym_expr_binary_token25] = ACTIONS(1749), - [aux_sym_expr_binary_token26] = ACTIONS(1749), - [aux_sym_expr_binary_token27] = ACTIONS(1749), - [aux_sym_expr_binary_token28] = ACTIONS(1749), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1749), - [anon_sym_DOT_DOT_LT] = ACTIONS(1749), - [aux_sym__val_number_decimal_token1] = ACTIONS(1747), - [aux_sym__val_number_decimal_token2] = ACTIONS(1749), - [aux_sym__val_number_decimal_token3] = ACTIONS(1749), - [aux_sym__val_number_decimal_token4] = ACTIONS(1749), - [aux_sym__val_number_token1] = ACTIONS(1749), - [aux_sym__val_number_token2] = ACTIONS(1749), - [aux_sym__val_number_token3] = ACTIONS(1749), - [anon_sym_0b] = ACTIONS(1747), - [anon_sym_0o] = ACTIONS(1747), - [anon_sym_0x] = ACTIONS(1747), - [sym_val_date] = ACTIONS(1749), - [anon_sym_DQUOTE] = ACTIONS(1749), - [sym__str_single_quotes] = ACTIONS(1749), - [sym__str_back_ticks] = ACTIONS(1749), - [anon_sym_err_GT] = ACTIONS(1747), - [anon_sym_out_GT] = ACTIONS(1747), - [anon_sym_e_GT] = ACTIONS(1747), - [anon_sym_o_GT] = ACTIONS(1747), - [anon_sym_err_PLUSout_GT] = ACTIONS(1747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1747), - [anon_sym_o_PLUSe_GT] = ACTIONS(1747), - [anon_sym_e_PLUSo_GT] = ACTIONS(1747), - [anon_sym_err_GT_GT] = ACTIONS(1749), - [anon_sym_out_GT_GT] = ACTIONS(1749), - [anon_sym_e_GT_GT] = ACTIONS(1749), - [anon_sym_o_GT_GT] = ACTIONS(1749), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1749), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1749), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1749), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1749), - [aux_sym_unquoted_token1] = ACTIONS(1747), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [793] = { - [sym_cell_path] = STATE(1198), - [sym_path] = STATE(1014), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3629), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1791), + [sym__unquoted_with_expr] = STATE(2002), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(793), - [aux_sym_cell_path_repeat1] = STATE(806), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_null] = ACTIONS(1826), - [aux_sym_cmd_identifier_token38] = ACTIONS(1826), - [aux_sym_cmd_identifier_token39] = ACTIONS(1826), - [aux_sym_cmd_identifier_token40] = ACTIONS(1826), - [sym__newline] = ACTIONS(1826), - [anon_sym_LBRACK] = ACTIONS(1826), - [anon_sym_LPAREN] = ACTIONS(1826), - [anon_sym_COMMA] = ACTIONS(1826), - [anon_sym_DOLLAR] = ACTIONS(1826), - [aux_sym_ctrl_match_token1] = ACTIONS(1826), - [anon_sym_RBRACE] = ACTIONS(1826), - [anon_sym__] = ACTIONS(1824), - [anon_sym_DOT_DOT] = ACTIONS(1824), - [aux_sym_expr_binary_token1] = ACTIONS(1826), - [aux_sym_expr_binary_token2] = ACTIONS(1826), - [aux_sym_expr_binary_token3] = ACTIONS(1826), - [aux_sym_expr_binary_token4] = ACTIONS(1826), - [aux_sym_expr_binary_token5] = ACTIONS(1826), - [aux_sym_expr_binary_token6] = ACTIONS(1826), - [aux_sym_expr_binary_token7] = ACTIONS(1826), - [aux_sym_expr_binary_token8] = ACTIONS(1826), - [aux_sym_expr_binary_token9] = ACTIONS(1826), - [aux_sym_expr_binary_token10] = ACTIONS(1826), - [aux_sym_expr_binary_token11] = ACTIONS(1826), - [aux_sym_expr_binary_token12] = ACTIONS(1826), - [aux_sym_expr_binary_token13] = ACTIONS(1826), - [aux_sym_expr_binary_token14] = ACTIONS(1826), - [aux_sym_expr_binary_token15] = ACTIONS(1826), - [aux_sym_expr_binary_token16] = ACTIONS(1826), - [aux_sym_expr_binary_token17] = ACTIONS(1826), - [aux_sym_expr_binary_token18] = ACTIONS(1826), - [aux_sym_expr_binary_token19] = ACTIONS(1826), - [aux_sym_expr_binary_token20] = ACTIONS(1826), - [aux_sym_expr_binary_token21] = ACTIONS(1826), - [aux_sym_expr_binary_token22] = ACTIONS(1826), - [aux_sym_expr_binary_token23] = ACTIONS(1826), - [aux_sym_expr_binary_token24] = ACTIONS(1826), - [aux_sym_expr_binary_token25] = ACTIONS(1826), - [aux_sym_expr_binary_token26] = ACTIONS(1826), - [aux_sym_expr_binary_token27] = ACTIONS(1826), - [aux_sym_expr_binary_token28] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1826), - [anon_sym_DOT_DOT_LT] = ACTIONS(1826), - [aux_sym__val_number_decimal_token1] = ACTIONS(1824), - [aux_sym__val_number_decimal_token2] = ACTIONS(1826), - [aux_sym__val_number_decimal_token3] = ACTIONS(1826), - [aux_sym__val_number_decimal_token4] = ACTIONS(1826), - [aux_sym__val_number_token1] = ACTIONS(1826), - [aux_sym__val_number_token2] = ACTIONS(1826), - [aux_sym__val_number_token3] = ACTIONS(1826), - [anon_sym_0b] = ACTIONS(1824), - [anon_sym_0o] = ACTIONS(1824), - [anon_sym_0x] = ACTIONS(1824), - [sym_val_date] = ACTIONS(1826), - [anon_sym_DQUOTE] = ACTIONS(1826), - [sym__str_single_quotes] = ACTIONS(1826), - [sym__str_back_ticks] = ACTIONS(1826), - [anon_sym_err_GT] = ACTIONS(1824), - [anon_sym_out_GT] = ACTIONS(1824), - [anon_sym_e_GT] = ACTIONS(1824), - [anon_sym_o_GT] = ACTIONS(1824), - [anon_sym_err_PLUSout_GT] = ACTIONS(1824), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1824), - [anon_sym_o_PLUSe_GT] = ACTIONS(1824), - [anon_sym_e_PLUSo_GT] = ACTIONS(1824), - [anon_sym_err_GT_GT] = ACTIONS(1826), - [anon_sym_out_GT_GT] = ACTIONS(1826), - [anon_sym_e_GT_GT] = ACTIONS(1826), - [anon_sym_o_GT_GT] = ACTIONS(1826), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1826), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1826), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1826), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1826), - [aux_sym_unquoted_token1] = ACTIONS(1824), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [794] = { - [sym_cell_path] = STATE(1199), - [sym_path] = STATE(1014), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3631), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1797), + [sym__unquoted_with_expr] = STATE(2029), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(794), - [aux_sym_cell_path_repeat1] = STATE(806), - [anon_sym_true] = ACTIONS(1857), - [anon_sym_false] = ACTIONS(1857), - [anon_sym_null] = ACTIONS(1857), - [aux_sym_cmd_identifier_token38] = ACTIONS(1857), - [aux_sym_cmd_identifier_token39] = ACTIONS(1857), - [aux_sym_cmd_identifier_token40] = ACTIONS(1857), - [sym__newline] = ACTIONS(1857), - [anon_sym_LBRACK] = ACTIONS(1857), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_COMMA] = ACTIONS(1857), - [anon_sym_DOLLAR] = ACTIONS(1857), - [aux_sym_ctrl_match_token1] = ACTIONS(1857), - [anon_sym_RBRACE] = ACTIONS(1857), - [anon_sym__] = ACTIONS(1855), - [anon_sym_DOT_DOT] = ACTIONS(1855), - [aux_sym_expr_binary_token1] = ACTIONS(1857), - [aux_sym_expr_binary_token2] = ACTIONS(1857), - [aux_sym_expr_binary_token3] = ACTIONS(1857), - [aux_sym_expr_binary_token4] = ACTIONS(1857), - [aux_sym_expr_binary_token5] = ACTIONS(1857), - [aux_sym_expr_binary_token6] = ACTIONS(1857), - [aux_sym_expr_binary_token7] = ACTIONS(1857), - [aux_sym_expr_binary_token8] = ACTIONS(1857), - [aux_sym_expr_binary_token9] = ACTIONS(1857), - [aux_sym_expr_binary_token10] = ACTIONS(1857), - [aux_sym_expr_binary_token11] = ACTIONS(1857), - [aux_sym_expr_binary_token12] = ACTIONS(1857), - [aux_sym_expr_binary_token13] = ACTIONS(1857), - [aux_sym_expr_binary_token14] = ACTIONS(1857), - [aux_sym_expr_binary_token15] = ACTIONS(1857), - [aux_sym_expr_binary_token16] = ACTIONS(1857), - [aux_sym_expr_binary_token17] = ACTIONS(1857), - [aux_sym_expr_binary_token18] = ACTIONS(1857), - [aux_sym_expr_binary_token19] = ACTIONS(1857), - [aux_sym_expr_binary_token20] = ACTIONS(1857), - [aux_sym_expr_binary_token21] = ACTIONS(1857), - [aux_sym_expr_binary_token22] = ACTIONS(1857), - [aux_sym_expr_binary_token23] = ACTIONS(1857), - [aux_sym_expr_binary_token24] = ACTIONS(1857), - [aux_sym_expr_binary_token25] = ACTIONS(1857), - [aux_sym_expr_binary_token26] = ACTIONS(1857), - [aux_sym_expr_binary_token27] = ACTIONS(1857), - [aux_sym_expr_binary_token28] = ACTIONS(1857), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1857), - [anon_sym_DOT_DOT_LT] = ACTIONS(1857), - [aux_sym__val_number_decimal_token1] = ACTIONS(1855), - [aux_sym__val_number_decimal_token2] = ACTIONS(1857), - [aux_sym__val_number_decimal_token3] = ACTIONS(1857), - [aux_sym__val_number_decimal_token4] = ACTIONS(1857), - [aux_sym__val_number_token1] = ACTIONS(1857), - [aux_sym__val_number_token2] = ACTIONS(1857), - [aux_sym__val_number_token3] = ACTIONS(1857), - [anon_sym_0b] = ACTIONS(1855), - [anon_sym_0o] = ACTIONS(1855), - [anon_sym_0x] = ACTIONS(1855), - [sym_val_date] = ACTIONS(1857), - [anon_sym_DQUOTE] = ACTIONS(1857), - [sym__str_single_quotes] = ACTIONS(1857), - [sym__str_back_ticks] = ACTIONS(1857), - [anon_sym_err_GT] = ACTIONS(1855), - [anon_sym_out_GT] = ACTIONS(1855), - [anon_sym_e_GT] = ACTIONS(1855), - [anon_sym_o_GT] = ACTIONS(1855), - [anon_sym_err_PLUSout_GT] = ACTIONS(1855), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1855), - [anon_sym_o_PLUSe_GT] = ACTIONS(1855), - [anon_sym_e_PLUSo_GT] = ACTIONS(1855), - [anon_sym_err_GT_GT] = ACTIONS(1857), - [anon_sym_out_GT_GT] = ACTIONS(1857), - [anon_sym_e_GT_GT] = ACTIONS(1857), - [anon_sym_o_GT_GT] = ACTIONS(1857), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1857), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1857), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1857), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1857), - [aux_sym_unquoted_token1] = ACTIONS(1855), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [795] = { - [sym_cell_path] = STATE(1200), - [sym_path] = STATE(1014), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3633), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1800), + [sym__unquoted_with_expr] = STATE(2043), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(795), - [aux_sym_cell_path_repeat1] = STATE(806), - [anon_sym_true] = ACTIONS(1798), - [anon_sym_false] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1798), - [aux_sym_cmd_identifier_token38] = ACTIONS(1798), - [aux_sym_cmd_identifier_token39] = ACTIONS(1798), - [aux_sym_cmd_identifier_token40] = ACTIONS(1798), - [sym__newline] = ACTIONS(1798), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_DOLLAR] = ACTIONS(1798), - [aux_sym_ctrl_match_token1] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym__] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1796), - [aux_sym_expr_binary_token1] = ACTIONS(1798), - [aux_sym_expr_binary_token2] = ACTIONS(1798), - [aux_sym_expr_binary_token3] = ACTIONS(1798), - [aux_sym_expr_binary_token4] = ACTIONS(1798), - [aux_sym_expr_binary_token5] = ACTIONS(1798), - [aux_sym_expr_binary_token6] = ACTIONS(1798), - [aux_sym_expr_binary_token7] = ACTIONS(1798), - [aux_sym_expr_binary_token8] = ACTIONS(1798), - [aux_sym_expr_binary_token9] = ACTIONS(1798), - [aux_sym_expr_binary_token10] = ACTIONS(1798), - [aux_sym_expr_binary_token11] = ACTIONS(1798), - [aux_sym_expr_binary_token12] = ACTIONS(1798), - [aux_sym_expr_binary_token13] = ACTIONS(1798), - [aux_sym_expr_binary_token14] = ACTIONS(1798), - [aux_sym_expr_binary_token15] = ACTIONS(1798), - [aux_sym_expr_binary_token16] = ACTIONS(1798), - [aux_sym_expr_binary_token17] = ACTIONS(1798), - [aux_sym_expr_binary_token18] = ACTIONS(1798), - [aux_sym_expr_binary_token19] = ACTIONS(1798), - [aux_sym_expr_binary_token20] = ACTIONS(1798), - [aux_sym_expr_binary_token21] = ACTIONS(1798), - [aux_sym_expr_binary_token22] = ACTIONS(1798), - [aux_sym_expr_binary_token23] = ACTIONS(1798), - [aux_sym_expr_binary_token24] = ACTIONS(1798), - [aux_sym_expr_binary_token25] = ACTIONS(1798), - [aux_sym_expr_binary_token26] = ACTIONS(1798), - [aux_sym_expr_binary_token27] = ACTIONS(1798), - [aux_sym_expr_binary_token28] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1798), - [anon_sym_DOT_DOT_LT] = ACTIONS(1798), - [aux_sym__val_number_decimal_token1] = ACTIONS(1796), - [aux_sym__val_number_decimal_token2] = ACTIONS(1798), - [aux_sym__val_number_decimal_token3] = ACTIONS(1798), - [aux_sym__val_number_decimal_token4] = ACTIONS(1798), - [aux_sym__val_number_token1] = ACTIONS(1798), - [aux_sym__val_number_token2] = ACTIONS(1798), - [aux_sym__val_number_token3] = ACTIONS(1798), - [anon_sym_0b] = ACTIONS(1796), - [anon_sym_0o] = ACTIONS(1796), - [anon_sym_0x] = ACTIONS(1796), - [sym_val_date] = ACTIONS(1798), - [anon_sym_DQUOTE] = ACTIONS(1798), - [sym__str_single_quotes] = ACTIONS(1798), - [sym__str_back_ticks] = ACTIONS(1798), - [anon_sym_err_GT] = ACTIONS(1796), - [anon_sym_out_GT] = ACTIONS(1796), - [anon_sym_e_GT] = ACTIONS(1796), - [anon_sym_o_GT] = ACTIONS(1796), - [anon_sym_err_PLUSout_GT] = ACTIONS(1796), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1796), - [anon_sym_o_PLUSe_GT] = ACTIONS(1796), - [anon_sym_e_PLUSo_GT] = ACTIONS(1796), - [anon_sym_err_GT_GT] = ACTIONS(1798), - [anon_sym_out_GT_GT] = ACTIONS(1798), - [anon_sym_e_GT_GT] = ACTIONS(1798), - [anon_sym_o_GT_GT] = ACTIONS(1798), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1798), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1798), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1798), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1798), - [aux_sym_unquoted_token1] = ACTIONS(1796), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [796] = { - [sym_cell_path] = STATE(1201), - [sym_path] = STATE(1014), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2318), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1767), + [sym__unquoted_with_expr] = STATE(1990), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(796), - [aux_sym_cell_path_repeat1] = STATE(806), - [anon_sym_true] = ACTIONS(1810), - [anon_sym_false] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1810), - [aux_sym_cmd_identifier_token38] = ACTIONS(1810), - [aux_sym_cmd_identifier_token39] = ACTIONS(1810), - [aux_sym_cmd_identifier_token40] = ACTIONS(1810), - [sym__newline] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_DOLLAR] = ACTIONS(1810), - [aux_sym_ctrl_match_token1] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym__] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1808), - [aux_sym_expr_binary_token1] = ACTIONS(1810), - [aux_sym_expr_binary_token2] = ACTIONS(1810), - [aux_sym_expr_binary_token3] = ACTIONS(1810), - [aux_sym_expr_binary_token4] = ACTIONS(1810), - [aux_sym_expr_binary_token5] = ACTIONS(1810), - [aux_sym_expr_binary_token6] = ACTIONS(1810), - [aux_sym_expr_binary_token7] = ACTIONS(1810), - [aux_sym_expr_binary_token8] = ACTIONS(1810), - [aux_sym_expr_binary_token9] = ACTIONS(1810), - [aux_sym_expr_binary_token10] = ACTIONS(1810), - [aux_sym_expr_binary_token11] = ACTIONS(1810), - [aux_sym_expr_binary_token12] = ACTIONS(1810), - [aux_sym_expr_binary_token13] = ACTIONS(1810), - [aux_sym_expr_binary_token14] = ACTIONS(1810), - [aux_sym_expr_binary_token15] = ACTIONS(1810), - [aux_sym_expr_binary_token16] = ACTIONS(1810), - [aux_sym_expr_binary_token17] = ACTIONS(1810), - [aux_sym_expr_binary_token18] = ACTIONS(1810), - [aux_sym_expr_binary_token19] = ACTIONS(1810), - [aux_sym_expr_binary_token20] = ACTIONS(1810), - [aux_sym_expr_binary_token21] = ACTIONS(1810), - [aux_sym_expr_binary_token22] = ACTIONS(1810), - [aux_sym_expr_binary_token23] = ACTIONS(1810), - [aux_sym_expr_binary_token24] = ACTIONS(1810), - [aux_sym_expr_binary_token25] = ACTIONS(1810), - [aux_sym_expr_binary_token26] = ACTIONS(1810), - [aux_sym_expr_binary_token27] = ACTIONS(1810), - [aux_sym_expr_binary_token28] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1810), - [anon_sym_DOT_DOT_LT] = ACTIONS(1810), - [aux_sym__val_number_decimal_token1] = ACTIONS(1808), - [aux_sym__val_number_decimal_token2] = ACTIONS(1810), - [aux_sym__val_number_decimal_token3] = ACTIONS(1810), - [aux_sym__val_number_decimal_token4] = ACTIONS(1810), - [aux_sym__val_number_token1] = ACTIONS(1810), - [aux_sym__val_number_token2] = ACTIONS(1810), - [aux_sym__val_number_token3] = ACTIONS(1810), - [anon_sym_0b] = ACTIONS(1808), - [anon_sym_0o] = ACTIONS(1808), - [anon_sym_0x] = ACTIONS(1808), - [sym_val_date] = ACTIONS(1810), - [anon_sym_DQUOTE] = ACTIONS(1810), - [sym__str_single_quotes] = ACTIONS(1810), - [sym__str_back_ticks] = ACTIONS(1810), - [anon_sym_err_GT] = ACTIONS(1808), - [anon_sym_out_GT] = ACTIONS(1808), - [anon_sym_e_GT] = ACTIONS(1808), - [anon_sym_o_GT] = ACTIONS(1808), - [anon_sym_err_PLUSout_GT] = ACTIONS(1808), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1808), - [anon_sym_o_PLUSe_GT] = ACTIONS(1808), - [anon_sym_e_PLUSo_GT] = ACTIONS(1808), - [anon_sym_err_GT_GT] = ACTIONS(1810), - [anon_sym_out_GT_GT] = ACTIONS(1810), - [anon_sym_e_GT_GT] = ACTIONS(1810), - [anon_sym_o_GT_GT] = ACTIONS(1810), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1810), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1810), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1810), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1810), - [aux_sym_unquoted_token1] = ACTIONS(1808), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [797] = { - [sym_expr_parenthesized] = STATE(6317), - [sym__spread_parenthesized] = STATE(7624), - [sym_val_range] = STATE(7629), - [sym__val_range] = STATE(7770), - [sym__val_range_with_end] = STATE(7652), - [sym__value] = STATE(7629), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6390), - [sym__spread_variable] = STATE(7673), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5489), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(517), - [sym__spread_list] = STATE(7624), - [sym_val_entry] = STATE(7303), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_list] = STATE(6388), - [sym__unquoted_in_list_with_expr] = STATE(7629), - [sym__unquoted_anonymous_prefix] = STATE(7233), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2319), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1891), + [sym__unquoted_with_expr] = STATE(2087), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(797), - [aux_sym_list_body_repeat1] = STATE(773), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_null] = ACTIONS(2911), - [aux_sym_cmd_identifier_token38] = ACTIONS(2913), - [aux_sym_cmd_identifier_token39] = ACTIONS(2913), - [aux_sym_cmd_identifier_token40] = ACTIONS(2913), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2925), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2929), - [aux_sym__val_number_decimal_token2] = ACTIONS(2931), - [aux_sym__val_number_decimal_token3] = ACTIONS(2933), - [aux_sym__val_number_decimal_token4] = ACTIONS(2935), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2778), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2784), + [aux_sym_shebang_repeat1] = STATE(877), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [798] = { - [sym_cell_path] = STATE(1203), - [sym_path] = STATE(1014), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2298), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1872), + [sym__unquoted_with_expr] = STATE(2047), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(798), - [aux_sym_cell_path_repeat1] = STATE(806), - [anon_sym_true] = ACTIONS(1745), - [anon_sym_false] = ACTIONS(1745), - [anon_sym_null] = ACTIONS(1745), - [aux_sym_cmd_identifier_token38] = ACTIONS(1745), - [aux_sym_cmd_identifier_token39] = ACTIONS(1745), - [aux_sym_cmd_identifier_token40] = ACTIONS(1745), - [sym__newline] = ACTIONS(1745), - [anon_sym_LBRACK] = ACTIONS(1745), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_COMMA] = ACTIONS(1745), - [anon_sym_DOLLAR] = ACTIONS(1745), - [aux_sym_ctrl_match_token1] = ACTIONS(1745), - [anon_sym_RBRACE] = ACTIONS(1745), - [anon_sym__] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1741), - [aux_sym_expr_binary_token1] = ACTIONS(1745), - [aux_sym_expr_binary_token2] = ACTIONS(1745), - [aux_sym_expr_binary_token3] = ACTIONS(1745), - [aux_sym_expr_binary_token4] = ACTIONS(1745), - [aux_sym_expr_binary_token5] = ACTIONS(1745), - [aux_sym_expr_binary_token6] = ACTIONS(1745), - [aux_sym_expr_binary_token7] = ACTIONS(1745), - [aux_sym_expr_binary_token8] = ACTIONS(1745), - [aux_sym_expr_binary_token9] = ACTIONS(1745), - [aux_sym_expr_binary_token10] = ACTIONS(1745), - [aux_sym_expr_binary_token11] = ACTIONS(1745), - [aux_sym_expr_binary_token12] = ACTIONS(1745), - [aux_sym_expr_binary_token13] = ACTIONS(1745), - [aux_sym_expr_binary_token14] = ACTIONS(1745), - [aux_sym_expr_binary_token15] = ACTIONS(1745), - [aux_sym_expr_binary_token16] = ACTIONS(1745), - [aux_sym_expr_binary_token17] = ACTIONS(1745), - [aux_sym_expr_binary_token18] = ACTIONS(1745), - [aux_sym_expr_binary_token19] = ACTIONS(1745), - [aux_sym_expr_binary_token20] = ACTIONS(1745), - [aux_sym_expr_binary_token21] = ACTIONS(1745), - [aux_sym_expr_binary_token22] = ACTIONS(1745), - [aux_sym_expr_binary_token23] = ACTIONS(1745), - [aux_sym_expr_binary_token24] = ACTIONS(1745), - [aux_sym_expr_binary_token25] = ACTIONS(1745), - [aux_sym_expr_binary_token26] = ACTIONS(1745), - [aux_sym_expr_binary_token27] = ACTIONS(1745), - [aux_sym_expr_binary_token28] = ACTIONS(1745), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1745), - [anon_sym_DOT_DOT_LT] = ACTIONS(1745), - [aux_sym__val_number_decimal_token1] = ACTIONS(1741), - [aux_sym__val_number_decimal_token2] = ACTIONS(1745), - [aux_sym__val_number_decimal_token3] = ACTIONS(1745), - [aux_sym__val_number_decimal_token4] = ACTIONS(1745), - [aux_sym__val_number_token1] = ACTIONS(1745), - [aux_sym__val_number_token2] = ACTIONS(1745), - [aux_sym__val_number_token3] = ACTIONS(1745), - [anon_sym_0b] = ACTIONS(1741), - [anon_sym_0o] = ACTIONS(1741), - [anon_sym_0x] = ACTIONS(1741), - [sym_val_date] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1745), - [sym__str_single_quotes] = ACTIONS(1745), - [sym__str_back_ticks] = ACTIONS(1745), - [anon_sym_err_GT] = ACTIONS(1741), - [anon_sym_out_GT] = ACTIONS(1741), - [anon_sym_e_GT] = ACTIONS(1741), - [anon_sym_o_GT] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT] = ACTIONS(1741), - [anon_sym_err_GT_GT] = ACTIONS(1745), - [anon_sym_out_GT_GT] = ACTIONS(1745), - [anon_sym_e_GT_GT] = ACTIONS(1745), - [anon_sym_o_GT_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1745), - [aux_sym_unquoted_token1] = ACTIONS(1741), + [aux_sym_shebang_repeat1] = STATE(890), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [799] = { - [sym_cell_path] = STATE(1204), - [sym_path] = STATE(1014), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2174), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1775), + [sym__unquoted_with_expr] = STATE(2139), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(799), - [aux_sym_cell_path_repeat1] = STATE(806), - [anon_sym_true] = ACTIONS(1901), - [anon_sym_false] = ACTIONS(1901), - [anon_sym_null] = ACTIONS(1901), - [aux_sym_cmd_identifier_token38] = ACTIONS(1901), - [aux_sym_cmd_identifier_token39] = ACTIONS(1901), - [aux_sym_cmd_identifier_token40] = ACTIONS(1901), - [sym__newline] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1901), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_COMMA] = ACTIONS(1901), - [anon_sym_DOLLAR] = ACTIONS(1901), - [aux_sym_ctrl_match_token1] = ACTIONS(1901), - [anon_sym_RBRACE] = ACTIONS(1901), - [anon_sym__] = ACTIONS(1899), - [anon_sym_DOT_DOT] = ACTIONS(1899), - [aux_sym_expr_binary_token1] = ACTIONS(1901), - [aux_sym_expr_binary_token2] = ACTIONS(1901), - [aux_sym_expr_binary_token3] = ACTIONS(1901), - [aux_sym_expr_binary_token4] = ACTIONS(1901), - [aux_sym_expr_binary_token5] = ACTIONS(1901), - [aux_sym_expr_binary_token6] = ACTIONS(1901), - [aux_sym_expr_binary_token7] = ACTIONS(1901), - [aux_sym_expr_binary_token8] = ACTIONS(1901), - [aux_sym_expr_binary_token9] = ACTIONS(1901), - [aux_sym_expr_binary_token10] = ACTIONS(1901), - [aux_sym_expr_binary_token11] = ACTIONS(1901), - [aux_sym_expr_binary_token12] = ACTIONS(1901), - [aux_sym_expr_binary_token13] = ACTIONS(1901), - [aux_sym_expr_binary_token14] = ACTIONS(1901), - [aux_sym_expr_binary_token15] = ACTIONS(1901), - [aux_sym_expr_binary_token16] = ACTIONS(1901), - [aux_sym_expr_binary_token17] = ACTIONS(1901), - [aux_sym_expr_binary_token18] = ACTIONS(1901), - [aux_sym_expr_binary_token19] = ACTIONS(1901), - [aux_sym_expr_binary_token20] = ACTIONS(1901), - [aux_sym_expr_binary_token21] = ACTIONS(1901), - [aux_sym_expr_binary_token22] = ACTIONS(1901), - [aux_sym_expr_binary_token23] = ACTIONS(1901), - [aux_sym_expr_binary_token24] = ACTIONS(1901), - [aux_sym_expr_binary_token25] = ACTIONS(1901), - [aux_sym_expr_binary_token26] = ACTIONS(1901), - [aux_sym_expr_binary_token27] = ACTIONS(1901), - [aux_sym_expr_binary_token28] = ACTIONS(1901), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1901), - [anon_sym_DOT_DOT_LT] = ACTIONS(1901), - [aux_sym__val_number_decimal_token1] = ACTIONS(1899), - [aux_sym__val_number_decimal_token2] = ACTIONS(1901), - [aux_sym__val_number_decimal_token3] = ACTIONS(1901), - [aux_sym__val_number_decimal_token4] = ACTIONS(1901), - [aux_sym__val_number_token1] = ACTIONS(1901), - [aux_sym__val_number_token2] = ACTIONS(1901), - [aux_sym__val_number_token3] = ACTIONS(1901), - [anon_sym_0b] = ACTIONS(1899), - [anon_sym_0o] = ACTIONS(1899), - [anon_sym_0x] = ACTIONS(1899), - [sym_val_date] = ACTIONS(1901), - [anon_sym_DQUOTE] = ACTIONS(1901), - [sym__str_single_quotes] = ACTIONS(1901), - [sym__str_back_ticks] = ACTIONS(1901), - [anon_sym_err_GT] = ACTIONS(1899), - [anon_sym_out_GT] = ACTIONS(1899), - [anon_sym_e_GT] = ACTIONS(1899), - [anon_sym_o_GT] = ACTIONS(1899), - [anon_sym_err_PLUSout_GT] = ACTIONS(1899), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1899), - [anon_sym_o_PLUSe_GT] = ACTIONS(1899), - [anon_sym_e_PLUSo_GT] = ACTIONS(1899), - [anon_sym_err_GT_GT] = ACTIONS(1901), - [anon_sym_out_GT_GT] = ACTIONS(1901), - [anon_sym_e_GT_GT] = ACTIONS(1901), - [anon_sym_o_GT_GT] = ACTIONS(1901), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1901), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1901), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1901), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1901), - [aux_sym_unquoted_token1] = ACTIONS(1899), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [800] = { - [sym_cell_path] = STATE(1205), - [sym_path] = STATE(1014), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2115), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1901), + [sym__unquoted_with_expr] = STATE(2117), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(800), - [aux_sym_cell_path_repeat1] = STATE(806), - [anon_sym_true] = ACTIONS(1833), - [anon_sym_false] = ACTIONS(1833), - [anon_sym_null] = ACTIONS(1833), - [aux_sym_cmd_identifier_token38] = ACTIONS(1833), - [aux_sym_cmd_identifier_token39] = ACTIONS(1833), - [aux_sym_cmd_identifier_token40] = ACTIONS(1833), - [sym__newline] = ACTIONS(1833), - [anon_sym_LBRACK] = ACTIONS(1833), - [anon_sym_LPAREN] = ACTIONS(1833), - [anon_sym_COMMA] = ACTIONS(1833), - [anon_sym_DOLLAR] = ACTIONS(1833), - [aux_sym_ctrl_match_token1] = ACTIONS(1833), - [anon_sym_RBRACE] = ACTIONS(1833), - [anon_sym__] = ACTIONS(1831), - [anon_sym_DOT_DOT] = ACTIONS(1831), - [aux_sym_expr_binary_token1] = ACTIONS(1833), - [aux_sym_expr_binary_token2] = ACTIONS(1833), - [aux_sym_expr_binary_token3] = ACTIONS(1833), - [aux_sym_expr_binary_token4] = ACTIONS(1833), - [aux_sym_expr_binary_token5] = ACTIONS(1833), - [aux_sym_expr_binary_token6] = ACTIONS(1833), - [aux_sym_expr_binary_token7] = ACTIONS(1833), - [aux_sym_expr_binary_token8] = ACTIONS(1833), - [aux_sym_expr_binary_token9] = ACTIONS(1833), - [aux_sym_expr_binary_token10] = ACTIONS(1833), - [aux_sym_expr_binary_token11] = ACTIONS(1833), - [aux_sym_expr_binary_token12] = ACTIONS(1833), - [aux_sym_expr_binary_token13] = ACTIONS(1833), - [aux_sym_expr_binary_token14] = ACTIONS(1833), - [aux_sym_expr_binary_token15] = ACTIONS(1833), - [aux_sym_expr_binary_token16] = ACTIONS(1833), - [aux_sym_expr_binary_token17] = ACTIONS(1833), - [aux_sym_expr_binary_token18] = ACTIONS(1833), - [aux_sym_expr_binary_token19] = ACTIONS(1833), - [aux_sym_expr_binary_token20] = ACTIONS(1833), - [aux_sym_expr_binary_token21] = ACTIONS(1833), - [aux_sym_expr_binary_token22] = ACTIONS(1833), - [aux_sym_expr_binary_token23] = ACTIONS(1833), - [aux_sym_expr_binary_token24] = ACTIONS(1833), - [aux_sym_expr_binary_token25] = ACTIONS(1833), - [aux_sym_expr_binary_token26] = ACTIONS(1833), - [aux_sym_expr_binary_token27] = ACTIONS(1833), - [aux_sym_expr_binary_token28] = ACTIONS(1833), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1833), - [anon_sym_DOT_DOT_LT] = ACTIONS(1833), - [aux_sym__val_number_decimal_token1] = ACTIONS(1831), - [aux_sym__val_number_decimal_token2] = ACTIONS(1833), - [aux_sym__val_number_decimal_token3] = ACTIONS(1833), - [aux_sym__val_number_decimal_token4] = ACTIONS(1833), - [aux_sym__val_number_token1] = ACTIONS(1833), - [aux_sym__val_number_token2] = ACTIONS(1833), - [aux_sym__val_number_token3] = ACTIONS(1833), - [anon_sym_0b] = ACTIONS(1831), - [anon_sym_0o] = ACTIONS(1831), - [anon_sym_0x] = ACTIONS(1831), - [sym_val_date] = ACTIONS(1833), - [anon_sym_DQUOTE] = ACTIONS(1833), - [sym__str_single_quotes] = ACTIONS(1833), - [sym__str_back_ticks] = ACTIONS(1833), - [anon_sym_err_GT] = ACTIONS(1831), - [anon_sym_out_GT] = ACTIONS(1831), - [anon_sym_e_GT] = ACTIONS(1831), - [anon_sym_o_GT] = ACTIONS(1831), - [anon_sym_err_PLUSout_GT] = ACTIONS(1831), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1831), - [anon_sym_o_PLUSe_GT] = ACTIONS(1831), - [anon_sym_e_PLUSo_GT] = ACTIONS(1831), - [anon_sym_err_GT_GT] = ACTIONS(1833), - [anon_sym_out_GT_GT] = ACTIONS(1833), - [anon_sym_e_GT_GT] = ACTIONS(1833), - [anon_sym_o_GT_GT] = ACTIONS(1833), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1833), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1833), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1833), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1833), - [aux_sym_unquoted_token1] = ACTIONS(1831), + [aux_sym_shebang_repeat1] = STATE(813), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [801] = { - [sym_cell_path] = STATE(1206), - [sym_path] = STATE(1014), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3151), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1902), + [sym__unquoted_with_expr] = STATE(2120), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(801), - [aux_sym_cell_path_repeat1] = STATE(806), - [anon_sym_true] = ACTIONS(1837), - [anon_sym_false] = ACTIONS(1837), - [anon_sym_null] = ACTIONS(1837), - [aux_sym_cmd_identifier_token38] = ACTIONS(1837), - [aux_sym_cmd_identifier_token39] = ACTIONS(1837), - [aux_sym_cmd_identifier_token40] = ACTIONS(1837), - [sym__newline] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1837), - [aux_sym_ctrl_match_token1] = ACTIONS(1837), - [anon_sym_RBRACE] = ACTIONS(1837), - [anon_sym__] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1835), - [aux_sym_expr_binary_token1] = ACTIONS(1837), - [aux_sym_expr_binary_token2] = ACTIONS(1837), - [aux_sym_expr_binary_token3] = ACTIONS(1837), - [aux_sym_expr_binary_token4] = ACTIONS(1837), - [aux_sym_expr_binary_token5] = ACTIONS(1837), - [aux_sym_expr_binary_token6] = ACTIONS(1837), - [aux_sym_expr_binary_token7] = ACTIONS(1837), - [aux_sym_expr_binary_token8] = ACTIONS(1837), - [aux_sym_expr_binary_token9] = ACTIONS(1837), - [aux_sym_expr_binary_token10] = ACTIONS(1837), - [aux_sym_expr_binary_token11] = ACTIONS(1837), - [aux_sym_expr_binary_token12] = ACTIONS(1837), - [aux_sym_expr_binary_token13] = ACTIONS(1837), - [aux_sym_expr_binary_token14] = ACTIONS(1837), - [aux_sym_expr_binary_token15] = ACTIONS(1837), - [aux_sym_expr_binary_token16] = ACTIONS(1837), - [aux_sym_expr_binary_token17] = ACTIONS(1837), - [aux_sym_expr_binary_token18] = ACTIONS(1837), - [aux_sym_expr_binary_token19] = ACTIONS(1837), - [aux_sym_expr_binary_token20] = ACTIONS(1837), - [aux_sym_expr_binary_token21] = ACTIONS(1837), - [aux_sym_expr_binary_token22] = ACTIONS(1837), - [aux_sym_expr_binary_token23] = ACTIONS(1837), - [aux_sym_expr_binary_token24] = ACTIONS(1837), - [aux_sym_expr_binary_token25] = ACTIONS(1837), - [aux_sym_expr_binary_token26] = ACTIONS(1837), - [aux_sym_expr_binary_token27] = ACTIONS(1837), - [aux_sym_expr_binary_token28] = ACTIONS(1837), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1837), - [anon_sym_DOT_DOT_LT] = ACTIONS(1837), - [aux_sym__val_number_decimal_token1] = ACTIONS(1835), - [aux_sym__val_number_decimal_token2] = ACTIONS(1837), - [aux_sym__val_number_decimal_token3] = ACTIONS(1837), - [aux_sym__val_number_decimal_token4] = ACTIONS(1837), - [aux_sym__val_number_token1] = ACTIONS(1837), - [aux_sym__val_number_token2] = ACTIONS(1837), - [aux_sym__val_number_token3] = ACTIONS(1837), - [anon_sym_0b] = ACTIONS(1835), - [anon_sym_0o] = ACTIONS(1835), - [anon_sym_0x] = ACTIONS(1835), - [sym_val_date] = ACTIONS(1837), - [anon_sym_DQUOTE] = ACTIONS(1837), - [sym__str_single_quotes] = ACTIONS(1837), - [sym__str_back_ticks] = ACTIONS(1837), - [anon_sym_err_GT] = ACTIONS(1835), - [anon_sym_out_GT] = ACTIONS(1835), - [anon_sym_e_GT] = ACTIONS(1835), - [anon_sym_o_GT] = ACTIONS(1835), - [anon_sym_err_PLUSout_GT] = ACTIONS(1835), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1835), - [anon_sym_o_PLUSe_GT] = ACTIONS(1835), - [anon_sym_e_PLUSo_GT] = ACTIONS(1835), - [anon_sym_err_GT_GT] = ACTIONS(1837), - [anon_sym_out_GT_GT] = ACTIONS(1837), - [anon_sym_e_GT_GT] = ACTIONS(1837), - [anon_sym_o_GT_GT] = ACTIONS(1837), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1837), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1837), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1837), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1837), - [aux_sym_unquoted_token1] = ACTIONS(1835), + [aux_sym_shebang_repeat1] = STATE(814), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [802] = { - [sym_cell_path] = STATE(1169), - [sym_path] = STATE(1014), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3152), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1903), + [sym__unquoted_with_expr] = STATE(2122), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(802), - [aux_sym_cell_path_repeat1] = STATE(806), - [anon_sym_true] = ACTIONS(1841), - [anon_sym_false] = ACTIONS(1841), - [anon_sym_null] = ACTIONS(1841), - [aux_sym_cmd_identifier_token38] = ACTIONS(1841), - [aux_sym_cmd_identifier_token39] = ACTIONS(1841), - [aux_sym_cmd_identifier_token40] = ACTIONS(1841), - [sym__newline] = ACTIONS(1841), - [anon_sym_LBRACK] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_COMMA] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1841), - [aux_sym_ctrl_match_token1] = ACTIONS(1841), - [anon_sym_RBRACE] = ACTIONS(1841), - [anon_sym__] = ACTIONS(1839), - [anon_sym_DOT_DOT] = ACTIONS(1839), - [aux_sym_expr_binary_token1] = ACTIONS(1841), - [aux_sym_expr_binary_token2] = ACTIONS(1841), - [aux_sym_expr_binary_token3] = ACTIONS(1841), - [aux_sym_expr_binary_token4] = ACTIONS(1841), - [aux_sym_expr_binary_token5] = ACTIONS(1841), - [aux_sym_expr_binary_token6] = ACTIONS(1841), - [aux_sym_expr_binary_token7] = ACTIONS(1841), - [aux_sym_expr_binary_token8] = ACTIONS(1841), - [aux_sym_expr_binary_token9] = ACTIONS(1841), - [aux_sym_expr_binary_token10] = ACTIONS(1841), - [aux_sym_expr_binary_token11] = ACTIONS(1841), - [aux_sym_expr_binary_token12] = ACTIONS(1841), - [aux_sym_expr_binary_token13] = ACTIONS(1841), - [aux_sym_expr_binary_token14] = ACTIONS(1841), - [aux_sym_expr_binary_token15] = ACTIONS(1841), - [aux_sym_expr_binary_token16] = ACTIONS(1841), - [aux_sym_expr_binary_token17] = ACTIONS(1841), - [aux_sym_expr_binary_token18] = ACTIONS(1841), - [aux_sym_expr_binary_token19] = ACTIONS(1841), - [aux_sym_expr_binary_token20] = ACTIONS(1841), - [aux_sym_expr_binary_token21] = ACTIONS(1841), - [aux_sym_expr_binary_token22] = ACTIONS(1841), - [aux_sym_expr_binary_token23] = ACTIONS(1841), - [aux_sym_expr_binary_token24] = ACTIONS(1841), - [aux_sym_expr_binary_token25] = ACTIONS(1841), - [aux_sym_expr_binary_token26] = ACTIONS(1841), - [aux_sym_expr_binary_token27] = ACTIONS(1841), - [aux_sym_expr_binary_token28] = ACTIONS(1841), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1841), - [anon_sym_DOT_DOT_LT] = ACTIONS(1841), - [aux_sym__val_number_decimal_token1] = ACTIONS(1839), - [aux_sym__val_number_decimal_token2] = ACTIONS(1841), - [aux_sym__val_number_decimal_token3] = ACTIONS(1841), - [aux_sym__val_number_decimal_token4] = ACTIONS(1841), - [aux_sym__val_number_token1] = ACTIONS(1841), - [aux_sym__val_number_token2] = ACTIONS(1841), - [aux_sym__val_number_token3] = ACTIONS(1841), - [anon_sym_0b] = ACTIONS(1839), - [anon_sym_0o] = ACTIONS(1839), - [anon_sym_0x] = ACTIONS(1839), - [sym_val_date] = ACTIONS(1841), - [anon_sym_DQUOTE] = ACTIONS(1841), - [sym__str_single_quotes] = ACTIONS(1841), - [sym__str_back_ticks] = ACTIONS(1841), - [anon_sym_err_GT] = ACTIONS(1839), - [anon_sym_out_GT] = ACTIONS(1839), - [anon_sym_e_GT] = ACTIONS(1839), - [anon_sym_o_GT] = ACTIONS(1839), - [anon_sym_err_PLUSout_GT] = ACTIONS(1839), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1839), - [anon_sym_o_PLUSe_GT] = ACTIONS(1839), - [anon_sym_e_PLUSo_GT] = ACTIONS(1839), - [anon_sym_err_GT_GT] = ACTIONS(1841), - [anon_sym_out_GT_GT] = ACTIONS(1841), - [anon_sym_e_GT_GT] = ACTIONS(1841), - [anon_sym_o_GT_GT] = ACTIONS(1841), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1841), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1841), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1841), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1841), - [aux_sym_unquoted_token1] = ACTIONS(1839), + [aux_sym_shebang_repeat1] = STATE(815), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [803] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3808), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1974), - [sym__unquoted_with_expr] = STATE(2341), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3153), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1905), + [sym__unquoted_with_expr] = STATE(2125), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(803), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(816), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [804] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2395), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2063), - [sym__unquoted_with_expr] = STATE(2284), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3154), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1907), + [sym__unquoted_with_expr] = STATE(2129), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(804), - [aux_sym_shebang_repeat1] = STATE(819), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(817), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [805] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2397), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2095), - [sym__unquoted_with_expr] = STATE(2285), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3155), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1849), + [sym__unquoted_with_expr] = STATE(2045), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(805), - [aux_sym_shebang_repeat1] = STATE(820), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(818), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [806] = { - [sym_path] = STATE(1014), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2300), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1875), + [sym__unquoted_with_expr] = STATE(2050), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(806), - [aux_sym_cell_path_repeat1] = STATE(807), - [anon_sym_true] = ACTIONS(953), - [anon_sym_false] = ACTIONS(953), - [anon_sym_null] = ACTIONS(953), - [aux_sym_cmd_identifier_token38] = ACTIONS(953), - [aux_sym_cmd_identifier_token39] = ACTIONS(953), - [aux_sym_cmd_identifier_token40] = ACTIONS(953), - [sym__newline] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(953), - [anon_sym_DOLLAR] = ACTIONS(953), - [aux_sym_ctrl_match_token1] = ACTIONS(953), - [anon_sym_RBRACE] = ACTIONS(953), - [anon_sym__] = ACTIONS(951), - [anon_sym_DOT_DOT] = ACTIONS(951), - [aux_sym_expr_binary_token1] = ACTIONS(953), - [aux_sym_expr_binary_token2] = ACTIONS(953), - [aux_sym_expr_binary_token3] = ACTIONS(953), - [aux_sym_expr_binary_token4] = ACTIONS(953), - [aux_sym_expr_binary_token5] = ACTIONS(953), - [aux_sym_expr_binary_token6] = ACTIONS(953), - [aux_sym_expr_binary_token7] = ACTIONS(953), - [aux_sym_expr_binary_token8] = ACTIONS(953), - [aux_sym_expr_binary_token9] = ACTIONS(953), - [aux_sym_expr_binary_token10] = ACTIONS(953), - [aux_sym_expr_binary_token11] = ACTIONS(953), - [aux_sym_expr_binary_token12] = ACTIONS(953), - [aux_sym_expr_binary_token13] = ACTIONS(953), - [aux_sym_expr_binary_token14] = ACTIONS(953), - [aux_sym_expr_binary_token15] = ACTIONS(953), - [aux_sym_expr_binary_token16] = ACTIONS(953), - [aux_sym_expr_binary_token17] = ACTIONS(953), - [aux_sym_expr_binary_token18] = ACTIONS(953), - [aux_sym_expr_binary_token19] = ACTIONS(953), - [aux_sym_expr_binary_token20] = ACTIONS(953), - [aux_sym_expr_binary_token21] = ACTIONS(953), - [aux_sym_expr_binary_token22] = ACTIONS(953), - [aux_sym_expr_binary_token23] = ACTIONS(953), - [aux_sym_expr_binary_token24] = ACTIONS(953), - [aux_sym_expr_binary_token25] = ACTIONS(953), - [aux_sym_expr_binary_token26] = ACTIONS(953), - [aux_sym_expr_binary_token27] = ACTIONS(953), - [aux_sym_expr_binary_token28] = ACTIONS(953), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(953), - [anon_sym_DOT_DOT_LT] = ACTIONS(953), - [aux_sym__val_number_decimal_token1] = ACTIONS(951), - [aux_sym__val_number_decimal_token2] = ACTIONS(953), - [aux_sym__val_number_decimal_token3] = ACTIONS(953), - [aux_sym__val_number_decimal_token4] = ACTIONS(953), - [aux_sym__val_number_token1] = ACTIONS(953), - [aux_sym__val_number_token2] = ACTIONS(953), - [aux_sym__val_number_token3] = ACTIONS(953), - [anon_sym_0b] = ACTIONS(951), - [anon_sym_0o] = ACTIONS(951), - [anon_sym_0x] = ACTIONS(951), - [sym_val_date] = ACTIONS(953), - [anon_sym_DQUOTE] = ACTIONS(953), - [sym__str_single_quotes] = ACTIONS(953), - [sym__str_back_ticks] = ACTIONS(953), - [anon_sym_err_GT] = ACTIONS(951), - [anon_sym_out_GT] = ACTIONS(951), - [anon_sym_e_GT] = ACTIONS(951), - [anon_sym_o_GT] = ACTIONS(951), - [anon_sym_err_PLUSout_GT] = ACTIONS(951), - [anon_sym_out_PLUSerr_GT] = ACTIONS(951), - [anon_sym_o_PLUSe_GT] = ACTIONS(951), - [anon_sym_e_PLUSo_GT] = ACTIONS(951), - [anon_sym_err_GT_GT] = ACTIONS(953), - [anon_sym_out_GT_GT] = ACTIONS(953), - [anon_sym_e_GT_GT] = ACTIONS(953), - [anon_sym_o_GT_GT] = ACTIONS(953), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(953), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(953), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(953), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(953), - [aux_sym_unquoted_token1] = ACTIONS(951), + [aux_sym_shebang_repeat1] = STATE(891), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [807] = { - [sym_path] = STATE(1014), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3157), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1760), + [sym__unquoted_with_expr] = STATE(2133), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(807), - [aux_sym_cell_path_repeat1] = STATE(807), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_null] = ACTIONS(957), - [aux_sym_cmd_identifier_token38] = ACTIONS(957), - [aux_sym_cmd_identifier_token39] = ACTIONS(957), - [aux_sym_cmd_identifier_token40] = ACTIONS(957), - [sym__newline] = ACTIONS(957), - [anon_sym_LBRACK] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(957), - [anon_sym_COMMA] = ACTIONS(957), - [anon_sym_DOLLAR] = ACTIONS(957), - [aux_sym_ctrl_match_token1] = ACTIONS(957), - [anon_sym_RBRACE] = ACTIONS(957), - [anon_sym__] = ACTIONS(955), - [anon_sym_DOT_DOT] = ACTIONS(955), - [aux_sym_expr_binary_token1] = ACTIONS(957), - [aux_sym_expr_binary_token2] = ACTIONS(957), - [aux_sym_expr_binary_token3] = ACTIONS(957), - [aux_sym_expr_binary_token4] = ACTIONS(957), - [aux_sym_expr_binary_token5] = ACTIONS(957), - [aux_sym_expr_binary_token6] = ACTIONS(957), - [aux_sym_expr_binary_token7] = ACTIONS(957), - [aux_sym_expr_binary_token8] = ACTIONS(957), - [aux_sym_expr_binary_token9] = ACTIONS(957), - [aux_sym_expr_binary_token10] = ACTIONS(957), - [aux_sym_expr_binary_token11] = ACTIONS(957), - [aux_sym_expr_binary_token12] = ACTIONS(957), - [aux_sym_expr_binary_token13] = ACTIONS(957), - [aux_sym_expr_binary_token14] = ACTIONS(957), - [aux_sym_expr_binary_token15] = ACTIONS(957), - [aux_sym_expr_binary_token16] = ACTIONS(957), - [aux_sym_expr_binary_token17] = ACTIONS(957), - [aux_sym_expr_binary_token18] = ACTIONS(957), - [aux_sym_expr_binary_token19] = ACTIONS(957), - [aux_sym_expr_binary_token20] = ACTIONS(957), - [aux_sym_expr_binary_token21] = ACTIONS(957), - [aux_sym_expr_binary_token22] = ACTIONS(957), - [aux_sym_expr_binary_token23] = ACTIONS(957), - [aux_sym_expr_binary_token24] = ACTIONS(957), - [aux_sym_expr_binary_token25] = ACTIONS(957), - [aux_sym_expr_binary_token26] = ACTIONS(957), - [aux_sym_expr_binary_token27] = ACTIONS(957), - [aux_sym_expr_binary_token28] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(3170), - [anon_sym_DOT_DOT_EQ] = ACTIONS(957), - [anon_sym_DOT_DOT_LT] = ACTIONS(957), - [aux_sym__val_number_decimal_token1] = ACTIONS(955), - [aux_sym__val_number_decimal_token2] = ACTIONS(957), - [aux_sym__val_number_decimal_token3] = ACTIONS(957), - [aux_sym__val_number_decimal_token4] = ACTIONS(957), - [aux_sym__val_number_token1] = ACTIONS(957), - [aux_sym__val_number_token2] = ACTIONS(957), - [aux_sym__val_number_token3] = ACTIONS(957), - [anon_sym_0b] = ACTIONS(955), - [anon_sym_0o] = ACTIONS(955), - [anon_sym_0x] = ACTIONS(955), - [sym_val_date] = ACTIONS(957), - [anon_sym_DQUOTE] = ACTIONS(957), - [sym__str_single_quotes] = ACTIONS(957), - [sym__str_back_ticks] = ACTIONS(957), - [anon_sym_err_GT] = ACTIONS(955), - [anon_sym_out_GT] = ACTIONS(955), - [anon_sym_e_GT] = ACTIONS(955), - [anon_sym_o_GT] = ACTIONS(955), - [anon_sym_err_PLUSout_GT] = ACTIONS(955), - [anon_sym_out_PLUSerr_GT] = ACTIONS(955), - [anon_sym_o_PLUSe_GT] = ACTIONS(955), - [anon_sym_e_PLUSo_GT] = ACTIONS(955), - [anon_sym_err_GT_GT] = ACTIONS(957), - [anon_sym_out_GT_GT] = ACTIONS(957), - [anon_sym_e_GT_GT] = ACTIONS(957), - [anon_sym_o_GT_GT] = ACTIONS(957), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(957), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(957), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(957), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(957), - [aux_sym_unquoted_token1] = ACTIONS(955), + [aux_sym_shebang_repeat1] = STATE(820), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [808] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2400), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2098), - [sym__unquoted_with_expr] = STATE(2286), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3158), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1762), + [sym__unquoted_with_expr] = STATE(2021), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(808), [aux_sym_shebang_repeat1] = STATE(821), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [809] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2402), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2109), - [sym__unquoted_with_expr] = STATE(2287), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3159), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1764), + [sym__unquoted_with_expr] = STATE(2146), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(809), - [aux_sym_shebang_repeat1] = STATE(824), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(822), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [810] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2404), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2066), - [sym__unquoted_with_expr] = STATE(2288), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3160), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1766), + [sym__unquoted_with_expr] = STATE(2079), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(810), - [aux_sym_shebang_repeat1] = STATE(826), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(823), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [811] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2408), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2052), - [sym__unquoted_with_expr] = STATE(2289), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3161), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1769), + [sym__unquoted_with_expr] = STATE(2011), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(811), - [aux_sym_shebang_repeat1] = STATE(827), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(824), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [812] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2410), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1971), - [sym__unquoted_with_expr] = STATE(2290), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3162), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1771), + [sym__unquoted_with_expr] = STATE(2032), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(812), - [aux_sym_shebang_repeat1] = STATE(829), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(825), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [813] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2412), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2082), - [sym__unquoted_with_expr] = STATE(2291), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2148), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1813), + [sym__unquoted_with_expr] = STATE(2152), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(813), - [aux_sym_shebang_repeat1] = STATE(830), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [814] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2415), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2009), - [sym__unquoted_with_expr] = STATE(2292), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3165), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1821), + [sym__unquoted_with_expr] = STATE(2037), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(814), - [aux_sym_shebang_repeat1] = STATE(831), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [815] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2418), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1978), - [sym__unquoted_with_expr] = STATE(2293), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3167), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1825), + [sym__unquoted_with_expr] = STATE(2075), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(815), - [aux_sym_shebang_repeat1] = STATE(832), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [816] = { + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3169), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1829), + [sym__unquoted_with_expr] = STATE(2088), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(816), - [anon_sym_true] = ACTIONS(1984), - [anon_sym_false] = ACTIONS(1984), - [anon_sym_null] = ACTIONS(1984), - [aux_sym_cmd_identifier_token38] = ACTIONS(1984), - [aux_sym_cmd_identifier_token39] = ACTIONS(1984), - [aux_sym_cmd_identifier_token40] = ACTIONS(1984), - [sym__newline] = ACTIONS(1984), - [anon_sym_LBRACK] = ACTIONS(1984), - [anon_sym_LPAREN] = ACTIONS(1984), - [anon_sym_COMMA] = ACTIONS(1984), - [anon_sym_DOLLAR] = ACTIONS(1984), - [aux_sym_ctrl_match_token1] = ACTIONS(1984), - [anon_sym_RBRACE] = ACTIONS(1984), - [anon_sym__] = ACTIONS(1982), - [anon_sym_DOT_DOT] = ACTIONS(1982), - [aux_sym_expr_binary_token1] = ACTIONS(1984), - [aux_sym_expr_binary_token2] = ACTIONS(1984), - [aux_sym_expr_binary_token3] = ACTIONS(1984), - [aux_sym_expr_binary_token4] = ACTIONS(1984), - [aux_sym_expr_binary_token5] = ACTIONS(1984), - [aux_sym_expr_binary_token6] = ACTIONS(1984), - [aux_sym_expr_binary_token7] = ACTIONS(1984), - [aux_sym_expr_binary_token8] = ACTIONS(1984), - [aux_sym_expr_binary_token9] = ACTIONS(1984), - [aux_sym_expr_binary_token10] = ACTIONS(1984), - [aux_sym_expr_binary_token11] = ACTIONS(1984), - [aux_sym_expr_binary_token12] = ACTIONS(1984), - [aux_sym_expr_binary_token13] = ACTIONS(1984), - [aux_sym_expr_binary_token14] = ACTIONS(1984), - [aux_sym_expr_binary_token15] = ACTIONS(1984), - [aux_sym_expr_binary_token16] = ACTIONS(1984), - [aux_sym_expr_binary_token17] = ACTIONS(1984), - [aux_sym_expr_binary_token18] = ACTIONS(1984), - [aux_sym_expr_binary_token19] = ACTIONS(1984), - [aux_sym_expr_binary_token20] = ACTIONS(1984), - [aux_sym_expr_binary_token21] = ACTIONS(1984), - [aux_sym_expr_binary_token22] = ACTIONS(1984), - [aux_sym_expr_binary_token23] = ACTIONS(1984), - [aux_sym_expr_binary_token24] = ACTIONS(1984), - [aux_sym_expr_binary_token25] = ACTIONS(1984), - [aux_sym_expr_binary_token26] = ACTIONS(1984), - [aux_sym_expr_binary_token27] = ACTIONS(1984), - [aux_sym_expr_binary_token28] = ACTIONS(1984), - [anon_sym_DOT_DOT2] = ACTIONS(1982), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1982), - [anon_sym_DOT_DOT_LT] = ACTIONS(1982), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1984), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1984), - [aux_sym__val_number_decimal_token1] = ACTIONS(1982), - [aux_sym__val_number_decimal_token2] = ACTIONS(1984), - [aux_sym__val_number_decimal_token3] = ACTIONS(1984), - [aux_sym__val_number_decimal_token4] = ACTIONS(1984), - [aux_sym__val_number_token1] = ACTIONS(1984), - [aux_sym__val_number_token2] = ACTIONS(1984), - [aux_sym__val_number_token3] = ACTIONS(1984), - [anon_sym_0b] = ACTIONS(1982), - [anon_sym_0o] = ACTIONS(1982), - [anon_sym_0x] = ACTIONS(1982), - [sym_val_date] = ACTIONS(1984), - [anon_sym_DQUOTE] = ACTIONS(1984), - [sym__str_single_quotes] = ACTIONS(1984), - [sym__str_back_ticks] = ACTIONS(1984), - [anon_sym_err_GT] = ACTIONS(1982), - [anon_sym_out_GT] = ACTIONS(1982), - [anon_sym_e_GT] = ACTIONS(1982), - [anon_sym_o_GT] = ACTIONS(1982), - [anon_sym_err_PLUSout_GT] = ACTIONS(1982), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1982), - [anon_sym_o_PLUSe_GT] = ACTIONS(1982), - [anon_sym_e_PLUSo_GT] = ACTIONS(1982), - [anon_sym_err_GT_GT] = ACTIONS(1984), - [anon_sym_out_GT_GT] = ACTIONS(1984), - [anon_sym_e_GT_GT] = ACTIONS(1984), - [anon_sym_o_GT_GT] = ACTIONS(1984), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1984), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1984), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1984), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1984), - [aux_sym_unquoted_token1] = ACTIONS(1982), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [817] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2419), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1985), - [sym__unquoted_with_expr] = STATE(2294), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3171), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1830), + [sym__unquoted_with_expr] = STATE(2111), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(817), - [aux_sym_shebang_repeat1] = STATE(937), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [818] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2315), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2038), - [sym__unquoted_with_expr] = STATE(2316), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3173), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1838), + [sym__unquoted_with_expr] = STATE(2150), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(818), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [819] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2477), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2045), - [sym__unquoted_with_expr] = STATE(2318), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3175), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1842), + [sym__unquoted_with_expr] = STATE(1994), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(819), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [820] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2480), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2072), - [sym__unquoted_with_expr] = STATE(2320), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3177), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1845), + [sym__unquoted_with_expr] = STATE(2004), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(820), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [821] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2484), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2076), - [sym__unquoted_with_expr] = STATE(2323), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3179), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1927), + [sym__unquoted_with_expr] = STATE(2013), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(821), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [822] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2422), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2068), - [sym__unquoted_with_expr] = STATE(2295), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3181), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1854), + [sym__unquoted_with_expr] = STATE(2022), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(822), - [aux_sym_shebang_repeat1] = STATE(938), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [823] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2421), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2107), - [sym__unquoted_with_expr] = STATE(2188), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3183), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1864), + [sym__unquoted_with_expr] = STATE(2031), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(823), - [aux_sym_shebang_repeat1] = STATE(960), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [824] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2489), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2105), - [sym__unquoted_with_expr] = STATE(2325), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3185), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1867), + [sym__unquoted_with_expr] = STATE(2036), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(824), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [825] = { - [sym_expr_parenthesized] = STATE(1604), - [sym_val_range] = STATE(2020), - [sym__val_range] = STATE(7839), - [sym__val_range_with_end] = STATE(7660), - [sym__value] = STATE(2020), - [sym_val_nothing] = STATE(1867), - [sym_val_bool] = STATE(1677), - [sym_val_variable] = STATE(1542), - [sym_val_number] = STATE(1867), - [sym__val_number_decimal] = STATE(1275), - [sym__val_number] = STATE(1945), - [sym_val_duration] = STATE(1867), - [sym_val_filesize] = STATE(1867), - [sym_val_binary] = STATE(1867), - [sym_val_string] = STATE(1867), - [sym__str_double_quotes] = STATE(1954), - [sym_val_interpolated] = STATE(1867), - [sym__inter_single_quotes] = STATE(1824), - [sym__inter_double_quotes] = STATE(1826), - [sym_val_list] = STATE(1867), - [sym_val_record] = STATE(1867), - [sym_val_table] = STATE(1867), - [sym_val_closure] = STATE(1867), - [sym__flag] = STATE(2020), - [sym_short_flag] = STATE(1924), - [sym_long_flag] = STATE(1924), - [sym_unquoted] = STATE(1703), - [sym__unquoted_with_expr] = STATE(1975), - [sym__unquoted_anonymous_prefix] = STATE(7414), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3187), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1869), + [sym__unquoted_with_expr] = STATE(2040), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(825), - [aux_sym_shebang_repeat1] = STATE(2999), - [anon_sym_true] = ACTIONS(2455), - [anon_sym_false] = ACTIONS(2455), - [anon_sym_null] = ACTIONS(2457), - [aux_sym_cmd_identifier_token38] = ACTIONS(2459), - [aux_sym_cmd_identifier_token39] = ACTIONS(2459), - [aux_sym_cmd_identifier_token40] = ACTIONS(2459), - [sym__newline] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2467), - [anon_sym_DOLLAR] = ACTIONS(2469), - [anon_sym_DASH_DASH] = ACTIONS(2471), - [anon_sym_DASH] = ACTIONS(2473), - [aux_sym_ctrl_match_token1] = ACTIONS(2475), - [anon_sym_DOT_DOT] = ACTIONS(2477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2479), - [anon_sym_DOT_DOT_LT] = ACTIONS(2479), - [aux_sym__val_number_decimal_token1] = ACTIONS(2481), - [aux_sym__val_number_decimal_token2] = ACTIONS(2483), - [aux_sym__val_number_decimal_token3] = ACTIONS(2485), - [aux_sym__val_number_decimal_token4] = ACTIONS(2487), - [aux_sym__val_number_token1] = ACTIONS(2489), - [aux_sym__val_number_token2] = ACTIONS(2489), - [aux_sym__val_number_token3] = ACTIONS(2489), - [anon_sym_0b] = ACTIONS(2491), - [anon_sym_0o] = ACTIONS(2493), - [anon_sym_0x] = ACTIONS(2493), - [sym_val_date] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2497), - [sym__str_single_quotes] = ACTIONS(2499), - [sym__str_back_ticks] = ACTIONS(2499), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2501), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2503), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(2509), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [826] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2492), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2108), - [sym__unquoted_with_expr] = STATE(2328), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2041), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1871), + [sym__unquoted_with_expr] = STATE(2044), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(826), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(839), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [827] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2496), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1962), - [sym__unquoted_with_expr] = STATE(2333), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3188), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1872), + [sym__unquoted_with_expr] = STATE(2047), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(827), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(840), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [828] = { + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2041), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1871), + [sym__unquoted_with_expr] = STATE(2044), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(828), - [anon_sym_true] = ACTIONS(3173), - [anon_sym_false] = ACTIONS(3173), - [anon_sym_null] = ACTIONS(3173), - [aux_sym_cmd_identifier_token38] = ACTIONS(3173), - [aux_sym_cmd_identifier_token39] = ACTIONS(3173), - [aux_sym_cmd_identifier_token40] = ACTIONS(3173), - [sym__newline] = ACTIONS(3173), - [anon_sym_LBRACK] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym_COMMA] = ACTIONS(3173), - [anon_sym_DOLLAR] = ACTIONS(3173), - [aux_sym_ctrl_match_token1] = ACTIONS(3173), - [anon_sym_RBRACE] = ACTIONS(3173), - [anon_sym__] = ACTIONS(3175), - [anon_sym_DOT_DOT] = ACTIONS(3175), - [aux_sym_expr_binary_token1] = ACTIONS(3177), - [aux_sym_expr_binary_token2] = ACTIONS(3177), - [aux_sym_expr_binary_token3] = ACTIONS(3177), - [aux_sym_expr_binary_token4] = ACTIONS(3177), - [aux_sym_expr_binary_token5] = ACTIONS(3177), - [aux_sym_expr_binary_token6] = ACTIONS(3177), - [aux_sym_expr_binary_token7] = ACTIONS(3177), - [aux_sym_expr_binary_token8] = ACTIONS(3177), - [aux_sym_expr_binary_token9] = ACTIONS(3177), - [aux_sym_expr_binary_token10] = ACTIONS(3177), - [aux_sym_expr_binary_token11] = ACTIONS(3177), - [aux_sym_expr_binary_token12] = ACTIONS(3177), - [aux_sym_expr_binary_token13] = ACTIONS(3177), - [aux_sym_expr_binary_token14] = ACTIONS(3177), - [aux_sym_expr_binary_token15] = ACTIONS(3177), - [aux_sym_expr_binary_token16] = ACTIONS(3177), - [aux_sym_expr_binary_token17] = ACTIONS(3177), - [aux_sym_expr_binary_token18] = ACTIONS(3177), - [aux_sym_expr_binary_token19] = ACTIONS(3177), - [aux_sym_expr_binary_token20] = ACTIONS(3177), - [aux_sym_expr_binary_token21] = ACTIONS(3177), - [aux_sym_expr_binary_token22] = ACTIONS(3177), - [aux_sym_expr_binary_token23] = ACTIONS(3177), - [aux_sym_expr_binary_token24] = ACTIONS(3177), - [aux_sym_expr_binary_token25] = ACTIONS(3177), - [aux_sym_expr_binary_token26] = ACTIONS(3177), - [aux_sym_expr_binary_token27] = ACTIONS(3177), - [aux_sym_expr_binary_token28] = ACTIONS(3177), - [anon_sym_DOT_DOT2] = ACTIONS(3179), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3175), - [anon_sym_DOT_DOT_LT] = ACTIONS(3175), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3181), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3181), - [aux_sym__val_number_decimal_token1] = ACTIONS(3175), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3173), - [aux_sym__val_number_token1] = ACTIONS(3173), - [aux_sym__val_number_token2] = ACTIONS(3173), - [aux_sym__val_number_token3] = ACTIONS(3173), - [anon_sym_0b] = ACTIONS(3175), - [anon_sym_0o] = ACTIONS(3175), - [anon_sym_0x] = ACTIONS(3175), - [sym_val_date] = ACTIONS(3173), - [anon_sym_DQUOTE] = ACTIONS(3173), - [sym__str_single_quotes] = ACTIONS(3173), - [sym__str_back_ticks] = ACTIONS(3173), - [anon_sym_err_GT] = ACTIONS(3175), - [anon_sym_out_GT] = ACTIONS(3175), - [anon_sym_e_GT] = ACTIONS(3175), - [anon_sym_o_GT] = ACTIONS(3175), - [anon_sym_err_PLUSout_GT] = ACTIONS(3175), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3175), - [anon_sym_o_PLUSe_GT] = ACTIONS(3175), - [anon_sym_e_PLUSo_GT] = ACTIONS(3175), - [anon_sym_err_GT_GT] = ACTIONS(3173), - [anon_sym_out_GT_GT] = ACTIONS(3173), - [anon_sym_e_GT_GT] = ACTIONS(3173), - [anon_sym_o_GT_GT] = ACTIONS(3173), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3173), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3173), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3173), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3173), - [aux_sym_unquoted_token1] = ACTIONS(3175), + [aux_sym_shebang_repeat1] = STATE(889), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [829] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2503), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1963), - [sym__unquoted_with_expr] = STATE(2335), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3190), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1879), + [sym__unquoted_with_expr] = STATE(2055), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(829), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(842), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [830] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2510), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1964), - [sym__unquoted_with_expr] = STATE(2339), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3191), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1880), + [sym__unquoted_with_expr] = STATE(2058), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(830), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(843), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [831] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2515), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1974), - [sym__unquoted_with_expr] = STATE(2341), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3192), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1881), + [sym__unquoted_with_expr] = STATE(1989), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(831), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(844), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [832] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2518), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1976), - [sym__unquoted_with_expr] = STATE(2343), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3193), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1884), + [sym__unquoted_with_expr] = STATE(2065), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(832), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(845), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [833] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2354), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2058), - [sym__unquoted_with_expr] = STATE(2283), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3194), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1885), + [sym__unquoted_with_expr] = STATE(2067), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(833), [aux_sym_shebang_repeat1] = STATE(846), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [834] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3952), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2063), - [sym__unquoted_with_expr] = STATE(2284), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3195), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1886), + [sym__unquoted_with_expr] = STATE(2074), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(834), [aux_sym_shebang_repeat1] = STATE(847), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [835] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3953), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2095), - [sym__unquoted_with_expr] = STATE(2285), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3196), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1887), + [sym__unquoted_with_expr] = STATE(2076), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(835), [aux_sym_shebang_repeat1] = STATE(848), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [836] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3954), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2098), - [sym__unquoted_with_expr] = STATE(2286), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3258), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1888), + [sym__unquoted_with_expr] = STATE(2158), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(836), [aux_sym_shebang_repeat1] = STATE(849), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [837] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3955), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2109), - [sym__unquoted_with_expr] = STATE(2287), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3198), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1890), + [sym__unquoted_with_expr] = STATE(2085), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(837), [aux_sym_shebang_repeat1] = STATE(850), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [838] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3956), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2066), - [sym__unquoted_with_expr] = STATE(2288), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3199), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1891), + [sym__unquoted_with_expr] = STATE(2087), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(838), [aux_sym_shebang_repeat1] = STATE(851), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [839] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3957), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2052), - [sym__unquoted_with_expr] = STATE(2289), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2138), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1817), + [sym__unquoted_with_expr] = STATE(2012), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(839), - [aux_sym_shebang_repeat1] = STATE(852), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [840] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3958), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1971), - [sym__unquoted_with_expr] = STATE(2290), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3213), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1882), + [sym__unquoted_with_expr] = STATE(2094), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(840), - [aux_sym_shebang_repeat1] = STATE(853), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [841] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3959), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2082), - [sym__unquoted_with_expr] = STATE(2291), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3215), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1897), + [sym__unquoted_with_expr] = STATE(2110), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(841), - [aux_sym_shebang_repeat1] = STATE(854), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [842] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3960), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2009), - [sym__unquoted_with_expr] = STATE(2292), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3217), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1761), + [sym__unquoted_with_expr] = STATE(2134), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(842), - [aux_sym_shebang_repeat1] = STATE(803), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [843] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3961), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1978), - [sym__unquoted_with_expr] = STATE(2293), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3219), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1763), + [sym__unquoted_with_expr] = STATE(2135), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(843), - [aux_sym_shebang_repeat1] = STATE(856), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [844] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3962), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1985), - [sym__unquoted_with_expr] = STATE(2294), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3221), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1765), + [sym__unquoted_with_expr] = STATE(2027), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(844), - [aux_sym_shebang_repeat1] = STATE(857), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [845] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3965), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2068), - [sym__unquoted_with_expr] = STATE(2295), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3223), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1767), + [sym__unquoted_with_expr] = STATE(1990), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(845), - [aux_sym_shebang_repeat1] = STATE(858), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [846] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2315), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2038), - [sym__unquoted_with_expr] = STATE(2316), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3225), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1775), + [sym__unquoted_with_expr] = STATE(2139), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(846), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [847] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3792), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2045), - [sym__unquoted_with_expr] = STATE(2318), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3227), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1777), + [sym__unquoted_with_expr] = STATE(2151), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(847), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [848] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3794), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2072), - [sym__unquoted_with_expr] = STATE(2320), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3229), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1783), + [sym__unquoted_with_expr] = STATE(2103), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(848), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [849] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3796), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2076), - [sym__unquoted_with_expr] = STATE(2323), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3231), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1791), + [sym__unquoted_with_expr] = STATE(2002), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(849), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [850] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3798), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2105), - [sym__unquoted_with_expr] = STATE(2325), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3233), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1797), + [sym__unquoted_with_expr] = STATE(2029), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(850), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [851] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3800), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2108), - [sym__unquoted_with_expr] = STATE(2328), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3235), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1800), + [sym__unquoted_with_expr] = STATE(2043), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(851), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [852] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3802), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1962), - [sym__unquoted_with_expr] = STATE(2333), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2276), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1845), + [sym__unquoted_with_expr] = STATE(2004), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(852), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [853] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3804), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1963), - [sym__unquoted_with_expr] = STATE(2335), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1777), + [sym__unquoted_with_expr] = STATE(2151), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(853), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [854] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3806), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1964), - [sym__unquoted_with_expr] = STATE(2339), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2210), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1783), + [sym__unquoted_with_expr] = STATE(2103), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(854), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [855] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2432), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2119), - [sym__unquoted_with_expr] = STATE(2189), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2302), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1879), + [sym__unquoted_with_expr] = STATE(2055), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(855), - [aux_sym_shebang_repeat1] = STATE(961), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(892), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [856] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3810), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1976), - [sym__unquoted_with_expr] = STATE(2343), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2245), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1825), + [sym__unquoted_with_expr] = STATE(2075), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(856), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [857] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3812), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1977), - [sym__unquoted_with_expr] = STATE(2345), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2249), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1829), + [sym__unquoted_with_expr] = STATE(2088), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(857), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [858] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3814), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1980), - [sym__unquoted_with_expr] = STATE(2349), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2304), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1880), + [sym__unquoted_with_expr] = STATE(2058), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(858), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(893), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [859] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2350), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1987), - [sym__unquoted_with_expr] = STATE(2351), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2281), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1927), + [sym__unquoted_with_expr] = STATE(2013), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(859), - [aux_sym_shebang_repeat1] = STATE(872), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [860] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3815), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1992), - [sym__unquoted_with_expr] = STATE(2352), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2305), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1881), + [sym__unquoted_with_expr] = STATE(1989), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(860), - [aux_sym_shebang_repeat1] = STATE(873), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(894), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [861] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3816), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1995), - [sym__unquoted_with_expr] = STATE(2353), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2255), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1830), + [sym__unquoted_with_expr] = STATE(2111), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(861), - [aux_sym_shebang_repeat1] = STATE(874), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [862] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2004), - [sym__unquoted_with_expr] = STATE(2181), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2258), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1838), + [sym__unquoted_with_expr] = STATE(2150), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(862), - [aux_sym_shebang_repeat1] = STATE(875), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [863] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3818), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2006), - [sym__unquoted_with_expr] = STATE(2282), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2309), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1884), + [sym__unquoted_with_expr] = STATE(2065), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(863), - [aux_sym_shebang_repeat1] = STATE(965), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(796), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [864] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3819), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2013), - [sym__unquoted_with_expr] = STATE(2182), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2311), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1885), + [sym__unquoted_with_expr] = STATE(2067), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(864), - [aux_sym_shebang_repeat1] = STATE(877), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(799), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [865] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3820), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2016), - [sym__unquoted_with_expr] = STATE(2183), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2268), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1842), + [sym__unquoted_with_expr] = STATE(1994), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(865), - [aux_sym_shebang_repeat1] = STATE(878), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [866] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3821), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2022), - [sym__unquoted_with_expr] = STATE(2184), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2284), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1854), + [sym__unquoted_with_expr] = STATE(2022), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(866), - [aux_sym_shebang_repeat1] = STATE(879), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [867] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3822), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2035), - [sym__unquoted_with_expr] = STATE(2185), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2115), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1901), + [sym__unquoted_with_expr] = STATE(2117), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(867), - [aux_sym_shebang_repeat1] = STATE(880), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(879), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [868] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3823), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2046), - [sym__unquoted_with_expr] = STATE(2186), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2262), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1902), + [sym__unquoted_with_expr] = STATE(2120), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(868), - [aux_sym_shebang_repeat1] = STATE(881), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(880), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [869] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3824), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2092), - [sym__unquoted_with_expr] = STATE(2187), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2267), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1903), + [sym__unquoted_with_expr] = STATE(2122), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(869), - [aux_sym_shebang_repeat1] = STATE(882), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(856), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [870] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3825), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2107), - [sym__unquoted_with_expr] = STATE(2188), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2270), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1905), + [sym__unquoted_with_expr] = STATE(2125), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(870), - [aux_sym_shebang_repeat1] = STATE(883), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(857), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [871] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3826), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2119), - [sym__unquoted_with_expr] = STATE(2189), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2278), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1907), + [sym__unquoted_with_expr] = STATE(2129), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(871), - [aux_sym_shebang_repeat1] = STATE(884), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(861), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [872] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2217), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2008), - [sym__unquoted_with_expr] = STATE(2218), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2280), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1849), + [sym__unquoted_with_expr] = STATE(2045), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(872), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(862), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [873] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3840), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2015), - [sym__unquoted_with_expr] = STATE(2220), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2282), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1758), + [sym__unquoted_with_expr] = STATE(2130), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(873), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(865), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [874] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3842), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2019), - [sym__unquoted_with_expr] = STATE(2222), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2233), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1791), + [sym__unquoted_with_expr] = STATE(2002), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(874), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [875] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3844), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2031), - [sym__unquoted_with_expr] = STATE(2224), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2286), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1760), + [sym__unquoted_with_expr] = STATE(2133), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(875), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(852), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [876] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2393), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2046), - [sym__unquoted_with_expr] = STATE(2186), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2240), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1797), + [sym__unquoted_with_expr] = STATE(2029), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(876), - [aux_sym_shebang_repeat1] = STATE(958), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [877] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3848), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2050), - [sym__unquoted_with_expr] = STATE(2229), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2260), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1800), + [sym__unquoted_with_expr] = STATE(2043), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(877), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [878] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3850), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2051), - [sym__unquoted_with_expr] = STATE(2231), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2288), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1762), + [sym__unquoted_with_expr] = STATE(2021), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(878), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(859), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [879] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3852), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2054), - [sym__unquoted_with_expr] = STATE(2233), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2148), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1813), + [sym__unquoted_with_expr] = STATE(2152), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(879), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [880] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3854), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2059), - [sym__unquoted_with_expr] = STATE(2236), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2239), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1821), + [sym__unquoted_with_expr] = STATE(2037), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(880), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [881] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3856), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2081), - [sym__unquoted_with_expr] = STATE(2238), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2294), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1764), + [sym__unquoted_with_expr] = STATE(2146), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(881), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(866), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [882] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3858), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2110), - [sym__unquoted_with_expr] = STATE(2240), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2296), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1766), + [sym__unquoted_with_expr] = STATE(2079), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(882), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(886), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [883] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2122), - [sym__unquoted_with_expr] = STATE(2243), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2303), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1769), + [sym__unquoted_with_expr] = STATE(2011), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(883), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(888), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [884] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3862), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1958), - [sym__unquoted_with_expr] = STATE(2245), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_parenthesized] = STATE(1448), + [sym_val_range] = STATE(1768), + [sym__val_range] = STATE(7566), + [sym__val_range_with_end] = STATE(7410), + [sym__value] = STATE(1768), + [sym_val_nothing] = STATE(1755), + [sym_val_bool] = STATE(1405), + [sym_val_variable] = STATE(1306), + [sym_val_number] = STATE(1755), + [sym__val_number_decimal] = STATE(1060), + [sym__val_number] = STATE(1569), + [sym_val_duration] = STATE(1755), + [sym_val_filesize] = STATE(1755), + [sym_val_binary] = STATE(1755), + [sym_val_string] = STATE(1755), + [sym__str_double_quotes] = STATE(1657), + [sym_val_interpolated] = STATE(1755), + [sym__inter_single_quotes] = STATE(1574), + [sym__inter_double_quotes] = STATE(1575), + [sym_val_list] = STATE(1755), + [sym_val_record] = STATE(1755), + [sym_val_table] = STATE(1755), + [sym_val_closure] = STATE(1755), + [sym__flag] = STATE(1768), + [sym_short_flag] = STATE(1719), + [sym_long_flag] = STATE(1719), + [sym_unquoted] = STATE(1494), + [sym__unquoted_with_expr] = STATE(1770), + [sym__unquoted_anonymous_prefix] = STATE(7281), [sym_comment] = STATE(884), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2734), + [anon_sym_true] = ACTIONS(2525), + [anon_sym_false] = ACTIONS(2525), + [anon_sym_null] = ACTIONS(2527), + [aux_sym_cmd_identifier_token38] = ACTIONS(2529), + [aux_sym_cmd_identifier_token39] = ACTIONS(2529), + [aux_sym_cmd_identifier_token40] = ACTIONS(2529), + [sym__newline] = ACTIONS(2744), + [anon_sym_LBRACK] = ACTIONS(2533), + [anon_sym_LPAREN] = ACTIONS(2535), + [anon_sym_DOLLAR] = ACTIONS(2537), + [anon_sym_DASH_DASH] = ACTIONS(2539), + [anon_sym_DASH] = ACTIONS(2541), + [aux_sym_ctrl_match_token1] = ACTIONS(2543), + [anon_sym_DOT_DOT] = ACTIONS(2545), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2547), + [anon_sym_DOT_DOT_LT] = ACTIONS(2547), + [aux_sym__val_number_decimal_token1] = ACTIONS(2549), + [aux_sym__val_number_decimal_token2] = ACTIONS(2551), + [aux_sym__val_number_decimal_token3] = ACTIONS(2553), + [aux_sym__val_number_decimal_token4] = ACTIONS(2555), + [aux_sym__val_number_token1] = ACTIONS(2557), + [aux_sym__val_number_token2] = ACTIONS(2557), + [aux_sym__val_number_token3] = ACTIONS(2557), + [anon_sym_0b] = ACTIONS(2559), + [anon_sym_0o] = ACTIONS(2561), + [anon_sym_0x] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2563), + [anon_sym_DQUOTE] = ACTIONS(2565), + [sym__str_single_quotes] = ACTIONS(2567), + [sym__str_back_ticks] = ACTIONS(2567), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2569), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2571), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(2577), [anon_sym_POUND] = ACTIONS(247), }, [885] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2354), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2058), - [sym__unquoted_with_expr] = STATE(2283), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2312), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1771), + [sym__unquoted_with_expr] = STATE(2032), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(885), - [aux_sym_shebang_repeat1] = STATE(898), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(895), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [886] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3411), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2063), - [sym__unquoted_with_expr] = STATE(2284), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2289), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1864), + [sym__unquoted_with_expr] = STATE(2031), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(886), - [aux_sym_shebang_repeat1] = STATE(899), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [887] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3413), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2095), - [sym__unquoted_with_expr] = STATE(2285), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2313), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1886), + [sym__unquoted_with_expr] = STATE(2074), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(887), - [aux_sym_shebang_repeat1] = STATE(900), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(853), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [888] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3414), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2098), - [sym__unquoted_with_expr] = STATE(2286), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2291), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1867), + [sym__unquoted_with_expr] = STATE(2036), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(888), - [aux_sym_shebang_repeat1] = STATE(901), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [889] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3415), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2109), - [sym__unquoted_with_expr] = STATE(2287), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2138), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1817), + [sym__unquoted_with_expr] = STATE(2012), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(889), - [aux_sym_shebang_repeat1] = STATE(902), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [890] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3417), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2066), - [sym__unquoted_with_expr] = STATE(2288), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2241), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1882), + [sym__unquoted_with_expr] = STATE(2094), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(890), - [aux_sym_shebang_repeat1] = STATE(903), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [891] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3418), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2052), - [sym__unquoted_with_expr] = STATE(2289), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2252), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1897), + [sym__unquoted_with_expr] = STATE(2110), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(891), - [aux_sym_shebang_repeat1] = STATE(904), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [892] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3419), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1971), - [sym__unquoted_with_expr] = STATE(2290), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2269), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1761), + [sym__unquoted_with_expr] = STATE(2134), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(892), - [aux_sym_shebang_repeat1] = STATE(905), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [893] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3420), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2082), - [sym__unquoted_with_expr] = STATE(2291), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2285), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1763), + [sym__unquoted_with_expr] = STATE(2135), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(893), - [aux_sym_shebang_repeat1] = STATE(906), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [894] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3421), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2009), - [sym__unquoted_with_expr] = STATE(2292), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2308), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1765), + [sym__unquoted_with_expr] = STATE(2027), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(894), - [aux_sym_shebang_repeat1] = STATE(907), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [895] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3422), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1978), - [sym__unquoted_with_expr] = STATE(2293), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2295), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1869), + [sym__unquoted_with_expr] = STATE(2040), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(895), - [aux_sym_shebang_repeat1] = STATE(908), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(2737), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [896] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3424), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1985), - [sym__unquoted_with_expr] = STATE(2294), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2315), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1887), + [sym__unquoted_with_expr] = STATE(2076), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(896), - [aux_sym_shebang_repeat1] = STATE(909), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(854), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [897] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3425), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2068), - [sym__unquoted_with_expr] = STATE(2295), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2316), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(2082), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(1310), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1888), + [sym__unquoted_with_expr] = STATE(2158), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(897), - [aux_sym_shebang_repeat1] = STATE(910), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(874), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_null] = ACTIONS(3183), + [aux_sym_cmd_identifier_token38] = ACTIONS(3185), + [aux_sym_cmd_identifier_token39] = ACTIONS(3185), + [aux_sym_cmd_identifier_token40] = ACTIONS(3185), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3187), + [aux_sym__val_number_decimal_token2] = ACTIONS(3189), + [aux_sym__val_number_decimal_token3] = ACTIONS(3191), + [aux_sym__val_number_decimal_token4] = ACTIONS(3193), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [898] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2315), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2038), - [sym__unquoted_with_expr] = STATE(2316), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(2115), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1901), + [sym__unquoted_with_expr] = STATE(2117), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(898), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(757), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [899] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3428), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2045), - [sym__unquoted_with_expr] = STATE(2318), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3549), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3520), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(3314), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1902), + [sym__unquoted_with_expr] = STATE(2120), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(899), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(758), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [anon_sym_null] = ACTIONS(3167), + [aux_sym_cmd_identifier_token38] = ACTIONS(3169), + [aux_sym_cmd_identifier_token39] = ACTIONS(3169), + [aux_sym_cmd_identifier_token40] = ACTIONS(3169), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3171), + [aux_sym__val_number_decimal_token2] = ACTIONS(3173), + [aux_sym__val_number_decimal_token3] = ACTIONS(3175), + [aux_sym__val_number_decimal_token4] = ACTIONS(3177), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [900] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3430), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2072), - [sym__unquoted_with_expr] = STATE(2320), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2259), + [sym__expr_unary_minus] = STATE(2236), + [sym_expr_binary_parenthesized] = STATE(2259), + [sym__expr_binary_expression_parenthesized] = STATE(3189), + [sym_expr_parenthesized] = STATE(2259), + [sym__val_range] = STATE(7551), + [sym__val_range_with_end] = STATE(7397), + [sym__value] = STATE(2259), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3110), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(2917), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1707), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(1875), + [sym__unquoted_with_expr] = STATE(2050), + [sym__unquoted_anonymous_prefix] = STATE(7046), [sym_comment] = STATE(900), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_shebang_repeat1] = STATE(841), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_null] = ACTIONS(3139), + [aux_sym_cmd_identifier_token38] = ACTIONS(3141), + [aux_sym_cmd_identifier_token39] = ACTIONS(3141), + [aux_sym_cmd_identifier_token40] = ACTIONS(3141), + [sym__newline] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(471), + [aux_sym_ctrl_match_token1] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [aux_sym_expr_unary_token1] = ACTIONS(487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3151), + [anon_sym_DOT_DOT_LT] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3153), + [aux_sym__val_number_decimal_token2] = ACTIONS(3155), + [aux_sym__val_number_decimal_token3] = ACTIONS(3157), + [aux_sym__val_number_decimal_token4] = ACTIONS(3159), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [901] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3432), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2076), - [sym__unquoted_with_expr] = STATE(2323), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_ctrl_do] = STATE(4850), + [sym_ctrl_if] = STATE(4850), + [sym_ctrl_match] = STATE(4850), + [sym_ctrl_try] = STATE(4850), + [sym__expression] = STATE(4850), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3784), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1461), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(2837), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), [sym_comment] = STATE(901), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(437), + [aux_sym_cmd_identifier_token39] = ACTIONS(437), + [aux_sym_cmd_identifier_token40] = ACTIONS(437), + [sym__newline] = ACTIONS(3201), + [anon_sym_SEMI] = ACTIONS(3203), + [anon_sym_PIPE] = ACTIONS(3203), + [anon_sym_err_GT_PIPE] = ACTIONS(3203), + [anon_sym_out_GT_PIPE] = ACTIONS(3203), + [anon_sym_e_GT_PIPE] = ACTIONS(3203), + [anon_sym_o_GT_PIPE] = ACTIONS(3203), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3203), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3203), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3203), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3203), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_do] = ACTIONS(3205), + [anon_sym_if] = ACTIONS(3207), + [anon_sym_match] = ACTIONS(3209), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(3203), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(3211), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_record_entry_token1] = ACTIONS(3213), [anon_sym_POUND] = ACTIONS(247), }, [902] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3434), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2105), - [sym__unquoted_with_expr] = STATE(2325), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_ctrl_do] = STATE(4850), + [sym_ctrl_if] = STATE(4850), + [sym_ctrl_match] = STATE(4850), + [sym_ctrl_try] = STATE(4850), + [sym__expression] = STATE(4850), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3784), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1461), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(2837), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), [sym_comment] = STATE(902), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(437), + [aux_sym_cmd_identifier_token39] = ACTIONS(437), + [aux_sym_cmd_identifier_token40] = ACTIONS(437), + [sym__newline] = ACTIONS(3201), + [anon_sym_SEMI] = ACTIONS(3203), + [anon_sym_PIPE] = ACTIONS(3203), + [anon_sym_err_GT_PIPE] = ACTIONS(3203), + [anon_sym_out_GT_PIPE] = ACTIONS(3203), + [anon_sym_e_GT_PIPE] = ACTIONS(3203), + [anon_sym_o_GT_PIPE] = ACTIONS(3203), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3203), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3203), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3203), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3203), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_do] = ACTIONS(3205), + [anon_sym_if] = ACTIONS(3207), + [anon_sym_match] = ACTIONS(3209), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(3203), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(3211), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_record_entry_token1] = ACTIONS(3215), [anon_sym_POUND] = ACTIONS(247), }, [903] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3436), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2108), - [sym__unquoted_with_expr] = STATE(2328), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_ctrl_do] = STATE(4850), + [sym_ctrl_if] = STATE(4850), + [sym_ctrl_match] = STATE(4850), + [sym_ctrl_try] = STATE(4850), + [sym__expression] = STATE(4850), + [sym_expr_unary] = STATE(1606), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1606), + [sym__expr_binary_expression] = STATE(3784), + [sym_expr_parenthesized] = STATE(1458), + [sym_val_range] = STATE(3484), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1675), + [sym_val_variable] = STATE(1461), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(2837), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), [sym_comment] = STATE(903), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3199), + [aux_sym_cmd_identifier_token38] = ACTIONS(437), + [aux_sym_cmd_identifier_token39] = ACTIONS(437), + [aux_sym_cmd_identifier_token40] = ACTIONS(437), + [sym__newline] = ACTIONS(3203), + [anon_sym_SEMI] = ACTIONS(3203), + [anon_sym_PIPE] = ACTIONS(3203), + [anon_sym_err_GT_PIPE] = ACTIONS(3203), + [anon_sym_out_GT_PIPE] = ACTIONS(3203), + [anon_sym_e_GT_PIPE] = ACTIONS(3203), + [anon_sym_o_GT_PIPE] = ACTIONS(3203), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3203), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3203), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3203), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3203), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_RPAREN] = ACTIONS(3203), + [anon_sym_DOLLAR] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_do] = ACTIONS(3205), + [anon_sym_if] = ACTIONS(3207), + [anon_sym_match] = ACTIONS(3209), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(3203), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_try] = ACTIONS(3211), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(213), + [anon_sym_DOT_DOT_LT] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(429), + [aux_sym__val_number_decimal_token2] = ACTIONS(431), + [aux_sym__val_number_decimal_token3] = ACTIONS(433), + [aux_sym__val_number_decimal_token4] = ACTIONS(435), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [anon_sym_POUND] = ACTIONS(247), }, [904] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3438), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1962), - [sym__unquoted_with_expr] = STATE(2333), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2402), + [sym__expr_unary_minus] = STATE(2398), + [sym_expr_binary] = STATE(2402), + [sym__expr_binary_expression] = STATE(2406), + [sym_expr_parenthesized] = STATE(2402), + [sym__val_range] = STATE(7784), + [sym__val_range_with_end] = STATE(7383), + [sym__value] = STATE(2402), + [sym_val_nothing] = STATE(2348), + [sym_val_bool] = STATE(2060), + [sym_val_variable] = STATE(2348), + [sym_val_number] = STATE(2348), + [sym__val_number_decimal] = STATE(1347), + [sym__val_number] = STATE(2401), + [sym_val_duration] = STATE(2348), + [sym_val_filesize] = STATE(2348), + [sym_val_binary] = STATE(2348), + [sym_val_string] = STATE(2348), + [sym__str_double_quotes] = STATE(1984), + [sym_val_interpolated] = STATE(2348), + [sym__inter_single_quotes] = STATE(2404), + [sym__inter_double_quotes] = STATE(2407), + [sym_val_list] = STATE(2348), + [sym_val_record] = STATE(2348), + [sym_val_table] = STATE(2348), + [sym_val_closure] = STATE(2348), + [sym_unquoted] = STATE(2096), + [sym__unquoted_with_expr] = STATE(2409), + [sym__unquoted_anonymous_prefix] = STATE(6671), [sym_comment] = STATE(904), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3217), + [anon_sym_false] = ACTIONS(3217), + [anon_sym_null] = ACTIONS(3219), + [aux_sym_cmd_identifier_token38] = ACTIONS(3221), + [aux_sym_cmd_identifier_token39] = ACTIONS(3221), + [aux_sym_cmd_identifier_token40] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3223), + [anon_sym_DOLLAR] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(53), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3227), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), + [anon_sym_DOT_DOT_LT] = ACTIONS(3229), + [aux_sym__val_number_decimal_token1] = ACTIONS(3231), + [aux_sym__val_number_decimal_token2] = ACTIONS(3233), + [aux_sym__val_number_decimal_token3] = ACTIONS(3235), + [aux_sym__val_number_decimal_token4] = ACTIONS(3237), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3239), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3241), [anon_sym_POUND] = ACTIONS(247), }, [905] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3440), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1963), - [sym__unquoted_with_expr] = STATE(2335), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3745), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3524), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(3375), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1391), + [sym__unquoted_with_expr] = STATE(1623), + [sym__unquoted_anonymous_prefix] = STATE(7135), [sym_comment] = STATE(905), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3243), + [anon_sym_false] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [aux_sym_cmd_identifier_token38] = ACTIONS(3247), + [aux_sym_cmd_identifier_token39] = ACTIONS(3247), + [aux_sym_cmd_identifier_token40] = ACTIONS(3247), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3253), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(3259), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3263), + [aux_sym__val_number_decimal_token2] = ACTIONS(3265), + [aux_sym__val_number_decimal_token3] = ACTIONS(3267), + [aux_sym__val_number_decimal_token4] = ACTIONS(3269), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3271), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, [906] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3442), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1964), - [sym__unquoted_with_expr] = STATE(2339), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3747), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3524), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(3375), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1392), + [sym__unquoted_with_expr] = STATE(1626), + [sym__unquoted_anonymous_prefix] = STATE(7135), [sym_comment] = STATE(906), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3243), + [anon_sym_false] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [aux_sym_cmd_identifier_token38] = ACTIONS(3247), + [aux_sym_cmd_identifier_token39] = ACTIONS(3247), + [aux_sym_cmd_identifier_token40] = ACTIONS(3247), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3253), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(3259), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3263), + [aux_sym__val_number_decimal_token2] = ACTIONS(3265), + [aux_sym__val_number_decimal_token3] = ACTIONS(3267), + [aux_sym__val_number_decimal_token4] = ACTIONS(3269), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3271), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, [907] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3444), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1974), - [sym__unquoted_with_expr] = STATE(2341), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3750), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3524), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(3375), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1393), + [sym__unquoted_with_expr] = STATE(1627), + [sym__unquoted_anonymous_prefix] = STATE(7135), [sym_comment] = STATE(907), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3243), + [anon_sym_false] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [aux_sym_cmd_identifier_token38] = ACTIONS(3247), + [aux_sym_cmd_identifier_token39] = ACTIONS(3247), + [aux_sym_cmd_identifier_token40] = ACTIONS(3247), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3253), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(3259), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3263), + [aux_sym__val_number_decimal_token2] = ACTIONS(3265), + [aux_sym__val_number_decimal_token3] = ACTIONS(3267), + [aux_sym__val_number_decimal_token4] = ACTIONS(3269), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3271), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, [908] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3446), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1976), - [sym__unquoted_with_expr] = STATE(2343), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3752), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3524), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(3375), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1394), + [sym__unquoted_with_expr] = STATE(1628), + [sym__unquoted_anonymous_prefix] = STATE(7135), [sym_comment] = STATE(908), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3243), + [anon_sym_false] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [aux_sym_cmd_identifier_token38] = ACTIONS(3247), + [aux_sym_cmd_identifier_token39] = ACTIONS(3247), + [aux_sym_cmd_identifier_token40] = ACTIONS(3247), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3253), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(3259), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3263), + [aux_sym__val_number_decimal_token2] = ACTIONS(3265), + [aux_sym__val_number_decimal_token3] = ACTIONS(3267), + [aux_sym__val_number_decimal_token4] = ACTIONS(3269), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3271), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, [909] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3448), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1977), - [sym__unquoted_with_expr] = STATE(2345), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3761), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3524), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(3375), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1397), + [sym__unquoted_with_expr] = STATE(1629), + [sym__unquoted_anonymous_prefix] = STATE(7135), [sym_comment] = STATE(909), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3243), + [anon_sym_false] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [aux_sym_cmd_identifier_token38] = ACTIONS(3247), + [aux_sym_cmd_identifier_token39] = ACTIONS(3247), + [aux_sym_cmd_identifier_token40] = ACTIONS(3247), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3253), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(3259), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3263), + [aux_sym__val_number_decimal_token2] = ACTIONS(3265), + [aux_sym__val_number_decimal_token3] = ACTIONS(3267), + [aux_sym__val_number_decimal_token4] = ACTIONS(3269), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3271), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, [910] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3450), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1980), - [sym__unquoted_with_expr] = STATE(2349), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3524), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(3375), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1398), + [sym__unquoted_with_expr] = STATE(1630), + [sym__unquoted_anonymous_prefix] = STATE(7135), [sym_comment] = STATE(910), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3243), + [anon_sym_false] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [aux_sym_cmd_identifier_token38] = ACTIONS(3247), + [aux_sym_cmd_identifier_token39] = ACTIONS(3247), + [aux_sym_cmd_identifier_token40] = ACTIONS(3247), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3253), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(3259), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3263), + [aux_sym__val_number_decimal_token2] = ACTIONS(3265), + [aux_sym__val_number_decimal_token3] = ACTIONS(3267), + [aux_sym__val_number_decimal_token4] = ACTIONS(3269), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3271), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, [911] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2350), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1987), - [sym__unquoted_with_expr] = STATE(2351), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3754), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3524), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(3375), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1399), + [sym__unquoted_with_expr] = STATE(1631), + [sym__unquoted_anonymous_prefix] = STATE(7135), [sym_comment] = STATE(911), - [aux_sym_shebang_repeat1] = STATE(924), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3243), + [anon_sym_false] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [aux_sym_cmd_identifier_token38] = ACTIONS(3247), + [aux_sym_cmd_identifier_token39] = ACTIONS(3247), + [aux_sym_cmd_identifier_token40] = ACTIONS(3247), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3253), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(3259), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3263), + [aux_sym__val_number_decimal_token2] = ACTIONS(3265), + [aux_sym__val_number_decimal_token3] = ACTIONS(3267), + [aux_sym__val_number_decimal_token4] = ACTIONS(3269), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3271), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, [912] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3451), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1992), - [sym__unquoted_with_expr] = STATE(2352), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2402), + [sym__expr_unary_minus] = STATE(2398), + [sym_expr_binary] = STATE(2402), + [sym__expr_binary_expression] = STATE(2403), + [sym_expr_parenthesized] = STATE(2402), + [sym__val_range] = STATE(7784), + [sym__val_range_with_end] = STATE(7383), + [sym__value] = STATE(2402), + [sym_val_nothing] = STATE(2348), + [sym_val_bool] = STATE(3106), + [sym_val_variable] = STATE(2348), + [sym_val_number] = STATE(2348), + [sym__val_number_decimal] = STATE(2888), + [sym__val_number] = STATE(2401), + [sym_val_duration] = STATE(2348), + [sym_val_filesize] = STATE(2348), + [sym_val_binary] = STATE(2348), + [sym_val_string] = STATE(2348), + [sym__str_double_quotes] = STATE(1984), + [sym_val_interpolated] = STATE(2348), + [sym__inter_single_quotes] = STATE(2404), + [sym__inter_double_quotes] = STATE(2407), + [sym_val_list] = STATE(2348), + [sym_val_record] = STATE(2348), + [sym_val_table] = STATE(2348), + [sym_val_closure] = STATE(2348), + [sym_unquoted] = STATE(2095), + [sym__unquoted_with_expr] = STATE(2405), + [sym__unquoted_anonymous_prefix] = STATE(6671), [sym_comment] = STATE(912), - [aux_sym_shebang_repeat1] = STATE(925), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3275), + [anon_sym_false] = ACTIONS(3275), + [anon_sym_null] = ACTIONS(3277), + [aux_sym_cmd_identifier_token38] = ACTIONS(3279), + [aux_sym_cmd_identifier_token39] = ACTIONS(3279), + [aux_sym_cmd_identifier_token40] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3223), + [anon_sym_DOLLAR] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(53), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3227), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), + [anon_sym_DOT_DOT_LT] = ACTIONS(3229), + [aux_sym__val_number_decimal_token1] = ACTIONS(3281), + [aux_sym__val_number_decimal_token2] = ACTIONS(3283), + [aux_sym__val_number_decimal_token3] = ACTIONS(3285), + [aux_sym__val_number_decimal_token4] = ACTIONS(3287), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3289), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3241), [anon_sym_POUND] = ACTIONS(247), }, [913] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3452), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1995), - [sym__unquoted_with_expr] = STATE(2353), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2402), + [sym__expr_unary_minus] = STATE(2398), + [sym_expr_binary] = STATE(2402), + [sym__expr_binary_expression] = STATE(3277), + [sym_expr_parenthesized] = STATE(2402), + [sym__val_range] = STATE(7784), + [sym__val_range_with_end] = STATE(7383), + [sym__value] = STATE(2402), + [sym_val_nothing] = STATE(2348), + [sym_val_bool] = STATE(3106), + [sym_val_variable] = STATE(2348), + [sym_val_number] = STATE(2348), + [sym__val_number_decimal] = STATE(2888), + [sym__val_number] = STATE(2401), + [sym_val_duration] = STATE(2348), + [sym_val_filesize] = STATE(2348), + [sym_val_binary] = STATE(2348), + [sym_val_string] = STATE(2348), + [sym__str_double_quotes] = STATE(1984), + [sym_val_interpolated] = STATE(2348), + [sym__inter_single_quotes] = STATE(2404), + [sym__inter_double_quotes] = STATE(2407), + [sym_val_list] = STATE(2348), + [sym_val_record] = STATE(2348), + [sym_val_table] = STATE(2348), + [sym_val_closure] = STATE(2348), + [sym_unquoted] = STATE(2096), + [sym__unquoted_with_expr] = STATE(2409), + [sym__unquoted_anonymous_prefix] = STATE(6671), [sym_comment] = STATE(913), - [aux_sym_shebang_repeat1] = STATE(926), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3275), + [anon_sym_false] = ACTIONS(3275), + [anon_sym_null] = ACTIONS(3277), + [aux_sym_cmd_identifier_token38] = ACTIONS(3279), + [aux_sym_cmd_identifier_token39] = ACTIONS(3279), + [aux_sym_cmd_identifier_token40] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3223), + [anon_sym_DOLLAR] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(53), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3227), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), + [anon_sym_DOT_DOT_LT] = ACTIONS(3229), + [aux_sym__val_number_decimal_token1] = ACTIONS(3281), + [aux_sym__val_number_decimal_token2] = ACTIONS(3283), + [aux_sym__val_number_decimal_token3] = ACTIONS(3285), + [aux_sym__val_number_decimal_token4] = ACTIONS(3287), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3289), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3241), [anon_sym_POUND] = ACTIONS(247), }, [914] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3453), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2004), - [sym__unquoted_with_expr] = STATE(2181), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2402), + [sym__expr_unary_minus] = STATE(2398), + [sym_expr_binary] = STATE(2402), + [sym__expr_binary_expression] = STATE(3278), + [sym_expr_parenthesized] = STATE(2402), + [sym__val_range] = STATE(7784), + [sym__val_range_with_end] = STATE(7383), + [sym__value] = STATE(2402), + [sym_val_nothing] = STATE(2348), + [sym_val_bool] = STATE(3106), + [sym_val_variable] = STATE(2348), + [sym_val_number] = STATE(2348), + [sym__val_number_decimal] = STATE(2888), + [sym__val_number] = STATE(2401), + [sym_val_duration] = STATE(2348), + [sym_val_filesize] = STATE(2348), + [sym_val_binary] = STATE(2348), + [sym_val_string] = STATE(2348), + [sym__str_double_quotes] = STATE(1984), + [sym_val_interpolated] = STATE(2348), + [sym__inter_single_quotes] = STATE(2404), + [sym__inter_double_quotes] = STATE(2407), + [sym_val_list] = STATE(2348), + [sym_val_record] = STATE(2348), + [sym_val_table] = STATE(2348), + [sym_val_closure] = STATE(2348), + [sym_unquoted] = STATE(2106), + [sym__unquoted_with_expr] = STATE(2413), + [sym__unquoted_anonymous_prefix] = STATE(6671), [sym_comment] = STATE(914), - [aux_sym_shebang_repeat1] = STATE(927), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3275), + [anon_sym_false] = ACTIONS(3275), + [anon_sym_null] = ACTIONS(3277), + [aux_sym_cmd_identifier_token38] = ACTIONS(3279), + [aux_sym_cmd_identifier_token39] = ACTIONS(3279), + [aux_sym_cmd_identifier_token40] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3223), + [anon_sym_DOLLAR] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(53), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3227), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), + [anon_sym_DOT_DOT_LT] = ACTIONS(3229), + [aux_sym__val_number_decimal_token1] = ACTIONS(3281), + [aux_sym__val_number_decimal_token2] = ACTIONS(3283), + [aux_sym__val_number_decimal_token3] = ACTIONS(3285), + [aux_sym__val_number_decimal_token4] = ACTIONS(3287), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3289), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3241), [anon_sym_POUND] = ACTIONS(247), }, [915] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3454), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2006), - [sym__unquoted_with_expr] = STATE(2282), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2402), + [sym__expr_unary_minus] = STATE(2398), + [sym_expr_binary] = STATE(2402), + [sym__expr_binary_expression] = STATE(3279), + [sym_expr_parenthesized] = STATE(2402), + [sym__val_range] = STATE(7784), + [sym__val_range_with_end] = STATE(7383), + [sym__value] = STATE(2402), + [sym_val_nothing] = STATE(2348), + [sym_val_bool] = STATE(3106), + [sym_val_variable] = STATE(2348), + [sym_val_number] = STATE(2348), + [sym__val_number_decimal] = STATE(2888), + [sym__val_number] = STATE(2401), + [sym_val_duration] = STATE(2348), + [sym_val_filesize] = STATE(2348), + [sym_val_binary] = STATE(2348), + [sym_val_string] = STATE(2348), + [sym__str_double_quotes] = STATE(1984), + [sym_val_interpolated] = STATE(2348), + [sym__inter_single_quotes] = STATE(2404), + [sym__inter_double_quotes] = STATE(2407), + [sym_val_list] = STATE(2348), + [sym_val_record] = STATE(2348), + [sym_val_table] = STATE(2348), + [sym_val_closure] = STATE(2348), + [sym_unquoted] = STATE(2108), + [sym__unquoted_with_expr] = STATE(2417), + [sym__unquoted_anonymous_prefix] = STATE(6671), [sym_comment] = STATE(915), - [aux_sym_shebang_repeat1] = STATE(928), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3275), + [anon_sym_false] = ACTIONS(3275), + [anon_sym_null] = ACTIONS(3277), + [aux_sym_cmd_identifier_token38] = ACTIONS(3279), + [aux_sym_cmd_identifier_token39] = ACTIONS(3279), + [aux_sym_cmd_identifier_token40] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3223), + [anon_sym_DOLLAR] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(53), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3227), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), + [anon_sym_DOT_DOT_LT] = ACTIONS(3229), + [aux_sym__val_number_decimal_token1] = ACTIONS(3281), + [aux_sym__val_number_decimal_token2] = ACTIONS(3283), + [aux_sym__val_number_decimal_token3] = ACTIONS(3285), + [aux_sym__val_number_decimal_token4] = ACTIONS(3287), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3289), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3241), [anon_sym_POUND] = ACTIONS(247), }, [916] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3455), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2013), - [sym__unquoted_with_expr] = STATE(2182), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2402), + [sym__expr_unary_minus] = STATE(2398), + [sym_expr_binary] = STATE(2402), + [sym__expr_binary_expression] = STATE(3280), + [sym_expr_parenthesized] = STATE(2402), + [sym__val_range] = STATE(7784), + [sym__val_range_with_end] = STATE(7383), + [sym__value] = STATE(2402), + [sym_val_nothing] = STATE(2348), + [sym_val_bool] = STATE(3106), + [sym_val_variable] = STATE(2348), + [sym_val_number] = STATE(2348), + [sym__val_number_decimal] = STATE(2888), + [sym__val_number] = STATE(2401), + [sym_val_duration] = STATE(2348), + [sym_val_filesize] = STATE(2348), + [sym_val_binary] = STATE(2348), + [sym_val_string] = STATE(2348), + [sym__str_double_quotes] = STATE(1984), + [sym_val_interpolated] = STATE(2348), + [sym__inter_single_quotes] = STATE(2404), + [sym__inter_double_quotes] = STATE(2407), + [sym_val_list] = STATE(2348), + [sym_val_record] = STATE(2348), + [sym_val_table] = STATE(2348), + [sym_val_closure] = STATE(2348), + [sym_unquoted] = STATE(2132), + [sym__unquoted_with_expr] = STATE(2424), + [sym__unquoted_anonymous_prefix] = STATE(6671), [sym_comment] = STATE(916), - [aux_sym_shebang_repeat1] = STATE(929), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3275), + [anon_sym_false] = ACTIONS(3275), + [anon_sym_null] = ACTIONS(3277), + [aux_sym_cmd_identifier_token38] = ACTIONS(3279), + [aux_sym_cmd_identifier_token39] = ACTIONS(3279), + [aux_sym_cmd_identifier_token40] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3223), + [anon_sym_DOLLAR] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(53), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3227), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), + [anon_sym_DOT_DOT_LT] = ACTIONS(3229), + [aux_sym__val_number_decimal_token1] = ACTIONS(3281), + [aux_sym__val_number_decimal_token2] = ACTIONS(3283), + [aux_sym__val_number_decimal_token3] = ACTIONS(3285), + [aux_sym__val_number_decimal_token4] = ACTIONS(3287), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3289), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3241), [anon_sym_POUND] = ACTIONS(247), }, [917] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3456), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2016), - [sym__unquoted_with_expr] = STATE(2183), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2402), + [sym__expr_unary_minus] = STATE(2398), + [sym_expr_binary] = STATE(2402), + [sym__expr_binary_expression] = STATE(3281), + [sym_expr_parenthesized] = STATE(2402), + [sym__val_range] = STATE(7784), + [sym__val_range_with_end] = STATE(7383), + [sym__value] = STATE(2402), + [sym_val_nothing] = STATE(2348), + [sym_val_bool] = STATE(3106), + [sym_val_variable] = STATE(2348), + [sym_val_number] = STATE(2348), + [sym__val_number_decimal] = STATE(2888), + [sym__val_number] = STATE(2401), + [sym_val_duration] = STATE(2348), + [sym_val_filesize] = STATE(2348), + [sym_val_binary] = STATE(2348), + [sym_val_string] = STATE(2348), + [sym__str_double_quotes] = STATE(1984), + [sym_val_interpolated] = STATE(2348), + [sym__inter_single_quotes] = STATE(2404), + [sym__inter_double_quotes] = STATE(2407), + [sym_val_list] = STATE(2348), + [sym_val_record] = STATE(2348), + [sym_val_table] = STATE(2348), + [sym_val_closure] = STATE(2348), + [sym_unquoted] = STATE(2102), + [sym__unquoted_with_expr] = STATE(2427), + [sym__unquoted_anonymous_prefix] = STATE(6671), [sym_comment] = STATE(917), - [aux_sym_shebang_repeat1] = STATE(930), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3275), + [anon_sym_false] = ACTIONS(3275), + [anon_sym_null] = ACTIONS(3277), + [aux_sym_cmd_identifier_token38] = ACTIONS(3279), + [aux_sym_cmd_identifier_token39] = ACTIONS(3279), + [aux_sym_cmd_identifier_token40] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3223), + [anon_sym_DOLLAR] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(53), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3227), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), + [anon_sym_DOT_DOT_LT] = ACTIONS(3229), + [aux_sym__val_number_decimal_token1] = ACTIONS(3281), + [aux_sym__val_number_decimal_token2] = ACTIONS(3283), + [aux_sym__val_number_decimal_token3] = ACTIONS(3285), + [aux_sym__val_number_decimal_token4] = ACTIONS(3287), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3289), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3241), [anon_sym_POUND] = ACTIONS(247), }, [918] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3457), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2022), - [sym__unquoted_with_expr] = STATE(2184), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2402), + [sym__expr_unary_minus] = STATE(2398), + [sym_expr_binary] = STATE(2402), + [sym__expr_binary_expression] = STATE(3282), + [sym_expr_parenthesized] = STATE(2402), + [sym__val_range] = STATE(7784), + [sym__val_range_with_end] = STATE(7383), + [sym__value] = STATE(2402), + [sym_val_nothing] = STATE(2348), + [sym_val_bool] = STATE(3106), + [sym_val_variable] = STATE(2348), + [sym_val_number] = STATE(2348), + [sym__val_number_decimal] = STATE(2888), + [sym__val_number] = STATE(2401), + [sym_val_duration] = STATE(2348), + [sym_val_filesize] = STATE(2348), + [sym_val_binary] = STATE(2348), + [sym_val_string] = STATE(2348), + [sym__str_double_quotes] = STATE(1984), + [sym_val_interpolated] = STATE(2348), + [sym__inter_single_quotes] = STATE(2404), + [sym__inter_double_quotes] = STATE(2407), + [sym_val_list] = STATE(2348), + [sym_val_record] = STATE(2348), + [sym_val_table] = STATE(2348), + [sym_val_closure] = STATE(2348), + [sym_unquoted] = STATE(2131), + [sym__unquoted_with_expr] = STATE(2364), + [sym__unquoted_anonymous_prefix] = STATE(6671), [sym_comment] = STATE(918), - [aux_sym_shebang_repeat1] = STATE(931), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3275), + [anon_sym_false] = ACTIONS(3275), + [anon_sym_null] = ACTIONS(3277), + [aux_sym_cmd_identifier_token38] = ACTIONS(3279), + [aux_sym_cmd_identifier_token39] = ACTIONS(3279), + [aux_sym_cmd_identifier_token40] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3223), + [anon_sym_DOLLAR] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(53), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3227), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), + [anon_sym_DOT_DOT_LT] = ACTIONS(3229), + [aux_sym__val_number_decimal_token1] = ACTIONS(3281), + [aux_sym__val_number_decimal_token2] = ACTIONS(3283), + [aux_sym__val_number_decimal_token3] = ACTIONS(3285), + [aux_sym__val_number_decimal_token4] = ACTIONS(3287), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3289), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3241), [anon_sym_POUND] = ACTIONS(247), }, [919] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3458), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2035), - [sym__unquoted_with_expr] = STATE(2185), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2402), + [sym__expr_unary_minus] = STATE(2398), + [sym_expr_binary] = STATE(2402), + [sym__expr_binary_expression] = STATE(3284), + [sym_expr_parenthesized] = STATE(2402), + [sym__val_range] = STATE(7784), + [sym__val_range_with_end] = STATE(7383), + [sym__value] = STATE(2402), + [sym_val_nothing] = STATE(2348), + [sym_val_bool] = STATE(3106), + [sym_val_variable] = STATE(2348), + [sym_val_number] = STATE(2348), + [sym__val_number_decimal] = STATE(2888), + [sym__val_number] = STATE(2401), + [sym_val_duration] = STATE(2348), + [sym_val_filesize] = STATE(2348), + [sym_val_binary] = STATE(2348), + [sym_val_string] = STATE(2348), + [sym__str_double_quotes] = STATE(1984), + [sym_val_interpolated] = STATE(2348), + [sym__inter_single_quotes] = STATE(2404), + [sym__inter_double_quotes] = STATE(2407), + [sym_val_list] = STATE(2348), + [sym_val_record] = STATE(2348), + [sym_val_table] = STATE(2348), + [sym_val_closure] = STATE(2348), + [sym_unquoted] = STATE(2056), + [sym__unquoted_with_expr] = STATE(2349), + [sym__unquoted_anonymous_prefix] = STATE(6671), [sym_comment] = STATE(919), - [aux_sym_shebang_repeat1] = STATE(932), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3275), + [anon_sym_false] = ACTIONS(3275), + [anon_sym_null] = ACTIONS(3277), + [aux_sym_cmd_identifier_token38] = ACTIONS(3279), + [aux_sym_cmd_identifier_token39] = ACTIONS(3279), + [aux_sym_cmd_identifier_token40] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3223), + [anon_sym_DOLLAR] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(53), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3227), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), + [anon_sym_DOT_DOT_LT] = ACTIONS(3229), + [aux_sym__val_number_decimal_token1] = ACTIONS(3281), + [aux_sym__val_number_decimal_token2] = ACTIONS(3283), + [aux_sym__val_number_decimal_token3] = ACTIONS(3285), + [aux_sym__val_number_decimal_token4] = ACTIONS(3287), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3289), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3241), [anon_sym_POUND] = ACTIONS(247), }, [920] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3459), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2046), - [sym__unquoted_with_expr] = STATE(2186), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2402), + [sym__expr_unary_minus] = STATE(2398), + [sym_expr_binary] = STATE(2402), + [sym__expr_binary_expression] = STATE(3285), + [sym_expr_parenthesized] = STATE(2402), + [sym__val_range] = STATE(7784), + [sym__val_range_with_end] = STATE(7383), + [sym__value] = STATE(2402), + [sym_val_nothing] = STATE(2348), + [sym_val_bool] = STATE(3106), + [sym_val_variable] = STATE(2348), + [sym_val_number] = STATE(2348), + [sym__val_number_decimal] = STATE(2888), + [sym__val_number] = STATE(2401), + [sym_val_duration] = STATE(2348), + [sym_val_filesize] = STATE(2348), + [sym_val_binary] = STATE(2348), + [sym_val_string] = STATE(2348), + [sym__str_double_quotes] = STATE(1984), + [sym_val_interpolated] = STATE(2348), + [sym__inter_single_quotes] = STATE(2404), + [sym__inter_double_quotes] = STATE(2407), + [sym_val_list] = STATE(2348), + [sym_val_record] = STATE(2348), + [sym_val_table] = STATE(2348), + [sym_val_closure] = STATE(2348), + [sym_unquoted] = STATE(2091), + [sym__unquoted_with_expr] = STATE(2362), + [sym__unquoted_anonymous_prefix] = STATE(6671), [sym_comment] = STATE(920), - [aux_sym_shebang_repeat1] = STATE(933), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3275), + [anon_sym_false] = ACTIONS(3275), + [anon_sym_null] = ACTIONS(3277), + [aux_sym_cmd_identifier_token38] = ACTIONS(3279), + [aux_sym_cmd_identifier_token39] = ACTIONS(3279), + [aux_sym_cmd_identifier_token40] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3223), + [anon_sym_DOLLAR] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(53), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3227), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), + [anon_sym_DOT_DOT_LT] = ACTIONS(3229), + [aux_sym__val_number_decimal_token1] = ACTIONS(3281), + [aux_sym__val_number_decimal_token2] = ACTIONS(3283), + [aux_sym__val_number_decimal_token3] = ACTIONS(3285), + [aux_sym__val_number_decimal_token4] = ACTIONS(3287), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3289), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3241), [anon_sym_POUND] = ACTIONS(247), }, [921] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3460), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2092), - [sym__unquoted_with_expr] = STATE(2187), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2402), + [sym__expr_unary_minus] = STATE(2398), + [sym_expr_binary] = STATE(2402), + [sym__expr_binary_expression] = STATE(3287), + [sym_expr_parenthesized] = STATE(2402), + [sym__val_range] = STATE(7784), + [sym__val_range_with_end] = STATE(7383), + [sym__value] = STATE(2402), + [sym_val_nothing] = STATE(2348), + [sym_val_bool] = STATE(3106), + [sym_val_variable] = STATE(2348), + [sym_val_number] = STATE(2348), + [sym__val_number_decimal] = STATE(2888), + [sym__val_number] = STATE(2401), + [sym_val_duration] = STATE(2348), + [sym_val_filesize] = STATE(2348), + [sym_val_binary] = STATE(2348), + [sym_val_string] = STATE(2348), + [sym__str_double_quotes] = STATE(1984), + [sym_val_interpolated] = STATE(2348), + [sym__inter_single_quotes] = STATE(2404), + [sym__inter_double_quotes] = STATE(2407), + [sym_val_list] = STATE(2348), + [sym_val_record] = STATE(2348), + [sym_val_table] = STATE(2348), + [sym_val_closure] = STATE(2348), + [sym_unquoted] = STATE(2121), + [sym__unquoted_with_expr] = STATE(2369), + [sym__unquoted_anonymous_prefix] = STATE(6671), [sym_comment] = STATE(921), - [aux_sym_shebang_repeat1] = STATE(934), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3275), + [anon_sym_false] = ACTIONS(3275), + [anon_sym_null] = ACTIONS(3277), + [aux_sym_cmd_identifier_token38] = ACTIONS(3279), + [aux_sym_cmd_identifier_token39] = ACTIONS(3279), + [aux_sym_cmd_identifier_token40] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3223), + [anon_sym_DOLLAR] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(53), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3227), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), + [anon_sym_DOT_DOT_LT] = ACTIONS(3229), + [aux_sym__val_number_decimal_token1] = ACTIONS(3281), + [aux_sym__val_number_decimal_token2] = ACTIONS(3283), + [aux_sym__val_number_decimal_token3] = ACTIONS(3285), + [aux_sym__val_number_decimal_token4] = ACTIONS(3287), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3289), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3241), [anon_sym_POUND] = ACTIONS(247), }, [922] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3462), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2107), - [sym__unquoted_with_expr] = STATE(2188), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2402), + [sym__expr_unary_minus] = STATE(2398), + [sym_expr_binary] = STATE(2402), + [sym__expr_binary_expression] = STATE(3288), + [sym_expr_parenthesized] = STATE(2402), + [sym__val_range] = STATE(7784), + [sym__val_range_with_end] = STATE(7383), + [sym__value] = STATE(2402), + [sym_val_nothing] = STATE(2348), + [sym_val_bool] = STATE(3106), + [sym_val_variable] = STATE(2348), + [sym_val_number] = STATE(2348), + [sym__val_number_decimal] = STATE(2888), + [sym__val_number] = STATE(2401), + [sym_val_duration] = STATE(2348), + [sym_val_filesize] = STATE(2348), + [sym_val_binary] = STATE(2348), + [sym_val_string] = STATE(2348), + [sym__str_double_quotes] = STATE(1984), + [sym_val_interpolated] = STATE(2348), + [sym__inter_single_quotes] = STATE(2404), + [sym__inter_double_quotes] = STATE(2407), + [sym_val_list] = STATE(2348), + [sym_val_record] = STATE(2348), + [sym_val_table] = STATE(2348), + [sym_val_closure] = STATE(2348), + [sym_unquoted] = STATE(2123), + [sym__unquoted_with_expr] = STATE(2391), + [sym__unquoted_anonymous_prefix] = STATE(6671), [sym_comment] = STATE(922), - [aux_sym_shebang_repeat1] = STATE(935), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3275), + [anon_sym_false] = ACTIONS(3275), + [anon_sym_null] = ACTIONS(3277), + [aux_sym_cmd_identifier_token38] = ACTIONS(3279), + [aux_sym_cmd_identifier_token39] = ACTIONS(3279), + [aux_sym_cmd_identifier_token40] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3223), + [anon_sym_DOLLAR] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(53), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3227), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), + [anon_sym_DOT_DOT_LT] = ACTIONS(3229), + [aux_sym__val_number_decimal_token1] = ACTIONS(3281), + [aux_sym__val_number_decimal_token2] = ACTIONS(3283), + [aux_sym__val_number_decimal_token3] = ACTIONS(3285), + [aux_sym__val_number_decimal_token4] = ACTIONS(3287), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3289), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3241), [anon_sym_POUND] = ACTIONS(247), }, [923] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3464), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2119), - [sym__unquoted_with_expr] = STATE(2189), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2402), + [sym__expr_unary_minus] = STATE(2398), + [sym_expr_binary] = STATE(2402), + [sym__expr_binary_expression] = STATE(3290), + [sym_expr_parenthesized] = STATE(2402), + [sym__val_range] = STATE(7784), + [sym__val_range_with_end] = STATE(7383), + [sym__value] = STATE(2402), + [sym_val_nothing] = STATE(2348), + [sym_val_bool] = STATE(3106), + [sym_val_variable] = STATE(2348), + [sym_val_number] = STATE(2348), + [sym__val_number_decimal] = STATE(2888), + [sym__val_number] = STATE(2401), + [sym_val_duration] = STATE(2348), + [sym_val_filesize] = STATE(2348), + [sym_val_binary] = STATE(2348), + [sym_val_string] = STATE(2348), + [sym__str_double_quotes] = STATE(1984), + [sym_val_interpolated] = STATE(2348), + [sym__inter_single_quotes] = STATE(2404), + [sym__inter_double_quotes] = STATE(2407), + [sym_val_list] = STATE(2348), + [sym_val_record] = STATE(2348), + [sym_val_table] = STATE(2348), + [sym_val_closure] = STATE(2348), + [sym_unquoted] = STATE(2155), + [sym__unquoted_with_expr] = STATE(2366), + [sym__unquoted_anonymous_prefix] = STATE(6671), [sym_comment] = STATE(923), - [aux_sym_shebang_repeat1] = STATE(936), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3275), + [anon_sym_false] = ACTIONS(3275), + [anon_sym_null] = ACTIONS(3277), + [aux_sym_cmd_identifier_token38] = ACTIONS(3279), + [aux_sym_cmd_identifier_token39] = ACTIONS(3279), + [aux_sym_cmd_identifier_token40] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3223), + [anon_sym_DOLLAR] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(53), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3227), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), + [anon_sym_DOT_DOT_LT] = ACTIONS(3229), + [aux_sym__val_number_decimal_token1] = ACTIONS(3281), + [aux_sym__val_number_decimal_token2] = ACTIONS(3283), + [aux_sym__val_number_decimal_token3] = ACTIONS(3285), + [aux_sym__val_number_decimal_token4] = ACTIONS(3287), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3289), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3241), [anon_sym_POUND] = ACTIONS(247), }, [924] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2217), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2008), - [sym__unquoted_with_expr] = STATE(2218), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2402), + [sym__expr_unary_minus] = STATE(2398), + [sym_expr_binary] = STATE(2402), + [sym__expr_binary_expression] = STATE(3291), + [sym_expr_parenthesized] = STATE(2402), + [sym__val_range] = STATE(7784), + [sym__val_range_with_end] = STATE(7383), + [sym__value] = STATE(2402), + [sym_val_nothing] = STATE(2348), + [sym_val_bool] = STATE(3106), + [sym_val_variable] = STATE(2348), + [sym_val_number] = STATE(2348), + [sym__val_number_decimal] = STATE(2888), + [sym__val_number] = STATE(2401), + [sym_val_duration] = STATE(2348), + [sym_val_filesize] = STATE(2348), + [sym_val_binary] = STATE(2348), + [sym_val_string] = STATE(2348), + [sym__str_double_quotes] = STATE(1984), + [sym_val_interpolated] = STATE(2348), + [sym__inter_single_quotes] = STATE(2404), + [sym__inter_double_quotes] = STATE(2407), + [sym_val_list] = STATE(2348), + [sym_val_record] = STATE(2348), + [sym_val_table] = STATE(2348), + [sym_val_closure] = STATE(2348), + [sym_unquoted] = STATE(2156), + [sym__unquoted_with_expr] = STATE(2353), + [sym__unquoted_anonymous_prefix] = STATE(6671), [sym_comment] = STATE(924), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3275), + [anon_sym_false] = ACTIONS(3275), + [anon_sym_null] = ACTIONS(3277), + [aux_sym_cmd_identifier_token38] = ACTIONS(3279), + [aux_sym_cmd_identifier_token39] = ACTIONS(3279), + [aux_sym_cmd_identifier_token40] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3223), + [anon_sym_DOLLAR] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(53), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3227), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), + [anon_sym_DOT_DOT_LT] = ACTIONS(3229), + [aux_sym__val_number_decimal_token1] = ACTIONS(3281), + [aux_sym__val_number_decimal_token2] = ACTIONS(3283), + [aux_sym__val_number_decimal_token3] = ACTIONS(3285), + [aux_sym__val_number_decimal_token4] = ACTIONS(3287), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3289), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3241), [anon_sym_POUND] = ACTIONS(247), }, [925] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3386), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2015), - [sym__unquoted_with_expr] = STATE(2220), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2402), + [sym__expr_unary_minus] = STATE(2398), + [sym_expr_binary] = STATE(2402), + [sym__expr_binary_expression] = STATE(2346), + [sym_expr_parenthesized] = STATE(2402), + [sym__val_range] = STATE(7784), + [sym__val_range_with_end] = STATE(7383), + [sym__value] = STATE(2402), + [sym_val_nothing] = STATE(2348), + [sym_val_bool] = STATE(2060), + [sym_val_variable] = STATE(2348), + [sym_val_number] = STATE(2348), + [sym__val_number_decimal] = STATE(1347), + [sym__val_number] = STATE(2401), + [sym_val_duration] = STATE(2348), + [sym_val_filesize] = STATE(2348), + [sym_val_binary] = STATE(2348), + [sym_val_string] = STATE(2348), + [sym__str_double_quotes] = STATE(1984), + [sym_val_interpolated] = STATE(2348), + [sym__inter_single_quotes] = STATE(2404), + [sym__inter_double_quotes] = STATE(2407), + [sym_val_list] = STATE(2348), + [sym_val_record] = STATE(2348), + [sym_val_table] = STATE(2348), + [sym_val_closure] = STATE(2348), + [sym_unquoted] = STATE(2155), + [sym__unquoted_with_expr] = STATE(2366), + [sym__unquoted_anonymous_prefix] = STATE(6671), [sym_comment] = STATE(925), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3217), + [anon_sym_false] = ACTIONS(3217), + [anon_sym_null] = ACTIONS(3219), + [aux_sym_cmd_identifier_token38] = ACTIONS(3221), + [aux_sym_cmd_identifier_token39] = ACTIONS(3221), + [aux_sym_cmd_identifier_token40] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3223), + [anon_sym_DOLLAR] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(53), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3227), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), + [anon_sym_DOT_DOT_LT] = ACTIONS(3229), + [aux_sym__val_number_decimal_token1] = ACTIONS(3231), + [aux_sym__val_number_decimal_token2] = ACTIONS(3233), + [aux_sym__val_number_decimal_token3] = ACTIONS(3235), + [aux_sym__val_number_decimal_token4] = ACTIONS(3237), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3239), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3241), [anon_sym_POUND] = ACTIONS(247), }, [926] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3480), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2019), - [sym__unquoted_with_expr] = STATE(2222), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2402), + [sym__expr_unary_minus] = STATE(2398), + [sym_expr_binary] = STATE(2402), + [sym__expr_binary_expression] = STATE(2411), + [sym_expr_parenthesized] = STATE(2402), + [sym__val_range] = STATE(7784), + [sym__val_range_with_end] = STATE(7383), + [sym__value] = STATE(2402), + [sym_val_nothing] = STATE(2348), + [sym_val_bool] = STATE(2060), + [sym_val_variable] = STATE(2348), + [sym_val_number] = STATE(2348), + [sym__val_number_decimal] = STATE(1347), + [sym__val_number] = STATE(2401), + [sym_val_duration] = STATE(2348), + [sym_val_filesize] = STATE(2348), + [sym_val_binary] = STATE(2348), + [sym_val_string] = STATE(2348), + [sym__str_double_quotes] = STATE(1984), + [sym_val_interpolated] = STATE(2348), + [sym__inter_single_quotes] = STATE(2404), + [sym__inter_double_quotes] = STATE(2407), + [sym_val_list] = STATE(2348), + [sym_val_record] = STATE(2348), + [sym_val_table] = STATE(2348), + [sym_val_closure] = STATE(2348), + [sym_unquoted] = STATE(2106), + [sym__unquoted_with_expr] = STATE(2413), + [sym__unquoted_anonymous_prefix] = STATE(6671), [sym_comment] = STATE(926), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3217), + [anon_sym_false] = ACTIONS(3217), + [anon_sym_null] = ACTIONS(3219), + [aux_sym_cmd_identifier_token38] = ACTIONS(3221), + [aux_sym_cmd_identifier_token39] = ACTIONS(3221), + [aux_sym_cmd_identifier_token40] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3223), + [anon_sym_DOLLAR] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(53), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3227), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), + [anon_sym_DOT_DOT_LT] = ACTIONS(3229), + [aux_sym__val_number_decimal_token1] = ACTIONS(3231), + [aux_sym__val_number_decimal_token2] = ACTIONS(3233), + [aux_sym__val_number_decimal_token3] = ACTIONS(3235), + [aux_sym__val_number_decimal_token4] = ACTIONS(3237), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3239), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3241), [anon_sym_POUND] = ACTIONS(247), }, [927] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3482), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2031), - [sym__unquoted_with_expr] = STATE(2224), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2402), + [sym__expr_unary_minus] = STATE(2398), + [sym_expr_binary] = STATE(2402), + [sym__expr_binary_expression] = STATE(2382), + [sym_expr_parenthesized] = STATE(2402), + [sym__val_range] = STATE(7784), + [sym__val_range_with_end] = STATE(7383), + [sym__value] = STATE(2402), + [sym_val_nothing] = STATE(2348), + [sym_val_bool] = STATE(2060), + [sym_val_variable] = STATE(2348), + [sym_val_number] = STATE(2348), + [sym__val_number_decimal] = STATE(1347), + [sym__val_number] = STATE(2401), + [sym_val_duration] = STATE(2348), + [sym_val_filesize] = STATE(2348), + [sym_val_binary] = STATE(2348), + [sym_val_string] = STATE(2348), + [sym__str_double_quotes] = STATE(1984), + [sym_val_interpolated] = STATE(2348), + [sym__inter_single_quotes] = STATE(2404), + [sym__inter_double_quotes] = STATE(2407), + [sym_val_list] = STATE(2348), + [sym_val_record] = STATE(2348), + [sym_val_table] = STATE(2348), + [sym_val_closure] = STATE(2348), + [sym_unquoted] = STATE(2102), + [sym__unquoted_with_expr] = STATE(2427), + [sym__unquoted_anonymous_prefix] = STATE(6671), [sym_comment] = STATE(927), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3217), + [anon_sym_false] = ACTIONS(3217), + [anon_sym_null] = ACTIONS(3219), + [aux_sym_cmd_identifier_token38] = ACTIONS(3221), + [aux_sym_cmd_identifier_token39] = ACTIONS(3221), + [aux_sym_cmd_identifier_token40] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3223), + [anon_sym_DOLLAR] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(53), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3227), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), + [anon_sym_DOT_DOT_LT] = ACTIONS(3229), + [aux_sym__val_number_decimal_token1] = ACTIONS(3231), + [aux_sym__val_number_decimal_token2] = ACTIONS(3233), + [aux_sym__val_number_decimal_token3] = ACTIONS(3235), + [aux_sym__val_number_decimal_token4] = ACTIONS(3237), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3239), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3241), [anon_sym_POUND] = ACTIONS(247), }, [928] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3484), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2033), - [sym__unquoted_with_expr] = STATE(2226), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2402), + [sym__expr_unary_minus] = STATE(2398), + [sym_expr_binary] = STATE(2402), + [sym__expr_binary_expression] = STATE(2387), + [sym_expr_parenthesized] = STATE(2402), + [sym__val_range] = STATE(7784), + [sym__val_range_with_end] = STATE(7383), + [sym__value] = STATE(2402), + [sym_val_nothing] = STATE(2348), + [sym_val_bool] = STATE(2060), + [sym_val_variable] = STATE(2348), + [sym_val_number] = STATE(2348), + [sym__val_number_decimal] = STATE(1347), + [sym__val_number] = STATE(2401), + [sym_val_duration] = STATE(2348), + [sym_val_filesize] = STATE(2348), + [sym_val_binary] = STATE(2348), + [sym_val_string] = STATE(2348), + [sym__str_double_quotes] = STATE(1984), + [sym_val_interpolated] = STATE(2348), + [sym__inter_single_quotes] = STATE(2404), + [sym__inter_double_quotes] = STATE(2407), + [sym_val_list] = STATE(2348), + [sym_val_record] = STATE(2348), + [sym_val_table] = STATE(2348), + [sym_val_closure] = STATE(2348), + [sym_unquoted] = STATE(2131), + [sym__unquoted_with_expr] = STATE(2364), + [sym__unquoted_anonymous_prefix] = STATE(6671), [sym_comment] = STATE(928), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3217), + [anon_sym_false] = ACTIONS(3217), + [anon_sym_null] = ACTIONS(3219), + [aux_sym_cmd_identifier_token38] = ACTIONS(3221), + [aux_sym_cmd_identifier_token39] = ACTIONS(3221), + [aux_sym_cmd_identifier_token40] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3223), + [anon_sym_DOLLAR] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(53), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3227), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), + [anon_sym_DOT_DOT_LT] = ACTIONS(3229), + [aux_sym__val_number_decimal_token1] = ACTIONS(3231), + [aux_sym__val_number_decimal_token2] = ACTIONS(3233), + [aux_sym__val_number_decimal_token3] = ACTIONS(3235), + [aux_sym__val_number_decimal_token4] = ACTIONS(3237), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3239), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3241), [anon_sym_POUND] = ACTIONS(247), }, [929] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3486), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2050), - [sym__unquoted_with_expr] = STATE(2229), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2402), + [sym__expr_unary_minus] = STATE(2398), + [sym_expr_binary] = STATE(2402), + [sym__expr_binary_expression] = STATE(2354), + [sym_expr_parenthesized] = STATE(2402), + [sym__val_range] = STATE(7784), + [sym__val_range_with_end] = STATE(7383), + [sym__value] = STATE(2402), + [sym_val_nothing] = STATE(2348), + [sym_val_bool] = STATE(2060), + [sym_val_variable] = STATE(2348), + [sym_val_number] = STATE(2348), + [sym__val_number_decimal] = STATE(1347), + [sym__val_number] = STATE(2401), + [sym_val_duration] = STATE(2348), + [sym_val_filesize] = STATE(2348), + [sym_val_binary] = STATE(2348), + [sym_val_string] = STATE(2348), + [sym__str_double_quotes] = STATE(1984), + [sym_val_interpolated] = STATE(2348), + [sym__inter_single_quotes] = STATE(2404), + [sym__inter_double_quotes] = STATE(2407), + [sym_val_list] = STATE(2348), + [sym_val_record] = STATE(2348), + [sym_val_table] = STATE(2348), + [sym_val_closure] = STATE(2348), + [sym_unquoted] = STATE(2056), + [sym__unquoted_with_expr] = STATE(2349), + [sym__unquoted_anonymous_prefix] = STATE(6671), [sym_comment] = STATE(929), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3217), + [anon_sym_false] = ACTIONS(3217), + [anon_sym_null] = ACTIONS(3219), + [aux_sym_cmd_identifier_token38] = ACTIONS(3221), + [aux_sym_cmd_identifier_token39] = ACTIONS(3221), + [aux_sym_cmd_identifier_token40] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3223), + [anon_sym_DOLLAR] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(53), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3227), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), + [anon_sym_DOT_DOT_LT] = ACTIONS(3229), + [aux_sym__val_number_decimal_token1] = ACTIONS(3231), + [aux_sym__val_number_decimal_token2] = ACTIONS(3233), + [aux_sym__val_number_decimal_token3] = ACTIONS(3235), + [aux_sym__val_number_decimal_token4] = ACTIONS(3237), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3239), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3241), [anon_sym_POUND] = ACTIONS(247), }, [930] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3488), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2051), - [sym__unquoted_with_expr] = STATE(2231), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2402), + [sym__expr_unary_minus] = STATE(2398), + [sym_expr_binary] = STATE(2402), + [sym__expr_binary_expression] = STATE(2351), + [sym_expr_parenthesized] = STATE(2402), + [sym__val_range] = STATE(7784), + [sym__val_range_with_end] = STATE(7383), + [sym__value] = STATE(2402), + [sym_val_nothing] = STATE(2348), + [sym_val_bool] = STATE(2060), + [sym_val_variable] = STATE(2348), + [sym_val_number] = STATE(2348), + [sym__val_number_decimal] = STATE(1347), + [sym__val_number] = STATE(2401), + [sym_val_duration] = STATE(2348), + [sym_val_filesize] = STATE(2348), + [sym_val_binary] = STATE(2348), + [sym_val_string] = STATE(2348), + [sym__str_double_quotes] = STATE(1984), + [sym_val_interpolated] = STATE(2348), + [sym__inter_single_quotes] = STATE(2404), + [sym__inter_double_quotes] = STATE(2407), + [sym_val_list] = STATE(2348), + [sym_val_record] = STATE(2348), + [sym_val_table] = STATE(2348), + [sym_val_closure] = STATE(2348), + [sym_unquoted] = STATE(2091), + [sym__unquoted_with_expr] = STATE(2362), + [sym__unquoted_anonymous_prefix] = STATE(6671), [sym_comment] = STATE(930), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3217), + [anon_sym_false] = ACTIONS(3217), + [anon_sym_null] = ACTIONS(3219), + [aux_sym_cmd_identifier_token38] = ACTIONS(3221), + [aux_sym_cmd_identifier_token39] = ACTIONS(3221), + [aux_sym_cmd_identifier_token40] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3223), + [anon_sym_DOLLAR] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(53), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3227), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), + [anon_sym_DOT_DOT_LT] = ACTIONS(3229), + [aux_sym__val_number_decimal_token1] = ACTIONS(3231), + [aux_sym__val_number_decimal_token2] = ACTIONS(3233), + [aux_sym__val_number_decimal_token3] = ACTIONS(3235), + [aux_sym__val_number_decimal_token4] = ACTIONS(3237), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3239), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3241), [anon_sym_POUND] = ACTIONS(247), }, [931] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3490), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2054), - [sym__unquoted_with_expr] = STATE(2233), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(2402), + [sym__expr_unary_minus] = STATE(2398), + [sym_expr_binary] = STATE(2402), + [sym__expr_binary_expression] = STATE(2414), + [sym_expr_parenthesized] = STATE(2402), + [sym__val_range] = STATE(7784), + [sym__val_range_with_end] = STATE(7383), + [sym__value] = STATE(2402), + [sym_val_nothing] = STATE(2348), + [sym_val_bool] = STATE(2060), + [sym_val_variable] = STATE(2348), + [sym_val_number] = STATE(2348), + [sym__val_number_decimal] = STATE(1347), + [sym__val_number] = STATE(2401), + [sym_val_duration] = STATE(2348), + [sym_val_filesize] = STATE(2348), + [sym_val_binary] = STATE(2348), + [sym_val_string] = STATE(2348), + [sym__str_double_quotes] = STATE(1984), + [sym_val_interpolated] = STATE(2348), + [sym__inter_single_quotes] = STATE(2404), + [sym__inter_double_quotes] = STATE(2407), + [sym_val_list] = STATE(2348), + [sym_val_record] = STATE(2348), + [sym_val_table] = STATE(2348), + [sym_val_closure] = STATE(2348), + [sym_unquoted] = STATE(2108), + [sym__unquoted_with_expr] = STATE(2417), + [sym__unquoted_anonymous_prefix] = STATE(6671), [sym_comment] = STATE(931), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3217), + [anon_sym_false] = ACTIONS(3217), + [anon_sym_null] = ACTIONS(3219), + [aux_sym_cmd_identifier_token38] = ACTIONS(3221), + [aux_sym_cmd_identifier_token39] = ACTIONS(3221), + [aux_sym_cmd_identifier_token40] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3223), + [anon_sym_DOLLAR] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(53), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3227), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), + [anon_sym_DOT_DOT_LT] = ACTIONS(3229), + [aux_sym__val_number_decimal_token1] = ACTIONS(3231), + [aux_sym__val_number_decimal_token2] = ACTIONS(3233), + [aux_sym__val_number_decimal_token3] = ACTIONS(3235), + [aux_sym__val_number_decimal_token4] = ACTIONS(3237), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3239), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3241), [anon_sym_POUND] = ACTIONS(247), }, [932] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3492), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2059), - [sym__unquoted_with_expr] = STATE(2236), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(1615), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3467), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(3300), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1433), + [sym__unquoted_with_expr] = STATE(1616), + [sym__unquoted_anonymous_prefix] = STATE(7135), [sym_comment] = STATE(932), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3291), + [anon_sym_false] = ACTIONS(3291), + [anon_sym_null] = ACTIONS(3293), + [aux_sym_cmd_identifier_token38] = ACTIONS(3295), + [aux_sym_cmd_identifier_token39] = ACTIONS(3295), + [aux_sym_cmd_identifier_token40] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(3299), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3301), + [aux_sym__val_number_decimal_token2] = ACTIONS(3303), + [aux_sym__val_number_decimal_token3] = ACTIONS(3305), + [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, [933] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3494), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2081), - [sym__unquoted_with_expr] = STATE(2238), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3676), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3467), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(3300), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1380), + [sym__unquoted_with_expr] = STATE(1617), + [sym__unquoted_anonymous_prefix] = STATE(7135), [sym_comment] = STATE(933), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3291), + [anon_sym_false] = ACTIONS(3291), + [anon_sym_null] = ACTIONS(3293), + [aux_sym_cmd_identifier_token38] = ACTIONS(3295), + [aux_sym_cmd_identifier_token39] = ACTIONS(3295), + [aux_sym_cmd_identifier_token40] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(3299), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3301), + [aux_sym__val_number_decimal_token2] = ACTIONS(3303), + [aux_sym__val_number_decimal_token3] = ACTIONS(3305), + [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, [934] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3496), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2110), - [sym__unquoted_with_expr] = STATE(2240), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3677), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3467), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(3300), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1385), + [sym__unquoted_with_expr] = STATE(1618), + [sym__unquoted_anonymous_prefix] = STATE(7135), [sym_comment] = STATE(934), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3291), + [anon_sym_false] = ACTIONS(3291), + [anon_sym_null] = ACTIONS(3293), + [aux_sym_cmd_identifier_token38] = ACTIONS(3295), + [aux_sym_cmd_identifier_token39] = ACTIONS(3295), + [aux_sym_cmd_identifier_token40] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(3299), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3301), + [aux_sym__val_number_decimal_token2] = ACTIONS(3303), + [aux_sym__val_number_decimal_token3] = ACTIONS(3305), + [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, [935] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3498), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2122), - [sym__unquoted_with_expr] = STATE(2243), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3678), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3467), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(3300), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1386), + [sym__unquoted_with_expr] = STATE(1619), + [sym__unquoted_anonymous_prefix] = STATE(7135), [sym_comment] = STATE(935), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3291), + [anon_sym_false] = ACTIONS(3291), + [anon_sym_null] = ACTIONS(3293), + [aux_sym_cmd_identifier_token38] = ACTIONS(3295), + [aux_sym_cmd_identifier_token39] = ACTIONS(3295), + [aux_sym_cmd_identifier_token40] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(3299), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3301), + [aux_sym__val_number_decimal_token2] = ACTIONS(3303), + [aux_sym__val_number_decimal_token3] = ACTIONS(3305), + [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, [936] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3500), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3374), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3164), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1958), - [sym__unquoted_with_expr] = STATE(2245), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3679), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3467), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(3300), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1387), + [sym__unquoted_with_expr] = STATE(1620), + [sym__unquoted_anonymous_prefix] = STATE(7135), [sym_comment] = STATE(936), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_null] = ACTIONS(3185), - [aux_sym_cmd_identifier_token38] = ACTIONS(3187), - [aux_sym_cmd_identifier_token39] = ACTIONS(3187), - [aux_sym_cmd_identifier_token40] = ACTIONS(3187), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3189), - [aux_sym__val_number_decimal_token2] = ACTIONS(3191), - [aux_sym__val_number_decimal_token3] = ACTIONS(3193), - [aux_sym__val_number_decimal_token4] = ACTIONS(3195), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3291), + [anon_sym_false] = ACTIONS(3291), + [anon_sym_null] = ACTIONS(3293), + [aux_sym_cmd_identifier_token38] = ACTIONS(3295), + [aux_sym_cmd_identifier_token39] = ACTIONS(3295), + [aux_sym_cmd_identifier_token40] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(3299), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3301), + [aux_sym__val_number_decimal_token2] = ACTIONS(3303), + [aux_sym__val_number_decimal_token3] = ACTIONS(3305), + [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, [937] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2522), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1977), - [sym__unquoted_with_expr] = STATE(2345), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3680), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3467), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(3300), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1388), + [sym__unquoted_with_expr] = STATE(1622), + [sym__unquoted_anonymous_prefix] = STATE(7135), [sym_comment] = STATE(937), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3291), + [anon_sym_false] = ACTIONS(3291), + [anon_sym_null] = ACTIONS(3293), + [aux_sym_cmd_identifier_token38] = ACTIONS(3295), + [aux_sym_cmd_identifier_token39] = ACTIONS(3295), + [aux_sym_cmd_identifier_token40] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(3299), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3301), + [aux_sym__val_number_decimal_token2] = ACTIONS(3303), + [aux_sym__val_number_decimal_token3] = ACTIONS(3305), + [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, [938] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2527), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1980), - [sym__unquoted_with_expr] = STATE(2349), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3681), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3467), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(3300), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1391), + [sym__unquoted_with_expr] = STATE(1623), + [sym__unquoted_anonymous_prefix] = STATE(7135), [sym_comment] = STATE(938), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3291), + [anon_sym_false] = ACTIONS(3291), + [anon_sym_null] = ACTIONS(3293), + [aux_sym_cmd_identifier_token38] = ACTIONS(3295), + [aux_sym_cmd_identifier_token39] = ACTIONS(3295), + [aux_sym_cmd_identifier_token40] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(3299), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3301), + [aux_sym__val_number_decimal_token2] = ACTIONS(3303), + [aux_sym__val_number_decimal_token3] = ACTIONS(3305), + [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, [939] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2350), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1987), - [sym__unquoted_with_expr] = STATE(2351), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3682), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3467), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(3300), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1392), + [sym__unquoted_with_expr] = STATE(1626), + [sym__unquoted_anonymous_prefix] = STATE(7135), [sym_comment] = STATE(939), - [aux_sym_shebang_repeat1] = STATE(949), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3291), + [anon_sym_false] = ACTIONS(3291), + [anon_sym_null] = ACTIONS(3293), + [aux_sym_cmd_identifier_token38] = ACTIONS(3295), + [aux_sym_cmd_identifier_token39] = ACTIONS(3295), + [aux_sym_cmd_identifier_token40] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(3299), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3301), + [aux_sym__val_number_decimal_token2] = ACTIONS(3303), + [aux_sym__val_number_decimal_token3] = ACTIONS(3305), + [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, [940] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2529), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1992), - [sym__unquoted_with_expr] = STATE(2352), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3683), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3467), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(3300), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1393), + [sym__unquoted_with_expr] = STATE(1627), + [sym__unquoted_anonymous_prefix] = STATE(7135), [sym_comment] = STATE(940), - [aux_sym_shebang_repeat1] = STATE(950), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3291), + [anon_sym_false] = ACTIONS(3291), + [anon_sym_null] = ACTIONS(3293), + [aux_sym_cmd_identifier_token38] = ACTIONS(3295), + [aux_sym_cmd_identifier_token39] = ACTIONS(3295), + [aux_sym_cmd_identifier_token40] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(3299), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3301), + [aux_sym__val_number_decimal_token2] = ACTIONS(3303), + [aux_sym__val_number_decimal_token3] = ACTIONS(3305), + [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, [941] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3684), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3467), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(3300), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1394), + [sym__unquoted_with_expr] = STATE(1628), + [sym__unquoted_anonymous_prefix] = STATE(7135), [sym_comment] = STATE(941), - [anon_sym_true] = ACTIONS(1008), - [anon_sym_false] = ACTIONS(1008), - [anon_sym_null] = ACTIONS(1008), - [aux_sym_cmd_identifier_token38] = ACTIONS(1008), - [aux_sym_cmd_identifier_token39] = ACTIONS(1008), - [aux_sym_cmd_identifier_token40] = ACTIONS(1008), - [sym__newline] = ACTIONS(1008), - [anon_sym_LBRACK] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_COMMA] = ACTIONS(1008), - [anon_sym_DOLLAR] = ACTIONS(1008), - [aux_sym_ctrl_match_token1] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1008), - [anon_sym__] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [aux_sym_expr_binary_token1] = ACTIONS(1008), - [aux_sym_expr_binary_token2] = ACTIONS(1008), - [aux_sym_expr_binary_token3] = ACTIONS(1008), - [aux_sym_expr_binary_token4] = ACTIONS(1008), - [aux_sym_expr_binary_token5] = ACTIONS(1008), - [aux_sym_expr_binary_token6] = ACTIONS(1008), - [aux_sym_expr_binary_token7] = ACTIONS(1008), - [aux_sym_expr_binary_token8] = ACTIONS(1008), - [aux_sym_expr_binary_token9] = ACTIONS(1008), - [aux_sym_expr_binary_token10] = ACTIONS(1008), - [aux_sym_expr_binary_token11] = ACTIONS(1008), - [aux_sym_expr_binary_token12] = ACTIONS(1008), - [aux_sym_expr_binary_token13] = ACTIONS(1008), - [aux_sym_expr_binary_token14] = ACTIONS(1008), - [aux_sym_expr_binary_token15] = ACTIONS(1008), - [aux_sym_expr_binary_token16] = ACTIONS(1008), - [aux_sym_expr_binary_token17] = ACTIONS(1008), - [aux_sym_expr_binary_token18] = ACTIONS(1008), - [aux_sym_expr_binary_token19] = ACTIONS(1008), - [aux_sym_expr_binary_token20] = ACTIONS(1008), - [aux_sym_expr_binary_token21] = ACTIONS(1008), - [aux_sym_expr_binary_token22] = ACTIONS(1008), - [aux_sym_expr_binary_token23] = ACTIONS(1008), - [aux_sym_expr_binary_token24] = ACTIONS(1008), - [aux_sym_expr_binary_token25] = ACTIONS(1008), - [aux_sym_expr_binary_token26] = ACTIONS(1008), - [aux_sym_expr_binary_token27] = ACTIONS(1008), - [aux_sym_expr_binary_token28] = ACTIONS(1008), - [anon_sym_DOT_DOT2] = ACTIONS(3179), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3181), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1008), - [aux_sym__val_number_decimal_token3] = ACTIONS(1008), - [aux_sym__val_number_decimal_token4] = ACTIONS(1008), - [aux_sym__val_number_token1] = ACTIONS(1008), - [aux_sym__val_number_token2] = ACTIONS(1008), - [aux_sym__val_number_token3] = ACTIONS(1008), - [anon_sym_0b] = ACTIONS(1006), - [anon_sym_0o] = ACTIONS(1006), - [anon_sym_0x] = ACTIONS(1006), - [sym_val_date] = ACTIONS(1008), - [anon_sym_DQUOTE] = ACTIONS(1008), - [sym__str_single_quotes] = ACTIONS(1008), - [sym__str_back_ticks] = ACTIONS(1008), - [anon_sym_err_GT] = ACTIONS(1006), - [anon_sym_out_GT] = ACTIONS(1006), - [anon_sym_e_GT] = ACTIONS(1006), - [anon_sym_o_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT] = ACTIONS(1006), - [anon_sym_err_GT_GT] = ACTIONS(1008), - [anon_sym_out_GT_GT] = ACTIONS(1008), - [anon_sym_e_GT_GT] = ACTIONS(1008), - [anon_sym_o_GT_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), - [aux_sym_unquoted_token1] = ACTIONS(1006), + [anon_sym_true] = ACTIONS(3291), + [anon_sym_false] = ACTIONS(3291), + [anon_sym_null] = ACTIONS(3293), + [aux_sym_cmd_identifier_token38] = ACTIONS(3295), + [aux_sym_cmd_identifier_token39] = ACTIONS(3295), + [aux_sym_cmd_identifier_token40] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(3299), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3301), + [aux_sym__val_number_decimal_token2] = ACTIONS(3303), + [aux_sym__val_number_decimal_token3] = ACTIONS(3305), + [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, [942] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2535), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1995), - [sym__unquoted_with_expr] = STATE(2353), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3685), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3467), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(3300), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1397), + [sym__unquoted_with_expr] = STATE(1629), + [sym__unquoted_anonymous_prefix] = STATE(7135), [sym_comment] = STATE(942), - [aux_sym_shebang_repeat1] = STATE(951), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3291), + [anon_sym_false] = ACTIONS(3291), + [anon_sym_null] = ACTIONS(3293), + [aux_sym_cmd_identifier_token38] = ACTIONS(3295), + [aux_sym_cmd_identifier_token39] = ACTIONS(3295), + [aux_sym_cmd_identifier_token40] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(3299), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3301), + [aux_sym__val_number_decimal_token2] = ACTIONS(3303), + [aux_sym__val_number_decimal_token3] = ACTIONS(3305), + [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, [943] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2536), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2004), - [sym__unquoted_with_expr] = STATE(2181), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3686), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3467), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(3300), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1398), + [sym__unquoted_with_expr] = STATE(1630), + [sym__unquoted_anonymous_prefix] = STATE(7135), [sym_comment] = STATE(943), - [aux_sym_shebang_repeat1] = STATE(952), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3291), + [anon_sym_false] = ACTIONS(3291), + [anon_sym_null] = ACTIONS(3293), + [aux_sym_cmd_identifier_token38] = ACTIONS(3295), + [aux_sym_cmd_identifier_token39] = ACTIONS(3295), + [aux_sym_cmd_identifier_token40] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(3299), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3301), + [aux_sym__val_number_decimal_token2] = ACTIONS(3303), + [aux_sym__val_number_decimal_token3] = ACTIONS(3305), + [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, [944] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2454), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2006), - [sym__unquoted_with_expr] = STATE(2282), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3687), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3467), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(3300), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1399), + [sym__unquoted_with_expr] = STATE(1631), + [sym__unquoted_anonymous_prefix] = STATE(7135), [sym_comment] = STATE(944), - [aux_sym_shebang_repeat1] = STATE(953), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3291), + [anon_sym_false] = ACTIONS(3291), + [anon_sym_null] = ACTIONS(3293), + [aux_sym_cmd_identifier_token38] = ACTIONS(3295), + [aux_sym_cmd_identifier_token39] = ACTIONS(3295), + [aux_sym_cmd_identifier_token40] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(3299), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3301), + [aux_sym__val_number_decimal_token2] = ACTIONS(3303), + [aux_sym__val_number_decimal_token3] = ACTIONS(3305), + [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, [945] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2507), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2013), - [sym__unquoted_with_expr] = STATE(2182), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_ctrl_do] = STATE(5064), + [sym_ctrl_if] = STATE(5064), + [sym_ctrl_match] = STATE(5064), + [sym_ctrl_try] = STATE(5064), + [sym__expression] = STATE(5064), + [sym_expr_unary] = STATE(2381), + [sym__expr_unary_minus] = STATE(2398), + [sym_expr_binary] = STATE(2381), + [sym__expr_binary_expression] = STATE(3788), + [sym_expr_parenthesized] = STATE(1971), + [sym_val_range] = STATE(3771), + [sym__value] = STATE(2381), + [sym_val_nothing] = STATE(2348), + [sym_val_bool] = STATE(2348), + [sym_val_variable] = STATE(1938), + [sym_val_number] = STATE(2348), + [sym__val_number_decimal] = STATE(3064), + [sym__val_number] = STATE(2401), + [sym_val_duration] = STATE(2348), + [sym_val_filesize] = STATE(2348), + [sym_val_binary] = STATE(2348), + [sym_val_string] = STATE(2348), + [sym__str_double_quotes] = STATE(1984), + [sym_val_interpolated] = STATE(2348), + [sym__inter_single_quotes] = STATE(2404), + [sym__inter_double_quotes] = STATE(2407), + [sym_val_list] = STATE(2348), + [sym_val_record] = STATE(2348), + [sym_val_table] = STATE(2348), + [sym_val_closure] = STATE(2348), [sym_comment] = STATE(945), - [aux_sym_shebang_repeat1] = STATE(954), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [ts_builtin_sym_end] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3311), + [anon_sym_false] = ACTIONS(3311), + [anon_sym_null] = ACTIONS(3313), + [aux_sym_cmd_identifier_token38] = ACTIONS(103), + [aux_sym_cmd_identifier_token39] = ACTIONS(103), + [aux_sym_cmd_identifier_token40] = ACTIONS(103), + [sym__newline] = ACTIONS(3203), + [anon_sym_SEMI] = ACTIONS(3203), + [anon_sym_PIPE] = ACTIONS(3203), + [anon_sym_err_GT_PIPE] = ACTIONS(3203), + [anon_sym_out_GT_PIPE] = ACTIONS(3203), + [anon_sym_e_GT_PIPE] = ACTIONS(3203), + [anon_sym_o_GT_PIPE] = ACTIONS(3203), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3203), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3203), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3203), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3203), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_do] = ACTIONS(3315), + [anon_sym_if] = ACTIONS(3317), + [anon_sym_match] = ACTIONS(3319), + [aux_sym_ctrl_match_token1] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(73), + [anon_sym_try] = ACTIONS(3321), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(93), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [aux_sym__val_number_decimal_token1] = ACTIONS(95), + [aux_sym__val_number_decimal_token2] = ACTIONS(97), + [aux_sym__val_number_decimal_token3] = ACTIONS(99), + [aux_sym__val_number_decimal_token4] = ACTIONS(101), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), [anon_sym_POUND] = ACTIONS(247), }, [946] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2396), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2016), - [sym__unquoted_with_expr] = STATE(2183), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(1615), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3616), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(3337), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1433), + [sym__unquoted_with_expr] = STATE(1616), + [sym__unquoted_anonymous_prefix] = STATE(7135), [sym_comment] = STATE(946), - [aux_sym_shebang_repeat1] = STATE(955), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3323), + [anon_sym_false] = ACTIONS(3323), + [anon_sym_null] = ACTIONS(3325), + [aux_sym_cmd_identifier_token38] = ACTIONS(3327), + [aux_sym_cmd_identifier_token39] = ACTIONS(3327), + [aux_sym_cmd_identifier_token40] = ACTIONS(3327), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(3299), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3329), + [aux_sym__val_number_decimal_token2] = ACTIONS(3331), + [aux_sym__val_number_decimal_token3] = ACTIONS(3333), + [aux_sym__val_number_decimal_token4] = ACTIONS(3335), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3337), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, [947] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2426), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2022), - [sym__unquoted_with_expr] = STATE(2184), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3755), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3616), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(3337), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1380), + [sym__unquoted_with_expr] = STATE(1617), + [sym__unquoted_anonymous_prefix] = STATE(7135), [sym_comment] = STATE(947), - [aux_sym_shebang_repeat1] = STATE(956), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3323), + [anon_sym_false] = ACTIONS(3323), + [anon_sym_null] = ACTIONS(3325), + [aux_sym_cmd_identifier_token38] = ACTIONS(3327), + [aux_sym_cmd_identifier_token39] = ACTIONS(3327), + [aux_sym_cmd_identifier_token40] = ACTIONS(3327), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(3299), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3329), + [aux_sym__val_number_decimal_token2] = ACTIONS(3331), + [aux_sym__val_number_decimal_token3] = ACTIONS(3333), + [aux_sym__val_number_decimal_token4] = ACTIONS(3335), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3337), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, [948] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2519), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2035), - [sym__unquoted_with_expr] = STATE(2185), - [sym__unquoted_anonymous_prefix] = STATE(7269), + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3757), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3616), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(3337), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1385), + [sym__unquoted_with_expr] = STATE(1618), + [sym__unquoted_anonymous_prefix] = STATE(7135), [sym_comment] = STATE(948), - [aux_sym_shebang_repeat1] = STATE(957), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), - [anon_sym_POUND] = ACTIONS(247), - }, - [949] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2217), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2008), - [sym__unquoted_with_expr] = STATE(2218), - [sym__unquoted_anonymous_prefix] = STATE(7269), - [sym_comment] = STATE(949), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), - [anon_sym_POUND] = ACTIONS(247), - }, - [950] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2370), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2015), - [sym__unquoted_with_expr] = STATE(2220), - [sym__unquoted_anonymous_prefix] = STATE(7269), - [sym_comment] = STATE(950), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), - [anon_sym_POUND] = ACTIONS(247), - }, - [951] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2376), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2019), - [sym__unquoted_with_expr] = STATE(2222), - [sym__unquoted_anonymous_prefix] = STATE(7269), - [sym_comment] = STATE(951), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), - [anon_sym_POUND] = ACTIONS(247), - }, - [952] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2383), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2031), - [sym__unquoted_with_expr] = STATE(2224), - [sym__unquoted_anonymous_prefix] = STATE(7269), - [sym_comment] = STATE(952), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), - [anon_sym_POUND] = ACTIONS(247), - }, - [953] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2394), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2033), - [sym__unquoted_with_expr] = STATE(2226), - [sym__unquoted_anonymous_prefix] = STATE(7269), - [sym_comment] = STATE(953), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), - [anon_sym_POUND] = ACTIONS(247), - }, - [954] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2403), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2050), - [sym__unquoted_with_expr] = STATE(2229), - [sym__unquoted_anonymous_prefix] = STATE(7269), - [sym_comment] = STATE(954), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), - [anon_sym_POUND] = ACTIONS(247), - }, - [955] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2416), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2051), - [sym__unquoted_with_expr] = STATE(2231), - [sym__unquoted_anonymous_prefix] = STATE(7269), - [sym_comment] = STATE(955), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), - [anon_sym_POUND] = ACTIONS(247), - }, - [956] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2428), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2054), - [sym__unquoted_with_expr] = STATE(2233), - [sym__unquoted_anonymous_prefix] = STATE(7269), - [sym_comment] = STATE(956), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), - [anon_sym_POUND] = ACTIONS(247), - }, - [957] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2455), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2059), - [sym__unquoted_with_expr] = STATE(2236), - [sym__unquoted_anonymous_prefix] = STATE(7269), - [sym_comment] = STATE(957), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), - [anon_sym_POUND] = ACTIONS(247), - }, - [958] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2460), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2081), - [sym__unquoted_with_expr] = STATE(2238), - [sym__unquoted_anonymous_prefix] = STATE(7269), - [sym_comment] = STATE(958), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), - [anon_sym_POUND] = ACTIONS(247), - }, - [959] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2473), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2110), - [sym__unquoted_with_expr] = STATE(2240), - [sym__unquoted_anonymous_prefix] = STATE(7269), - [sym_comment] = STATE(959), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), - [anon_sym_POUND] = ACTIONS(247), - }, - [960] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2479), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2122), - [sym__unquoted_with_expr] = STATE(2243), - [sym__unquoted_anonymous_prefix] = STATE(7269), - [sym_comment] = STATE(960), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), - [anon_sym_POUND] = ACTIONS(247), - }, - [961] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2488), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(1958), - [sym__unquoted_with_expr] = STATE(2245), - [sym__unquoted_anonymous_prefix] = STATE(7269), - [sym_comment] = STATE(961), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), - [anon_sym_POUND] = ACTIONS(247), - }, - [962] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2401), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2092), - [sym__unquoted_with_expr] = STATE(2187), - [sym__unquoted_anonymous_prefix] = STATE(7269), - [sym_comment] = STATE(962), - [aux_sym_shebang_repeat1] = STATE(959), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), - [anon_sym_POUND] = ACTIONS(247), - }, - [963] = { - [sym_comment] = STATE(963), - [anon_sym_true] = ACTIONS(1023), - [anon_sym_false] = ACTIONS(1023), - [anon_sym_null] = ACTIONS(1023), - [aux_sym_cmd_identifier_token38] = ACTIONS(1023), - [aux_sym_cmd_identifier_token39] = ACTIONS(1023), - [aux_sym_cmd_identifier_token40] = ACTIONS(1023), - [sym__newline] = ACTIONS(1023), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_LPAREN] = ACTIONS(1023), - [anon_sym_COMMA] = ACTIONS(1023), - [anon_sym_DOLLAR] = ACTIONS(1023), - [aux_sym_ctrl_match_token1] = ACTIONS(1023), - [anon_sym_RBRACE] = ACTIONS(1023), - [anon_sym__] = ACTIONS(1021), - [anon_sym_DOT_DOT] = ACTIONS(1021), - [aux_sym_expr_binary_token1] = ACTIONS(1023), - [aux_sym_expr_binary_token2] = ACTIONS(1023), - [aux_sym_expr_binary_token3] = ACTIONS(1023), - [aux_sym_expr_binary_token4] = ACTIONS(1023), - [aux_sym_expr_binary_token5] = ACTIONS(1023), - [aux_sym_expr_binary_token6] = ACTIONS(1023), - [aux_sym_expr_binary_token7] = ACTIONS(1023), - [aux_sym_expr_binary_token8] = ACTIONS(1023), - [aux_sym_expr_binary_token9] = ACTIONS(1023), - [aux_sym_expr_binary_token10] = ACTIONS(1023), - [aux_sym_expr_binary_token11] = ACTIONS(1023), - [aux_sym_expr_binary_token12] = ACTIONS(1023), - [aux_sym_expr_binary_token13] = ACTIONS(1023), - [aux_sym_expr_binary_token14] = ACTIONS(1023), - [aux_sym_expr_binary_token15] = ACTIONS(1023), - [aux_sym_expr_binary_token16] = ACTIONS(1023), - [aux_sym_expr_binary_token17] = ACTIONS(1023), - [aux_sym_expr_binary_token18] = ACTIONS(1023), - [aux_sym_expr_binary_token19] = ACTIONS(1023), - [aux_sym_expr_binary_token20] = ACTIONS(1023), - [aux_sym_expr_binary_token21] = ACTIONS(1023), - [aux_sym_expr_binary_token22] = ACTIONS(1023), - [aux_sym_expr_binary_token23] = ACTIONS(1023), - [aux_sym_expr_binary_token24] = ACTIONS(1023), - [aux_sym_expr_binary_token25] = ACTIONS(1023), - [aux_sym_expr_binary_token26] = ACTIONS(1023), - [aux_sym_expr_binary_token27] = ACTIONS(1023), - [aux_sym_expr_binary_token28] = ACTIONS(1023), - [anon_sym_DOT_DOT2] = ACTIONS(1021), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1021), - [anon_sym_DOT_DOT_LT] = ACTIONS(1021), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), - [aux_sym__val_number_decimal_token1] = ACTIONS(1021), - [aux_sym__val_number_decimal_token2] = ACTIONS(1023), - [aux_sym__val_number_decimal_token3] = ACTIONS(1023), - [aux_sym__val_number_decimal_token4] = ACTIONS(1023), - [aux_sym__val_number_token1] = ACTIONS(1023), - [aux_sym__val_number_token2] = ACTIONS(1023), - [aux_sym__val_number_token3] = ACTIONS(1023), - [anon_sym_0b] = ACTIONS(1021), - [anon_sym_0o] = ACTIONS(1021), - [anon_sym_0x] = ACTIONS(1021), - [sym_val_date] = ACTIONS(1023), - [anon_sym_DQUOTE] = ACTIONS(1023), - [sym__str_single_quotes] = ACTIONS(1023), - [sym__str_back_ticks] = ACTIONS(1023), - [anon_sym_err_GT] = ACTIONS(1021), - [anon_sym_out_GT] = ACTIONS(1021), - [anon_sym_e_GT] = ACTIONS(1021), - [anon_sym_o_GT] = ACTIONS(1021), - [anon_sym_err_PLUSout_GT] = ACTIONS(1021), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), - [anon_sym_o_PLUSe_GT] = ACTIONS(1021), - [anon_sym_e_PLUSo_GT] = ACTIONS(1021), - [anon_sym_err_GT_GT] = ACTIONS(1023), - [anon_sym_out_GT_GT] = ACTIONS(1023), - [anon_sym_e_GT_GT] = ACTIONS(1023), - [anon_sym_o_GT_GT] = ACTIONS(1023), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), - [aux_sym_unquoted_token1] = ACTIONS(1021), - [anon_sym_POUND] = ACTIONS(247), - }, - [964] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(2354), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(2194), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(1555), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2058), - [sym__unquoted_with_expr] = STATE(2283), - [sym__unquoted_anonymous_prefix] = STATE(7269), - [sym_comment] = STATE(964), - [aux_sym_shebang_repeat1] = STATE(818), - [anon_sym_true] = ACTIONS(3154), - [anon_sym_false] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3156), - [aux_sym_cmd_identifier_token38] = ACTIONS(3158), - [aux_sym_cmd_identifier_token39] = ACTIONS(3158), - [aux_sym_cmd_identifier_token40] = ACTIONS(3158), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3160), - [aux_sym__val_number_decimal_token2] = ACTIONS(3162), - [aux_sym__val_number_decimal_token3] = ACTIONS(3164), - [aux_sym__val_number_decimal_token4] = ACTIONS(3166), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), - [anon_sym_POUND] = ACTIONS(247), - }, - [965] = { - [sym_expr_unary] = STATE(2392), - [sym__expr_unary_minus] = STATE(2384), - [sym_expr_binary_parenthesized] = STATE(2392), - [sym__expr_binary_expression_parenthesized] = STATE(3846), - [sym_expr_parenthesized] = STATE(2392), - [sym__val_range] = STATE(8000), - [sym__val_range_with_end] = STATE(7653), - [sym__value] = STATE(2392), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3788), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(1851), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2033), - [sym__unquoted_with_expr] = STATE(2226), - [sym__unquoted_anonymous_prefix] = STATE(7269), - [sym_comment] = STATE(965), - [aux_sym_shebang_repeat1] = STATE(2975), - [anon_sym_true] = ACTIONS(3126), - [anon_sym_false] = ACTIONS(3126), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3130), - [aux_sym_cmd_identifier_token39] = ACTIONS(3130), - [aux_sym_cmd_identifier_token40] = ACTIONS(3130), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_DOLLAR] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(477), - [aux_sym_ctrl_match_token1] = ACTIONS(487), - [anon_sym_DOT_DOT] = ACTIONS(3138), - [aux_sym_expr_unary_token1] = ACTIONS(493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3140), - [anon_sym_DOT_DOT_LT] = ACTIONS(3140), - [aux_sym__val_number_decimal_token1] = ACTIONS(3142), - [aux_sym__val_number_decimal_token2] = ACTIONS(3144), - [aux_sym__val_number_decimal_token3] = ACTIONS(3146), - [aux_sym__val_number_decimal_token4] = ACTIONS(3148), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), - [anon_sym_POUND] = ACTIONS(247), - }, - [966] = { - [sym__expr_parenthesized_immediate] = STATE(7597), - [sym_comment] = STATE(966), - [anon_sym_true] = ACTIONS(3199), - [anon_sym_false] = ACTIONS(3199), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3199), - [aux_sym_cmd_identifier_token39] = ACTIONS(3199), - [aux_sym_cmd_identifier_token40] = ACTIONS(3199), - [sym__newline] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3201), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_DOLLAR] = ACTIONS(3199), - [aux_sym_ctrl_match_token1] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym__] = ACTIONS(3201), - [anon_sym_DOT_DOT] = ACTIONS(3201), - [anon_sym_LPAREN2] = ACTIONS(2947), - [aux_sym_expr_binary_token1] = ACTIONS(3199), - [aux_sym_expr_binary_token2] = ACTIONS(3199), - [aux_sym_expr_binary_token3] = ACTIONS(3199), - [aux_sym_expr_binary_token4] = ACTIONS(3199), - [aux_sym_expr_binary_token5] = ACTIONS(3199), - [aux_sym_expr_binary_token6] = ACTIONS(3199), - [aux_sym_expr_binary_token7] = ACTIONS(3199), - [aux_sym_expr_binary_token8] = ACTIONS(3199), - [aux_sym_expr_binary_token9] = ACTIONS(3199), - [aux_sym_expr_binary_token10] = ACTIONS(3199), - [aux_sym_expr_binary_token11] = ACTIONS(3199), - [aux_sym_expr_binary_token12] = ACTIONS(3199), - [aux_sym_expr_binary_token13] = ACTIONS(3199), - [aux_sym_expr_binary_token14] = ACTIONS(3199), - [aux_sym_expr_binary_token15] = ACTIONS(3199), - [aux_sym_expr_binary_token16] = ACTIONS(3199), - [aux_sym_expr_binary_token17] = ACTIONS(3199), - [aux_sym_expr_binary_token18] = ACTIONS(3199), - [aux_sym_expr_binary_token19] = ACTIONS(3199), - [aux_sym_expr_binary_token20] = ACTIONS(3199), - [aux_sym_expr_binary_token21] = ACTIONS(3199), - [aux_sym_expr_binary_token22] = ACTIONS(3199), - [aux_sym_expr_binary_token23] = ACTIONS(3199), - [aux_sym_expr_binary_token24] = ACTIONS(3199), - [aux_sym_expr_binary_token25] = ACTIONS(3199), - [aux_sym_expr_binary_token26] = ACTIONS(3199), - [aux_sym_expr_binary_token27] = ACTIONS(3199), - [aux_sym_expr_binary_token28] = ACTIONS(3199), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), - [anon_sym_DOT_DOT_LT] = ACTIONS(3199), - [aux_sym__val_number_decimal_token1] = ACTIONS(3201), - [aux_sym__val_number_decimal_token2] = ACTIONS(3199), - [aux_sym__val_number_decimal_token3] = ACTIONS(3199), - [aux_sym__val_number_decimal_token4] = ACTIONS(3199), - [aux_sym__val_number_token1] = ACTIONS(3199), - [aux_sym__val_number_token2] = ACTIONS(3199), - [aux_sym__val_number_token3] = ACTIONS(3199), - [anon_sym_0b] = ACTIONS(3201), - [anon_sym_0o] = ACTIONS(3201), - [anon_sym_0x] = ACTIONS(3201), - [sym_val_date] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3199), - [sym__str_single_quotes] = ACTIONS(3199), - [sym__str_back_ticks] = ACTIONS(3199), - [anon_sym_err_GT] = ACTIONS(3201), - [anon_sym_out_GT] = ACTIONS(3201), - [anon_sym_e_GT] = ACTIONS(3201), - [anon_sym_o_GT] = ACTIONS(3201), - [anon_sym_err_PLUSout_GT] = ACTIONS(3201), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), - [anon_sym_o_PLUSe_GT] = ACTIONS(3201), - [anon_sym_e_PLUSo_GT] = ACTIONS(3201), - [anon_sym_err_GT_GT] = ACTIONS(3199), - [anon_sym_out_GT_GT] = ACTIONS(3199), - [anon_sym_e_GT_GT] = ACTIONS(3199), - [anon_sym_o_GT_GT] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), - [aux_sym_unquoted_token1] = ACTIONS(3201), - [anon_sym_POUND] = ACTIONS(247), - }, - [967] = { - [sym_comment] = STATE(967), - [anon_sym_true] = ACTIONS(982), - [anon_sym_false] = ACTIONS(982), - [anon_sym_null] = ACTIONS(982), - [aux_sym_cmd_identifier_token38] = ACTIONS(982), - [aux_sym_cmd_identifier_token39] = ACTIONS(982), - [aux_sym_cmd_identifier_token40] = ACTIONS(982), - [sym__newline] = ACTIONS(982), - [anon_sym_LBRACK] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(982), - [anon_sym_COMMA] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(982), - [aux_sym_ctrl_match_token1] = ACTIONS(982), - [anon_sym_RBRACE] = ACTIONS(982), - [anon_sym__] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(980), - [anon_sym_QMARK2] = ACTIONS(3203), - [aux_sym_expr_binary_token1] = ACTIONS(982), - [aux_sym_expr_binary_token2] = ACTIONS(982), - [aux_sym_expr_binary_token3] = ACTIONS(982), - [aux_sym_expr_binary_token4] = ACTIONS(982), - [aux_sym_expr_binary_token5] = ACTIONS(982), - [aux_sym_expr_binary_token6] = ACTIONS(982), - [aux_sym_expr_binary_token7] = ACTIONS(982), - [aux_sym_expr_binary_token8] = ACTIONS(982), - [aux_sym_expr_binary_token9] = ACTIONS(982), - [aux_sym_expr_binary_token10] = ACTIONS(982), - [aux_sym_expr_binary_token11] = ACTIONS(982), - [aux_sym_expr_binary_token12] = ACTIONS(982), - [aux_sym_expr_binary_token13] = ACTIONS(982), - [aux_sym_expr_binary_token14] = ACTIONS(982), - [aux_sym_expr_binary_token15] = ACTIONS(982), - [aux_sym_expr_binary_token16] = ACTIONS(982), - [aux_sym_expr_binary_token17] = ACTIONS(982), - [aux_sym_expr_binary_token18] = ACTIONS(982), - [aux_sym_expr_binary_token19] = ACTIONS(982), - [aux_sym_expr_binary_token20] = ACTIONS(982), - [aux_sym_expr_binary_token21] = ACTIONS(982), - [aux_sym_expr_binary_token22] = ACTIONS(982), - [aux_sym_expr_binary_token23] = ACTIONS(982), - [aux_sym_expr_binary_token24] = ACTIONS(982), - [aux_sym_expr_binary_token25] = ACTIONS(982), - [aux_sym_expr_binary_token26] = ACTIONS(982), - [aux_sym_expr_binary_token27] = ACTIONS(982), - [aux_sym_expr_binary_token28] = ACTIONS(982), - [anon_sym_DOT] = ACTIONS(980), - [anon_sym_DOT_DOT_EQ] = ACTIONS(982), - [anon_sym_DOT_DOT_LT] = ACTIONS(982), - [aux_sym__val_number_decimal_token1] = ACTIONS(980), - [aux_sym__val_number_decimal_token2] = ACTIONS(982), - [aux_sym__val_number_decimal_token3] = ACTIONS(982), - [aux_sym__val_number_decimal_token4] = ACTIONS(982), - [aux_sym__val_number_token1] = ACTIONS(982), - [aux_sym__val_number_token2] = ACTIONS(982), - [aux_sym__val_number_token3] = ACTIONS(982), - [anon_sym_0b] = ACTIONS(980), - [anon_sym_0o] = ACTIONS(980), - [anon_sym_0x] = ACTIONS(980), - [sym_val_date] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(982), - [sym__str_single_quotes] = ACTIONS(982), - [sym__str_back_ticks] = ACTIONS(982), - [anon_sym_err_GT] = ACTIONS(980), - [anon_sym_out_GT] = ACTIONS(980), - [anon_sym_e_GT] = ACTIONS(980), - [anon_sym_o_GT] = ACTIONS(980), - [anon_sym_err_PLUSout_GT] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT] = ACTIONS(980), - [anon_sym_o_PLUSe_GT] = ACTIONS(980), - [anon_sym_e_PLUSo_GT] = ACTIONS(980), - [anon_sym_err_GT_GT] = ACTIONS(982), - [anon_sym_out_GT_GT] = ACTIONS(982), - [anon_sym_e_GT_GT] = ACTIONS(982), - [anon_sym_o_GT_GT] = ACTIONS(982), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(982), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(982), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(982), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(982), - [aux_sym_unquoted_token1] = ACTIONS(980), - [anon_sym_POUND] = ACTIONS(247), - }, - [968] = { - [sym__expr_parenthesized_immediate] = STATE(7887), - [sym_comment] = STATE(968), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [anon_sym_null] = ACTIONS(3205), - [aux_sym_cmd_identifier_token38] = ACTIONS(3205), - [aux_sym_cmd_identifier_token39] = ACTIONS(3205), - [aux_sym_cmd_identifier_token40] = ACTIONS(3205), - [sym__newline] = ACTIONS(3205), - [anon_sym_LBRACK] = ACTIONS(3205), - [anon_sym_LPAREN] = ACTIONS(3207), - [anon_sym_COMMA] = ACTIONS(3205), - [anon_sym_DOLLAR] = ACTIONS(3205), - [aux_sym_ctrl_match_token1] = ACTIONS(3205), - [anon_sym_RBRACE] = ACTIONS(3205), - [anon_sym__] = ACTIONS(3207), - [anon_sym_DOT_DOT] = ACTIONS(3207), - [anon_sym_LPAREN2] = ACTIONS(2947), - [aux_sym_expr_binary_token1] = ACTIONS(3205), - [aux_sym_expr_binary_token2] = ACTIONS(3205), - [aux_sym_expr_binary_token3] = ACTIONS(3205), - [aux_sym_expr_binary_token4] = ACTIONS(3205), - [aux_sym_expr_binary_token5] = ACTIONS(3205), - [aux_sym_expr_binary_token6] = ACTIONS(3205), - [aux_sym_expr_binary_token7] = ACTIONS(3205), - [aux_sym_expr_binary_token8] = ACTIONS(3205), - [aux_sym_expr_binary_token9] = ACTIONS(3205), - [aux_sym_expr_binary_token10] = ACTIONS(3205), - [aux_sym_expr_binary_token11] = ACTIONS(3205), - [aux_sym_expr_binary_token12] = ACTIONS(3205), - [aux_sym_expr_binary_token13] = ACTIONS(3205), - [aux_sym_expr_binary_token14] = ACTIONS(3205), - [aux_sym_expr_binary_token15] = ACTIONS(3205), - [aux_sym_expr_binary_token16] = ACTIONS(3205), - [aux_sym_expr_binary_token17] = ACTIONS(3205), - [aux_sym_expr_binary_token18] = ACTIONS(3205), - [aux_sym_expr_binary_token19] = ACTIONS(3205), - [aux_sym_expr_binary_token20] = ACTIONS(3205), - [aux_sym_expr_binary_token21] = ACTIONS(3205), - [aux_sym_expr_binary_token22] = ACTIONS(3205), - [aux_sym_expr_binary_token23] = ACTIONS(3205), - [aux_sym_expr_binary_token24] = ACTIONS(3205), - [aux_sym_expr_binary_token25] = ACTIONS(3205), - [aux_sym_expr_binary_token26] = ACTIONS(3205), - [aux_sym_expr_binary_token27] = ACTIONS(3205), - [aux_sym_expr_binary_token28] = ACTIONS(3205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3205), - [anon_sym_DOT_DOT_LT] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3205), - [aux_sym__val_number_decimal_token4] = ACTIONS(3205), - [aux_sym__val_number_token1] = ACTIONS(3205), - [aux_sym__val_number_token2] = ACTIONS(3205), - [aux_sym__val_number_token3] = ACTIONS(3205), - [anon_sym_0b] = ACTIONS(3207), - [anon_sym_0o] = ACTIONS(3207), - [anon_sym_0x] = ACTIONS(3207), - [sym_val_date] = ACTIONS(3205), - [anon_sym_DQUOTE] = ACTIONS(3205), - [sym__str_single_quotes] = ACTIONS(3205), - [sym__str_back_ticks] = ACTIONS(3205), - [anon_sym_err_GT] = ACTIONS(3207), - [anon_sym_out_GT] = ACTIONS(3207), - [anon_sym_e_GT] = ACTIONS(3207), - [anon_sym_o_GT] = ACTIONS(3207), - [anon_sym_err_PLUSout_GT] = ACTIONS(3207), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3207), - [anon_sym_o_PLUSe_GT] = ACTIONS(3207), - [anon_sym_e_PLUSo_GT] = ACTIONS(3207), - [anon_sym_err_GT_GT] = ACTIONS(3205), - [anon_sym_out_GT_GT] = ACTIONS(3205), - [anon_sym_e_GT_GT] = ACTIONS(3205), - [anon_sym_o_GT_GT] = ACTIONS(3205), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3205), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3205), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3205), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3205), - [aux_sym_unquoted_token1] = ACTIONS(3207), - [anon_sym_POUND] = ACTIONS(247), - }, - [969] = { - [sym_comment] = STATE(969), - [anon_sym_true] = ACTIONS(2131), - [anon_sym_false] = ACTIONS(2131), - [anon_sym_null] = ACTIONS(2131), - [aux_sym_cmd_identifier_token38] = ACTIONS(2131), - [aux_sym_cmd_identifier_token39] = ACTIONS(2131), - [aux_sym_cmd_identifier_token40] = ACTIONS(2131), - [sym__newline] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(2133), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_COMMA] = ACTIONS(2131), - [anon_sym_DOLLAR] = ACTIONS(2131), - [aux_sym_ctrl_match_token1] = ACTIONS(2133), - [anon_sym_RBRACE] = ACTIONS(2133), - [anon_sym__] = ACTIONS(2131), - [anon_sym_DOT_DOT] = ACTIONS(2131), - [anon_sym_LPAREN2] = ACTIONS(2133), - [aux_sym_expr_binary_token1] = ACTIONS(2133), - [aux_sym_expr_binary_token2] = ACTIONS(2133), - [aux_sym_expr_binary_token3] = ACTIONS(2133), - [aux_sym_expr_binary_token4] = ACTIONS(2133), - [aux_sym_expr_binary_token5] = ACTIONS(2133), - [aux_sym_expr_binary_token6] = ACTIONS(2133), - [aux_sym_expr_binary_token7] = ACTIONS(2133), - [aux_sym_expr_binary_token8] = ACTIONS(2133), - [aux_sym_expr_binary_token9] = ACTIONS(2133), - [aux_sym_expr_binary_token10] = ACTIONS(2133), - [aux_sym_expr_binary_token11] = ACTIONS(2133), - [aux_sym_expr_binary_token12] = ACTIONS(2133), - [aux_sym_expr_binary_token13] = ACTIONS(2133), - [aux_sym_expr_binary_token14] = ACTIONS(2133), - [aux_sym_expr_binary_token15] = ACTIONS(2133), - [aux_sym_expr_binary_token16] = ACTIONS(2133), - [aux_sym_expr_binary_token17] = ACTIONS(2133), - [aux_sym_expr_binary_token18] = ACTIONS(2133), - [aux_sym_expr_binary_token19] = ACTIONS(2133), - [aux_sym_expr_binary_token20] = ACTIONS(2133), - [aux_sym_expr_binary_token21] = ACTIONS(2133), - [aux_sym_expr_binary_token22] = ACTIONS(2133), - [aux_sym_expr_binary_token23] = ACTIONS(2133), - [aux_sym_expr_binary_token24] = ACTIONS(2133), - [aux_sym_expr_binary_token25] = ACTIONS(2133), - [aux_sym_expr_binary_token26] = ACTIONS(2133), - [aux_sym_expr_binary_token27] = ACTIONS(2133), - [aux_sym_expr_binary_token28] = ACTIONS(2133), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2131), - [anon_sym_DOT_DOT_LT] = ACTIONS(2131), - [aux_sym__val_number_decimal_token1] = ACTIONS(2131), - [aux_sym__val_number_decimal_token2] = ACTIONS(2131), - [aux_sym__val_number_decimal_token3] = ACTIONS(2131), - [aux_sym__val_number_decimal_token4] = ACTIONS(2131), - [aux_sym__val_number_token1] = ACTIONS(2131), - [aux_sym__val_number_token2] = ACTIONS(2131), - [aux_sym__val_number_token3] = ACTIONS(2131), - [anon_sym_0b] = ACTIONS(2131), - [anon_sym_0o] = ACTIONS(2131), - [anon_sym_0x] = ACTIONS(2131), - [sym_val_date] = ACTIONS(2131), - [anon_sym_DQUOTE] = ACTIONS(2133), - [sym__str_single_quotes] = ACTIONS(2133), - [sym__str_back_ticks] = ACTIONS(2133), - [anon_sym_err_GT] = ACTIONS(2131), - [anon_sym_out_GT] = ACTIONS(2131), - [anon_sym_e_GT] = ACTIONS(2131), - [anon_sym_o_GT] = ACTIONS(2131), - [anon_sym_err_PLUSout_GT] = ACTIONS(2131), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2131), - [anon_sym_o_PLUSe_GT] = ACTIONS(2131), - [anon_sym_e_PLUSo_GT] = ACTIONS(2131), - [anon_sym_err_GT_GT] = ACTIONS(2131), - [anon_sym_out_GT_GT] = ACTIONS(2131), - [anon_sym_e_GT_GT] = ACTIONS(2131), - [anon_sym_o_GT_GT] = ACTIONS(2131), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2131), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2131), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2131), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2131), - [aux_sym_unquoted_token1] = ACTIONS(2131), - [aux_sym_unquoted_token4] = ACTIONS(2131), - [anon_sym_POUND] = ACTIONS(3), - }, - [970] = { - [sym_comment] = STATE(970), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [anon_sym_null] = ACTIONS(1006), - [aux_sym_cmd_identifier_token38] = ACTIONS(1006), - [aux_sym_cmd_identifier_token39] = ACTIONS(1006), - [aux_sym_cmd_identifier_token40] = ACTIONS(1006), - [sym__newline] = ACTIONS(1008), - [anon_sym_LBRACK] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_COMMA] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [aux_sym_ctrl_match_token1] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1008), - [anon_sym__] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_LPAREN2] = ACTIONS(2081), - [aux_sym_expr_binary_token1] = ACTIONS(1008), - [aux_sym_expr_binary_token2] = ACTIONS(1008), - [aux_sym_expr_binary_token3] = ACTIONS(1008), - [aux_sym_expr_binary_token4] = ACTIONS(1008), - [aux_sym_expr_binary_token5] = ACTIONS(1008), - [aux_sym_expr_binary_token6] = ACTIONS(1008), - [aux_sym_expr_binary_token7] = ACTIONS(1008), - [aux_sym_expr_binary_token8] = ACTIONS(1008), - [aux_sym_expr_binary_token9] = ACTIONS(1008), - [aux_sym_expr_binary_token10] = ACTIONS(1008), - [aux_sym_expr_binary_token11] = ACTIONS(1008), - [aux_sym_expr_binary_token12] = ACTIONS(1008), - [aux_sym_expr_binary_token13] = ACTIONS(1008), - [aux_sym_expr_binary_token14] = ACTIONS(1008), - [aux_sym_expr_binary_token15] = ACTIONS(1008), - [aux_sym_expr_binary_token16] = ACTIONS(1008), - [aux_sym_expr_binary_token17] = ACTIONS(1008), - [aux_sym_expr_binary_token18] = ACTIONS(1008), - [aux_sym_expr_binary_token19] = ACTIONS(1008), - [aux_sym_expr_binary_token20] = ACTIONS(1008), - [aux_sym_expr_binary_token21] = ACTIONS(1008), - [aux_sym_expr_binary_token22] = ACTIONS(1008), - [aux_sym_expr_binary_token23] = ACTIONS(1008), - [aux_sym_expr_binary_token24] = ACTIONS(1008), - [aux_sym_expr_binary_token25] = ACTIONS(1008), - [aux_sym_expr_binary_token26] = ACTIONS(1008), - [aux_sym_expr_binary_token27] = ACTIONS(1008), - [aux_sym_expr_binary_token28] = ACTIONS(1008), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT] = ACTIONS(1006), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1006), - [aux_sym__val_number_decimal_token4] = ACTIONS(1006), - [aux_sym__val_number_token1] = ACTIONS(1006), - [aux_sym__val_number_token2] = ACTIONS(1006), - [aux_sym__val_number_token3] = ACTIONS(1006), - [anon_sym_0b] = ACTIONS(1006), - [anon_sym_0o] = ACTIONS(1006), - [anon_sym_0x] = ACTIONS(1006), - [sym_val_date] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1008), - [sym__str_single_quotes] = ACTIONS(1008), - [sym__str_back_ticks] = ACTIONS(1008), - [anon_sym_err_GT] = ACTIONS(1006), - [anon_sym_out_GT] = ACTIONS(1006), - [anon_sym_e_GT] = ACTIONS(1006), - [anon_sym_o_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT] = ACTIONS(1006), - [anon_sym_err_GT_GT] = ACTIONS(1006), - [anon_sym_out_GT_GT] = ACTIONS(1006), - [anon_sym_e_GT_GT] = ACTIONS(1006), - [anon_sym_o_GT_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1006), - [aux_sym_unquoted_token1] = ACTIONS(1006), - [aux_sym_unquoted_token4] = ACTIONS(2083), - [anon_sym_POUND] = ACTIONS(3), - }, - [971] = { - [sym__expr_parenthesized_immediate] = STATE(7887), - [sym_comment] = STATE(971), - [anon_sym_true] = ACTIONS(3209), - [anon_sym_false] = ACTIONS(3209), - [anon_sym_null] = ACTIONS(3209), - [aux_sym_cmd_identifier_token38] = ACTIONS(3209), - [aux_sym_cmd_identifier_token39] = ACTIONS(3209), - [aux_sym_cmd_identifier_token40] = ACTIONS(3209), - [sym__newline] = ACTIONS(3209), - [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_LPAREN] = ACTIONS(3211), - [anon_sym_COMMA] = ACTIONS(3209), - [anon_sym_DOLLAR] = ACTIONS(3209), - [aux_sym_ctrl_match_token1] = ACTIONS(3209), - [anon_sym_RBRACE] = ACTIONS(3209), - [anon_sym__] = ACTIONS(3211), - [anon_sym_DOT_DOT] = ACTIONS(3211), - [anon_sym_LPAREN2] = ACTIONS(2947), - [aux_sym_expr_binary_token1] = ACTIONS(3209), - [aux_sym_expr_binary_token2] = ACTIONS(3209), - [aux_sym_expr_binary_token3] = ACTIONS(3209), - [aux_sym_expr_binary_token4] = ACTIONS(3209), - [aux_sym_expr_binary_token5] = ACTIONS(3209), - [aux_sym_expr_binary_token6] = ACTIONS(3209), - [aux_sym_expr_binary_token7] = ACTIONS(3209), - [aux_sym_expr_binary_token8] = ACTIONS(3209), - [aux_sym_expr_binary_token9] = ACTIONS(3209), - [aux_sym_expr_binary_token10] = ACTIONS(3209), - [aux_sym_expr_binary_token11] = ACTIONS(3209), - [aux_sym_expr_binary_token12] = ACTIONS(3209), - [aux_sym_expr_binary_token13] = ACTIONS(3209), - [aux_sym_expr_binary_token14] = ACTIONS(3209), - [aux_sym_expr_binary_token15] = ACTIONS(3209), - [aux_sym_expr_binary_token16] = ACTIONS(3209), - [aux_sym_expr_binary_token17] = ACTIONS(3209), - [aux_sym_expr_binary_token18] = ACTIONS(3209), - [aux_sym_expr_binary_token19] = ACTIONS(3209), - [aux_sym_expr_binary_token20] = ACTIONS(3209), - [aux_sym_expr_binary_token21] = ACTIONS(3209), - [aux_sym_expr_binary_token22] = ACTIONS(3209), - [aux_sym_expr_binary_token23] = ACTIONS(3209), - [aux_sym_expr_binary_token24] = ACTIONS(3209), - [aux_sym_expr_binary_token25] = ACTIONS(3209), - [aux_sym_expr_binary_token26] = ACTIONS(3209), - [aux_sym_expr_binary_token27] = ACTIONS(3209), - [aux_sym_expr_binary_token28] = ACTIONS(3209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3209), - [anon_sym_DOT_DOT_LT] = ACTIONS(3209), - [aux_sym__val_number_decimal_token1] = ACTIONS(3211), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3209), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(3209), - [aux_sym__val_number_token2] = ACTIONS(3209), - [aux_sym__val_number_token3] = ACTIONS(3209), - [anon_sym_0b] = ACTIONS(3211), - [anon_sym_0o] = ACTIONS(3211), - [anon_sym_0x] = ACTIONS(3211), - [sym_val_date] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(3209), - [sym__str_single_quotes] = ACTIONS(3209), - [sym__str_back_ticks] = ACTIONS(3209), - [anon_sym_err_GT] = ACTIONS(3211), - [anon_sym_out_GT] = ACTIONS(3211), - [anon_sym_e_GT] = ACTIONS(3211), - [anon_sym_o_GT] = ACTIONS(3211), - [anon_sym_err_PLUSout_GT] = ACTIONS(3211), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3211), - [anon_sym_o_PLUSe_GT] = ACTIONS(3211), - [anon_sym_e_PLUSo_GT] = ACTIONS(3211), - [anon_sym_err_GT_GT] = ACTIONS(3209), - [anon_sym_out_GT_GT] = ACTIONS(3209), - [anon_sym_e_GT_GT] = ACTIONS(3209), - [anon_sym_o_GT_GT] = ACTIONS(3209), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3209), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3209), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3209), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3209), - [aux_sym_unquoted_token1] = ACTIONS(3211), - [anon_sym_POUND] = ACTIONS(247), - }, - [972] = { - [sym_comment] = STATE(972), - [anon_sym_true] = ACTIONS(968), - [anon_sym_false] = ACTIONS(968), - [anon_sym_null] = ACTIONS(968), - [aux_sym_cmd_identifier_token38] = ACTIONS(968), - [aux_sym_cmd_identifier_token39] = ACTIONS(968), - [aux_sym_cmd_identifier_token40] = ACTIONS(968), - [sym__newline] = ACTIONS(968), - [anon_sym_LBRACK] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_COMMA] = ACTIONS(968), - [anon_sym_DOLLAR] = ACTIONS(968), - [aux_sym_ctrl_match_token1] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym__] = ACTIONS(966), - [anon_sym_DOT_DOT] = ACTIONS(966), - [anon_sym_QMARK2] = ACTIONS(968), - [aux_sym_expr_binary_token1] = ACTIONS(968), - [aux_sym_expr_binary_token2] = ACTIONS(968), - [aux_sym_expr_binary_token3] = ACTIONS(968), - [aux_sym_expr_binary_token4] = ACTIONS(968), - [aux_sym_expr_binary_token5] = ACTIONS(968), - [aux_sym_expr_binary_token6] = ACTIONS(968), - [aux_sym_expr_binary_token7] = ACTIONS(968), - [aux_sym_expr_binary_token8] = ACTIONS(968), - [aux_sym_expr_binary_token9] = ACTIONS(968), - [aux_sym_expr_binary_token10] = ACTIONS(968), - [aux_sym_expr_binary_token11] = ACTIONS(968), - [aux_sym_expr_binary_token12] = ACTIONS(968), - [aux_sym_expr_binary_token13] = ACTIONS(968), - [aux_sym_expr_binary_token14] = ACTIONS(968), - [aux_sym_expr_binary_token15] = ACTIONS(968), - [aux_sym_expr_binary_token16] = ACTIONS(968), - [aux_sym_expr_binary_token17] = ACTIONS(968), - [aux_sym_expr_binary_token18] = ACTIONS(968), - [aux_sym_expr_binary_token19] = ACTIONS(968), - [aux_sym_expr_binary_token20] = ACTIONS(968), - [aux_sym_expr_binary_token21] = ACTIONS(968), - [aux_sym_expr_binary_token22] = ACTIONS(968), - [aux_sym_expr_binary_token23] = ACTIONS(968), - [aux_sym_expr_binary_token24] = ACTIONS(968), - [aux_sym_expr_binary_token25] = ACTIONS(968), - [aux_sym_expr_binary_token26] = ACTIONS(968), - [aux_sym_expr_binary_token27] = ACTIONS(968), - [aux_sym_expr_binary_token28] = ACTIONS(968), - [anon_sym_DOT] = ACTIONS(966), - [anon_sym_DOT_DOT_EQ] = ACTIONS(968), - [anon_sym_DOT_DOT_LT] = ACTIONS(968), - [aux_sym__val_number_decimal_token1] = ACTIONS(966), - [aux_sym__val_number_decimal_token2] = ACTIONS(968), - [aux_sym__val_number_decimal_token3] = ACTIONS(968), - [aux_sym__val_number_decimal_token4] = ACTIONS(968), - [aux_sym__val_number_token1] = ACTIONS(968), - [aux_sym__val_number_token2] = ACTIONS(968), - [aux_sym__val_number_token3] = ACTIONS(968), - [anon_sym_0b] = ACTIONS(966), - [anon_sym_0o] = ACTIONS(966), - [anon_sym_0x] = ACTIONS(966), - [sym_val_date] = ACTIONS(968), - [anon_sym_DQUOTE] = ACTIONS(968), - [sym__str_single_quotes] = ACTIONS(968), - [sym__str_back_ticks] = ACTIONS(968), - [anon_sym_err_GT] = ACTIONS(966), - [anon_sym_out_GT] = ACTIONS(966), - [anon_sym_e_GT] = ACTIONS(966), - [anon_sym_o_GT] = ACTIONS(966), - [anon_sym_err_PLUSout_GT] = ACTIONS(966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(966), - [anon_sym_o_PLUSe_GT] = ACTIONS(966), - [anon_sym_e_PLUSo_GT] = ACTIONS(966), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [aux_sym_unquoted_token1] = ACTIONS(966), - [anon_sym_POUND] = ACTIONS(247), - }, - [973] = { - [sym__expression] = STATE(7743), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4067), - [sym_expr_parenthesized] = STATE(3761), - [sym_val_range] = STATE(3727), - [sym__val_range] = STATE(8049), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3916), - [sym_val_variable] = STATE(3758), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3697), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(7744), - [sym__unquoted_anonymous_prefix] = STATE(7765), - [sym_comment] = STATE(973), - [anon_sym_true] = ACTIONS(3213), - [anon_sym_false] = ACTIONS(3213), - [anon_sym_null] = ACTIONS(3215), - [aux_sym_cmd_identifier_token38] = ACTIONS(3217), - [aux_sym_cmd_identifier_token39] = ACTIONS(3217), - [aux_sym_cmd_identifier_token40] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3223), - [aux_sym_expr_unary_token1] = ACTIONS(3225), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3227), - [anon_sym_DOT_DOT_LT] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [aux_sym_record_entry_token1] = ACTIONS(3239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3241), - [anon_sym_POUND] = ACTIONS(247), - }, - [974] = { - [sym_ctrl_do] = STATE(5042), - [sym_ctrl_if] = STATE(5042), - [sym_ctrl_match] = STATE(5042), - [sym_ctrl_try] = STATE(5042), - [sym__expression] = STATE(5042), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4073), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1541), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(2941), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_comment] = STATE(974), - [anon_sym_true] = ACTIONS(3243), - [anon_sym_false] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [aux_sym_cmd_identifier_token38] = ACTIONS(439), - [aux_sym_cmd_identifier_token39] = ACTIONS(439), - [aux_sym_cmd_identifier_token40] = ACTIONS(439), - [sym__newline] = ACTIONS(3247), - [anon_sym_SEMI] = ACTIONS(3249), - [anon_sym_PIPE] = ACTIONS(3249), - [anon_sym_err_GT_PIPE] = ACTIONS(3249), - [anon_sym_out_GT_PIPE] = ACTIONS(3249), - [anon_sym_e_GT_PIPE] = ACTIONS(3249), - [anon_sym_o_GT_PIPE] = ACTIONS(3249), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3249), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3249), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3249), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3249), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_do] = ACTIONS(3251), - [anon_sym_if] = ACTIONS(3253), - [anon_sym_match] = ACTIONS(3255), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(3249), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [aux_sym_record_entry_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(247), - }, - [975] = { - [sym__expr_parenthesized_immediate] = STATE(7597), - [sym_comment] = STATE(975), - [anon_sym_true] = ACTIONS(3199), - [anon_sym_false] = ACTIONS(3199), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3199), - [aux_sym_cmd_identifier_token39] = ACTIONS(3199), - [aux_sym_cmd_identifier_token40] = ACTIONS(3199), - [sym__newline] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3201), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_DOLLAR] = ACTIONS(3199), - [aux_sym_ctrl_match_token1] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym__] = ACTIONS(3201), - [anon_sym_DOT_DOT] = ACTIONS(3201), - [anon_sym_LPAREN2] = ACTIONS(2947), - [aux_sym_expr_binary_token1] = ACTIONS(3199), - [aux_sym_expr_binary_token2] = ACTIONS(3199), - [aux_sym_expr_binary_token3] = ACTIONS(3199), - [aux_sym_expr_binary_token4] = ACTIONS(3199), - [aux_sym_expr_binary_token5] = ACTIONS(3199), - [aux_sym_expr_binary_token6] = ACTIONS(3199), - [aux_sym_expr_binary_token7] = ACTIONS(3199), - [aux_sym_expr_binary_token8] = ACTIONS(3199), - [aux_sym_expr_binary_token9] = ACTIONS(3199), - [aux_sym_expr_binary_token10] = ACTIONS(3199), - [aux_sym_expr_binary_token11] = ACTIONS(3199), - [aux_sym_expr_binary_token12] = ACTIONS(3199), - [aux_sym_expr_binary_token13] = ACTIONS(3199), - [aux_sym_expr_binary_token14] = ACTIONS(3199), - [aux_sym_expr_binary_token15] = ACTIONS(3199), - [aux_sym_expr_binary_token16] = ACTIONS(3199), - [aux_sym_expr_binary_token17] = ACTIONS(3199), - [aux_sym_expr_binary_token18] = ACTIONS(3199), - [aux_sym_expr_binary_token19] = ACTIONS(3199), - [aux_sym_expr_binary_token20] = ACTIONS(3199), - [aux_sym_expr_binary_token21] = ACTIONS(3199), - [aux_sym_expr_binary_token22] = ACTIONS(3199), - [aux_sym_expr_binary_token23] = ACTIONS(3199), - [aux_sym_expr_binary_token24] = ACTIONS(3199), - [aux_sym_expr_binary_token25] = ACTIONS(3199), - [aux_sym_expr_binary_token26] = ACTIONS(3199), - [aux_sym_expr_binary_token27] = ACTIONS(3199), - [aux_sym_expr_binary_token28] = ACTIONS(3199), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), - [anon_sym_DOT_DOT_LT] = ACTIONS(3199), - [aux_sym__val_number_decimal_token1] = ACTIONS(3201), - [aux_sym__val_number_decimal_token2] = ACTIONS(3199), - [aux_sym__val_number_decimal_token3] = ACTIONS(3199), - [aux_sym__val_number_decimal_token4] = ACTIONS(3199), - [aux_sym__val_number_token1] = ACTIONS(3199), - [aux_sym__val_number_token2] = ACTIONS(3199), - [aux_sym__val_number_token3] = ACTIONS(3199), - [anon_sym_0b] = ACTIONS(3201), - [anon_sym_0o] = ACTIONS(3201), - [anon_sym_0x] = ACTIONS(3201), - [sym_val_date] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3199), - [sym__str_single_quotes] = ACTIONS(3199), - [sym__str_back_ticks] = ACTIONS(3199), - [anon_sym_err_GT] = ACTIONS(3201), - [anon_sym_out_GT] = ACTIONS(3201), - [anon_sym_e_GT] = ACTIONS(3201), - [anon_sym_o_GT] = ACTIONS(3201), - [anon_sym_err_PLUSout_GT] = ACTIONS(3201), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), - [anon_sym_o_PLUSe_GT] = ACTIONS(3201), - [anon_sym_e_PLUSo_GT] = ACTIONS(3201), - [anon_sym_err_GT_GT] = ACTIONS(3199), - [anon_sym_out_GT_GT] = ACTIONS(3199), - [anon_sym_e_GT_GT] = ACTIONS(3199), - [anon_sym_o_GT_GT] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), - [aux_sym_unquoted_token1] = ACTIONS(3201), - [anon_sym_POUND] = ACTIONS(247), - }, - [976] = { - [sym_comment] = STATE(976), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [anon_sym_null] = ACTIONS(2089), - [aux_sym_cmd_identifier_token38] = ACTIONS(2089), - [aux_sym_cmd_identifier_token39] = ACTIONS(2089), - [aux_sym_cmd_identifier_token40] = ACTIONS(2089), - [sym__newline] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2089), - [anon_sym_COMMA] = ACTIONS(2089), - [anon_sym_DOLLAR] = ACTIONS(2089), - [aux_sym_ctrl_match_token1] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym__] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2089), - [anon_sym_LPAREN2] = ACTIONS(2091), - [aux_sym_expr_binary_token1] = ACTIONS(2093), - [aux_sym_expr_binary_token2] = ACTIONS(2093), - [aux_sym_expr_binary_token3] = ACTIONS(2093), - [aux_sym_expr_binary_token4] = ACTIONS(2093), - [aux_sym_expr_binary_token5] = ACTIONS(2093), - [aux_sym_expr_binary_token6] = ACTIONS(2093), - [aux_sym_expr_binary_token7] = ACTIONS(2093), - [aux_sym_expr_binary_token8] = ACTIONS(2093), - [aux_sym_expr_binary_token9] = ACTIONS(2093), - [aux_sym_expr_binary_token10] = ACTIONS(2093), - [aux_sym_expr_binary_token11] = ACTIONS(2093), - [aux_sym_expr_binary_token12] = ACTIONS(2093), - [aux_sym_expr_binary_token13] = ACTIONS(2093), - [aux_sym_expr_binary_token14] = ACTIONS(2093), - [aux_sym_expr_binary_token15] = ACTIONS(2093), - [aux_sym_expr_binary_token16] = ACTIONS(2093), - [aux_sym_expr_binary_token17] = ACTIONS(2093), - [aux_sym_expr_binary_token18] = ACTIONS(2093), - [aux_sym_expr_binary_token19] = ACTIONS(2093), - [aux_sym_expr_binary_token20] = ACTIONS(2093), - [aux_sym_expr_binary_token21] = ACTIONS(2093), - [aux_sym_expr_binary_token22] = ACTIONS(2093), - [aux_sym_expr_binary_token23] = ACTIONS(2093), - [aux_sym_expr_binary_token24] = ACTIONS(2093), - [aux_sym_expr_binary_token25] = ACTIONS(2093), - [aux_sym_expr_binary_token26] = ACTIONS(2093), - [aux_sym_expr_binary_token27] = ACTIONS(2093), - [aux_sym_expr_binary_token28] = ACTIONS(2093), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2089), - [anon_sym_DOT_DOT_LT] = ACTIONS(2089), - [aux_sym__val_number_decimal_token1] = ACTIONS(2089), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2089), - [aux_sym__val_number_decimal_token4] = ACTIONS(2089), - [aux_sym__val_number_token1] = ACTIONS(2089), - [aux_sym__val_number_token2] = ACTIONS(2089), - [aux_sym__val_number_token3] = ACTIONS(2089), - [anon_sym_0b] = ACTIONS(2089), - [anon_sym_0o] = ACTIONS(2089), - [anon_sym_0x] = ACTIONS(2089), - [sym_val_date] = ACTIONS(2089), - [anon_sym_DQUOTE] = ACTIONS(2093), - [sym__str_single_quotes] = ACTIONS(2093), - [sym__str_back_ticks] = ACTIONS(2093), - [anon_sym_err_GT] = ACTIONS(2089), - [anon_sym_out_GT] = ACTIONS(2089), - [anon_sym_e_GT] = ACTIONS(2089), - [anon_sym_o_GT] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT] = ACTIONS(2089), - [anon_sym_err_GT_GT] = ACTIONS(2089), - [anon_sym_out_GT_GT] = ACTIONS(2089), - [anon_sym_e_GT_GT] = ACTIONS(2089), - [anon_sym_o_GT_GT] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2089), - [aux_sym_unquoted_token1] = ACTIONS(2089), - [aux_sym_unquoted_token4] = ACTIONS(2095), - [anon_sym_POUND] = ACTIONS(3), - }, - [977] = { - [sym__expr_parenthesized_immediate] = STATE(7597), - [sym_comment] = STATE(977), - [anon_sym_true] = ACTIONS(3199), - [anon_sym_false] = ACTIONS(3199), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3199), - [aux_sym_cmd_identifier_token39] = ACTIONS(3199), - [aux_sym_cmd_identifier_token40] = ACTIONS(3199), - [sym__newline] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3201), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_DOLLAR] = ACTIONS(3199), - [aux_sym_ctrl_match_token1] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym__] = ACTIONS(3201), - [anon_sym_DOT_DOT] = ACTIONS(3201), - [anon_sym_LPAREN2] = ACTIONS(2947), - [aux_sym_expr_binary_token1] = ACTIONS(3199), - [aux_sym_expr_binary_token2] = ACTIONS(3199), - [aux_sym_expr_binary_token3] = ACTIONS(3199), - [aux_sym_expr_binary_token4] = ACTIONS(3199), - [aux_sym_expr_binary_token5] = ACTIONS(3199), - [aux_sym_expr_binary_token6] = ACTIONS(3199), - [aux_sym_expr_binary_token7] = ACTIONS(3199), - [aux_sym_expr_binary_token8] = ACTIONS(3199), - [aux_sym_expr_binary_token9] = ACTIONS(3199), - [aux_sym_expr_binary_token10] = ACTIONS(3199), - [aux_sym_expr_binary_token11] = ACTIONS(3199), - [aux_sym_expr_binary_token12] = ACTIONS(3199), - [aux_sym_expr_binary_token13] = ACTIONS(3199), - [aux_sym_expr_binary_token14] = ACTIONS(3199), - [aux_sym_expr_binary_token15] = ACTIONS(3199), - [aux_sym_expr_binary_token16] = ACTIONS(3199), - [aux_sym_expr_binary_token17] = ACTIONS(3199), - [aux_sym_expr_binary_token18] = ACTIONS(3199), - [aux_sym_expr_binary_token19] = ACTIONS(3199), - [aux_sym_expr_binary_token20] = ACTIONS(3199), - [aux_sym_expr_binary_token21] = ACTIONS(3199), - [aux_sym_expr_binary_token22] = ACTIONS(3199), - [aux_sym_expr_binary_token23] = ACTIONS(3199), - [aux_sym_expr_binary_token24] = ACTIONS(3199), - [aux_sym_expr_binary_token25] = ACTIONS(3199), - [aux_sym_expr_binary_token26] = ACTIONS(3199), - [aux_sym_expr_binary_token27] = ACTIONS(3199), - [aux_sym_expr_binary_token28] = ACTIONS(3199), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), - [anon_sym_DOT_DOT_LT] = ACTIONS(3199), - [aux_sym__val_number_decimal_token1] = ACTIONS(3201), - [aux_sym__val_number_decimal_token2] = ACTIONS(3199), - [aux_sym__val_number_decimal_token3] = ACTIONS(3199), - [aux_sym__val_number_decimal_token4] = ACTIONS(3199), - [aux_sym__val_number_token1] = ACTIONS(3199), - [aux_sym__val_number_token2] = ACTIONS(3199), - [aux_sym__val_number_token3] = ACTIONS(3199), - [anon_sym_0b] = ACTIONS(3201), - [anon_sym_0o] = ACTIONS(3201), - [anon_sym_0x] = ACTIONS(3201), - [sym_val_date] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3199), - [sym__str_single_quotes] = ACTIONS(3199), - [sym__str_back_ticks] = ACTIONS(3199), - [anon_sym_err_GT] = ACTIONS(3201), - [anon_sym_out_GT] = ACTIONS(3201), - [anon_sym_e_GT] = ACTIONS(3201), - [anon_sym_o_GT] = ACTIONS(3201), - [anon_sym_err_PLUSout_GT] = ACTIONS(3201), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), - [anon_sym_o_PLUSe_GT] = ACTIONS(3201), - [anon_sym_e_PLUSo_GT] = ACTIONS(3201), - [anon_sym_err_GT_GT] = ACTIONS(3199), - [anon_sym_out_GT_GT] = ACTIONS(3199), - [anon_sym_e_GT_GT] = ACTIONS(3199), - [anon_sym_o_GT_GT] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), - [aux_sym_unquoted_token1] = ACTIONS(3201), - [anon_sym_POUND] = ACTIONS(247), - }, - [978] = { - [sym__expr_parenthesized_immediate] = STATE(7597), - [sym_comment] = STATE(978), - [anon_sym_true] = ACTIONS(3199), - [anon_sym_false] = ACTIONS(3199), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3199), - [aux_sym_cmd_identifier_token39] = ACTIONS(3199), - [aux_sym_cmd_identifier_token40] = ACTIONS(3199), - [sym__newline] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3201), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_DOLLAR] = ACTIONS(3199), - [aux_sym_ctrl_match_token1] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym__] = ACTIONS(3201), - [anon_sym_DOT_DOT] = ACTIONS(3201), - [anon_sym_LPAREN2] = ACTIONS(2947), - [aux_sym_expr_binary_token1] = ACTIONS(3199), - [aux_sym_expr_binary_token2] = ACTIONS(3199), - [aux_sym_expr_binary_token3] = ACTIONS(3199), - [aux_sym_expr_binary_token4] = ACTIONS(3199), - [aux_sym_expr_binary_token5] = ACTIONS(3199), - [aux_sym_expr_binary_token6] = ACTIONS(3199), - [aux_sym_expr_binary_token7] = ACTIONS(3199), - [aux_sym_expr_binary_token8] = ACTIONS(3199), - [aux_sym_expr_binary_token9] = ACTIONS(3199), - [aux_sym_expr_binary_token10] = ACTIONS(3199), - [aux_sym_expr_binary_token11] = ACTIONS(3199), - [aux_sym_expr_binary_token12] = ACTIONS(3199), - [aux_sym_expr_binary_token13] = ACTIONS(3199), - [aux_sym_expr_binary_token14] = ACTIONS(3199), - [aux_sym_expr_binary_token15] = ACTIONS(3199), - [aux_sym_expr_binary_token16] = ACTIONS(3199), - [aux_sym_expr_binary_token17] = ACTIONS(3199), - [aux_sym_expr_binary_token18] = ACTIONS(3199), - [aux_sym_expr_binary_token19] = ACTIONS(3199), - [aux_sym_expr_binary_token20] = ACTIONS(3199), - [aux_sym_expr_binary_token21] = ACTIONS(3199), - [aux_sym_expr_binary_token22] = ACTIONS(3199), - [aux_sym_expr_binary_token23] = ACTIONS(3199), - [aux_sym_expr_binary_token24] = ACTIONS(3199), - [aux_sym_expr_binary_token25] = ACTIONS(3199), - [aux_sym_expr_binary_token26] = ACTIONS(3199), - [aux_sym_expr_binary_token27] = ACTIONS(3199), - [aux_sym_expr_binary_token28] = ACTIONS(3199), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), - [anon_sym_DOT_DOT_LT] = ACTIONS(3199), - [aux_sym__val_number_decimal_token1] = ACTIONS(3201), - [aux_sym__val_number_decimal_token2] = ACTIONS(3199), - [aux_sym__val_number_decimal_token3] = ACTIONS(3199), - [aux_sym__val_number_decimal_token4] = ACTIONS(3199), - [aux_sym__val_number_token1] = ACTIONS(3199), - [aux_sym__val_number_token2] = ACTIONS(3199), - [aux_sym__val_number_token3] = ACTIONS(3199), - [anon_sym_0b] = ACTIONS(3201), - [anon_sym_0o] = ACTIONS(3201), - [anon_sym_0x] = ACTIONS(3201), - [sym_val_date] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3199), - [sym__str_single_quotes] = ACTIONS(3199), - [sym__str_back_ticks] = ACTIONS(3199), - [anon_sym_err_GT] = ACTIONS(3201), - [anon_sym_out_GT] = ACTIONS(3201), - [anon_sym_e_GT] = ACTIONS(3201), - [anon_sym_o_GT] = ACTIONS(3201), - [anon_sym_err_PLUSout_GT] = ACTIONS(3201), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), - [anon_sym_o_PLUSe_GT] = ACTIONS(3201), - [anon_sym_e_PLUSo_GT] = ACTIONS(3201), - [anon_sym_err_GT_GT] = ACTIONS(3199), - [anon_sym_out_GT_GT] = ACTIONS(3199), - [anon_sym_e_GT_GT] = ACTIONS(3199), - [anon_sym_o_GT_GT] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), - [aux_sym_unquoted_token1] = ACTIONS(3201), - [anon_sym_POUND] = ACTIONS(247), - }, - [979] = { - [sym__expr_parenthesized_immediate] = STATE(7597), - [sym_comment] = STATE(979), - [anon_sym_true] = ACTIONS(3199), - [anon_sym_false] = ACTIONS(3199), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3199), - [aux_sym_cmd_identifier_token39] = ACTIONS(3199), - [aux_sym_cmd_identifier_token40] = ACTIONS(3199), - [sym__newline] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3201), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_DOLLAR] = ACTIONS(3199), - [aux_sym_ctrl_match_token1] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym__] = ACTIONS(3201), - [anon_sym_DOT_DOT] = ACTIONS(3201), - [anon_sym_LPAREN2] = ACTIONS(2947), - [aux_sym_expr_binary_token1] = ACTIONS(3199), - [aux_sym_expr_binary_token2] = ACTIONS(3199), - [aux_sym_expr_binary_token3] = ACTIONS(3199), - [aux_sym_expr_binary_token4] = ACTIONS(3199), - [aux_sym_expr_binary_token5] = ACTIONS(3199), - [aux_sym_expr_binary_token6] = ACTIONS(3199), - [aux_sym_expr_binary_token7] = ACTIONS(3199), - [aux_sym_expr_binary_token8] = ACTIONS(3199), - [aux_sym_expr_binary_token9] = ACTIONS(3199), - [aux_sym_expr_binary_token10] = ACTIONS(3199), - [aux_sym_expr_binary_token11] = ACTIONS(3199), - [aux_sym_expr_binary_token12] = ACTIONS(3199), - [aux_sym_expr_binary_token13] = ACTIONS(3199), - [aux_sym_expr_binary_token14] = ACTIONS(3199), - [aux_sym_expr_binary_token15] = ACTIONS(3199), - [aux_sym_expr_binary_token16] = ACTIONS(3199), - [aux_sym_expr_binary_token17] = ACTIONS(3199), - [aux_sym_expr_binary_token18] = ACTIONS(3199), - [aux_sym_expr_binary_token19] = ACTIONS(3199), - [aux_sym_expr_binary_token20] = ACTIONS(3199), - [aux_sym_expr_binary_token21] = ACTIONS(3199), - [aux_sym_expr_binary_token22] = ACTIONS(3199), - [aux_sym_expr_binary_token23] = ACTIONS(3199), - [aux_sym_expr_binary_token24] = ACTIONS(3199), - [aux_sym_expr_binary_token25] = ACTIONS(3199), - [aux_sym_expr_binary_token26] = ACTIONS(3199), - [aux_sym_expr_binary_token27] = ACTIONS(3199), - [aux_sym_expr_binary_token28] = ACTIONS(3199), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), - [anon_sym_DOT_DOT_LT] = ACTIONS(3199), - [aux_sym__val_number_decimal_token1] = ACTIONS(3201), - [aux_sym__val_number_decimal_token2] = ACTIONS(3199), - [aux_sym__val_number_decimal_token3] = ACTIONS(3199), - [aux_sym__val_number_decimal_token4] = ACTIONS(3199), - [aux_sym__val_number_token1] = ACTIONS(3199), - [aux_sym__val_number_token2] = ACTIONS(3199), - [aux_sym__val_number_token3] = ACTIONS(3199), - [anon_sym_0b] = ACTIONS(3201), - [anon_sym_0o] = ACTIONS(3201), - [anon_sym_0x] = ACTIONS(3201), - [sym_val_date] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3199), - [sym__str_single_quotes] = ACTIONS(3199), - [sym__str_back_ticks] = ACTIONS(3199), - [anon_sym_err_GT] = ACTIONS(3201), - [anon_sym_out_GT] = ACTIONS(3201), - [anon_sym_e_GT] = ACTIONS(3201), - [anon_sym_o_GT] = ACTIONS(3201), - [anon_sym_err_PLUSout_GT] = ACTIONS(3201), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), - [anon_sym_o_PLUSe_GT] = ACTIONS(3201), - [anon_sym_e_PLUSo_GT] = ACTIONS(3201), - [anon_sym_err_GT_GT] = ACTIONS(3199), - [anon_sym_out_GT_GT] = ACTIONS(3199), - [anon_sym_e_GT_GT] = ACTIONS(3199), - [anon_sym_o_GT_GT] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), - [aux_sym_unquoted_token1] = ACTIONS(3201), - [anon_sym_POUND] = ACTIONS(247), - }, - [980] = { - [sym__expr_parenthesized_immediate] = STATE(7597), - [sym_comment] = STATE(980), - [anon_sym_true] = ACTIONS(3199), - [anon_sym_false] = ACTIONS(3199), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3199), - [aux_sym_cmd_identifier_token39] = ACTIONS(3199), - [aux_sym_cmd_identifier_token40] = ACTIONS(3199), - [sym__newline] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3201), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_DOLLAR] = ACTIONS(3199), - [aux_sym_ctrl_match_token1] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym__] = ACTIONS(3201), - [anon_sym_DOT_DOT] = ACTIONS(3201), - [anon_sym_LPAREN2] = ACTIONS(2947), - [aux_sym_expr_binary_token1] = ACTIONS(3199), - [aux_sym_expr_binary_token2] = ACTIONS(3199), - [aux_sym_expr_binary_token3] = ACTIONS(3199), - [aux_sym_expr_binary_token4] = ACTIONS(3199), - [aux_sym_expr_binary_token5] = ACTIONS(3199), - [aux_sym_expr_binary_token6] = ACTIONS(3199), - [aux_sym_expr_binary_token7] = ACTIONS(3199), - [aux_sym_expr_binary_token8] = ACTIONS(3199), - [aux_sym_expr_binary_token9] = ACTIONS(3199), - [aux_sym_expr_binary_token10] = ACTIONS(3199), - [aux_sym_expr_binary_token11] = ACTIONS(3199), - [aux_sym_expr_binary_token12] = ACTIONS(3199), - [aux_sym_expr_binary_token13] = ACTIONS(3199), - [aux_sym_expr_binary_token14] = ACTIONS(3199), - [aux_sym_expr_binary_token15] = ACTIONS(3199), - [aux_sym_expr_binary_token16] = ACTIONS(3199), - [aux_sym_expr_binary_token17] = ACTIONS(3199), - [aux_sym_expr_binary_token18] = ACTIONS(3199), - [aux_sym_expr_binary_token19] = ACTIONS(3199), - [aux_sym_expr_binary_token20] = ACTIONS(3199), - [aux_sym_expr_binary_token21] = ACTIONS(3199), - [aux_sym_expr_binary_token22] = ACTIONS(3199), - [aux_sym_expr_binary_token23] = ACTIONS(3199), - [aux_sym_expr_binary_token24] = ACTIONS(3199), - [aux_sym_expr_binary_token25] = ACTIONS(3199), - [aux_sym_expr_binary_token26] = ACTIONS(3199), - [aux_sym_expr_binary_token27] = ACTIONS(3199), - [aux_sym_expr_binary_token28] = ACTIONS(3199), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), - [anon_sym_DOT_DOT_LT] = ACTIONS(3199), - [aux_sym__val_number_decimal_token1] = ACTIONS(3201), - [aux_sym__val_number_decimal_token2] = ACTIONS(3199), - [aux_sym__val_number_decimal_token3] = ACTIONS(3199), - [aux_sym__val_number_decimal_token4] = ACTIONS(3199), - [aux_sym__val_number_token1] = ACTIONS(3199), - [aux_sym__val_number_token2] = ACTIONS(3199), - [aux_sym__val_number_token3] = ACTIONS(3199), - [anon_sym_0b] = ACTIONS(3201), - [anon_sym_0o] = ACTIONS(3201), - [anon_sym_0x] = ACTIONS(3201), - [sym_val_date] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3199), - [sym__str_single_quotes] = ACTIONS(3199), - [sym__str_back_ticks] = ACTIONS(3199), - [anon_sym_err_GT] = ACTIONS(3201), - [anon_sym_out_GT] = ACTIONS(3201), - [anon_sym_e_GT] = ACTIONS(3201), - [anon_sym_o_GT] = ACTIONS(3201), - [anon_sym_err_PLUSout_GT] = ACTIONS(3201), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), - [anon_sym_o_PLUSe_GT] = ACTIONS(3201), - [anon_sym_e_PLUSo_GT] = ACTIONS(3201), - [anon_sym_err_GT_GT] = ACTIONS(3199), - [anon_sym_out_GT_GT] = ACTIONS(3199), - [anon_sym_e_GT_GT] = ACTIONS(3199), - [anon_sym_o_GT_GT] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), - [aux_sym_unquoted_token1] = ACTIONS(3201), - [anon_sym_POUND] = ACTIONS(247), - }, - [981] = { - [sym__expr_parenthesized_immediate] = STATE(7597), - [sym_comment] = STATE(981), - [anon_sym_true] = ACTIONS(3199), - [anon_sym_false] = ACTIONS(3199), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3199), - [aux_sym_cmd_identifier_token39] = ACTIONS(3199), - [aux_sym_cmd_identifier_token40] = ACTIONS(3199), - [sym__newline] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3201), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_DOLLAR] = ACTIONS(3199), - [aux_sym_ctrl_match_token1] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym__] = ACTIONS(3201), - [anon_sym_DOT_DOT] = ACTIONS(3201), - [anon_sym_LPAREN2] = ACTIONS(2947), - [aux_sym_expr_binary_token1] = ACTIONS(3199), - [aux_sym_expr_binary_token2] = ACTIONS(3199), - [aux_sym_expr_binary_token3] = ACTIONS(3199), - [aux_sym_expr_binary_token4] = ACTIONS(3199), - [aux_sym_expr_binary_token5] = ACTIONS(3199), - [aux_sym_expr_binary_token6] = ACTIONS(3199), - [aux_sym_expr_binary_token7] = ACTIONS(3199), - [aux_sym_expr_binary_token8] = ACTIONS(3199), - [aux_sym_expr_binary_token9] = ACTIONS(3199), - [aux_sym_expr_binary_token10] = ACTIONS(3199), - [aux_sym_expr_binary_token11] = ACTIONS(3199), - [aux_sym_expr_binary_token12] = ACTIONS(3199), - [aux_sym_expr_binary_token13] = ACTIONS(3199), - [aux_sym_expr_binary_token14] = ACTIONS(3199), - [aux_sym_expr_binary_token15] = ACTIONS(3199), - [aux_sym_expr_binary_token16] = ACTIONS(3199), - [aux_sym_expr_binary_token17] = ACTIONS(3199), - [aux_sym_expr_binary_token18] = ACTIONS(3199), - [aux_sym_expr_binary_token19] = ACTIONS(3199), - [aux_sym_expr_binary_token20] = ACTIONS(3199), - [aux_sym_expr_binary_token21] = ACTIONS(3199), - [aux_sym_expr_binary_token22] = ACTIONS(3199), - [aux_sym_expr_binary_token23] = ACTIONS(3199), - [aux_sym_expr_binary_token24] = ACTIONS(3199), - [aux_sym_expr_binary_token25] = ACTIONS(3199), - [aux_sym_expr_binary_token26] = ACTIONS(3199), - [aux_sym_expr_binary_token27] = ACTIONS(3199), - [aux_sym_expr_binary_token28] = ACTIONS(3199), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), - [anon_sym_DOT_DOT_LT] = ACTIONS(3199), - [aux_sym__val_number_decimal_token1] = ACTIONS(3201), - [aux_sym__val_number_decimal_token2] = ACTIONS(3199), - [aux_sym__val_number_decimal_token3] = ACTIONS(3199), - [aux_sym__val_number_decimal_token4] = ACTIONS(3199), - [aux_sym__val_number_token1] = ACTIONS(3199), - [aux_sym__val_number_token2] = ACTIONS(3199), - [aux_sym__val_number_token3] = ACTIONS(3199), - [anon_sym_0b] = ACTIONS(3201), - [anon_sym_0o] = ACTIONS(3201), - [anon_sym_0x] = ACTIONS(3201), - [sym_val_date] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3199), - [sym__str_single_quotes] = ACTIONS(3199), - [sym__str_back_ticks] = ACTIONS(3199), - [anon_sym_err_GT] = ACTIONS(3201), - [anon_sym_out_GT] = ACTIONS(3201), - [anon_sym_e_GT] = ACTIONS(3201), - [anon_sym_o_GT] = ACTIONS(3201), - [anon_sym_err_PLUSout_GT] = ACTIONS(3201), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), - [anon_sym_o_PLUSe_GT] = ACTIONS(3201), - [anon_sym_e_PLUSo_GT] = ACTIONS(3201), - [anon_sym_err_GT_GT] = ACTIONS(3199), - [anon_sym_out_GT_GT] = ACTIONS(3199), - [anon_sym_e_GT_GT] = ACTIONS(3199), - [anon_sym_o_GT_GT] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), - [aux_sym_unquoted_token1] = ACTIONS(3201), - [anon_sym_POUND] = ACTIONS(247), - }, - [982] = { - [sym__expr_parenthesized_immediate] = STATE(7597), - [sym_comment] = STATE(982), - [anon_sym_true] = ACTIONS(3199), - [anon_sym_false] = ACTIONS(3199), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3199), - [aux_sym_cmd_identifier_token39] = ACTIONS(3199), - [aux_sym_cmd_identifier_token40] = ACTIONS(3199), - [sym__newline] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3201), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_DOLLAR] = ACTIONS(3199), - [aux_sym_ctrl_match_token1] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym__] = ACTIONS(3201), - [anon_sym_DOT_DOT] = ACTIONS(3201), - [anon_sym_LPAREN2] = ACTIONS(2947), - [aux_sym_expr_binary_token1] = ACTIONS(3199), - [aux_sym_expr_binary_token2] = ACTIONS(3199), - [aux_sym_expr_binary_token3] = ACTIONS(3199), - [aux_sym_expr_binary_token4] = ACTIONS(3199), - [aux_sym_expr_binary_token5] = ACTIONS(3199), - [aux_sym_expr_binary_token6] = ACTIONS(3199), - [aux_sym_expr_binary_token7] = ACTIONS(3199), - [aux_sym_expr_binary_token8] = ACTIONS(3199), - [aux_sym_expr_binary_token9] = ACTIONS(3199), - [aux_sym_expr_binary_token10] = ACTIONS(3199), - [aux_sym_expr_binary_token11] = ACTIONS(3199), - [aux_sym_expr_binary_token12] = ACTIONS(3199), - [aux_sym_expr_binary_token13] = ACTIONS(3199), - [aux_sym_expr_binary_token14] = ACTIONS(3199), - [aux_sym_expr_binary_token15] = ACTIONS(3199), - [aux_sym_expr_binary_token16] = ACTIONS(3199), - [aux_sym_expr_binary_token17] = ACTIONS(3199), - [aux_sym_expr_binary_token18] = ACTIONS(3199), - [aux_sym_expr_binary_token19] = ACTIONS(3199), - [aux_sym_expr_binary_token20] = ACTIONS(3199), - [aux_sym_expr_binary_token21] = ACTIONS(3199), - [aux_sym_expr_binary_token22] = ACTIONS(3199), - [aux_sym_expr_binary_token23] = ACTIONS(3199), - [aux_sym_expr_binary_token24] = ACTIONS(3199), - [aux_sym_expr_binary_token25] = ACTIONS(3199), - [aux_sym_expr_binary_token26] = ACTIONS(3199), - [aux_sym_expr_binary_token27] = ACTIONS(3199), - [aux_sym_expr_binary_token28] = ACTIONS(3199), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), - [anon_sym_DOT_DOT_LT] = ACTIONS(3199), - [aux_sym__val_number_decimal_token1] = ACTIONS(3201), - [aux_sym__val_number_decimal_token2] = ACTIONS(3199), - [aux_sym__val_number_decimal_token3] = ACTIONS(3199), - [aux_sym__val_number_decimal_token4] = ACTIONS(3199), - [aux_sym__val_number_token1] = ACTIONS(3199), - [aux_sym__val_number_token2] = ACTIONS(3199), - [aux_sym__val_number_token3] = ACTIONS(3199), - [anon_sym_0b] = ACTIONS(3201), - [anon_sym_0o] = ACTIONS(3201), - [anon_sym_0x] = ACTIONS(3201), - [sym_val_date] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3199), - [sym__str_single_quotes] = ACTIONS(3199), - [sym__str_back_ticks] = ACTIONS(3199), - [anon_sym_err_GT] = ACTIONS(3201), - [anon_sym_out_GT] = ACTIONS(3201), - [anon_sym_e_GT] = ACTIONS(3201), - [anon_sym_o_GT] = ACTIONS(3201), - [anon_sym_err_PLUSout_GT] = ACTIONS(3201), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), - [anon_sym_o_PLUSe_GT] = ACTIONS(3201), - [anon_sym_e_PLUSo_GT] = ACTIONS(3201), - [anon_sym_err_GT_GT] = ACTIONS(3199), - [anon_sym_out_GT_GT] = ACTIONS(3199), - [anon_sym_e_GT_GT] = ACTIONS(3199), - [anon_sym_o_GT_GT] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), - [aux_sym_unquoted_token1] = ACTIONS(3201), - [anon_sym_POUND] = ACTIONS(247), - }, - [983] = { - [sym__expr_parenthesized_immediate] = STATE(7597), - [sym_comment] = STATE(983), - [anon_sym_true] = ACTIONS(3199), - [anon_sym_false] = ACTIONS(3199), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3199), - [aux_sym_cmd_identifier_token39] = ACTIONS(3199), - [aux_sym_cmd_identifier_token40] = ACTIONS(3199), - [sym__newline] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3201), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_DOLLAR] = ACTIONS(3199), - [aux_sym_ctrl_match_token1] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym__] = ACTIONS(3201), - [anon_sym_DOT_DOT] = ACTIONS(3201), - [anon_sym_LPAREN2] = ACTIONS(2947), - [aux_sym_expr_binary_token1] = ACTIONS(3199), - [aux_sym_expr_binary_token2] = ACTIONS(3199), - [aux_sym_expr_binary_token3] = ACTIONS(3199), - [aux_sym_expr_binary_token4] = ACTIONS(3199), - [aux_sym_expr_binary_token5] = ACTIONS(3199), - [aux_sym_expr_binary_token6] = ACTIONS(3199), - [aux_sym_expr_binary_token7] = ACTIONS(3199), - [aux_sym_expr_binary_token8] = ACTIONS(3199), - [aux_sym_expr_binary_token9] = ACTIONS(3199), - [aux_sym_expr_binary_token10] = ACTIONS(3199), - [aux_sym_expr_binary_token11] = ACTIONS(3199), - [aux_sym_expr_binary_token12] = ACTIONS(3199), - [aux_sym_expr_binary_token13] = ACTIONS(3199), - [aux_sym_expr_binary_token14] = ACTIONS(3199), - [aux_sym_expr_binary_token15] = ACTIONS(3199), - [aux_sym_expr_binary_token16] = ACTIONS(3199), - [aux_sym_expr_binary_token17] = ACTIONS(3199), - [aux_sym_expr_binary_token18] = ACTIONS(3199), - [aux_sym_expr_binary_token19] = ACTIONS(3199), - [aux_sym_expr_binary_token20] = ACTIONS(3199), - [aux_sym_expr_binary_token21] = ACTIONS(3199), - [aux_sym_expr_binary_token22] = ACTIONS(3199), - [aux_sym_expr_binary_token23] = ACTIONS(3199), - [aux_sym_expr_binary_token24] = ACTIONS(3199), - [aux_sym_expr_binary_token25] = ACTIONS(3199), - [aux_sym_expr_binary_token26] = ACTIONS(3199), - [aux_sym_expr_binary_token27] = ACTIONS(3199), - [aux_sym_expr_binary_token28] = ACTIONS(3199), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), - [anon_sym_DOT_DOT_LT] = ACTIONS(3199), - [aux_sym__val_number_decimal_token1] = ACTIONS(3201), - [aux_sym__val_number_decimal_token2] = ACTIONS(3199), - [aux_sym__val_number_decimal_token3] = ACTIONS(3199), - [aux_sym__val_number_decimal_token4] = ACTIONS(3199), - [aux_sym__val_number_token1] = ACTIONS(3199), - [aux_sym__val_number_token2] = ACTIONS(3199), - [aux_sym__val_number_token3] = ACTIONS(3199), - [anon_sym_0b] = ACTIONS(3201), - [anon_sym_0o] = ACTIONS(3201), - [anon_sym_0x] = ACTIONS(3201), - [sym_val_date] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3199), - [sym__str_single_quotes] = ACTIONS(3199), - [sym__str_back_ticks] = ACTIONS(3199), - [anon_sym_err_GT] = ACTIONS(3201), - [anon_sym_out_GT] = ACTIONS(3201), - [anon_sym_e_GT] = ACTIONS(3201), - [anon_sym_o_GT] = ACTIONS(3201), - [anon_sym_err_PLUSout_GT] = ACTIONS(3201), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), - [anon_sym_o_PLUSe_GT] = ACTIONS(3201), - [anon_sym_e_PLUSo_GT] = ACTIONS(3201), - [anon_sym_err_GT_GT] = ACTIONS(3199), - [anon_sym_out_GT_GT] = ACTIONS(3199), - [anon_sym_e_GT_GT] = ACTIONS(3199), - [anon_sym_o_GT_GT] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), - [aux_sym_unquoted_token1] = ACTIONS(3201), - [anon_sym_POUND] = ACTIONS(247), - }, - [984] = { - [sym__expr_parenthesized_immediate] = STATE(7597), - [sym_comment] = STATE(984), - [anon_sym_true] = ACTIONS(3199), - [anon_sym_false] = ACTIONS(3199), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3199), - [aux_sym_cmd_identifier_token39] = ACTIONS(3199), - [aux_sym_cmd_identifier_token40] = ACTIONS(3199), - [sym__newline] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3201), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_DOLLAR] = ACTIONS(3199), - [aux_sym_ctrl_match_token1] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym__] = ACTIONS(3201), - [anon_sym_DOT_DOT] = ACTIONS(3201), - [anon_sym_LPAREN2] = ACTIONS(2947), - [aux_sym_expr_binary_token1] = ACTIONS(3199), - [aux_sym_expr_binary_token2] = ACTIONS(3199), - [aux_sym_expr_binary_token3] = ACTIONS(3199), - [aux_sym_expr_binary_token4] = ACTIONS(3199), - [aux_sym_expr_binary_token5] = ACTIONS(3199), - [aux_sym_expr_binary_token6] = ACTIONS(3199), - [aux_sym_expr_binary_token7] = ACTIONS(3199), - [aux_sym_expr_binary_token8] = ACTIONS(3199), - [aux_sym_expr_binary_token9] = ACTIONS(3199), - [aux_sym_expr_binary_token10] = ACTIONS(3199), - [aux_sym_expr_binary_token11] = ACTIONS(3199), - [aux_sym_expr_binary_token12] = ACTIONS(3199), - [aux_sym_expr_binary_token13] = ACTIONS(3199), - [aux_sym_expr_binary_token14] = ACTIONS(3199), - [aux_sym_expr_binary_token15] = ACTIONS(3199), - [aux_sym_expr_binary_token16] = ACTIONS(3199), - [aux_sym_expr_binary_token17] = ACTIONS(3199), - [aux_sym_expr_binary_token18] = ACTIONS(3199), - [aux_sym_expr_binary_token19] = ACTIONS(3199), - [aux_sym_expr_binary_token20] = ACTIONS(3199), - [aux_sym_expr_binary_token21] = ACTIONS(3199), - [aux_sym_expr_binary_token22] = ACTIONS(3199), - [aux_sym_expr_binary_token23] = ACTIONS(3199), - [aux_sym_expr_binary_token24] = ACTIONS(3199), - [aux_sym_expr_binary_token25] = ACTIONS(3199), - [aux_sym_expr_binary_token26] = ACTIONS(3199), - [aux_sym_expr_binary_token27] = ACTIONS(3199), - [aux_sym_expr_binary_token28] = ACTIONS(3199), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), - [anon_sym_DOT_DOT_LT] = ACTIONS(3199), - [aux_sym__val_number_decimal_token1] = ACTIONS(3201), - [aux_sym__val_number_decimal_token2] = ACTIONS(3199), - [aux_sym__val_number_decimal_token3] = ACTIONS(3199), - [aux_sym__val_number_decimal_token4] = ACTIONS(3199), - [aux_sym__val_number_token1] = ACTIONS(3199), - [aux_sym__val_number_token2] = ACTIONS(3199), - [aux_sym__val_number_token3] = ACTIONS(3199), - [anon_sym_0b] = ACTIONS(3201), - [anon_sym_0o] = ACTIONS(3201), - [anon_sym_0x] = ACTIONS(3201), - [sym_val_date] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3199), - [sym__str_single_quotes] = ACTIONS(3199), - [sym__str_back_ticks] = ACTIONS(3199), - [anon_sym_err_GT] = ACTIONS(3201), - [anon_sym_out_GT] = ACTIONS(3201), - [anon_sym_e_GT] = ACTIONS(3201), - [anon_sym_o_GT] = ACTIONS(3201), - [anon_sym_err_PLUSout_GT] = ACTIONS(3201), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), - [anon_sym_o_PLUSe_GT] = ACTIONS(3201), - [anon_sym_e_PLUSo_GT] = ACTIONS(3201), - [anon_sym_err_GT_GT] = ACTIONS(3199), - [anon_sym_out_GT_GT] = ACTIONS(3199), - [anon_sym_e_GT_GT] = ACTIONS(3199), - [anon_sym_o_GT_GT] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), - [aux_sym_unquoted_token1] = ACTIONS(3201), - [anon_sym_POUND] = ACTIONS(247), - }, - [985] = { - [sym_comment] = STATE(985), - [anon_sym_true] = ACTIONS(978), - [anon_sym_false] = ACTIONS(978), - [anon_sym_null] = ACTIONS(978), - [aux_sym_cmd_identifier_token38] = ACTIONS(978), - [aux_sym_cmd_identifier_token39] = ACTIONS(978), - [aux_sym_cmd_identifier_token40] = ACTIONS(978), - [sym__newline] = ACTIONS(978), - [anon_sym_LBRACK] = ACTIONS(978), - [anon_sym_LPAREN] = ACTIONS(978), - [anon_sym_COMMA] = ACTIONS(978), - [anon_sym_DOLLAR] = ACTIONS(978), - [aux_sym_ctrl_match_token1] = ACTIONS(978), - [anon_sym_RBRACE] = ACTIONS(978), - [anon_sym__] = ACTIONS(976), - [anon_sym_DOT_DOT] = ACTIONS(976), - [anon_sym_QMARK2] = ACTIONS(978), - [aux_sym_expr_binary_token1] = ACTIONS(978), - [aux_sym_expr_binary_token2] = ACTIONS(978), - [aux_sym_expr_binary_token3] = ACTIONS(978), - [aux_sym_expr_binary_token4] = ACTIONS(978), - [aux_sym_expr_binary_token5] = ACTIONS(978), - [aux_sym_expr_binary_token6] = ACTIONS(978), - [aux_sym_expr_binary_token7] = ACTIONS(978), - [aux_sym_expr_binary_token8] = ACTIONS(978), - [aux_sym_expr_binary_token9] = ACTIONS(978), - [aux_sym_expr_binary_token10] = ACTIONS(978), - [aux_sym_expr_binary_token11] = ACTIONS(978), - [aux_sym_expr_binary_token12] = ACTIONS(978), - [aux_sym_expr_binary_token13] = ACTIONS(978), - [aux_sym_expr_binary_token14] = ACTIONS(978), - [aux_sym_expr_binary_token15] = ACTIONS(978), - [aux_sym_expr_binary_token16] = ACTIONS(978), - [aux_sym_expr_binary_token17] = ACTIONS(978), - [aux_sym_expr_binary_token18] = ACTIONS(978), - [aux_sym_expr_binary_token19] = ACTIONS(978), - [aux_sym_expr_binary_token20] = ACTIONS(978), - [aux_sym_expr_binary_token21] = ACTIONS(978), - [aux_sym_expr_binary_token22] = ACTIONS(978), - [aux_sym_expr_binary_token23] = ACTIONS(978), - [aux_sym_expr_binary_token24] = ACTIONS(978), - [aux_sym_expr_binary_token25] = ACTIONS(978), - [aux_sym_expr_binary_token26] = ACTIONS(978), - [aux_sym_expr_binary_token27] = ACTIONS(978), - [aux_sym_expr_binary_token28] = ACTIONS(978), - [anon_sym_DOT] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ] = ACTIONS(978), - [anon_sym_DOT_DOT_LT] = ACTIONS(978), - [aux_sym__val_number_decimal_token1] = ACTIONS(976), - [aux_sym__val_number_decimal_token2] = ACTIONS(978), - [aux_sym__val_number_decimal_token3] = ACTIONS(978), - [aux_sym__val_number_decimal_token4] = ACTIONS(978), - [aux_sym__val_number_token1] = ACTIONS(978), - [aux_sym__val_number_token2] = ACTIONS(978), - [aux_sym__val_number_token3] = ACTIONS(978), - [anon_sym_0b] = ACTIONS(976), - [anon_sym_0o] = ACTIONS(976), - [anon_sym_0x] = ACTIONS(976), - [sym_val_date] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(978), - [sym__str_single_quotes] = ACTIONS(978), - [sym__str_back_ticks] = ACTIONS(978), - [anon_sym_err_GT] = ACTIONS(976), - [anon_sym_out_GT] = ACTIONS(976), - [anon_sym_e_GT] = ACTIONS(976), - [anon_sym_o_GT] = ACTIONS(976), - [anon_sym_err_PLUSout_GT] = ACTIONS(976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(976), - [anon_sym_o_PLUSe_GT] = ACTIONS(976), - [anon_sym_e_PLUSo_GT] = ACTIONS(976), - [anon_sym_err_GT_GT] = ACTIONS(978), - [anon_sym_out_GT_GT] = ACTIONS(978), - [anon_sym_e_GT_GT] = ACTIONS(978), - [anon_sym_o_GT_GT] = ACTIONS(978), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(978), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(978), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(978), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(978), - [aux_sym_unquoted_token1] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(247), - }, - [986] = { - [sym__expr_parenthesized_immediate] = STATE(7887), - [sym_comment] = STATE(986), - [anon_sym_true] = ACTIONS(3259), - [anon_sym_false] = ACTIONS(3259), - [anon_sym_null] = ACTIONS(3259), - [aux_sym_cmd_identifier_token38] = ACTIONS(3259), - [aux_sym_cmd_identifier_token39] = ACTIONS(3259), - [aux_sym_cmd_identifier_token40] = ACTIONS(3259), - [sym__newline] = ACTIONS(3259), - [anon_sym_LBRACK] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3261), - [anon_sym_COMMA] = ACTIONS(3259), - [anon_sym_DOLLAR] = ACTIONS(3259), - [aux_sym_ctrl_match_token1] = ACTIONS(3259), - [anon_sym_RBRACE] = ACTIONS(3259), - [anon_sym__] = ACTIONS(3261), - [anon_sym_DOT_DOT] = ACTIONS(3261), - [anon_sym_LPAREN2] = ACTIONS(2947), - [aux_sym_expr_binary_token1] = ACTIONS(3259), - [aux_sym_expr_binary_token2] = ACTIONS(3259), - [aux_sym_expr_binary_token3] = ACTIONS(3259), - [aux_sym_expr_binary_token4] = ACTIONS(3259), - [aux_sym_expr_binary_token5] = ACTIONS(3259), - [aux_sym_expr_binary_token6] = ACTIONS(3259), - [aux_sym_expr_binary_token7] = ACTIONS(3259), - [aux_sym_expr_binary_token8] = ACTIONS(3259), - [aux_sym_expr_binary_token9] = ACTIONS(3259), - [aux_sym_expr_binary_token10] = ACTIONS(3259), - [aux_sym_expr_binary_token11] = ACTIONS(3259), - [aux_sym_expr_binary_token12] = ACTIONS(3259), - [aux_sym_expr_binary_token13] = ACTIONS(3259), - [aux_sym_expr_binary_token14] = ACTIONS(3259), - [aux_sym_expr_binary_token15] = ACTIONS(3259), - [aux_sym_expr_binary_token16] = ACTIONS(3259), - [aux_sym_expr_binary_token17] = ACTIONS(3259), - [aux_sym_expr_binary_token18] = ACTIONS(3259), - [aux_sym_expr_binary_token19] = ACTIONS(3259), - [aux_sym_expr_binary_token20] = ACTIONS(3259), - [aux_sym_expr_binary_token21] = ACTIONS(3259), - [aux_sym_expr_binary_token22] = ACTIONS(3259), - [aux_sym_expr_binary_token23] = ACTIONS(3259), - [aux_sym_expr_binary_token24] = ACTIONS(3259), - [aux_sym_expr_binary_token25] = ACTIONS(3259), - [aux_sym_expr_binary_token26] = ACTIONS(3259), - [aux_sym_expr_binary_token27] = ACTIONS(3259), - [aux_sym_expr_binary_token28] = ACTIONS(3259), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3259), - [anon_sym_DOT_DOT_LT] = ACTIONS(3259), - [aux_sym__val_number_decimal_token1] = ACTIONS(3261), - [aux_sym__val_number_decimal_token2] = ACTIONS(3259), - [aux_sym__val_number_decimal_token3] = ACTIONS(3259), - [aux_sym__val_number_decimal_token4] = ACTIONS(3259), - [aux_sym__val_number_token1] = ACTIONS(3259), - [aux_sym__val_number_token2] = ACTIONS(3259), - [aux_sym__val_number_token3] = ACTIONS(3259), - [anon_sym_0b] = ACTIONS(3261), - [anon_sym_0o] = ACTIONS(3261), - [anon_sym_0x] = ACTIONS(3261), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(3259), - [sym__str_single_quotes] = ACTIONS(3259), - [sym__str_back_ticks] = ACTIONS(3259), - [anon_sym_err_GT] = ACTIONS(3261), - [anon_sym_out_GT] = ACTIONS(3261), - [anon_sym_e_GT] = ACTIONS(3261), - [anon_sym_o_GT] = ACTIONS(3261), - [anon_sym_err_PLUSout_GT] = ACTIONS(3261), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3261), - [anon_sym_o_PLUSe_GT] = ACTIONS(3261), - [anon_sym_e_PLUSo_GT] = ACTIONS(3261), - [anon_sym_err_GT_GT] = ACTIONS(3259), - [anon_sym_out_GT_GT] = ACTIONS(3259), - [anon_sym_e_GT_GT] = ACTIONS(3259), - [anon_sym_o_GT_GT] = ACTIONS(3259), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3259), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3259), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3259), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3259), - [aux_sym_unquoted_token1] = ACTIONS(3261), - [anon_sym_POUND] = ACTIONS(247), - }, - [987] = { - [sym_comment] = STATE(987), - [anon_sym_true] = ACTIONS(964), - [anon_sym_false] = ACTIONS(964), - [anon_sym_null] = ACTIONS(964), - [aux_sym_cmd_identifier_token38] = ACTIONS(964), - [aux_sym_cmd_identifier_token39] = ACTIONS(964), - [aux_sym_cmd_identifier_token40] = ACTIONS(964), - [sym__newline] = ACTIONS(964), - [anon_sym_LBRACK] = ACTIONS(964), - [anon_sym_LPAREN] = ACTIONS(964), - [anon_sym_COMMA] = ACTIONS(964), - [anon_sym_DOLLAR] = ACTIONS(964), - [aux_sym_ctrl_match_token1] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym__] = ACTIONS(962), - [anon_sym_DOT_DOT] = ACTIONS(962), - [anon_sym_QMARK2] = ACTIONS(964), - [aux_sym_expr_binary_token1] = ACTIONS(964), - [aux_sym_expr_binary_token2] = ACTIONS(964), - [aux_sym_expr_binary_token3] = ACTIONS(964), - [aux_sym_expr_binary_token4] = ACTIONS(964), - [aux_sym_expr_binary_token5] = ACTIONS(964), - [aux_sym_expr_binary_token6] = ACTIONS(964), - [aux_sym_expr_binary_token7] = ACTIONS(964), - [aux_sym_expr_binary_token8] = ACTIONS(964), - [aux_sym_expr_binary_token9] = ACTIONS(964), - [aux_sym_expr_binary_token10] = ACTIONS(964), - [aux_sym_expr_binary_token11] = ACTIONS(964), - [aux_sym_expr_binary_token12] = ACTIONS(964), - [aux_sym_expr_binary_token13] = ACTIONS(964), - [aux_sym_expr_binary_token14] = ACTIONS(964), - [aux_sym_expr_binary_token15] = ACTIONS(964), - [aux_sym_expr_binary_token16] = ACTIONS(964), - [aux_sym_expr_binary_token17] = ACTIONS(964), - [aux_sym_expr_binary_token18] = ACTIONS(964), - [aux_sym_expr_binary_token19] = ACTIONS(964), - [aux_sym_expr_binary_token20] = ACTIONS(964), - [aux_sym_expr_binary_token21] = ACTIONS(964), - [aux_sym_expr_binary_token22] = ACTIONS(964), - [aux_sym_expr_binary_token23] = ACTIONS(964), - [aux_sym_expr_binary_token24] = ACTIONS(964), - [aux_sym_expr_binary_token25] = ACTIONS(964), - [aux_sym_expr_binary_token26] = ACTIONS(964), - [aux_sym_expr_binary_token27] = ACTIONS(964), - [aux_sym_expr_binary_token28] = ACTIONS(964), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_DOT_DOT_EQ] = ACTIONS(964), - [anon_sym_DOT_DOT_LT] = ACTIONS(964), - [aux_sym__val_number_decimal_token1] = ACTIONS(962), - [aux_sym__val_number_decimal_token2] = ACTIONS(964), - [aux_sym__val_number_decimal_token3] = ACTIONS(964), - [aux_sym__val_number_decimal_token4] = ACTIONS(964), - [aux_sym__val_number_token1] = ACTIONS(964), - [aux_sym__val_number_token2] = ACTIONS(964), - [aux_sym__val_number_token3] = ACTIONS(964), - [anon_sym_0b] = ACTIONS(962), - [anon_sym_0o] = ACTIONS(962), - [anon_sym_0x] = ACTIONS(962), - [sym_val_date] = ACTIONS(964), - [anon_sym_DQUOTE] = ACTIONS(964), - [sym__str_single_quotes] = ACTIONS(964), - [sym__str_back_ticks] = ACTIONS(964), - [anon_sym_err_GT] = ACTIONS(962), - [anon_sym_out_GT] = ACTIONS(962), - [anon_sym_e_GT] = ACTIONS(962), - [anon_sym_o_GT] = ACTIONS(962), - [anon_sym_err_PLUSout_GT] = ACTIONS(962), - [anon_sym_out_PLUSerr_GT] = ACTIONS(962), - [anon_sym_o_PLUSe_GT] = ACTIONS(962), - [anon_sym_e_PLUSo_GT] = ACTIONS(962), - [anon_sym_err_GT_GT] = ACTIONS(964), - [anon_sym_out_GT_GT] = ACTIONS(964), - [anon_sym_e_GT_GT] = ACTIONS(964), - [anon_sym_o_GT_GT] = ACTIONS(964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(964), - [aux_sym_unquoted_token1] = ACTIONS(962), - [anon_sym_POUND] = ACTIONS(247), - }, - [988] = { - [sym__expr_parenthesized_immediate] = STATE(7887), - [sym_comment] = STATE(988), - [anon_sym_true] = ACTIONS(3263), - [anon_sym_false] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3263), - [aux_sym_cmd_identifier_token38] = ACTIONS(3263), - [aux_sym_cmd_identifier_token39] = ACTIONS(3263), - [aux_sym_cmd_identifier_token40] = ACTIONS(3263), - [sym__newline] = ACTIONS(3263), - [anon_sym_LBRACK] = ACTIONS(3263), - [anon_sym_LPAREN] = ACTIONS(3265), - [anon_sym_COMMA] = ACTIONS(3263), - [anon_sym_DOLLAR] = ACTIONS(3263), - [aux_sym_ctrl_match_token1] = ACTIONS(3263), - [anon_sym_RBRACE] = ACTIONS(3263), - [anon_sym__] = ACTIONS(3265), - [anon_sym_DOT_DOT] = ACTIONS(3265), - [anon_sym_LPAREN2] = ACTIONS(2947), - [aux_sym_expr_binary_token1] = ACTIONS(3263), - [aux_sym_expr_binary_token2] = ACTIONS(3263), - [aux_sym_expr_binary_token3] = ACTIONS(3263), - [aux_sym_expr_binary_token4] = ACTIONS(3263), - [aux_sym_expr_binary_token5] = ACTIONS(3263), - [aux_sym_expr_binary_token6] = ACTIONS(3263), - [aux_sym_expr_binary_token7] = ACTIONS(3263), - [aux_sym_expr_binary_token8] = ACTIONS(3263), - [aux_sym_expr_binary_token9] = ACTIONS(3263), - [aux_sym_expr_binary_token10] = ACTIONS(3263), - [aux_sym_expr_binary_token11] = ACTIONS(3263), - [aux_sym_expr_binary_token12] = ACTIONS(3263), - [aux_sym_expr_binary_token13] = ACTIONS(3263), - [aux_sym_expr_binary_token14] = ACTIONS(3263), - [aux_sym_expr_binary_token15] = ACTIONS(3263), - [aux_sym_expr_binary_token16] = ACTIONS(3263), - [aux_sym_expr_binary_token17] = ACTIONS(3263), - [aux_sym_expr_binary_token18] = ACTIONS(3263), - [aux_sym_expr_binary_token19] = ACTIONS(3263), - [aux_sym_expr_binary_token20] = ACTIONS(3263), - [aux_sym_expr_binary_token21] = ACTIONS(3263), - [aux_sym_expr_binary_token22] = ACTIONS(3263), - [aux_sym_expr_binary_token23] = ACTIONS(3263), - [aux_sym_expr_binary_token24] = ACTIONS(3263), - [aux_sym_expr_binary_token25] = ACTIONS(3263), - [aux_sym_expr_binary_token26] = ACTIONS(3263), - [aux_sym_expr_binary_token27] = ACTIONS(3263), - [aux_sym_expr_binary_token28] = ACTIONS(3263), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [aux_sym__val_number_decimal_token1] = ACTIONS(3265), - [aux_sym__val_number_decimal_token2] = ACTIONS(3263), - [aux_sym__val_number_decimal_token3] = ACTIONS(3263), - [aux_sym__val_number_decimal_token4] = ACTIONS(3263), - [aux_sym__val_number_token1] = ACTIONS(3263), - [aux_sym__val_number_token2] = ACTIONS(3263), - [aux_sym__val_number_token3] = ACTIONS(3263), - [anon_sym_0b] = ACTIONS(3265), - [anon_sym_0o] = ACTIONS(3265), - [anon_sym_0x] = ACTIONS(3265), - [sym_val_date] = ACTIONS(3263), - [anon_sym_DQUOTE] = ACTIONS(3263), - [sym__str_single_quotes] = ACTIONS(3263), - [sym__str_back_ticks] = ACTIONS(3263), - [anon_sym_err_GT] = ACTIONS(3265), - [anon_sym_out_GT] = ACTIONS(3265), - [anon_sym_e_GT] = ACTIONS(3265), - [anon_sym_o_GT] = ACTIONS(3265), - [anon_sym_err_PLUSout_GT] = ACTIONS(3265), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3265), - [anon_sym_o_PLUSe_GT] = ACTIONS(3265), - [anon_sym_e_PLUSo_GT] = ACTIONS(3265), - [anon_sym_err_GT_GT] = ACTIONS(3263), - [anon_sym_out_GT_GT] = ACTIONS(3263), - [anon_sym_e_GT_GT] = ACTIONS(3263), - [anon_sym_o_GT_GT] = ACTIONS(3263), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3263), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3263), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3263), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3263), - [aux_sym_unquoted_token1] = ACTIONS(3265), - [anon_sym_POUND] = ACTIONS(247), - }, - [989] = { - [sym_comment] = STATE(989), - [anon_sym_true] = ACTIONS(2097), - [anon_sym_false] = ACTIONS(2097), - [anon_sym_null] = ACTIONS(2097), - [aux_sym_cmd_identifier_token38] = ACTIONS(2097), - [aux_sym_cmd_identifier_token39] = ACTIONS(2097), - [aux_sym_cmd_identifier_token40] = ACTIONS(2097), - [sym__newline] = ACTIONS(2101), - [anon_sym_LBRACK] = ACTIONS(2101), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym_COMMA] = ACTIONS(2097), - [anon_sym_DOLLAR] = ACTIONS(2097), - [aux_sym_ctrl_match_token1] = ACTIONS(2101), - [anon_sym_RBRACE] = ACTIONS(2101), - [anon_sym__] = ACTIONS(2097), - [anon_sym_DOT_DOT] = ACTIONS(2097), - [anon_sym_LPAREN2] = ACTIONS(2099), - [aux_sym_expr_binary_token1] = ACTIONS(2101), - [aux_sym_expr_binary_token2] = ACTIONS(2101), - [aux_sym_expr_binary_token3] = ACTIONS(2101), - [aux_sym_expr_binary_token4] = ACTIONS(2101), - [aux_sym_expr_binary_token5] = ACTIONS(2101), - [aux_sym_expr_binary_token6] = ACTIONS(2101), - [aux_sym_expr_binary_token7] = ACTIONS(2101), - [aux_sym_expr_binary_token8] = ACTIONS(2101), - [aux_sym_expr_binary_token9] = ACTIONS(2101), - [aux_sym_expr_binary_token10] = ACTIONS(2101), - [aux_sym_expr_binary_token11] = ACTIONS(2101), - [aux_sym_expr_binary_token12] = ACTIONS(2101), - [aux_sym_expr_binary_token13] = ACTIONS(2101), - [aux_sym_expr_binary_token14] = ACTIONS(2101), - [aux_sym_expr_binary_token15] = ACTIONS(2101), - [aux_sym_expr_binary_token16] = ACTIONS(2101), - [aux_sym_expr_binary_token17] = ACTIONS(2101), - [aux_sym_expr_binary_token18] = ACTIONS(2101), - [aux_sym_expr_binary_token19] = ACTIONS(2101), - [aux_sym_expr_binary_token20] = ACTIONS(2101), - [aux_sym_expr_binary_token21] = ACTIONS(2101), - [aux_sym_expr_binary_token22] = ACTIONS(2101), - [aux_sym_expr_binary_token23] = ACTIONS(2101), - [aux_sym_expr_binary_token24] = ACTIONS(2101), - [aux_sym_expr_binary_token25] = ACTIONS(2101), - [aux_sym_expr_binary_token26] = ACTIONS(2101), - [aux_sym_expr_binary_token27] = ACTIONS(2101), - [aux_sym_expr_binary_token28] = ACTIONS(2101), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2097), - [anon_sym_DOT_DOT_LT] = ACTIONS(2097), - [aux_sym__val_number_decimal_token1] = ACTIONS(2097), - [aux_sym__val_number_decimal_token2] = ACTIONS(2097), - [aux_sym__val_number_decimal_token3] = ACTIONS(2097), - [aux_sym__val_number_decimal_token4] = ACTIONS(2097), - [aux_sym__val_number_token1] = ACTIONS(2097), - [aux_sym__val_number_token2] = ACTIONS(2097), - [aux_sym__val_number_token3] = ACTIONS(2097), - [anon_sym_0b] = ACTIONS(2097), - [anon_sym_0o] = ACTIONS(2097), - [anon_sym_0x] = ACTIONS(2097), - [sym_val_date] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2101), - [sym__str_single_quotes] = ACTIONS(2101), - [sym__str_back_ticks] = ACTIONS(2101), - [anon_sym_err_GT] = ACTIONS(2097), - [anon_sym_out_GT] = ACTIONS(2097), - [anon_sym_e_GT] = ACTIONS(2097), - [anon_sym_o_GT] = ACTIONS(2097), - [anon_sym_err_PLUSout_GT] = ACTIONS(2097), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2097), - [anon_sym_o_PLUSe_GT] = ACTIONS(2097), - [anon_sym_e_PLUSo_GT] = ACTIONS(2097), - [anon_sym_err_GT_GT] = ACTIONS(2097), - [anon_sym_out_GT_GT] = ACTIONS(2097), - [anon_sym_e_GT_GT] = ACTIONS(2097), - [anon_sym_o_GT_GT] = ACTIONS(2097), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2097), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2097), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2097), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2097), - [aux_sym_unquoted_token1] = ACTIONS(2097), - [aux_sym_unquoted_token4] = ACTIONS(2103), - [anon_sym_POUND] = ACTIONS(3), - }, - [990] = { - [sym_comment] = STATE(990), - [anon_sym_true] = ACTIONS(2105), - [anon_sym_false] = ACTIONS(2105), - [anon_sym_null] = ACTIONS(2105), - [aux_sym_cmd_identifier_token38] = ACTIONS(2105), - [aux_sym_cmd_identifier_token39] = ACTIONS(2105), - [aux_sym_cmd_identifier_token40] = ACTIONS(2105), - [sym__newline] = ACTIONS(2107), - [anon_sym_LBRACK] = ACTIONS(2107), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_COMMA] = ACTIONS(2105), - [anon_sym_DOLLAR] = ACTIONS(2105), - [aux_sym_ctrl_match_token1] = ACTIONS(2107), - [anon_sym_RBRACE] = ACTIONS(2107), - [anon_sym__] = ACTIONS(2105), - [anon_sym_DOT_DOT] = ACTIONS(2105), - [anon_sym_LPAREN2] = ACTIONS(2099), - [aux_sym_expr_binary_token1] = ACTIONS(2107), - [aux_sym_expr_binary_token2] = ACTIONS(2107), - [aux_sym_expr_binary_token3] = ACTIONS(2107), - [aux_sym_expr_binary_token4] = ACTIONS(2107), - [aux_sym_expr_binary_token5] = ACTIONS(2107), - [aux_sym_expr_binary_token6] = ACTIONS(2107), - [aux_sym_expr_binary_token7] = ACTIONS(2107), - [aux_sym_expr_binary_token8] = ACTIONS(2107), - [aux_sym_expr_binary_token9] = ACTIONS(2107), - [aux_sym_expr_binary_token10] = ACTIONS(2107), - [aux_sym_expr_binary_token11] = ACTIONS(2107), - [aux_sym_expr_binary_token12] = ACTIONS(2107), - [aux_sym_expr_binary_token13] = ACTIONS(2107), - [aux_sym_expr_binary_token14] = ACTIONS(2107), - [aux_sym_expr_binary_token15] = ACTIONS(2107), - [aux_sym_expr_binary_token16] = ACTIONS(2107), - [aux_sym_expr_binary_token17] = ACTIONS(2107), - [aux_sym_expr_binary_token18] = ACTIONS(2107), - [aux_sym_expr_binary_token19] = ACTIONS(2107), - [aux_sym_expr_binary_token20] = ACTIONS(2107), - [aux_sym_expr_binary_token21] = ACTIONS(2107), - [aux_sym_expr_binary_token22] = ACTIONS(2107), - [aux_sym_expr_binary_token23] = ACTIONS(2107), - [aux_sym_expr_binary_token24] = ACTIONS(2107), - [aux_sym_expr_binary_token25] = ACTIONS(2107), - [aux_sym_expr_binary_token26] = ACTIONS(2107), - [aux_sym_expr_binary_token27] = ACTIONS(2107), - [aux_sym_expr_binary_token28] = ACTIONS(2107), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2105), - [anon_sym_DOT_DOT_LT] = ACTIONS(2105), - [aux_sym__val_number_decimal_token1] = ACTIONS(2105), - [aux_sym__val_number_decimal_token2] = ACTIONS(2105), - [aux_sym__val_number_decimal_token3] = ACTIONS(2105), - [aux_sym__val_number_decimal_token4] = ACTIONS(2105), - [aux_sym__val_number_token1] = ACTIONS(2105), - [aux_sym__val_number_token2] = ACTIONS(2105), - [aux_sym__val_number_token3] = ACTIONS(2105), - [anon_sym_0b] = ACTIONS(2105), - [anon_sym_0o] = ACTIONS(2105), - [anon_sym_0x] = ACTIONS(2105), - [sym_val_date] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2107), - [sym__str_single_quotes] = ACTIONS(2107), - [sym__str_back_ticks] = ACTIONS(2107), - [anon_sym_err_GT] = ACTIONS(2105), - [anon_sym_out_GT] = ACTIONS(2105), - [anon_sym_e_GT] = ACTIONS(2105), - [anon_sym_o_GT] = ACTIONS(2105), - [anon_sym_err_PLUSout_GT] = ACTIONS(2105), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2105), - [anon_sym_o_PLUSe_GT] = ACTIONS(2105), - [anon_sym_e_PLUSo_GT] = ACTIONS(2105), - [anon_sym_err_GT_GT] = ACTIONS(2105), - [anon_sym_out_GT_GT] = ACTIONS(2105), - [anon_sym_e_GT_GT] = ACTIONS(2105), - [anon_sym_o_GT_GT] = ACTIONS(2105), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2105), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2105), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2105), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2105), - [aux_sym_unquoted_token1] = ACTIONS(2105), - [aux_sym_unquoted_token4] = ACTIONS(2103), - [anon_sym_POUND] = ACTIONS(3), - }, - [991] = { - [sym_comment] = STATE(991), - [anon_sym_true] = ACTIONS(972), - [anon_sym_false] = ACTIONS(972), - [anon_sym_null] = ACTIONS(972), - [aux_sym_cmd_identifier_token38] = ACTIONS(972), - [aux_sym_cmd_identifier_token39] = ACTIONS(972), - [aux_sym_cmd_identifier_token40] = ACTIONS(972), - [sym__newline] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(972), - [anon_sym_COMMA] = ACTIONS(972), - [anon_sym_DOLLAR] = ACTIONS(972), - [aux_sym_ctrl_match_token1] = ACTIONS(972), - [anon_sym_RBRACE] = ACTIONS(972), - [anon_sym__] = ACTIONS(970), - [anon_sym_DOT_DOT] = ACTIONS(970), - [anon_sym_QMARK2] = ACTIONS(3267), - [aux_sym_expr_binary_token1] = ACTIONS(972), - [aux_sym_expr_binary_token2] = ACTIONS(972), - [aux_sym_expr_binary_token3] = ACTIONS(972), - [aux_sym_expr_binary_token4] = ACTIONS(972), - [aux_sym_expr_binary_token5] = ACTIONS(972), - [aux_sym_expr_binary_token6] = ACTIONS(972), - [aux_sym_expr_binary_token7] = ACTIONS(972), - [aux_sym_expr_binary_token8] = ACTIONS(972), - [aux_sym_expr_binary_token9] = ACTIONS(972), - [aux_sym_expr_binary_token10] = ACTIONS(972), - [aux_sym_expr_binary_token11] = ACTIONS(972), - [aux_sym_expr_binary_token12] = ACTIONS(972), - [aux_sym_expr_binary_token13] = ACTIONS(972), - [aux_sym_expr_binary_token14] = ACTIONS(972), - [aux_sym_expr_binary_token15] = ACTIONS(972), - [aux_sym_expr_binary_token16] = ACTIONS(972), - [aux_sym_expr_binary_token17] = ACTIONS(972), - [aux_sym_expr_binary_token18] = ACTIONS(972), - [aux_sym_expr_binary_token19] = ACTIONS(972), - [aux_sym_expr_binary_token20] = ACTIONS(972), - [aux_sym_expr_binary_token21] = ACTIONS(972), - [aux_sym_expr_binary_token22] = ACTIONS(972), - [aux_sym_expr_binary_token23] = ACTIONS(972), - [aux_sym_expr_binary_token24] = ACTIONS(972), - [aux_sym_expr_binary_token25] = ACTIONS(972), - [aux_sym_expr_binary_token26] = ACTIONS(972), - [aux_sym_expr_binary_token27] = ACTIONS(972), - [aux_sym_expr_binary_token28] = ACTIONS(972), - [anon_sym_DOT] = ACTIONS(970), - [anon_sym_DOT_DOT_EQ] = ACTIONS(972), - [anon_sym_DOT_DOT_LT] = ACTIONS(972), - [aux_sym__val_number_decimal_token1] = ACTIONS(970), - [aux_sym__val_number_decimal_token2] = ACTIONS(972), - [aux_sym__val_number_decimal_token3] = ACTIONS(972), - [aux_sym__val_number_decimal_token4] = ACTIONS(972), - [aux_sym__val_number_token1] = ACTIONS(972), - [aux_sym__val_number_token2] = ACTIONS(972), - [aux_sym__val_number_token3] = ACTIONS(972), - [anon_sym_0b] = ACTIONS(970), - [anon_sym_0o] = ACTIONS(970), - [anon_sym_0x] = ACTIONS(970), - [sym_val_date] = ACTIONS(972), - [anon_sym_DQUOTE] = ACTIONS(972), - [sym__str_single_quotes] = ACTIONS(972), - [sym__str_back_ticks] = ACTIONS(972), - [anon_sym_err_GT] = ACTIONS(970), - [anon_sym_out_GT] = ACTIONS(970), - [anon_sym_e_GT] = ACTIONS(970), - [anon_sym_o_GT] = ACTIONS(970), - [anon_sym_err_PLUSout_GT] = ACTIONS(970), - [anon_sym_out_PLUSerr_GT] = ACTIONS(970), - [anon_sym_o_PLUSe_GT] = ACTIONS(970), - [anon_sym_e_PLUSo_GT] = ACTIONS(970), - [anon_sym_err_GT_GT] = ACTIONS(972), - [anon_sym_out_GT_GT] = ACTIONS(972), - [anon_sym_e_GT_GT] = ACTIONS(972), - [anon_sym_o_GT_GT] = ACTIONS(972), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(972), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(972), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(972), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(972), - [aux_sym_unquoted_token1] = ACTIONS(970), - [anon_sym_POUND] = ACTIONS(247), - }, - [992] = { - [sym__expr_parenthesized_immediate] = STATE(7597), - [sym_comment] = STATE(992), - [anon_sym_true] = ACTIONS(3199), - [anon_sym_false] = ACTIONS(3199), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3199), - [aux_sym_cmd_identifier_token39] = ACTIONS(3199), - [aux_sym_cmd_identifier_token40] = ACTIONS(3199), - [sym__newline] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3201), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_DOLLAR] = ACTIONS(3199), - [aux_sym_ctrl_match_token1] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym__] = ACTIONS(3201), - [anon_sym_DOT_DOT] = ACTIONS(3201), - [anon_sym_LPAREN2] = ACTIONS(2947), - [aux_sym_expr_binary_token1] = ACTIONS(3199), - [aux_sym_expr_binary_token2] = ACTIONS(3199), - [aux_sym_expr_binary_token3] = ACTIONS(3199), - [aux_sym_expr_binary_token4] = ACTIONS(3199), - [aux_sym_expr_binary_token5] = ACTIONS(3199), - [aux_sym_expr_binary_token6] = ACTIONS(3199), - [aux_sym_expr_binary_token7] = ACTIONS(3199), - [aux_sym_expr_binary_token8] = ACTIONS(3199), - [aux_sym_expr_binary_token9] = ACTIONS(3199), - [aux_sym_expr_binary_token10] = ACTIONS(3199), - [aux_sym_expr_binary_token11] = ACTIONS(3199), - [aux_sym_expr_binary_token12] = ACTIONS(3199), - [aux_sym_expr_binary_token13] = ACTIONS(3199), - [aux_sym_expr_binary_token14] = ACTIONS(3199), - [aux_sym_expr_binary_token15] = ACTIONS(3199), - [aux_sym_expr_binary_token16] = ACTIONS(3199), - [aux_sym_expr_binary_token17] = ACTIONS(3199), - [aux_sym_expr_binary_token18] = ACTIONS(3199), - [aux_sym_expr_binary_token19] = ACTIONS(3199), - [aux_sym_expr_binary_token20] = ACTIONS(3199), - [aux_sym_expr_binary_token21] = ACTIONS(3199), - [aux_sym_expr_binary_token22] = ACTIONS(3199), - [aux_sym_expr_binary_token23] = ACTIONS(3199), - [aux_sym_expr_binary_token24] = ACTIONS(3199), - [aux_sym_expr_binary_token25] = ACTIONS(3199), - [aux_sym_expr_binary_token26] = ACTIONS(3199), - [aux_sym_expr_binary_token27] = ACTIONS(3199), - [aux_sym_expr_binary_token28] = ACTIONS(3199), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), - [anon_sym_DOT_DOT_LT] = ACTIONS(3199), - [aux_sym__val_number_decimal_token1] = ACTIONS(3201), - [aux_sym__val_number_decimal_token2] = ACTIONS(3199), - [aux_sym__val_number_decimal_token3] = ACTIONS(3199), - [aux_sym__val_number_decimal_token4] = ACTIONS(3199), - [aux_sym__val_number_token1] = ACTIONS(3199), - [aux_sym__val_number_token2] = ACTIONS(3199), - [aux_sym__val_number_token3] = ACTIONS(3199), - [anon_sym_0b] = ACTIONS(3201), - [anon_sym_0o] = ACTIONS(3201), - [anon_sym_0x] = ACTIONS(3201), - [sym_val_date] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3199), - [sym__str_single_quotes] = ACTIONS(3199), - [sym__str_back_ticks] = ACTIONS(3199), - [anon_sym_err_GT] = ACTIONS(3201), - [anon_sym_out_GT] = ACTIONS(3201), - [anon_sym_e_GT] = ACTIONS(3201), - [anon_sym_o_GT] = ACTIONS(3201), - [anon_sym_err_PLUSout_GT] = ACTIONS(3201), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), - [anon_sym_o_PLUSe_GT] = ACTIONS(3201), - [anon_sym_e_PLUSo_GT] = ACTIONS(3201), - [anon_sym_err_GT_GT] = ACTIONS(3199), - [anon_sym_out_GT_GT] = ACTIONS(3199), - [anon_sym_e_GT_GT] = ACTIONS(3199), - [anon_sym_o_GT_GT] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), - [aux_sym_unquoted_token1] = ACTIONS(3201), - [anon_sym_POUND] = ACTIONS(247), - }, - [993] = { - [sym_ctrl_do] = STATE(5042), - [sym_ctrl_if] = STATE(5042), - [sym_ctrl_match] = STATE(5042), - [sym_ctrl_try] = STATE(5042), - [sym__expression] = STATE(5042), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4073), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1541), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(2941), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_comment] = STATE(993), - [anon_sym_true] = ACTIONS(3243), - [anon_sym_false] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [aux_sym_cmd_identifier_token38] = ACTIONS(439), - [aux_sym_cmd_identifier_token39] = ACTIONS(439), - [aux_sym_cmd_identifier_token40] = ACTIONS(439), - [sym__newline] = ACTIONS(3247), - [anon_sym_SEMI] = ACTIONS(3249), - [anon_sym_PIPE] = ACTIONS(3249), - [anon_sym_err_GT_PIPE] = ACTIONS(3249), - [anon_sym_out_GT_PIPE] = ACTIONS(3249), - [anon_sym_e_GT_PIPE] = ACTIONS(3249), - [anon_sym_o_GT_PIPE] = ACTIONS(3249), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3249), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3249), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3249), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3249), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_do] = ACTIONS(3251), - [anon_sym_if] = ACTIONS(3253), - [anon_sym_match] = ACTIONS(3255), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(3249), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [aux_sym_record_entry_token1] = ACTIONS(3269), - [anon_sym_POUND] = ACTIONS(247), - }, - [994] = { - [sym__expr_parenthesized_immediate] = STATE(7597), - [sym_comment] = STATE(994), - [anon_sym_true] = ACTIONS(3199), - [anon_sym_false] = ACTIONS(3199), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3199), - [aux_sym_cmd_identifier_token39] = ACTIONS(3199), - [aux_sym_cmd_identifier_token40] = ACTIONS(3199), - [sym__newline] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3201), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_DOLLAR] = ACTIONS(3199), - [aux_sym_ctrl_match_token1] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym__] = ACTIONS(3201), - [anon_sym_DOT_DOT] = ACTIONS(3201), - [anon_sym_LPAREN2] = ACTIONS(2947), - [aux_sym_expr_binary_token1] = ACTIONS(3199), - [aux_sym_expr_binary_token2] = ACTIONS(3199), - [aux_sym_expr_binary_token3] = ACTIONS(3199), - [aux_sym_expr_binary_token4] = ACTIONS(3199), - [aux_sym_expr_binary_token5] = ACTIONS(3199), - [aux_sym_expr_binary_token6] = ACTIONS(3199), - [aux_sym_expr_binary_token7] = ACTIONS(3199), - [aux_sym_expr_binary_token8] = ACTIONS(3199), - [aux_sym_expr_binary_token9] = ACTIONS(3199), - [aux_sym_expr_binary_token10] = ACTIONS(3199), - [aux_sym_expr_binary_token11] = ACTIONS(3199), - [aux_sym_expr_binary_token12] = ACTIONS(3199), - [aux_sym_expr_binary_token13] = ACTIONS(3199), - [aux_sym_expr_binary_token14] = ACTIONS(3199), - [aux_sym_expr_binary_token15] = ACTIONS(3199), - [aux_sym_expr_binary_token16] = ACTIONS(3199), - [aux_sym_expr_binary_token17] = ACTIONS(3199), - [aux_sym_expr_binary_token18] = ACTIONS(3199), - [aux_sym_expr_binary_token19] = ACTIONS(3199), - [aux_sym_expr_binary_token20] = ACTIONS(3199), - [aux_sym_expr_binary_token21] = ACTIONS(3199), - [aux_sym_expr_binary_token22] = ACTIONS(3199), - [aux_sym_expr_binary_token23] = ACTIONS(3199), - [aux_sym_expr_binary_token24] = ACTIONS(3199), - [aux_sym_expr_binary_token25] = ACTIONS(3199), - [aux_sym_expr_binary_token26] = ACTIONS(3199), - [aux_sym_expr_binary_token27] = ACTIONS(3199), - [aux_sym_expr_binary_token28] = ACTIONS(3199), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), - [anon_sym_DOT_DOT_LT] = ACTIONS(3199), - [aux_sym__val_number_decimal_token1] = ACTIONS(3201), - [aux_sym__val_number_decimal_token2] = ACTIONS(3199), - [aux_sym__val_number_decimal_token3] = ACTIONS(3199), - [aux_sym__val_number_decimal_token4] = ACTIONS(3199), - [aux_sym__val_number_token1] = ACTIONS(3199), - [aux_sym__val_number_token2] = ACTIONS(3199), - [aux_sym__val_number_token3] = ACTIONS(3199), - [anon_sym_0b] = ACTIONS(3201), - [anon_sym_0o] = ACTIONS(3201), - [anon_sym_0x] = ACTIONS(3201), - [sym_val_date] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3199), - [sym__str_single_quotes] = ACTIONS(3199), - [sym__str_back_ticks] = ACTIONS(3199), - [anon_sym_err_GT] = ACTIONS(3201), - [anon_sym_out_GT] = ACTIONS(3201), - [anon_sym_e_GT] = ACTIONS(3201), - [anon_sym_o_GT] = ACTIONS(3201), - [anon_sym_err_PLUSout_GT] = ACTIONS(3201), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), - [anon_sym_o_PLUSe_GT] = ACTIONS(3201), - [anon_sym_e_PLUSo_GT] = ACTIONS(3201), - [anon_sym_err_GT_GT] = ACTIONS(3199), - [anon_sym_out_GT_GT] = ACTIONS(3199), - [anon_sym_e_GT_GT] = ACTIONS(3199), - [anon_sym_o_GT_GT] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), - [aux_sym_unquoted_token1] = ACTIONS(3201), - [anon_sym_POUND] = ACTIONS(247), - }, - [995] = { - [sym__expression] = STATE(7743), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4067), - [sym_expr_parenthesized] = STATE(3761), - [sym_val_range] = STATE(3727), - [sym__val_range] = STATE(8049), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3916), - [sym_val_variable] = STATE(3758), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3697), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(7744), - [sym__unquoted_anonymous_prefix] = STATE(7765), - [sym_comment] = STATE(995), - [anon_sym_true] = ACTIONS(3213), - [anon_sym_false] = ACTIONS(3213), - [anon_sym_null] = ACTIONS(3215), - [aux_sym_cmd_identifier_token38] = ACTIONS(3217), - [aux_sym_cmd_identifier_token39] = ACTIONS(3217), - [aux_sym_cmd_identifier_token40] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3223), - [aux_sym_expr_unary_token1] = ACTIONS(3225), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3227), - [anon_sym_DOT_DOT_LT] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [aux_sym_record_entry_token1] = ACTIONS(3269), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3241), - [anon_sym_POUND] = ACTIONS(247), - }, - [996] = { - [sym_ctrl_do] = STATE(5042), - [sym_ctrl_if] = STATE(5042), - [sym_ctrl_match] = STATE(5042), - [sym_ctrl_try] = STATE(5042), - [sym__expression] = STATE(5042), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4073), - [sym_expr_parenthesized] = STATE(1540), - [sym_val_range] = STATE(3727), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(1734), - [sym_val_variable] = STATE(1541), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(2941), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_comment] = STATE(996), - [anon_sym_true] = ACTIONS(3243), - [anon_sym_false] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [aux_sym_cmd_identifier_token38] = ACTIONS(439), - [aux_sym_cmd_identifier_token39] = ACTIONS(439), - [aux_sym_cmd_identifier_token40] = ACTIONS(439), - [sym__newline] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3249), - [anon_sym_PIPE] = ACTIONS(3249), - [anon_sym_err_GT_PIPE] = ACTIONS(3249), - [anon_sym_out_GT_PIPE] = ACTIONS(3249), - [anon_sym_e_GT_PIPE] = ACTIONS(3249), - [anon_sym_o_GT_PIPE] = ACTIONS(3249), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3249), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3249), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3249), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3249), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_RPAREN] = ACTIONS(3249), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_do] = ACTIONS(3251), - [anon_sym_if] = ACTIONS(3253), - [anon_sym_match] = ACTIONS(3255), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(3249), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(3257), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_POUND] = ACTIONS(247), - }, - [997] = { - [sym__expr_parenthesized_immediate] = STATE(7597), - [sym_comment] = STATE(997), - [anon_sym_true] = ACTIONS(3199), - [anon_sym_false] = ACTIONS(3199), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3199), - [aux_sym_cmd_identifier_token39] = ACTIONS(3199), - [aux_sym_cmd_identifier_token40] = ACTIONS(3199), - [sym__newline] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3201), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_DOLLAR] = ACTIONS(3199), - [aux_sym_ctrl_match_token1] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym__] = ACTIONS(3201), - [anon_sym_DOT_DOT] = ACTIONS(3201), - [anon_sym_LPAREN2] = ACTIONS(2947), - [aux_sym_expr_binary_token1] = ACTIONS(3199), - [aux_sym_expr_binary_token2] = ACTIONS(3199), - [aux_sym_expr_binary_token3] = ACTIONS(3199), - [aux_sym_expr_binary_token4] = ACTIONS(3199), - [aux_sym_expr_binary_token5] = ACTIONS(3199), - [aux_sym_expr_binary_token6] = ACTIONS(3199), - [aux_sym_expr_binary_token7] = ACTIONS(3199), - [aux_sym_expr_binary_token8] = ACTIONS(3199), - [aux_sym_expr_binary_token9] = ACTIONS(3199), - [aux_sym_expr_binary_token10] = ACTIONS(3199), - [aux_sym_expr_binary_token11] = ACTIONS(3199), - [aux_sym_expr_binary_token12] = ACTIONS(3199), - [aux_sym_expr_binary_token13] = ACTIONS(3199), - [aux_sym_expr_binary_token14] = ACTIONS(3199), - [aux_sym_expr_binary_token15] = ACTIONS(3199), - [aux_sym_expr_binary_token16] = ACTIONS(3199), - [aux_sym_expr_binary_token17] = ACTIONS(3199), - [aux_sym_expr_binary_token18] = ACTIONS(3199), - [aux_sym_expr_binary_token19] = ACTIONS(3199), - [aux_sym_expr_binary_token20] = ACTIONS(3199), - [aux_sym_expr_binary_token21] = ACTIONS(3199), - [aux_sym_expr_binary_token22] = ACTIONS(3199), - [aux_sym_expr_binary_token23] = ACTIONS(3199), - [aux_sym_expr_binary_token24] = ACTIONS(3199), - [aux_sym_expr_binary_token25] = ACTIONS(3199), - [aux_sym_expr_binary_token26] = ACTIONS(3199), - [aux_sym_expr_binary_token27] = ACTIONS(3199), - [aux_sym_expr_binary_token28] = ACTIONS(3199), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), - [anon_sym_DOT_DOT_LT] = ACTIONS(3199), - [aux_sym__val_number_decimal_token1] = ACTIONS(3201), - [aux_sym__val_number_decimal_token2] = ACTIONS(3199), - [aux_sym__val_number_decimal_token3] = ACTIONS(3199), - [aux_sym__val_number_decimal_token4] = ACTIONS(3199), - [aux_sym__val_number_token1] = ACTIONS(3199), - [aux_sym__val_number_token2] = ACTIONS(3199), - [aux_sym__val_number_token3] = ACTIONS(3199), - [anon_sym_0b] = ACTIONS(3201), - [anon_sym_0o] = ACTIONS(3201), - [anon_sym_0x] = ACTIONS(3201), - [sym_val_date] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3199), - [sym__str_single_quotes] = ACTIONS(3199), - [sym__str_back_ticks] = ACTIONS(3199), - [anon_sym_err_GT] = ACTIONS(3201), - [anon_sym_out_GT] = ACTIONS(3201), - [anon_sym_e_GT] = ACTIONS(3201), - [anon_sym_o_GT] = ACTIONS(3201), - [anon_sym_err_PLUSout_GT] = ACTIONS(3201), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), - [anon_sym_o_PLUSe_GT] = ACTIONS(3201), - [anon_sym_e_PLUSo_GT] = ACTIONS(3201), - [anon_sym_err_GT_GT] = ACTIONS(3199), - [anon_sym_out_GT_GT] = ACTIONS(3199), - [anon_sym_e_GT_GT] = ACTIONS(3199), - [anon_sym_o_GT_GT] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), - [aux_sym_unquoted_token1] = ACTIONS(3201), - [anon_sym_POUND] = ACTIONS(247), - }, - [998] = { - [sym_expr_unary] = STATE(2564), - [sym__expr_unary_minus] = STATE(2610), - [sym_expr_binary] = STATE(2564), - [sym__expr_binary_expression] = STATE(2629), - [sym_expr_parenthesized] = STATE(2564), - [sym__val_range] = STATE(7911), - [sym__val_range_with_end] = STATE(7541), - [sym__value] = STATE(2564), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2338), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(1590), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__str_double_quotes] = STATE(2144), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2607), - [sym__inter_double_quotes] = STATE(2626), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2257), - [sym__unquoted_with_expr] = STATE(2540), - [sym__unquoted_anonymous_prefix] = STATE(6983), - [sym_comment] = STATE(998), - [anon_sym_true] = ACTIONS(3271), - [anon_sym_false] = ACTIONS(3271), - [anon_sym_null] = ACTIONS(3273), - [aux_sym_cmd_identifier_token38] = ACTIONS(3275), - [aux_sym_cmd_identifier_token39] = ACTIONS(3275), - [aux_sym_cmd_identifier_token40] = ACTIONS(3275), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_DOLLAR] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3281), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), - [anon_sym_DOT_DOT_LT] = ACTIONS(3283), - [aux_sym__val_number_decimal_token1] = ACTIONS(3285), - [aux_sym__val_number_decimal_token2] = ACTIONS(3287), - [aux_sym__val_number_decimal_token3] = ACTIONS(3289), - [aux_sym__val_number_decimal_token4] = ACTIONS(3291), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3293), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3295), - [anon_sym_POUND] = ACTIONS(247), - }, - [999] = { - [sym__expression] = STATE(7990), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4067), - [sym_expr_parenthesized] = STATE(3761), - [sym_val_range] = STATE(3727), - [sym__val_range] = STATE(8049), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3916), - [sym_val_variable] = STATE(3758), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3697), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(7924), - [sym__unquoted_anonymous_prefix] = STATE(7765), - [sym_comment] = STATE(999), - [anon_sym_true] = ACTIONS(3213), - [anon_sym_false] = ACTIONS(3213), - [anon_sym_null] = ACTIONS(3215), - [aux_sym_cmd_identifier_token38] = ACTIONS(3217), - [aux_sym_cmd_identifier_token39] = ACTIONS(3217), - [aux_sym_cmd_identifier_token40] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3223), - [aux_sym_expr_unary_token1] = ACTIONS(3225), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3227), - [anon_sym_DOT_DOT_LT] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3241), - [anon_sym_POUND] = ACTIONS(247), - }, - [1000] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(1748), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3916), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3643), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1582), - [sym__unquoted_with_expr] = STATE(1749), - [sym__unquoted_anonymous_prefix] = STATE(7332), - [sym_comment] = STATE(1000), - [anon_sym_true] = ACTIONS(3213), - [anon_sym_false] = ACTIONS(3213), - [anon_sym_null] = ACTIONS(3215), - [aux_sym_cmd_identifier_token38] = ACTIONS(3297), - [aux_sym_cmd_identifier_token39] = ACTIONS(3297), - [aux_sym_cmd_identifier_token40] = ACTIONS(3297), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3301), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3225), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), - [anon_sym_POUND] = ACTIONS(247), - }, - [1001] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(4019), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3916), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3643), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1588), - [sym__unquoted_with_expr] = STATE(1772), - [sym__unquoted_anonymous_prefix] = STATE(7332), - [sym_comment] = STATE(1001), - [anon_sym_true] = ACTIONS(3213), - [anon_sym_false] = ACTIONS(3213), - [anon_sym_null] = ACTIONS(3215), - [aux_sym_cmd_identifier_token38] = ACTIONS(3297), - [aux_sym_cmd_identifier_token39] = ACTIONS(3297), - [aux_sym_cmd_identifier_token40] = ACTIONS(3297), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3301), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3225), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), - [anon_sym_POUND] = ACTIONS(247), - }, - [1002] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(4037), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3916), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3643), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1596), - [sym__unquoted_with_expr] = STATE(1773), - [sym__unquoted_anonymous_prefix] = STATE(7332), - [sym_comment] = STATE(1002), - [anon_sym_true] = ACTIONS(3213), - [anon_sym_false] = ACTIONS(3213), - [anon_sym_null] = ACTIONS(3215), - [aux_sym_cmd_identifier_token38] = ACTIONS(3297), - [aux_sym_cmd_identifier_token39] = ACTIONS(3297), - [aux_sym_cmd_identifier_token40] = ACTIONS(3297), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3301), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3225), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_true] = ACTIONS(3323), + [anon_sym_false] = ACTIONS(3323), + [anon_sym_null] = ACTIONS(3325), + [aux_sym_cmd_identifier_token38] = ACTIONS(3327), + [aux_sym_cmd_identifier_token39] = ACTIONS(3327), + [aux_sym_cmd_identifier_token40] = ACTIONS(3327), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(3299), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3329), + [aux_sym__val_number_decimal_token2] = ACTIONS(3331), + [aux_sym__val_number_decimal_token3] = ACTIONS(3333), + [aux_sym__val_number_decimal_token4] = ACTIONS(3335), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3237), + [sym_val_date] = ACTIONS(3337), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, - [1003] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(4039), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3916), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3643), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1535), - [sym__unquoted_with_expr] = STATE(1777), - [sym__unquoted_anonymous_prefix] = STATE(7332), - [sym_comment] = STATE(1003), - [anon_sym_true] = ACTIONS(3213), - [anon_sym_false] = ACTIONS(3213), - [anon_sym_null] = ACTIONS(3215), - [aux_sym_cmd_identifier_token38] = ACTIONS(3297), - [aux_sym_cmd_identifier_token39] = ACTIONS(3297), - [aux_sym_cmd_identifier_token40] = ACTIONS(3297), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3301), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3225), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [949] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3758), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3616), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(3337), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1386), + [sym__unquoted_with_expr] = STATE(1619), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(949), + [anon_sym_true] = ACTIONS(3323), + [anon_sym_false] = ACTIONS(3323), + [anon_sym_null] = ACTIONS(3325), + [aux_sym_cmd_identifier_token38] = ACTIONS(3327), + [aux_sym_cmd_identifier_token39] = ACTIONS(3327), + [aux_sym_cmd_identifier_token40] = ACTIONS(3327), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(3299), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3329), + [aux_sym__val_number_decimal_token2] = ACTIONS(3331), + [aux_sym__val_number_decimal_token3] = ACTIONS(3333), + [aux_sym__val_number_decimal_token4] = ACTIONS(3335), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3237), + [sym_val_date] = ACTIONS(3337), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, - [1004] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(4045), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3916), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3643), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1571), - [sym__unquoted_with_expr] = STATE(1784), - [sym__unquoted_anonymous_prefix] = STATE(7332), - [sym_comment] = STATE(1004), - [anon_sym_true] = ACTIONS(3213), - [anon_sym_false] = ACTIONS(3213), - [anon_sym_null] = ACTIONS(3215), - [aux_sym_cmd_identifier_token38] = ACTIONS(3297), - [aux_sym_cmd_identifier_token39] = ACTIONS(3297), - [aux_sym_cmd_identifier_token40] = ACTIONS(3297), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3301), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3225), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [950] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3759), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3616), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(3337), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1387), + [sym__unquoted_with_expr] = STATE(1620), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(950), + [anon_sym_true] = ACTIONS(3323), + [anon_sym_false] = ACTIONS(3323), + [anon_sym_null] = ACTIONS(3325), + [aux_sym_cmd_identifier_token38] = ACTIONS(3327), + [aux_sym_cmd_identifier_token39] = ACTIONS(3327), + [aux_sym_cmd_identifier_token40] = ACTIONS(3327), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(3299), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3329), + [aux_sym__val_number_decimal_token2] = ACTIONS(3331), + [aux_sym__val_number_decimal_token3] = ACTIONS(3333), + [aux_sym__val_number_decimal_token4] = ACTIONS(3335), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3237), + [sym_val_date] = ACTIONS(3337), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, - [1005] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(4042), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3916), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3643), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1537), - [sym__unquoted_with_expr] = STATE(1803), - [sym__unquoted_anonymous_prefix] = STATE(7332), - [sym_comment] = STATE(1005), - [anon_sym_true] = ACTIONS(3213), - [anon_sym_false] = ACTIONS(3213), - [anon_sym_null] = ACTIONS(3215), - [aux_sym_cmd_identifier_token38] = ACTIONS(3297), - [aux_sym_cmd_identifier_token39] = ACTIONS(3297), - [aux_sym_cmd_identifier_token40] = ACTIONS(3297), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3301), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3225), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [951] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3740), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3616), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(3337), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1388), + [sym__unquoted_with_expr] = STATE(1622), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(951), + [anon_sym_true] = ACTIONS(3323), + [anon_sym_false] = ACTIONS(3323), + [anon_sym_null] = ACTIONS(3325), + [aux_sym_cmd_identifier_token38] = ACTIONS(3327), + [aux_sym_cmd_identifier_token39] = ACTIONS(3327), + [aux_sym_cmd_identifier_token40] = ACTIONS(3327), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(3299), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3329), + [aux_sym__val_number_decimal_token2] = ACTIONS(3331), + [aux_sym__val_number_decimal_token3] = ACTIONS(3333), + [aux_sym__val_number_decimal_token4] = ACTIONS(3335), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3237), + [sym_val_date] = ACTIONS(3337), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, - [1006] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(4031), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3916), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3643), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1595), - [sym__unquoted_with_expr] = STATE(1805), - [sym__unquoted_anonymous_prefix] = STATE(7332), - [sym_comment] = STATE(1006), - [anon_sym_true] = ACTIONS(3213), - [anon_sym_false] = ACTIONS(3213), - [anon_sym_null] = ACTIONS(3215), - [aux_sym_cmd_identifier_token38] = ACTIONS(3297), - [aux_sym_cmd_identifier_token39] = ACTIONS(3297), - [aux_sym_cmd_identifier_token40] = ACTIONS(3297), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3301), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3225), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [952] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3762), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3616), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(3337), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1391), + [sym__unquoted_with_expr] = STATE(1623), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(952), + [anon_sym_true] = ACTIONS(3323), + [anon_sym_false] = ACTIONS(3323), + [anon_sym_null] = ACTIONS(3325), + [aux_sym_cmd_identifier_token38] = ACTIONS(3327), + [aux_sym_cmd_identifier_token39] = ACTIONS(3327), + [aux_sym_cmd_identifier_token40] = ACTIONS(3327), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(3299), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3329), + [aux_sym__val_number_decimal_token2] = ACTIONS(3331), + [aux_sym__val_number_decimal_token3] = ACTIONS(3333), + [aux_sym__val_number_decimal_token4] = ACTIONS(3335), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3237), + [sym_val_date] = ACTIONS(3337), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, - [1007] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(4034), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3916), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3643), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1568), - [sym__unquoted_with_expr] = STATE(1806), - [sym__unquoted_anonymous_prefix] = STATE(7332), - [sym_comment] = STATE(1007), - [anon_sym_true] = ACTIONS(3213), - [anon_sym_false] = ACTIONS(3213), - [anon_sym_null] = ACTIONS(3215), - [aux_sym_cmd_identifier_token38] = ACTIONS(3297), - [aux_sym_cmd_identifier_token39] = ACTIONS(3297), - [aux_sym_cmd_identifier_token40] = ACTIONS(3297), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3301), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3225), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [953] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3763), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3616), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(3337), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1392), + [sym__unquoted_with_expr] = STATE(1626), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(953), + [anon_sym_true] = ACTIONS(3323), + [anon_sym_false] = ACTIONS(3323), + [anon_sym_null] = ACTIONS(3325), + [aux_sym_cmd_identifier_token38] = ACTIONS(3327), + [aux_sym_cmd_identifier_token39] = ACTIONS(3327), + [aux_sym_cmd_identifier_token40] = ACTIONS(3327), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(3299), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3329), + [aux_sym__val_number_decimal_token2] = ACTIONS(3331), + [aux_sym__val_number_decimal_token3] = ACTIONS(3333), + [aux_sym__val_number_decimal_token4] = ACTIONS(3335), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3237), + [sym_val_date] = ACTIONS(3337), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, - [1008] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(4043), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3916), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3643), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1532), - [sym__unquoted_with_expr] = STATE(1808), - [sym__unquoted_anonymous_prefix] = STATE(7332), - [sym_comment] = STATE(1008), - [anon_sym_true] = ACTIONS(3213), - [anon_sym_false] = ACTIONS(3213), - [anon_sym_null] = ACTIONS(3215), - [aux_sym_cmd_identifier_token38] = ACTIONS(3297), - [aux_sym_cmd_identifier_token39] = ACTIONS(3297), - [aux_sym_cmd_identifier_token40] = ACTIONS(3297), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3301), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3225), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [954] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3764), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3616), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(3337), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1393), + [sym__unquoted_with_expr] = STATE(1627), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(954), + [anon_sym_true] = ACTIONS(3323), + [anon_sym_false] = ACTIONS(3323), + [anon_sym_null] = ACTIONS(3325), + [aux_sym_cmd_identifier_token38] = ACTIONS(3327), + [aux_sym_cmd_identifier_token39] = ACTIONS(3327), + [aux_sym_cmd_identifier_token40] = ACTIONS(3327), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(3299), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3329), + [aux_sym__val_number_decimal_token2] = ACTIONS(3331), + [aux_sym__val_number_decimal_token3] = ACTIONS(3333), + [aux_sym__val_number_decimal_token4] = ACTIONS(3335), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3237), + [sym_val_date] = ACTIONS(3337), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, - [1009] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(4044), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3916), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3643), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1573), - [sym__unquoted_with_expr] = STATE(1811), - [sym__unquoted_anonymous_prefix] = STATE(7332), - [sym_comment] = STATE(1009), - [anon_sym_true] = ACTIONS(3213), - [anon_sym_false] = ACTIONS(3213), - [anon_sym_null] = ACTIONS(3215), - [aux_sym_cmd_identifier_token38] = ACTIONS(3297), - [aux_sym_cmd_identifier_token39] = ACTIONS(3297), - [aux_sym_cmd_identifier_token40] = ACTIONS(3297), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3301), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3225), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [955] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3765), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3616), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(3337), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1394), + [sym__unquoted_with_expr] = STATE(1628), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(955), + [anon_sym_true] = ACTIONS(3323), + [anon_sym_false] = ACTIONS(3323), + [anon_sym_null] = ACTIONS(3325), + [aux_sym_cmd_identifier_token38] = ACTIONS(3327), + [aux_sym_cmd_identifier_token39] = ACTIONS(3327), + [aux_sym_cmd_identifier_token40] = ACTIONS(3327), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(3299), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3329), + [aux_sym__val_number_decimal_token2] = ACTIONS(3331), + [aux_sym__val_number_decimal_token3] = ACTIONS(3333), + [aux_sym__val_number_decimal_token4] = ACTIONS(3335), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3237), + [sym_val_date] = ACTIONS(3337), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), - [anon_sym_POUND] = ACTIONS(247), - }, - [1010] = { - [sym_comment] = STATE(1010), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_null] = ACTIONS(1537), - [aux_sym_cmd_identifier_token38] = ACTIONS(1537), - [aux_sym_cmd_identifier_token39] = ACTIONS(1537), - [aux_sym_cmd_identifier_token40] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_COMMA] = ACTIONS(1537), - [anon_sym_DOLLAR] = ACTIONS(1537), - [aux_sym_ctrl_match_token1] = ACTIONS(1537), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym__] = ACTIONS(1525), - [anon_sym_DOT_DOT] = ACTIONS(1525), - [aux_sym_expr_binary_token1] = ACTIONS(1537), - [aux_sym_expr_binary_token2] = ACTIONS(1537), - [aux_sym_expr_binary_token3] = ACTIONS(1537), - [aux_sym_expr_binary_token4] = ACTIONS(1537), - [aux_sym_expr_binary_token5] = ACTIONS(1537), - [aux_sym_expr_binary_token6] = ACTIONS(1537), - [aux_sym_expr_binary_token7] = ACTIONS(1537), - [aux_sym_expr_binary_token8] = ACTIONS(1537), - [aux_sym_expr_binary_token9] = ACTIONS(1537), - [aux_sym_expr_binary_token10] = ACTIONS(1537), - [aux_sym_expr_binary_token11] = ACTIONS(1537), - [aux_sym_expr_binary_token12] = ACTIONS(1537), - [aux_sym_expr_binary_token13] = ACTIONS(1537), - [aux_sym_expr_binary_token14] = ACTIONS(1537), - [aux_sym_expr_binary_token15] = ACTIONS(1537), - [aux_sym_expr_binary_token16] = ACTIONS(1537), - [aux_sym_expr_binary_token17] = ACTIONS(1537), - [aux_sym_expr_binary_token18] = ACTIONS(1537), - [aux_sym_expr_binary_token19] = ACTIONS(1537), - [aux_sym_expr_binary_token20] = ACTIONS(1537), - [aux_sym_expr_binary_token21] = ACTIONS(1537), - [aux_sym_expr_binary_token22] = ACTIONS(1537), - [aux_sym_expr_binary_token23] = ACTIONS(1537), - [aux_sym_expr_binary_token24] = ACTIONS(1537), - [aux_sym_expr_binary_token25] = ACTIONS(1537), - [aux_sym_expr_binary_token26] = ACTIONS(1537), - [aux_sym_expr_binary_token27] = ACTIONS(1537), - [aux_sym_expr_binary_token28] = ACTIONS(1537), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT] = ACTIONS(1537), - [aux_sym__val_number_decimal_token1] = ACTIONS(1525), - [aux_sym__val_number_decimal_token2] = ACTIONS(1537), - [aux_sym__val_number_decimal_token3] = ACTIONS(1537), - [aux_sym__val_number_decimal_token4] = ACTIONS(1537), - [aux_sym__val_number_token1] = ACTIONS(1537), - [aux_sym__val_number_token2] = ACTIONS(1537), - [aux_sym__val_number_token3] = ACTIONS(1537), - [anon_sym_0b] = ACTIONS(1525), - [anon_sym_0o] = ACTIONS(1525), - [anon_sym_0x] = ACTIONS(1525), - [sym_val_date] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym__str_single_quotes] = ACTIONS(1537), - [sym__str_back_ticks] = ACTIONS(1537), - [anon_sym_err_GT] = ACTIONS(1525), - [anon_sym_out_GT] = ACTIONS(1525), - [anon_sym_e_GT] = ACTIONS(1525), - [anon_sym_o_GT] = ACTIONS(1525), - [anon_sym_err_PLUSout_GT] = ACTIONS(1525), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), - [anon_sym_o_PLUSe_GT] = ACTIONS(1525), - [anon_sym_e_PLUSo_GT] = ACTIONS(1525), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), - [aux_sym_unquoted_token1] = ACTIONS(1525), - [aux_sym_unquoted_token2] = ACTIONS(2957), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, - [1011] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(4018), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3916), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3643), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1516), - [sym__unquoted_with_expr] = STATE(1812), - [sym__unquoted_anonymous_prefix] = STATE(7332), - [sym_comment] = STATE(1011), - [anon_sym_true] = ACTIONS(3213), - [anon_sym_false] = ACTIONS(3213), - [anon_sym_null] = ACTIONS(3215), - [aux_sym_cmd_identifier_token38] = ACTIONS(3297), - [aux_sym_cmd_identifier_token39] = ACTIONS(3297), - [aux_sym_cmd_identifier_token40] = ACTIONS(3297), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3301), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3225), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [956] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3741), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3616), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(3337), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1397), + [sym__unquoted_with_expr] = STATE(1629), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(956), + [anon_sym_true] = ACTIONS(3323), + [anon_sym_false] = ACTIONS(3323), + [anon_sym_null] = ACTIONS(3325), + [aux_sym_cmd_identifier_token38] = ACTIONS(3327), + [aux_sym_cmd_identifier_token39] = ACTIONS(3327), + [aux_sym_cmd_identifier_token40] = ACTIONS(3327), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(3299), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3329), + [aux_sym__val_number_decimal_token2] = ACTIONS(3331), + [aux_sym__val_number_decimal_token3] = ACTIONS(3333), + [aux_sym__val_number_decimal_token4] = ACTIONS(3335), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3237), + [sym_val_date] = ACTIONS(3337), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, - [1012] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(4036), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3916), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3643), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1536), - [sym__unquoted_with_expr] = STATE(1794), - [sym__unquoted_anonymous_prefix] = STATE(7332), - [sym_comment] = STATE(1012), - [anon_sym_true] = ACTIONS(3213), - [anon_sym_false] = ACTIONS(3213), - [anon_sym_null] = ACTIONS(3215), - [aux_sym_cmd_identifier_token38] = ACTIONS(3297), - [aux_sym_cmd_identifier_token39] = ACTIONS(3297), - [aux_sym_cmd_identifier_token40] = ACTIONS(3297), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3301), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3225), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [957] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3742), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3616), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(3337), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1398), + [sym__unquoted_with_expr] = STATE(1630), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(957), + [anon_sym_true] = ACTIONS(3323), + [anon_sym_false] = ACTIONS(3323), + [anon_sym_null] = ACTIONS(3325), + [aux_sym_cmd_identifier_token38] = ACTIONS(3327), + [aux_sym_cmd_identifier_token39] = ACTIONS(3327), + [aux_sym_cmd_identifier_token40] = ACTIONS(3327), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(3299), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3329), + [aux_sym__val_number_decimal_token2] = ACTIONS(3331), + [aux_sym__val_number_decimal_token3] = ACTIONS(3333), + [aux_sym__val_number_decimal_token4] = ACTIONS(3335), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3237), + [sym_val_date] = ACTIONS(3337), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, - [1013] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(4032), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3916), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3643), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1545), - [sym__unquoted_with_expr] = STATE(1716), - [sym__unquoted_anonymous_prefix] = STATE(7332), - [sym_comment] = STATE(1013), - [anon_sym_true] = ACTIONS(3213), - [anon_sym_false] = ACTIONS(3213), - [anon_sym_null] = ACTIONS(3215), - [aux_sym_cmd_identifier_token38] = ACTIONS(3297), - [aux_sym_cmd_identifier_token39] = ACTIONS(3297), - [aux_sym_cmd_identifier_token40] = ACTIONS(3297), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3301), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3225), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [958] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3743), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3616), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(3337), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1399), + [sym__unquoted_with_expr] = STATE(1631), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(958), + [anon_sym_true] = ACTIONS(3323), + [anon_sym_false] = ACTIONS(3323), + [anon_sym_null] = ACTIONS(3325), + [aux_sym_cmd_identifier_token38] = ACTIONS(3327), + [aux_sym_cmd_identifier_token39] = ACTIONS(3327), + [aux_sym_cmd_identifier_token40] = ACTIONS(3327), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(3299), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3329), + [aux_sym__val_number_decimal_token2] = ACTIONS(3331), + [aux_sym__val_number_decimal_token3] = ACTIONS(3333), + [aux_sym__val_number_decimal_token4] = ACTIONS(3335), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3237), + [sym_val_date] = ACTIONS(3337), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), - [anon_sym_POUND] = ACTIONS(247), - }, - [1014] = { - [sym_comment] = STATE(1014), - [anon_sym_true] = ACTIONS(996), - [anon_sym_false] = ACTIONS(996), - [anon_sym_null] = ACTIONS(996), - [aux_sym_cmd_identifier_token38] = ACTIONS(996), - [aux_sym_cmd_identifier_token39] = ACTIONS(996), - [aux_sym_cmd_identifier_token40] = ACTIONS(996), - [sym__newline] = ACTIONS(996), - [anon_sym_LBRACK] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_COMMA] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(996), - [aux_sym_ctrl_match_token1] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym__] = ACTIONS(994), - [anon_sym_DOT_DOT] = ACTIONS(994), - [aux_sym_expr_binary_token1] = ACTIONS(996), - [aux_sym_expr_binary_token2] = ACTIONS(996), - [aux_sym_expr_binary_token3] = ACTIONS(996), - [aux_sym_expr_binary_token4] = ACTIONS(996), - [aux_sym_expr_binary_token5] = ACTIONS(996), - [aux_sym_expr_binary_token6] = ACTIONS(996), - [aux_sym_expr_binary_token7] = ACTIONS(996), - [aux_sym_expr_binary_token8] = ACTIONS(996), - [aux_sym_expr_binary_token9] = ACTIONS(996), - [aux_sym_expr_binary_token10] = ACTIONS(996), - [aux_sym_expr_binary_token11] = ACTIONS(996), - [aux_sym_expr_binary_token12] = ACTIONS(996), - [aux_sym_expr_binary_token13] = ACTIONS(996), - [aux_sym_expr_binary_token14] = ACTIONS(996), - [aux_sym_expr_binary_token15] = ACTIONS(996), - [aux_sym_expr_binary_token16] = ACTIONS(996), - [aux_sym_expr_binary_token17] = ACTIONS(996), - [aux_sym_expr_binary_token18] = ACTIONS(996), - [aux_sym_expr_binary_token19] = ACTIONS(996), - [aux_sym_expr_binary_token20] = ACTIONS(996), - [aux_sym_expr_binary_token21] = ACTIONS(996), - [aux_sym_expr_binary_token22] = ACTIONS(996), - [aux_sym_expr_binary_token23] = ACTIONS(996), - [aux_sym_expr_binary_token24] = ACTIONS(996), - [aux_sym_expr_binary_token25] = ACTIONS(996), - [aux_sym_expr_binary_token26] = ACTIONS(996), - [aux_sym_expr_binary_token27] = ACTIONS(996), - [aux_sym_expr_binary_token28] = ACTIONS(996), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_EQ] = ACTIONS(996), - [anon_sym_DOT_DOT_LT] = ACTIONS(996), - [aux_sym__val_number_decimal_token1] = ACTIONS(994), - [aux_sym__val_number_decimal_token2] = ACTIONS(996), - [aux_sym__val_number_decimal_token3] = ACTIONS(996), - [aux_sym__val_number_decimal_token4] = ACTIONS(996), - [aux_sym__val_number_token1] = ACTIONS(996), - [aux_sym__val_number_token2] = ACTIONS(996), - [aux_sym__val_number_token3] = ACTIONS(996), - [anon_sym_0b] = ACTIONS(994), - [anon_sym_0o] = ACTIONS(994), - [anon_sym_0x] = ACTIONS(994), - [sym_val_date] = ACTIONS(996), - [anon_sym_DQUOTE] = ACTIONS(996), - [sym__str_single_quotes] = ACTIONS(996), - [sym__str_back_ticks] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(994), - [anon_sym_out_GT] = ACTIONS(994), - [anon_sym_e_GT] = ACTIONS(994), - [anon_sym_o_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT] = ACTIONS(994), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), - [aux_sym_unquoted_token1] = ACTIONS(994), - [anon_sym_POUND] = ACTIONS(247), - }, - [1015] = { - [sym_comment] = STATE(1015), - [anon_sym_true] = ACTIONS(988), - [anon_sym_false] = ACTIONS(988), - [anon_sym_null] = ACTIONS(988), - [aux_sym_cmd_identifier_token38] = ACTIONS(988), - [aux_sym_cmd_identifier_token39] = ACTIONS(988), - [aux_sym_cmd_identifier_token40] = ACTIONS(988), - [sym__newline] = ACTIONS(988), - [anon_sym_LBRACK] = ACTIONS(988), - [anon_sym_LPAREN] = ACTIONS(988), - [anon_sym_COMMA] = ACTIONS(988), - [anon_sym_DOLLAR] = ACTIONS(988), - [aux_sym_ctrl_match_token1] = ACTIONS(988), - [anon_sym_RBRACE] = ACTIONS(988), - [anon_sym__] = ACTIONS(986), - [anon_sym_DOT_DOT] = ACTIONS(986), - [aux_sym_expr_binary_token1] = ACTIONS(988), - [aux_sym_expr_binary_token2] = ACTIONS(988), - [aux_sym_expr_binary_token3] = ACTIONS(988), - [aux_sym_expr_binary_token4] = ACTIONS(988), - [aux_sym_expr_binary_token5] = ACTIONS(988), - [aux_sym_expr_binary_token6] = ACTIONS(988), - [aux_sym_expr_binary_token7] = ACTIONS(988), - [aux_sym_expr_binary_token8] = ACTIONS(988), - [aux_sym_expr_binary_token9] = ACTIONS(988), - [aux_sym_expr_binary_token10] = ACTIONS(988), - [aux_sym_expr_binary_token11] = ACTIONS(988), - [aux_sym_expr_binary_token12] = ACTIONS(988), - [aux_sym_expr_binary_token13] = ACTIONS(988), - [aux_sym_expr_binary_token14] = ACTIONS(988), - [aux_sym_expr_binary_token15] = ACTIONS(988), - [aux_sym_expr_binary_token16] = ACTIONS(988), - [aux_sym_expr_binary_token17] = ACTIONS(988), - [aux_sym_expr_binary_token18] = ACTIONS(988), - [aux_sym_expr_binary_token19] = ACTIONS(988), - [aux_sym_expr_binary_token20] = ACTIONS(988), - [aux_sym_expr_binary_token21] = ACTIONS(988), - [aux_sym_expr_binary_token22] = ACTIONS(988), - [aux_sym_expr_binary_token23] = ACTIONS(988), - [aux_sym_expr_binary_token24] = ACTIONS(988), - [aux_sym_expr_binary_token25] = ACTIONS(988), - [aux_sym_expr_binary_token26] = ACTIONS(988), - [aux_sym_expr_binary_token27] = ACTIONS(988), - [aux_sym_expr_binary_token28] = ACTIONS(988), - [anon_sym_DOT] = ACTIONS(986), - [anon_sym_DOT_DOT_EQ] = ACTIONS(988), - [anon_sym_DOT_DOT_LT] = ACTIONS(988), - [aux_sym__val_number_decimal_token1] = ACTIONS(986), - [aux_sym__val_number_decimal_token2] = ACTIONS(988), - [aux_sym__val_number_decimal_token3] = ACTIONS(988), - [aux_sym__val_number_decimal_token4] = ACTIONS(988), - [aux_sym__val_number_token1] = ACTIONS(988), - [aux_sym__val_number_token2] = ACTIONS(988), - [aux_sym__val_number_token3] = ACTIONS(988), - [anon_sym_0b] = ACTIONS(986), - [anon_sym_0o] = ACTIONS(986), - [anon_sym_0x] = ACTIONS(986), - [sym_val_date] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym__str_single_quotes] = ACTIONS(988), - [sym__str_back_ticks] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(986), - [anon_sym_out_GT] = ACTIONS(986), - [anon_sym_e_GT] = ACTIONS(986), - [anon_sym_o_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT] = ACTIONS(986), - [anon_sym_err_GT_GT] = ACTIONS(988), - [anon_sym_out_GT_GT] = ACTIONS(988), - [anon_sym_e_GT_GT] = ACTIONS(988), - [anon_sym_o_GT_GT] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), - [aux_sym_unquoted_token1] = ACTIONS(986), - [anon_sym_POUND] = ACTIONS(247), - }, - [1016] = { - [sym_comment] = STATE(1016), - [anon_sym_true] = ACTIONS(992), - [anon_sym_false] = ACTIONS(992), - [anon_sym_null] = ACTIONS(992), - [aux_sym_cmd_identifier_token38] = ACTIONS(992), - [aux_sym_cmd_identifier_token39] = ACTIONS(992), - [aux_sym_cmd_identifier_token40] = ACTIONS(992), - [sym__newline] = ACTIONS(992), - [anon_sym_LBRACK] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_COMMA] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(992), - [aux_sym_ctrl_match_token1] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym__] = ACTIONS(990), - [anon_sym_DOT_DOT] = ACTIONS(990), - [aux_sym_expr_binary_token1] = ACTIONS(992), - [aux_sym_expr_binary_token2] = ACTIONS(992), - [aux_sym_expr_binary_token3] = ACTIONS(992), - [aux_sym_expr_binary_token4] = ACTIONS(992), - [aux_sym_expr_binary_token5] = ACTIONS(992), - [aux_sym_expr_binary_token6] = ACTIONS(992), - [aux_sym_expr_binary_token7] = ACTIONS(992), - [aux_sym_expr_binary_token8] = ACTIONS(992), - [aux_sym_expr_binary_token9] = ACTIONS(992), - [aux_sym_expr_binary_token10] = ACTIONS(992), - [aux_sym_expr_binary_token11] = ACTIONS(992), - [aux_sym_expr_binary_token12] = ACTIONS(992), - [aux_sym_expr_binary_token13] = ACTIONS(992), - [aux_sym_expr_binary_token14] = ACTIONS(992), - [aux_sym_expr_binary_token15] = ACTIONS(992), - [aux_sym_expr_binary_token16] = ACTIONS(992), - [aux_sym_expr_binary_token17] = ACTIONS(992), - [aux_sym_expr_binary_token18] = ACTIONS(992), - [aux_sym_expr_binary_token19] = ACTIONS(992), - [aux_sym_expr_binary_token20] = ACTIONS(992), - [aux_sym_expr_binary_token21] = ACTIONS(992), - [aux_sym_expr_binary_token22] = ACTIONS(992), - [aux_sym_expr_binary_token23] = ACTIONS(992), - [aux_sym_expr_binary_token24] = ACTIONS(992), - [aux_sym_expr_binary_token25] = ACTIONS(992), - [aux_sym_expr_binary_token26] = ACTIONS(992), - [aux_sym_expr_binary_token27] = ACTIONS(992), - [aux_sym_expr_binary_token28] = ACTIONS(992), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ] = ACTIONS(992), - [anon_sym_DOT_DOT_LT] = ACTIONS(992), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(992), - [aux_sym__val_number_decimal_token3] = ACTIONS(992), - [aux_sym__val_number_decimal_token4] = ACTIONS(992), - [aux_sym__val_number_token1] = ACTIONS(992), - [aux_sym__val_number_token2] = ACTIONS(992), - [aux_sym__val_number_token3] = ACTIONS(992), - [anon_sym_0b] = ACTIONS(990), - [anon_sym_0o] = ACTIONS(990), - [anon_sym_0x] = ACTIONS(990), - [sym_val_date] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(990), - [anon_sym_out_GT] = ACTIONS(990), - [anon_sym_e_GT] = ACTIONS(990), - [anon_sym_o_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT] = ACTIONS(990), - [anon_sym_err_GT_GT] = ACTIONS(992), - [anon_sym_out_GT_GT] = ACTIONS(992), - [anon_sym_e_GT_GT] = ACTIONS(992), - [anon_sym_o_GT_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), - [aux_sym_unquoted_token1] = ACTIONS(990), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, - [1017] = { - [sym_expr_unary] = STATE(2564), - [sym__expr_unary_minus] = STATE(2610), - [sym_expr_binary] = STATE(2564), - [sym__expr_binary_expression] = STATE(2611), - [sym_expr_parenthesized] = STATE(2564), - [sym__val_range] = STATE(7911), - [sym__val_range_with_end] = STATE(7541), - [sym__value] = STATE(2564), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2338), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(1590), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__str_double_quotes] = STATE(2144), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2607), - [sym__inter_double_quotes] = STATE(2626), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2255), - [sym__unquoted_with_expr] = STATE(2621), - [sym__unquoted_anonymous_prefix] = STATE(6983), - [sym_comment] = STATE(1017), - [anon_sym_true] = ACTIONS(3271), - [anon_sym_false] = ACTIONS(3271), - [anon_sym_null] = ACTIONS(3273), - [aux_sym_cmd_identifier_token38] = ACTIONS(3275), - [aux_sym_cmd_identifier_token39] = ACTIONS(3275), - [aux_sym_cmd_identifier_token40] = ACTIONS(3275), + [959] = { + [sym_expr_unary] = STATE(2402), + [sym__expr_unary_minus] = STATE(2398), + [sym_expr_binary] = STATE(2402), + [sym__expr_binary_expression] = STATE(2365), + [sym_expr_parenthesized] = STATE(2402), + [sym__val_range] = STATE(7784), + [sym__val_range_with_end] = STATE(7383), + [sym__value] = STATE(2402), + [sym_val_nothing] = STATE(2348), + [sym_val_bool] = STATE(2060), + [sym_val_variable] = STATE(2348), + [sym_val_number] = STATE(2348), + [sym__val_number_decimal] = STATE(1347), + [sym__val_number] = STATE(2401), + [sym_val_duration] = STATE(2348), + [sym_val_filesize] = STATE(2348), + [sym_val_binary] = STATE(2348), + [sym_val_string] = STATE(2348), + [sym__str_double_quotes] = STATE(1984), + [sym_val_interpolated] = STATE(2348), + [sym__inter_single_quotes] = STATE(2404), + [sym__inter_double_quotes] = STATE(2407), + [sym_val_list] = STATE(2348), + [sym_val_record] = STATE(2348), + [sym_val_table] = STATE(2348), + [sym_val_closure] = STATE(2348), + [sym_unquoted] = STATE(2121), + [sym__unquoted_with_expr] = STATE(2369), + [sym__unquoted_anonymous_prefix] = STATE(6671), + [sym_comment] = STATE(959), + [anon_sym_true] = ACTIONS(3217), + [anon_sym_false] = ACTIONS(3217), + [anon_sym_null] = ACTIONS(3219), + [aux_sym_cmd_identifier_token38] = ACTIONS(3221), + [aux_sym_cmd_identifier_token39] = ACTIONS(3221), + [aux_sym_cmd_identifier_token40] = ACTIONS(3221), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_DOLLAR] = ACTIONS(3279), + [anon_sym_LPAREN] = ACTIONS(3223), + [anon_sym_DOLLAR] = ACTIONS(3225), [anon_sym_DASH] = ACTIONS(53), [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3281), + [anon_sym_DOT_DOT] = ACTIONS(3227), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), - [anon_sym_DOT_DOT_LT] = ACTIONS(3283), - [aux_sym__val_number_decimal_token1] = ACTIONS(3285), - [aux_sym__val_number_decimal_token2] = ACTIONS(3287), - [aux_sym__val_number_decimal_token3] = ACTIONS(3289), - [aux_sym__val_number_decimal_token4] = ACTIONS(3291), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), + [anon_sym_DOT_DOT_LT] = ACTIONS(3229), + [aux_sym__val_number_decimal_token1] = ACTIONS(3231), + [aux_sym__val_number_decimal_token2] = ACTIONS(3233), + [aux_sym__val_number_decimal_token3] = ACTIONS(3235), + [aux_sym__val_number_decimal_token4] = ACTIONS(3237), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3293), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3295), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3241), [anon_sym_POUND] = ACTIONS(247), }, - [1018] = { - [sym_expr_unary] = STATE(2564), - [sym__expr_unary_minus] = STATE(2610), - [sym_expr_binary] = STATE(2564), - [sym__expr_binary_expression] = STATE(2608), - [sym_expr_parenthesized] = STATE(2564), - [sym__val_range] = STATE(7911), - [sym__val_range_with_end] = STATE(7541), - [sym__value] = STATE(2564), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2338), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(1590), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__str_double_quotes] = STATE(2144), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2607), - [sym__inter_double_quotes] = STATE(2626), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2228), - [sym__unquoted_with_expr] = STATE(2574), - [sym__unquoted_anonymous_prefix] = STATE(6983), - [sym_comment] = STATE(1018), - [anon_sym_true] = ACTIONS(3271), - [anon_sym_false] = ACTIONS(3271), - [anon_sym_null] = ACTIONS(3273), - [aux_sym_cmd_identifier_token38] = ACTIONS(3275), - [aux_sym_cmd_identifier_token39] = ACTIONS(3275), - [aux_sym_cmd_identifier_token40] = ACTIONS(3275), + [960] = { + [sym_expr_unary] = STATE(2402), + [sym__expr_unary_minus] = STATE(2398), + [sym_expr_binary] = STATE(2402), + [sym__expr_binary_expression] = STATE(2403), + [sym_expr_parenthesized] = STATE(2402), + [sym__val_range] = STATE(7784), + [sym__val_range_with_end] = STATE(7383), + [sym__value] = STATE(2402), + [sym_val_nothing] = STATE(2348), + [sym_val_bool] = STATE(2060), + [sym_val_variable] = STATE(2348), + [sym_val_number] = STATE(2348), + [sym__val_number_decimal] = STATE(1347), + [sym__val_number] = STATE(2401), + [sym_val_duration] = STATE(2348), + [sym_val_filesize] = STATE(2348), + [sym_val_binary] = STATE(2348), + [sym_val_string] = STATE(2348), + [sym__str_double_quotes] = STATE(1984), + [sym_val_interpolated] = STATE(2348), + [sym__inter_single_quotes] = STATE(2404), + [sym__inter_double_quotes] = STATE(2407), + [sym_val_list] = STATE(2348), + [sym_val_record] = STATE(2348), + [sym_val_table] = STATE(2348), + [sym_val_closure] = STATE(2348), + [sym_unquoted] = STATE(2095), + [sym__unquoted_with_expr] = STATE(2405), + [sym__unquoted_anonymous_prefix] = STATE(6671), + [sym_comment] = STATE(960), + [anon_sym_true] = ACTIONS(3217), + [anon_sym_false] = ACTIONS(3217), + [anon_sym_null] = ACTIONS(3219), + [aux_sym_cmd_identifier_token38] = ACTIONS(3221), + [aux_sym_cmd_identifier_token39] = ACTIONS(3221), + [aux_sym_cmd_identifier_token40] = ACTIONS(3221), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_DOLLAR] = ACTIONS(3279), + [anon_sym_LPAREN] = ACTIONS(3223), + [anon_sym_DOLLAR] = ACTIONS(3225), [anon_sym_DASH] = ACTIONS(53), [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3281), + [anon_sym_DOT_DOT] = ACTIONS(3227), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), - [anon_sym_DOT_DOT_LT] = ACTIONS(3283), - [aux_sym__val_number_decimal_token1] = ACTIONS(3285), - [aux_sym__val_number_decimal_token2] = ACTIONS(3287), - [aux_sym__val_number_decimal_token3] = ACTIONS(3289), - [aux_sym__val_number_decimal_token4] = ACTIONS(3291), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), + [anon_sym_DOT_DOT_LT] = ACTIONS(3229), + [aux_sym__val_number_decimal_token1] = ACTIONS(3231), + [aux_sym__val_number_decimal_token2] = ACTIONS(3233), + [aux_sym__val_number_decimal_token3] = ACTIONS(3235), + [aux_sym__val_number_decimal_token4] = ACTIONS(3237), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3293), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3295), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3241), [anon_sym_POUND] = ACTIONS(247), }, - [1019] = { - [sym_expr_unary] = STATE(2564), - [sym__expr_unary_minus] = STATE(2610), - [sym_expr_binary] = STATE(2564), - [sym__expr_binary_expression] = STATE(2593), - [sym_expr_parenthesized] = STATE(2564), - [sym__val_range] = STATE(7911), - [sym__val_range_with_end] = STATE(7541), - [sym__value] = STATE(2564), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2338), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(1590), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__str_double_quotes] = STATE(2144), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2607), - [sym__inter_double_quotes] = STATE(2626), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2235), - [sym__unquoted_with_expr] = STATE(2548), - [sym__unquoted_anonymous_prefix] = STATE(6983), - [sym_comment] = STATE(1019), - [anon_sym_true] = ACTIONS(3271), - [anon_sym_false] = ACTIONS(3271), - [anon_sym_null] = ACTIONS(3273), - [aux_sym_cmd_identifier_token38] = ACTIONS(3275), - [aux_sym_cmd_identifier_token39] = ACTIONS(3275), - [aux_sym_cmd_identifier_token40] = ACTIONS(3275), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_DOLLAR] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3281), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), - [anon_sym_DOT_DOT_LT] = ACTIONS(3283), - [aux_sym__val_number_decimal_token1] = ACTIONS(3285), - [aux_sym__val_number_decimal_token2] = ACTIONS(3287), - [aux_sym__val_number_decimal_token3] = ACTIONS(3289), - [aux_sym__val_number_decimal_token4] = ACTIONS(3291), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3293), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3295), + [961] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(1615), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3524), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(3375), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1433), + [sym__unquoted_with_expr] = STATE(1616), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(961), + [anon_sym_true] = ACTIONS(3243), + [anon_sym_false] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [aux_sym_cmd_identifier_token38] = ACTIONS(3247), + [aux_sym_cmd_identifier_token39] = ACTIONS(3247), + [aux_sym_cmd_identifier_token40] = ACTIONS(3247), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3253), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(3259), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3263), + [aux_sym__val_number_decimal_token2] = ACTIONS(3265), + [aux_sym__val_number_decimal_token3] = ACTIONS(3267), + [aux_sym__val_number_decimal_token4] = ACTIONS(3269), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3271), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, - [1020] = { - [sym_expr_unary] = STATE(2564), - [sym__expr_unary_minus] = STATE(2610), - [sym_expr_binary] = STATE(2564), - [sym__expr_binary_expression] = STATE(2562), - [sym_expr_parenthesized] = STATE(2564), - [sym__val_range] = STATE(7911), - [sym__val_range_with_end] = STATE(7541), - [sym__value] = STATE(2564), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2338), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(1590), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__str_double_quotes] = STATE(2144), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2607), - [sym__inter_double_quotes] = STATE(2626), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2242), - [sym__unquoted_with_expr] = STATE(2579), - [sym__unquoted_anonymous_prefix] = STATE(6983), - [sym_comment] = STATE(1020), - [anon_sym_true] = ACTIONS(3271), - [anon_sym_false] = ACTIONS(3271), - [anon_sym_null] = ACTIONS(3273), - [aux_sym_cmd_identifier_token38] = ACTIONS(3275), - [aux_sym_cmd_identifier_token39] = ACTIONS(3275), - [aux_sym_cmd_identifier_token40] = ACTIONS(3275), + [962] = { + [sym_expr_unary] = STATE(2402), + [sym__expr_unary_minus] = STATE(2398), + [sym_expr_binary] = STATE(2402), + [sym__expr_binary_expression] = STATE(2377), + [sym_expr_parenthesized] = STATE(2402), + [sym__val_range] = STATE(7784), + [sym__val_range_with_end] = STATE(7383), + [sym__value] = STATE(2402), + [sym_val_nothing] = STATE(2348), + [sym_val_bool] = STATE(2060), + [sym_val_variable] = STATE(2348), + [sym_val_number] = STATE(2348), + [sym__val_number_decimal] = STATE(1347), + [sym__val_number] = STATE(2401), + [sym_val_duration] = STATE(2348), + [sym_val_filesize] = STATE(2348), + [sym_val_binary] = STATE(2348), + [sym_val_string] = STATE(2348), + [sym__str_double_quotes] = STATE(1984), + [sym_val_interpolated] = STATE(2348), + [sym__inter_single_quotes] = STATE(2404), + [sym__inter_double_quotes] = STATE(2407), + [sym_val_list] = STATE(2348), + [sym_val_record] = STATE(2348), + [sym_val_table] = STATE(2348), + [sym_val_closure] = STATE(2348), + [sym_unquoted] = STATE(2156), + [sym__unquoted_with_expr] = STATE(2353), + [sym__unquoted_anonymous_prefix] = STATE(6671), + [sym_comment] = STATE(962), + [anon_sym_true] = ACTIONS(3217), + [anon_sym_false] = ACTIONS(3217), + [anon_sym_null] = ACTIONS(3219), + [aux_sym_cmd_identifier_token38] = ACTIONS(3221), + [aux_sym_cmd_identifier_token39] = ACTIONS(3221), + [aux_sym_cmd_identifier_token40] = ACTIONS(3221), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_DOLLAR] = ACTIONS(3279), + [anon_sym_LPAREN] = ACTIONS(3223), + [anon_sym_DOLLAR] = ACTIONS(3225), [anon_sym_DASH] = ACTIONS(53), [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3281), + [anon_sym_DOT_DOT] = ACTIONS(3227), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), - [anon_sym_DOT_DOT_LT] = ACTIONS(3283), - [aux_sym__val_number_decimal_token1] = ACTIONS(3285), - [aux_sym__val_number_decimal_token2] = ACTIONS(3287), - [aux_sym__val_number_decimal_token3] = ACTIONS(3289), - [aux_sym__val_number_decimal_token4] = ACTIONS(3291), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), + [anon_sym_DOT_DOT_LT] = ACTIONS(3229), + [aux_sym__val_number_decimal_token1] = ACTIONS(3231), + [aux_sym__val_number_decimal_token2] = ACTIONS(3233), + [aux_sym__val_number_decimal_token3] = ACTIONS(3235), + [aux_sym__val_number_decimal_token4] = ACTIONS(3237), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3293), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3295), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3241), [anon_sym_POUND] = ACTIONS(247), }, - [1021] = { - [sym_expr_unary] = STATE(2564), - [sym__expr_unary_minus] = STATE(2610), - [sym_expr_binary] = STATE(2564), - [sym__expr_binary_expression] = STATE(2583), - [sym_expr_parenthesized] = STATE(2564), - [sym__val_range] = STATE(7911), - [sym__val_range_with_end] = STATE(7541), - [sym__value] = STATE(2564), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2338), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(1590), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__str_double_quotes] = STATE(2144), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2607), - [sym__inter_double_quotes] = STATE(2626), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2246), - [sym__unquoted_with_expr] = STATE(2586), - [sym__unquoted_anonymous_prefix] = STATE(6983), - [sym_comment] = STATE(1021), - [anon_sym_true] = ACTIONS(3271), - [anon_sym_false] = ACTIONS(3271), - [anon_sym_null] = ACTIONS(3273), - [aux_sym_cmd_identifier_token38] = ACTIONS(3275), - [aux_sym_cmd_identifier_token39] = ACTIONS(3275), - [aux_sym_cmd_identifier_token40] = ACTIONS(3275), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_DOLLAR] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3281), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), - [anon_sym_DOT_DOT_LT] = ACTIONS(3283), - [aux_sym__val_number_decimal_token1] = ACTIONS(3285), - [aux_sym__val_number_decimal_token2] = ACTIONS(3287), - [aux_sym__val_number_decimal_token3] = ACTIONS(3289), - [aux_sym__val_number_decimal_token4] = ACTIONS(3291), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3293), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3295), + [963] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(1615), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1970), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1270), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1433), + [sym__unquoted_with_expr] = STATE(1616), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(963), + [anon_sym_true] = ACTIONS(3339), + [anon_sym_false] = ACTIONS(3339), + [anon_sym_null] = ACTIONS(3341), + [aux_sym_cmd_identifier_token38] = ACTIONS(3343), + [aux_sym_cmd_identifier_token39] = ACTIONS(3343), + [aux_sym_cmd_identifier_token40] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_DOLLAR] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3349), + [aux_sym__val_number_decimal_token2] = ACTIONS(3351), + [aux_sym__val_number_decimal_token3] = ACTIONS(3353), + [aux_sym__val_number_decimal_token4] = ACTIONS(3355), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3357), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, - [1022] = { - [sym_expr_unary] = STATE(2564), - [sym__expr_unary_minus] = STATE(2610), - [sym_expr_binary] = STATE(2564), - [sym__expr_binary_expression] = STATE(2589), - [sym_expr_parenthesized] = STATE(2564), - [sym__val_range] = STATE(7911), - [sym__val_range_with_end] = STATE(7541), - [sym__value] = STATE(2564), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2338), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(1590), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__str_double_quotes] = STATE(2144), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2607), - [sym__inter_double_quotes] = STATE(2626), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2247), - [sym__unquoted_with_expr] = STATE(2600), - [sym__unquoted_anonymous_prefix] = STATE(6983), - [sym_comment] = STATE(1022), - [anon_sym_true] = ACTIONS(3271), - [anon_sym_false] = ACTIONS(3271), - [anon_sym_null] = ACTIONS(3273), - [aux_sym_cmd_identifier_token38] = ACTIONS(3275), - [aux_sym_cmd_identifier_token39] = ACTIONS(3275), - [aux_sym_cmd_identifier_token40] = ACTIONS(3275), + [964] = { + [sym_expr_unary] = STATE(2402), + [sym__expr_unary_minus] = STATE(2398), + [sym_expr_binary] = STATE(2402), + [sym__expr_binary_expression] = STATE(2423), + [sym_expr_parenthesized] = STATE(2402), + [sym__val_range] = STATE(7784), + [sym__val_range_with_end] = STATE(7383), + [sym__value] = STATE(2402), + [sym_val_nothing] = STATE(2348), + [sym_val_bool] = STATE(2060), + [sym_val_variable] = STATE(2348), + [sym_val_number] = STATE(2348), + [sym__val_number_decimal] = STATE(1347), + [sym__val_number] = STATE(2401), + [sym_val_duration] = STATE(2348), + [sym_val_filesize] = STATE(2348), + [sym_val_binary] = STATE(2348), + [sym_val_string] = STATE(2348), + [sym__str_double_quotes] = STATE(1984), + [sym_val_interpolated] = STATE(2348), + [sym__inter_single_quotes] = STATE(2404), + [sym__inter_double_quotes] = STATE(2407), + [sym_val_list] = STATE(2348), + [sym_val_record] = STATE(2348), + [sym_val_table] = STATE(2348), + [sym_val_closure] = STATE(2348), + [sym_unquoted] = STATE(2132), + [sym__unquoted_with_expr] = STATE(2424), + [sym__unquoted_anonymous_prefix] = STATE(6671), + [sym_comment] = STATE(964), + [anon_sym_true] = ACTIONS(3217), + [anon_sym_false] = ACTIONS(3217), + [anon_sym_null] = ACTIONS(3219), + [aux_sym_cmd_identifier_token38] = ACTIONS(3221), + [aux_sym_cmd_identifier_token39] = ACTIONS(3221), + [aux_sym_cmd_identifier_token40] = ACTIONS(3221), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_DOLLAR] = ACTIONS(3279), + [anon_sym_LPAREN] = ACTIONS(3223), + [anon_sym_DOLLAR] = ACTIONS(3225), [anon_sym_DASH] = ACTIONS(53), [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3281), + [anon_sym_DOT_DOT] = ACTIONS(3227), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), - [anon_sym_DOT_DOT_LT] = ACTIONS(3283), - [aux_sym__val_number_decimal_token1] = ACTIONS(3285), - [aux_sym__val_number_decimal_token2] = ACTIONS(3287), - [aux_sym__val_number_decimal_token3] = ACTIONS(3289), - [aux_sym__val_number_decimal_token4] = ACTIONS(3291), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), + [anon_sym_DOT_DOT_LT] = ACTIONS(3229), + [aux_sym__val_number_decimal_token1] = ACTIONS(3231), + [aux_sym__val_number_decimal_token2] = ACTIONS(3233), + [aux_sym__val_number_decimal_token3] = ACTIONS(3235), + [aux_sym__val_number_decimal_token4] = ACTIONS(3237), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3293), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3295), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3241), [anon_sym_POUND] = ACTIONS(247), }, - [1023] = { - [sym_expr_unary] = STATE(2564), - [sym__expr_unary_minus] = STATE(2610), - [sym_expr_binary] = STATE(2564), - [sym__expr_binary_expression] = STATE(2606), - [sym_expr_parenthesized] = STATE(2564), - [sym__val_range] = STATE(7911), - [sym__val_range_with_end] = STATE(7541), - [sym__value] = STATE(2564), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2338), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(1590), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__str_double_quotes] = STATE(2144), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2607), - [sym__inter_double_quotes] = STATE(2626), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2252), - [sym__unquoted_with_expr] = STATE(2612), - [sym__unquoted_anonymous_prefix] = STATE(6983), - [sym_comment] = STATE(1023), - [anon_sym_true] = ACTIONS(3271), - [anon_sym_false] = ACTIONS(3271), - [anon_sym_null] = ACTIONS(3273), - [aux_sym_cmd_identifier_token38] = ACTIONS(3275), - [aux_sym_cmd_identifier_token39] = ACTIONS(3275), - [aux_sym_cmd_identifier_token40] = ACTIONS(3275), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_DOLLAR] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3281), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), - [anon_sym_DOT_DOT_LT] = ACTIONS(3283), - [aux_sym__val_number_decimal_token1] = ACTIONS(3285), - [aux_sym__val_number_decimal_token2] = ACTIONS(3287), - [aux_sym__val_number_decimal_token3] = ACTIONS(3289), - [aux_sym__val_number_decimal_token4] = ACTIONS(3291), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3293), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3295), + [965] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(2187), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1970), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1270), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1380), + [sym__unquoted_with_expr] = STATE(1617), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(965), + [anon_sym_true] = ACTIONS(3339), + [anon_sym_false] = ACTIONS(3339), + [anon_sym_null] = ACTIONS(3341), + [aux_sym_cmd_identifier_token38] = ACTIONS(3343), + [aux_sym_cmd_identifier_token39] = ACTIONS(3343), + [aux_sym_cmd_identifier_token40] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_DOLLAR] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3349), + [aux_sym__val_number_decimal_token2] = ACTIONS(3351), + [aux_sym__val_number_decimal_token3] = ACTIONS(3353), + [aux_sym__val_number_decimal_token4] = ACTIONS(3355), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3357), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, - [1024] = { - [sym_expr_unary] = STATE(2564), - [sym__expr_unary_minus] = STATE(2610), - [sym_expr_binary] = STATE(2564), - [sym__expr_binary_expression] = STATE(2616), - [sym_expr_parenthesized] = STATE(2564), - [sym__val_range] = STATE(7911), - [sym__val_range_with_end] = STATE(7541), - [sym__value] = STATE(2564), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2338), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(1590), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__str_double_quotes] = STATE(2144), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2607), - [sym__inter_double_quotes] = STATE(2626), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2253), - [sym__unquoted_with_expr] = STATE(2545), - [sym__unquoted_anonymous_prefix] = STATE(6983), - [sym_comment] = STATE(1024), - [anon_sym_true] = ACTIONS(3271), - [anon_sym_false] = ACTIONS(3271), - [anon_sym_null] = ACTIONS(3273), - [aux_sym_cmd_identifier_token38] = ACTIONS(3275), - [aux_sym_cmd_identifier_token39] = ACTIONS(3275), - [aux_sym_cmd_identifier_token40] = ACTIONS(3275), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_DOLLAR] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3281), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), - [anon_sym_DOT_DOT_LT] = ACTIONS(3283), - [aux_sym__val_number_decimal_token1] = ACTIONS(3285), - [aux_sym__val_number_decimal_token2] = ACTIONS(3287), - [aux_sym__val_number_decimal_token3] = ACTIONS(3289), - [aux_sym__val_number_decimal_token4] = ACTIONS(3291), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3293), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3295), + [966] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(2188), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1970), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1270), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1385), + [sym__unquoted_with_expr] = STATE(1618), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(966), + [anon_sym_true] = ACTIONS(3339), + [anon_sym_false] = ACTIONS(3339), + [anon_sym_null] = ACTIONS(3341), + [aux_sym_cmd_identifier_token38] = ACTIONS(3343), + [aux_sym_cmd_identifier_token39] = ACTIONS(3343), + [aux_sym_cmd_identifier_token40] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_DOLLAR] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3349), + [aux_sym__val_number_decimal_token2] = ACTIONS(3351), + [aux_sym__val_number_decimal_token3] = ACTIONS(3353), + [aux_sym__val_number_decimal_token4] = ACTIONS(3355), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3357), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, - [1025] = { - [sym_expr_unary] = STATE(2564), - [sym__expr_unary_minus] = STATE(2610), - [sym_expr_binary] = STATE(2564), - [sym__expr_binary_expression] = STATE(2542), - [sym_expr_parenthesized] = STATE(2564), - [sym__val_range] = STATE(7911), - [sym__val_range_with_end] = STATE(7541), - [sym__value] = STATE(2564), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2338), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(1590), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__str_double_quotes] = STATE(2144), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2607), - [sym__inter_double_quotes] = STATE(2626), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2258), - [sym__unquoted_with_expr] = STATE(2550), - [sym__unquoted_anonymous_prefix] = STATE(6983), - [sym_comment] = STATE(1025), - [anon_sym_true] = ACTIONS(3271), - [anon_sym_false] = ACTIONS(3271), - [anon_sym_null] = ACTIONS(3273), - [aux_sym_cmd_identifier_token38] = ACTIONS(3275), - [aux_sym_cmd_identifier_token39] = ACTIONS(3275), - [aux_sym_cmd_identifier_token40] = ACTIONS(3275), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_DOLLAR] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3281), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), - [anon_sym_DOT_DOT_LT] = ACTIONS(3283), - [aux_sym__val_number_decimal_token1] = ACTIONS(3285), - [aux_sym__val_number_decimal_token2] = ACTIONS(3287), - [aux_sym__val_number_decimal_token3] = ACTIONS(3289), - [aux_sym__val_number_decimal_token4] = ACTIONS(3291), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3293), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3295), + [967] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(2189), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1970), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1270), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1386), + [sym__unquoted_with_expr] = STATE(1619), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(967), + [anon_sym_true] = ACTIONS(3339), + [anon_sym_false] = ACTIONS(3339), + [anon_sym_null] = ACTIONS(3341), + [aux_sym_cmd_identifier_token38] = ACTIONS(3343), + [aux_sym_cmd_identifier_token39] = ACTIONS(3343), + [aux_sym_cmd_identifier_token40] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_DOLLAR] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3349), + [aux_sym__val_number_decimal_token2] = ACTIONS(3351), + [aux_sym__val_number_decimal_token3] = ACTIONS(3353), + [aux_sym__val_number_decimal_token4] = ACTIONS(3355), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3357), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, - [1026] = { - [sym_expr_unary] = STATE(2564), - [sym__expr_unary_minus] = STATE(2610), - [sym_expr_binary] = STATE(2564), - [sym__expr_binary_expression] = STATE(2552), - [sym_expr_parenthesized] = STATE(2564), - [sym__val_range] = STATE(7911), - [sym__val_range_with_end] = STATE(7541), - [sym__value] = STATE(2564), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2338), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(1590), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__str_double_quotes] = STATE(2144), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2607), - [sym__inter_double_quotes] = STATE(2626), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2273), - [sym__unquoted_with_expr] = STATE(2554), - [sym__unquoted_anonymous_prefix] = STATE(6983), - [sym_comment] = STATE(1026), - [anon_sym_true] = ACTIONS(3271), - [anon_sym_false] = ACTIONS(3271), - [anon_sym_null] = ACTIONS(3273), - [aux_sym_cmd_identifier_token38] = ACTIONS(3275), - [aux_sym_cmd_identifier_token39] = ACTIONS(3275), - [aux_sym_cmd_identifier_token40] = ACTIONS(3275), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_DOLLAR] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3281), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), - [anon_sym_DOT_DOT_LT] = ACTIONS(3283), - [aux_sym__val_number_decimal_token1] = ACTIONS(3285), - [aux_sym__val_number_decimal_token2] = ACTIONS(3287), - [aux_sym__val_number_decimal_token3] = ACTIONS(3289), - [aux_sym__val_number_decimal_token4] = ACTIONS(3291), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3293), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3295), + [968] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(2190), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1970), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1270), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1387), + [sym__unquoted_with_expr] = STATE(1620), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(968), + [anon_sym_true] = ACTIONS(3339), + [anon_sym_false] = ACTIONS(3339), + [anon_sym_null] = ACTIONS(3341), + [aux_sym_cmd_identifier_token38] = ACTIONS(3343), + [aux_sym_cmd_identifier_token39] = ACTIONS(3343), + [aux_sym_cmd_identifier_token40] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_DOLLAR] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3349), + [aux_sym__val_number_decimal_token2] = ACTIONS(3351), + [aux_sym__val_number_decimal_token3] = ACTIONS(3353), + [aux_sym__val_number_decimal_token4] = ACTIONS(3355), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3357), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, - [1027] = { - [sym_expr_unary] = STATE(2564), - [sym__expr_unary_minus] = STATE(2610), - [sym_expr_binary] = STATE(2564), - [sym__expr_binary_expression] = STATE(2558), - [sym_expr_parenthesized] = STATE(2564), - [sym__val_range] = STATE(7911), - [sym__val_range_with_end] = STATE(7541), - [sym__value] = STATE(2564), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2338), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(1590), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__str_double_quotes] = STATE(2144), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2607), - [sym__inter_double_quotes] = STATE(2626), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2274), - [sym__unquoted_with_expr] = STATE(2565), - [sym__unquoted_anonymous_prefix] = STATE(6983), - [sym_comment] = STATE(1027), - [anon_sym_true] = ACTIONS(3271), - [anon_sym_false] = ACTIONS(3271), - [anon_sym_null] = ACTIONS(3273), - [aux_sym_cmd_identifier_token38] = ACTIONS(3275), - [aux_sym_cmd_identifier_token39] = ACTIONS(3275), - [aux_sym_cmd_identifier_token40] = ACTIONS(3275), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_DOLLAR] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3281), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), - [anon_sym_DOT_DOT_LT] = ACTIONS(3283), - [aux_sym__val_number_decimal_token1] = ACTIONS(3285), - [aux_sym__val_number_decimal_token2] = ACTIONS(3287), - [aux_sym__val_number_decimal_token3] = ACTIONS(3289), - [aux_sym__val_number_decimal_token4] = ACTIONS(3291), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3293), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3295), + [969] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(2191), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1970), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1270), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1388), + [sym__unquoted_with_expr] = STATE(1622), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(969), + [anon_sym_true] = ACTIONS(3339), + [anon_sym_false] = ACTIONS(3339), + [anon_sym_null] = ACTIONS(3341), + [aux_sym_cmd_identifier_token38] = ACTIONS(3343), + [aux_sym_cmd_identifier_token39] = ACTIONS(3343), + [aux_sym_cmd_identifier_token40] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_DOLLAR] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3349), + [aux_sym__val_number_decimal_token2] = ACTIONS(3351), + [aux_sym__val_number_decimal_token3] = ACTIONS(3353), + [aux_sym__val_number_decimal_token4] = ACTIONS(3355), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3357), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, - [1028] = { - [sym_ctrl_do] = STATE(5373), - [sym_ctrl_if] = STATE(5373), - [sym_ctrl_match] = STATE(5373), - [sym_ctrl_try] = STATE(5373), - [sym__expression] = STATE(5373), - [sym_expr_unary] = STATE(2604), - [sym__expr_unary_minus] = STATE(2610), - [sym_expr_binary] = STATE(2604), - [sym__expr_binary_expression] = STATE(4065), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(4062), - [sym__value] = STATE(2604), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2547), - [sym_val_variable] = STATE(2175), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(3331), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__str_double_quotes] = STATE(2144), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2607), - [sym__inter_double_quotes] = STATE(2626), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_comment] = STATE(1028), - [ts_builtin_sym_end] = ACTIONS(3249), - [anon_sym_true] = ACTIONS(3309), - [anon_sym_false] = ACTIONS(3309), - [anon_sym_null] = ACTIONS(3311), - [aux_sym_cmd_identifier_token38] = ACTIONS(103), - [aux_sym_cmd_identifier_token39] = ACTIONS(103), - [aux_sym_cmd_identifier_token40] = ACTIONS(103), - [sym__newline] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3249), - [anon_sym_PIPE] = ACTIONS(3249), - [anon_sym_err_GT_PIPE] = ACTIONS(3249), - [anon_sym_out_GT_PIPE] = ACTIONS(3249), - [anon_sym_e_GT_PIPE] = ACTIONS(3249), - [anon_sym_o_GT_PIPE] = ACTIONS(3249), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3249), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3249), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3249), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3249), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_do] = ACTIONS(3313), - [anon_sym_if] = ACTIONS(3315), - [anon_sym_match] = ACTIONS(3317), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(73), - [anon_sym_try] = ACTIONS(3319), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(93), - [anon_sym_DOT_DOT_LT] = ACTIONS(93), - [aux_sym__val_number_decimal_token1] = ACTIONS(95), - [aux_sym__val_number_decimal_token2] = ACTIONS(97), - [aux_sym__val_number_decimal_token3] = ACTIONS(99), - [aux_sym__val_number_decimal_token4] = ACTIONS(101), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(109), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [970] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(2192), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1970), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1270), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1391), + [sym__unquoted_with_expr] = STATE(1623), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(970), + [anon_sym_true] = ACTIONS(3339), + [anon_sym_false] = ACTIONS(3339), + [anon_sym_null] = ACTIONS(3341), + [aux_sym_cmd_identifier_token38] = ACTIONS(3343), + [aux_sym_cmd_identifier_token39] = ACTIONS(3343), + [aux_sym_cmd_identifier_token40] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_DOLLAR] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3349), + [aux_sym__val_number_decimal_token2] = ACTIONS(3351), + [aux_sym__val_number_decimal_token3] = ACTIONS(3353), + [aux_sym__val_number_decimal_token4] = ACTIONS(3355), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3357), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, - [1029] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(1748), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(2178), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1489), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1582), - [sym__unquoted_with_expr] = STATE(1749), - [sym__unquoted_anonymous_prefix] = STATE(7332), - [sym_comment] = STATE(1029), - [anon_sym_true] = ACTIONS(3321), - [anon_sym_false] = ACTIONS(3321), - [anon_sym_null] = ACTIONS(3323), - [aux_sym_cmd_identifier_token38] = ACTIONS(3325), - [aux_sym_cmd_identifier_token39] = ACTIONS(3325), - [aux_sym_cmd_identifier_token40] = ACTIONS(3325), + [971] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(2193), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1970), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1270), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1392), + [sym__unquoted_with_expr] = STATE(1626), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(971), + [anon_sym_true] = ACTIONS(3339), + [anon_sym_false] = ACTIONS(3339), + [anon_sym_null] = ACTIONS(3341), + [aux_sym_cmd_identifier_token38] = ACTIONS(3343), + [aux_sym_cmd_identifier_token39] = ACTIONS(3343), + [aux_sym_cmd_identifier_token40] = ACTIONS(3343), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_DOLLAR] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_DOLLAR] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(395), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3303), + [anon_sym_DOT_DOT] = ACTIONS(3257), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3331), - [aux_sym__val_number_decimal_token2] = ACTIONS(3333), - [aux_sym__val_number_decimal_token3] = ACTIONS(3335), - [aux_sym__val_number_decimal_token4] = ACTIONS(3337), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3349), + [aux_sym__val_number_decimal_token2] = ACTIONS(3351), + [aux_sym__val_number_decimal_token3] = ACTIONS(3353), + [aux_sym__val_number_decimal_token4] = ACTIONS(3355), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), + [sym_val_date] = ACTIONS(3357), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, - [1030] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(2439), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(2178), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1489), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1588), - [sym__unquoted_with_expr] = STATE(1772), - [sym__unquoted_anonymous_prefix] = STATE(7332), - [sym_comment] = STATE(1030), - [anon_sym_true] = ACTIONS(3321), - [anon_sym_false] = ACTIONS(3321), - [anon_sym_null] = ACTIONS(3323), - [aux_sym_cmd_identifier_token38] = ACTIONS(3325), - [aux_sym_cmd_identifier_token39] = ACTIONS(3325), - [aux_sym_cmd_identifier_token40] = ACTIONS(3325), + [972] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(2194), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1970), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1270), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1393), + [sym__unquoted_with_expr] = STATE(1627), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(972), + [anon_sym_true] = ACTIONS(3339), + [anon_sym_false] = ACTIONS(3339), + [anon_sym_null] = ACTIONS(3341), + [aux_sym_cmd_identifier_token38] = ACTIONS(3343), + [aux_sym_cmd_identifier_token39] = ACTIONS(3343), + [aux_sym_cmd_identifier_token40] = ACTIONS(3343), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_DOLLAR] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_DOLLAR] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(395), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3303), + [anon_sym_DOT_DOT] = ACTIONS(3257), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3331), - [aux_sym__val_number_decimal_token2] = ACTIONS(3333), - [aux_sym__val_number_decimal_token3] = ACTIONS(3335), - [aux_sym__val_number_decimal_token4] = ACTIONS(3337), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3349), + [aux_sym__val_number_decimal_token2] = ACTIONS(3351), + [aux_sym__val_number_decimal_token3] = ACTIONS(3353), + [aux_sym__val_number_decimal_token4] = ACTIONS(3355), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), + [sym_val_date] = ACTIONS(3357), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, - [1031] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(2440), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(2178), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1489), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1596), - [sym__unquoted_with_expr] = STATE(1773), - [sym__unquoted_anonymous_prefix] = STATE(7332), - [sym_comment] = STATE(1031), - [anon_sym_true] = ACTIONS(3321), - [anon_sym_false] = ACTIONS(3321), - [anon_sym_null] = ACTIONS(3323), - [aux_sym_cmd_identifier_token38] = ACTIONS(3325), - [aux_sym_cmd_identifier_token39] = ACTIONS(3325), - [aux_sym_cmd_identifier_token40] = ACTIONS(3325), + [973] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(2195), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1970), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1270), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1394), + [sym__unquoted_with_expr] = STATE(1628), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(973), + [anon_sym_true] = ACTIONS(3339), + [anon_sym_false] = ACTIONS(3339), + [anon_sym_null] = ACTIONS(3341), + [aux_sym_cmd_identifier_token38] = ACTIONS(3343), + [aux_sym_cmd_identifier_token39] = ACTIONS(3343), + [aux_sym_cmd_identifier_token40] = ACTIONS(3343), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_DOLLAR] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_DOLLAR] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(395), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3303), + [anon_sym_DOT_DOT] = ACTIONS(3257), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3331), - [aux_sym__val_number_decimal_token2] = ACTIONS(3333), - [aux_sym__val_number_decimal_token3] = ACTIONS(3335), - [aux_sym__val_number_decimal_token4] = ACTIONS(3337), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3349), + [aux_sym__val_number_decimal_token2] = ACTIONS(3351), + [aux_sym__val_number_decimal_token3] = ACTIONS(3353), + [aux_sym__val_number_decimal_token4] = ACTIONS(3355), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), + [sym_val_date] = ACTIONS(3357), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, - [1032] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(2441), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(2178), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1489), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1535), - [sym__unquoted_with_expr] = STATE(1777), - [sym__unquoted_anonymous_prefix] = STATE(7332), - [sym_comment] = STATE(1032), - [anon_sym_true] = ACTIONS(3321), - [anon_sym_false] = ACTIONS(3321), - [anon_sym_null] = ACTIONS(3323), - [aux_sym_cmd_identifier_token38] = ACTIONS(3325), - [aux_sym_cmd_identifier_token39] = ACTIONS(3325), - [aux_sym_cmd_identifier_token40] = ACTIONS(3325), + [974] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(2196), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1970), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1270), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1397), + [sym__unquoted_with_expr] = STATE(1629), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(974), + [anon_sym_true] = ACTIONS(3339), + [anon_sym_false] = ACTIONS(3339), + [anon_sym_null] = ACTIONS(3341), + [aux_sym_cmd_identifier_token38] = ACTIONS(3343), + [aux_sym_cmd_identifier_token39] = ACTIONS(3343), + [aux_sym_cmd_identifier_token40] = ACTIONS(3343), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_DOLLAR] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_DOLLAR] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(395), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3303), + [anon_sym_DOT_DOT] = ACTIONS(3257), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3331), - [aux_sym__val_number_decimal_token2] = ACTIONS(3333), - [aux_sym__val_number_decimal_token3] = ACTIONS(3335), - [aux_sym__val_number_decimal_token4] = ACTIONS(3337), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3349), + [aux_sym__val_number_decimal_token2] = ACTIONS(3351), + [aux_sym__val_number_decimal_token3] = ACTIONS(3353), + [aux_sym__val_number_decimal_token4] = ACTIONS(3355), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), + [sym_val_date] = ACTIONS(3357), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, - [1033] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(2442), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(2178), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1489), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1571), - [sym__unquoted_with_expr] = STATE(1784), - [sym__unquoted_anonymous_prefix] = STATE(7332), - [sym_comment] = STATE(1033), - [anon_sym_true] = ACTIONS(3321), - [anon_sym_false] = ACTIONS(3321), - [anon_sym_null] = ACTIONS(3323), - [aux_sym_cmd_identifier_token38] = ACTIONS(3325), - [aux_sym_cmd_identifier_token39] = ACTIONS(3325), - [aux_sym_cmd_identifier_token40] = ACTIONS(3325), + [975] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(2197), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1970), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1270), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1398), + [sym__unquoted_with_expr] = STATE(1630), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(975), + [anon_sym_true] = ACTIONS(3339), + [anon_sym_false] = ACTIONS(3339), + [anon_sym_null] = ACTIONS(3341), + [aux_sym_cmd_identifier_token38] = ACTIONS(3343), + [aux_sym_cmd_identifier_token39] = ACTIONS(3343), + [aux_sym_cmd_identifier_token40] = ACTIONS(3343), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_DOLLAR] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_DOLLAR] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(395), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3303), + [anon_sym_DOT_DOT] = ACTIONS(3257), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3331), - [aux_sym__val_number_decimal_token2] = ACTIONS(3333), - [aux_sym__val_number_decimal_token3] = ACTIONS(3335), - [aux_sym__val_number_decimal_token4] = ACTIONS(3337), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3349), + [aux_sym__val_number_decimal_token2] = ACTIONS(3351), + [aux_sym__val_number_decimal_token3] = ACTIONS(3353), + [aux_sym__val_number_decimal_token4] = ACTIONS(3355), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), + [sym_val_date] = ACTIONS(3357), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, - [1034] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(2443), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(2178), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1489), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1537), - [sym__unquoted_with_expr] = STATE(1803), - [sym__unquoted_anonymous_prefix] = STATE(7332), - [sym_comment] = STATE(1034), - [anon_sym_true] = ACTIONS(3321), - [anon_sym_false] = ACTIONS(3321), - [anon_sym_null] = ACTIONS(3323), - [aux_sym_cmd_identifier_token38] = ACTIONS(3325), - [aux_sym_cmd_identifier_token39] = ACTIONS(3325), - [aux_sym_cmd_identifier_token40] = ACTIONS(3325), + [976] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(2198), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(1970), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(1270), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1399), + [sym__unquoted_with_expr] = STATE(1631), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(976), + [anon_sym_true] = ACTIONS(3339), + [anon_sym_false] = ACTIONS(3339), + [anon_sym_null] = ACTIONS(3341), + [aux_sym_cmd_identifier_token38] = ACTIONS(3343), + [aux_sym_cmd_identifier_token39] = ACTIONS(3343), + [aux_sym_cmd_identifier_token40] = ACTIONS(3343), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_DOLLAR] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_DOLLAR] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(395), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3303), + [anon_sym_DOT_DOT] = ACTIONS(3257), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3331), - [aux_sym__val_number_decimal_token2] = ACTIONS(3333), - [aux_sym__val_number_decimal_token3] = ACTIONS(3335), - [aux_sym__val_number_decimal_token4] = ACTIONS(3337), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3349), + [aux_sym__val_number_decimal_token2] = ACTIONS(3351), + [aux_sym__val_number_decimal_token3] = ACTIONS(3353), + [aux_sym__val_number_decimal_token4] = ACTIONS(3355), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), + [sym_val_date] = ACTIONS(3357), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, - [1035] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(2444), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(2178), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1489), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1595), - [sym__unquoted_with_expr] = STATE(1805), - [sym__unquoted_anonymous_prefix] = STATE(7332), - [sym_comment] = STATE(1035), - [anon_sym_true] = ACTIONS(3321), - [anon_sym_false] = ACTIONS(3321), - [anon_sym_null] = ACTIONS(3323), - [aux_sym_cmd_identifier_token38] = ACTIONS(3325), - [aux_sym_cmd_identifier_token39] = ACTIONS(3325), - [aux_sym_cmd_identifier_token40] = ACTIONS(3325), + [977] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3756), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3524), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(3375), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1380), + [sym__unquoted_with_expr] = STATE(1617), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(977), + [anon_sym_true] = ACTIONS(3243), + [anon_sym_false] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [aux_sym_cmd_identifier_token38] = ACTIONS(3247), + [aux_sym_cmd_identifier_token39] = ACTIONS(3247), + [aux_sym_cmd_identifier_token40] = ACTIONS(3247), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3253), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(3259), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3263), + [aux_sym__val_number_decimal_token2] = ACTIONS(3265), + [aux_sym__val_number_decimal_token3] = ACTIONS(3267), + [aux_sym__val_number_decimal_token4] = ACTIONS(3269), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3271), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_POUND] = ACTIONS(247), + }, + [978] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3767), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3524), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(3375), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1385), + [sym__unquoted_with_expr] = STATE(1618), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(978), + [anon_sym_true] = ACTIONS(3243), + [anon_sym_false] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [aux_sym_cmd_identifier_token38] = ACTIONS(3247), + [aux_sym_cmd_identifier_token39] = ACTIONS(3247), + [aux_sym_cmd_identifier_token40] = ACTIONS(3247), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3253), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(3259), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3263), + [aux_sym__val_number_decimal_token2] = ACTIONS(3265), + [aux_sym__val_number_decimal_token3] = ACTIONS(3267), + [aux_sym__val_number_decimal_token4] = ACTIONS(3269), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3271), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_POUND] = ACTIONS(247), + }, + [979] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3768), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3524), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(3375), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1386), + [sym__unquoted_with_expr] = STATE(1619), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(979), + [anon_sym_true] = ACTIONS(3243), + [anon_sym_false] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [aux_sym_cmd_identifier_token38] = ACTIONS(3247), + [aux_sym_cmd_identifier_token39] = ACTIONS(3247), + [aux_sym_cmd_identifier_token40] = ACTIONS(3247), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3253), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(3259), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3263), + [aux_sym__val_number_decimal_token2] = ACTIONS(3265), + [aux_sym__val_number_decimal_token3] = ACTIONS(3267), + [aux_sym__val_number_decimal_token4] = ACTIONS(3269), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3271), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_POUND] = ACTIONS(247), + }, + [980] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3749), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3524), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(3375), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1387), + [sym__unquoted_with_expr] = STATE(1620), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(980), + [anon_sym_true] = ACTIONS(3243), + [anon_sym_false] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [aux_sym_cmd_identifier_token38] = ACTIONS(3247), + [aux_sym_cmd_identifier_token39] = ACTIONS(3247), + [aux_sym_cmd_identifier_token40] = ACTIONS(3247), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3253), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(3259), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3263), + [aux_sym__val_number_decimal_token2] = ACTIONS(3265), + [aux_sym__val_number_decimal_token3] = ACTIONS(3267), + [aux_sym__val_number_decimal_token4] = ACTIONS(3269), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3271), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_POUND] = ACTIONS(247), + }, + [981] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(1615), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(2835), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1433), + [sym__unquoted_with_expr] = STATE(1616), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(981), + [anon_sym_true] = ACTIONS(3359), + [anon_sym_false] = ACTIONS(3359), + [anon_sym_null] = ACTIONS(3361), + [aux_sym_cmd_identifier_token38] = ACTIONS(3363), + [aux_sym_cmd_identifier_token39] = ACTIONS(3363), + [aux_sym_cmd_identifier_token40] = ACTIONS(3363), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_DOLLAR] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_DOLLAR] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(395), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3303), + [anon_sym_DOT_DOT] = ACTIONS(3257), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3331), - [aux_sym__val_number_decimal_token2] = ACTIONS(3333), - [aux_sym__val_number_decimal_token3] = ACTIONS(3335), - [aux_sym__val_number_decimal_token4] = ACTIONS(3337), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3365), + [aux_sym__val_number_decimal_token2] = ACTIONS(3367), + [aux_sym__val_number_decimal_token3] = ACTIONS(3369), + [aux_sym__val_number_decimal_token4] = ACTIONS(3371), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), + [sym_val_date] = ACTIONS(3373), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, - [1036] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(2445), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(2178), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1489), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1568), - [sym__unquoted_with_expr] = STATE(1806), - [sym__unquoted_anonymous_prefix] = STATE(7332), - [sym_comment] = STATE(1036), - [anon_sym_true] = ACTIONS(3321), - [anon_sym_false] = ACTIONS(3321), - [anon_sym_null] = ACTIONS(3323), - [aux_sym_cmd_identifier_token38] = ACTIONS(3325), - [aux_sym_cmd_identifier_token39] = ACTIONS(3325), - [aux_sym_cmd_identifier_token40] = ACTIONS(3325), + [982] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3139), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(2835), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1380), + [sym__unquoted_with_expr] = STATE(1617), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(982), + [anon_sym_true] = ACTIONS(3359), + [anon_sym_false] = ACTIONS(3359), + [anon_sym_null] = ACTIONS(3361), + [aux_sym_cmd_identifier_token38] = ACTIONS(3363), + [aux_sym_cmd_identifier_token39] = ACTIONS(3363), + [aux_sym_cmd_identifier_token40] = ACTIONS(3363), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_DOLLAR] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_DOLLAR] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(395), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3303), + [anon_sym_DOT_DOT] = ACTIONS(3257), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3331), - [aux_sym__val_number_decimal_token2] = ACTIONS(3333), - [aux_sym__val_number_decimal_token3] = ACTIONS(3335), - [aux_sym__val_number_decimal_token4] = ACTIONS(3337), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3365), + [aux_sym__val_number_decimal_token2] = ACTIONS(3367), + [aux_sym__val_number_decimal_token3] = ACTIONS(3369), + [aux_sym__val_number_decimal_token4] = ACTIONS(3371), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), + [sym_val_date] = ACTIONS(3373), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, - [1037] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(2446), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(2178), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1489), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1532), - [sym__unquoted_with_expr] = STATE(1808), - [sym__unquoted_anonymous_prefix] = STATE(7332), - [sym_comment] = STATE(1037), - [anon_sym_true] = ACTIONS(3321), - [anon_sym_false] = ACTIONS(3321), - [anon_sym_null] = ACTIONS(3323), - [aux_sym_cmd_identifier_token38] = ACTIONS(3325), - [aux_sym_cmd_identifier_token39] = ACTIONS(3325), - [aux_sym_cmd_identifier_token40] = ACTIONS(3325), + [983] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3140), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(2835), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1385), + [sym__unquoted_with_expr] = STATE(1618), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(983), + [anon_sym_true] = ACTIONS(3359), + [anon_sym_false] = ACTIONS(3359), + [anon_sym_null] = ACTIONS(3361), + [aux_sym_cmd_identifier_token38] = ACTIONS(3363), + [aux_sym_cmd_identifier_token39] = ACTIONS(3363), + [aux_sym_cmd_identifier_token40] = ACTIONS(3363), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_DOLLAR] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_DOLLAR] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(395), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3303), + [anon_sym_DOT_DOT] = ACTIONS(3257), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3331), - [aux_sym__val_number_decimal_token2] = ACTIONS(3333), - [aux_sym__val_number_decimal_token3] = ACTIONS(3335), - [aux_sym__val_number_decimal_token4] = ACTIONS(3337), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3365), + [aux_sym__val_number_decimal_token2] = ACTIONS(3367), + [aux_sym__val_number_decimal_token3] = ACTIONS(3369), + [aux_sym__val_number_decimal_token4] = ACTIONS(3371), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), + [sym_val_date] = ACTIONS(3373), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, - [1038] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(2447), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(2178), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1489), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1573), - [sym__unquoted_with_expr] = STATE(1811), - [sym__unquoted_anonymous_prefix] = STATE(7332), - [sym_comment] = STATE(1038), - [anon_sym_true] = ACTIONS(3321), - [anon_sym_false] = ACTIONS(3321), - [anon_sym_null] = ACTIONS(3323), - [aux_sym_cmd_identifier_token38] = ACTIONS(3325), - [aux_sym_cmd_identifier_token39] = ACTIONS(3325), - [aux_sym_cmd_identifier_token40] = ACTIONS(3325), + [984] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3141), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(2835), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1386), + [sym__unquoted_with_expr] = STATE(1619), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(984), + [anon_sym_true] = ACTIONS(3359), + [anon_sym_false] = ACTIONS(3359), + [anon_sym_null] = ACTIONS(3361), + [aux_sym_cmd_identifier_token38] = ACTIONS(3363), + [aux_sym_cmd_identifier_token39] = ACTIONS(3363), + [aux_sym_cmd_identifier_token40] = ACTIONS(3363), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_DOLLAR] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_DOLLAR] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(395), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3303), + [anon_sym_DOT_DOT] = ACTIONS(3257), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3331), - [aux_sym__val_number_decimal_token2] = ACTIONS(3333), - [aux_sym__val_number_decimal_token3] = ACTIONS(3335), - [aux_sym__val_number_decimal_token4] = ACTIONS(3337), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3365), + [aux_sym__val_number_decimal_token2] = ACTIONS(3367), + [aux_sym__val_number_decimal_token3] = ACTIONS(3369), + [aux_sym__val_number_decimal_token4] = ACTIONS(3371), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), + [sym_val_date] = ACTIONS(3373), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, - [1039] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(2448), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(2178), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1489), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1516), - [sym__unquoted_with_expr] = STATE(1812), - [sym__unquoted_anonymous_prefix] = STATE(7332), - [sym_comment] = STATE(1039), - [anon_sym_true] = ACTIONS(3321), - [anon_sym_false] = ACTIONS(3321), - [anon_sym_null] = ACTIONS(3323), - [aux_sym_cmd_identifier_token38] = ACTIONS(3325), - [aux_sym_cmd_identifier_token39] = ACTIONS(3325), - [aux_sym_cmd_identifier_token40] = ACTIONS(3325), + [985] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3142), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(2835), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1387), + [sym__unquoted_with_expr] = STATE(1620), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(985), + [anon_sym_true] = ACTIONS(3359), + [anon_sym_false] = ACTIONS(3359), + [anon_sym_null] = ACTIONS(3361), + [aux_sym_cmd_identifier_token38] = ACTIONS(3363), + [aux_sym_cmd_identifier_token39] = ACTIONS(3363), + [aux_sym_cmd_identifier_token40] = ACTIONS(3363), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_DOLLAR] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_DOLLAR] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(395), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3303), + [anon_sym_DOT_DOT] = ACTIONS(3257), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3331), - [aux_sym__val_number_decimal_token2] = ACTIONS(3333), - [aux_sym__val_number_decimal_token3] = ACTIONS(3335), - [aux_sym__val_number_decimal_token4] = ACTIONS(3337), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3365), + [aux_sym__val_number_decimal_token2] = ACTIONS(3367), + [aux_sym__val_number_decimal_token3] = ACTIONS(3369), + [aux_sym__val_number_decimal_token4] = ACTIONS(3371), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), + [sym_val_date] = ACTIONS(3373), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, - [1040] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(2449), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(2178), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1489), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1536), - [sym__unquoted_with_expr] = STATE(1794), - [sym__unquoted_anonymous_prefix] = STATE(7332), - [sym_comment] = STATE(1040), - [anon_sym_true] = ACTIONS(3321), - [anon_sym_false] = ACTIONS(3321), - [anon_sym_null] = ACTIONS(3323), - [aux_sym_cmd_identifier_token38] = ACTIONS(3325), - [aux_sym_cmd_identifier_token39] = ACTIONS(3325), - [aux_sym_cmd_identifier_token40] = ACTIONS(3325), + [986] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3143), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(2835), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1388), + [sym__unquoted_with_expr] = STATE(1622), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(986), + [anon_sym_true] = ACTIONS(3359), + [anon_sym_false] = ACTIONS(3359), + [anon_sym_null] = ACTIONS(3361), + [aux_sym_cmd_identifier_token38] = ACTIONS(3363), + [aux_sym_cmd_identifier_token39] = ACTIONS(3363), + [aux_sym_cmd_identifier_token40] = ACTIONS(3363), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_DOLLAR] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_DOLLAR] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(395), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3303), + [anon_sym_DOT_DOT] = ACTIONS(3257), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3331), - [aux_sym__val_number_decimal_token2] = ACTIONS(3333), - [aux_sym__val_number_decimal_token3] = ACTIONS(3335), - [aux_sym__val_number_decimal_token4] = ACTIONS(3337), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3365), + [aux_sym__val_number_decimal_token2] = ACTIONS(3367), + [aux_sym__val_number_decimal_token3] = ACTIONS(3369), + [aux_sym__val_number_decimal_token4] = ACTIONS(3371), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), + [sym_val_date] = ACTIONS(3373), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, - [1041] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(2450), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(2178), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(1489), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1545), - [sym__unquoted_with_expr] = STATE(1716), - [sym__unquoted_anonymous_prefix] = STATE(7332), - [sym_comment] = STATE(1041), - [anon_sym_true] = ACTIONS(3321), - [anon_sym_false] = ACTIONS(3321), - [anon_sym_null] = ACTIONS(3323), - [aux_sym_cmd_identifier_token38] = ACTIONS(3325), - [aux_sym_cmd_identifier_token39] = ACTIONS(3325), - [aux_sym_cmd_identifier_token40] = ACTIONS(3325), + [987] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3144), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(2835), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1391), + [sym__unquoted_with_expr] = STATE(1623), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(987), + [anon_sym_true] = ACTIONS(3359), + [anon_sym_false] = ACTIONS(3359), + [anon_sym_null] = ACTIONS(3361), + [aux_sym_cmd_identifier_token38] = ACTIONS(3363), + [aux_sym_cmd_identifier_token39] = ACTIONS(3363), + [aux_sym_cmd_identifier_token40] = ACTIONS(3363), [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_DOLLAR] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_DOLLAR] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(395), [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3303), + [anon_sym_DOT_DOT] = ACTIONS(3257), [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3331), - [aux_sym__val_number_decimal_token2] = ACTIONS(3333), - [aux_sym__val_number_decimal_token3] = ACTIONS(3335), - [aux_sym__val_number_decimal_token4] = ACTIONS(3337), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3365), + [aux_sym__val_number_decimal_token2] = ACTIONS(3367), + [aux_sym__val_number_decimal_token3] = ACTIONS(3369), + [aux_sym__val_number_decimal_token4] = ACTIONS(3371), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), + [sym_val_date] = ACTIONS(3373), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, - [1042] = { - [sym_expr_unary] = STATE(2564), - [sym__expr_unary_minus] = STATE(2610), - [sym_expr_binary] = STATE(2564), - [sym__expr_binary_expression] = STATE(2608), - [sym_expr_parenthesized] = STATE(2564), - [sym__val_range] = STATE(7911), - [sym__val_range_with_end] = STATE(7541), - [sym__value] = STATE(2564), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(3385), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(3168), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__str_double_quotes] = STATE(2144), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2607), - [sym__inter_double_quotes] = STATE(2626), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2228), - [sym__unquoted_with_expr] = STATE(2574), - [sym__unquoted_anonymous_prefix] = STATE(6983), - [sym_comment] = STATE(1042), - [anon_sym_true] = ACTIONS(3341), - [anon_sym_false] = ACTIONS(3341), - [anon_sym_null] = ACTIONS(3343), - [aux_sym_cmd_identifier_token38] = ACTIONS(3345), - [aux_sym_cmd_identifier_token39] = ACTIONS(3345), - [aux_sym_cmd_identifier_token40] = ACTIONS(3345), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_DOLLAR] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3281), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), - [anon_sym_DOT_DOT_LT] = ACTIONS(3283), - [aux_sym__val_number_decimal_token1] = ACTIONS(3347), - [aux_sym__val_number_decimal_token2] = ACTIONS(3349), - [aux_sym__val_number_decimal_token3] = ACTIONS(3351), - [aux_sym__val_number_decimal_token4] = ACTIONS(3353), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3355), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3295), + [988] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3145), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(2835), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1392), + [sym__unquoted_with_expr] = STATE(1626), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(988), + [anon_sym_true] = ACTIONS(3359), + [anon_sym_false] = ACTIONS(3359), + [anon_sym_null] = ACTIONS(3361), + [aux_sym_cmd_identifier_token38] = ACTIONS(3363), + [aux_sym_cmd_identifier_token39] = ACTIONS(3363), + [aux_sym_cmd_identifier_token40] = ACTIONS(3363), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_DOLLAR] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3365), + [aux_sym__val_number_decimal_token2] = ACTIONS(3367), + [aux_sym__val_number_decimal_token3] = ACTIONS(3369), + [aux_sym__val_number_decimal_token4] = ACTIONS(3371), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3373), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, - [1043] = { - [sym_expr_unary] = STATE(2564), - [sym__expr_unary_minus] = STATE(2610), - [sym_expr_binary] = STATE(2564), - [sym__expr_binary_expression] = STATE(3525), - [sym_expr_parenthesized] = STATE(2564), - [sym__val_range] = STATE(7911), - [sym__val_range_with_end] = STATE(7541), - [sym__value] = STATE(2564), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(3385), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(3168), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__str_double_quotes] = STATE(2144), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2607), - [sym__inter_double_quotes] = STATE(2626), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2235), - [sym__unquoted_with_expr] = STATE(2548), - [sym__unquoted_anonymous_prefix] = STATE(6983), - [sym_comment] = STATE(1043), - [anon_sym_true] = ACTIONS(3341), - [anon_sym_false] = ACTIONS(3341), - [anon_sym_null] = ACTIONS(3343), - [aux_sym_cmd_identifier_token38] = ACTIONS(3345), - [aux_sym_cmd_identifier_token39] = ACTIONS(3345), - [aux_sym_cmd_identifier_token40] = ACTIONS(3345), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_DOLLAR] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3281), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), - [anon_sym_DOT_DOT_LT] = ACTIONS(3283), - [aux_sym__val_number_decimal_token1] = ACTIONS(3347), - [aux_sym__val_number_decimal_token2] = ACTIONS(3349), - [aux_sym__val_number_decimal_token3] = ACTIONS(3351), - [aux_sym__val_number_decimal_token4] = ACTIONS(3353), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3355), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3295), + [989] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3146), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(2835), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1393), + [sym__unquoted_with_expr] = STATE(1627), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(989), + [anon_sym_true] = ACTIONS(3359), + [anon_sym_false] = ACTIONS(3359), + [anon_sym_null] = ACTIONS(3361), + [aux_sym_cmd_identifier_token38] = ACTIONS(3363), + [aux_sym_cmd_identifier_token39] = ACTIONS(3363), + [aux_sym_cmd_identifier_token40] = ACTIONS(3363), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_DOLLAR] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3365), + [aux_sym__val_number_decimal_token2] = ACTIONS(3367), + [aux_sym__val_number_decimal_token3] = ACTIONS(3369), + [aux_sym__val_number_decimal_token4] = ACTIONS(3371), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3373), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), [anon_sym_POUND] = ACTIONS(247), }, - [1044] = { - [sym_expr_unary] = STATE(2564), - [sym__expr_unary_minus] = STATE(2610), - [sym_expr_binary] = STATE(2564), - [sym__expr_binary_expression] = STATE(3526), - [sym_expr_parenthesized] = STATE(2564), - [sym__val_range] = STATE(7911), - [sym__val_range_with_end] = STATE(7541), - [sym__value] = STATE(2564), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(3385), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(3168), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__str_double_quotes] = STATE(2144), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2607), - [sym__inter_double_quotes] = STATE(2626), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2242), - [sym__unquoted_with_expr] = STATE(2579), - [sym__unquoted_anonymous_prefix] = STATE(6983), - [sym_comment] = STATE(1044), - [anon_sym_true] = ACTIONS(3341), - [anon_sym_false] = ACTIONS(3341), - [anon_sym_null] = ACTIONS(3343), - [aux_sym_cmd_identifier_token38] = ACTIONS(3345), - [aux_sym_cmd_identifier_token39] = ACTIONS(3345), - [aux_sym_cmd_identifier_token40] = ACTIONS(3345), + [990] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3147), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(2835), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1394), + [sym__unquoted_with_expr] = STATE(1628), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(990), + [anon_sym_true] = ACTIONS(3359), + [anon_sym_false] = ACTIONS(3359), + [anon_sym_null] = ACTIONS(3361), + [aux_sym_cmd_identifier_token38] = ACTIONS(3363), + [aux_sym_cmd_identifier_token39] = ACTIONS(3363), + [aux_sym_cmd_identifier_token40] = ACTIONS(3363), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_DOLLAR] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3365), + [aux_sym__val_number_decimal_token2] = ACTIONS(3367), + [aux_sym__val_number_decimal_token3] = ACTIONS(3369), + [aux_sym__val_number_decimal_token4] = ACTIONS(3371), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3373), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_POUND] = ACTIONS(247), + }, + [991] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3148), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(2835), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1397), + [sym__unquoted_with_expr] = STATE(1629), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(991), + [anon_sym_true] = ACTIONS(3359), + [anon_sym_false] = ACTIONS(3359), + [anon_sym_null] = ACTIONS(3361), + [aux_sym_cmd_identifier_token38] = ACTIONS(3363), + [aux_sym_cmd_identifier_token39] = ACTIONS(3363), + [aux_sym_cmd_identifier_token40] = ACTIONS(3363), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_DOLLAR] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3365), + [aux_sym__val_number_decimal_token2] = ACTIONS(3367), + [aux_sym__val_number_decimal_token3] = ACTIONS(3369), + [aux_sym__val_number_decimal_token4] = ACTIONS(3371), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3373), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_POUND] = ACTIONS(247), + }, + [992] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3149), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(2835), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1398), + [sym__unquoted_with_expr] = STATE(1630), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(992), + [anon_sym_true] = ACTIONS(3359), + [anon_sym_false] = ACTIONS(3359), + [anon_sym_null] = ACTIONS(3361), + [aux_sym_cmd_identifier_token38] = ACTIONS(3363), + [aux_sym_cmd_identifier_token39] = ACTIONS(3363), + [aux_sym_cmd_identifier_token40] = ACTIONS(3363), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_DOLLAR] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3365), + [aux_sym__val_number_decimal_token2] = ACTIONS(3367), + [aux_sym__val_number_decimal_token3] = ACTIONS(3369), + [aux_sym__val_number_decimal_token4] = ACTIONS(3371), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3373), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_POUND] = ACTIONS(247), + }, + [993] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3150), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(2835), + [sym__val_number] = STATE(2266), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1946), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1399), + [sym__unquoted_with_expr] = STATE(1631), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(993), + [anon_sym_true] = ACTIONS(3359), + [anon_sym_false] = ACTIONS(3359), + [anon_sym_null] = ACTIONS(3361), + [aux_sym_cmd_identifier_token38] = ACTIONS(3363), + [aux_sym_cmd_identifier_token39] = ACTIONS(3363), + [aux_sym_cmd_identifier_token40] = ACTIONS(3363), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_DOLLAR] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(187), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(209), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3365), + [aux_sym__val_number_decimal_token2] = ACTIONS(3367), + [aux_sym__val_number_decimal_token3] = ACTIONS(3369), + [aux_sym__val_number_decimal_token4] = ACTIONS(3371), + [aux_sym__val_number_token1] = ACTIONS(437), + [aux_sym__val_number_token2] = ACTIONS(437), + [aux_sym__val_number_token3] = ACTIONS(437), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3373), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__str_single_quotes] = ACTIONS(441), + [sym__str_back_ticks] = ACTIONS(441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_POUND] = ACTIONS(247), + }, + [994] = { + [sym_expr_unary] = STATE(1614), + [sym__expr_unary_minus] = STATE(1644), + [sym_expr_binary] = STATE(1614), + [sym__expr_binary_expression] = STATE(3746), + [sym_expr_parenthesized] = STATE(1614), + [sym__val_range] = STATE(7592), + [sym__val_range_with_end] = STATE(7402), + [sym__value] = STATE(1614), + [sym_val_nothing] = STATE(1675), + [sym_val_bool] = STATE(3524), + [sym_val_variable] = STATE(1675), + [sym_val_number] = STATE(1675), + [sym__val_number_decimal] = STATE(3375), + [sym__val_number] = STATE(1676), + [sym_val_duration] = STATE(1675), + [sym_val_filesize] = STATE(1675), + [sym_val_binary] = STATE(1675), + [sym_val_string] = STATE(1675), + [sym__str_double_quotes] = STATE(1389), + [sym_val_interpolated] = STATE(1675), + [sym__inter_single_quotes] = STATE(1708), + [sym__inter_double_quotes] = STATE(1709), + [sym_val_list] = STATE(1675), + [sym_val_record] = STATE(1675), + [sym_val_table] = STATE(1675), + [sym_val_closure] = STATE(1675), + [sym_unquoted] = STATE(1388), + [sym__unquoted_with_expr] = STATE(1622), + [sym__unquoted_anonymous_prefix] = STATE(7135), + [sym_comment] = STATE(994), + [anon_sym_true] = ACTIONS(3243), + [anon_sym_false] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [aux_sym_cmd_identifier_token38] = ACTIONS(3247), + [aux_sym_cmd_identifier_token39] = ACTIONS(3247), + [aux_sym_cmd_identifier_token40] = ACTIONS(3247), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_DOLLAR] = ACTIONS(3253), + [anon_sym_DASH] = ACTIONS(395), + [aux_sym_ctrl_match_token1] = ACTIONS(3255), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [aux_sym_expr_unary_token1] = ACTIONS(3259), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_LT] = ACTIONS(3261), + [aux_sym__val_number_decimal_token1] = ACTIONS(3263), + [aux_sym__val_number_decimal_token2] = ACTIONS(3265), + [aux_sym__val_number_decimal_token3] = ACTIONS(3267), + [aux_sym__val_number_decimal_token4] = ACTIONS(3269), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3271), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3273), + [anon_sym_POUND] = ACTIONS(247), + }, + [995] = { + [sym_expr_unary] = STATE(2402), + [sym__expr_unary_minus] = STATE(2398), + [sym_expr_binary] = STATE(2402), + [sym__expr_binary_expression] = STATE(2370), + [sym_expr_parenthesized] = STATE(2402), + [sym__val_range] = STATE(7784), + [sym__val_range_with_end] = STATE(7383), + [sym__value] = STATE(2402), + [sym_val_nothing] = STATE(2348), + [sym_val_bool] = STATE(2060), + [sym_val_variable] = STATE(2348), + [sym_val_number] = STATE(2348), + [sym__val_number_decimal] = STATE(1347), + [sym__val_number] = STATE(2401), + [sym_val_duration] = STATE(2348), + [sym_val_filesize] = STATE(2348), + [sym_val_binary] = STATE(2348), + [sym_val_string] = STATE(2348), + [sym__str_double_quotes] = STATE(1984), + [sym_val_interpolated] = STATE(2348), + [sym__inter_single_quotes] = STATE(2404), + [sym__inter_double_quotes] = STATE(2407), + [sym_val_list] = STATE(2348), + [sym_val_record] = STATE(2348), + [sym_val_table] = STATE(2348), + [sym_val_closure] = STATE(2348), + [sym_unquoted] = STATE(2123), + [sym__unquoted_with_expr] = STATE(2391), + [sym__unquoted_anonymous_prefix] = STATE(6671), + [sym_comment] = STATE(995), + [anon_sym_true] = ACTIONS(3217), + [anon_sym_false] = ACTIONS(3217), + [anon_sym_null] = ACTIONS(3219), + [aux_sym_cmd_identifier_token38] = ACTIONS(3221), + [aux_sym_cmd_identifier_token39] = ACTIONS(3221), + [aux_sym_cmd_identifier_token40] = ACTIONS(3221), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_DOLLAR] = ACTIONS(3279), + [anon_sym_LPAREN] = ACTIONS(3223), + [anon_sym_DOLLAR] = ACTIONS(3225), [anon_sym_DASH] = ACTIONS(53), [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3281), + [anon_sym_DOT_DOT] = ACTIONS(3227), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), - [anon_sym_DOT_DOT_LT] = ACTIONS(3283), - [aux_sym__val_number_decimal_token1] = ACTIONS(3347), - [aux_sym__val_number_decimal_token2] = ACTIONS(3349), - [aux_sym__val_number_decimal_token3] = ACTIONS(3351), - [aux_sym__val_number_decimal_token4] = ACTIONS(3353), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3229), + [anon_sym_DOT_DOT_LT] = ACTIONS(3229), + [aux_sym__val_number_decimal_token1] = ACTIONS(3231), + [aux_sym__val_number_decimal_token2] = ACTIONS(3233), + [aux_sym__val_number_decimal_token3] = ACTIONS(3235), + [aux_sym__val_number_decimal_token4] = ACTIONS(3237), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3355), + [sym_val_date] = ACTIONS(3239), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3295), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3241), [anon_sym_POUND] = ACTIONS(247), }, - [1045] = { - [sym_expr_unary] = STATE(2564), - [sym__expr_unary_minus] = STATE(2610), - [sym_expr_binary] = STATE(2564), - [sym__expr_binary_expression] = STATE(3527), - [sym_expr_parenthesized] = STATE(2564), - [sym__val_range] = STATE(7911), - [sym__val_range_with_end] = STATE(7541), - [sym__value] = STATE(2564), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(3385), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(3168), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__str_double_quotes] = STATE(2144), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2607), - [sym__inter_double_quotes] = STATE(2626), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2246), - [sym__unquoted_with_expr] = STATE(2586), - [sym__unquoted_anonymous_prefix] = STATE(6983), - [sym_comment] = STATE(1045), - [anon_sym_true] = ACTIONS(3341), - [anon_sym_false] = ACTIONS(3341), - [anon_sym_null] = ACTIONS(3343), - [aux_sym_cmd_identifier_token38] = ACTIONS(3345), - [aux_sym_cmd_identifier_token39] = ACTIONS(3345), - [aux_sym_cmd_identifier_token40] = ACTIONS(3345), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_DOLLAR] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3281), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), - [anon_sym_DOT_DOT_LT] = ACTIONS(3283), - [aux_sym__val_number_decimal_token1] = ACTIONS(3347), - [aux_sym__val_number_decimal_token2] = ACTIONS(3349), - [aux_sym__val_number_decimal_token3] = ACTIONS(3351), - [aux_sym__val_number_decimal_token4] = ACTIONS(3353), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3355), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3295), + [996] = { + [sym_expr_unary] = STATE(4441), + [sym__expr_unary_minus] = STATE(4266), + [sym_expr_parenthesized] = STATE(4043), + [sym_val_range] = STATE(4441), + [sym__val_range] = STATE(7633), + [sym__val_range_with_end] = STATE(7419), + [sym__value] = STATE(4441), + [sym_val_nothing] = STATE(3939), + [sym_val_bool] = STATE(4084), + [sym_val_variable] = STATE(4005), + [sym_val_number] = STATE(3939), + [sym__val_number_decimal] = STATE(3837), + [sym__val_number] = STATE(3437), + [sym_val_duration] = STATE(3939), + [sym_val_filesize] = STATE(3939), + [sym_val_binary] = STATE(3939), + [sym_val_string] = STATE(3939), + [sym__str_double_quotes] = STATE(2643), + [sym_val_interpolated] = STATE(3939), + [sym__inter_single_quotes] = STATE(3938), + [sym__inter_double_quotes] = STATE(3966), + [sym_val_list] = STATE(3939), + [sym_val_record] = STATE(3939), + [sym_val_table] = STATE(3939), + [sym_val_closure] = STATE(3939), + [sym_unquoted] = STATE(4163), + [sym__unquoted_with_expr] = STATE(4366), + [sym__unquoted_anonymous_prefix] = STATE(6704), + [sym_comment] = STATE(996), + [anon_sym_true] = ACTIONS(3375), + [anon_sym_false] = ACTIONS(3375), + [anon_sym_null] = ACTIONS(3377), + [aux_sym_cmd_identifier_token38] = ACTIONS(3379), + [aux_sym_cmd_identifier_token39] = ACTIONS(3379), + [aux_sym_cmd_identifier_token40] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3381), + [anon_sym_LPAREN] = ACTIONS(3383), + [anon_sym_DOLLAR] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(3387), + [aux_sym_ctrl_match_token1] = ACTIONS(3389), + [anon_sym_DOT_DOT] = ACTIONS(3391), + [aux_sym_expr_unary_token1] = ACTIONS(3393), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3395), + [anon_sym_DOT_DOT_LT] = ACTIONS(3395), + [aux_sym__val_number_decimal_token1] = ACTIONS(3397), + [aux_sym__val_number_decimal_token2] = ACTIONS(3399), + [aux_sym__val_number_decimal_token3] = ACTIONS(3401), + [aux_sym__val_number_decimal_token4] = ACTIONS(3403), + [aux_sym__val_number_token1] = ACTIONS(3405), + [aux_sym__val_number_token2] = ACTIONS(3405), + [aux_sym__val_number_token3] = ACTIONS(3405), + [anon_sym_0b] = ACTIONS(3407), + [anon_sym_0o] = ACTIONS(3409), + [anon_sym_0x] = ACTIONS(3409), + [sym_val_date] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(3413), + [sym__str_single_quotes] = ACTIONS(3415), + [sym__str_back_ticks] = ACTIONS(3415), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3417), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3421), + [anon_sym_POUND] = ACTIONS(247), + }, + [997] = { + [sym_expr_unary] = STATE(4329), + [sym__expr_unary_minus] = STATE(4266), + [sym_expr_parenthesized] = STATE(4031), + [sym_val_range] = STATE(4329), + [sym__val_range] = STATE(7633), + [sym__val_range_with_end] = STATE(7419), + [sym__value] = STATE(4329), + [sym_val_nothing] = STATE(3939), + [sym_val_bool] = STATE(4084), + [sym_val_variable] = STATE(4005), + [sym_val_number] = STATE(3939), + [sym__val_number_decimal] = STATE(3837), + [sym__val_number] = STATE(3437), + [sym_val_duration] = STATE(3939), + [sym_val_filesize] = STATE(3939), + [sym_val_binary] = STATE(3939), + [sym_val_string] = STATE(3939), + [sym__str_double_quotes] = STATE(2643), + [sym_val_interpolated] = STATE(3939), + [sym__inter_single_quotes] = STATE(3938), + [sym__inter_double_quotes] = STATE(3966), + [sym_val_list] = STATE(3939), + [sym_val_record] = STATE(3939), + [sym_val_table] = STATE(3939), + [sym_val_closure] = STATE(3939), + [sym_unquoted] = STATE(4075), + [sym__unquoted_with_expr] = STATE(4388), + [sym__unquoted_anonymous_prefix] = STATE(6704), + [sym_comment] = STATE(997), + [anon_sym_true] = ACTIONS(3375), + [anon_sym_false] = ACTIONS(3375), + [anon_sym_null] = ACTIONS(3377), + [aux_sym_cmd_identifier_token38] = ACTIONS(3379), + [aux_sym_cmd_identifier_token39] = ACTIONS(3379), + [aux_sym_cmd_identifier_token40] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3381), + [anon_sym_LPAREN] = ACTIONS(3383), + [anon_sym_DOLLAR] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(3387), + [aux_sym_ctrl_match_token1] = ACTIONS(3389), + [anon_sym_DOT_DOT] = ACTIONS(3391), + [aux_sym_expr_unary_token1] = ACTIONS(3393), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3395), + [anon_sym_DOT_DOT_LT] = ACTIONS(3395), + [aux_sym__val_number_decimal_token1] = ACTIONS(3397), + [aux_sym__val_number_decimal_token2] = ACTIONS(3399), + [aux_sym__val_number_decimal_token3] = ACTIONS(3401), + [aux_sym__val_number_decimal_token4] = ACTIONS(3403), + [aux_sym__val_number_token1] = ACTIONS(3405), + [aux_sym__val_number_token2] = ACTIONS(3405), + [aux_sym__val_number_token3] = ACTIONS(3405), + [anon_sym_0b] = ACTIONS(3407), + [anon_sym_0o] = ACTIONS(3409), + [anon_sym_0x] = ACTIONS(3409), + [sym_val_date] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(3413), + [sym__str_single_quotes] = ACTIONS(3415), + [sym__str_back_ticks] = ACTIONS(3415), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3417), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3421), + [anon_sym_POUND] = ACTIONS(247), + }, + [998] = { + [sym_expr_unary] = STATE(4473), + [sym__expr_unary_minus] = STATE(4560), + [sym_expr_parenthesized] = STATE(4089), + [sym_val_range] = STATE(4473), + [sym__val_range] = STATE(7486), + [sym__val_range_with_end] = STATE(7416), + [sym__value] = STATE(4473), + [sym_val_nothing] = STATE(4088), + [sym_val_bool] = STATE(4201), + [sym_val_variable] = STATE(4068), + [sym_val_number] = STATE(4088), + [sym__val_number_decimal] = STATE(3860), + [sym__val_number] = STATE(4128), + [sym_val_duration] = STATE(4088), + [sym_val_filesize] = STATE(4088), + [sym_val_binary] = STATE(4088), + [sym_val_string] = STATE(4088), + [sym__str_double_quotes] = STATE(3509), + [sym_val_interpolated] = STATE(4088), + [sym__inter_single_quotes] = STATE(4155), + [sym__inter_double_quotes] = STATE(4156), + [sym_val_list] = STATE(4088), + [sym_val_record] = STATE(4088), + [sym_val_table] = STATE(4088), + [sym_val_closure] = STATE(4088), + [sym_unquoted] = STATE(4191), + [sym__unquoted_with_expr] = STATE(4480), + [sym__unquoted_anonymous_prefix] = STATE(6681), + [sym_comment] = STATE(998), + [anon_sym_true] = ACTIONS(3423), + [anon_sym_false] = ACTIONS(3423), + [anon_sym_null] = ACTIONS(3425), + [aux_sym_cmd_identifier_token38] = ACTIONS(3427), + [aux_sym_cmd_identifier_token39] = ACTIONS(3427), + [aux_sym_cmd_identifier_token40] = ACTIONS(3427), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3431), + [anon_sym_DOLLAR] = ACTIONS(3433), + [anon_sym_DASH] = ACTIONS(3435), + [aux_sym_ctrl_match_token1] = ACTIONS(3437), + [anon_sym_DOT_DOT] = ACTIONS(3439), + [aux_sym_expr_unary_token1] = ACTIONS(3441), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3443), + [anon_sym_DOT_DOT_LT] = ACTIONS(3443), + [aux_sym__val_number_decimal_token1] = ACTIONS(3445), + [aux_sym__val_number_decimal_token2] = ACTIONS(3447), + [aux_sym__val_number_decimal_token3] = ACTIONS(3449), + [aux_sym__val_number_decimal_token4] = ACTIONS(3451), + [aux_sym__val_number_token1] = ACTIONS(3453), + [aux_sym__val_number_token2] = ACTIONS(3453), + [aux_sym__val_number_token3] = ACTIONS(3453), + [anon_sym_0b] = ACTIONS(3455), + [anon_sym_0o] = ACTIONS(3457), + [anon_sym_0x] = ACTIONS(3457), + [sym_val_date] = ACTIONS(3459), + [anon_sym_DQUOTE] = ACTIONS(3461), + [sym__str_single_quotes] = ACTIONS(3463), + [sym__str_back_ticks] = ACTIONS(3463), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3465), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3467), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3469), + [anon_sym_POUND] = ACTIONS(247), + }, + [999] = { + [sym_expr_unary] = STATE(4484), + [sym__expr_unary_minus] = STATE(4560), + [sym_expr_parenthesized] = STATE(4092), + [sym_val_range] = STATE(4484), + [sym__val_range] = STATE(7486), + [sym__val_range_with_end] = STATE(7416), + [sym__value] = STATE(4484), + [sym_val_nothing] = STATE(4088), + [sym_val_bool] = STATE(4201), + [sym_val_variable] = STATE(4068), + [sym_val_number] = STATE(4088), + [sym__val_number_decimal] = STATE(3860), + [sym__val_number] = STATE(4128), + [sym_val_duration] = STATE(4088), + [sym_val_filesize] = STATE(4088), + [sym_val_binary] = STATE(4088), + [sym_val_string] = STATE(4088), + [sym__str_double_quotes] = STATE(3509), + [sym_val_interpolated] = STATE(4088), + [sym__inter_single_quotes] = STATE(4155), + [sym__inter_double_quotes] = STATE(4156), + [sym_val_list] = STATE(4088), + [sym_val_record] = STATE(4088), + [sym_val_table] = STATE(4088), + [sym_val_closure] = STATE(4088), + [sym_unquoted] = STATE(4203), + [sym__unquoted_with_expr] = STATE(4490), + [sym__unquoted_anonymous_prefix] = STATE(6681), + [sym_comment] = STATE(999), + [anon_sym_true] = ACTIONS(3423), + [anon_sym_false] = ACTIONS(3423), + [anon_sym_null] = ACTIONS(3425), + [aux_sym_cmd_identifier_token38] = ACTIONS(3427), + [aux_sym_cmd_identifier_token39] = ACTIONS(3427), + [aux_sym_cmd_identifier_token40] = ACTIONS(3427), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3431), + [anon_sym_DOLLAR] = ACTIONS(3433), + [anon_sym_DASH] = ACTIONS(3435), + [aux_sym_ctrl_match_token1] = ACTIONS(3437), + [anon_sym_DOT_DOT] = ACTIONS(3439), + [aux_sym_expr_unary_token1] = ACTIONS(3441), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3443), + [anon_sym_DOT_DOT_LT] = ACTIONS(3443), + [aux_sym__val_number_decimal_token1] = ACTIONS(3445), + [aux_sym__val_number_decimal_token2] = ACTIONS(3447), + [aux_sym__val_number_decimal_token3] = ACTIONS(3449), + [aux_sym__val_number_decimal_token4] = ACTIONS(3451), + [aux_sym__val_number_token1] = ACTIONS(3453), + [aux_sym__val_number_token2] = ACTIONS(3453), + [aux_sym__val_number_token3] = ACTIONS(3453), + [anon_sym_0b] = ACTIONS(3455), + [anon_sym_0o] = ACTIONS(3457), + [anon_sym_0x] = ACTIONS(3457), + [sym_val_date] = ACTIONS(3459), + [anon_sym_DQUOTE] = ACTIONS(3461), + [sym__str_single_quotes] = ACTIONS(3463), + [sym__str_back_ticks] = ACTIONS(3463), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3465), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3467), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3469), + [anon_sym_POUND] = ACTIONS(247), + }, + [1000] = { + [sym_expr_unary] = STATE(4482), + [sym__expr_unary_minus] = STATE(4560), + [sym_expr_parenthesized] = STATE(4091), + [sym_val_range] = STATE(4482), + [sym__val_range] = STATE(7486), + [sym__val_range_with_end] = STATE(7416), + [sym__value] = STATE(4482), + [sym_val_nothing] = STATE(4088), + [sym_val_bool] = STATE(4201), + [sym_val_variable] = STATE(4068), + [sym_val_number] = STATE(4088), + [sym__val_number_decimal] = STATE(3860), + [sym__val_number] = STATE(4128), + [sym_val_duration] = STATE(4088), + [sym_val_filesize] = STATE(4088), + [sym_val_binary] = STATE(4088), + [sym_val_string] = STATE(4088), + [sym__str_double_quotes] = STATE(3509), + [sym_val_interpolated] = STATE(4088), + [sym__inter_single_quotes] = STATE(4155), + [sym__inter_double_quotes] = STATE(4156), + [sym_val_list] = STATE(4088), + [sym_val_record] = STATE(4088), + [sym_val_table] = STATE(4088), + [sym_val_closure] = STATE(4088), + [sym_unquoted] = STATE(4197), + [sym__unquoted_with_expr] = STATE(4483), + [sym__unquoted_anonymous_prefix] = STATE(6681), + [sym_comment] = STATE(1000), + [anon_sym_true] = ACTIONS(3423), + [anon_sym_false] = ACTIONS(3423), + [anon_sym_null] = ACTIONS(3425), + [aux_sym_cmd_identifier_token38] = ACTIONS(3427), + [aux_sym_cmd_identifier_token39] = ACTIONS(3427), + [aux_sym_cmd_identifier_token40] = ACTIONS(3427), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3431), + [anon_sym_DOLLAR] = ACTIONS(3433), + [anon_sym_DASH] = ACTIONS(3435), + [aux_sym_ctrl_match_token1] = ACTIONS(3437), + [anon_sym_DOT_DOT] = ACTIONS(3439), + [aux_sym_expr_unary_token1] = ACTIONS(3441), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3443), + [anon_sym_DOT_DOT_LT] = ACTIONS(3443), + [aux_sym__val_number_decimal_token1] = ACTIONS(3445), + [aux_sym__val_number_decimal_token2] = ACTIONS(3447), + [aux_sym__val_number_decimal_token3] = ACTIONS(3449), + [aux_sym__val_number_decimal_token4] = ACTIONS(3451), + [aux_sym__val_number_token1] = ACTIONS(3453), + [aux_sym__val_number_token2] = ACTIONS(3453), + [aux_sym__val_number_token3] = ACTIONS(3453), + [anon_sym_0b] = ACTIONS(3455), + [anon_sym_0o] = ACTIONS(3457), + [anon_sym_0x] = ACTIONS(3457), + [sym_val_date] = ACTIONS(3459), + [anon_sym_DQUOTE] = ACTIONS(3461), + [sym__str_single_quotes] = ACTIONS(3463), + [sym__str_back_ticks] = ACTIONS(3463), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3465), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3467), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3469), + [anon_sym_POUND] = ACTIONS(247), + }, + [1001] = { + [sym_expr_unary] = STATE(4410), + [sym__expr_unary_minus] = STATE(4266), + [sym_expr_parenthesized] = STATE(4019), + [sym_val_range] = STATE(4410), + [sym__val_range] = STATE(7633), + [sym__val_range_with_end] = STATE(7419), + [sym__value] = STATE(4410), + [sym_val_nothing] = STATE(3939), + [sym_val_bool] = STATE(4084), + [sym_val_variable] = STATE(4005), + [sym_val_number] = STATE(3939), + [sym__val_number_decimal] = STATE(3837), + [sym__val_number] = STATE(3437), + [sym_val_duration] = STATE(3939), + [sym_val_filesize] = STATE(3939), + [sym_val_binary] = STATE(3939), + [sym_val_string] = STATE(3939), + [sym__str_double_quotes] = STATE(2643), + [sym_val_interpolated] = STATE(3939), + [sym__inter_single_quotes] = STATE(3938), + [sym__inter_double_quotes] = STATE(3966), + [sym_val_list] = STATE(3939), + [sym_val_record] = STATE(3939), + [sym_val_table] = STATE(3939), + [sym_val_closure] = STATE(3939), + [sym_unquoted] = STATE(4081), + [sym__unquoted_with_expr] = STATE(4440), + [sym__unquoted_anonymous_prefix] = STATE(6704), + [sym_comment] = STATE(1001), + [anon_sym_true] = ACTIONS(3375), + [anon_sym_false] = ACTIONS(3375), + [anon_sym_null] = ACTIONS(3377), + [aux_sym_cmd_identifier_token38] = ACTIONS(3379), + [aux_sym_cmd_identifier_token39] = ACTIONS(3379), + [aux_sym_cmd_identifier_token40] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3381), + [anon_sym_LPAREN] = ACTIONS(3383), + [anon_sym_DOLLAR] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(3387), + [aux_sym_ctrl_match_token1] = ACTIONS(3389), + [anon_sym_DOT_DOT] = ACTIONS(3391), + [aux_sym_expr_unary_token1] = ACTIONS(3393), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3395), + [anon_sym_DOT_DOT_LT] = ACTIONS(3395), + [aux_sym__val_number_decimal_token1] = ACTIONS(3397), + [aux_sym__val_number_decimal_token2] = ACTIONS(3399), + [aux_sym__val_number_decimal_token3] = ACTIONS(3401), + [aux_sym__val_number_decimal_token4] = ACTIONS(3403), + [aux_sym__val_number_token1] = ACTIONS(3405), + [aux_sym__val_number_token2] = ACTIONS(3405), + [aux_sym__val_number_token3] = ACTIONS(3405), + [anon_sym_0b] = ACTIONS(3407), + [anon_sym_0o] = ACTIONS(3409), + [anon_sym_0x] = ACTIONS(3409), + [sym_val_date] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(3413), + [sym__str_single_quotes] = ACTIONS(3415), + [sym__str_back_ticks] = ACTIONS(3415), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3417), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3421), + [anon_sym_POUND] = ACTIONS(247), + }, + [1002] = { + [sym_match_arm] = STATE(5952), + [sym_default_arm] = STATE(7643), + [sym_match_pattern] = STATE(7640), + [sym__match_pattern] = STATE(5944), + [sym__match_pattern_expression] = STATE(6857), + [sym__match_pattern_value] = STATE(6861), + [sym__match_pattern_list] = STATE(6862), + [sym__match_pattern_record] = STATE(6888), + [sym_expr_parenthesized] = STATE(5713), + [sym_val_range] = STATE(6861), + [sym__val_range] = STATE(7551), + [sym_val_nothing] = STATE(6915), + [sym_val_bool] = STATE(6595), + [sym_val_variable] = STATE(5754), + [sym_val_number] = STATE(6915), + [sym__val_number_decimal] = STATE(5295), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(6915), + [sym_val_filesize] = STATE(6915), + [sym_val_binary] = STATE(6915), + [sym_val_string] = STATE(6915), + [sym__str_double_quotes] = STATE(1707), + [sym_val_table] = STATE(6915), + [sym_unquoted] = STATE(6919), + [sym__unquoted_anonymous_prefix] = STATE(7814), + [sym_comment] = STATE(1002), + [aux_sym_shebang_repeat1] = STATE(1010), + [aux_sym_ctrl_match_repeat1] = STATE(1050), + [anon_sym_true] = ACTIONS(3471), + [anon_sym_false] = ACTIONS(3471), + [anon_sym_null] = ACTIONS(3473), + [aux_sym_cmd_identifier_token38] = ACTIONS(3475), + [aux_sym_cmd_identifier_token39] = ACTIONS(3475), + [aux_sym_cmd_identifier_token40] = ACTIONS(3475), + [sym__newline] = ACTIONS(3477), + [anon_sym_LBRACK] = ACTIONS(3479), + [anon_sym_LPAREN] = ACTIONS(3481), + [anon_sym_DOLLAR] = ACTIONS(3483), + [aux_sym_ctrl_match_token1] = ACTIONS(3485), + [anon_sym_RBRACE] = ACTIONS(3487), + [anon_sym__] = ACTIONS(3489), + [anon_sym_DOT_DOT] = ACTIONS(3491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3493), + [anon_sym_DOT_DOT_LT] = ACTIONS(3493), + [aux_sym__val_number_decimal_token1] = ACTIONS(3495), + [aux_sym__val_number_decimal_token2] = ACTIONS(3497), + [aux_sym__val_number_decimal_token3] = ACTIONS(3499), + [aux_sym__val_number_decimal_token4] = ACTIONS(3501), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3503), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_POUND] = ACTIONS(247), + }, + [1003] = { + [sym_match_arm] = STATE(5942), + [sym_default_arm] = STATE(7574), + [sym_match_pattern] = STATE(7640), + [sym__match_pattern] = STATE(5944), + [sym__match_pattern_expression] = STATE(6857), + [sym__match_pattern_value] = STATE(6861), + [sym__match_pattern_list] = STATE(6862), + [sym__match_pattern_record] = STATE(6888), + [sym_expr_parenthesized] = STATE(5713), + [sym_val_range] = STATE(6861), + [sym__val_range] = STATE(7551), + [sym_val_nothing] = STATE(6915), + [sym_val_bool] = STATE(6595), + [sym_val_variable] = STATE(5754), + [sym_val_number] = STATE(6915), + [sym__val_number_decimal] = STATE(5295), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(6915), + [sym_val_filesize] = STATE(6915), + [sym_val_binary] = STATE(6915), + [sym_val_string] = STATE(6915), + [sym__str_double_quotes] = STATE(1707), + [sym_val_table] = STATE(6915), + [sym_unquoted] = STATE(6919), + [sym__unquoted_anonymous_prefix] = STATE(7814), + [sym_comment] = STATE(1003), + [aux_sym_shebang_repeat1] = STATE(1016), + [aux_sym_ctrl_match_repeat1] = STATE(1055), + [anon_sym_true] = ACTIONS(3471), + [anon_sym_false] = ACTIONS(3471), + [anon_sym_null] = ACTIONS(3473), + [aux_sym_cmd_identifier_token38] = ACTIONS(3475), + [aux_sym_cmd_identifier_token39] = ACTIONS(3475), + [aux_sym_cmd_identifier_token40] = ACTIONS(3475), + [sym__newline] = ACTIONS(3477), + [anon_sym_LBRACK] = ACTIONS(3479), + [anon_sym_LPAREN] = ACTIONS(3481), + [anon_sym_DOLLAR] = ACTIONS(3483), + [aux_sym_ctrl_match_token1] = ACTIONS(3485), + [anon_sym_RBRACE] = ACTIONS(3505), + [anon_sym__] = ACTIONS(3489), + [anon_sym_DOT_DOT] = ACTIONS(3491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3493), + [anon_sym_DOT_DOT_LT] = ACTIONS(3493), + [aux_sym__val_number_decimal_token1] = ACTIONS(3495), + [aux_sym__val_number_decimal_token2] = ACTIONS(3497), + [aux_sym__val_number_decimal_token3] = ACTIONS(3499), + [aux_sym__val_number_decimal_token4] = ACTIONS(3501), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3503), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_POUND] = ACTIONS(247), + }, + [1004] = { + [sym_match_arm] = STATE(6020), + [sym_default_arm] = STATE(7567), + [sym_match_pattern] = STATE(7640), + [sym__match_pattern] = STATE(5944), + [sym__match_pattern_expression] = STATE(6857), + [sym__match_pattern_value] = STATE(6861), + [sym__match_pattern_list] = STATE(6862), + [sym__match_pattern_record] = STATE(6888), + [sym_expr_parenthesized] = STATE(5713), + [sym_val_range] = STATE(6861), + [sym__val_range] = STATE(7551), + [sym_val_nothing] = STATE(6915), + [sym_val_bool] = STATE(6595), + [sym_val_variable] = STATE(5754), + [sym_val_number] = STATE(6915), + [sym__val_number_decimal] = STATE(5295), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(6915), + [sym_val_filesize] = STATE(6915), + [sym_val_binary] = STATE(6915), + [sym_val_string] = STATE(6915), + [sym__str_double_quotes] = STATE(1707), + [sym_val_table] = STATE(6915), + [sym_unquoted] = STATE(6919), + [sym__unquoted_anonymous_prefix] = STATE(7814), + [sym_comment] = STATE(1004), + [aux_sym_shebang_repeat1] = STATE(1014), + [aux_sym_ctrl_match_repeat1] = STATE(1036), + [anon_sym_true] = ACTIONS(3471), + [anon_sym_false] = ACTIONS(3471), + [anon_sym_null] = ACTIONS(3473), + [aux_sym_cmd_identifier_token38] = ACTIONS(3475), + [aux_sym_cmd_identifier_token39] = ACTIONS(3475), + [aux_sym_cmd_identifier_token40] = ACTIONS(3475), + [sym__newline] = ACTIONS(3477), + [anon_sym_LBRACK] = ACTIONS(3479), + [anon_sym_LPAREN] = ACTIONS(3481), + [anon_sym_DOLLAR] = ACTIONS(3483), + [aux_sym_ctrl_match_token1] = ACTIONS(3485), + [anon_sym_RBRACE] = ACTIONS(3507), + [anon_sym__] = ACTIONS(3489), + [anon_sym_DOT_DOT] = ACTIONS(3491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3493), + [anon_sym_DOT_DOT_LT] = ACTIONS(3493), + [aux_sym__val_number_decimal_token1] = ACTIONS(3495), + [aux_sym__val_number_decimal_token2] = ACTIONS(3497), + [aux_sym__val_number_decimal_token3] = ACTIONS(3499), + [aux_sym__val_number_decimal_token4] = ACTIONS(3501), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3503), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_POUND] = ACTIONS(247), + }, + [1005] = { + [sym_match_arm] = STATE(6021), + [sym_default_arm] = STATE(7585), + [sym_match_pattern] = STATE(7640), + [sym__match_pattern] = STATE(5944), + [sym__match_pattern_expression] = STATE(6857), + [sym__match_pattern_value] = STATE(6861), + [sym__match_pattern_list] = STATE(6862), + [sym__match_pattern_record] = STATE(6888), + [sym_expr_parenthesized] = STATE(5713), + [sym_val_range] = STATE(6861), + [sym__val_range] = STATE(7551), + [sym_val_nothing] = STATE(6915), + [sym_val_bool] = STATE(6595), + [sym_val_variable] = STATE(5754), + [sym_val_number] = STATE(6915), + [sym__val_number_decimal] = STATE(5295), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(6915), + [sym_val_filesize] = STATE(6915), + [sym_val_binary] = STATE(6915), + [sym_val_string] = STATE(6915), + [sym__str_double_quotes] = STATE(1707), + [sym_val_table] = STATE(6915), + [sym_unquoted] = STATE(6919), + [sym__unquoted_anonymous_prefix] = STATE(7814), + [sym_comment] = STATE(1005), + [aux_sym_shebang_repeat1] = STATE(1012), + [aux_sym_ctrl_match_repeat1] = STATE(1037), + [anon_sym_true] = ACTIONS(3471), + [anon_sym_false] = ACTIONS(3471), + [anon_sym_null] = ACTIONS(3473), + [aux_sym_cmd_identifier_token38] = ACTIONS(3475), + [aux_sym_cmd_identifier_token39] = ACTIONS(3475), + [aux_sym_cmd_identifier_token40] = ACTIONS(3475), + [sym__newline] = ACTIONS(3477), + [anon_sym_LBRACK] = ACTIONS(3479), + [anon_sym_LPAREN] = ACTIONS(3481), + [anon_sym_DOLLAR] = ACTIONS(3483), + [aux_sym_ctrl_match_token1] = ACTIONS(3485), + [anon_sym_RBRACE] = ACTIONS(3509), + [anon_sym__] = ACTIONS(3489), + [anon_sym_DOT_DOT] = ACTIONS(3491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3493), + [anon_sym_DOT_DOT_LT] = ACTIONS(3493), + [aux_sym__val_number_decimal_token1] = ACTIONS(3495), + [aux_sym__val_number_decimal_token2] = ACTIONS(3497), + [aux_sym__val_number_decimal_token3] = ACTIONS(3499), + [aux_sym__val_number_decimal_token4] = ACTIONS(3501), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3503), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_POUND] = ACTIONS(247), + }, + [1006] = { + [sym_expr_parenthesized] = STATE(4559), + [sym_val_range] = STATE(4950), + [sym__val_range] = STATE(7503), + [sym__val_range_with_end] = STATE(7315), + [sym__value] = STATE(4950), + [sym_val_nothing] = STATE(4784), + [sym_val_bool] = STATE(4697), + [sym_val_variable] = STATE(4553), + [sym_val_number] = STATE(4784), + [sym__val_number_decimal] = STATE(4003), + [sym__val_number] = STATE(4955), + [sym_val_duration] = STATE(4784), + [sym_val_filesize] = STATE(4784), + [sym_val_binary] = STATE(4784), + [sym_val_string] = STATE(4784), + [sym__str_double_quotes] = STATE(4690), + [sym_val_interpolated] = STATE(4784), + [sym__inter_single_quotes] = STATE(4879), + [sym__inter_double_quotes] = STATE(4781), + [sym_val_list] = STATE(4784), + [sym_val_record] = STATE(4784), + [sym_val_table] = STATE(4784), + [sym_val_closure] = STATE(4784), + [sym__unquoted_in_list] = STATE(4684), + [sym__unquoted_in_list_with_expr] = STATE(4950), + [sym__unquoted_anonymous_prefix] = STATE(7090), + [sym_comment] = STATE(1006), + [aux_sym_shebang_repeat1] = STATE(1008), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_null] = ACTIONS(3513), + [aux_sym_cmd_identifier_token38] = ACTIONS(3515), + [aux_sym_cmd_identifier_token39] = ACTIONS(3515), + [aux_sym_cmd_identifier_token40] = ACTIONS(3515), + [sym__newline] = ACTIONS(3517), + [anon_sym_LBRACK] = ACTIONS(3519), + [anon_sym_LPAREN] = ACTIONS(3521), + [anon_sym_DOLLAR] = ACTIONS(3523), + [aux_sym_ctrl_match_token1] = ACTIONS(3525), + [anon_sym_DOT_DOT] = ACTIONS(3527), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3529), + [anon_sym_DOT_DOT_LT] = ACTIONS(3529), + [aux_sym__val_number_decimal_token1] = ACTIONS(3531), + [aux_sym__val_number_decimal_token2] = ACTIONS(3533), + [aux_sym__val_number_decimal_token3] = ACTIONS(3535), + [aux_sym__val_number_decimal_token4] = ACTIONS(3537), + [aux_sym__val_number_token1] = ACTIONS(3539), + [aux_sym__val_number_token2] = ACTIONS(3539), + [aux_sym__val_number_token3] = ACTIONS(3539), + [anon_sym_0b] = ACTIONS(3541), + [anon_sym_0o] = ACTIONS(3543), + [anon_sym_0x] = ACTIONS(3543), + [sym_val_date] = ACTIONS(3545), + [anon_sym_DQUOTE] = ACTIONS(3547), + [sym__str_single_quotes] = ACTIONS(3549), + [sym__str_back_ticks] = ACTIONS(3549), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3555), + [anon_sym_POUND] = ACTIONS(247), + }, + [1007] = { + [sym_expr_parenthesized] = STATE(4547), + [sym_val_range] = STATE(5039), + [sym__val_range] = STATE(7503), + [sym__val_range_with_end] = STATE(7315), + [sym__value] = STATE(5039), + [sym_val_nothing] = STATE(4784), + [sym_val_bool] = STATE(4697), + [sym_val_variable] = STATE(4553), + [sym_val_number] = STATE(4784), + [sym__val_number_decimal] = STATE(4003), + [sym__val_number] = STATE(4955), + [sym_val_duration] = STATE(4784), + [sym_val_filesize] = STATE(4784), + [sym_val_binary] = STATE(4784), + [sym_val_string] = STATE(4784), + [sym__str_double_quotes] = STATE(4690), + [sym_val_interpolated] = STATE(4784), + [sym__inter_single_quotes] = STATE(4879), + [sym__inter_double_quotes] = STATE(4781), + [sym_val_list] = STATE(4784), + [sym_val_record] = STATE(4784), + [sym_val_table] = STATE(4784), + [sym_val_closure] = STATE(4784), + [sym__unquoted_in_list] = STATE(4667), + [sym__unquoted_in_list_with_expr] = STATE(5039), + [sym__unquoted_anonymous_prefix] = STATE(7090), + [sym_comment] = STATE(1007), + [aux_sym_shebang_repeat1] = STATE(1009), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_null] = ACTIONS(3513), + [aux_sym_cmd_identifier_token38] = ACTIONS(3515), + [aux_sym_cmd_identifier_token39] = ACTIONS(3515), + [aux_sym_cmd_identifier_token40] = ACTIONS(3515), + [sym__newline] = ACTIONS(3517), + [anon_sym_LBRACK] = ACTIONS(3519), + [anon_sym_LPAREN] = ACTIONS(3521), + [anon_sym_DOLLAR] = ACTIONS(3523), + [aux_sym_ctrl_match_token1] = ACTIONS(3525), + [anon_sym_DOT_DOT] = ACTIONS(3527), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3529), + [anon_sym_DOT_DOT_LT] = ACTIONS(3529), + [aux_sym__val_number_decimal_token1] = ACTIONS(3531), + [aux_sym__val_number_decimal_token2] = ACTIONS(3533), + [aux_sym__val_number_decimal_token3] = ACTIONS(3535), + [aux_sym__val_number_decimal_token4] = ACTIONS(3537), + [aux_sym__val_number_token1] = ACTIONS(3539), + [aux_sym__val_number_token2] = ACTIONS(3539), + [aux_sym__val_number_token3] = ACTIONS(3539), + [anon_sym_0b] = ACTIONS(3541), + [anon_sym_0o] = ACTIONS(3543), + [anon_sym_0x] = ACTIONS(3543), + [sym_val_date] = ACTIONS(3545), + [anon_sym_DQUOTE] = ACTIONS(3547), + [sym__str_single_quotes] = ACTIONS(3549), + [sym__str_back_ticks] = ACTIONS(3549), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3555), + [anon_sym_POUND] = ACTIONS(247), + }, + [1008] = { + [sym_expr_parenthesized] = STATE(4474), + [sym_val_range] = STATE(4981), + [sym__val_range] = STATE(7503), + [sym__val_range_with_end] = STATE(7315), + [sym__value] = STATE(4981), + [sym_val_nothing] = STATE(4784), + [sym_val_bool] = STATE(4697), + [sym_val_variable] = STATE(4553), + [sym_val_number] = STATE(4784), + [sym__val_number_decimal] = STATE(4003), + [sym__val_number] = STATE(4955), + [sym_val_duration] = STATE(4784), + [sym_val_filesize] = STATE(4784), + [sym_val_binary] = STATE(4784), + [sym_val_string] = STATE(4784), + [sym__str_double_quotes] = STATE(4690), + [sym_val_interpolated] = STATE(4784), + [sym__inter_single_quotes] = STATE(4879), + [sym__inter_double_quotes] = STATE(4781), + [sym_val_list] = STATE(4784), + [sym_val_record] = STATE(4784), + [sym_val_table] = STATE(4784), + [sym_val_closure] = STATE(4784), + [sym__unquoted_in_list] = STATE(4603), + [sym__unquoted_in_list_with_expr] = STATE(4981), + [sym__unquoted_anonymous_prefix] = STATE(7090), + [sym_comment] = STATE(1008), + [aux_sym_shebang_repeat1] = STATE(2860), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_null] = ACTIONS(3513), + [aux_sym_cmd_identifier_token38] = ACTIONS(3515), + [aux_sym_cmd_identifier_token39] = ACTIONS(3515), + [aux_sym_cmd_identifier_token40] = ACTIONS(3515), + [sym__newline] = ACTIONS(3517), + [anon_sym_LBRACK] = ACTIONS(3519), + [anon_sym_LPAREN] = ACTIONS(3521), + [anon_sym_DOLLAR] = ACTIONS(3523), + [aux_sym_ctrl_match_token1] = ACTIONS(3525), + [anon_sym_DOT_DOT] = ACTIONS(3527), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3529), + [anon_sym_DOT_DOT_LT] = ACTIONS(3529), + [aux_sym__val_number_decimal_token1] = ACTIONS(3531), + [aux_sym__val_number_decimal_token2] = ACTIONS(3533), + [aux_sym__val_number_decimal_token3] = ACTIONS(3535), + [aux_sym__val_number_decimal_token4] = ACTIONS(3537), + [aux_sym__val_number_token1] = ACTIONS(3539), + [aux_sym__val_number_token2] = ACTIONS(3539), + [aux_sym__val_number_token3] = ACTIONS(3539), + [anon_sym_0b] = ACTIONS(3541), + [anon_sym_0o] = ACTIONS(3543), + [anon_sym_0x] = ACTIONS(3543), + [sym_val_date] = ACTIONS(3545), + [anon_sym_DQUOTE] = ACTIONS(3547), + [sym__str_single_quotes] = ACTIONS(3549), + [sym__str_back_ticks] = ACTIONS(3549), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3555), + [anon_sym_POUND] = ACTIONS(247), + }, + [1009] = { + [sym_expr_parenthesized] = STATE(4559), + [sym_val_range] = STATE(4950), + [sym__val_range] = STATE(7503), + [sym__val_range_with_end] = STATE(7315), + [sym__value] = STATE(4950), + [sym_val_nothing] = STATE(4784), + [sym_val_bool] = STATE(4697), + [sym_val_variable] = STATE(4553), + [sym_val_number] = STATE(4784), + [sym__val_number_decimal] = STATE(4003), + [sym__val_number] = STATE(4955), + [sym_val_duration] = STATE(4784), + [sym_val_filesize] = STATE(4784), + [sym_val_binary] = STATE(4784), + [sym_val_string] = STATE(4784), + [sym__str_double_quotes] = STATE(4690), + [sym_val_interpolated] = STATE(4784), + [sym__inter_single_quotes] = STATE(4879), + [sym__inter_double_quotes] = STATE(4781), + [sym_val_list] = STATE(4784), + [sym_val_record] = STATE(4784), + [sym_val_table] = STATE(4784), + [sym_val_closure] = STATE(4784), + [sym__unquoted_in_list] = STATE(4684), + [sym__unquoted_in_list_with_expr] = STATE(4950), + [sym__unquoted_anonymous_prefix] = STATE(7090), + [sym_comment] = STATE(1009), + [aux_sym_shebang_repeat1] = STATE(2860), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [anon_sym_null] = ACTIONS(3513), + [aux_sym_cmd_identifier_token38] = ACTIONS(3515), + [aux_sym_cmd_identifier_token39] = ACTIONS(3515), + [aux_sym_cmd_identifier_token40] = ACTIONS(3515), + [sym__newline] = ACTIONS(3517), + [anon_sym_LBRACK] = ACTIONS(3519), + [anon_sym_LPAREN] = ACTIONS(3521), + [anon_sym_DOLLAR] = ACTIONS(3523), + [aux_sym_ctrl_match_token1] = ACTIONS(3525), + [anon_sym_DOT_DOT] = ACTIONS(3527), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3529), + [anon_sym_DOT_DOT_LT] = ACTIONS(3529), + [aux_sym__val_number_decimal_token1] = ACTIONS(3531), + [aux_sym__val_number_decimal_token2] = ACTIONS(3533), + [aux_sym__val_number_decimal_token3] = ACTIONS(3535), + [aux_sym__val_number_decimal_token4] = ACTIONS(3537), + [aux_sym__val_number_token1] = ACTIONS(3539), + [aux_sym__val_number_token2] = ACTIONS(3539), + [aux_sym__val_number_token3] = ACTIONS(3539), + [anon_sym_0b] = ACTIONS(3541), + [anon_sym_0o] = ACTIONS(3543), + [anon_sym_0x] = ACTIONS(3543), + [sym_val_date] = ACTIONS(3545), + [anon_sym_DQUOTE] = ACTIONS(3547), + [sym__str_single_quotes] = ACTIONS(3549), + [sym__str_back_ticks] = ACTIONS(3549), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3555), + [anon_sym_POUND] = ACTIONS(247), + }, + [1010] = { + [sym_match_arm] = STATE(6023), + [sym_match_pattern] = STATE(7640), + [sym__match_pattern] = STATE(5944), + [sym__match_pattern_expression] = STATE(6857), + [sym__match_pattern_value] = STATE(6861), + [sym__match_pattern_list] = STATE(6862), + [sym__match_pattern_record] = STATE(6888), + [sym_expr_parenthesized] = STATE(5713), + [sym_val_range] = STATE(6861), + [sym__val_range] = STATE(7551), + [sym_val_nothing] = STATE(6915), + [sym_val_bool] = STATE(6595), + [sym_val_variable] = STATE(5754), + [sym_val_number] = STATE(6915), + [sym__val_number_decimal] = STATE(5295), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(6915), + [sym_val_filesize] = STATE(6915), + [sym_val_binary] = STATE(6915), + [sym_val_string] = STATE(6915), + [sym__str_double_quotes] = STATE(1707), + [sym_val_table] = STATE(6915), + [sym_unquoted] = STATE(6919), + [sym__unquoted_anonymous_prefix] = STATE(7814), + [sym_comment] = STATE(1010), + [aux_sym_shebang_repeat1] = STATE(2950), + [aux_sym_ctrl_match_repeat1] = STATE(1044), + [anon_sym_true] = ACTIONS(3471), + [anon_sym_false] = ACTIONS(3471), + [anon_sym_null] = ACTIONS(3473), + [aux_sym_cmd_identifier_token38] = ACTIONS(3475), + [aux_sym_cmd_identifier_token39] = ACTIONS(3475), + [aux_sym_cmd_identifier_token40] = ACTIONS(3475), + [sym__newline] = ACTIONS(3477), + [anon_sym_LBRACK] = ACTIONS(3479), + [anon_sym_LPAREN] = ACTIONS(3481), + [anon_sym_DOLLAR] = ACTIONS(3483), + [aux_sym_ctrl_match_token1] = ACTIONS(3485), + [anon_sym__] = ACTIONS(3557), + [anon_sym_DOT_DOT] = ACTIONS(3491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3493), + [anon_sym_DOT_DOT_LT] = ACTIONS(3493), + [aux_sym__val_number_decimal_token1] = ACTIONS(3495), + [aux_sym__val_number_decimal_token2] = ACTIONS(3497), + [aux_sym__val_number_decimal_token3] = ACTIONS(3499), + [aux_sym__val_number_decimal_token4] = ACTIONS(3501), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3503), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_POUND] = ACTIONS(247), + }, + [1011] = { + [sym_comment] = STATE(1011), + [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1011), + [aux_sym_cmd_identifier_token1] = ACTIONS(3559), + [aux_sym_cmd_identifier_token2] = ACTIONS(3559), + [aux_sym_cmd_identifier_token3] = ACTIONS(3559), + [aux_sym_cmd_identifier_token4] = ACTIONS(3559), + [aux_sym_cmd_identifier_token5] = ACTIONS(3559), + [aux_sym_cmd_identifier_token6] = ACTIONS(3559), + [aux_sym_cmd_identifier_token7] = ACTIONS(3559), + [aux_sym_cmd_identifier_token8] = ACTIONS(3559), + [aux_sym_cmd_identifier_token9] = ACTIONS(3559), + [aux_sym_cmd_identifier_token10] = ACTIONS(3559), + [aux_sym_cmd_identifier_token11] = ACTIONS(3559), + [aux_sym_cmd_identifier_token12] = ACTIONS(3559), + [aux_sym_cmd_identifier_token13] = ACTIONS(3559), + [aux_sym_cmd_identifier_token14] = ACTIONS(3559), + [aux_sym_cmd_identifier_token15] = ACTIONS(3559), + [aux_sym_cmd_identifier_token16] = ACTIONS(3559), + [aux_sym_cmd_identifier_token17] = ACTIONS(3559), + [aux_sym_cmd_identifier_token18] = ACTIONS(3559), + [aux_sym_cmd_identifier_token19] = ACTIONS(3559), + [aux_sym_cmd_identifier_token20] = ACTIONS(3559), + [aux_sym_cmd_identifier_token21] = ACTIONS(3559), + [aux_sym_cmd_identifier_token22] = ACTIONS(3559), + [aux_sym_cmd_identifier_token23] = ACTIONS(3559), + [aux_sym_cmd_identifier_token24] = ACTIONS(3559), + [aux_sym_cmd_identifier_token25] = ACTIONS(3559), + [aux_sym_cmd_identifier_token26] = ACTIONS(3559), + [aux_sym_cmd_identifier_token27] = ACTIONS(3559), + [aux_sym_cmd_identifier_token28] = ACTIONS(3559), + [aux_sym_cmd_identifier_token29] = ACTIONS(3559), + [aux_sym_cmd_identifier_token30] = ACTIONS(3559), + [aux_sym_cmd_identifier_token31] = ACTIONS(3559), + [aux_sym_cmd_identifier_token32] = ACTIONS(3559), + [aux_sym_cmd_identifier_token33] = ACTIONS(3559), + [aux_sym_cmd_identifier_token34] = ACTIONS(3559), + [aux_sym_cmd_identifier_token35] = ACTIONS(3559), + [aux_sym_cmd_identifier_token36] = ACTIONS(3559), + [anon_sym_true] = ACTIONS(3559), + [anon_sym_false] = ACTIONS(3559), + [anon_sym_null] = ACTIONS(3559), + [aux_sym_cmd_identifier_token38] = ACTIONS(3559), + [aux_sym_cmd_identifier_token39] = ACTIONS(3559), + [aux_sym_cmd_identifier_token40] = ACTIONS(3559), + [sym__newline] = ACTIONS(3561), + [sym__space] = ACTIONS(3564), + [anon_sym_LBRACK] = ACTIONS(3559), + [anon_sym_LPAREN] = ACTIONS(3559), + [anon_sym_DOLLAR] = ACTIONS(3559), + [anon_sym_DASH] = ACTIONS(3559), + [aux_sym_ctrl_match_token1] = ACTIONS(3559), + [anon_sym_DOT_DOT] = ACTIONS(3559), + [aux_sym_expr_unary_token1] = ACTIONS(3559), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3559), + [anon_sym_DOT_DOT_LT] = ACTIONS(3559), + [aux_sym__val_number_decimal_token1] = ACTIONS(3559), + [aux_sym__val_number_decimal_token2] = ACTIONS(3559), + [aux_sym__val_number_decimal_token3] = ACTIONS(3559), + [aux_sym__val_number_decimal_token4] = ACTIONS(3559), + [aux_sym__val_number_token1] = ACTIONS(3559), + [aux_sym__val_number_token2] = ACTIONS(3559), + [aux_sym__val_number_token3] = ACTIONS(3559), + [anon_sym_0b] = ACTIONS(3559), + [anon_sym_0o] = ACTIONS(3559), + [anon_sym_0x] = ACTIONS(3559), + [sym_val_date] = ACTIONS(3559), + [anon_sym_DQUOTE] = ACTIONS(3559), + [sym__str_single_quotes] = ACTIONS(3559), + [sym__str_back_ticks] = ACTIONS(3559), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3559), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3559), + [aux_sym_env_var_token1] = ACTIONS(3559), + [anon_sym_CARET] = ACTIONS(3559), + [anon_sym_POUND] = ACTIONS(3), + }, + [1012] = { + [sym_match_arm] = STATE(6002), + [sym_match_pattern] = STATE(7640), + [sym__match_pattern] = STATE(5944), + [sym__match_pattern_expression] = STATE(6857), + [sym__match_pattern_value] = STATE(6861), + [sym__match_pattern_list] = STATE(6862), + [sym__match_pattern_record] = STATE(6888), + [sym_expr_parenthesized] = STATE(5713), + [sym_val_range] = STATE(6861), + [sym__val_range] = STATE(7551), + [sym_val_nothing] = STATE(6915), + [sym_val_bool] = STATE(6595), + [sym_val_variable] = STATE(5754), + [sym_val_number] = STATE(6915), + [sym__val_number_decimal] = STATE(5295), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(6915), + [sym_val_filesize] = STATE(6915), + [sym_val_binary] = STATE(6915), + [sym_val_string] = STATE(6915), + [sym__str_double_quotes] = STATE(1707), + [sym_val_table] = STATE(6915), + [sym_unquoted] = STATE(6919), + [sym__unquoted_anonymous_prefix] = STATE(7814), + [sym_comment] = STATE(1012), + [aux_sym_shebang_repeat1] = STATE(2950), + [aux_sym_ctrl_match_repeat1] = STATE(1039), + [anon_sym_true] = ACTIONS(3471), + [anon_sym_false] = ACTIONS(3471), + [anon_sym_null] = ACTIONS(3473), + [aux_sym_cmd_identifier_token38] = ACTIONS(3475), + [aux_sym_cmd_identifier_token39] = ACTIONS(3475), + [aux_sym_cmd_identifier_token40] = ACTIONS(3475), + [sym__newline] = ACTIONS(3477), + [anon_sym_LBRACK] = ACTIONS(3479), + [anon_sym_LPAREN] = ACTIONS(3481), + [anon_sym_DOLLAR] = ACTIONS(3483), + [aux_sym_ctrl_match_token1] = ACTIONS(3485), + [anon_sym__] = ACTIONS(3557), + [anon_sym_DOT_DOT] = ACTIONS(3491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3493), + [anon_sym_DOT_DOT_LT] = ACTIONS(3493), + [aux_sym__val_number_decimal_token1] = ACTIONS(3495), + [aux_sym__val_number_decimal_token2] = ACTIONS(3497), + [aux_sym__val_number_decimal_token3] = ACTIONS(3499), + [aux_sym__val_number_decimal_token4] = ACTIONS(3501), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3503), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_POUND] = ACTIONS(247), + }, + [1013] = { + [sym_expr_parenthesized] = STATE(365), + [sym_val_range] = STATE(545), + [sym__val_range] = STATE(7684), + [sym__val_range_with_end] = STATE(7299), + [sym__value] = STATE(545), + [sym_val_nothing] = STATE(556), + [sym_val_bool] = STATE(436), + [sym_val_variable] = STATE(398), + [sym_val_number] = STATE(556), + [sym__val_number_decimal] = STATE(194), + [sym__val_number] = STATE(542), + [sym_val_duration] = STATE(556), + [sym_val_filesize] = STATE(556), + [sym_val_binary] = STATE(556), + [sym_val_string] = STATE(556), + [sym__str_double_quotes] = STATE(559), + [sym_val_interpolated] = STATE(556), + [sym__inter_single_quotes] = STATE(514), + [sym__inter_double_quotes] = STATE(515), + [sym_val_list] = STATE(556), + [sym_val_record] = STATE(556), + [sym_val_table] = STATE(556), + [sym_val_closure] = STATE(556), + [sym__unquoted_in_record] = STATE(429), + [sym__unquoted_in_record_with_expr] = STATE(545), + [sym__unquoted_anonymous_prefix] = STATE(7013), + [sym_comment] = STATE(1013), + [anon_sym_true] = ACTIONS(3567), + [anon_sym_false] = ACTIONS(3567), + [anon_sym_null] = ACTIONS(3569), + [aux_sym_cmd_identifier_token38] = ACTIONS(3571), + [aux_sym_cmd_identifier_token39] = ACTIONS(3571), + [aux_sym_cmd_identifier_token40] = ACTIONS(3571), + [anon_sym_LBRACK] = ACTIONS(3573), + [anon_sym_LPAREN] = ACTIONS(3575), + [anon_sym_DOLLAR] = ACTIONS(1481), + [aux_sym_ctrl_match_token1] = ACTIONS(3577), + [anon_sym_DOT_DOT] = ACTIONS(3579), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3581), + [anon_sym_DOT_DOT_LT] = ACTIONS(3581), + [aux_sym__val_number_decimal_token1] = ACTIONS(3583), + [aux_sym__val_number_decimal_token2] = ACTIONS(3585), + [aux_sym__val_number_decimal_token3] = ACTIONS(3587), + [aux_sym__val_number_decimal_token4] = ACTIONS(3589), + [aux_sym__val_number_token1] = ACTIONS(3591), + [aux_sym__val_number_token2] = ACTIONS(3591), + [aux_sym__val_number_token3] = ACTIONS(3591), + [anon_sym_0b] = ACTIONS(3593), + [anon_sym_0o] = ACTIONS(3595), + [anon_sym_0x] = ACTIONS(3595), + [sym_val_date] = ACTIONS(3597), + [anon_sym_DQUOTE] = ACTIONS(3599), + [sym__str_single_quotes] = ACTIONS(3601), + [sym__str_back_ticks] = ACTIONS(3601), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3605), + [anon_sym_err_GT] = ACTIONS(3607), + [anon_sym_out_GT] = ACTIONS(3607), + [anon_sym_e_GT] = ACTIONS(3607), + [anon_sym_o_GT] = ACTIONS(3607), + [anon_sym_err_PLUSout_GT] = ACTIONS(3607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3607), + [anon_sym_o_PLUSe_GT] = ACTIONS(3607), + [anon_sym_e_PLUSo_GT] = ACTIONS(3607), + [anon_sym_err_GT_GT] = ACTIONS(3609), + [anon_sym_out_GT_GT] = ACTIONS(3609), + [anon_sym_e_GT_GT] = ACTIONS(3609), + [anon_sym_o_GT_GT] = ACTIONS(3609), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3609), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3609), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3609), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3609), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3611), + [anon_sym_POUND] = ACTIONS(247), + }, + [1014] = { + [sym_match_arm] = STATE(6006), + [sym_match_pattern] = STATE(7640), + [sym__match_pattern] = STATE(5944), + [sym__match_pattern_expression] = STATE(6857), + [sym__match_pattern_value] = STATE(6861), + [sym__match_pattern_list] = STATE(6862), + [sym__match_pattern_record] = STATE(6888), + [sym_expr_parenthesized] = STATE(5713), + [sym_val_range] = STATE(6861), + [sym__val_range] = STATE(7551), + [sym_val_nothing] = STATE(6915), + [sym_val_bool] = STATE(6595), + [sym_val_variable] = STATE(5754), + [sym_val_number] = STATE(6915), + [sym__val_number_decimal] = STATE(5295), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(6915), + [sym_val_filesize] = STATE(6915), + [sym_val_binary] = STATE(6915), + [sym_val_string] = STATE(6915), + [sym__str_double_quotes] = STATE(1707), + [sym_val_table] = STATE(6915), + [sym_unquoted] = STATE(6919), + [sym__unquoted_anonymous_prefix] = STATE(7814), + [sym_comment] = STATE(1014), + [aux_sym_shebang_repeat1] = STATE(2950), + [aux_sym_ctrl_match_repeat1] = STATE(1038), + [anon_sym_true] = ACTIONS(3471), + [anon_sym_false] = ACTIONS(3471), + [anon_sym_null] = ACTIONS(3473), + [aux_sym_cmd_identifier_token38] = ACTIONS(3475), + [aux_sym_cmd_identifier_token39] = ACTIONS(3475), + [aux_sym_cmd_identifier_token40] = ACTIONS(3475), + [sym__newline] = ACTIONS(3477), + [anon_sym_LBRACK] = ACTIONS(3479), + [anon_sym_LPAREN] = ACTIONS(3481), + [anon_sym_DOLLAR] = ACTIONS(3483), + [aux_sym_ctrl_match_token1] = ACTIONS(3485), + [anon_sym__] = ACTIONS(3557), + [anon_sym_DOT_DOT] = ACTIONS(3491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3493), + [anon_sym_DOT_DOT_LT] = ACTIONS(3493), + [aux_sym__val_number_decimal_token1] = ACTIONS(3495), + [aux_sym__val_number_decimal_token2] = ACTIONS(3497), + [aux_sym__val_number_decimal_token3] = ACTIONS(3499), + [aux_sym__val_number_decimal_token4] = ACTIONS(3501), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3503), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_POUND] = ACTIONS(247), + }, + [1015] = { + [sym_expr_parenthesized] = STATE(463), + [sym_val_range] = STATE(652), + [sym__val_range] = STATE(7601), + [sym__val_range_with_end] = STATE(7337), + [sym__value] = STATE(652), + [sym_val_nothing] = STATE(618), + [sym_val_bool] = STATE(472), + [sym_val_variable] = STATE(424), + [sym_val_number] = STATE(618), + [sym__val_number_decimal] = STATE(213), + [sym__val_number] = STATE(648), + [sym_val_duration] = STATE(618), + [sym_val_filesize] = STATE(618), + [sym_val_binary] = STATE(618), + [sym_val_string] = STATE(618), + [sym__str_double_quotes] = STATE(614), + [sym_val_interpolated] = STATE(618), + [sym__inter_single_quotes] = STATE(653), + [sym__inter_double_quotes] = STATE(656), + [sym_val_list] = STATE(618), + [sym_val_record] = STATE(618), + [sym_val_table] = STATE(618), + [sym_val_closure] = STATE(618), + [sym__unquoted_in_record] = STATE(505), + [sym__unquoted_in_record_with_expr] = STATE(652), + [sym__unquoted_anonymous_prefix] = STATE(7045), + [sym_comment] = STATE(1015), + [anon_sym_true] = ACTIONS(3613), + [anon_sym_false] = ACTIONS(3613), + [anon_sym_null] = ACTIONS(3615), + [aux_sym_cmd_identifier_token38] = ACTIONS(3617), + [aux_sym_cmd_identifier_token39] = ACTIONS(3617), + [aux_sym_cmd_identifier_token40] = ACTIONS(3617), + [anon_sym_LBRACK] = ACTIONS(3619), + [anon_sym_LPAREN] = ACTIONS(3621), + [anon_sym_DOLLAR] = ACTIONS(3623), + [aux_sym_ctrl_match_token1] = ACTIONS(3625), + [anon_sym_DOT_DOT] = ACTIONS(3627), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3629), + [anon_sym_DOT_DOT_LT] = ACTIONS(3629), + [aux_sym__val_number_decimal_token1] = ACTIONS(3631), + [aux_sym__val_number_decimal_token2] = ACTIONS(3633), + [aux_sym__val_number_decimal_token3] = ACTIONS(3635), + [aux_sym__val_number_decimal_token4] = ACTIONS(3637), + [aux_sym__val_number_token1] = ACTIONS(3639), + [aux_sym__val_number_token2] = ACTIONS(3639), + [aux_sym__val_number_token3] = ACTIONS(3639), + [anon_sym_0b] = ACTIONS(3641), + [anon_sym_0o] = ACTIONS(3643), + [anon_sym_0x] = ACTIONS(3643), + [sym_val_date] = ACTIONS(3645), + [anon_sym_DQUOTE] = ACTIONS(3647), + [sym__str_single_quotes] = ACTIONS(3649), + [sym__str_back_ticks] = ACTIONS(3649), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3651), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3653), + [anon_sym_err_GT] = ACTIONS(3607), + [anon_sym_out_GT] = ACTIONS(3607), + [anon_sym_e_GT] = ACTIONS(3607), + [anon_sym_o_GT] = ACTIONS(3607), + [anon_sym_err_PLUSout_GT] = ACTIONS(3607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3607), + [anon_sym_o_PLUSe_GT] = ACTIONS(3607), + [anon_sym_e_PLUSo_GT] = ACTIONS(3607), + [anon_sym_err_GT_GT] = ACTIONS(3609), + [anon_sym_out_GT_GT] = ACTIONS(3609), + [anon_sym_e_GT_GT] = ACTIONS(3609), + [anon_sym_o_GT_GT] = ACTIONS(3609), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3609), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3609), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3609), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3609), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3655), + [anon_sym_POUND] = ACTIONS(247), + }, + [1016] = { + [sym_match_arm] = STATE(6018), + [sym_match_pattern] = STATE(7640), + [sym__match_pattern] = STATE(5944), + [sym__match_pattern_expression] = STATE(6857), + [sym__match_pattern_value] = STATE(6861), + [sym__match_pattern_list] = STATE(6862), + [sym__match_pattern_record] = STATE(6888), + [sym_expr_parenthesized] = STATE(5713), + [sym_val_range] = STATE(6861), + [sym__val_range] = STATE(7551), + [sym_val_nothing] = STATE(6915), + [sym_val_bool] = STATE(6595), + [sym_val_variable] = STATE(5754), + [sym_val_number] = STATE(6915), + [sym__val_number_decimal] = STATE(5295), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(6915), + [sym_val_filesize] = STATE(6915), + [sym_val_binary] = STATE(6915), + [sym_val_string] = STATE(6915), + [sym__str_double_quotes] = STATE(1707), + [sym_val_table] = STATE(6915), + [sym_unquoted] = STATE(6919), + [sym__unquoted_anonymous_prefix] = STATE(7814), + [sym_comment] = STATE(1016), + [aux_sym_shebang_repeat1] = STATE(2950), + [aux_sym_ctrl_match_repeat1] = STATE(1056), + [anon_sym_true] = ACTIONS(3471), + [anon_sym_false] = ACTIONS(3471), + [anon_sym_null] = ACTIONS(3473), + [aux_sym_cmd_identifier_token38] = ACTIONS(3475), + [aux_sym_cmd_identifier_token39] = ACTIONS(3475), + [aux_sym_cmd_identifier_token40] = ACTIONS(3475), + [sym__newline] = ACTIONS(3477), + [anon_sym_LBRACK] = ACTIONS(3479), + [anon_sym_LPAREN] = ACTIONS(3481), + [anon_sym_DOLLAR] = ACTIONS(3483), + [aux_sym_ctrl_match_token1] = ACTIONS(3485), + [anon_sym__] = ACTIONS(3557), + [anon_sym_DOT_DOT] = ACTIONS(3491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3493), + [anon_sym_DOT_DOT_LT] = ACTIONS(3493), + [aux_sym__val_number_decimal_token1] = ACTIONS(3495), + [aux_sym__val_number_decimal_token2] = ACTIONS(3497), + [aux_sym__val_number_decimal_token3] = ACTIONS(3499), + [aux_sym__val_number_decimal_token4] = ACTIONS(3501), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3503), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_POUND] = ACTIONS(247), + }, + [1017] = { + [sym_expr_parenthesized] = STATE(5963), + [sym_val_range] = STATE(543), + [sym__val_range] = STATE(7684), + [sym__val_range_with_end] = STATE(7299), + [sym__value] = STATE(543), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6589), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5209), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(6275), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_record] = STATE(413), + [sym__unquoted_in_record_with_expr] = STATE(543), + [sym__unquoted_anonymous_prefix] = STATE(7013), + [sym_comment] = STATE(1017), + [anon_sym_true] = ACTIONS(3657), + [anon_sym_false] = ACTIONS(3657), + [anon_sym_null] = ACTIONS(3659), + [aux_sym_cmd_identifier_token38] = ACTIONS(3661), + [aux_sym_cmd_identifier_token39] = ACTIONS(3661), + [aux_sym_cmd_identifier_token40] = ACTIONS(3661), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(3663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3665), + [anon_sym_DOT_DOT_LT] = ACTIONS(3665), + [aux_sym__val_number_decimal_token1] = ACTIONS(3667), + [aux_sym__val_number_decimal_token2] = ACTIONS(3669), + [aux_sym__val_number_decimal_token3] = ACTIONS(3671), + [aux_sym__val_number_decimal_token4] = ACTIONS(3673), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3675), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_err_GT] = ACTIONS(3607), + [anon_sym_out_GT] = ACTIONS(3607), + [anon_sym_e_GT] = ACTIONS(3607), + [anon_sym_o_GT] = ACTIONS(3607), + [anon_sym_err_PLUSout_GT] = ACTIONS(3607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3607), + [anon_sym_o_PLUSe_GT] = ACTIONS(3607), + [anon_sym_e_PLUSo_GT] = ACTIONS(3607), + [anon_sym_err_GT_GT] = ACTIONS(3609), + [anon_sym_out_GT_GT] = ACTIONS(3609), + [anon_sym_e_GT_GT] = ACTIONS(3609), + [anon_sym_o_GT_GT] = ACTIONS(3609), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3609), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3609), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3609), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3609), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3611), + [anon_sym_POUND] = ACTIONS(247), + }, + [1018] = { + [sym_comment] = STATE(1018), + [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1011), + [aux_sym_cmd_identifier_token1] = ACTIONS(3677), + [aux_sym_cmd_identifier_token2] = ACTIONS(3677), + [aux_sym_cmd_identifier_token3] = ACTIONS(3677), + [aux_sym_cmd_identifier_token4] = ACTIONS(3677), + [aux_sym_cmd_identifier_token5] = ACTIONS(3677), + [aux_sym_cmd_identifier_token6] = ACTIONS(3677), + [aux_sym_cmd_identifier_token7] = ACTIONS(3677), + [aux_sym_cmd_identifier_token8] = ACTIONS(3677), + [aux_sym_cmd_identifier_token9] = ACTIONS(3677), + [aux_sym_cmd_identifier_token10] = ACTIONS(3677), + [aux_sym_cmd_identifier_token11] = ACTIONS(3677), + [aux_sym_cmd_identifier_token12] = ACTIONS(3677), + [aux_sym_cmd_identifier_token13] = ACTIONS(3677), + [aux_sym_cmd_identifier_token14] = ACTIONS(3677), + [aux_sym_cmd_identifier_token15] = ACTIONS(3677), + [aux_sym_cmd_identifier_token16] = ACTIONS(3677), + [aux_sym_cmd_identifier_token17] = ACTIONS(3677), + [aux_sym_cmd_identifier_token18] = ACTIONS(3677), + [aux_sym_cmd_identifier_token19] = ACTIONS(3677), + [aux_sym_cmd_identifier_token20] = ACTIONS(3677), + [aux_sym_cmd_identifier_token21] = ACTIONS(3677), + [aux_sym_cmd_identifier_token22] = ACTIONS(3677), + [aux_sym_cmd_identifier_token23] = ACTIONS(3677), + [aux_sym_cmd_identifier_token24] = ACTIONS(3677), + [aux_sym_cmd_identifier_token25] = ACTIONS(3677), + [aux_sym_cmd_identifier_token26] = ACTIONS(3677), + [aux_sym_cmd_identifier_token27] = ACTIONS(3677), + [aux_sym_cmd_identifier_token28] = ACTIONS(3677), + [aux_sym_cmd_identifier_token29] = ACTIONS(3677), + [aux_sym_cmd_identifier_token30] = ACTIONS(3677), + [aux_sym_cmd_identifier_token31] = ACTIONS(3677), + [aux_sym_cmd_identifier_token32] = ACTIONS(3677), + [aux_sym_cmd_identifier_token33] = ACTIONS(3677), + [aux_sym_cmd_identifier_token34] = ACTIONS(3677), + [aux_sym_cmd_identifier_token35] = ACTIONS(3677), + [aux_sym_cmd_identifier_token36] = ACTIONS(3677), + [anon_sym_true] = ACTIONS(3677), + [anon_sym_false] = ACTIONS(3677), + [anon_sym_null] = ACTIONS(3677), + [aux_sym_cmd_identifier_token38] = ACTIONS(3677), + [aux_sym_cmd_identifier_token39] = ACTIONS(3677), + [aux_sym_cmd_identifier_token40] = ACTIONS(3677), + [sym__newline] = ACTIONS(3679), + [sym__space] = ACTIONS(3681), + [anon_sym_LBRACK] = ACTIONS(3677), + [anon_sym_LPAREN] = ACTIONS(3677), + [anon_sym_DOLLAR] = ACTIONS(3677), + [anon_sym_DASH] = ACTIONS(3677), + [aux_sym_ctrl_match_token1] = ACTIONS(3677), + [anon_sym_DOT_DOT] = ACTIONS(3677), + [aux_sym_expr_unary_token1] = ACTIONS(3677), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3677), + [anon_sym_DOT_DOT_LT] = ACTIONS(3677), + [aux_sym__val_number_decimal_token1] = ACTIONS(3677), + [aux_sym__val_number_decimal_token2] = ACTIONS(3677), + [aux_sym__val_number_decimal_token3] = ACTIONS(3677), + [aux_sym__val_number_decimal_token4] = ACTIONS(3677), + [aux_sym__val_number_token1] = ACTIONS(3677), + [aux_sym__val_number_token2] = ACTIONS(3677), + [aux_sym__val_number_token3] = ACTIONS(3677), + [anon_sym_0b] = ACTIONS(3677), + [anon_sym_0o] = ACTIONS(3677), + [anon_sym_0x] = ACTIONS(3677), + [sym_val_date] = ACTIONS(3677), + [anon_sym_DQUOTE] = ACTIONS(3677), + [sym__str_single_quotes] = ACTIONS(3677), + [sym__str_back_ticks] = ACTIONS(3677), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3677), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3677), + [aux_sym_env_var_token1] = ACTIONS(3677), + [anon_sym_CARET] = ACTIONS(3677), + [anon_sym_POUND] = ACTIONS(3), + }, + [1019] = { + [sym_expr_parenthesized] = STATE(5995), + [sym_val_range] = STATE(545), + [sym__val_range] = STATE(7684), + [sym__val_range_with_end] = STATE(7299), + [sym__value] = STATE(545), + [sym_val_nothing] = STATE(6275), + [sym_val_bool] = STATE(6589), + [sym_val_variable] = STATE(5808), + [sym_val_number] = STATE(6275), + [sym__val_number_decimal] = STATE(5209), + [sym__val_number] = STATE(2907), + [sym_val_duration] = STATE(6275), + [sym_val_filesize] = STATE(6275), + [sym_val_binary] = STATE(6275), + [sym_val_string] = STATE(6275), + [sym__str_double_quotes] = STATE(5345), + [sym_val_interpolated] = STATE(6275), + [sym__inter_single_quotes] = STATE(6539), + [sym__inter_double_quotes] = STATE(6540), + [sym_val_list] = STATE(6275), + [sym_val_record] = STATE(6275), + [sym_val_table] = STATE(6275), + [sym_val_closure] = STATE(6275), + [sym__unquoted_in_record] = STATE(429), + [sym__unquoted_in_record_with_expr] = STATE(545), + [sym__unquoted_anonymous_prefix] = STATE(7013), + [sym_comment] = STATE(1019), + [anon_sym_true] = ACTIONS(3657), + [anon_sym_false] = ACTIONS(3657), + [anon_sym_null] = ACTIONS(3659), + [aux_sym_cmd_identifier_token38] = ACTIONS(3661), + [aux_sym_cmd_identifier_token39] = ACTIONS(3661), + [aux_sym_cmd_identifier_token40] = ACTIONS(3661), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_DOLLAR] = ACTIONS(2986), + [aux_sym_ctrl_match_token1] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(3663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3665), + [anon_sym_DOT_DOT_LT] = ACTIONS(3665), + [aux_sym__val_number_decimal_token1] = ACTIONS(3667), + [aux_sym__val_number_decimal_token2] = ACTIONS(3669), + [aux_sym__val_number_decimal_token3] = ACTIONS(3671), + [aux_sym__val_number_decimal_token4] = ACTIONS(3673), + [aux_sym__val_number_token1] = ACTIONS(2832), + [aux_sym__val_number_token2] = ACTIONS(2832), + [aux_sym__val_number_token3] = ACTIONS(2832), + [anon_sym_0b] = ACTIONS(2834), + [anon_sym_0o] = ACTIONS(2836), + [anon_sym_0x] = ACTIONS(2836), + [sym_val_date] = ACTIONS(3675), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym__str_single_quotes] = ACTIONS(3006), + [sym__str_back_ticks] = ACTIONS(3006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2846), + [anon_sym_err_GT] = ACTIONS(3607), + [anon_sym_out_GT] = ACTIONS(3607), + [anon_sym_e_GT] = ACTIONS(3607), + [anon_sym_o_GT] = ACTIONS(3607), + [anon_sym_err_PLUSout_GT] = ACTIONS(3607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3607), + [anon_sym_o_PLUSe_GT] = ACTIONS(3607), + [anon_sym_e_PLUSo_GT] = ACTIONS(3607), + [anon_sym_err_GT_GT] = ACTIONS(3609), + [anon_sym_out_GT_GT] = ACTIONS(3609), + [anon_sym_e_GT_GT] = ACTIONS(3609), + [anon_sym_o_GT_GT] = ACTIONS(3609), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3609), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3609), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3609), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3609), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3611), + [anon_sym_POUND] = ACTIONS(247), + }, + [1020] = { + [sym_expr_parenthesized] = STATE(437), + [sym_val_range] = STATE(655), + [sym__val_range] = STATE(7601), + [sym__val_range_with_end] = STATE(7337), + [sym__value] = STATE(655), + [sym_val_nothing] = STATE(618), + [sym_val_bool] = STATE(472), + [sym_val_variable] = STATE(424), + [sym_val_number] = STATE(618), + [sym__val_number_decimal] = STATE(213), + [sym__val_number] = STATE(648), + [sym_val_duration] = STATE(618), + [sym_val_filesize] = STATE(618), + [sym_val_binary] = STATE(618), + [sym_val_string] = STATE(618), + [sym__str_double_quotes] = STATE(614), + [sym_val_interpolated] = STATE(618), + [sym__inter_single_quotes] = STATE(653), + [sym__inter_double_quotes] = STATE(656), + [sym_val_list] = STATE(618), + [sym_val_record] = STATE(618), + [sym_val_table] = STATE(618), + [sym_val_closure] = STATE(618), + [sym__unquoted_in_record] = STATE(506), + [sym__unquoted_in_record_with_expr] = STATE(655), + [sym__unquoted_anonymous_prefix] = STATE(7045), + [sym_comment] = STATE(1020), + [anon_sym_true] = ACTIONS(3613), + [anon_sym_false] = ACTIONS(3613), + [anon_sym_null] = ACTIONS(3615), + [aux_sym_cmd_identifier_token38] = ACTIONS(3617), + [aux_sym_cmd_identifier_token39] = ACTIONS(3617), + [aux_sym_cmd_identifier_token40] = ACTIONS(3617), + [anon_sym_LBRACK] = ACTIONS(3619), + [anon_sym_LPAREN] = ACTIONS(3621), + [anon_sym_DOLLAR] = ACTIONS(3623), + [aux_sym_ctrl_match_token1] = ACTIONS(3625), + [anon_sym_DOT_DOT] = ACTIONS(3627), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3629), + [anon_sym_DOT_DOT_LT] = ACTIONS(3629), + [aux_sym__val_number_decimal_token1] = ACTIONS(3631), + [aux_sym__val_number_decimal_token2] = ACTIONS(3633), + [aux_sym__val_number_decimal_token3] = ACTIONS(3635), + [aux_sym__val_number_decimal_token4] = ACTIONS(3637), + [aux_sym__val_number_token1] = ACTIONS(3639), + [aux_sym__val_number_token2] = ACTIONS(3639), + [aux_sym__val_number_token3] = ACTIONS(3639), + [anon_sym_0b] = ACTIONS(3641), + [anon_sym_0o] = ACTIONS(3643), + [anon_sym_0x] = ACTIONS(3643), + [sym_val_date] = ACTIONS(3645), + [anon_sym_DQUOTE] = ACTIONS(3647), + [sym__str_single_quotes] = ACTIONS(3649), + [sym__str_back_ticks] = ACTIONS(3649), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3651), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3653), + [anon_sym_err_GT] = ACTIONS(3607), + [anon_sym_out_GT] = ACTIONS(3607), + [anon_sym_e_GT] = ACTIONS(3607), + [anon_sym_o_GT] = ACTIONS(3607), + [anon_sym_err_PLUSout_GT] = ACTIONS(3607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3607), + [anon_sym_o_PLUSe_GT] = ACTIONS(3607), + [anon_sym_e_PLUSo_GT] = ACTIONS(3607), + [anon_sym_err_GT_GT] = ACTIONS(3609), + [anon_sym_out_GT_GT] = ACTIONS(3609), + [anon_sym_e_GT_GT] = ACTIONS(3609), + [anon_sym_o_GT_GT] = ACTIONS(3609), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3609), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3609), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3609), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3609), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3655), + [anon_sym_POUND] = ACTIONS(247), + }, + [1021] = { + [sym_expr_parenthesized] = STATE(362), + [sym_val_range] = STATE(543), + [sym__val_range] = STATE(7684), + [sym__val_range_with_end] = STATE(7299), + [sym__value] = STATE(543), + [sym_val_nothing] = STATE(556), + [sym_val_bool] = STATE(436), + [sym_val_variable] = STATE(398), + [sym_val_number] = STATE(556), + [sym__val_number_decimal] = STATE(194), + [sym__val_number] = STATE(542), + [sym_val_duration] = STATE(556), + [sym_val_filesize] = STATE(556), + [sym_val_binary] = STATE(556), + [sym_val_string] = STATE(556), + [sym__str_double_quotes] = STATE(559), + [sym_val_interpolated] = STATE(556), + [sym__inter_single_quotes] = STATE(514), + [sym__inter_double_quotes] = STATE(515), + [sym_val_list] = STATE(556), + [sym_val_record] = STATE(556), + [sym_val_table] = STATE(556), + [sym_val_closure] = STATE(556), + [sym__unquoted_in_record] = STATE(413), + [sym__unquoted_in_record_with_expr] = STATE(543), + [sym__unquoted_anonymous_prefix] = STATE(7013), + [sym_comment] = STATE(1021), + [anon_sym_true] = ACTIONS(3567), + [anon_sym_false] = ACTIONS(3567), + [anon_sym_null] = ACTIONS(3569), + [aux_sym_cmd_identifier_token38] = ACTIONS(3571), + [aux_sym_cmd_identifier_token39] = ACTIONS(3571), + [aux_sym_cmd_identifier_token40] = ACTIONS(3571), + [anon_sym_LBRACK] = ACTIONS(3573), + [anon_sym_LPAREN] = ACTIONS(3575), + [anon_sym_DOLLAR] = ACTIONS(1481), + [aux_sym_ctrl_match_token1] = ACTIONS(3577), + [anon_sym_DOT_DOT] = ACTIONS(3579), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3581), + [anon_sym_DOT_DOT_LT] = ACTIONS(3581), + [aux_sym__val_number_decimal_token1] = ACTIONS(3583), + [aux_sym__val_number_decimal_token2] = ACTIONS(3585), + [aux_sym__val_number_decimal_token3] = ACTIONS(3587), + [aux_sym__val_number_decimal_token4] = ACTIONS(3589), + [aux_sym__val_number_token1] = ACTIONS(3591), + [aux_sym__val_number_token2] = ACTIONS(3591), + [aux_sym__val_number_token3] = ACTIONS(3591), + [anon_sym_0b] = ACTIONS(3593), + [anon_sym_0o] = ACTIONS(3595), + [anon_sym_0x] = ACTIONS(3595), + [sym_val_date] = ACTIONS(3597), + [anon_sym_DQUOTE] = ACTIONS(3599), + [sym__str_single_quotes] = ACTIONS(3601), + [sym__str_back_ticks] = ACTIONS(3601), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3605), + [anon_sym_err_GT] = ACTIONS(3607), + [anon_sym_out_GT] = ACTIONS(3607), + [anon_sym_e_GT] = ACTIONS(3607), + [anon_sym_o_GT] = ACTIONS(3607), + [anon_sym_err_PLUSout_GT] = ACTIONS(3607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3607), + [anon_sym_o_PLUSe_GT] = ACTIONS(3607), + [anon_sym_e_PLUSo_GT] = ACTIONS(3607), + [anon_sym_err_GT_GT] = ACTIONS(3609), + [anon_sym_out_GT_GT] = ACTIONS(3609), + [anon_sym_e_GT_GT] = ACTIONS(3609), + [anon_sym_o_GT_GT] = ACTIONS(3609), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3609), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3609), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3609), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3609), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3611), + [anon_sym_POUND] = ACTIONS(247), + }, + [1022] = { + [sym_comment] = STATE(1022), + [aux_sym_shebang_repeat1] = STATE(1022), + [aux_sym_cmd_identifier_token1] = ACTIONS(1898), + [aux_sym_cmd_identifier_token2] = ACTIONS(1900), + [aux_sym_cmd_identifier_token3] = ACTIONS(1900), + [aux_sym_cmd_identifier_token4] = ACTIONS(1900), + [aux_sym_cmd_identifier_token5] = ACTIONS(1900), + [aux_sym_cmd_identifier_token6] = ACTIONS(1900), + [aux_sym_cmd_identifier_token7] = ACTIONS(1900), + [aux_sym_cmd_identifier_token8] = ACTIONS(1900), + [aux_sym_cmd_identifier_token9] = ACTIONS(1898), + [aux_sym_cmd_identifier_token10] = ACTIONS(1900), + [aux_sym_cmd_identifier_token11] = ACTIONS(1900), + [aux_sym_cmd_identifier_token12] = ACTIONS(1900), + [aux_sym_cmd_identifier_token13] = ACTIONS(1898), + [aux_sym_cmd_identifier_token14] = ACTIONS(1900), + [aux_sym_cmd_identifier_token15] = ACTIONS(1898), + [aux_sym_cmd_identifier_token16] = ACTIONS(1900), + [aux_sym_cmd_identifier_token17] = ACTIONS(1900), + [aux_sym_cmd_identifier_token18] = ACTIONS(1900), + [aux_sym_cmd_identifier_token19] = ACTIONS(1900), + [aux_sym_cmd_identifier_token20] = ACTIONS(1900), + [aux_sym_cmd_identifier_token21] = ACTIONS(1900), + [aux_sym_cmd_identifier_token22] = ACTIONS(1900), + [aux_sym_cmd_identifier_token23] = ACTIONS(1898), + [aux_sym_cmd_identifier_token24] = ACTIONS(1900), + [aux_sym_cmd_identifier_token25] = ACTIONS(1900), + [aux_sym_cmd_identifier_token26] = ACTIONS(1900), + [aux_sym_cmd_identifier_token27] = ACTIONS(1900), + [aux_sym_cmd_identifier_token28] = ACTIONS(1900), + [aux_sym_cmd_identifier_token29] = ACTIONS(1900), + [aux_sym_cmd_identifier_token30] = ACTIONS(1900), + [aux_sym_cmd_identifier_token31] = ACTIONS(1900), + [aux_sym_cmd_identifier_token32] = ACTIONS(1900), + [aux_sym_cmd_identifier_token33] = ACTIONS(1900), + [aux_sym_cmd_identifier_token34] = ACTIONS(1900), + [aux_sym_cmd_identifier_token35] = ACTIONS(1900), + [aux_sym_cmd_identifier_token36] = ACTIONS(1898), + [anon_sym_true] = ACTIONS(1900), + [anon_sym_false] = ACTIONS(1900), + [anon_sym_null] = ACTIONS(1900), + [aux_sym_cmd_identifier_token38] = ACTIONS(1898), + [aux_sym_cmd_identifier_token39] = ACTIONS(1900), + [aux_sym_cmd_identifier_token40] = ACTIONS(1900), + [sym__newline] = ACTIONS(3683), + [anon_sym_LBRACK] = ACTIONS(1900), + [anon_sym_LPAREN] = ACTIONS(1900), + [anon_sym_DOLLAR] = ACTIONS(1898), + [anon_sym_DASH] = ACTIONS(1898), + [anon_sym_if] = ACTIONS(1898), + [aux_sym_ctrl_match_token1] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(1898), + [aux_sym_expr_unary_token1] = ACTIONS(1900), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1900), + [anon_sym_DOT_DOT_LT] = ACTIONS(1900), + [aux_sym__val_number_decimal_token1] = ACTIONS(1898), + [aux_sym__val_number_decimal_token2] = ACTIONS(1900), + [aux_sym__val_number_decimal_token3] = ACTIONS(1900), + [aux_sym__val_number_decimal_token4] = ACTIONS(1900), + [aux_sym__val_number_token1] = ACTIONS(1900), + [aux_sym__val_number_token2] = ACTIONS(1900), + [aux_sym__val_number_token3] = ACTIONS(1900), + [anon_sym_0b] = ACTIONS(1898), + [anon_sym_0o] = ACTIONS(1898), + [anon_sym_0x] = ACTIONS(1898), + [sym_val_date] = ACTIONS(1900), + [anon_sym_DQUOTE] = ACTIONS(1900), + [sym__str_single_quotes] = ACTIONS(1900), + [sym__str_back_ticks] = ACTIONS(1900), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1900), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1900), + [anon_sym_CARET] = ACTIONS(1900), + [anon_sym_POUND] = ACTIONS(247), + }, + [1023] = { + [sym_expr_parenthesized] = STATE(6525), + [sym_val_range] = STATE(7554), + [sym__val_range] = STATE(7774), + [sym__value] = STATE(7554), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3524), + [sym_val_variable] = STATE(3505), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(5530), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(7555), + [sym__unquoted_anonymous_prefix] = STATE(7502), + [sym_comment] = STATE(1023), + [anon_sym_true] = ACTIONS(3243), + [anon_sym_false] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [aux_sym_cmd_identifier_token38] = ACTIONS(3686), + [aux_sym_cmd_identifier_token39] = ACTIONS(3686), + [aux_sym_cmd_identifier_token40] = ACTIONS(3686), + [anon_sym_LBRACK] = ACTIONS(3688), + [anon_sym_LPAREN] = ACTIONS(3690), + [anon_sym_DOLLAR] = ACTIONS(3692), + [aux_sym_ctrl_match_token1] = ACTIONS(3694), + [anon_sym_DOT_DOT] = ACTIONS(3696), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3698), + [anon_sym_DOT_DOT_LT] = ACTIONS(3698), + [aux_sym__val_number_decimal_token1] = ACTIONS(3263), + [aux_sym__val_number_decimal_token2] = ACTIONS(3265), + [aux_sym__val_number_decimal_token3] = ACTIONS(3267), + [aux_sym__val_number_decimal_token4] = ACTIONS(3269), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3271), + [anon_sym_DQUOTE] = ACTIONS(3700), + [sym__str_single_quotes] = ACTIONS(3702), + [sym__str_back_ticks] = ACTIONS(3702), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym_record_entry_token1] = ACTIONS(3213), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3704), + [anon_sym_POUND] = ACTIONS(247), + }, + [1024] = { + [sym_expr_parenthesized] = STATE(6525), + [sym_val_range] = STATE(7554), + [sym__val_range] = STATE(7774), + [sym__value] = STATE(7554), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3524), + [sym_val_variable] = STATE(3505), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(5530), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(7555), + [sym__unquoted_anonymous_prefix] = STATE(7502), + [sym_comment] = STATE(1024), + [anon_sym_true] = ACTIONS(3243), + [anon_sym_false] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [aux_sym_cmd_identifier_token38] = ACTIONS(3686), + [aux_sym_cmd_identifier_token39] = ACTIONS(3686), + [aux_sym_cmd_identifier_token40] = ACTIONS(3686), + [anon_sym_LBRACK] = ACTIONS(3688), + [anon_sym_LPAREN] = ACTIONS(3690), + [anon_sym_DOLLAR] = ACTIONS(3692), + [aux_sym_ctrl_match_token1] = ACTIONS(3694), + [anon_sym_DOT_DOT] = ACTIONS(3696), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3698), + [anon_sym_DOT_DOT_LT] = ACTIONS(3698), + [aux_sym__val_number_decimal_token1] = ACTIONS(3263), + [aux_sym__val_number_decimal_token2] = ACTIONS(3265), + [aux_sym__val_number_decimal_token3] = ACTIONS(3267), + [aux_sym__val_number_decimal_token4] = ACTIONS(3269), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3271), + [anon_sym_DQUOTE] = ACTIONS(3700), + [sym__str_single_quotes] = ACTIONS(3702), + [sym__str_back_ticks] = ACTIONS(3702), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [aux_sym_record_entry_token1] = ACTIONS(3215), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3704), + [anon_sym_POUND] = ACTIONS(247), + }, + [1025] = { + [sym__expr_parenthesized_immediate] = STATE(1371), + [sym__immediate_decimal] = STATE(1239), + [sym_val_variable] = STATE(1371), + [sym_comment] = STATE(1025), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [anon_sym_null] = ACTIONS(1493), + [aux_sym_cmd_identifier_token38] = ACTIONS(1493), + [aux_sym_cmd_identifier_token39] = ACTIONS(1493), + [aux_sym_cmd_identifier_token40] = ACTIONS(1493), + [sym__newline] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1493), + [anon_sym_err_GT_PIPE] = ACTIONS(1493), + [anon_sym_out_GT_PIPE] = ACTIONS(1493), + [anon_sym_e_GT_PIPE] = ACTIONS(1493), + [anon_sym_o_GT_PIPE] = ACTIONS(1493), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1493), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1493), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1493), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_RPAREN] = ACTIONS(1493), + [anon_sym_DOLLAR] = ACTIONS(2537), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_DASH] = ACTIONS(1479), + [aux_sym_ctrl_match_token1] = ACTIONS(1493), + [anon_sym_RBRACE] = ACTIONS(1493), + [anon_sym_DOT_DOT] = ACTIONS(1479), + [anon_sym_LPAREN2] = ACTIONS(3706), + [anon_sym_DOT] = ACTIONS(3708), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT] = ACTIONS(1493), + [aux_sym__immediate_decimal_token1] = ACTIONS(3710), + [aux_sym__immediate_decimal_token3] = ACTIONS(3712), + [aux_sym__immediate_decimal_token4] = ACTIONS(3714), + [aux_sym__immediate_decimal_token5] = ACTIONS(3716), + [aux_sym__val_number_decimal_token1] = ACTIONS(1479), + [aux_sym__val_number_decimal_token2] = ACTIONS(1479), + [aux_sym__val_number_decimal_token3] = ACTIONS(1479), + [aux_sym__val_number_decimal_token4] = ACTIONS(1479), + [aux_sym__val_number_token1] = ACTIONS(1493), + [aux_sym__val_number_token2] = ACTIONS(1493), + [aux_sym__val_number_token3] = ACTIONS(1493), + [anon_sym_0b] = ACTIONS(1479), + [anon_sym_0o] = ACTIONS(1479), + [anon_sym_0x] = ACTIONS(1479), + [sym_val_date] = ACTIONS(1493), + [anon_sym_DQUOTE] = ACTIONS(1493), + [sym__str_single_quotes] = ACTIONS(1493), + [sym__str_back_ticks] = ACTIONS(1493), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1493), + [anon_sym_err_GT] = ACTIONS(1479), + [anon_sym_out_GT] = ACTIONS(1479), + [anon_sym_e_GT] = ACTIONS(1479), + [anon_sym_o_GT] = ACTIONS(1479), + [anon_sym_err_PLUSout_GT] = ACTIONS(1479), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1479), + [anon_sym_o_PLUSe_GT] = ACTIONS(1479), + [anon_sym_e_PLUSo_GT] = ACTIONS(1479), + [anon_sym_err_GT_GT] = ACTIONS(1493), + [anon_sym_out_GT_GT] = ACTIONS(1493), + [anon_sym_e_GT_GT] = ACTIONS(1493), + [anon_sym_o_GT_GT] = ACTIONS(1493), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1493), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1493), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1493), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1493), + [aux_sym_unquoted_token1] = ACTIONS(1479), + [aux_sym_unquoted_token2] = ACTIONS(1495), + [anon_sym_POUND] = ACTIONS(247), + }, + [1026] = { + [sym__match_pattern_expression] = STATE(3052), + [sym__match_pattern_value] = STATE(3028), + [sym__match_pattern_list] = STATE(3029), + [sym__match_pattern_rest] = STATE(7472), + [sym__match_pattern_record] = STATE(3030), + [sym_expr_parenthesized] = STATE(2816), + [sym_val_range] = STATE(3028), + [sym__val_range] = STATE(7670), + [sym_val_nothing] = STATE(3031), + [sym_val_bool] = STATE(2974), + [sym_val_variable] = STATE(2817), + [sym_val_number] = STATE(3031), + [sym__val_number_decimal] = STATE(2606), + [sym__val_number] = STATE(3023), + [sym_val_duration] = STATE(3031), + [sym_val_filesize] = STATE(3031), + [sym_val_binary] = STATE(3031), + [sym_val_string] = STATE(3031), + [sym__str_double_quotes] = STATE(3007), + [sym_val_list] = STATE(7651), + [sym_val_table] = STATE(3031), + [sym__unquoted_in_list] = STATE(3052), + [sym__unquoted_anonymous_prefix] = STATE(7659), + [sym_comment] = STATE(1026), + [aux_sym_shebang_repeat1] = STATE(6406), + [aux_sym__match_pattern_list_repeat1] = STATE(1166), + [anon_sym_true] = ACTIONS(3718), + [anon_sym_false] = ACTIONS(3718), + [anon_sym_null] = ACTIONS(3720), + [aux_sym_cmd_identifier_token38] = ACTIONS(3722), + [aux_sym_cmd_identifier_token39] = ACTIONS(3722), + [aux_sym_cmd_identifier_token40] = ACTIONS(3722), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(3724), + [anon_sym_RBRACK] = ACTIONS(3726), + [anon_sym_LPAREN] = ACTIONS(3728), + [anon_sym_DOLLAR] = ACTIONS(3730), + [aux_sym_ctrl_match_token1] = ACTIONS(3732), + [anon_sym_DOT_DOT] = ACTIONS(3734), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3736), + [anon_sym_DOT_DOT_LT] = ACTIONS(3736), + [aux_sym__val_number_decimal_token1] = ACTIONS(3738), + [aux_sym__val_number_decimal_token2] = ACTIONS(3740), + [aux_sym__val_number_decimal_token3] = ACTIONS(3742), + [aux_sym__val_number_decimal_token4] = ACTIONS(3744), + [aux_sym__val_number_token1] = ACTIONS(3746), + [aux_sym__val_number_token2] = ACTIONS(3746), + [aux_sym__val_number_token3] = ACTIONS(3746), + [anon_sym_0b] = ACTIONS(3748), + [anon_sym_0o] = ACTIONS(3750), + [anon_sym_0x] = ACTIONS(3750), + [sym_val_date] = ACTIONS(3752), + [anon_sym_DQUOTE] = ACTIONS(3754), + [sym__str_single_quotes] = ACTIONS(3756), + [sym__str_back_ticks] = ACTIONS(3756), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3758), + [anon_sym_POUND] = ACTIONS(247), + }, + [1027] = { + [sym__match_pattern_expression] = STATE(3052), + [sym__match_pattern_value] = STATE(3028), + [sym__match_pattern_list] = STATE(3029), + [sym__match_pattern_rest] = STATE(7798), + [sym__match_pattern_record] = STATE(3030), + [sym_expr_parenthesized] = STATE(2816), + [sym_val_range] = STATE(3028), + [sym__val_range] = STATE(7670), + [sym_val_nothing] = STATE(3031), + [sym_val_bool] = STATE(2974), + [sym_val_variable] = STATE(2817), + [sym_val_number] = STATE(3031), + [sym__val_number_decimal] = STATE(2606), + [sym__val_number] = STATE(3023), + [sym_val_duration] = STATE(3031), + [sym_val_filesize] = STATE(3031), + [sym_val_binary] = STATE(3031), + [sym_val_string] = STATE(3031), + [sym__str_double_quotes] = STATE(3007), + [sym_val_list] = STATE(7734), + [sym_val_table] = STATE(3031), + [sym__unquoted_in_list] = STATE(3052), + [sym__unquoted_anonymous_prefix] = STATE(7659), + [sym_comment] = STATE(1027), + [aux_sym_shebang_repeat1] = STATE(6642), + [aux_sym__match_pattern_list_repeat1] = STATE(1101), + [anon_sym_true] = ACTIONS(3718), + [anon_sym_false] = ACTIONS(3718), + [anon_sym_null] = ACTIONS(3720), + [aux_sym_cmd_identifier_token38] = ACTIONS(3722), + [aux_sym_cmd_identifier_token39] = ACTIONS(3722), + [aux_sym_cmd_identifier_token40] = ACTIONS(3722), + [sym__newline] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(3724), + [anon_sym_RBRACK] = ACTIONS(3760), + [anon_sym_LPAREN] = ACTIONS(3728), + [anon_sym_DOLLAR] = ACTIONS(3730), + [aux_sym_ctrl_match_token1] = ACTIONS(3732), + [anon_sym_DOT_DOT] = ACTIONS(3762), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3736), + [anon_sym_DOT_DOT_LT] = ACTIONS(3736), + [aux_sym__val_number_decimal_token1] = ACTIONS(3738), + [aux_sym__val_number_decimal_token2] = ACTIONS(3740), + [aux_sym__val_number_decimal_token3] = ACTIONS(3742), + [aux_sym__val_number_decimal_token4] = ACTIONS(3744), + [aux_sym__val_number_token1] = ACTIONS(3746), + [aux_sym__val_number_token2] = ACTIONS(3746), + [aux_sym__val_number_token3] = ACTIONS(3746), + [anon_sym_0b] = ACTIONS(3748), + [anon_sym_0o] = ACTIONS(3750), + [anon_sym_0x] = ACTIONS(3750), + [sym_val_date] = ACTIONS(3752), + [anon_sym_DQUOTE] = ACTIONS(3754), + [sym__str_single_quotes] = ACTIONS(3756), + [sym__str_back_ticks] = ACTIONS(3756), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3758), + [anon_sym_POUND] = ACTIONS(247), + }, + [1028] = { + [sym_cell_path] = STATE(1204), + [sym_path] = STATE(1116), + [sym_comment] = STATE(1028), + [aux_sym_cell_path_repeat1] = STATE(1049), + [anon_sym_EQ] = ACTIONS(1011), + [anon_sym_PLUS_EQ] = ACTIONS(1013), + [anon_sym_DASH_EQ] = ACTIONS(1013), + [anon_sym_STAR_EQ] = ACTIONS(1013), + [anon_sym_SLASH_EQ] = ACTIONS(1013), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1013), + [sym__newline] = ACTIONS(1011), + [anon_sym_SEMI] = ACTIONS(1013), + [anon_sym_PIPE] = ACTIONS(1013), + [anon_sym_err_GT_PIPE] = ACTIONS(1013), + [anon_sym_out_GT_PIPE] = ACTIONS(1013), + [anon_sym_e_GT_PIPE] = ACTIONS(1013), + [anon_sym_o_GT_PIPE] = ACTIONS(1013), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1013), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1013), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1013), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1013), + [aux_sym_ctrl_match_token1] = ACTIONS(1013), + [anon_sym_RBRACE] = ACTIONS(1013), + [aux_sym_expr_binary_token1] = ACTIONS(1013), + [aux_sym_expr_binary_token2] = ACTIONS(1013), + [aux_sym_expr_binary_token3] = ACTIONS(1013), + [aux_sym_expr_binary_token4] = ACTIONS(1013), + [aux_sym_expr_binary_token5] = ACTIONS(1013), + [aux_sym_expr_binary_token6] = ACTIONS(1013), + [aux_sym_expr_binary_token7] = ACTIONS(1013), + [aux_sym_expr_binary_token8] = ACTIONS(1013), + [aux_sym_expr_binary_token9] = ACTIONS(1013), + [aux_sym_expr_binary_token10] = ACTIONS(1013), + [aux_sym_expr_binary_token11] = ACTIONS(1013), + [aux_sym_expr_binary_token12] = ACTIONS(1013), + [aux_sym_expr_binary_token13] = ACTIONS(1013), + [aux_sym_expr_binary_token14] = ACTIONS(1013), + [aux_sym_expr_binary_token15] = ACTIONS(1013), + [aux_sym_expr_binary_token16] = ACTIONS(1013), + [aux_sym_expr_binary_token17] = ACTIONS(1013), + [aux_sym_expr_binary_token18] = ACTIONS(1013), + [aux_sym_expr_binary_token19] = ACTIONS(1013), + [aux_sym_expr_binary_token20] = ACTIONS(1013), + [aux_sym_expr_binary_token21] = ACTIONS(1013), + [aux_sym_expr_binary_token22] = ACTIONS(1013), + [aux_sym_expr_binary_token23] = ACTIONS(1013), + [aux_sym_expr_binary_token24] = ACTIONS(1013), + [aux_sym_expr_binary_token25] = ACTIONS(1013), + [aux_sym_expr_binary_token26] = ACTIONS(1013), + [aux_sym_expr_binary_token27] = ACTIONS(1013), + [aux_sym_expr_binary_token28] = ACTIONS(1013), + [anon_sym_DOT_DOT2] = ACTIONS(1011), + [anon_sym_DOT] = ACTIONS(3764), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1013), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1013), + [aux_sym_record_entry_token1] = ACTIONS(1013), + [anon_sym_err_GT] = ACTIONS(1011), + [anon_sym_out_GT] = ACTIONS(1011), + [anon_sym_e_GT] = ACTIONS(1011), + [anon_sym_o_GT] = ACTIONS(1011), + [anon_sym_err_PLUSout_GT] = ACTIONS(1011), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1011), + [anon_sym_o_PLUSe_GT] = ACTIONS(1011), + [anon_sym_e_PLUSo_GT] = ACTIONS(1011), + [anon_sym_err_GT_GT] = ACTIONS(1013), + [anon_sym_out_GT_GT] = ACTIONS(1013), + [anon_sym_e_GT_GT] = ACTIONS(1013), + [anon_sym_o_GT_GT] = ACTIONS(1013), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1013), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1013), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1013), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1013), + [anon_sym_POUND] = ACTIONS(247), + }, + [1029] = { + [sym_comment] = STATE(1029), + [aux_sym_cmd_identifier_token1] = ACTIONS(3766), + [aux_sym_cmd_identifier_token2] = ACTIONS(3766), + [aux_sym_cmd_identifier_token3] = ACTIONS(3766), + [aux_sym_cmd_identifier_token4] = ACTIONS(3766), + [aux_sym_cmd_identifier_token5] = ACTIONS(3766), + [aux_sym_cmd_identifier_token6] = ACTIONS(3766), + [aux_sym_cmd_identifier_token7] = ACTIONS(3766), + [aux_sym_cmd_identifier_token8] = ACTIONS(3766), + [aux_sym_cmd_identifier_token9] = ACTIONS(3766), + [aux_sym_cmd_identifier_token10] = ACTIONS(3766), + [aux_sym_cmd_identifier_token11] = ACTIONS(3766), + [aux_sym_cmd_identifier_token12] = ACTIONS(3766), + [aux_sym_cmd_identifier_token13] = ACTIONS(3766), + [aux_sym_cmd_identifier_token14] = ACTIONS(3766), + [aux_sym_cmd_identifier_token15] = ACTIONS(3766), + [aux_sym_cmd_identifier_token16] = ACTIONS(3766), + [aux_sym_cmd_identifier_token17] = ACTIONS(3766), + [aux_sym_cmd_identifier_token18] = ACTIONS(3766), + [aux_sym_cmd_identifier_token19] = ACTIONS(3766), + [aux_sym_cmd_identifier_token20] = ACTIONS(3766), + [aux_sym_cmd_identifier_token21] = ACTIONS(3766), + [aux_sym_cmd_identifier_token22] = ACTIONS(3766), + [aux_sym_cmd_identifier_token23] = ACTIONS(3766), + [aux_sym_cmd_identifier_token24] = ACTIONS(3766), + [aux_sym_cmd_identifier_token25] = ACTIONS(3766), + [aux_sym_cmd_identifier_token26] = ACTIONS(3766), + [aux_sym_cmd_identifier_token27] = ACTIONS(3766), + [aux_sym_cmd_identifier_token28] = ACTIONS(3766), + [aux_sym_cmd_identifier_token29] = ACTIONS(3766), + [aux_sym_cmd_identifier_token30] = ACTIONS(3766), + [aux_sym_cmd_identifier_token31] = ACTIONS(3766), + [aux_sym_cmd_identifier_token32] = ACTIONS(3766), + [aux_sym_cmd_identifier_token33] = ACTIONS(3766), + [aux_sym_cmd_identifier_token34] = ACTIONS(3766), + [aux_sym_cmd_identifier_token35] = ACTIONS(3766), + [aux_sym_cmd_identifier_token36] = ACTIONS(3766), + [anon_sym_true] = ACTIONS(3766), + [anon_sym_false] = ACTIONS(3766), + [anon_sym_null] = ACTIONS(3766), + [aux_sym_cmd_identifier_token38] = ACTIONS(3766), + [aux_sym_cmd_identifier_token39] = ACTIONS(3766), + [aux_sym_cmd_identifier_token40] = ACTIONS(3766), + [sym__newline] = ACTIONS(3766), + [sym__space] = ACTIONS(3768), + [anon_sym_LBRACK] = ACTIONS(3766), + [anon_sym_LPAREN] = ACTIONS(3766), + [anon_sym_DOLLAR] = ACTIONS(3766), + [anon_sym_DASH] = ACTIONS(3766), + [aux_sym_ctrl_match_token1] = ACTIONS(3766), + [anon_sym_DOT_DOT] = ACTIONS(3766), + [aux_sym_expr_unary_token1] = ACTIONS(3766), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3766), + [anon_sym_DOT_DOT_LT] = ACTIONS(3766), + [aux_sym__val_number_decimal_token1] = ACTIONS(3766), + [aux_sym__val_number_decimal_token2] = ACTIONS(3766), + [aux_sym__val_number_decimal_token3] = ACTIONS(3766), + [aux_sym__val_number_decimal_token4] = ACTIONS(3766), + [aux_sym__val_number_token1] = ACTIONS(3766), + [aux_sym__val_number_token2] = ACTIONS(3766), + [aux_sym__val_number_token3] = ACTIONS(3766), + [anon_sym_0b] = ACTIONS(3766), + [anon_sym_0o] = ACTIONS(3766), + [anon_sym_0x] = ACTIONS(3766), + [sym_val_date] = ACTIONS(3766), + [anon_sym_DQUOTE] = ACTIONS(3766), + [sym__str_single_quotes] = ACTIONS(3766), + [sym__str_back_ticks] = ACTIONS(3766), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3766), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3766), + [aux_sym_env_var_token1] = ACTIONS(3766), + [anon_sym_CARET] = ACTIONS(3766), + [anon_sym_POUND] = ACTIONS(3), + }, + [1030] = { + [sym_env_var] = STATE(6934), + [sym_comment] = STATE(1030), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1030), + [aux_sym_cmd_identifier_token1] = ACTIONS(3677), + [aux_sym_cmd_identifier_token2] = ACTIONS(3770), + [aux_sym_cmd_identifier_token3] = ACTIONS(3770), + [aux_sym_cmd_identifier_token4] = ACTIONS(3770), + [aux_sym_cmd_identifier_token5] = ACTIONS(3770), + [aux_sym_cmd_identifier_token6] = ACTIONS(3770), + [aux_sym_cmd_identifier_token7] = ACTIONS(3770), + [aux_sym_cmd_identifier_token8] = ACTIONS(3770), + [aux_sym_cmd_identifier_token9] = ACTIONS(3677), + [aux_sym_cmd_identifier_token10] = ACTIONS(3770), + [aux_sym_cmd_identifier_token11] = ACTIONS(3770), + [aux_sym_cmd_identifier_token12] = ACTIONS(3770), + [aux_sym_cmd_identifier_token13] = ACTIONS(3677), + [aux_sym_cmd_identifier_token14] = ACTIONS(3770), + [aux_sym_cmd_identifier_token15] = ACTIONS(3677), + [aux_sym_cmd_identifier_token16] = ACTIONS(3770), + [aux_sym_cmd_identifier_token17] = ACTIONS(3770), + [aux_sym_cmd_identifier_token18] = ACTIONS(3770), + [aux_sym_cmd_identifier_token19] = ACTIONS(3770), + [aux_sym_cmd_identifier_token20] = ACTIONS(3770), + [aux_sym_cmd_identifier_token21] = ACTIONS(3770), + [aux_sym_cmd_identifier_token22] = ACTIONS(3770), + [aux_sym_cmd_identifier_token23] = ACTIONS(3770), + [aux_sym_cmd_identifier_token24] = ACTIONS(3770), + [aux_sym_cmd_identifier_token25] = ACTIONS(3770), + [aux_sym_cmd_identifier_token26] = ACTIONS(3770), + [aux_sym_cmd_identifier_token27] = ACTIONS(3770), + [aux_sym_cmd_identifier_token28] = ACTIONS(3770), + [aux_sym_cmd_identifier_token29] = ACTIONS(3770), + [aux_sym_cmd_identifier_token30] = ACTIONS(3770), + [aux_sym_cmd_identifier_token31] = ACTIONS(3770), + [aux_sym_cmd_identifier_token32] = ACTIONS(3770), + [aux_sym_cmd_identifier_token33] = ACTIONS(3770), + [aux_sym_cmd_identifier_token34] = ACTIONS(3770), + [aux_sym_cmd_identifier_token35] = ACTIONS(3770), + [aux_sym_cmd_identifier_token36] = ACTIONS(3677), + [anon_sym_true] = ACTIONS(3770), + [anon_sym_false] = ACTIONS(3770), + [anon_sym_null] = ACTIONS(3770), + [aux_sym_cmd_identifier_token38] = ACTIONS(3677), + [aux_sym_cmd_identifier_token39] = ACTIONS(3770), + [aux_sym_cmd_identifier_token40] = ACTIONS(3770), + [anon_sym_LBRACK] = ACTIONS(3770), + [anon_sym_LPAREN] = ACTIONS(3770), + [anon_sym_DOLLAR] = ACTIONS(3677), + [anon_sym_DASH] = ACTIONS(3677), + [aux_sym_ctrl_match_token1] = ACTIONS(3770), + [anon_sym_DOT_DOT] = ACTIONS(3677), + [aux_sym_expr_unary_token1] = ACTIONS(3770), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3770), + [anon_sym_DOT_DOT_LT] = ACTIONS(3770), + [aux_sym__val_number_decimal_token1] = ACTIONS(3677), + [aux_sym__val_number_decimal_token2] = ACTIONS(3770), + [aux_sym__val_number_decimal_token3] = ACTIONS(3770), + [aux_sym__val_number_decimal_token4] = ACTIONS(3770), + [aux_sym__val_number_token1] = ACTIONS(3770), + [aux_sym__val_number_token2] = ACTIONS(3770), + [aux_sym__val_number_token3] = ACTIONS(3770), + [anon_sym_0b] = ACTIONS(3677), + [anon_sym_0o] = ACTIONS(3677), + [anon_sym_0x] = ACTIONS(3677), + [sym_val_date] = ACTIONS(3770), + [anon_sym_DQUOTE] = ACTIONS(3770), + [sym__str_single_quotes] = ACTIONS(3770), + [sym__str_back_ticks] = ACTIONS(3770), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3770), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3770), + [aux_sym_env_var_token1] = ACTIONS(3772), + [anon_sym_CARET] = ACTIONS(3770), + [anon_sym_POUND] = ACTIONS(247), + }, + [1031] = { + [sym_comment] = STATE(1031), + [aux_sym_pipe_element_repeat1] = STATE(1031), + [aux_sym_cmd_identifier_token1] = ACTIONS(3775), + [aux_sym_cmd_identifier_token2] = ACTIONS(3775), + [aux_sym_cmd_identifier_token3] = ACTIONS(3775), + [aux_sym_cmd_identifier_token4] = ACTIONS(3775), + [aux_sym_cmd_identifier_token5] = ACTIONS(3775), + [aux_sym_cmd_identifier_token6] = ACTIONS(3775), + [aux_sym_cmd_identifier_token7] = ACTIONS(3775), + [aux_sym_cmd_identifier_token8] = ACTIONS(3775), + [aux_sym_cmd_identifier_token9] = ACTIONS(3775), + [aux_sym_cmd_identifier_token10] = ACTIONS(3775), + [aux_sym_cmd_identifier_token11] = ACTIONS(3775), + [aux_sym_cmd_identifier_token12] = ACTIONS(3775), + [aux_sym_cmd_identifier_token13] = ACTIONS(3775), + [aux_sym_cmd_identifier_token14] = ACTIONS(3775), + [aux_sym_cmd_identifier_token15] = ACTIONS(3775), + [aux_sym_cmd_identifier_token16] = ACTIONS(3775), + [aux_sym_cmd_identifier_token17] = ACTIONS(3775), + [aux_sym_cmd_identifier_token18] = ACTIONS(3775), + [aux_sym_cmd_identifier_token19] = ACTIONS(3775), + [aux_sym_cmd_identifier_token20] = ACTIONS(3775), + [aux_sym_cmd_identifier_token21] = ACTIONS(3775), + [aux_sym_cmd_identifier_token22] = ACTIONS(3775), + [aux_sym_cmd_identifier_token23] = ACTIONS(3775), + [aux_sym_cmd_identifier_token24] = ACTIONS(3775), + [aux_sym_cmd_identifier_token25] = ACTIONS(3775), + [aux_sym_cmd_identifier_token26] = ACTIONS(3775), + [aux_sym_cmd_identifier_token27] = ACTIONS(3775), + [aux_sym_cmd_identifier_token28] = ACTIONS(3775), + [aux_sym_cmd_identifier_token29] = ACTIONS(3775), + [aux_sym_cmd_identifier_token30] = ACTIONS(3775), + [aux_sym_cmd_identifier_token31] = ACTIONS(3775), + [aux_sym_cmd_identifier_token32] = ACTIONS(3775), + [aux_sym_cmd_identifier_token33] = ACTIONS(3775), + [aux_sym_cmd_identifier_token34] = ACTIONS(3775), + [aux_sym_cmd_identifier_token35] = ACTIONS(3775), + [aux_sym_cmd_identifier_token36] = ACTIONS(3775), + [anon_sym_true] = ACTIONS(3775), + [anon_sym_false] = ACTIONS(3775), + [anon_sym_null] = ACTIONS(3775), + [aux_sym_cmd_identifier_token38] = ACTIONS(3775), + [aux_sym_cmd_identifier_token39] = ACTIONS(3775), + [aux_sym_cmd_identifier_token40] = ACTIONS(3775), + [sym__space] = ACTIONS(3777), + [anon_sym_LBRACK] = ACTIONS(3775), + [anon_sym_LPAREN] = ACTIONS(3775), + [anon_sym_DOLLAR] = ACTIONS(3775), + [anon_sym_DASH] = ACTIONS(3775), + [aux_sym_ctrl_match_token1] = ACTIONS(3775), + [anon_sym_DOT_DOT] = ACTIONS(3775), + [aux_sym_expr_unary_token1] = ACTIONS(3775), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3775), + [anon_sym_DOT_DOT_LT] = ACTIONS(3775), + [aux_sym__val_number_decimal_token1] = ACTIONS(3775), + [aux_sym__val_number_decimal_token2] = ACTIONS(3775), + [aux_sym__val_number_decimal_token3] = ACTIONS(3775), + [aux_sym__val_number_decimal_token4] = ACTIONS(3775), + [aux_sym__val_number_token1] = ACTIONS(3775), + [aux_sym__val_number_token2] = ACTIONS(3775), + [aux_sym__val_number_token3] = ACTIONS(3775), + [anon_sym_0b] = ACTIONS(3775), + [anon_sym_0o] = ACTIONS(3775), + [anon_sym_0x] = ACTIONS(3775), + [sym_val_date] = ACTIONS(3775), + [anon_sym_DQUOTE] = ACTIONS(3775), + [sym__str_single_quotes] = ACTIONS(3775), + [sym__str_back_ticks] = ACTIONS(3775), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3775), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3775), + [aux_sym_env_var_token1] = ACTIONS(3775), + [anon_sym_CARET] = ACTIONS(3775), + [anon_sym_POUND] = ACTIONS(3), + }, + [1032] = { + [sym_env_var] = STATE(7300), + [sym_comment] = STATE(1032), + [aux_sym_pipe_element_repeat2] = STATE(1032), + [aux_sym_cmd_identifier_token1] = ACTIONS(3780), + [aux_sym_cmd_identifier_token2] = ACTIONS(3782), + [aux_sym_cmd_identifier_token3] = ACTIONS(3782), + [aux_sym_cmd_identifier_token4] = ACTIONS(3782), + [aux_sym_cmd_identifier_token5] = ACTIONS(3782), + [aux_sym_cmd_identifier_token6] = ACTIONS(3782), + [aux_sym_cmd_identifier_token7] = ACTIONS(3782), + [aux_sym_cmd_identifier_token8] = ACTIONS(3782), + [aux_sym_cmd_identifier_token9] = ACTIONS(3780), + [aux_sym_cmd_identifier_token10] = ACTIONS(3782), + [aux_sym_cmd_identifier_token11] = ACTIONS(3782), + [aux_sym_cmd_identifier_token12] = ACTIONS(3782), + [aux_sym_cmd_identifier_token13] = ACTIONS(3780), + [aux_sym_cmd_identifier_token14] = ACTIONS(3782), + [aux_sym_cmd_identifier_token15] = ACTIONS(3780), + [aux_sym_cmd_identifier_token16] = ACTIONS(3782), + [aux_sym_cmd_identifier_token17] = ACTIONS(3782), + [aux_sym_cmd_identifier_token18] = ACTIONS(3782), + [aux_sym_cmd_identifier_token19] = ACTIONS(3782), + [aux_sym_cmd_identifier_token20] = ACTIONS(3782), + [aux_sym_cmd_identifier_token21] = ACTIONS(3782), + [aux_sym_cmd_identifier_token22] = ACTIONS(3782), + [aux_sym_cmd_identifier_token23] = ACTIONS(3782), + [aux_sym_cmd_identifier_token24] = ACTIONS(3782), + [aux_sym_cmd_identifier_token25] = ACTIONS(3782), + [aux_sym_cmd_identifier_token26] = ACTIONS(3782), + [aux_sym_cmd_identifier_token27] = ACTIONS(3782), + [aux_sym_cmd_identifier_token28] = ACTIONS(3782), + [aux_sym_cmd_identifier_token29] = ACTIONS(3782), + [aux_sym_cmd_identifier_token30] = ACTIONS(3782), + [aux_sym_cmd_identifier_token31] = ACTIONS(3782), + [aux_sym_cmd_identifier_token32] = ACTIONS(3782), + [aux_sym_cmd_identifier_token33] = ACTIONS(3782), + [aux_sym_cmd_identifier_token34] = ACTIONS(3782), + [aux_sym_cmd_identifier_token35] = ACTIONS(3782), + [aux_sym_cmd_identifier_token36] = ACTIONS(3780), + [anon_sym_true] = ACTIONS(3782), + [anon_sym_false] = ACTIONS(3782), + [anon_sym_null] = ACTIONS(3782), + [aux_sym_cmd_identifier_token38] = ACTIONS(3780), + [aux_sym_cmd_identifier_token39] = ACTIONS(3782), + [aux_sym_cmd_identifier_token40] = ACTIONS(3782), + [anon_sym_LBRACK] = ACTIONS(3782), + [anon_sym_LPAREN] = ACTIONS(3782), + [anon_sym_DOLLAR] = ACTIONS(3780), + [anon_sym_DASH] = ACTIONS(3780), + [aux_sym_ctrl_match_token1] = ACTIONS(3782), + [anon_sym_DOT_DOT] = ACTIONS(3780), + [aux_sym_expr_unary_token1] = ACTIONS(3782), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3782), + [anon_sym_DOT_DOT_LT] = ACTIONS(3782), + [aux_sym__val_number_decimal_token1] = ACTIONS(3780), + [aux_sym__val_number_decimal_token2] = ACTIONS(3782), + [aux_sym__val_number_decimal_token3] = ACTIONS(3782), + [aux_sym__val_number_decimal_token4] = ACTIONS(3782), + [aux_sym__val_number_token1] = ACTIONS(3782), + [aux_sym__val_number_token2] = ACTIONS(3782), + [aux_sym__val_number_token3] = ACTIONS(3782), + [anon_sym_0b] = ACTIONS(3780), + [anon_sym_0o] = ACTIONS(3780), + [anon_sym_0x] = ACTIONS(3780), + [sym_val_date] = ACTIONS(3782), + [anon_sym_DQUOTE] = ACTIONS(3782), + [sym__str_single_quotes] = ACTIONS(3782), + [sym__str_back_ticks] = ACTIONS(3782), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3782), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3782), + [aux_sym_env_var_token1] = ACTIONS(3784), + [anon_sym_CARET] = ACTIONS(3782), + [anon_sym_POUND] = ACTIONS(247), + }, + [1033] = { + [sym_comment] = STATE(1033), + [aux_sym_pipe_element_repeat1] = STATE(1031), + [aux_sym_cmd_identifier_token1] = ACTIONS(3780), + [aux_sym_cmd_identifier_token2] = ACTIONS(3780), + [aux_sym_cmd_identifier_token3] = ACTIONS(3780), + [aux_sym_cmd_identifier_token4] = ACTIONS(3780), + [aux_sym_cmd_identifier_token5] = ACTIONS(3780), + [aux_sym_cmd_identifier_token6] = ACTIONS(3780), + [aux_sym_cmd_identifier_token7] = ACTIONS(3780), + [aux_sym_cmd_identifier_token8] = ACTIONS(3780), + [aux_sym_cmd_identifier_token9] = ACTIONS(3780), + [aux_sym_cmd_identifier_token10] = ACTIONS(3780), + [aux_sym_cmd_identifier_token11] = ACTIONS(3780), + [aux_sym_cmd_identifier_token12] = ACTIONS(3780), + [aux_sym_cmd_identifier_token13] = ACTIONS(3780), + [aux_sym_cmd_identifier_token14] = ACTIONS(3780), + [aux_sym_cmd_identifier_token15] = ACTIONS(3780), + [aux_sym_cmd_identifier_token16] = ACTIONS(3780), + [aux_sym_cmd_identifier_token17] = ACTIONS(3780), + [aux_sym_cmd_identifier_token18] = ACTIONS(3780), + [aux_sym_cmd_identifier_token19] = ACTIONS(3780), + [aux_sym_cmd_identifier_token20] = ACTIONS(3780), + [aux_sym_cmd_identifier_token21] = ACTIONS(3780), + [aux_sym_cmd_identifier_token22] = ACTIONS(3780), + [aux_sym_cmd_identifier_token23] = ACTIONS(3780), + [aux_sym_cmd_identifier_token24] = ACTIONS(3780), + [aux_sym_cmd_identifier_token25] = ACTIONS(3780), + [aux_sym_cmd_identifier_token26] = ACTIONS(3780), + [aux_sym_cmd_identifier_token27] = ACTIONS(3780), + [aux_sym_cmd_identifier_token28] = ACTIONS(3780), + [aux_sym_cmd_identifier_token29] = ACTIONS(3780), + [aux_sym_cmd_identifier_token30] = ACTIONS(3780), + [aux_sym_cmd_identifier_token31] = ACTIONS(3780), + [aux_sym_cmd_identifier_token32] = ACTIONS(3780), + [aux_sym_cmd_identifier_token33] = ACTIONS(3780), + [aux_sym_cmd_identifier_token34] = ACTIONS(3780), + [aux_sym_cmd_identifier_token35] = ACTIONS(3780), + [aux_sym_cmd_identifier_token36] = ACTIONS(3780), + [anon_sym_true] = ACTIONS(3780), + [anon_sym_false] = ACTIONS(3780), + [anon_sym_null] = ACTIONS(3780), + [aux_sym_cmd_identifier_token38] = ACTIONS(3780), + [aux_sym_cmd_identifier_token39] = ACTIONS(3780), + [aux_sym_cmd_identifier_token40] = ACTIONS(3780), + [sym__space] = ACTIONS(3787), + [anon_sym_LBRACK] = ACTIONS(3780), + [anon_sym_LPAREN] = ACTIONS(3780), + [anon_sym_DOLLAR] = ACTIONS(3780), + [anon_sym_DASH] = ACTIONS(3780), + [aux_sym_ctrl_match_token1] = ACTIONS(3780), + [anon_sym_DOT_DOT] = ACTIONS(3780), + [aux_sym_expr_unary_token1] = ACTIONS(3780), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3780), + [anon_sym_DOT_DOT_LT] = ACTIONS(3780), + [aux_sym__val_number_decimal_token1] = ACTIONS(3780), + [aux_sym__val_number_decimal_token2] = ACTIONS(3780), + [aux_sym__val_number_decimal_token3] = ACTIONS(3780), + [aux_sym__val_number_decimal_token4] = ACTIONS(3780), + [aux_sym__val_number_token1] = ACTIONS(3780), + [aux_sym__val_number_token2] = ACTIONS(3780), + [aux_sym__val_number_token3] = ACTIONS(3780), + [anon_sym_0b] = ACTIONS(3780), + [anon_sym_0o] = ACTIONS(3780), + [anon_sym_0x] = ACTIONS(3780), + [sym_val_date] = ACTIONS(3780), + [anon_sym_DQUOTE] = ACTIONS(3780), + [sym__str_single_quotes] = ACTIONS(3780), + [sym__str_back_ticks] = ACTIONS(3780), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3780), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3780), + [aux_sym_env_var_token1] = ACTIONS(3780), + [anon_sym_CARET] = ACTIONS(3780), + [anon_sym_POUND] = ACTIONS(3), + }, + [1034] = { + [sym_expr_parenthesized] = STATE(6194), + [sym_val_range] = STATE(7609), + [sym__val_range] = STATE(7774), + [sym__value] = STATE(7609), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3524), + [sym_val_variable] = STATE(3505), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(5530), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(7535), + [sym__unquoted_anonymous_prefix] = STATE(7502), + [sym_comment] = STATE(1034), + [anon_sym_true] = ACTIONS(3243), + [anon_sym_false] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [aux_sym_cmd_identifier_token38] = ACTIONS(3686), + [aux_sym_cmd_identifier_token39] = ACTIONS(3686), + [aux_sym_cmd_identifier_token40] = ACTIONS(3686), + [anon_sym_LBRACK] = ACTIONS(3688), + [anon_sym_LPAREN] = ACTIONS(3690), + [anon_sym_DOLLAR] = ACTIONS(3692), + [aux_sym_ctrl_match_token1] = ACTIONS(3694), + [anon_sym_DOT_DOT] = ACTIONS(3696), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3698), + [anon_sym_DOT_DOT_LT] = ACTIONS(3698), + [aux_sym__val_number_decimal_token1] = ACTIONS(3263), + [aux_sym__val_number_decimal_token2] = ACTIONS(3265), + [aux_sym__val_number_decimal_token3] = ACTIONS(3267), + [aux_sym__val_number_decimal_token4] = ACTIONS(3269), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3271), + [anon_sym_DQUOTE] = ACTIONS(3700), + [sym__str_single_quotes] = ACTIONS(3702), + [sym__str_back_ticks] = ACTIONS(3702), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3704), + [anon_sym_POUND] = ACTIONS(247), + }, + [1035] = { + [sym__expr_parenthesized_immediate] = STATE(1468), + [sym__immediate_decimal] = STATE(1292), + [sym_val_variable] = STATE(1468), + [sym_comment] = STATE(1035), + [ts_builtin_sym_end] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [anon_sym_null] = ACTIONS(1493), + [aux_sym_cmd_identifier_token38] = ACTIONS(1493), + [aux_sym_cmd_identifier_token39] = ACTIONS(1493), + [aux_sym_cmd_identifier_token40] = ACTIONS(1493), + [sym__newline] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1493), + [anon_sym_err_GT_PIPE] = ACTIONS(1493), + [anon_sym_out_GT_PIPE] = ACTIONS(1493), + [anon_sym_e_GT_PIPE] = ACTIONS(1493), + [anon_sym_o_GT_PIPE] = ACTIONS(1493), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1493), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1493), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1493), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_DOLLAR] = ACTIONS(2764), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_DASH] = ACTIONS(1479), + [aux_sym_ctrl_match_token1] = ACTIONS(1493), + [anon_sym_DOT_DOT] = ACTIONS(1479), + [anon_sym_LPAREN2] = ACTIONS(3789), + [anon_sym_DOT] = ACTIONS(3791), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT] = ACTIONS(1493), + [aux_sym__immediate_decimal_token1] = ACTIONS(3793), + [aux_sym__immediate_decimal_token3] = ACTIONS(3795), + [aux_sym__immediate_decimal_token4] = ACTIONS(3797), + [aux_sym__immediate_decimal_token5] = ACTIONS(3799), + [aux_sym__val_number_decimal_token1] = ACTIONS(1479), + [aux_sym__val_number_decimal_token2] = ACTIONS(1479), + [aux_sym__val_number_decimal_token3] = ACTIONS(1479), + [aux_sym__val_number_decimal_token4] = ACTIONS(1479), + [aux_sym__val_number_token1] = ACTIONS(1493), + [aux_sym__val_number_token2] = ACTIONS(1493), + [aux_sym__val_number_token3] = ACTIONS(1493), + [anon_sym_0b] = ACTIONS(1479), + [anon_sym_0o] = ACTIONS(1479), + [anon_sym_0x] = ACTIONS(1479), + [sym_val_date] = ACTIONS(1493), + [anon_sym_DQUOTE] = ACTIONS(1493), + [sym__str_single_quotes] = ACTIONS(1493), + [sym__str_back_ticks] = ACTIONS(1493), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1493), + [anon_sym_err_GT] = ACTIONS(1479), + [anon_sym_out_GT] = ACTIONS(1479), + [anon_sym_e_GT] = ACTIONS(1479), + [anon_sym_o_GT] = ACTIONS(1479), + [anon_sym_err_PLUSout_GT] = ACTIONS(1479), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1479), + [anon_sym_o_PLUSe_GT] = ACTIONS(1479), + [anon_sym_e_PLUSo_GT] = ACTIONS(1479), + [anon_sym_err_GT_GT] = ACTIONS(1493), + [anon_sym_out_GT_GT] = ACTIONS(1493), + [anon_sym_e_GT_GT] = ACTIONS(1493), + [anon_sym_o_GT_GT] = ACTIONS(1493), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1493), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1493), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1493), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1493), + [aux_sym_unquoted_token1] = ACTIONS(1479), + [aux_sym_unquoted_token2] = ACTIONS(1495), + [anon_sym_POUND] = ACTIONS(247), + }, + [1036] = { + [sym_match_arm] = STATE(6006), + [sym_match_pattern] = STATE(7640), + [sym__match_pattern] = STATE(5944), + [sym__match_pattern_expression] = STATE(6857), + [sym__match_pattern_value] = STATE(6861), + [sym__match_pattern_list] = STATE(6862), + [sym__match_pattern_record] = STATE(6888), + [sym_expr_parenthesized] = STATE(5713), + [sym_val_range] = STATE(6861), + [sym__val_range] = STATE(7551), + [sym_val_nothing] = STATE(6915), + [sym_val_bool] = STATE(6595), + [sym_val_variable] = STATE(5754), + [sym_val_number] = STATE(6915), + [sym__val_number_decimal] = STATE(5295), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(6915), + [sym_val_filesize] = STATE(6915), + [sym_val_binary] = STATE(6915), + [sym_val_string] = STATE(6915), + [sym__str_double_quotes] = STATE(1707), + [sym_val_table] = STATE(6915), + [sym_unquoted] = STATE(6919), + [sym__unquoted_anonymous_prefix] = STATE(7814), + [sym_comment] = STATE(1036), + [aux_sym_ctrl_match_repeat1] = STATE(1042), + [anon_sym_true] = ACTIONS(3471), + [anon_sym_false] = ACTIONS(3471), + [anon_sym_null] = ACTIONS(3473), + [aux_sym_cmd_identifier_token38] = ACTIONS(3475), + [aux_sym_cmd_identifier_token39] = ACTIONS(3475), + [aux_sym_cmd_identifier_token40] = ACTIONS(3475), + [anon_sym_LBRACK] = ACTIONS(3479), + [anon_sym_LPAREN] = ACTIONS(3481), + [anon_sym_DOLLAR] = ACTIONS(3483), + [aux_sym_ctrl_match_token1] = ACTIONS(3485), + [anon_sym__] = ACTIONS(3557), + [anon_sym_DOT_DOT] = ACTIONS(3491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3493), + [anon_sym_DOT_DOT_LT] = ACTIONS(3493), + [aux_sym__val_number_decimal_token1] = ACTIONS(3495), + [aux_sym__val_number_decimal_token2] = ACTIONS(3497), + [aux_sym__val_number_decimal_token3] = ACTIONS(3499), + [aux_sym__val_number_decimal_token4] = ACTIONS(3501), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3503), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_POUND] = ACTIONS(247), + }, + [1037] = { + [sym_match_arm] = STATE(6002), + [sym_match_pattern] = STATE(7640), + [sym__match_pattern] = STATE(5944), + [sym__match_pattern_expression] = STATE(6857), + [sym__match_pattern_value] = STATE(6861), + [sym__match_pattern_list] = STATE(6862), + [sym__match_pattern_record] = STATE(6888), + [sym_expr_parenthesized] = STATE(5713), + [sym_val_range] = STATE(6861), + [sym__val_range] = STATE(7551), + [sym_val_nothing] = STATE(6915), + [sym_val_bool] = STATE(6595), + [sym_val_variable] = STATE(5754), + [sym_val_number] = STATE(6915), + [sym__val_number_decimal] = STATE(5295), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(6915), + [sym_val_filesize] = STATE(6915), + [sym_val_binary] = STATE(6915), + [sym_val_string] = STATE(6915), + [sym__str_double_quotes] = STATE(1707), + [sym_val_table] = STATE(6915), + [sym_unquoted] = STATE(6919), + [sym__unquoted_anonymous_prefix] = STATE(7814), + [sym_comment] = STATE(1037), + [aux_sym_ctrl_match_repeat1] = STATE(1042), + [anon_sym_true] = ACTIONS(3471), + [anon_sym_false] = ACTIONS(3471), + [anon_sym_null] = ACTIONS(3473), + [aux_sym_cmd_identifier_token38] = ACTIONS(3475), + [aux_sym_cmd_identifier_token39] = ACTIONS(3475), + [aux_sym_cmd_identifier_token40] = ACTIONS(3475), + [anon_sym_LBRACK] = ACTIONS(3479), + [anon_sym_LPAREN] = ACTIONS(3481), + [anon_sym_DOLLAR] = ACTIONS(3483), + [aux_sym_ctrl_match_token1] = ACTIONS(3485), + [anon_sym__] = ACTIONS(3557), + [anon_sym_DOT_DOT] = ACTIONS(3491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3493), + [anon_sym_DOT_DOT_LT] = ACTIONS(3493), + [aux_sym__val_number_decimal_token1] = ACTIONS(3495), + [aux_sym__val_number_decimal_token2] = ACTIONS(3497), + [aux_sym__val_number_decimal_token3] = ACTIONS(3499), + [aux_sym__val_number_decimal_token4] = ACTIONS(3501), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3503), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_POUND] = ACTIONS(247), + }, + [1038] = { + [sym_match_arm] = STATE(5901), + [sym_match_pattern] = STATE(7640), + [sym__match_pattern] = STATE(5944), + [sym__match_pattern_expression] = STATE(6857), + [sym__match_pattern_value] = STATE(6861), + [sym__match_pattern_list] = STATE(6862), + [sym__match_pattern_record] = STATE(6888), + [sym_expr_parenthesized] = STATE(5713), + [sym_val_range] = STATE(6861), + [sym__val_range] = STATE(7551), + [sym_val_nothing] = STATE(6915), + [sym_val_bool] = STATE(6595), + [sym_val_variable] = STATE(5754), + [sym_val_number] = STATE(6915), + [sym__val_number_decimal] = STATE(5295), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(6915), + [sym_val_filesize] = STATE(6915), + [sym_val_binary] = STATE(6915), + [sym_val_string] = STATE(6915), + [sym__str_double_quotes] = STATE(1707), + [sym_val_table] = STATE(6915), + [sym_unquoted] = STATE(6919), + [sym__unquoted_anonymous_prefix] = STATE(7814), + [sym_comment] = STATE(1038), + [aux_sym_ctrl_match_repeat1] = STATE(1042), + [anon_sym_true] = ACTIONS(3471), + [anon_sym_false] = ACTIONS(3471), + [anon_sym_null] = ACTIONS(3473), + [aux_sym_cmd_identifier_token38] = ACTIONS(3475), + [aux_sym_cmd_identifier_token39] = ACTIONS(3475), + [aux_sym_cmd_identifier_token40] = ACTIONS(3475), + [anon_sym_LBRACK] = ACTIONS(3479), + [anon_sym_LPAREN] = ACTIONS(3481), + [anon_sym_DOLLAR] = ACTIONS(3483), + [aux_sym_ctrl_match_token1] = ACTIONS(3485), + [anon_sym__] = ACTIONS(3557), + [anon_sym_DOT_DOT] = ACTIONS(3491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3493), + [anon_sym_DOT_DOT_LT] = ACTIONS(3493), + [aux_sym__val_number_decimal_token1] = ACTIONS(3495), + [aux_sym__val_number_decimal_token2] = ACTIONS(3497), + [aux_sym__val_number_decimal_token3] = ACTIONS(3499), + [aux_sym__val_number_decimal_token4] = ACTIONS(3501), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3503), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_POUND] = ACTIONS(247), + }, + [1039] = { + [sym_match_arm] = STATE(5902), + [sym_match_pattern] = STATE(7640), + [sym__match_pattern] = STATE(5944), + [sym__match_pattern_expression] = STATE(6857), + [sym__match_pattern_value] = STATE(6861), + [sym__match_pattern_list] = STATE(6862), + [sym__match_pattern_record] = STATE(6888), + [sym_expr_parenthesized] = STATE(5713), + [sym_val_range] = STATE(6861), + [sym__val_range] = STATE(7551), + [sym_val_nothing] = STATE(6915), + [sym_val_bool] = STATE(6595), + [sym_val_variable] = STATE(5754), + [sym_val_number] = STATE(6915), + [sym__val_number_decimal] = STATE(5295), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(6915), + [sym_val_filesize] = STATE(6915), + [sym_val_binary] = STATE(6915), + [sym_val_string] = STATE(6915), + [sym__str_double_quotes] = STATE(1707), + [sym_val_table] = STATE(6915), + [sym_unquoted] = STATE(6919), + [sym__unquoted_anonymous_prefix] = STATE(7814), + [sym_comment] = STATE(1039), + [aux_sym_ctrl_match_repeat1] = STATE(1042), + [anon_sym_true] = ACTIONS(3471), + [anon_sym_false] = ACTIONS(3471), + [anon_sym_null] = ACTIONS(3473), + [aux_sym_cmd_identifier_token38] = ACTIONS(3475), + [aux_sym_cmd_identifier_token39] = ACTIONS(3475), + [aux_sym_cmd_identifier_token40] = ACTIONS(3475), + [anon_sym_LBRACK] = ACTIONS(3479), + [anon_sym_LPAREN] = ACTIONS(3481), + [anon_sym_DOLLAR] = ACTIONS(3483), + [aux_sym_ctrl_match_token1] = ACTIONS(3485), + [anon_sym__] = ACTIONS(3557), + [anon_sym_DOT_DOT] = ACTIONS(3491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3493), + [anon_sym_DOT_DOT_LT] = ACTIONS(3493), + [aux_sym__val_number_decimal_token1] = ACTIONS(3495), + [aux_sym__val_number_decimal_token2] = ACTIONS(3497), + [aux_sym__val_number_decimal_token3] = ACTIONS(3499), + [aux_sym__val_number_decimal_token4] = ACTIONS(3501), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3503), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_POUND] = ACTIONS(247), + }, + [1040] = { + [sym_comment] = STATE(1040), + [aux_sym_cmd_identifier_token1] = ACTIONS(1345), + [aux_sym_cmd_identifier_token2] = ACTIONS(1349), + [aux_sym_cmd_identifier_token3] = ACTIONS(1349), + [aux_sym_cmd_identifier_token4] = ACTIONS(1349), + [aux_sym_cmd_identifier_token5] = ACTIONS(1349), + [aux_sym_cmd_identifier_token6] = ACTIONS(1349), + [aux_sym_cmd_identifier_token7] = ACTIONS(1349), + [aux_sym_cmd_identifier_token8] = ACTIONS(1349), + [aux_sym_cmd_identifier_token9] = ACTIONS(1345), + [aux_sym_cmd_identifier_token10] = ACTIONS(1349), + [aux_sym_cmd_identifier_token11] = ACTIONS(1349), + [aux_sym_cmd_identifier_token12] = ACTIONS(1349), + [aux_sym_cmd_identifier_token13] = ACTIONS(1345), + [aux_sym_cmd_identifier_token14] = ACTIONS(1349), + [aux_sym_cmd_identifier_token15] = ACTIONS(1345), + [aux_sym_cmd_identifier_token16] = ACTIONS(1349), + [aux_sym_cmd_identifier_token17] = ACTIONS(1349), + [aux_sym_cmd_identifier_token18] = ACTIONS(1349), + [aux_sym_cmd_identifier_token19] = ACTIONS(1349), + [aux_sym_cmd_identifier_token20] = ACTIONS(1349), + [aux_sym_cmd_identifier_token21] = ACTIONS(1349), + [aux_sym_cmd_identifier_token22] = ACTIONS(1349), + [aux_sym_cmd_identifier_token23] = ACTIONS(1345), + [aux_sym_cmd_identifier_token24] = ACTIONS(1349), + [aux_sym_cmd_identifier_token25] = ACTIONS(1349), + [aux_sym_cmd_identifier_token26] = ACTIONS(1349), + [aux_sym_cmd_identifier_token27] = ACTIONS(1349), + [aux_sym_cmd_identifier_token28] = ACTIONS(1349), + [aux_sym_cmd_identifier_token29] = ACTIONS(1349), + [aux_sym_cmd_identifier_token30] = ACTIONS(1349), + [aux_sym_cmd_identifier_token31] = ACTIONS(1349), + [aux_sym_cmd_identifier_token32] = ACTIONS(1349), + [aux_sym_cmd_identifier_token33] = ACTIONS(1349), + [aux_sym_cmd_identifier_token34] = ACTIONS(1349), + [aux_sym_cmd_identifier_token35] = ACTIONS(1349), + [aux_sym_cmd_identifier_token36] = ACTIONS(1345), + [anon_sym_true] = ACTIONS(1349), + [anon_sym_false] = ACTIONS(1349), + [anon_sym_null] = ACTIONS(1349), + [aux_sym_cmd_identifier_token38] = ACTIONS(1345), + [aux_sym_cmd_identifier_token39] = ACTIONS(1349), + [aux_sym_cmd_identifier_token40] = ACTIONS(1349), + [sym__newline] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_DOLLAR] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1345), + [aux_sym_ctrl_match_token1] = ACTIONS(1349), + [anon_sym_DOT_DOT] = ACTIONS(1345), + [aux_sym_expr_unary_token1] = ACTIONS(1349), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1349), + [anon_sym_DOT_DOT_LT] = ACTIONS(1349), + [aux_sym__val_number_decimal_token1] = ACTIONS(1345), + [aux_sym__val_number_decimal_token2] = ACTIONS(1349), + [aux_sym__val_number_decimal_token3] = ACTIONS(1349), + [aux_sym__val_number_decimal_token4] = ACTIONS(1349), + [aux_sym__val_number_token1] = ACTIONS(1349), + [aux_sym__val_number_token2] = ACTIONS(1349), + [aux_sym__val_number_token3] = ACTIONS(1349), + [anon_sym_0b] = ACTIONS(1345), + [anon_sym_0o] = ACTIONS(1345), + [anon_sym_0x] = ACTIONS(1345), + [sym_val_date] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(1349), + [sym__str_single_quotes] = ACTIONS(1349), + [sym__str_back_ticks] = ACTIONS(1349), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1349), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1349), + [anon_sym_CARET] = ACTIONS(1349), + [anon_sym_POUND] = ACTIONS(247), + }, + [1041] = { + [sym__expr_parenthesized_immediate] = STATE(1368), + [sym__immediate_decimal] = STATE(1369), + [sym_val_variable] = STATE(1368), + [sym_comment] = STATE(1041), + [anon_sym_true] = ACTIONS(1515), + [anon_sym_false] = ACTIONS(1515), + [anon_sym_null] = ACTIONS(1515), + [aux_sym_cmd_identifier_token38] = ACTIONS(1515), + [aux_sym_cmd_identifier_token39] = ACTIONS(1515), + [aux_sym_cmd_identifier_token40] = ACTIONS(1515), + [sym__newline] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_err_GT_PIPE] = ACTIONS(1515), + [anon_sym_out_GT_PIPE] = ACTIONS(1515), + [anon_sym_e_GT_PIPE] = ACTIONS(1515), + [anon_sym_o_GT_PIPE] = ACTIONS(1515), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1515), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1515), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1515), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1515), + [anon_sym_LPAREN] = ACTIONS(1505), + [anon_sym_RPAREN] = ACTIONS(1515), + [anon_sym_DOLLAR] = ACTIONS(2537), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_DASH] = ACTIONS(1505), + [aux_sym_ctrl_match_token1] = ACTIONS(1515), + [anon_sym_RBRACE] = ACTIONS(1515), + [anon_sym_DOT_DOT] = ACTIONS(1505), + [anon_sym_LPAREN2] = ACTIONS(3706), + [anon_sym_DOT] = ACTIONS(3801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [aux_sym__immediate_decimal_token1] = ACTIONS(3803), + [aux_sym__immediate_decimal_token3] = ACTIONS(3805), + [aux_sym__immediate_decimal_token4] = ACTIONS(3807), + [aux_sym__immediate_decimal_token5] = ACTIONS(3809), + [aux_sym__val_number_decimal_token1] = ACTIONS(1505), + [aux_sym__val_number_decimal_token2] = ACTIONS(1505), + [aux_sym__val_number_decimal_token3] = ACTIONS(1505), + [aux_sym__val_number_decimal_token4] = ACTIONS(1505), + [aux_sym__val_number_token1] = ACTIONS(1515), + [aux_sym__val_number_token2] = ACTIONS(1515), + [aux_sym__val_number_token3] = ACTIONS(1515), + [anon_sym_0b] = ACTIONS(1505), + [anon_sym_0o] = ACTIONS(1505), + [anon_sym_0x] = ACTIONS(1505), + [sym_val_date] = ACTIONS(1515), + [anon_sym_DQUOTE] = ACTIONS(1515), + [sym__str_single_quotes] = ACTIONS(1515), + [sym__str_back_ticks] = ACTIONS(1515), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1515), + [anon_sym_err_GT] = ACTIONS(1505), + [anon_sym_out_GT] = ACTIONS(1505), + [anon_sym_e_GT] = ACTIONS(1505), + [anon_sym_o_GT] = ACTIONS(1505), + [anon_sym_err_PLUSout_GT] = ACTIONS(1505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1505), + [anon_sym_o_PLUSe_GT] = ACTIONS(1505), + [anon_sym_e_PLUSo_GT] = ACTIONS(1505), + [anon_sym_err_GT_GT] = ACTIONS(1515), + [anon_sym_out_GT_GT] = ACTIONS(1515), + [anon_sym_e_GT_GT] = ACTIONS(1515), + [anon_sym_o_GT_GT] = ACTIONS(1515), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1515), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1515), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1515), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1515), + [aux_sym_unquoted_token1] = ACTIONS(1505), + [anon_sym_POUND] = ACTIONS(247), + }, + [1042] = { + [sym_match_arm] = STATE(7415), + [sym_match_pattern] = STATE(7698), + [sym__match_pattern] = STATE(5944), + [sym__match_pattern_expression] = STATE(6857), + [sym__match_pattern_value] = STATE(6861), + [sym__match_pattern_list] = STATE(6862), + [sym__match_pattern_record] = STATE(6888), + [sym_expr_parenthesized] = STATE(5713), + [sym_val_range] = STATE(6861), + [sym__val_range] = STATE(7551), + [sym_val_nothing] = STATE(6915), + [sym_val_bool] = STATE(6595), + [sym_val_variable] = STATE(5754), + [sym_val_number] = STATE(6915), + [sym__val_number_decimal] = STATE(5295), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(6915), + [sym_val_filesize] = STATE(6915), + [sym_val_binary] = STATE(6915), + [sym_val_string] = STATE(6915), + [sym__str_double_quotes] = STATE(1707), + [sym_val_table] = STATE(6915), + [sym_unquoted] = STATE(6919), + [sym__unquoted_anonymous_prefix] = STATE(7814), + [sym_comment] = STATE(1042), + [aux_sym_ctrl_match_repeat1] = STATE(1042), + [anon_sym_true] = ACTIONS(3811), + [anon_sym_false] = ACTIONS(3811), + [anon_sym_null] = ACTIONS(3814), + [aux_sym_cmd_identifier_token38] = ACTIONS(3817), + [aux_sym_cmd_identifier_token39] = ACTIONS(3817), + [aux_sym_cmd_identifier_token40] = ACTIONS(3817), + [anon_sym_LBRACK] = ACTIONS(3820), + [anon_sym_LPAREN] = ACTIONS(3823), + [anon_sym_DOLLAR] = ACTIONS(3826), + [aux_sym_ctrl_match_token1] = ACTIONS(3829), + [anon_sym__] = ACTIONS(3832), + [anon_sym_DOT_DOT] = ACTIONS(3835), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3838), + [anon_sym_DOT_DOT_LT] = ACTIONS(3838), + [aux_sym__val_number_decimal_token1] = ACTIONS(3841), + [aux_sym__val_number_decimal_token2] = ACTIONS(3844), + [aux_sym__val_number_decimal_token3] = ACTIONS(3847), + [aux_sym__val_number_decimal_token4] = ACTIONS(3850), + [aux_sym__val_number_token1] = ACTIONS(3853), + [aux_sym__val_number_token2] = ACTIONS(3853), + [aux_sym__val_number_token3] = ACTIONS(3853), + [anon_sym_0b] = ACTIONS(3856), + [anon_sym_0o] = ACTIONS(3859), + [anon_sym_0x] = ACTIONS(3859), + [sym_val_date] = ACTIONS(3862), + [anon_sym_DQUOTE] = ACTIONS(3865), + [sym__str_single_quotes] = ACTIONS(3868), + [sym__str_back_ticks] = ACTIONS(3868), + [anon_sym_err_GT] = ACTIONS(3871), + [anon_sym_out_GT] = ACTIONS(3871), + [anon_sym_e_GT] = ACTIONS(3871), + [anon_sym_o_GT] = ACTIONS(3871), + [anon_sym_err_PLUSout_GT] = ACTIONS(3871), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3871), + [anon_sym_o_PLUSe_GT] = ACTIONS(3871), + [anon_sym_e_PLUSo_GT] = ACTIONS(3871), + [anon_sym_err_GT_GT] = ACTIONS(3874), + [anon_sym_out_GT_GT] = ACTIONS(3874), + [anon_sym_e_GT_GT] = ACTIONS(3874), + [anon_sym_o_GT_GT] = ACTIONS(3874), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3874), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3874), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3874), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3874), + [aux_sym_unquoted_token1] = ACTIONS(3877), + [anon_sym_POUND] = ACTIONS(247), + }, + [1043] = { + [sym_cell_path] = STATE(1225), + [sym_path] = STATE(1205), + [sym_comment] = STATE(1043), + [aux_sym_cell_path_repeat1] = STATE(1074), + [anon_sym_EQ] = ACTIONS(1011), + [anon_sym_PLUS_EQ] = ACTIONS(1013), + [anon_sym_DASH_EQ] = ACTIONS(1013), + [anon_sym_STAR_EQ] = ACTIONS(1013), + [anon_sym_SLASH_EQ] = ACTIONS(1013), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1013), + [sym__newline] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1013), + [anon_sym_PIPE] = ACTIONS(1013), + [anon_sym_err_GT_PIPE] = ACTIONS(1013), + [anon_sym_out_GT_PIPE] = ACTIONS(1013), + [anon_sym_e_GT_PIPE] = ACTIONS(1013), + [anon_sym_o_GT_PIPE] = ACTIONS(1013), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1013), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1013), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1013), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1013), + [anon_sym_RPAREN] = ACTIONS(1013), + [anon_sym_RBRACE] = ACTIONS(1013), + [aux_sym_expr_binary_token1] = ACTIONS(1013), + [aux_sym_expr_binary_token2] = ACTIONS(1013), + [aux_sym_expr_binary_token3] = ACTIONS(1013), + [aux_sym_expr_binary_token4] = ACTIONS(1013), + [aux_sym_expr_binary_token5] = ACTIONS(1013), + [aux_sym_expr_binary_token6] = ACTIONS(1013), + [aux_sym_expr_binary_token7] = ACTIONS(1013), + [aux_sym_expr_binary_token8] = ACTIONS(1013), + [aux_sym_expr_binary_token9] = ACTIONS(1013), + [aux_sym_expr_binary_token10] = ACTIONS(1013), + [aux_sym_expr_binary_token11] = ACTIONS(1013), + [aux_sym_expr_binary_token12] = ACTIONS(1013), + [aux_sym_expr_binary_token13] = ACTIONS(1013), + [aux_sym_expr_binary_token14] = ACTIONS(1013), + [aux_sym_expr_binary_token15] = ACTIONS(1013), + [aux_sym_expr_binary_token16] = ACTIONS(1013), + [aux_sym_expr_binary_token17] = ACTIONS(1013), + [aux_sym_expr_binary_token18] = ACTIONS(1013), + [aux_sym_expr_binary_token19] = ACTIONS(1013), + [aux_sym_expr_binary_token20] = ACTIONS(1013), + [aux_sym_expr_binary_token21] = ACTIONS(1013), + [aux_sym_expr_binary_token22] = ACTIONS(1013), + [aux_sym_expr_binary_token23] = ACTIONS(1013), + [aux_sym_expr_binary_token24] = ACTIONS(1013), + [aux_sym_expr_binary_token25] = ACTIONS(1013), + [aux_sym_expr_binary_token26] = ACTIONS(1013), + [aux_sym_expr_binary_token27] = ACTIONS(1013), + [aux_sym_expr_binary_token28] = ACTIONS(1013), + [anon_sym_DOT_DOT2] = ACTIONS(1011), + [anon_sym_DOT] = ACTIONS(3880), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1013), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1013), + [anon_sym_err_GT] = ACTIONS(1011), + [anon_sym_out_GT] = ACTIONS(1011), + [anon_sym_e_GT] = ACTIONS(1011), + [anon_sym_o_GT] = ACTIONS(1011), + [anon_sym_err_PLUSout_GT] = ACTIONS(1011), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1011), + [anon_sym_o_PLUSe_GT] = ACTIONS(1011), + [anon_sym_e_PLUSo_GT] = ACTIONS(1011), + [anon_sym_err_GT_GT] = ACTIONS(1013), + [anon_sym_out_GT_GT] = ACTIONS(1013), + [anon_sym_e_GT_GT] = ACTIONS(1013), + [anon_sym_o_GT_GT] = ACTIONS(1013), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1013), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1013), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1013), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1013), + [anon_sym_POUND] = ACTIONS(247), + }, + [1044] = { + [sym_match_arm] = STATE(5999), + [sym_match_pattern] = STATE(7640), + [sym__match_pattern] = STATE(5944), + [sym__match_pattern_expression] = STATE(6857), + [sym__match_pattern_value] = STATE(6861), + [sym__match_pattern_list] = STATE(6862), + [sym__match_pattern_record] = STATE(6888), + [sym_expr_parenthesized] = STATE(5713), + [sym_val_range] = STATE(6861), + [sym__val_range] = STATE(7551), + [sym_val_nothing] = STATE(6915), + [sym_val_bool] = STATE(6595), + [sym_val_variable] = STATE(5754), + [sym_val_number] = STATE(6915), + [sym__val_number_decimal] = STATE(5295), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(6915), + [sym_val_filesize] = STATE(6915), + [sym_val_binary] = STATE(6915), + [sym_val_string] = STATE(6915), + [sym__str_double_quotes] = STATE(1707), + [sym_val_table] = STATE(6915), + [sym_unquoted] = STATE(6919), + [sym__unquoted_anonymous_prefix] = STATE(7814), + [sym_comment] = STATE(1044), + [aux_sym_ctrl_match_repeat1] = STATE(1042), + [anon_sym_true] = ACTIONS(3471), + [anon_sym_false] = ACTIONS(3471), + [anon_sym_null] = ACTIONS(3473), + [aux_sym_cmd_identifier_token38] = ACTIONS(3475), + [aux_sym_cmd_identifier_token39] = ACTIONS(3475), + [aux_sym_cmd_identifier_token40] = ACTIONS(3475), + [anon_sym_LBRACK] = ACTIONS(3479), + [anon_sym_LPAREN] = ACTIONS(3481), + [anon_sym_DOLLAR] = ACTIONS(3483), + [aux_sym_ctrl_match_token1] = ACTIONS(3485), + [anon_sym__] = ACTIONS(3557), + [anon_sym_DOT_DOT] = ACTIONS(3491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3493), + [anon_sym_DOT_DOT_LT] = ACTIONS(3493), + [aux_sym__val_number_decimal_token1] = ACTIONS(3495), + [aux_sym__val_number_decimal_token2] = ACTIONS(3497), + [aux_sym__val_number_decimal_token3] = ACTIONS(3499), + [aux_sym__val_number_decimal_token4] = ACTIONS(3501), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3503), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), + [anon_sym_POUND] = ACTIONS(247), + }, + [1045] = { + [sym__expr_parenthesized_immediate] = STATE(1586), + [sym__immediate_decimal] = STATE(1420), + [sym_val_variable] = STATE(1586), + [sym_comment] = STATE(1045), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [anon_sym_null] = ACTIONS(1493), + [aux_sym_cmd_identifier_token38] = ACTIONS(1493), + [aux_sym_cmd_identifier_token39] = ACTIONS(1493), + [aux_sym_cmd_identifier_token40] = ACTIONS(1493), + [sym__newline] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1493), + [anon_sym_err_GT_PIPE] = ACTIONS(1493), + [anon_sym_out_GT_PIPE] = ACTIONS(1493), + [anon_sym_e_GT_PIPE] = ACTIONS(1493), + [anon_sym_o_GT_PIPE] = ACTIONS(1493), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1493), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1493), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1493), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_RPAREN] = ACTIONS(1493), + [anon_sym_DOLLAR] = ACTIONS(3882), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_DASH] = ACTIONS(1479), + [aux_sym_ctrl_match_token1] = ACTIONS(1493), + [anon_sym_RBRACE] = ACTIONS(1493), + [anon_sym_DOT_DOT] = ACTIONS(1479), + [anon_sym_LPAREN2] = ACTIONS(3884), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT] = ACTIONS(1493), + [aux_sym__immediate_decimal_token1] = ACTIONS(3886), + [aux_sym__immediate_decimal_token3] = ACTIONS(3888), + [aux_sym__immediate_decimal_token4] = ACTIONS(3890), + [aux_sym__immediate_decimal_token5] = ACTIONS(3892), + [aux_sym__val_number_decimal_token1] = ACTIONS(1479), + [aux_sym__val_number_decimal_token2] = ACTIONS(1479), + [aux_sym__val_number_decimal_token3] = ACTIONS(1479), + [aux_sym__val_number_decimal_token4] = ACTIONS(1479), + [aux_sym__val_number_token1] = ACTIONS(1493), + [aux_sym__val_number_token2] = ACTIONS(1493), + [aux_sym__val_number_token3] = ACTIONS(1493), + [anon_sym_0b] = ACTIONS(1479), + [anon_sym_0o] = ACTIONS(1479), + [anon_sym_0x] = ACTIONS(1479), + [sym_val_date] = ACTIONS(1493), + [anon_sym_DQUOTE] = ACTIONS(1493), + [sym__str_single_quotes] = ACTIONS(1493), + [sym__str_back_ticks] = ACTIONS(1493), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1493), + [anon_sym_err_GT] = ACTIONS(1479), + [anon_sym_out_GT] = ACTIONS(1479), + [anon_sym_e_GT] = ACTIONS(1479), + [anon_sym_o_GT] = ACTIONS(1479), + [anon_sym_err_PLUSout_GT] = ACTIONS(1479), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1479), + [anon_sym_o_PLUSe_GT] = ACTIONS(1479), + [anon_sym_e_PLUSo_GT] = ACTIONS(1479), + [anon_sym_err_GT_GT] = ACTIONS(1493), + [anon_sym_out_GT_GT] = ACTIONS(1493), + [anon_sym_e_GT_GT] = ACTIONS(1493), + [anon_sym_o_GT_GT] = ACTIONS(1493), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1493), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1493), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1493), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1493), + [aux_sym_unquoted_token1] = ACTIONS(1479), + [aux_sym_unquoted_token2] = ACTIONS(1495), [anon_sym_POUND] = ACTIONS(247), }, [1046] = { - [sym_expr_unary] = STATE(2564), - [sym__expr_unary_minus] = STATE(2610), - [sym_expr_binary] = STATE(2564), - [sym__expr_binary_expression] = STATE(3528), - [sym_expr_parenthesized] = STATE(2564), - [sym__val_range] = STATE(7911), - [sym__val_range_with_end] = STATE(7541), - [sym__value] = STATE(2564), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(3385), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(3168), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__str_double_quotes] = STATE(2144), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2607), - [sym__inter_double_quotes] = STATE(2626), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2247), - [sym__unquoted_with_expr] = STATE(2600), - [sym__unquoted_anonymous_prefix] = STATE(6983), + [sym_expr_parenthesized] = STATE(6525), + [sym_val_range] = STATE(7554), + [sym__val_range] = STATE(7774), + [sym__value] = STATE(7554), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3524), + [sym_val_variable] = STATE(3505), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(5530), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(7555), + [sym__unquoted_anonymous_prefix] = STATE(7502), [sym_comment] = STATE(1046), - [anon_sym_true] = ACTIONS(3341), - [anon_sym_false] = ACTIONS(3341), - [anon_sym_null] = ACTIONS(3343), - [aux_sym_cmd_identifier_token38] = ACTIONS(3345), - [aux_sym_cmd_identifier_token39] = ACTIONS(3345), - [aux_sym_cmd_identifier_token40] = ACTIONS(3345), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_DOLLAR] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3281), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), - [anon_sym_DOT_DOT_LT] = ACTIONS(3283), - [aux_sym__val_number_decimal_token1] = ACTIONS(3347), - [aux_sym__val_number_decimal_token2] = ACTIONS(3349), - [aux_sym__val_number_decimal_token3] = ACTIONS(3351), - [aux_sym__val_number_decimal_token4] = ACTIONS(3353), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3355), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3295), + [anon_sym_true] = ACTIONS(3243), + [anon_sym_false] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [aux_sym_cmd_identifier_token38] = ACTIONS(3686), + [aux_sym_cmd_identifier_token39] = ACTIONS(3686), + [aux_sym_cmd_identifier_token40] = ACTIONS(3686), + [anon_sym_LBRACK] = ACTIONS(3688), + [anon_sym_LPAREN] = ACTIONS(3690), + [anon_sym_DOLLAR] = ACTIONS(3692), + [aux_sym_ctrl_match_token1] = ACTIONS(3694), + [anon_sym_DOT_DOT] = ACTIONS(3696), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3698), + [anon_sym_DOT_DOT_LT] = ACTIONS(3698), + [aux_sym__val_number_decimal_token1] = ACTIONS(3263), + [aux_sym__val_number_decimal_token2] = ACTIONS(3265), + [aux_sym__val_number_decimal_token3] = ACTIONS(3267), + [aux_sym__val_number_decimal_token4] = ACTIONS(3269), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3271), + [anon_sym_DQUOTE] = ACTIONS(3700), + [sym__str_single_quotes] = ACTIONS(3702), + [sym__str_back_ticks] = ACTIONS(3702), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3704), [anon_sym_POUND] = ACTIONS(247), }, [1047] = { - [sym_expr_unary] = STATE(2564), - [sym__expr_unary_minus] = STATE(2610), - [sym_expr_binary] = STATE(2564), - [sym__expr_binary_expression] = STATE(3529), - [sym_expr_parenthesized] = STATE(2564), - [sym__val_range] = STATE(7911), - [sym__val_range_with_end] = STATE(7541), - [sym__value] = STATE(2564), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(3385), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(3168), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__str_double_quotes] = STATE(2144), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2607), - [sym__inter_double_quotes] = STATE(2626), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2252), - [sym__unquoted_with_expr] = STATE(2612), - [sym__unquoted_anonymous_prefix] = STATE(6983), + [sym_cell_path] = STATE(1224), + [sym_path] = STATE(1206), [sym_comment] = STATE(1047), - [anon_sym_true] = ACTIONS(3341), - [anon_sym_false] = ACTIONS(3341), - [anon_sym_null] = ACTIONS(3343), - [aux_sym_cmd_identifier_token38] = ACTIONS(3345), - [aux_sym_cmd_identifier_token39] = ACTIONS(3345), - [aux_sym_cmd_identifier_token40] = ACTIONS(3345), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_DOLLAR] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3281), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), - [anon_sym_DOT_DOT_LT] = ACTIONS(3283), - [aux_sym__val_number_decimal_token1] = ACTIONS(3347), - [aux_sym__val_number_decimal_token2] = ACTIONS(3349), - [aux_sym__val_number_decimal_token3] = ACTIONS(3351), - [aux_sym__val_number_decimal_token4] = ACTIONS(3353), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3355), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3295), + [aux_sym_cell_path_repeat1] = STATE(1065), + [anon_sym_EQ] = ACTIONS(1011), + [anon_sym_PLUS_EQ] = ACTIONS(1013), + [anon_sym_DASH_EQ] = ACTIONS(1013), + [anon_sym_STAR_EQ] = ACTIONS(1013), + [anon_sym_SLASH_EQ] = ACTIONS(1013), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1013), + [sym__newline] = ACTIONS(1011), + [anon_sym_SEMI] = ACTIONS(1013), + [anon_sym_PIPE] = ACTIONS(1013), + [anon_sym_err_GT_PIPE] = ACTIONS(1013), + [anon_sym_out_GT_PIPE] = ACTIONS(1013), + [anon_sym_e_GT_PIPE] = ACTIONS(1013), + [anon_sym_o_GT_PIPE] = ACTIONS(1013), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1013), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1013), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1013), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1013), + [anon_sym_RPAREN] = ACTIONS(1013), + [aux_sym_ctrl_match_token1] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1013), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1013), + [anon_sym_DOT_DOT2] = ACTIONS(1011), + [anon_sym_DOT] = ACTIONS(3894), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1013), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1013), + [anon_sym_err_GT] = ACTIONS(1011), + [anon_sym_out_GT] = ACTIONS(1011), + [anon_sym_e_GT] = ACTIONS(1011), + [anon_sym_o_GT] = ACTIONS(1011), + [anon_sym_err_PLUSout_GT] = ACTIONS(1011), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1011), + [anon_sym_o_PLUSe_GT] = ACTIONS(1011), + [anon_sym_e_PLUSo_GT] = ACTIONS(1011), + [anon_sym_err_GT_GT] = ACTIONS(1013), + [anon_sym_out_GT_GT] = ACTIONS(1013), + [anon_sym_e_GT_GT] = ACTIONS(1013), + [anon_sym_o_GT_GT] = ACTIONS(1013), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1013), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1013), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1013), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1013), [anon_sym_POUND] = ACTIONS(247), }, [1048] = { - [sym_expr_unary] = STATE(2564), - [sym__expr_unary_minus] = STATE(2610), - [sym_expr_binary] = STATE(2564), - [sym__expr_binary_expression] = STATE(3530), - [sym_expr_parenthesized] = STATE(2564), - [sym__val_range] = STATE(7911), - [sym__val_range_with_end] = STATE(7541), - [sym__value] = STATE(2564), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(3385), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(3168), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__str_double_quotes] = STATE(2144), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2607), - [sym__inter_double_quotes] = STATE(2626), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2253), - [sym__unquoted_with_expr] = STATE(2545), - [sym__unquoted_anonymous_prefix] = STATE(6983), + [sym__expr_parenthesized_immediate] = STATE(1597), + [sym__immediate_decimal] = STATE(1440), + [sym_val_variable] = STATE(1597), [sym_comment] = STATE(1048), - [anon_sym_true] = ACTIONS(3341), - [anon_sym_false] = ACTIONS(3341), - [anon_sym_null] = ACTIONS(3343), - [aux_sym_cmd_identifier_token38] = ACTIONS(3345), - [aux_sym_cmd_identifier_token39] = ACTIONS(3345), - [aux_sym_cmd_identifier_token40] = ACTIONS(3345), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_DOLLAR] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3281), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), - [anon_sym_DOT_DOT_LT] = ACTIONS(3283), - [aux_sym__val_number_decimal_token1] = ACTIONS(3347), - [aux_sym__val_number_decimal_token2] = ACTIONS(3349), - [aux_sym__val_number_decimal_token3] = ACTIONS(3351), - [aux_sym__val_number_decimal_token4] = ACTIONS(3353), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3355), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3295), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [aux_sym_cmd_identifier_token38] = ACTIONS(1551), + [aux_sym_cmd_identifier_token39] = ACTIONS(1551), + [aux_sym_cmd_identifier_token40] = ACTIONS(1551), + [sym__newline] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_err_GT_PIPE] = ACTIONS(1551), + [anon_sym_out_GT_PIPE] = ACTIONS(1551), + [anon_sym_e_GT_PIPE] = ACTIONS(1551), + [anon_sym_o_GT_PIPE] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1549), + [anon_sym_RPAREN] = ACTIONS(1551), + [anon_sym_DOLLAR] = ACTIONS(3882), + [anon_sym_DASH_DASH] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [aux_sym_ctrl_match_token1] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_DOT_DOT] = ACTIONS(1549), + [anon_sym_LPAREN2] = ACTIONS(3884), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1551), + [anon_sym_DOT_DOT_LT] = ACTIONS(1551), + [aux_sym__immediate_decimal_token1] = ACTIONS(3886), + [aux_sym__immediate_decimal_token3] = ACTIONS(3888), + [aux_sym__immediate_decimal_token4] = ACTIONS(3890), + [aux_sym__immediate_decimal_token5] = ACTIONS(3892), + [aux_sym__val_number_decimal_token1] = ACTIONS(1549), + [aux_sym__val_number_decimal_token2] = ACTIONS(1549), + [aux_sym__val_number_decimal_token3] = ACTIONS(1549), + [aux_sym__val_number_decimal_token4] = ACTIONS(1549), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1549), + [anon_sym_0o] = ACTIONS(1549), + [anon_sym_0x] = ACTIONS(1549), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_err_GT] = ACTIONS(1549), + [anon_sym_out_GT] = ACTIONS(1549), + [anon_sym_e_GT] = ACTIONS(1549), + [anon_sym_o_GT] = ACTIONS(1549), + [anon_sym_err_PLUSout_GT] = ACTIONS(1549), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1549), + [anon_sym_o_PLUSe_GT] = ACTIONS(1549), + [anon_sym_e_PLUSo_GT] = ACTIONS(1549), + [anon_sym_err_GT_GT] = ACTIONS(1551), + [anon_sym_out_GT_GT] = ACTIONS(1551), + [anon_sym_e_GT_GT] = ACTIONS(1551), + [anon_sym_o_GT_GT] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1551), + [aux_sym_unquoted_token1] = ACTIONS(1549), + [aux_sym_unquoted_token2] = ACTIONS(1553), [anon_sym_POUND] = ACTIONS(247), }, [1049] = { - [sym_expr_unary] = STATE(2564), - [sym__expr_unary_minus] = STATE(2610), - [sym_expr_binary] = STATE(2564), - [sym__expr_binary_expression] = STATE(3531), - [sym_expr_parenthesized] = STATE(2564), - [sym__val_range] = STATE(7911), - [sym__val_range_with_end] = STATE(7541), - [sym__value] = STATE(2564), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(3385), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(3168), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__str_double_quotes] = STATE(2144), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2607), - [sym__inter_double_quotes] = STATE(2626), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2254), - [sym__unquoted_with_expr] = STATE(2596), - [sym__unquoted_anonymous_prefix] = STATE(6983), + [sym_path] = STATE(1116), [sym_comment] = STATE(1049), - [anon_sym_true] = ACTIONS(3341), - [anon_sym_false] = ACTIONS(3341), - [anon_sym_null] = ACTIONS(3343), - [aux_sym_cmd_identifier_token38] = ACTIONS(3345), - [aux_sym_cmd_identifier_token39] = ACTIONS(3345), - [aux_sym_cmd_identifier_token40] = ACTIONS(3345), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_DOLLAR] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3281), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), - [anon_sym_DOT_DOT_LT] = ACTIONS(3283), - [aux_sym__val_number_decimal_token1] = ACTIONS(3347), - [aux_sym__val_number_decimal_token2] = ACTIONS(3349), - [aux_sym__val_number_decimal_token3] = ACTIONS(3351), - [aux_sym__val_number_decimal_token4] = ACTIONS(3353), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3355), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3295), + [aux_sym_cell_path_repeat1] = STATE(1053), + [anon_sym_EQ] = ACTIONS(1017), + [anon_sym_PLUS_EQ] = ACTIONS(1019), + [anon_sym_DASH_EQ] = ACTIONS(1019), + [anon_sym_STAR_EQ] = ACTIONS(1019), + [anon_sym_SLASH_EQ] = ACTIONS(1019), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1019), + [sym__newline] = ACTIONS(1017), + [anon_sym_SEMI] = ACTIONS(1019), + [anon_sym_PIPE] = ACTIONS(1019), + [anon_sym_err_GT_PIPE] = ACTIONS(1019), + [anon_sym_out_GT_PIPE] = ACTIONS(1019), + [anon_sym_e_GT_PIPE] = ACTIONS(1019), + [anon_sym_o_GT_PIPE] = ACTIONS(1019), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1019), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1019), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1019), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1019), + [aux_sym_ctrl_match_token1] = ACTIONS(1019), + [anon_sym_RBRACE] = ACTIONS(1019), + [aux_sym_expr_binary_token1] = ACTIONS(1019), + [aux_sym_expr_binary_token2] = ACTIONS(1019), + [aux_sym_expr_binary_token3] = ACTIONS(1019), + [aux_sym_expr_binary_token4] = ACTIONS(1019), + [aux_sym_expr_binary_token5] = ACTIONS(1019), + [aux_sym_expr_binary_token6] = ACTIONS(1019), + [aux_sym_expr_binary_token7] = ACTIONS(1019), + [aux_sym_expr_binary_token8] = ACTIONS(1019), + [aux_sym_expr_binary_token9] = ACTIONS(1019), + [aux_sym_expr_binary_token10] = ACTIONS(1019), + [aux_sym_expr_binary_token11] = ACTIONS(1019), + [aux_sym_expr_binary_token12] = ACTIONS(1019), + [aux_sym_expr_binary_token13] = ACTIONS(1019), + [aux_sym_expr_binary_token14] = ACTIONS(1019), + [aux_sym_expr_binary_token15] = ACTIONS(1019), + [aux_sym_expr_binary_token16] = ACTIONS(1019), + [aux_sym_expr_binary_token17] = ACTIONS(1019), + [aux_sym_expr_binary_token18] = ACTIONS(1019), + [aux_sym_expr_binary_token19] = ACTIONS(1019), + [aux_sym_expr_binary_token20] = ACTIONS(1019), + [aux_sym_expr_binary_token21] = ACTIONS(1019), + [aux_sym_expr_binary_token22] = ACTIONS(1019), + [aux_sym_expr_binary_token23] = ACTIONS(1019), + [aux_sym_expr_binary_token24] = ACTIONS(1019), + [aux_sym_expr_binary_token25] = ACTIONS(1019), + [aux_sym_expr_binary_token26] = ACTIONS(1019), + [aux_sym_expr_binary_token27] = ACTIONS(1019), + [aux_sym_expr_binary_token28] = ACTIONS(1019), + [anon_sym_DOT_DOT2] = ACTIONS(1017), + [anon_sym_DOT] = ACTIONS(3764), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1019), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1019), + [aux_sym_record_entry_token1] = ACTIONS(1019), + [anon_sym_err_GT] = ACTIONS(1017), + [anon_sym_out_GT] = ACTIONS(1017), + [anon_sym_e_GT] = ACTIONS(1017), + [anon_sym_o_GT] = ACTIONS(1017), + [anon_sym_err_PLUSout_GT] = ACTIONS(1017), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1017), + [anon_sym_o_PLUSe_GT] = ACTIONS(1017), + [anon_sym_e_PLUSo_GT] = ACTIONS(1017), + [anon_sym_err_GT_GT] = ACTIONS(1019), + [anon_sym_out_GT_GT] = ACTIONS(1019), + [anon_sym_e_GT_GT] = ACTIONS(1019), + [anon_sym_o_GT_GT] = ACTIONS(1019), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1019), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1019), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1019), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1019), [anon_sym_POUND] = ACTIONS(247), }, [1050] = { - [sym_expr_unary] = STATE(2564), - [sym__expr_unary_minus] = STATE(2610), - [sym_expr_binary] = STATE(2564), - [sym__expr_binary_expression] = STATE(3532), - [sym_expr_parenthesized] = STATE(2564), - [sym__val_range] = STATE(7911), - [sym__val_range_with_end] = STATE(7541), - [sym__value] = STATE(2564), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(3385), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(3168), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__str_double_quotes] = STATE(2144), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2607), - [sym__inter_double_quotes] = STATE(2626), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2255), - [sym__unquoted_with_expr] = STATE(2621), - [sym__unquoted_anonymous_prefix] = STATE(6983), + [sym_match_arm] = STATE(6023), + [sym_match_pattern] = STATE(7640), + [sym__match_pattern] = STATE(5944), + [sym__match_pattern_expression] = STATE(6857), + [sym__match_pattern_value] = STATE(6861), + [sym__match_pattern_list] = STATE(6862), + [sym__match_pattern_record] = STATE(6888), + [sym_expr_parenthesized] = STATE(5713), + [sym_val_range] = STATE(6861), + [sym__val_range] = STATE(7551), + [sym_val_nothing] = STATE(6915), + [sym_val_bool] = STATE(6595), + [sym_val_variable] = STATE(5754), + [sym_val_number] = STATE(6915), + [sym__val_number_decimal] = STATE(5295), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(6915), + [sym_val_filesize] = STATE(6915), + [sym_val_binary] = STATE(6915), + [sym_val_string] = STATE(6915), + [sym__str_double_quotes] = STATE(1707), + [sym_val_table] = STATE(6915), + [sym_unquoted] = STATE(6919), + [sym__unquoted_anonymous_prefix] = STATE(7814), [sym_comment] = STATE(1050), - [anon_sym_true] = ACTIONS(3341), - [anon_sym_false] = ACTIONS(3341), - [anon_sym_null] = ACTIONS(3343), - [aux_sym_cmd_identifier_token38] = ACTIONS(3345), - [aux_sym_cmd_identifier_token39] = ACTIONS(3345), - [aux_sym_cmd_identifier_token40] = ACTIONS(3345), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_DOLLAR] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3281), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), - [anon_sym_DOT_DOT_LT] = ACTIONS(3283), - [aux_sym__val_number_decimal_token1] = ACTIONS(3347), - [aux_sym__val_number_decimal_token2] = ACTIONS(3349), - [aux_sym__val_number_decimal_token3] = ACTIONS(3351), - [aux_sym__val_number_decimal_token4] = ACTIONS(3353), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3355), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3295), + [aux_sym_ctrl_match_repeat1] = STATE(1042), + [anon_sym_true] = ACTIONS(3471), + [anon_sym_false] = ACTIONS(3471), + [anon_sym_null] = ACTIONS(3473), + [aux_sym_cmd_identifier_token38] = ACTIONS(3475), + [aux_sym_cmd_identifier_token39] = ACTIONS(3475), + [aux_sym_cmd_identifier_token40] = ACTIONS(3475), + [anon_sym_LBRACK] = ACTIONS(3479), + [anon_sym_LPAREN] = ACTIONS(3481), + [anon_sym_DOLLAR] = ACTIONS(3483), + [aux_sym_ctrl_match_token1] = ACTIONS(3485), + [anon_sym__] = ACTIONS(3557), + [anon_sym_DOT_DOT] = ACTIONS(3491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3493), + [anon_sym_DOT_DOT_LT] = ACTIONS(3493), + [aux_sym__val_number_decimal_token1] = ACTIONS(3495), + [aux_sym__val_number_decimal_token2] = ACTIONS(3497), + [aux_sym__val_number_decimal_token3] = ACTIONS(3499), + [aux_sym__val_number_decimal_token4] = ACTIONS(3501), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3503), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [1051] = { - [sym_expr_unary] = STATE(2564), - [sym__expr_unary_minus] = STATE(2610), - [sym_expr_binary] = STATE(2564), - [sym__expr_binary_expression] = STATE(3533), - [sym_expr_parenthesized] = STATE(2564), - [sym__val_range] = STATE(7911), - [sym__val_range_with_end] = STATE(7541), - [sym__value] = STATE(2564), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(3385), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(3168), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__str_double_quotes] = STATE(2144), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2607), - [sym__inter_double_quotes] = STATE(2626), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2257), - [sym__unquoted_with_expr] = STATE(2540), - [sym__unquoted_anonymous_prefix] = STATE(6983), [sym_comment] = STATE(1051), - [anon_sym_true] = ACTIONS(3341), - [anon_sym_false] = ACTIONS(3341), - [anon_sym_null] = ACTIONS(3343), - [aux_sym_cmd_identifier_token38] = ACTIONS(3345), - [aux_sym_cmd_identifier_token39] = ACTIONS(3345), - [aux_sym_cmd_identifier_token40] = ACTIONS(3345), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_DOLLAR] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3281), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), - [anon_sym_DOT_DOT_LT] = ACTIONS(3283), - [aux_sym__val_number_decimal_token1] = ACTIONS(3347), - [aux_sym__val_number_decimal_token2] = ACTIONS(3349), - [aux_sym__val_number_decimal_token3] = ACTIONS(3351), - [aux_sym__val_number_decimal_token4] = ACTIONS(3353), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3355), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3295), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cmd_identifier_token1] = ACTIONS(3896), + [aux_sym_cmd_identifier_token2] = ACTIONS(3896), + [aux_sym_cmd_identifier_token3] = ACTIONS(3896), + [aux_sym_cmd_identifier_token4] = ACTIONS(3896), + [aux_sym_cmd_identifier_token5] = ACTIONS(3896), + [aux_sym_cmd_identifier_token6] = ACTIONS(3896), + [aux_sym_cmd_identifier_token7] = ACTIONS(3896), + [aux_sym_cmd_identifier_token8] = ACTIONS(3896), + [aux_sym_cmd_identifier_token9] = ACTIONS(3896), + [aux_sym_cmd_identifier_token10] = ACTIONS(3896), + [aux_sym_cmd_identifier_token11] = ACTIONS(3896), + [aux_sym_cmd_identifier_token12] = ACTIONS(3896), + [aux_sym_cmd_identifier_token13] = ACTIONS(3896), + [aux_sym_cmd_identifier_token14] = ACTIONS(3896), + [aux_sym_cmd_identifier_token15] = ACTIONS(3896), + [aux_sym_cmd_identifier_token16] = ACTIONS(3896), + [aux_sym_cmd_identifier_token17] = ACTIONS(3896), + [aux_sym_cmd_identifier_token18] = ACTIONS(3896), + [aux_sym_cmd_identifier_token19] = ACTIONS(3896), + [aux_sym_cmd_identifier_token20] = ACTIONS(3896), + [aux_sym_cmd_identifier_token21] = ACTIONS(3896), + [aux_sym_cmd_identifier_token22] = ACTIONS(3896), + [aux_sym_cmd_identifier_token23] = ACTIONS(3896), + [aux_sym_cmd_identifier_token24] = ACTIONS(3896), + [aux_sym_cmd_identifier_token25] = ACTIONS(3896), + [aux_sym_cmd_identifier_token26] = ACTIONS(3896), + [aux_sym_cmd_identifier_token27] = ACTIONS(3896), + [aux_sym_cmd_identifier_token28] = ACTIONS(3896), + [aux_sym_cmd_identifier_token29] = ACTIONS(3896), + [aux_sym_cmd_identifier_token30] = ACTIONS(3896), + [aux_sym_cmd_identifier_token31] = ACTIONS(3896), + [aux_sym_cmd_identifier_token32] = ACTIONS(3896), + [aux_sym_cmd_identifier_token33] = ACTIONS(3896), + [aux_sym_cmd_identifier_token34] = ACTIONS(3896), + [aux_sym_cmd_identifier_token35] = ACTIONS(3896), + [aux_sym_cmd_identifier_token36] = ACTIONS(3896), + [anon_sym_true] = ACTIONS(3896), + [anon_sym_false] = ACTIONS(3896), + [anon_sym_null] = ACTIONS(3896), + [aux_sym_cmd_identifier_token38] = ACTIONS(3896), + [aux_sym_cmd_identifier_token39] = ACTIONS(3896), + [aux_sym_cmd_identifier_token40] = ACTIONS(3896), + [sym__space] = ACTIONS(3898), + [anon_sym_LBRACK] = ACTIONS(3896), + [anon_sym_LPAREN] = ACTIONS(3896), + [anon_sym_DOLLAR] = ACTIONS(3896), + [anon_sym_DASH] = ACTIONS(3896), + [aux_sym_ctrl_match_token1] = ACTIONS(3896), + [anon_sym_DOT_DOT] = ACTIONS(3896), + [aux_sym_expr_unary_token1] = ACTIONS(3896), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3896), + [anon_sym_DOT_DOT_LT] = ACTIONS(3896), + [aux_sym__val_number_decimal_token1] = ACTIONS(3896), + [aux_sym__val_number_decimal_token2] = ACTIONS(3896), + [aux_sym__val_number_decimal_token3] = ACTIONS(3896), + [aux_sym__val_number_decimal_token4] = ACTIONS(3896), + [aux_sym__val_number_token1] = ACTIONS(3896), + [aux_sym__val_number_token2] = ACTIONS(3896), + [aux_sym__val_number_token3] = ACTIONS(3896), + [anon_sym_0b] = ACTIONS(3896), + [anon_sym_0o] = ACTIONS(3896), + [anon_sym_0x] = ACTIONS(3896), + [sym_val_date] = ACTIONS(3896), + [anon_sym_DQUOTE] = ACTIONS(3896), + [sym__str_single_quotes] = ACTIONS(3896), + [sym__str_back_ticks] = ACTIONS(3896), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3896), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3896), + [aux_sym_env_var_token1] = ACTIONS(3896), + [anon_sym_CARET] = ACTIONS(3896), + [anon_sym_POUND] = ACTIONS(3), }, [1052] = { - [sym_expr_unary] = STATE(2564), - [sym__expr_unary_minus] = STATE(2610), - [sym_expr_binary] = STATE(2564), - [sym__expr_binary_expression] = STATE(3534), - [sym_expr_parenthesized] = STATE(2564), - [sym__val_range] = STATE(7911), - [sym__val_range_with_end] = STATE(7541), - [sym__value] = STATE(2564), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(3385), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(3168), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__str_double_quotes] = STATE(2144), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2607), - [sym__inter_double_quotes] = STATE(2626), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2258), - [sym__unquoted_with_expr] = STATE(2550), - [sym__unquoted_anonymous_prefix] = STATE(6983), [sym_comment] = STATE(1052), - [anon_sym_true] = ACTIONS(3341), - [anon_sym_false] = ACTIONS(3341), - [anon_sym_null] = ACTIONS(3343), - [aux_sym_cmd_identifier_token38] = ACTIONS(3345), - [aux_sym_cmd_identifier_token39] = ACTIONS(3345), - [aux_sym_cmd_identifier_token40] = ACTIONS(3345), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_DOLLAR] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3281), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), - [anon_sym_DOT_DOT_LT] = ACTIONS(3283), - [aux_sym__val_number_decimal_token1] = ACTIONS(3347), - [aux_sym__val_number_decimal_token2] = ACTIONS(3349), - [aux_sym__val_number_decimal_token3] = ACTIONS(3351), - [aux_sym__val_number_decimal_token4] = ACTIONS(3353), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3355), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3295), + [anon_sym_true] = ACTIONS(1499), + [anon_sym_false] = ACTIONS(1499), + [anon_sym_null] = ACTIONS(1499), + [aux_sym_cmd_identifier_token38] = ACTIONS(1499), + [aux_sym_cmd_identifier_token39] = ACTIONS(1499), + [aux_sym_cmd_identifier_token40] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1497), + [anon_sym_RPAREN] = ACTIONS(1499), + [anon_sym_DOLLAR] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1497), + [aux_sym_ctrl_match_token1] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1497), + [anon_sym_LPAREN2] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1497), + [anon_sym_DOT] = ACTIONS(3900), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), + [anon_sym_DOT_DOT_LT] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), + [aux_sym__immediate_decimal_token2] = ACTIONS(3902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1499), + [aux_sym__val_number_decimal_token4] = ACTIONS(1499), + [aux_sym__val_number_token1] = ACTIONS(1499), + [aux_sym__val_number_token2] = ACTIONS(1499), + [aux_sym__val_number_token3] = ACTIONS(1499), + [anon_sym_0b] = ACTIONS(1497), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1499), + [anon_sym_0o] = ACTIONS(1497), + [anon_sym_0x] = ACTIONS(1497), + [sym_val_date] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1499), + [sym__str_single_quotes] = ACTIONS(1499), + [sym__str_back_ticks] = ACTIONS(1499), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1499), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1499), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), + [aux_sym_unquoted_token1] = ACTIONS(1497), + [aux_sym_unquoted_token2] = ACTIONS(1497), [anon_sym_POUND] = ACTIONS(247), }, [1053] = { - [sym_expr_unary] = STATE(2564), - [sym__expr_unary_minus] = STATE(2610), - [sym_expr_binary] = STATE(2564), - [sym__expr_binary_expression] = STATE(3535), - [sym_expr_parenthesized] = STATE(2564), - [sym__val_range] = STATE(7911), - [sym__val_range_with_end] = STATE(7541), - [sym__value] = STATE(2564), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(3385), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(3168), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__str_double_quotes] = STATE(2144), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2607), - [sym__inter_double_quotes] = STATE(2626), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2273), - [sym__unquoted_with_expr] = STATE(2554), - [sym__unquoted_anonymous_prefix] = STATE(6983), + [sym_path] = STATE(1116), [sym_comment] = STATE(1053), - [anon_sym_true] = ACTIONS(3341), - [anon_sym_false] = ACTIONS(3341), - [anon_sym_null] = ACTIONS(3343), - [aux_sym_cmd_identifier_token38] = ACTIONS(3345), - [aux_sym_cmd_identifier_token39] = ACTIONS(3345), - [aux_sym_cmd_identifier_token40] = ACTIONS(3345), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_DOLLAR] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3281), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), - [anon_sym_DOT_DOT_LT] = ACTIONS(3283), - [aux_sym__val_number_decimal_token1] = ACTIONS(3347), - [aux_sym__val_number_decimal_token2] = ACTIONS(3349), - [aux_sym__val_number_decimal_token3] = ACTIONS(3351), - [aux_sym__val_number_decimal_token4] = ACTIONS(3353), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3355), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3295), + [aux_sym_cell_path_repeat1] = STATE(1053), + [anon_sym_EQ] = ACTIONS(1021), + [anon_sym_PLUS_EQ] = ACTIONS(1023), + [anon_sym_DASH_EQ] = ACTIONS(1023), + [anon_sym_STAR_EQ] = ACTIONS(1023), + [anon_sym_SLASH_EQ] = ACTIONS(1023), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1023), + [sym__newline] = ACTIONS(1021), + [anon_sym_SEMI] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(1023), + [anon_sym_err_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_GT_PIPE] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1023), + [aux_sym_ctrl_match_token1] = ACTIONS(1023), + [anon_sym_RBRACE] = ACTIONS(1023), + [aux_sym_expr_binary_token1] = ACTIONS(1023), + [aux_sym_expr_binary_token2] = ACTIONS(1023), + [aux_sym_expr_binary_token3] = ACTIONS(1023), + [aux_sym_expr_binary_token4] = ACTIONS(1023), + [aux_sym_expr_binary_token5] = ACTIONS(1023), + [aux_sym_expr_binary_token6] = ACTIONS(1023), + [aux_sym_expr_binary_token7] = ACTIONS(1023), + [aux_sym_expr_binary_token8] = ACTIONS(1023), + [aux_sym_expr_binary_token9] = ACTIONS(1023), + [aux_sym_expr_binary_token10] = ACTIONS(1023), + [aux_sym_expr_binary_token11] = ACTIONS(1023), + [aux_sym_expr_binary_token12] = ACTIONS(1023), + [aux_sym_expr_binary_token13] = ACTIONS(1023), + [aux_sym_expr_binary_token14] = ACTIONS(1023), + [aux_sym_expr_binary_token15] = ACTIONS(1023), + [aux_sym_expr_binary_token16] = ACTIONS(1023), + [aux_sym_expr_binary_token17] = ACTIONS(1023), + [aux_sym_expr_binary_token18] = ACTIONS(1023), + [aux_sym_expr_binary_token19] = ACTIONS(1023), + [aux_sym_expr_binary_token20] = ACTIONS(1023), + [aux_sym_expr_binary_token21] = ACTIONS(1023), + [aux_sym_expr_binary_token22] = ACTIONS(1023), + [aux_sym_expr_binary_token23] = ACTIONS(1023), + [aux_sym_expr_binary_token24] = ACTIONS(1023), + [aux_sym_expr_binary_token25] = ACTIONS(1023), + [aux_sym_expr_binary_token26] = ACTIONS(1023), + [aux_sym_expr_binary_token27] = ACTIONS(1023), + [aux_sym_expr_binary_token28] = ACTIONS(1023), + [anon_sym_DOT_DOT2] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(3904), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), + [aux_sym_record_entry_token1] = ACTIONS(1023), + [anon_sym_err_GT] = ACTIONS(1021), + [anon_sym_out_GT] = ACTIONS(1021), + [anon_sym_e_GT] = ACTIONS(1021), + [anon_sym_o_GT] = ACTIONS(1021), + [anon_sym_err_PLUSout_GT] = ACTIONS(1021), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), + [anon_sym_o_PLUSe_GT] = ACTIONS(1021), + [anon_sym_e_PLUSo_GT] = ACTIONS(1021), + [anon_sym_err_GT_GT] = ACTIONS(1023), + [anon_sym_out_GT_GT] = ACTIONS(1023), + [anon_sym_e_GT_GT] = ACTIONS(1023), + [anon_sym_o_GT_GT] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), [anon_sym_POUND] = ACTIONS(247), }, [1054] = { - [sym_expr_unary] = STATE(2564), - [sym__expr_unary_minus] = STATE(2610), - [sym_expr_binary] = STATE(2564), - [sym__expr_binary_expression] = STATE(3536), - [sym_expr_parenthesized] = STATE(2564), - [sym__val_range] = STATE(7911), - [sym__val_range_with_end] = STATE(7541), - [sym__value] = STATE(2564), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(3385), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(3168), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__str_double_quotes] = STATE(2144), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2607), - [sym__inter_double_quotes] = STATE(2626), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2274), - [sym__unquoted_with_expr] = STATE(2565), - [sym__unquoted_anonymous_prefix] = STATE(6983), [sym_comment] = STATE(1054), - [anon_sym_true] = ACTIONS(3341), - [anon_sym_false] = ACTIONS(3341), - [anon_sym_null] = ACTIONS(3343), - [aux_sym_cmd_identifier_token38] = ACTIONS(3345), - [aux_sym_cmd_identifier_token39] = ACTIONS(3345), - [aux_sym_cmd_identifier_token40] = ACTIONS(3345), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_DOLLAR] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3281), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), - [anon_sym_DOT_DOT_LT] = ACTIONS(3283), - [aux_sym__val_number_decimal_token1] = ACTIONS(3347), - [aux_sym__val_number_decimal_token2] = ACTIONS(3349), - [aux_sym__val_number_decimal_token3] = ACTIONS(3351), - [aux_sym__val_number_decimal_token4] = ACTIONS(3353), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3355), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3295), + [anon_sym_true] = ACTIONS(1519), + [anon_sym_false] = ACTIONS(1519), + [anon_sym_null] = ACTIONS(1519), + [aux_sym_cmd_identifier_token38] = ACTIONS(1519), + [aux_sym_cmd_identifier_token39] = ACTIONS(1519), + [aux_sym_cmd_identifier_token40] = ACTIONS(1519), + [sym__newline] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1519), + [anon_sym_err_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_GT_PIPE] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_RPAREN] = ACTIONS(1519), + [anon_sym_DOLLAR] = ACTIONS(1517), + [anon_sym_DASH_DASH] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1517), + [aux_sym_ctrl_match_token1] = ACTIONS(1519), + [anon_sym_RBRACE] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_DOT_DOT2] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1517), + [anon_sym_DOT_DOT_LT] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), + [aux_sym__immediate_decimal_token1] = ACTIONS(3907), + [aux_sym__immediate_decimal_token2] = ACTIONS(3909), + [aux_sym__val_number_decimal_token1] = ACTIONS(1517), + [aux_sym__val_number_decimal_token2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1519), + [aux_sym__val_number_token1] = ACTIONS(1519), + [aux_sym__val_number_token2] = ACTIONS(1519), + [aux_sym__val_number_token3] = ACTIONS(1519), + [anon_sym_0b] = ACTIONS(1517), + [sym_filesize_unit] = ACTIONS(1519), + [sym_duration_unit] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1517), + [sym_val_date] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1519), + [sym__str_single_quotes] = ACTIONS(1519), + [sym__str_back_ticks] = ACTIONS(1519), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1519), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1519), + [anon_sym_err_GT] = ACTIONS(1517), + [anon_sym_out_GT] = ACTIONS(1517), + [anon_sym_e_GT] = ACTIONS(1517), + [anon_sym_o_GT] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT] = ACTIONS(1517), + [anon_sym_err_GT_GT] = ACTIONS(1519), + [anon_sym_out_GT_GT] = ACTIONS(1519), + [anon_sym_e_GT_GT] = ACTIONS(1519), + [anon_sym_o_GT_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), + [aux_sym_unquoted_token1] = ACTIONS(1517), + [aux_sym_unquoted_token2] = ACTIONS(1517), [anon_sym_POUND] = ACTIONS(247), }, [1055] = { - [sym_expr_unary] = STATE(2564), - [sym__expr_unary_minus] = STATE(2610), - [sym_expr_binary] = STATE(2564), - [sym__expr_binary_expression] = STATE(2573), - [sym_expr_parenthesized] = STATE(2564), - [sym__val_range] = STATE(7911), - [sym__val_range_with_end] = STATE(7541), - [sym__value] = STATE(2564), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2338), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(1590), - [sym__val_number] = STATE(2603), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__str_double_quotes] = STATE(2144), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2607), - [sym__inter_double_quotes] = STATE(2626), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2254), - [sym__unquoted_with_expr] = STATE(2596), - [sym__unquoted_anonymous_prefix] = STATE(6983), + [sym_match_arm] = STATE(6018), + [sym_match_pattern] = STATE(7640), + [sym__match_pattern] = STATE(5944), + [sym__match_pattern_expression] = STATE(6857), + [sym__match_pattern_value] = STATE(6861), + [sym__match_pattern_list] = STATE(6862), + [sym__match_pattern_record] = STATE(6888), + [sym_expr_parenthesized] = STATE(5713), + [sym_val_range] = STATE(6861), + [sym__val_range] = STATE(7551), + [sym_val_nothing] = STATE(6915), + [sym_val_bool] = STATE(6595), + [sym_val_variable] = STATE(5754), + [sym_val_number] = STATE(6915), + [sym__val_number_decimal] = STATE(5295), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(6915), + [sym_val_filesize] = STATE(6915), + [sym_val_binary] = STATE(6915), + [sym_val_string] = STATE(6915), + [sym__str_double_quotes] = STATE(1707), + [sym_val_table] = STATE(6915), + [sym_unquoted] = STATE(6919), + [sym__unquoted_anonymous_prefix] = STATE(7814), [sym_comment] = STATE(1055), - [anon_sym_true] = ACTIONS(3271), - [anon_sym_false] = ACTIONS(3271), - [anon_sym_null] = ACTIONS(3273), - [aux_sym_cmd_identifier_token38] = ACTIONS(3275), - [aux_sym_cmd_identifier_token39] = ACTIONS(3275), - [aux_sym_cmd_identifier_token40] = ACTIONS(3275), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_DOLLAR] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(53), - [aux_sym_ctrl_match_token1] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3281), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3283), - [anon_sym_DOT_DOT_LT] = ACTIONS(3283), - [aux_sym__val_number_decimal_token1] = ACTIONS(3285), - [aux_sym__val_number_decimal_token2] = ACTIONS(3287), - [aux_sym__val_number_decimal_token3] = ACTIONS(3289), - [aux_sym__val_number_decimal_token4] = ACTIONS(3291), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3293), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3295), + [aux_sym_ctrl_match_repeat1] = STATE(1042), + [anon_sym_true] = ACTIONS(3471), + [anon_sym_false] = ACTIONS(3471), + [anon_sym_null] = ACTIONS(3473), + [aux_sym_cmd_identifier_token38] = ACTIONS(3475), + [aux_sym_cmd_identifier_token39] = ACTIONS(3475), + [aux_sym_cmd_identifier_token40] = ACTIONS(3475), + [anon_sym_LBRACK] = ACTIONS(3479), + [anon_sym_LPAREN] = ACTIONS(3481), + [anon_sym_DOLLAR] = ACTIONS(3483), + [aux_sym_ctrl_match_token1] = ACTIONS(3485), + [anon_sym__] = ACTIONS(3557), + [anon_sym_DOT_DOT] = ACTIONS(3491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3493), + [anon_sym_DOT_DOT_LT] = ACTIONS(3493), + [aux_sym__val_number_decimal_token1] = ACTIONS(3495), + [aux_sym__val_number_decimal_token2] = ACTIONS(3497), + [aux_sym__val_number_decimal_token3] = ACTIONS(3499), + [aux_sym__val_number_decimal_token4] = ACTIONS(3501), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3503), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [1056] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(1748), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3347), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3023), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1582), - [sym__unquoted_with_expr] = STATE(1749), - [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym_match_arm] = STATE(5915), + [sym_match_pattern] = STATE(7640), + [sym__match_pattern] = STATE(5944), + [sym__match_pattern_expression] = STATE(6857), + [sym__match_pattern_value] = STATE(6861), + [sym__match_pattern_list] = STATE(6862), + [sym__match_pattern_record] = STATE(6888), + [sym_expr_parenthesized] = STATE(5713), + [sym_val_range] = STATE(6861), + [sym__val_range] = STATE(7551), + [sym_val_nothing] = STATE(6915), + [sym_val_bool] = STATE(6595), + [sym_val_variable] = STATE(5754), + [sym_val_number] = STATE(6915), + [sym__val_number_decimal] = STATE(5295), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(6915), + [sym_val_filesize] = STATE(6915), + [sym_val_binary] = STATE(6915), + [sym_val_string] = STATE(6915), + [sym__str_double_quotes] = STATE(1707), + [sym_val_table] = STATE(6915), + [sym_unquoted] = STATE(6919), + [sym__unquoted_anonymous_prefix] = STATE(7814), [sym_comment] = STATE(1056), - [anon_sym_true] = ACTIONS(3357), - [anon_sym_false] = ACTIONS(3357), - [anon_sym_null] = ACTIONS(3359), - [aux_sym_cmd_identifier_token38] = ACTIONS(3361), - [aux_sym_cmd_identifier_token39] = ACTIONS(3361), - [aux_sym_cmd_identifier_token40] = ACTIONS(3361), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_DOLLAR] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3363), - [aux_sym__val_number_decimal_token2] = ACTIONS(3365), - [aux_sym__val_number_decimal_token3] = ACTIONS(3367), - [aux_sym__val_number_decimal_token4] = ACTIONS(3369), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [aux_sym_ctrl_match_repeat1] = STATE(1042), + [anon_sym_true] = ACTIONS(3471), + [anon_sym_false] = ACTIONS(3471), + [anon_sym_null] = ACTIONS(3473), + [aux_sym_cmd_identifier_token38] = ACTIONS(3475), + [aux_sym_cmd_identifier_token39] = ACTIONS(3475), + [aux_sym_cmd_identifier_token40] = ACTIONS(3475), + [anon_sym_LBRACK] = ACTIONS(3479), + [anon_sym_LPAREN] = ACTIONS(3481), + [anon_sym_DOLLAR] = ACTIONS(3483), + [aux_sym_ctrl_match_token1] = ACTIONS(3485), + [anon_sym__] = ACTIONS(3557), + [anon_sym_DOT_DOT] = ACTIONS(3491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3493), + [anon_sym_DOT_DOT_LT] = ACTIONS(3493), + [aux_sym__val_number_decimal_token1] = ACTIONS(3495), + [aux_sym__val_number_decimal_token2] = ACTIONS(3497), + [aux_sym__val_number_decimal_token3] = ACTIONS(3499), + [aux_sym__val_number_decimal_token4] = ACTIONS(3501), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3503), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3163), [anon_sym_POUND] = ACTIONS(247), }, [1057] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(3396), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3347), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3023), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1588), - [sym__unquoted_with_expr] = STATE(1772), - [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1057), - [anon_sym_true] = ACTIONS(3357), - [anon_sym_false] = ACTIONS(3357), - [anon_sym_null] = ACTIONS(3359), - [aux_sym_cmd_identifier_token38] = ACTIONS(3361), - [aux_sym_cmd_identifier_token39] = ACTIONS(3361), - [aux_sym_cmd_identifier_token40] = ACTIONS(3361), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_DOLLAR] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3363), - [aux_sym__val_number_decimal_token2] = ACTIONS(3365), - [aux_sym__val_number_decimal_token3] = ACTIONS(3367), - [aux_sym__val_number_decimal_token4] = ACTIONS(3369), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_EQ] = ACTIONS(1044), + [anon_sym_PLUS_EQ] = ACTIONS(1046), + [anon_sym_DASH_EQ] = ACTIONS(1046), + [anon_sym_STAR_EQ] = ACTIONS(1046), + [anon_sym_SLASH_EQ] = ACTIONS(1046), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1046), + [sym__newline] = ACTIONS(1044), + [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_err_GT_PIPE] = ACTIONS(1046), + [anon_sym_out_GT_PIPE] = ACTIONS(1046), + [anon_sym_e_GT_PIPE] = ACTIONS(1046), + [anon_sym_o_GT_PIPE] = ACTIONS(1046), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1046), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1046), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1046), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1046), + [aux_sym_ctrl_match_token1] = ACTIONS(1046), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_QMARK2] = ACTIONS(1046), + [aux_sym_expr_binary_token1] = ACTIONS(1046), + [aux_sym_expr_binary_token2] = ACTIONS(1046), + [aux_sym_expr_binary_token3] = ACTIONS(1046), + [aux_sym_expr_binary_token4] = ACTIONS(1046), + [aux_sym_expr_binary_token5] = ACTIONS(1046), + [aux_sym_expr_binary_token6] = ACTIONS(1046), + [aux_sym_expr_binary_token7] = ACTIONS(1046), + [aux_sym_expr_binary_token8] = ACTIONS(1046), + [aux_sym_expr_binary_token9] = ACTIONS(1046), + [aux_sym_expr_binary_token10] = ACTIONS(1046), + [aux_sym_expr_binary_token11] = ACTIONS(1046), + [aux_sym_expr_binary_token12] = ACTIONS(1046), + [aux_sym_expr_binary_token13] = ACTIONS(1046), + [aux_sym_expr_binary_token14] = ACTIONS(1046), + [aux_sym_expr_binary_token15] = ACTIONS(1046), + [aux_sym_expr_binary_token16] = ACTIONS(1046), + [aux_sym_expr_binary_token17] = ACTIONS(1046), + [aux_sym_expr_binary_token18] = ACTIONS(1046), + [aux_sym_expr_binary_token19] = ACTIONS(1046), + [aux_sym_expr_binary_token20] = ACTIONS(1046), + [aux_sym_expr_binary_token21] = ACTIONS(1046), + [aux_sym_expr_binary_token22] = ACTIONS(1046), + [aux_sym_expr_binary_token23] = ACTIONS(1046), + [aux_sym_expr_binary_token24] = ACTIONS(1046), + [aux_sym_expr_binary_token25] = ACTIONS(1046), + [aux_sym_expr_binary_token26] = ACTIONS(1046), + [aux_sym_expr_binary_token27] = ACTIONS(1046), + [aux_sym_expr_binary_token28] = ACTIONS(1046), + [anon_sym_DOT_DOT2] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1044), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1046), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1046), + [aux_sym_record_entry_token1] = ACTIONS(1046), + [anon_sym_err_GT] = ACTIONS(1044), + [anon_sym_out_GT] = ACTIONS(1044), + [anon_sym_e_GT] = ACTIONS(1044), + [anon_sym_o_GT] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT] = ACTIONS(1044), + [anon_sym_err_GT_GT] = ACTIONS(1046), + [anon_sym_out_GT_GT] = ACTIONS(1046), + [anon_sym_e_GT_GT] = ACTIONS(1046), + [anon_sym_o_GT_GT] = ACTIONS(1046), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1046), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1046), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1046), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1046), [anon_sym_POUND] = ACTIONS(247), }, [1058] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(3397), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3347), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3023), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1596), - [sym__unquoted_with_expr] = STATE(1773), - [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym_path] = STATE(1206), [sym_comment] = STATE(1058), - [anon_sym_true] = ACTIONS(3357), - [anon_sym_false] = ACTIONS(3357), - [anon_sym_null] = ACTIONS(3359), - [aux_sym_cmd_identifier_token38] = ACTIONS(3361), - [aux_sym_cmd_identifier_token39] = ACTIONS(3361), - [aux_sym_cmd_identifier_token40] = ACTIONS(3361), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_DOLLAR] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3363), - [aux_sym__val_number_decimal_token2] = ACTIONS(3365), - [aux_sym__val_number_decimal_token3] = ACTIONS(3367), - [aux_sym__val_number_decimal_token4] = ACTIONS(3369), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [aux_sym_cell_path_repeat1] = STATE(1058), + [anon_sym_EQ] = ACTIONS(1021), + [anon_sym_PLUS_EQ] = ACTIONS(1023), + [anon_sym_DASH_EQ] = ACTIONS(1023), + [anon_sym_STAR_EQ] = ACTIONS(1023), + [anon_sym_SLASH_EQ] = ACTIONS(1023), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1023), + [sym__newline] = ACTIONS(1021), + [anon_sym_SEMI] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(1023), + [anon_sym_err_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_GT_PIPE] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1023), + [anon_sym_RPAREN] = ACTIONS(1023), + [aux_sym_ctrl_match_token1] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1023), + [anon_sym_DOT_DOT2] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(3911), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), + [anon_sym_err_GT] = ACTIONS(1021), + [anon_sym_out_GT] = ACTIONS(1021), + [anon_sym_e_GT] = ACTIONS(1021), + [anon_sym_o_GT] = ACTIONS(1021), + [anon_sym_err_PLUSout_GT] = ACTIONS(1021), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), + [anon_sym_o_PLUSe_GT] = ACTIONS(1021), + [anon_sym_e_PLUSo_GT] = ACTIONS(1021), + [anon_sym_err_GT_GT] = ACTIONS(1023), + [anon_sym_out_GT_GT] = ACTIONS(1023), + [anon_sym_e_GT_GT] = ACTIONS(1023), + [anon_sym_o_GT_GT] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), [anon_sym_POUND] = ACTIONS(247), }, [1059] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(3398), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3347), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3023), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1535), - [sym__unquoted_with_expr] = STATE(1777), - [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1059), - [anon_sym_true] = ACTIONS(3357), - [anon_sym_false] = ACTIONS(3357), - [anon_sym_null] = ACTIONS(3359), - [aux_sym_cmd_identifier_token38] = ACTIONS(3361), - [aux_sym_cmd_identifier_token39] = ACTIONS(3361), - [aux_sym_cmd_identifier_token40] = ACTIONS(3361), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_DOLLAR] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3363), - [aux_sym__val_number_decimal_token2] = ACTIONS(3365), - [aux_sym__val_number_decimal_token3] = ACTIONS(3367), - [aux_sym__val_number_decimal_token4] = ACTIONS(3369), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_PLUS_EQ] = ACTIONS(1050), + [anon_sym_DASH_EQ] = ACTIONS(1050), + [anon_sym_STAR_EQ] = ACTIONS(1050), + [anon_sym_SLASH_EQ] = ACTIONS(1050), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1050), + [sym__newline] = ACTIONS(1048), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_err_GT_PIPE] = ACTIONS(1050), + [anon_sym_out_GT_PIPE] = ACTIONS(1050), + [anon_sym_e_GT_PIPE] = ACTIONS(1050), + [anon_sym_o_GT_PIPE] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1050), + [aux_sym_ctrl_match_token1] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(1050), + [anon_sym_QMARK2] = ACTIONS(1050), + [aux_sym_expr_binary_token1] = ACTIONS(1050), + [aux_sym_expr_binary_token2] = ACTIONS(1050), + [aux_sym_expr_binary_token3] = ACTIONS(1050), + [aux_sym_expr_binary_token4] = ACTIONS(1050), + [aux_sym_expr_binary_token5] = ACTIONS(1050), + [aux_sym_expr_binary_token6] = ACTIONS(1050), + [aux_sym_expr_binary_token7] = ACTIONS(1050), + [aux_sym_expr_binary_token8] = ACTIONS(1050), + [aux_sym_expr_binary_token9] = ACTIONS(1050), + [aux_sym_expr_binary_token10] = ACTIONS(1050), + [aux_sym_expr_binary_token11] = ACTIONS(1050), + [aux_sym_expr_binary_token12] = ACTIONS(1050), + [aux_sym_expr_binary_token13] = ACTIONS(1050), + [aux_sym_expr_binary_token14] = ACTIONS(1050), + [aux_sym_expr_binary_token15] = ACTIONS(1050), + [aux_sym_expr_binary_token16] = ACTIONS(1050), + [aux_sym_expr_binary_token17] = ACTIONS(1050), + [aux_sym_expr_binary_token18] = ACTIONS(1050), + [aux_sym_expr_binary_token19] = ACTIONS(1050), + [aux_sym_expr_binary_token20] = ACTIONS(1050), + [aux_sym_expr_binary_token21] = ACTIONS(1050), + [aux_sym_expr_binary_token22] = ACTIONS(1050), + [aux_sym_expr_binary_token23] = ACTIONS(1050), + [aux_sym_expr_binary_token24] = ACTIONS(1050), + [aux_sym_expr_binary_token25] = ACTIONS(1050), + [aux_sym_expr_binary_token26] = ACTIONS(1050), + [aux_sym_expr_binary_token27] = ACTIONS(1050), + [aux_sym_expr_binary_token28] = ACTIONS(1050), + [anon_sym_DOT_DOT2] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1050), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1050), + [aux_sym_record_entry_token1] = ACTIONS(1050), + [anon_sym_err_GT] = ACTIONS(1048), + [anon_sym_out_GT] = ACTIONS(1048), + [anon_sym_e_GT] = ACTIONS(1048), + [anon_sym_o_GT] = ACTIONS(1048), + [anon_sym_err_PLUSout_GT] = ACTIONS(1048), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1048), + [anon_sym_o_PLUSe_GT] = ACTIONS(1048), + [anon_sym_e_PLUSo_GT] = ACTIONS(1048), + [anon_sym_err_GT_GT] = ACTIONS(1050), + [anon_sym_out_GT_GT] = ACTIONS(1050), + [anon_sym_e_GT_GT] = ACTIONS(1050), + [anon_sym_o_GT_GT] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1050), [anon_sym_POUND] = ACTIONS(247), }, [1060] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(3399), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3347), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3023), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1571), - [sym__unquoted_with_expr] = STATE(1784), - [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym__expr_parenthesized_immediate] = STATE(7469), [sym_comment] = STATE(1060), - [anon_sym_true] = ACTIONS(3357), - [anon_sym_false] = ACTIONS(3357), - [anon_sym_null] = ACTIONS(3359), - [aux_sym_cmd_identifier_token38] = ACTIONS(3361), - [aux_sym_cmd_identifier_token39] = ACTIONS(3361), - [aux_sym_cmd_identifier_token40] = ACTIONS(3361), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_DOLLAR] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3363), - [aux_sym__val_number_decimal_token2] = ACTIONS(3365), - [aux_sym__val_number_decimal_token3] = ACTIONS(3367), - [aux_sym__val_number_decimal_token4] = ACTIONS(3369), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_true] = ACTIONS(1587), + [anon_sym_false] = ACTIONS(1587), + [anon_sym_null] = ACTIONS(1587), + [aux_sym_cmd_identifier_token38] = ACTIONS(1587), + [aux_sym_cmd_identifier_token39] = ACTIONS(1587), + [aux_sym_cmd_identifier_token40] = ACTIONS(1587), + [sym__newline] = ACTIONS(1587), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_err_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_GT_PIPE] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1575), + [anon_sym_RPAREN] = ACTIONS(1587), + [anon_sym_DOLLAR] = ACTIONS(1575), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_DASH] = ACTIONS(1575), + [aux_sym_ctrl_match_token1] = ACTIONS(1587), + [anon_sym_RBRACE] = ACTIONS(1587), + [anon_sym_DOT_DOT] = ACTIONS(1575), + [anon_sym_LPAREN2] = ACTIONS(3914), + [anon_sym_DOT_DOT2] = ACTIONS(3916), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT] = ACTIONS(1575), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3918), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3918), + [aux_sym__val_number_decimal_token1] = ACTIONS(1575), + [aux_sym__val_number_decimal_token2] = ACTIONS(1587), + [aux_sym__val_number_decimal_token3] = ACTIONS(1587), + [aux_sym__val_number_decimal_token4] = ACTIONS(1587), + [aux_sym__val_number_token1] = ACTIONS(1587), + [aux_sym__val_number_token2] = ACTIONS(1587), + [aux_sym__val_number_token3] = ACTIONS(1587), + [anon_sym_0b] = ACTIONS(1575), + [sym_filesize_unit] = ACTIONS(3920), + [sym_duration_unit] = ACTIONS(3922), + [anon_sym_0o] = ACTIONS(1575), + [anon_sym_0x] = ACTIONS(1575), + [sym_val_date] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [sym__str_single_quotes] = ACTIONS(1587), + [sym__str_back_ticks] = ACTIONS(1587), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1587), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1587), + [anon_sym_err_GT] = ACTIONS(1575), + [anon_sym_out_GT] = ACTIONS(1575), + [anon_sym_e_GT] = ACTIONS(1575), + [anon_sym_o_GT] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT] = ACTIONS(1575), + [anon_sym_err_GT_GT] = ACTIONS(1587), + [anon_sym_out_GT_GT] = ACTIONS(1587), + [anon_sym_e_GT_GT] = ACTIONS(1587), + [anon_sym_o_GT_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [aux_sym_unquoted_token1] = ACTIONS(1575), + [aux_sym_unquoted_token2] = ACTIONS(3924), [anon_sym_POUND] = ACTIONS(247), }, [1061] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(3400), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3347), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3023), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1537), - [sym__unquoted_with_expr] = STATE(1803), - [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym__expr_parenthesized_immediate] = STATE(1591), + [sym__immediate_decimal] = STATE(1592), + [sym_val_variable] = STATE(1591), [sym_comment] = STATE(1061), - [anon_sym_true] = ACTIONS(3357), - [anon_sym_false] = ACTIONS(3357), - [anon_sym_null] = ACTIONS(3359), - [aux_sym_cmd_identifier_token38] = ACTIONS(3361), - [aux_sym_cmd_identifier_token39] = ACTIONS(3361), - [aux_sym_cmd_identifier_token40] = ACTIONS(3361), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_DOLLAR] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3363), - [aux_sym__val_number_decimal_token2] = ACTIONS(3365), - [aux_sym__val_number_decimal_token3] = ACTIONS(3367), - [aux_sym__val_number_decimal_token4] = ACTIONS(3369), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_true] = ACTIONS(1619), + [anon_sym_false] = ACTIONS(1619), + [anon_sym_null] = ACTIONS(1619), + [aux_sym_cmd_identifier_token38] = ACTIONS(1619), + [aux_sym_cmd_identifier_token39] = ACTIONS(1619), + [aux_sym_cmd_identifier_token40] = ACTIONS(1619), + [sym__newline] = ACTIONS(1619), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_PIPE] = ACTIONS(1619), + [anon_sym_err_GT_PIPE] = ACTIONS(1619), + [anon_sym_out_GT_PIPE] = ACTIONS(1619), + [anon_sym_e_GT_PIPE] = ACTIONS(1619), + [anon_sym_o_GT_PIPE] = ACTIONS(1619), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1619), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1619), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1619), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1619), + [anon_sym_LBRACK] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(1617), + [anon_sym_RPAREN] = ACTIONS(1619), + [anon_sym_DOLLAR] = ACTIONS(3882), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_DASH] = ACTIONS(1617), + [aux_sym_ctrl_match_token1] = ACTIONS(1619), + [anon_sym_RBRACE] = ACTIONS(1619), + [anon_sym_DOT_DOT] = ACTIONS(1617), + [anon_sym_LPAREN2] = ACTIONS(3884), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1619), + [anon_sym_DOT_DOT_LT] = ACTIONS(1619), + [aux_sym__immediate_decimal_token1] = ACTIONS(3926), + [aux_sym__immediate_decimal_token3] = ACTIONS(3928), + [aux_sym__immediate_decimal_token4] = ACTIONS(3930), + [aux_sym__immediate_decimal_token5] = ACTIONS(3932), + [aux_sym__val_number_decimal_token1] = ACTIONS(1617), + [aux_sym__val_number_decimal_token2] = ACTIONS(1617), + [aux_sym__val_number_decimal_token3] = ACTIONS(1617), + [aux_sym__val_number_decimal_token4] = ACTIONS(1617), + [aux_sym__val_number_token1] = ACTIONS(1619), + [aux_sym__val_number_token2] = ACTIONS(1619), + [aux_sym__val_number_token3] = ACTIONS(1619), + [anon_sym_0b] = ACTIONS(1617), + [anon_sym_0o] = ACTIONS(1617), + [anon_sym_0x] = ACTIONS(1617), + [sym_val_date] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1619), + [sym__str_single_quotes] = ACTIONS(1619), + [sym__str_back_ticks] = ACTIONS(1619), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1619), + [anon_sym_err_GT] = ACTIONS(1617), + [anon_sym_out_GT] = ACTIONS(1617), + [anon_sym_e_GT] = ACTIONS(1617), + [anon_sym_o_GT] = ACTIONS(1617), + [anon_sym_err_PLUSout_GT] = ACTIONS(1617), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1617), + [anon_sym_o_PLUSe_GT] = ACTIONS(1617), + [anon_sym_e_PLUSo_GT] = ACTIONS(1617), + [anon_sym_err_GT_GT] = ACTIONS(1619), + [anon_sym_out_GT_GT] = ACTIONS(1619), + [anon_sym_e_GT_GT] = ACTIONS(1619), + [anon_sym_o_GT_GT] = ACTIONS(1619), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1619), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1619), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1619), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1619), + [aux_sym_unquoted_token1] = ACTIONS(1617), [anon_sym_POUND] = ACTIONS(247), }, [1062] = { + [sym__expr_parenthesized_immediate] = STATE(1595), + [sym__immediate_decimal] = STATE(1596), + [sym_val_variable] = STATE(1595), [sym_comment] = STATE(1062), - [anon_sym_true] = ACTIONS(3373), - [anon_sym_false] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3373), - [aux_sym_cmd_identifier_token38] = ACTIONS(3373), - [aux_sym_cmd_identifier_token39] = ACTIONS(3373), - [aux_sym_cmd_identifier_token40] = ACTIONS(3373), - [sym__newline] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym_COMMA] = ACTIONS(3373), - [anon_sym_DOLLAR] = ACTIONS(3373), - [aux_sym_ctrl_match_token1] = ACTIONS(3373), - [anon_sym_RBRACE] = ACTIONS(3373), - [anon_sym__] = ACTIONS(3375), - [anon_sym_DOT_DOT] = ACTIONS(3375), - [anon_sym_LPAREN2] = ACTIONS(3373), - [aux_sym_expr_binary_token1] = ACTIONS(3373), - [aux_sym_expr_binary_token2] = ACTIONS(3373), - [aux_sym_expr_binary_token3] = ACTIONS(3373), - [aux_sym_expr_binary_token4] = ACTIONS(3373), - [aux_sym_expr_binary_token5] = ACTIONS(3373), - [aux_sym_expr_binary_token6] = ACTIONS(3373), - [aux_sym_expr_binary_token7] = ACTIONS(3373), - [aux_sym_expr_binary_token8] = ACTIONS(3373), - [aux_sym_expr_binary_token9] = ACTIONS(3373), - [aux_sym_expr_binary_token10] = ACTIONS(3373), - [aux_sym_expr_binary_token11] = ACTIONS(3373), - [aux_sym_expr_binary_token12] = ACTIONS(3373), - [aux_sym_expr_binary_token13] = ACTIONS(3373), - [aux_sym_expr_binary_token14] = ACTIONS(3373), - [aux_sym_expr_binary_token15] = ACTIONS(3373), - [aux_sym_expr_binary_token16] = ACTIONS(3373), - [aux_sym_expr_binary_token17] = ACTIONS(3373), - [aux_sym_expr_binary_token18] = ACTIONS(3373), - [aux_sym_expr_binary_token19] = ACTIONS(3373), - [aux_sym_expr_binary_token20] = ACTIONS(3373), - [aux_sym_expr_binary_token21] = ACTIONS(3373), - [aux_sym_expr_binary_token22] = ACTIONS(3373), - [aux_sym_expr_binary_token23] = ACTIONS(3373), - [aux_sym_expr_binary_token24] = ACTIONS(3373), - [aux_sym_expr_binary_token25] = ACTIONS(3373), - [aux_sym_expr_binary_token26] = ACTIONS(3373), - [aux_sym_expr_binary_token27] = ACTIONS(3373), - [aux_sym_expr_binary_token28] = ACTIONS(3373), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [aux_sym__val_number_decimal_token1] = ACTIONS(3375), - [aux_sym__val_number_decimal_token2] = ACTIONS(3373), - [aux_sym__val_number_decimal_token3] = ACTIONS(3373), - [aux_sym__val_number_decimal_token4] = ACTIONS(3373), - [aux_sym__val_number_token1] = ACTIONS(3373), - [aux_sym__val_number_token2] = ACTIONS(3373), - [aux_sym__val_number_token3] = ACTIONS(3373), - [anon_sym_0b] = ACTIONS(3375), - [anon_sym_0o] = ACTIONS(3375), - [anon_sym_0x] = ACTIONS(3375), - [sym_val_date] = ACTIONS(3373), - [anon_sym_DQUOTE] = ACTIONS(3373), - [sym__str_single_quotes] = ACTIONS(3373), - [sym__str_back_ticks] = ACTIONS(3373), - [anon_sym_err_GT] = ACTIONS(3375), - [anon_sym_out_GT] = ACTIONS(3375), - [anon_sym_e_GT] = ACTIONS(3375), - [anon_sym_o_GT] = ACTIONS(3375), - [anon_sym_err_PLUSout_GT] = ACTIONS(3375), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3375), - [anon_sym_o_PLUSe_GT] = ACTIONS(3375), - [anon_sym_e_PLUSo_GT] = ACTIONS(3375), - [anon_sym_err_GT_GT] = ACTIONS(3373), - [anon_sym_out_GT_GT] = ACTIONS(3373), - [anon_sym_e_GT_GT] = ACTIONS(3373), - [anon_sym_o_GT_GT] = ACTIONS(3373), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3373), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3373), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3373), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3373), - [aux_sym_unquoted_token1] = ACTIONS(3375), + [anon_sym_true] = ACTIONS(1563), + [anon_sym_false] = ACTIONS(1563), + [anon_sym_null] = ACTIONS(1563), + [aux_sym_cmd_identifier_token38] = ACTIONS(1563), + [aux_sym_cmd_identifier_token39] = ACTIONS(1563), + [aux_sym_cmd_identifier_token40] = ACTIONS(1563), + [sym__newline] = ACTIONS(1563), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_err_GT_PIPE] = ACTIONS(1563), + [anon_sym_out_GT_PIPE] = ACTIONS(1563), + [anon_sym_e_GT_PIPE] = ACTIONS(1563), + [anon_sym_o_GT_PIPE] = ACTIONS(1563), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1563), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1563), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1563), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1561), + [anon_sym_RPAREN] = ACTIONS(1563), + [anon_sym_DOLLAR] = ACTIONS(3882), + [anon_sym_DASH_DASH] = ACTIONS(1563), + [anon_sym_DASH] = ACTIONS(1561), + [aux_sym_ctrl_match_token1] = ACTIONS(1563), + [anon_sym_RBRACE] = ACTIONS(1563), + [anon_sym_DOT_DOT] = ACTIONS(1561), + [anon_sym_LPAREN2] = ACTIONS(3884), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1563), + [anon_sym_DOT_DOT_LT] = ACTIONS(1563), + [aux_sym__immediate_decimal_token1] = ACTIONS(3926), + [aux_sym__immediate_decimal_token3] = ACTIONS(3928), + [aux_sym__immediate_decimal_token4] = ACTIONS(3930), + [aux_sym__immediate_decimal_token5] = ACTIONS(3932), + [aux_sym__val_number_decimal_token1] = ACTIONS(1561), + [aux_sym__val_number_decimal_token2] = ACTIONS(1561), + [aux_sym__val_number_decimal_token3] = ACTIONS(1561), + [aux_sym__val_number_decimal_token4] = ACTIONS(1561), + [aux_sym__val_number_token1] = ACTIONS(1563), + [aux_sym__val_number_token2] = ACTIONS(1563), + [aux_sym__val_number_token3] = ACTIONS(1563), + [anon_sym_0b] = ACTIONS(1561), + [anon_sym_0o] = ACTIONS(1561), + [anon_sym_0x] = ACTIONS(1561), + [sym_val_date] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1563), + [sym__str_single_quotes] = ACTIONS(1563), + [sym__str_back_ticks] = ACTIONS(1563), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1563), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1563), + [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), + [anon_sym_err_GT_GT] = ACTIONS(1563), + [anon_sym_out_GT_GT] = ACTIONS(1563), + [anon_sym_e_GT_GT] = ACTIONS(1563), + [anon_sym_o_GT_GT] = ACTIONS(1563), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1563), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1563), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1563), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1563), + [aux_sym_unquoted_token1] = ACTIONS(1561), [anon_sym_POUND] = ACTIONS(247), }, [1063] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(3402), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3347), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3023), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1568), - [sym__unquoted_with_expr] = STATE(1806), - [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym__expr_parenthesized_immediate] = STATE(1757), + [sym__immediate_decimal] = STATE(1477), + [sym_val_variable] = STATE(1757), [sym_comment] = STATE(1063), - [anon_sym_true] = ACTIONS(3357), - [anon_sym_false] = ACTIONS(3357), - [anon_sym_null] = ACTIONS(3359), - [aux_sym_cmd_identifier_token38] = ACTIONS(3361), - [aux_sym_cmd_identifier_token39] = ACTIONS(3361), - [aux_sym_cmd_identifier_token40] = ACTIONS(3361), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_DOLLAR] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3363), - [aux_sym__val_number_decimal_token2] = ACTIONS(3365), - [aux_sym__val_number_decimal_token3] = ACTIONS(3367), - [aux_sym__val_number_decimal_token4] = ACTIONS(3369), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [ts_builtin_sym_end] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [anon_sym_null] = ACTIONS(1551), + [aux_sym_cmd_identifier_token38] = ACTIONS(1551), + [aux_sym_cmd_identifier_token39] = ACTIONS(1551), + [aux_sym_cmd_identifier_token40] = ACTIONS(1551), + [sym__newline] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_err_GT_PIPE] = ACTIONS(1551), + [anon_sym_out_GT_PIPE] = ACTIONS(1551), + [anon_sym_e_GT_PIPE] = ACTIONS(1551), + [anon_sym_o_GT_PIPE] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1549), + [anon_sym_DOLLAR] = ACTIONS(3934), + [anon_sym_DASH_DASH] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1549), + [aux_sym_ctrl_match_token1] = ACTIONS(1551), + [anon_sym_DOT_DOT] = ACTIONS(1549), + [anon_sym_LPAREN2] = ACTIONS(3936), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1551), + [anon_sym_DOT_DOT_LT] = ACTIONS(1551), + [aux_sym__immediate_decimal_token1] = ACTIONS(3938), + [aux_sym__immediate_decimal_token3] = ACTIONS(3940), + [aux_sym__immediate_decimal_token4] = ACTIONS(3942), + [aux_sym__immediate_decimal_token5] = ACTIONS(3944), + [aux_sym__val_number_decimal_token1] = ACTIONS(1549), + [aux_sym__val_number_decimal_token2] = ACTIONS(1549), + [aux_sym__val_number_decimal_token3] = ACTIONS(1549), + [aux_sym__val_number_decimal_token4] = ACTIONS(1549), + [aux_sym__val_number_token1] = ACTIONS(1551), + [aux_sym__val_number_token2] = ACTIONS(1551), + [aux_sym__val_number_token3] = ACTIONS(1551), + [anon_sym_0b] = ACTIONS(1549), + [anon_sym_0o] = ACTIONS(1549), + [anon_sym_0x] = ACTIONS(1549), + [sym_val_date] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__str_single_quotes] = ACTIONS(1551), + [sym__str_back_ticks] = ACTIONS(1551), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1551), + [anon_sym_err_GT] = ACTIONS(1549), + [anon_sym_out_GT] = ACTIONS(1549), + [anon_sym_e_GT] = ACTIONS(1549), + [anon_sym_o_GT] = ACTIONS(1549), + [anon_sym_err_PLUSout_GT] = ACTIONS(1549), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1549), + [anon_sym_o_PLUSe_GT] = ACTIONS(1549), + [anon_sym_e_PLUSo_GT] = ACTIONS(1549), + [anon_sym_err_GT_GT] = ACTIONS(1551), + [anon_sym_out_GT_GT] = ACTIONS(1551), + [anon_sym_e_GT_GT] = ACTIONS(1551), + [anon_sym_o_GT_GT] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1551), + [aux_sym_unquoted_token1] = ACTIONS(1549), + [aux_sym_unquoted_token2] = ACTIONS(1553), [anon_sym_POUND] = ACTIONS(247), }, [1064] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(3403), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3347), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3023), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1532), - [sym__unquoted_with_expr] = STATE(1808), - [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1064), - [anon_sym_true] = ACTIONS(3357), - [anon_sym_false] = ACTIONS(3357), - [anon_sym_null] = ACTIONS(3359), - [aux_sym_cmd_identifier_token38] = ACTIONS(3361), - [aux_sym_cmd_identifier_token39] = ACTIONS(3361), - [aux_sym_cmd_identifier_token40] = ACTIONS(3361), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_DOLLAR] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3363), - [aux_sym__val_number_decimal_token2] = ACTIONS(3365), - [aux_sym__val_number_decimal_token3] = ACTIONS(3367), - [aux_sym__val_number_decimal_token4] = ACTIONS(3369), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_true] = ACTIONS(1519), + [anon_sym_false] = ACTIONS(1519), + [anon_sym_null] = ACTIONS(1519), + [aux_sym_cmd_identifier_token38] = ACTIONS(1519), + [aux_sym_cmd_identifier_token39] = ACTIONS(1519), + [aux_sym_cmd_identifier_token40] = ACTIONS(1519), + [sym__newline] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1519), + [anon_sym_err_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_GT_PIPE] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_RPAREN] = ACTIONS(1519), + [anon_sym_DOLLAR] = ACTIONS(1517), + [anon_sym_DASH_DASH] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1517), + [aux_sym_ctrl_match_token1] = ACTIONS(1519), + [anon_sym_RBRACE] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_DOT_DOT2] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1517), + [anon_sym_DOT_DOT_LT] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), + [aux_sym__immediate_decimal_token1] = ACTIONS(3946), + [aux_sym__immediate_decimal_token2] = ACTIONS(3948), + [aux_sym__val_number_decimal_token1] = ACTIONS(1517), + [aux_sym__val_number_decimal_token2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1519), + [aux_sym__val_number_token1] = ACTIONS(1519), + [aux_sym__val_number_token2] = ACTIONS(1519), + [aux_sym__val_number_token3] = ACTIONS(1519), + [anon_sym_0b] = ACTIONS(1517), + [sym_filesize_unit] = ACTIONS(1519), + [sym_duration_unit] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1517), + [sym_val_date] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1519), + [sym__str_single_quotes] = ACTIONS(1519), + [sym__str_back_ticks] = ACTIONS(1519), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1519), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1519), + [anon_sym_err_GT] = ACTIONS(1517), + [anon_sym_out_GT] = ACTIONS(1517), + [anon_sym_e_GT] = ACTIONS(1517), + [anon_sym_o_GT] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT] = ACTIONS(1517), + [anon_sym_err_GT_GT] = ACTIONS(1519), + [anon_sym_out_GT_GT] = ACTIONS(1519), + [anon_sym_e_GT_GT] = ACTIONS(1519), + [anon_sym_o_GT_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), + [aux_sym_unquoted_token1] = ACTIONS(1517), + [aux_sym_unquoted_token2] = ACTIONS(1517), [anon_sym_POUND] = ACTIONS(247), }, [1065] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(3404), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3347), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3023), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1573), - [sym__unquoted_with_expr] = STATE(1811), - [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym_path] = STATE(1206), [sym_comment] = STATE(1065), - [anon_sym_true] = ACTIONS(3357), - [anon_sym_false] = ACTIONS(3357), - [anon_sym_null] = ACTIONS(3359), - [aux_sym_cmd_identifier_token38] = ACTIONS(3361), - [aux_sym_cmd_identifier_token39] = ACTIONS(3361), - [aux_sym_cmd_identifier_token40] = ACTIONS(3361), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_DOLLAR] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3363), - [aux_sym__val_number_decimal_token2] = ACTIONS(3365), - [aux_sym__val_number_decimal_token3] = ACTIONS(3367), - [aux_sym__val_number_decimal_token4] = ACTIONS(3369), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [aux_sym_cell_path_repeat1] = STATE(1058), + [anon_sym_EQ] = ACTIONS(1017), + [anon_sym_PLUS_EQ] = ACTIONS(1019), + [anon_sym_DASH_EQ] = ACTIONS(1019), + [anon_sym_STAR_EQ] = ACTIONS(1019), + [anon_sym_SLASH_EQ] = ACTIONS(1019), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1019), + [sym__newline] = ACTIONS(1017), + [anon_sym_SEMI] = ACTIONS(1019), + [anon_sym_PIPE] = ACTIONS(1019), + [anon_sym_err_GT_PIPE] = ACTIONS(1019), + [anon_sym_out_GT_PIPE] = ACTIONS(1019), + [anon_sym_e_GT_PIPE] = ACTIONS(1019), + [anon_sym_o_GT_PIPE] = ACTIONS(1019), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1019), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1019), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1019), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1019), + [anon_sym_RPAREN] = ACTIONS(1019), + [aux_sym_ctrl_match_token1] = ACTIONS(1019), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1019), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1019), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1019), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1019), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1019), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1019), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1019), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1019), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1019), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1019), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1019), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1019), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1019), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1019), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1019), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1019), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1019), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1019), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1019), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1019), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1019), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1019), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1019), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1019), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1019), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1019), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1019), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1019), + [anon_sym_DOT_DOT2] = ACTIONS(1017), + [anon_sym_DOT] = ACTIONS(3894), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1019), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1019), + [anon_sym_err_GT] = ACTIONS(1017), + [anon_sym_out_GT] = ACTIONS(1017), + [anon_sym_e_GT] = ACTIONS(1017), + [anon_sym_o_GT] = ACTIONS(1017), + [anon_sym_err_PLUSout_GT] = ACTIONS(1017), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1017), + [anon_sym_o_PLUSe_GT] = ACTIONS(1017), + [anon_sym_e_PLUSo_GT] = ACTIONS(1017), + [anon_sym_err_GT_GT] = ACTIONS(1019), + [anon_sym_out_GT_GT] = ACTIONS(1019), + [anon_sym_e_GT_GT] = ACTIONS(1019), + [anon_sym_o_GT_GT] = ACTIONS(1019), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1019), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1019), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1019), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1019), [anon_sym_POUND] = ACTIONS(247), }, [1066] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(3405), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3347), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3023), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1516), - [sym__unquoted_with_expr] = STATE(1812), - [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym__expr_parenthesized_immediate] = STATE(1593), + [sym__immediate_decimal] = STATE(1594), + [sym_val_variable] = STATE(1593), [sym_comment] = STATE(1066), - [anon_sym_true] = ACTIONS(3357), - [anon_sym_false] = ACTIONS(3357), - [anon_sym_null] = ACTIONS(3359), - [aux_sym_cmd_identifier_token38] = ACTIONS(3361), - [aux_sym_cmd_identifier_token39] = ACTIONS(3361), - [aux_sym_cmd_identifier_token40] = ACTIONS(3361), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_DOLLAR] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3363), - [aux_sym__val_number_decimal_token2] = ACTIONS(3365), - [aux_sym__val_number_decimal_token3] = ACTIONS(3367), - [aux_sym__val_number_decimal_token4] = ACTIONS(3369), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_true] = ACTIONS(1623), + [anon_sym_false] = ACTIONS(1623), + [anon_sym_null] = ACTIONS(1623), + [aux_sym_cmd_identifier_token38] = ACTIONS(1623), + [aux_sym_cmd_identifier_token39] = ACTIONS(1623), + [aux_sym_cmd_identifier_token40] = ACTIONS(1623), + [sym__newline] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1623), + [anon_sym_err_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_GT_PIPE] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), + [anon_sym_LBRACK] = ACTIONS(1623), + [anon_sym_LPAREN] = ACTIONS(1621), + [anon_sym_RPAREN] = ACTIONS(1623), + [anon_sym_DOLLAR] = ACTIONS(3882), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_DASH] = ACTIONS(1621), + [aux_sym_ctrl_match_token1] = ACTIONS(1623), + [anon_sym_RBRACE] = ACTIONS(1623), + [anon_sym_DOT_DOT] = ACTIONS(1621), + [anon_sym_LPAREN2] = ACTIONS(3884), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT] = ACTIONS(1623), + [aux_sym__immediate_decimal_token1] = ACTIONS(3926), + [aux_sym__immediate_decimal_token3] = ACTIONS(3928), + [aux_sym__immediate_decimal_token4] = ACTIONS(3930), + [aux_sym__immediate_decimal_token5] = ACTIONS(3932), + [aux_sym__val_number_decimal_token1] = ACTIONS(1621), + [aux_sym__val_number_decimal_token2] = ACTIONS(1621), + [aux_sym__val_number_decimal_token3] = ACTIONS(1621), + [aux_sym__val_number_decimal_token4] = ACTIONS(1621), + [aux_sym__val_number_token1] = ACTIONS(1623), + [aux_sym__val_number_token2] = ACTIONS(1623), + [aux_sym__val_number_token3] = ACTIONS(1623), + [anon_sym_0b] = ACTIONS(1621), + [anon_sym_0o] = ACTIONS(1621), + [anon_sym_0x] = ACTIONS(1621), + [sym_val_date] = ACTIONS(1623), + [anon_sym_DQUOTE] = ACTIONS(1623), + [sym__str_single_quotes] = ACTIONS(1623), + [sym__str_back_ticks] = ACTIONS(1623), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1623), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1623), + [anon_sym_err_GT] = ACTIONS(1621), + [anon_sym_out_GT] = ACTIONS(1621), + [anon_sym_e_GT] = ACTIONS(1621), + [anon_sym_o_GT] = ACTIONS(1621), + [anon_sym_err_PLUSout_GT] = ACTIONS(1621), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1621), + [anon_sym_o_PLUSe_GT] = ACTIONS(1621), + [anon_sym_e_PLUSo_GT] = ACTIONS(1621), + [anon_sym_err_GT_GT] = ACTIONS(1623), + [anon_sym_out_GT_GT] = ACTIONS(1623), + [anon_sym_e_GT_GT] = ACTIONS(1623), + [anon_sym_o_GT_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1623), + [aux_sym_unquoted_token1] = ACTIONS(1621), [anon_sym_POUND] = ACTIONS(247), }, [1067] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(3406), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3347), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3023), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1536), - [sym__unquoted_with_expr] = STATE(1794), - [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym_cell_path] = STATE(1240), + [sym_path] = STATE(1238), [sym_comment] = STATE(1067), - [anon_sym_true] = ACTIONS(3357), - [anon_sym_false] = ACTIONS(3357), - [anon_sym_null] = ACTIONS(3359), - [aux_sym_cmd_identifier_token38] = ACTIONS(3361), - [aux_sym_cmd_identifier_token39] = ACTIONS(3361), - [aux_sym_cmd_identifier_token40] = ACTIONS(3361), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_DOLLAR] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3363), - [aux_sym__val_number_decimal_token2] = ACTIONS(3365), - [aux_sym__val_number_decimal_token3] = ACTIONS(3367), - [aux_sym__val_number_decimal_token4] = ACTIONS(3369), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [aux_sym_cell_path_repeat1] = STATE(1105), + [ts_builtin_sym_end] = ACTIONS(1013), + [anon_sym_EQ] = ACTIONS(1011), + [anon_sym_PLUS_EQ] = ACTIONS(1013), + [anon_sym_DASH_EQ] = ACTIONS(1013), + [anon_sym_STAR_EQ] = ACTIONS(1013), + [anon_sym_SLASH_EQ] = ACTIONS(1013), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1013), + [sym__newline] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1013), + [anon_sym_PIPE] = ACTIONS(1013), + [anon_sym_err_GT_PIPE] = ACTIONS(1013), + [anon_sym_out_GT_PIPE] = ACTIONS(1013), + [anon_sym_e_GT_PIPE] = ACTIONS(1013), + [anon_sym_o_GT_PIPE] = ACTIONS(1013), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1013), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1013), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1013), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1013), + [aux_sym_expr_binary_token1] = ACTIONS(1013), + [aux_sym_expr_binary_token2] = ACTIONS(1013), + [aux_sym_expr_binary_token3] = ACTIONS(1013), + [aux_sym_expr_binary_token4] = ACTIONS(1013), + [aux_sym_expr_binary_token5] = ACTIONS(1013), + [aux_sym_expr_binary_token6] = ACTIONS(1013), + [aux_sym_expr_binary_token7] = ACTIONS(1013), + [aux_sym_expr_binary_token8] = ACTIONS(1013), + [aux_sym_expr_binary_token9] = ACTIONS(1013), + [aux_sym_expr_binary_token10] = ACTIONS(1013), + [aux_sym_expr_binary_token11] = ACTIONS(1013), + [aux_sym_expr_binary_token12] = ACTIONS(1013), + [aux_sym_expr_binary_token13] = ACTIONS(1013), + [aux_sym_expr_binary_token14] = ACTIONS(1013), + [aux_sym_expr_binary_token15] = ACTIONS(1013), + [aux_sym_expr_binary_token16] = ACTIONS(1013), + [aux_sym_expr_binary_token17] = ACTIONS(1013), + [aux_sym_expr_binary_token18] = ACTIONS(1013), + [aux_sym_expr_binary_token19] = ACTIONS(1013), + [aux_sym_expr_binary_token20] = ACTIONS(1013), + [aux_sym_expr_binary_token21] = ACTIONS(1013), + [aux_sym_expr_binary_token22] = ACTIONS(1013), + [aux_sym_expr_binary_token23] = ACTIONS(1013), + [aux_sym_expr_binary_token24] = ACTIONS(1013), + [aux_sym_expr_binary_token25] = ACTIONS(1013), + [aux_sym_expr_binary_token26] = ACTIONS(1013), + [aux_sym_expr_binary_token27] = ACTIONS(1013), + [aux_sym_expr_binary_token28] = ACTIONS(1013), + [anon_sym_DOT_DOT2] = ACTIONS(1011), + [anon_sym_DOT] = ACTIONS(3950), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1013), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1013), + [anon_sym_err_GT] = ACTIONS(1011), + [anon_sym_out_GT] = ACTIONS(1011), + [anon_sym_e_GT] = ACTIONS(1011), + [anon_sym_o_GT] = ACTIONS(1011), + [anon_sym_err_PLUSout_GT] = ACTIONS(1011), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1011), + [anon_sym_o_PLUSe_GT] = ACTIONS(1011), + [anon_sym_e_PLUSo_GT] = ACTIONS(1011), + [anon_sym_err_GT_GT] = ACTIONS(1013), + [anon_sym_out_GT_GT] = ACTIONS(1013), + [anon_sym_e_GT_GT] = ACTIONS(1013), + [anon_sym_o_GT_GT] = ACTIONS(1013), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1013), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1013), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1013), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1013), [anon_sym_POUND] = ACTIONS(247), }, [1068] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(3407), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3347), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3023), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1545), - [sym__unquoted_with_expr] = STATE(1716), - [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1068), - [anon_sym_true] = ACTIONS(3357), - [anon_sym_false] = ACTIONS(3357), - [anon_sym_null] = ACTIONS(3359), - [aux_sym_cmd_identifier_token38] = ACTIONS(3361), - [aux_sym_cmd_identifier_token39] = ACTIONS(3361), - [aux_sym_cmd_identifier_token40] = ACTIONS(3361), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_DOLLAR] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3363), - [aux_sym__val_number_decimal_token2] = ACTIONS(3365), - [aux_sym__val_number_decimal_token3] = ACTIONS(3367), - [aux_sym__val_number_decimal_token4] = ACTIONS(3369), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_true] = ACTIONS(1499), + [anon_sym_false] = ACTIONS(1499), + [anon_sym_null] = ACTIONS(1499), + [aux_sym_cmd_identifier_token38] = ACTIONS(1499), + [aux_sym_cmd_identifier_token39] = ACTIONS(1499), + [aux_sym_cmd_identifier_token40] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1497), + [anon_sym_RPAREN] = ACTIONS(1499), + [anon_sym_DOLLAR] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1497), + [aux_sym_ctrl_match_token1] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1497), + [anon_sym_LPAREN2] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), + [anon_sym_DOT_DOT_LT] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), + [aux_sym__immediate_decimal_token2] = ACTIONS(3902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1499), + [aux_sym__val_number_decimal_token4] = ACTIONS(1499), + [aux_sym__val_number_token1] = ACTIONS(1499), + [aux_sym__val_number_token2] = ACTIONS(1499), + [aux_sym__val_number_token3] = ACTIONS(1499), + [anon_sym_0b] = ACTIONS(1497), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1499), + [anon_sym_0o] = ACTIONS(1497), + [anon_sym_0x] = ACTIONS(1497), + [sym_val_date] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1499), + [sym__str_single_quotes] = ACTIONS(1499), + [sym__str_back_ticks] = ACTIONS(1499), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1499), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1499), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), + [aux_sym_unquoted_token1] = ACTIONS(1497), + [aux_sym_unquoted_token2] = ACTIONS(1497), [anon_sym_POUND] = ACTIONS(247), }, [1069] = { [sym_comment] = STATE(1069), - [anon_sym_true] = ACTIONS(2239), - [anon_sym_false] = ACTIONS(2239), - [anon_sym_null] = ACTIONS(2239), - [aux_sym_cmd_identifier_token38] = ACTIONS(2239), - [aux_sym_cmd_identifier_token39] = ACTIONS(2239), - [aux_sym_cmd_identifier_token40] = ACTIONS(2239), - [sym__newline] = ACTIONS(2239), - [anon_sym_LBRACK] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2239), - [anon_sym_COMMA] = ACTIONS(2239), - [anon_sym_DOLLAR] = ACTIONS(2239), - [aux_sym_ctrl_match_token1] = ACTIONS(2239), - [anon_sym_RBRACE] = ACTIONS(2239), - [anon_sym__] = ACTIONS(2235), - [anon_sym_DOT_DOT] = ACTIONS(2235), - [aux_sym_expr_binary_token1] = ACTIONS(2239), - [aux_sym_expr_binary_token2] = ACTIONS(2239), - [aux_sym_expr_binary_token3] = ACTIONS(2239), - [aux_sym_expr_binary_token4] = ACTIONS(2239), - [aux_sym_expr_binary_token5] = ACTIONS(2239), - [aux_sym_expr_binary_token6] = ACTIONS(2239), - [aux_sym_expr_binary_token7] = ACTIONS(2239), - [aux_sym_expr_binary_token8] = ACTIONS(2239), - [aux_sym_expr_binary_token9] = ACTIONS(2239), - [aux_sym_expr_binary_token10] = ACTIONS(2239), - [aux_sym_expr_binary_token11] = ACTIONS(2239), - [aux_sym_expr_binary_token12] = ACTIONS(2239), - [aux_sym_expr_binary_token13] = ACTIONS(2239), - [aux_sym_expr_binary_token14] = ACTIONS(2239), - [aux_sym_expr_binary_token15] = ACTIONS(2239), - [aux_sym_expr_binary_token16] = ACTIONS(2239), - [aux_sym_expr_binary_token17] = ACTIONS(2239), - [aux_sym_expr_binary_token18] = ACTIONS(2239), - [aux_sym_expr_binary_token19] = ACTIONS(2239), - [aux_sym_expr_binary_token20] = ACTIONS(2239), - [aux_sym_expr_binary_token21] = ACTIONS(2239), - [aux_sym_expr_binary_token22] = ACTIONS(2239), - [aux_sym_expr_binary_token23] = ACTIONS(2239), - [aux_sym_expr_binary_token24] = ACTIONS(2239), - [aux_sym_expr_binary_token25] = ACTIONS(2239), - [aux_sym_expr_binary_token26] = ACTIONS(2239), - [aux_sym_expr_binary_token27] = ACTIONS(2239), - [aux_sym_expr_binary_token28] = ACTIONS(2239), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2239), - [anon_sym_DOT_DOT_LT] = ACTIONS(2239), - [aux_sym__val_number_decimal_token1] = ACTIONS(2235), - [aux_sym__val_number_decimal_token2] = ACTIONS(2239), - [aux_sym__val_number_decimal_token3] = ACTIONS(2239), - [aux_sym__val_number_decimal_token4] = ACTIONS(2239), - [aux_sym__val_number_token1] = ACTIONS(2239), - [aux_sym__val_number_token2] = ACTIONS(2239), - [aux_sym__val_number_token3] = ACTIONS(2239), - [anon_sym_0b] = ACTIONS(2235), - [anon_sym_0o] = ACTIONS(2235), - [anon_sym_0x] = ACTIONS(2235), - [anon_sym_LBRACK2] = ACTIONS(3377), - [sym_val_date] = ACTIONS(2239), - [anon_sym_DQUOTE] = ACTIONS(2239), - [sym__str_single_quotes] = ACTIONS(2239), - [sym__str_back_ticks] = ACTIONS(2239), - [anon_sym_err_GT] = ACTIONS(2235), - [anon_sym_out_GT] = ACTIONS(2235), - [anon_sym_e_GT] = ACTIONS(2235), - [anon_sym_o_GT] = ACTIONS(2235), - [anon_sym_err_PLUSout_GT] = ACTIONS(2235), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2235), - [anon_sym_o_PLUSe_GT] = ACTIONS(2235), - [anon_sym_e_PLUSo_GT] = ACTIONS(2235), - [anon_sym_err_GT_GT] = ACTIONS(2239), - [anon_sym_out_GT_GT] = ACTIONS(2239), - [anon_sym_e_GT_GT] = ACTIONS(2239), - [anon_sym_o_GT_GT] = ACTIONS(2239), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2239), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2239), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2239), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2239), - [aux_sym_unquoted_token1] = ACTIONS(2235), + [anon_sym_EQ] = ACTIONS(1034), + [anon_sym_PLUS_EQ] = ACTIONS(1036), + [anon_sym_DASH_EQ] = ACTIONS(1036), + [anon_sym_STAR_EQ] = ACTIONS(1036), + [anon_sym_SLASH_EQ] = ACTIONS(1036), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1036), + [sym__newline] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1036), + [anon_sym_PIPE] = ACTIONS(1036), + [anon_sym_err_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_GT_PIPE] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), + [aux_sym_ctrl_match_token1] = ACTIONS(1036), + [anon_sym_RBRACE] = ACTIONS(1036), + [anon_sym_QMARK2] = ACTIONS(3952), + [aux_sym_expr_binary_token1] = ACTIONS(1036), + [aux_sym_expr_binary_token2] = ACTIONS(1036), + [aux_sym_expr_binary_token3] = ACTIONS(1036), + [aux_sym_expr_binary_token4] = ACTIONS(1036), + [aux_sym_expr_binary_token5] = ACTIONS(1036), + [aux_sym_expr_binary_token6] = ACTIONS(1036), + [aux_sym_expr_binary_token7] = ACTIONS(1036), + [aux_sym_expr_binary_token8] = ACTIONS(1036), + [aux_sym_expr_binary_token9] = ACTIONS(1036), + [aux_sym_expr_binary_token10] = ACTIONS(1036), + [aux_sym_expr_binary_token11] = ACTIONS(1036), + [aux_sym_expr_binary_token12] = ACTIONS(1036), + [aux_sym_expr_binary_token13] = ACTIONS(1036), + [aux_sym_expr_binary_token14] = ACTIONS(1036), + [aux_sym_expr_binary_token15] = ACTIONS(1036), + [aux_sym_expr_binary_token16] = ACTIONS(1036), + [aux_sym_expr_binary_token17] = ACTIONS(1036), + [aux_sym_expr_binary_token18] = ACTIONS(1036), + [aux_sym_expr_binary_token19] = ACTIONS(1036), + [aux_sym_expr_binary_token20] = ACTIONS(1036), + [aux_sym_expr_binary_token21] = ACTIONS(1036), + [aux_sym_expr_binary_token22] = ACTIONS(1036), + [aux_sym_expr_binary_token23] = ACTIONS(1036), + [aux_sym_expr_binary_token24] = ACTIONS(1036), + [aux_sym_expr_binary_token25] = ACTIONS(1036), + [aux_sym_expr_binary_token26] = ACTIONS(1036), + [aux_sym_expr_binary_token27] = ACTIONS(1036), + [aux_sym_expr_binary_token28] = ACTIONS(1036), + [anon_sym_DOT_DOT2] = ACTIONS(1034), + [anon_sym_DOT] = ACTIONS(1034), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1036), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1036), + [aux_sym_record_entry_token1] = ACTIONS(1036), + [anon_sym_err_GT] = ACTIONS(1034), + [anon_sym_out_GT] = ACTIONS(1034), + [anon_sym_e_GT] = ACTIONS(1034), + [anon_sym_o_GT] = ACTIONS(1034), + [anon_sym_err_PLUSout_GT] = ACTIONS(1034), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), + [anon_sym_o_PLUSe_GT] = ACTIONS(1034), + [anon_sym_e_PLUSo_GT] = ACTIONS(1034), + [anon_sym_err_GT_GT] = ACTIONS(1036), + [anon_sym_out_GT_GT] = ACTIONS(1036), + [anon_sym_e_GT_GT] = ACTIONS(1036), + [anon_sym_o_GT_GT] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), [anon_sym_POUND] = ACTIONS(247), }, [1070] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(1748), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3751), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3561), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1582), - [sym__unquoted_with_expr] = STATE(1749), - [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym_path] = STATE(1205), [sym_comment] = STATE(1070), - [anon_sym_true] = ACTIONS(3379), - [anon_sym_false] = ACTIONS(3379), - [anon_sym_null] = ACTIONS(3381), - [aux_sym_cmd_identifier_token38] = ACTIONS(3383), - [aux_sym_cmd_identifier_token39] = ACTIONS(3383), - [aux_sym_cmd_identifier_token40] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3389), - [aux_sym__val_number_decimal_token2] = ACTIONS(3391), - [aux_sym__val_number_decimal_token3] = ACTIONS(3393), - [aux_sym__val_number_decimal_token4] = ACTIONS(3395), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3397), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [aux_sym_cell_path_repeat1] = STATE(1070), + [anon_sym_EQ] = ACTIONS(1021), + [anon_sym_PLUS_EQ] = ACTIONS(1023), + [anon_sym_DASH_EQ] = ACTIONS(1023), + [anon_sym_STAR_EQ] = ACTIONS(1023), + [anon_sym_SLASH_EQ] = ACTIONS(1023), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1023), + [sym__newline] = ACTIONS(1023), + [anon_sym_SEMI] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(1023), + [anon_sym_err_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_GT_PIPE] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1023), + [anon_sym_RPAREN] = ACTIONS(1023), + [anon_sym_RBRACE] = ACTIONS(1023), + [aux_sym_expr_binary_token1] = ACTIONS(1023), + [aux_sym_expr_binary_token2] = ACTIONS(1023), + [aux_sym_expr_binary_token3] = ACTIONS(1023), + [aux_sym_expr_binary_token4] = ACTIONS(1023), + [aux_sym_expr_binary_token5] = ACTIONS(1023), + [aux_sym_expr_binary_token6] = ACTIONS(1023), + [aux_sym_expr_binary_token7] = ACTIONS(1023), + [aux_sym_expr_binary_token8] = ACTIONS(1023), + [aux_sym_expr_binary_token9] = ACTIONS(1023), + [aux_sym_expr_binary_token10] = ACTIONS(1023), + [aux_sym_expr_binary_token11] = ACTIONS(1023), + [aux_sym_expr_binary_token12] = ACTIONS(1023), + [aux_sym_expr_binary_token13] = ACTIONS(1023), + [aux_sym_expr_binary_token14] = ACTIONS(1023), + [aux_sym_expr_binary_token15] = ACTIONS(1023), + [aux_sym_expr_binary_token16] = ACTIONS(1023), + [aux_sym_expr_binary_token17] = ACTIONS(1023), + [aux_sym_expr_binary_token18] = ACTIONS(1023), + [aux_sym_expr_binary_token19] = ACTIONS(1023), + [aux_sym_expr_binary_token20] = ACTIONS(1023), + [aux_sym_expr_binary_token21] = ACTIONS(1023), + [aux_sym_expr_binary_token22] = ACTIONS(1023), + [aux_sym_expr_binary_token23] = ACTIONS(1023), + [aux_sym_expr_binary_token24] = ACTIONS(1023), + [aux_sym_expr_binary_token25] = ACTIONS(1023), + [aux_sym_expr_binary_token26] = ACTIONS(1023), + [aux_sym_expr_binary_token27] = ACTIONS(1023), + [aux_sym_expr_binary_token28] = ACTIONS(1023), + [anon_sym_DOT_DOT2] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(3954), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), + [anon_sym_err_GT] = ACTIONS(1021), + [anon_sym_out_GT] = ACTIONS(1021), + [anon_sym_e_GT] = ACTIONS(1021), + [anon_sym_o_GT] = ACTIONS(1021), + [anon_sym_err_PLUSout_GT] = ACTIONS(1021), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), + [anon_sym_o_PLUSe_GT] = ACTIONS(1021), + [anon_sym_e_PLUSo_GT] = ACTIONS(1021), + [anon_sym_err_GT_GT] = ACTIONS(1023), + [anon_sym_out_GT_GT] = ACTIONS(1023), + [anon_sym_e_GT_GT] = ACTIONS(1023), + [anon_sym_o_GT_GT] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), [anon_sym_POUND] = ACTIONS(247), }, [1071] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(3921), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3751), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3561), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1588), - [sym__unquoted_with_expr] = STATE(1772), - [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1071), - [anon_sym_true] = ACTIONS(3379), - [anon_sym_false] = ACTIONS(3379), - [anon_sym_null] = ACTIONS(3381), - [aux_sym_cmd_identifier_token38] = ACTIONS(3383), - [aux_sym_cmd_identifier_token39] = ACTIONS(3383), - [aux_sym_cmd_identifier_token40] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3389), - [aux_sym__val_number_decimal_token2] = ACTIONS(3391), - [aux_sym__val_number_decimal_token3] = ACTIONS(3393), - [aux_sym__val_number_decimal_token4] = ACTIONS(3395), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3397), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [ts_builtin_sym_end] = ACTIONS(1519), + [anon_sym_true] = ACTIONS(1519), + [anon_sym_false] = ACTIONS(1519), + [anon_sym_null] = ACTIONS(1519), + [aux_sym_cmd_identifier_token38] = ACTIONS(1519), + [aux_sym_cmd_identifier_token39] = ACTIONS(1519), + [aux_sym_cmd_identifier_token40] = ACTIONS(1519), + [sym__newline] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1519), + [anon_sym_err_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_GT_PIPE] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_DOLLAR] = ACTIONS(1517), + [anon_sym_DASH_DASH] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1517), + [aux_sym_ctrl_match_token1] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_DOT_DOT2] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1517), + [anon_sym_DOT_DOT_LT] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), + [aux_sym__immediate_decimal_token1] = ACTIONS(3957), + [aux_sym__immediate_decimal_token2] = ACTIONS(3959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1517), + [aux_sym__val_number_decimal_token2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1519), + [aux_sym__val_number_token1] = ACTIONS(1519), + [aux_sym__val_number_token2] = ACTIONS(1519), + [aux_sym__val_number_token3] = ACTIONS(1519), + [anon_sym_0b] = ACTIONS(1517), + [sym_filesize_unit] = ACTIONS(1519), + [sym_duration_unit] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1517), + [sym_val_date] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1519), + [sym__str_single_quotes] = ACTIONS(1519), + [sym__str_back_ticks] = ACTIONS(1519), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1519), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1519), + [anon_sym_err_GT] = ACTIONS(1517), + [anon_sym_out_GT] = ACTIONS(1517), + [anon_sym_e_GT] = ACTIONS(1517), + [anon_sym_o_GT] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT] = ACTIONS(1517), + [anon_sym_err_GT_GT] = ACTIONS(1519), + [anon_sym_out_GT_GT] = ACTIONS(1519), + [anon_sym_e_GT_GT] = ACTIONS(1519), + [anon_sym_o_GT_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), + [aux_sym_unquoted_token1] = ACTIONS(1517), + [aux_sym_unquoted_token2] = ACTIONS(1517), [anon_sym_POUND] = ACTIONS(247), }, [1072] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(3922), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3751), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3561), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1596), - [sym__unquoted_with_expr] = STATE(1773), - [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1072), - [anon_sym_true] = ACTIONS(3379), - [anon_sym_false] = ACTIONS(3379), - [anon_sym_null] = ACTIONS(3381), - [aux_sym_cmd_identifier_token38] = ACTIONS(3383), - [aux_sym_cmd_identifier_token39] = ACTIONS(3383), - [aux_sym_cmd_identifier_token40] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3389), - [aux_sym__val_number_decimal_token2] = ACTIONS(3391), - [aux_sym__val_number_decimal_token3] = ACTIONS(3393), - [aux_sym__val_number_decimal_token4] = ACTIONS(3395), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3397), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_true] = ACTIONS(1499), + [anon_sym_false] = ACTIONS(1499), + [anon_sym_null] = ACTIONS(1499), + [aux_sym_cmd_identifier_token38] = ACTIONS(1499), + [aux_sym_cmd_identifier_token39] = ACTIONS(1499), + [aux_sym_cmd_identifier_token40] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_RPAREN] = ACTIONS(1499), + [anon_sym_DOLLAR] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1497), + [aux_sym_ctrl_match_token1] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1497), + [anon_sym_DOT_DOT2] = ACTIONS(1497), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), + [anon_sym_DOT_DOT_LT] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), + [aux_sym__immediate_decimal_token2] = ACTIONS(3963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1499), + [aux_sym__val_number_decimal_token4] = ACTIONS(1499), + [aux_sym__val_number_token1] = ACTIONS(1499), + [aux_sym__val_number_token2] = ACTIONS(1499), + [aux_sym__val_number_token3] = ACTIONS(1499), + [anon_sym_0b] = ACTIONS(1497), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1499), + [anon_sym_0o] = ACTIONS(1497), + [anon_sym_0x] = ACTIONS(1497), + [sym_val_date] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1499), + [sym__str_single_quotes] = ACTIONS(1499), + [sym__str_back_ticks] = ACTIONS(1499), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1499), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1499), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), + [aux_sym_unquoted_token1] = ACTIONS(1497), + [aux_sym_unquoted_token2] = ACTIONS(1497), [anon_sym_POUND] = ACTIONS(247), }, [1073] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(3923), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3751), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3561), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1535), - [sym__unquoted_with_expr] = STATE(1777), - [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1073), - [anon_sym_true] = ACTIONS(3379), - [anon_sym_false] = ACTIONS(3379), - [anon_sym_null] = ACTIONS(3381), - [aux_sym_cmd_identifier_token38] = ACTIONS(3383), - [aux_sym_cmd_identifier_token39] = ACTIONS(3383), - [aux_sym_cmd_identifier_token40] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3389), - [aux_sym__val_number_decimal_token2] = ACTIONS(3391), - [aux_sym__val_number_decimal_token3] = ACTIONS(3393), - [aux_sym__val_number_decimal_token4] = ACTIONS(3395), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3397), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_EQ] = ACTIONS(1028), + [anon_sym_PLUS_EQ] = ACTIONS(1030), + [anon_sym_DASH_EQ] = ACTIONS(1030), + [anon_sym_STAR_EQ] = ACTIONS(1030), + [anon_sym_SLASH_EQ] = ACTIONS(1030), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1030), + [sym__newline] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_err_GT_PIPE] = ACTIONS(1030), + [anon_sym_out_GT_PIPE] = ACTIONS(1030), + [anon_sym_e_GT_PIPE] = ACTIONS(1030), + [anon_sym_o_GT_PIPE] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1030), + [aux_sym_ctrl_match_token1] = ACTIONS(1030), + [anon_sym_RBRACE] = ACTIONS(1030), + [anon_sym_QMARK2] = ACTIONS(3965), + [aux_sym_expr_binary_token1] = ACTIONS(1030), + [aux_sym_expr_binary_token2] = ACTIONS(1030), + [aux_sym_expr_binary_token3] = ACTIONS(1030), + [aux_sym_expr_binary_token4] = ACTIONS(1030), + [aux_sym_expr_binary_token5] = ACTIONS(1030), + [aux_sym_expr_binary_token6] = ACTIONS(1030), + [aux_sym_expr_binary_token7] = ACTIONS(1030), + [aux_sym_expr_binary_token8] = ACTIONS(1030), + [aux_sym_expr_binary_token9] = ACTIONS(1030), + [aux_sym_expr_binary_token10] = ACTIONS(1030), + [aux_sym_expr_binary_token11] = ACTIONS(1030), + [aux_sym_expr_binary_token12] = ACTIONS(1030), + [aux_sym_expr_binary_token13] = ACTIONS(1030), + [aux_sym_expr_binary_token14] = ACTIONS(1030), + [aux_sym_expr_binary_token15] = ACTIONS(1030), + [aux_sym_expr_binary_token16] = ACTIONS(1030), + [aux_sym_expr_binary_token17] = ACTIONS(1030), + [aux_sym_expr_binary_token18] = ACTIONS(1030), + [aux_sym_expr_binary_token19] = ACTIONS(1030), + [aux_sym_expr_binary_token20] = ACTIONS(1030), + [aux_sym_expr_binary_token21] = ACTIONS(1030), + [aux_sym_expr_binary_token22] = ACTIONS(1030), + [aux_sym_expr_binary_token23] = ACTIONS(1030), + [aux_sym_expr_binary_token24] = ACTIONS(1030), + [aux_sym_expr_binary_token25] = ACTIONS(1030), + [aux_sym_expr_binary_token26] = ACTIONS(1030), + [aux_sym_expr_binary_token27] = ACTIONS(1030), + [aux_sym_expr_binary_token28] = ACTIONS(1030), + [anon_sym_DOT_DOT2] = ACTIONS(1028), + [anon_sym_DOT] = ACTIONS(1028), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1030), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1030), + [aux_sym_record_entry_token1] = ACTIONS(1030), + [anon_sym_err_GT] = ACTIONS(1028), + [anon_sym_out_GT] = ACTIONS(1028), + [anon_sym_e_GT] = ACTIONS(1028), + [anon_sym_o_GT] = ACTIONS(1028), + [anon_sym_err_PLUSout_GT] = ACTIONS(1028), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1028), + [anon_sym_o_PLUSe_GT] = ACTIONS(1028), + [anon_sym_e_PLUSo_GT] = ACTIONS(1028), + [anon_sym_err_GT_GT] = ACTIONS(1030), + [anon_sym_out_GT_GT] = ACTIONS(1030), + [anon_sym_e_GT_GT] = ACTIONS(1030), + [anon_sym_o_GT_GT] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1030), [anon_sym_POUND] = ACTIONS(247), }, [1074] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(3924), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3751), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3561), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1571), - [sym__unquoted_with_expr] = STATE(1784), - [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym_path] = STATE(1205), [sym_comment] = STATE(1074), - [anon_sym_true] = ACTIONS(3379), - [anon_sym_false] = ACTIONS(3379), - [anon_sym_null] = ACTIONS(3381), - [aux_sym_cmd_identifier_token38] = ACTIONS(3383), - [aux_sym_cmd_identifier_token39] = ACTIONS(3383), - [aux_sym_cmd_identifier_token40] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3389), - [aux_sym__val_number_decimal_token2] = ACTIONS(3391), - [aux_sym__val_number_decimal_token3] = ACTIONS(3393), - [aux_sym__val_number_decimal_token4] = ACTIONS(3395), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3397), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [aux_sym_cell_path_repeat1] = STATE(1070), + [anon_sym_EQ] = ACTIONS(1017), + [anon_sym_PLUS_EQ] = ACTIONS(1019), + [anon_sym_DASH_EQ] = ACTIONS(1019), + [anon_sym_STAR_EQ] = ACTIONS(1019), + [anon_sym_SLASH_EQ] = ACTIONS(1019), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1019), + [sym__newline] = ACTIONS(1019), + [anon_sym_SEMI] = ACTIONS(1019), + [anon_sym_PIPE] = ACTIONS(1019), + [anon_sym_err_GT_PIPE] = ACTIONS(1019), + [anon_sym_out_GT_PIPE] = ACTIONS(1019), + [anon_sym_e_GT_PIPE] = ACTIONS(1019), + [anon_sym_o_GT_PIPE] = ACTIONS(1019), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1019), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1019), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1019), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1019), + [anon_sym_RPAREN] = ACTIONS(1019), + [anon_sym_RBRACE] = ACTIONS(1019), + [aux_sym_expr_binary_token1] = ACTIONS(1019), + [aux_sym_expr_binary_token2] = ACTIONS(1019), + [aux_sym_expr_binary_token3] = ACTIONS(1019), + [aux_sym_expr_binary_token4] = ACTIONS(1019), + [aux_sym_expr_binary_token5] = ACTIONS(1019), + [aux_sym_expr_binary_token6] = ACTIONS(1019), + [aux_sym_expr_binary_token7] = ACTIONS(1019), + [aux_sym_expr_binary_token8] = ACTIONS(1019), + [aux_sym_expr_binary_token9] = ACTIONS(1019), + [aux_sym_expr_binary_token10] = ACTIONS(1019), + [aux_sym_expr_binary_token11] = ACTIONS(1019), + [aux_sym_expr_binary_token12] = ACTIONS(1019), + [aux_sym_expr_binary_token13] = ACTIONS(1019), + [aux_sym_expr_binary_token14] = ACTIONS(1019), + [aux_sym_expr_binary_token15] = ACTIONS(1019), + [aux_sym_expr_binary_token16] = ACTIONS(1019), + [aux_sym_expr_binary_token17] = ACTIONS(1019), + [aux_sym_expr_binary_token18] = ACTIONS(1019), + [aux_sym_expr_binary_token19] = ACTIONS(1019), + [aux_sym_expr_binary_token20] = ACTIONS(1019), + [aux_sym_expr_binary_token21] = ACTIONS(1019), + [aux_sym_expr_binary_token22] = ACTIONS(1019), + [aux_sym_expr_binary_token23] = ACTIONS(1019), + [aux_sym_expr_binary_token24] = ACTIONS(1019), + [aux_sym_expr_binary_token25] = ACTIONS(1019), + [aux_sym_expr_binary_token26] = ACTIONS(1019), + [aux_sym_expr_binary_token27] = ACTIONS(1019), + [aux_sym_expr_binary_token28] = ACTIONS(1019), + [anon_sym_DOT_DOT2] = ACTIONS(1017), + [anon_sym_DOT] = ACTIONS(3880), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1019), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1019), + [anon_sym_err_GT] = ACTIONS(1017), + [anon_sym_out_GT] = ACTIONS(1017), + [anon_sym_e_GT] = ACTIONS(1017), + [anon_sym_o_GT] = ACTIONS(1017), + [anon_sym_err_PLUSout_GT] = ACTIONS(1017), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1017), + [anon_sym_o_PLUSe_GT] = ACTIONS(1017), + [anon_sym_e_PLUSo_GT] = ACTIONS(1017), + [anon_sym_err_GT_GT] = ACTIONS(1019), + [anon_sym_out_GT_GT] = ACTIONS(1019), + [anon_sym_e_GT_GT] = ACTIONS(1019), + [anon_sym_o_GT_GT] = ACTIONS(1019), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1019), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1019), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1019), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1019), [anon_sym_POUND] = ACTIONS(247), }, [1075] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(3925), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3751), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3561), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1537), - [sym__unquoted_with_expr] = STATE(1803), - [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym__expr_parenthesized_immediate] = STATE(1449), + [sym__immediate_decimal] = STATE(1465), + [sym_val_variable] = STATE(1449), [sym_comment] = STATE(1075), - [anon_sym_true] = ACTIONS(3379), - [anon_sym_false] = ACTIONS(3379), - [anon_sym_null] = ACTIONS(3381), - [aux_sym_cmd_identifier_token38] = ACTIONS(3383), - [aux_sym_cmd_identifier_token39] = ACTIONS(3383), - [aux_sym_cmd_identifier_token40] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3389), - [aux_sym__val_number_decimal_token2] = ACTIONS(3391), - [aux_sym__val_number_decimal_token3] = ACTIONS(3393), - [aux_sym__val_number_decimal_token4] = ACTIONS(3395), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3397), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [ts_builtin_sym_end] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(1515), + [anon_sym_false] = ACTIONS(1515), + [anon_sym_null] = ACTIONS(1515), + [aux_sym_cmd_identifier_token38] = ACTIONS(1515), + [aux_sym_cmd_identifier_token39] = ACTIONS(1515), + [aux_sym_cmd_identifier_token40] = ACTIONS(1515), + [sym__newline] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_err_GT_PIPE] = ACTIONS(1515), + [anon_sym_out_GT_PIPE] = ACTIONS(1515), + [anon_sym_e_GT_PIPE] = ACTIONS(1515), + [anon_sym_o_GT_PIPE] = ACTIONS(1515), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1515), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1515), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1515), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1515), + [anon_sym_LPAREN] = ACTIONS(1505), + [anon_sym_DOLLAR] = ACTIONS(2764), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_DASH] = ACTIONS(1505), + [aux_sym_ctrl_match_token1] = ACTIONS(1515), + [anon_sym_DOT_DOT] = ACTIONS(1505), + [anon_sym_LPAREN2] = ACTIONS(3789), + [anon_sym_DOT] = ACTIONS(3967), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [aux_sym__immediate_decimal_token1] = ACTIONS(3969), + [aux_sym__immediate_decimal_token3] = ACTIONS(3971), + [aux_sym__immediate_decimal_token4] = ACTIONS(3973), + [aux_sym__immediate_decimal_token5] = ACTIONS(3975), + [aux_sym__val_number_decimal_token1] = ACTIONS(1505), + [aux_sym__val_number_decimal_token2] = ACTIONS(1505), + [aux_sym__val_number_decimal_token3] = ACTIONS(1505), + [aux_sym__val_number_decimal_token4] = ACTIONS(1505), + [aux_sym__val_number_token1] = ACTIONS(1515), + [aux_sym__val_number_token2] = ACTIONS(1515), + [aux_sym__val_number_token3] = ACTIONS(1515), + [anon_sym_0b] = ACTIONS(1505), + [anon_sym_0o] = ACTIONS(1505), + [anon_sym_0x] = ACTIONS(1505), + [sym_val_date] = ACTIONS(1515), + [anon_sym_DQUOTE] = ACTIONS(1515), + [sym__str_single_quotes] = ACTIONS(1515), + [sym__str_back_ticks] = ACTIONS(1515), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1515), + [anon_sym_err_GT] = ACTIONS(1505), + [anon_sym_out_GT] = ACTIONS(1505), + [anon_sym_e_GT] = ACTIONS(1505), + [anon_sym_o_GT] = ACTIONS(1505), + [anon_sym_err_PLUSout_GT] = ACTIONS(1505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1505), + [anon_sym_o_PLUSe_GT] = ACTIONS(1505), + [anon_sym_e_PLUSo_GT] = ACTIONS(1505), + [anon_sym_err_GT_GT] = ACTIONS(1515), + [anon_sym_out_GT_GT] = ACTIONS(1515), + [anon_sym_e_GT_GT] = ACTIONS(1515), + [anon_sym_o_GT_GT] = ACTIONS(1515), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1515), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1515), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1515), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1515), + [aux_sym_unquoted_token1] = ACTIONS(1505), [anon_sym_POUND] = ACTIONS(247), }, [1076] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(3926), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3751), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3561), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1595), - [sym__unquoted_with_expr] = STATE(1805), - [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1076), - [anon_sym_true] = ACTIONS(3379), - [anon_sym_false] = ACTIONS(3379), - [anon_sym_null] = ACTIONS(3381), - [aux_sym_cmd_identifier_token38] = ACTIONS(3383), - [aux_sym_cmd_identifier_token39] = ACTIONS(3383), - [aux_sym_cmd_identifier_token40] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3389), - [aux_sym__val_number_decimal_token2] = ACTIONS(3391), - [aux_sym__val_number_decimal_token3] = ACTIONS(3393), - [aux_sym__val_number_decimal_token4] = ACTIONS(3395), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3397), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [ts_builtin_sym_end] = ACTIONS(1499), + [anon_sym_true] = ACTIONS(1499), + [anon_sym_false] = ACTIONS(1499), + [anon_sym_null] = ACTIONS(1499), + [aux_sym_cmd_identifier_token38] = ACTIONS(1499), + [aux_sym_cmd_identifier_token39] = ACTIONS(1499), + [aux_sym_cmd_identifier_token40] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1497), + [anon_sym_DOLLAR] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1497), + [aux_sym_ctrl_match_token1] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1497), + [anon_sym_LPAREN2] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1497), + [anon_sym_DOT] = ACTIONS(3977), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), + [anon_sym_DOT_DOT_LT] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), + [aux_sym__immediate_decimal_token2] = ACTIONS(3979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1499), + [aux_sym__val_number_decimal_token4] = ACTIONS(1499), + [aux_sym__val_number_token1] = ACTIONS(1499), + [aux_sym__val_number_token2] = ACTIONS(1499), + [aux_sym__val_number_token3] = ACTIONS(1499), + [anon_sym_0b] = ACTIONS(1497), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1499), + [anon_sym_0o] = ACTIONS(1497), + [anon_sym_0x] = ACTIONS(1497), + [sym_val_date] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1499), + [sym__str_single_quotes] = ACTIONS(1499), + [sym__str_back_ticks] = ACTIONS(1499), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1499), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1499), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), + [aux_sym_unquoted_token1] = ACTIONS(1497), + [aux_sym_unquoted_token2] = ACTIONS(1497), [anon_sym_POUND] = ACTIONS(247), }, [1077] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(3927), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3751), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3561), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1568), - [sym__unquoted_with_expr] = STATE(1806), - [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1077), - [anon_sym_true] = ACTIONS(3379), - [anon_sym_false] = ACTIONS(3379), - [anon_sym_null] = ACTIONS(3381), - [aux_sym_cmd_identifier_token38] = ACTIONS(3383), - [aux_sym_cmd_identifier_token39] = ACTIONS(3383), - [aux_sym_cmd_identifier_token40] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3389), - [aux_sym__val_number_decimal_token2] = ACTIONS(3391), - [aux_sym__val_number_decimal_token3] = ACTIONS(3393), - [aux_sym__val_number_decimal_token4] = ACTIONS(3395), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3397), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_true] = ACTIONS(1567), + [anon_sym_false] = ACTIONS(1567), + [anon_sym_null] = ACTIONS(1567), + [aux_sym_cmd_identifier_token38] = ACTIONS(1567), + [aux_sym_cmd_identifier_token39] = ACTIONS(1567), + [aux_sym_cmd_identifier_token40] = ACTIONS(1567), + [sym__newline] = ACTIONS(1567), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_err_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_GT_PIPE] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), + [anon_sym_LBRACK] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_RPAREN] = ACTIONS(1567), + [anon_sym_DOLLAR] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1565), + [aux_sym_ctrl_match_token1] = ACTIONS(1567), + [anon_sym_RBRACE] = ACTIONS(1567), + [anon_sym_DOT_DOT] = ACTIONS(1565), + [anon_sym_LPAREN2] = ACTIONS(1567), + [anon_sym_DOT_DOT2] = ACTIONS(1565), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1565), + [anon_sym_DOT_DOT_LT] = ACTIONS(1565), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), + [aux_sym__immediate_decimal_token2] = ACTIONS(3981), + [aux_sym__val_number_decimal_token1] = ACTIONS(1565), + [aux_sym__val_number_decimal_token2] = ACTIONS(1567), + [aux_sym__val_number_decimal_token3] = ACTIONS(1567), + [aux_sym__val_number_decimal_token4] = ACTIONS(1567), + [aux_sym__val_number_token1] = ACTIONS(1567), + [aux_sym__val_number_token2] = ACTIONS(1567), + [aux_sym__val_number_token3] = ACTIONS(1567), + [anon_sym_0b] = ACTIONS(1565), + [sym_filesize_unit] = ACTIONS(1567), + [sym_duration_unit] = ACTIONS(1567), + [anon_sym_0o] = ACTIONS(1565), + [anon_sym_0x] = ACTIONS(1565), + [sym_val_date] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(1567), + [sym__str_single_quotes] = ACTIONS(1567), + [sym__str_back_ticks] = ACTIONS(1567), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1567), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1567), + [anon_sym_err_GT] = ACTIONS(1565), + [anon_sym_out_GT] = ACTIONS(1565), + [anon_sym_e_GT] = ACTIONS(1565), + [anon_sym_o_GT] = ACTIONS(1565), + [anon_sym_err_PLUSout_GT] = ACTIONS(1565), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), + [anon_sym_o_PLUSe_GT] = ACTIONS(1565), + [anon_sym_e_PLUSo_GT] = ACTIONS(1565), + [anon_sym_err_GT_GT] = ACTIONS(1567), + [anon_sym_out_GT_GT] = ACTIONS(1567), + [anon_sym_e_GT_GT] = ACTIONS(1567), + [anon_sym_o_GT_GT] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), + [aux_sym_unquoted_token1] = ACTIONS(1565), + [aux_sym_unquoted_token2] = ACTIONS(1565), [anon_sym_POUND] = ACTIONS(247), }, [1078] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(3928), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3751), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3561), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1532), - [sym__unquoted_with_expr] = STATE(1808), - [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym__expr_parenthesized_immediate] = STATE(1584), + [sym__immediate_decimal] = STATE(1585), + [sym_val_variable] = STATE(1584), [sym_comment] = STATE(1078), - [anon_sym_true] = ACTIONS(3379), - [anon_sym_false] = ACTIONS(3379), - [anon_sym_null] = ACTIONS(3381), - [aux_sym_cmd_identifier_token38] = ACTIONS(3383), - [aux_sym_cmd_identifier_token39] = ACTIONS(3383), - [aux_sym_cmd_identifier_token40] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3389), - [aux_sym__val_number_decimal_token2] = ACTIONS(3391), - [aux_sym__val_number_decimal_token3] = ACTIONS(3393), - [aux_sym__val_number_decimal_token4] = ACTIONS(3395), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3397), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_true] = ACTIONS(1515), + [anon_sym_false] = ACTIONS(1515), + [anon_sym_null] = ACTIONS(1515), + [aux_sym_cmd_identifier_token38] = ACTIONS(1515), + [aux_sym_cmd_identifier_token39] = ACTIONS(1515), + [aux_sym_cmd_identifier_token40] = ACTIONS(1515), + [sym__newline] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_err_GT_PIPE] = ACTIONS(1515), + [anon_sym_out_GT_PIPE] = ACTIONS(1515), + [anon_sym_e_GT_PIPE] = ACTIONS(1515), + [anon_sym_o_GT_PIPE] = ACTIONS(1515), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1515), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1515), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1515), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1515), + [anon_sym_LPAREN] = ACTIONS(1505), + [anon_sym_RPAREN] = ACTIONS(1515), + [anon_sym_DOLLAR] = ACTIONS(3882), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_DASH] = ACTIONS(1505), + [aux_sym_ctrl_match_token1] = ACTIONS(1515), + [anon_sym_RBRACE] = ACTIONS(1515), + [anon_sym_DOT_DOT] = ACTIONS(1505), + [anon_sym_LPAREN2] = ACTIONS(3884), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [aux_sym__immediate_decimal_token1] = ACTIONS(3926), + [aux_sym__immediate_decimal_token3] = ACTIONS(3928), + [aux_sym__immediate_decimal_token4] = ACTIONS(3930), + [aux_sym__immediate_decimal_token5] = ACTIONS(3932), + [aux_sym__val_number_decimal_token1] = ACTIONS(1505), + [aux_sym__val_number_decimal_token2] = ACTIONS(1505), + [aux_sym__val_number_decimal_token3] = ACTIONS(1505), + [aux_sym__val_number_decimal_token4] = ACTIONS(1505), + [aux_sym__val_number_token1] = ACTIONS(1515), + [aux_sym__val_number_token2] = ACTIONS(1515), + [aux_sym__val_number_token3] = ACTIONS(1515), + [anon_sym_0b] = ACTIONS(1505), + [anon_sym_0o] = ACTIONS(1505), + [anon_sym_0x] = ACTIONS(1505), + [sym_val_date] = ACTIONS(1515), + [anon_sym_DQUOTE] = ACTIONS(1515), + [sym__str_single_quotes] = ACTIONS(1515), + [sym__str_back_ticks] = ACTIONS(1515), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1515), + [anon_sym_err_GT] = ACTIONS(1505), + [anon_sym_out_GT] = ACTIONS(1505), + [anon_sym_e_GT] = ACTIONS(1505), + [anon_sym_o_GT] = ACTIONS(1505), + [anon_sym_err_PLUSout_GT] = ACTIONS(1505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1505), + [anon_sym_o_PLUSe_GT] = ACTIONS(1505), + [anon_sym_e_PLUSo_GT] = ACTIONS(1505), + [anon_sym_err_GT_GT] = ACTIONS(1515), + [anon_sym_out_GT_GT] = ACTIONS(1515), + [anon_sym_e_GT_GT] = ACTIONS(1515), + [anon_sym_o_GT_GT] = ACTIONS(1515), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1515), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1515), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1515), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1515), + [aux_sym_unquoted_token1] = ACTIONS(1505), [anon_sym_POUND] = ACTIONS(247), }, [1079] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(3929), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3751), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3561), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1573), - [sym__unquoted_with_expr] = STATE(1811), - [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1079), - [anon_sym_true] = ACTIONS(3379), - [anon_sym_false] = ACTIONS(3379), - [anon_sym_null] = ACTIONS(3381), - [aux_sym_cmd_identifier_token38] = ACTIONS(3383), - [aux_sym_cmd_identifier_token39] = ACTIONS(3383), - [aux_sym_cmd_identifier_token40] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3389), - [aux_sym__val_number_decimal_token2] = ACTIONS(3391), - [aux_sym__val_number_decimal_token3] = ACTIONS(3393), - [aux_sym__val_number_decimal_token4] = ACTIONS(3395), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3397), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_EQ] = ACTIONS(1040), + [anon_sym_PLUS_EQ] = ACTIONS(1042), + [anon_sym_DASH_EQ] = ACTIONS(1042), + [anon_sym_STAR_EQ] = ACTIONS(1042), + [anon_sym_SLASH_EQ] = ACTIONS(1042), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1042), + [sym__newline] = ACTIONS(1040), + [anon_sym_SEMI] = ACTIONS(1042), + [anon_sym_PIPE] = ACTIONS(1042), + [anon_sym_err_GT_PIPE] = ACTIONS(1042), + [anon_sym_out_GT_PIPE] = ACTIONS(1042), + [anon_sym_e_GT_PIPE] = ACTIONS(1042), + [anon_sym_o_GT_PIPE] = ACTIONS(1042), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1042), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1042), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1042), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1042), + [aux_sym_ctrl_match_token1] = ACTIONS(1042), + [anon_sym_RBRACE] = ACTIONS(1042), + [anon_sym_QMARK2] = ACTIONS(1042), + [aux_sym_expr_binary_token1] = ACTIONS(1042), + [aux_sym_expr_binary_token2] = ACTIONS(1042), + [aux_sym_expr_binary_token3] = ACTIONS(1042), + [aux_sym_expr_binary_token4] = ACTIONS(1042), + [aux_sym_expr_binary_token5] = ACTIONS(1042), + [aux_sym_expr_binary_token6] = ACTIONS(1042), + [aux_sym_expr_binary_token7] = ACTIONS(1042), + [aux_sym_expr_binary_token8] = ACTIONS(1042), + [aux_sym_expr_binary_token9] = ACTIONS(1042), + [aux_sym_expr_binary_token10] = ACTIONS(1042), + [aux_sym_expr_binary_token11] = ACTIONS(1042), + [aux_sym_expr_binary_token12] = ACTIONS(1042), + [aux_sym_expr_binary_token13] = ACTIONS(1042), + [aux_sym_expr_binary_token14] = ACTIONS(1042), + [aux_sym_expr_binary_token15] = ACTIONS(1042), + [aux_sym_expr_binary_token16] = ACTIONS(1042), + [aux_sym_expr_binary_token17] = ACTIONS(1042), + [aux_sym_expr_binary_token18] = ACTIONS(1042), + [aux_sym_expr_binary_token19] = ACTIONS(1042), + [aux_sym_expr_binary_token20] = ACTIONS(1042), + [aux_sym_expr_binary_token21] = ACTIONS(1042), + [aux_sym_expr_binary_token22] = ACTIONS(1042), + [aux_sym_expr_binary_token23] = ACTIONS(1042), + [aux_sym_expr_binary_token24] = ACTIONS(1042), + [aux_sym_expr_binary_token25] = ACTIONS(1042), + [aux_sym_expr_binary_token26] = ACTIONS(1042), + [aux_sym_expr_binary_token27] = ACTIONS(1042), + [aux_sym_expr_binary_token28] = ACTIONS(1042), + [anon_sym_DOT_DOT2] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1042), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1042), + [aux_sym_record_entry_token1] = ACTIONS(1042), + [anon_sym_err_GT] = ACTIONS(1040), + [anon_sym_out_GT] = ACTIONS(1040), + [anon_sym_e_GT] = ACTIONS(1040), + [anon_sym_o_GT] = ACTIONS(1040), + [anon_sym_err_PLUSout_GT] = ACTIONS(1040), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1040), + [anon_sym_o_PLUSe_GT] = ACTIONS(1040), + [anon_sym_e_PLUSo_GT] = ACTIONS(1040), + [anon_sym_err_GT_GT] = ACTIONS(1042), + [anon_sym_out_GT_GT] = ACTIONS(1042), + [anon_sym_e_GT_GT] = ACTIONS(1042), + [anon_sym_o_GT_GT] = ACTIONS(1042), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1042), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1042), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1042), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1042), [anon_sym_POUND] = ACTIONS(247), }, [1080] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(3930), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3751), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3561), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1516), - [sym__unquoted_with_expr] = STATE(1812), - [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym__expr_parenthesized_immediate] = STATE(1828), + [sym__immediate_decimal] = STATE(1527), + [sym_val_variable] = STATE(1828), [sym_comment] = STATE(1080), - [anon_sym_true] = ACTIONS(3379), - [anon_sym_false] = ACTIONS(3379), - [anon_sym_null] = ACTIONS(3381), - [aux_sym_cmd_identifier_token38] = ACTIONS(3383), - [aux_sym_cmd_identifier_token39] = ACTIONS(3383), - [aux_sym_cmd_identifier_token40] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3389), - [aux_sym__val_number_decimal_token2] = ACTIONS(3391), - [aux_sym__val_number_decimal_token3] = ACTIONS(3393), - [aux_sym__val_number_decimal_token4] = ACTIONS(3395), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3397), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [ts_builtin_sym_end] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [anon_sym_null] = ACTIONS(1493), + [aux_sym_cmd_identifier_token38] = ACTIONS(1493), + [aux_sym_cmd_identifier_token39] = ACTIONS(1493), + [aux_sym_cmd_identifier_token40] = ACTIONS(1493), + [sym__newline] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1493), + [anon_sym_err_GT_PIPE] = ACTIONS(1493), + [anon_sym_out_GT_PIPE] = ACTIONS(1493), + [anon_sym_e_GT_PIPE] = ACTIONS(1493), + [anon_sym_o_GT_PIPE] = ACTIONS(1493), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1493), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1493), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1493), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_DOLLAR] = ACTIONS(3934), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_DASH] = ACTIONS(1479), + [aux_sym_ctrl_match_token1] = ACTIONS(1493), + [anon_sym_DOT_DOT] = ACTIONS(1479), + [anon_sym_LPAREN2] = ACTIONS(3936), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT] = ACTIONS(1493), + [aux_sym__immediate_decimal_token1] = ACTIONS(3938), + [aux_sym__immediate_decimal_token3] = ACTIONS(3940), + [aux_sym__immediate_decimal_token4] = ACTIONS(3942), + [aux_sym__immediate_decimal_token5] = ACTIONS(3944), + [aux_sym__val_number_decimal_token1] = ACTIONS(1479), + [aux_sym__val_number_decimal_token2] = ACTIONS(1479), + [aux_sym__val_number_decimal_token3] = ACTIONS(1479), + [aux_sym__val_number_decimal_token4] = ACTIONS(1479), + [aux_sym__val_number_token1] = ACTIONS(1493), + [aux_sym__val_number_token2] = ACTIONS(1493), + [aux_sym__val_number_token3] = ACTIONS(1493), + [anon_sym_0b] = ACTIONS(1479), + [anon_sym_0o] = ACTIONS(1479), + [anon_sym_0x] = ACTIONS(1479), + [sym_val_date] = ACTIONS(1493), + [anon_sym_DQUOTE] = ACTIONS(1493), + [sym__str_single_quotes] = ACTIONS(1493), + [sym__str_back_ticks] = ACTIONS(1493), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1493), + [anon_sym_err_GT] = ACTIONS(1479), + [anon_sym_out_GT] = ACTIONS(1479), + [anon_sym_e_GT] = ACTIONS(1479), + [anon_sym_o_GT] = ACTIONS(1479), + [anon_sym_err_PLUSout_GT] = ACTIONS(1479), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1479), + [anon_sym_o_PLUSe_GT] = ACTIONS(1479), + [anon_sym_e_PLUSo_GT] = ACTIONS(1479), + [anon_sym_err_GT_GT] = ACTIONS(1493), + [anon_sym_out_GT_GT] = ACTIONS(1493), + [anon_sym_e_GT_GT] = ACTIONS(1493), + [anon_sym_o_GT_GT] = ACTIONS(1493), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1493), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1493), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1493), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1493), + [aux_sym_unquoted_token1] = ACTIONS(1479), + [aux_sym_unquoted_token2] = ACTIONS(1495), [anon_sym_POUND] = ACTIONS(247), }, [1081] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(3931), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3751), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3561), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1536), - [sym__unquoted_with_expr] = STATE(1794), - [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym__val_range] = STATE(7633), + [sym__value] = STATE(5478), + [sym_val_nothing] = STATE(3939), + [sym_val_bool] = STATE(5440), + [sym_val_variable] = STATE(3939), + [sym_val_number] = STATE(3939), + [sym__val_number_decimal] = STATE(4836), + [sym__val_number] = STATE(3437), + [sym_val_duration] = STATE(3939), + [sym_val_filesize] = STATE(3939), + [sym_val_binary] = STATE(3939), + [sym_val_string] = STATE(3939), + [sym__str_double_quotes] = STATE(2643), + [sym_val_interpolated] = STATE(3939), + [sym__inter_single_quotes] = STATE(3938), + [sym__inter_double_quotes] = STATE(3966), + [sym_val_list] = STATE(3939), + [sym_val_record] = STATE(3939), + [sym_val_table] = STATE(3939), + [sym_val_closure] = STATE(3939), + [sym_unquoted] = STATE(5479), + [sym__unquoted_anonymous_prefix] = STATE(7531), [sym_comment] = STATE(1081), - [anon_sym_true] = ACTIONS(3379), - [anon_sym_false] = ACTIONS(3379), - [anon_sym_null] = ACTIONS(3381), - [aux_sym_cmd_identifier_token38] = ACTIONS(3383), - [aux_sym_cmd_identifier_token39] = ACTIONS(3383), - [aux_sym_cmd_identifier_token40] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3389), - [aux_sym__val_number_decimal_token2] = ACTIONS(3391), - [aux_sym__val_number_decimal_token3] = ACTIONS(3393), - [aux_sym__val_number_decimal_token4] = ACTIONS(3395), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3397), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_true] = ACTIONS(3983), + [anon_sym_false] = ACTIONS(3983), + [anon_sym_null] = ACTIONS(3985), + [aux_sym_cmd_identifier_token38] = ACTIONS(3987), + [aux_sym_cmd_identifier_token39] = ACTIONS(3987), + [aux_sym_cmd_identifier_token40] = ACTIONS(3987), + [anon_sym_LBRACK] = ACTIONS(3381), + [anon_sym_LPAREN] = ACTIONS(3989), + [anon_sym_DOLLAR] = ACTIONS(3991), + [aux_sym_ctrl_match_token1] = ACTIONS(3389), + [anon_sym_DOT_DOT] = ACTIONS(3993), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3995), + [anon_sym_DOT_DOT_LT] = ACTIONS(3995), + [aux_sym__val_number_decimal_token1] = ACTIONS(3997), + [aux_sym__val_number_decimal_token2] = ACTIONS(3999), + [aux_sym__val_number_decimal_token3] = ACTIONS(4001), + [aux_sym__val_number_decimal_token4] = ACTIONS(4003), + [aux_sym__val_number_token1] = ACTIONS(3405), + [aux_sym__val_number_token2] = ACTIONS(3405), + [aux_sym__val_number_token3] = ACTIONS(3405), + [anon_sym_0b] = ACTIONS(3407), + [anon_sym_0o] = ACTIONS(3409), + [anon_sym_0x] = ACTIONS(3409), + [sym_val_date] = ACTIONS(4005), + [anon_sym_DQUOTE] = ACTIONS(3413), + [sym__str_single_quotes] = ACTIONS(3415), + [sym__str_back_ticks] = ACTIONS(3415), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3417), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3421), [anon_sym_POUND] = ACTIONS(247), }, [1082] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(3932), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3751), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3561), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1545), - [sym__unquoted_with_expr] = STATE(1716), - [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym__expr_parenthesized_immediate] = STATE(1826), + [sym__immediate_decimal] = STATE(1827), + [sym_val_variable] = STATE(1826), [sym_comment] = STATE(1082), - [anon_sym_true] = ACTIONS(3379), - [anon_sym_false] = ACTIONS(3379), - [anon_sym_null] = ACTIONS(3381), - [aux_sym_cmd_identifier_token38] = ACTIONS(3383), - [aux_sym_cmd_identifier_token39] = ACTIONS(3383), - [aux_sym_cmd_identifier_token40] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3389), - [aux_sym__val_number_decimal_token2] = ACTIONS(3391), - [aux_sym__val_number_decimal_token3] = ACTIONS(3393), - [aux_sym__val_number_decimal_token4] = ACTIONS(3395), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3397), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [ts_builtin_sym_end] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(1515), + [anon_sym_false] = ACTIONS(1515), + [anon_sym_null] = ACTIONS(1515), + [aux_sym_cmd_identifier_token38] = ACTIONS(1515), + [aux_sym_cmd_identifier_token39] = ACTIONS(1515), + [aux_sym_cmd_identifier_token40] = ACTIONS(1515), + [sym__newline] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_err_GT_PIPE] = ACTIONS(1515), + [anon_sym_out_GT_PIPE] = ACTIONS(1515), + [anon_sym_e_GT_PIPE] = ACTIONS(1515), + [anon_sym_o_GT_PIPE] = ACTIONS(1515), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1515), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1515), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1515), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1515), + [anon_sym_LPAREN] = ACTIONS(1505), + [anon_sym_DOLLAR] = ACTIONS(3934), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_DASH] = ACTIONS(1505), + [aux_sym_ctrl_match_token1] = ACTIONS(1515), + [anon_sym_DOT_DOT] = ACTIONS(1505), + [anon_sym_LPAREN2] = ACTIONS(3936), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [aux_sym__immediate_decimal_token1] = ACTIONS(4007), + [aux_sym__immediate_decimal_token3] = ACTIONS(4009), + [aux_sym__immediate_decimal_token4] = ACTIONS(4011), + [aux_sym__immediate_decimal_token5] = ACTIONS(4013), + [aux_sym__val_number_decimal_token1] = ACTIONS(1505), + [aux_sym__val_number_decimal_token2] = ACTIONS(1505), + [aux_sym__val_number_decimal_token3] = ACTIONS(1505), + [aux_sym__val_number_decimal_token4] = ACTIONS(1505), + [aux_sym__val_number_token1] = ACTIONS(1515), + [aux_sym__val_number_token2] = ACTIONS(1515), + [aux_sym__val_number_token3] = ACTIONS(1515), + [anon_sym_0b] = ACTIONS(1505), + [anon_sym_0o] = ACTIONS(1505), + [anon_sym_0x] = ACTIONS(1505), + [sym_val_date] = ACTIONS(1515), + [anon_sym_DQUOTE] = ACTIONS(1515), + [sym__str_single_quotes] = ACTIONS(1515), + [sym__str_back_ticks] = ACTIONS(1515), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1515), + [anon_sym_err_GT] = ACTIONS(1505), + [anon_sym_out_GT] = ACTIONS(1505), + [anon_sym_e_GT] = ACTIONS(1505), + [anon_sym_o_GT] = ACTIONS(1505), + [anon_sym_err_PLUSout_GT] = ACTIONS(1505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1505), + [anon_sym_o_PLUSe_GT] = ACTIONS(1505), + [anon_sym_e_PLUSo_GT] = ACTIONS(1505), + [anon_sym_err_GT_GT] = ACTIONS(1515), + [anon_sym_out_GT_GT] = ACTIONS(1515), + [anon_sym_e_GT_GT] = ACTIONS(1515), + [anon_sym_o_GT_GT] = ACTIONS(1515), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1515), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1515), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1515), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1515), + [aux_sym_unquoted_token1] = ACTIONS(1505), [anon_sym_POUND] = ACTIONS(247), }, [1083] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(1748), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3892), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3617), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1582), - [sym__unquoted_with_expr] = STATE(1749), - [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1083), - [anon_sym_true] = ACTIONS(3399), - [anon_sym_false] = ACTIONS(3399), - [anon_sym_null] = ACTIONS(3401), - [aux_sym_cmd_identifier_token38] = ACTIONS(3403), - [aux_sym_cmd_identifier_token39] = ACTIONS(3403), - [aux_sym_cmd_identifier_token40] = ACTIONS(3403), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3405), - [aux_sym__val_number_decimal_token2] = ACTIONS(3407), - [aux_sym__val_number_decimal_token3] = ACTIONS(3409), - [aux_sym__val_number_decimal_token4] = ACTIONS(3411), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3413), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [ts_builtin_sym_end] = ACTIONS(1499), + [anon_sym_true] = ACTIONS(1499), + [anon_sym_false] = ACTIONS(1499), + [anon_sym_null] = ACTIONS(1499), + [aux_sym_cmd_identifier_token38] = ACTIONS(1499), + [aux_sym_cmd_identifier_token39] = ACTIONS(1499), + [aux_sym_cmd_identifier_token40] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1497), + [anon_sym_DOLLAR] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1497), + [aux_sym_ctrl_match_token1] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1497), + [anon_sym_LPAREN2] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), + [anon_sym_DOT_DOT_LT] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), + [aux_sym__immediate_decimal_token2] = ACTIONS(3979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1499), + [aux_sym__val_number_decimal_token4] = ACTIONS(1499), + [aux_sym__val_number_token1] = ACTIONS(1499), + [aux_sym__val_number_token2] = ACTIONS(1499), + [aux_sym__val_number_token3] = ACTIONS(1499), + [anon_sym_0b] = ACTIONS(1497), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1499), + [anon_sym_0o] = ACTIONS(1497), + [anon_sym_0x] = ACTIONS(1497), + [sym_val_date] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1499), + [sym__str_single_quotes] = ACTIONS(1499), + [sym__str_back_ticks] = ACTIONS(1499), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1499), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1499), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), + [aux_sym_unquoted_token1] = ACTIONS(1497), + [aux_sym_unquoted_token2] = ACTIONS(1497), [anon_sym_POUND] = ACTIONS(247), }, [1084] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(4020), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3892), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3617), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1588), - [sym__unquoted_with_expr] = STATE(1772), - [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1084), - [anon_sym_true] = ACTIONS(3399), - [anon_sym_false] = ACTIONS(3399), - [anon_sym_null] = ACTIONS(3401), - [aux_sym_cmd_identifier_token38] = ACTIONS(3403), - [aux_sym_cmd_identifier_token39] = ACTIONS(3403), - [aux_sym_cmd_identifier_token40] = ACTIONS(3403), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3405), - [aux_sym__val_number_decimal_token2] = ACTIONS(3407), - [aux_sym__val_number_decimal_token3] = ACTIONS(3409), - [aux_sym__val_number_decimal_token4] = ACTIONS(3411), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3413), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [ts_builtin_sym_end] = ACTIONS(1567), + [anon_sym_true] = ACTIONS(1567), + [anon_sym_false] = ACTIONS(1567), + [anon_sym_null] = ACTIONS(1567), + [aux_sym_cmd_identifier_token38] = ACTIONS(1567), + [aux_sym_cmd_identifier_token39] = ACTIONS(1567), + [aux_sym_cmd_identifier_token40] = ACTIONS(1567), + [sym__newline] = ACTIONS(1567), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_err_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_GT_PIPE] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), + [anon_sym_LBRACK] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_DOLLAR] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1565), + [aux_sym_ctrl_match_token1] = ACTIONS(1567), + [anon_sym_DOT_DOT] = ACTIONS(1565), + [anon_sym_LPAREN2] = ACTIONS(1567), + [anon_sym_DOT_DOT2] = ACTIONS(1565), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1565), + [anon_sym_DOT_DOT_LT] = ACTIONS(1565), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), + [aux_sym__immediate_decimal_token2] = ACTIONS(4015), + [aux_sym__val_number_decimal_token1] = ACTIONS(1565), + [aux_sym__val_number_decimal_token2] = ACTIONS(1567), + [aux_sym__val_number_decimal_token3] = ACTIONS(1567), + [aux_sym__val_number_decimal_token4] = ACTIONS(1567), + [aux_sym__val_number_token1] = ACTIONS(1567), + [aux_sym__val_number_token2] = ACTIONS(1567), + [aux_sym__val_number_token3] = ACTIONS(1567), + [anon_sym_0b] = ACTIONS(1565), + [sym_filesize_unit] = ACTIONS(1567), + [sym_duration_unit] = ACTIONS(1567), + [anon_sym_0o] = ACTIONS(1565), + [anon_sym_0x] = ACTIONS(1565), + [sym_val_date] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(1567), + [sym__str_single_quotes] = ACTIONS(1567), + [sym__str_back_ticks] = ACTIONS(1567), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1567), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1567), + [anon_sym_err_GT] = ACTIONS(1565), + [anon_sym_out_GT] = ACTIONS(1565), + [anon_sym_e_GT] = ACTIONS(1565), + [anon_sym_o_GT] = ACTIONS(1565), + [anon_sym_err_PLUSout_GT] = ACTIONS(1565), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), + [anon_sym_o_PLUSe_GT] = ACTIONS(1565), + [anon_sym_e_PLUSo_GT] = ACTIONS(1565), + [anon_sym_err_GT_GT] = ACTIONS(1567), + [anon_sym_out_GT_GT] = ACTIONS(1567), + [anon_sym_e_GT_GT] = ACTIONS(1567), + [anon_sym_o_GT_GT] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), + [aux_sym_unquoted_token1] = ACTIONS(1565), + [aux_sym_unquoted_token2] = ACTIONS(1565), [anon_sym_POUND] = ACTIONS(247), }, [1085] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(4021), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3892), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3617), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1596), - [sym__unquoted_with_expr] = STATE(1773), - [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1085), - [anon_sym_true] = ACTIONS(3399), - [anon_sym_false] = ACTIONS(3399), - [anon_sym_null] = ACTIONS(3401), - [aux_sym_cmd_identifier_token38] = ACTIONS(3403), - [aux_sym_cmd_identifier_token39] = ACTIONS(3403), - [aux_sym_cmd_identifier_token40] = ACTIONS(3403), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3405), - [aux_sym__val_number_decimal_token2] = ACTIONS(3407), - [aux_sym__val_number_decimal_token3] = ACTIONS(3409), - [aux_sym__val_number_decimal_token4] = ACTIONS(3411), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3413), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_EQ] = ACTIONS(1040), + [anon_sym_PLUS_EQ] = ACTIONS(1042), + [anon_sym_DASH_EQ] = ACTIONS(1042), + [anon_sym_STAR_EQ] = ACTIONS(1042), + [anon_sym_SLASH_EQ] = ACTIONS(1042), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1042), + [sym__newline] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1042), + [anon_sym_PIPE] = ACTIONS(1042), + [anon_sym_err_GT_PIPE] = ACTIONS(1042), + [anon_sym_out_GT_PIPE] = ACTIONS(1042), + [anon_sym_e_GT_PIPE] = ACTIONS(1042), + [anon_sym_o_GT_PIPE] = ACTIONS(1042), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1042), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1042), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1042), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1042), + [anon_sym_RPAREN] = ACTIONS(1042), + [anon_sym_RBRACE] = ACTIONS(1042), + [anon_sym_QMARK2] = ACTIONS(1042), + [aux_sym_expr_binary_token1] = ACTIONS(1042), + [aux_sym_expr_binary_token2] = ACTIONS(1042), + [aux_sym_expr_binary_token3] = ACTIONS(1042), + [aux_sym_expr_binary_token4] = ACTIONS(1042), + [aux_sym_expr_binary_token5] = ACTIONS(1042), + [aux_sym_expr_binary_token6] = ACTIONS(1042), + [aux_sym_expr_binary_token7] = ACTIONS(1042), + [aux_sym_expr_binary_token8] = ACTIONS(1042), + [aux_sym_expr_binary_token9] = ACTIONS(1042), + [aux_sym_expr_binary_token10] = ACTIONS(1042), + [aux_sym_expr_binary_token11] = ACTIONS(1042), + [aux_sym_expr_binary_token12] = ACTIONS(1042), + [aux_sym_expr_binary_token13] = ACTIONS(1042), + [aux_sym_expr_binary_token14] = ACTIONS(1042), + [aux_sym_expr_binary_token15] = ACTIONS(1042), + [aux_sym_expr_binary_token16] = ACTIONS(1042), + [aux_sym_expr_binary_token17] = ACTIONS(1042), + [aux_sym_expr_binary_token18] = ACTIONS(1042), + [aux_sym_expr_binary_token19] = ACTIONS(1042), + [aux_sym_expr_binary_token20] = ACTIONS(1042), + [aux_sym_expr_binary_token21] = ACTIONS(1042), + [aux_sym_expr_binary_token22] = ACTIONS(1042), + [aux_sym_expr_binary_token23] = ACTIONS(1042), + [aux_sym_expr_binary_token24] = ACTIONS(1042), + [aux_sym_expr_binary_token25] = ACTIONS(1042), + [aux_sym_expr_binary_token26] = ACTIONS(1042), + [aux_sym_expr_binary_token27] = ACTIONS(1042), + [aux_sym_expr_binary_token28] = ACTIONS(1042), + [anon_sym_DOT_DOT2] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1042), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1042), + [anon_sym_err_GT] = ACTIONS(1040), + [anon_sym_out_GT] = ACTIONS(1040), + [anon_sym_e_GT] = ACTIONS(1040), + [anon_sym_o_GT] = ACTIONS(1040), + [anon_sym_err_PLUSout_GT] = ACTIONS(1040), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1040), + [anon_sym_o_PLUSe_GT] = ACTIONS(1040), + [anon_sym_e_PLUSo_GT] = ACTIONS(1040), + [anon_sym_err_GT_GT] = ACTIONS(1042), + [anon_sym_out_GT_GT] = ACTIONS(1042), + [anon_sym_e_GT_GT] = ACTIONS(1042), + [anon_sym_o_GT_GT] = ACTIONS(1042), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1042), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1042), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1042), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1042), [anon_sym_POUND] = ACTIONS(247), }, [1086] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(4022), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3892), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3617), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1535), - [sym__unquoted_with_expr] = STATE(1777), - [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1086), - [anon_sym_true] = ACTIONS(3399), - [anon_sym_false] = ACTIONS(3399), - [anon_sym_null] = ACTIONS(3401), - [aux_sym_cmd_identifier_token38] = ACTIONS(3403), - [aux_sym_cmd_identifier_token39] = ACTIONS(3403), - [aux_sym_cmd_identifier_token40] = ACTIONS(3403), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3405), - [aux_sym__val_number_decimal_token2] = ACTIONS(3407), - [aux_sym__val_number_decimal_token3] = ACTIONS(3409), - [aux_sym__val_number_decimal_token4] = ACTIONS(3411), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3413), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_EQ] = ACTIONS(1044), + [anon_sym_PLUS_EQ] = ACTIONS(1046), + [anon_sym_DASH_EQ] = ACTIONS(1046), + [anon_sym_STAR_EQ] = ACTIONS(1046), + [anon_sym_SLASH_EQ] = ACTIONS(1046), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1046), + [sym__newline] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_err_GT_PIPE] = ACTIONS(1046), + [anon_sym_out_GT_PIPE] = ACTIONS(1046), + [anon_sym_e_GT_PIPE] = ACTIONS(1046), + [anon_sym_o_GT_PIPE] = ACTIONS(1046), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1046), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1046), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1046), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1046), + [anon_sym_RPAREN] = ACTIONS(1046), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_QMARK2] = ACTIONS(1046), + [aux_sym_expr_binary_token1] = ACTIONS(1046), + [aux_sym_expr_binary_token2] = ACTIONS(1046), + [aux_sym_expr_binary_token3] = ACTIONS(1046), + [aux_sym_expr_binary_token4] = ACTIONS(1046), + [aux_sym_expr_binary_token5] = ACTIONS(1046), + [aux_sym_expr_binary_token6] = ACTIONS(1046), + [aux_sym_expr_binary_token7] = ACTIONS(1046), + [aux_sym_expr_binary_token8] = ACTIONS(1046), + [aux_sym_expr_binary_token9] = ACTIONS(1046), + [aux_sym_expr_binary_token10] = ACTIONS(1046), + [aux_sym_expr_binary_token11] = ACTIONS(1046), + [aux_sym_expr_binary_token12] = ACTIONS(1046), + [aux_sym_expr_binary_token13] = ACTIONS(1046), + [aux_sym_expr_binary_token14] = ACTIONS(1046), + [aux_sym_expr_binary_token15] = ACTIONS(1046), + [aux_sym_expr_binary_token16] = ACTIONS(1046), + [aux_sym_expr_binary_token17] = ACTIONS(1046), + [aux_sym_expr_binary_token18] = ACTIONS(1046), + [aux_sym_expr_binary_token19] = ACTIONS(1046), + [aux_sym_expr_binary_token20] = ACTIONS(1046), + [aux_sym_expr_binary_token21] = ACTIONS(1046), + [aux_sym_expr_binary_token22] = ACTIONS(1046), + [aux_sym_expr_binary_token23] = ACTIONS(1046), + [aux_sym_expr_binary_token24] = ACTIONS(1046), + [aux_sym_expr_binary_token25] = ACTIONS(1046), + [aux_sym_expr_binary_token26] = ACTIONS(1046), + [aux_sym_expr_binary_token27] = ACTIONS(1046), + [aux_sym_expr_binary_token28] = ACTIONS(1046), + [anon_sym_DOT_DOT2] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1044), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1046), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1046), + [anon_sym_err_GT] = ACTIONS(1044), + [anon_sym_out_GT] = ACTIONS(1044), + [anon_sym_e_GT] = ACTIONS(1044), + [anon_sym_o_GT] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT] = ACTIONS(1044), + [anon_sym_err_GT_GT] = ACTIONS(1046), + [anon_sym_out_GT_GT] = ACTIONS(1046), + [anon_sym_e_GT_GT] = ACTIONS(1046), + [anon_sym_o_GT_GT] = ACTIONS(1046), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1046), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1046), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1046), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1046), [anon_sym_POUND] = ACTIONS(247), }, [1087] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(4023), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3892), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3617), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1571), - [sym__unquoted_with_expr] = STATE(1784), - [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1087), - [anon_sym_true] = ACTIONS(3399), - [anon_sym_false] = ACTIONS(3399), - [anon_sym_null] = ACTIONS(3401), - [aux_sym_cmd_identifier_token38] = ACTIONS(3403), - [aux_sym_cmd_identifier_token39] = ACTIONS(3403), - [aux_sym_cmd_identifier_token40] = ACTIONS(3403), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3405), - [aux_sym__val_number_decimal_token2] = ACTIONS(3407), - [aux_sym__val_number_decimal_token3] = ACTIONS(3409), - [aux_sym__val_number_decimal_token4] = ACTIONS(3411), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3413), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_PLUS_EQ] = ACTIONS(1050), + [anon_sym_DASH_EQ] = ACTIONS(1050), + [anon_sym_STAR_EQ] = ACTIONS(1050), + [anon_sym_SLASH_EQ] = ACTIONS(1050), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1050), + [sym__newline] = ACTIONS(1050), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_err_GT_PIPE] = ACTIONS(1050), + [anon_sym_out_GT_PIPE] = ACTIONS(1050), + [anon_sym_e_GT_PIPE] = ACTIONS(1050), + [anon_sym_o_GT_PIPE] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1050), + [anon_sym_RPAREN] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(1050), + [anon_sym_QMARK2] = ACTIONS(1050), + [aux_sym_expr_binary_token1] = ACTIONS(1050), + [aux_sym_expr_binary_token2] = ACTIONS(1050), + [aux_sym_expr_binary_token3] = ACTIONS(1050), + [aux_sym_expr_binary_token4] = ACTIONS(1050), + [aux_sym_expr_binary_token5] = ACTIONS(1050), + [aux_sym_expr_binary_token6] = ACTIONS(1050), + [aux_sym_expr_binary_token7] = ACTIONS(1050), + [aux_sym_expr_binary_token8] = ACTIONS(1050), + [aux_sym_expr_binary_token9] = ACTIONS(1050), + [aux_sym_expr_binary_token10] = ACTIONS(1050), + [aux_sym_expr_binary_token11] = ACTIONS(1050), + [aux_sym_expr_binary_token12] = ACTIONS(1050), + [aux_sym_expr_binary_token13] = ACTIONS(1050), + [aux_sym_expr_binary_token14] = ACTIONS(1050), + [aux_sym_expr_binary_token15] = ACTIONS(1050), + [aux_sym_expr_binary_token16] = ACTIONS(1050), + [aux_sym_expr_binary_token17] = ACTIONS(1050), + [aux_sym_expr_binary_token18] = ACTIONS(1050), + [aux_sym_expr_binary_token19] = ACTIONS(1050), + [aux_sym_expr_binary_token20] = ACTIONS(1050), + [aux_sym_expr_binary_token21] = ACTIONS(1050), + [aux_sym_expr_binary_token22] = ACTIONS(1050), + [aux_sym_expr_binary_token23] = ACTIONS(1050), + [aux_sym_expr_binary_token24] = ACTIONS(1050), + [aux_sym_expr_binary_token25] = ACTIONS(1050), + [aux_sym_expr_binary_token26] = ACTIONS(1050), + [aux_sym_expr_binary_token27] = ACTIONS(1050), + [aux_sym_expr_binary_token28] = ACTIONS(1050), + [anon_sym_DOT_DOT2] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1050), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1050), + [anon_sym_err_GT] = ACTIONS(1048), + [anon_sym_out_GT] = ACTIONS(1048), + [anon_sym_e_GT] = ACTIONS(1048), + [anon_sym_o_GT] = ACTIONS(1048), + [anon_sym_err_PLUSout_GT] = ACTIONS(1048), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1048), + [anon_sym_o_PLUSe_GT] = ACTIONS(1048), + [anon_sym_e_PLUSo_GT] = ACTIONS(1048), + [anon_sym_err_GT_GT] = ACTIONS(1050), + [anon_sym_out_GT_GT] = ACTIONS(1050), + [anon_sym_e_GT_GT] = ACTIONS(1050), + [anon_sym_o_GT_GT] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1050), [anon_sym_POUND] = ACTIONS(247), }, [1088] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(4024), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3892), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3617), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1537), - [sym__unquoted_with_expr] = STATE(1803), - [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1088), - [anon_sym_true] = ACTIONS(3399), - [anon_sym_false] = ACTIONS(3399), - [anon_sym_null] = ACTIONS(3401), - [aux_sym_cmd_identifier_token38] = ACTIONS(3403), - [aux_sym_cmd_identifier_token39] = ACTIONS(3403), - [aux_sym_cmd_identifier_token40] = ACTIONS(3403), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3405), - [aux_sym__val_number_decimal_token2] = ACTIONS(3407), - [aux_sym__val_number_decimal_token3] = ACTIONS(3409), - [aux_sym__val_number_decimal_token4] = ACTIONS(3411), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3413), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_EQ] = ACTIONS(1034), + [anon_sym_PLUS_EQ] = ACTIONS(1036), + [anon_sym_DASH_EQ] = ACTIONS(1036), + [anon_sym_STAR_EQ] = ACTIONS(1036), + [anon_sym_SLASH_EQ] = ACTIONS(1036), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1036), + [sym__newline] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1036), + [anon_sym_PIPE] = ACTIONS(1036), + [anon_sym_err_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_GT_PIPE] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), + [anon_sym_RPAREN] = ACTIONS(1036), + [aux_sym_ctrl_match_token1] = ACTIONS(1036), + [anon_sym_QMARK2] = ACTIONS(4017), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1036), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1036), + [anon_sym_DOT_DOT2] = ACTIONS(1034), + [anon_sym_DOT] = ACTIONS(1034), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1036), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1036), + [anon_sym_err_GT] = ACTIONS(1034), + [anon_sym_out_GT] = ACTIONS(1034), + [anon_sym_e_GT] = ACTIONS(1034), + [anon_sym_o_GT] = ACTIONS(1034), + [anon_sym_err_PLUSout_GT] = ACTIONS(1034), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), + [anon_sym_o_PLUSe_GT] = ACTIONS(1034), + [anon_sym_e_PLUSo_GT] = ACTIONS(1034), + [anon_sym_err_GT_GT] = ACTIONS(1036), + [anon_sym_out_GT_GT] = ACTIONS(1036), + [anon_sym_e_GT_GT] = ACTIONS(1036), + [anon_sym_o_GT_GT] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), [anon_sym_POUND] = ACTIONS(247), }, [1089] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(4025), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3892), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3617), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1595), - [sym__unquoted_with_expr] = STATE(1805), - [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1089), - [anon_sym_true] = ACTIONS(3399), - [anon_sym_false] = ACTIONS(3399), - [anon_sym_null] = ACTIONS(3401), - [aux_sym_cmd_identifier_token38] = ACTIONS(3403), - [aux_sym_cmd_identifier_token39] = ACTIONS(3403), - [aux_sym_cmd_identifier_token40] = ACTIONS(3403), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3405), - [aux_sym__val_number_decimal_token2] = ACTIONS(3407), - [aux_sym__val_number_decimal_token3] = ACTIONS(3409), - [aux_sym__val_number_decimal_token4] = ACTIONS(3411), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3413), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_EQ] = ACTIONS(1028), + [anon_sym_PLUS_EQ] = ACTIONS(1030), + [anon_sym_DASH_EQ] = ACTIONS(1030), + [anon_sym_STAR_EQ] = ACTIONS(1030), + [anon_sym_SLASH_EQ] = ACTIONS(1030), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1030), + [sym__newline] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_err_GT_PIPE] = ACTIONS(1030), + [anon_sym_out_GT_PIPE] = ACTIONS(1030), + [anon_sym_e_GT_PIPE] = ACTIONS(1030), + [anon_sym_o_GT_PIPE] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1030), + [anon_sym_RPAREN] = ACTIONS(1030), + [aux_sym_ctrl_match_token1] = ACTIONS(1030), + [anon_sym_QMARK2] = ACTIONS(4019), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1030), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1030), + [anon_sym_DOT_DOT2] = ACTIONS(1028), + [anon_sym_DOT] = ACTIONS(1028), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1030), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1030), + [anon_sym_err_GT] = ACTIONS(1028), + [anon_sym_out_GT] = ACTIONS(1028), + [anon_sym_e_GT] = ACTIONS(1028), + [anon_sym_o_GT] = ACTIONS(1028), + [anon_sym_err_PLUSout_GT] = ACTIONS(1028), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1028), + [anon_sym_o_PLUSe_GT] = ACTIONS(1028), + [anon_sym_e_PLUSo_GT] = ACTIONS(1028), + [anon_sym_err_GT_GT] = ACTIONS(1030), + [anon_sym_out_GT_GT] = ACTIONS(1030), + [anon_sym_e_GT_GT] = ACTIONS(1030), + [anon_sym_o_GT_GT] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1030), [anon_sym_POUND] = ACTIONS(247), }, [1090] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(4026), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3892), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3617), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1568), - [sym__unquoted_with_expr] = STATE(1806), - [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym__expr_parenthesized_immediate] = STATE(1913), + [sym__immediate_decimal] = STATE(1918), + [sym_val_variable] = STATE(1913), [sym_comment] = STATE(1090), - [anon_sym_true] = ACTIONS(3399), - [anon_sym_false] = ACTIONS(3399), - [anon_sym_null] = ACTIONS(3401), - [aux_sym_cmd_identifier_token38] = ACTIONS(3403), - [aux_sym_cmd_identifier_token39] = ACTIONS(3403), - [aux_sym_cmd_identifier_token40] = ACTIONS(3403), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3405), - [aux_sym__val_number_decimal_token2] = ACTIONS(3407), - [aux_sym__val_number_decimal_token3] = ACTIONS(3409), - [aux_sym__val_number_decimal_token4] = ACTIONS(3411), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3413), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [ts_builtin_sym_end] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1619), + [anon_sym_false] = ACTIONS(1619), + [anon_sym_null] = ACTIONS(1619), + [aux_sym_cmd_identifier_token38] = ACTIONS(1619), + [aux_sym_cmd_identifier_token39] = ACTIONS(1619), + [aux_sym_cmd_identifier_token40] = ACTIONS(1619), + [sym__newline] = ACTIONS(1619), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_PIPE] = ACTIONS(1619), + [anon_sym_err_GT_PIPE] = ACTIONS(1619), + [anon_sym_out_GT_PIPE] = ACTIONS(1619), + [anon_sym_e_GT_PIPE] = ACTIONS(1619), + [anon_sym_o_GT_PIPE] = ACTIONS(1619), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1619), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1619), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1619), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1619), + [anon_sym_LBRACK] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(1617), + [anon_sym_DOLLAR] = ACTIONS(3934), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_DASH] = ACTIONS(1617), + [aux_sym_ctrl_match_token1] = ACTIONS(1619), + [anon_sym_DOT_DOT] = ACTIONS(1617), + [anon_sym_LPAREN2] = ACTIONS(3936), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1619), + [anon_sym_DOT_DOT_LT] = ACTIONS(1619), + [aux_sym__immediate_decimal_token1] = ACTIONS(4007), + [aux_sym__immediate_decimal_token3] = ACTIONS(4009), + [aux_sym__immediate_decimal_token4] = ACTIONS(4011), + [aux_sym__immediate_decimal_token5] = ACTIONS(4013), + [aux_sym__val_number_decimal_token1] = ACTIONS(1617), + [aux_sym__val_number_decimal_token2] = ACTIONS(1617), + [aux_sym__val_number_decimal_token3] = ACTIONS(1617), + [aux_sym__val_number_decimal_token4] = ACTIONS(1617), + [aux_sym__val_number_token1] = ACTIONS(1619), + [aux_sym__val_number_token2] = ACTIONS(1619), + [aux_sym__val_number_token3] = ACTIONS(1619), + [anon_sym_0b] = ACTIONS(1617), + [anon_sym_0o] = ACTIONS(1617), + [anon_sym_0x] = ACTIONS(1617), + [sym_val_date] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1619), + [sym__str_single_quotes] = ACTIONS(1619), + [sym__str_back_ticks] = ACTIONS(1619), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1619), + [anon_sym_err_GT] = ACTIONS(1617), + [anon_sym_out_GT] = ACTIONS(1617), + [anon_sym_e_GT] = ACTIONS(1617), + [anon_sym_o_GT] = ACTIONS(1617), + [anon_sym_err_PLUSout_GT] = ACTIONS(1617), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1617), + [anon_sym_o_PLUSe_GT] = ACTIONS(1617), + [anon_sym_e_PLUSo_GT] = ACTIONS(1617), + [anon_sym_err_GT_GT] = ACTIONS(1619), + [anon_sym_out_GT_GT] = ACTIONS(1619), + [anon_sym_e_GT_GT] = ACTIONS(1619), + [anon_sym_o_GT_GT] = ACTIONS(1619), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1619), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1619), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1619), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1619), + [aux_sym_unquoted_token1] = ACTIONS(1617), [anon_sym_POUND] = ACTIONS(247), }, [1091] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(4017), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3892), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3617), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1532), - [sym__unquoted_with_expr] = STATE(1808), - [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym_cell_path] = STATE(1359), + [sym_path] = STATE(1252), [sym_comment] = STATE(1091), - [anon_sym_true] = ACTIONS(3399), - [anon_sym_false] = ACTIONS(3399), - [anon_sym_null] = ACTIONS(3401), - [aux_sym_cmd_identifier_token38] = ACTIONS(3403), - [aux_sym_cmd_identifier_token39] = ACTIONS(3403), - [aux_sym_cmd_identifier_token40] = ACTIONS(3403), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3405), - [aux_sym__val_number_decimal_token2] = ACTIONS(3407), - [aux_sym__val_number_decimal_token3] = ACTIONS(3409), - [aux_sym__val_number_decimal_token4] = ACTIONS(3411), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3413), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [aux_sym_cell_path_repeat1] = STATE(1184), + [anon_sym_true] = ACTIONS(1688), + [anon_sym_false] = ACTIONS(1688), + [anon_sym_null] = ACTIONS(1688), + [aux_sym_cmd_identifier_token38] = ACTIONS(1688), + [aux_sym_cmd_identifier_token39] = ACTIONS(1688), + [aux_sym_cmd_identifier_token40] = ACTIONS(1688), + [sym__newline] = ACTIONS(1688), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_err_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_GT_PIPE] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_LPAREN] = ACTIONS(1688), + [anon_sym_RPAREN] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1688), + [anon_sym_DASH] = ACTIONS(1686), + [aux_sym_ctrl_match_token1] = ACTIONS(1688), + [anon_sym_RBRACE] = ACTIONS(1688), + [anon_sym_DOT_DOT] = ACTIONS(1686), + [anon_sym_DOT_DOT2] = ACTIONS(1686), + [anon_sym_DOT] = ACTIONS(4021), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1686), + [anon_sym_DOT_DOT_LT] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1688), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1688), + [aux_sym__val_number_decimal_token1] = ACTIONS(1686), + [aux_sym__val_number_decimal_token2] = ACTIONS(1688), + [aux_sym__val_number_decimal_token3] = ACTIONS(1688), + [aux_sym__val_number_decimal_token4] = ACTIONS(1688), + [aux_sym__val_number_token1] = ACTIONS(1688), + [aux_sym__val_number_token2] = ACTIONS(1688), + [aux_sym__val_number_token3] = ACTIONS(1688), + [anon_sym_0b] = ACTIONS(1686), + [anon_sym_0o] = ACTIONS(1686), + [anon_sym_0x] = ACTIONS(1686), + [sym_val_date] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [sym__str_single_quotes] = ACTIONS(1688), + [sym__str_back_ticks] = ACTIONS(1688), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1688), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1688), + [anon_sym_err_GT] = ACTIONS(1686), + [anon_sym_out_GT] = ACTIONS(1686), + [anon_sym_e_GT] = ACTIONS(1686), + [anon_sym_o_GT] = ACTIONS(1686), + [anon_sym_err_PLUSout_GT] = ACTIONS(1686), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1686), + [anon_sym_o_PLUSe_GT] = ACTIONS(1686), + [anon_sym_e_PLUSo_GT] = ACTIONS(1686), + [anon_sym_err_GT_GT] = ACTIONS(1688), + [anon_sym_out_GT_GT] = ACTIONS(1688), + [anon_sym_e_GT_GT] = ACTIONS(1688), + [anon_sym_o_GT_GT] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1688), + [aux_sym_unquoted_token1] = ACTIONS(1686), [anon_sym_POUND] = ACTIONS(247), }, [1092] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(4027), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3892), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3617), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1573), - [sym__unquoted_with_expr] = STATE(1811), - [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym_cell_path] = STATE(1319), + [sym_path] = STATE(1252), [sym_comment] = STATE(1092), - [anon_sym_true] = ACTIONS(3399), - [anon_sym_false] = ACTIONS(3399), - [anon_sym_null] = ACTIONS(3401), - [aux_sym_cmd_identifier_token38] = ACTIONS(3403), - [aux_sym_cmd_identifier_token39] = ACTIONS(3403), - [aux_sym_cmd_identifier_token40] = ACTIONS(3403), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3405), - [aux_sym__val_number_decimal_token2] = ACTIONS(3407), - [aux_sym__val_number_decimal_token3] = ACTIONS(3409), - [aux_sym__val_number_decimal_token4] = ACTIONS(3411), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3413), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [aux_sym_cell_path_repeat1] = STATE(1184), + [anon_sym_true] = ACTIONS(1629), + [anon_sym_false] = ACTIONS(1629), + [anon_sym_null] = ACTIONS(1629), + [aux_sym_cmd_identifier_token38] = ACTIONS(1629), + [aux_sym_cmd_identifier_token39] = ACTIONS(1629), + [aux_sym_cmd_identifier_token40] = ACTIONS(1629), + [sym__newline] = ACTIONS(1629), + [anon_sym_SEMI] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1629), + [anon_sym_err_GT_PIPE] = ACTIONS(1629), + [anon_sym_out_GT_PIPE] = ACTIONS(1629), + [anon_sym_e_GT_PIPE] = ACTIONS(1629), + [anon_sym_o_GT_PIPE] = ACTIONS(1629), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1629), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1629), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1629), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_RPAREN] = ACTIONS(1629), + [anon_sym_DOLLAR] = ACTIONS(1625), + [anon_sym_DASH_DASH] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1625), + [aux_sym_ctrl_match_token1] = ACTIONS(1629), + [anon_sym_RBRACE] = ACTIONS(1629), + [anon_sym_DOT_DOT] = ACTIONS(1625), + [anon_sym_DOT_DOT2] = ACTIONS(1625), + [anon_sym_DOT] = ACTIONS(4021), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT] = ACTIONS(1625), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1629), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1629), + [aux_sym__val_number_decimal_token1] = ACTIONS(1625), + [aux_sym__val_number_decimal_token2] = ACTIONS(1629), + [aux_sym__val_number_decimal_token3] = ACTIONS(1629), + [aux_sym__val_number_decimal_token4] = ACTIONS(1629), + [aux_sym__val_number_token1] = ACTIONS(1629), + [aux_sym__val_number_token2] = ACTIONS(1629), + [aux_sym__val_number_token3] = ACTIONS(1629), + [anon_sym_0b] = ACTIONS(1625), + [anon_sym_0o] = ACTIONS(1625), + [anon_sym_0x] = ACTIONS(1625), + [sym_val_date] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1629), + [sym__str_single_quotes] = ACTIONS(1629), + [sym__str_back_ticks] = ACTIONS(1629), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1629), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1629), + [anon_sym_err_GT] = ACTIONS(1625), + [anon_sym_out_GT] = ACTIONS(1625), + [anon_sym_e_GT] = ACTIONS(1625), + [anon_sym_o_GT] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT] = ACTIONS(1625), + [anon_sym_err_GT_GT] = ACTIONS(1629), + [anon_sym_out_GT_GT] = ACTIONS(1629), + [anon_sym_e_GT_GT] = ACTIONS(1629), + [anon_sym_o_GT_GT] = ACTIONS(1629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1629), + [aux_sym_unquoted_token1] = ACTIONS(1625), [anon_sym_POUND] = ACTIONS(247), }, [1093] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(4028), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3892), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3617), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1516), - [sym__unquoted_with_expr] = STATE(1812), - [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym__val_range] = STATE(7772), + [sym__value] = STATE(5920), + [sym_val_nothing] = STATE(4784), + [sym_val_bool] = STATE(7097), + [sym_val_variable] = STATE(4784), + [sym_val_number] = STATE(4784), + [sym__val_number_decimal] = STATE(5410), + [sym__val_number] = STATE(4955), + [sym_val_duration] = STATE(4784), + [sym_val_filesize] = STATE(4784), + [sym_val_binary] = STATE(4784), + [sym_val_string] = STATE(4784), + [sym__str_double_quotes] = STATE(4704), + [sym_val_interpolated] = STATE(4784), + [sym__inter_single_quotes] = STATE(4879), + [sym__inter_double_quotes] = STATE(4781), + [sym_val_list] = STATE(4784), + [sym_val_record] = STATE(4784), + [sym_val_table] = STATE(4784), + [sym_val_closure] = STATE(4784), + [sym_unquoted] = STATE(5922), + [sym__unquoted_anonymous_prefix] = STATE(7683), [sym_comment] = STATE(1093), - [anon_sym_true] = ACTIONS(3399), - [anon_sym_false] = ACTIONS(3399), - [anon_sym_null] = ACTIONS(3401), - [aux_sym_cmd_identifier_token38] = ACTIONS(3403), - [aux_sym_cmd_identifier_token39] = ACTIONS(3403), - [aux_sym_cmd_identifier_token40] = ACTIONS(3403), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3405), - [aux_sym__val_number_decimal_token2] = ACTIONS(3407), - [aux_sym__val_number_decimal_token3] = ACTIONS(3409), - [aux_sym__val_number_decimal_token4] = ACTIONS(3411), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3413), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_true] = ACTIONS(4023), + [anon_sym_false] = ACTIONS(4023), + [anon_sym_null] = ACTIONS(4025), + [aux_sym_cmd_identifier_token38] = ACTIONS(4027), + [aux_sym_cmd_identifier_token39] = ACTIONS(4027), + [aux_sym_cmd_identifier_token40] = ACTIONS(4027), + [anon_sym_LBRACK] = ACTIONS(4029), + [anon_sym_LPAREN] = ACTIONS(4031), + [anon_sym_DOLLAR] = ACTIONS(4033), + [aux_sym_ctrl_match_token1] = ACTIONS(4035), + [anon_sym_DOT_DOT] = ACTIONS(4037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4039), + [anon_sym_DOT_DOT_LT] = ACTIONS(4039), + [aux_sym__val_number_decimal_token1] = ACTIONS(4041), + [aux_sym__val_number_decimal_token2] = ACTIONS(4043), + [aux_sym__val_number_decimal_token3] = ACTIONS(4045), + [aux_sym__val_number_decimal_token4] = ACTIONS(4047), + [aux_sym__val_number_token1] = ACTIONS(3539), + [aux_sym__val_number_token2] = ACTIONS(3539), + [aux_sym__val_number_token3] = ACTIONS(3539), + [anon_sym_0b] = ACTIONS(3541), + [anon_sym_0o] = ACTIONS(3543), + [anon_sym_0x] = ACTIONS(3543), + [sym_val_date] = ACTIONS(4049), + [anon_sym_DQUOTE] = ACTIONS(4051), + [sym__str_single_quotes] = ACTIONS(4053), + [sym__str_back_ticks] = ACTIONS(4053), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(4055), [anon_sym_POUND] = ACTIONS(247), }, [1094] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(4029), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3892), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3617), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1536), - [sym__unquoted_with_expr] = STATE(1794), - [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym__val_range] = STATE(7772), + [sym__value] = STATE(5988), + [sym_val_nothing] = STATE(4784), + [sym_val_bool] = STATE(7097), + [sym_val_variable] = STATE(4784), + [sym_val_number] = STATE(4784), + [sym__val_number_decimal] = STATE(5410), + [sym__val_number] = STATE(4955), + [sym_val_duration] = STATE(4784), + [sym_val_filesize] = STATE(4784), + [sym_val_binary] = STATE(4784), + [sym_val_string] = STATE(4784), + [sym__str_double_quotes] = STATE(4704), + [sym_val_interpolated] = STATE(4784), + [sym__inter_single_quotes] = STATE(4879), + [sym__inter_double_quotes] = STATE(4781), + [sym_val_list] = STATE(4784), + [sym_val_record] = STATE(4784), + [sym_val_table] = STATE(4784), + [sym_val_closure] = STATE(4784), + [sym_unquoted] = STATE(5989), + [sym__unquoted_anonymous_prefix] = STATE(7683), [sym_comment] = STATE(1094), - [anon_sym_true] = ACTIONS(3399), - [anon_sym_false] = ACTIONS(3399), - [anon_sym_null] = ACTIONS(3401), - [aux_sym_cmd_identifier_token38] = ACTIONS(3403), - [aux_sym_cmd_identifier_token39] = ACTIONS(3403), - [aux_sym_cmd_identifier_token40] = ACTIONS(3403), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3405), - [aux_sym__val_number_decimal_token2] = ACTIONS(3407), - [aux_sym__val_number_decimal_token3] = ACTIONS(3409), - [aux_sym__val_number_decimal_token4] = ACTIONS(3411), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3413), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_true] = ACTIONS(4023), + [anon_sym_false] = ACTIONS(4023), + [anon_sym_null] = ACTIONS(4025), + [aux_sym_cmd_identifier_token38] = ACTIONS(4027), + [aux_sym_cmd_identifier_token39] = ACTIONS(4027), + [aux_sym_cmd_identifier_token40] = ACTIONS(4027), + [anon_sym_LBRACK] = ACTIONS(4029), + [anon_sym_LPAREN] = ACTIONS(4031), + [anon_sym_DOLLAR] = ACTIONS(4033), + [aux_sym_ctrl_match_token1] = ACTIONS(4035), + [anon_sym_DOT_DOT] = ACTIONS(4037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4039), + [anon_sym_DOT_DOT_LT] = ACTIONS(4039), + [aux_sym__val_number_decimal_token1] = ACTIONS(4041), + [aux_sym__val_number_decimal_token2] = ACTIONS(4043), + [aux_sym__val_number_decimal_token3] = ACTIONS(4045), + [aux_sym__val_number_decimal_token4] = ACTIONS(4047), + [aux_sym__val_number_token1] = ACTIONS(3539), + [aux_sym__val_number_token2] = ACTIONS(3539), + [aux_sym__val_number_token3] = ACTIONS(3539), + [anon_sym_0b] = ACTIONS(3541), + [anon_sym_0o] = ACTIONS(3543), + [anon_sym_0x] = ACTIONS(3543), + [sym_val_date] = ACTIONS(4049), + [anon_sym_DQUOTE] = ACTIONS(4051), + [sym__str_single_quotes] = ACTIONS(4053), + [sym__str_back_ticks] = ACTIONS(4053), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(4055), [anon_sym_POUND] = ACTIONS(247), }, [1095] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(4030), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3892), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3617), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1545), - [sym__unquoted_with_expr] = STATE(1716), - [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym__val_range] = STATE(7772), + [sym__value] = STATE(5937), + [sym_val_nothing] = STATE(4784), + [sym_val_bool] = STATE(5806), + [sym_val_variable] = STATE(4784), + [sym_val_number] = STATE(4784), + [sym__val_number_decimal] = STATE(5195), + [sym__val_number] = STATE(3437), + [sym_val_duration] = STATE(4784), + [sym_val_filesize] = STATE(4784), + [sym_val_binary] = STATE(4784), + [sym_val_string] = STATE(4784), + [sym__str_double_quotes] = STATE(2643), + [sym_val_interpolated] = STATE(4784), + [sym__inter_single_quotes] = STATE(4879), + [sym__inter_double_quotes] = STATE(4781), + [sym_val_list] = STATE(4784), + [sym_val_record] = STATE(4784), + [sym_val_table] = STATE(4784), + [sym_val_closure] = STATE(4784), + [sym_unquoted] = STATE(5938), + [sym__unquoted_anonymous_prefix] = STATE(7683), [sym_comment] = STATE(1095), - [anon_sym_true] = ACTIONS(3399), - [anon_sym_false] = ACTIONS(3399), - [anon_sym_null] = ACTIONS(3401), - [aux_sym_cmd_identifier_token38] = ACTIONS(3403), - [aux_sym_cmd_identifier_token39] = ACTIONS(3403), - [aux_sym_cmd_identifier_token40] = ACTIONS(3403), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_DOLLAR] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3405), - [aux_sym__val_number_decimal_token2] = ACTIONS(3407), - [aux_sym__val_number_decimal_token3] = ACTIONS(3409), - [aux_sym__val_number_decimal_token4] = ACTIONS(3411), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3413), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_true] = ACTIONS(4057), + [anon_sym_false] = ACTIONS(4057), + [anon_sym_null] = ACTIONS(4059), + [aux_sym_cmd_identifier_token38] = ACTIONS(4061), + [aux_sym_cmd_identifier_token39] = ACTIONS(4061), + [aux_sym_cmd_identifier_token40] = ACTIONS(4061), + [anon_sym_LBRACK] = ACTIONS(4063), + [anon_sym_LPAREN] = ACTIONS(4031), + [anon_sym_DOLLAR] = ACTIONS(3991), + [aux_sym_ctrl_match_token1] = ACTIONS(4065), + [anon_sym_DOT_DOT] = ACTIONS(4037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4039), + [anon_sym_DOT_DOT_LT] = ACTIONS(4039), + [aux_sym__val_number_decimal_token1] = ACTIONS(4067), + [aux_sym__val_number_decimal_token2] = ACTIONS(4069), + [aux_sym__val_number_decimal_token3] = ACTIONS(4071), + [aux_sym__val_number_decimal_token4] = ACTIONS(4073), + [aux_sym__val_number_token1] = ACTIONS(3405), + [aux_sym__val_number_token2] = ACTIONS(3405), + [aux_sym__val_number_token3] = ACTIONS(3405), + [anon_sym_0b] = ACTIONS(3541), + [anon_sym_0o] = ACTIONS(3543), + [anon_sym_0x] = ACTIONS(3543), + [sym_val_date] = ACTIONS(4075), + [anon_sym_DQUOTE] = ACTIONS(3413), + [sym__str_single_quotes] = ACTIONS(3415), + [sym__str_back_ticks] = ACTIONS(3415), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(4055), [anon_sym_POUND] = ACTIONS(247), }, [1096] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(1748), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3754), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3554), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1582), - [sym__unquoted_with_expr] = STATE(1749), - [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym__expr_parenthesized_immediate] = STATE(1919), + [sym__immediate_decimal] = STATE(1924), + [sym_val_variable] = STATE(1919), [sym_comment] = STATE(1096), - [anon_sym_true] = ACTIONS(3415), - [anon_sym_false] = ACTIONS(3415), - [anon_sym_null] = ACTIONS(3417), - [aux_sym_cmd_identifier_token38] = ACTIONS(3419), - [aux_sym_cmd_identifier_token39] = ACTIONS(3419), - [aux_sym_cmd_identifier_token40] = ACTIONS(3419), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_DOLLAR] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3425), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3427), - [aux_sym__val_number_decimal_token2] = ACTIONS(3429), - [aux_sym__val_number_decimal_token3] = ACTIONS(3431), - [aux_sym__val_number_decimal_token4] = ACTIONS(3433), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [ts_builtin_sym_end] = ACTIONS(1623), + [anon_sym_true] = ACTIONS(1623), + [anon_sym_false] = ACTIONS(1623), + [anon_sym_null] = ACTIONS(1623), + [aux_sym_cmd_identifier_token38] = ACTIONS(1623), + [aux_sym_cmd_identifier_token39] = ACTIONS(1623), + [aux_sym_cmd_identifier_token40] = ACTIONS(1623), + [sym__newline] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1623), + [anon_sym_err_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_GT_PIPE] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), + [anon_sym_LBRACK] = ACTIONS(1623), + [anon_sym_LPAREN] = ACTIONS(1621), + [anon_sym_DOLLAR] = ACTIONS(3934), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_DASH] = ACTIONS(1621), + [aux_sym_ctrl_match_token1] = ACTIONS(1623), + [anon_sym_DOT_DOT] = ACTIONS(1621), + [anon_sym_LPAREN2] = ACTIONS(3936), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT] = ACTIONS(1623), + [aux_sym__immediate_decimal_token1] = ACTIONS(4007), + [aux_sym__immediate_decimal_token3] = ACTIONS(4009), + [aux_sym__immediate_decimal_token4] = ACTIONS(4011), + [aux_sym__immediate_decimal_token5] = ACTIONS(4013), + [aux_sym__val_number_decimal_token1] = ACTIONS(1621), + [aux_sym__val_number_decimal_token2] = ACTIONS(1621), + [aux_sym__val_number_decimal_token3] = ACTIONS(1621), + [aux_sym__val_number_decimal_token4] = ACTIONS(1621), + [aux_sym__val_number_token1] = ACTIONS(1623), + [aux_sym__val_number_token2] = ACTIONS(1623), + [aux_sym__val_number_token3] = ACTIONS(1623), + [anon_sym_0b] = ACTIONS(1621), + [anon_sym_0o] = ACTIONS(1621), + [anon_sym_0x] = ACTIONS(1621), + [sym_val_date] = ACTIONS(1623), + [anon_sym_DQUOTE] = ACTIONS(1623), + [sym__str_single_quotes] = ACTIONS(1623), + [sym__str_back_ticks] = ACTIONS(1623), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1623), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1623), + [anon_sym_err_GT] = ACTIONS(1621), + [anon_sym_out_GT] = ACTIONS(1621), + [anon_sym_e_GT] = ACTIONS(1621), + [anon_sym_o_GT] = ACTIONS(1621), + [anon_sym_err_PLUSout_GT] = ACTIONS(1621), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1621), + [anon_sym_o_PLUSe_GT] = ACTIONS(1621), + [anon_sym_e_PLUSo_GT] = ACTIONS(1621), + [anon_sym_err_GT_GT] = ACTIONS(1623), + [anon_sym_out_GT_GT] = ACTIONS(1623), + [anon_sym_e_GT_GT] = ACTIONS(1623), + [anon_sym_o_GT_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1623), + [aux_sym_unquoted_token1] = ACTIONS(1621), [anon_sym_POUND] = ACTIONS(247), }, [1097] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(3935), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3754), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3554), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1588), - [sym__unquoted_with_expr] = STATE(1772), - [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym__expr_parenthesized_immediate] = STATE(1925), + [sym__immediate_decimal] = STATE(1785), + [sym_val_variable] = STATE(1925), [sym_comment] = STATE(1097), - [anon_sym_true] = ACTIONS(3415), - [anon_sym_false] = ACTIONS(3415), - [anon_sym_null] = ACTIONS(3417), - [aux_sym_cmd_identifier_token38] = ACTIONS(3419), - [aux_sym_cmd_identifier_token39] = ACTIONS(3419), - [aux_sym_cmd_identifier_token40] = ACTIONS(3419), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_DOLLAR] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3425), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3427), - [aux_sym__val_number_decimal_token2] = ACTIONS(3429), - [aux_sym__val_number_decimal_token3] = ACTIONS(3431), - [aux_sym__val_number_decimal_token4] = ACTIONS(3433), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [ts_builtin_sym_end] = ACTIONS(1563), + [anon_sym_true] = ACTIONS(1563), + [anon_sym_false] = ACTIONS(1563), + [anon_sym_null] = ACTIONS(1563), + [aux_sym_cmd_identifier_token38] = ACTIONS(1563), + [aux_sym_cmd_identifier_token39] = ACTIONS(1563), + [aux_sym_cmd_identifier_token40] = ACTIONS(1563), + [sym__newline] = ACTIONS(1563), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_PIPE] = ACTIONS(1563), + [anon_sym_err_GT_PIPE] = ACTIONS(1563), + [anon_sym_out_GT_PIPE] = ACTIONS(1563), + [anon_sym_e_GT_PIPE] = ACTIONS(1563), + [anon_sym_o_GT_PIPE] = ACTIONS(1563), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1563), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1563), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1563), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1561), + [anon_sym_DOLLAR] = ACTIONS(3934), + [anon_sym_DASH_DASH] = ACTIONS(1563), + [anon_sym_DASH] = ACTIONS(1561), + [aux_sym_ctrl_match_token1] = ACTIONS(1563), + [anon_sym_DOT_DOT] = ACTIONS(1561), + [anon_sym_LPAREN2] = ACTIONS(3936), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1563), + [anon_sym_DOT_DOT_LT] = ACTIONS(1563), + [aux_sym__immediate_decimal_token1] = ACTIONS(4007), + [aux_sym__immediate_decimal_token3] = ACTIONS(4009), + [aux_sym__immediate_decimal_token4] = ACTIONS(4011), + [aux_sym__immediate_decimal_token5] = ACTIONS(4013), + [aux_sym__val_number_decimal_token1] = ACTIONS(1561), + [aux_sym__val_number_decimal_token2] = ACTIONS(1561), + [aux_sym__val_number_decimal_token3] = ACTIONS(1561), + [aux_sym__val_number_decimal_token4] = ACTIONS(1561), + [aux_sym__val_number_token1] = ACTIONS(1563), + [aux_sym__val_number_token2] = ACTIONS(1563), + [aux_sym__val_number_token3] = ACTIONS(1563), + [anon_sym_0b] = ACTIONS(1561), + [anon_sym_0o] = ACTIONS(1561), + [anon_sym_0x] = ACTIONS(1561), + [sym_val_date] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1563), + [sym__str_single_quotes] = ACTIONS(1563), + [sym__str_back_ticks] = ACTIONS(1563), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1563), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1563), + [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), + [anon_sym_err_GT_GT] = ACTIONS(1563), + [anon_sym_out_GT_GT] = ACTIONS(1563), + [anon_sym_e_GT_GT] = ACTIONS(1563), + [anon_sym_o_GT_GT] = ACTIONS(1563), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1563), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1563), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1563), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1563), + [aux_sym_unquoted_token1] = ACTIONS(1561), [anon_sym_POUND] = ACTIONS(247), }, [1098] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(3936), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3754), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3554), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1596), - [sym__unquoted_with_expr] = STATE(1773), - [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym__val_range] = STATE(7772), + [sym__value] = STATE(5947), + [sym_val_nothing] = STATE(4784), + [sym_val_bool] = STATE(7097), + [sym_val_variable] = STATE(4784), + [sym_val_number] = STATE(4784), + [sym__val_number_decimal] = STATE(5410), + [sym__val_number] = STATE(4955), + [sym_val_duration] = STATE(4784), + [sym_val_filesize] = STATE(4784), + [sym_val_binary] = STATE(4784), + [sym_val_string] = STATE(4784), + [sym__str_double_quotes] = STATE(4704), + [sym_val_interpolated] = STATE(4784), + [sym__inter_single_quotes] = STATE(4879), + [sym__inter_double_quotes] = STATE(4781), + [sym_val_list] = STATE(4784), + [sym_val_record] = STATE(4784), + [sym_val_table] = STATE(4784), + [sym_val_closure] = STATE(4784), + [sym_unquoted] = STATE(5948), + [sym__unquoted_anonymous_prefix] = STATE(7683), [sym_comment] = STATE(1098), - [anon_sym_true] = ACTIONS(3415), - [anon_sym_false] = ACTIONS(3415), - [anon_sym_null] = ACTIONS(3417), - [aux_sym_cmd_identifier_token38] = ACTIONS(3419), - [aux_sym_cmd_identifier_token39] = ACTIONS(3419), - [aux_sym_cmd_identifier_token40] = ACTIONS(3419), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_DOLLAR] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3425), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3427), - [aux_sym__val_number_decimal_token2] = ACTIONS(3429), - [aux_sym__val_number_decimal_token3] = ACTIONS(3431), - [aux_sym__val_number_decimal_token4] = ACTIONS(3433), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_true] = ACTIONS(4023), + [anon_sym_false] = ACTIONS(4023), + [anon_sym_null] = ACTIONS(4025), + [aux_sym_cmd_identifier_token38] = ACTIONS(4027), + [aux_sym_cmd_identifier_token39] = ACTIONS(4027), + [aux_sym_cmd_identifier_token40] = ACTIONS(4027), + [anon_sym_LBRACK] = ACTIONS(4029), + [anon_sym_LPAREN] = ACTIONS(4031), + [anon_sym_DOLLAR] = ACTIONS(4033), + [aux_sym_ctrl_match_token1] = ACTIONS(4035), + [anon_sym_DOT_DOT] = ACTIONS(4037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4039), + [anon_sym_DOT_DOT_LT] = ACTIONS(4039), + [aux_sym__val_number_decimal_token1] = ACTIONS(4041), + [aux_sym__val_number_decimal_token2] = ACTIONS(4043), + [aux_sym__val_number_decimal_token3] = ACTIONS(4045), + [aux_sym__val_number_decimal_token4] = ACTIONS(4047), + [aux_sym__val_number_token1] = ACTIONS(3539), + [aux_sym__val_number_token2] = ACTIONS(3539), + [aux_sym__val_number_token3] = ACTIONS(3539), + [anon_sym_0b] = ACTIONS(3541), + [anon_sym_0o] = ACTIONS(3543), + [anon_sym_0x] = ACTIONS(3543), + [sym_val_date] = ACTIONS(4049), + [anon_sym_DQUOTE] = ACTIONS(4051), + [sym__str_single_quotes] = ACTIONS(4053), + [sym__str_back_ticks] = ACTIONS(4053), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(4055), [anon_sym_POUND] = ACTIONS(247), }, [1099] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(3937), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3754), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3554), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1535), - [sym__unquoted_with_expr] = STATE(1777), - [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym__val_range] = STATE(7772), + [sym__value] = STATE(5988), + [sym_val_nothing] = STATE(4784), + [sym_val_bool] = STATE(5806), + [sym_val_variable] = STATE(4784), + [sym_val_number] = STATE(4784), + [sym__val_number_decimal] = STATE(5195), + [sym__val_number] = STATE(3437), + [sym_val_duration] = STATE(4784), + [sym_val_filesize] = STATE(4784), + [sym_val_binary] = STATE(4784), + [sym_val_string] = STATE(4784), + [sym__str_double_quotes] = STATE(2643), + [sym_val_interpolated] = STATE(4784), + [sym__inter_single_quotes] = STATE(4879), + [sym__inter_double_quotes] = STATE(4781), + [sym_val_list] = STATE(4784), + [sym_val_record] = STATE(4784), + [sym_val_table] = STATE(4784), + [sym_val_closure] = STATE(4784), + [sym_unquoted] = STATE(5989), + [sym__unquoted_anonymous_prefix] = STATE(7683), [sym_comment] = STATE(1099), - [anon_sym_true] = ACTIONS(3415), - [anon_sym_false] = ACTIONS(3415), - [anon_sym_null] = ACTIONS(3417), - [aux_sym_cmd_identifier_token38] = ACTIONS(3419), - [aux_sym_cmd_identifier_token39] = ACTIONS(3419), - [aux_sym_cmd_identifier_token40] = ACTIONS(3419), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_DOLLAR] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3425), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3427), - [aux_sym__val_number_decimal_token2] = ACTIONS(3429), - [aux_sym__val_number_decimal_token3] = ACTIONS(3431), - [aux_sym__val_number_decimal_token4] = ACTIONS(3433), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_true] = ACTIONS(4057), + [anon_sym_false] = ACTIONS(4057), + [anon_sym_null] = ACTIONS(4059), + [aux_sym_cmd_identifier_token38] = ACTIONS(4061), + [aux_sym_cmd_identifier_token39] = ACTIONS(4061), + [aux_sym_cmd_identifier_token40] = ACTIONS(4061), + [anon_sym_LBRACK] = ACTIONS(4063), + [anon_sym_LPAREN] = ACTIONS(4031), + [anon_sym_DOLLAR] = ACTIONS(3991), + [aux_sym_ctrl_match_token1] = ACTIONS(4065), + [anon_sym_DOT_DOT] = ACTIONS(4037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4039), + [anon_sym_DOT_DOT_LT] = ACTIONS(4039), + [aux_sym__val_number_decimal_token1] = ACTIONS(4067), + [aux_sym__val_number_decimal_token2] = ACTIONS(4069), + [aux_sym__val_number_decimal_token3] = ACTIONS(4071), + [aux_sym__val_number_decimal_token4] = ACTIONS(4073), + [aux_sym__val_number_token1] = ACTIONS(3405), + [aux_sym__val_number_token2] = ACTIONS(3405), + [aux_sym__val_number_token3] = ACTIONS(3405), + [anon_sym_0b] = ACTIONS(3541), + [anon_sym_0o] = ACTIONS(3543), + [anon_sym_0x] = ACTIONS(3543), + [sym_val_date] = ACTIONS(4075), + [anon_sym_DQUOTE] = ACTIONS(3413), + [sym__str_single_quotes] = ACTIONS(3415), + [sym__str_back_ticks] = ACTIONS(3415), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(4055), [anon_sym_POUND] = ACTIONS(247), }, [1100] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(3938), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3754), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3554), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1571), - [sym__unquoted_with_expr] = STATE(1784), - [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1100), - [anon_sym_true] = ACTIONS(3415), - [anon_sym_false] = ACTIONS(3415), - [anon_sym_null] = ACTIONS(3417), - [aux_sym_cmd_identifier_token38] = ACTIONS(3419), - [aux_sym_cmd_identifier_token39] = ACTIONS(3419), - [aux_sym_cmd_identifier_token40] = ACTIONS(3419), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_DOLLAR] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3425), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3427), - [aux_sym__val_number_decimal_token2] = ACTIONS(3429), - [aux_sym__val_number_decimal_token3] = ACTIONS(3431), - [aux_sym__val_number_decimal_token4] = ACTIONS(3433), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [aux_sym_cmd_identifier_token38] = ACTIONS(1633), + [aux_sym_cmd_identifier_token39] = ACTIONS(1633), + [aux_sym_cmd_identifier_token40] = ACTIONS(1633), + [sym__newline] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1633), + [anon_sym_err_GT_PIPE] = ACTIONS(1633), + [anon_sym_out_GT_PIPE] = ACTIONS(1633), + [anon_sym_e_GT_PIPE] = ACTIONS(1633), + [anon_sym_o_GT_PIPE] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1633), + [anon_sym_LBRACK] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_RPAREN] = ACTIONS(1633), + [anon_sym_DOLLAR] = ACTIONS(1631), + [anon_sym_DASH_DASH] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1631), + [aux_sym_ctrl_match_token1] = ACTIONS(1633), + [anon_sym_RBRACE] = ACTIONS(1633), + [anon_sym_DOT_DOT] = ACTIONS(1631), + [anon_sym_LPAREN2] = ACTIONS(1633), + [anon_sym_DOT_DOT2] = ACTIONS(1631), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1631), + [anon_sym_DOT_DOT_LT] = ACTIONS(1631), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1633), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1633), + [aux_sym__immediate_decimal_token1] = ACTIONS(4077), + [aux_sym__immediate_decimal_token2] = ACTIONS(4079), + [aux_sym__val_number_decimal_token1] = ACTIONS(1631), + [aux_sym__val_number_decimal_token2] = ACTIONS(1633), + [aux_sym__val_number_decimal_token3] = ACTIONS(1633), + [aux_sym__val_number_decimal_token4] = ACTIONS(1633), + [aux_sym__val_number_token1] = ACTIONS(1633), + [aux_sym__val_number_token2] = ACTIONS(1633), + [aux_sym__val_number_token3] = ACTIONS(1633), + [anon_sym_0b] = ACTIONS(1631), + [anon_sym_0o] = ACTIONS(1631), + [anon_sym_0x] = ACTIONS(1631), + [sym_val_date] = ACTIONS(1633), + [anon_sym_DQUOTE] = ACTIONS(1633), + [sym__str_single_quotes] = ACTIONS(1633), + [sym__str_back_ticks] = ACTIONS(1633), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1633), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1633), + [anon_sym_err_GT] = ACTIONS(1631), + [anon_sym_out_GT] = ACTIONS(1631), + [anon_sym_e_GT] = ACTIONS(1631), + [anon_sym_o_GT] = ACTIONS(1631), + [anon_sym_err_PLUSout_GT] = ACTIONS(1631), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1631), + [anon_sym_o_PLUSe_GT] = ACTIONS(1631), + [anon_sym_e_PLUSo_GT] = ACTIONS(1631), + [anon_sym_err_GT_GT] = ACTIONS(1633), + [anon_sym_out_GT_GT] = ACTIONS(1633), + [anon_sym_e_GT_GT] = ACTIONS(1633), + [anon_sym_o_GT_GT] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1633), + [aux_sym_unquoted_token1] = ACTIONS(1631), + [aux_sym_unquoted_token2] = ACTIONS(1631), [anon_sym_POUND] = ACTIONS(247), }, [1101] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(3939), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3754), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3554), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1537), - [sym__unquoted_with_expr] = STATE(1803), - [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym__match_pattern_expression] = STATE(3052), + [sym__match_pattern_value] = STATE(3028), + [sym__match_pattern_list] = STATE(3029), + [sym__match_pattern_rest] = STATE(7606), + [sym__match_pattern_record] = STATE(3030), + [sym_expr_parenthesized] = STATE(2816), + [sym_val_range] = STATE(3028), + [sym__val_range] = STATE(7670), + [sym_val_nothing] = STATE(3031), + [sym_val_bool] = STATE(2974), + [sym_val_variable] = STATE(2817), + [sym_val_number] = STATE(3031), + [sym__val_number_decimal] = STATE(2606), + [sym__val_number] = STATE(3023), + [sym_val_duration] = STATE(3031), + [sym_val_filesize] = STATE(3031), + [sym_val_binary] = STATE(3031), + [sym_val_string] = STATE(3031), + [sym__str_double_quotes] = STATE(3007), + [sym_val_table] = STATE(3031), + [sym__unquoted_in_list] = STATE(3052), + [sym__unquoted_anonymous_prefix] = STATE(7659), [sym_comment] = STATE(1101), - [anon_sym_true] = ACTIONS(3415), - [anon_sym_false] = ACTIONS(3415), - [anon_sym_null] = ACTIONS(3417), - [aux_sym_cmd_identifier_token38] = ACTIONS(3419), - [aux_sym_cmd_identifier_token39] = ACTIONS(3419), - [aux_sym_cmd_identifier_token40] = ACTIONS(3419), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_DOLLAR] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3425), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3427), - [aux_sym__val_number_decimal_token2] = ACTIONS(3429), - [aux_sym__val_number_decimal_token3] = ACTIONS(3431), - [aux_sym__val_number_decimal_token4] = ACTIONS(3433), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [aux_sym__match_pattern_list_repeat1] = STATE(1202), + [anon_sym_true] = ACTIONS(3718), + [anon_sym_false] = ACTIONS(3718), + [anon_sym_null] = ACTIONS(3720), + [aux_sym_cmd_identifier_token38] = ACTIONS(3722), + [aux_sym_cmd_identifier_token39] = ACTIONS(3722), + [aux_sym_cmd_identifier_token40] = ACTIONS(3722), + [anon_sym_LBRACK] = ACTIONS(4081), + [anon_sym_RBRACK] = ACTIONS(4083), + [anon_sym_LPAREN] = ACTIONS(3728), + [anon_sym_DOLLAR] = ACTIONS(3730), + [aux_sym_ctrl_match_token1] = ACTIONS(3732), + [anon_sym_DOT_DOT] = ACTIONS(4085), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3736), + [anon_sym_DOT_DOT_LT] = ACTIONS(3736), + [aux_sym__val_number_decimal_token1] = ACTIONS(3738), + [aux_sym__val_number_decimal_token2] = ACTIONS(3740), + [aux_sym__val_number_decimal_token3] = ACTIONS(3742), + [aux_sym__val_number_decimal_token4] = ACTIONS(3744), + [aux_sym__val_number_token1] = ACTIONS(3746), + [aux_sym__val_number_token2] = ACTIONS(3746), + [aux_sym__val_number_token3] = ACTIONS(3746), + [anon_sym_0b] = ACTIONS(3748), + [anon_sym_0o] = ACTIONS(3750), + [anon_sym_0x] = ACTIONS(3750), + [sym_val_date] = ACTIONS(3752), + [anon_sym_DQUOTE] = ACTIONS(3754), + [sym__str_single_quotes] = ACTIONS(3756), + [sym__str_back_ticks] = ACTIONS(3756), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3758), [anon_sym_POUND] = ACTIONS(247), }, [1102] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(3940), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3754), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3554), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1595), - [sym__unquoted_with_expr] = STATE(1805), - [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1102), - [anon_sym_true] = ACTIONS(3415), - [anon_sym_false] = ACTIONS(3415), - [anon_sym_null] = ACTIONS(3417), - [aux_sym_cmd_identifier_token38] = ACTIONS(3419), - [aux_sym_cmd_identifier_token39] = ACTIONS(3419), - [aux_sym_cmd_identifier_token40] = ACTIONS(3419), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_DOLLAR] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3425), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3427), - [aux_sym__val_number_decimal_token2] = ACTIONS(3429), - [aux_sym__val_number_decimal_token3] = ACTIONS(3431), - [aux_sym__val_number_decimal_token4] = ACTIONS(3433), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_true] = ACTIONS(1499), + [anon_sym_false] = ACTIONS(1499), + [anon_sym_null] = ACTIONS(1499), + [aux_sym_cmd_identifier_token38] = ACTIONS(1499), + [aux_sym_cmd_identifier_token39] = ACTIONS(1499), + [aux_sym_cmd_identifier_token40] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1497), + [anon_sym_RPAREN] = ACTIONS(1499), + [anon_sym_DOLLAR] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1497), + [aux_sym_ctrl_match_token1] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1497), + [anon_sym_LPAREN2] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), + [anon_sym_DOT_DOT_LT] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1499), + [aux_sym__val_number_decimal_token4] = ACTIONS(1499), + [aux_sym__val_number_token1] = ACTIONS(1499), + [aux_sym__val_number_token2] = ACTIONS(1499), + [aux_sym__val_number_token3] = ACTIONS(1499), + [anon_sym_0b] = ACTIONS(1497), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1499), + [anon_sym_0o] = ACTIONS(1497), + [anon_sym_0x] = ACTIONS(1497), + [sym_val_date] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1499), + [sym__str_single_quotes] = ACTIONS(1499), + [sym__str_back_ticks] = ACTIONS(1499), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1499), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1499), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), + [aux_sym_unquoted_token1] = ACTIONS(1497), + [aux_sym_unquoted_token2] = ACTIONS(1497), [anon_sym_POUND] = ACTIONS(247), }, [1103] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(3941), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3754), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3554), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1568), - [sym__unquoted_with_expr] = STATE(1806), - [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1103), - [anon_sym_true] = ACTIONS(3415), - [anon_sym_false] = ACTIONS(3415), - [anon_sym_null] = ACTIONS(3417), - [aux_sym_cmd_identifier_token38] = ACTIONS(3419), - [aux_sym_cmd_identifier_token39] = ACTIONS(3419), - [aux_sym_cmd_identifier_token40] = ACTIONS(3419), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_DOLLAR] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3425), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3427), - [aux_sym__val_number_decimal_token2] = ACTIONS(3429), - [aux_sym__val_number_decimal_token3] = ACTIONS(3431), - [aux_sym__val_number_decimal_token4] = ACTIONS(3433), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_true] = ACTIONS(1519), + [anon_sym_false] = ACTIONS(1519), + [anon_sym_null] = ACTIONS(1519), + [aux_sym_cmd_identifier_token38] = ACTIONS(1519), + [aux_sym_cmd_identifier_token39] = ACTIONS(1519), + [aux_sym_cmd_identifier_token40] = ACTIONS(1519), + [sym__newline] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1519), + [anon_sym_err_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_GT_PIPE] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_RPAREN] = ACTIONS(1519), + [anon_sym_DOLLAR] = ACTIONS(1517), + [anon_sym_DASH_DASH] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1517), + [aux_sym_ctrl_match_token1] = ACTIONS(1519), + [anon_sym_RBRACE] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_DOT_DOT2] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1517), + [anon_sym_DOT_DOT_LT] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token1] = ACTIONS(1517), + [aux_sym__val_number_decimal_token2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1519), + [aux_sym__val_number_token1] = ACTIONS(1519), + [aux_sym__val_number_token2] = ACTIONS(1519), + [aux_sym__val_number_token3] = ACTIONS(1519), + [anon_sym_0b] = ACTIONS(1517), + [sym_filesize_unit] = ACTIONS(1519), + [sym_duration_unit] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1517), + [sym_val_date] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1519), + [sym__str_single_quotes] = ACTIONS(1519), + [sym__str_back_ticks] = ACTIONS(1519), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1519), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1519), + [anon_sym_err_GT] = ACTIONS(1517), + [anon_sym_out_GT] = ACTIONS(1517), + [anon_sym_e_GT] = ACTIONS(1517), + [anon_sym_o_GT] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT] = ACTIONS(1517), + [anon_sym_err_GT_GT] = ACTIONS(1519), + [anon_sym_out_GT_GT] = ACTIONS(1519), + [anon_sym_e_GT_GT] = ACTIONS(1519), + [anon_sym_o_GT_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), + [aux_sym_unquoted_token1] = ACTIONS(1517), + [aux_sym_unquoted_token2] = ACTIONS(1517), [anon_sym_POUND] = ACTIONS(247), }, [1104] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(3942), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3754), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3554), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1532), - [sym__unquoted_with_expr] = STATE(1808), - [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym__val_range] = STATE(7774), + [sym__value] = STATE(2681), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3524), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(5515), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(2675), + [sym__unquoted_anonymous_prefix] = STATE(7502), [sym_comment] = STATE(1104), - [anon_sym_true] = ACTIONS(3415), - [anon_sym_false] = ACTIONS(3415), - [anon_sym_null] = ACTIONS(3417), - [aux_sym_cmd_identifier_token38] = ACTIONS(3419), - [aux_sym_cmd_identifier_token39] = ACTIONS(3419), - [aux_sym_cmd_identifier_token40] = ACTIONS(3419), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_DOLLAR] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3425), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3427), - [aux_sym__val_number_decimal_token2] = ACTIONS(3429), - [aux_sym__val_number_decimal_token3] = ACTIONS(3431), - [aux_sym__val_number_decimal_token4] = ACTIONS(3433), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_true] = ACTIONS(3243), + [anon_sym_false] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [aux_sym_cmd_identifier_token38] = ACTIONS(3686), + [aux_sym_cmd_identifier_token39] = ACTIONS(3686), + [aux_sym_cmd_identifier_token40] = ACTIONS(3686), + [anon_sym_LBRACK] = ACTIONS(3688), + [anon_sym_LPAREN] = ACTIONS(4087), + [anon_sym_DOLLAR] = ACTIONS(4089), + [aux_sym_ctrl_match_token1] = ACTIONS(3694), + [anon_sym_DOT_DOT] = ACTIONS(4091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4093), + [anon_sym_DOT_DOT_LT] = ACTIONS(4093), + [aux_sym__val_number_decimal_token1] = ACTIONS(3263), + [aux_sym__val_number_decimal_token2] = ACTIONS(3265), + [aux_sym__val_number_decimal_token3] = ACTIONS(3267), + [aux_sym__val_number_decimal_token4] = ACTIONS(3269), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3271), + [anon_sym_DQUOTE] = ACTIONS(3700), + [sym__str_single_quotes] = ACTIONS(3702), + [sym__str_back_ticks] = ACTIONS(3702), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3704), [anon_sym_POUND] = ACTIONS(247), }, [1105] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(3943), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3754), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3554), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1573), - [sym__unquoted_with_expr] = STATE(1811), - [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym_path] = STATE(1238), [sym_comment] = STATE(1105), - [anon_sym_true] = ACTIONS(3415), - [anon_sym_false] = ACTIONS(3415), - [anon_sym_null] = ACTIONS(3417), - [aux_sym_cmd_identifier_token38] = ACTIONS(3419), - [aux_sym_cmd_identifier_token39] = ACTIONS(3419), - [aux_sym_cmd_identifier_token40] = ACTIONS(3419), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_DOLLAR] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3425), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3427), - [aux_sym__val_number_decimal_token2] = ACTIONS(3429), - [aux_sym__val_number_decimal_token3] = ACTIONS(3431), - [aux_sym__val_number_decimal_token4] = ACTIONS(3433), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [aux_sym_cell_path_repeat1] = STATE(1146), + [ts_builtin_sym_end] = ACTIONS(1019), + [anon_sym_EQ] = ACTIONS(1017), + [anon_sym_PLUS_EQ] = ACTIONS(1019), + [anon_sym_DASH_EQ] = ACTIONS(1019), + [anon_sym_STAR_EQ] = ACTIONS(1019), + [anon_sym_SLASH_EQ] = ACTIONS(1019), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1019), + [sym__newline] = ACTIONS(1019), + [anon_sym_SEMI] = ACTIONS(1019), + [anon_sym_PIPE] = ACTIONS(1019), + [anon_sym_err_GT_PIPE] = ACTIONS(1019), + [anon_sym_out_GT_PIPE] = ACTIONS(1019), + [anon_sym_e_GT_PIPE] = ACTIONS(1019), + [anon_sym_o_GT_PIPE] = ACTIONS(1019), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1019), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1019), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1019), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1019), + [aux_sym_expr_binary_token1] = ACTIONS(1019), + [aux_sym_expr_binary_token2] = ACTIONS(1019), + [aux_sym_expr_binary_token3] = ACTIONS(1019), + [aux_sym_expr_binary_token4] = ACTIONS(1019), + [aux_sym_expr_binary_token5] = ACTIONS(1019), + [aux_sym_expr_binary_token6] = ACTIONS(1019), + [aux_sym_expr_binary_token7] = ACTIONS(1019), + [aux_sym_expr_binary_token8] = ACTIONS(1019), + [aux_sym_expr_binary_token9] = ACTIONS(1019), + [aux_sym_expr_binary_token10] = ACTIONS(1019), + [aux_sym_expr_binary_token11] = ACTIONS(1019), + [aux_sym_expr_binary_token12] = ACTIONS(1019), + [aux_sym_expr_binary_token13] = ACTIONS(1019), + [aux_sym_expr_binary_token14] = ACTIONS(1019), + [aux_sym_expr_binary_token15] = ACTIONS(1019), + [aux_sym_expr_binary_token16] = ACTIONS(1019), + [aux_sym_expr_binary_token17] = ACTIONS(1019), + [aux_sym_expr_binary_token18] = ACTIONS(1019), + [aux_sym_expr_binary_token19] = ACTIONS(1019), + [aux_sym_expr_binary_token20] = ACTIONS(1019), + [aux_sym_expr_binary_token21] = ACTIONS(1019), + [aux_sym_expr_binary_token22] = ACTIONS(1019), + [aux_sym_expr_binary_token23] = ACTIONS(1019), + [aux_sym_expr_binary_token24] = ACTIONS(1019), + [aux_sym_expr_binary_token25] = ACTIONS(1019), + [aux_sym_expr_binary_token26] = ACTIONS(1019), + [aux_sym_expr_binary_token27] = ACTIONS(1019), + [aux_sym_expr_binary_token28] = ACTIONS(1019), + [anon_sym_DOT_DOT2] = ACTIONS(1017), + [anon_sym_DOT] = ACTIONS(3950), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1019), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1019), + [anon_sym_err_GT] = ACTIONS(1017), + [anon_sym_out_GT] = ACTIONS(1017), + [anon_sym_e_GT] = ACTIONS(1017), + [anon_sym_o_GT] = ACTIONS(1017), + [anon_sym_err_PLUSout_GT] = ACTIONS(1017), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1017), + [anon_sym_o_PLUSe_GT] = ACTIONS(1017), + [anon_sym_e_PLUSo_GT] = ACTIONS(1017), + [anon_sym_err_GT_GT] = ACTIONS(1019), + [anon_sym_out_GT_GT] = ACTIONS(1019), + [anon_sym_e_GT_GT] = ACTIONS(1019), + [anon_sym_o_GT_GT] = ACTIONS(1019), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1019), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1019), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1019), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1019), [anon_sym_POUND] = ACTIONS(247), }, [1106] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(3944), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3754), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3554), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1516), - [sym__unquoted_with_expr] = STATE(1812), - [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym__val_range] = STATE(7772), + [sym__value] = STATE(5920), + [sym_val_nothing] = STATE(4784), + [sym_val_bool] = STATE(5806), + [sym_val_variable] = STATE(4784), + [sym_val_number] = STATE(4784), + [sym__val_number_decimal] = STATE(5195), + [sym__val_number] = STATE(3437), + [sym_val_duration] = STATE(4784), + [sym_val_filesize] = STATE(4784), + [sym_val_binary] = STATE(4784), + [sym_val_string] = STATE(4784), + [sym__str_double_quotes] = STATE(2643), + [sym_val_interpolated] = STATE(4784), + [sym__inter_single_quotes] = STATE(4879), + [sym__inter_double_quotes] = STATE(4781), + [sym_val_list] = STATE(4784), + [sym_val_record] = STATE(4784), + [sym_val_table] = STATE(4784), + [sym_val_closure] = STATE(4784), + [sym_unquoted] = STATE(5922), + [sym__unquoted_anonymous_prefix] = STATE(7683), [sym_comment] = STATE(1106), - [anon_sym_true] = ACTIONS(3415), - [anon_sym_false] = ACTIONS(3415), - [anon_sym_null] = ACTIONS(3417), - [aux_sym_cmd_identifier_token38] = ACTIONS(3419), - [aux_sym_cmd_identifier_token39] = ACTIONS(3419), - [aux_sym_cmd_identifier_token40] = ACTIONS(3419), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_DOLLAR] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3425), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3427), - [aux_sym__val_number_decimal_token2] = ACTIONS(3429), - [aux_sym__val_number_decimal_token3] = ACTIONS(3431), - [aux_sym__val_number_decimal_token4] = ACTIONS(3433), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_true] = ACTIONS(4057), + [anon_sym_false] = ACTIONS(4057), + [anon_sym_null] = ACTIONS(4059), + [aux_sym_cmd_identifier_token38] = ACTIONS(4061), + [aux_sym_cmd_identifier_token39] = ACTIONS(4061), + [aux_sym_cmd_identifier_token40] = ACTIONS(4061), + [anon_sym_LBRACK] = ACTIONS(4063), + [anon_sym_LPAREN] = ACTIONS(4031), + [anon_sym_DOLLAR] = ACTIONS(3991), + [aux_sym_ctrl_match_token1] = ACTIONS(4065), + [anon_sym_DOT_DOT] = ACTIONS(4037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4039), + [anon_sym_DOT_DOT_LT] = ACTIONS(4039), + [aux_sym__val_number_decimal_token1] = ACTIONS(4067), + [aux_sym__val_number_decimal_token2] = ACTIONS(4069), + [aux_sym__val_number_decimal_token3] = ACTIONS(4071), + [aux_sym__val_number_decimal_token4] = ACTIONS(4073), + [aux_sym__val_number_token1] = ACTIONS(3405), + [aux_sym__val_number_token2] = ACTIONS(3405), + [aux_sym__val_number_token3] = ACTIONS(3405), + [anon_sym_0b] = ACTIONS(3541), + [anon_sym_0o] = ACTIONS(3543), + [anon_sym_0x] = ACTIONS(3543), + [sym_val_date] = ACTIONS(4075), + [anon_sym_DQUOTE] = ACTIONS(3413), + [sym__str_single_quotes] = ACTIONS(3415), + [sym__str_back_ticks] = ACTIONS(3415), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(4055), [anon_sym_POUND] = ACTIONS(247), }, [1107] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(3945), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3754), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3554), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1536), - [sym__unquoted_with_expr] = STATE(1794), - [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1107), - [anon_sym_true] = ACTIONS(3415), - [anon_sym_false] = ACTIONS(3415), - [anon_sym_null] = ACTIONS(3417), - [aux_sym_cmd_identifier_token38] = ACTIONS(3419), - [aux_sym_cmd_identifier_token39] = ACTIONS(3419), - [aux_sym_cmd_identifier_token40] = ACTIONS(3419), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_DOLLAR] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3425), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3427), - [aux_sym__val_number_decimal_token2] = ACTIONS(3429), - [aux_sym__val_number_decimal_token3] = ACTIONS(3431), - [aux_sym__val_number_decimal_token4] = ACTIONS(3433), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_true] = ACTIONS(1567), + [anon_sym_false] = ACTIONS(1567), + [anon_sym_null] = ACTIONS(1567), + [aux_sym_cmd_identifier_token38] = ACTIONS(1567), + [aux_sym_cmd_identifier_token39] = ACTIONS(1567), + [aux_sym_cmd_identifier_token40] = ACTIONS(1567), + [sym__newline] = ACTIONS(1567), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_err_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_GT_PIPE] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), + [anon_sym_LBRACK] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_RPAREN] = ACTIONS(1567), + [anon_sym_DOLLAR] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1565), + [aux_sym_ctrl_match_token1] = ACTIONS(1567), + [anon_sym_RBRACE] = ACTIONS(1567), + [anon_sym_DOT_DOT] = ACTIONS(1565), + [anon_sym_LPAREN2] = ACTIONS(1567), + [anon_sym_DOT_DOT2] = ACTIONS(1565), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1565), + [anon_sym_DOT_DOT_LT] = ACTIONS(1565), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), + [aux_sym__val_number_decimal_token1] = ACTIONS(1565), + [aux_sym__val_number_decimal_token2] = ACTIONS(1567), + [aux_sym__val_number_decimal_token3] = ACTIONS(1567), + [aux_sym__val_number_decimal_token4] = ACTIONS(1567), + [aux_sym__val_number_token1] = ACTIONS(1567), + [aux_sym__val_number_token2] = ACTIONS(1567), + [aux_sym__val_number_token3] = ACTIONS(1567), + [anon_sym_0b] = ACTIONS(1565), + [sym_filesize_unit] = ACTIONS(1567), + [sym_duration_unit] = ACTIONS(1567), + [anon_sym_0o] = ACTIONS(1565), + [anon_sym_0x] = ACTIONS(1565), + [sym_val_date] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(1567), + [sym__str_single_quotes] = ACTIONS(1567), + [sym__str_back_ticks] = ACTIONS(1567), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1567), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1567), + [anon_sym_err_GT] = ACTIONS(1565), + [anon_sym_out_GT] = ACTIONS(1565), + [anon_sym_e_GT] = ACTIONS(1565), + [anon_sym_o_GT] = ACTIONS(1565), + [anon_sym_err_PLUSout_GT] = ACTIONS(1565), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), + [anon_sym_o_PLUSe_GT] = ACTIONS(1565), + [anon_sym_e_PLUSo_GT] = ACTIONS(1565), + [anon_sym_err_GT_GT] = ACTIONS(1567), + [anon_sym_out_GT_GT] = ACTIONS(1567), + [anon_sym_e_GT_GT] = ACTIONS(1567), + [anon_sym_o_GT_GT] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), + [aux_sym_unquoted_token1] = ACTIONS(1565), + [aux_sym_unquoted_token2] = ACTIONS(1565), [anon_sym_POUND] = ACTIONS(247), }, [1108] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(3946), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3754), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3554), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1545), - [sym__unquoted_with_expr] = STATE(1716), - [sym__unquoted_anonymous_prefix] = STATE(7332), [sym_comment] = STATE(1108), - [anon_sym_true] = ACTIONS(3415), - [anon_sym_false] = ACTIONS(3415), - [anon_sym_null] = ACTIONS(3417), - [aux_sym_cmd_identifier_token38] = ACTIONS(3419), - [aux_sym_cmd_identifier_token39] = ACTIONS(3419), - [aux_sym_cmd_identifier_token40] = ACTIONS(3419), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_DOLLAR] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(3425), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3427), - [aux_sym__val_number_decimal_token2] = ACTIONS(3429), - [aux_sym__val_number_decimal_token3] = ACTIONS(3431), - [aux_sym__val_number_decimal_token4] = ACTIONS(3433), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_true] = ACTIONS(1641), + [anon_sym_false] = ACTIONS(1641), + [anon_sym_null] = ACTIONS(1641), + [aux_sym_cmd_identifier_token38] = ACTIONS(1641), + [aux_sym_cmd_identifier_token39] = ACTIONS(1641), + [aux_sym_cmd_identifier_token40] = ACTIONS(1641), + [sym__newline] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(1641), + [anon_sym_PIPE] = ACTIONS(1641), + [anon_sym_err_GT_PIPE] = ACTIONS(1641), + [anon_sym_out_GT_PIPE] = ACTIONS(1641), + [anon_sym_e_GT_PIPE] = ACTIONS(1641), + [anon_sym_o_GT_PIPE] = ACTIONS(1641), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(1641), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_RPAREN] = ACTIONS(1641), + [anon_sym_DOLLAR] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1639), + [aux_sym_ctrl_match_token1] = ACTIONS(1641), + [anon_sym_RBRACE] = ACTIONS(1641), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1641), + [anon_sym_DOT_DOT2] = ACTIONS(1639), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1639), + [anon_sym_DOT_DOT_LT] = ACTIONS(1639), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), + [aux_sym__val_number_decimal_token1] = ACTIONS(1639), + [aux_sym__val_number_decimal_token2] = ACTIONS(1641), + [aux_sym__val_number_decimal_token3] = ACTIONS(1641), + [aux_sym__val_number_decimal_token4] = ACTIONS(1641), + [aux_sym__val_number_token1] = ACTIONS(1641), + [aux_sym__val_number_token2] = ACTIONS(1641), + [aux_sym__val_number_token3] = ACTIONS(1641), + [anon_sym_0b] = ACTIONS(1639), + [sym_filesize_unit] = ACTIONS(1641), + [sym_duration_unit] = ACTIONS(1641), + [anon_sym_0o] = ACTIONS(1639), + [anon_sym_0x] = ACTIONS(1639), + [sym_val_date] = ACTIONS(1641), + [anon_sym_DQUOTE] = ACTIONS(1641), + [sym__str_single_quotes] = ACTIONS(1641), + [sym__str_back_ticks] = ACTIONS(1641), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1641), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1641), + [anon_sym_err_GT] = ACTIONS(1639), + [anon_sym_out_GT] = ACTIONS(1639), + [anon_sym_e_GT] = ACTIONS(1639), + [anon_sym_o_GT] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT] = ACTIONS(1639), + [anon_sym_err_GT_GT] = ACTIONS(1641), + [anon_sym_out_GT_GT] = ACTIONS(1641), + [anon_sym_e_GT_GT] = ACTIONS(1641), + [anon_sym_o_GT_GT] = ACTIONS(1641), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), + [aux_sym_unquoted_token1] = ACTIONS(1639), + [aux_sym_unquoted_token2] = ACTIONS(1639), [anon_sym_POUND] = ACTIONS(247), }, [1109] = { - [sym_expr_unary] = STATE(1163), - [sym__expr_unary_minus] = STATE(1154), - [sym_expr_binary] = STATE(1163), - [sym__expr_binary_expression] = STATE(1164), - [sym_expr_parenthesized] = STATE(1163), - [sym__val_range] = STATE(8013), - [sym__val_range_with_end] = STATE(7672), - [sym__value] = STATE(1163), - [sym_val_nothing] = STATE(1145), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(1145), - [sym_val_number] = STATE(1145), - [sym__val_number_decimal] = STATE(699), - [sym__val_number] = STATE(1140), - [sym_val_duration] = STATE(1145), - [sym_val_filesize] = STATE(1145), - [sym_val_binary] = STATE(1145), - [sym_val_string] = STATE(1145), - [sym__str_double_quotes] = STATE(1126), - [sym_val_interpolated] = STATE(1145), - [sym__inter_single_quotes] = STATE(1152), - [sym__inter_double_quotes] = STATE(1153), - [sym_val_list] = STATE(1145), - [sym_val_record] = STATE(1145), - [sym_val_table] = STATE(1145), - [sym_val_closure] = STATE(1145), - [sym_unquoted] = STATE(977), - [sym__unquoted_with_expr] = STATE(1165), - [sym__unquoted_anonymous_prefix] = STATE(6984), + [sym__val_range] = STATE(7772), + [sym__value] = STATE(5937), + [sym_val_nothing] = STATE(4784), + [sym_val_bool] = STATE(5806), + [sym_val_variable] = STATE(4784), + [sym_val_number] = STATE(4784), + [sym__val_number_decimal] = STATE(5227), + [sym__val_number] = STATE(4955), + [sym_val_duration] = STATE(4784), + [sym_val_filesize] = STATE(4784), + [sym_val_binary] = STATE(4784), + [sym_val_string] = STATE(4784), + [sym__str_double_quotes] = STATE(4704), + [sym_val_interpolated] = STATE(4784), + [sym__inter_single_quotes] = STATE(4879), + [sym__inter_double_quotes] = STATE(4781), + [sym_val_list] = STATE(4784), + [sym_val_record] = STATE(4784), + [sym_val_table] = STATE(4784), + [sym_val_closure] = STATE(4784), + [sym_unquoted] = STATE(5938), + [sym__unquoted_anonymous_prefix] = STATE(7683), [sym_comment] = STATE(1109), - [anon_sym_true] = ACTIONS(3437), - [anon_sym_false] = ACTIONS(3437), - [anon_sym_null] = ACTIONS(3439), - [aux_sym_cmd_identifier_token38] = ACTIONS(3441), - [aux_sym_cmd_identifier_token39] = ACTIONS(3441), - [aux_sym_cmd_identifier_token40] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_DOLLAR] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3449), - [aux_sym_ctrl_match_token1] = ACTIONS(3451), - [anon_sym_DOT_DOT] = ACTIONS(3453), - [aux_sym_expr_unary_token1] = ACTIONS(3455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), - [anon_sym_DOT_DOT_LT] = ACTIONS(3457), - [aux_sym__val_number_decimal_token1] = ACTIONS(3459), - [aux_sym__val_number_decimal_token2] = ACTIONS(3461), - [aux_sym__val_number_decimal_token3] = ACTIONS(3463), - [aux_sym__val_number_decimal_token4] = ACTIONS(3465), - [aux_sym__val_number_token1] = ACTIONS(3467), - [aux_sym__val_number_token2] = ACTIONS(3467), - [aux_sym__val_number_token3] = ACTIONS(3467), - [anon_sym_0b] = ACTIONS(3469), - [anon_sym_0o] = ACTIONS(3471), - [anon_sym_0x] = ACTIONS(3471), - [sym_val_date] = ACTIONS(3473), - [anon_sym_DQUOTE] = ACTIONS(3475), - [sym__str_single_quotes] = ACTIONS(3477), - [sym__str_back_ticks] = ACTIONS(3477), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3479), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3481), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3483), + [anon_sym_true] = ACTIONS(4057), + [anon_sym_false] = ACTIONS(4057), + [anon_sym_null] = ACTIONS(4059), + [aux_sym_cmd_identifier_token38] = ACTIONS(4095), + [aux_sym_cmd_identifier_token39] = ACTIONS(4095), + [aux_sym_cmd_identifier_token40] = ACTIONS(4095), + [anon_sym_LBRACK] = ACTIONS(4029), + [anon_sym_LPAREN] = ACTIONS(4031), + [anon_sym_DOLLAR] = ACTIONS(4033), + [aux_sym_ctrl_match_token1] = ACTIONS(4035), + [anon_sym_DOT_DOT] = ACTIONS(4037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4039), + [anon_sym_DOT_DOT_LT] = ACTIONS(4039), + [aux_sym__val_number_decimal_token1] = ACTIONS(4097), + [aux_sym__val_number_decimal_token2] = ACTIONS(4099), + [aux_sym__val_number_decimal_token3] = ACTIONS(4101), + [aux_sym__val_number_decimal_token4] = ACTIONS(4103), + [aux_sym__val_number_token1] = ACTIONS(3539), + [aux_sym__val_number_token2] = ACTIONS(3539), + [aux_sym__val_number_token3] = ACTIONS(3539), + [anon_sym_0b] = ACTIONS(3541), + [anon_sym_0o] = ACTIONS(3543), + [anon_sym_0x] = ACTIONS(3543), + [sym_val_date] = ACTIONS(4075), + [anon_sym_DQUOTE] = ACTIONS(4051), + [sym__str_single_quotes] = ACTIONS(4053), + [sym__str_back_ticks] = ACTIONS(4053), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(4055), [anon_sym_POUND] = ACTIONS(247), }, [1110] = { - [sym_expr_unary] = STATE(1163), - [sym__expr_unary_minus] = STATE(1154), - [sym_expr_binary] = STATE(1163), - [sym__expr_binary_expression] = STATE(1181), - [sym_expr_parenthesized] = STATE(1163), - [sym__val_range] = STATE(8013), - [sym__val_range_with_end] = STATE(7672), - [sym__value] = STATE(1163), - [sym_val_nothing] = STATE(1145), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(1145), - [sym_val_number] = STATE(1145), - [sym__val_number_decimal] = STATE(699), - [sym__val_number] = STATE(1140), - [sym_val_duration] = STATE(1145), - [sym_val_filesize] = STATE(1145), - [sym_val_binary] = STATE(1145), - [sym_val_string] = STATE(1145), - [sym__str_double_quotes] = STATE(1126), - [sym_val_interpolated] = STATE(1145), - [sym__inter_single_quotes] = STATE(1152), - [sym__inter_double_quotes] = STATE(1153), - [sym_val_list] = STATE(1145), - [sym_val_record] = STATE(1145), - [sym_val_table] = STATE(1145), - [sym_val_closure] = STATE(1145), - [sym_unquoted] = STATE(978), - [sym__unquoted_with_expr] = STATE(1166), - [sym__unquoted_anonymous_prefix] = STATE(6984), + [sym__val_range] = STATE(7772), + [sym__value] = STATE(5947), + [sym_val_nothing] = STATE(4784), + [sym_val_bool] = STATE(5806), + [sym_val_variable] = STATE(4784), + [sym_val_number] = STATE(4784), + [sym__val_number_decimal] = STATE(5195), + [sym__val_number] = STATE(3437), + [sym_val_duration] = STATE(4784), + [sym_val_filesize] = STATE(4784), + [sym_val_binary] = STATE(4784), + [sym_val_string] = STATE(4784), + [sym__str_double_quotes] = STATE(2643), + [sym_val_interpolated] = STATE(4784), + [sym__inter_single_quotes] = STATE(4879), + [sym__inter_double_quotes] = STATE(4781), + [sym_val_list] = STATE(4784), + [sym_val_record] = STATE(4784), + [sym_val_table] = STATE(4784), + [sym_val_closure] = STATE(4784), + [sym_unquoted] = STATE(5948), + [sym__unquoted_anonymous_prefix] = STATE(7683), [sym_comment] = STATE(1110), - [anon_sym_true] = ACTIONS(3437), - [anon_sym_false] = ACTIONS(3437), - [anon_sym_null] = ACTIONS(3439), - [aux_sym_cmd_identifier_token38] = ACTIONS(3441), - [aux_sym_cmd_identifier_token39] = ACTIONS(3441), - [aux_sym_cmd_identifier_token40] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_DOLLAR] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3449), - [aux_sym_ctrl_match_token1] = ACTIONS(3451), - [anon_sym_DOT_DOT] = ACTIONS(3453), - [aux_sym_expr_unary_token1] = ACTIONS(3455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), - [anon_sym_DOT_DOT_LT] = ACTIONS(3457), - [aux_sym__val_number_decimal_token1] = ACTIONS(3459), - [aux_sym__val_number_decimal_token2] = ACTIONS(3461), - [aux_sym__val_number_decimal_token3] = ACTIONS(3463), - [aux_sym__val_number_decimal_token4] = ACTIONS(3465), - [aux_sym__val_number_token1] = ACTIONS(3467), - [aux_sym__val_number_token2] = ACTIONS(3467), - [aux_sym__val_number_token3] = ACTIONS(3467), - [anon_sym_0b] = ACTIONS(3469), - [anon_sym_0o] = ACTIONS(3471), - [anon_sym_0x] = ACTIONS(3471), - [sym_val_date] = ACTIONS(3473), - [anon_sym_DQUOTE] = ACTIONS(3475), - [sym__str_single_quotes] = ACTIONS(3477), - [sym__str_back_ticks] = ACTIONS(3477), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3479), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3481), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3483), + [anon_sym_true] = ACTIONS(4057), + [anon_sym_false] = ACTIONS(4057), + [anon_sym_null] = ACTIONS(4059), + [aux_sym_cmd_identifier_token38] = ACTIONS(4061), + [aux_sym_cmd_identifier_token39] = ACTIONS(4061), + [aux_sym_cmd_identifier_token40] = ACTIONS(4061), + [anon_sym_LBRACK] = ACTIONS(4063), + [anon_sym_LPAREN] = ACTIONS(4031), + [anon_sym_DOLLAR] = ACTIONS(3991), + [aux_sym_ctrl_match_token1] = ACTIONS(4065), + [anon_sym_DOT_DOT] = ACTIONS(4037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4039), + [anon_sym_DOT_DOT_LT] = ACTIONS(4039), + [aux_sym__val_number_decimal_token1] = ACTIONS(4067), + [aux_sym__val_number_decimal_token2] = ACTIONS(4069), + [aux_sym__val_number_decimal_token3] = ACTIONS(4071), + [aux_sym__val_number_decimal_token4] = ACTIONS(4073), + [aux_sym__val_number_token1] = ACTIONS(3405), + [aux_sym__val_number_token2] = ACTIONS(3405), + [aux_sym__val_number_token3] = ACTIONS(3405), + [anon_sym_0b] = ACTIONS(3541), + [anon_sym_0o] = ACTIONS(3543), + [anon_sym_0x] = ACTIONS(3543), + [sym_val_date] = ACTIONS(4075), + [anon_sym_DQUOTE] = ACTIONS(3413), + [sym__str_single_quotes] = ACTIONS(3415), + [sym__str_back_ticks] = ACTIONS(3415), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(4055), [anon_sym_POUND] = ACTIONS(247), }, [1111] = { - [sym_expr_unary] = STATE(1163), - [sym__expr_unary_minus] = STATE(1154), - [sym_expr_binary] = STATE(1163), - [sym__expr_binary_expression] = STATE(1182), - [sym_expr_parenthesized] = STATE(1163), - [sym__val_range] = STATE(8013), - [sym__val_range_with_end] = STATE(7672), - [sym__value] = STATE(1163), - [sym_val_nothing] = STATE(1145), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(1145), - [sym_val_number] = STATE(1145), - [sym__val_number_decimal] = STATE(699), - [sym__val_number] = STATE(1140), - [sym_val_duration] = STATE(1145), - [sym_val_filesize] = STATE(1145), - [sym_val_binary] = STATE(1145), - [sym_val_string] = STATE(1145), - [sym__str_double_quotes] = STATE(1126), - [sym_val_interpolated] = STATE(1145), - [sym__inter_single_quotes] = STATE(1152), - [sym__inter_double_quotes] = STATE(1153), - [sym_val_list] = STATE(1145), - [sym_val_record] = STATE(1145), - [sym_val_table] = STATE(1145), - [sym_val_closure] = STATE(1145), - [sym_unquoted] = STATE(979), - [sym__unquoted_with_expr] = STATE(1167), - [sym__unquoted_anonymous_prefix] = STATE(6984), + [sym_cell_path] = STATE(1375), + [sym_path] = STATE(1252), [sym_comment] = STATE(1111), - [anon_sym_true] = ACTIONS(3437), - [anon_sym_false] = ACTIONS(3437), - [anon_sym_null] = ACTIONS(3439), - [aux_sym_cmd_identifier_token38] = ACTIONS(3441), - [aux_sym_cmd_identifier_token39] = ACTIONS(3441), - [aux_sym_cmd_identifier_token40] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_DOLLAR] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3449), - [aux_sym_ctrl_match_token1] = ACTIONS(3451), - [anon_sym_DOT_DOT] = ACTIONS(3453), - [aux_sym_expr_unary_token1] = ACTIONS(3455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), - [anon_sym_DOT_DOT_LT] = ACTIONS(3457), - [aux_sym__val_number_decimal_token1] = ACTIONS(3459), - [aux_sym__val_number_decimal_token2] = ACTIONS(3461), - [aux_sym__val_number_decimal_token3] = ACTIONS(3463), - [aux_sym__val_number_decimal_token4] = ACTIONS(3465), - [aux_sym__val_number_token1] = ACTIONS(3467), - [aux_sym__val_number_token2] = ACTIONS(3467), - [aux_sym__val_number_token3] = ACTIONS(3467), - [anon_sym_0b] = ACTIONS(3469), - [anon_sym_0o] = ACTIONS(3471), - [anon_sym_0x] = ACTIONS(3471), - [sym_val_date] = ACTIONS(3473), - [anon_sym_DQUOTE] = ACTIONS(3475), - [sym__str_single_quotes] = ACTIONS(3477), - [sym__str_back_ticks] = ACTIONS(3477), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3479), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3481), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3483), + [aux_sym_cell_path_repeat1] = STATE(1184), + [anon_sym_true] = ACTIONS(1013), + [anon_sym_false] = ACTIONS(1013), + [anon_sym_null] = ACTIONS(1013), + [aux_sym_cmd_identifier_token38] = ACTIONS(1013), + [aux_sym_cmd_identifier_token39] = ACTIONS(1013), + [aux_sym_cmd_identifier_token40] = ACTIONS(1013), + [sym__newline] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1013), + [anon_sym_PIPE] = ACTIONS(1013), + [anon_sym_err_GT_PIPE] = ACTIONS(1013), + [anon_sym_out_GT_PIPE] = ACTIONS(1013), + [anon_sym_e_GT_PIPE] = ACTIONS(1013), + [anon_sym_o_GT_PIPE] = ACTIONS(1013), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1013), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1013), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1013), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1013), + [anon_sym_LBRACK] = ACTIONS(1013), + [anon_sym_LPAREN] = ACTIONS(1013), + [anon_sym_RPAREN] = ACTIONS(1013), + [anon_sym_DOLLAR] = ACTIONS(1011), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_DASH] = ACTIONS(1011), + [aux_sym_ctrl_match_token1] = ACTIONS(1013), + [anon_sym_RBRACE] = ACTIONS(1013), + [anon_sym_DOT_DOT] = ACTIONS(1011), + [anon_sym_DOT_DOT2] = ACTIONS(1011), + [anon_sym_DOT] = ACTIONS(4021), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1011), + [anon_sym_DOT_DOT_LT] = ACTIONS(1011), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1013), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1013), + [aux_sym__val_number_decimal_token1] = ACTIONS(1011), + [aux_sym__val_number_decimal_token2] = ACTIONS(1013), + [aux_sym__val_number_decimal_token3] = ACTIONS(1013), + [aux_sym__val_number_decimal_token4] = ACTIONS(1013), + [aux_sym__val_number_token1] = ACTIONS(1013), + [aux_sym__val_number_token2] = ACTIONS(1013), + [aux_sym__val_number_token3] = ACTIONS(1013), + [anon_sym_0b] = ACTIONS(1011), + [anon_sym_0o] = ACTIONS(1011), + [anon_sym_0x] = ACTIONS(1011), + [sym_val_date] = ACTIONS(1013), + [anon_sym_DQUOTE] = ACTIONS(1013), + [sym__str_single_quotes] = ACTIONS(1013), + [sym__str_back_ticks] = ACTIONS(1013), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1013), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1013), + [anon_sym_err_GT] = ACTIONS(1011), + [anon_sym_out_GT] = ACTIONS(1011), + [anon_sym_e_GT] = ACTIONS(1011), + [anon_sym_o_GT] = ACTIONS(1011), + [anon_sym_err_PLUSout_GT] = ACTIONS(1011), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1011), + [anon_sym_o_PLUSe_GT] = ACTIONS(1011), + [anon_sym_e_PLUSo_GT] = ACTIONS(1011), + [anon_sym_err_GT_GT] = ACTIONS(1013), + [anon_sym_out_GT_GT] = ACTIONS(1013), + [anon_sym_e_GT_GT] = ACTIONS(1013), + [anon_sym_o_GT_GT] = ACTIONS(1013), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1013), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1013), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1013), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1013), + [aux_sym_unquoted_token1] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(247), }, [1112] = { - [sym_expr_unary] = STATE(1163), - [sym__expr_unary_minus] = STATE(1154), - [sym_expr_binary] = STATE(1163), - [sym__expr_binary_expression] = STATE(1183), - [sym_expr_parenthesized] = STATE(1163), - [sym__val_range] = STATE(8013), - [sym__val_range_with_end] = STATE(7672), - [sym__value] = STATE(1163), - [sym_val_nothing] = STATE(1145), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(1145), - [sym_val_number] = STATE(1145), - [sym__val_number_decimal] = STATE(699), - [sym__val_number] = STATE(1140), - [sym_val_duration] = STATE(1145), - [sym_val_filesize] = STATE(1145), - [sym_val_binary] = STATE(1145), - [sym_val_string] = STATE(1145), - [sym__str_double_quotes] = STATE(1126), - [sym_val_interpolated] = STATE(1145), - [sym__inter_single_quotes] = STATE(1152), - [sym__inter_double_quotes] = STATE(1153), - [sym_val_list] = STATE(1145), - [sym_val_record] = STATE(1145), - [sym_val_table] = STATE(1145), - [sym_val_closure] = STATE(1145), - [sym_unquoted] = STATE(980), - [sym__unquoted_with_expr] = STATE(1168), - [sym__unquoted_anonymous_prefix] = STATE(6984), [sym_comment] = STATE(1112), - [anon_sym_true] = ACTIONS(3437), - [anon_sym_false] = ACTIONS(3437), - [anon_sym_null] = ACTIONS(3439), - [aux_sym_cmd_identifier_token38] = ACTIONS(3441), - [aux_sym_cmd_identifier_token39] = ACTIONS(3441), - [aux_sym_cmd_identifier_token40] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_DOLLAR] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3449), - [aux_sym_ctrl_match_token1] = ACTIONS(3451), - [anon_sym_DOT_DOT] = ACTIONS(3453), - [aux_sym_expr_unary_token1] = ACTIONS(3455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), - [anon_sym_DOT_DOT_LT] = ACTIONS(3457), - [aux_sym__val_number_decimal_token1] = ACTIONS(3459), - [aux_sym__val_number_decimal_token2] = ACTIONS(3461), - [aux_sym__val_number_decimal_token3] = ACTIONS(3463), - [aux_sym__val_number_decimal_token4] = ACTIONS(3465), - [aux_sym__val_number_token1] = ACTIONS(3467), - [aux_sym__val_number_token2] = ACTIONS(3467), - [aux_sym__val_number_token3] = ACTIONS(3467), - [anon_sym_0b] = ACTIONS(3469), - [anon_sym_0o] = ACTIONS(3471), - [anon_sym_0x] = ACTIONS(3471), - [sym_val_date] = ACTIONS(3473), - [anon_sym_DQUOTE] = ACTIONS(3475), - [sym__str_single_quotes] = ACTIONS(3477), - [sym__str_back_ticks] = ACTIONS(3477), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3479), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3481), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3483), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [aux_sym_cmd_identifier_token38] = ACTIONS(1645), + [aux_sym_cmd_identifier_token39] = ACTIONS(1645), + [aux_sym_cmd_identifier_token40] = ACTIONS(1645), + [sym__newline] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_err_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_GT_PIPE] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), + [anon_sym_LBRACK] = ACTIONS(1645), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_RPAREN] = ACTIONS(1645), + [anon_sym_DOLLAR] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_DASH] = ACTIONS(1643), + [aux_sym_ctrl_match_token1] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(1645), + [anon_sym_DOT_DOT] = ACTIONS(1643), + [anon_sym_LPAREN2] = ACTIONS(1645), + [anon_sym_DOT_DOT2] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(4105), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), + [anon_sym_DOT_DOT_LT] = ACTIONS(1643), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), + [aux_sym__immediate_decimal_token2] = ACTIONS(4107), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1645), + [aux_sym__val_number_decimal_token3] = ACTIONS(1645), + [aux_sym__val_number_decimal_token4] = ACTIONS(1645), + [aux_sym__val_number_token1] = ACTIONS(1645), + [aux_sym__val_number_token2] = ACTIONS(1645), + [aux_sym__val_number_token3] = ACTIONS(1645), + [anon_sym_0b] = ACTIONS(1643), + [anon_sym_0o] = ACTIONS(1643), + [anon_sym_0x] = ACTIONS(1643), + [sym_val_date] = ACTIONS(1645), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym__str_single_quotes] = ACTIONS(1645), + [sym__str_back_ticks] = ACTIONS(1645), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1645), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1645), + [anon_sym_err_GT] = ACTIONS(1643), + [anon_sym_out_GT] = ACTIONS(1643), + [anon_sym_e_GT] = ACTIONS(1643), + [anon_sym_o_GT] = ACTIONS(1643), + [anon_sym_err_PLUSout_GT] = ACTIONS(1643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), + [anon_sym_o_PLUSe_GT] = ACTIONS(1643), + [anon_sym_e_PLUSo_GT] = ACTIONS(1643), + [anon_sym_err_GT_GT] = ACTIONS(1645), + [anon_sym_out_GT_GT] = ACTIONS(1645), + [anon_sym_e_GT_GT] = ACTIONS(1645), + [anon_sym_o_GT_GT] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [aux_sym_unquoted_token1] = ACTIONS(1643), + [aux_sym_unquoted_token2] = ACTIONS(1643), [anon_sym_POUND] = ACTIONS(247), }, [1113] = { - [sym_expr_unary] = STATE(1163), - [sym__expr_unary_minus] = STATE(1154), - [sym_expr_binary] = STATE(1163), - [sym__expr_binary_expression] = STATE(1184), - [sym_expr_parenthesized] = STATE(1163), - [sym__val_range] = STATE(8013), - [sym__val_range_with_end] = STATE(7672), - [sym__value] = STATE(1163), - [sym_val_nothing] = STATE(1145), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(1145), - [sym_val_number] = STATE(1145), - [sym__val_number_decimal] = STATE(699), - [sym__val_number] = STATE(1140), - [sym_val_duration] = STATE(1145), - [sym_val_filesize] = STATE(1145), - [sym_val_binary] = STATE(1145), - [sym_val_string] = STATE(1145), - [sym__str_double_quotes] = STATE(1126), - [sym_val_interpolated] = STATE(1145), - [sym__inter_single_quotes] = STATE(1152), - [sym__inter_double_quotes] = STATE(1153), - [sym_val_list] = STATE(1145), - [sym_val_record] = STATE(1145), - [sym_val_table] = STATE(1145), - [sym_val_closure] = STATE(1145), - [sym_unquoted] = STATE(981), - [sym__unquoted_with_expr] = STATE(1207), - [sym__unquoted_anonymous_prefix] = STATE(6984), + [sym__val_range] = STATE(7772), + [sym__value] = STATE(5988), + [sym_val_nothing] = STATE(4784), + [sym_val_bool] = STATE(5806), + [sym_val_variable] = STATE(4784), + [sym_val_number] = STATE(4784), + [sym__val_number_decimal] = STATE(5227), + [sym__val_number] = STATE(4955), + [sym_val_duration] = STATE(4784), + [sym_val_filesize] = STATE(4784), + [sym_val_binary] = STATE(4784), + [sym_val_string] = STATE(4784), + [sym__str_double_quotes] = STATE(4704), + [sym_val_interpolated] = STATE(4784), + [sym__inter_single_quotes] = STATE(4879), + [sym__inter_double_quotes] = STATE(4781), + [sym_val_list] = STATE(4784), + [sym_val_record] = STATE(4784), + [sym_val_table] = STATE(4784), + [sym_val_closure] = STATE(4784), + [sym_unquoted] = STATE(5989), + [sym__unquoted_anonymous_prefix] = STATE(7683), [sym_comment] = STATE(1113), - [anon_sym_true] = ACTIONS(3437), - [anon_sym_false] = ACTIONS(3437), - [anon_sym_null] = ACTIONS(3439), - [aux_sym_cmd_identifier_token38] = ACTIONS(3441), - [aux_sym_cmd_identifier_token39] = ACTIONS(3441), - [aux_sym_cmd_identifier_token40] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_DOLLAR] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3449), - [aux_sym_ctrl_match_token1] = ACTIONS(3451), - [anon_sym_DOT_DOT] = ACTIONS(3453), - [aux_sym_expr_unary_token1] = ACTIONS(3455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), - [anon_sym_DOT_DOT_LT] = ACTIONS(3457), - [aux_sym__val_number_decimal_token1] = ACTIONS(3459), - [aux_sym__val_number_decimal_token2] = ACTIONS(3461), - [aux_sym__val_number_decimal_token3] = ACTIONS(3463), - [aux_sym__val_number_decimal_token4] = ACTIONS(3465), - [aux_sym__val_number_token1] = ACTIONS(3467), - [aux_sym__val_number_token2] = ACTIONS(3467), - [aux_sym__val_number_token3] = ACTIONS(3467), - [anon_sym_0b] = ACTIONS(3469), - [anon_sym_0o] = ACTIONS(3471), - [anon_sym_0x] = ACTIONS(3471), - [sym_val_date] = ACTIONS(3473), - [anon_sym_DQUOTE] = ACTIONS(3475), - [sym__str_single_quotes] = ACTIONS(3477), - [sym__str_back_ticks] = ACTIONS(3477), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3479), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3481), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3483), + [anon_sym_true] = ACTIONS(4057), + [anon_sym_false] = ACTIONS(4057), + [anon_sym_null] = ACTIONS(4059), + [aux_sym_cmd_identifier_token38] = ACTIONS(4095), + [aux_sym_cmd_identifier_token39] = ACTIONS(4095), + [aux_sym_cmd_identifier_token40] = ACTIONS(4095), + [anon_sym_LBRACK] = ACTIONS(4029), + [anon_sym_LPAREN] = ACTIONS(4031), + [anon_sym_DOLLAR] = ACTIONS(4033), + [aux_sym_ctrl_match_token1] = ACTIONS(4035), + [anon_sym_DOT_DOT] = ACTIONS(4037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4039), + [anon_sym_DOT_DOT_LT] = ACTIONS(4039), + [aux_sym__val_number_decimal_token1] = ACTIONS(4097), + [aux_sym__val_number_decimal_token2] = ACTIONS(4099), + [aux_sym__val_number_decimal_token3] = ACTIONS(4101), + [aux_sym__val_number_decimal_token4] = ACTIONS(4103), + [aux_sym__val_number_token1] = ACTIONS(3539), + [aux_sym__val_number_token2] = ACTIONS(3539), + [aux_sym__val_number_token3] = ACTIONS(3539), + [anon_sym_0b] = ACTIONS(3541), + [anon_sym_0o] = ACTIONS(3543), + [anon_sym_0x] = ACTIONS(3543), + [sym_val_date] = ACTIONS(4075), + [anon_sym_DQUOTE] = ACTIONS(4051), + [sym__str_single_quotes] = ACTIONS(4053), + [sym__str_back_ticks] = ACTIONS(4053), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(4055), [anon_sym_POUND] = ACTIONS(247), }, [1114] = { - [sym_expr_unary] = STATE(1163), - [sym__expr_unary_minus] = STATE(1154), - [sym_expr_binary] = STATE(1163), - [sym__expr_binary_expression] = STATE(1185), - [sym_expr_parenthesized] = STATE(1163), - [sym__val_range] = STATE(8013), - [sym__val_range_with_end] = STATE(7672), - [sym__value] = STATE(1163), - [sym_val_nothing] = STATE(1145), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(1145), - [sym_val_number] = STATE(1145), - [sym__val_number_decimal] = STATE(699), - [sym__val_number] = STATE(1140), - [sym_val_duration] = STATE(1145), - [sym_val_filesize] = STATE(1145), - [sym_val_binary] = STATE(1145), - [sym_val_string] = STATE(1145), - [sym__str_double_quotes] = STATE(1126), - [sym_val_interpolated] = STATE(1145), - [sym__inter_single_quotes] = STATE(1152), - [sym__inter_double_quotes] = STATE(1153), - [sym_val_list] = STATE(1145), - [sym_val_record] = STATE(1145), - [sym_val_table] = STATE(1145), - [sym_val_closure] = STATE(1145), - [sym_unquoted] = STATE(982), - [sym__unquoted_with_expr] = STATE(1170), - [sym__unquoted_anonymous_prefix] = STATE(6984), [sym_comment] = STATE(1114), - [anon_sym_true] = ACTIONS(3437), - [anon_sym_false] = ACTIONS(3437), - [anon_sym_null] = ACTIONS(3439), - [aux_sym_cmd_identifier_token38] = ACTIONS(3441), - [aux_sym_cmd_identifier_token39] = ACTIONS(3441), - [aux_sym_cmd_identifier_token40] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_DOLLAR] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3449), - [aux_sym_ctrl_match_token1] = ACTIONS(3451), - [anon_sym_DOT_DOT] = ACTIONS(3453), - [aux_sym_expr_unary_token1] = ACTIONS(3455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), - [anon_sym_DOT_DOT_LT] = ACTIONS(3457), - [aux_sym__val_number_decimal_token1] = ACTIONS(3459), - [aux_sym__val_number_decimal_token2] = ACTIONS(3461), - [aux_sym__val_number_decimal_token3] = ACTIONS(3463), - [aux_sym__val_number_decimal_token4] = ACTIONS(3465), - [aux_sym__val_number_token1] = ACTIONS(3467), - [aux_sym__val_number_token2] = ACTIONS(3467), - [aux_sym__val_number_token3] = ACTIONS(3467), - [anon_sym_0b] = ACTIONS(3469), - [anon_sym_0o] = ACTIONS(3471), - [anon_sym_0x] = ACTIONS(3471), - [sym_val_date] = ACTIONS(3473), - [anon_sym_DQUOTE] = ACTIONS(3475), - [sym__str_single_quotes] = ACTIONS(3477), - [sym__str_back_ticks] = ACTIONS(3477), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3479), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3481), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3483), + [ts_builtin_sym_end] = ACTIONS(1499), + [anon_sym_true] = ACTIONS(1499), + [anon_sym_false] = ACTIONS(1499), + [anon_sym_null] = ACTIONS(1499), + [aux_sym_cmd_identifier_token38] = ACTIONS(1499), + [aux_sym_cmd_identifier_token39] = ACTIONS(1499), + [aux_sym_cmd_identifier_token40] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_DOLLAR] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1497), + [aux_sym_ctrl_match_token1] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1497), + [anon_sym_DOT_DOT2] = ACTIONS(1497), + [anon_sym_DOT] = ACTIONS(4109), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), + [anon_sym_DOT_DOT_LT] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), + [aux_sym__immediate_decimal_token2] = ACTIONS(4111), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1499), + [aux_sym__val_number_decimal_token4] = ACTIONS(1499), + [aux_sym__val_number_token1] = ACTIONS(1499), + [aux_sym__val_number_token2] = ACTIONS(1499), + [aux_sym__val_number_token3] = ACTIONS(1499), + [anon_sym_0b] = ACTIONS(1497), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1499), + [anon_sym_0o] = ACTIONS(1497), + [anon_sym_0x] = ACTIONS(1497), + [sym_val_date] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1499), + [sym__str_single_quotes] = ACTIONS(1499), + [sym__str_back_ticks] = ACTIONS(1499), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1499), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1499), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), + [aux_sym_unquoted_token1] = ACTIONS(1497), + [aux_sym_unquoted_token2] = ACTIONS(1497), [anon_sym_POUND] = ACTIONS(247), }, [1115] = { - [sym_expr_unary] = STATE(1163), - [sym__expr_unary_minus] = STATE(1154), - [sym_expr_binary] = STATE(1163), - [sym__expr_binary_expression] = STATE(1186), - [sym_expr_parenthesized] = STATE(1163), - [sym__val_range] = STATE(8013), - [sym__val_range_with_end] = STATE(7672), - [sym__value] = STATE(1163), - [sym_val_nothing] = STATE(1145), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(1145), - [sym_val_number] = STATE(1145), - [sym__val_number_decimal] = STATE(699), - [sym__val_number] = STATE(1140), - [sym_val_duration] = STATE(1145), - [sym_val_filesize] = STATE(1145), - [sym_val_binary] = STATE(1145), - [sym_val_string] = STATE(1145), - [sym__str_double_quotes] = STATE(1126), - [sym_val_interpolated] = STATE(1145), - [sym__inter_single_quotes] = STATE(1152), - [sym__inter_double_quotes] = STATE(1153), - [sym_val_list] = STATE(1145), - [sym_val_record] = STATE(1145), - [sym_val_table] = STATE(1145), - [sym_val_closure] = STATE(1145), - [sym_unquoted] = STATE(983), - [sym__unquoted_with_expr] = STATE(1171), - [sym__unquoted_anonymous_prefix] = STATE(6984), [sym_comment] = STATE(1115), - [anon_sym_true] = ACTIONS(3437), - [anon_sym_false] = ACTIONS(3437), - [anon_sym_null] = ACTIONS(3439), - [aux_sym_cmd_identifier_token38] = ACTIONS(3441), - [aux_sym_cmd_identifier_token39] = ACTIONS(3441), - [aux_sym_cmd_identifier_token40] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_DOLLAR] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3449), - [aux_sym_ctrl_match_token1] = ACTIONS(3451), - [anon_sym_DOT_DOT] = ACTIONS(3453), - [aux_sym_expr_unary_token1] = ACTIONS(3455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), - [anon_sym_DOT_DOT_LT] = ACTIONS(3457), - [aux_sym__val_number_decimal_token1] = ACTIONS(3459), - [aux_sym__val_number_decimal_token2] = ACTIONS(3461), - [aux_sym__val_number_decimal_token3] = ACTIONS(3463), - [aux_sym__val_number_decimal_token4] = ACTIONS(3465), - [aux_sym__val_number_token1] = ACTIONS(3467), - [aux_sym__val_number_token2] = ACTIONS(3467), - [aux_sym__val_number_token3] = ACTIONS(3467), - [anon_sym_0b] = ACTIONS(3469), - [anon_sym_0o] = ACTIONS(3471), - [anon_sym_0x] = ACTIONS(3471), - [sym_val_date] = ACTIONS(3473), - [anon_sym_DQUOTE] = ACTIONS(3475), - [sym__str_single_quotes] = ACTIONS(3477), - [sym__str_back_ticks] = ACTIONS(3477), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3479), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3481), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3483), + [ts_builtin_sym_end] = ACTIONS(1519), + [anon_sym_true] = ACTIONS(1519), + [anon_sym_false] = ACTIONS(1519), + [anon_sym_null] = ACTIONS(1519), + [aux_sym_cmd_identifier_token38] = ACTIONS(1519), + [aux_sym_cmd_identifier_token39] = ACTIONS(1519), + [aux_sym_cmd_identifier_token40] = ACTIONS(1519), + [sym__newline] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1519), + [anon_sym_err_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_GT_PIPE] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_DOLLAR] = ACTIONS(1517), + [anon_sym_DASH_DASH] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1517), + [aux_sym_ctrl_match_token1] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_DOT_DOT2] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1517), + [anon_sym_DOT_DOT_LT] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), + [aux_sym__immediate_decimal_token1] = ACTIONS(4113), + [aux_sym__immediate_decimal_token2] = ACTIONS(4115), + [aux_sym__val_number_decimal_token1] = ACTIONS(1517), + [aux_sym__val_number_decimal_token2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1519), + [aux_sym__val_number_token1] = ACTIONS(1519), + [aux_sym__val_number_token2] = ACTIONS(1519), + [aux_sym__val_number_token3] = ACTIONS(1519), + [anon_sym_0b] = ACTIONS(1517), + [sym_filesize_unit] = ACTIONS(1519), + [sym_duration_unit] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1517), + [sym_val_date] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1519), + [sym__str_single_quotes] = ACTIONS(1519), + [sym__str_back_ticks] = ACTIONS(1519), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1519), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1519), + [anon_sym_err_GT] = ACTIONS(1517), + [anon_sym_out_GT] = ACTIONS(1517), + [anon_sym_e_GT] = ACTIONS(1517), + [anon_sym_o_GT] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT] = ACTIONS(1517), + [anon_sym_err_GT_GT] = ACTIONS(1519), + [anon_sym_out_GT_GT] = ACTIONS(1519), + [anon_sym_e_GT_GT] = ACTIONS(1519), + [anon_sym_o_GT_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), + [aux_sym_unquoted_token1] = ACTIONS(1517), + [aux_sym_unquoted_token2] = ACTIONS(1517), [anon_sym_POUND] = ACTIONS(247), }, [1116] = { - [sym_expr_unary] = STATE(1163), - [sym__expr_unary_minus] = STATE(1154), - [sym_expr_binary] = STATE(1163), - [sym__expr_binary_expression] = STATE(1187), - [sym_expr_parenthesized] = STATE(1163), - [sym__val_range] = STATE(8013), - [sym__val_range_with_end] = STATE(7672), - [sym__value] = STATE(1163), - [sym_val_nothing] = STATE(1145), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(1145), - [sym_val_number] = STATE(1145), - [sym__val_number_decimal] = STATE(699), - [sym__val_number] = STATE(1140), - [sym_val_duration] = STATE(1145), - [sym_val_filesize] = STATE(1145), - [sym_val_binary] = STATE(1145), - [sym_val_string] = STATE(1145), - [sym__str_double_quotes] = STATE(1126), - [sym_val_interpolated] = STATE(1145), - [sym__inter_single_quotes] = STATE(1152), - [sym__inter_double_quotes] = STATE(1153), - [sym_val_list] = STATE(1145), - [sym_val_record] = STATE(1145), - [sym_val_table] = STATE(1145), - [sym_val_closure] = STATE(1145), - [sym_unquoted] = STATE(984), - [sym__unquoted_with_expr] = STATE(1172), - [sym__unquoted_anonymous_prefix] = STATE(6984), [sym_comment] = STATE(1116), - [anon_sym_true] = ACTIONS(3437), - [anon_sym_false] = ACTIONS(3437), - [anon_sym_null] = ACTIONS(3439), - [aux_sym_cmd_identifier_token38] = ACTIONS(3441), - [aux_sym_cmd_identifier_token39] = ACTIONS(3441), - [aux_sym_cmd_identifier_token40] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_DOLLAR] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3449), - [aux_sym_ctrl_match_token1] = ACTIONS(3451), - [anon_sym_DOT_DOT] = ACTIONS(3453), - [aux_sym_expr_unary_token1] = ACTIONS(3455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), - [anon_sym_DOT_DOT_LT] = ACTIONS(3457), - [aux_sym__val_number_decimal_token1] = ACTIONS(3459), - [aux_sym__val_number_decimal_token2] = ACTIONS(3461), - [aux_sym__val_number_decimal_token3] = ACTIONS(3463), - [aux_sym__val_number_decimal_token4] = ACTIONS(3465), - [aux_sym__val_number_token1] = ACTIONS(3467), - [aux_sym__val_number_token2] = ACTIONS(3467), - [aux_sym__val_number_token3] = ACTIONS(3467), - [anon_sym_0b] = ACTIONS(3469), - [anon_sym_0o] = ACTIONS(3471), - [anon_sym_0x] = ACTIONS(3471), - [sym_val_date] = ACTIONS(3473), - [anon_sym_DQUOTE] = ACTIONS(3475), - [sym__str_single_quotes] = ACTIONS(3477), - [sym__str_back_ticks] = ACTIONS(3477), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3479), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3481), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3483), + [anon_sym_EQ] = ACTIONS(1056), + [anon_sym_PLUS_EQ] = ACTIONS(1058), + [anon_sym_DASH_EQ] = ACTIONS(1058), + [anon_sym_STAR_EQ] = ACTIONS(1058), + [anon_sym_SLASH_EQ] = ACTIONS(1058), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1058), + [sym__newline] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1058), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_err_GT_PIPE] = ACTIONS(1058), + [anon_sym_out_GT_PIPE] = ACTIONS(1058), + [anon_sym_e_GT_PIPE] = ACTIONS(1058), + [anon_sym_o_GT_PIPE] = ACTIONS(1058), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1058), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1058), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1058), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1058), + [aux_sym_ctrl_match_token1] = ACTIONS(1058), + [anon_sym_RBRACE] = ACTIONS(1058), + [aux_sym_expr_binary_token1] = ACTIONS(1058), + [aux_sym_expr_binary_token2] = ACTIONS(1058), + [aux_sym_expr_binary_token3] = ACTIONS(1058), + [aux_sym_expr_binary_token4] = ACTIONS(1058), + [aux_sym_expr_binary_token5] = ACTIONS(1058), + [aux_sym_expr_binary_token6] = ACTIONS(1058), + [aux_sym_expr_binary_token7] = ACTIONS(1058), + [aux_sym_expr_binary_token8] = ACTIONS(1058), + [aux_sym_expr_binary_token9] = ACTIONS(1058), + [aux_sym_expr_binary_token10] = ACTIONS(1058), + [aux_sym_expr_binary_token11] = ACTIONS(1058), + [aux_sym_expr_binary_token12] = ACTIONS(1058), + [aux_sym_expr_binary_token13] = ACTIONS(1058), + [aux_sym_expr_binary_token14] = ACTIONS(1058), + [aux_sym_expr_binary_token15] = ACTIONS(1058), + [aux_sym_expr_binary_token16] = ACTIONS(1058), + [aux_sym_expr_binary_token17] = ACTIONS(1058), + [aux_sym_expr_binary_token18] = ACTIONS(1058), + [aux_sym_expr_binary_token19] = ACTIONS(1058), + [aux_sym_expr_binary_token20] = ACTIONS(1058), + [aux_sym_expr_binary_token21] = ACTIONS(1058), + [aux_sym_expr_binary_token22] = ACTIONS(1058), + [aux_sym_expr_binary_token23] = ACTIONS(1058), + [aux_sym_expr_binary_token24] = ACTIONS(1058), + [aux_sym_expr_binary_token25] = ACTIONS(1058), + [aux_sym_expr_binary_token26] = ACTIONS(1058), + [aux_sym_expr_binary_token27] = ACTIONS(1058), + [aux_sym_expr_binary_token28] = ACTIONS(1058), + [anon_sym_DOT_DOT2] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1058), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1058), + [aux_sym_record_entry_token1] = ACTIONS(1058), + [anon_sym_err_GT] = ACTIONS(1056), + [anon_sym_out_GT] = ACTIONS(1056), + [anon_sym_e_GT] = ACTIONS(1056), + [anon_sym_o_GT] = ACTIONS(1056), + [anon_sym_err_PLUSout_GT] = ACTIONS(1056), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1056), + [anon_sym_o_PLUSe_GT] = ACTIONS(1056), + [anon_sym_e_PLUSo_GT] = ACTIONS(1056), + [anon_sym_err_GT_GT] = ACTIONS(1058), + [anon_sym_out_GT_GT] = ACTIONS(1058), + [anon_sym_e_GT_GT] = ACTIONS(1058), + [anon_sym_o_GT_GT] = ACTIONS(1058), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1058), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1058), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1058), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1058), [anon_sym_POUND] = ACTIONS(247), }, [1117] = { - [sym_expr_unary] = STATE(1163), - [sym__expr_unary_minus] = STATE(1154), - [sym_expr_binary] = STATE(1163), - [sym__expr_binary_expression] = STATE(1190), - [sym_expr_parenthesized] = STATE(1163), - [sym__val_range] = STATE(8013), - [sym__val_range_with_end] = STATE(7672), - [sym__value] = STATE(1163), - [sym_val_nothing] = STATE(1145), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(1145), - [sym_val_number] = STATE(1145), - [sym__val_number_decimal] = STATE(699), - [sym__val_number] = STATE(1140), - [sym_val_duration] = STATE(1145), - [sym_val_filesize] = STATE(1145), - [sym_val_binary] = STATE(1145), - [sym_val_string] = STATE(1145), - [sym__str_double_quotes] = STATE(1126), - [sym_val_interpolated] = STATE(1145), - [sym__inter_single_quotes] = STATE(1152), - [sym__inter_double_quotes] = STATE(1153), - [sym_val_list] = STATE(1145), - [sym_val_record] = STATE(1145), - [sym_val_table] = STATE(1145), - [sym_val_closure] = STATE(1145), - [sym_unquoted] = STATE(975), - [sym__unquoted_with_expr] = STATE(1130), - [sym__unquoted_anonymous_prefix] = STATE(6984), + [sym__val_range] = STATE(7517), + [sym__value] = STATE(2620), + [sym_val_nothing] = STATE(2688), + [sym_val_bool] = STATE(2629), + [sym_val_variable] = STATE(2688), + [sym_val_number] = STATE(2688), + [sym__val_number_decimal] = STATE(2420), + [sym__val_number] = STATE(2686), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2763), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2787), + [sym__inter_double_quotes] = STATE(2687), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_unquoted] = STATE(2621), + [sym__unquoted_anonymous_prefix] = STATE(7477), [sym_comment] = STATE(1117), - [anon_sym_true] = ACTIONS(3437), - [anon_sym_false] = ACTIONS(3437), - [anon_sym_null] = ACTIONS(3439), - [aux_sym_cmd_identifier_token38] = ACTIONS(3441), - [aux_sym_cmd_identifier_token39] = ACTIONS(3441), - [aux_sym_cmd_identifier_token40] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_DOLLAR] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3449), - [aux_sym_ctrl_match_token1] = ACTIONS(3451), - [anon_sym_DOT_DOT] = ACTIONS(3453), - [aux_sym_expr_unary_token1] = ACTIONS(3455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), - [anon_sym_DOT_DOT_LT] = ACTIONS(3457), - [aux_sym__val_number_decimal_token1] = ACTIONS(3459), - [aux_sym__val_number_decimal_token2] = ACTIONS(3461), - [aux_sym__val_number_decimal_token3] = ACTIONS(3463), - [aux_sym__val_number_decimal_token4] = ACTIONS(3465), - [aux_sym__val_number_token1] = ACTIONS(3467), - [aux_sym__val_number_token2] = ACTIONS(3467), - [aux_sym__val_number_token3] = ACTIONS(3467), - [anon_sym_0b] = ACTIONS(3469), - [anon_sym_0o] = ACTIONS(3471), - [anon_sym_0x] = ACTIONS(3471), - [sym_val_date] = ACTIONS(3473), - [anon_sym_DQUOTE] = ACTIONS(3475), - [sym__str_single_quotes] = ACTIONS(3477), - [sym__str_back_ticks] = ACTIONS(3477), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3479), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3481), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3483), + [anon_sym_true] = ACTIONS(4117), + [anon_sym_false] = ACTIONS(4117), + [anon_sym_null] = ACTIONS(4119), + [aux_sym_cmd_identifier_token38] = ACTIONS(4121), + [aux_sym_cmd_identifier_token39] = ACTIONS(4121), + [aux_sym_cmd_identifier_token40] = ACTIONS(4121), + [anon_sym_LBRACK] = ACTIONS(4123), + [anon_sym_LPAREN] = ACTIONS(4125), + [anon_sym_DOLLAR] = ACTIONS(4127), + [aux_sym_ctrl_match_token1] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4133), + [anon_sym_DOT_DOT_LT] = ACTIONS(4133), + [aux_sym__val_number_decimal_token1] = ACTIONS(4135), + [aux_sym__val_number_decimal_token2] = ACTIONS(4137), + [aux_sym__val_number_decimal_token3] = ACTIONS(4139), + [aux_sym__val_number_decimal_token4] = ACTIONS(4141), + [aux_sym__val_number_token1] = ACTIONS(4143), + [aux_sym__val_number_token2] = ACTIONS(4143), + [aux_sym__val_number_token3] = ACTIONS(4143), + [anon_sym_0b] = ACTIONS(4145), + [anon_sym_0o] = ACTIONS(4147), + [anon_sym_0x] = ACTIONS(4147), + [sym_val_date] = ACTIONS(4149), + [anon_sym_DQUOTE] = ACTIONS(4151), + [sym__str_single_quotes] = ACTIONS(4153), + [sym__str_back_ticks] = ACTIONS(4153), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4155), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4157), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(4159), [anon_sym_POUND] = ACTIONS(247), }, [1118] = { - [sym_expr_unary] = STATE(1163), - [sym__expr_unary_minus] = STATE(1154), - [sym_expr_binary] = STATE(1163), - [sym__expr_binary_expression] = STATE(1191), - [sym_expr_parenthesized] = STATE(1163), - [sym__val_range] = STATE(8013), - [sym__val_range_with_end] = STATE(7672), - [sym__value] = STATE(1163), - [sym_val_nothing] = STATE(1145), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(1145), - [sym_val_number] = STATE(1145), - [sym__val_number_decimal] = STATE(699), - [sym__val_number] = STATE(1140), - [sym_val_duration] = STATE(1145), - [sym_val_filesize] = STATE(1145), - [sym_val_binary] = STATE(1145), - [sym_val_string] = STATE(1145), - [sym__str_double_quotes] = STATE(1126), - [sym_val_interpolated] = STATE(1145), - [sym__inter_single_quotes] = STATE(1152), - [sym__inter_double_quotes] = STATE(1153), - [sym_val_list] = STATE(1145), - [sym_val_record] = STATE(1145), - [sym_val_table] = STATE(1145), - [sym_val_closure] = STATE(1145), - [sym_unquoted] = STATE(992), - [sym__unquoted_with_expr] = STATE(1133), - [sym__unquoted_anonymous_prefix] = STATE(6984), + [sym__val_range] = STATE(7774), + [sym__value] = STATE(5937), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3524), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(5515), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(5938), + [sym__unquoted_anonymous_prefix] = STATE(7502), [sym_comment] = STATE(1118), - [anon_sym_true] = ACTIONS(3437), - [anon_sym_false] = ACTIONS(3437), - [anon_sym_null] = ACTIONS(3439), - [aux_sym_cmd_identifier_token38] = ACTIONS(3441), - [aux_sym_cmd_identifier_token39] = ACTIONS(3441), - [aux_sym_cmd_identifier_token40] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_DOLLAR] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3449), - [aux_sym_ctrl_match_token1] = ACTIONS(3451), - [anon_sym_DOT_DOT] = ACTIONS(3453), - [aux_sym_expr_unary_token1] = ACTIONS(3455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), - [anon_sym_DOT_DOT_LT] = ACTIONS(3457), - [aux_sym__val_number_decimal_token1] = ACTIONS(3459), - [aux_sym__val_number_decimal_token2] = ACTIONS(3461), - [aux_sym__val_number_decimal_token3] = ACTIONS(3463), - [aux_sym__val_number_decimal_token4] = ACTIONS(3465), - [aux_sym__val_number_token1] = ACTIONS(3467), - [aux_sym__val_number_token2] = ACTIONS(3467), - [aux_sym__val_number_token3] = ACTIONS(3467), - [anon_sym_0b] = ACTIONS(3469), - [anon_sym_0o] = ACTIONS(3471), - [anon_sym_0x] = ACTIONS(3471), - [sym_val_date] = ACTIONS(3473), - [anon_sym_DQUOTE] = ACTIONS(3475), - [sym__str_single_quotes] = ACTIONS(3477), - [sym__str_back_ticks] = ACTIONS(3477), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3479), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3481), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3483), + [anon_sym_true] = ACTIONS(3243), + [anon_sym_false] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [aux_sym_cmd_identifier_token38] = ACTIONS(3686), + [aux_sym_cmd_identifier_token39] = ACTIONS(3686), + [aux_sym_cmd_identifier_token40] = ACTIONS(3686), + [anon_sym_LBRACK] = ACTIONS(3688), + [anon_sym_LPAREN] = ACTIONS(4087), + [anon_sym_DOLLAR] = ACTIONS(4089), + [aux_sym_ctrl_match_token1] = ACTIONS(3694), + [anon_sym_DOT_DOT] = ACTIONS(4091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4093), + [anon_sym_DOT_DOT_LT] = ACTIONS(4093), + [aux_sym__val_number_decimal_token1] = ACTIONS(3263), + [aux_sym__val_number_decimal_token2] = ACTIONS(3265), + [aux_sym__val_number_decimal_token3] = ACTIONS(3267), + [aux_sym__val_number_decimal_token4] = ACTIONS(3269), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3271), + [anon_sym_DQUOTE] = ACTIONS(3700), + [sym__str_single_quotes] = ACTIONS(3702), + [sym__str_back_ticks] = ACTIONS(3702), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3704), [anon_sym_POUND] = ACTIONS(247), }, [1119] = { - [sym_expr_unary] = STATE(1163), - [sym__expr_unary_minus] = STATE(1154), - [sym_expr_binary] = STATE(1163), - [sym__expr_binary_expression] = STATE(1192), - [sym_expr_parenthesized] = STATE(1163), - [sym__val_range] = STATE(8013), - [sym__val_range_with_end] = STATE(7672), - [sym__value] = STATE(1163), - [sym_val_nothing] = STATE(1145), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(1145), - [sym_val_number] = STATE(1145), - [sym__val_number_decimal] = STATE(699), - [sym__val_number] = STATE(1140), - [sym_val_duration] = STATE(1145), - [sym_val_filesize] = STATE(1145), - [sym_val_binary] = STATE(1145), - [sym_val_string] = STATE(1145), - [sym__str_double_quotes] = STATE(1126), - [sym_val_interpolated] = STATE(1145), - [sym__inter_single_quotes] = STATE(1152), - [sym__inter_double_quotes] = STATE(1153), - [sym_val_list] = STATE(1145), - [sym_val_record] = STATE(1145), - [sym_val_table] = STATE(1145), - [sym_val_closure] = STATE(1145), - [sym_unquoted] = STATE(994), - [sym__unquoted_with_expr] = STATE(1142), - [sym__unquoted_anonymous_prefix] = STATE(6984), + [sym__val_range] = STATE(7772), + [sym__value] = STATE(5920), + [sym_val_nothing] = STATE(4784), + [sym_val_bool] = STATE(5806), + [sym_val_variable] = STATE(4784), + [sym_val_number] = STATE(4784), + [sym__val_number_decimal] = STATE(5227), + [sym__val_number] = STATE(4955), + [sym_val_duration] = STATE(4784), + [sym_val_filesize] = STATE(4784), + [sym_val_binary] = STATE(4784), + [sym_val_string] = STATE(4784), + [sym__str_double_quotes] = STATE(4704), + [sym_val_interpolated] = STATE(4784), + [sym__inter_single_quotes] = STATE(4879), + [sym__inter_double_quotes] = STATE(4781), + [sym_val_list] = STATE(4784), + [sym_val_record] = STATE(4784), + [sym_val_table] = STATE(4784), + [sym_val_closure] = STATE(4784), + [sym_unquoted] = STATE(5922), + [sym__unquoted_anonymous_prefix] = STATE(7683), [sym_comment] = STATE(1119), - [anon_sym_true] = ACTIONS(3437), - [anon_sym_false] = ACTIONS(3437), - [anon_sym_null] = ACTIONS(3439), - [aux_sym_cmd_identifier_token38] = ACTIONS(3441), - [aux_sym_cmd_identifier_token39] = ACTIONS(3441), - [aux_sym_cmd_identifier_token40] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_DOLLAR] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3449), - [aux_sym_ctrl_match_token1] = ACTIONS(3451), - [anon_sym_DOT_DOT] = ACTIONS(3453), - [aux_sym_expr_unary_token1] = ACTIONS(3455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), - [anon_sym_DOT_DOT_LT] = ACTIONS(3457), - [aux_sym__val_number_decimal_token1] = ACTIONS(3459), - [aux_sym__val_number_decimal_token2] = ACTIONS(3461), - [aux_sym__val_number_decimal_token3] = ACTIONS(3463), - [aux_sym__val_number_decimal_token4] = ACTIONS(3465), - [aux_sym__val_number_token1] = ACTIONS(3467), - [aux_sym__val_number_token2] = ACTIONS(3467), - [aux_sym__val_number_token3] = ACTIONS(3467), - [anon_sym_0b] = ACTIONS(3469), - [anon_sym_0o] = ACTIONS(3471), - [anon_sym_0x] = ACTIONS(3471), - [sym_val_date] = ACTIONS(3473), - [anon_sym_DQUOTE] = ACTIONS(3475), - [sym__str_single_quotes] = ACTIONS(3477), - [sym__str_back_ticks] = ACTIONS(3477), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3479), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3481), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3483), + [anon_sym_true] = ACTIONS(4057), + [anon_sym_false] = ACTIONS(4057), + [anon_sym_null] = ACTIONS(4059), + [aux_sym_cmd_identifier_token38] = ACTIONS(4095), + [aux_sym_cmd_identifier_token39] = ACTIONS(4095), + [aux_sym_cmd_identifier_token40] = ACTIONS(4095), + [anon_sym_LBRACK] = ACTIONS(4029), + [anon_sym_LPAREN] = ACTIONS(4031), + [anon_sym_DOLLAR] = ACTIONS(4033), + [aux_sym_ctrl_match_token1] = ACTIONS(4035), + [anon_sym_DOT_DOT] = ACTIONS(4037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4039), + [anon_sym_DOT_DOT_LT] = ACTIONS(4039), + [aux_sym__val_number_decimal_token1] = ACTIONS(4097), + [aux_sym__val_number_decimal_token2] = ACTIONS(4099), + [aux_sym__val_number_decimal_token3] = ACTIONS(4101), + [aux_sym__val_number_decimal_token4] = ACTIONS(4103), + [aux_sym__val_number_token1] = ACTIONS(3539), + [aux_sym__val_number_token2] = ACTIONS(3539), + [aux_sym__val_number_token3] = ACTIONS(3539), + [anon_sym_0b] = ACTIONS(3541), + [anon_sym_0o] = ACTIONS(3543), + [anon_sym_0x] = ACTIONS(3543), + [sym_val_date] = ACTIONS(4075), + [anon_sym_DQUOTE] = ACTIONS(4051), + [sym__str_single_quotes] = ACTIONS(4053), + [sym__str_back_ticks] = ACTIONS(4053), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(4055), [anon_sym_POUND] = ACTIONS(247), }, [1120] = { - [sym_expr_unary] = STATE(1163), - [sym__expr_unary_minus] = STATE(1154), - [sym_expr_binary] = STATE(1163), - [sym__expr_binary_expression] = STATE(1193), - [sym_expr_parenthesized] = STATE(1163), - [sym__val_range] = STATE(8013), - [sym__val_range_with_end] = STATE(7672), - [sym__value] = STATE(1163), - [sym_val_nothing] = STATE(1145), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(1145), - [sym_val_number] = STATE(1145), - [sym__val_number_decimal] = STATE(699), - [sym__val_number] = STATE(1140), - [sym_val_duration] = STATE(1145), - [sym_val_filesize] = STATE(1145), - [sym_val_binary] = STATE(1145), - [sym_val_string] = STATE(1145), - [sym__str_double_quotes] = STATE(1126), - [sym_val_interpolated] = STATE(1145), - [sym__inter_single_quotes] = STATE(1152), - [sym__inter_double_quotes] = STATE(1153), - [sym_val_list] = STATE(1145), - [sym_val_record] = STATE(1145), - [sym_val_table] = STATE(1145), - [sym_val_closure] = STATE(1145), - [sym_unquoted] = STATE(997), - [sym__unquoted_with_expr] = STATE(1143), - [sym__unquoted_anonymous_prefix] = STATE(6984), + [sym__val_range] = STATE(7633), + [sym__value] = STATE(5420), + [sym_val_nothing] = STATE(3939), + [sym_val_bool] = STATE(7382), + [sym_val_variable] = STATE(3939), + [sym_val_number] = STATE(3939), + [sym__val_number_decimal] = STATE(5596), + [sym__val_number] = STATE(3437), + [sym_val_duration] = STATE(3939), + [sym_val_filesize] = STATE(3939), + [sym_val_binary] = STATE(3939), + [sym_val_string] = STATE(3939), + [sym__str_double_quotes] = STATE(2643), + [sym_val_interpolated] = STATE(3939), + [sym__inter_single_quotes] = STATE(3938), + [sym__inter_double_quotes] = STATE(3966), + [sym_val_list] = STATE(3939), + [sym_val_record] = STATE(3939), + [sym_val_table] = STATE(3939), + [sym_val_closure] = STATE(3939), + [sym_unquoted] = STATE(5421), + [sym__unquoted_anonymous_prefix] = STATE(7531), [sym_comment] = STATE(1120), - [anon_sym_true] = ACTIONS(3437), - [anon_sym_false] = ACTIONS(3437), - [anon_sym_null] = ACTIONS(3439), - [aux_sym_cmd_identifier_token38] = ACTIONS(3441), - [aux_sym_cmd_identifier_token39] = ACTIONS(3441), - [aux_sym_cmd_identifier_token40] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_DOLLAR] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3449), - [aux_sym_ctrl_match_token1] = ACTIONS(3451), - [anon_sym_DOT_DOT] = ACTIONS(3453), - [aux_sym_expr_unary_token1] = ACTIONS(3455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), - [anon_sym_DOT_DOT_LT] = ACTIONS(3457), - [aux_sym__val_number_decimal_token1] = ACTIONS(3459), - [aux_sym__val_number_decimal_token2] = ACTIONS(3461), - [aux_sym__val_number_decimal_token3] = ACTIONS(3463), - [aux_sym__val_number_decimal_token4] = ACTIONS(3465), - [aux_sym__val_number_token1] = ACTIONS(3467), - [aux_sym__val_number_token2] = ACTIONS(3467), - [aux_sym__val_number_token3] = ACTIONS(3467), - [anon_sym_0b] = ACTIONS(3469), - [anon_sym_0o] = ACTIONS(3471), - [anon_sym_0x] = ACTIONS(3471), - [sym_val_date] = ACTIONS(3473), - [anon_sym_DQUOTE] = ACTIONS(3475), - [sym__str_single_quotes] = ACTIONS(3477), - [sym__str_back_ticks] = ACTIONS(3477), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3479), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3481), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3483), + [anon_sym_true] = ACTIONS(4161), + [anon_sym_false] = ACTIONS(4161), + [anon_sym_null] = ACTIONS(4163), + [aux_sym_cmd_identifier_token38] = ACTIONS(4165), + [aux_sym_cmd_identifier_token39] = ACTIONS(4165), + [aux_sym_cmd_identifier_token40] = ACTIONS(4165), + [anon_sym_LBRACK] = ACTIONS(3381), + [anon_sym_LPAREN] = ACTIONS(3989), + [anon_sym_DOLLAR] = ACTIONS(3991), + [aux_sym_ctrl_match_token1] = ACTIONS(3389), + [anon_sym_DOT_DOT] = ACTIONS(3993), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3995), + [anon_sym_DOT_DOT_LT] = ACTIONS(3995), + [aux_sym__val_number_decimal_token1] = ACTIONS(4167), + [aux_sym__val_number_decimal_token2] = ACTIONS(4169), + [aux_sym__val_number_decimal_token3] = ACTIONS(4171), + [aux_sym__val_number_decimal_token4] = ACTIONS(4173), + [aux_sym__val_number_token1] = ACTIONS(3405), + [aux_sym__val_number_token2] = ACTIONS(3405), + [aux_sym__val_number_token3] = ACTIONS(3405), + [anon_sym_0b] = ACTIONS(3407), + [anon_sym_0o] = ACTIONS(3409), + [anon_sym_0x] = ACTIONS(3409), + [sym_val_date] = ACTIONS(4175), + [anon_sym_DQUOTE] = ACTIONS(3413), + [sym__str_single_quotes] = ACTIONS(3415), + [sym__str_back_ticks] = ACTIONS(3415), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3417), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3421), [anon_sym_POUND] = ACTIONS(247), }, [1121] = { - [sym_expr_unary] = STATE(1163), - [sym__expr_unary_minus] = STATE(1154), - [sym_expr_binary] = STATE(1163), - [sym__expr_binary_expression] = STATE(1194), - [sym_expr_parenthesized] = STATE(1163), - [sym__val_range] = STATE(8013), - [sym__val_range_with_end] = STATE(7672), - [sym__value] = STATE(1163), - [sym_val_nothing] = STATE(1145), - [sym_val_bool] = STATE(970), - [sym_val_variable] = STATE(1145), - [sym_val_number] = STATE(1145), - [sym__val_number_decimal] = STATE(699), - [sym__val_number] = STATE(1140), - [sym_val_duration] = STATE(1145), - [sym_val_filesize] = STATE(1145), - [sym_val_binary] = STATE(1145), - [sym_val_string] = STATE(1145), - [sym__str_double_quotes] = STATE(1126), - [sym_val_interpolated] = STATE(1145), - [sym__inter_single_quotes] = STATE(1152), - [sym__inter_double_quotes] = STATE(1153), - [sym_val_list] = STATE(1145), - [sym_val_record] = STATE(1145), - [sym_val_table] = STATE(1145), - [sym_val_closure] = STATE(1145), - [sym_unquoted] = STATE(966), - [sym__unquoted_with_expr] = STATE(1144), - [sym__unquoted_anonymous_prefix] = STATE(6984), + [sym__val_range] = STATE(7772), + [sym__value] = STATE(5947), + [sym_val_nothing] = STATE(4784), + [sym_val_bool] = STATE(5806), + [sym_val_variable] = STATE(4784), + [sym_val_number] = STATE(4784), + [sym__val_number_decimal] = STATE(5227), + [sym__val_number] = STATE(4955), + [sym_val_duration] = STATE(4784), + [sym_val_filesize] = STATE(4784), + [sym_val_binary] = STATE(4784), + [sym_val_string] = STATE(4784), + [sym__str_double_quotes] = STATE(4704), + [sym_val_interpolated] = STATE(4784), + [sym__inter_single_quotes] = STATE(4879), + [sym__inter_double_quotes] = STATE(4781), + [sym_val_list] = STATE(4784), + [sym_val_record] = STATE(4784), + [sym_val_table] = STATE(4784), + [sym_val_closure] = STATE(4784), + [sym_unquoted] = STATE(5948), + [sym__unquoted_anonymous_prefix] = STATE(7683), [sym_comment] = STATE(1121), - [anon_sym_true] = ACTIONS(3437), - [anon_sym_false] = ACTIONS(3437), - [anon_sym_null] = ACTIONS(3439), - [aux_sym_cmd_identifier_token38] = ACTIONS(3441), - [aux_sym_cmd_identifier_token39] = ACTIONS(3441), - [aux_sym_cmd_identifier_token40] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_DOLLAR] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3449), - [aux_sym_ctrl_match_token1] = ACTIONS(3451), - [anon_sym_DOT_DOT] = ACTIONS(3453), - [aux_sym_expr_unary_token1] = ACTIONS(3455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), - [anon_sym_DOT_DOT_LT] = ACTIONS(3457), - [aux_sym__val_number_decimal_token1] = ACTIONS(3459), - [aux_sym__val_number_decimal_token2] = ACTIONS(3461), - [aux_sym__val_number_decimal_token3] = ACTIONS(3463), - [aux_sym__val_number_decimal_token4] = ACTIONS(3465), - [aux_sym__val_number_token1] = ACTIONS(3467), - [aux_sym__val_number_token2] = ACTIONS(3467), - [aux_sym__val_number_token3] = ACTIONS(3467), - [anon_sym_0b] = ACTIONS(3469), - [anon_sym_0o] = ACTIONS(3471), - [anon_sym_0x] = ACTIONS(3471), - [sym_val_date] = ACTIONS(3473), - [anon_sym_DQUOTE] = ACTIONS(3475), - [sym__str_single_quotes] = ACTIONS(3477), - [sym__str_back_ticks] = ACTIONS(3477), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3479), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3481), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3483), + [anon_sym_true] = ACTIONS(4057), + [anon_sym_false] = ACTIONS(4057), + [anon_sym_null] = ACTIONS(4059), + [aux_sym_cmd_identifier_token38] = ACTIONS(4095), + [aux_sym_cmd_identifier_token39] = ACTIONS(4095), + [aux_sym_cmd_identifier_token40] = ACTIONS(4095), + [anon_sym_LBRACK] = ACTIONS(4029), + [anon_sym_LPAREN] = ACTIONS(4031), + [anon_sym_DOLLAR] = ACTIONS(4033), + [aux_sym_ctrl_match_token1] = ACTIONS(4035), + [anon_sym_DOT_DOT] = ACTIONS(4037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4039), + [anon_sym_DOT_DOT_LT] = ACTIONS(4039), + [aux_sym__val_number_decimal_token1] = ACTIONS(4097), + [aux_sym__val_number_decimal_token2] = ACTIONS(4099), + [aux_sym__val_number_decimal_token3] = ACTIONS(4101), + [aux_sym__val_number_decimal_token4] = ACTIONS(4103), + [aux_sym__val_number_token1] = ACTIONS(3539), + [aux_sym__val_number_token2] = ACTIONS(3539), + [aux_sym__val_number_token3] = ACTIONS(3539), + [anon_sym_0b] = ACTIONS(3541), + [anon_sym_0o] = ACTIONS(3543), + [anon_sym_0x] = ACTIONS(3543), + [sym_val_date] = ACTIONS(4075), + [anon_sym_DQUOTE] = ACTIONS(4051), + [sym__str_single_quotes] = ACTIONS(4053), + [sym__str_back_ticks] = ACTIONS(4053), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(4055), [anon_sym_POUND] = ACTIONS(247), }, [1122] = { - [sym__expression] = STATE(7743), - [sym_expr_unary] = STATE(1690), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1690), - [sym__expr_binary_expression] = STATE(4067), - [sym_expr_parenthesized] = STATE(3761), - [sym_val_range] = STATE(3727), - [sym__val_range] = STATE(8049), - [sym__value] = STATE(1690), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3916), - [sym_val_variable] = STATE(3758), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3697), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1668), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(7744), - [sym__unquoted_anonymous_prefix] = STATE(7765), + [sym__val_range] = STATE(7633), + [sym__value] = STATE(5453), + [sym_val_nothing] = STATE(3939), + [sym_val_bool] = STATE(7382), + [sym_val_variable] = STATE(3939), + [sym_val_number] = STATE(3939), + [sym__val_number_decimal] = STATE(5596), + [sym__val_number] = STATE(3437), + [sym_val_duration] = STATE(3939), + [sym_val_filesize] = STATE(3939), + [sym_val_binary] = STATE(3939), + [sym_val_string] = STATE(3939), + [sym__str_double_quotes] = STATE(2643), + [sym_val_interpolated] = STATE(3939), + [sym__inter_single_quotes] = STATE(3938), + [sym__inter_double_quotes] = STATE(3966), + [sym_val_list] = STATE(3939), + [sym_val_record] = STATE(3939), + [sym_val_table] = STATE(3939), + [sym_val_closure] = STATE(3939), + [sym_unquoted] = STATE(5454), + [sym__unquoted_anonymous_prefix] = STATE(7531), [sym_comment] = STATE(1122), - [anon_sym_true] = ACTIONS(3213), - [anon_sym_false] = ACTIONS(3213), - [anon_sym_null] = ACTIONS(3215), - [aux_sym_cmd_identifier_token38] = ACTIONS(3217), - [aux_sym_cmd_identifier_token39] = ACTIONS(3217), - [aux_sym_cmd_identifier_token40] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(3223), - [aux_sym_expr_unary_token1] = ACTIONS(3225), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3227), - [anon_sym_DOT_DOT_LT] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3241), + [anon_sym_true] = ACTIONS(4161), + [anon_sym_false] = ACTIONS(4161), + [anon_sym_null] = ACTIONS(4163), + [aux_sym_cmd_identifier_token38] = ACTIONS(4165), + [aux_sym_cmd_identifier_token39] = ACTIONS(4165), + [aux_sym_cmd_identifier_token40] = ACTIONS(4165), + [anon_sym_LBRACK] = ACTIONS(3381), + [anon_sym_LPAREN] = ACTIONS(3989), + [anon_sym_DOLLAR] = ACTIONS(3991), + [aux_sym_ctrl_match_token1] = ACTIONS(3389), + [anon_sym_DOT_DOT] = ACTIONS(3993), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3995), + [anon_sym_DOT_DOT_LT] = ACTIONS(3995), + [aux_sym__val_number_decimal_token1] = ACTIONS(4167), + [aux_sym__val_number_decimal_token2] = ACTIONS(4169), + [aux_sym__val_number_decimal_token3] = ACTIONS(4171), + [aux_sym__val_number_decimal_token4] = ACTIONS(4173), + [aux_sym__val_number_token1] = ACTIONS(3405), + [aux_sym__val_number_token2] = ACTIONS(3405), + [aux_sym__val_number_token3] = ACTIONS(3405), + [anon_sym_0b] = ACTIONS(3407), + [anon_sym_0o] = ACTIONS(3409), + [anon_sym_0x] = ACTIONS(3409), + [sym_val_date] = ACTIONS(4175), + [anon_sym_DQUOTE] = ACTIONS(3413), + [sym__str_single_quotes] = ACTIONS(3415), + [sym__str_back_ticks] = ACTIONS(3415), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3417), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3421), [anon_sym_POUND] = ACTIONS(247), }, [1123] = { + [sym__val_range] = STATE(7633), + [sym__value] = STATE(5427), + [sym_val_nothing] = STATE(3939), + [sym_val_bool] = STATE(7382), + [sym_val_variable] = STATE(3939), + [sym_val_number] = STATE(3939), + [sym__val_number_decimal] = STATE(5596), + [sym__val_number] = STATE(3437), + [sym_val_duration] = STATE(3939), + [sym_val_filesize] = STATE(3939), + [sym_val_binary] = STATE(3939), + [sym_val_string] = STATE(3939), + [sym__str_double_quotes] = STATE(2643), + [sym_val_interpolated] = STATE(3939), + [sym__inter_single_quotes] = STATE(3938), + [sym__inter_double_quotes] = STATE(3966), + [sym_val_list] = STATE(3939), + [sym_val_record] = STATE(3939), + [sym_val_table] = STATE(3939), + [sym_val_closure] = STATE(3939), + [sym_unquoted] = STATE(5432), + [sym__unquoted_anonymous_prefix] = STATE(7531), [sym_comment] = STATE(1123), - [anon_sym_true] = ACTIONS(3485), - [anon_sym_false] = ACTIONS(3485), - [anon_sym_null] = ACTIONS(3485), - [aux_sym_cmd_identifier_token38] = ACTIONS(3485), - [aux_sym_cmd_identifier_token39] = ACTIONS(3485), - [aux_sym_cmd_identifier_token40] = ACTIONS(3485), - [sym__newline] = ACTIONS(3485), - [anon_sym_LBRACK] = ACTIONS(3485), - [anon_sym_LPAREN] = ACTIONS(3487), - [anon_sym_COMMA] = ACTIONS(3485), - [anon_sym_DOLLAR] = ACTIONS(3485), - [aux_sym_ctrl_match_token1] = ACTIONS(3485), - [anon_sym_RBRACE] = ACTIONS(3485), - [anon_sym__] = ACTIONS(3487), - [anon_sym_DOT_DOT] = ACTIONS(3487), - [anon_sym_LPAREN2] = ACTIONS(3485), - [aux_sym_expr_binary_token1] = ACTIONS(3485), - [aux_sym_expr_binary_token2] = ACTIONS(3485), - [aux_sym_expr_binary_token3] = ACTIONS(3485), - [aux_sym_expr_binary_token4] = ACTIONS(3485), - [aux_sym_expr_binary_token5] = ACTIONS(3485), - [aux_sym_expr_binary_token6] = ACTIONS(3485), - [aux_sym_expr_binary_token7] = ACTIONS(3485), - [aux_sym_expr_binary_token8] = ACTIONS(3485), - [aux_sym_expr_binary_token9] = ACTIONS(3485), - [aux_sym_expr_binary_token10] = ACTIONS(3485), - [aux_sym_expr_binary_token11] = ACTIONS(3485), - [aux_sym_expr_binary_token12] = ACTIONS(3485), - [aux_sym_expr_binary_token13] = ACTIONS(3485), - [aux_sym_expr_binary_token14] = ACTIONS(3485), - [aux_sym_expr_binary_token15] = ACTIONS(3485), - [aux_sym_expr_binary_token16] = ACTIONS(3485), - [aux_sym_expr_binary_token17] = ACTIONS(3485), - [aux_sym_expr_binary_token18] = ACTIONS(3485), - [aux_sym_expr_binary_token19] = ACTIONS(3485), - [aux_sym_expr_binary_token20] = ACTIONS(3485), - [aux_sym_expr_binary_token21] = ACTIONS(3485), - [aux_sym_expr_binary_token22] = ACTIONS(3485), - [aux_sym_expr_binary_token23] = ACTIONS(3485), - [aux_sym_expr_binary_token24] = ACTIONS(3485), - [aux_sym_expr_binary_token25] = ACTIONS(3485), - [aux_sym_expr_binary_token26] = ACTIONS(3485), - [aux_sym_expr_binary_token27] = ACTIONS(3485), - [aux_sym_expr_binary_token28] = ACTIONS(3485), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3485), - [anon_sym_DOT_DOT_LT] = ACTIONS(3485), - [aux_sym__val_number_decimal_token1] = ACTIONS(3487), - [aux_sym__val_number_decimal_token2] = ACTIONS(3485), - [aux_sym__val_number_decimal_token3] = ACTIONS(3485), - [aux_sym__val_number_decimal_token4] = ACTIONS(3485), - [aux_sym__val_number_token1] = ACTIONS(3485), - [aux_sym__val_number_token2] = ACTIONS(3485), - [aux_sym__val_number_token3] = ACTIONS(3485), - [anon_sym_0b] = ACTIONS(3487), - [anon_sym_0o] = ACTIONS(3487), - [anon_sym_0x] = ACTIONS(3487), - [sym_val_date] = ACTIONS(3485), - [anon_sym_DQUOTE] = ACTIONS(3485), - [sym__str_single_quotes] = ACTIONS(3485), - [sym__str_back_ticks] = ACTIONS(3485), - [anon_sym_err_GT] = ACTIONS(3487), - [anon_sym_out_GT] = ACTIONS(3487), - [anon_sym_e_GT] = ACTIONS(3487), - [anon_sym_o_GT] = ACTIONS(3487), - [anon_sym_err_PLUSout_GT] = ACTIONS(3487), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3487), - [anon_sym_o_PLUSe_GT] = ACTIONS(3487), - [anon_sym_e_PLUSo_GT] = ACTIONS(3487), - [anon_sym_err_GT_GT] = ACTIONS(3485), - [anon_sym_out_GT_GT] = ACTIONS(3485), - [anon_sym_e_GT_GT] = ACTIONS(3485), - [anon_sym_o_GT_GT] = ACTIONS(3485), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3485), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3485), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3485), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3485), - [aux_sym_unquoted_token1] = ACTIONS(3487), + [anon_sym_true] = ACTIONS(4161), + [anon_sym_false] = ACTIONS(4161), + [anon_sym_null] = ACTIONS(4163), + [aux_sym_cmd_identifier_token38] = ACTIONS(4165), + [aux_sym_cmd_identifier_token39] = ACTIONS(4165), + [aux_sym_cmd_identifier_token40] = ACTIONS(4165), + [anon_sym_LBRACK] = ACTIONS(3381), + [anon_sym_LPAREN] = ACTIONS(3989), + [anon_sym_DOLLAR] = ACTIONS(3991), + [aux_sym_ctrl_match_token1] = ACTIONS(3389), + [anon_sym_DOT_DOT] = ACTIONS(3993), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3995), + [anon_sym_DOT_DOT_LT] = ACTIONS(3995), + [aux_sym__val_number_decimal_token1] = ACTIONS(4167), + [aux_sym__val_number_decimal_token2] = ACTIONS(4169), + [aux_sym__val_number_decimal_token3] = ACTIONS(4171), + [aux_sym__val_number_decimal_token4] = ACTIONS(4173), + [aux_sym__val_number_token1] = ACTIONS(3405), + [aux_sym__val_number_token2] = ACTIONS(3405), + [aux_sym__val_number_token3] = ACTIONS(3405), + [anon_sym_0b] = ACTIONS(3407), + [anon_sym_0o] = ACTIONS(3409), + [anon_sym_0x] = ACTIONS(3409), + [sym_val_date] = ACTIONS(4175), + [anon_sym_DQUOTE] = ACTIONS(3413), + [sym__str_single_quotes] = ACTIONS(3415), + [sym__str_back_ticks] = ACTIONS(3415), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3417), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3421), [anon_sym_POUND] = ACTIONS(247), }, [1124] = { - [sym_expr_unary] = STATE(1747), - [sym__expr_unary_minus] = STATE(1709), - [sym_expr_binary] = STATE(1747), - [sym__expr_binary_expression] = STATE(3401), - [sym_expr_parenthesized] = STATE(1747), - [sym__val_range] = STATE(7890), - [sym__val_range_with_end] = STATE(7655), - [sym__value] = STATE(1747), - [sym_val_nothing] = STATE(1734), - [sym_val_bool] = STATE(3347), - [sym_val_variable] = STATE(1734), - [sym_val_number] = STATE(1734), - [sym__val_number_decimal] = STATE(3023), - [sym__val_number] = STATE(2278), - [sym_val_duration] = STATE(1734), - [sym_val_filesize] = STATE(1734), - [sym_val_binary] = STATE(1734), - [sym_val_string] = STATE(1734), - [sym__str_double_quotes] = STATE(1969), - [sym_val_interpolated] = STATE(1734), - [sym__inter_single_quotes] = STATE(1686), - [sym__inter_double_quotes] = STATE(1688), - [sym_val_list] = STATE(1734), - [sym_val_record] = STATE(1734), - [sym_val_table] = STATE(1734), - [sym_val_closure] = STATE(1734), - [sym_unquoted] = STATE(1595), - [sym__unquoted_with_expr] = STATE(1805), - [sym__unquoted_anonymous_prefix] = STATE(7332), + [sym__val_range] = STATE(7742), + [sym__value] = STATE(1793), + [sym_val_nothing] = STATE(1822), + [sym_val_bool] = STATE(1613), + [sym_val_variable] = STATE(1822), + [sym_val_number] = STATE(1822), + [sym__val_number_decimal] = STATE(1237), + [sym__val_number] = STATE(1866), + [sym_val_duration] = STATE(1822), + [sym_val_filesize] = STATE(1822), + [sym_val_binary] = STATE(1822), + [sym_val_string] = STATE(1822), + [sym__str_double_quotes] = STATE(1910), + [sym_val_interpolated] = STATE(1822), + [sym__inter_single_quotes] = STATE(1911), + [sym__inter_double_quotes] = STATE(1912), + [sym_val_list] = STATE(1822), + [sym_val_record] = STATE(1822), + [sym_val_table] = STATE(1822), + [sym_val_closure] = STATE(1822), + [sym_unquoted] = STATE(1794), + [sym__unquoted_anonymous_prefix] = STATE(7749), [sym_comment] = STATE(1124), - [anon_sym_true] = ACTIONS(3357), - [anon_sym_false] = ACTIONS(3357), - [anon_sym_null] = ACTIONS(3359), - [aux_sym_cmd_identifier_token38] = ACTIONS(3361), - [aux_sym_cmd_identifier_token39] = ACTIONS(3361), - [aux_sym_cmd_identifier_token40] = ACTIONS(3361), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_DOLLAR] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(397), - [aux_sym_ctrl_match_token1] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3303), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3305), - [anon_sym_DOT_DOT_LT] = ACTIONS(3305), - [aux_sym__val_number_decimal_token1] = ACTIONS(3363), - [aux_sym__val_number_decimal_token2] = ACTIONS(3365), - [aux_sym__val_number_decimal_token3] = ACTIONS(3367), - [aux_sym__val_number_decimal_token4] = ACTIONS(3369), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3307), + [anon_sym_true] = ACTIONS(4177), + [anon_sym_false] = ACTIONS(4177), + [anon_sym_null] = ACTIONS(4179), + [aux_sym_cmd_identifier_token38] = ACTIONS(4181), + [aux_sym_cmd_identifier_token39] = ACTIONS(4181), + [aux_sym_cmd_identifier_token40] = ACTIONS(4181), + [anon_sym_LBRACK] = ACTIONS(2760), + [anon_sym_LPAREN] = ACTIONS(4183), + [anon_sym_DOLLAR] = ACTIONS(3934), + [aux_sym_ctrl_match_token1] = ACTIONS(2770), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), + [anon_sym_DOT_DOT_LT] = ACTIONS(4187), + [aux_sym__val_number_decimal_token1] = ACTIONS(4189), + [aux_sym__val_number_decimal_token2] = ACTIONS(4191), + [aux_sym__val_number_decimal_token3] = ACTIONS(4193), + [aux_sym__val_number_decimal_token4] = ACTIONS(4195), + [aux_sym__val_number_token1] = ACTIONS(2784), + [aux_sym__val_number_token2] = ACTIONS(2784), + [aux_sym__val_number_token3] = ACTIONS(2784), + [anon_sym_0b] = ACTIONS(2786), + [anon_sym_0o] = ACTIONS(2788), + [anon_sym_0x] = ACTIONS(2788), + [sym_val_date] = ACTIONS(4197), + [anon_sym_DQUOTE] = ACTIONS(2792), + [sym__str_single_quotes] = ACTIONS(2794), + [sym__str_back_ticks] = ACTIONS(2794), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2796), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2798), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(4199), [anon_sym_POUND] = ACTIONS(247), }, [1125] = { + [sym__val_range] = STATE(7633), + [sym__value] = STATE(5478), + [sym_val_nothing] = STATE(3939), + [sym_val_bool] = STATE(7382), + [sym_val_variable] = STATE(3939), + [sym_val_number] = STATE(3939), + [sym__val_number_decimal] = STATE(5596), + [sym__val_number] = STATE(3437), + [sym_val_duration] = STATE(3939), + [sym_val_filesize] = STATE(3939), + [sym_val_binary] = STATE(3939), + [sym_val_string] = STATE(3939), + [sym__str_double_quotes] = STATE(2643), + [sym_val_interpolated] = STATE(3939), + [sym__inter_single_quotes] = STATE(3938), + [sym__inter_double_quotes] = STATE(3966), + [sym_val_list] = STATE(3939), + [sym_val_record] = STATE(3939), + [sym_val_table] = STATE(3939), + [sym_val_closure] = STATE(3939), + [sym_unquoted] = STATE(5479), + [sym__unquoted_anonymous_prefix] = STATE(7531), [sym_comment] = STATE(1125), - [anon_sym_true] = ACTIONS(2361), - [anon_sym_false] = ACTIONS(2361), - [anon_sym_null] = ACTIONS(2361), - [aux_sym_cmd_identifier_token38] = ACTIONS(2361), - [aux_sym_cmd_identifier_token39] = ACTIONS(2361), - [aux_sym_cmd_identifier_token40] = ACTIONS(2361), - [sym__newline] = ACTIONS(2361), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2361), - [anon_sym_COMMA] = ACTIONS(2361), - [anon_sym_DOLLAR] = ACTIONS(2361), - [aux_sym_ctrl_match_token1] = ACTIONS(2361), - [anon_sym_RBRACE] = ACTIONS(2361), - [anon_sym__] = ACTIONS(2359), - [anon_sym_DOT_DOT] = ACTIONS(2359), - [aux_sym_expr_binary_token1] = ACTIONS(2361), - [aux_sym_expr_binary_token2] = ACTIONS(2361), - [aux_sym_expr_binary_token3] = ACTIONS(2361), - [aux_sym_expr_binary_token4] = ACTIONS(2361), - [aux_sym_expr_binary_token5] = ACTIONS(2361), - [aux_sym_expr_binary_token6] = ACTIONS(2361), - [aux_sym_expr_binary_token7] = ACTIONS(2361), - [aux_sym_expr_binary_token8] = ACTIONS(2361), - [aux_sym_expr_binary_token9] = ACTIONS(2361), - [aux_sym_expr_binary_token10] = ACTIONS(2361), - [aux_sym_expr_binary_token11] = ACTIONS(2361), - [aux_sym_expr_binary_token12] = ACTIONS(2361), - [aux_sym_expr_binary_token13] = ACTIONS(2361), - [aux_sym_expr_binary_token14] = ACTIONS(2361), - [aux_sym_expr_binary_token15] = ACTIONS(2361), - [aux_sym_expr_binary_token16] = ACTIONS(2361), - [aux_sym_expr_binary_token17] = ACTIONS(2361), - [aux_sym_expr_binary_token18] = ACTIONS(2361), - [aux_sym_expr_binary_token19] = ACTIONS(2361), - [aux_sym_expr_binary_token20] = ACTIONS(2361), - [aux_sym_expr_binary_token21] = ACTIONS(2361), - [aux_sym_expr_binary_token22] = ACTIONS(2361), - [aux_sym_expr_binary_token23] = ACTIONS(2361), - [aux_sym_expr_binary_token24] = ACTIONS(2361), - [aux_sym_expr_binary_token25] = ACTIONS(2361), - [aux_sym_expr_binary_token26] = ACTIONS(2361), - [aux_sym_expr_binary_token27] = ACTIONS(2361), - [aux_sym_expr_binary_token28] = ACTIONS(2361), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2361), - [anon_sym_DOT_DOT_LT] = ACTIONS(2361), - [aux_sym__val_number_decimal_token1] = ACTIONS(2359), - [aux_sym__val_number_decimal_token2] = ACTIONS(2361), - [aux_sym__val_number_decimal_token3] = ACTIONS(2361), - [aux_sym__val_number_decimal_token4] = ACTIONS(2361), - [aux_sym__val_number_token1] = ACTIONS(2361), - [aux_sym__val_number_token2] = ACTIONS(2361), - [aux_sym__val_number_token3] = ACTIONS(2361), - [anon_sym_0b] = ACTIONS(2359), - [anon_sym_0o] = ACTIONS(2359), - [anon_sym_0x] = ACTIONS(2359), - [sym_val_date] = ACTIONS(2361), - [anon_sym_DQUOTE] = ACTIONS(2361), - [sym__str_single_quotes] = ACTIONS(2361), - [sym__str_back_ticks] = ACTIONS(2361), - [anon_sym_err_GT] = ACTIONS(2359), - [anon_sym_out_GT] = ACTIONS(2359), - [anon_sym_e_GT] = ACTIONS(2359), - [anon_sym_o_GT] = ACTIONS(2359), - [anon_sym_err_PLUSout_GT] = ACTIONS(2359), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2359), - [anon_sym_o_PLUSe_GT] = ACTIONS(2359), - [anon_sym_e_PLUSo_GT] = ACTIONS(2359), - [anon_sym_err_GT_GT] = ACTIONS(2361), - [anon_sym_out_GT_GT] = ACTIONS(2361), - [anon_sym_e_GT_GT] = ACTIONS(2361), - [anon_sym_o_GT_GT] = ACTIONS(2361), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2361), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2361), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2361), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2361), - [aux_sym_unquoted_token1] = ACTIONS(2359), + [anon_sym_true] = ACTIONS(4161), + [anon_sym_false] = ACTIONS(4161), + [anon_sym_null] = ACTIONS(4163), + [aux_sym_cmd_identifier_token38] = ACTIONS(4165), + [aux_sym_cmd_identifier_token39] = ACTIONS(4165), + [aux_sym_cmd_identifier_token40] = ACTIONS(4165), + [anon_sym_LBRACK] = ACTIONS(3381), + [anon_sym_LPAREN] = ACTIONS(3989), + [anon_sym_DOLLAR] = ACTIONS(3991), + [aux_sym_ctrl_match_token1] = ACTIONS(3389), + [anon_sym_DOT_DOT] = ACTIONS(3993), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3995), + [anon_sym_DOT_DOT_LT] = ACTIONS(3995), + [aux_sym__val_number_decimal_token1] = ACTIONS(4167), + [aux_sym__val_number_decimal_token2] = ACTIONS(4169), + [aux_sym__val_number_decimal_token3] = ACTIONS(4171), + [aux_sym__val_number_decimal_token4] = ACTIONS(4173), + [aux_sym__val_number_token1] = ACTIONS(3405), + [aux_sym__val_number_token2] = ACTIONS(3405), + [aux_sym__val_number_token3] = ACTIONS(3405), + [anon_sym_0b] = ACTIONS(3407), + [anon_sym_0o] = ACTIONS(3409), + [anon_sym_0x] = ACTIONS(3409), + [sym_val_date] = ACTIONS(4175), + [anon_sym_DQUOTE] = ACTIONS(3413), + [sym__str_single_quotes] = ACTIONS(3415), + [sym__str_back_ticks] = ACTIONS(3415), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3417), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3421), [anon_sym_POUND] = ACTIONS(247), }, [1126] = { + [sym__val_range] = STATE(7742), + [sym__value] = STATE(1798), + [sym_val_nothing] = STATE(1822), + [sym_val_bool] = STATE(1613), + [sym_val_variable] = STATE(1822), + [sym_val_number] = STATE(1822), + [sym__val_number_decimal] = STATE(1237), + [sym__val_number] = STATE(1866), + [sym_val_duration] = STATE(1822), + [sym_val_filesize] = STATE(1822), + [sym_val_binary] = STATE(1822), + [sym_val_string] = STATE(1822), + [sym__str_double_quotes] = STATE(1910), + [sym_val_interpolated] = STATE(1822), + [sym__inter_single_quotes] = STATE(1911), + [sym__inter_double_quotes] = STATE(1912), + [sym_val_list] = STATE(1822), + [sym_val_record] = STATE(1822), + [sym_val_table] = STATE(1822), + [sym_val_closure] = STATE(1822), + [sym_unquoted] = STATE(1799), + [sym__unquoted_anonymous_prefix] = STATE(7749), [sym_comment] = STATE(1126), - [anon_sym_true] = ACTIONS(968), - [anon_sym_false] = ACTIONS(968), - [anon_sym_null] = ACTIONS(968), - [aux_sym_cmd_identifier_token38] = ACTIONS(968), - [aux_sym_cmd_identifier_token39] = ACTIONS(968), - [aux_sym_cmd_identifier_token40] = ACTIONS(968), - [sym__newline] = ACTIONS(968), - [anon_sym_LBRACK] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_COMMA] = ACTIONS(968), - [anon_sym_DOLLAR] = ACTIONS(968), - [aux_sym_ctrl_match_token1] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym__] = ACTIONS(966), - [anon_sym_DOT_DOT] = ACTIONS(966), - [aux_sym_expr_binary_token1] = ACTIONS(968), - [aux_sym_expr_binary_token2] = ACTIONS(968), - [aux_sym_expr_binary_token3] = ACTIONS(968), - [aux_sym_expr_binary_token4] = ACTIONS(968), - [aux_sym_expr_binary_token5] = ACTIONS(968), - [aux_sym_expr_binary_token6] = ACTIONS(968), - [aux_sym_expr_binary_token7] = ACTIONS(968), - [aux_sym_expr_binary_token8] = ACTIONS(968), - [aux_sym_expr_binary_token9] = ACTIONS(968), - [aux_sym_expr_binary_token10] = ACTIONS(968), - [aux_sym_expr_binary_token11] = ACTIONS(968), - [aux_sym_expr_binary_token12] = ACTIONS(968), - [aux_sym_expr_binary_token13] = ACTIONS(968), - [aux_sym_expr_binary_token14] = ACTIONS(968), - [aux_sym_expr_binary_token15] = ACTIONS(968), - [aux_sym_expr_binary_token16] = ACTIONS(968), - [aux_sym_expr_binary_token17] = ACTIONS(968), - [aux_sym_expr_binary_token18] = ACTIONS(968), - [aux_sym_expr_binary_token19] = ACTIONS(968), - [aux_sym_expr_binary_token20] = ACTIONS(968), - [aux_sym_expr_binary_token21] = ACTIONS(968), - [aux_sym_expr_binary_token22] = ACTIONS(968), - [aux_sym_expr_binary_token23] = ACTIONS(968), - [aux_sym_expr_binary_token24] = ACTIONS(968), - [aux_sym_expr_binary_token25] = ACTIONS(968), - [aux_sym_expr_binary_token26] = ACTIONS(968), - [aux_sym_expr_binary_token27] = ACTIONS(968), - [aux_sym_expr_binary_token28] = ACTIONS(968), - [anon_sym_DOT_DOT_EQ] = ACTIONS(968), - [anon_sym_DOT_DOT_LT] = ACTIONS(968), - [aux_sym__val_number_decimal_token1] = ACTIONS(966), - [aux_sym__val_number_decimal_token2] = ACTIONS(968), - [aux_sym__val_number_decimal_token3] = ACTIONS(968), - [aux_sym__val_number_decimal_token4] = ACTIONS(968), - [aux_sym__val_number_token1] = ACTIONS(968), - [aux_sym__val_number_token2] = ACTIONS(968), - [aux_sym__val_number_token3] = ACTIONS(968), - [anon_sym_0b] = ACTIONS(966), - [anon_sym_0o] = ACTIONS(966), - [anon_sym_0x] = ACTIONS(966), - [sym_val_date] = ACTIONS(968), - [anon_sym_DQUOTE] = ACTIONS(968), - [sym__str_single_quotes] = ACTIONS(968), - [sym__str_back_ticks] = ACTIONS(968), - [anon_sym_err_GT] = ACTIONS(966), - [anon_sym_out_GT] = ACTIONS(966), - [anon_sym_e_GT] = ACTIONS(966), - [anon_sym_o_GT] = ACTIONS(966), - [anon_sym_err_PLUSout_GT] = ACTIONS(966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(966), - [anon_sym_o_PLUSe_GT] = ACTIONS(966), - [anon_sym_e_PLUSo_GT] = ACTIONS(966), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [aux_sym_unquoted_token1] = ACTIONS(966), + [anon_sym_true] = ACTIONS(4177), + [anon_sym_false] = ACTIONS(4177), + [anon_sym_null] = ACTIONS(4179), + [aux_sym_cmd_identifier_token38] = ACTIONS(4181), + [aux_sym_cmd_identifier_token39] = ACTIONS(4181), + [aux_sym_cmd_identifier_token40] = ACTIONS(4181), + [anon_sym_LBRACK] = ACTIONS(2760), + [anon_sym_LPAREN] = ACTIONS(4183), + [anon_sym_DOLLAR] = ACTIONS(3934), + [aux_sym_ctrl_match_token1] = ACTIONS(2770), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), + [anon_sym_DOT_DOT_LT] = ACTIONS(4187), + [aux_sym__val_number_decimal_token1] = ACTIONS(4189), + [aux_sym__val_number_decimal_token2] = ACTIONS(4191), + [aux_sym__val_number_decimal_token3] = ACTIONS(4193), + [aux_sym__val_number_decimal_token4] = ACTIONS(4195), + [aux_sym__val_number_token1] = ACTIONS(2784), + [aux_sym__val_number_token2] = ACTIONS(2784), + [aux_sym__val_number_token3] = ACTIONS(2784), + [anon_sym_0b] = ACTIONS(2786), + [anon_sym_0o] = ACTIONS(2788), + [anon_sym_0x] = ACTIONS(2788), + [sym_val_date] = ACTIONS(4197), + [anon_sym_DQUOTE] = ACTIONS(2792), + [sym__str_single_quotes] = ACTIONS(2794), + [sym__str_back_ticks] = ACTIONS(2794), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2796), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2798), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(4199), [anon_sym_POUND] = ACTIONS(247), }, [1127] = { - [sym_expr_unary] = STATE(4683), - [sym__expr_unary_minus] = STATE(4680), - [sym_expr_parenthesized] = STATE(4296), - [sym_val_range] = STATE(4683), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7669), - [sym__value] = STATE(4683), - [sym_val_nothing] = STATE(4250), - [sym_val_bool] = STATE(4376), - [sym_val_variable] = STATE(4291), - [sym_val_number] = STATE(4250), - [sym__val_number_decimal] = STATE(4110), - [sym__val_number] = STATE(3713), - [sym_val_duration] = STATE(4250), - [sym_val_filesize] = STATE(4250), - [sym_val_binary] = STATE(4250), - [sym_val_string] = STATE(4250), - [sym__str_double_quotes] = STATE(2802), - [sym_val_interpolated] = STATE(4250), - [sym__inter_single_quotes] = STATE(4209), - [sym__inter_double_quotes] = STATE(4211), - [sym_val_list] = STATE(4250), - [sym_val_record] = STATE(4250), - [sym_val_table] = STATE(4250), - [sym_val_closure] = STATE(4250), - [sym_unquoted] = STATE(4365), - [sym__unquoted_with_expr] = STATE(4710), - [sym__unquoted_anonymous_prefix] = STATE(6959), + [sym__val_range] = STATE(7742), + [sym__value] = STATE(1811), + [sym_val_nothing] = STATE(1822), + [sym_val_bool] = STATE(1613), + [sym_val_variable] = STATE(1822), + [sym_val_number] = STATE(1822), + [sym__val_number_decimal] = STATE(1237), + [sym__val_number] = STATE(1866), + [sym_val_duration] = STATE(1822), + [sym_val_filesize] = STATE(1822), + [sym_val_binary] = STATE(1822), + [sym_val_string] = STATE(1822), + [sym__str_double_quotes] = STATE(1910), + [sym_val_interpolated] = STATE(1822), + [sym__inter_single_quotes] = STATE(1911), + [sym__inter_double_quotes] = STATE(1912), + [sym_val_list] = STATE(1822), + [sym_val_record] = STATE(1822), + [sym_val_table] = STATE(1822), + [sym_val_closure] = STATE(1822), + [sym_unquoted] = STATE(1812), + [sym__unquoted_anonymous_prefix] = STATE(7749), [sym_comment] = STATE(1127), - [anon_sym_true] = ACTIONS(3489), - [anon_sym_false] = ACTIONS(3489), - [anon_sym_null] = ACTIONS(3491), - [aux_sym_cmd_identifier_token38] = ACTIONS(3493), - [aux_sym_cmd_identifier_token39] = ACTIONS(3493), - [aux_sym_cmd_identifier_token40] = ACTIONS(3493), - [anon_sym_LBRACK] = ACTIONS(3495), - [anon_sym_LPAREN] = ACTIONS(3497), - [anon_sym_DOLLAR] = ACTIONS(3499), - [anon_sym_DASH] = ACTIONS(3501), - [aux_sym_ctrl_match_token1] = ACTIONS(3503), - [anon_sym_DOT_DOT] = ACTIONS(3505), - [aux_sym_expr_unary_token1] = ACTIONS(3507), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3509), - [anon_sym_DOT_DOT_LT] = ACTIONS(3509), - [aux_sym__val_number_decimal_token1] = ACTIONS(3511), - [aux_sym__val_number_decimal_token2] = ACTIONS(3513), - [aux_sym__val_number_decimal_token3] = ACTIONS(3515), - [aux_sym__val_number_decimal_token4] = ACTIONS(3517), - [aux_sym__val_number_token1] = ACTIONS(3519), - [aux_sym__val_number_token2] = ACTIONS(3519), - [aux_sym__val_number_token3] = ACTIONS(3519), - [anon_sym_0b] = ACTIONS(3521), - [anon_sym_0o] = ACTIONS(3523), - [anon_sym_0x] = ACTIONS(3523), - [sym_val_date] = ACTIONS(3525), - [anon_sym_DQUOTE] = ACTIONS(3527), - [sym__str_single_quotes] = ACTIONS(3529), - [sym__str_back_ticks] = ACTIONS(3529), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3531), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3535), + [anon_sym_true] = ACTIONS(4177), + [anon_sym_false] = ACTIONS(4177), + [anon_sym_null] = ACTIONS(4179), + [aux_sym_cmd_identifier_token38] = ACTIONS(4181), + [aux_sym_cmd_identifier_token39] = ACTIONS(4181), + [aux_sym_cmd_identifier_token40] = ACTIONS(4181), + [anon_sym_LBRACK] = ACTIONS(2760), + [anon_sym_LPAREN] = ACTIONS(4183), + [anon_sym_DOLLAR] = ACTIONS(3934), + [aux_sym_ctrl_match_token1] = ACTIONS(2770), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), + [anon_sym_DOT_DOT_LT] = ACTIONS(4187), + [aux_sym__val_number_decimal_token1] = ACTIONS(4189), + [aux_sym__val_number_decimal_token2] = ACTIONS(4191), + [aux_sym__val_number_decimal_token3] = ACTIONS(4193), + [aux_sym__val_number_decimal_token4] = ACTIONS(4195), + [aux_sym__val_number_token1] = ACTIONS(2784), + [aux_sym__val_number_token2] = ACTIONS(2784), + [aux_sym__val_number_token3] = ACTIONS(2784), + [anon_sym_0b] = ACTIONS(2786), + [anon_sym_0o] = ACTIONS(2788), + [anon_sym_0x] = ACTIONS(2788), + [sym_val_date] = ACTIONS(4197), + [anon_sym_DQUOTE] = ACTIONS(2792), + [sym__str_single_quotes] = ACTIONS(2794), + [sym__str_back_ticks] = ACTIONS(2794), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2796), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2798), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(4199), [anon_sym_POUND] = ACTIONS(247), }, [1128] = { - [sym_expr_unary] = STATE(4625), - [sym__expr_unary_minus] = STATE(4680), - [sym_expr_parenthesized] = STATE(4300), - [sym_val_range] = STATE(4625), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7669), - [sym__value] = STATE(4625), - [sym_val_nothing] = STATE(4250), - [sym_val_bool] = STATE(4376), - [sym_val_variable] = STATE(4291), - [sym_val_number] = STATE(4250), - [sym__val_number_decimal] = STATE(4110), - [sym__val_number] = STATE(3713), - [sym_val_duration] = STATE(4250), - [sym_val_filesize] = STATE(4250), - [sym_val_binary] = STATE(4250), - [sym_val_string] = STATE(4250), - [sym__str_double_quotes] = STATE(2802), - [sym_val_interpolated] = STATE(4250), - [sym__inter_single_quotes] = STATE(4209), - [sym__inter_double_quotes] = STATE(4211), - [sym_val_list] = STATE(4250), - [sym_val_record] = STATE(4250), - [sym_val_table] = STATE(4250), - [sym_val_closure] = STATE(4250), - [sym_unquoted] = STATE(4379), - [sym__unquoted_with_expr] = STATE(4611), - [sym__unquoted_anonymous_prefix] = STATE(6959), + [sym__val_range] = STATE(7772), + [sym__value] = STATE(5937), + [sym_val_nothing] = STATE(4784), + [sym_val_bool] = STATE(6291), + [sym_val_variable] = STATE(4784), + [sym_val_number] = STATE(4784), + [sym__val_number_decimal] = STATE(5296), + [sym__val_number] = STATE(4955), + [sym_val_duration] = STATE(4784), + [sym_val_filesize] = STATE(4784), + [sym_val_binary] = STATE(4784), + [sym_val_string] = STATE(4784), + [sym__str_double_quotes] = STATE(4704), + [sym_val_interpolated] = STATE(4784), + [sym__inter_single_quotes] = STATE(4879), + [sym__inter_double_quotes] = STATE(4781), + [sym_val_list] = STATE(4784), + [sym_val_record] = STATE(4784), + [sym_val_table] = STATE(4784), + [sym_val_closure] = STATE(4784), + [sym_unquoted] = STATE(5938), + [sym__unquoted_anonymous_prefix] = STATE(7683), [sym_comment] = STATE(1128), - [anon_sym_true] = ACTIONS(3489), - [anon_sym_false] = ACTIONS(3489), - [anon_sym_null] = ACTIONS(3491), - [aux_sym_cmd_identifier_token38] = ACTIONS(3493), - [aux_sym_cmd_identifier_token39] = ACTIONS(3493), - [aux_sym_cmd_identifier_token40] = ACTIONS(3493), - [anon_sym_LBRACK] = ACTIONS(3495), - [anon_sym_LPAREN] = ACTIONS(3497), - [anon_sym_DOLLAR] = ACTIONS(3499), - [anon_sym_DASH] = ACTIONS(3501), - [aux_sym_ctrl_match_token1] = ACTIONS(3503), - [anon_sym_DOT_DOT] = ACTIONS(3505), - [aux_sym_expr_unary_token1] = ACTIONS(3507), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3509), - [anon_sym_DOT_DOT_LT] = ACTIONS(3509), - [aux_sym__val_number_decimal_token1] = ACTIONS(3511), - [aux_sym__val_number_decimal_token2] = ACTIONS(3513), - [aux_sym__val_number_decimal_token3] = ACTIONS(3515), - [aux_sym__val_number_decimal_token4] = ACTIONS(3517), - [aux_sym__val_number_token1] = ACTIONS(3519), - [aux_sym__val_number_token2] = ACTIONS(3519), - [aux_sym__val_number_token3] = ACTIONS(3519), - [anon_sym_0b] = ACTIONS(3521), - [anon_sym_0o] = ACTIONS(3523), - [anon_sym_0x] = ACTIONS(3523), - [sym_val_date] = ACTIONS(3525), - [anon_sym_DQUOTE] = ACTIONS(3527), - [sym__str_single_quotes] = ACTIONS(3529), - [sym__str_back_ticks] = ACTIONS(3529), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3531), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3535), + [anon_sym_true] = ACTIONS(4201), + [anon_sym_false] = ACTIONS(4201), + [anon_sym_null] = ACTIONS(4203), + [aux_sym_cmd_identifier_token38] = ACTIONS(4205), + [aux_sym_cmd_identifier_token39] = ACTIONS(4205), + [aux_sym_cmd_identifier_token40] = ACTIONS(4205), + [anon_sym_LBRACK] = ACTIONS(4029), + [anon_sym_LPAREN] = ACTIONS(4031), + [anon_sym_DOLLAR] = ACTIONS(4033), + [aux_sym_ctrl_match_token1] = ACTIONS(4035), + [anon_sym_DOT_DOT] = ACTIONS(4037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4039), + [anon_sym_DOT_DOT_LT] = ACTIONS(4039), + [aux_sym__val_number_decimal_token1] = ACTIONS(4207), + [aux_sym__val_number_decimal_token2] = ACTIONS(4209), + [aux_sym__val_number_decimal_token3] = ACTIONS(4211), + [aux_sym__val_number_decimal_token4] = ACTIONS(4213), + [aux_sym__val_number_token1] = ACTIONS(3539), + [aux_sym__val_number_token2] = ACTIONS(3539), + [aux_sym__val_number_token3] = ACTIONS(3539), + [anon_sym_0b] = ACTIONS(3541), + [anon_sym_0o] = ACTIONS(3543), + [anon_sym_0x] = ACTIONS(3543), + [sym_val_date] = ACTIONS(4215), + [anon_sym_DQUOTE] = ACTIONS(4051), + [sym__str_single_quotes] = ACTIONS(4053), + [sym__str_back_ticks] = ACTIONS(4053), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(4055), [anon_sym_POUND] = ACTIONS(247), }, [1129] = { - [sym_expr_unary] = STATE(4603), - [sym__expr_unary_minus] = STATE(4680), - [sym_expr_parenthesized] = STATE(4304), - [sym_val_range] = STATE(4603), - [sym__val_range] = STATE(7776), - [sym__val_range_with_end] = STATE(7669), - [sym__value] = STATE(4603), - [sym_val_nothing] = STATE(4250), - [sym_val_bool] = STATE(4376), - [sym_val_variable] = STATE(4291), - [sym_val_number] = STATE(4250), - [sym__val_number_decimal] = STATE(4110), - [sym__val_number] = STATE(3713), - [sym_val_duration] = STATE(4250), - [sym_val_filesize] = STATE(4250), - [sym_val_binary] = STATE(4250), - [sym_val_string] = STATE(4250), - [sym__str_double_quotes] = STATE(2802), - [sym_val_interpolated] = STATE(4250), - [sym__inter_single_quotes] = STATE(4209), - [sym__inter_double_quotes] = STATE(4211), - [sym_val_list] = STATE(4250), - [sym_val_record] = STATE(4250), - [sym_val_table] = STATE(4250), - [sym_val_closure] = STATE(4250), - [sym_unquoted] = STATE(4386), - [sym__unquoted_with_expr] = STATE(4527), - [sym__unquoted_anonymous_prefix] = STATE(6959), + [sym__val_range] = STATE(7517), + [sym__value] = STATE(2681), + [sym_val_nothing] = STATE(2688), + [sym_val_bool] = STATE(2629), + [sym_val_variable] = STATE(2688), + [sym_val_number] = STATE(2688), + [sym__val_number_decimal] = STATE(2420), + [sym__val_number] = STATE(2686), + [sym_val_duration] = STATE(2688), + [sym_val_filesize] = STATE(2688), + [sym_val_binary] = STATE(2688), + [sym_val_string] = STATE(2688), + [sym__str_double_quotes] = STATE(2763), + [sym_val_interpolated] = STATE(2688), + [sym__inter_single_quotes] = STATE(2787), + [sym__inter_double_quotes] = STATE(2687), + [sym_val_list] = STATE(2688), + [sym_val_record] = STATE(2688), + [sym_val_table] = STATE(2688), + [sym_val_closure] = STATE(2688), + [sym_unquoted] = STATE(2675), + [sym__unquoted_anonymous_prefix] = STATE(7477), [sym_comment] = STATE(1129), - [anon_sym_true] = ACTIONS(3489), - [anon_sym_false] = ACTIONS(3489), - [anon_sym_null] = ACTIONS(3491), - [aux_sym_cmd_identifier_token38] = ACTIONS(3493), - [aux_sym_cmd_identifier_token39] = ACTIONS(3493), - [aux_sym_cmd_identifier_token40] = ACTIONS(3493), - [anon_sym_LBRACK] = ACTIONS(3495), - [anon_sym_LPAREN] = ACTIONS(3497), - [anon_sym_DOLLAR] = ACTIONS(3499), - [anon_sym_DASH] = ACTIONS(3501), - [aux_sym_ctrl_match_token1] = ACTIONS(3503), - [anon_sym_DOT_DOT] = ACTIONS(3505), - [aux_sym_expr_unary_token1] = ACTIONS(3507), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3509), - [anon_sym_DOT_DOT_LT] = ACTIONS(3509), - [aux_sym__val_number_decimal_token1] = ACTIONS(3511), - [aux_sym__val_number_decimal_token2] = ACTIONS(3513), - [aux_sym__val_number_decimal_token3] = ACTIONS(3515), - [aux_sym__val_number_decimal_token4] = ACTIONS(3517), - [aux_sym__val_number_token1] = ACTIONS(3519), - [aux_sym__val_number_token2] = ACTIONS(3519), - [aux_sym__val_number_token3] = ACTIONS(3519), - [anon_sym_0b] = ACTIONS(3521), - [anon_sym_0o] = ACTIONS(3523), - [anon_sym_0x] = ACTIONS(3523), - [sym_val_date] = ACTIONS(3525), - [anon_sym_DQUOTE] = ACTIONS(3527), - [sym__str_single_quotes] = ACTIONS(3529), - [sym__str_back_ticks] = ACTIONS(3529), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3531), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3535), + [anon_sym_true] = ACTIONS(4117), + [anon_sym_false] = ACTIONS(4117), + [anon_sym_null] = ACTIONS(4119), + [aux_sym_cmd_identifier_token38] = ACTIONS(4121), + [aux_sym_cmd_identifier_token39] = ACTIONS(4121), + [aux_sym_cmd_identifier_token40] = ACTIONS(4121), + [anon_sym_LBRACK] = ACTIONS(4123), + [anon_sym_LPAREN] = ACTIONS(4125), + [anon_sym_DOLLAR] = ACTIONS(4127), + [aux_sym_ctrl_match_token1] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4133), + [anon_sym_DOT_DOT_LT] = ACTIONS(4133), + [aux_sym__val_number_decimal_token1] = ACTIONS(4135), + [aux_sym__val_number_decimal_token2] = ACTIONS(4137), + [aux_sym__val_number_decimal_token3] = ACTIONS(4139), + [aux_sym__val_number_decimal_token4] = ACTIONS(4141), + [aux_sym__val_number_token1] = ACTIONS(4143), + [aux_sym__val_number_token2] = ACTIONS(4143), + [aux_sym__val_number_token3] = ACTIONS(4143), + [anon_sym_0b] = ACTIONS(4145), + [anon_sym_0o] = ACTIONS(4147), + [anon_sym_0x] = ACTIONS(4147), + [sym_val_date] = ACTIONS(4149), + [anon_sym_DQUOTE] = ACTIONS(4151), + [sym__str_single_quotes] = ACTIONS(4153), + [sym__str_back_ticks] = ACTIONS(4153), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4155), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4157), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(4159), [anon_sym_POUND] = ACTIONS(247), }, [1130] = { + [sym__val_range] = STATE(7772), + [sym__value] = STATE(5988), + [sym_val_nothing] = STATE(4784), + [sym_val_bool] = STATE(6291), + [sym_val_variable] = STATE(4784), + [sym_val_number] = STATE(4784), + [sym__val_number_decimal] = STATE(5296), + [sym__val_number] = STATE(4955), + [sym_val_duration] = STATE(4784), + [sym_val_filesize] = STATE(4784), + [sym_val_binary] = STATE(4784), + [sym_val_string] = STATE(4784), + [sym__str_double_quotes] = STATE(4704), + [sym_val_interpolated] = STATE(4784), + [sym__inter_single_quotes] = STATE(4879), + [sym__inter_double_quotes] = STATE(4781), + [sym_val_list] = STATE(4784), + [sym_val_record] = STATE(4784), + [sym_val_table] = STATE(4784), + [sym_val_closure] = STATE(4784), + [sym_unquoted] = STATE(5989), + [sym__unquoted_anonymous_prefix] = STATE(7683), [sym_comment] = STATE(1130), - [anon_sym_true] = ACTIONS(3199), - [anon_sym_false] = ACTIONS(3199), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3199), - [aux_sym_cmd_identifier_token39] = ACTIONS(3199), - [aux_sym_cmd_identifier_token40] = ACTIONS(3199), - [sym__newline] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_DOLLAR] = ACTIONS(3199), - [aux_sym_ctrl_match_token1] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym__] = ACTIONS(3201), - [anon_sym_DOT_DOT] = ACTIONS(3201), - [aux_sym_expr_binary_token1] = ACTIONS(3199), - [aux_sym_expr_binary_token2] = ACTIONS(3199), - [aux_sym_expr_binary_token3] = ACTIONS(3199), - [aux_sym_expr_binary_token4] = ACTIONS(3199), - [aux_sym_expr_binary_token5] = ACTIONS(3199), - [aux_sym_expr_binary_token6] = ACTIONS(3199), - [aux_sym_expr_binary_token7] = ACTIONS(3199), - [aux_sym_expr_binary_token8] = ACTIONS(3199), - [aux_sym_expr_binary_token9] = ACTIONS(3199), - [aux_sym_expr_binary_token10] = ACTIONS(3199), - [aux_sym_expr_binary_token11] = ACTIONS(3199), - [aux_sym_expr_binary_token12] = ACTIONS(3199), - [aux_sym_expr_binary_token13] = ACTIONS(3199), - [aux_sym_expr_binary_token14] = ACTIONS(3199), - [aux_sym_expr_binary_token15] = ACTIONS(3199), - [aux_sym_expr_binary_token16] = ACTIONS(3199), - [aux_sym_expr_binary_token17] = ACTIONS(3199), - [aux_sym_expr_binary_token18] = ACTIONS(3199), - [aux_sym_expr_binary_token19] = ACTIONS(3199), - [aux_sym_expr_binary_token20] = ACTIONS(3199), - [aux_sym_expr_binary_token21] = ACTIONS(3199), - [aux_sym_expr_binary_token22] = ACTIONS(3199), - [aux_sym_expr_binary_token23] = ACTIONS(3199), - [aux_sym_expr_binary_token24] = ACTIONS(3199), - [aux_sym_expr_binary_token25] = ACTIONS(3199), - [aux_sym_expr_binary_token26] = ACTIONS(3199), - [aux_sym_expr_binary_token27] = ACTIONS(3199), - [aux_sym_expr_binary_token28] = ACTIONS(3199), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), - [anon_sym_DOT_DOT_LT] = ACTIONS(3199), - [aux_sym__val_number_decimal_token1] = ACTIONS(3201), - [aux_sym__val_number_decimal_token2] = ACTIONS(3199), - [aux_sym__val_number_decimal_token3] = ACTIONS(3199), - [aux_sym__val_number_decimal_token4] = ACTIONS(3199), - [aux_sym__val_number_token1] = ACTIONS(3199), - [aux_sym__val_number_token2] = ACTIONS(3199), - [aux_sym__val_number_token3] = ACTIONS(3199), - [anon_sym_0b] = ACTIONS(3201), - [anon_sym_0o] = ACTIONS(3201), - [anon_sym_0x] = ACTIONS(3201), - [sym_val_date] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3199), - [sym__str_single_quotes] = ACTIONS(3199), - [sym__str_back_ticks] = ACTIONS(3199), - [anon_sym_err_GT] = ACTIONS(3201), - [anon_sym_out_GT] = ACTIONS(3201), - [anon_sym_e_GT] = ACTIONS(3201), - [anon_sym_o_GT] = ACTIONS(3201), - [anon_sym_err_PLUSout_GT] = ACTIONS(3201), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), - [anon_sym_o_PLUSe_GT] = ACTIONS(3201), - [anon_sym_e_PLUSo_GT] = ACTIONS(3201), - [anon_sym_err_GT_GT] = ACTIONS(3199), - [anon_sym_out_GT_GT] = ACTIONS(3199), - [anon_sym_e_GT_GT] = ACTIONS(3199), - [anon_sym_o_GT_GT] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), - [aux_sym_unquoted_token1] = ACTIONS(3201), + [anon_sym_true] = ACTIONS(4201), + [anon_sym_false] = ACTIONS(4201), + [anon_sym_null] = ACTIONS(4203), + [aux_sym_cmd_identifier_token38] = ACTIONS(4205), + [aux_sym_cmd_identifier_token39] = ACTIONS(4205), + [aux_sym_cmd_identifier_token40] = ACTIONS(4205), + [anon_sym_LBRACK] = ACTIONS(4029), + [anon_sym_LPAREN] = ACTIONS(4031), + [anon_sym_DOLLAR] = ACTIONS(4033), + [aux_sym_ctrl_match_token1] = ACTIONS(4035), + [anon_sym_DOT_DOT] = ACTIONS(4037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4039), + [anon_sym_DOT_DOT_LT] = ACTIONS(4039), + [aux_sym__val_number_decimal_token1] = ACTIONS(4207), + [aux_sym__val_number_decimal_token2] = ACTIONS(4209), + [aux_sym__val_number_decimal_token3] = ACTIONS(4211), + [aux_sym__val_number_decimal_token4] = ACTIONS(4213), + [aux_sym__val_number_token1] = ACTIONS(3539), + [aux_sym__val_number_token2] = ACTIONS(3539), + [aux_sym__val_number_token3] = ACTIONS(3539), + [anon_sym_0b] = ACTIONS(3541), + [anon_sym_0o] = ACTIONS(3543), + [anon_sym_0x] = ACTIONS(3543), + [sym_val_date] = ACTIONS(4215), + [anon_sym_DQUOTE] = ACTIONS(4051), + [sym__str_single_quotes] = ACTIONS(4053), + [sym__str_back_ticks] = ACTIONS(4053), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(4055), [anon_sym_POUND] = ACTIONS(247), }, [1131] = { + [sym__val_range] = STATE(7772), + [sym__value] = STATE(5920), + [sym_val_nothing] = STATE(4784), + [sym_val_bool] = STATE(6291), + [sym_val_variable] = STATE(4784), + [sym_val_number] = STATE(4784), + [sym__val_number_decimal] = STATE(5296), + [sym__val_number] = STATE(4955), + [sym_val_duration] = STATE(4784), + [sym_val_filesize] = STATE(4784), + [sym_val_binary] = STATE(4784), + [sym_val_string] = STATE(4784), + [sym__str_double_quotes] = STATE(4704), + [sym_val_interpolated] = STATE(4784), + [sym__inter_single_quotes] = STATE(4879), + [sym__inter_double_quotes] = STATE(4781), + [sym_val_list] = STATE(4784), + [sym_val_record] = STATE(4784), + [sym_val_table] = STATE(4784), + [sym_val_closure] = STATE(4784), + [sym_unquoted] = STATE(5922), + [sym__unquoted_anonymous_prefix] = STATE(7683), [sym_comment] = STATE(1131), - [anon_sym_true] = ACTIONS(2133), - [anon_sym_false] = ACTIONS(2133), - [anon_sym_null] = ACTIONS(2133), - [aux_sym_cmd_identifier_token38] = ACTIONS(2133), - [aux_sym_cmd_identifier_token39] = ACTIONS(2133), - [aux_sym_cmd_identifier_token40] = ACTIONS(2133), - [sym__newline] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(2133), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_COMMA] = ACTIONS(2133), - [anon_sym_DOLLAR] = ACTIONS(2133), - [aux_sym_ctrl_match_token1] = ACTIONS(2133), - [anon_sym_RBRACE] = ACTIONS(2133), - [anon_sym__] = ACTIONS(2131), - [anon_sym_DOT_DOT] = ACTIONS(2131), - [aux_sym_expr_binary_token1] = ACTIONS(2133), - [aux_sym_expr_binary_token2] = ACTIONS(2133), - [aux_sym_expr_binary_token3] = ACTIONS(2133), - [aux_sym_expr_binary_token4] = ACTIONS(2133), - [aux_sym_expr_binary_token5] = ACTIONS(2133), - [aux_sym_expr_binary_token6] = ACTIONS(2133), - [aux_sym_expr_binary_token7] = ACTIONS(2133), - [aux_sym_expr_binary_token8] = ACTIONS(2133), - [aux_sym_expr_binary_token9] = ACTIONS(2133), - [aux_sym_expr_binary_token10] = ACTIONS(2133), - [aux_sym_expr_binary_token11] = ACTIONS(2133), - [aux_sym_expr_binary_token12] = ACTIONS(2133), - [aux_sym_expr_binary_token13] = ACTIONS(2133), - [aux_sym_expr_binary_token14] = ACTIONS(2133), - [aux_sym_expr_binary_token15] = ACTIONS(2133), - [aux_sym_expr_binary_token16] = ACTIONS(2133), - [aux_sym_expr_binary_token17] = ACTIONS(2133), - [aux_sym_expr_binary_token18] = ACTIONS(2133), - [aux_sym_expr_binary_token19] = ACTIONS(2133), - [aux_sym_expr_binary_token20] = ACTIONS(2133), - [aux_sym_expr_binary_token21] = ACTIONS(2133), - [aux_sym_expr_binary_token22] = ACTIONS(2133), - [aux_sym_expr_binary_token23] = ACTIONS(2133), - [aux_sym_expr_binary_token24] = ACTIONS(2133), - [aux_sym_expr_binary_token25] = ACTIONS(2133), - [aux_sym_expr_binary_token26] = ACTIONS(2133), - [aux_sym_expr_binary_token27] = ACTIONS(2133), - [aux_sym_expr_binary_token28] = ACTIONS(2133), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2133), - [anon_sym_DOT_DOT_LT] = ACTIONS(2133), - [aux_sym__val_number_decimal_token1] = ACTIONS(2131), - [aux_sym__val_number_decimal_token2] = ACTIONS(2133), - [aux_sym__val_number_decimal_token3] = ACTIONS(2133), - [aux_sym__val_number_decimal_token4] = ACTIONS(2133), - [aux_sym__val_number_token1] = ACTIONS(2133), - [aux_sym__val_number_token2] = ACTIONS(2133), - [aux_sym__val_number_token3] = ACTIONS(2133), - [anon_sym_0b] = ACTIONS(2131), - [anon_sym_0o] = ACTIONS(2131), - [anon_sym_0x] = ACTIONS(2131), - [sym_val_date] = ACTIONS(2133), - [anon_sym_DQUOTE] = ACTIONS(2133), - [sym__str_single_quotes] = ACTIONS(2133), - [sym__str_back_ticks] = ACTIONS(2133), - [anon_sym_err_GT] = ACTIONS(2131), - [anon_sym_out_GT] = ACTIONS(2131), - [anon_sym_e_GT] = ACTIONS(2131), - [anon_sym_o_GT] = ACTIONS(2131), - [anon_sym_err_PLUSout_GT] = ACTIONS(2131), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2131), - [anon_sym_o_PLUSe_GT] = ACTIONS(2131), - [anon_sym_e_PLUSo_GT] = ACTIONS(2131), - [anon_sym_err_GT_GT] = ACTIONS(2133), - [anon_sym_out_GT_GT] = ACTIONS(2133), - [anon_sym_e_GT_GT] = ACTIONS(2133), - [anon_sym_o_GT_GT] = ACTIONS(2133), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2133), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2133), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2133), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2133), - [aux_sym_unquoted_token1] = ACTIONS(2131), + [anon_sym_true] = ACTIONS(4201), + [anon_sym_false] = ACTIONS(4201), + [anon_sym_null] = ACTIONS(4203), + [aux_sym_cmd_identifier_token38] = ACTIONS(4205), + [aux_sym_cmd_identifier_token39] = ACTIONS(4205), + [aux_sym_cmd_identifier_token40] = ACTIONS(4205), + [anon_sym_LBRACK] = ACTIONS(4029), + [anon_sym_LPAREN] = ACTIONS(4031), + [anon_sym_DOLLAR] = ACTIONS(4033), + [aux_sym_ctrl_match_token1] = ACTIONS(4035), + [anon_sym_DOT_DOT] = ACTIONS(4037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4039), + [anon_sym_DOT_DOT_LT] = ACTIONS(4039), + [aux_sym__val_number_decimal_token1] = ACTIONS(4207), + [aux_sym__val_number_decimal_token2] = ACTIONS(4209), + [aux_sym__val_number_decimal_token3] = ACTIONS(4211), + [aux_sym__val_number_decimal_token4] = ACTIONS(4213), + [aux_sym__val_number_token1] = ACTIONS(3539), + [aux_sym__val_number_token2] = ACTIONS(3539), + [aux_sym__val_number_token3] = ACTIONS(3539), + [anon_sym_0b] = ACTIONS(3541), + [anon_sym_0o] = ACTIONS(3543), + [anon_sym_0x] = ACTIONS(3543), + [sym_val_date] = ACTIONS(4215), + [anon_sym_DQUOTE] = ACTIONS(4051), + [sym__str_single_quotes] = ACTIONS(4053), + [sym__str_back_ticks] = ACTIONS(4053), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(4055), [anon_sym_POUND] = ACTIONS(247), }, [1132] = { + [sym__val_range] = STATE(7672), + [sym__value] = STATE(4849), + [sym_val_nothing] = STATE(4945), + [sym_val_bool] = STATE(4563), + [sym_val_variable] = STATE(4945), + [sym_val_number] = STATE(4945), + [sym__val_number_decimal] = STATE(4015), + [sym__val_number] = STATE(4892), + [sym_val_duration] = STATE(4945), + [sym_val_filesize] = STATE(4945), + [sym_val_binary] = STATE(4945), + [sym_val_string] = STATE(4945), + [sym__str_double_quotes] = STATE(4462), + [sym_val_interpolated] = STATE(4945), + [sym__inter_single_quotes] = STATE(4775), + [sym__inter_double_quotes] = STATE(4778), + [sym_val_list] = STATE(4945), + [sym_val_record] = STATE(4945), + [sym_val_table] = STATE(4945), + [sym_val_closure] = STATE(4945), + [sym_unquoted] = STATE(4893), + [sym__unquoted_anonymous_prefix] = STATE(7676), [sym_comment] = STATE(1132), - [anon_sym_true] = ACTIONS(3537), - [anon_sym_false] = ACTIONS(3537), - [anon_sym_null] = ACTIONS(3537), - [aux_sym_cmd_identifier_token38] = ACTIONS(3537), - [aux_sym_cmd_identifier_token39] = ACTIONS(3537), - [aux_sym_cmd_identifier_token40] = ACTIONS(3537), - [sym__newline] = ACTIONS(3537), - [anon_sym_LBRACK] = ACTIONS(3537), - [anon_sym_LPAREN] = ACTIONS(3537), - [anon_sym_COMMA] = ACTIONS(3537), - [anon_sym_DOLLAR] = ACTIONS(3537), - [aux_sym_ctrl_match_token1] = ACTIONS(3537), - [anon_sym_RBRACE] = ACTIONS(3537), - [anon_sym__] = ACTIONS(3540), - [anon_sym_DOT_DOT] = ACTIONS(3540), - [aux_sym_expr_binary_token1] = ACTIONS(2317), - [aux_sym_expr_binary_token2] = ACTIONS(2317), - [aux_sym_expr_binary_token3] = ACTIONS(2317), - [aux_sym_expr_binary_token4] = ACTIONS(2317), - [aux_sym_expr_binary_token5] = ACTIONS(2317), - [aux_sym_expr_binary_token6] = ACTIONS(2317), - [aux_sym_expr_binary_token7] = ACTIONS(2317), - [aux_sym_expr_binary_token8] = ACTIONS(2317), - [aux_sym_expr_binary_token9] = ACTIONS(2317), - [aux_sym_expr_binary_token10] = ACTIONS(2317), - [aux_sym_expr_binary_token11] = ACTIONS(2317), - [aux_sym_expr_binary_token12] = ACTIONS(2317), - [aux_sym_expr_binary_token13] = ACTIONS(2317), - [aux_sym_expr_binary_token14] = ACTIONS(2317), - [aux_sym_expr_binary_token15] = ACTIONS(2317), - [aux_sym_expr_binary_token16] = ACTIONS(2317), - [aux_sym_expr_binary_token17] = ACTIONS(2317), - [aux_sym_expr_binary_token18] = ACTIONS(2317), - [aux_sym_expr_binary_token19] = ACTIONS(2317), - [aux_sym_expr_binary_token20] = ACTIONS(2317), - [aux_sym_expr_binary_token21] = ACTIONS(2317), - [aux_sym_expr_binary_token22] = ACTIONS(2317), - [aux_sym_expr_binary_token23] = ACTIONS(2317), - [aux_sym_expr_binary_token24] = ACTIONS(2317), - [aux_sym_expr_binary_token25] = ACTIONS(2317), - [aux_sym_expr_binary_token26] = ACTIONS(2317), - [aux_sym_expr_binary_token27] = ACTIONS(2317), - [aux_sym_expr_binary_token28] = ACTIONS(2317), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3537), - [anon_sym_DOT_DOT_LT] = ACTIONS(3537), - [aux_sym__val_number_decimal_token1] = ACTIONS(3540), - [aux_sym__val_number_decimal_token2] = ACTIONS(3537), - [aux_sym__val_number_decimal_token3] = ACTIONS(3537), - [aux_sym__val_number_decimal_token4] = ACTIONS(3537), - [aux_sym__val_number_token1] = ACTIONS(3537), - [aux_sym__val_number_token2] = ACTIONS(3537), - [aux_sym__val_number_token3] = ACTIONS(3537), - [anon_sym_0b] = ACTIONS(3540), - [anon_sym_0o] = ACTIONS(3540), - [anon_sym_0x] = ACTIONS(3540), - [sym_val_date] = ACTIONS(3537), - [anon_sym_DQUOTE] = ACTIONS(3537), - [sym__str_single_quotes] = ACTIONS(3537), - [sym__str_back_ticks] = ACTIONS(3537), - [anon_sym_err_GT] = ACTIONS(3540), - [anon_sym_out_GT] = ACTIONS(3540), - [anon_sym_e_GT] = ACTIONS(3540), - [anon_sym_o_GT] = ACTIONS(3540), - [anon_sym_err_PLUSout_GT] = ACTIONS(3540), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3540), - [anon_sym_o_PLUSe_GT] = ACTIONS(3540), - [anon_sym_e_PLUSo_GT] = ACTIONS(3540), - [anon_sym_err_GT_GT] = ACTIONS(3537), - [anon_sym_out_GT_GT] = ACTIONS(3537), - [anon_sym_e_GT_GT] = ACTIONS(3537), - [anon_sym_o_GT_GT] = ACTIONS(3537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3537), - [aux_sym_unquoted_token1] = ACTIONS(3540), + [anon_sym_true] = ACTIONS(4217), + [anon_sym_false] = ACTIONS(4217), + [anon_sym_null] = ACTIONS(4219), + [aux_sym_cmd_identifier_token38] = ACTIONS(4221), + [aux_sym_cmd_identifier_token39] = ACTIONS(4221), + [aux_sym_cmd_identifier_token40] = ACTIONS(4221), + [anon_sym_LBRACK] = ACTIONS(4223), + [anon_sym_LPAREN] = ACTIONS(4225), + [anon_sym_DOLLAR] = ACTIONS(4227), + [aux_sym_ctrl_match_token1] = ACTIONS(4229), + [anon_sym_DOT_DOT] = ACTIONS(4231), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4233), + [anon_sym_DOT_DOT_LT] = ACTIONS(4233), + [aux_sym__val_number_decimal_token1] = ACTIONS(2190), + [aux_sym__val_number_decimal_token2] = ACTIONS(4235), + [aux_sym__val_number_decimal_token3] = ACTIONS(4237), + [aux_sym__val_number_decimal_token4] = ACTIONS(4239), + [aux_sym__val_number_token1] = ACTIONS(4241), + [aux_sym__val_number_token2] = ACTIONS(4241), + [aux_sym__val_number_token3] = ACTIONS(4241), + [anon_sym_0b] = ACTIONS(2198), + [anon_sym_0o] = ACTIONS(2200), + [anon_sym_0x] = ACTIONS(2200), + [sym_val_date] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(4245), + [sym__str_single_quotes] = ACTIONS(4247), + [sym__str_back_ticks] = ACTIONS(4247), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4249), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4251), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(2216), [anon_sym_POUND] = ACTIONS(247), }, [1133] = { + [sym__val_range] = STATE(7772), + [sym__value] = STATE(5947), + [sym_val_nothing] = STATE(4784), + [sym_val_bool] = STATE(6291), + [sym_val_variable] = STATE(4784), + [sym_val_number] = STATE(4784), + [sym__val_number_decimal] = STATE(5296), + [sym__val_number] = STATE(4955), + [sym_val_duration] = STATE(4784), + [sym_val_filesize] = STATE(4784), + [sym_val_binary] = STATE(4784), + [sym_val_string] = STATE(4784), + [sym__str_double_quotes] = STATE(4704), + [sym_val_interpolated] = STATE(4784), + [sym__inter_single_quotes] = STATE(4879), + [sym__inter_double_quotes] = STATE(4781), + [sym_val_list] = STATE(4784), + [sym_val_record] = STATE(4784), + [sym_val_table] = STATE(4784), + [sym_val_closure] = STATE(4784), + [sym_unquoted] = STATE(5948), + [sym__unquoted_anonymous_prefix] = STATE(7683), [sym_comment] = STATE(1133), - [anon_sym_true] = ACTIONS(3199), - [anon_sym_false] = ACTIONS(3199), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3199), - [aux_sym_cmd_identifier_token39] = ACTIONS(3199), - [aux_sym_cmd_identifier_token40] = ACTIONS(3199), - [sym__newline] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_DOLLAR] = ACTIONS(3199), - [aux_sym_ctrl_match_token1] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym__] = ACTIONS(3201), - [anon_sym_DOT_DOT] = ACTIONS(3201), - [aux_sym_expr_binary_token1] = ACTIONS(3199), - [aux_sym_expr_binary_token2] = ACTIONS(3199), - [aux_sym_expr_binary_token3] = ACTIONS(3199), - [aux_sym_expr_binary_token4] = ACTIONS(3199), - [aux_sym_expr_binary_token5] = ACTIONS(3199), - [aux_sym_expr_binary_token6] = ACTIONS(3199), - [aux_sym_expr_binary_token7] = ACTIONS(3199), - [aux_sym_expr_binary_token8] = ACTIONS(3199), - [aux_sym_expr_binary_token9] = ACTIONS(3199), - [aux_sym_expr_binary_token10] = ACTIONS(3199), - [aux_sym_expr_binary_token11] = ACTIONS(3199), - [aux_sym_expr_binary_token12] = ACTIONS(3199), - [aux_sym_expr_binary_token13] = ACTIONS(3199), - [aux_sym_expr_binary_token14] = ACTIONS(3199), - [aux_sym_expr_binary_token15] = ACTIONS(3199), - [aux_sym_expr_binary_token16] = ACTIONS(3199), - [aux_sym_expr_binary_token17] = ACTIONS(3199), - [aux_sym_expr_binary_token18] = ACTIONS(3199), - [aux_sym_expr_binary_token19] = ACTIONS(3199), - [aux_sym_expr_binary_token20] = ACTIONS(3199), - [aux_sym_expr_binary_token21] = ACTIONS(3199), - [aux_sym_expr_binary_token22] = ACTIONS(3199), - [aux_sym_expr_binary_token23] = ACTIONS(3199), - [aux_sym_expr_binary_token24] = ACTIONS(3199), - [aux_sym_expr_binary_token25] = ACTIONS(3199), - [aux_sym_expr_binary_token26] = ACTIONS(3199), - [aux_sym_expr_binary_token27] = ACTIONS(3199), - [aux_sym_expr_binary_token28] = ACTIONS(3199), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), - [anon_sym_DOT_DOT_LT] = ACTIONS(3199), - [aux_sym__val_number_decimal_token1] = ACTIONS(3201), - [aux_sym__val_number_decimal_token2] = ACTIONS(3199), - [aux_sym__val_number_decimal_token3] = ACTIONS(3199), - [aux_sym__val_number_decimal_token4] = ACTIONS(3199), - [aux_sym__val_number_token1] = ACTIONS(3199), - [aux_sym__val_number_token2] = ACTIONS(3199), - [aux_sym__val_number_token3] = ACTIONS(3199), - [anon_sym_0b] = ACTIONS(3201), - [anon_sym_0o] = ACTIONS(3201), - [anon_sym_0x] = ACTIONS(3201), - [sym_val_date] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3199), - [sym__str_single_quotes] = ACTIONS(3199), - [sym__str_back_ticks] = ACTIONS(3199), - [anon_sym_err_GT] = ACTIONS(3201), - [anon_sym_out_GT] = ACTIONS(3201), - [anon_sym_e_GT] = ACTIONS(3201), - [anon_sym_o_GT] = ACTIONS(3201), - [anon_sym_err_PLUSout_GT] = ACTIONS(3201), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), - [anon_sym_o_PLUSe_GT] = ACTIONS(3201), - [anon_sym_e_PLUSo_GT] = ACTIONS(3201), - [anon_sym_err_GT_GT] = ACTIONS(3199), - [anon_sym_out_GT_GT] = ACTIONS(3199), - [anon_sym_e_GT_GT] = ACTIONS(3199), - [anon_sym_o_GT_GT] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), - [aux_sym_unquoted_token1] = ACTIONS(3201), + [anon_sym_true] = ACTIONS(4201), + [anon_sym_false] = ACTIONS(4201), + [anon_sym_null] = ACTIONS(4203), + [aux_sym_cmd_identifier_token38] = ACTIONS(4205), + [aux_sym_cmd_identifier_token39] = ACTIONS(4205), + [aux_sym_cmd_identifier_token40] = ACTIONS(4205), + [anon_sym_LBRACK] = ACTIONS(4029), + [anon_sym_LPAREN] = ACTIONS(4031), + [anon_sym_DOLLAR] = ACTIONS(4033), + [aux_sym_ctrl_match_token1] = ACTIONS(4035), + [anon_sym_DOT_DOT] = ACTIONS(4037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4039), + [anon_sym_DOT_DOT_LT] = ACTIONS(4039), + [aux_sym__val_number_decimal_token1] = ACTIONS(4207), + [aux_sym__val_number_decimal_token2] = ACTIONS(4209), + [aux_sym__val_number_decimal_token3] = ACTIONS(4211), + [aux_sym__val_number_decimal_token4] = ACTIONS(4213), + [aux_sym__val_number_token1] = ACTIONS(3539), + [aux_sym__val_number_token2] = ACTIONS(3539), + [aux_sym__val_number_token3] = ACTIONS(3539), + [anon_sym_0b] = ACTIONS(3541), + [anon_sym_0o] = ACTIONS(3543), + [anon_sym_0x] = ACTIONS(3543), + [sym_val_date] = ACTIONS(4215), + [anon_sym_DQUOTE] = ACTIONS(4051), + [sym__str_single_quotes] = ACTIONS(4053), + [sym__str_back_ticks] = ACTIONS(4053), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(4055), [anon_sym_POUND] = ACTIONS(247), }, [1134] = { - [sym_expr_unary] = STATE(4850), - [sym__expr_unary_minus] = STATE(4797), - [sym_expr_parenthesized] = STATE(4405), - [sym_val_range] = STATE(4850), - [sym__val_range] = STATE(7957), - [sym__val_range_with_end] = STATE(7665), - [sym__value] = STATE(4850), - [sym_val_nothing] = STATE(4339), - [sym_val_bool] = STATE(4450), - [sym_val_variable] = STATE(4431), - [sym_val_number] = STATE(4339), - [sym__val_number_decimal] = STATE(4127), - [sym__val_number] = STATE(4400), - [sym_val_duration] = STATE(4339), - [sym_val_filesize] = STATE(4339), - [sym_val_binary] = STATE(4339), - [sym_val_string] = STATE(4339), - [sym__str_double_quotes] = STATE(3756), - [sym_val_interpolated] = STATE(4339), - [sym__inter_single_quotes] = STATE(4389), - [sym__inter_double_quotes] = STATE(4338), - [sym_val_list] = STATE(4339), - [sym_val_record] = STATE(4339), - [sym_val_table] = STATE(4339), - [sym_val_closure] = STATE(4339), - [sym_unquoted] = STATE(4487), - [sym__unquoted_with_expr] = STATE(4852), - [sym__unquoted_anonymous_prefix] = STATE(7523), + [sym__val_range] = STATE(7672), + [sym__value] = STATE(4800), + [sym_val_nothing] = STATE(4945), + [sym_val_bool] = STATE(4563), + [sym_val_variable] = STATE(4945), + [sym_val_number] = STATE(4945), + [sym__val_number_decimal] = STATE(4015), + [sym__val_number] = STATE(4892), + [sym_val_duration] = STATE(4945), + [sym_val_filesize] = STATE(4945), + [sym_val_binary] = STATE(4945), + [sym_val_string] = STATE(4945), + [sym__str_double_quotes] = STATE(4462), + [sym_val_interpolated] = STATE(4945), + [sym__inter_single_quotes] = STATE(4775), + [sym__inter_double_quotes] = STATE(4778), + [sym_val_list] = STATE(4945), + [sym_val_record] = STATE(4945), + [sym_val_table] = STATE(4945), + [sym_val_closure] = STATE(4945), + [sym_unquoted] = STATE(4809), + [sym__unquoted_anonymous_prefix] = STATE(7676), [sym_comment] = STATE(1134), - [anon_sym_true] = ACTIONS(3543), - [anon_sym_false] = ACTIONS(3543), - [anon_sym_null] = ACTIONS(3545), - [aux_sym_cmd_identifier_token38] = ACTIONS(3547), - [aux_sym_cmd_identifier_token39] = ACTIONS(3547), - [aux_sym_cmd_identifier_token40] = ACTIONS(3547), - [anon_sym_LBRACK] = ACTIONS(3549), - [anon_sym_LPAREN] = ACTIONS(3551), - [anon_sym_DOLLAR] = ACTIONS(3553), - [anon_sym_DASH] = ACTIONS(3555), - [aux_sym_ctrl_match_token1] = ACTIONS(3557), - [anon_sym_DOT_DOT] = ACTIONS(3559), - [aux_sym_expr_unary_token1] = ACTIONS(3561), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3563), - [anon_sym_DOT_DOT_LT] = ACTIONS(3563), - [aux_sym__val_number_decimal_token1] = ACTIONS(3565), - [aux_sym__val_number_decimal_token2] = ACTIONS(3567), - [aux_sym__val_number_decimal_token3] = ACTIONS(3569), - [aux_sym__val_number_decimal_token4] = ACTIONS(3571), - [aux_sym__val_number_token1] = ACTIONS(3573), - [aux_sym__val_number_token2] = ACTIONS(3573), - [aux_sym__val_number_token3] = ACTIONS(3573), - [anon_sym_0b] = ACTIONS(3575), - [anon_sym_0o] = ACTIONS(3577), - [anon_sym_0x] = ACTIONS(3577), - [sym_val_date] = ACTIONS(3579), - [anon_sym_DQUOTE] = ACTIONS(3581), - [sym__str_single_quotes] = ACTIONS(3583), - [sym__str_back_ticks] = ACTIONS(3583), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3585), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3587), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3589), + [anon_sym_true] = ACTIONS(4217), + [anon_sym_false] = ACTIONS(4217), + [anon_sym_null] = ACTIONS(4219), + [aux_sym_cmd_identifier_token38] = ACTIONS(4221), + [aux_sym_cmd_identifier_token39] = ACTIONS(4221), + [aux_sym_cmd_identifier_token40] = ACTIONS(4221), + [anon_sym_LBRACK] = ACTIONS(4223), + [anon_sym_LPAREN] = ACTIONS(4225), + [anon_sym_DOLLAR] = ACTIONS(4227), + [aux_sym_ctrl_match_token1] = ACTIONS(4229), + [anon_sym_DOT_DOT] = ACTIONS(4231), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4233), + [anon_sym_DOT_DOT_LT] = ACTIONS(4233), + [aux_sym__val_number_decimal_token1] = ACTIONS(2190), + [aux_sym__val_number_decimal_token2] = ACTIONS(4235), + [aux_sym__val_number_decimal_token3] = ACTIONS(4237), + [aux_sym__val_number_decimal_token4] = ACTIONS(4239), + [aux_sym__val_number_token1] = ACTIONS(4241), + [aux_sym__val_number_token2] = ACTIONS(4241), + [aux_sym__val_number_token3] = ACTIONS(4241), + [anon_sym_0b] = ACTIONS(2198), + [anon_sym_0o] = ACTIONS(2200), + [anon_sym_0x] = ACTIONS(2200), + [sym_val_date] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(4245), + [sym__str_single_quotes] = ACTIONS(4247), + [sym__str_back_ticks] = ACTIONS(4247), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4249), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4251), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(2216), [anon_sym_POUND] = ACTIONS(247), }, [1135] = { + [sym__val_range] = STATE(7772), + [sym__value] = STATE(5937), + [sym_val_nothing] = STATE(4784), + [sym_val_bool] = STATE(7097), + [sym_val_variable] = STATE(4784), + [sym_val_number] = STATE(4784), + [sym__val_number_decimal] = STATE(5410), + [sym__val_number] = STATE(4955), + [sym_val_duration] = STATE(4784), + [sym_val_filesize] = STATE(4784), + [sym_val_binary] = STATE(4784), + [sym_val_string] = STATE(4784), + [sym__str_double_quotes] = STATE(4704), + [sym_val_interpolated] = STATE(4784), + [sym__inter_single_quotes] = STATE(4879), + [sym__inter_double_quotes] = STATE(4781), + [sym_val_list] = STATE(4784), + [sym_val_record] = STATE(4784), + [sym_val_table] = STATE(4784), + [sym_val_closure] = STATE(4784), + [sym_unquoted] = STATE(5938), + [sym__unquoted_anonymous_prefix] = STATE(7683), [sym_comment] = STATE(1135), - [anon_sym_true] = ACTIONS(1023), - [anon_sym_false] = ACTIONS(1023), - [anon_sym_null] = ACTIONS(1023), - [aux_sym_cmd_identifier_token38] = ACTIONS(1023), - [aux_sym_cmd_identifier_token39] = ACTIONS(1023), - [aux_sym_cmd_identifier_token40] = ACTIONS(1023), + [anon_sym_true] = ACTIONS(4023), + [anon_sym_false] = ACTIONS(4023), + [anon_sym_null] = ACTIONS(4025), + [aux_sym_cmd_identifier_token38] = ACTIONS(4027), + [aux_sym_cmd_identifier_token39] = ACTIONS(4027), + [aux_sym_cmd_identifier_token40] = ACTIONS(4027), + [anon_sym_LBRACK] = ACTIONS(4029), + [anon_sym_LPAREN] = ACTIONS(4031), + [anon_sym_DOLLAR] = ACTIONS(4033), + [aux_sym_ctrl_match_token1] = ACTIONS(4035), + [anon_sym_DOT_DOT] = ACTIONS(4037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4039), + [anon_sym_DOT_DOT_LT] = ACTIONS(4039), + [aux_sym__val_number_decimal_token1] = ACTIONS(4041), + [aux_sym__val_number_decimal_token2] = ACTIONS(4043), + [aux_sym__val_number_decimal_token3] = ACTIONS(4045), + [aux_sym__val_number_decimal_token4] = ACTIONS(4047), + [aux_sym__val_number_token1] = ACTIONS(3539), + [aux_sym__val_number_token2] = ACTIONS(3539), + [aux_sym__val_number_token3] = ACTIONS(3539), + [anon_sym_0b] = ACTIONS(3541), + [anon_sym_0o] = ACTIONS(3543), + [anon_sym_0x] = ACTIONS(3543), + [sym_val_date] = ACTIONS(4049), + [anon_sym_DQUOTE] = ACTIONS(4051), + [sym__str_single_quotes] = ACTIONS(4053), + [sym__str_back_ticks] = ACTIONS(4053), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3551), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(4055), + [anon_sym_POUND] = ACTIONS(247), + }, + [1136] = { + [sym__val_range] = STATE(7672), + [sym__value] = STATE(4896), + [sym_val_nothing] = STATE(4945), + [sym_val_bool] = STATE(4563), + [sym_val_variable] = STATE(4945), + [sym_val_number] = STATE(4945), + [sym__val_number_decimal] = STATE(4015), + [sym__val_number] = STATE(4892), + [sym_val_duration] = STATE(4945), + [sym_val_filesize] = STATE(4945), + [sym_val_binary] = STATE(4945), + [sym_val_string] = STATE(4945), + [sym__str_double_quotes] = STATE(4462), + [sym_val_interpolated] = STATE(4945), + [sym__inter_single_quotes] = STATE(4775), + [sym__inter_double_quotes] = STATE(4778), + [sym_val_list] = STATE(4945), + [sym_val_record] = STATE(4945), + [sym_val_table] = STATE(4945), + [sym_val_closure] = STATE(4945), + [sym_unquoted] = STATE(4899), + [sym__unquoted_anonymous_prefix] = STATE(7676), + [sym_comment] = STATE(1136), + [anon_sym_true] = ACTIONS(4217), + [anon_sym_false] = ACTIONS(4217), + [anon_sym_null] = ACTIONS(4219), + [aux_sym_cmd_identifier_token38] = ACTIONS(4221), + [aux_sym_cmd_identifier_token39] = ACTIONS(4221), + [aux_sym_cmd_identifier_token40] = ACTIONS(4221), + [anon_sym_LBRACK] = ACTIONS(4223), + [anon_sym_LPAREN] = ACTIONS(4225), + [anon_sym_DOLLAR] = ACTIONS(4227), + [aux_sym_ctrl_match_token1] = ACTIONS(4229), + [anon_sym_DOT_DOT] = ACTIONS(4231), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4233), + [anon_sym_DOT_DOT_LT] = ACTIONS(4233), + [aux_sym__val_number_decimal_token1] = ACTIONS(2190), + [aux_sym__val_number_decimal_token2] = ACTIONS(4235), + [aux_sym__val_number_decimal_token3] = ACTIONS(4237), + [aux_sym__val_number_decimal_token4] = ACTIONS(4239), + [aux_sym__val_number_token1] = ACTIONS(4241), + [aux_sym__val_number_token2] = ACTIONS(4241), + [aux_sym__val_number_token3] = ACTIONS(4241), + [anon_sym_0b] = ACTIONS(2198), + [anon_sym_0o] = ACTIONS(2200), + [anon_sym_0x] = ACTIONS(2200), + [sym_val_date] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(4245), + [sym__str_single_quotes] = ACTIONS(4247), + [sym__str_back_ticks] = ACTIONS(4247), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4249), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4251), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(2216), + [anon_sym_POUND] = ACTIONS(247), + }, + [1137] = { + [sym__val_range] = STATE(7733), + [sym__value] = STATE(4743), + [sym_val_nothing] = STATE(4607), + [sym_val_bool] = STATE(7030), + [sym_val_variable] = STATE(4607), + [sym_val_number] = STATE(4607), + [sym__val_number_decimal] = STATE(5470), + [sym__val_number] = STATE(4724), + [sym_val_duration] = STATE(4607), + [sym_val_filesize] = STATE(4607), + [sym_val_binary] = STATE(4607), + [sym_val_string] = STATE(4607), + [sym__str_double_quotes] = STATE(4321), + [sym_val_interpolated] = STATE(4607), + [sym__inter_single_quotes] = STATE(4619), + [sym__inter_double_quotes] = STATE(4620), + [sym_val_list] = STATE(4607), + [sym_val_record] = STATE(4607), + [sym_val_table] = STATE(4607), + [sym_val_closure] = STATE(4607), + [sym_unquoted] = STATE(4746), + [sym__unquoted_anonymous_prefix] = STATE(7678), + [sym_comment] = STATE(1137), + [anon_sym_true] = ACTIONS(4253), + [anon_sym_false] = ACTIONS(4253), + [anon_sym_null] = ACTIONS(4255), + [aux_sym_cmd_identifier_token38] = ACTIONS(4257), + [aux_sym_cmd_identifier_token39] = ACTIONS(4257), + [aux_sym_cmd_identifier_token40] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4259), + [anon_sym_LPAREN] = ACTIONS(4261), + [anon_sym_DOLLAR] = ACTIONS(4263), + [aux_sym_ctrl_match_token1] = ACTIONS(4265), + [anon_sym_DOT_DOT] = ACTIONS(4267), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4269), + [anon_sym_DOT_DOT_LT] = ACTIONS(4269), + [aux_sym__val_number_decimal_token1] = ACTIONS(4271), + [aux_sym__val_number_decimal_token2] = ACTIONS(4273), + [aux_sym__val_number_decimal_token3] = ACTIONS(4275), + [aux_sym__val_number_decimal_token4] = ACTIONS(4277), + [aux_sym__val_number_token1] = ACTIONS(4279), + [aux_sym__val_number_token2] = ACTIONS(4279), + [aux_sym__val_number_token3] = ACTIONS(4279), + [anon_sym_0b] = ACTIONS(2113), + [anon_sym_0o] = ACTIONS(2115), + [anon_sym_0x] = ACTIONS(2115), + [sym_val_date] = ACTIONS(4281), + [anon_sym_DQUOTE] = ACTIONS(4283), + [sym__str_single_quotes] = ACTIONS(4285), + [sym__str_back_ticks] = ACTIONS(4285), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4289), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(2131), + [anon_sym_POUND] = ACTIONS(247), + }, + [1138] = { + [sym__val_range] = STATE(7672), + [sym__value] = STATE(4894), + [sym_val_nothing] = STATE(4945), + [sym_val_bool] = STATE(4563), + [sym_val_variable] = STATE(4945), + [sym_val_number] = STATE(4945), + [sym__val_number_decimal] = STATE(4015), + [sym__val_number] = STATE(4892), + [sym_val_duration] = STATE(4945), + [sym_val_filesize] = STATE(4945), + [sym_val_binary] = STATE(4945), + [sym_val_string] = STATE(4945), + [sym__str_double_quotes] = STATE(4462), + [sym_val_interpolated] = STATE(4945), + [sym__inter_single_quotes] = STATE(4775), + [sym__inter_double_quotes] = STATE(4778), + [sym_val_list] = STATE(4945), + [sym_val_record] = STATE(4945), + [sym_val_table] = STATE(4945), + [sym_val_closure] = STATE(4945), + [sym_unquoted] = STATE(4834), + [sym__unquoted_anonymous_prefix] = STATE(7676), + [sym_comment] = STATE(1138), + [anon_sym_true] = ACTIONS(4217), + [anon_sym_false] = ACTIONS(4217), + [anon_sym_null] = ACTIONS(4219), + [aux_sym_cmd_identifier_token38] = ACTIONS(4221), + [aux_sym_cmd_identifier_token39] = ACTIONS(4221), + [aux_sym_cmd_identifier_token40] = ACTIONS(4221), + [anon_sym_LBRACK] = ACTIONS(4223), + [anon_sym_LPAREN] = ACTIONS(4225), + [anon_sym_DOLLAR] = ACTIONS(4227), + [aux_sym_ctrl_match_token1] = ACTIONS(4229), + [anon_sym_DOT_DOT] = ACTIONS(4231), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4233), + [anon_sym_DOT_DOT_LT] = ACTIONS(4233), + [aux_sym__val_number_decimal_token1] = ACTIONS(2190), + [aux_sym__val_number_decimal_token2] = ACTIONS(4235), + [aux_sym__val_number_decimal_token3] = ACTIONS(4237), + [aux_sym__val_number_decimal_token4] = ACTIONS(4239), + [aux_sym__val_number_token1] = ACTIONS(4241), + [aux_sym__val_number_token2] = ACTIONS(4241), + [aux_sym__val_number_token3] = ACTIONS(4241), + [anon_sym_0b] = ACTIONS(2198), + [anon_sym_0o] = ACTIONS(2200), + [anon_sym_0x] = ACTIONS(2200), + [sym_val_date] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(4245), + [sym__str_single_quotes] = ACTIONS(4247), + [sym__str_back_ticks] = ACTIONS(4247), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4249), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4251), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(2216), + [anon_sym_POUND] = ACTIONS(247), + }, + [1139] = { + [sym__val_range] = STATE(7733), + [sym__value] = STATE(4614), + [sym_val_nothing] = STATE(4607), + [sym_val_bool] = STATE(7030), + [sym_val_variable] = STATE(4607), + [sym_val_number] = STATE(4607), + [sym__val_number_decimal] = STATE(5470), + [sym__val_number] = STATE(4724), + [sym_val_duration] = STATE(4607), + [sym_val_filesize] = STATE(4607), + [sym_val_binary] = STATE(4607), + [sym_val_string] = STATE(4607), + [sym__str_double_quotes] = STATE(4321), + [sym_val_interpolated] = STATE(4607), + [sym__inter_single_quotes] = STATE(4619), + [sym__inter_double_quotes] = STATE(4620), + [sym_val_list] = STATE(4607), + [sym_val_record] = STATE(4607), + [sym_val_table] = STATE(4607), + [sym_val_closure] = STATE(4607), + [sym_unquoted] = STATE(4621), + [sym__unquoted_anonymous_prefix] = STATE(7678), + [sym_comment] = STATE(1139), + [anon_sym_true] = ACTIONS(4253), + [anon_sym_false] = ACTIONS(4253), + [anon_sym_null] = ACTIONS(4255), + [aux_sym_cmd_identifier_token38] = ACTIONS(4257), + [aux_sym_cmd_identifier_token39] = ACTIONS(4257), + [aux_sym_cmd_identifier_token40] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4259), + [anon_sym_LPAREN] = ACTIONS(4261), + [anon_sym_DOLLAR] = ACTIONS(4263), + [aux_sym_ctrl_match_token1] = ACTIONS(4265), + [anon_sym_DOT_DOT] = ACTIONS(4267), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4269), + [anon_sym_DOT_DOT_LT] = ACTIONS(4269), + [aux_sym__val_number_decimal_token1] = ACTIONS(4271), + [aux_sym__val_number_decimal_token2] = ACTIONS(4273), + [aux_sym__val_number_decimal_token3] = ACTIONS(4275), + [aux_sym__val_number_decimal_token4] = ACTIONS(4277), + [aux_sym__val_number_token1] = ACTIONS(4279), + [aux_sym__val_number_token2] = ACTIONS(4279), + [aux_sym__val_number_token3] = ACTIONS(4279), + [anon_sym_0b] = ACTIONS(2113), + [anon_sym_0o] = ACTIONS(2115), + [anon_sym_0x] = ACTIONS(2115), + [sym_val_date] = ACTIONS(4281), + [anon_sym_DQUOTE] = ACTIONS(4283), + [sym__str_single_quotes] = ACTIONS(4285), + [sym__str_back_ticks] = ACTIONS(4285), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4289), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(2131), + [anon_sym_POUND] = ACTIONS(247), + }, + [1140] = { + [sym__expr_parenthesized_immediate] = STATE(7403), + [sym_comment] = STATE(1140), + [ts_builtin_sym_end] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(1587), + [anon_sym_false] = ACTIONS(1587), + [anon_sym_null] = ACTIONS(1587), + [aux_sym_cmd_identifier_token38] = ACTIONS(1587), + [aux_sym_cmd_identifier_token39] = ACTIONS(1587), + [aux_sym_cmd_identifier_token40] = ACTIONS(1587), + [sym__newline] = ACTIONS(1587), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_err_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_GT_PIPE] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1575), + [anon_sym_DOLLAR] = ACTIONS(1575), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_DASH] = ACTIONS(1575), + [aux_sym_ctrl_match_token1] = ACTIONS(1587), + [anon_sym_DOT_DOT] = ACTIONS(1575), + [anon_sym_LPAREN2] = ACTIONS(3914), + [anon_sym_DOT_DOT2] = ACTIONS(4291), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT] = ACTIONS(1575), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4293), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4293), + [aux_sym__val_number_decimal_token1] = ACTIONS(1575), + [aux_sym__val_number_decimal_token2] = ACTIONS(1587), + [aux_sym__val_number_decimal_token3] = ACTIONS(1587), + [aux_sym__val_number_decimal_token4] = ACTIONS(1587), + [aux_sym__val_number_token1] = ACTIONS(1587), + [aux_sym__val_number_token2] = ACTIONS(1587), + [aux_sym__val_number_token3] = ACTIONS(1587), + [anon_sym_0b] = ACTIONS(1575), + [sym_filesize_unit] = ACTIONS(4295), + [sym_duration_unit] = ACTIONS(4297), + [anon_sym_0o] = ACTIONS(1575), + [anon_sym_0x] = ACTIONS(1575), + [sym_val_date] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [sym__str_single_quotes] = ACTIONS(1587), + [sym__str_back_ticks] = ACTIONS(1587), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1587), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1587), + [anon_sym_err_GT] = ACTIONS(1575), + [anon_sym_out_GT] = ACTIONS(1575), + [anon_sym_e_GT] = ACTIONS(1575), + [anon_sym_o_GT] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT] = ACTIONS(1575), + [anon_sym_err_GT_GT] = ACTIONS(1587), + [anon_sym_out_GT_GT] = ACTIONS(1587), + [anon_sym_e_GT_GT] = ACTIONS(1587), + [anon_sym_o_GT_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [aux_sym_unquoted_token1] = ACTIONS(1575), + [aux_sym_unquoted_token2] = ACTIONS(4299), + [anon_sym_POUND] = ACTIONS(247), + }, + [1141] = { + [sym__val_range] = STATE(7774), + [sym__value] = STATE(2620), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3524), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(5515), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(2621), + [sym__unquoted_anonymous_prefix] = STATE(7502), + [sym_comment] = STATE(1141), + [anon_sym_true] = ACTIONS(3243), + [anon_sym_false] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [aux_sym_cmd_identifier_token38] = ACTIONS(3686), + [aux_sym_cmd_identifier_token39] = ACTIONS(3686), + [aux_sym_cmd_identifier_token40] = ACTIONS(3686), + [anon_sym_LBRACK] = ACTIONS(3688), + [anon_sym_LPAREN] = ACTIONS(4087), + [anon_sym_DOLLAR] = ACTIONS(4089), + [aux_sym_ctrl_match_token1] = ACTIONS(3694), + [anon_sym_DOT_DOT] = ACTIONS(4091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4093), + [anon_sym_DOT_DOT_LT] = ACTIONS(4093), + [aux_sym__val_number_decimal_token1] = ACTIONS(3263), + [aux_sym__val_number_decimal_token2] = ACTIONS(3265), + [aux_sym__val_number_decimal_token3] = ACTIONS(3267), + [aux_sym__val_number_decimal_token4] = ACTIONS(3269), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3271), + [anon_sym_DQUOTE] = ACTIONS(3700), + [sym__str_single_quotes] = ACTIONS(3702), + [sym__str_back_ticks] = ACTIONS(3702), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3704), + [anon_sym_POUND] = ACTIONS(247), + }, + [1142] = { + [sym__val_range] = STATE(7733), + [sym__value] = STATE(4755), + [sym_val_nothing] = STATE(4607), + [sym_val_bool] = STATE(7030), + [sym_val_variable] = STATE(4607), + [sym_val_number] = STATE(4607), + [sym__val_number_decimal] = STATE(5470), + [sym__val_number] = STATE(4724), + [sym_val_duration] = STATE(4607), + [sym_val_filesize] = STATE(4607), + [sym_val_binary] = STATE(4607), + [sym_val_string] = STATE(4607), + [sym__str_double_quotes] = STATE(4321), + [sym_val_interpolated] = STATE(4607), + [sym__inter_single_quotes] = STATE(4619), + [sym__inter_double_quotes] = STATE(4620), + [sym_val_list] = STATE(4607), + [sym_val_record] = STATE(4607), + [sym_val_table] = STATE(4607), + [sym_val_closure] = STATE(4607), + [sym_unquoted] = STATE(4611), + [sym__unquoted_anonymous_prefix] = STATE(7678), + [sym_comment] = STATE(1142), + [anon_sym_true] = ACTIONS(4253), + [anon_sym_false] = ACTIONS(4253), + [anon_sym_null] = ACTIONS(4255), + [aux_sym_cmd_identifier_token38] = ACTIONS(4257), + [aux_sym_cmd_identifier_token39] = ACTIONS(4257), + [aux_sym_cmd_identifier_token40] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4259), + [anon_sym_LPAREN] = ACTIONS(4261), + [anon_sym_DOLLAR] = ACTIONS(4263), + [aux_sym_ctrl_match_token1] = ACTIONS(4265), + [anon_sym_DOT_DOT] = ACTIONS(4267), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4269), + [anon_sym_DOT_DOT_LT] = ACTIONS(4269), + [aux_sym__val_number_decimal_token1] = ACTIONS(4271), + [aux_sym__val_number_decimal_token2] = ACTIONS(4273), + [aux_sym__val_number_decimal_token3] = ACTIONS(4275), + [aux_sym__val_number_decimal_token4] = ACTIONS(4277), + [aux_sym__val_number_token1] = ACTIONS(4279), + [aux_sym__val_number_token2] = ACTIONS(4279), + [aux_sym__val_number_token3] = ACTIONS(4279), + [anon_sym_0b] = ACTIONS(2113), + [anon_sym_0o] = ACTIONS(2115), + [anon_sym_0x] = ACTIONS(2115), + [sym_val_date] = ACTIONS(4281), + [anon_sym_DQUOTE] = ACTIONS(4283), + [sym__str_single_quotes] = ACTIONS(4285), + [sym__str_back_ticks] = ACTIONS(4285), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4289), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(2131), + [anon_sym_POUND] = ACTIONS(247), + }, + [1143] = { + [sym__val_range] = STATE(7733), + [sym__value] = STATE(4743), + [sym_val_nothing] = STATE(4607), + [sym_val_bool] = STATE(4396), + [sym_val_variable] = STATE(4607), + [sym_val_number] = STATE(4607), + [sym__val_number_decimal] = STATE(3973), + [sym__val_number] = STATE(4724), + [sym_val_duration] = STATE(4607), + [sym_val_filesize] = STATE(4607), + [sym_val_binary] = STATE(4607), + [sym_val_string] = STATE(4607), + [sym__str_double_quotes] = STATE(4321), + [sym_val_interpolated] = STATE(4607), + [sym__inter_single_quotes] = STATE(4619), + [sym__inter_double_quotes] = STATE(4620), + [sym_val_list] = STATE(4607), + [sym_val_record] = STATE(4607), + [sym_val_table] = STATE(4607), + [sym_val_closure] = STATE(4607), + [sym_unquoted] = STATE(4746), + [sym__unquoted_anonymous_prefix] = STATE(7678), + [sym_comment] = STATE(1143), + [anon_sym_true] = ACTIONS(4301), + [anon_sym_false] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4303), + [aux_sym_cmd_identifier_token38] = ACTIONS(4305), + [aux_sym_cmd_identifier_token39] = ACTIONS(4305), + [aux_sym_cmd_identifier_token40] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4259), + [anon_sym_LPAREN] = ACTIONS(4261), + [anon_sym_DOLLAR] = ACTIONS(4263), + [aux_sym_ctrl_match_token1] = ACTIONS(4265), + [anon_sym_DOT_DOT] = ACTIONS(4267), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4269), + [anon_sym_DOT_DOT_LT] = ACTIONS(4269), + [aux_sym__val_number_decimal_token1] = ACTIONS(2105), + [aux_sym__val_number_decimal_token2] = ACTIONS(4307), + [aux_sym__val_number_decimal_token3] = ACTIONS(4309), + [aux_sym__val_number_decimal_token4] = ACTIONS(4311), + [aux_sym__val_number_token1] = ACTIONS(4279), + [aux_sym__val_number_token2] = ACTIONS(4279), + [aux_sym__val_number_token3] = ACTIONS(4279), + [anon_sym_0b] = ACTIONS(2113), + [anon_sym_0o] = ACTIONS(2115), + [anon_sym_0x] = ACTIONS(2115), + [sym_val_date] = ACTIONS(4313), + [anon_sym_DQUOTE] = ACTIONS(4283), + [sym__str_single_quotes] = ACTIONS(4285), + [sym__str_back_ticks] = ACTIONS(4285), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4289), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(2131), + [anon_sym_POUND] = ACTIONS(247), + }, + [1144] = { + [sym__val_range] = STATE(7733), + [sym__value] = STATE(4717), + [sym_val_nothing] = STATE(4607), + [sym_val_bool] = STATE(7030), + [sym_val_variable] = STATE(4607), + [sym_val_number] = STATE(4607), + [sym__val_number_decimal] = STATE(5470), + [sym__val_number] = STATE(4724), + [sym_val_duration] = STATE(4607), + [sym_val_filesize] = STATE(4607), + [sym_val_binary] = STATE(4607), + [sym_val_string] = STATE(4607), + [sym__str_double_quotes] = STATE(4321), + [sym_val_interpolated] = STATE(4607), + [sym__inter_single_quotes] = STATE(4619), + [sym__inter_double_quotes] = STATE(4620), + [sym_val_list] = STATE(4607), + [sym_val_record] = STATE(4607), + [sym_val_table] = STATE(4607), + [sym_val_closure] = STATE(4607), + [sym_unquoted] = STATE(4738), + [sym__unquoted_anonymous_prefix] = STATE(7678), + [sym_comment] = STATE(1144), + [anon_sym_true] = ACTIONS(4253), + [anon_sym_false] = ACTIONS(4253), + [anon_sym_null] = ACTIONS(4255), + [aux_sym_cmd_identifier_token38] = ACTIONS(4257), + [aux_sym_cmd_identifier_token39] = ACTIONS(4257), + [aux_sym_cmd_identifier_token40] = ACTIONS(4257), + [anon_sym_LBRACK] = ACTIONS(4259), + [anon_sym_LPAREN] = ACTIONS(4261), + [anon_sym_DOLLAR] = ACTIONS(4263), + [aux_sym_ctrl_match_token1] = ACTIONS(4265), + [anon_sym_DOT_DOT] = ACTIONS(4267), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4269), + [anon_sym_DOT_DOT_LT] = ACTIONS(4269), + [aux_sym__val_number_decimal_token1] = ACTIONS(4271), + [aux_sym__val_number_decimal_token2] = ACTIONS(4273), + [aux_sym__val_number_decimal_token3] = ACTIONS(4275), + [aux_sym__val_number_decimal_token4] = ACTIONS(4277), + [aux_sym__val_number_token1] = ACTIONS(4279), + [aux_sym__val_number_token2] = ACTIONS(4279), + [aux_sym__val_number_token3] = ACTIONS(4279), + [anon_sym_0b] = ACTIONS(2113), + [anon_sym_0o] = ACTIONS(2115), + [anon_sym_0x] = ACTIONS(2115), + [sym_val_date] = ACTIONS(4281), + [anon_sym_DQUOTE] = ACTIONS(4283), + [sym__str_single_quotes] = ACTIONS(4285), + [sym__str_back_ticks] = ACTIONS(4285), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4289), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(2131), + [anon_sym_POUND] = ACTIONS(247), + }, + [1145] = { + [sym__val_range] = STATE(7733), + [sym__value] = STATE(4614), + [sym_val_nothing] = STATE(4607), + [sym_val_bool] = STATE(4396), + [sym_val_variable] = STATE(4607), + [sym_val_number] = STATE(4607), + [sym__val_number_decimal] = STATE(3973), + [sym__val_number] = STATE(4724), + [sym_val_duration] = STATE(4607), + [sym_val_filesize] = STATE(4607), + [sym_val_binary] = STATE(4607), + [sym_val_string] = STATE(4607), + [sym__str_double_quotes] = STATE(4321), + [sym_val_interpolated] = STATE(4607), + [sym__inter_single_quotes] = STATE(4619), + [sym__inter_double_quotes] = STATE(4620), + [sym_val_list] = STATE(4607), + [sym_val_record] = STATE(4607), + [sym_val_table] = STATE(4607), + [sym_val_closure] = STATE(4607), + [sym_unquoted] = STATE(4621), + [sym__unquoted_anonymous_prefix] = STATE(7678), + [sym_comment] = STATE(1145), + [anon_sym_true] = ACTIONS(4301), + [anon_sym_false] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4303), + [aux_sym_cmd_identifier_token38] = ACTIONS(4305), + [aux_sym_cmd_identifier_token39] = ACTIONS(4305), + [aux_sym_cmd_identifier_token40] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4259), + [anon_sym_LPAREN] = ACTIONS(4261), + [anon_sym_DOLLAR] = ACTIONS(4263), + [aux_sym_ctrl_match_token1] = ACTIONS(4265), + [anon_sym_DOT_DOT] = ACTIONS(4267), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4269), + [anon_sym_DOT_DOT_LT] = ACTIONS(4269), + [aux_sym__val_number_decimal_token1] = ACTIONS(2105), + [aux_sym__val_number_decimal_token2] = ACTIONS(4307), + [aux_sym__val_number_decimal_token3] = ACTIONS(4309), + [aux_sym__val_number_decimal_token4] = ACTIONS(4311), + [aux_sym__val_number_token1] = ACTIONS(4279), + [aux_sym__val_number_token2] = ACTIONS(4279), + [aux_sym__val_number_token3] = ACTIONS(4279), + [anon_sym_0b] = ACTIONS(2113), + [anon_sym_0o] = ACTIONS(2115), + [anon_sym_0x] = ACTIONS(2115), + [sym_val_date] = ACTIONS(4313), + [anon_sym_DQUOTE] = ACTIONS(4283), + [sym__str_single_quotes] = ACTIONS(4285), + [sym__str_back_ticks] = ACTIONS(4285), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4289), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(2131), + [anon_sym_POUND] = ACTIONS(247), + }, + [1146] = { + [sym_path] = STATE(1238), + [sym_comment] = STATE(1146), + [aux_sym_cell_path_repeat1] = STATE(1146), + [ts_builtin_sym_end] = ACTIONS(1023), + [anon_sym_EQ] = ACTIONS(1021), + [anon_sym_PLUS_EQ] = ACTIONS(1023), + [anon_sym_DASH_EQ] = ACTIONS(1023), + [anon_sym_STAR_EQ] = ACTIONS(1023), + [anon_sym_SLASH_EQ] = ACTIONS(1023), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1023), [sym__newline] = ACTIONS(1023), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_LPAREN] = ACTIONS(1023), - [anon_sym_COMMA] = ACTIONS(1023), - [anon_sym_DOLLAR] = ACTIONS(1023), - [aux_sym_ctrl_match_token1] = ACTIONS(1023), - [anon_sym_RBRACE] = ACTIONS(1023), - [anon_sym__] = ACTIONS(1021), - [anon_sym_DOT_DOT] = ACTIONS(1021), + [anon_sym_SEMI] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(1023), + [anon_sym_err_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_GT_PIPE] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1023), [aux_sym_expr_binary_token1] = ACTIONS(1023), [aux_sym_expr_binary_token2] = ACTIONS(1023), [aux_sym_expr_binary_token3] = ACTIONS(1023), @@ -189875,22 +185222,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_binary_token26] = ACTIONS(1023), [aux_sym_expr_binary_token27] = ACTIONS(1023), [aux_sym_expr_binary_token28] = ACTIONS(1023), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1023), - [anon_sym_DOT_DOT_LT] = ACTIONS(1023), - [aux_sym__val_number_decimal_token1] = ACTIONS(1021), - [aux_sym__val_number_decimal_token2] = ACTIONS(1023), - [aux_sym__val_number_decimal_token3] = ACTIONS(1023), - [aux_sym__val_number_decimal_token4] = ACTIONS(1023), - [aux_sym__val_number_token1] = ACTIONS(1023), - [aux_sym__val_number_token2] = ACTIONS(1023), - [aux_sym__val_number_token3] = ACTIONS(1023), - [anon_sym_0b] = ACTIONS(1021), - [anon_sym_0o] = ACTIONS(1021), - [anon_sym_0x] = ACTIONS(1021), - [sym_val_date] = ACTIONS(1023), - [anon_sym_DQUOTE] = ACTIONS(1023), - [sym__str_single_quotes] = ACTIONS(1023), - [sym__str_back_ticks] = ACTIONS(1023), + [anon_sym_DOT_DOT2] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(4315), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), [anon_sym_err_GT] = ACTIONS(1021), [anon_sym_out_GT] = ACTIONS(1021), [anon_sym_e_GT] = ACTIONS(1021), @@ -189907,9033 +185242,7336 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), - [aux_sym_unquoted_token1] = ACTIONS(1021), - [anon_sym_POUND] = ACTIONS(247), - }, - [1136] = { - [sym_expr_unary] = STATE(4854), - [sym__expr_unary_minus] = STATE(4797), - [sym_expr_parenthesized] = STATE(4324), - [sym_val_range] = STATE(4854), - [sym__val_range] = STATE(7957), - [sym__val_range_with_end] = STATE(7665), - [sym__value] = STATE(4854), - [sym_val_nothing] = STATE(4339), - [sym_val_bool] = STATE(4450), - [sym_val_variable] = STATE(4431), - [sym_val_number] = STATE(4339), - [sym__val_number_decimal] = STATE(4127), - [sym__val_number] = STATE(4400), - [sym_val_duration] = STATE(4339), - [sym_val_filesize] = STATE(4339), - [sym_val_binary] = STATE(4339), - [sym_val_string] = STATE(4339), - [sym__str_double_quotes] = STATE(3756), - [sym_val_interpolated] = STATE(4339), - [sym__inter_single_quotes] = STATE(4389), - [sym__inter_double_quotes] = STATE(4338), - [sym_val_list] = STATE(4339), - [sym_val_record] = STATE(4339), - [sym_val_table] = STATE(4339), - [sym_val_closure] = STATE(4339), - [sym_unquoted] = STATE(4494), - [sym__unquoted_with_expr] = STATE(4724), - [sym__unquoted_anonymous_prefix] = STATE(7523), - [sym_comment] = STATE(1136), - [anon_sym_true] = ACTIONS(3543), - [anon_sym_false] = ACTIONS(3543), - [anon_sym_null] = ACTIONS(3545), - [aux_sym_cmd_identifier_token38] = ACTIONS(3547), - [aux_sym_cmd_identifier_token39] = ACTIONS(3547), - [aux_sym_cmd_identifier_token40] = ACTIONS(3547), - [anon_sym_LBRACK] = ACTIONS(3549), - [anon_sym_LPAREN] = ACTIONS(3551), - [anon_sym_DOLLAR] = ACTIONS(3553), - [anon_sym_DASH] = ACTIONS(3555), - [aux_sym_ctrl_match_token1] = ACTIONS(3557), - [anon_sym_DOT_DOT] = ACTIONS(3559), - [aux_sym_expr_unary_token1] = ACTIONS(3561), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3563), - [anon_sym_DOT_DOT_LT] = ACTIONS(3563), - [aux_sym__val_number_decimal_token1] = ACTIONS(3565), - [aux_sym__val_number_decimal_token2] = ACTIONS(3567), - [aux_sym__val_number_decimal_token3] = ACTIONS(3569), - [aux_sym__val_number_decimal_token4] = ACTIONS(3571), - [aux_sym__val_number_token1] = ACTIONS(3573), - [aux_sym__val_number_token2] = ACTIONS(3573), - [aux_sym__val_number_token3] = ACTIONS(3573), - [anon_sym_0b] = ACTIONS(3575), - [anon_sym_0o] = ACTIONS(3577), - [anon_sym_0x] = ACTIONS(3577), - [sym_val_date] = ACTIONS(3579), - [anon_sym_DQUOTE] = ACTIONS(3581), - [sym__str_single_quotes] = ACTIONS(3583), - [sym__str_back_ticks] = ACTIONS(3583), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3585), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3587), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3589), - [anon_sym_POUND] = ACTIONS(247), - }, - [1137] = { - [sym_comment] = STATE(1137), - [anon_sym_true] = ACTIONS(978), - [anon_sym_false] = ACTIONS(978), - [anon_sym_null] = ACTIONS(978), - [aux_sym_cmd_identifier_token38] = ACTIONS(978), - [aux_sym_cmd_identifier_token39] = ACTIONS(978), - [aux_sym_cmd_identifier_token40] = ACTIONS(978), - [sym__newline] = ACTIONS(978), - [anon_sym_LBRACK] = ACTIONS(978), - [anon_sym_LPAREN] = ACTIONS(978), - [anon_sym_COMMA] = ACTIONS(978), - [anon_sym_DOLLAR] = ACTIONS(978), - [aux_sym_ctrl_match_token1] = ACTIONS(978), - [anon_sym_RBRACE] = ACTIONS(978), - [anon_sym__] = ACTIONS(976), - [anon_sym_DOT_DOT] = ACTIONS(976), - [aux_sym_expr_binary_token1] = ACTIONS(978), - [aux_sym_expr_binary_token2] = ACTIONS(978), - [aux_sym_expr_binary_token3] = ACTIONS(978), - [aux_sym_expr_binary_token4] = ACTIONS(978), - [aux_sym_expr_binary_token5] = ACTIONS(978), - [aux_sym_expr_binary_token6] = ACTIONS(978), - [aux_sym_expr_binary_token7] = ACTIONS(978), - [aux_sym_expr_binary_token8] = ACTIONS(978), - [aux_sym_expr_binary_token9] = ACTIONS(978), - [aux_sym_expr_binary_token10] = ACTIONS(978), - [aux_sym_expr_binary_token11] = ACTIONS(978), - [aux_sym_expr_binary_token12] = ACTIONS(978), - [aux_sym_expr_binary_token13] = ACTIONS(978), - [aux_sym_expr_binary_token14] = ACTIONS(978), - [aux_sym_expr_binary_token15] = ACTIONS(978), - [aux_sym_expr_binary_token16] = ACTIONS(978), - [aux_sym_expr_binary_token17] = ACTIONS(978), - [aux_sym_expr_binary_token18] = ACTIONS(978), - [aux_sym_expr_binary_token19] = ACTIONS(978), - [aux_sym_expr_binary_token20] = ACTIONS(978), - [aux_sym_expr_binary_token21] = ACTIONS(978), - [aux_sym_expr_binary_token22] = ACTIONS(978), - [aux_sym_expr_binary_token23] = ACTIONS(978), - [aux_sym_expr_binary_token24] = ACTIONS(978), - [aux_sym_expr_binary_token25] = ACTIONS(978), - [aux_sym_expr_binary_token26] = ACTIONS(978), - [aux_sym_expr_binary_token27] = ACTIONS(978), - [aux_sym_expr_binary_token28] = ACTIONS(978), - [anon_sym_DOT_DOT_EQ] = ACTIONS(978), - [anon_sym_DOT_DOT_LT] = ACTIONS(978), - [aux_sym__val_number_decimal_token1] = ACTIONS(976), - [aux_sym__val_number_decimal_token2] = ACTIONS(978), - [aux_sym__val_number_decimal_token3] = ACTIONS(978), - [aux_sym__val_number_decimal_token4] = ACTIONS(978), - [aux_sym__val_number_token1] = ACTIONS(978), - [aux_sym__val_number_token2] = ACTIONS(978), - [aux_sym__val_number_token3] = ACTIONS(978), - [anon_sym_0b] = ACTIONS(976), - [anon_sym_0o] = ACTIONS(976), - [anon_sym_0x] = ACTIONS(976), - [sym_val_date] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(978), - [sym__str_single_quotes] = ACTIONS(978), - [sym__str_back_ticks] = ACTIONS(978), - [anon_sym_err_GT] = ACTIONS(976), - [anon_sym_out_GT] = ACTIONS(976), - [anon_sym_e_GT] = ACTIONS(976), - [anon_sym_o_GT] = ACTIONS(976), - [anon_sym_err_PLUSout_GT] = ACTIONS(976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(976), - [anon_sym_o_PLUSe_GT] = ACTIONS(976), - [anon_sym_e_PLUSo_GT] = ACTIONS(976), - [anon_sym_err_GT_GT] = ACTIONS(978), - [anon_sym_out_GT_GT] = ACTIONS(978), - [anon_sym_e_GT_GT] = ACTIONS(978), - [anon_sym_o_GT_GT] = ACTIONS(978), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(978), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(978), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(978), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(978), - [aux_sym_unquoted_token1] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(247), - }, - [1138] = { - [sym_comment] = STATE(1138), - [anon_sym_true] = ACTIONS(3591), - [anon_sym_false] = ACTIONS(3591), - [anon_sym_null] = ACTIONS(3591), - [aux_sym_cmd_identifier_token38] = ACTIONS(3591), - [aux_sym_cmd_identifier_token39] = ACTIONS(3591), - [aux_sym_cmd_identifier_token40] = ACTIONS(3591), - [sym__newline] = ACTIONS(3591), - [anon_sym_LBRACK] = ACTIONS(3591), - [anon_sym_LPAREN] = ACTIONS(3591), - [anon_sym_COMMA] = ACTIONS(3591), - [anon_sym_DOLLAR] = ACTIONS(3591), - [aux_sym_ctrl_match_token1] = ACTIONS(3591), - [anon_sym_RBRACE] = ACTIONS(3591), - [anon_sym__] = ACTIONS(3593), - [anon_sym_DOT_DOT] = ACTIONS(3593), - [aux_sym_expr_binary_token1] = ACTIONS(3591), - [aux_sym_expr_binary_token2] = ACTIONS(3591), - [aux_sym_expr_binary_token3] = ACTIONS(3591), - [aux_sym_expr_binary_token4] = ACTIONS(3591), - [aux_sym_expr_binary_token5] = ACTIONS(3591), - [aux_sym_expr_binary_token6] = ACTIONS(3591), - [aux_sym_expr_binary_token7] = ACTIONS(3591), - [aux_sym_expr_binary_token8] = ACTIONS(3591), - [aux_sym_expr_binary_token9] = ACTIONS(3591), - [aux_sym_expr_binary_token10] = ACTIONS(3591), - [aux_sym_expr_binary_token11] = ACTIONS(3591), - [aux_sym_expr_binary_token12] = ACTIONS(3591), - [aux_sym_expr_binary_token13] = ACTIONS(3591), - [aux_sym_expr_binary_token14] = ACTIONS(3591), - [aux_sym_expr_binary_token15] = ACTIONS(3591), - [aux_sym_expr_binary_token16] = ACTIONS(3591), - [aux_sym_expr_binary_token17] = ACTIONS(3591), - [aux_sym_expr_binary_token18] = ACTIONS(3591), - [aux_sym_expr_binary_token19] = ACTIONS(3591), - [aux_sym_expr_binary_token20] = ACTIONS(3591), - [aux_sym_expr_binary_token21] = ACTIONS(3591), - [aux_sym_expr_binary_token22] = ACTIONS(3591), - [aux_sym_expr_binary_token23] = ACTIONS(3591), - [aux_sym_expr_binary_token24] = ACTIONS(3591), - [aux_sym_expr_binary_token25] = ACTIONS(3591), - [aux_sym_expr_binary_token26] = ACTIONS(3591), - [aux_sym_expr_binary_token27] = ACTIONS(3591), - [aux_sym_expr_binary_token28] = ACTIONS(3591), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3591), - [anon_sym_DOT_DOT_LT] = ACTIONS(3591), - [aux_sym__val_number_decimal_token1] = ACTIONS(3593), - [aux_sym__val_number_decimal_token2] = ACTIONS(3591), - [aux_sym__val_number_decimal_token3] = ACTIONS(3591), - [aux_sym__val_number_decimal_token4] = ACTIONS(3591), - [aux_sym__val_number_token1] = ACTIONS(3591), - [aux_sym__val_number_token2] = ACTIONS(3591), - [aux_sym__val_number_token3] = ACTIONS(3591), - [anon_sym_0b] = ACTIONS(3593), - [anon_sym_0o] = ACTIONS(3593), - [anon_sym_0x] = ACTIONS(3593), - [sym_val_date] = ACTIONS(3591), - [anon_sym_DQUOTE] = ACTIONS(3591), - [sym__str_single_quotes] = ACTIONS(3591), - [sym__str_back_ticks] = ACTIONS(3591), - [anon_sym_err_GT] = ACTIONS(3593), - [anon_sym_out_GT] = ACTIONS(3593), - [anon_sym_e_GT] = ACTIONS(3593), - [anon_sym_o_GT] = ACTIONS(3593), - [anon_sym_err_PLUSout_GT] = ACTIONS(3593), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3593), - [anon_sym_o_PLUSe_GT] = ACTIONS(3593), - [anon_sym_e_PLUSo_GT] = ACTIONS(3593), - [anon_sym_err_GT_GT] = ACTIONS(3591), - [anon_sym_out_GT_GT] = ACTIONS(3591), - [anon_sym_e_GT_GT] = ACTIONS(3591), - [anon_sym_o_GT_GT] = ACTIONS(3591), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3591), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3591), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3591), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3591), - [aux_sym_unquoted_token1] = ACTIONS(3593), - [anon_sym_POUND] = ACTIONS(247), - }, - [1139] = { - [sym_comment] = STATE(1139), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_null] = ACTIONS(1537), - [aux_sym_cmd_identifier_token38] = ACTIONS(1537), - [aux_sym_cmd_identifier_token39] = ACTIONS(1537), - [aux_sym_cmd_identifier_token40] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_COMMA] = ACTIONS(1537), - [anon_sym_DOLLAR] = ACTIONS(1537), - [aux_sym_ctrl_match_token1] = ACTIONS(1537), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym__] = ACTIONS(1525), - [anon_sym_DOT_DOT] = ACTIONS(1525), - [aux_sym_expr_binary_token1] = ACTIONS(1537), - [aux_sym_expr_binary_token2] = ACTIONS(1537), - [aux_sym_expr_binary_token3] = ACTIONS(1537), - [aux_sym_expr_binary_token4] = ACTIONS(1537), - [aux_sym_expr_binary_token5] = ACTIONS(1537), - [aux_sym_expr_binary_token6] = ACTIONS(1537), - [aux_sym_expr_binary_token7] = ACTIONS(1537), - [aux_sym_expr_binary_token8] = ACTIONS(1537), - [aux_sym_expr_binary_token9] = ACTIONS(1537), - [aux_sym_expr_binary_token10] = ACTIONS(1537), - [aux_sym_expr_binary_token11] = ACTIONS(1537), - [aux_sym_expr_binary_token12] = ACTIONS(1537), - [aux_sym_expr_binary_token13] = ACTIONS(1537), - [aux_sym_expr_binary_token14] = ACTIONS(1537), - [aux_sym_expr_binary_token15] = ACTIONS(1537), - [aux_sym_expr_binary_token16] = ACTIONS(1537), - [aux_sym_expr_binary_token17] = ACTIONS(1537), - [aux_sym_expr_binary_token18] = ACTIONS(1537), - [aux_sym_expr_binary_token19] = ACTIONS(1537), - [aux_sym_expr_binary_token20] = ACTIONS(1537), - [aux_sym_expr_binary_token21] = ACTIONS(1537), - [aux_sym_expr_binary_token22] = ACTIONS(1537), - [aux_sym_expr_binary_token23] = ACTIONS(1537), - [aux_sym_expr_binary_token24] = ACTIONS(1537), - [aux_sym_expr_binary_token25] = ACTIONS(1537), - [aux_sym_expr_binary_token26] = ACTIONS(1537), - [aux_sym_expr_binary_token27] = ACTIONS(1537), - [aux_sym_expr_binary_token28] = ACTIONS(1537), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT] = ACTIONS(1537), - [aux_sym__val_number_decimal_token1] = ACTIONS(1525), - [aux_sym__val_number_decimal_token2] = ACTIONS(1537), - [aux_sym__val_number_decimal_token3] = ACTIONS(1537), - [aux_sym__val_number_decimal_token4] = ACTIONS(1537), - [aux_sym__val_number_token1] = ACTIONS(1537), - [aux_sym__val_number_token2] = ACTIONS(1537), - [aux_sym__val_number_token3] = ACTIONS(1537), - [anon_sym_0b] = ACTIONS(1525), - [anon_sym_0o] = ACTIONS(1525), - [anon_sym_0x] = ACTIONS(1525), - [sym_val_date] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym__str_single_quotes] = ACTIONS(1537), - [sym__str_back_ticks] = ACTIONS(1537), - [anon_sym_err_GT] = ACTIONS(1525), - [anon_sym_out_GT] = ACTIONS(1525), - [anon_sym_e_GT] = ACTIONS(1525), - [anon_sym_o_GT] = ACTIONS(1525), - [anon_sym_err_PLUSout_GT] = ACTIONS(1525), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), - [anon_sym_o_PLUSe_GT] = ACTIONS(1525), - [anon_sym_e_PLUSo_GT] = ACTIONS(1525), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), - [aux_sym_unquoted_token1] = ACTIONS(1525), - [anon_sym_POUND] = ACTIONS(247), - }, - [1140] = { - [sym_comment] = STATE(1140), - [anon_sym_true] = ACTIONS(2391), - [anon_sym_false] = ACTIONS(2391), - [anon_sym_null] = ACTIONS(2391), - [aux_sym_cmd_identifier_token38] = ACTIONS(2391), - [aux_sym_cmd_identifier_token39] = ACTIONS(2391), - [aux_sym_cmd_identifier_token40] = ACTIONS(2391), - [sym__newline] = ACTIONS(2391), - [anon_sym_LBRACK] = ACTIONS(2391), - [anon_sym_LPAREN] = ACTIONS(2391), - [anon_sym_COMMA] = ACTIONS(2391), - [anon_sym_DOLLAR] = ACTIONS(2391), - [aux_sym_ctrl_match_token1] = ACTIONS(2391), - [anon_sym_RBRACE] = ACTIONS(2391), - [anon_sym__] = ACTIONS(2389), - [anon_sym_DOT_DOT] = ACTIONS(2389), - [aux_sym_expr_binary_token1] = ACTIONS(2391), - [aux_sym_expr_binary_token2] = ACTIONS(2391), - [aux_sym_expr_binary_token3] = ACTIONS(2391), - [aux_sym_expr_binary_token4] = ACTIONS(2391), - [aux_sym_expr_binary_token5] = ACTIONS(2391), - [aux_sym_expr_binary_token6] = ACTIONS(2391), - [aux_sym_expr_binary_token7] = ACTIONS(2391), - [aux_sym_expr_binary_token8] = ACTIONS(2391), - [aux_sym_expr_binary_token9] = ACTIONS(2391), - [aux_sym_expr_binary_token10] = ACTIONS(2391), - [aux_sym_expr_binary_token11] = ACTIONS(2391), - [aux_sym_expr_binary_token12] = ACTIONS(2391), - [aux_sym_expr_binary_token13] = ACTIONS(2391), - [aux_sym_expr_binary_token14] = ACTIONS(2391), - [aux_sym_expr_binary_token15] = ACTIONS(2391), - [aux_sym_expr_binary_token16] = ACTIONS(2391), - [aux_sym_expr_binary_token17] = ACTIONS(2391), - [aux_sym_expr_binary_token18] = ACTIONS(2391), - [aux_sym_expr_binary_token19] = ACTIONS(2391), - [aux_sym_expr_binary_token20] = ACTIONS(2391), - [aux_sym_expr_binary_token21] = ACTIONS(2391), - [aux_sym_expr_binary_token22] = ACTIONS(2391), - [aux_sym_expr_binary_token23] = ACTIONS(2391), - [aux_sym_expr_binary_token24] = ACTIONS(2391), - [aux_sym_expr_binary_token25] = ACTIONS(2391), - [aux_sym_expr_binary_token26] = ACTIONS(2391), - [aux_sym_expr_binary_token27] = ACTIONS(2391), - [aux_sym_expr_binary_token28] = ACTIONS(2391), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2391), - [anon_sym_DOT_DOT_LT] = ACTIONS(2391), - [aux_sym__val_number_decimal_token1] = ACTIONS(2389), - [aux_sym__val_number_decimal_token2] = ACTIONS(2391), - [aux_sym__val_number_decimal_token3] = ACTIONS(2391), - [aux_sym__val_number_decimal_token4] = ACTIONS(2391), - [aux_sym__val_number_token1] = ACTIONS(2391), - [aux_sym__val_number_token2] = ACTIONS(2391), - [aux_sym__val_number_token3] = ACTIONS(2391), - [anon_sym_0b] = ACTIONS(2389), - [anon_sym_0o] = ACTIONS(2389), - [anon_sym_0x] = ACTIONS(2389), - [sym_val_date] = ACTIONS(2391), - [anon_sym_DQUOTE] = ACTIONS(2391), - [sym__str_single_quotes] = ACTIONS(2391), - [sym__str_back_ticks] = ACTIONS(2391), - [anon_sym_err_GT] = ACTIONS(2389), - [anon_sym_out_GT] = ACTIONS(2389), - [anon_sym_e_GT] = ACTIONS(2389), - [anon_sym_o_GT] = ACTIONS(2389), - [anon_sym_err_PLUSout_GT] = ACTIONS(2389), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2389), - [anon_sym_o_PLUSe_GT] = ACTIONS(2389), - [anon_sym_e_PLUSo_GT] = ACTIONS(2389), - [anon_sym_err_GT_GT] = ACTIONS(2391), - [anon_sym_out_GT_GT] = ACTIONS(2391), - [anon_sym_e_GT_GT] = ACTIONS(2391), - [anon_sym_o_GT_GT] = ACTIONS(2391), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2391), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2391), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2391), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2391), - [aux_sym_unquoted_token1] = ACTIONS(2389), - [anon_sym_POUND] = ACTIONS(247), - }, - [1141] = { - [sym_comment] = STATE(1141), - [anon_sym_true] = ACTIONS(964), - [anon_sym_false] = ACTIONS(964), - [anon_sym_null] = ACTIONS(964), - [aux_sym_cmd_identifier_token38] = ACTIONS(964), - [aux_sym_cmd_identifier_token39] = ACTIONS(964), - [aux_sym_cmd_identifier_token40] = ACTIONS(964), - [sym__newline] = ACTIONS(964), - [anon_sym_LBRACK] = ACTIONS(964), - [anon_sym_LPAREN] = ACTIONS(964), - [anon_sym_COMMA] = ACTIONS(964), - [anon_sym_DOLLAR] = ACTIONS(964), - [aux_sym_ctrl_match_token1] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym__] = ACTIONS(962), - [anon_sym_DOT_DOT] = ACTIONS(962), - [aux_sym_expr_binary_token1] = ACTIONS(964), - [aux_sym_expr_binary_token2] = ACTIONS(964), - [aux_sym_expr_binary_token3] = ACTIONS(964), - [aux_sym_expr_binary_token4] = ACTIONS(964), - [aux_sym_expr_binary_token5] = ACTIONS(964), - [aux_sym_expr_binary_token6] = ACTIONS(964), - [aux_sym_expr_binary_token7] = ACTIONS(964), - [aux_sym_expr_binary_token8] = ACTIONS(964), - [aux_sym_expr_binary_token9] = ACTIONS(964), - [aux_sym_expr_binary_token10] = ACTIONS(964), - [aux_sym_expr_binary_token11] = ACTIONS(964), - [aux_sym_expr_binary_token12] = ACTIONS(964), - [aux_sym_expr_binary_token13] = ACTIONS(964), - [aux_sym_expr_binary_token14] = ACTIONS(964), - [aux_sym_expr_binary_token15] = ACTIONS(964), - [aux_sym_expr_binary_token16] = ACTIONS(964), - [aux_sym_expr_binary_token17] = ACTIONS(964), - [aux_sym_expr_binary_token18] = ACTIONS(964), - [aux_sym_expr_binary_token19] = ACTIONS(964), - [aux_sym_expr_binary_token20] = ACTIONS(964), - [aux_sym_expr_binary_token21] = ACTIONS(964), - [aux_sym_expr_binary_token22] = ACTIONS(964), - [aux_sym_expr_binary_token23] = ACTIONS(964), - [aux_sym_expr_binary_token24] = ACTIONS(964), - [aux_sym_expr_binary_token25] = ACTIONS(964), - [aux_sym_expr_binary_token26] = ACTIONS(964), - [aux_sym_expr_binary_token27] = ACTIONS(964), - [aux_sym_expr_binary_token28] = ACTIONS(964), - [anon_sym_DOT_DOT_EQ] = ACTIONS(964), - [anon_sym_DOT_DOT_LT] = ACTIONS(964), - [aux_sym__val_number_decimal_token1] = ACTIONS(962), - [aux_sym__val_number_decimal_token2] = ACTIONS(964), - [aux_sym__val_number_decimal_token3] = ACTIONS(964), - [aux_sym__val_number_decimal_token4] = ACTIONS(964), - [aux_sym__val_number_token1] = ACTIONS(964), - [aux_sym__val_number_token2] = ACTIONS(964), - [aux_sym__val_number_token3] = ACTIONS(964), - [anon_sym_0b] = ACTIONS(962), - [anon_sym_0o] = ACTIONS(962), - [anon_sym_0x] = ACTIONS(962), - [sym_val_date] = ACTIONS(964), - [anon_sym_DQUOTE] = ACTIONS(964), - [sym__str_single_quotes] = ACTIONS(964), - [sym__str_back_ticks] = ACTIONS(964), - [anon_sym_err_GT] = ACTIONS(962), - [anon_sym_out_GT] = ACTIONS(962), - [anon_sym_e_GT] = ACTIONS(962), - [anon_sym_o_GT] = ACTIONS(962), - [anon_sym_err_PLUSout_GT] = ACTIONS(962), - [anon_sym_out_PLUSerr_GT] = ACTIONS(962), - [anon_sym_o_PLUSe_GT] = ACTIONS(962), - [anon_sym_e_PLUSo_GT] = ACTIONS(962), - [anon_sym_err_GT_GT] = ACTIONS(964), - [anon_sym_out_GT_GT] = ACTIONS(964), - [anon_sym_e_GT_GT] = ACTIONS(964), - [anon_sym_o_GT_GT] = ACTIONS(964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(964), - [aux_sym_unquoted_token1] = ACTIONS(962), - [anon_sym_POUND] = ACTIONS(247), - }, - [1142] = { - [sym_comment] = STATE(1142), - [anon_sym_true] = ACTIONS(3199), - [anon_sym_false] = ACTIONS(3199), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3199), - [aux_sym_cmd_identifier_token39] = ACTIONS(3199), - [aux_sym_cmd_identifier_token40] = ACTIONS(3199), - [sym__newline] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_DOLLAR] = ACTIONS(3199), - [aux_sym_ctrl_match_token1] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym__] = ACTIONS(3201), - [anon_sym_DOT_DOT] = ACTIONS(3201), - [aux_sym_expr_binary_token1] = ACTIONS(3199), - [aux_sym_expr_binary_token2] = ACTIONS(3199), - [aux_sym_expr_binary_token3] = ACTIONS(3199), - [aux_sym_expr_binary_token4] = ACTIONS(3199), - [aux_sym_expr_binary_token5] = ACTIONS(3199), - [aux_sym_expr_binary_token6] = ACTIONS(3199), - [aux_sym_expr_binary_token7] = ACTIONS(3199), - [aux_sym_expr_binary_token8] = ACTIONS(3199), - [aux_sym_expr_binary_token9] = ACTIONS(3199), - [aux_sym_expr_binary_token10] = ACTIONS(3199), - [aux_sym_expr_binary_token11] = ACTIONS(3199), - [aux_sym_expr_binary_token12] = ACTIONS(3199), - [aux_sym_expr_binary_token13] = ACTIONS(3199), - [aux_sym_expr_binary_token14] = ACTIONS(3199), - [aux_sym_expr_binary_token15] = ACTIONS(3199), - [aux_sym_expr_binary_token16] = ACTIONS(3199), - [aux_sym_expr_binary_token17] = ACTIONS(3199), - [aux_sym_expr_binary_token18] = ACTIONS(3199), - [aux_sym_expr_binary_token19] = ACTIONS(3199), - [aux_sym_expr_binary_token20] = ACTIONS(3199), - [aux_sym_expr_binary_token21] = ACTIONS(3199), - [aux_sym_expr_binary_token22] = ACTIONS(3199), - [aux_sym_expr_binary_token23] = ACTIONS(3199), - [aux_sym_expr_binary_token24] = ACTIONS(3199), - [aux_sym_expr_binary_token25] = ACTIONS(3199), - [aux_sym_expr_binary_token26] = ACTIONS(3199), - [aux_sym_expr_binary_token27] = ACTIONS(3199), - [aux_sym_expr_binary_token28] = ACTIONS(3199), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), - [anon_sym_DOT_DOT_LT] = ACTIONS(3199), - [aux_sym__val_number_decimal_token1] = ACTIONS(3201), - [aux_sym__val_number_decimal_token2] = ACTIONS(3199), - [aux_sym__val_number_decimal_token3] = ACTIONS(3199), - [aux_sym__val_number_decimal_token4] = ACTIONS(3199), - [aux_sym__val_number_token1] = ACTIONS(3199), - [aux_sym__val_number_token2] = ACTIONS(3199), - [aux_sym__val_number_token3] = ACTIONS(3199), - [anon_sym_0b] = ACTIONS(3201), - [anon_sym_0o] = ACTIONS(3201), - [anon_sym_0x] = ACTIONS(3201), - [sym_val_date] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3199), - [sym__str_single_quotes] = ACTIONS(3199), - [sym__str_back_ticks] = ACTIONS(3199), - [anon_sym_err_GT] = ACTIONS(3201), - [anon_sym_out_GT] = ACTIONS(3201), - [anon_sym_e_GT] = ACTIONS(3201), - [anon_sym_o_GT] = ACTIONS(3201), - [anon_sym_err_PLUSout_GT] = ACTIONS(3201), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), - [anon_sym_o_PLUSe_GT] = ACTIONS(3201), - [anon_sym_e_PLUSo_GT] = ACTIONS(3201), - [anon_sym_err_GT_GT] = ACTIONS(3199), - [anon_sym_out_GT_GT] = ACTIONS(3199), - [anon_sym_e_GT_GT] = ACTIONS(3199), - [anon_sym_o_GT_GT] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), - [aux_sym_unquoted_token1] = ACTIONS(3201), - [anon_sym_POUND] = ACTIONS(247), - }, - [1143] = { - [sym_comment] = STATE(1143), - [anon_sym_true] = ACTIONS(3199), - [anon_sym_false] = ACTIONS(3199), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3199), - [aux_sym_cmd_identifier_token39] = ACTIONS(3199), - [aux_sym_cmd_identifier_token40] = ACTIONS(3199), - [sym__newline] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_DOLLAR] = ACTIONS(3199), - [aux_sym_ctrl_match_token1] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym__] = ACTIONS(3201), - [anon_sym_DOT_DOT] = ACTIONS(3201), - [aux_sym_expr_binary_token1] = ACTIONS(3199), - [aux_sym_expr_binary_token2] = ACTIONS(3199), - [aux_sym_expr_binary_token3] = ACTIONS(3199), - [aux_sym_expr_binary_token4] = ACTIONS(3199), - [aux_sym_expr_binary_token5] = ACTIONS(3199), - [aux_sym_expr_binary_token6] = ACTIONS(3199), - [aux_sym_expr_binary_token7] = ACTIONS(3199), - [aux_sym_expr_binary_token8] = ACTIONS(3199), - [aux_sym_expr_binary_token9] = ACTIONS(3199), - [aux_sym_expr_binary_token10] = ACTIONS(3199), - [aux_sym_expr_binary_token11] = ACTIONS(3199), - [aux_sym_expr_binary_token12] = ACTIONS(3199), - [aux_sym_expr_binary_token13] = ACTIONS(3199), - [aux_sym_expr_binary_token14] = ACTIONS(3199), - [aux_sym_expr_binary_token15] = ACTIONS(3199), - [aux_sym_expr_binary_token16] = ACTIONS(3199), - [aux_sym_expr_binary_token17] = ACTIONS(3199), - [aux_sym_expr_binary_token18] = ACTIONS(3199), - [aux_sym_expr_binary_token19] = ACTIONS(3199), - [aux_sym_expr_binary_token20] = ACTIONS(3199), - [aux_sym_expr_binary_token21] = ACTIONS(3199), - [aux_sym_expr_binary_token22] = ACTIONS(3199), - [aux_sym_expr_binary_token23] = ACTIONS(3199), - [aux_sym_expr_binary_token24] = ACTIONS(3199), - [aux_sym_expr_binary_token25] = ACTIONS(3199), - [aux_sym_expr_binary_token26] = ACTIONS(3199), - [aux_sym_expr_binary_token27] = ACTIONS(3199), - [aux_sym_expr_binary_token28] = ACTIONS(3199), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), - [anon_sym_DOT_DOT_LT] = ACTIONS(3199), - [aux_sym__val_number_decimal_token1] = ACTIONS(3201), - [aux_sym__val_number_decimal_token2] = ACTIONS(3199), - [aux_sym__val_number_decimal_token3] = ACTIONS(3199), - [aux_sym__val_number_decimal_token4] = ACTIONS(3199), - [aux_sym__val_number_token1] = ACTIONS(3199), - [aux_sym__val_number_token2] = ACTIONS(3199), - [aux_sym__val_number_token3] = ACTIONS(3199), - [anon_sym_0b] = ACTIONS(3201), - [anon_sym_0o] = ACTIONS(3201), - [anon_sym_0x] = ACTIONS(3201), - [sym_val_date] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3199), - [sym__str_single_quotes] = ACTIONS(3199), - [sym__str_back_ticks] = ACTIONS(3199), - [anon_sym_err_GT] = ACTIONS(3201), - [anon_sym_out_GT] = ACTIONS(3201), - [anon_sym_e_GT] = ACTIONS(3201), - [anon_sym_o_GT] = ACTIONS(3201), - [anon_sym_err_PLUSout_GT] = ACTIONS(3201), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), - [anon_sym_o_PLUSe_GT] = ACTIONS(3201), - [anon_sym_e_PLUSo_GT] = ACTIONS(3201), - [anon_sym_err_GT_GT] = ACTIONS(3199), - [anon_sym_out_GT_GT] = ACTIONS(3199), - [anon_sym_e_GT_GT] = ACTIONS(3199), - [anon_sym_o_GT_GT] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), - [aux_sym_unquoted_token1] = ACTIONS(3201), - [anon_sym_POUND] = ACTIONS(247), - }, - [1144] = { - [sym_comment] = STATE(1144), - [anon_sym_true] = ACTIONS(3199), - [anon_sym_false] = ACTIONS(3199), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3199), - [aux_sym_cmd_identifier_token39] = ACTIONS(3199), - [aux_sym_cmd_identifier_token40] = ACTIONS(3199), - [sym__newline] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_DOLLAR] = ACTIONS(3199), - [aux_sym_ctrl_match_token1] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym__] = ACTIONS(3201), - [anon_sym_DOT_DOT] = ACTIONS(3201), - [aux_sym_expr_binary_token1] = ACTIONS(3199), - [aux_sym_expr_binary_token2] = ACTIONS(3199), - [aux_sym_expr_binary_token3] = ACTIONS(3199), - [aux_sym_expr_binary_token4] = ACTIONS(3199), - [aux_sym_expr_binary_token5] = ACTIONS(3199), - [aux_sym_expr_binary_token6] = ACTIONS(3199), - [aux_sym_expr_binary_token7] = ACTIONS(3199), - [aux_sym_expr_binary_token8] = ACTIONS(3199), - [aux_sym_expr_binary_token9] = ACTIONS(3199), - [aux_sym_expr_binary_token10] = ACTIONS(3199), - [aux_sym_expr_binary_token11] = ACTIONS(3199), - [aux_sym_expr_binary_token12] = ACTIONS(3199), - [aux_sym_expr_binary_token13] = ACTIONS(3199), - [aux_sym_expr_binary_token14] = ACTIONS(3199), - [aux_sym_expr_binary_token15] = ACTIONS(3199), - [aux_sym_expr_binary_token16] = ACTIONS(3199), - [aux_sym_expr_binary_token17] = ACTIONS(3199), - [aux_sym_expr_binary_token18] = ACTIONS(3199), - [aux_sym_expr_binary_token19] = ACTIONS(3199), - [aux_sym_expr_binary_token20] = ACTIONS(3199), - [aux_sym_expr_binary_token21] = ACTIONS(3199), - [aux_sym_expr_binary_token22] = ACTIONS(3199), - [aux_sym_expr_binary_token23] = ACTIONS(3199), - [aux_sym_expr_binary_token24] = ACTIONS(3199), - [aux_sym_expr_binary_token25] = ACTIONS(3199), - [aux_sym_expr_binary_token26] = ACTIONS(3199), - [aux_sym_expr_binary_token27] = ACTIONS(3199), - [aux_sym_expr_binary_token28] = ACTIONS(3199), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), - [anon_sym_DOT_DOT_LT] = ACTIONS(3199), - [aux_sym__val_number_decimal_token1] = ACTIONS(3201), - [aux_sym__val_number_decimal_token2] = ACTIONS(3199), - [aux_sym__val_number_decimal_token3] = ACTIONS(3199), - [aux_sym__val_number_decimal_token4] = ACTIONS(3199), - [aux_sym__val_number_token1] = ACTIONS(3199), - [aux_sym__val_number_token2] = ACTIONS(3199), - [aux_sym__val_number_token3] = ACTIONS(3199), - [anon_sym_0b] = ACTIONS(3201), - [anon_sym_0o] = ACTIONS(3201), - [anon_sym_0x] = ACTIONS(3201), - [sym_val_date] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3199), - [sym__str_single_quotes] = ACTIONS(3199), - [sym__str_back_ticks] = ACTIONS(3199), - [anon_sym_err_GT] = ACTIONS(3201), - [anon_sym_out_GT] = ACTIONS(3201), - [anon_sym_e_GT] = ACTIONS(3201), - [anon_sym_o_GT] = ACTIONS(3201), - [anon_sym_err_PLUSout_GT] = ACTIONS(3201), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), - [anon_sym_o_PLUSe_GT] = ACTIONS(3201), - [anon_sym_e_PLUSo_GT] = ACTIONS(3201), - [anon_sym_err_GT_GT] = ACTIONS(3199), - [anon_sym_out_GT_GT] = ACTIONS(3199), - [anon_sym_e_GT_GT] = ACTIONS(3199), - [anon_sym_o_GT_GT] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), - [aux_sym_unquoted_token1] = ACTIONS(3201), - [anon_sym_POUND] = ACTIONS(247), - }, - [1145] = { - [sym_comment] = STATE(1145), - [anon_sym_true] = ACTIONS(1008), - [anon_sym_false] = ACTIONS(1008), - [anon_sym_null] = ACTIONS(1008), - [aux_sym_cmd_identifier_token38] = ACTIONS(1008), - [aux_sym_cmd_identifier_token39] = ACTIONS(1008), - [aux_sym_cmd_identifier_token40] = ACTIONS(1008), - [sym__newline] = ACTIONS(1008), - [anon_sym_LBRACK] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_COMMA] = ACTIONS(1008), - [anon_sym_DOLLAR] = ACTIONS(1008), - [aux_sym_ctrl_match_token1] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1008), - [anon_sym__] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [aux_sym_expr_binary_token1] = ACTIONS(1008), - [aux_sym_expr_binary_token2] = ACTIONS(1008), - [aux_sym_expr_binary_token3] = ACTIONS(1008), - [aux_sym_expr_binary_token4] = ACTIONS(1008), - [aux_sym_expr_binary_token5] = ACTIONS(1008), - [aux_sym_expr_binary_token6] = ACTIONS(1008), - [aux_sym_expr_binary_token7] = ACTIONS(1008), - [aux_sym_expr_binary_token8] = ACTIONS(1008), - [aux_sym_expr_binary_token9] = ACTIONS(1008), - [aux_sym_expr_binary_token10] = ACTIONS(1008), - [aux_sym_expr_binary_token11] = ACTIONS(1008), - [aux_sym_expr_binary_token12] = ACTIONS(1008), - [aux_sym_expr_binary_token13] = ACTIONS(1008), - [aux_sym_expr_binary_token14] = ACTIONS(1008), - [aux_sym_expr_binary_token15] = ACTIONS(1008), - [aux_sym_expr_binary_token16] = ACTIONS(1008), - [aux_sym_expr_binary_token17] = ACTIONS(1008), - [aux_sym_expr_binary_token18] = ACTIONS(1008), - [aux_sym_expr_binary_token19] = ACTIONS(1008), - [aux_sym_expr_binary_token20] = ACTIONS(1008), - [aux_sym_expr_binary_token21] = ACTIONS(1008), - [aux_sym_expr_binary_token22] = ACTIONS(1008), - [aux_sym_expr_binary_token23] = ACTIONS(1008), - [aux_sym_expr_binary_token24] = ACTIONS(1008), - [aux_sym_expr_binary_token25] = ACTIONS(1008), - [aux_sym_expr_binary_token26] = ACTIONS(1008), - [aux_sym_expr_binary_token27] = ACTIONS(1008), - [aux_sym_expr_binary_token28] = ACTIONS(1008), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT] = ACTIONS(1008), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1008), - [aux_sym__val_number_decimal_token3] = ACTIONS(1008), - [aux_sym__val_number_decimal_token4] = ACTIONS(1008), - [aux_sym__val_number_token1] = ACTIONS(1008), - [aux_sym__val_number_token2] = ACTIONS(1008), - [aux_sym__val_number_token3] = ACTIONS(1008), - [anon_sym_0b] = ACTIONS(1006), - [anon_sym_0o] = ACTIONS(1006), - [anon_sym_0x] = ACTIONS(1006), - [sym_val_date] = ACTIONS(1008), - [anon_sym_DQUOTE] = ACTIONS(1008), - [sym__str_single_quotes] = ACTIONS(1008), - [sym__str_back_ticks] = ACTIONS(1008), - [anon_sym_err_GT] = ACTIONS(1006), - [anon_sym_out_GT] = ACTIONS(1006), - [anon_sym_e_GT] = ACTIONS(1006), - [anon_sym_o_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT] = ACTIONS(1006), - [anon_sym_err_GT_GT] = ACTIONS(1008), - [anon_sym_out_GT_GT] = ACTIONS(1008), - [anon_sym_e_GT_GT] = ACTIONS(1008), - [anon_sym_o_GT_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), - [aux_sym_unquoted_token1] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(247), - }, - [1146] = { - [sym_comment] = STATE(1146), - [anon_sym_true] = ACTIONS(1772), - [anon_sym_false] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1772), - [aux_sym_cmd_identifier_token38] = ACTIONS(1772), - [aux_sym_cmd_identifier_token39] = ACTIONS(1772), - [aux_sym_cmd_identifier_token40] = ACTIONS(1772), - [sym__newline] = ACTIONS(1772), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_DOLLAR] = ACTIONS(1772), - [aux_sym_ctrl_match_token1] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym__] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1770), - [aux_sym_expr_binary_token1] = ACTIONS(1772), - [aux_sym_expr_binary_token2] = ACTIONS(1772), - [aux_sym_expr_binary_token3] = ACTIONS(1772), - [aux_sym_expr_binary_token4] = ACTIONS(1772), - [aux_sym_expr_binary_token5] = ACTIONS(1772), - [aux_sym_expr_binary_token6] = ACTIONS(1772), - [aux_sym_expr_binary_token7] = ACTIONS(1772), - [aux_sym_expr_binary_token8] = ACTIONS(1772), - [aux_sym_expr_binary_token9] = ACTIONS(1772), - [aux_sym_expr_binary_token10] = ACTIONS(1772), - [aux_sym_expr_binary_token11] = ACTIONS(1772), - [aux_sym_expr_binary_token12] = ACTIONS(1772), - [aux_sym_expr_binary_token13] = ACTIONS(1772), - [aux_sym_expr_binary_token14] = ACTIONS(1772), - [aux_sym_expr_binary_token15] = ACTIONS(1772), - [aux_sym_expr_binary_token16] = ACTIONS(1772), - [aux_sym_expr_binary_token17] = ACTIONS(1772), - [aux_sym_expr_binary_token18] = ACTIONS(1772), - [aux_sym_expr_binary_token19] = ACTIONS(1772), - [aux_sym_expr_binary_token20] = ACTIONS(1772), - [aux_sym_expr_binary_token21] = ACTIONS(1772), - [aux_sym_expr_binary_token22] = ACTIONS(1772), - [aux_sym_expr_binary_token23] = ACTIONS(1772), - [aux_sym_expr_binary_token24] = ACTIONS(1772), - [aux_sym_expr_binary_token25] = ACTIONS(1772), - [aux_sym_expr_binary_token26] = ACTIONS(1772), - [aux_sym_expr_binary_token27] = ACTIONS(1772), - [aux_sym_expr_binary_token28] = ACTIONS(1772), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1772), - [anon_sym_DOT_DOT_LT] = ACTIONS(1772), - [aux_sym__val_number_decimal_token1] = ACTIONS(1770), - [aux_sym__val_number_decimal_token2] = ACTIONS(1772), - [aux_sym__val_number_decimal_token3] = ACTIONS(1772), - [aux_sym__val_number_decimal_token4] = ACTIONS(1772), - [aux_sym__val_number_token1] = ACTIONS(1772), - [aux_sym__val_number_token2] = ACTIONS(1772), - [aux_sym__val_number_token3] = ACTIONS(1772), - [anon_sym_0b] = ACTIONS(1770), - [anon_sym_0o] = ACTIONS(1770), - [anon_sym_0x] = ACTIONS(1770), - [sym_val_date] = ACTIONS(1772), - [anon_sym_DQUOTE] = ACTIONS(1772), - [sym__str_single_quotes] = ACTIONS(1772), - [sym__str_back_ticks] = ACTIONS(1772), - [anon_sym_err_GT] = ACTIONS(1770), - [anon_sym_out_GT] = ACTIONS(1770), - [anon_sym_e_GT] = ACTIONS(1770), - [anon_sym_o_GT] = ACTIONS(1770), - [anon_sym_err_PLUSout_GT] = ACTIONS(1770), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1770), - [anon_sym_o_PLUSe_GT] = ACTIONS(1770), - [anon_sym_e_PLUSo_GT] = ACTIONS(1770), - [anon_sym_err_GT_GT] = ACTIONS(1772), - [anon_sym_out_GT_GT] = ACTIONS(1772), - [anon_sym_e_GT_GT] = ACTIONS(1772), - [anon_sym_o_GT_GT] = ACTIONS(1772), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1772), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1772), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1772), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1772), - [aux_sym_unquoted_token1] = ACTIONS(1770), [anon_sym_POUND] = ACTIONS(247), }, [1147] = { + [sym__val_range] = STATE(7733), + [sym__value] = STATE(4755), + [sym_val_nothing] = STATE(4607), + [sym_val_bool] = STATE(4396), + [sym_val_variable] = STATE(4607), + [sym_val_number] = STATE(4607), + [sym__val_number_decimal] = STATE(3973), + [sym__val_number] = STATE(4724), + [sym_val_duration] = STATE(4607), + [sym_val_filesize] = STATE(4607), + [sym_val_binary] = STATE(4607), + [sym_val_string] = STATE(4607), + [sym__str_double_quotes] = STATE(4321), + [sym_val_interpolated] = STATE(4607), + [sym__inter_single_quotes] = STATE(4619), + [sym__inter_double_quotes] = STATE(4620), + [sym_val_list] = STATE(4607), + [sym_val_record] = STATE(4607), + [sym_val_table] = STATE(4607), + [sym_val_closure] = STATE(4607), + [sym_unquoted] = STATE(4611), + [sym__unquoted_anonymous_prefix] = STATE(7678), [sym_comment] = STATE(1147), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2317), - [aux_sym_cmd_identifier_token38] = ACTIONS(2317), - [aux_sym_cmd_identifier_token39] = ACTIONS(2317), - [aux_sym_cmd_identifier_token40] = ACTIONS(2317), - [sym__newline] = ACTIONS(2317), - [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_LPAREN] = ACTIONS(2317), - [anon_sym_COMMA] = ACTIONS(2317), - [anon_sym_DOLLAR] = ACTIONS(2317), - [aux_sym_ctrl_match_token1] = ACTIONS(2317), - [anon_sym_RBRACE] = ACTIONS(2317), - [anon_sym__] = ACTIONS(2315), - [anon_sym_DOT_DOT] = ACTIONS(2315), - [aux_sym_expr_binary_token1] = ACTIONS(2317), - [aux_sym_expr_binary_token2] = ACTIONS(2317), - [aux_sym_expr_binary_token3] = ACTIONS(2317), - [aux_sym_expr_binary_token4] = ACTIONS(2317), - [aux_sym_expr_binary_token5] = ACTIONS(2317), - [aux_sym_expr_binary_token6] = ACTIONS(2317), - [aux_sym_expr_binary_token7] = ACTIONS(2317), - [aux_sym_expr_binary_token8] = ACTIONS(2317), - [aux_sym_expr_binary_token9] = ACTIONS(2317), - [aux_sym_expr_binary_token10] = ACTIONS(2317), - [aux_sym_expr_binary_token11] = ACTIONS(2317), - [aux_sym_expr_binary_token12] = ACTIONS(2317), - [aux_sym_expr_binary_token13] = ACTIONS(2317), - [aux_sym_expr_binary_token14] = ACTIONS(2317), - [aux_sym_expr_binary_token15] = ACTIONS(2317), - [aux_sym_expr_binary_token16] = ACTIONS(2317), - [aux_sym_expr_binary_token17] = ACTIONS(2317), - [aux_sym_expr_binary_token18] = ACTIONS(2317), - [aux_sym_expr_binary_token19] = ACTIONS(2317), - [aux_sym_expr_binary_token20] = ACTIONS(2317), - [aux_sym_expr_binary_token21] = ACTIONS(2317), - [aux_sym_expr_binary_token22] = ACTIONS(2317), - [aux_sym_expr_binary_token23] = ACTIONS(2317), - [aux_sym_expr_binary_token24] = ACTIONS(2317), - [aux_sym_expr_binary_token25] = ACTIONS(2317), - [aux_sym_expr_binary_token26] = ACTIONS(2317), - [aux_sym_expr_binary_token27] = ACTIONS(2317), - [aux_sym_expr_binary_token28] = ACTIONS(2317), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2317), - [anon_sym_DOT_DOT_LT] = ACTIONS(2317), - [aux_sym__val_number_decimal_token1] = ACTIONS(2315), - [aux_sym__val_number_decimal_token2] = ACTIONS(2317), - [aux_sym__val_number_decimal_token3] = ACTIONS(2317), - [aux_sym__val_number_decimal_token4] = ACTIONS(2317), - [aux_sym__val_number_token1] = ACTIONS(2317), - [aux_sym__val_number_token2] = ACTIONS(2317), - [aux_sym__val_number_token3] = ACTIONS(2317), - [anon_sym_0b] = ACTIONS(2315), - [anon_sym_0o] = ACTIONS(2315), - [anon_sym_0x] = ACTIONS(2315), - [sym_val_date] = ACTIONS(2317), - [anon_sym_DQUOTE] = ACTIONS(2317), - [sym__str_single_quotes] = ACTIONS(2317), - [sym__str_back_ticks] = ACTIONS(2317), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2317), - [anon_sym_out_GT_GT] = ACTIONS(2317), - [anon_sym_e_GT_GT] = ACTIONS(2317), - [anon_sym_o_GT_GT] = ACTIONS(2317), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2317), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2317), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2317), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2317), - [aux_sym_unquoted_token1] = ACTIONS(2315), + [anon_sym_true] = ACTIONS(4301), + [anon_sym_false] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4303), + [aux_sym_cmd_identifier_token38] = ACTIONS(4305), + [aux_sym_cmd_identifier_token39] = ACTIONS(4305), + [aux_sym_cmd_identifier_token40] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4259), + [anon_sym_LPAREN] = ACTIONS(4261), + [anon_sym_DOLLAR] = ACTIONS(4263), + [aux_sym_ctrl_match_token1] = ACTIONS(4265), + [anon_sym_DOT_DOT] = ACTIONS(4267), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4269), + [anon_sym_DOT_DOT_LT] = ACTIONS(4269), + [aux_sym__val_number_decimal_token1] = ACTIONS(2105), + [aux_sym__val_number_decimal_token2] = ACTIONS(4307), + [aux_sym__val_number_decimal_token3] = ACTIONS(4309), + [aux_sym__val_number_decimal_token4] = ACTIONS(4311), + [aux_sym__val_number_token1] = ACTIONS(4279), + [aux_sym__val_number_token2] = ACTIONS(4279), + [aux_sym__val_number_token3] = ACTIONS(4279), + [anon_sym_0b] = ACTIONS(2113), + [anon_sym_0o] = ACTIONS(2115), + [anon_sym_0x] = ACTIONS(2115), + [sym_val_date] = ACTIONS(4313), + [anon_sym_DQUOTE] = ACTIONS(4283), + [sym__str_single_quotes] = ACTIONS(4285), + [sym__str_back_ticks] = ACTIONS(4285), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4289), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(2131), [anon_sym_POUND] = ACTIONS(247), }, [1148] = { + [sym__val_range] = STATE(7492), + [sym__value] = STATE(3693), + [sym_val_nothing] = STATE(3533), + [sym_val_bool] = STATE(3515), + [sym_val_variable] = STATE(3533), + [sym_val_number] = STATE(3533), + [sym__val_number_decimal] = STATE(3370), + [sym__val_number] = STATE(3535), + [sym_val_duration] = STATE(3533), + [sym_val_filesize] = STATE(3533), + [sym_val_binary] = STATE(3533), + [sym_val_string] = STATE(3533), + [sym__str_double_quotes] = STATE(3471), + [sym_val_interpolated] = STATE(3533), + [sym__inter_single_quotes] = STATE(3648), + [sym__inter_double_quotes] = STATE(3649), + [sym_val_list] = STATE(3533), + [sym_val_record] = STATE(3533), + [sym_val_table] = STATE(3533), + [sym_val_closure] = STATE(3533), + [sym_unquoted] = STATE(3525), + [sym__unquoted_anonymous_prefix] = STATE(7626), [sym_comment] = STATE(1148), - [anon_sym_true] = ACTIONS(2253), - [anon_sym_false] = ACTIONS(2253), - [anon_sym_null] = ACTIONS(2253), - [aux_sym_cmd_identifier_token38] = ACTIONS(2253), - [aux_sym_cmd_identifier_token39] = ACTIONS(2253), - [aux_sym_cmd_identifier_token40] = ACTIONS(2253), - [sym__newline] = ACTIONS(2253), - [anon_sym_LBRACK] = ACTIONS(2253), - [anon_sym_LPAREN] = ACTIONS(2253), - [anon_sym_COMMA] = ACTIONS(2253), - [anon_sym_DOLLAR] = ACTIONS(2253), - [aux_sym_ctrl_match_token1] = ACTIONS(2253), - [anon_sym_RBRACE] = ACTIONS(2253), - [anon_sym__] = ACTIONS(2251), - [anon_sym_DOT_DOT] = ACTIONS(2251), - [aux_sym_expr_binary_token1] = ACTIONS(2253), - [aux_sym_expr_binary_token2] = ACTIONS(2253), - [aux_sym_expr_binary_token3] = ACTIONS(2253), - [aux_sym_expr_binary_token4] = ACTIONS(2253), - [aux_sym_expr_binary_token5] = ACTIONS(2253), - [aux_sym_expr_binary_token6] = ACTIONS(2253), - [aux_sym_expr_binary_token7] = ACTIONS(2253), - [aux_sym_expr_binary_token8] = ACTIONS(2253), - [aux_sym_expr_binary_token9] = ACTIONS(2253), - [aux_sym_expr_binary_token10] = ACTIONS(2253), - [aux_sym_expr_binary_token11] = ACTIONS(2253), - [aux_sym_expr_binary_token12] = ACTIONS(2253), - [aux_sym_expr_binary_token13] = ACTIONS(2253), - [aux_sym_expr_binary_token14] = ACTIONS(2253), - [aux_sym_expr_binary_token15] = ACTIONS(2253), - [aux_sym_expr_binary_token16] = ACTIONS(2253), - [aux_sym_expr_binary_token17] = ACTIONS(2253), - [aux_sym_expr_binary_token18] = ACTIONS(2253), - [aux_sym_expr_binary_token19] = ACTIONS(2253), - [aux_sym_expr_binary_token20] = ACTIONS(2253), - [aux_sym_expr_binary_token21] = ACTIONS(2253), - [aux_sym_expr_binary_token22] = ACTIONS(2253), - [aux_sym_expr_binary_token23] = ACTIONS(2253), - [aux_sym_expr_binary_token24] = ACTIONS(2253), - [aux_sym_expr_binary_token25] = ACTIONS(2253), - [aux_sym_expr_binary_token26] = ACTIONS(2253), - [aux_sym_expr_binary_token27] = ACTIONS(2253), - [aux_sym_expr_binary_token28] = ACTIONS(2253), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2253), - [anon_sym_DOT_DOT_LT] = ACTIONS(2253), - [aux_sym__val_number_decimal_token1] = ACTIONS(2251), - [aux_sym__val_number_decimal_token2] = ACTIONS(2253), - [aux_sym__val_number_decimal_token3] = ACTIONS(2253), - [aux_sym__val_number_decimal_token4] = ACTIONS(2253), - [aux_sym__val_number_token1] = ACTIONS(2253), - [aux_sym__val_number_token2] = ACTIONS(2253), - [aux_sym__val_number_token3] = ACTIONS(2253), - [anon_sym_0b] = ACTIONS(2251), - [anon_sym_0o] = ACTIONS(2251), - [anon_sym_0x] = ACTIONS(2251), - [sym_val_date] = ACTIONS(2253), - [anon_sym_DQUOTE] = ACTIONS(2253), - [sym__str_single_quotes] = ACTIONS(2253), - [sym__str_back_ticks] = ACTIONS(2253), - [anon_sym_err_GT] = ACTIONS(2251), - [anon_sym_out_GT] = ACTIONS(2251), - [anon_sym_e_GT] = ACTIONS(2251), - [anon_sym_o_GT] = ACTIONS(2251), - [anon_sym_err_PLUSout_GT] = ACTIONS(2251), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2251), - [anon_sym_o_PLUSe_GT] = ACTIONS(2251), - [anon_sym_e_PLUSo_GT] = ACTIONS(2251), - [anon_sym_err_GT_GT] = ACTIONS(2253), - [anon_sym_out_GT_GT] = ACTIONS(2253), - [anon_sym_e_GT_GT] = ACTIONS(2253), - [anon_sym_o_GT_GT] = ACTIONS(2253), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2253), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2253), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2253), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2253), - [aux_sym_unquoted_token1] = ACTIONS(2251), + [anon_sym_true] = ACTIONS(4318), + [anon_sym_false] = ACTIONS(4318), + [anon_sym_null] = ACTIONS(4320), + [aux_sym_cmd_identifier_token38] = ACTIONS(4322), + [aux_sym_cmd_identifier_token39] = ACTIONS(4322), + [aux_sym_cmd_identifier_token40] = ACTIONS(4322), + [anon_sym_LBRACK] = ACTIONS(4324), + [anon_sym_LPAREN] = ACTIONS(4326), + [anon_sym_DOLLAR] = ACTIONS(4328), + [aux_sym_ctrl_match_token1] = ACTIONS(4330), + [anon_sym_DOT_DOT] = ACTIONS(4332), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4334), + [anon_sym_DOT_DOT_LT] = ACTIONS(4334), + [aux_sym__val_number_decimal_token1] = ACTIONS(4336), + [aux_sym__val_number_decimal_token2] = ACTIONS(4338), + [aux_sym__val_number_decimal_token3] = ACTIONS(4340), + [aux_sym__val_number_decimal_token4] = ACTIONS(4342), + [aux_sym__val_number_token1] = ACTIONS(4344), + [aux_sym__val_number_token2] = ACTIONS(4344), + [aux_sym__val_number_token3] = ACTIONS(4344), + [anon_sym_0b] = ACTIONS(4346), + [anon_sym_0o] = ACTIONS(4348), + [anon_sym_0x] = ACTIONS(4348), + [sym_val_date] = ACTIONS(4350), + [anon_sym_DQUOTE] = ACTIONS(4352), + [sym__str_single_quotes] = ACTIONS(4354), + [sym__str_back_ticks] = ACTIONS(4354), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4356), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4358), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(4360), [anon_sym_POUND] = ACTIONS(247), }, [1149] = { + [sym__val_range] = STATE(7733), + [sym__value] = STATE(4717), + [sym_val_nothing] = STATE(4607), + [sym_val_bool] = STATE(4396), + [sym_val_variable] = STATE(4607), + [sym_val_number] = STATE(4607), + [sym__val_number_decimal] = STATE(3973), + [sym__val_number] = STATE(4724), + [sym_val_duration] = STATE(4607), + [sym_val_filesize] = STATE(4607), + [sym_val_binary] = STATE(4607), + [sym_val_string] = STATE(4607), + [sym__str_double_quotes] = STATE(4321), + [sym_val_interpolated] = STATE(4607), + [sym__inter_single_quotes] = STATE(4619), + [sym__inter_double_quotes] = STATE(4620), + [sym_val_list] = STATE(4607), + [sym_val_record] = STATE(4607), + [sym_val_table] = STATE(4607), + [sym_val_closure] = STATE(4607), + [sym_unquoted] = STATE(4738), + [sym__unquoted_anonymous_prefix] = STATE(7678), [sym_comment] = STATE(1149), - [anon_sym_true] = ACTIONS(2305), - [anon_sym_false] = ACTIONS(2305), - [anon_sym_null] = ACTIONS(2305), - [aux_sym_cmd_identifier_token38] = ACTIONS(2305), - [aux_sym_cmd_identifier_token39] = ACTIONS(2305), - [aux_sym_cmd_identifier_token40] = ACTIONS(2305), - [sym__newline] = ACTIONS(2305), - [anon_sym_LBRACK] = ACTIONS(2305), - [anon_sym_LPAREN] = ACTIONS(2305), - [anon_sym_COMMA] = ACTIONS(2305), - [anon_sym_DOLLAR] = ACTIONS(2305), - [aux_sym_ctrl_match_token1] = ACTIONS(2305), - [anon_sym_RBRACE] = ACTIONS(2305), - [anon_sym__] = ACTIONS(2303), - [anon_sym_DOT_DOT] = ACTIONS(2303), - [aux_sym_expr_binary_token1] = ACTIONS(2305), - [aux_sym_expr_binary_token2] = ACTIONS(2305), - [aux_sym_expr_binary_token3] = ACTIONS(2305), - [aux_sym_expr_binary_token4] = ACTIONS(2305), - [aux_sym_expr_binary_token5] = ACTIONS(2305), - [aux_sym_expr_binary_token6] = ACTIONS(2305), - [aux_sym_expr_binary_token7] = ACTIONS(2305), - [aux_sym_expr_binary_token8] = ACTIONS(2305), - [aux_sym_expr_binary_token9] = ACTIONS(2305), - [aux_sym_expr_binary_token10] = ACTIONS(2305), - [aux_sym_expr_binary_token11] = ACTIONS(2305), - [aux_sym_expr_binary_token12] = ACTIONS(2305), - [aux_sym_expr_binary_token13] = ACTIONS(2305), - [aux_sym_expr_binary_token14] = ACTIONS(2305), - [aux_sym_expr_binary_token15] = ACTIONS(2305), - [aux_sym_expr_binary_token16] = ACTIONS(2305), - [aux_sym_expr_binary_token17] = ACTIONS(2305), - [aux_sym_expr_binary_token18] = ACTIONS(2305), - [aux_sym_expr_binary_token19] = ACTIONS(2305), - [aux_sym_expr_binary_token20] = ACTIONS(2305), - [aux_sym_expr_binary_token21] = ACTIONS(2305), - [aux_sym_expr_binary_token22] = ACTIONS(2305), - [aux_sym_expr_binary_token23] = ACTIONS(2305), - [aux_sym_expr_binary_token24] = ACTIONS(2305), - [aux_sym_expr_binary_token25] = ACTIONS(2305), - [aux_sym_expr_binary_token26] = ACTIONS(2305), - [aux_sym_expr_binary_token27] = ACTIONS(2305), - [aux_sym_expr_binary_token28] = ACTIONS(2305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2305), - [anon_sym_DOT_DOT_LT] = ACTIONS(2305), - [aux_sym__val_number_decimal_token1] = ACTIONS(2303), - [aux_sym__val_number_decimal_token2] = ACTIONS(2305), - [aux_sym__val_number_decimal_token3] = ACTIONS(2305), - [aux_sym__val_number_decimal_token4] = ACTIONS(2305), - [aux_sym__val_number_token1] = ACTIONS(2305), - [aux_sym__val_number_token2] = ACTIONS(2305), - [aux_sym__val_number_token3] = ACTIONS(2305), - [anon_sym_0b] = ACTIONS(2303), - [anon_sym_0o] = ACTIONS(2303), - [anon_sym_0x] = ACTIONS(2303), - [sym_val_date] = ACTIONS(2305), - [anon_sym_DQUOTE] = ACTIONS(2305), - [sym__str_single_quotes] = ACTIONS(2305), - [sym__str_back_ticks] = ACTIONS(2305), - [anon_sym_err_GT] = ACTIONS(2303), - [anon_sym_out_GT] = ACTIONS(2303), - [anon_sym_e_GT] = ACTIONS(2303), - [anon_sym_o_GT] = ACTIONS(2303), - [anon_sym_err_PLUSout_GT] = ACTIONS(2303), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2303), - [anon_sym_o_PLUSe_GT] = ACTIONS(2303), - [anon_sym_e_PLUSo_GT] = ACTIONS(2303), - [anon_sym_err_GT_GT] = ACTIONS(2305), - [anon_sym_out_GT_GT] = ACTIONS(2305), - [anon_sym_e_GT_GT] = ACTIONS(2305), - [anon_sym_o_GT_GT] = ACTIONS(2305), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2305), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2305), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2305), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2305), - [aux_sym_unquoted_token1] = ACTIONS(2303), + [anon_sym_true] = ACTIONS(4301), + [anon_sym_false] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4303), + [aux_sym_cmd_identifier_token38] = ACTIONS(4305), + [aux_sym_cmd_identifier_token39] = ACTIONS(4305), + [aux_sym_cmd_identifier_token40] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4259), + [anon_sym_LPAREN] = ACTIONS(4261), + [anon_sym_DOLLAR] = ACTIONS(4263), + [aux_sym_ctrl_match_token1] = ACTIONS(4265), + [anon_sym_DOT_DOT] = ACTIONS(4267), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4269), + [anon_sym_DOT_DOT_LT] = ACTIONS(4269), + [aux_sym__val_number_decimal_token1] = ACTIONS(2105), + [aux_sym__val_number_decimal_token2] = ACTIONS(4307), + [aux_sym__val_number_decimal_token3] = ACTIONS(4309), + [aux_sym__val_number_decimal_token4] = ACTIONS(4311), + [aux_sym__val_number_token1] = ACTIONS(4279), + [aux_sym__val_number_token2] = ACTIONS(4279), + [aux_sym__val_number_token3] = ACTIONS(4279), + [anon_sym_0b] = ACTIONS(2113), + [anon_sym_0o] = ACTIONS(2115), + [anon_sym_0x] = ACTIONS(2115), + [sym_val_date] = ACTIONS(4313), + [anon_sym_DQUOTE] = ACTIONS(4283), + [sym__str_single_quotes] = ACTIONS(4285), + [sym__str_back_ticks] = ACTIONS(4285), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4287), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4289), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(2131), [anon_sym_POUND] = ACTIONS(247), }, [1150] = { + [sym__val_range] = STATE(7492), + [sym__value] = STATE(3695), + [sym_val_nothing] = STATE(3533), + [sym_val_bool] = STATE(3515), + [sym_val_variable] = STATE(3533), + [sym_val_number] = STATE(3533), + [sym__val_number_decimal] = STATE(3370), + [sym__val_number] = STATE(3535), + [sym_val_duration] = STATE(3533), + [sym_val_filesize] = STATE(3533), + [sym_val_binary] = STATE(3533), + [sym_val_string] = STATE(3533), + [sym__str_double_quotes] = STATE(3471), + [sym_val_interpolated] = STATE(3533), + [sym__inter_single_quotes] = STATE(3648), + [sym__inter_double_quotes] = STATE(3649), + [sym_val_list] = STATE(3533), + [sym_val_record] = STATE(3533), + [sym_val_table] = STATE(3533), + [sym_val_closure] = STATE(3533), + [sym_unquoted] = STATE(3696), + [sym__unquoted_anonymous_prefix] = STATE(7626), [sym_comment] = STATE(1150), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_null] = ACTIONS(1780), - [aux_sym_cmd_identifier_token38] = ACTIONS(1780), - [aux_sym_cmd_identifier_token39] = ACTIONS(1780), - [aux_sym_cmd_identifier_token40] = ACTIONS(1780), - [sym__newline] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_COMMA] = ACTIONS(1780), - [anon_sym_DOLLAR] = ACTIONS(1780), - [aux_sym_ctrl_match_token1] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym__] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(1778), - [aux_sym_expr_binary_token1] = ACTIONS(1780), - [aux_sym_expr_binary_token2] = ACTIONS(1780), - [aux_sym_expr_binary_token3] = ACTIONS(1780), - [aux_sym_expr_binary_token4] = ACTIONS(1780), - [aux_sym_expr_binary_token5] = ACTIONS(1780), - [aux_sym_expr_binary_token6] = ACTIONS(1780), - [aux_sym_expr_binary_token7] = ACTIONS(1780), - [aux_sym_expr_binary_token8] = ACTIONS(1780), - [aux_sym_expr_binary_token9] = ACTIONS(1780), - [aux_sym_expr_binary_token10] = ACTIONS(1780), - [aux_sym_expr_binary_token11] = ACTIONS(1780), - [aux_sym_expr_binary_token12] = ACTIONS(1780), - [aux_sym_expr_binary_token13] = ACTIONS(1780), - [aux_sym_expr_binary_token14] = ACTIONS(1780), - [aux_sym_expr_binary_token15] = ACTIONS(1780), - [aux_sym_expr_binary_token16] = ACTIONS(1780), - [aux_sym_expr_binary_token17] = ACTIONS(1780), - [aux_sym_expr_binary_token18] = ACTIONS(1780), - [aux_sym_expr_binary_token19] = ACTIONS(1780), - [aux_sym_expr_binary_token20] = ACTIONS(1780), - [aux_sym_expr_binary_token21] = ACTIONS(1780), - [aux_sym_expr_binary_token22] = ACTIONS(1780), - [aux_sym_expr_binary_token23] = ACTIONS(1780), - [aux_sym_expr_binary_token24] = ACTIONS(1780), - [aux_sym_expr_binary_token25] = ACTIONS(1780), - [aux_sym_expr_binary_token26] = ACTIONS(1780), - [aux_sym_expr_binary_token27] = ACTIONS(1780), - [aux_sym_expr_binary_token28] = ACTIONS(1780), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1780), - [anon_sym_DOT_DOT_LT] = ACTIONS(1780), - [aux_sym__val_number_decimal_token1] = ACTIONS(1778), - [aux_sym__val_number_decimal_token2] = ACTIONS(1780), - [aux_sym__val_number_decimal_token3] = ACTIONS(1780), - [aux_sym__val_number_decimal_token4] = ACTIONS(1780), - [aux_sym__val_number_token1] = ACTIONS(1780), - [aux_sym__val_number_token2] = ACTIONS(1780), - [aux_sym__val_number_token3] = ACTIONS(1780), - [anon_sym_0b] = ACTIONS(1778), - [anon_sym_0o] = ACTIONS(1778), - [anon_sym_0x] = ACTIONS(1778), - [sym_val_date] = ACTIONS(1780), - [anon_sym_DQUOTE] = ACTIONS(1780), - [sym__str_single_quotes] = ACTIONS(1780), - [sym__str_back_ticks] = ACTIONS(1780), - [anon_sym_err_GT] = ACTIONS(1778), - [anon_sym_out_GT] = ACTIONS(1778), - [anon_sym_e_GT] = ACTIONS(1778), - [anon_sym_o_GT] = ACTIONS(1778), - [anon_sym_err_PLUSout_GT] = ACTIONS(1778), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1778), - [anon_sym_o_PLUSe_GT] = ACTIONS(1778), - [anon_sym_e_PLUSo_GT] = ACTIONS(1778), - [anon_sym_err_GT_GT] = ACTIONS(1780), - [anon_sym_out_GT_GT] = ACTIONS(1780), - [anon_sym_e_GT_GT] = ACTIONS(1780), - [anon_sym_o_GT_GT] = ACTIONS(1780), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1780), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1780), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1780), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1780), - [aux_sym_unquoted_token1] = ACTIONS(1778), + [anon_sym_true] = ACTIONS(4318), + [anon_sym_false] = ACTIONS(4318), + [anon_sym_null] = ACTIONS(4320), + [aux_sym_cmd_identifier_token38] = ACTIONS(4322), + [aux_sym_cmd_identifier_token39] = ACTIONS(4322), + [aux_sym_cmd_identifier_token40] = ACTIONS(4322), + [anon_sym_LBRACK] = ACTIONS(4324), + [anon_sym_LPAREN] = ACTIONS(4326), + [anon_sym_DOLLAR] = ACTIONS(4328), + [aux_sym_ctrl_match_token1] = ACTIONS(4330), + [anon_sym_DOT_DOT] = ACTIONS(4332), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4334), + [anon_sym_DOT_DOT_LT] = ACTIONS(4334), + [aux_sym__val_number_decimal_token1] = ACTIONS(4336), + [aux_sym__val_number_decimal_token2] = ACTIONS(4338), + [aux_sym__val_number_decimal_token3] = ACTIONS(4340), + [aux_sym__val_number_decimal_token4] = ACTIONS(4342), + [aux_sym__val_number_token1] = ACTIONS(4344), + [aux_sym__val_number_token2] = ACTIONS(4344), + [aux_sym__val_number_token3] = ACTIONS(4344), + [anon_sym_0b] = ACTIONS(4346), + [anon_sym_0o] = ACTIONS(4348), + [anon_sym_0x] = ACTIONS(4348), + [sym_val_date] = ACTIONS(4350), + [anon_sym_DQUOTE] = ACTIONS(4352), + [sym__str_single_quotes] = ACTIONS(4354), + [sym__str_back_ticks] = ACTIONS(4354), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4356), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4358), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(4360), [anon_sym_POUND] = ACTIONS(247), }, [1151] = { [sym_comment] = STATE(1151), - [anon_sym_true] = ACTIONS(2257), - [anon_sym_false] = ACTIONS(2257), - [anon_sym_null] = ACTIONS(2257), - [aux_sym_cmd_identifier_token38] = ACTIONS(2257), - [aux_sym_cmd_identifier_token39] = ACTIONS(2257), - [aux_sym_cmd_identifier_token40] = ACTIONS(2257), - [sym__newline] = ACTIONS(2257), - [anon_sym_LBRACK] = ACTIONS(2257), - [anon_sym_LPAREN] = ACTIONS(2257), - [anon_sym_COMMA] = ACTIONS(2257), - [anon_sym_DOLLAR] = ACTIONS(2257), - [aux_sym_ctrl_match_token1] = ACTIONS(2257), - [anon_sym_RBRACE] = ACTIONS(2257), - [anon_sym__] = ACTIONS(2255), - [anon_sym_DOT_DOT] = ACTIONS(2255), - [aux_sym_expr_binary_token1] = ACTIONS(2257), - [aux_sym_expr_binary_token2] = ACTIONS(2257), - [aux_sym_expr_binary_token3] = ACTIONS(2257), - [aux_sym_expr_binary_token4] = ACTIONS(2257), - [aux_sym_expr_binary_token5] = ACTIONS(2257), - [aux_sym_expr_binary_token6] = ACTIONS(2257), - [aux_sym_expr_binary_token7] = ACTIONS(2257), - [aux_sym_expr_binary_token8] = ACTIONS(2257), - [aux_sym_expr_binary_token9] = ACTIONS(2257), - [aux_sym_expr_binary_token10] = ACTIONS(2257), - [aux_sym_expr_binary_token11] = ACTIONS(2257), - [aux_sym_expr_binary_token12] = ACTIONS(2257), - [aux_sym_expr_binary_token13] = ACTIONS(2257), - [aux_sym_expr_binary_token14] = ACTIONS(2257), - [aux_sym_expr_binary_token15] = ACTIONS(2257), - [aux_sym_expr_binary_token16] = ACTIONS(2257), - [aux_sym_expr_binary_token17] = ACTIONS(2257), - [aux_sym_expr_binary_token18] = ACTIONS(2257), - [aux_sym_expr_binary_token19] = ACTIONS(2257), - [aux_sym_expr_binary_token20] = ACTIONS(2257), - [aux_sym_expr_binary_token21] = ACTIONS(2257), - [aux_sym_expr_binary_token22] = ACTIONS(2257), - [aux_sym_expr_binary_token23] = ACTIONS(2257), - [aux_sym_expr_binary_token24] = ACTIONS(2257), - [aux_sym_expr_binary_token25] = ACTIONS(2257), - [aux_sym_expr_binary_token26] = ACTIONS(2257), - [aux_sym_expr_binary_token27] = ACTIONS(2257), - [aux_sym_expr_binary_token28] = ACTIONS(2257), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2257), - [anon_sym_DOT_DOT_LT] = ACTIONS(2257), - [aux_sym__val_number_decimal_token1] = ACTIONS(2255), - [aux_sym__val_number_decimal_token2] = ACTIONS(2257), - [aux_sym__val_number_decimal_token3] = ACTIONS(2257), - [aux_sym__val_number_decimal_token4] = ACTIONS(2257), - [aux_sym__val_number_token1] = ACTIONS(2257), - [aux_sym__val_number_token2] = ACTIONS(2257), - [aux_sym__val_number_token3] = ACTIONS(2257), - [anon_sym_0b] = ACTIONS(2255), - [anon_sym_0o] = ACTIONS(2255), - [anon_sym_0x] = ACTIONS(2255), - [sym_val_date] = ACTIONS(2257), - [anon_sym_DQUOTE] = ACTIONS(2257), - [sym__str_single_quotes] = ACTIONS(2257), - [sym__str_back_ticks] = ACTIONS(2257), - [anon_sym_err_GT] = ACTIONS(2255), - [anon_sym_out_GT] = ACTIONS(2255), - [anon_sym_e_GT] = ACTIONS(2255), - [anon_sym_o_GT] = ACTIONS(2255), - [anon_sym_err_PLUSout_GT] = ACTIONS(2255), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2255), - [anon_sym_o_PLUSe_GT] = ACTIONS(2255), - [anon_sym_e_PLUSo_GT] = ACTIONS(2255), - [anon_sym_err_GT_GT] = ACTIONS(2257), - [anon_sym_out_GT_GT] = ACTIONS(2257), - [anon_sym_e_GT_GT] = ACTIONS(2257), - [anon_sym_o_GT_GT] = ACTIONS(2257), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2257), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2257), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2257), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2257), - [aux_sym_unquoted_token1] = ACTIONS(2255), + [anon_sym_EQ] = ACTIONS(1060), + [anon_sym_PLUS_EQ] = ACTIONS(1062), + [anon_sym_DASH_EQ] = ACTIONS(1062), + [anon_sym_STAR_EQ] = ACTIONS(1062), + [anon_sym_SLASH_EQ] = ACTIONS(1062), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1062), + [sym__newline] = ACTIONS(1060), + [anon_sym_SEMI] = ACTIONS(1062), + [anon_sym_PIPE] = ACTIONS(1062), + [anon_sym_err_GT_PIPE] = ACTIONS(1062), + [anon_sym_out_GT_PIPE] = ACTIONS(1062), + [anon_sym_e_GT_PIPE] = ACTIONS(1062), + [anon_sym_o_GT_PIPE] = ACTIONS(1062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1062), + [aux_sym_ctrl_match_token1] = ACTIONS(1062), + [anon_sym_RBRACE] = ACTIONS(1062), + [aux_sym_expr_binary_token1] = ACTIONS(1062), + [aux_sym_expr_binary_token2] = ACTIONS(1062), + [aux_sym_expr_binary_token3] = ACTIONS(1062), + [aux_sym_expr_binary_token4] = ACTIONS(1062), + [aux_sym_expr_binary_token5] = ACTIONS(1062), + [aux_sym_expr_binary_token6] = ACTIONS(1062), + [aux_sym_expr_binary_token7] = ACTIONS(1062), + [aux_sym_expr_binary_token8] = ACTIONS(1062), + [aux_sym_expr_binary_token9] = ACTIONS(1062), + [aux_sym_expr_binary_token10] = ACTIONS(1062), + [aux_sym_expr_binary_token11] = ACTIONS(1062), + [aux_sym_expr_binary_token12] = ACTIONS(1062), + [aux_sym_expr_binary_token13] = ACTIONS(1062), + [aux_sym_expr_binary_token14] = ACTIONS(1062), + [aux_sym_expr_binary_token15] = ACTIONS(1062), + [aux_sym_expr_binary_token16] = ACTIONS(1062), + [aux_sym_expr_binary_token17] = ACTIONS(1062), + [aux_sym_expr_binary_token18] = ACTIONS(1062), + [aux_sym_expr_binary_token19] = ACTIONS(1062), + [aux_sym_expr_binary_token20] = ACTIONS(1062), + [aux_sym_expr_binary_token21] = ACTIONS(1062), + [aux_sym_expr_binary_token22] = ACTIONS(1062), + [aux_sym_expr_binary_token23] = ACTIONS(1062), + [aux_sym_expr_binary_token24] = ACTIONS(1062), + [aux_sym_expr_binary_token25] = ACTIONS(1062), + [aux_sym_expr_binary_token26] = ACTIONS(1062), + [aux_sym_expr_binary_token27] = ACTIONS(1062), + [aux_sym_expr_binary_token28] = ACTIONS(1062), + [anon_sym_DOT_DOT2] = ACTIONS(1060), + [anon_sym_DOT] = ACTIONS(1060), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1062), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1062), + [aux_sym_record_entry_token1] = ACTIONS(1062), + [anon_sym_err_GT] = ACTIONS(1060), + [anon_sym_out_GT] = ACTIONS(1060), + [anon_sym_e_GT] = ACTIONS(1060), + [anon_sym_o_GT] = ACTIONS(1060), + [anon_sym_err_PLUSout_GT] = ACTIONS(1060), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1060), + [anon_sym_o_PLUSe_GT] = ACTIONS(1060), + [anon_sym_e_PLUSo_GT] = ACTIONS(1060), + [anon_sym_err_GT_GT] = ACTIONS(1062), + [anon_sym_out_GT_GT] = ACTIONS(1062), + [anon_sym_e_GT_GT] = ACTIONS(1062), + [anon_sym_o_GT_GT] = ACTIONS(1062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1062), [anon_sym_POUND] = ACTIONS(247), }, [1152] = { [sym_comment] = STATE(1152), - [anon_sym_true] = ACTIONS(2313), - [anon_sym_false] = ACTIONS(2313), - [anon_sym_null] = ACTIONS(2313), - [aux_sym_cmd_identifier_token38] = ACTIONS(2313), - [aux_sym_cmd_identifier_token39] = ACTIONS(2313), - [aux_sym_cmd_identifier_token40] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_LBRACK] = ACTIONS(2313), - [anon_sym_LPAREN] = ACTIONS(2313), - [anon_sym_COMMA] = ACTIONS(2313), - [anon_sym_DOLLAR] = ACTIONS(2313), - [aux_sym_ctrl_match_token1] = ACTIONS(2313), - [anon_sym_RBRACE] = ACTIONS(2313), - [anon_sym__] = ACTIONS(2311), - [anon_sym_DOT_DOT] = ACTIONS(2311), - [aux_sym_expr_binary_token1] = ACTIONS(2313), - [aux_sym_expr_binary_token2] = ACTIONS(2313), - [aux_sym_expr_binary_token3] = ACTIONS(2313), - [aux_sym_expr_binary_token4] = ACTIONS(2313), - [aux_sym_expr_binary_token5] = ACTIONS(2313), - [aux_sym_expr_binary_token6] = ACTIONS(2313), - [aux_sym_expr_binary_token7] = ACTIONS(2313), - [aux_sym_expr_binary_token8] = ACTIONS(2313), - [aux_sym_expr_binary_token9] = ACTIONS(2313), - [aux_sym_expr_binary_token10] = ACTIONS(2313), - [aux_sym_expr_binary_token11] = ACTIONS(2313), - [aux_sym_expr_binary_token12] = ACTIONS(2313), - [aux_sym_expr_binary_token13] = ACTIONS(2313), - [aux_sym_expr_binary_token14] = ACTIONS(2313), - [aux_sym_expr_binary_token15] = ACTIONS(2313), - [aux_sym_expr_binary_token16] = ACTIONS(2313), - [aux_sym_expr_binary_token17] = ACTIONS(2313), - [aux_sym_expr_binary_token18] = ACTIONS(2313), - [aux_sym_expr_binary_token19] = ACTIONS(2313), - [aux_sym_expr_binary_token20] = ACTIONS(2313), - [aux_sym_expr_binary_token21] = ACTIONS(2313), - [aux_sym_expr_binary_token22] = ACTIONS(2313), - [aux_sym_expr_binary_token23] = ACTIONS(2313), - [aux_sym_expr_binary_token24] = ACTIONS(2313), - [aux_sym_expr_binary_token25] = ACTIONS(2313), - [aux_sym_expr_binary_token26] = ACTIONS(2313), - [aux_sym_expr_binary_token27] = ACTIONS(2313), - [aux_sym_expr_binary_token28] = ACTIONS(2313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2313), - [anon_sym_DOT_DOT_LT] = ACTIONS(2313), - [aux_sym__val_number_decimal_token1] = ACTIONS(2311), - [aux_sym__val_number_decimal_token2] = ACTIONS(2313), - [aux_sym__val_number_decimal_token3] = ACTIONS(2313), - [aux_sym__val_number_decimal_token4] = ACTIONS(2313), - [aux_sym__val_number_token1] = ACTIONS(2313), - [aux_sym__val_number_token2] = ACTIONS(2313), - [aux_sym__val_number_token3] = ACTIONS(2313), - [anon_sym_0b] = ACTIONS(2311), - [anon_sym_0o] = ACTIONS(2311), - [anon_sym_0x] = ACTIONS(2311), - [sym_val_date] = ACTIONS(2313), - [anon_sym_DQUOTE] = ACTIONS(2313), - [sym__str_single_quotes] = ACTIONS(2313), - [sym__str_back_ticks] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [aux_sym_unquoted_token1] = ACTIONS(2311), + [anon_sym_EQ] = ACTIONS(1052), + [anon_sym_PLUS_EQ] = ACTIONS(1054), + [anon_sym_DASH_EQ] = ACTIONS(1054), + [anon_sym_STAR_EQ] = ACTIONS(1054), + [anon_sym_SLASH_EQ] = ACTIONS(1054), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1054), + [sym__newline] = ACTIONS(1052), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_PIPE] = ACTIONS(1054), + [anon_sym_err_GT_PIPE] = ACTIONS(1054), + [anon_sym_out_GT_PIPE] = ACTIONS(1054), + [anon_sym_e_GT_PIPE] = ACTIONS(1054), + [anon_sym_o_GT_PIPE] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1054), + [aux_sym_ctrl_match_token1] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1054), + [aux_sym_expr_binary_token1] = ACTIONS(1054), + [aux_sym_expr_binary_token2] = ACTIONS(1054), + [aux_sym_expr_binary_token3] = ACTIONS(1054), + [aux_sym_expr_binary_token4] = ACTIONS(1054), + [aux_sym_expr_binary_token5] = ACTIONS(1054), + [aux_sym_expr_binary_token6] = ACTIONS(1054), + [aux_sym_expr_binary_token7] = ACTIONS(1054), + [aux_sym_expr_binary_token8] = ACTIONS(1054), + [aux_sym_expr_binary_token9] = ACTIONS(1054), + [aux_sym_expr_binary_token10] = ACTIONS(1054), + [aux_sym_expr_binary_token11] = ACTIONS(1054), + [aux_sym_expr_binary_token12] = ACTIONS(1054), + [aux_sym_expr_binary_token13] = ACTIONS(1054), + [aux_sym_expr_binary_token14] = ACTIONS(1054), + [aux_sym_expr_binary_token15] = ACTIONS(1054), + [aux_sym_expr_binary_token16] = ACTIONS(1054), + [aux_sym_expr_binary_token17] = ACTIONS(1054), + [aux_sym_expr_binary_token18] = ACTIONS(1054), + [aux_sym_expr_binary_token19] = ACTIONS(1054), + [aux_sym_expr_binary_token20] = ACTIONS(1054), + [aux_sym_expr_binary_token21] = ACTIONS(1054), + [aux_sym_expr_binary_token22] = ACTIONS(1054), + [aux_sym_expr_binary_token23] = ACTIONS(1054), + [aux_sym_expr_binary_token24] = ACTIONS(1054), + [aux_sym_expr_binary_token25] = ACTIONS(1054), + [aux_sym_expr_binary_token26] = ACTIONS(1054), + [aux_sym_expr_binary_token27] = ACTIONS(1054), + [aux_sym_expr_binary_token28] = ACTIONS(1054), + [anon_sym_DOT_DOT2] = ACTIONS(1052), + [anon_sym_DOT] = ACTIONS(1052), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1054), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1054), + [aux_sym_record_entry_token1] = ACTIONS(1054), + [anon_sym_err_GT] = ACTIONS(1052), + [anon_sym_out_GT] = ACTIONS(1052), + [anon_sym_e_GT] = ACTIONS(1052), + [anon_sym_o_GT] = ACTIONS(1052), + [anon_sym_err_PLUSout_GT] = ACTIONS(1052), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1052), + [anon_sym_o_PLUSe_GT] = ACTIONS(1052), + [anon_sym_e_PLUSo_GT] = ACTIONS(1052), + [anon_sym_err_GT_GT] = ACTIONS(1054), + [anon_sym_out_GT_GT] = ACTIONS(1054), + [anon_sym_e_GT_GT] = ACTIONS(1054), + [anon_sym_o_GT_GT] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1054), [anon_sym_POUND] = ACTIONS(247), }, [1153] = { + [sym__val_range] = STATE(7774), + [sym__value] = STATE(5988), + [sym_val_nothing] = STATE(2168), + [sym_val_bool] = STATE(3524), + [sym_val_variable] = STATE(2168), + [sym_val_number] = STATE(2168), + [sym__val_number_decimal] = STATE(5515), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(2168), + [sym_val_filesize] = STATE(2168), + [sym_val_binary] = STATE(2168), + [sym_val_string] = STATE(2168), + [sym__str_double_quotes] = STATE(1972), + [sym_val_interpolated] = STATE(2168), + [sym__inter_single_quotes] = STATE(2218), + [sym__inter_double_quotes] = STATE(2219), + [sym_val_list] = STATE(2168), + [sym_val_record] = STATE(2168), + [sym_val_table] = STATE(2168), + [sym_val_closure] = STATE(2168), + [sym_unquoted] = STATE(5989), + [sym__unquoted_anonymous_prefix] = STATE(7502), [sym_comment] = STATE(1153), - [anon_sym_true] = ACTIONS(2313), - [anon_sym_false] = ACTIONS(2313), - [anon_sym_null] = ACTIONS(2313), - [aux_sym_cmd_identifier_token38] = ACTIONS(2313), - [aux_sym_cmd_identifier_token39] = ACTIONS(2313), - [aux_sym_cmd_identifier_token40] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_LBRACK] = ACTIONS(2313), - [anon_sym_LPAREN] = ACTIONS(2313), - [anon_sym_COMMA] = ACTIONS(2313), - [anon_sym_DOLLAR] = ACTIONS(2313), - [aux_sym_ctrl_match_token1] = ACTIONS(2313), - [anon_sym_RBRACE] = ACTIONS(2313), - [anon_sym__] = ACTIONS(2311), - [anon_sym_DOT_DOT] = ACTIONS(2311), - [aux_sym_expr_binary_token1] = ACTIONS(2313), - [aux_sym_expr_binary_token2] = ACTIONS(2313), - [aux_sym_expr_binary_token3] = ACTIONS(2313), - [aux_sym_expr_binary_token4] = ACTIONS(2313), - [aux_sym_expr_binary_token5] = ACTIONS(2313), - [aux_sym_expr_binary_token6] = ACTIONS(2313), - [aux_sym_expr_binary_token7] = ACTIONS(2313), - [aux_sym_expr_binary_token8] = ACTIONS(2313), - [aux_sym_expr_binary_token9] = ACTIONS(2313), - [aux_sym_expr_binary_token10] = ACTIONS(2313), - [aux_sym_expr_binary_token11] = ACTIONS(2313), - [aux_sym_expr_binary_token12] = ACTIONS(2313), - [aux_sym_expr_binary_token13] = ACTIONS(2313), - [aux_sym_expr_binary_token14] = ACTIONS(2313), - [aux_sym_expr_binary_token15] = ACTIONS(2313), - [aux_sym_expr_binary_token16] = ACTIONS(2313), - [aux_sym_expr_binary_token17] = ACTIONS(2313), - [aux_sym_expr_binary_token18] = ACTIONS(2313), - [aux_sym_expr_binary_token19] = ACTIONS(2313), - [aux_sym_expr_binary_token20] = ACTIONS(2313), - [aux_sym_expr_binary_token21] = ACTIONS(2313), - [aux_sym_expr_binary_token22] = ACTIONS(2313), - [aux_sym_expr_binary_token23] = ACTIONS(2313), - [aux_sym_expr_binary_token24] = ACTIONS(2313), - [aux_sym_expr_binary_token25] = ACTIONS(2313), - [aux_sym_expr_binary_token26] = ACTIONS(2313), - [aux_sym_expr_binary_token27] = ACTIONS(2313), - [aux_sym_expr_binary_token28] = ACTIONS(2313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2313), - [anon_sym_DOT_DOT_LT] = ACTIONS(2313), - [aux_sym__val_number_decimal_token1] = ACTIONS(2311), - [aux_sym__val_number_decimal_token2] = ACTIONS(2313), - [aux_sym__val_number_decimal_token3] = ACTIONS(2313), - [aux_sym__val_number_decimal_token4] = ACTIONS(2313), - [aux_sym__val_number_token1] = ACTIONS(2313), - [aux_sym__val_number_token2] = ACTIONS(2313), - [aux_sym__val_number_token3] = ACTIONS(2313), - [anon_sym_0b] = ACTIONS(2311), - [anon_sym_0o] = ACTIONS(2311), - [anon_sym_0x] = ACTIONS(2311), - [sym_val_date] = ACTIONS(2313), - [anon_sym_DQUOTE] = ACTIONS(2313), - [sym__str_single_quotes] = ACTIONS(2313), - [sym__str_back_ticks] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [aux_sym_unquoted_token1] = ACTIONS(2311), + [anon_sym_true] = ACTIONS(3243), + [anon_sym_false] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [aux_sym_cmd_identifier_token38] = ACTIONS(3686), + [aux_sym_cmd_identifier_token39] = ACTIONS(3686), + [aux_sym_cmd_identifier_token40] = ACTIONS(3686), + [anon_sym_LBRACK] = ACTIONS(3688), + [anon_sym_LPAREN] = ACTIONS(4087), + [anon_sym_DOLLAR] = ACTIONS(4089), + [aux_sym_ctrl_match_token1] = ACTIONS(3694), + [anon_sym_DOT_DOT] = ACTIONS(4091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4093), + [anon_sym_DOT_DOT_LT] = ACTIONS(4093), + [aux_sym__val_number_decimal_token1] = ACTIONS(3263), + [aux_sym__val_number_decimal_token2] = ACTIONS(3265), + [aux_sym__val_number_decimal_token3] = ACTIONS(3267), + [aux_sym__val_number_decimal_token4] = ACTIONS(3269), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(3271), + [anon_sym_DQUOTE] = ACTIONS(3700), + [sym__str_single_quotes] = ACTIONS(3702), + [sym__str_back_ticks] = ACTIONS(3702), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(513), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3704), [anon_sym_POUND] = ACTIONS(247), }, [1154] = { + [sym__val_range] = STATE(7492), + [sym__value] = STATE(3540), + [sym_val_nothing] = STATE(3533), + [sym_val_bool] = STATE(3515), + [sym_val_variable] = STATE(3533), + [sym_val_number] = STATE(3533), + [sym__val_number_decimal] = STATE(3370), + [sym__val_number] = STATE(3535), + [sym_val_duration] = STATE(3533), + [sym_val_filesize] = STATE(3533), + [sym_val_binary] = STATE(3533), + [sym_val_string] = STATE(3533), + [sym__str_double_quotes] = STATE(3471), + [sym_val_interpolated] = STATE(3533), + [sym__inter_single_quotes] = STATE(3648), + [sym__inter_double_quotes] = STATE(3649), + [sym_val_list] = STATE(3533), + [sym_val_record] = STATE(3533), + [sym_val_table] = STATE(3533), + [sym_val_closure] = STATE(3533), + [sym_unquoted] = STATE(3544), + [sym__unquoted_anonymous_prefix] = STATE(7626), [sym_comment] = STATE(1154), - [anon_sym_true] = ACTIONS(3595), - [anon_sym_false] = ACTIONS(3595), - [anon_sym_null] = ACTIONS(3595), - [aux_sym_cmd_identifier_token38] = ACTIONS(3595), - [aux_sym_cmd_identifier_token39] = ACTIONS(3595), - [aux_sym_cmd_identifier_token40] = ACTIONS(3595), - [sym__newline] = ACTIONS(3595), - [anon_sym_LBRACK] = ACTIONS(3595), - [anon_sym_LPAREN] = ACTIONS(3595), - [anon_sym_COMMA] = ACTIONS(3595), - [anon_sym_DOLLAR] = ACTIONS(3595), - [aux_sym_ctrl_match_token1] = ACTIONS(3595), - [anon_sym_RBRACE] = ACTIONS(3595), - [anon_sym__] = ACTIONS(3597), - [anon_sym_DOT_DOT] = ACTIONS(3597), - [aux_sym_expr_binary_token1] = ACTIONS(3595), - [aux_sym_expr_binary_token2] = ACTIONS(3595), - [aux_sym_expr_binary_token3] = ACTIONS(3595), - [aux_sym_expr_binary_token4] = ACTIONS(3595), - [aux_sym_expr_binary_token5] = ACTIONS(3595), - [aux_sym_expr_binary_token6] = ACTIONS(3595), - [aux_sym_expr_binary_token7] = ACTIONS(3595), - [aux_sym_expr_binary_token8] = ACTIONS(3595), - [aux_sym_expr_binary_token9] = ACTIONS(3595), - [aux_sym_expr_binary_token10] = ACTIONS(3595), - [aux_sym_expr_binary_token11] = ACTIONS(3595), - [aux_sym_expr_binary_token12] = ACTIONS(3595), - [aux_sym_expr_binary_token13] = ACTIONS(3595), - [aux_sym_expr_binary_token14] = ACTIONS(3595), - [aux_sym_expr_binary_token15] = ACTIONS(3595), - [aux_sym_expr_binary_token16] = ACTIONS(3595), - [aux_sym_expr_binary_token17] = ACTIONS(3595), - [aux_sym_expr_binary_token18] = ACTIONS(3595), - [aux_sym_expr_binary_token19] = ACTIONS(3595), - [aux_sym_expr_binary_token20] = ACTIONS(3595), - [aux_sym_expr_binary_token21] = ACTIONS(3595), - [aux_sym_expr_binary_token22] = ACTIONS(3595), - [aux_sym_expr_binary_token23] = ACTIONS(3595), - [aux_sym_expr_binary_token24] = ACTIONS(3595), - [aux_sym_expr_binary_token25] = ACTIONS(3595), - [aux_sym_expr_binary_token26] = ACTIONS(3595), - [aux_sym_expr_binary_token27] = ACTIONS(3595), - [aux_sym_expr_binary_token28] = ACTIONS(3595), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3595), - [anon_sym_DOT_DOT_LT] = ACTIONS(3595), - [aux_sym__val_number_decimal_token1] = ACTIONS(3597), - [aux_sym__val_number_decimal_token2] = ACTIONS(3595), - [aux_sym__val_number_decimal_token3] = ACTIONS(3595), - [aux_sym__val_number_decimal_token4] = ACTIONS(3595), - [aux_sym__val_number_token1] = ACTIONS(3595), - [aux_sym__val_number_token2] = ACTIONS(3595), - [aux_sym__val_number_token3] = ACTIONS(3595), - [anon_sym_0b] = ACTIONS(3597), - [anon_sym_0o] = ACTIONS(3597), - [anon_sym_0x] = ACTIONS(3597), - [sym_val_date] = ACTIONS(3595), - [anon_sym_DQUOTE] = ACTIONS(3595), - [sym__str_single_quotes] = ACTIONS(3595), - [sym__str_back_ticks] = ACTIONS(3595), - [anon_sym_err_GT] = ACTIONS(3597), - [anon_sym_out_GT] = ACTIONS(3597), - [anon_sym_e_GT] = ACTIONS(3597), - [anon_sym_o_GT] = ACTIONS(3597), - [anon_sym_err_PLUSout_GT] = ACTIONS(3597), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3597), - [anon_sym_o_PLUSe_GT] = ACTIONS(3597), - [anon_sym_e_PLUSo_GT] = ACTIONS(3597), - [anon_sym_err_GT_GT] = ACTIONS(3595), - [anon_sym_out_GT_GT] = ACTIONS(3595), - [anon_sym_e_GT_GT] = ACTIONS(3595), - [anon_sym_o_GT_GT] = ACTIONS(3595), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3595), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3595), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3595), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3595), - [aux_sym_unquoted_token1] = ACTIONS(3597), + [anon_sym_true] = ACTIONS(4318), + [anon_sym_false] = ACTIONS(4318), + [anon_sym_null] = ACTIONS(4320), + [aux_sym_cmd_identifier_token38] = ACTIONS(4322), + [aux_sym_cmd_identifier_token39] = ACTIONS(4322), + [aux_sym_cmd_identifier_token40] = ACTIONS(4322), + [anon_sym_LBRACK] = ACTIONS(4324), + [anon_sym_LPAREN] = ACTIONS(4326), + [anon_sym_DOLLAR] = ACTIONS(4328), + [aux_sym_ctrl_match_token1] = ACTIONS(4330), + [anon_sym_DOT_DOT] = ACTIONS(4332), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4334), + [anon_sym_DOT_DOT_LT] = ACTIONS(4334), + [aux_sym__val_number_decimal_token1] = ACTIONS(4336), + [aux_sym__val_number_decimal_token2] = ACTIONS(4338), + [aux_sym__val_number_decimal_token3] = ACTIONS(4340), + [aux_sym__val_number_decimal_token4] = ACTIONS(4342), + [aux_sym__val_number_token1] = ACTIONS(4344), + [aux_sym__val_number_token2] = ACTIONS(4344), + [aux_sym__val_number_token3] = ACTIONS(4344), + [anon_sym_0b] = ACTIONS(4346), + [anon_sym_0o] = ACTIONS(4348), + [anon_sym_0x] = ACTIONS(4348), + [sym_val_date] = ACTIONS(4350), + [anon_sym_DQUOTE] = ACTIONS(4352), + [sym__str_single_quotes] = ACTIONS(4354), + [sym__str_back_ticks] = ACTIONS(4354), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4356), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4358), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(4360), [anon_sym_POUND] = ACTIONS(247), }, [1155] = { + [sym__val_range] = STATE(7753), + [sym__value] = STATE(1720), + [sym_val_nothing] = STATE(1755), + [sym_val_bool] = STATE(1534), + [sym_val_variable] = STATE(1755), + [sym_val_number] = STATE(1755), + [sym__val_number_decimal] = STATE(1195), + [sym__val_number] = STATE(1569), + [sym_val_duration] = STATE(1755), + [sym_val_filesize] = STATE(1755), + [sym_val_binary] = STATE(1755), + [sym_val_string] = STATE(1755), + [sym__str_double_quotes] = STATE(1657), + [sym_val_interpolated] = STATE(1755), + [sym__inter_single_quotes] = STATE(1574), + [sym__inter_double_quotes] = STATE(1575), + [sym_val_list] = STATE(1755), + [sym_val_record] = STATE(1755), + [sym_val_table] = STATE(1755), + [sym_val_closure] = STATE(1755), + [sym_unquoted] = STATE(1721), + [sym__unquoted_anonymous_prefix] = STATE(7741), [sym_comment] = STATE(1155), - [anon_sym_true] = ACTIONS(2334), - [anon_sym_false] = ACTIONS(2334), - [anon_sym_null] = ACTIONS(2334), - [aux_sym_cmd_identifier_token38] = ACTIONS(2334), - [aux_sym_cmd_identifier_token39] = ACTIONS(2334), - [aux_sym_cmd_identifier_token40] = ACTIONS(2334), - [sym__newline] = ACTIONS(2334), - [anon_sym_LBRACK] = ACTIONS(2334), - [anon_sym_LPAREN] = ACTIONS(2334), - [anon_sym_COMMA] = ACTIONS(2334), - [anon_sym_DOLLAR] = ACTIONS(2334), - [aux_sym_ctrl_match_token1] = ACTIONS(2334), - [anon_sym_RBRACE] = ACTIONS(2334), - [anon_sym__] = ACTIONS(2332), - [anon_sym_DOT_DOT] = ACTIONS(2332), - [aux_sym_expr_binary_token1] = ACTIONS(2334), - [aux_sym_expr_binary_token2] = ACTIONS(2334), - [aux_sym_expr_binary_token3] = ACTIONS(2334), - [aux_sym_expr_binary_token4] = ACTIONS(2334), - [aux_sym_expr_binary_token5] = ACTIONS(2334), - [aux_sym_expr_binary_token6] = ACTIONS(2334), - [aux_sym_expr_binary_token7] = ACTIONS(2334), - [aux_sym_expr_binary_token8] = ACTIONS(2334), - [aux_sym_expr_binary_token9] = ACTIONS(2334), - [aux_sym_expr_binary_token10] = ACTIONS(2334), - [aux_sym_expr_binary_token11] = ACTIONS(2334), - [aux_sym_expr_binary_token12] = ACTIONS(2334), - [aux_sym_expr_binary_token13] = ACTIONS(2334), - [aux_sym_expr_binary_token14] = ACTIONS(2334), - [aux_sym_expr_binary_token15] = ACTIONS(2334), - [aux_sym_expr_binary_token16] = ACTIONS(2334), - [aux_sym_expr_binary_token17] = ACTIONS(2334), - [aux_sym_expr_binary_token18] = ACTIONS(2334), - [aux_sym_expr_binary_token19] = ACTIONS(2334), - [aux_sym_expr_binary_token20] = ACTIONS(2334), - [aux_sym_expr_binary_token21] = ACTIONS(2334), - [aux_sym_expr_binary_token22] = ACTIONS(2334), - [aux_sym_expr_binary_token23] = ACTIONS(2334), - [aux_sym_expr_binary_token24] = ACTIONS(2334), - [aux_sym_expr_binary_token25] = ACTIONS(2334), - [aux_sym_expr_binary_token26] = ACTIONS(2334), - [aux_sym_expr_binary_token27] = ACTIONS(2334), - [aux_sym_expr_binary_token28] = ACTIONS(2334), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2334), - [anon_sym_DOT_DOT_LT] = ACTIONS(2334), - [aux_sym__val_number_decimal_token1] = ACTIONS(2332), - [aux_sym__val_number_decimal_token2] = ACTIONS(2334), - [aux_sym__val_number_decimal_token3] = ACTIONS(2334), - [aux_sym__val_number_decimal_token4] = ACTIONS(2334), - [aux_sym__val_number_token1] = ACTIONS(2334), - [aux_sym__val_number_token2] = ACTIONS(2334), - [aux_sym__val_number_token3] = ACTIONS(2334), - [anon_sym_0b] = ACTIONS(2332), - [anon_sym_0o] = ACTIONS(2332), - [anon_sym_0x] = ACTIONS(2332), - [sym_val_date] = ACTIONS(2334), - [anon_sym_DQUOTE] = ACTIONS(2334), - [sym__str_single_quotes] = ACTIONS(2334), - [sym__str_back_ticks] = ACTIONS(2334), - [anon_sym_err_GT] = ACTIONS(2332), - [anon_sym_out_GT] = ACTIONS(2332), - [anon_sym_e_GT] = ACTIONS(2332), - [anon_sym_o_GT] = ACTIONS(2332), - [anon_sym_err_PLUSout_GT] = ACTIONS(2332), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2332), - [anon_sym_o_PLUSe_GT] = ACTIONS(2332), - [anon_sym_e_PLUSo_GT] = ACTIONS(2332), - [anon_sym_err_GT_GT] = ACTIONS(2334), - [anon_sym_out_GT_GT] = ACTIONS(2334), - [anon_sym_e_GT_GT] = ACTIONS(2334), - [anon_sym_o_GT_GT] = ACTIONS(2334), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2334), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2334), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2334), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2334), - [aux_sym_unquoted_token1] = ACTIONS(2332), + [anon_sym_true] = ACTIONS(4362), + [anon_sym_false] = ACTIONS(4362), + [anon_sym_null] = ACTIONS(4364), + [aux_sym_cmd_identifier_token38] = ACTIONS(4366), + [aux_sym_cmd_identifier_token39] = ACTIONS(4366), + [aux_sym_cmd_identifier_token40] = ACTIONS(4366), + [anon_sym_LBRACK] = ACTIONS(2533), + [anon_sym_LPAREN] = ACTIONS(4368), + [anon_sym_DOLLAR] = ACTIONS(3882), + [aux_sym_ctrl_match_token1] = ACTIONS(2543), + [anon_sym_DOT_DOT] = ACTIONS(4370), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4372), + [anon_sym_DOT_DOT_LT] = ACTIONS(4372), + [aux_sym__val_number_decimal_token1] = ACTIONS(4374), + [aux_sym__val_number_decimal_token2] = ACTIONS(4376), + [aux_sym__val_number_decimal_token3] = ACTIONS(4378), + [aux_sym__val_number_decimal_token4] = ACTIONS(4380), + [aux_sym__val_number_token1] = ACTIONS(2557), + [aux_sym__val_number_token2] = ACTIONS(2557), + [aux_sym__val_number_token3] = ACTIONS(2557), + [anon_sym_0b] = ACTIONS(2559), + [anon_sym_0o] = ACTIONS(2561), + [anon_sym_0x] = ACTIONS(2561), + [sym_val_date] = ACTIONS(4382), + [anon_sym_DQUOTE] = ACTIONS(2565), + [sym__str_single_quotes] = ACTIONS(2567), + [sym__str_back_ticks] = ACTIONS(2567), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2569), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2571), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(4384), [anon_sym_POUND] = ACTIONS(247), }, [1156] = { + [sym__val_range] = STATE(7492), + [sym__value] = STATE(3688), + [sym_val_nothing] = STATE(3533), + [sym_val_bool] = STATE(3515), + [sym_val_variable] = STATE(3533), + [sym_val_number] = STATE(3533), + [sym__val_number_decimal] = STATE(3370), + [sym__val_number] = STATE(3535), + [sym_val_duration] = STATE(3533), + [sym_val_filesize] = STATE(3533), + [sym_val_binary] = STATE(3533), + [sym_val_string] = STATE(3533), + [sym__str_double_quotes] = STATE(3471), + [sym_val_interpolated] = STATE(3533), + [sym__inter_single_quotes] = STATE(3648), + [sym__inter_double_quotes] = STATE(3649), + [sym_val_list] = STATE(3533), + [sym_val_record] = STATE(3533), + [sym_val_table] = STATE(3533), + [sym_val_closure] = STATE(3533), + [sym_unquoted] = STATE(3690), + [sym__unquoted_anonymous_prefix] = STATE(7626), [sym_comment] = STATE(1156), - [anon_sym_true] = ACTIONS(2273), - [anon_sym_false] = ACTIONS(2273), - [anon_sym_null] = ACTIONS(2273), - [aux_sym_cmd_identifier_token38] = ACTIONS(2273), - [aux_sym_cmd_identifier_token39] = ACTIONS(2273), - [aux_sym_cmd_identifier_token40] = ACTIONS(2273), - [sym__newline] = ACTIONS(2273), - [anon_sym_LBRACK] = ACTIONS(2273), - [anon_sym_LPAREN] = ACTIONS(2273), - [anon_sym_COMMA] = ACTIONS(2273), - [anon_sym_DOLLAR] = ACTIONS(2273), - [aux_sym_ctrl_match_token1] = ACTIONS(2273), - [anon_sym_RBRACE] = ACTIONS(2273), - [anon_sym__] = ACTIONS(2271), - [anon_sym_DOT_DOT] = ACTIONS(2271), - [aux_sym_expr_binary_token1] = ACTIONS(2273), - [aux_sym_expr_binary_token2] = ACTIONS(2273), - [aux_sym_expr_binary_token3] = ACTIONS(2273), - [aux_sym_expr_binary_token4] = ACTIONS(2273), - [aux_sym_expr_binary_token5] = ACTIONS(2273), - [aux_sym_expr_binary_token6] = ACTIONS(2273), - [aux_sym_expr_binary_token7] = ACTIONS(2273), - [aux_sym_expr_binary_token8] = ACTIONS(2273), - [aux_sym_expr_binary_token9] = ACTIONS(2273), - [aux_sym_expr_binary_token10] = ACTIONS(2273), - [aux_sym_expr_binary_token11] = ACTIONS(2273), - [aux_sym_expr_binary_token12] = ACTIONS(2273), - [aux_sym_expr_binary_token13] = ACTIONS(2273), - [aux_sym_expr_binary_token14] = ACTIONS(2273), - [aux_sym_expr_binary_token15] = ACTIONS(2273), - [aux_sym_expr_binary_token16] = ACTIONS(2273), - [aux_sym_expr_binary_token17] = ACTIONS(2273), - [aux_sym_expr_binary_token18] = ACTIONS(2273), - [aux_sym_expr_binary_token19] = ACTIONS(2273), - [aux_sym_expr_binary_token20] = ACTIONS(2273), - [aux_sym_expr_binary_token21] = ACTIONS(2273), - [aux_sym_expr_binary_token22] = ACTIONS(2273), - [aux_sym_expr_binary_token23] = ACTIONS(2273), - [aux_sym_expr_binary_token24] = ACTIONS(2273), - [aux_sym_expr_binary_token25] = ACTIONS(2273), - [aux_sym_expr_binary_token26] = ACTIONS(2273), - [aux_sym_expr_binary_token27] = ACTIONS(2273), - [aux_sym_expr_binary_token28] = ACTIONS(2273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2273), - [anon_sym_DOT_DOT_LT] = ACTIONS(2273), - [aux_sym__val_number_decimal_token1] = ACTIONS(2271), - [aux_sym__val_number_decimal_token2] = ACTIONS(2273), - [aux_sym__val_number_decimal_token3] = ACTIONS(2273), - [aux_sym__val_number_decimal_token4] = ACTIONS(2273), - [aux_sym__val_number_token1] = ACTIONS(2273), - [aux_sym__val_number_token2] = ACTIONS(2273), - [aux_sym__val_number_token3] = ACTIONS(2273), - [anon_sym_0b] = ACTIONS(2271), - [anon_sym_0o] = ACTIONS(2271), - [anon_sym_0x] = ACTIONS(2271), - [sym_val_date] = ACTIONS(2273), - [anon_sym_DQUOTE] = ACTIONS(2273), - [sym__str_single_quotes] = ACTIONS(2273), - [sym__str_back_ticks] = ACTIONS(2273), - [anon_sym_err_GT] = ACTIONS(2271), - [anon_sym_out_GT] = ACTIONS(2271), - [anon_sym_e_GT] = ACTIONS(2271), - [anon_sym_o_GT] = ACTIONS(2271), - [anon_sym_err_PLUSout_GT] = ACTIONS(2271), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2271), - [anon_sym_o_PLUSe_GT] = ACTIONS(2271), - [anon_sym_e_PLUSo_GT] = ACTIONS(2271), - [anon_sym_err_GT_GT] = ACTIONS(2273), - [anon_sym_out_GT_GT] = ACTIONS(2273), - [anon_sym_e_GT_GT] = ACTIONS(2273), - [anon_sym_o_GT_GT] = ACTIONS(2273), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2273), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2273), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2273), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2273), - [aux_sym_unquoted_token1] = ACTIONS(2271), + [anon_sym_true] = ACTIONS(4318), + [anon_sym_false] = ACTIONS(4318), + [anon_sym_null] = ACTIONS(4320), + [aux_sym_cmd_identifier_token38] = ACTIONS(4322), + [aux_sym_cmd_identifier_token39] = ACTIONS(4322), + [aux_sym_cmd_identifier_token40] = ACTIONS(4322), + [anon_sym_LBRACK] = ACTIONS(4324), + [anon_sym_LPAREN] = ACTIONS(4326), + [anon_sym_DOLLAR] = ACTIONS(4328), + [aux_sym_ctrl_match_token1] = ACTIONS(4330), + [anon_sym_DOT_DOT] = ACTIONS(4332), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4334), + [anon_sym_DOT_DOT_LT] = ACTIONS(4334), + [aux_sym__val_number_decimal_token1] = ACTIONS(4336), + [aux_sym__val_number_decimal_token2] = ACTIONS(4338), + [aux_sym__val_number_decimal_token3] = ACTIONS(4340), + [aux_sym__val_number_decimal_token4] = ACTIONS(4342), + [aux_sym__val_number_token1] = ACTIONS(4344), + [aux_sym__val_number_token2] = ACTIONS(4344), + [aux_sym__val_number_token3] = ACTIONS(4344), + [anon_sym_0b] = ACTIONS(4346), + [anon_sym_0o] = ACTIONS(4348), + [anon_sym_0x] = ACTIONS(4348), + [sym_val_date] = ACTIONS(4350), + [anon_sym_DQUOTE] = ACTIONS(4352), + [sym__str_single_quotes] = ACTIONS(4354), + [sym__str_back_ticks] = ACTIONS(4354), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4356), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4358), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(4360), [anon_sym_POUND] = ACTIONS(247), }, [1157] = { + [sym__val_range] = STATE(7753), + [sym__value] = STATE(1722), + [sym_val_nothing] = STATE(1755), + [sym_val_bool] = STATE(1534), + [sym_val_variable] = STATE(1755), + [sym_val_number] = STATE(1755), + [sym__val_number_decimal] = STATE(1195), + [sym__val_number] = STATE(1569), + [sym_val_duration] = STATE(1755), + [sym_val_filesize] = STATE(1755), + [sym_val_binary] = STATE(1755), + [sym_val_string] = STATE(1755), + [sym__str_double_quotes] = STATE(1657), + [sym_val_interpolated] = STATE(1755), + [sym__inter_single_quotes] = STATE(1574), + [sym__inter_double_quotes] = STATE(1575), + [sym_val_list] = STATE(1755), + [sym_val_record] = STATE(1755), + [sym_val_table] = STATE(1755), + [sym_val_closure] = STATE(1755), + [sym_unquoted] = STATE(1723), + [sym__unquoted_anonymous_prefix] = STATE(7741), [sym_comment] = STATE(1157), - [anon_sym_true] = ACTIONS(2243), - [anon_sym_false] = ACTIONS(2243), - [anon_sym_null] = ACTIONS(2243), - [aux_sym_cmd_identifier_token38] = ACTIONS(2243), - [aux_sym_cmd_identifier_token39] = ACTIONS(2243), - [aux_sym_cmd_identifier_token40] = ACTIONS(2243), - [sym__newline] = ACTIONS(2243), - [anon_sym_LBRACK] = ACTIONS(2243), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_COMMA] = ACTIONS(2243), - [anon_sym_DOLLAR] = ACTIONS(2243), - [aux_sym_ctrl_match_token1] = ACTIONS(2243), - [anon_sym_RBRACE] = ACTIONS(2243), - [anon_sym__] = ACTIONS(2241), - [anon_sym_DOT_DOT] = ACTIONS(2241), - [aux_sym_expr_binary_token1] = ACTIONS(2243), - [aux_sym_expr_binary_token2] = ACTIONS(2243), - [aux_sym_expr_binary_token3] = ACTIONS(2243), - [aux_sym_expr_binary_token4] = ACTIONS(2243), - [aux_sym_expr_binary_token5] = ACTIONS(2243), - [aux_sym_expr_binary_token6] = ACTIONS(2243), - [aux_sym_expr_binary_token7] = ACTIONS(2243), - [aux_sym_expr_binary_token8] = ACTIONS(2243), - [aux_sym_expr_binary_token9] = ACTIONS(2243), - [aux_sym_expr_binary_token10] = ACTIONS(2243), - [aux_sym_expr_binary_token11] = ACTIONS(2243), - [aux_sym_expr_binary_token12] = ACTIONS(2243), - [aux_sym_expr_binary_token13] = ACTIONS(2243), - [aux_sym_expr_binary_token14] = ACTIONS(2243), - [aux_sym_expr_binary_token15] = ACTIONS(2243), - [aux_sym_expr_binary_token16] = ACTIONS(2243), - [aux_sym_expr_binary_token17] = ACTIONS(2243), - [aux_sym_expr_binary_token18] = ACTIONS(2243), - [aux_sym_expr_binary_token19] = ACTIONS(2243), - [aux_sym_expr_binary_token20] = ACTIONS(2243), - [aux_sym_expr_binary_token21] = ACTIONS(2243), - [aux_sym_expr_binary_token22] = ACTIONS(2243), - [aux_sym_expr_binary_token23] = ACTIONS(2243), - [aux_sym_expr_binary_token24] = ACTIONS(2243), - [aux_sym_expr_binary_token25] = ACTIONS(2243), - [aux_sym_expr_binary_token26] = ACTIONS(2243), - [aux_sym_expr_binary_token27] = ACTIONS(2243), - [aux_sym_expr_binary_token28] = ACTIONS(2243), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2243), - [anon_sym_DOT_DOT_LT] = ACTIONS(2243), - [aux_sym__val_number_decimal_token1] = ACTIONS(2241), - [aux_sym__val_number_decimal_token2] = ACTIONS(2243), - [aux_sym__val_number_decimal_token3] = ACTIONS(2243), - [aux_sym__val_number_decimal_token4] = ACTIONS(2243), - [aux_sym__val_number_token1] = ACTIONS(2243), - [aux_sym__val_number_token2] = ACTIONS(2243), - [aux_sym__val_number_token3] = ACTIONS(2243), - [anon_sym_0b] = ACTIONS(2241), - [anon_sym_0o] = ACTIONS(2241), - [anon_sym_0x] = ACTIONS(2241), - [sym_val_date] = ACTIONS(2243), - [anon_sym_DQUOTE] = ACTIONS(2243), - [sym__str_single_quotes] = ACTIONS(2243), - [sym__str_back_ticks] = ACTIONS(2243), - [anon_sym_err_GT] = ACTIONS(2241), - [anon_sym_out_GT] = ACTIONS(2241), - [anon_sym_e_GT] = ACTIONS(2241), - [anon_sym_o_GT] = ACTIONS(2241), - [anon_sym_err_PLUSout_GT] = ACTIONS(2241), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2241), - [anon_sym_o_PLUSe_GT] = ACTIONS(2241), - [anon_sym_e_PLUSo_GT] = ACTIONS(2241), - [anon_sym_err_GT_GT] = ACTIONS(2243), - [anon_sym_out_GT_GT] = ACTIONS(2243), - [anon_sym_e_GT_GT] = ACTIONS(2243), - [anon_sym_o_GT_GT] = ACTIONS(2243), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2243), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2243), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2243), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2243), - [aux_sym_unquoted_token1] = ACTIONS(2241), + [anon_sym_true] = ACTIONS(4362), + [anon_sym_false] = ACTIONS(4362), + [anon_sym_null] = ACTIONS(4364), + [aux_sym_cmd_identifier_token38] = ACTIONS(4366), + [aux_sym_cmd_identifier_token39] = ACTIONS(4366), + [aux_sym_cmd_identifier_token40] = ACTIONS(4366), + [anon_sym_LBRACK] = ACTIONS(2533), + [anon_sym_LPAREN] = ACTIONS(4368), + [anon_sym_DOLLAR] = ACTIONS(3882), + [aux_sym_ctrl_match_token1] = ACTIONS(2543), + [anon_sym_DOT_DOT] = ACTIONS(4370), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4372), + [anon_sym_DOT_DOT_LT] = ACTIONS(4372), + [aux_sym__val_number_decimal_token1] = ACTIONS(4374), + [aux_sym__val_number_decimal_token2] = ACTIONS(4376), + [aux_sym__val_number_decimal_token3] = ACTIONS(4378), + [aux_sym__val_number_decimal_token4] = ACTIONS(4380), + [aux_sym__val_number_token1] = ACTIONS(2557), + [aux_sym__val_number_token2] = ACTIONS(2557), + [aux_sym__val_number_token3] = ACTIONS(2557), + [anon_sym_0b] = ACTIONS(2559), + [anon_sym_0o] = ACTIONS(2561), + [anon_sym_0x] = ACTIONS(2561), + [sym_val_date] = ACTIONS(4382), + [anon_sym_DQUOTE] = ACTIONS(2565), + [sym__str_single_quotes] = ACTIONS(2567), + [sym__str_back_ticks] = ACTIONS(2567), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2569), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2571), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(4384), [anon_sym_POUND] = ACTIONS(247), }, [1158] = { + [sym__val_range] = STATE(7753), + [sym__value] = STATE(1726), + [sym_val_nothing] = STATE(1755), + [sym_val_bool] = STATE(1534), + [sym_val_variable] = STATE(1755), + [sym_val_number] = STATE(1755), + [sym__val_number_decimal] = STATE(1195), + [sym__val_number] = STATE(1569), + [sym_val_duration] = STATE(1755), + [sym_val_filesize] = STATE(1755), + [sym_val_binary] = STATE(1755), + [sym_val_string] = STATE(1755), + [sym__str_double_quotes] = STATE(1657), + [sym_val_interpolated] = STATE(1755), + [sym__inter_single_quotes] = STATE(1574), + [sym__inter_double_quotes] = STATE(1575), + [sym_val_list] = STATE(1755), + [sym_val_record] = STATE(1755), + [sym_val_table] = STATE(1755), + [sym_val_closure] = STATE(1755), + [sym_unquoted] = STATE(1727), + [sym__unquoted_anonymous_prefix] = STATE(7741), [sym_comment] = STATE(1158), - [anon_sym_true] = ACTIONS(1984), - [anon_sym_false] = ACTIONS(1984), - [anon_sym_null] = ACTIONS(1984), - [aux_sym_cmd_identifier_token38] = ACTIONS(1984), - [aux_sym_cmd_identifier_token39] = ACTIONS(1984), - [aux_sym_cmd_identifier_token40] = ACTIONS(1984), - [sym__newline] = ACTIONS(1984), - [anon_sym_LBRACK] = ACTIONS(1984), - [anon_sym_LPAREN] = ACTIONS(1984), - [anon_sym_COMMA] = ACTIONS(1984), - [anon_sym_DOLLAR] = ACTIONS(1984), - [aux_sym_ctrl_match_token1] = ACTIONS(1984), - [anon_sym_RBRACE] = ACTIONS(1984), - [anon_sym__] = ACTIONS(1982), - [anon_sym_DOT_DOT] = ACTIONS(1982), - [aux_sym_expr_binary_token1] = ACTIONS(1984), - [aux_sym_expr_binary_token2] = ACTIONS(1984), - [aux_sym_expr_binary_token3] = ACTIONS(1984), - [aux_sym_expr_binary_token4] = ACTIONS(1984), - [aux_sym_expr_binary_token5] = ACTIONS(1984), - [aux_sym_expr_binary_token6] = ACTIONS(1984), - [aux_sym_expr_binary_token7] = ACTIONS(1984), - [aux_sym_expr_binary_token8] = ACTIONS(1984), - [aux_sym_expr_binary_token9] = ACTIONS(1984), - [aux_sym_expr_binary_token10] = ACTIONS(1984), - [aux_sym_expr_binary_token11] = ACTIONS(1984), - [aux_sym_expr_binary_token12] = ACTIONS(1984), - [aux_sym_expr_binary_token13] = ACTIONS(1984), - [aux_sym_expr_binary_token14] = ACTIONS(1984), - [aux_sym_expr_binary_token15] = ACTIONS(1984), - [aux_sym_expr_binary_token16] = ACTIONS(1984), - [aux_sym_expr_binary_token17] = ACTIONS(1984), - [aux_sym_expr_binary_token18] = ACTIONS(1984), - [aux_sym_expr_binary_token19] = ACTIONS(1984), - [aux_sym_expr_binary_token20] = ACTIONS(1984), - [aux_sym_expr_binary_token21] = ACTIONS(1984), - [aux_sym_expr_binary_token22] = ACTIONS(1984), - [aux_sym_expr_binary_token23] = ACTIONS(1984), - [aux_sym_expr_binary_token24] = ACTIONS(1984), - [aux_sym_expr_binary_token25] = ACTIONS(1984), - [aux_sym_expr_binary_token26] = ACTIONS(1984), - [aux_sym_expr_binary_token27] = ACTIONS(1984), - [aux_sym_expr_binary_token28] = ACTIONS(1984), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1984), - [anon_sym_DOT_DOT_LT] = ACTIONS(1984), - [aux_sym__val_number_decimal_token1] = ACTIONS(1982), - [aux_sym__val_number_decimal_token2] = ACTIONS(1984), - [aux_sym__val_number_decimal_token3] = ACTIONS(1984), - [aux_sym__val_number_decimal_token4] = ACTIONS(1984), - [aux_sym__val_number_token1] = ACTIONS(1984), - [aux_sym__val_number_token2] = ACTIONS(1984), - [aux_sym__val_number_token3] = ACTIONS(1984), - [anon_sym_0b] = ACTIONS(1982), - [anon_sym_0o] = ACTIONS(1982), - [anon_sym_0x] = ACTIONS(1982), - [sym_val_date] = ACTIONS(1984), - [anon_sym_DQUOTE] = ACTIONS(1984), - [sym__str_single_quotes] = ACTIONS(1984), - [sym__str_back_ticks] = ACTIONS(1984), - [anon_sym_err_GT] = ACTIONS(1982), - [anon_sym_out_GT] = ACTIONS(1982), - [anon_sym_e_GT] = ACTIONS(1982), - [anon_sym_o_GT] = ACTIONS(1982), - [anon_sym_err_PLUSout_GT] = ACTIONS(1982), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1982), - [anon_sym_o_PLUSe_GT] = ACTIONS(1982), - [anon_sym_e_PLUSo_GT] = ACTIONS(1982), - [anon_sym_err_GT_GT] = ACTIONS(1984), - [anon_sym_out_GT_GT] = ACTIONS(1984), - [anon_sym_e_GT_GT] = ACTIONS(1984), - [anon_sym_o_GT_GT] = ACTIONS(1984), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1984), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1984), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1984), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1984), - [aux_sym_unquoted_token1] = ACTIONS(1982), + [anon_sym_true] = ACTIONS(4362), + [anon_sym_false] = ACTIONS(4362), + [anon_sym_null] = ACTIONS(4364), + [aux_sym_cmd_identifier_token38] = ACTIONS(4366), + [aux_sym_cmd_identifier_token39] = ACTIONS(4366), + [aux_sym_cmd_identifier_token40] = ACTIONS(4366), + [anon_sym_LBRACK] = ACTIONS(2533), + [anon_sym_LPAREN] = ACTIONS(4368), + [anon_sym_DOLLAR] = ACTIONS(3882), + [aux_sym_ctrl_match_token1] = ACTIONS(2543), + [anon_sym_DOT_DOT] = ACTIONS(4370), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4372), + [anon_sym_DOT_DOT_LT] = ACTIONS(4372), + [aux_sym__val_number_decimal_token1] = ACTIONS(4374), + [aux_sym__val_number_decimal_token2] = ACTIONS(4376), + [aux_sym__val_number_decimal_token3] = ACTIONS(4378), + [aux_sym__val_number_decimal_token4] = ACTIONS(4380), + [aux_sym__val_number_token1] = ACTIONS(2557), + [aux_sym__val_number_token2] = ACTIONS(2557), + [aux_sym__val_number_token3] = ACTIONS(2557), + [anon_sym_0b] = ACTIONS(2559), + [anon_sym_0o] = ACTIONS(2561), + [anon_sym_0x] = ACTIONS(2561), + [sym_val_date] = ACTIONS(4382), + [anon_sym_DQUOTE] = ACTIONS(2565), + [sym__str_single_quotes] = ACTIONS(2567), + [sym__str_back_ticks] = ACTIONS(2567), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2569), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2571), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(4384), [anon_sym_POUND] = ACTIONS(247), }, [1159] = { + [sym__val_range] = STATE(7486), + [sym__value] = STATE(5719), + [sym_val_nothing] = STATE(4088), + [sym_val_bool] = STATE(5506), + [sym_val_variable] = STATE(4088), + [sym_val_number] = STATE(4088), + [sym__val_number_decimal] = STATE(5111), + [sym__val_number] = STATE(4128), + [sym_val_duration] = STATE(4088), + [sym_val_filesize] = STATE(4088), + [sym_val_binary] = STATE(4088), + [sym_val_string] = STATE(4088), + [sym__str_double_quotes] = STATE(3509), + [sym_val_interpolated] = STATE(4088), + [sym__inter_single_quotes] = STATE(4155), + [sym__inter_double_quotes] = STATE(4156), + [sym_val_list] = STATE(4088), + [sym_val_record] = STATE(4088), + [sym_val_table] = STATE(4088), + [sym_val_closure] = STATE(4088), + [sym_unquoted] = STATE(5722), + [sym__unquoted_anonymous_prefix] = STATE(7488), [sym_comment] = STATE(1159), - [anon_sym_true] = ACTIONS(3173), - [anon_sym_false] = ACTIONS(3173), - [anon_sym_null] = ACTIONS(3173), - [aux_sym_cmd_identifier_token38] = ACTIONS(3173), - [aux_sym_cmd_identifier_token39] = ACTIONS(3173), - [aux_sym_cmd_identifier_token40] = ACTIONS(3173), - [sym__newline] = ACTIONS(3173), - [anon_sym_LBRACK] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym_COMMA] = ACTIONS(3173), - [anon_sym_DOLLAR] = ACTIONS(3173), - [aux_sym_ctrl_match_token1] = ACTIONS(3173), - [anon_sym_RBRACE] = ACTIONS(3173), - [anon_sym__] = ACTIONS(3175), - [anon_sym_DOT_DOT] = ACTIONS(3175), - [aux_sym_expr_binary_token1] = ACTIONS(3177), - [aux_sym_expr_binary_token2] = ACTIONS(3177), - [aux_sym_expr_binary_token3] = ACTIONS(3177), - [aux_sym_expr_binary_token4] = ACTIONS(3177), - [aux_sym_expr_binary_token5] = ACTIONS(3177), - [aux_sym_expr_binary_token6] = ACTIONS(3177), - [aux_sym_expr_binary_token7] = ACTIONS(3177), - [aux_sym_expr_binary_token8] = ACTIONS(3177), - [aux_sym_expr_binary_token9] = ACTIONS(3177), - [aux_sym_expr_binary_token10] = ACTIONS(3177), - [aux_sym_expr_binary_token11] = ACTIONS(3177), - [aux_sym_expr_binary_token12] = ACTIONS(3177), - [aux_sym_expr_binary_token13] = ACTIONS(3177), - [aux_sym_expr_binary_token14] = ACTIONS(3177), - [aux_sym_expr_binary_token15] = ACTIONS(3177), - [aux_sym_expr_binary_token16] = ACTIONS(3177), - [aux_sym_expr_binary_token17] = ACTIONS(3177), - [aux_sym_expr_binary_token18] = ACTIONS(3177), - [aux_sym_expr_binary_token19] = ACTIONS(3177), - [aux_sym_expr_binary_token20] = ACTIONS(3177), - [aux_sym_expr_binary_token21] = ACTIONS(3177), - [aux_sym_expr_binary_token22] = ACTIONS(3177), - [aux_sym_expr_binary_token23] = ACTIONS(3177), - [aux_sym_expr_binary_token24] = ACTIONS(3177), - [aux_sym_expr_binary_token25] = ACTIONS(3177), - [aux_sym_expr_binary_token26] = ACTIONS(3177), - [aux_sym_expr_binary_token27] = ACTIONS(3177), - [aux_sym_expr_binary_token28] = ACTIONS(3177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3173), - [anon_sym_DOT_DOT_LT] = ACTIONS(3173), - [aux_sym__val_number_decimal_token1] = ACTIONS(3175), - [aux_sym__val_number_decimal_token2] = ACTIONS(3173), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3173), - [aux_sym__val_number_token1] = ACTIONS(3173), - [aux_sym__val_number_token2] = ACTIONS(3173), - [aux_sym__val_number_token3] = ACTIONS(3173), - [anon_sym_0b] = ACTIONS(3175), - [anon_sym_0o] = ACTIONS(3175), - [anon_sym_0x] = ACTIONS(3175), - [sym_val_date] = ACTIONS(3173), - [anon_sym_DQUOTE] = ACTIONS(3173), - [sym__str_single_quotes] = ACTIONS(3173), - [sym__str_back_ticks] = ACTIONS(3173), - [anon_sym_err_GT] = ACTIONS(3175), - [anon_sym_out_GT] = ACTIONS(3175), - [anon_sym_e_GT] = ACTIONS(3175), - [anon_sym_o_GT] = ACTIONS(3175), - [anon_sym_err_PLUSout_GT] = ACTIONS(3175), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3175), - [anon_sym_o_PLUSe_GT] = ACTIONS(3175), - [anon_sym_e_PLUSo_GT] = ACTIONS(3175), - [anon_sym_err_GT_GT] = ACTIONS(3173), - [anon_sym_out_GT_GT] = ACTIONS(3173), - [anon_sym_e_GT_GT] = ACTIONS(3173), - [anon_sym_o_GT_GT] = ACTIONS(3173), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3173), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3173), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3173), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3173), - [aux_sym_unquoted_token1] = ACTIONS(3175), + [anon_sym_true] = ACTIONS(4386), + [anon_sym_false] = ACTIONS(4386), + [anon_sym_null] = ACTIONS(4388), + [aux_sym_cmd_identifier_token38] = ACTIONS(4390), + [aux_sym_cmd_identifier_token39] = ACTIONS(4390), + [aux_sym_cmd_identifier_token40] = ACTIONS(4390), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_DOLLAR] = ACTIONS(4394), + [aux_sym_ctrl_match_token1] = ACTIONS(3437), + [anon_sym_DOT_DOT] = ACTIONS(4396), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4398), + [anon_sym_DOT_DOT_LT] = ACTIONS(4398), + [aux_sym__val_number_decimal_token1] = ACTIONS(4400), + [aux_sym__val_number_decimal_token2] = ACTIONS(4402), + [aux_sym__val_number_decimal_token3] = ACTIONS(4404), + [aux_sym__val_number_decimal_token4] = ACTIONS(4406), + [aux_sym__val_number_token1] = ACTIONS(3453), + [aux_sym__val_number_token2] = ACTIONS(3453), + [aux_sym__val_number_token3] = ACTIONS(3453), + [anon_sym_0b] = ACTIONS(3455), + [anon_sym_0o] = ACTIONS(3457), + [anon_sym_0x] = ACTIONS(3457), + [sym_val_date] = ACTIONS(4408), + [anon_sym_DQUOTE] = ACTIONS(3461), + [sym__str_single_quotes] = ACTIONS(3463), + [sym__str_back_ticks] = ACTIONS(3463), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3465), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3467), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3469), [anon_sym_POUND] = ACTIONS(247), }, [1160] = { + [sym__val_range] = STATE(7753), + [sym__value] = STATE(1728), + [sym_val_nothing] = STATE(1755), + [sym_val_bool] = STATE(1534), + [sym_val_variable] = STATE(1755), + [sym_val_number] = STATE(1755), + [sym__val_number_decimal] = STATE(1195), + [sym__val_number] = STATE(1569), + [sym_val_duration] = STATE(1755), + [sym_val_filesize] = STATE(1755), + [sym_val_binary] = STATE(1755), + [sym_val_string] = STATE(1755), + [sym__str_double_quotes] = STATE(1657), + [sym_val_interpolated] = STATE(1755), + [sym__inter_single_quotes] = STATE(1574), + [sym__inter_double_quotes] = STATE(1575), + [sym_val_list] = STATE(1755), + [sym_val_record] = STATE(1755), + [sym_val_table] = STATE(1755), + [sym_val_closure] = STATE(1755), + [sym_unquoted] = STATE(1729), + [sym__unquoted_anonymous_prefix] = STATE(7741), [sym_comment] = STATE(1160), - [anon_sym_true] = ACTIONS(2338), - [anon_sym_false] = ACTIONS(2338), - [anon_sym_null] = ACTIONS(2338), - [aux_sym_cmd_identifier_token38] = ACTIONS(2338), - [aux_sym_cmd_identifier_token39] = ACTIONS(2338), - [aux_sym_cmd_identifier_token40] = ACTIONS(2338), - [sym__newline] = ACTIONS(2338), - [anon_sym_LBRACK] = ACTIONS(2338), - [anon_sym_LPAREN] = ACTIONS(2338), - [anon_sym_COMMA] = ACTIONS(2338), - [anon_sym_DOLLAR] = ACTIONS(2338), - [aux_sym_ctrl_match_token1] = ACTIONS(2338), - [anon_sym_RBRACE] = ACTIONS(2338), - [anon_sym__] = ACTIONS(2336), - [anon_sym_DOT_DOT] = ACTIONS(2336), - [aux_sym_expr_binary_token1] = ACTIONS(2338), - [aux_sym_expr_binary_token2] = ACTIONS(2338), - [aux_sym_expr_binary_token3] = ACTIONS(2338), - [aux_sym_expr_binary_token4] = ACTIONS(2338), - [aux_sym_expr_binary_token5] = ACTIONS(2338), - [aux_sym_expr_binary_token6] = ACTIONS(2338), - [aux_sym_expr_binary_token7] = ACTIONS(2338), - [aux_sym_expr_binary_token8] = ACTIONS(2338), - [aux_sym_expr_binary_token9] = ACTIONS(2338), - [aux_sym_expr_binary_token10] = ACTIONS(2338), - [aux_sym_expr_binary_token11] = ACTIONS(2338), - [aux_sym_expr_binary_token12] = ACTIONS(2338), - [aux_sym_expr_binary_token13] = ACTIONS(2338), - [aux_sym_expr_binary_token14] = ACTIONS(2338), - [aux_sym_expr_binary_token15] = ACTIONS(2338), - [aux_sym_expr_binary_token16] = ACTIONS(2338), - [aux_sym_expr_binary_token17] = ACTIONS(2338), - [aux_sym_expr_binary_token18] = ACTIONS(2338), - [aux_sym_expr_binary_token19] = ACTIONS(2338), - [aux_sym_expr_binary_token20] = ACTIONS(2338), - [aux_sym_expr_binary_token21] = ACTIONS(2338), - [aux_sym_expr_binary_token22] = ACTIONS(2338), - [aux_sym_expr_binary_token23] = ACTIONS(2338), - [aux_sym_expr_binary_token24] = ACTIONS(2338), - [aux_sym_expr_binary_token25] = ACTIONS(2338), - [aux_sym_expr_binary_token26] = ACTIONS(2338), - [aux_sym_expr_binary_token27] = ACTIONS(2338), - [aux_sym_expr_binary_token28] = ACTIONS(2338), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2338), - [anon_sym_DOT_DOT_LT] = ACTIONS(2338), - [aux_sym__val_number_decimal_token1] = ACTIONS(2336), - [aux_sym__val_number_decimal_token2] = ACTIONS(2338), - [aux_sym__val_number_decimal_token3] = ACTIONS(2338), - [aux_sym__val_number_decimal_token4] = ACTIONS(2338), - [aux_sym__val_number_token1] = ACTIONS(2338), - [aux_sym__val_number_token2] = ACTIONS(2338), - [aux_sym__val_number_token3] = ACTIONS(2338), - [anon_sym_0b] = ACTIONS(2336), - [anon_sym_0o] = ACTIONS(2336), - [anon_sym_0x] = ACTIONS(2336), - [sym_val_date] = ACTIONS(2338), - [anon_sym_DQUOTE] = ACTIONS(2338), - [sym__str_single_quotes] = ACTIONS(2338), - [sym__str_back_ticks] = ACTIONS(2338), - [anon_sym_err_GT] = ACTIONS(2336), - [anon_sym_out_GT] = ACTIONS(2336), - [anon_sym_e_GT] = ACTIONS(2336), - [anon_sym_o_GT] = ACTIONS(2336), - [anon_sym_err_PLUSout_GT] = ACTIONS(2336), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2336), - [anon_sym_o_PLUSe_GT] = ACTIONS(2336), - [anon_sym_e_PLUSo_GT] = ACTIONS(2336), - [anon_sym_err_GT_GT] = ACTIONS(2338), - [anon_sym_out_GT_GT] = ACTIONS(2338), - [anon_sym_e_GT_GT] = ACTIONS(2338), - [anon_sym_o_GT_GT] = ACTIONS(2338), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2338), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2338), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2338), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2338), - [aux_sym_unquoted_token1] = ACTIONS(2336), + [anon_sym_true] = ACTIONS(4362), + [anon_sym_false] = ACTIONS(4362), + [anon_sym_null] = ACTIONS(4364), + [aux_sym_cmd_identifier_token38] = ACTIONS(4366), + [aux_sym_cmd_identifier_token39] = ACTIONS(4366), + [aux_sym_cmd_identifier_token40] = ACTIONS(4366), + [anon_sym_LBRACK] = ACTIONS(2533), + [anon_sym_LPAREN] = ACTIONS(4368), + [anon_sym_DOLLAR] = ACTIONS(3882), + [aux_sym_ctrl_match_token1] = ACTIONS(2543), + [anon_sym_DOT_DOT] = ACTIONS(4370), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4372), + [anon_sym_DOT_DOT_LT] = ACTIONS(4372), + [aux_sym__val_number_decimal_token1] = ACTIONS(4374), + [aux_sym__val_number_decimal_token2] = ACTIONS(4376), + [aux_sym__val_number_decimal_token3] = ACTIONS(4378), + [aux_sym__val_number_decimal_token4] = ACTIONS(4380), + [aux_sym__val_number_token1] = ACTIONS(2557), + [aux_sym__val_number_token2] = ACTIONS(2557), + [aux_sym__val_number_token3] = ACTIONS(2557), + [anon_sym_0b] = ACTIONS(2559), + [anon_sym_0o] = ACTIONS(2561), + [anon_sym_0x] = ACTIONS(2561), + [sym_val_date] = ACTIONS(4382), + [anon_sym_DQUOTE] = ACTIONS(2565), + [sym__str_single_quotes] = ACTIONS(2567), + [sym__str_back_ticks] = ACTIONS(2567), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2569), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2571), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(4384), [anon_sym_POUND] = ACTIONS(247), }, [1161] = { + [sym__val_range] = STATE(7486), + [sym__value] = STATE(5752), + [sym_val_nothing] = STATE(4088), + [sym_val_bool] = STATE(5506), + [sym_val_variable] = STATE(4088), + [sym_val_number] = STATE(4088), + [sym__val_number_decimal] = STATE(5111), + [sym__val_number] = STATE(4128), + [sym_val_duration] = STATE(4088), + [sym_val_filesize] = STATE(4088), + [sym_val_binary] = STATE(4088), + [sym_val_string] = STATE(4088), + [sym__str_double_quotes] = STATE(3509), + [sym_val_interpolated] = STATE(4088), + [sym__inter_single_quotes] = STATE(4155), + [sym__inter_double_quotes] = STATE(4156), + [sym_val_list] = STATE(4088), + [sym_val_record] = STATE(4088), + [sym_val_table] = STATE(4088), + [sym_val_closure] = STATE(4088), + [sym_unquoted] = STATE(5753), + [sym__unquoted_anonymous_prefix] = STATE(7488), [sym_comment] = STATE(1161), - [anon_sym_true] = ACTIONS(2265), - [anon_sym_false] = ACTIONS(2265), - [anon_sym_null] = ACTIONS(2265), - [aux_sym_cmd_identifier_token38] = ACTIONS(2265), - [aux_sym_cmd_identifier_token39] = ACTIONS(2265), - [aux_sym_cmd_identifier_token40] = ACTIONS(2265), - [sym__newline] = ACTIONS(2265), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_LPAREN] = ACTIONS(2265), - [anon_sym_COMMA] = ACTIONS(2265), - [anon_sym_DOLLAR] = ACTIONS(2265), - [aux_sym_ctrl_match_token1] = ACTIONS(2265), - [anon_sym_RBRACE] = ACTIONS(2265), - [anon_sym__] = ACTIONS(2263), - [anon_sym_DOT_DOT] = ACTIONS(2263), - [aux_sym_expr_binary_token1] = ACTIONS(2265), - [aux_sym_expr_binary_token2] = ACTIONS(2265), - [aux_sym_expr_binary_token3] = ACTIONS(2265), - [aux_sym_expr_binary_token4] = ACTIONS(2265), - [aux_sym_expr_binary_token5] = ACTIONS(2265), - [aux_sym_expr_binary_token6] = ACTIONS(2265), - [aux_sym_expr_binary_token7] = ACTIONS(2265), - [aux_sym_expr_binary_token8] = ACTIONS(2265), - [aux_sym_expr_binary_token9] = ACTIONS(2265), - [aux_sym_expr_binary_token10] = ACTIONS(2265), - [aux_sym_expr_binary_token11] = ACTIONS(2265), - [aux_sym_expr_binary_token12] = ACTIONS(2265), - [aux_sym_expr_binary_token13] = ACTIONS(2265), - [aux_sym_expr_binary_token14] = ACTIONS(2265), - [aux_sym_expr_binary_token15] = ACTIONS(2265), - [aux_sym_expr_binary_token16] = ACTIONS(2265), - [aux_sym_expr_binary_token17] = ACTIONS(2265), - [aux_sym_expr_binary_token18] = ACTIONS(2265), - [aux_sym_expr_binary_token19] = ACTIONS(2265), - [aux_sym_expr_binary_token20] = ACTIONS(2265), - [aux_sym_expr_binary_token21] = ACTIONS(2265), - [aux_sym_expr_binary_token22] = ACTIONS(2265), - [aux_sym_expr_binary_token23] = ACTIONS(2265), - [aux_sym_expr_binary_token24] = ACTIONS(2265), - [aux_sym_expr_binary_token25] = ACTIONS(2265), - [aux_sym_expr_binary_token26] = ACTIONS(2265), - [aux_sym_expr_binary_token27] = ACTIONS(2265), - [aux_sym_expr_binary_token28] = ACTIONS(2265), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2265), - [anon_sym_DOT_DOT_LT] = ACTIONS(2265), - [aux_sym__val_number_decimal_token1] = ACTIONS(2263), - [aux_sym__val_number_decimal_token2] = ACTIONS(2265), - [aux_sym__val_number_decimal_token3] = ACTIONS(2265), - [aux_sym__val_number_decimal_token4] = ACTIONS(2265), - [aux_sym__val_number_token1] = ACTIONS(2265), - [aux_sym__val_number_token2] = ACTIONS(2265), - [aux_sym__val_number_token3] = ACTIONS(2265), - [anon_sym_0b] = ACTIONS(2263), - [anon_sym_0o] = ACTIONS(2263), - [anon_sym_0x] = ACTIONS(2263), - [sym_val_date] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2265), - [sym__str_single_quotes] = ACTIONS(2265), - [sym__str_back_ticks] = ACTIONS(2265), - [anon_sym_err_GT] = ACTIONS(2263), - [anon_sym_out_GT] = ACTIONS(2263), - [anon_sym_e_GT] = ACTIONS(2263), - [anon_sym_o_GT] = ACTIONS(2263), - [anon_sym_err_PLUSout_GT] = ACTIONS(2263), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2263), - [anon_sym_o_PLUSe_GT] = ACTIONS(2263), - [anon_sym_e_PLUSo_GT] = ACTIONS(2263), - [anon_sym_err_GT_GT] = ACTIONS(2265), - [anon_sym_out_GT_GT] = ACTIONS(2265), - [anon_sym_e_GT_GT] = ACTIONS(2265), - [anon_sym_o_GT_GT] = ACTIONS(2265), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2265), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2265), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2265), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2265), - [aux_sym_unquoted_token1] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(4386), + [anon_sym_false] = ACTIONS(4386), + [anon_sym_null] = ACTIONS(4388), + [aux_sym_cmd_identifier_token38] = ACTIONS(4390), + [aux_sym_cmd_identifier_token39] = ACTIONS(4390), + [aux_sym_cmd_identifier_token40] = ACTIONS(4390), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_DOLLAR] = ACTIONS(4394), + [aux_sym_ctrl_match_token1] = ACTIONS(3437), + [anon_sym_DOT_DOT] = ACTIONS(4396), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4398), + [anon_sym_DOT_DOT_LT] = ACTIONS(4398), + [aux_sym__val_number_decimal_token1] = ACTIONS(4400), + [aux_sym__val_number_decimal_token2] = ACTIONS(4402), + [aux_sym__val_number_decimal_token3] = ACTIONS(4404), + [aux_sym__val_number_decimal_token4] = ACTIONS(4406), + [aux_sym__val_number_token1] = ACTIONS(3453), + [aux_sym__val_number_token2] = ACTIONS(3453), + [aux_sym__val_number_token3] = ACTIONS(3453), + [anon_sym_0b] = ACTIONS(3455), + [anon_sym_0o] = ACTIONS(3457), + [anon_sym_0x] = ACTIONS(3457), + [sym_val_date] = ACTIONS(4408), + [anon_sym_DQUOTE] = ACTIONS(3461), + [sym__str_single_quotes] = ACTIONS(3463), + [sym__str_back_ticks] = ACTIONS(3463), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3465), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3467), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3469), [anon_sym_POUND] = ACTIONS(247), }, [1162] = { + [sym__val_range] = STATE(7486), + [sym__value] = STATE(5895), + [sym_val_nothing] = STATE(4088), + [sym_val_bool] = STATE(5506), + [sym_val_variable] = STATE(4088), + [sym_val_number] = STATE(4088), + [sym__val_number_decimal] = STATE(5111), + [sym__val_number] = STATE(4128), + [sym_val_duration] = STATE(4088), + [sym_val_filesize] = STATE(4088), + [sym_val_binary] = STATE(4088), + [sym_val_string] = STATE(4088), + [sym__str_double_quotes] = STATE(3509), + [sym_val_interpolated] = STATE(4088), + [sym__inter_single_quotes] = STATE(4155), + [sym__inter_double_quotes] = STATE(4156), + [sym_val_list] = STATE(4088), + [sym_val_record] = STATE(4088), + [sym_val_table] = STATE(4088), + [sym_val_closure] = STATE(4088), + [sym_unquoted] = STATE(5833), + [sym__unquoted_anonymous_prefix] = STATE(7488), [sym_comment] = STATE(1162), - [anon_sym_true] = ACTIONS(2297), - [anon_sym_false] = ACTIONS(2297), - [anon_sym_null] = ACTIONS(2297), - [aux_sym_cmd_identifier_token38] = ACTIONS(2297), - [aux_sym_cmd_identifier_token39] = ACTIONS(2297), - [aux_sym_cmd_identifier_token40] = ACTIONS(2297), - [sym__newline] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_COMMA] = ACTIONS(2297), - [anon_sym_DOLLAR] = ACTIONS(2297), - [aux_sym_ctrl_match_token1] = ACTIONS(2297), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym__] = ACTIONS(2295), - [anon_sym_DOT_DOT] = ACTIONS(2295), - [aux_sym_expr_binary_token1] = ACTIONS(2297), - [aux_sym_expr_binary_token2] = ACTIONS(2297), - [aux_sym_expr_binary_token3] = ACTIONS(2297), - [aux_sym_expr_binary_token4] = ACTIONS(2297), - [aux_sym_expr_binary_token5] = ACTIONS(2297), - [aux_sym_expr_binary_token6] = ACTIONS(2297), - [aux_sym_expr_binary_token7] = ACTIONS(2297), - [aux_sym_expr_binary_token8] = ACTIONS(2297), - [aux_sym_expr_binary_token9] = ACTIONS(2297), - [aux_sym_expr_binary_token10] = ACTIONS(2297), - [aux_sym_expr_binary_token11] = ACTIONS(2297), - [aux_sym_expr_binary_token12] = ACTIONS(2297), - [aux_sym_expr_binary_token13] = ACTIONS(2297), - [aux_sym_expr_binary_token14] = ACTIONS(2297), - [aux_sym_expr_binary_token15] = ACTIONS(2297), - [aux_sym_expr_binary_token16] = ACTIONS(2297), - [aux_sym_expr_binary_token17] = ACTIONS(2297), - [aux_sym_expr_binary_token18] = ACTIONS(2297), - [aux_sym_expr_binary_token19] = ACTIONS(2297), - [aux_sym_expr_binary_token20] = ACTIONS(2297), - [aux_sym_expr_binary_token21] = ACTIONS(2297), - [aux_sym_expr_binary_token22] = ACTIONS(2297), - [aux_sym_expr_binary_token23] = ACTIONS(2297), - [aux_sym_expr_binary_token24] = ACTIONS(2297), - [aux_sym_expr_binary_token25] = ACTIONS(2297), - [aux_sym_expr_binary_token26] = ACTIONS(2297), - [aux_sym_expr_binary_token27] = ACTIONS(2297), - [aux_sym_expr_binary_token28] = ACTIONS(2297), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2297), - [anon_sym_DOT_DOT_LT] = ACTIONS(2297), - [aux_sym__val_number_decimal_token1] = ACTIONS(2295), - [aux_sym__val_number_decimal_token2] = ACTIONS(2297), - [aux_sym__val_number_decimal_token3] = ACTIONS(2297), - [aux_sym__val_number_decimal_token4] = ACTIONS(2297), - [aux_sym__val_number_token1] = ACTIONS(2297), - [aux_sym__val_number_token2] = ACTIONS(2297), - [aux_sym__val_number_token3] = ACTIONS(2297), - [anon_sym_0b] = ACTIONS(2295), - [anon_sym_0o] = ACTIONS(2295), - [anon_sym_0x] = ACTIONS(2295), - [sym_val_date] = ACTIONS(2297), - [anon_sym_DQUOTE] = ACTIONS(2297), - [sym__str_single_quotes] = ACTIONS(2297), - [sym__str_back_ticks] = ACTIONS(2297), - [anon_sym_err_GT] = ACTIONS(2295), - [anon_sym_out_GT] = ACTIONS(2295), - [anon_sym_e_GT] = ACTIONS(2295), - [anon_sym_o_GT] = ACTIONS(2295), - [anon_sym_err_PLUSout_GT] = ACTIONS(2295), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2295), - [anon_sym_o_PLUSe_GT] = ACTIONS(2295), - [anon_sym_e_PLUSo_GT] = ACTIONS(2295), - [anon_sym_err_GT_GT] = ACTIONS(2297), - [anon_sym_out_GT_GT] = ACTIONS(2297), - [anon_sym_e_GT_GT] = ACTIONS(2297), - [anon_sym_o_GT_GT] = ACTIONS(2297), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2297), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2297), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2297), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2297), - [aux_sym_unquoted_token1] = ACTIONS(2295), + [anon_sym_true] = ACTIONS(4386), + [anon_sym_false] = ACTIONS(4386), + [anon_sym_null] = ACTIONS(4388), + [aux_sym_cmd_identifier_token38] = ACTIONS(4390), + [aux_sym_cmd_identifier_token39] = ACTIONS(4390), + [aux_sym_cmd_identifier_token40] = ACTIONS(4390), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_DOLLAR] = ACTIONS(4394), + [aux_sym_ctrl_match_token1] = ACTIONS(3437), + [anon_sym_DOT_DOT] = ACTIONS(4396), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4398), + [anon_sym_DOT_DOT_LT] = ACTIONS(4398), + [aux_sym__val_number_decimal_token1] = ACTIONS(4400), + [aux_sym__val_number_decimal_token2] = ACTIONS(4402), + [aux_sym__val_number_decimal_token3] = ACTIONS(4404), + [aux_sym__val_number_decimal_token4] = ACTIONS(4406), + [aux_sym__val_number_token1] = ACTIONS(3453), + [aux_sym__val_number_token2] = ACTIONS(3453), + [aux_sym__val_number_token3] = ACTIONS(3453), + [anon_sym_0b] = ACTIONS(3455), + [anon_sym_0o] = ACTIONS(3457), + [anon_sym_0x] = ACTIONS(3457), + [sym_val_date] = ACTIONS(4408), + [anon_sym_DQUOTE] = ACTIONS(3461), + [sym__str_single_quotes] = ACTIONS(3463), + [sym__str_back_ticks] = ACTIONS(3463), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3465), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3467), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3469), [anon_sym_POUND] = ACTIONS(247), }, [1163] = { + [sym__val_range] = STATE(7633), + [sym__value] = STATE(5420), + [sym_val_nothing] = STATE(3939), + [sym_val_bool] = STATE(5440), + [sym_val_variable] = STATE(3939), + [sym_val_number] = STATE(3939), + [sym__val_number_decimal] = STATE(4836), + [sym__val_number] = STATE(3437), + [sym_val_duration] = STATE(3939), + [sym_val_filesize] = STATE(3939), + [sym_val_binary] = STATE(3939), + [sym_val_string] = STATE(3939), + [sym__str_double_quotes] = STATE(2643), + [sym_val_interpolated] = STATE(3939), + [sym__inter_single_quotes] = STATE(3938), + [sym__inter_double_quotes] = STATE(3966), + [sym_val_list] = STATE(3939), + [sym_val_record] = STATE(3939), + [sym_val_table] = STATE(3939), + [sym_val_closure] = STATE(3939), + [sym_unquoted] = STATE(5421), + [sym__unquoted_anonymous_prefix] = STATE(7531), [sym_comment] = STATE(1163), - [anon_sym_true] = ACTIONS(3177), - [anon_sym_false] = ACTIONS(3177), - [anon_sym_null] = ACTIONS(3177), - [aux_sym_cmd_identifier_token38] = ACTIONS(3177), - [aux_sym_cmd_identifier_token39] = ACTIONS(3177), - [aux_sym_cmd_identifier_token40] = ACTIONS(3177), - [sym__newline] = ACTIONS(3177), - [anon_sym_LBRACK] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3177), - [anon_sym_COMMA] = ACTIONS(3177), - [anon_sym_DOLLAR] = ACTIONS(3177), - [aux_sym_ctrl_match_token1] = ACTIONS(3177), - [anon_sym_RBRACE] = ACTIONS(3177), - [anon_sym__] = ACTIONS(3599), - [anon_sym_DOT_DOT] = ACTIONS(3599), - [aux_sym_expr_binary_token1] = ACTIONS(3177), - [aux_sym_expr_binary_token2] = ACTIONS(3177), - [aux_sym_expr_binary_token3] = ACTIONS(3177), - [aux_sym_expr_binary_token4] = ACTIONS(3177), - [aux_sym_expr_binary_token5] = ACTIONS(3177), - [aux_sym_expr_binary_token6] = ACTIONS(3177), - [aux_sym_expr_binary_token7] = ACTIONS(3177), - [aux_sym_expr_binary_token8] = ACTIONS(3177), - [aux_sym_expr_binary_token9] = ACTIONS(3177), - [aux_sym_expr_binary_token10] = ACTIONS(3177), - [aux_sym_expr_binary_token11] = ACTIONS(3177), - [aux_sym_expr_binary_token12] = ACTIONS(3177), - [aux_sym_expr_binary_token13] = ACTIONS(3177), - [aux_sym_expr_binary_token14] = ACTIONS(3177), - [aux_sym_expr_binary_token15] = ACTIONS(3177), - [aux_sym_expr_binary_token16] = ACTIONS(3177), - [aux_sym_expr_binary_token17] = ACTIONS(3177), - [aux_sym_expr_binary_token18] = ACTIONS(3177), - [aux_sym_expr_binary_token19] = ACTIONS(3177), - [aux_sym_expr_binary_token20] = ACTIONS(3177), - [aux_sym_expr_binary_token21] = ACTIONS(3177), - [aux_sym_expr_binary_token22] = ACTIONS(3177), - [aux_sym_expr_binary_token23] = ACTIONS(3177), - [aux_sym_expr_binary_token24] = ACTIONS(3177), - [aux_sym_expr_binary_token25] = ACTIONS(3177), - [aux_sym_expr_binary_token26] = ACTIONS(3177), - [aux_sym_expr_binary_token27] = ACTIONS(3177), - [aux_sym_expr_binary_token28] = ACTIONS(3177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3177), - [anon_sym_DOT_DOT_LT] = ACTIONS(3177), - [aux_sym__val_number_decimal_token1] = ACTIONS(3599), - [aux_sym__val_number_decimal_token2] = ACTIONS(3177), - [aux_sym__val_number_decimal_token3] = ACTIONS(3177), - [aux_sym__val_number_decimal_token4] = ACTIONS(3177), - [aux_sym__val_number_token1] = ACTIONS(3177), - [aux_sym__val_number_token2] = ACTIONS(3177), - [aux_sym__val_number_token3] = ACTIONS(3177), - [anon_sym_0b] = ACTIONS(3599), - [anon_sym_0o] = ACTIONS(3599), - [anon_sym_0x] = ACTIONS(3599), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(3177), - [sym__str_single_quotes] = ACTIONS(3177), - [sym__str_back_ticks] = ACTIONS(3177), - [anon_sym_err_GT] = ACTIONS(3599), - [anon_sym_out_GT] = ACTIONS(3599), - [anon_sym_e_GT] = ACTIONS(3599), - [anon_sym_o_GT] = ACTIONS(3599), - [anon_sym_err_PLUSout_GT] = ACTIONS(3599), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3599), - [anon_sym_o_PLUSe_GT] = ACTIONS(3599), - [anon_sym_e_PLUSo_GT] = ACTIONS(3599), - [anon_sym_err_GT_GT] = ACTIONS(3177), - [anon_sym_out_GT_GT] = ACTIONS(3177), - [anon_sym_e_GT_GT] = ACTIONS(3177), - [anon_sym_o_GT_GT] = ACTIONS(3177), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3177), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3177), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3177), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3177), - [aux_sym_unquoted_token1] = ACTIONS(3599), + [anon_sym_true] = ACTIONS(3983), + [anon_sym_false] = ACTIONS(3983), + [anon_sym_null] = ACTIONS(3985), + [aux_sym_cmd_identifier_token38] = ACTIONS(3987), + [aux_sym_cmd_identifier_token39] = ACTIONS(3987), + [aux_sym_cmd_identifier_token40] = ACTIONS(3987), + [anon_sym_LBRACK] = ACTIONS(3381), + [anon_sym_LPAREN] = ACTIONS(3989), + [anon_sym_DOLLAR] = ACTIONS(3991), + [aux_sym_ctrl_match_token1] = ACTIONS(3389), + [anon_sym_DOT_DOT] = ACTIONS(3993), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3995), + [anon_sym_DOT_DOT_LT] = ACTIONS(3995), + [aux_sym__val_number_decimal_token1] = ACTIONS(3997), + [aux_sym__val_number_decimal_token2] = ACTIONS(3999), + [aux_sym__val_number_decimal_token3] = ACTIONS(4001), + [aux_sym__val_number_decimal_token4] = ACTIONS(4003), + [aux_sym__val_number_token1] = ACTIONS(3405), + [aux_sym__val_number_token2] = ACTIONS(3405), + [aux_sym__val_number_token3] = ACTIONS(3405), + [anon_sym_0b] = ACTIONS(3407), + [anon_sym_0o] = ACTIONS(3409), + [anon_sym_0x] = ACTIONS(3409), + [sym_val_date] = ACTIONS(4005), + [anon_sym_DQUOTE] = ACTIONS(3413), + [sym__str_single_quotes] = ACTIONS(3415), + [sym__str_back_ticks] = ACTIONS(3415), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3417), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3421), [anon_sym_POUND] = ACTIONS(247), }, [1164] = { + [sym__val_range] = STATE(7486), + [sym__value] = STATE(5658), + [sym_val_nothing] = STATE(4088), + [sym_val_bool] = STATE(5506), + [sym_val_variable] = STATE(4088), + [sym_val_number] = STATE(4088), + [sym__val_number_decimal] = STATE(5111), + [sym__val_number] = STATE(4128), + [sym_val_duration] = STATE(4088), + [sym_val_filesize] = STATE(4088), + [sym_val_binary] = STATE(4088), + [sym_val_string] = STATE(4088), + [sym__str_double_quotes] = STATE(3509), + [sym_val_interpolated] = STATE(4088), + [sym__inter_single_quotes] = STATE(4155), + [sym__inter_double_quotes] = STATE(4156), + [sym_val_list] = STATE(4088), + [sym_val_record] = STATE(4088), + [sym_val_table] = STATE(4088), + [sym_val_closure] = STATE(4088), + [sym_unquoted] = STATE(5853), + [sym__unquoted_anonymous_prefix] = STATE(7488), [sym_comment] = STATE(1164), - [anon_sym_true] = ACTIONS(3601), - [anon_sym_false] = ACTIONS(3601), - [anon_sym_null] = ACTIONS(3601), - [aux_sym_cmd_identifier_token38] = ACTIONS(3601), - [aux_sym_cmd_identifier_token39] = ACTIONS(3601), - [aux_sym_cmd_identifier_token40] = ACTIONS(3601), - [sym__newline] = ACTIONS(3601), - [anon_sym_LBRACK] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3601), - [anon_sym_COMMA] = ACTIONS(3601), - [anon_sym_DOLLAR] = ACTIONS(3601), - [aux_sym_ctrl_match_token1] = ACTIONS(3601), - [anon_sym_RBRACE] = ACTIONS(3601), - [anon_sym__] = ACTIONS(3603), - [anon_sym_DOT_DOT] = ACTIONS(3603), - [aux_sym_expr_binary_token1] = ACTIONS(3601), - [aux_sym_expr_binary_token2] = ACTIONS(3601), - [aux_sym_expr_binary_token3] = ACTIONS(3601), - [aux_sym_expr_binary_token4] = ACTIONS(3601), - [aux_sym_expr_binary_token5] = ACTIONS(3601), - [aux_sym_expr_binary_token6] = ACTIONS(3601), - [aux_sym_expr_binary_token7] = ACTIONS(3601), - [aux_sym_expr_binary_token8] = ACTIONS(3601), - [aux_sym_expr_binary_token9] = ACTIONS(3601), - [aux_sym_expr_binary_token10] = ACTIONS(3601), - [aux_sym_expr_binary_token11] = ACTIONS(3601), - [aux_sym_expr_binary_token12] = ACTIONS(3601), - [aux_sym_expr_binary_token13] = ACTIONS(3601), - [aux_sym_expr_binary_token14] = ACTIONS(3601), - [aux_sym_expr_binary_token15] = ACTIONS(3601), - [aux_sym_expr_binary_token16] = ACTIONS(3601), - [aux_sym_expr_binary_token17] = ACTIONS(3601), - [aux_sym_expr_binary_token18] = ACTIONS(3601), - [aux_sym_expr_binary_token19] = ACTIONS(3601), - [aux_sym_expr_binary_token20] = ACTIONS(3601), - [aux_sym_expr_binary_token21] = ACTIONS(3601), - [aux_sym_expr_binary_token22] = ACTIONS(3601), - [aux_sym_expr_binary_token23] = ACTIONS(3601), - [aux_sym_expr_binary_token24] = ACTIONS(3601), - [aux_sym_expr_binary_token25] = ACTIONS(3601), - [aux_sym_expr_binary_token26] = ACTIONS(3601), - [aux_sym_expr_binary_token27] = ACTIONS(3601), - [aux_sym_expr_binary_token28] = ACTIONS(3601), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3601), - [anon_sym_DOT_DOT_LT] = ACTIONS(3601), - [aux_sym__val_number_decimal_token1] = ACTIONS(3603), - [aux_sym__val_number_decimal_token2] = ACTIONS(3601), - [aux_sym__val_number_decimal_token3] = ACTIONS(3601), - [aux_sym__val_number_decimal_token4] = ACTIONS(3601), - [aux_sym__val_number_token1] = ACTIONS(3601), - [aux_sym__val_number_token2] = ACTIONS(3601), - [aux_sym__val_number_token3] = ACTIONS(3601), - [anon_sym_0b] = ACTIONS(3603), - [anon_sym_0o] = ACTIONS(3603), - [anon_sym_0x] = ACTIONS(3603), - [sym_val_date] = ACTIONS(3601), - [anon_sym_DQUOTE] = ACTIONS(3601), - [sym__str_single_quotes] = ACTIONS(3601), - [sym__str_back_ticks] = ACTIONS(3601), - [anon_sym_err_GT] = ACTIONS(3603), - [anon_sym_out_GT] = ACTIONS(3603), - [anon_sym_e_GT] = ACTIONS(3603), - [anon_sym_o_GT] = ACTIONS(3603), - [anon_sym_err_PLUSout_GT] = ACTIONS(3603), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3603), - [anon_sym_o_PLUSe_GT] = ACTIONS(3603), - [anon_sym_e_PLUSo_GT] = ACTIONS(3603), - [anon_sym_err_GT_GT] = ACTIONS(3601), - [anon_sym_out_GT_GT] = ACTIONS(3601), - [anon_sym_e_GT_GT] = ACTIONS(3601), - [anon_sym_o_GT_GT] = ACTIONS(3601), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3601), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3601), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3601), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3601), - [aux_sym_unquoted_token1] = ACTIONS(3603), + [anon_sym_true] = ACTIONS(4386), + [anon_sym_false] = ACTIONS(4386), + [anon_sym_null] = ACTIONS(4388), + [aux_sym_cmd_identifier_token38] = ACTIONS(4390), + [aux_sym_cmd_identifier_token39] = ACTIONS(4390), + [aux_sym_cmd_identifier_token40] = ACTIONS(4390), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym_DOLLAR] = ACTIONS(4394), + [aux_sym_ctrl_match_token1] = ACTIONS(3437), + [anon_sym_DOT_DOT] = ACTIONS(4396), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4398), + [anon_sym_DOT_DOT_LT] = ACTIONS(4398), + [aux_sym__val_number_decimal_token1] = ACTIONS(4400), + [aux_sym__val_number_decimal_token2] = ACTIONS(4402), + [aux_sym__val_number_decimal_token3] = ACTIONS(4404), + [aux_sym__val_number_decimal_token4] = ACTIONS(4406), + [aux_sym__val_number_token1] = ACTIONS(3453), + [aux_sym__val_number_token2] = ACTIONS(3453), + [aux_sym__val_number_token3] = ACTIONS(3453), + [anon_sym_0b] = ACTIONS(3455), + [anon_sym_0o] = ACTIONS(3457), + [anon_sym_0x] = ACTIONS(3457), + [sym_val_date] = ACTIONS(4408), + [anon_sym_DQUOTE] = ACTIONS(3461), + [sym__str_single_quotes] = ACTIONS(3463), + [sym__str_back_ticks] = ACTIONS(3463), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3465), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3467), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3469), [anon_sym_POUND] = ACTIONS(247), }, [1165] = { + [sym__val_range] = STATE(7633), + [sym__value] = STATE(5453), + [sym_val_nothing] = STATE(3939), + [sym_val_bool] = STATE(5440), + [sym_val_variable] = STATE(3939), + [sym_val_number] = STATE(3939), + [sym__val_number_decimal] = STATE(4836), + [sym__val_number] = STATE(3437), + [sym_val_duration] = STATE(3939), + [sym_val_filesize] = STATE(3939), + [sym_val_binary] = STATE(3939), + [sym_val_string] = STATE(3939), + [sym__str_double_quotes] = STATE(2643), + [sym_val_interpolated] = STATE(3939), + [sym__inter_single_quotes] = STATE(3938), + [sym__inter_double_quotes] = STATE(3966), + [sym_val_list] = STATE(3939), + [sym_val_record] = STATE(3939), + [sym_val_table] = STATE(3939), + [sym_val_closure] = STATE(3939), + [sym_unquoted] = STATE(5454), + [sym__unquoted_anonymous_prefix] = STATE(7531), [sym_comment] = STATE(1165), - [anon_sym_true] = ACTIONS(3199), - [anon_sym_false] = ACTIONS(3199), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3199), - [aux_sym_cmd_identifier_token39] = ACTIONS(3199), - [aux_sym_cmd_identifier_token40] = ACTIONS(3199), - [sym__newline] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_DOLLAR] = ACTIONS(3199), - [aux_sym_ctrl_match_token1] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym__] = ACTIONS(3201), - [anon_sym_DOT_DOT] = ACTIONS(3201), - [aux_sym_expr_binary_token1] = ACTIONS(3199), - [aux_sym_expr_binary_token2] = ACTIONS(3199), - [aux_sym_expr_binary_token3] = ACTIONS(3199), - [aux_sym_expr_binary_token4] = ACTIONS(3199), - [aux_sym_expr_binary_token5] = ACTIONS(3199), - [aux_sym_expr_binary_token6] = ACTIONS(3199), - [aux_sym_expr_binary_token7] = ACTIONS(3199), - [aux_sym_expr_binary_token8] = ACTIONS(3199), - [aux_sym_expr_binary_token9] = ACTIONS(3199), - [aux_sym_expr_binary_token10] = ACTIONS(3199), - [aux_sym_expr_binary_token11] = ACTIONS(3199), - [aux_sym_expr_binary_token12] = ACTIONS(3199), - [aux_sym_expr_binary_token13] = ACTIONS(3199), - [aux_sym_expr_binary_token14] = ACTIONS(3199), - [aux_sym_expr_binary_token15] = ACTIONS(3199), - [aux_sym_expr_binary_token16] = ACTIONS(3199), - [aux_sym_expr_binary_token17] = ACTIONS(3199), - [aux_sym_expr_binary_token18] = ACTIONS(3199), - [aux_sym_expr_binary_token19] = ACTIONS(3199), - [aux_sym_expr_binary_token20] = ACTIONS(3199), - [aux_sym_expr_binary_token21] = ACTIONS(3199), - [aux_sym_expr_binary_token22] = ACTIONS(3199), - [aux_sym_expr_binary_token23] = ACTIONS(3199), - [aux_sym_expr_binary_token24] = ACTIONS(3199), - [aux_sym_expr_binary_token25] = ACTIONS(3199), - [aux_sym_expr_binary_token26] = ACTIONS(3199), - [aux_sym_expr_binary_token27] = ACTIONS(3199), - [aux_sym_expr_binary_token28] = ACTIONS(3199), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), - [anon_sym_DOT_DOT_LT] = ACTIONS(3199), - [aux_sym__val_number_decimal_token1] = ACTIONS(3201), - [aux_sym__val_number_decimal_token2] = ACTIONS(3199), - [aux_sym__val_number_decimal_token3] = ACTIONS(3199), - [aux_sym__val_number_decimal_token4] = ACTIONS(3199), - [aux_sym__val_number_token1] = ACTIONS(3199), - [aux_sym__val_number_token2] = ACTIONS(3199), - [aux_sym__val_number_token3] = ACTIONS(3199), - [anon_sym_0b] = ACTIONS(3201), - [anon_sym_0o] = ACTIONS(3201), - [anon_sym_0x] = ACTIONS(3201), - [sym_val_date] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3199), - [sym__str_single_quotes] = ACTIONS(3199), - [sym__str_back_ticks] = ACTIONS(3199), - [anon_sym_err_GT] = ACTIONS(3201), - [anon_sym_out_GT] = ACTIONS(3201), - [anon_sym_e_GT] = ACTIONS(3201), - [anon_sym_o_GT] = ACTIONS(3201), - [anon_sym_err_PLUSout_GT] = ACTIONS(3201), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), - [anon_sym_o_PLUSe_GT] = ACTIONS(3201), - [anon_sym_e_PLUSo_GT] = ACTIONS(3201), - [anon_sym_err_GT_GT] = ACTIONS(3199), - [anon_sym_out_GT_GT] = ACTIONS(3199), - [anon_sym_e_GT_GT] = ACTIONS(3199), - [anon_sym_o_GT_GT] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), - [aux_sym_unquoted_token1] = ACTIONS(3201), + [anon_sym_true] = ACTIONS(3983), + [anon_sym_false] = ACTIONS(3983), + [anon_sym_null] = ACTIONS(3985), + [aux_sym_cmd_identifier_token38] = ACTIONS(3987), + [aux_sym_cmd_identifier_token39] = ACTIONS(3987), + [aux_sym_cmd_identifier_token40] = ACTIONS(3987), + [anon_sym_LBRACK] = ACTIONS(3381), + [anon_sym_LPAREN] = ACTIONS(3989), + [anon_sym_DOLLAR] = ACTIONS(3991), + [aux_sym_ctrl_match_token1] = ACTIONS(3389), + [anon_sym_DOT_DOT] = ACTIONS(3993), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3995), + [anon_sym_DOT_DOT_LT] = ACTIONS(3995), + [aux_sym__val_number_decimal_token1] = ACTIONS(3997), + [aux_sym__val_number_decimal_token2] = ACTIONS(3999), + [aux_sym__val_number_decimal_token3] = ACTIONS(4001), + [aux_sym__val_number_decimal_token4] = ACTIONS(4003), + [aux_sym__val_number_token1] = ACTIONS(3405), + [aux_sym__val_number_token2] = ACTIONS(3405), + [aux_sym__val_number_token3] = ACTIONS(3405), + [anon_sym_0b] = ACTIONS(3407), + [anon_sym_0o] = ACTIONS(3409), + [anon_sym_0x] = ACTIONS(3409), + [sym_val_date] = ACTIONS(4005), + [anon_sym_DQUOTE] = ACTIONS(3413), + [sym__str_single_quotes] = ACTIONS(3415), + [sym__str_back_ticks] = ACTIONS(3415), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3417), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3421), [anon_sym_POUND] = ACTIONS(247), }, [1166] = { + [sym__match_pattern_expression] = STATE(3052), + [sym__match_pattern_value] = STATE(3028), + [sym__match_pattern_list] = STATE(3029), + [sym__match_pattern_rest] = STATE(7801), + [sym__match_pattern_record] = STATE(3030), + [sym_expr_parenthesized] = STATE(2816), + [sym_val_range] = STATE(3028), + [sym__val_range] = STATE(7670), + [sym_val_nothing] = STATE(3031), + [sym_val_bool] = STATE(2974), + [sym_val_variable] = STATE(2817), + [sym_val_number] = STATE(3031), + [sym__val_number_decimal] = STATE(2606), + [sym__val_number] = STATE(3023), + [sym_val_duration] = STATE(3031), + [sym_val_filesize] = STATE(3031), + [sym_val_binary] = STATE(3031), + [sym_val_string] = STATE(3031), + [sym__str_double_quotes] = STATE(3007), + [sym_val_table] = STATE(3031), + [sym__unquoted_in_list] = STATE(3052), + [sym__unquoted_anonymous_prefix] = STATE(7659), [sym_comment] = STATE(1166), - [anon_sym_true] = ACTIONS(3199), - [anon_sym_false] = ACTIONS(3199), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3199), - [aux_sym_cmd_identifier_token39] = ACTIONS(3199), - [aux_sym_cmd_identifier_token40] = ACTIONS(3199), - [sym__newline] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_DOLLAR] = ACTIONS(3199), - [aux_sym_ctrl_match_token1] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym__] = ACTIONS(3201), - [anon_sym_DOT_DOT] = ACTIONS(3201), - [aux_sym_expr_binary_token1] = ACTIONS(3199), - [aux_sym_expr_binary_token2] = ACTIONS(3199), - [aux_sym_expr_binary_token3] = ACTIONS(3199), - [aux_sym_expr_binary_token4] = ACTIONS(3199), - [aux_sym_expr_binary_token5] = ACTIONS(3199), - [aux_sym_expr_binary_token6] = ACTIONS(3199), - [aux_sym_expr_binary_token7] = ACTIONS(3199), - [aux_sym_expr_binary_token8] = ACTIONS(3199), - [aux_sym_expr_binary_token9] = ACTIONS(3199), - [aux_sym_expr_binary_token10] = ACTIONS(3199), - [aux_sym_expr_binary_token11] = ACTIONS(3199), - [aux_sym_expr_binary_token12] = ACTIONS(3199), - [aux_sym_expr_binary_token13] = ACTIONS(3199), - [aux_sym_expr_binary_token14] = ACTIONS(3199), - [aux_sym_expr_binary_token15] = ACTIONS(3199), - [aux_sym_expr_binary_token16] = ACTIONS(3199), - [aux_sym_expr_binary_token17] = ACTIONS(3199), - [aux_sym_expr_binary_token18] = ACTIONS(3199), - [aux_sym_expr_binary_token19] = ACTIONS(3199), - [aux_sym_expr_binary_token20] = ACTIONS(3199), - [aux_sym_expr_binary_token21] = ACTIONS(3199), - [aux_sym_expr_binary_token22] = ACTIONS(3199), - [aux_sym_expr_binary_token23] = ACTIONS(3199), - [aux_sym_expr_binary_token24] = ACTIONS(3199), - [aux_sym_expr_binary_token25] = ACTIONS(3199), - [aux_sym_expr_binary_token26] = ACTIONS(3199), - [aux_sym_expr_binary_token27] = ACTIONS(3199), - [aux_sym_expr_binary_token28] = ACTIONS(3199), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), - [anon_sym_DOT_DOT_LT] = ACTIONS(3199), - [aux_sym__val_number_decimal_token1] = ACTIONS(3201), - [aux_sym__val_number_decimal_token2] = ACTIONS(3199), - [aux_sym__val_number_decimal_token3] = ACTIONS(3199), - [aux_sym__val_number_decimal_token4] = ACTIONS(3199), - [aux_sym__val_number_token1] = ACTIONS(3199), - [aux_sym__val_number_token2] = ACTIONS(3199), - [aux_sym__val_number_token3] = ACTIONS(3199), - [anon_sym_0b] = ACTIONS(3201), - [anon_sym_0o] = ACTIONS(3201), - [anon_sym_0x] = ACTIONS(3201), - [sym_val_date] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3199), - [sym__str_single_quotes] = ACTIONS(3199), - [sym__str_back_ticks] = ACTIONS(3199), - [anon_sym_err_GT] = ACTIONS(3201), - [anon_sym_out_GT] = ACTIONS(3201), - [anon_sym_e_GT] = ACTIONS(3201), - [anon_sym_o_GT] = ACTIONS(3201), - [anon_sym_err_PLUSout_GT] = ACTIONS(3201), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), - [anon_sym_o_PLUSe_GT] = ACTIONS(3201), - [anon_sym_e_PLUSo_GT] = ACTIONS(3201), - [anon_sym_err_GT_GT] = ACTIONS(3199), - [anon_sym_out_GT_GT] = ACTIONS(3199), - [anon_sym_e_GT_GT] = ACTIONS(3199), - [anon_sym_o_GT_GT] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), - [aux_sym_unquoted_token1] = ACTIONS(3201), + [aux_sym__match_pattern_list_repeat1] = STATE(1202), + [anon_sym_true] = ACTIONS(3718), + [anon_sym_false] = ACTIONS(3718), + [anon_sym_null] = ACTIONS(3720), + [aux_sym_cmd_identifier_token38] = ACTIONS(3722), + [aux_sym_cmd_identifier_token39] = ACTIONS(3722), + [aux_sym_cmd_identifier_token40] = ACTIONS(3722), + [anon_sym_LBRACK] = ACTIONS(4081), + [anon_sym_RBRACK] = ACTIONS(4410), + [anon_sym_LPAREN] = ACTIONS(3728), + [anon_sym_DOLLAR] = ACTIONS(3730), + [aux_sym_ctrl_match_token1] = ACTIONS(3732), + [anon_sym_DOT_DOT] = ACTIONS(4412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3736), + [anon_sym_DOT_DOT_LT] = ACTIONS(3736), + [aux_sym__val_number_decimal_token1] = ACTIONS(3738), + [aux_sym__val_number_decimal_token2] = ACTIONS(3740), + [aux_sym__val_number_decimal_token3] = ACTIONS(3742), + [aux_sym__val_number_decimal_token4] = ACTIONS(3744), + [aux_sym__val_number_token1] = ACTIONS(3746), + [aux_sym__val_number_token2] = ACTIONS(3746), + [aux_sym__val_number_token3] = ACTIONS(3746), + [anon_sym_0b] = ACTIONS(3748), + [anon_sym_0o] = ACTIONS(3750), + [anon_sym_0x] = ACTIONS(3750), + [sym_val_date] = ACTIONS(3752), + [anon_sym_DQUOTE] = ACTIONS(3754), + [sym__str_single_quotes] = ACTIONS(3756), + [sym__str_back_ticks] = ACTIONS(3756), + [anon_sym_err_GT] = ACTIONS(2850), + [anon_sym_out_GT] = ACTIONS(2850), + [anon_sym_e_GT] = ACTIONS(2850), + [anon_sym_o_GT] = ACTIONS(2850), + [anon_sym_err_PLUSout_GT] = ACTIONS(2850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2850), + [anon_sym_o_PLUSe_GT] = ACTIONS(2850), + [anon_sym_e_PLUSo_GT] = ACTIONS(2850), + [anon_sym_err_GT_GT] = ACTIONS(2852), + [anon_sym_out_GT_GT] = ACTIONS(2852), + [anon_sym_e_GT_GT] = ACTIONS(2852), + [anon_sym_o_GT_GT] = ACTIONS(2852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2852), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3758), [anon_sym_POUND] = ACTIONS(247), }, [1167] = { + [sym__val_range] = STATE(7633), + [sym__value] = STATE(5427), + [sym_val_nothing] = STATE(3939), + [sym_val_bool] = STATE(5440), + [sym_val_variable] = STATE(3939), + [sym_val_number] = STATE(3939), + [sym__val_number_decimal] = STATE(4836), + [sym__val_number] = STATE(3437), + [sym_val_duration] = STATE(3939), + [sym_val_filesize] = STATE(3939), + [sym_val_binary] = STATE(3939), + [sym_val_string] = STATE(3939), + [sym__str_double_quotes] = STATE(2643), + [sym_val_interpolated] = STATE(3939), + [sym__inter_single_quotes] = STATE(3938), + [sym__inter_double_quotes] = STATE(3966), + [sym_val_list] = STATE(3939), + [sym_val_record] = STATE(3939), + [sym_val_table] = STATE(3939), + [sym_val_closure] = STATE(3939), + [sym_unquoted] = STATE(5432), + [sym__unquoted_anonymous_prefix] = STATE(7531), [sym_comment] = STATE(1167), - [anon_sym_true] = ACTIONS(3199), - [anon_sym_false] = ACTIONS(3199), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3199), - [aux_sym_cmd_identifier_token39] = ACTIONS(3199), - [aux_sym_cmd_identifier_token40] = ACTIONS(3199), - [sym__newline] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_DOLLAR] = ACTIONS(3199), - [aux_sym_ctrl_match_token1] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym__] = ACTIONS(3201), - [anon_sym_DOT_DOT] = ACTIONS(3201), - [aux_sym_expr_binary_token1] = ACTIONS(3199), - [aux_sym_expr_binary_token2] = ACTIONS(3199), - [aux_sym_expr_binary_token3] = ACTIONS(3199), - [aux_sym_expr_binary_token4] = ACTIONS(3199), - [aux_sym_expr_binary_token5] = ACTIONS(3199), - [aux_sym_expr_binary_token6] = ACTIONS(3199), - [aux_sym_expr_binary_token7] = ACTIONS(3199), - [aux_sym_expr_binary_token8] = ACTIONS(3199), - [aux_sym_expr_binary_token9] = ACTIONS(3199), - [aux_sym_expr_binary_token10] = ACTIONS(3199), - [aux_sym_expr_binary_token11] = ACTIONS(3199), - [aux_sym_expr_binary_token12] = ACTIONS(3199), - [aux_sym_expr_binary_token13] = ACTIONS(3199), - [aux_sym_expr_binary_token14] = ACTIONS(3199), - [aux_sym_expr_binary_token15] = ACTIONS(3199), - [aux_sym_expr_binary_token16] = ACTIONS(3199), - [aux_sym_expr_binary_token17] = ACTIONS(3199), - [aux_sym_expr_binary_token18] = ACTIONS(3199), - [aux_sym_expr_binary_token19] = ACTIONS(3199), - [aux_sym_expr_binary_token20] = ACTIONS(3199), - [aux_sym_expr_binary_token21] = ACTIONS(3199), - [aux_sym_expr_binary_token22] = ACTIONS(3199), - [aux_sym_expr_binary_token23] = ACTIONS(3199), - [aux_sym_expr_binary_token24] = ACTIONS(3199), - [aux_sym_expr_binary_token25] = ACTIONS(3199), - [aux_sym_expr_binary_token26] = ACTIONS(3199), - [aux_sym_expr_binary_token27] = ACTIONS(3199), - [aux_sym_expr_binary_token28] = ACTIONS(3199), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), - [anon_sym_DOT_DOT_LT] = ACTIONS(3199), - [aux_sym__val_number_decimal_token1] = ACTIONS(3201), - [aux_sym__val_number_decimal_token2] = ACTIONS(3199), - [aux_sym__val_number_decimal_token3] = ACTIONS(3199), - [aux_sym__val_number_decimal_token4] = ACTIONS(3199), - [aux_sym__val_number_token1] = ACTIONS(3199), - [aux_sym__val_number_token2] = ACTIONS(3199), - [aux_sym__val_number_token3] = ACTIONS(3199), - [anon_sym_0b] = ACTIONS(3201), - [anon_sym_0o] = ACTIONS(3201), - [anon_sym_0x] = ACTIONS(3201), - [sym_val_date] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3199), - [sym__str_single_quotes] = ACTIONS(3199), - [sym__str_back_ticks] = ACTIONS(3199), - [anon_sym_err_GT] = ACTIONS(3201), - [anon_sym_out_GT] = ACTIONS(3201), - [anon_sym_e_GT] = ACTIONS(3201), - [anon_sym_o_GT] = ACTIONS(3201), - [anon_sym_err_PLUSout_GT] = ACTIONS(3201), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), - [anon_sym_o_PLUSe_GT] = ACTIONS(3201), - [anon_sym_e_PLUSo_GT] = ACTIONS(3201), - [anon_sym_err_GT_GT] = ACTIONS(3199), - [anon_sym_out_GT_GT] = ACTIONS(3199), - [anon_sym_e_GT_GT] = ACTIONS(3199), - [anon_sym_o_GT_GT] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), - [aux_sym_unquoted_token1] = ACTIONS(3201), + [anon_sym_true] = ACTIONS(3983), + [anon_sym_false] = ACTIONS(3983), + [anon_sym_null] = ACTIONS(3985), + [aux_sym_cmd_identifier_token38] = ACTIONS(3987), + [aux_sym_cmd_identifier_token39] = ACTIONS(3987), + [aux_sym_cmd_identifier_token40] = ACTIONS(3987), + [anon_sym_LBRACK] = ACTIONS(3381), + [anon_sym_LPAREN] = ACTIONS(3989), + [anon_sym_DOLLAR] = ACTIONS(3991), + [aux_sym_ctrl_match_token1] = ACTIONS(3389), + [anon_sym_DOT_DOT] = ACTIONS(3993), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3995), + [anon_sym_DOT_DOT_LT] = ACTIONS(3995), + [aux_sym__val_number_decimal_token1] = ACTIONS(3997), + [aux_sym__val_number_decimal_token2] = ACTIONS(3999), + [aux_sym__val_number_decimal_token3] = ACTIONS(4001), + [aux_sym__val_number_decimal_token4] = ACTIONS(4003), + [aux_sym__val_number_token1] = ACTIONS(3405), + [aux_sym__val_number_token2] = ACTIONS(3405), + [aux_sym__val_number_token3] = ACTIONS(3405), + [anon_sym_0b] = ACTIONS(3407), + [anon_sym_0o] = ACTIONS(3409), + [anon_sym_0x] = ACTIONS(3409), + [sym_val_date] = ACTIONS(4005), + [anon_sym_DQUOTE] = ACTIONS(3413), + [sym__str_single_quotes] = ACTIONS(3415), + [sym__str_back_ticks] = ACTIONS(3415), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3417), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3419), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3421), [anon_sym_POUND] = ACTIONS(247), }, [1168] = { [sym_comment] = STATE(1168), - [anon_sym_true] = ACTIONS(3199), - [anon_sym_false] = ACTIONS(3199), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3199), - [aux_sym_cmd_identifier_token39] = ACTIONS(3199), - [aux_sym_cmd_identifier_token40] = ACTIONS(3199), - [sym__newline] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_DOLLAR] = ACTIONS(3199), - [aux_sym_ctrl_match_token1] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym__] = ACTIONS(3201), - [anon_sym_DOT_DOT] = ACTIONS(3201), - [aux_sym_expr_binary_token1] = ACTIONS(3199), - [aux_sym_expr_binary_token2] = ACTIONS(3199), - [aux_sym_expr_binary_token3] = ACTIONS(3199), - [aux_sym_expr_binary_token4] = ACTIONS(3199), - [aux_sym_expr_binary_token5] = ACTIONS(3199), - [aux_sym_expr_binary_token6] = ACTIONS(3199), - [aux_sym_expr_binary_token7] = ACTIONS(3199), - [aux_sym_expr_binary_token8] = ACTIONS(3199), - [aux_sym_expr_binary_token9] = ACTIONS(3199), - [aux_sym_expr_binary_token10] = ACTIONS(3199), - [aux_sym_expr_binary_token11] = ACTIONS(3199), - [aux_sym_expr_binary_token12] = ACTIONS(3199), - [aux_sym_expr_binary_token13] = ACTIONS(3199), - [aux_sym_expr_binary_token14] = ACTIONS(3199), - [aux_sym_expr_binary_token15] = ACTIONS(3199), - [aux_sym_expr_binary_token16] = ACTIONS(3199), - [aux_sym_expr_binary_token17] = ACTIONS(3199), - [aux_sym_expr_binary_token18] = ACTIONS(3199), - [aux_sym_expr_binary_token19] = ACTIONS(3199), - [aux_sym_expr_binary_token20] = ACTIONS(3199), - [aux_sym_expr_binary_token21] = ACTIONS(3199), - [aux_sym_expr_binary_token22] = ACTIONS(3199), - [aux_sym_expr_binary_token23] = ACTIONS(3199), - [aux_sym_expr_binary_token24] = ACTIONS(3199), - [aux_sym_expr_binary_token25] = ACTIONS(3199), - [aux_sym_expr_binary_token26] = ACTIONS(3199), - [aux_sym_expr_binary_token27] = ACTIONS(3199), - [aux_sym_expr_binary_token28] = ACTIONS(3199), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), - [anon_sym_DOT_DOT_LT] = ACTIONS(3199), - [aux_sym__val_number_decimal_token1] = ACTIONS(3201), - [aux_sym__val_number_decimal_token2] = ACTIONS(3199), - [aux_sym__val_number_decimal_token3] = ACTIONS(3199), - [aux_sym__val_number_decimal_token4] = ACTIONS(3199), - [aux_sym__val_number_token1] = ACTIONS(3199), - [aux_sym__val_number_token2] = ACTIONS(3199), - [aux_sym__val_number_token3] = ACTIONS(3199), - [anon_sym_0b] = ACTIONS(3201), - [anon_sym_0o] = ACTIONS(3201), - [anon_sym_0x] = ACTIONS(3201), - [sym_val_date] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3199), - [sym__str_single_quotes] = ACTIONS(3199), - [sym__str_back_ticks] = ACTIONS(3199), - [anon_sym_err_GT] = ACTIONS(3201), - [anon_sym_out_GT] = ACTIONS(3201), - [anon_sym_e_GT] = ACTIONS(3201), - [anon_sym_o_GT] = ACTIONS(3201), - [anon_sym_err_PLUSout_GT] = ACTIONS(3201), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), - [anon_sym_o_PLUSe_GT] = ACTIONS(3201), - [anon_sym_e_PLUSo_GT] = ACTIONS(3201), - [anon_sym_err_GT_GT] = ACTIONS(3199), - [anon_sym_out_GT_GT] = ACTIONS(3199), - [anon_sym_e_GT_GT] = ACTIONS(3199), - [anon_sym_o_GT_GT] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), - [aux_sym_unquoted_token1] = ACTIONS(3201), + [anon_sym_true] = ACTIONS(1499), + [anon_sym_false] = ACTIONS(1499), + [anon_sym_null] = ACTIONS(1499), + [aux_sym_cmd_identifier_token38] = ACTIONS(1499), + [aux_sym_cmd_identifier_token39] = ACTIONS(1499), + [aux_sym_cmd_identifier_token40] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_RPAREN] = ACTIONS(1499), + [anon_sym_DOLLAR] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1497), + [aux_sym_ctrl_match_token1] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1497), + [anon_sym_DOT_DOT2] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), + [anon_sym_DOT_DOT_LT] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), + [aux_sym__immediate_decimal_token2] = ACTIONS(3963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1499), + [aux_sym__val_number_decimal_token4] = ACTIONS(1499), + [aux_sym__val_number_token1] = ACTIONS(1499), + [aux_sym__val_number_token2] = ACTIONS(1499), + [aux_sym__val_number_token3] = ACTIONS(1499), + [anon_sym_0b] = ACTIONS(1497), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1499), + [anon_sym_0o] = ACTIONS(1497), + [anon_sym_0x] = ACTIONS(1497), + [sym_val_date] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1499), + [sym__str_single_quotes] = ACTIONS(1499), + [sym__str_back_ticks] = ACTIONS(1499), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1499), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1499), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), + [aux_sym_unquoted_token1] = ACTIONS(1497), + [aux_sym_unquoted_token2] = ACTIONS(1497), [anon_sym_POUND] = ACTIONS(247), }, [1169] = { [sym_comment] = STATE(1169), - [anon_sym_true] = ACTIONS(2328), - [anon_sym_false] = ACTIONS(2328), - [anon_sym_null] = ACTIONS(2328), - [aux_sym_cmd_identifier_token38] = ACTIONS(2328), - [aux_sym_cmd_identifier_token39] = ACTIONS(2328), - [aux_sym_cmd_identifier_token40] = ACTIONS(2328), - [sym__newline] = ACTIONS(2328), - [anon_sym_LBRACK] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(2328), - [anon_sym_COMMA] = ACTIONS(2328), - [anon_sym_DOLLAR] = ACTIONS(2328), - [aux_sym_ctrl_match_token1] = ACTIONS(2328), - [anon_sym_RBRACE] = ACTIONS(2328), - [anon_sym__] = ACTIONS(2326), - [anon_sym_DOT_DOT] = ACTIONS(2326), - [aux_sym_expr_binary_token1] = ACTIONS(2328), - [aux_sym_expr_binary_token2] = ACTIONS(2328), - [aux_sym_expr_binary_token3] = ACTIONS(2328), - [aux_sym_expr_binary_token4] = ACTIONS(2328), - [aux_sym_expr_binary_token5] = ACTIONS(2328), - [aux_sym_expr_binary_token6] = ACTIONS(2328), - [aux_sym_expr_binary_token7] = ACTIONS(2328), - [aux_sym_expr_binary_token8] = ACTIONS(2328), - [aux_sym_expr_binary_token9] = ACTIONS(2328), - [aux_sym_expr_binary_token10] = ACTIONS(2328), - [aux_sym_expr_binary_token11] = ACTIONS(2328), - [aux_sym_expr_binary_token12] = ACTIONS(2328), - [aux_sym_expr_binary_token13] = ACTIONS(2328), - [aux_sym_expr_binary_token14] = ACTIONS(2328), - [aux_sym_expr_binary_token15] = ACTIONS(2328), - [aux_sym_expr_binary_token16] = ACTIONS(2328), - [aux_sym_expr_binary_token17] = ACTIONS(2328), - [aux_sym_expr_binary_token18] = ACTIONS(2328), - [aux_sym_expr_binary_token19] = ACTIONS(2328), - [aux_sym_expr_binary_token20] = ACTIONS(2328), - [aux_sym_expr_binary_token21] = ACTIONS(2328), - [aux_sym_expr_binary_token22] = ACTIONS(2328), - [aux_sym_expr_binary_token23] = ACTIONS(2328), - [aux_sym_expr_binary_token24] = ACTIONS(2328), - [aux_sym_expr_binary_token25] = ACTIONS(2328), - [aux_sym_expr_binary_token26] = ACTIONS(2328), - [aux_sym_expr_binary_token27] = ACTIONS(2328), - [aux_sym_expr_binary_token28] = ACTIONS(2328), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2328), - [anon_sym_DOT_DOT_LT] = ACTIONS(2328), - [aux_sym__val_number_decimal_token1] = ACTIONS(2326), - [aux_sym__val_number_decimal_token2] = ACTIONS(2328), - [aux_sym__val_number_decimal_token3] = ACTIONS(2328), - [aux_sym__val_number_decimal_token4] = ACTIONS(2328), - [aux_sym__val_number_token1] = ACTIONS(2328), - [aux_sym__val_number_token2] = ACTIONS(2328), - [aux_sym__val_number_token3] = ACTIONS(2328), - [anon_sym_0b] = ACTIONS(2326), - [anon_sym_0o] = ACTIONS(2326), - [anon_sym_0x] = ACTIONS(2326), - [sym_val_date] = ACTIONS(2328), - [anon_sym_DQUOTE] = ACTIONS(2328), - [sym__str_single_quotes] = ACTIONS(2328), - [sym__str_back_ticks] = ACTIONS(2328), - [anon_sym_err_GT] = ACTIONS(2326), - [anon_sym_out_GT] = ACTIONS(2326), - [anon_sym_e_GT] = ACTIONS(2326), - [anon_sym_o_GT] = ACTIONS(2326), - [anon_sym_err_PLUSout_GT] = ACTIONS(2326), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2326), - [anon_sym_o_PLUSe_GT] = ACTIONS(2326), - [anon_sym_e_PLUSo_GT] = ACTIONS(2326), - [anon_sym_err_GT_GT] = ACTIONS(2328), - [anon_sym_out_GT_GT] = ACTIONS(2328), - [anon_sym_e_GT_GT] = ACTIONS(2328), - [anon_sym_o_GT_GT] = ACTIONS(2328), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2328), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2328), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2328), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2328), - [aux_sym_unquoted_token1] = ACTIONS(2326), + [anon_sym_true] = ACTIONS(1567), + [anon_sym_false] = ACTIONS(1567), + [anon_sym_null] = ACTIONS(1567), + [aux_sym_cmd_identifier_token38] = ACTIONS(1567), + [aux_sym_cmd_identifier_token39] = ACTIONS(1567), + [aux_sym_cmd_identifier_token40] = ACTIONS(1567), + [sym__newline] = ACTIONS(1567), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_err_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_GT_PIPE] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), + [anon_sym_LBRACK] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1567), + [anon_sym_RPAREN] = ACTIONS(1567), + [anon_sym_DOLLAR] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1565), + [aux_sym_ctrl_match_token1] = ACTIONS(1567), + [anon_sym_RBRACE] = ACTIONS(1567), + [anon_sym_DOT_DOT] = ACTIONS(1565), + [anon_sym_DOT_DOT2] = ACTIONS(1565), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1565), + [anon_sym_DOT_DOT_LT] = ACTIONS(1565), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), + [aux_sym__immediate_decimal_token2] = ACTIONS(4414), + [aux_sym__val_number_decimal_token1] = ACTIONS(1565), + [aux_sym__val_number_decimal_token2] = ACTIONS(1567), + [aux_sym__val_number_decimal_token3] = ACTIONS(1567), + [aux_sym__val_number_decimal_token4] = ACTIONS(1567), + [aux_sym__val_number_token1] = ACTIONS(1567), + [aux_sym__val_number_token2] = ACTIONS(1567), + [aux_sym__val_number_token3] = ACTIONS(1567), + [anon_sym_0b] = ACTIONS(1565), + [sym_filesize_unit] = ACTIONS(1567), + [sym_duration_unit] = ACTIONS(1567), + [anon_sym_0o] = ACTIONS(1565), + [anon_sym_0x] = ACTIONS(1565), + [sym_val_date] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(1567), + [sym__str_single_quotes] = ACTIONS(1567), + [sym__str_back_ticks] = ACTIONS(1567), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1567), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1567), + [anon_sym_err_GT] = ACTIONS(1565), + [anon_sym_out_GT] = ACTIONS(1565), + [anon_sym_e_GT] = ACTIONS(1565), + [anon_sym_o_GT] = ACTIONS(1565), + [anon_sym_err_PLUSout_GT] = ACTIONS(1565), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), + [anon_sym_o_PLUSe_GT] = ACTIONS(1565), + [anon_sym_e_PLUSo_GT] = ACTIONS(1565), + [anon_sym_err_GT_GT] = ACTIONS(1567), + [anon_sym_out_GT_GT] = ACTIONS(1567), + [anon_sym_e_GT_GT] = ACTIONS(1567), + [anon_sym_o_GT_GT] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), + [aux_sym_unquoted_token1] = ACTIONS(1565), + [aux_sym_unquoted_token2] = ACTIONS(1565), [anon_sym_POUND] = ACTIONS(247), }, [1170] = { [sym_comment] = STATE(1170), - [anon_sym_true] = ACTIONS(3199), - [anon_sym_false] = ACTIONS(3199), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3199), - [aux_sym_cmd_identifier_token39] = ACTIONS(3199), - [aux_sym_cmd_identifier_token40] = ACTIONS(3199), - [sym__newline] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_DOLLAR] = ACTIONS(3199), - [aux_sym_ctrl_match_token1] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym__] = ACTIONS(3201), - [anon_sym_DOT_DOT] = ACTIONS(3201), - [aux_sym_expr_binary_token1] = ACTIONS(3199), - [aux_sym_expr_binary_token2] = ACTIONS(3199), - [aux_sym_expr_binary_token3] = ACTIONS(3199), - [aux_sym_expr_binary_token4] = ACTIONS(3199), - [aux_sym_expr_binary_token5] = ACTIONS(3199), - [aux_sym_expr_binary_token6] = ACTIONS(3199), - [aux_sym_expr_binary_token7] = ACTIONS(3199), - [aux_sym_expr_binary_token8] = ACTIONS(3199), - [aux_sym_expr_binary_token9] = ACTIONS(3199), - [aux_sym_expr_binary_token10] = ACTIONS(3199), - [aux_sym_expr_binary_token11] = ACTIONS(3199), - [aux_sym_expr_binary_token12] = ACTIONS(3199), - [aux_sym_expr_binary_token13] = ACTIONS(3199), - [aux_sym_expr_binary_token14] = ACTIONS(3199), - [aux_sym_expr_binary_token15] = ACTIONS(3199), - [aux_sym_expr_binary_token16] = ACTIONS(3199), - [aux_sym_expr_binary_token17] = ACTIONS(3199), - [aux_sym_expr_binary_token18] = ACTIONS(3199), - [aux_sym_expr_binary_token19] = ACTIONS(3199), - [aux_sym_expr_binary_token20] = ACTIONS(3199), - [aux_sym_expr_binary_token21] = ACTIONS(3199), - [aux_sym_expr_binary_token22] = ACTIONS(3199), - [aux_sym_expr_binary_token23] = ACTIONS(3199), - [aux_sym_expr_binary_token24] = ACTIONS(3199), - [aux_sym_expr_binary_token25] = ACTIONS(3199), - [aux_sym_expr_binary_token26] = ACTIONS(3199), - [aux_sym_expr_binary_token27] = ACTIONS(3199), - [aux_sym_expr_binary_token28] = ACTIONS(3199), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), - [anon_sym_DOT_DOT_LT] = ACTIONS(3199), - [aux_sym__val_number_decimal_token1] = ACTIONS(3201), - [aux_sym__val_number_decimal_token2] = ACTIONS(3199), - [aux_sym__val_number_decimal_token3] = ACTIONS(3199), - [aux_sym__val_number_decimal_token4] = ACTIONS(3199), - [aux_sym__val_number_token1] = ACTIONS(3199), - [aux_sym__val_number_token2] = ACTIONS(3199), - [aux_sym__val_number_token3] = ACTIONS(3199), - [anon_sym_0b] = ACTIONS(3201), - [anon_sym_0o] = ACTIONS(3201), - [anon_sym_0x] = ACTIONS(3201), - [sym_val_date] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3199), - [sym__str_single_quotes] = ACTIONS(3199), - [sym__str_back_ticks] = ACTIONS(3199), - [anon_sym_err_GT] = ACTIONS(3201), - [anon_sym_out_GT] = ACTIONS(3201), - [anon_sym_e_GT] = ACTIONS(3201), - [anon_sym_o_GT] = ACTIONS(3201), - [anon_sym_err_PLUSout_GT] = ACTIONS(3201), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), - [anon_sym_o_PLUSe_GT] = ACTIONS(3201), - [anon_sym_e_PLUSo_GT] = ACTIONS(3201), - [anon_sym_err_GT_GT] = ACTIONS(3199), - [anon_sym_out_GT_GT] = ACTIONS(3199), - [anon_sym_e_GT_GT] = ACTIONS(3199), - [anon_sym_o_GT_GT] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), - [aux_sym_unquoted_token1] = ACTIONS(3201), + [anon_sym_EQ] = ACTIONS(1040), + [anon_sym_PLUS_EQ] = ACTIONS(1042), + [anon_sym_DASH_EQ] = ACTIONS(1042), + [anon_sym_STAR_EQ] = ACTIONS(1042), + [anon_sym_SLASH_EQ] = ACTIONS(1042), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1042), + [sym__newline] = ACTIONS(1040), + [anon_sym_SEMI] = ACTIONS(1042), + [anon_sym_PIPE] = ACTIONS(1042), + [anon_sym_err_GT_PIPE] = ACTIONS(1042), + [anon_sym_out_GT_PIPE] = ACTIONS(1042), + [anon_sym_e_GT_PIPE] = ACTIONS(1042), + [anon_sym_o_GT_PIPE] = ACTIONS(1042), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1042), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1042), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1042), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1042), + [anon_sym_RPAREN] = ACTIONS(1042), + [aux_sym_ctrl_match_token1] = ACTIONS(1042), + [anon_sym_QMARK2] = ACTIONS(1042), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1042), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1042), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1042), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1042), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1042), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1042), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1042), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1042), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1042), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1042), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1042), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1042), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1042), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1042), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1042), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1042), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1042), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1042), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1042), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1042), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1042), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1042), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1042), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1042), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1042), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1042), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1042), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1042), + [anon_sym_DOT_DOT2] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1042), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1042), + [anon_sym_err_GT] = ACTIONS(1040), + [anon_sym_out_GT] = ACTIONS(1040), + [anon_sym_e_GT] = ACTIONS(1040), + [anon_sym_o_GT] = ACTIONS(1040), + [anon_sym_err_PLUSout_GT] = ACTIONS(1040), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1040), + [anon_sym_o_PLUSe_GT] = ACTIONS(1040), + [anon_sym_e_PLUSo_GT] = ACTIONS(1040), + [anon_sym_err_GT_GT] = ACTIONS(1042), + [anon_sym_out_GT_GT] = ACTIONS(1042), + [anon_sym_e_GT_GT] = ACTIONS(1042), + [anon_sym_o_GT_GT] = ACTIONS(1042), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1042), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1042), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1042), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1042), [anon_sym_POUND] = ACTIONS(247), }, [1171] = { [sym_comment] = STATE(1171), - [anon_sym_true] = ACTIONS(3199), - [anon_sym_false] = ACTIONS(3199), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3199), - [aux_sym_cmd_identifier_token39] = ACTIONS(3199), - [aux_sym_cmd_identifier_token40] = ACTIONS(3199), - [sym__newline] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_DOLLAR] = ACTIONS(3199), - [aux_sym_ctrl_match_token1] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym__] = ACTIONS(3201), - [anon_sym_DOT_DOT] = ACTIONS(3201), - [aux_sym_expr_binary_token1] = ACTIONS(3199), - [aux_sym_expr_binary_token2] = ACTIONS(3199), - [aux_sym_expr_binary_token3] = ACTIONS(3199), - [aux_sym_expr_binary_token4] = ACTIONS(3199), - [aux_sym_expr_binary_token5] = ACTIONS(3199), - [aux_sym_expr_binary_token6] = ACTIONS(3199), - [aux_sym_expr_binary_token7] = ACTIONS(3199), - [aux_sym_expr_binary_token8] = ACTIONS(3199), - [aux_sym_expr_binary_token9] = ACTIONS(3199), - [aux_sym_expr_binary_token10] = ACTIONS(3199), - [aux_sym_expr_binary_token11] = ACTIONS(3199), - [aux_sym_expr_binary_token12] = ACTIONS(3199), - [aux_sym_expr_binary_token13] = ACTIONS(3199), - [aux_sym_expr_binary_token14] = ACTIONS(3199), - [aux_sym_expr_binary_token15] = ACTIONS(3199), - [aux_sym_expr_binary_token16] = ACTIONS(3199), - [aux_sym_expr_binary_token17] = ACTIONS(3199), - [aux_sym_expr_binary_token18] = ACTIONS(3199), - [aux_sym_expr_binary_token19] = ACTIONS(3199), - [aux_sym_expr_binary_token20] = ACTIONS(3199), - [aux_sym_expr_binary_token21] = ACTIONS(3199), - [aux_sym_expr_binary_token22] = ACTIONS(3199), - [aux_sym_expr_binary_token23] = ACTIONS(3199), - [aux_sym_expr_binary_token24] = ACTIONS(3199), - [aux_sym_expr_binary_token25] = ACTIONS(3199), - [aux_sym_expr_binary_token26] = ACTIONS(3199), - [aux_sym_expr_binary_token27] = ACTIONS(3199), - [aux_sym_expr_binary_token28] = ACTIONS(3199), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), - [anon_sym_DOT_DOT_LT] = ACTIONS(3199), - [aux_sym__val_number_decimal_token1] = ACTIONS(3201), - [aux_sym__val_number_decimal_token2] = ACTIONS(3199), - [aux_sym__val_number_decimal_token3] = ACTIONS(3199), - [aux_sym__val_number_decimal_token4] = ACTIONS(3199), - [aux_sym__val_number_token1] = ACTIONS(3199), - [aux_sym__val_number_token2] = ACTIONS(3199), - [aux_sym__val_number_token3] = ACTIONS(3199), - [anon_sym_0b] = ACTIONS(3201), - [anon_sym_0o] = ACTIONS(3201), - [anon_sym_0x] = ACTIONS(3201), - [sym_val_date] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3199), - [sym__str_single_quotes] = ACTIONS(3199), - [sym__str_back_ticks] = ACTIONS(3199), - [anon_sym_err_GT] = ACTIONS(3201), - [anon_sym_out_GT] = ACTIONS(3201), - [anon_sym_e_GT] = ACTIONS(3201), - [anon_sym_o_GT] = ACTIONS(3201), - [anon_sym_err_PLUSout_GT] = ACTIONS(3201), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), - [anon_sym_o_PLUSe_GT] = ACTIONS(3201), - [anon_sym_e_PLUSo_GT] = ACTIONS(3201), - [anon_sym_err_GT_GT] = ACTIONS(3199), - [anon_sym_out_GT_GT] = ACTIONS(3199), - [anon_sym_e_GT_GT] = ACTIONS(3199), - [anon_sym_o_GT_GT] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), - [aux_sym_unquoted_token1] = ACTIONS(3201), + [anon_sym_EQ] = ACTIONS(1044), + [anon_sym_PLUS_EQ] = ACTIONS(1046), + [anon_sym_DASH_EQ] = ACTIONS(1046), + [anon_sym_STAR_EQ] = ACTIONS(1046), + [anon_sym_SLASH_EQ] = ACTIONS(1046), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1046), + [sym__newline] = ACTIONS(1044), + [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_err_GT_PIPE] = ACTIONS(1046), + [anon_sym_out_GT_PIPE] = ACTIONS(1046), + [anon_sym_e_GT_PIPE] = ACTIONS(1046), + [anon_sym_o_GT_PIPE] = ACTIONS(1046), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1046), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1046), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1046), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1046), + [anon_sym_RPAREN] = ACTIONS(1046), + [aux_sym_ctrl_match_token1] = ACTIONS(1046), + [anon_sym_QMARK2] = ACTIONS(1046), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1046), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1046), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1046), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1046), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1046), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1046), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1046), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1046), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1046), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1046), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1046), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1046), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1046), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1046), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1046), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1046), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1046), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1046), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1046), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1046), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1046), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1046), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1046), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1046), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1046), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1046), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1046), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1046), + [anon_sym_DOT_DOT2] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1044), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1046), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1046), + [anon_sym_err_GT] = ACTIONS(1044), + [anon_sym_out_GT] = ACTIONS(1044), + [anon_sym_e_GT] = ACTIONS(1044), + [anon_sym_o_GT] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT] = ACTIONS(1044), + [anon_sym_err_GT_GT] = ACTIONS(1046), + [anon_sym_out_GT_GT] = ACTIONS(1046), + [anon_sym_e_GT_GT] = ACTIONS(1046), + [anon_sym_o_GT_GT] = ACTIONS(1046), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1046), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1046), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1046), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1046), [anon_sym_POUND] = ACTIONS(247), }, [1172] = { [sym_comment] = STATE(1172), - [anon_sym_true] = ACTIONS(3199), - [anon_sym_false] = ACTIONS(3199), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3199), - [aux_sym_cmd_identifier_token39] = ACTIONS(3199), - [aux_sym_cmd_identifier_token40] = ACTIONS(3199), - [sym__newline] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_DOLLAR] = ACTIONS(3199), - [aux_sym_ctrl_match_token1] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym__] = ACTIONS(3201), - [anon_sym_DOT_DOT] = ACTIONS(3201), - [aux_sym_expr_binary_token1] = ACTIONS(3199), - [aux_sym_expr_binary_token2] = ACTIONS(3199), - [aux_sym_expr_binary_token3] = ACTIONS(3199), - [aux_sym_expr_binary_token4] = ACTIONS(3199), - [aux_sym_expr_binary_token5] = ACTIONS(3199), - [aux_sym_expr_binary_token6] = ACTIONS(3199), - [aux_sym_expr_binary_token7] = ACTIONS(3199), - [aux_sym_expr_binary_token8] = ACTIONS(3199), - [aux_sym_expr_binary_token9] = ACTIONS(3199), - [aux_sym_expr_binary_token10] = ACTIONS(3199), - [aux_sym_expr_binary_token11] = ACTIONS(3199), - [aux_sym_expr_binary_token12] = ACTIONS(3199), - [aux_sym_expr_binary_token13] = ACTIONS(3199), - [aux_sym_expr_binary_token14] = ACTIONS(3199), - [aux_sym_expr_binary_token15] = ACTIONS(3199), - [aux_sym_expr_binary_token16] = ACTIONS(3199), - [aux_sym_expr_binary_token17] = ACTIONS(3199), - [aux_sym_expr_binary_token18] = ACTIONS(3199), - [aux_sym_expr_binary_token19] = ACTIONS(3199), - [aux_sym_expr_binary_token20] = ACTIONS(3199), - [aux_sym_expr_binary_token21] = ACTIONS(3199), - [aux_sym_expr_binary_token22] = ACTIONS(3199), - [aux_sym_expr_binary_token23] = ACTIONS(3199), - [aux_sym_expr_binary_token24] = ACTIONS(3199), - [aux_sym_expr_binary_token25] = ACTIONS(3199), - [aux_sym_expr_binary_token26] = ACTIONS(3199), - [aux_sym_expr_binary_token27] = ACTIONS(3199), - [aux_sym_expr_binary_token28] = ACTIONS(3199), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), - [anon_sym_DOT_DOT_LT] = ACTIONS(3199), - [aux_sym__val_number_decimal_token1] = ACTIONS(3201), - [aux_sym__val_number_decimal_token2] = ACTIONS(3199), - [aux_sym__val_number_decimal_token3] = ACTIONS(3199), - [aux_sym__val_number_decimal_token4] = ACTIONS(3199), - [aux_sym__val_number_token1] = ACTIONS(3199), - [aux_sym__val_number_token2] = ACTIONS(3199), - [aux_sym__val_number_token3] = ACTIONS(3199), - [anon_sym_0b] = ACTIONS(3201), - [anon_sym_0o] = ACTIONS(3201), - [anon_sym_0x] = ACTIONS(3201), - [sym_val_date] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3199), - [sym__str_single_quotes] = ACTIONS(3199), - [sym__str_back_ticks] = ACTIONS(3199), - [anon_sym_err_GT] = ACTIONS(3201), - [anon_sym_out_GT] = ACTIONS(3201), - [anon_sym_e_GT] = ACTIONS(3201), - [anon_sym_o_GT] = ACTIONS(3201), - [anon_sym_err_PLUSout_GT] = ACTIONS(3201), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), - [anon_sym_o_PLUSe_GT] = ACTIONS(3201), - [anon_sym_e_PLUSo_GT] = ACTIONS(3201), - [anon_sym_err_GT_GT] = ACTIONS(3199), - [anon_sym_out_GT_GT] = ACTIONS(3199), - [anon_sym_e_GT_GT] = ACTIONS(3199), - [anon_sym_o_GT_GT] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), - [aux_sym_unquoted_token1] = ACTIONS(3201), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_PLUS_EQ] = ACTIONS(1050), + [anon_sym_DASH_EQ] = ACTIONS(1050), + [anon_sym_STAR_EQ] = ACTIONS(1050), + [anon_sym_SLASH_EQ] = ACTIONS(1050), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1050), + [sym__newline] = ACTIONS(1048), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_err_GT_PIPE] = ACTIONS(1050), + [anon_sym_out_GT_PIPE] = ACTIONS(1050), + [anon_sym_e_GT_PIPE] = ACTIONS(1050), + [anon_sym_o_GT_PIPE] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1050), + [anon_sym_RPAREN] = ACTIONS(1050), + [aux_sym_ctrl_match_token1] = ACTIONS(1050), + [anon_sym_QMARK2] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1050), + [anon_sym_DOT_DOT2] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1050), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1050), + [anon_sym_err_GT] = ACTIONS(1048), + [anon_sym_out_GT] = ACTIONS(1048), + [anon_sym_e_GT] = ACTIONS(1048), + [anon_sym_o_GT] = ACTIONS(1048), + [anon_sym_err_PLUSout_GT] = ACTIONS(1048), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1048), + [anon_sym_o_PLUSe_GT] = ACTIONS(1048), + [anon_sym_e_PLUSo_GT] = ACTIONS(1048), + [anon_sym_err_GT_GT] = ACTIONS(1050), + [anon_sym_out_GT_GT] = ACTIONS(1050), + [anon_sym_e_GT_GT] = ACTIONS(1050), + [anon_sym_o_GT_GT] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1050), [anon_sym_POUND] = ACTIONS(247), }, [1173] = { - [sym_expr_unary] = STATE(4845), - [sym__expr_unary_minus] = STATE(4797), - [sym_expr_parenthesized] = STATE(4384), - [sym_val_range] = STATE(4845), - [sym__val_range] = STATE(7957), - [sym__val_range_with_end] = STATE(7665), - [sym__value] = STATE(4845), - [sym_val_nothing] = STATE(4339), - [sym_val_bool] = STATE(4450), - [sym_val_variable] = STATE(4431), - [sym_val_number] = STATE(4339), - [sym__val_number_decimal] = STATE(4127), - [sym__val_number] = STATE(4400), - [sym_val_duration] = STATE(4339), - [sym_val_filesize] = STATE(4339), - [sym_val_binary] = STATE(4339), - [sym_val_string] = STATE(4339), - [sym__str_double_quotes] = STATE(3756), - [sym_val_interpolated] = STATE(4339), - [sym__inter_single_quotes] = STATE(4389), - [sym__inter_double_quotes] = STATE(4338), - [sym_val_list] = STATE(4339), - [sym_val_record] = STATE(4339), - [sym_val_table] = STATE(4339), - [sym_val_closure] = STATE(4339), - [sym_unquoted] = STATE(4483), - [sym__unquoted_with_expr] = STATE(4849), - [sym__unquoted_anonymous_prefix] = STATE(7523), [sym_comment] = STATE(1173), - [anon_sym_true] = ACTIONS(3543), - [anon_sym_false] = ACTIONS(3543), - [anon_sym_null] = ACTIONS(3545), - [aux_sym_cmd_identifier_token38] = ACTIONS(3547), - [aux_sym_cmd_identifier_token39] = ACTIONS(3547), - [aux_sym_cmd_identifier_token40] = ACTIONS(3547), - [anon_sym_LBRACK] = ACTIONS(3549), - [anon_sym_LPAREN] = ACTIONS(3551), - [anon_sym_DOLLAR] = ACTIONS(3553), - [anon_sym_DASH] = ACTIONS(3555), - [aux_sym_ctrl_match_token1] = ACTIONS(3557), - [anon_sym_DOT_DOT] = ACTIONS(3559), - [aux_sym_expr_unary_token1] = ACTIONS(3561), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3563), - [anon_sym_DOT_DOT_LT] = ACTIONS(3563), - [aux_sym__val_number_decimal_token1] = ACTIONS(3565), - [aux_sym__val_number_decimal_token2] = ACTIONS(3567), - [aux_sym__val_number_decimal_token3] = ACTIONS(3569), - [aux_sym__val_number_decimal_token4] = ACTIONS(3571), - [aux_sym__val_number_token1] = ACTIONS(3573), - [aux_sym__val_number_token2] = ACTIONS(3573), - [aux_sym__val_number_token3] = ACTIONS(3573), - [anon_sym_0b] = ACTIONS(3575), - [anon_sym_0o] = ACTIONS(3577), - [anon_sym_0x] = ACTIONS(3577), - [sym_val_date] = ACTIONS(3579), - [anon_sym_DQUOTE] = ACTIONS(3581), - [sym__str_single_quotes] = ACTIONS(3583), - [sym__str_back_ticks] = ACTIONS(3583), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3585), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3587), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3589), + [anon_sym_EQ] = ACTIONS(1034), + [anon_sym_PLUS_EQ] = ACTIONS(1036), + [anon_sym_DASH_EQ] = ACTIONS(1036), + [anon_sym_STAR_EQ] = ACTIONS(1036), + [anon_sym_SLASH_EQ] = ACTIONS(1036), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1036), + [sym__newline] = ACTIONS(1036), + [anon_sym_SEMI] = ACTIONS(1036), + [anon_sym_PIPE] = ACTIONS(1036), + [anon_sym_err_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_GT_PIPE] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), + [anon_sym_RPAREN] = ACTIONS(1036), + [anon_sym_RBRACE] = ACTIONS(1036), + [anon_sym_QMARK2] = ACTIONS(4416), + [aux_sym_expr_binary_token1] = ACTIONS(1036), + [aux_sym_expr_binary_token2] = ACTIONS(1036), + [aux_sym_expr_binary_token3] = ACTIONS(1036), + [aux_sym_expr_binary_token4] = ACTIONS(1036), + [aux_sym_expr_binary_token5] = ACTIONS(1036), + [aux_sym_expr_binary_token6] = ACTIONS(1036), + [aux_sym_expr_binary_token7] = ACTIONS(1036), + [aux_sym_expr_binary_token8] = ACTIONS(1036), + [aux_sym_expr_binary_token9] = ACTIONS(1036), + [aux_sym_expr_binary_token10] = ACTIONS(1036), + [aux_sym_expr_binary_token11] = ACTIONS(1036), + [aux_sym_expr_binary_token12] = ACTIONS(1036), + [aux_sym_expr_binary_token13] = ACTIONS(1036), + [aux_sym_expr_binary_token14] = ACTIONS(1036), + [aux_sym_expr_binary_token15] = ACTIONS(1036), + [aux_sym_expr_binary_token16] = ACTIONS(1036), + [aux_sym_expr_binary_token17] = ACTIONS(1036), + [aux_sym_expr_binary_token18] = ACTIONS(1036), + [aux_sym_expr_binary_token19] = ACTIONS(1036), + [aux_sym_expr_binary_token20] = ACTIONS(1036), + [aux_sym_expr_binary_token21] = ACTIONS(1036), + [aux_sym_expr_binary_token22] = ACTIONS(1036), + [aux_sym_expr_binary_token23] = ACTIONS(1036), + [aux_sym_expr_binary_token24] = ACTIONS(1036), + [aux_sym_expr_binary_token25] = ACTIONS(1036), + [aux_sym_expr_binary_token26] = ACTIONS(1036), + [aux_sym_expr_binary_token27] = ACTIONS(1036), + [aux_sym_expr_binary_token28] = ACTIONS(1036), + [anon_sym_DOT_DOT2] = ACTIONS(1034), + [anon_sym_DOT] = ACTIONS(1034), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1036), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1036), + [anon_sym_err_GT] = ACTIONS(1034), + [anon_sym_out_GT] = ACTIONS(1034), + [anon_sym_e_GT] = ACTIONS(1034), + [anon_sym_o_GT] = ACTIONS(1034), + [anon_sym_err_PLUSout_GT] = ACTIONS(1034), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), + [anon_sym_o_PLUSe_GT] = ACTIONS(1034), + [anon_sym_e_PLUSo_GT] = ACTIONS(1034), + [anon_sym_err_GT_GT] = ACTIONS(1036), + [anon_sym_out_GT_GT] = ACTIONS(1036), + [anon_sym_e_GT_GT] = ACTIONS(1036), + [anon_sym_o_GT_GT] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), [anon_sym_POUND] = ACTIONS(247), }, [1174] = { [sym_comment] = STATE(1174), - [anon_sym_true] = ACTIONS(2093), - [anon_sym_false] = ACTIONS(2093), - [anon_sym_null] = ACTIONS(2093), - [aux_sym_cmd_identifier_token38] = ACTIONS(2093), - [aux_sym_cmd_identifier_token39] = ACTIONS(2093), - [aux_sym_cmd_identifier_token40] = ACTIONS(2093), - [sym__newline] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_COMMA] = ACTIONS(2093), - [anon_sym_DOLLAR] = ACTIONS(2093), - [aux_sym_ctrl_match_token1] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym__] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2089), - [aux_sym_expr_binary_token1] = ACTIONS(2093), - [aux_sym_expr_binary_token2] = ACTIONS(2093), - [aux_sym_expr_binary_token3] = ACTIONS(2093), - [aux_sym_expr_binary_token4] = ACTIONS(2093), - [aux_sym_expr_binary_token5] = ACTIONS(2093), - [aux_sym_expr_binary_token6] = ACTIONS(2093), - [aux_sym_expr_binary_token7] = ACTIONS(2093), - [aux_sym_expr_binary_token8] = ACTIONS(2093), - [aux_sym_expr_binary_token9] = ACTIONS(2093), - [aux_sym_expr_binary_token10] = ACTIONS(2093), - [aux_sym_expr_binary_token11] = ACTIONS(2093), - [aux_sym_expr_binary_token12] = ACTIONS(2093), - [aux_sym_expr_binary_token13] = ACTIONS(2093), - [aux_sym_expr_binary_token14] = ACTIONS(2093), - [aux_sym_expr_binary_token15] = ACTIONS(2093), - [aux_sym_expr_binary_token16] = ACTIONS(2093), - [aux_sym_expr_binary_token17] = ACTIONS(2093), - [aux_sym_expr_binary_token18] = ACTIONS(2093), - [aux_sym_expr_binary_token19] = ACTIONS(2093), - [aux_sym_expr_binary_token20] = ACTIONS(2093), - [aux_sym_expr_binary_token21] = ACTIONS(2093), - [aux_sym_expr_binary_token22] = ACTIONS(2093), - [aux_sym_expr_binary_token23] = ACTIONS(2093), - [aux_sym_expr_binary_token24] = ACTIONS(2093), - [aux_sym_expr_binary_token25] = ACTIONS(2093), - [aux_sym_expr_binary_token26] = ACTIONS(2093), - [aux_sym_expr_binary_token27] = ACTIONS(2093), - [aux_sym_expr_binary_token28] = ACTIONS(2093), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2093), - [anon_sym_DOT_DOT_LT] = ACTIONS(2093), - [aux_sym__val_number_decimal_token1] = ACTIONS(2089), - [aux_sym__val_number_decimal_token2] = ACTIONS(2093), - [aux_sym__val_number_decimal_token3] = ACTIONS(2093), - [aux_sym__val_number_decimal_token4] = ACTIONS(2093), - [aux_sym__val_number_token1] = ACTIONS(2093), - [aux_sym__val_number_token2] = ACTIONS(2093), - [aux_sym__val_number_token3] = ACTIONS(2093), - [anon_sym_0b] = ACTIONS(2089), - [anon_sym_0o] = ACTIONS(2089), - [anon_sym_0x] = ACTIONS(2089), - [sym_val_date] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [sym__str_single_quotes] = ACTIONS(2093), - [sym__str_back_ticks] = ACTIONS(2093), - [anon_sym_err_GT] = ACTIONS(2089), - [anon_sym_out_GT] = ACTIONS(2089), - [anon_sym_e_GT] = ACTIONS(2089), - [anon_sym_o_GT] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT] = ACTIONS(2089), - [anon_sym_err_GT_GT] = ACTIONS(2093), - [anon_sym_out_GT_GT] = ACTIONS(2093), - [anon_sym_e_GT_GT] = ACTIONS(2093), - [anon_sym_o_GT_GT] = ACTIONS(2093), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2093), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2093), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2093), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2093), - [aux_sym_unquoted_token1] = ACTIONS(2089), + [anon_sym_EQ] = ACTIONS(1028), + [anon_sym_PLUS_EQ] = ACTIONS(1030), + [anon_sym_DASH_EQ] = ACTIONS(1030), + [anon_sym_STAR_EQ] = ACTIONS(1030), + [anon_sym_SLASH_EQ] = ACTIONS(1030), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1030), + [sym__newline] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_err_GT_PIPE] = ACTIONS(1030), + [anon_sym_out_GT_PIPE] = ACTIONS(1030), + [anon_sym_e_GT_PIPE] = ACTIONS(1030), + [anon_sym_o_GT_PIPE] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1030), + [anon_sym_RPAREN] = ACTIONS(1030), + [anon_sym_RBRACE] = ACTIONS(1030), + [anon_sym_QMARK2] = ACTIONS(4418), + [aux_sym_expr_binary_token1] = ACTIONS(1030), + [aux_sym_expr_binary_token2] = ACTIONS(1030), + [aux_sym_expr_binary_token3] = ACTIONS(1030), + [aux_sym_expr_binary_token4] = ACTIONS(1030), + [aux_sym_expr_binary_token5] = ACTIONS(1030), + [aux_sym_expr_binary_token6] = ACTIONS(1030), + [aux_sym_expr_binary_token7] = ACTIONS(1030), + [aux_sym_expr_binary_token8] = ACTIONS(1030), + [aux_sym_expr_binary_token9] = ACTIONS(1030), + [aux_sym_expr_binary_token10] = ACTIONS(1030), + [aux_sym_expr_binary_token11] = ACTIONS(1030), + [aux_sym_expr_binary_token12] = ACTIONS(1030), + [aux_sym_expr_binary_token13] = ACTIONS(1030), + [aux_sym_expr_binary_token14] = ACTIONS(1030), + [aux_sym_expr_binary_token15] = ACTIONS(1030), + [aux_sym_expr_binary_token16] = ACTIONS(1030), + [aux_sym_expr_binary_token17] = ACTIONS(1030), + [aux_sym_expr_binary_token18] = ACTIONS(1030), + [aux_sym_expr_binary_token19] = ACTIONS(1030), + [aux_sym_expr_binary_token20] = ACTIONS(1030), + [aux_sym_expr_binary_token21] = ACTIONS(1030), + [aux_sym_expr_binary_token22] = ACTIONS(1030), + [aux_sym_expr_binary_token23] = ACTIONS(1030), + [aux_sym_expr_binary_token24] = ACTIONS(1030), + [aux_sym_expr_binary_token25] = ACTIONS(1030), + [aux_sym_expr_binary_token26] = ACTIONS(1030), + [aux_sym_expr_binary_token27] = ACTIONS(1030), + [aux_sym_expr_binary_token28] = ACTIONS(1030), + [anon_sym_DOT_DOT2] = ACTIONS(1028), + [anon_sym_DOT] = ACTIONS(1028), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1030), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1030), + [anon_sym_err_GT] = ACTIONS(1028), + [anon_sym_out_GT] = ACTIONS(1028), + [anon_sym_e_GT] = ACTIONS(1028), + [anon_sym_o_GT] = ACTIONS(1028), + [anon_sym_err_PLUSout_GT] = ACTIONS(1028), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1028), + [anon_sym_o_PLUSe_GT] = ACTIONS(1028), + [anon_sym_e_PLUSo_GT] = ACTIONS(1028), + [anon_sym_err_GT_GT] = ACTIONS(1030), + [anon_sym_out_GT_GT] = ACTIONS(1030), + [anon_sym_e_GT_GT] = ACTIONS(1030), + [anon_sym_o_GT_GT] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1030), [anon_sym_POUND] = ACTIONS(247), }, [1175] = { + [sym__val_range] = STATE(7742), + [sym__value] = STATE(1814), + [sym_val_nothing] = STATE(1822), + [sym_val_bool] = STATE(1613), + [sym_val_variable] = STATE(1822), + [sym_val_number] = STATE(1822), + [sym__val_number_decimal] = STATE(1237), + [sym__val_number] = STATE(1866), + [sym_val_duration] = STATE(1822), + [sym_val_filesize] = STATE(1822), + [sym_val_binary] = STATE(1822), + [sym_val_string] = STATE(1822), + [sym__str_double_quotes] = STATE(1910), + [sym_val_interpolated] = STATE(1822), + [sym__inter_single_quotes] = STATE(1911), + [sym__inter_double_quotes] = STATE(1912), + [sym_val_list] = STATE(1822), + [sym_val_record] = STATE(1822), + [sym_val_table] = STATE(1822), + [sym_val_closure] = STATE(1822), + [sym_unquoted] = STATE(1815), + [sym__unquoted_anonymous_prefix] = STATE(7749), [sym_comment] = STATE(1175), - [anon_sym_true] = ACTIONS(3605), - [anon_sym_false] = ACTIONS(3605), - [anon_sym_null] = ACTIONS(3605), - [aux_sym_cmd_identifier_token38] = ACTIONS(3605), - [aux_sym_cmd_identifier_token39] = ACTIONS(3605), - [aux_sym_cmd_identifier_token40] = ACTIONS(3605), - [sym__newline] = ACTIONS(3605), - [anon_sym_LBRACK] = ACTIONS(3605), - [anon_sym_LPAREN] = ACTIONS(3605), - [anon_sym_COMMA] = ACTIONS(3605), - [anon_sym_DOLLAR] = ACTIONS(3605), - [aux_sym_ctrl_match_token1] = ACTIONS(3605), - [anon_sym_RBRACE] = ACTIONS(3605), - [anon_sym__] = ACTIONS(3607), - [anon_sym_DOT_DOT] = ACTIONS(3607), - [aux_sym_expr_binary_token1] = ACTIONS(3605), - [aux_sym_expr_binary_token2] = ACTIONS(3605), - [aux_sym_expr_binary_token3] = ACTIONS(3605), - [aux_sym_expr_binary_token4] = ACTIONS(3605), - [aux_sym_expr_binary_token5] = ACTIONS(3605), - [aux_sym_expr_binary_token6] = ACTIONS(3605), - [aux_sym_expr_binary_token7] = ACTIONS(3605), - [aux_sym_expr_binary_token8] = ACTIONS(3605), - [aux_sym_expr_binary_token9] = ACTIONS(3605), - [aux_sym_expr_binary_token10] = ACTIONS(3605), - [aux_sym_expr_binary_token11] = ACTIONS(3605), - [aux_sym_expr_binary_token12] = ACTIONS(3605), - [aux_sym_expr_binary_token13] = ACTIONS(3605), - [aux_sym_expr_binary_token14] = ACTIONS(3605), - [aux_sym_expr_binary_token15] = ACTIONS(3605), - [aux_sym_expr_binary_token16] = ACTIONS(3605), - [aux_sym_expr_binary_token17] = ACTIONS(3605), - [aux_sym_expr_binary_token18] = ACTIONS(3605), - [aux_sym_expr_binary_token19] = ACTIONS(3605), - [aux_sym_expr_binary_token20] = ACTIONS(3605), - [aux_sym_expr_binary_token21] = ACTIONS(3605), - [aux_sym_expr_binary_token22] = ACTIONS(3605), - [aux_sym_expr_binary_token23] = ACTIONS(3605), - [aux_sym_expr_binary_token24] = ACTIONS(3605), - [aux_sym_expr_binary_token25] = ACTIONS(3605), - [aux_sym_expr_binary_token26] = ACTIONS(3605), - [aux_sym_expr_binary_token27] = ACTIONS(3605), - [aux_sym_expr_binary_token28] = ACTIONS(3605), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3605), - [anon_sym_DOT_DOT_LT] = ACTIONS(3605), - [aux_sym__val_number_decimal_token1] = ACTIONS(3607), - [aux_sym__val_number_decimal_token2] = ACTIONS(3605), - [aux_sym__val_number_decimal_token3] = ACTIONS(3605), - [aux_sym__val_number_decimal_token4] = ACTIONS(3605), - [aux_sym__val_number_token1] = ACTIONS(3605), - [aux_sym__val_number_token2] = ACTIONS(3605), - [aux_sym__val_number_token3] = ACTIONS(3605), - [anon_sym_0b] = ACTIONS(3607), - [anon_sym_0o] = ACTIONS(3607), - [anon_sym_0x] = ACTIONS(3607), - [sym_val_date] = ACTIONS(3605), - [anon_sym_DQUOTE] = ACTIONS(3605), - [sym__str_single_quotes] = ACTIONS(3605), - [sym__str_back_ticks] = ACTIONS(3605), - [anon_sym_err_GT] = ACTIONS(3607), - [anon_sym_out_GT] = ACTIONS(3607), - [anon_sym_e_GT] = ACTIONS(3607), - [anon_sym_o_GT] = ACTIONS(3607), - [anon_sym_err_PLUSout_GT] = ACTIONS(3607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3607), - [anon_sym_o_PLUSe_GT] = ACTIONS(3607), - [anon_sym_e_PLUSo_GT] = ACTIONS(3607), - [anon_sym_err_GT_GT] = ACTIONS(3605), - [anon_sym_out_GT_GT] = ACTIONS(3605), - [anon_sym_e_GT_GT] = ACTIONS(3605), - [anon_sym_o_GT_GT] = ACTIONS(3605), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3605), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3605), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3605), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3605), - [aux_sym_unquoted_token1] = ACTIONS(3607), + [anon_sym_true] = ACTIONS(4177), + [anon_sym_false] = ACTIONS(4177), + [anon_sym_null] = ACTIONS(4179), + [aux_sym_cmd_identifier_token38] = ACTIONS(4181), + [aux_sym_cmd_identifier_token39] = ACTIONS(4181), + [aux_sym_cmd_identifier_token40] = ACTIONS(4181), + [anon_sym_LBRACK] = ACTIONS(2760), + [anon_sym_LPAREN] = ACTIONS(4183), + [anon_sym_DOLLAR] = ACTIONS(3934), + [aux_sym_ctrl_match_token1] = ACTIONS(2770), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), + [anon_sym_DOT_DOT_LT] = ACTIONS(4187), + [aux_sym__val_number_decimal_token1] = ACTIONS(4189), + [aux_sym__val_number_decimal_token2] = ACTIONS(4191), + [aux_sym__val_number_decimal_token3] = ACTIONS(4193), + [aux_sym__val_number_decimal_token4] = ACTIONS(4195), + [aux_sym__val_number_token1] = ACTIONS(2784), + [aux_sym__val_number_token2] = ACTIONS(2784), + [aux_sym__val_number_token3] = ACTIONS(2784), + [anon_sym_0b] = ACTIONS(2786), + [anon_sym_0o] = ACTIONS(2788), + [anon_sym_0x] = ACTIONS(2788), + [sym_val_date] = ACTIONS(4197), + [anon_sym_DQUOTE] = ACTIONS(2792), + [sym__str_single_quotes] = ACTIONS(2794), + [sym__str_back_ticks] = ACTIONS(2794), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2796), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2798), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(4199), [anon_sym_POUND] = ACTIONS(247), }, [1176] = { [sym_comment] = STATE(1176), - [anon_sym_true] = ACTIONS(2342), - [anon_sym_false] = ACTIONS(2342), - [anon_sym_null] = ACTIONS(2342), - [aux_sym_cmd_identifier_token38] = ACTIONS(2342), - [aux_sym_cmd_identifier_token39] = ACTIONS(2342), - [aux_sym_cmd_identifier_token40] = ACTIONS(2342), - [sym__newline] = ACTIONS(2342), - [anon_sym_LBRACK] = ACTIONS(2342), - [anon_sym_LPAREN] = ACTIONS(2342), - [anon_sym_COMMA] = ACTIONS(2342), - [anon_sym_DOLLAR] = ACTIONS(2342), - [aux_sym_ctrl_match_token1] = ACTIONS(2342), - [anon_sym_RBRACE] = ACTIONS(2342), - [anon_sym__] = ACTIONS(2340), - [anon_sym_DOT_DOT] = ACTIONS(2340), - [aux_sym_expr_binary_token1] = ACTIONS(2342), - [aux_sym_expr_binary_token2] = ACTIONS(2342), - [aux_sym_expr_binary_token3] = ACTIONS(2342), - [aux_sym_expr_binary_token4] = ACTIONS(2342), - [aux_sym_expr_binary_token5] = ACTIONS(2342), - [aux_sym_expr_binary_token6] = ACTIONS(2342), - [aux_sym_expr_binary_token7] = ACTIONS(2342), - [aux_sym_expr_binary_token8] = ACTIONS(2342), - [aux_sym_expr_binary_token9] = ACTIONS(2342), - [aux_sym_expr_binary_token10] = ACTIONS(2342), - [aux_sym_expr_binary_token11] = ACTIONS(2342), - [aux_sym_expr_binary_token12] = ACTIONS(2342), - [aux_sym_expr_binary_token13] = ACTIONS(2342), - [aux_sym_expr_binary_token14] = ACTIONS(2342), - [aux_sym_expr_binary_token15] = ACTIONS(2342), - [aux_sym_expr_binary_token16] = ACTIONS(2342), - [aux_sym_expr_binary_token17] = ACTIONS(2342), - [aux_sym_expr_binary_token18] = ACTIONS(2342), - [aux_sym_expr_binary_token19] = ACTIONS(2342), - [aux_sym_expr_binary_token20] = ACTIONS(2342), - [aux_sym_expr_binary_token21] = ACTIONS(2342), - [aux_sym_expr_binary_token22] = ACTIONS(2342), - [aux_sym_expr_binary_token23] = ACTIONS(2342), - [aux_sym_expr_binary_token24] = ACTIONS(2342), - [aux_sym_expr_binary_token25] = ACTIONS(2342), - [aux_sym_expr_binary_token26] = ACTIONS(2342), - [aux_sym_expr_binary_token27] = ACTIONS(2342), - [aux_sym_expr_binary_token28] = ACTIONS(2342), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2342), - [anon_sym_DOT_DOT_LT] = ACTIONS(2342), - [aux_sym__val_number_decimal_token1] = ACTIONS(2340), - [aux_sym__val_number_decimal_token2] = ACTIONS(2342), - [aux_sym__val_number_decimal_token3] = ACTIONS(2342), - [aux_sym__val_number_decimal_token4] = ACTIONS(2342), - [aux_sym__val_number_token1] = ACTIONS(2342), - [aux_sym__val_number_token2] = ACTIONS(2342), - [aux_sym__val_number_token3] = ACTIONS(2342), - [anon_sym_0b] = ACTIONS(2340), - [anon_sym_0o] = ACTIONS(2340), - [anon_sym_0x] = ACTIONS(2340), - [sym_val_date] = ACTIONS(2342), - [anon_sym_DQUOTE] = ACTIONS(2342), - [sym__str_single_quotes] = ACTIONS(2342), - [sym__str_back_ticks] = ACTIONS(2342), - [anon_sym_err_GT] = ACTIONS(2340), - [anon_sym_out_GT] = ACTIONS(2340), - [anon_sym_e_GT] = ACTIONS(2340), - [anon_sym_o_GT] = ACTIONS(2340), - [anon_sym_err_PLUSout_GT] = ACTIONS(2340), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2340), - [anon_sym_o_PLUSe_GT] = ACTIONS(2340), - [anon_sym_e_PLUSo_GT] = ACTIONS(2340), - [anon_sym_err_GT_GT] = ACTIONS(2342), - [anon_sym_out_GT_GT] = ACTIONS(2342), - [anon_sym_e_GT_GT] = ACTIONS(2342), - [anon_sym_o_GT_GT] = ACTIONS(2342), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2342), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2342), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2342), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2342), - [aux_sym_unquoted_token1] = ACTIONS(2340), + [ts_builtin_sym_end] = ACTIONS(1519), + [anon_sym_true] = ACTIONS(1519), + [anon_sym_false] = ACTIONS(1519), + [anon_sym_null] = ACTIONS(1519), + [aux_sym_cmd_identifier_token38] = ACTIONS(1519), + [aux_sym_cmd_identifier_token39] = ACTIONS(1519), + [aux_sym_cmd_identifier_token40] = ACTIONS(1519), + [sym__newline] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1519), + [anon_sym_err_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_GT_PIPE] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_DOLLAR] = ACTIONS(1517), + [anon_sym_DASH_DASH] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1517), + [aux_sym_ctrl_match_token1] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_DOT_DOT2] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1517), + [anon_sym_DOT_DOT_LT] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token1] = ACTIONS(1517), + [aux_sym__val_number_decimal_token2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1519), + [aux_sym__val_number_token1] = ACTIONS(1519), + [aux_sym__val_number_token2] = ACTIONS(1519), + [aux_sym__val_number_token3] = ACTIONS(1519), + [anon_sym_0b] = ACTIONS(1517), + [sym_filesize_unit] = ACTIONS(1519), + [sym_duration_unit] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1517), + [sym_val_date] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1519), + [sym__str_single_quotes] = ACTIONS(1519), + [sym__str_back_ticks] = ACTIONS(1519), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1519), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1519), + [anon_sym_err_GT] = ACTIONS(1517), + [anon_sym_out_GT] = ACTIONS(1517), + [anon_sym_e_GT] = ACTIONS(1517), + [anon_sym_o_GT] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT] = ACTIONS(1517), + [anon_sym_err_GT_GT] = ACTIONS(1519), + [anon_sym_out_GT_GT] = ACTIONS(1519), + [anon_sym_e_GT_GT] = ACTIONS(1519), + [anon_sym_o_GT_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), + [aux_sym_unquoted_token1] = ACTIONS(1517), + [aux_sym_unquoted_token2] = ACTIONS(1517), [anon_sym_POUND] = ACTIONS(247), }, [1177] = { [sym_comment] = STATE(1177), - [anon_sym_true] = ACTIONS(2346), - [anon_sym_false] = ACTIONS(2346), - [anon_sym_null] = ACTIONS(2346), - [aux_sym_cmd_identifier_token38] = ACTIONS(2346), - [aux_sym_cmd_identifier_token39] = ACTIONS(2346), - [aux_sym_cmd_identifier_token40] = ACTIONS(2346), - [sym__newline] = ACTIONS(2346), - [anon_sym_LBRACK] = ACTIONS(2346), - [anon_sym_LPAREN] = ACTIONS(2346), - [anon_sym_COMMA] = ACTIONS(2346), - [anon_sym_DOLLAR] = ACTIONS(2346), - [aux_sym_ctrl_match_token1] = ACTIONS(2346), - [anon_sym_RBRACE] = ACTIONS(2346), - [anon_sym__] = ACTIONS(2344), - [anon_sym_DOT_DOT] = ACTIONS(2344), - [aux_sym_expr_binary_token1] = ACTIONS(2346), - [aux_sym_expr_binary_token2] = ACTIONS(2346), - [aux_sym_expr_binary_token3] = ACTIONS(2346), - [aux_sym_expr_binary_token4] = ACTIONS(2346), - [aux_sym_expr_binary_token5] = ACTIONS(2346), - [aux_sym_expr_binary_token6] = ACTIONS(2346), - [aux_sym_expr_binary_token7] = ACTIONS(2346), - [aux_sym_expr_binary_token8] = ACTIONS(2346), - [aux_sym_expr_binary_token9] = ACTIONS(2346), - [aux_sym_expr_binary_token10] = ACTIONS(2346), - [aux_sym_expr_binary_token11] = ACTIONS(2346), - [aux_sym_expr_binary_token12] = ACTIONS(2346), - [aux_sym_expr_binary_token13] = ACTIONS(2346), - [aux_sym_expr_binary_token14] = ACTIONS(2346), - [aux_sym_expr_binary_token15] = ACTIONS(2346), - [aux_sym_expr_binary_token16] = ACTIONS(2346), - [aux_sym_expr_binary_token17] = ACTIONS(2346), - [aux_sym_expr_binary_token18] = ACTIONS(2346), - [aux_sym_expr_binary_token19] = ACTIONS(2346), - [aux_sym_expr_binary_token20] = ACTIONS(2346), - [aux_sym_expr_binary_token21] = ACTIONS(2346), - [aux_sym_expr_binary_token22] = ACTIONS(2346), - [aux_sym_expr_binary_token23] = ACTIONS(2346), - [aux_sym_expr_binary_token24] = ACTIONS(2346), - [aux_sym_expr_binary_token25] = ACTIONS(2346), - [aux_sym_expr_binary_token26] = ACTIONS(2346), - [aux_sym_expr_binary_token27] = ACTIONS(2346), - [aux_sym_expr_binary_token28] = ACTIONS(2346), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2346), - [anon_sym_DOT_DOT_LT] = ACTIONS(2346), - [aux_sym__val_number_decimal_token1] = ACTIONS(2344), - [aux_sym__val_number_decimal_token2] = ACTIONS(2346), - [aux_sym__val_number_decimal_token3] = ACTIONS(2346), - [aux_sym__val_number_decimal_token4] = ACTIONS(2346), - [aux_sym__val_number_token1] = ACTIONS(2346), - [aux_sym__val_number_token2] = ACTIONS(2346), - [aux_sym__val_number_token3] = ACTIONS(2346), - [anon_sym_0b] = ACTIONS(2344), - [anon_sym_0o] = ACTIONS(2344), - [anon_sym_0x] = ACTIONS(2344), - [sym_val_date] = ACTIONS(2346), - [anon_sym_DQUOTE] = ACTIONS(2346), - [sym__str_single_quotes] = ACTIONS(2346), - [sym__str_back_ticks] = ACTIONS(2346), - [anon_sym_err_GT] = ACTIONS(2344), - [anon_sym_out_GT] = ACTIONS(2344), - [anon_sym_e_GT] = ACTIONS(2344), - [anon_sym_o_GT] = ACTIONS(2344), - [anon_sym_err_PLUSout_GT] = ACTIONS(2344), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2344), - [anon_sym_o_PLUSe_GT] = ACTIONS(2344), - [anon_sym_e_PLUSo_GT] = ACTIONS(2344), - [anon_sym_err_GT_GT] = ACTIONS(2346), - [anon_sym_out_GT_GT] = ACTIONS(2346), - [anon_sym_e_GT_GT] = ACTIONS(2346), - [anon_sym_o_GT_GT] = ACTIONS(2346), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2346), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2346), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2346), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2346), - [aux_sym_unquoted_token1] = ACTIONS(2344), + [anon_sym_EQ] = ACTIONS(1060), + [anon_sym_PLUS_EQ] = ACTIONS(1062), + [anon_sym_DASH_EQ] = ACTIONS(1062), + [anon_sym_STAR_EQ] = ACTIONS(1062), + [anon_sym_SLASH_EQ] = ACTIONS(1062), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1062), + [sym__newline] = ACTIONS(1062), + [anon_sym_SEMI] = ACTIONS(1062), + [anon_sym_PIPE] = ACTIONS(1062), + [anon_sym_err_GT_PIPE] = ACTIONS(1062), + [anon_sym_out_GT_PIPE] = ACTIONS(1062), + [anon_sym_e_GT_PIPE] = ACTIONS(1062), + [anon_sym_o_GT_PIPE] = ACTIONS(1062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1062), + [anon_sym_RPAREN] = ACTIONS(1062), + [anon_sym_RBRACE] = ACTIONS(1062), + [aux_sym_expr_binary_token1] = ACTIONS(1062), + [aux_sym_expr_binary_token2] = ACTIONS(1062), + [aux_sym_expr_binary_token3] = ACTIONS(1062), + [aux_sym_expr_binary_token4] = ACTIONS(1062), + [aux_sym_expr_binary_token5] = ACTIONS(1062), + [aux_sym_expr_binary_token6] = ACTIONS(1062), + [aux_sym_expr_binary_token7] = ACTIONS(1062), + [aux_sym_expr_binary_token8] = ACTIONS(1062), + [aux_sym_expr_binary_token9] = ACTIONS(1062), + [aux_sym_expr_binary_token10] = ACTIONS(1062), + [aux_sym_expr_binary_token11] = ACTIONS(1062), + [aux_sym_expr_binary_token12] = ACTIONS(1062), + [aux_sym_expr_binary_token13] = ACTIONS(1062), + [aux_sym_expr_binary_token14] = ACTIONS(1062), + [aux_sym_expr_binary_token15] = ACTIONS(1062), + [aux_sym_expr_binary_token16] = ACTIONS(1062), + [aux_sym_expr_binary_token17] = ACTIONS(1062), + [aux_sym_expr_binary_token18] = ACTIONS(1062), + [aux_sym_expr_binary_token19] = ACTIONS(1062), + [aux_sym_expr_binary_token20] = ACTIONS(1062), + [aux_sym_expr_binary_token21] = ACTIONS(1062), + [aux_sym_expr_binary_token22] = ACTIONS(1062), + [aux_sym_expr_binary_token23] = ACTIONS(1062), + [aux_sym_expr_binary_token24] = ACTIONS(1062), + [aux_sym_expr_binary_token25] = ACTIONS(1062), + [aux_sym_expr_binary_token26] = ACTIONS(1062), + [aux_sym_expr_binary_token27] = ACTIONS(1062), + [aux_sym_expr_binary_token28] = ACTIONS(1062), + [anon_sym_DOT_DOT2] = ACTIONS(1060), + [anon_sym_DOT] = ACTIONS(1060), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1062), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1062), + [anon_sym_err_GT] = ACTIONS(1060), + [anon_sym_out_GT] = ACTIONS(1060), + [anon_sym_e_GT] = ACTIONS(1060), + [anon_sym_o_GT] = ACTIONS(1060), + [anon_sym_err_PLUSout_GT] = ACTIONS(1060), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1060), + [anon_sym_o_PLUSe_GT] = ACTIONS(1060), + [anon_sym_e_PLUSo_GT] = ACTIONS(1060), + [anon_sym_err_GT_GT] = ACTIONS(1062), + [anon_sym_out_GT_GT] = ACTIONS(1062), + [anon_sym_e_GT_GT] = ACTIONS(1062), + [anon_sym_o_GT_GT] = ACTIONS(1062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1062), [anon_sym_POUND] = ACTIONS(247), }, [1178] = { [sym_comment] = STATE(1178), - [anon_sym_true] = ACTIONS(1881), - [anon_sym_false] = ACTIONS(1881), - [anon_sym_null] = ACTIONS(1881), - [aux_sym_cmd_identifier_token38] = ACTIONS(1881), - [aux_sym_cmd_identifier_token39] = ACTIONS(1881), - [aux_sym_cmd_identifier_token40] = ACTIONS(1881), - [sym__newline] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_COMMA] = ACTIONS(1881), - [anon_sym_DOLLAR] = ACTIONS(1881), - [aux_sym_ctrl_match_token1] = ACTIONS(1881), - [anon_sym_RBRACE] = ACTIONS(1881), - [anon_sym__] = ACTIONS(1879), - [anon_sym_DOT_DOT] = ACTIONS(1879), - [aux_sym_expr_binary_token1] = ACTIONS(1881), - [aux_sym_expr_binary_token2] = ACTIONS(1881), - [aux_sym_expr_binary_token3] = ACTIONS(1881), - [aux_sym_expr_binary_token4] = ACTIONS(1881), - [aux_sym_expr_binary_token5] = ACTIONS(1881), - [aux_sym_expr_binary_token6] = ACTIONS(1881), - [aux_sym_expr_binary_token7] = ACTIONS(1881), - [aux_sym_expr_binary_token8] = ACTIONS(1881), - [aux_sym_expr_binary_token9] = ACTIONS(1881), - [aux_sym_expr_binary_token10] = ACTIONS(1881), - [aux_sym_expr_binary_token11] = ACTIONS(1881), - [aux_sym_expr_binary_token12] = ACTIONS(1881), - [aux_sym_expr_binary_token13] = ACTIONS(1881), - [aux_sym_expr_binary_token14] = ACTIONS(1881), - [aux_sym_expr_binary_token15] = ACTIONS(1881), - [aux_sym_expr_binary_token16] = ACTIONS(1881), - [aux_sym_expr_binary_token17] = ACTIONS(1881), - [aux_sym_expr_binary_token18] = ACTIONS(1881), - [aux_sym_expr_binary_token19] = ACTIONS(1881), - [aux_sym_expr_binary_token20] = ACTIONS(1881), - [aux_sym_expr_binary_token21] = ACTIONS(1881), - [aux_sym_expr_binary_token22] = ACTIONS(1881), - [aux_sym_expr_binary_token23] = ACTIONS(1881), - [aux_sym_expr_binary_token24] = ACTIONS(1881), - [aux_sym_expr_binary_token25] = ACTIONS(1881), - [aux_sym_expr_binary_token26] = ACTIONS(1881), - [aux_sym_expr_binary_token27] = ACTIONS(1881), - [aux_sym_expr_binary_token28] = ACTIONS(1881), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1881), - [anon_sym_DOT_DOT_LT] = ACTIONS(1881), - [aux_sym__val_number_decimal_token1] = ACTIONS(1879), - [aux_sym__val_number_decimal_token2] = ACTIONS(1881), - [aux_sym__val_number_decimal_token3] = ACTIONS(1881), - [aux_sym__val_number_decimal_token4] = ACTIONS(1881), - [aux_sym__val_number_token1] = ACTIONS(1881), - [aux_sym__val_number_token2] = ACTIONS(1881), - [aux_sym__val_number_token3] = ACTIONS(1881), - [anon_sym_0b] = ACTIONS(1879), - [anon_sym_0o] = ACTIONS(1879), - [anon_sym_0x] = ACTIONS(1879), - [sym_val_date] = ACTIONS(1881), - [anon_sym_DQUOTE] = ACTIONS(1881), - [sym__str_single_quotes] = ACTIONS(1881), - [sym__str_back_ticks] = ACTIONS(1881), - [anon_sym_err_GT] = ACTIONS(1879), - [anon_sym_out_GT] = ACTIONS(1879), - [anon_sym_e_GT] = ACTIONS(1879), - [anon_sym_o_GT] = ACTIONS(1879), - [anon_sym_err_PLUSout_GT] = ACTIONS(1879), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1879), - [anon_sym_o_PLUSe_GT] = ACTIONS(1879), - [anon_sym_e_PLUSo_GT] = ACTIONS(1879), - [anon_sym_err_GT_GT] = ACTIONS(1881), - [anon_sym_out_GT_GT] = ACTIONS(1881), - [anon_sym_e_GT_GT] = ACTIONS(1881), - [anon_sym_o_GT_GT] = ACTIONS(1881), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1881), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1881), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1881), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1881), - [aux_sym_unquoted_token1] = ACTIONS(1879), + [ts_builtin_sym_end] = ACTIONS(1567), + [anon_sym_true] = ACTIONS(1567), + [anon_sym_false] = ACTIONS(1567), + [anon_sym_null] = ACTIONS(1567), + [aux_sym_cmd_identifier_token38] = ACTIONS(1567), + [aux_sym_cmd_identifier_token39] = ACTIONS(1567), + [aux_sym_cmd_identifier_token40] = ACTIONS(1567), + [sym__newline] = ACTIONS(1567), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_err_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_GT_PIPE] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), + [anon_sym_LBRACK] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_DOLLAR] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1565), + [aux_sym_ctrl_match_token1] = ACTIONS(1567), + [anon_sym_DOT_DOT] = ACTIONS(1565), + [anon_sym_LPAREN2] = ACTIONS(1567), + [anon_sym_DOT_DOT2] = ACTIONS(1565), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1565), + [anon_sym_DOT_DOT_LT] = ACTIONS(1565), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), + [aux_sym__val_number_decimal_token1] = ACTIONS(1565), + [aux_sym__val_number_decimal_token2] = ACTIONS(1567), + [aux_sym__val_number_decimal_token3] = ACTIONS(1567), + [aux_sym__val_number_decimal_token4] = ACTIONS(1567), + [aux_sym__val_number_token1] = ACTIONS(1567), + [aux_sym__val_number_token2] = ACTIONS(1567), + [aux_sym__val_number_token3] = ACTIONS(1567), + [anon_sym_0b] = ACTIONS(1565), + [sym_filesize_unit] = ACTIONS(1567), + [sym_duration_unit] = ACTIONS(1567), + [anon_sym_0o] = ACTIONS(1565), + [anon_sym_0x] = ACTIONS(1565), + [sym_val_date] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(1567), + [sym__str_single_quotes] = ACTIONS(1567), + [sym__str_back_ticks] = ACTIONS(1567), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1567), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1567), + [anon_sym_err_GT] = ACTIONS(1565), + [anon_sym_out_GT] = ACTIONS(1565), + [anon_sym_e_GT] = ACTIONS(1565), + [anon_sym_o_GT] = ACTIONS(1565), + [anon_sym_err_PLUSout_GT] = ACTIONS(1565), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), + [anon_sym_o_PLUSe_GT] = ACTIONS(1565), + [anon_sym_e_PLUSo_GT] = ACTIONS(1565), + [anon_sym_err_GT_GT] = ACTIONS(1567), + [anon_sym_out_GT_GT] = ACTIONS(1567), + [anon_sym_e_GT_GT] = ACTIONS(1567), + [anon_sym_o_GT_GT] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), + [aux_sym_unquoted_token1] = ACTIONS(1565), + [aux_sym_unquoted_token2] = ACTIONS(1565), [anon_sym_POUND] = ACTIONS(247), }, [1179] = { [sym_comment] = STATE(1179), - [anon_sym_true] = ACTIONS(2101), - [anon_sym_false] = ACTIONS(2101), - [anon_sym_null] = ACTIONS(2101), - [aux_sym_cmd_identifier_token38] = ACTIONS(2101), - [aux_sym_cmd_identifier_token39] = ACTIONS(2101), - [aux_sym_cmd_identifier_token40] = ACTIONS(2101), - [sym__newline] = ACTIONS(2101), - [anon_sym_LBRACK] = ACTIONS(2101), - [anon_sym_LPAREN] = ACTIONS(2101), - [anon_sym_COMMA] = ACTIONS(2101), - [anon_sym_DOLLAR] = ACTIONS(2101), - [aux_sym_ctrl_match_token1] = ACTIONS(2101), - [anon_sym_RBRACE] = ACTIONS(2101), - [anon_sym__] = ACTIONS(2097), - [anon_sym_DOT_DOT] = ACTIONS(2097), - [aux_sym_expr_binary_token1] = ACTIONS(2101), - [aux_sym_expr_binary_token2] = ACTIONS(2101), - [aux_sym_expr_binary_token3] = ACTIONS(2101), - [aux_sym_expr_binary_token4] = ACTIONS(2101), - [aux_sym_expr_binary_token5] = ACTIONS(2101), - [aux_sym_expr_binary_token6] = ACTIONS(2101), - [aux_sym_expr_binary_token7] = ACTIONS(2101), - [aux_sym_expr_binary_token8] = ACTIONS(2101), - [aux_sym_expr_binary_token9] = ACTIONS(2101), - [aux_sym_expr_binary_token10] = ACTIONS(2101), - [aux_sym_expr_binary_token11] = ACTIONS(2101), - [aux_sym_expr_binary_token12] = ACTIONS(2101), - [aux_sym_expr_binary_token13] = ACTIONS(2101), - [aux_sym_expr_binary_token14] = ACTIONS(2101), - [aux_sym_expr_binary_token15] = ACTIONS(2101), - [aux_sym_expr_binary_token16] = ACTIONS(2101), - [aux_sym_expr_binary_token17] = ACTIONS(2101), - [aux_sym_expr_binary_token18] = ACTIONS(2101), - [aux_sym_expr_binary_token19] = ACTIONS(2101), - [aux_sym_expr_binary_token20] = ACTIONS(2101), - [aux_sym_expr_binary_token21] = ACTIONS(2101), - [aux_sym_expr_binary_token22] = ACTIONS(2101), - [aux_sym_expr_binary_token23] = ACTIONS(2101), - [aux_sym_expr_binary_token24] = ACTIONS(2101), - [aux_sym_expr_binary_token25] = ACTIONS(2101), - [aux_sym_expr_binary_token26] = ACTIONS(2101), - [aux_sym_expr_binary_token27] = ACTIONS(2101), - [aux_sym_expr_binary_token28] = ACTIONS(2101), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2101), - [anon_sym_DOT_DOT_LT] = ACTIONS(2101), - [aux_sym__val_number_decimal_token1] = ACTIONS(2097), - [aux_sym__val_number_decimal_token2] = ACTIONS(2101), - [aux_sym__val_number_decimal_token3] = ACTIONS(2101), - [aux_sym__val_number_decimal_token4] = ACTIONS(2101), - [aux_sym__val_number_token1] = ACTIONS(2101), - [aux_sym__val_number_token2] = ACTIONS(2101), - [aux_sym__val_number_token3] = ACTIONS(2101), - [anon_sym_0b] = ACTIONS(2097), - [anon_sym_0o] = ACTIONS(2097), - [anon_sym_0x] = ACTIONS(2097), - [sym_val_date] = ACTIONS(2101), - [anon_sym_DQUOTE] = ACTIONS(2101), - [sym__str_single_quotes] = ACTIONS(2101), - [sym__str_back_ticks] = ACTIONS(2101), - [anon_sym_err_GT] = ACTIONS(2097), - [anon_sym_out_GT] = ACTIONS(2097), - [anon_sym_e_GT] = ACTIONS(2097), - [anon_sym_o_GT] = ACTIONS(2097), - [anon_sym_err_PLUSout_GT] = ACTIONS(2097), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2097), - [anon_sym_o_PLUSe_GT] = ACTIONS(2097), - [anon_sym_e_PLUSo_GT] = ACTIONS(2097), - [anon_sym_err_GT_GT] = ACTIONS(2101), - [anon_sym_out_GT_GT] = ACTIONS(2101), - [anon_sym_e_GT_GT] = ACTIONS(2101), - [anon_sym_o_GT_GT] = ACTIONS(2101), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2101), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2101), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2101), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2101), - [aux_sym_unquoted_token1] = ACTIONS(2097), + [ts_builtin_sym_end] = ACTIONS(1042), + [anon_sym_EQ] = ACTIONS(1040), + [anon_sym_PLUS_EQ] = ACTIONS(1042), + [anon_sym_DASH_EQ] = ACTIONS(1042), + [anon_sym_STAR_EQ] = ACTIONS(1042), + [anon_sym_SLASH_EQ] = ACTIONS(1042), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1042), + [sym__newline] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1042), + [anon_sym_PIPE] = ACTIONS(1042), + [anon_sym_err_GT_PIPE] = ACTIONS(1042), + [anon_sym_out_GT_PIPE] = ACTIONS(1042), + [anon_sym_e_GT_PIPE] = ACTIONS(1042), + [anon_sym_o_GT_PIPE] = ACTIONS(1042), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1042), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1042), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1042), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1042), + [anon_sym_QMARK2] = ACTIONS(1042), + [aux_sym_expr_binary_token1] = ACTIONS(1042), + [aux_sym_expr_binary_token2] = ACTIONS(1042), + [aux_sym_expr_binary_token3] = ACTIONS(1042), + [aux_sym_expr_binary_token4] = ACTIONS(1042), + [aux_sym_expr_binary_token5] = ACTIONS(1042), + [aux_sym_expr_binary_token6] = ACTIONS(1042), + [aux_sym_expr_binary_token7] = ACTIONS(1042), + [aux_sym_expr_binary_token8] = ACTIONS(1042), + [aux_sym_expr_binary_token9] = ACTIONS(1042), + [aux_sym_expr_binary_token10] = ACTIONS(1042), + [aux_sym_expr_binary_token11] = ACTIONS(1042), + [aux_sym_expr_binary_token12] = ACTIONS(1042), + [aux_sym_expr_binary_token13] = ACTIONS(1042), + [aux_sym_expr_binary_token14] = ACTIONS(1042), + [aux_sym_expr_binary_token15] = ACTIONS(1042), + [aux_sym_expr_binary_token16] = ACTIONS(1042), + [aux_sym_expr_binary_token17] = ACTIONS(1042), + [aux_sym_expr_binary_token18] = ACTIONS(1042), + [aux_sym_expr_binary_token19] = ACTIONS(1042), + [aux_sym_expr_binary_token20] = ACTIONS(1042), + [aux_sym_expr_binary_token21] = ACTIONS(1042), + [aux_sym_expr_binary_token22] = ACTIONS(1042), + [aux_sym_expr_binary_token23] = ACTIONS(1042), + [aux_sym_expr_binary_token24] = ACTIONS(1042), + [aux_sym_expr_binary_token25] = ACTIONS(1042), + [aux_sym_expr_binary_token26] = ACTIONS(1042), + [aux_sym_expr_binary_token27] = ACTIONS(1042), + [aux_sym_expr_binary_token28] = ACTIONS(1042), + [anon_sym_DOT_DOT2] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1042), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1042), + [anon_sym_err_GT] = ACTIONS(1040), + [anon_sym_out_GT] = ACTIONS(1040), + [anon_sym_e_GT] = ACTIONS(1040), + [anon_sym_o_GT] = ACTIONS(1040), + [anon_sym_err_PLUSout_GT] = ACTIONS(1040), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1040), + [anon_sym_o_PLUSe_GT] = ACTIONS(1040), + [anon_sym_e_PLUSo_GT] = ACTIONS(1040), + [anon_sym_err_GT_GT] = ACTIONS(1042), + [anon_sym_out_GT_GT] = ACTIONS(1042), + [anon_sym_e_GT_GT] = ACTIONS(1042), + [anon_sym_o_GT_GT] = ACTIONS(1042), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1042), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1042), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1042), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1042), [anon_sym_POUND] = ACTIONS(247), }, [1180] = { [sym_comment] = STATE(1180), - [anon_sym_true] = ACTIONS(2107), - [anon_sym_false] = ACTIONS(2107), - [anon_sym_null] = ACTIONS(2107), - [aux_sym_cmd_identifier_token38] = ACTIONS(2107), - [aux_sym_cmd_identifier_token39] = ACTIONS(2107), - [aux_sym_cmd_identifier_token40] = ACTIONS(2107), - [sym__newline] = ACTIONS(2107), - [anon_sym_LBRACK] = ACTIONS(2107), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_COMMA] = ACTIONS(2107), - [anon_sym_DOLLAR] = ACTIONS(2107), - [aux_sym_ctrl_match_token1] = ACTIONS(2107), - [anon_sym_RBRACE] = ACTIONS(2107), - [anon_sym__] = ACTIONS(2105), - [anon_sym_DOT_DOT] = ACTIONS(2105), - [aux_sym_expr_binary_token1] = ACTIONS(2107), - [aux_sym_expr_binary_token2] = ACTIONS(2107), - [aux_sym_expr_binary_token3] = ACTIONS(2107), - [aux_sym_expr_binary_token4] = ACTIONS(2107), - [aux_sym_expr_binary_token5] = ACTIONS(2107), - [aux_sym_expr_binary_token6] = ACTIONS(2107), - [aux_sym_expr_binary_token7] = ACTIONS(2107), - [aux_sym_expr_binary_token8] = ACTIONS(2107), - [aux_sym_expr_binary_token9] = ACTIONS(2107), - [aux_sym_expr_binary_token10] = ACTIONS(2107), - [aux_sym_expr_binary_token11] = ACTIONS(2107), - [aux_sym_expr_binary_token12] = ACTIONS(2107), - [aux_sym_expr_binary_token13] = ACTIONS(2107), - [aux_sym_expr_binary_token14] = ACTIONS(2107), - [aux_sym_expr_binary_token15] = ACTIONS(2107), - [aux_sym_expr_binary_token16] = ACTIONS(2107), - [aux_sym_expr_binary_token17] = ACTIONS(2107), - [aux_sym_expr_binary_token18] = ACTIONS(2107), - [aux_sym_expr_binary_token19] = ACTIONS(2107), - [aux_sym_expr_binary_token20] = ACTIONS(2107), - [aux_sym_expr_binary_token21] = ACTIONS(2107), - [aux_sym_expr_binary_token22] = ACTIONS(2107), - [aux_sym_expr_binary_token23] = ACTIONS(2107), - [aux_sym_expr_binary_token24] = ACTIONS(2107), - [aux_sym_expr_binary_token25] = ACTIONS(2107), - [aux_sym_expr_binary_token26] = ACTIONS(2107), - [aux_sym_expr_binary_token27] = ACTIONS(2107), - [aux_sym_expr_binary_token28] = ACTIONS(2107), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2107), - [anon_sym_DOT_DOT_LT] = ACTIONS(2107), - [aux_sym__val_number_decimal_token1] = ACTIONS(2105), - [aux_sym__val_number_decimal_token2] = ACTIONS(2107), - [aux_sym__val_number_decimal_token3] = ACTIONS(2107), - [aux_sym__val_number_decimal_token4] = ACTIONS(2107), - [aux_sym__val_number_token1] = ACTIONS(2107), - [aux_sym__val_number_token2] = ACTIONS(2107), - [aux_sym__val_number_token3] = ACTIONS(2107), - [anon_sym_0b] = ACTIONS(2105), - [anon_sym_0o] = ACTIONS(2105), - [anon_sym_0x] = ACTIONS(2105), - [sym_val_date] = ACTIONS(2107), - [anon_sym_DQUOTE] = ACTIONS(2107), - [sym__str_single_quotes] = ACTIONS(2107), - [sym__str_back_ticks] = ACTIONS(2107), - [anon_sym_err_GT] = ACTIONS(2105), - [anon_sym_out_GT] = ACTIONS(2105), - [anon_sym_e_GT] = ACTIONS(2105), - [anon_sym_o_GT] = ACTIONS(2105), - [anon_sym_err_PLUSout_GT] = ACTIONS(2105), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2105), - [anon_sym_o_PLUSe_GT] = ACTIONS(2105), - [anon_sym_e_PLUSo_GT] = ACTIONS(2105), - [anon_sym_err_GT_GT] = ACTIONS(2107), - [anon_sym_out_GT_GT] = ACTIONS(2107), - [anon_sym_e_GT_GT] = ACTIONS(2107), - [anon_sym_o_GT_GT] = ACTIONS(2107), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2107), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2107), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2107), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2107), - [aux_sym_unquoted_token1] = ACTIONS(2105), + [ts_builtin_sym_end] = ACTIONS(1046), + [anon_sym_EQ] = ACTIONS(1044), + [anon_sym_PLUS_EQ] = ACTIONS(1046), + [anon_sym_DASH_EQ] = ACTIONS(1046), + [anon_sym_STAR_EQ] = ACTIONS(1046), + [anon_sym_SLASH_EQ] = ACTIONS(1046), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1046), + [sym__newline] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_err_GT_PIPE] = ACTIONS(1046), + [anon_sym_out_GT_PIPE] = ACTIONS(1046), + [anon_sym_e_GT_PIPE] = ACTIONS(1046), + [anon_sym_o_GT_PIPE] = ACTIONS(1046), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1046), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1046), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1046), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1046), + [anon_sym_QMARK2] = ACTIONS(1046), + [aux_sym_expr_binary_token1] = ACTIONS(1046), + [aux_sym_expr_binary_token2] = ACTIONS(1046), + [aux_sym_expr_binary_token3] = ACTIONS(1046), + [aux_sym_expr_binary_token4] = ACTIONS(1046), + [aux_sym_expr_binary_token5] = ACTIONS(1046), + [aux_sym_expr_binary_token6] = ACTIONS(1046), + [aux_sym_expr_binary_token7] = ACTIONS(1046), + [aux_sym_expr_binary_token8] = ACTIONS(1046), + [aux_sym_expr_binary_token9] = ACTIONS(1046), + [aux_sym_expr_binary_token10] = ACTIONS(1046), + [aux_sym_expr_binary_token11] = ACTIONS(1046), + [aux_sym_expr_binary_token12] = ACTIONS(1046), + [aux_sym_expr_binary_token13] = ACTIONS(1046), + [aux_sym_expr_binary_token14] = ACTIONS(1046), + [aux_sym_expr_binary_token15] = ACTIONS(1046), + [aux_sym_expr_binary_token16] = ACTIONS(1046), + [aux_sym_expr_binary_token17] = ACTIONS(1046), + [aux_sym_expr_binary_token18] = ACTIONS(1046), + [aux_sym_expr_binary_token19] = ACTIONS(1046), + [aux_sym_expr_binary_token20] = ACTIONS(1046), + [aux_sym_expr_binary_token21] = ACTIONS(1046), + [aux_sym_expr_binary_token22] = ACTIONS(1046), + [aux_sym_expr_binary_token23] = ACTIONS(1046), + [aux_sym_expr_binary_token24] = ACTIONS(1046), + [aux_sym_expr_binary_token25] = ACTIONS(1046), + [aux_sym_expr_binary_token26] = ACTIONS(1046), + [aux_sym_expr_binary_token27] = ACTIONS(1046), + [aux_sym_expr_binary_token28] = ACTIONS(1046), + [anon_sym_DOT_DOT2] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1044), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1046), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1046), + [anon_sym_err_GT] = ACTIONS(1044), + [anon_sym_out_GT] = ACTIONS(1044), + [anon_sym_e_GT] = ACTIONS(1044), + [anon_sym_o_GT] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT] = ACTIONS(1044), + [anon_sym_err_GT_GT] = ACTIONS(1046), + [anon_sym_out_GT_GT] = ACTIONS(1046), + [anon_sym_e_GT_GT] = ACTIONS(1046), + [anon_sym_o_GT_GT] = ACTIONS(1046), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1046), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1046), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1046), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1046), [anon_sym_POUND] = ACTIONS(247), }, [1181] = { [sym_comment] = STATE(1181), - [anon_sym_true] = ACTIONS(3601), - [anon_sym_false] = ACTIONS(3601), - [anon_sym_null] = ACTIONS(3601), - [aux_sym_cmd_identifier_token38] = ACTIONS(3601), - [aux_sym_cmd_identifier_token39] = ACTIONS(3601), - [aux_sym_cmd_identifier_token40] = ACTIONS(3601), - [sym__newline] = ACTIONS(3601), - [anon_sym_LBRACK] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3601), - [anon_sym_COMMA] = ACTIONS(3601), - [anon_sym_DOLLAR] = ACTIONS(3601), - [aux_sym_ctrl_match_token1] = ACTIONS(3601), - [anon_sym_RBRACE] = ACTIONS(3601), - [anon_sym__] = ACTIONS(3603), - [anon_sym_DOT_DOT] = ACTIONS(3603), - [aux_sym_expr_binary_token1] = ACTIONS(3609), - [aux_sym_expr_binary_token2] = ACTIONS(3609), - [aux_sym_expr_binary_token3] = ACTIONS(3601), - [aux_sym_expr_binary_token4] = ACTIONS(3601), - [aux_sym_expr_binary_token5] = ACTIONS(3601), - [aux_sym_expr_binary_token6] = ACTIONS(3601), - [aux_sym_expr_binary_token7] = ACTIONS(3601), - [aux_sym_expr_binary_token8] = ACTIONS(3601), - [aux_sym_expr_binary_token9] = ACTIONS(3601), - [aux_sym_expr_binary_token10] = ACTIONS(3601), - [aux_sym_expr_binary_token11] = ACTIONS(3601), - [aux_sym_expr_binary_token12] = ACTIONS(3601), - [aux_sym_expr_binary_token13] = ACTIONS(3601), - [aux_sym_expr_binary_token14] = ACTIONS(3601), - [aux_sym_expr_binary_token15] = ACTIONS(3601), - [aux_sym_expr_binary_token16] = ACTIONS(3601), - [aux_sym_expr_binary_token17] = ACTIONS(3601), - [aux_sym_expr_binary_token18] = ACTIONS(3601), - [aux_sym_expr_binary_token19] = ACTIONS(3601), - [aux_sym_expr_binary_token20] = ACTIONS(3601), - [aux_sym_expr_binary_token21] = ACTIONS(3601), - [aux_sym_expr_binary_token22] = ACTIONS(3601), - [aux_sym_expr_binary_token23] = ACTIONS(3601), - [aux_sym_expr_binary_token24] = ACTIONS(3601), - [aux_sym_expr_binary_token25] = ACTIONS(3601), - [aux_sym_expr_binary_token26] = ACTIONS(3601), - [aux_sym_expr_binary_token27] = ACTIONS(3601), - [aux_sym_expr_binary_token28] = ACTIONS(3601), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3601), - [anon_sym_DOT_DOT_LT] = ACTIONS(3601), - [aux_sym__val_number_decimal_token1] = ACTIONS(3603), - [aux_sym__val_number_decimal_token2] = ACTIONS(3601), - [aux_sym__val_number_decimal_token3] = ACTIONS(3601), - [aux_sym__val_number_decimal_token4] = ACTIONS(3601), - [aux_sym__val_number_token1] = ACTIONS(3601), - [aux_sym__val_number_token2] = ACTIONS(3601), - [aux_sym__val_number_token3] = ACTIONS(3601), - [anon_sym_0b] = ACTIONS(3603), - [anon_sym_0o] = ACTIONS(3603), - [anon_sym_0x] = ACTIONS(3603), - [sym_val_date] = ACTIONS(3601), - [anon_sym_DQUOTE] = ACTIONS(3601), - [sym__str_single_quotes] = ACTIONS(3601), - [sym__str_back_ticks] = ACTIONS(3601), - [anon_sym_err_GT] = ACTIONS(3603), - [anon_sym_out_GT] = ACTIONS(3603), - [anon_sym_e_GT] = ACTIONS(3603), - [anon_sym_o_GT] = ACTIONS(3603), - [anon_sym_err_PLUSout_GT] = ACTIONS(3603), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3603), - [anon_sym_o_PLUSe_GT] = ACTIONS(3603), - [anon_sym_e_PLUSo_GT] = ACTIONS(3603), - [anon_sym_err_GT_GT] = ACTIONS(3601), - [anon_sym_out_GT_GT] = ACTIONS(3601), - [anon_sym_e_GT_GT] = ACTIONS(3601), - [anon_sym_o_GT_GT] = ACTIONS(3601), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3601), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3601), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3601), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3601), - [aux_sym_unquoted_token1] = ACTIONS(3603), + [ts_builtin_sym_end] = ACTIONS(1050), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_PLUS_EQ] = ACTIONS(1050), + [anon_sym_DASH_EQ] = ACTIONS(1050), + [anon_sym_STAR_EQ] = ACTIONS(1050), + [anon_sym_SLASH_EQ] = ACTIONS(1050), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1050), + [sym__newline] = ACTIONS(1050), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_err_GT_PIPE] = ACTIONS(1050), + [anon_sym_out_GT_PIPE] = ACTIONS(1050), + [anon_sym_e_GT_PIPE] = ACTIONS(1050), + [anon_sym_o_GT_PIPE] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1050), + [anon_sym_QMARK2] = ACTIONS(1050), + [aux_sym_expr_binary_token1] = ACTIONS(1050), + [aux_sym_expr_binary_token2] = ACTIONS(1050), + [aux_sym_expr_binary_token3] = ACTIONS(1050), + [aux_sym_expr_binary_token4] = ACTIONS(1050), + [aux_sym_expr_binary_token5] = ACTIONS(1050), + [aux_sym_expr_binary_token6] = ACTIONS(1050), + [aux_sym_expr_binary_token7] = ACTIONS(1050), + [aux_sym_expr_binary_token8] = ACTIONS(1050), + [aux_sym_expr_binary_token9] = ACTIONS(1050), + [aux_sym_expr_binary_token10] = ACTIONS(1050), + [aux_sym_expr_binary_token11] = ACTIONS(1050), + [aux_sym_expr_binary_token12] = ACTIONS(1050), + [aux_sym_expr_binary_token13] = ACTIONS(1050), + [aux_sym_expr_binary_token14] = ACTIONS(1050), + [aux_sym_expr_binary_token15] = ACTIONS(1050), + [aux_sym_expr_binary_token16] = ACTIONS(1050), + [aux_sym_expr_binary_token17] = ACTIONS(1050), + [aux_sym_expr_binary_token18] = ACTIONS(1050), + [aux_sym_expr_binary_token19] = ACTIONS(1050), + [aux_sym_expr_binary_token20] = ACTIONS(1050), + [aux_sym_expr_binary_token21] = ACTIONS(1050), + [aux_sym_expr_binary_token22] = ACTIONS(1050), + [aux_sym_expr_binary_token23] = ACTIONS(1050), + [aux_sym_expr_binary_token24] = ACTIONS(1050), + [aux_sym_expr_binary_token25] = ACTIONS(1050), + [aux_sym_expr_binary_token26] = ACTIONS(1050), + [aux_sym_expr_binary_token27] = ACTIONS(1050), + [aux_sym_expr_binary_token28] = ACTIONS(1050), + [anon_sym_DOT_DOT2] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1050), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1050), + [anon_sym_err_GT] = ACTIONS(1048), + [anon_sym_out_GT] = ACTIONS(1048), + [anon_sym_e_GT] = ACTIONS(1048), + [anon_sym_o_GT] = ACTIONS(1048), + [anon_sym_err_PLUSout_GT] = ACTIONS(1048), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1048), + [anon_sym_o_PLUSe_GT] = ACTIONS(1048), + [anon_sym_e_PLUSo_GT] = ACTIONS(1048), + [anon_sym_err_GT_GT] = ACTIONS(1050), + [anon_sym_out_GT_GT] = ACTIONS(1050), + [anon_sym_e_GT_GT] = ACTIONS(1050), + [anon_sym_o_GT_GT] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1050), [anon_sym_POUND] = ACTIONS(247), }, [1182] = { [sym_comment] = STATE(1182), - [anon_sym_true] = ACTIONS(3601), - [anon_sym_false] = ACTIONS(3601), - [anon_sym_null] = ACTIONS(3601), - [aux_sym_cmd_identifier_token38] = ACTIONS(3601), - [aux_sym_cmd_identifier_token39] = ACTIONS(3601), - [aux_sym_cmd_identifier_token40] = ACTIONS(3601), - [sym__newline] = ACTIONS(3601), - [anon_sym_LBRACK] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3601), - [anon_sym_COMMA] = ACTIONS(3601), - [anon_sym_DOLLAR] = ACTIONS(3601), - [aux_sym_ctrl_match_token1] = ACTIONS(3601), - [anon_sym_RBRACE] = ACTIONS(3601), - [anon_sym__] = ACTIONS(3603), - [anon_sym_DOT_DOT] = ACTIONS(3603), - [aux_sym_expr_binary_token1] = ACTIONS(3609), - [aux_sym_expr_binary_token2] = ACTIONS(3609), - [aux_sym_expr_binary_token3] = ACTIONS(3611), - [aux_sym_expr_binary_token4] = ACTIONS(3611), - [aux_sym_expr_binary_token5] = ACTIONS(3611), - [aux_sym_expr_binary_token6] = ACTIONS(3611), - [aux_sym_expr_binary_token7] = ACTIONS(3601), - [aux_sym_expr_binary_token8] = ACTIONS(3601), - [aux_sym_expr_binary_token9] = ACTIONS(3601), - [aux_sym_expr_binary_token10] = ACTIONS(3601), - [aux_sym_expr_binary_token11] = ACTIONS(3601), - [aux_sym_expr_binary_token12] = ACTIONS(3601), - [aux_sym_expr_binary_token13] = ACTIONS(3601), - [aux_sym_expr_binary_token14] = ACTIONS(3601), - [aux_sym_expr_binary_token15] = ACTIONS(3601), - [aux_sym_expr_binary_token16] = ACTIONS(3601), - [aux_sym_expr_binary_token17] = ACTIONS(3601), - [aux_sym_expr_binary_token18] = ACTIONS(3601), - [aux_sym_expr_binary_token19] = ACTIONS(3601), - [aux_sym_expr_binary_token20] = ACTIONS(3601), - [aux_sym_expr_binary_token21] = ACTIONS(3601), - [aux_sym_expr_binary_token22] = ACTIONS(3601), - [aux_sym_expr_binary_token23] = ACTIONS(3601), - [aux_sym_expr_binary_token24] = ACTIONS(3601), - [aux_sym_expr_binary_token25] = ACTIONS(3601), - [aux_sym_expr_binary_token26] = ACTIONS(3601), - [aux_sym_expr_binary_token27] = ACTIONS(3601), - [aux_sym_expr_binary_token28] = ACTIONS(3601), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3601), - [anon_sym_DOT_DOT_LT] = ACTIONS(3601), - [aux_sym__val_number_decimal_token1] = ACTIONS(3603), - [aux_sym__val_number_decimal_token2] = ACTIONS(3601), - [aux_sym__val_number_decimal_token3] = ACTIONS(3601), - [aux_sym__val_number_decimal_token4] = ACTIONS(3601), - [aux_sym__val_number_token1] = ACTIONS(3601), - [aux_sym__val_number_token2] = ACTIONS(3601), - [aux_sym__val_number_token3] = ACTIONS(3601), - [anon_sym_0b] = ACTIONS(3603), - [anon_sym_0o] = ACTIONS(3603), - [anon_sym_0x] = ACTIONS(3603), - [sym_val_date] = ACTIONS(3601), - [anon_sym_DQUOTE] = ACTIONS(3601), - [sym__str_single_quotes] = ACTIONS(3601), - [sym__str_back_ticks] = ACTIONS(3601), - [anon_sym_err_GT] = ACTIONS(3603), - [anon_sym_out_GT] = ACTIONS(3603), - [anon_sym_e_GT] = ACTIONS(3603), - [anon_sym_o_GT] = ACTIONS(3603), - [anon_sym_err_PLUSout_GT] = ACTIONS(3603), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3603), - [anon_sym_o_PLUSe_GT] = ACTIONS(3603), - [anon_sym_e_PLUSo_GT] = ACTIONS(3603), - [anon_sym_err_GT_GT] = ACTIONS(3601), - [anon_sym_out_GT_GT] = ACTIONS(3601), - [anon_sym_e_GT_GT] = ACTIONS(3601), - [anon_sym_o_GT_GT] = ACTIONS(3601), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3601), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3601), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3601), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3601), - [aux_sym_unquoted_token1] = ACTIONS(3603), + [anon_sym_EQ] = ACTIONS(1060), + [anon_sym_PLUS_EQ] = ACTIONS(1062), + [anon_sym_DASH_EQ] = ACTIONS(1062), + [anon_sym_STAR_EQ] = ACTIONS(1062), + [anon_sym_SLASH_EQ] = ACTIONS(1062), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1062), + [sym__newline] = ACTIONS(1060), + [anon_sym_SEMI] = ACTIONS(1062), + [anon_sym_PIPE] = ACTIONS(1062), + [anon_sym_err_GT_PIPE] = ACTIONS(1062), + [anon_sym_out_GT_PIPE] = ACTIONS(1062), + [anon_sym_e_GT_PIPE] = ACTIONS(1062), + [anon_sym_o_GT_PIPE] = ACTIONS(1062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1062), + [anon_sym_RPAREN] = ACTIONS(1062), + [aux_sym_ctrl_match_token1] = ACTIONS(1062), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1062), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1062), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1062), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1062), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1062), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1062), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1062), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1062), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1062), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1062), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1062), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1062), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1062), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1062), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1062), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1062), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1062), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1062), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1062), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1062), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1062), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1062), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1062), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1062), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1062), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1062), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1062), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1062), + [anon_sym_DOT_DOT2] = ACTIONS(1060), + [anon_sym_DOT] = ACTIONS(1060), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1062), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1062), + [anon_sym_err_GT] = ACTIONS(1060), + [anon_sym_out_GT] = ACTIONS(1060), + [anon_sym_e_GT] = ACTIONS(1060), + [anon_sym_o_GT] = ACTIONS(1060), + [anon_sym_err_PLUSout_GT] = ACTIONS(1060), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1060), + [anon_sym_o_PLUSe_GT] = ACTIONS(1060), + [anon_sym_e_PLUSo_GT] = ACTIONS(1060), + [anon_sym_err_GT_GT] = ACTIONS(1062), + [anon_sym_out_GT_GT] = ACTIONS(1062), + [anon_sym_e_GT_GT] = ACTIONS(1062), + [anon_sym_o_GT_GT] = ACTIONS(1062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1062), [anon_sym_POUND] = ACTIONS(247), }, [1183] = { [sym_comment] = STATE(1183), - [anon_sym_true] = ACTIONS(3601), - [anon_sym_false] = ACTIONS(3601), - [anon_sym_null] = ACTIONS(3601), - [aux_sym_cmd_identifier_token38] = ACTIONS(3601), - [aux_sym_cmd_identifier_token39] = ACTIONS(3601), - [aux_sym_cmd_identifier_token40] = ACTIONS(3601), - [sym__newline] = ACTIONS(3601), - [anon_sym_LBRACK] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3601), - [anon_sym_COMMA] = ACTIONS(3601), - [anon_sym_DOLLAR] = ACTIONS(3601), - [aux_sym_ctrl_match_token1] = ACTIONS(3601), - [anon_sym_RBRACE] = ACTIONS(3601), - [anon_sym__] = ACTIONS(3603), - [anon_sym_DOT_DOT] = ACTIONS(3603), - [aux_sym_expr_binary_token1] = ACTIONS(3609), - [aux_sym_expr_binary_token2] = ACTIONS(3609), - [aux_sym_expr_binary_token3] = ACTIONS(3611), - [aux_sym_expr_binary_token4] = ACTIONS(3611), - [aux_sym_expr_binary_token5] = ACTIONS(3611), - [aux_sym_expr_binary_token6] = ACTIONS(3611), - [aux_sym_expr_binary_token7] = ACTIONS(3613), - [aux_sym_expr_binary_token8] = ACTIONS(3613), - [aux_sym_expr_binary_token9] = ACTIONS(3601), - [aux_sym_expr_binary_token10] = ACTIONS(3601), - [aux_sym_expr_binary_token11] = ACTIONS(3601), - [aux_sym_expr_binary_token12] = ACTIONS(3601), - [aux_sym_expr_binary_token13] = ACTIONS(3601), - [aux_sym_expr_binary_token14] = ACTIONS(3601), - [aux_sym_expr_binary_token15] = ACTIONS(3601), - [aux_sym_expr_binary_token16] = ACTIONS(3601), - [aux_sym_expr_binary_token17] = ACTIONS(3601), - [aux_sym_expr_binary_token18] = ACTIONS(3601), - [aux_sym_expr_binary_token19] = ACTIONS(3601), - [aux_sym_expr_binary_token20] = ACTIONS(3601), - [aux_sym_expr_binary_token21] = ACTIONS(3601), - [aux_sym_expr_binary_token22] = ACTIONS(3601), - [aux_sym_expr_binary_token23] = ACTIONS(3601), - [aux_sym_expr_binary_token24] = ACTIONS(3601), - [aux_sym_expr_binary_token25] = ACTIONS(3601), - [aux_sym_expr_binary_token26] = ACTIONS(3601), - [aux_sym_expr_binary_token27] = ACTIONS(3601), - [aux_sym_expr_binary_token28] = ACTIONS(3601), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3601), - [anon_sym_DOT_DOT_LT] = ACTIONS(3601), - [aux_sym__val_number_decimal_token1] = ACTIONS(3603), - [aux_sym__val_number_decimal_token2] = ACTIONS(3601), - [aux_sym__val_number_decimal_token3] = ACTIONS(3601), - [aux_sym__val_number_decimal_token4] = ACTIONS(3601), - [aux_sym__val_number_token1] = ACTIONS(3601), - [aux_sym__val_number_token2] = ACTIONS(3601), - [aux_sym__val_number_token3] = ACTIONS(3601), - [anon_sym_0b] = ACTIONS(3603), - [anon_sym_0o] = ACTIONS(3603), - [anon_sym_0x] = ACTIONS(3603), - [sym_val_date] = ACTIONS(3601), - [anon_sym_DQUOTE] = ACTIONS(3601), - [sym__str_single_quotes] = ACTIONS(3601), - [sym__str_back_ticks] = ACTIONS(3601), - [anon_sym_err_GT] = ACTIONS(3603), - [anon_sym_out_GT] = ACTIONS(3603), - [anon_sym_e_GT] = ACTIONS(3603), - [anon_sym_o_GT] = ACTIONS(3603), - [anon_sym_err_PLUSout_GT] = ACTIONS(3603), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3603), - [anon_sym_o_PLUSe_GT] = ACTIONS(3603), - [anon_sym_e_PLUSo_GT] = ACTIONS(3603), - [anon_sym_err_GT_GT] = ACTIONS(3601), - [anon_sym_out_GT_GT] = ACTIONS(3601), - [anon_sym_e_GT_GT] = ACTIONS(3601), - [anon_sym_o_GT_GT] = ACTIONS(3601), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3601), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3601), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3601), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3601), - [aux_sym_unquoted_token1] = ACTIONS(3603), + [ts_builtin_sym_end] = ACTIONS(1036), + [anon_sym_EQ] = ACTIONS(1034), + [anon_sym_PLUS_EQ] = ACTIONS(1036), + [anon_sym_DASH_EQ] = ACTIONS(1036), + [anon_sym_STAR_EQ] = ACTIONS(1036), + [anon_sym_SLASH_EQ] = ACTIONS(1036), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1036), + [sym__newline] = ACTIONS(1036), + [anon_sym_SEMI] = ACTIONS(1036), + [anon_sym_PIPE] = ACTIONS(1036), + [anon_sym_err_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_GT_PIPE] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), + [anon_sym_QMARK2] = ACTIONS(4420), + [aux_sym_expr_binary_token1] = ACTIONS(1036), + [aux_sym_expr_binary_token2] = ACTIONS(1036), + [aux_sym_expr_binary_token3] = ACTIONS(1036), + [aux_sym_expr_binary_token4] = ACTIONS(1036), + [aux_sym_expr_binary_token5] = ACTIONS(1036), + [aux_sym_expr_binary_token6] = ACTIONS(1036), + [aux_sym_expr_binary_token7] = ACTIONS(1036), + [aux_sym_expr_binary_token8] = ACTIONS(1036), + [aux_sym_expr_binary_token9] = ACTIONS(1036), + [aux_sym_expr_binary_token10] = ACTIONS(1036), + [aux_sym_expr_binary_token11] = ACTIONS(1036), + [aux_sym_expr_binary_token12] = ACTIONS(1036), + [aux_sym_expr_binary_token13] = ACTIONS(1036), + [aux_sym_expr_binary_token14] = ACTIONS(1036), + [aux_sym_expr_binary_token15] = ACTIONS(1036), + [aux_sym_expr_binary_token16] = ACTIONS(1036), + [aux_sym_expr_binary_token17] = ACTIONS(1036), + [aux_sym_expr_binary_token18] = ACTIONS(1036), + [aux_sym_expr_binary_token19] = ACTIONS(1036), + [aux_sym_expr_binary_token20] = ACTIONS(1036), + [aux_sym_expr_binary_token21] = ACTIONS(1036), + [aux_sym_expr_binary_token22] = ACTIONS(1036), + [aux_sym_expr_binary_token23] = ACTIONS(1036), + [aux_sym_expr_binary_token24] = ACTIONS(1036), + [aux_sym_expr_binary_token25] = ACTIONS(1036), + [aux_sym_expr_binary_token26] = ACTIONS(1036), + [aux_sym_expr_binary_token27] = ACTIONS(1036), + [aux_sym_expr_binary_token28] = ACTIONS(1036), + [anon_sym_DOT_DOT2] = ACTIONS(1034), + [anon_sym_DOT] = ACTIONS(1034), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1036), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1036), + [anon_sym_err_GT] = ACTIONS(1034), + [anon_sym_out_GT] = ACTIONS(1034), + [anon_sym_e_GT] = ACTIONS(1034), + [anon_sym_o_GT] = ACTIONS(1034), + [anon_sym_err_PLUSout_GT] = ACTIONS(1034), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), + [anon_sym_o_PLUSe_GT] = ACTIONS(1034), + [anon_sym_e_PLUSo_GT] = ACTIONS(1034), + [anon_sym_err_GT_GT] = ACTIONS(1036), + [anon_sym_out_GT_GT] = ACTIONS(1036), + [anon_sym_e_GT_GT] = ACTIONS(1036), + [anon_sym_o_GT_GT] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), [anon_sym_POUND] = ACTIONS(247), }, [1184] = { + [sym_path] = STATE(1252), [sym_comment] = STATE(1184), - [anon_sym_true] = ACTIONS(3601), - [anon_sym_false] = ACTIONS(3601), - [anon_sym_null] = ACTIONS(3601), - [aux_sym_cmd_identifier_token38] = ACTIONS(3601), - [aux_sym_cmd_identifier_token39] = ACTIONS(3601), - [aux_sym_cmd_identifier_token40] = ACTIONS(3601), - [sym__newline] = ACTIONS(3601), - [anon_sym_LBRACK] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3601), - [anon_sym_COMMA] = ACTIONS(3601), - [anon_sym_DOLLAR] = ACTIONS(3601), - [aux_sym_ctrl_match_token1] = ACTIONS(3601), - [anon_sym_RBRACE] = ACTIONS(3601), - [anon_sym__] = ACTIONS(3603), - [anon_sym_DOT_DOT] = ACTIONS(3603), - [aux_sym_expr_binary_token1] = ACTIONS(3609), - [aux_sym_expr_binary_token2] = ACTIONS(3609), - [aux_sym_expr_binary_token3] = ACTIONS(3611), - [aux_sym_expr_binary_token4] = ACTIONS(3611), - [aux_sym_expr_binary_token5] = ACTIONS(3611), - [aux_sym_expr_binary_token6] = ACTIONS(3611), - [aux_sym_expr_binary_token7] = ACTIONS(3613), - [aux_sym_expr_binary_token8] = ACTIONS(3613), - [aux_sym_expr_binary_token9] = ACTIONS(3615), - [aux_sym_expr_binary_token10] = ACTIONS(3615), - [aux_sym_expr_binary_token11] = ACTIONS(3601), - [aux_sym_expr_binary_token12] = ACTIONS(3601), - [aux_sym_expr_binary_token13] = ACTIONS(3601), - [aux_sym_expr_binary_token14] = ACTIONS(3601), - [aux_sym_expr_binary_token15] = ACTIONS(3601), - [aux_sym_expr_binary_token16] = ACTIONS(3601), - [aux_sym_expr_binary_token17] = ACTIONS(3601), - [aux_sym_expr_binary_token18] = ACTIONS(3601), - [aux_sym_expr_binary_token19] = ACTIONS(3617), - [aux_sym_expr_binary_token20] = ACTIONS(3617), - [aux_sym_expr_binary_token21] = ACTIONS(3617), - [aux_sym_expr_binary_token22] = ACTIONS(3617), - [aux_sym_expr_binary_token23] = ACTIONS(3619), - [aux_sym_expr_binary_token24] = ACTIONS(3619), - [aux_sym_expr_binary_token25] = ACTIONS(3619), - [aux_sym_expr_binary_token26] = ACTIONS(3619), - [aux_sym_expr_binary_token27] = ACTIONS(3619), - [aux_sym_expr_binary_token28] = ACTIONS(3619), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3601), - [anon_sym_DOT_DOT_LT] = ACTIONS(3601), - [aux_sym__val_number_decimal_token1] = ACTIONS(3603), - [aux_sym__val_number_decimal_token2] = ACTIONS(3601), - [aux_sym__val_number_decimal_token3] = ACTIONS(3601), - [aux_sym__val_number_decimal_token4] = ACTIONS(3601), - [aux_sym__val_number_token1] = ACTIONS(3601), - [aux_sym__val_number_token2] = ACTIONS(3601), - [aux_sym__val_number_token3] = ACTIONS(3601), - [anon_sym_0b] = ACTIONS(3603), - [anon_sym_0o] = ACTIONS(3603), - [anon_sym_0x] = ACTIONS(3603), - [sym_val_date] = ACTIONS(3601), - [anon_sym_DQUOTE] = ACTIONS(3601), - [sym__str_single_quotes] = ACTIONS(3601), - [sym__str_back_ticks] = ACTIONS(3601), - [anon_sym_err_GT] = ACTIONS(3603), - [anon_sym_out_GT] = ACTIONS(3603), - [anon_sym_e_GT] = ACTIONS(3603), - [anon_sym_o_GT] = ACTIONS(3603), - [anon_sym_err_PLUSout_GT] = ACTIONS(3603), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3603), - [anon_sym_o_PLUSe_GT] = ACTIONS(3603), - [anon_sym_e_PLUSo_GT] = ACTIONS(3603), - [anon_sym_err_GT_GT] = ACTIONS(3601), - [anon_sym_out_GT_GT] = ACTIONS(3601), - [anon_sym_e_GT_GT] = ACTIONS(3601), - [anon_sym_o_GT_GT] = ACTIONS(3601), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3601), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3601), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3601), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3601), - [aux_sym_unquoted_token1] = ACTIONS(3603), + [aux_sym_cell_path_repeat1] = STATE(1185), + [anon_sym_true] = ACTIONS(1019), + [anon_sym_false] = ACTIONS(1019), + [anon_sym_null] = ACTIONS(1019), + [aux_sym_cmd_identifier_token38] = ACTIONS(1019), + [aux_sym_cmd_identifier_token39] = ACTIONS(1019), + [aux_sym_cmd_identifier_token40] = ACTIONS(1019), + [sym__newline] = ACTIONS(1019), + [anon_sym_SEMI] = ACTIONS(1019), + [anon_sym_PIPE] = ACTIONS(1019), + [anon_sym_err_GT_PIPE] = ACTIONS(1019), + [anon_sym_out_GT_PIPE] = ACTIONS(1019), + [anon_sym_e_GT_PIPE] = ACTIONS(1019), + [anon_sym_o_GT_PIPE] = ACTIONS(1019), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1019), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1019), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1019), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1019), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_LPAREN] = ACTIONS(1019), + [anon_sym_RPAREN] = ACTIONS(1019), + [anon_sym_DOLLAR] = ACTIONS(1017), + [anon_sym_DASH_DASH] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1017), + [aux_sym_ctrl_match_token1] = ACTIONS(1019), + [anon_sym_RBRACE] = ACTIONS(1019), + [anon_sym_DOT_DOT] = ACTIONS(1017), + [anon_sym_DOT_DOT2] = ACTIONS(1017), + [anon_sym_DOT] = ACTIONS(4021), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1017), + [anon_sym_DOT_DOT_LT] = ACTIONS(1017), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1019), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1019), + [aux_sym__val_number_decimal_token1] = ACTIONS(1017), + [aux_sym__val_number_decimal_token2] = ACTIONS(1019), + [aux_sym__val_number_decimal_token3] = ACTIONS(1019), + [aux_sym__val_number_decimal_token4] = ACTIONS(1019), + [aux_sym__val_number_token1] = ACTIONS(1019), + [aux_sym__val_number_token2] = ACTIONS(1019), + [aux_sym__val_number_token3] = ACTIONS(1019), + [anon_sym_0b] = ACTIONS(1017), + [anon_sym_0o] = ACTIONS(1017), + [anon_sym_0x] = ACTIONS(1017), + [sym_val_date] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1019), + [sym__str_single_quotes] = ACTIONS(1019), + [sym__str_back_ticks] = ACTIONS(1019), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1019), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1019), + [anon_sym_err_GT] = ACTIONS(1017), + [anon_sym_out_GT] = ACTIONS(1017), + [anon_sym_e_GT] = ACTIONS(1017), + [anon_sym_o_GT] = ACTIONS(1017), + [anon_sym_err_PLUSout_GT] = ACTIONS(1017), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1017), + [anon_sym_o_PLUSe_GT] = ACTIONS(1017), + [anon_sym_e_PLUSo_GT] = ACTIONS(1017), + [anon_sym_err_GT_GT] = ACTIONS(1019), + [anon_sym_out_GT_GT] = ACTIONS(1019), + [anon_sym_e_GT_GT] = ACTIONS(1019), + [anon_sym_o_GT_GT] = ACTIONS(1019), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1019), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1019), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1019), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1019), + [aux_sym_unquoted_token1] = ACTIONS(1017), [anon_sym_POUND] = ACTIONS(247), }, [1185] = { + [sym_path] = STATE(1252), [sym_comment] = STATE(1185), - [anon_sym_true] = ACTIONS(3601), - [anon_sym_false] = ACTIONS(3601), - [anon_sym_null] = ACTIONS(3601), - [aux_sym_cmd_identifier_token38] = ACTIONS(3601), - [aux_sym_cmd_identifier_token39] = ACTIONS(3601), - [aux_sym_cmd_identifier_token40] = ACTIONS(3601), - [sym__newline] = ACTIONS(3601), - [anon_sym_LBRACK] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3601), - [anon_sym_COMMA] = ACTIONS(3601), - [anon_sym_DOLLAR] = ACTIONS(3601), - [aux_sym_ctrl_match_token1] = ACTIONS(3601), - [anon_sym_RBRACE] = ACTIONS(3601), - [anon_sym__] = ACTIONS(3603), - [anon_sym_DOT_DOT] = ACTIONS(3603), - [aux_sym_expr_binary_token1] = ACTIONS(3609), - [aux_sym_expr_binary_token2] = ACTIONS(3609), - [aux_sym_expr_binary_token3] = ACTIONS(3611), - [aux_sym_expr_binary_token4] = ACTIONS(3611), - [aux_sym_expr_binary_token5] = ACTIONS(3611), - [aux_sym_expr_binary_token6] = ACTIONS(3611), - [aux_sym_expr_binary_token7] = ACTIONS(3613), - [aux_sym_expr_binary_token8] = ACTIONS(3613), - [aux_sym_expr_binary_token9] = ACTIONS(3615), - [aux_sym_expr_binary_token10] = ACTIONS(3615), - [aux_sym_expr_binary_token11] = ACTIONS(3621), - [aux_sym_expr_binary_token12] = ACTIONS(3621), - [aux_sym_expr_binary_token13] = ACTIONS(3601), - [aux_sym_expr_binary_token14] = ACTIONS(3601), - [aux_sym_expr_binary_token15] = ACTIONS(3601), - [aux_sym_expr_binary_token16] = ACTIONS(3601), - [aux_sym_expr_binary_token17] = ACTIONS(3601), - [aux_sym_expr_binary_token18] = ACTIONS(3601), - [aux_sym_expr_binary_token19] = ACTIONS(3617), - [aux_sym_expr_binary_token20] = ACTIONS(3617), - [aux_sym_expr_binary_token21] = ACTIONS(3617), - [aux_sym_expr_binary_token22] = ACTIONS(3617), - [aux_sym_expr_binary_token23] = ACTIONS(3619), - [aux_sym_expr_binary_token24] = ACTIONS(3619), - [aux_sym_expr_binary_token25] = ACTIONS(3619), - [aux_sym_expr_binary_token26] = ACTIONS(3619), - [aux_sym_expr_binary_token27] = ACTIONS(3619), - [aux_sym_expr_binary_token28] = ACTIONS(3619), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3601), - [anon_sym_DOT_DOT_LT] = ACTIONS(3601), - [aux_sym__val_number_decimal_token1] = ACTIONS(3603), - [aux_sym__val_number_decimal_token2] = ACTIONS(3601), - [aux_sym__val_number_decimal_token3] = ACTIONS(3601), - [aux_sym__val_number_decimal_token4] = ACTIONS(3601), - [aux_sym__val_number_token1] = ACTIONS(3601), - [aux_sym__val_number_token2] = ACTIONS(3601), - [aux_sym__val_number_token3] = ACTIONS(3601), - [anon_sym_0b] = ACTIONS(3603), - [anon_sym_0o] = ACTIONS(3603), - [anon_sym_0x] = ACTIONS(3603), - [sym_val_date] = ACTIONS(3601), - [anon_sym_DQUOTE] = ACTIONS(3601), - [sym__str_single_quotes] = ACTIONS(3601), - [sym__str_back_ticks] = ACTIONS(3601), - [anon_sym_err_GT] = ACTIONS(3603), - [anon_sym_out_GT] = ACTIONS(3603), - [anon_sym_e_GT] = ACTIONS(3603), - [anon_sym_o_GT] = ACTIONS(3603), - [anon_sym_err_PLUSout_GT] = ACTIONS(3603), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3603), - [anon_sym_o_PLUSe_GT] = ACTIONS(3603), - [anon_sym_e_PLUSo_GT] = ACTIONS(3603), - [anon_sym_err_GT_GT] = ACTIONS(3601), - [anon_sym_out_GT_GT] = ACTIONS(3601), - [anon_sym_e_GT_GT] = ACTIONS(3601), - [anon_sym_o_GT_GT] = ACTIONS(3601), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3601), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3601), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3601), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3601), - [aux_sym_unquoted_token1] = ACTIONS(3603), + [aux_sym_cell_path_repeat1] = STATE(1185), + [anon_sym_true] = ACTIONS(1023), + [anon_sym_false] = ACTIONS(1023), + [anon_sym_null] = ACTIONS(1023), + [aux_sym_cmd_identifier_token38] = ACTIONS(1023), + [aux_sym_cmd_identifier_token39] = ACTIONS(1023), + [aux_sym_cmd_identifier_token40] = ACTIONS(1023), + [sym__newline] = ACTIONS(1023), + [anon_sym_SEMI] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(1023), + [anon_sym_err_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_GT_PIPE] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1023), + [anon_sym_RPAREN] = ACTIONS(1023), + [anon_sym_DOLLAR] = ACTIONS(1021), + [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_DASH] = ACTIONS(1021), + [aux_sym_ctrl_match_token1] = ACTIONS(1023), + [anon_sym_RBRACE] = ACTIONS(1023), + [anon_sym_DOT_DOT] = ACTIONS(1021), + [anon_sym_DOT_DOT2] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(4422), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1021), + [anon_sym_DOT_DOT_LT] = ACTIONS(1021), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), + [aux_sym__val_number_decimal_token1] = ACTIONS(1021), + [aux_sym__val_number_decimal_token2] = ACTIONS(1023), + [aux_sym__val_number_decimal_token3] = ACTIONS(1023), + [aux_sym__val_number_decimal_token4] = ACTIONS(1023), + [aux_sym__val_number_token1] = ACTIONS(1023), + [aux_sym__val_number_token2] = ACTIONS(1023), + [aux_sym__val_number_token3] = ACTIONS(1023), + [anon_sym_0b] = ACTIONS(1021), + [anon_sym_0o] = ACTIONS(1021), + [anon_sym_0x] = ACTIONS(1021), + [sym_val_date] = ACTIONS(1023), + [anon_sym_DQUOTE] = ACTIONS(1023), + [sym__str_single_quotes] = ACTIONS(1023), + [sym__str_back_ticks] = ACTIONS(1023), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1023), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1023), + [anon_sym_err_GT] = ACTIONS(1021), + [anon_sym_out_GT] = ACTIONS(1021), + [anon_sym_e_GT] = ACTIONS(1021), + [anon_sym_o_GT] = ACTIONS(1021), + [anon_sym_err_PLUSout_GT] = ACTIONS(1021), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), + [anon_sym_o_PLUSe_GT] = ACTIONS(1021), + [anon_sym_e_PLUSo_GT] = ACTIONS(1021), + [anon_sym_err_GT_GT] = ACTIONS(1023), + [anon_sym_out_GT_GT] = ACTIONS(1023), + [anon_sym_e_GT_GT] = ACTIONS(1023), + [anon_sym_o_GT_GT] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), + [aux_sym_unquoted_token1] = ACTIONS(1021), [anon_sym_POUND] = ACTIONS(247), }, [1186] = { [sym_comment] = STATE(1186), - [anon_sym_true] = ACTIONS(3601), - [anon_sym_false] = ACTIONS(3601), - [anon_sym_null] = ACTIONS(3601), - [aux_sym_cmd_identifier_token38] = ACTIONS(3601), - [aux_sym_cmd_identifier_token39] = ACTIONS(3601), - [aux_sym_cmd_identifier_token40] = ACTIONS(3601), - [sym__newline] = ACTIONS(3601), - [anon_sym_LBRACK] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3601), - [anon_sym_COMMA] = ACTIONS(3601), - [anon_sym_DOLLAR] = ACTIONS(3601), - [aux_sym_ctrl_match_token1] = ACTIONS(3601), - [anon_sym_RBRACE] = ACTIONS(3601), - [anon_sym__] = ACTIONS(3603), - [anon_sym_DOT_DOT] = ACTIONS(3603), - [aux_sym_expr_binary_token1] = ACTIONS(3609), - [aux_sym_expr_binary_token2] = ACTIONS(3609), - [aux_sym_expr_binary_token3] = ACTIONS(3611), - [aux_sym_expr_binary_token4] = ACTIONS(3611), - [aux_sym_expr_binary_token5] = ACTIONS(3611), - [aux_sym_expr_binary_token6] = ACTIONS(3611), - [aux_sym_expr_binary_token7] = ACTIONS(3613), - [aux_sym_expr_binary_token8] = ACTIONS(3613), - [aux_sym_expr_binary_token9] = ACTIONS(3615), - [aux_sym_expr_binary_token10] = ACTIONS(3615), - [aux_sym_expr_binary_token11] = ACTIONS(3621), - [aux_sym_expr_binary_token12] = ACTIONS(3621), - [aux_sym_expr_binary_token13] = ACTIONS(3623), - [aux_sym_expr_binary_token14] = ACTIONS(3601), - [aux_sym_expr_binary_token15] = ACTIONS(3601), - [aux_sym_expr_binary_token16] = ACTIONS(3601), - [aux_sym_expr_binary_token17] = ACTIONS(3601), - [aux_sym_expr_binary_token18] = ACTIONS(3601), - [aux_sym_expr_binary_token19] = ACTIONS(3617), - [aux_sym_expr_binary_token20] = ACTIONS(3617), - [aux_sym_expr_binary_token21] = ACTIONS(3617), - [aux_sym_expr_binary_token22] = ACTIONS(3617), - [aux_sym_expr_binary_token23] = ACTIONS(3619), - [aux_sym_expr_binary_token24] = ACTIONS(3619), - [aux_sym_expr_binary_token25] = ACTIONS(3619), - [aux_sym_expr_binary_token26] = ACTIONS(3619), - [aux_sym_expr_binary_token27] = ACTIONS(3619), - [aux_sym_expr_binary_token28] = ACTIONS(3619), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3601), - [anon_sym_DOT_DOT_LT] = ACTIONS(3601), - [aux_sym__val_number_decimal_token1] = ACTIONS(3603), - [aux_sym__val_number_decimal_token2] = ACTIONS(3601), - [aux_sym__val_number_decimal_token3] = ACTIONS(3601), - [aux_sym__val_number_decimal_token4] = ACTIONS(3601), - [aux_sym__val_number_token1] = ACTIONS(3601), - [aux_sym__val_number_token2] = ACTIONS(3601), - [aux_sym__val_number_token3] = ACTIONS(3601), - [anon_sym_0b] = ACTIONS(3603), - [anon_sym_0o] = ACTIONS(3603), - [anon_sym_0x] = ACTIONS(3603), - [sym_val_date] = ACTIONS(3601), - [anon_sym_DQUOTE] = ACTIONS(3601), - [sym__str_single_quotes] = ACTIONS(3601), - [sym__str_back_ticks] = ACTIONS(3601), - [anon_sym_err_GT] = ACTIONS(3603), - [anon_sym_out_GT] = ACTIONS(3603), - [anon_sym_e_GT] = ACTIONS(3603), - [anon_sym_o_GT] = ACTIONS(3603), - [anon_sym_err_PLUSout_GT] = ACTIONS(3603), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3603), - [anon_sym_o_PLUSe_GT] = ACTIONS(3603), - [anon_sym_e_PLUSo_GT] = ACTIONS(3603), - [anon_sym_err_GT_GT] = ACTIONS(3601), - [anon_sym_out_GT_GT] = ACTIONS(3601), - [anon_sym_e_GT_GT] = ACTIONS(3601), - [anon_sym_o_GT_GT] = ACTIONS(3601), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3601), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3601), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3601), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3601), - [aux_sym_unquoted_token1] = ACTIONS(3603), + [ts_builtin_sym_end] = ACTIONS(1030), + [anon_sym_EQ] = ACTIONS(1028), + [anon_sym_PLUS_EQ] = ACTIONS(1030), + [anon_sym_DASH_EQ] = ACTIONS(1030), + [anon_sym_STAR_EQ] = ACTIONS(1030), + [anon_sym_SLASH_EQ] = ACTIONS(1030), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1030), + [sym__newline] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_err_GT_PIPE] = ACTIONS(1030), + [anon_sym_out_GT_PIPE] = ACTIONS(1030), + [anon_sym_e_GT_PIPE] = ACTIONS(1030), + [anon_sym_o_GT_PIPE] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1030), + [anon_sym_QMARK2] = ACTIONS(4425), + [aux_sym_expr_binary_token1] = ACTIONS(1030), + [aux_sym_expr_binary_token2] = ACTIONS(1030), + [aux_sym_expr_binary_token3] = ACTIONS(1030), + [aux_sym_expr_binary_token4] = ACTIONS(1030), + [aux_sym_expr_binary_token5] = ACTIONS(1030), + [aux_sym_expr_binary_token6] = ACTIONS(1030), + [aux_sym_expr_binary_token7] = ACTIONS(1030), + [aux_sym_expr_binary_token8] = ACTIONS(1030), + [aux_sym_expr_binary_token9] = ACTIONS(1030), + [aux_sym_expr_binary_token10] = ACTIONS(1030), + [aux_sym_expr_binary_token11] = ACTIONS(1030), + [aux_sym_expr_binary_token12] = ACTIONS(1030), + [aux_sym_expr_binary_token13] = ACTIONS(1030), + [aux_sym_expr_binary_token14] = ACTIONS(1030), + [aux_sym_expr_binary_token15] = ACTIONS(1030), + [aux_sym_expr_binary_token16] = ACTIONS(1030), + [aux_sym_expr_binary_token17] = ACTIONS(1030), + [aux_sym_expr_binary_token18] = ACTIONS(1030), + [aux_sym_expr_binary_token19] = ACTIONS(1030), + [aux_sym_expr_binary_token20] = ACTIONS(1030), + [aux_sym_expr_binary_token21] = ACTIONS(1030), + [aux_sym_expr_binary_token22] = ACTIONS(1030), + [aux_sym_expr_binary_token23] = ACTIONS(1030), + [aux_sym_expr_binary_token24] = ACTIONS(1030), + [aux_sym_expr_binary_token25] = ACTIONS(1030), + [aux_sym_expr_binary_token26] = ACTIONS(1030), + [aux_sym_expr_binary_token27] = ACTIONS(1030), + [aux_sym_expr_binary_token28] = ACTIONS(1030), + [anon_sym_DOT_DOT2] = ACTIONS(1028), + [anon_sym_DOT] = ACTIONS(1028), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1030), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1030), + [anon_sym_err_GT] = ACTIONS(1028), + [anon_sym_out_GT] = ACTIONS(1028), + [anon_sym_e_GT] = ACTIONS(1028), + [anon_sym_o_GT] = ACTIONS(1028), + [anon_sym_err_PLUSout_GT] = ACTIONS(1028), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1028), + [anon_sym_o_PLUSe_GT] = ACTIONS(1028), + [anon_sym_e_PLUSo_GT] = ACTIONS(1028), + [anon_sym_err_GT_GT] = ACTIONS(1030), + [anon_sym_out_GT_GT] = ACTIONS(1030), + [anon_sym_e_GT_GT] = ACTIONS(1030), + [anon_sym_o_GT_GT] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1030), [anon_sym_POUND] = ACTIONS(247), }, [1187] = { [sym_comment] = STATE(1187), - [anon_sym_true] = ACTIONS(3601), - [anon_sym_false] = ACTIONS(3601), - [anon_sym_null] = ACTIONS(3601), - [aux_sym_cmd_identifier_token38] = ACTIONS(3601), - [aux_sym_cmd_identifier_token39] = ACTIONS(3601), - [aux_sym_cmd_identifier_token40] = ACTIONS(3601), - [sym__newline] = ACTIONS(3601), - [anon_sym_LBRACK] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3601), - [anon_sym_COMMA] = ACTIONS(3601), - [anon_sym_DOLLAR] = ACTIONS(3601), - [aux_sym_ctrl_match_token1] = ACTIONS(3601), - [anon_sym_RBRACE] = ACTIONS(3601), - [anon_sym__] = ACTIONS(3603), - [anon_sym_DOT_DOT] = ACTIONS(3603), - [aux_sym_expr_binary_token1] = ACTIONS(3609), - [aux_sym_expr_binary_token2] = ACTIONS(3609), - [aux_sym_expr_binary_token3] = ACTIONS(3611), - [aux_sym_expr_binary_token4] = ACTIONS(3611), - [aux_sym_expr_binary_token5] = ACTIONS(3611), - [aux_sym_expr_binary_token6] = ACTIONS(3611), - [aux_sym_expr_binary_token7] = ACTIONS(3613), - [aux_sym_expr_binary_token8] = ACTIONS(3613), - [aux_sym_expr_binary_token9] = ACTIONS(3615), - [aux_sym_expr_binary_token10] = ACTIONS(3615), - [aux_sym_expr_binary_token11] = ACTIONS(3621), - [aux_sym_expr_binary_token12] = ACTIONS(3621), - [aux_sym_expr_binary_token13] = ACTIONS(3623), - [aux_sym_expr_binary_token14] = ACTIONS(3625), - [aux_sym_expr_binary_token15] = ACTIONS(3601), - [aux_sym_expr_binary_token16] = ACTIONS(3601), - [aux_sym_expr_binary_token17] = ACTIONS(3601), - [aux_sym_expr_binary_token18] = ACTIONS(3601), - [aux_sym_expr_binary_token19] = ACTIONS(3617), - [aux_sym_expr_binary_token20] = ACTIONS(3617), - [aux_sym_expr_binary_token21] = ACTIONS(3617), - [aux_sym_expr_binary_token22] = ACTIONS(3617), - [aux_sym_expr_binary_token23] = ACTIONS(3619), - [aux_sym_expr_binary_token24] = ACTIONS(3619), - [aux_sym_expr_binary_token25] = ACTIONS(3619), - [aux_sym_expr_binary_token26] = ACTIONS(3619), - [aux_sym_expr_binary_token27] = ACTIONS(3619), - [aux_sym_expr_binary_token28] = ACTIONS(3619), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3601), - [anon_sym_DOT_DOT_LT] = ACTIONS(3601), - [aux_sym__val_number_decimal_token1] = ACTIONS(3603), - [aux_sym__val_number_decimal_token2] = ACTIONS(3601), - [aux_sym__val_number_decimal_token3] = ACTIONS(3601), - [aux_sym__val_number_decimal_token4] = ACTIONS(3601), - [aux_sym__val_number_token1] = ACTIONS(3601), - [aux_sym__val_number_token2] = ACTIONS(3601), - [aux_sym__val_number_token3] = ACTIONS(3601), - [anon_sym_0b] = ACTIONS(3603), - [anon_sym_0o] = ACTIONS(3603), - [anon_sym_0x] = ACTIONS(3603), - [sym_val_date] = ACTIONS(3601), - [anon_sym_DQUOTE] = ACTIONS(3601), - [sym__str_single_quotes] = ACTIONS(3601), - [sym__str_back_ticks] = ACTIONS(3601), - [anon_sym_err_GT] = ACTIONS(3603), - [anon_sym_out_GT] = ACTIONS(3603), - [anon_sym_e_GT] = ACTIONS(3603), - [anon_sym_o_GT] = ACTIONS(3603), - [anon_sym_err_PLUSout_GT] = ACTIONS(3603), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3603), - [anon_sym_o_PLUSe_GT] = ACTIONS(3603), - [anon_sym_e_PLUSo_GT] = ACTIONS(3603), - [anon_sym_err_GT_GT] = ACTIONS(3601), - [anon_sym_out_GT_GT] = ACTIONS(3601), - [anon_sym_e_GT_GT] = ACTIONS(3601), - [anon_sym_o_GT_GT] = ACTIONS(3601), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3601), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3601), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3601), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3601), - [aux_sym_unquoted_token1] = ACTIONS(3603), + [ts_builtin_sym_end] = ACTIONS(1499), + [anon_sym_true] = ACTIONS(1499), + [anon_sym_false] = ACTIONS(1499), + [anon_sym_null] = ACTIONS(1499), + [aux_sym_cmd_identifier_token38] = ACTIONS(1499), + [aux_sym_cmd_identifier_token39] = ACTIONS(1499), + [aux_sym_cmd_identifier_token40] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_DOLLAR] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1497), + [aux_sym_ctrl_match_token1] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1497), + [anon_sym_DOT_DOT2] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), + [anon_sym_DOT_DOT_LT] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), + [aux_sym__immediate_decimal_token2] = ACTIONS(4111), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1499), + [aux_sym__val_number_decimal_token4] = ACTIONS(1499), + [aux_sym__val_number_token1] = ACTIONS(1499), + [aux_sym__val_number_token2] = ACTIONS(1499), + [aux_sym__val_number_token3] = ACTIONS(1499), + [anon_sym_0b] = ACTIONS(1497), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1499), + [anon_sym_0o] = ACTIONS(1497), + [anon_sym_0x] = ACTIONS(1497), + [sym_val_date] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1499), + [sym__str_single_quotes] = ACTIONS(1499), + [sym__str_back_ticks] = ACTIONS(1499), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1499), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1499), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), + [aux_sym_unquoted_token1] = ACTIONS(1497), + [aux_sym_unquoted_token2] = ACTIONS(1497), [anon_sym_POUND] = ACTIONS(247), }, [1188] = { [sym_comment] = STATE(1188), - [anon_sym_true] = ACTIONS(2350), - [anon_sym_false] = ACTIONS(2350), - [anon_sym_null] = ACTIONS(2350), - [aux_sym_cmd_identifier_token38] = ACTIONS(2350), - [aux_sym_cmd_identifier_token39] = ACTIONS(2350), - [aux_sym_cmd_identifier_token40] = ACTIONS(2350), - [sym__newline] = ACTIONS(2350), - [anon_sym_LBRACK] = ACTIONS(2350), - [anon_sym_LPAREN] = ACTIONS(2350), - [anon_sym_COMMA] = ACTIONS(2350), - [anon_sym_DOLLAR] = ACTIONS(2350), - [aux_sym_ctrl_match_token1] = ACTIONS(2350), - [anon_sym_RBRACE] = ACTIONS(2350), - [anon_sym__] = ACTIONS(2348), - [anon_sym_DOT_DOT] = ACTIONS(2348), - [aux_sym_expr_binary_token1] = ACTIONS(2350), - [aux_sym_expr_binary_token2] = ACTIONS(2350), - [aux_sym_expr_binary_token3] = ACTIONS(2350), - [aux_sym_expr_binary_token4] = ACTIONS(2350), - [aux_sym_expr_binary_token5] = ACTIONS(2350), - [aux_sym_expr_binary_token6] = ACTIONS(2350), - [aux_sym_expr_binary_token7] = ACTIONS(2350), - [aux_sym_expr_binary_token8] = ACTIONS(2350), - [aux_sym_expr_binary_token9] = ACTIONS(2350), - [aux_sym_expr_binary_token10] = ACTIONS(2350), - [aux_sym_expr_binary_token11] = ACTIONS(2350), - [aux_sym_expr_binary_token12] = ACTIONS(2350), - [aux_sym_expr_binary_token13] = ACTIONS(2350), - [aux_sym_expr_binary_token14] = ACTIONS(2350), - [aux_sym_expr_binary_token15] = ACTIONS(2350), - [aux_sym_expr_binary_token16] = ACTIONS(2350), - [aux_sym_expr_binary_token17] = ACTIONS(2350), - [aux_sym_expr_binary_token18] = ACTIONS(2350), - [aux_sym_expr_binary_token19] = ACTIONS(2350), - [aux_sym_expr_binary_token20] = ACTIONS(2350), - [aux_sym_expr_binary_token21] = ACTIONS(2350), - [aux_sym_expr_binary_token22] = ACTIONS(2350), - [aux_sym_expr_binary_token23] = ACTIONS(2350), - [aux_sym_expr_binary_token24] = ACTIONS(2350), - [aux_sym_expr_binary_token25] = ACTIONS(2350), - [aux_sym_expr_binary_token26] = ACTIONS(2350), - [aux_sym_expr_binary_token27] = ACTIONS(2350), - [aux_sym_expr_binary_token28] = ACTIONS(2350), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2350), - [anon_sym_DOT_DOT_LT] = ACTIONS(2350), - [aux_sym__val_number_decimal_token1] = ACTIONS(2348), - [aux_sym__val_number_decimal_token2] = ACTIONS(2350), - [aux_sym__val_number_decimal_token3] = ACTIONS(2350), - [aux_sym__val_number_decimal_token4] = ACTIONS(2350), - [aux_sym__val_number_token1] = ACTIONS(2350), - [aux_sym__val_number_token2] = ACTIONS(2350), - [aux_sym__val_number_token3] = ACTIONS(2350), - [anon_sym_0b] = ACTIONS(2348), - [anon_sym_0o] = ACTIONS(2348), - [anon_sym_0x] = ACTIONS(2348), - [sym_val_date] = ACTIONS(2350), - [anon_sym_DQUOTE] = ACTIONS(2350), - [sym__str_single_quotes] = ACTIONS(2350), - [sym__str_back_ticks] = ACTIONS(2350), - [anon_sym_err_GT] = ACTIONS(2348), - [anon_sym_out_GT] = ACTIONS(2348), - [anon_sym_e_GT] = ACTIONS(2348), - [anon_sym_o_GT] = ACTIONS(2348), - [anon_sym_err_PLUSout_GT] = ACTIONS(2348), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2348), - [anon_sym_o_PLUSe_GT] = ACTIONS(2348), - [anon_sym_e_PLUSo_GT] = ACTIONS(2348), - [anon_sym_err_GT_GT] = ACTIONS(2350), - [anon_sym_out_GT_GT] = ACTIONS(2350), - [anon_sym_e_GT_GT] = ACTIONS(2350), - [anon_sym_o_GT_GT] = ACTIONS(2350), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2350), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2350), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2350), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2350), - [aux_sym_unquoted_token1] = ACTIONS(2348), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [aux_sym_cmd_identifier_token38] = ACTIONS(1645), + [aux_sym_cmd_identifier_token39] = ACTIONS(1645), + [aux_sym_cmd_identifier_token40] = ACTIONS(1645), + [sym__newline] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_err_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_GT_PIPE] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), + [anon_sym_LBRACK] = ACTIONS(1645), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_RPAREN] = ACTIONS(1645), + [anon_sym_DOLLAR] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_DASH] = ACTIONS(1643), + [aux_sym_ctrl_match_token1] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(1645), + [anon_sym_DOT_DOT] = ACTIONS(1643), + [anon_sym_LPAREN2] = ACTIONS(1645), + [anon_sym_DOT_DOT2] = ACTIONS(1643), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), + [anon_sym_DOT_DOT_LT] = ACTIONS(1643), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), + [aux_sym__immediate_decimal_token2] = ACTIONS(4107), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1645), + [aux_sym__val_number_decimal_token3] = ACTIONS(1645), + [aux_sym__val_number_decimal_token4] = ACTIONS(1645), + [aux_sym__val_number_token1] = ACTIONS(1645), + [aux_sym__val_number_token2] = ACTIONS(1645), + [aux_sym__val_number_token3] = ACTIONS(1645), + [anon_sym_0b] = ACTIONS(1643), + [anon_sym_0o] = ACTIONS(1643), + [anon_sym_0x] = ACTIONS(1643), + [sym_val_date] = ACTIONS(1645), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym__str_single_quotes] = ACTIONS(1645), + [sym__str_back_ticks] = ACTIONS(1645), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1645), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1645), + [anon_sym_err_GT] = ACTIONS(1643), + [anon_sym_out_GT] = ACTIONS(1643), + [anon_sym_e_GT] = ACTIONS(1643), + [anon_sym_o_GT] = ACTIONS(1643), + [anon_sym_err_PLUSout_GT] = ACTIONS(1643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), + [anon_sym_o_PLUSe_GT] = ACTIONS(1643), + [anon_sym_e_PLUSo_GT] = ACTIONS(1643), + [anon_sym_err_GT_GT] = ACTIONS(1645), + [anon_sym_out_GT_GT] = ACTIONS(1645), + [anon_sym_e_GT_GT] = ACTIONS(1645), + [anon_sym_o_GT_GT] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [aux_sym_unquoted_token1] = ACTIONS(1643), + [aux_sym_unquoted_token2] = ACTIONS(1643), [anon_sym_POUND] = ACTIONS(247), }, [1189] = { [sym_comment] = STATE(1189), - [anon_sym_true] = ACTIONS(2354), - [anon_sym_false] = ACTIONS(2354), - [anon_sym_null] = ACTIONS(2354), - [aux_sym_cmd_identifier_token38] = ACTIONS(2354), - [aux_sym_cmd_identifier_token39] = ACTIONS(2354), - [aux_sym_cmd_identifier_token40] = ACTIONS(2354), - [sym__newline] = ACTIONS(2354), - [anon_sym_LBRACK] = ACTIONS(2354), - [anon_sym_LPAREN] = ACTIONS(2354), - [anon_sym_COMMA] = ACTIONS(2354), - [anon_sym_DOLLAR] = ACTIONS(2354), - [aux_sym_ctrl_match_token1] = ACTIONS(2354), - [anon_sym_RBRACE] = ACTIONS(2354), - [anon_sym__] = ACTIONS(2352), - [anon_sym_DOT_DOT] = ACTIONS(2352), - [aux_sym_expr_binary_token1] = ACTIONS(2354), - [aux_sym_expr_binary_token2] = ACTIONS(2354), - [aux_sym_expr_binary_token3] = ACTIONS(2354), - [aux_sym_expr_binary_token4] = ACTIONS(2354), - [aux_sym_expr_binary_token5] = ACTIONS(2354), - [aux_sym_expr_binary_token6] = ACTIONS(2354), - [aux_sym_expr_binary_token7] = ACTIONS(2354), - [aux_sym_expr_binary_token8] = ACTIONS(2354), - [aux_sym_expr_binary_token9] = ACTIONS(2354), - [aux_sym_expr_binary_token10] = ACTIONS(2354), - [aux_sym_expr_binary_token11] = ACTIONS(2354), - [aux_sym_expr_binary_token12] = ACTIONS(2354), - [aux_sym_expr_binary_token13] = ACTIONS(2354), - [aux_sym_expr_binary_token14] = ACTIONS(2354), - [aux_sym_expr_binary_token15] = ACTIONS(2354), - [aux_sym_expr_binary_token16] = ACTIONS(2354), - [aux_sym_expr_binary_token17] = ACTIONS(2354), - [aux_sym_expr_binary_token18] = ACTIONS(2354), - [aux_sym_expr_binary_token19] = ACTIONS(2354), - [aux_sym_expr_binary_token20] = ACTIONS(2354), - [aux_sym_expr_binary_token21] = ACTIONS(2354), - [aux_sym_expr_binary_token22] = ACTIONS(2354), - [aux_sym_expr_binary_token23] = ACTIONS(2354), - [aux_sym_expr_binary_token24] = ACTIONS(2354), - [aux_sym_expr_binary_token25] = ACTIONS(2354), - [aux_sym_expr_binary_token26] = ACTIONS(2354), - [aux_sym_expr_binary_token27] = ACTIONS(2354), - [aux_sym_expr_binary_token28] = ACTIONS(2354), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2354), - [anon_sym_DOT_DOT_LT] = ACTIONS(2354), - [aux_sym__val_number_decimal_token1] = ACTIONS(2352), - [aux_sym__val_number_decimal_token2] = ACTIONS(2354), - [aux_sym__val_number_decimal_token3] = ACTIONS(2354), - [aux_sym__val_number_decimal_token4] = ACTIONS(2354), - [aux_sym__val_number_token1] = ACTIONS(2354), - [aux_sym__val_number_token2] = ACTIONS(2354), - [aux_sym__val_number_token3] = ACTIONS(2354), - [anon_sym_0b] = ACTIONS(2352), - [anon_sym_0o] = ACTIONS(2352), - [anon_sym_0x] = ACTIONS(2352), - [sym_val_date] = ACTIONS(2354), - [anon_sym_DQUOTE] = ACTIONS(2354), - [sym__str_single_quotes] = ACTIONS(2354), - [sym__str_back_ticks] = ACTIONS(2354), - [anon_sym_err_GT] = ACTIONS(2352), - [anon_sym_out_GT] = ACTIONS(2352), - [anon_sym_e_GT] = ACTIONS(2352), - [anon_sym_o_GT] = ACTIONS(2352), - [anon_sym_err_PLUSout_GT] = ACTIONS(2352), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2352), - [anon_sym_o_PLUSe_GT] = ACTIONS(2352), - [anon_sym_e_PLUSo_GT] = ACTIONS(2352), - [anon_sym_err_GT_GT] = ACTIONS(2354), - [anon_sym_out_GT_GT] = ACTIONS(2354), - [anon_sym_e_GT_GT] = ACTIONS(2354), - [anon_sym_o_GT_GT] = ACTIONS(2354), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2354), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2354), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2354), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2354), - [aux_sym_unquoted_token1] = ACTIONS(2352), + [ts_builtin_sym_end] = ACTIONS(1567), + [anon_sym_true] = ACTIONS(1567), + [anon_sym_false] = ACTIONS(1567), + [anon_sym_null] = ACTIONS(1567), + [aux_sym_cmd_identifier_token38] = ACTIONS(1567), + [aux_sym_cmd_identifier_token39] = ACTIONS(1567), + [aux_sym_cmd_identifier_token40] = ACTIONS(1567), + [sym__newline] = ACTIONS(1567), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_err_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_GT_PIPE] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), + [anon_sym_LBRACK] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1567), + [anon_sym_DOLLAR] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1565), + [aux_sym_ctrl_match_token1] = ACTIONS(1567), + [anon_sym_DOT_DOT] = ACTIONS(1565), + [anon_sym_DOT_DOT2] = ACTIONS(1565), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1565), + [anon_sym_DOT_DOT_LT] = ACTIONS(1565), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), + [aux_sym__immediate_decimal_token2] = ACTIONS(4427), + [aux_sym__val_number_decimal_token1] = ACTIONS(1565), + [aux_sym__val_number_decimal_token2] = ACTIONS(1567), + [aux_sym__val_number_decimal_token3] = ACTIONS(1567), + [aux_sym__val_number_decimal_token4] = ACTIONS(1567), + [aux_sym__val_number_token1] = ACTIONS(1567), + [aux_sym__val_number_token2] = ACTIONS(1567), + [aux_sym__val_number_token3] = ACTIONS(1567), + [anon_sym_0b] = ACTIONS(1565), + [sym_filesize_unit] = ACTIONS(1567), + [sym_duration_unit] = ACTIONS(1567), + [anon_sym_0o] = ACTIONS(1565), + [anon_sym_0x] = ACTIONS(1565), + [sym_val_date] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(1567), + [sym__str_single_quotes] = ACTIONS(1567), + [sym__str_back_ticks] = ACTIONS(1567), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1567), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1567), + [anon_sym_err_GT] = ACTIONS(1565), + [anon_sym_out_GT] = ACTIONS(1565), + [anon_sym_e_GT] = ACTIONS(1565), + [anon_sym_o_GT] = ACTIONS(1565), + [anon_sym_err_PLUSout_GT] = ACTIONS(1565), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), + [anon_sym_o_PLUSe_GT] = ACTIONS(1565), + [anon_sym_e_PLUSo_GT] = ACTIONS(1565), + [anon_sym_err_GT_GT] = ACTIONS(1567), + [anon_sym_out_GT_GT] = ACTIONS(1567), + [anon_sym_e_GT_GT] = ACTIONS(1567), + [anon_sym_o_GT_GT] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), + [aux_sym_unquoted_token1] = ACTIONS(1565), + [aux_sym_unquoted_token2] = ACTIONS(1565), [anon_sym_POUND] = ACTIONS(247), }, [1190] = { [sym_comment] = STATE(1190), - [anon_sym_true] = ACTIONS(3601), - [anon_sym_false] = ACTIONS(3601), - [anon_sym_null] = ACTIONS(3601), - [aux_sym_cmd_identifier_token38] = ACTIONS(3601), - [aux_sym_cmd_identifier_token39] = ACTIONS(3601), - [aux_sym_cmd_identifier_token40] = ACTIONS(3601), - [sym__newline] = ACTIONS(3601), - [anon_sym_LBRACK] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3601), - [anon_sym_COMMA] = ACTIONS(3601), - [anon_sym_DOLLAR] = ACTIONS(3601), - [aux_sym_ctrl_match_token1] = ACTIONS(3601), - [anon_sym_RBRACE] = ACTIONS(3601), - [anon_sym__] = ACTIONS(3603), - [anon_sym_DOT_DOT] = ACTIONS(3603), - [aux_sym_expr_binary_token1] = ACTIONS(3609), - [aux_sym_expr_binary_token2] = ACTIONS(3609), - [aux_sym_expr_binary_token3] = ACTIONS(3611), - [aux_sym_expr_binary_token4] = ACTIONS(3611), - [aux_sym_expr_binary_token5] = ACTIONS(3611), - [aux_sym_expr_binary_token6] = ACTIONS(3611), - [aux_sym_expr_binary_token7] = ACTIONS(3613), - [aux_sym_expr_binary_token8] = ACTIONS(3613), - [aux_sym_expr_binary_token9] = ACTIONS(3615), - [aux_sym_expr_binary_token10] = ACTIONS(3615), - [aux_sym_expr_binary_token11] = ACTIONS(3621), - [aux_sym_expr_binary_token12] = ACTIONS(3621), - [aux_sym_expr_binary_token13] = ACTIONS(3623), - [aux_sym_expr_binary_token14] = ACTIONS(3625), - [aux_sym_expr_binary_token15] = ACTIONS(3627), - [aux_sym_expr_binary_token16] = ACTIONS(3601), - [aux_sym_expr_binary_token17] = ACTIONS(3601), - [aux_sym_expr_binary_token18] = ACTIONS(3601), - [aux_sym_expr_binary_token19] = ACTIONS(3617), - [aux_sym_expr_binary_token20] = ACTIONS(3617), - [aux_sym_expr_binary_token21] = ACTIONS(3617), - [aux_sym_expr_binary_token22] = ACTIONS(3617), - [aux_sym_expr_binary_token23] = ACTIONS(3619), - [aux_sym_expr_binary_token24] = ACTIONS(3619), - [aux_sym_expr_binary_token25] = ACTIONS(3619), - [aux_sym_expr_binary_token26] = ACTIONS(3619), - [aux_sym_expr_binary_token27] = ACTIONS(3619), - [aux_sym_expr_binary_token28] = ACTIONS(3619), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3601), - [anon_sym_DOT_DOT_LT] = ACTIONS(3601), - [aux_sym__val_number_decimal_token1] = ACTIONS(3603), - [aux_sym__val_number_decimal_token2] = ACTIONS(3601), - [aux_sym__val_number_decimal_token3] = ACTIONS(3601), - [aux_sym__val_number_decimal_token4] = ACTIONS(3601), - [aux_sym__val_number_token1] = ACTIONS(3601), - [aux_sym__val_number_token2] = ACTIONS(3601), - [aux_sym__val_number_token3] = ACTIONS(3601), - [anon_sym_0b] = ACTIONS(3603), - [anon_sym_0o] = ACTIONS(3603), - [anon_sym_0x] = ACTIONS(3603), - [sym_val_date] = ACTIONS(3601), - [anon_sym_DQUOTE] = ACTIONS(3601), - [sym__str_single_quotes] = ACTIONS(3601), - [sym__str_back_ticks] = ACTIONS(3601), - [anon_sym_err_GT] = ACTIONS(3603), - [anon_sym_out_GT] = ACTIONS(3603), - [anon_sym_e_GT] = ACTIONS(3603), - [anon_sym_o_GT] = ACTIONS(3603), - [anon_sym_err_PLUSout_GT] = ACTIONS(3603), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3603), - [anon_sym_o_PLUSe_GT] = ACTIONS(3603), - [anon_sym_e_PLUSo_GT] = ACTIONS(3603), - [anon_sym_err_GT_GT] = ACTIONS(3601), - [anon_sym_out_GT_GT] = ACTIONS(3601), - [anon_sym_e_GT_GT] = ACTIONS(3601), - [anon_sym_o_GT_GT] = ACTIONS(3601), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3601), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3601), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3601), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3601), - [aux_sym_unquoted_token1] = ACTIONS(3603), + [anon_sym_EQ] = ACTIONS(1052), + [anon_sym_PLUS_EQ] = ACTIONS(1054), + [anon_sym_DASH_EQ] = ACTIONS(1054), + [anon_sym_STAR_EQ] = ACTIONS(1054), + [anon_sym_SLASH_EQ] = ACTIONS(1054), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1054), + [sym__newline] = ACTIONS(1052), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_PIPE] = ACTIONS(1054), + [anon_sym_err_GT_PIPE] = ACTIONS(1054), + [anon_sym_out_GT_PIPE] = ACTIONS(1054), + [anon_sym_e_GT_PIPE] = ACTIONS(1054), + [anon_sym_o_GT_PIPE] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1054), + [aux_sym_ctrl_match_token1] = ACTIONS(1054), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1054), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1054), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1054), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1054), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1054), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1054), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1054), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1054), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1054), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1054), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1054), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1054), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1054), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1054), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1054), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1054), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1054), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1054), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1054), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1054), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1054), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1054), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1054), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1054), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1054), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1054), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1054), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1054), + [anon_sym_DOT_DOT2] = ACTIONS(1052), + [anon_sym_DOT] = ACTIONS(1052), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1054), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1054), + [anon_sym_err_GT] = ACTIONS(1052), + [anon_sym_out_GT] = ACTIONS(1052), + [anon_sym_e_GT] = ACTIONS(1052), + [anon_sym_o_GT] = ACTIONS(1052), + [anon_sym_err_PLUSout_GT] = ACTIONS(1052), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1052), + [anon_sym_o_PLUSe_GT] = ACTIONS(1052), + [anon_sym_e_PLUSo_GT] = ACTIONS(1052), + [anon_sym_err_GT_GT] = ACTIONS(1054), + [anon_sym_out_GT_GT] = ACTIONS(1054), + [anon_sym_e_GT_GT] = ACTIONS(1054), + [anon_sym_o_GT_GT] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1054), [anon_sym_POUND] = ACTIONS(247), }, [1191] = { [sym_comment] = STATE(1191), - [anon_sym_true] = ACTIONS(3601), - [anon_sym_false] = ACTIONS(3601), - [anon_sym_null] = ACTIONS(3601), - [aux_sym_cmd_identifier_token38] = ACTIONS(3601), - [aux_sym_cmd_identifier_token39] = ACTIONS(3601), - [aux_sym_cmd_identifier_token40] = ACTIONS(3601), - [sym__newline] = ACTIONS(3601), - [anon_sym_LBRACK] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3601), - [anon_sym_COMMA] = ACTIONS(3601), - [anon_sym_DOLLAR] = ACTIONS(3601), - [aux_sym_ctrl_match_token1] = ACTIONS(3601), - [anon_sym_RBRACE] = ACTIONS(3601), - [anon_sym__] = ACTIONS(3603), - [anon_sym_DOT_DOT] = ACTIONS(3603), - [aux_sym_expr_binary_token1] = ACTIONS(3609), - [aux_sym_expr_binary_token2] = ACTIONS(3609), - [aux_sym_expr_binary_token3] = ACTIONS(3611), - [aux_sym_expr_binary_token4] = ACTIONS(3611), - [aux_sym_expr_binary_token5] = ACTIONS(3611), - [aux_sym_expr_binary_token6] = ACTIONS(3611), - [aux_sym_expr_binary_token7] = ACTIONS(3613), - [aux_sym_expr_binary_token8] = ACTIONS(3613), - [aux_sym_expr_binary_token9] = ACTIONS(3615), - [aux_sym_expr_binary_token10] = ACTIONS(3615), - [aux_sym_expr_binary_token11] = ACTIONS(3621), - [aux_sym_expr_binary_token12] = ACTIONS(3621), - [aux_sym_expr_binary_token13] = ACTIONS(3623), - [aux_sym_expr_binary_token14] = ACTIONS(3625), - [aux_sym_expr_binary_token15] = ACTIONS(3627), - [aux_sym_expr_binary_token16] = ACTIONS(3629), - [aux_sym_expr_binary_token17] = ACTIONS(3601), - [aux_sym_expr_binary_token18] = ACTIONS(3601), - [aux_sym_expr_binary_token19] = ACTIONS(3617), - [aux_sym_expr_binary_token20] = ACTIONS(3617), - [aux_sym_expr_binary_token21] = ACTIONS(3617), - [aux_sym_expr_binary_token22] = ACTIONS(3617), - [aux_sym_expr_binary_token23] = ACTIONS(3619), - [aux_sym_expr_binary_token24] = ACTIONS(3619), - [aux_sym_expr_binary_token25] = ACTIONS(3619), - [aux_sym_expr_binary_token26] = ACTIONS(3619), - [aux_sym_expr_binary_token27] = ACTIONS(3619), - [aux_sym_expr_binary_token28] = ACTIONS(3619), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3601), - [anon_sym_DOT_DOT_LT] = ACTIONS(3601), - [aux_sym__val_number_decimal_token1] = ACTIONS(3603), - [aux_sym__val_number_decimal_token2] = ACTIONS(3601), - [aux_sym__val_number_decimal_token3] = ACTIONS(3601), - [aux_sym__val_number_decimal_token4] = ACTIONS(3601), - [aux_sym__val_number_token1] = ACTIONS(3601), - [aux_sym__val_number_token2] = ACTIONS(3601), - [aux_sym__val_number_token3] = ACTIONS(3601), - [anon_sym_0b] = ACTIONS(3603), - [anon_sym_0o] = ACTIONS(3603), - [anon_sym_0x] = ACTIONS(3603), - [sym_val_date] = ACTIONS(3601), - [anon_sym_DQUOTE] = ACTIONS(3601), - [sym__str_single_quotes] = ACTIONS(3601), - [sym__str_back_ticks] = ACTIONS(3601), - [anon_sym_err_GT] = ACTIONS(3603), - [anon_sym_out_GT] = ACTIONS(3603), - [anon_sym_e_GT] = ACTIONS(3603), - [anon_sym_o_GT] = ACTIONS(3603), - [anon_sym_err_PLUSout_GT] = ACTIONS(3603), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3603), - [anon_sym_o_PLUSe_GT] = ACTIONS(3603), - [anon_sym_e_PLUSo_GT] = ACTIONS(3603), - [anon_sym_err_GT_GT] = ACTIONS(3601), - [anon_sym_out_GT_GT] = ACTIONS(3601), - [anon_sym_e_GT_GT] = ACTIONS(3601), - [anon_sym_o_GT_GT] = ACTIONS(3601), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3601), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3601), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3601), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3601), - [aux_sym_unquoted_token1] = ACTIONS(3603), + [ts_builtin_sym_end] = ACTIONS(1641), + [anon_sym_true] = ACTIONS(1641), + [anon_sym_false] = ACTIONS(1641), + [anon_sym_null] = ACTIONS(1641), + [aux_sym_cmd_identifier_token38] = ACTIONS(1641), + [aux_sym_cmd_identifier_token39] = ACTIONS(1641), + [aux_sym_cmd_identifier_token40] = ACTIONS(1641), + [sym__newline] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(1641), + [anon_sym_PIPE] = ACTIONS(1641), + [anon_sym_err_GT_PIPE] = ACTIONS(1641), + [anon_sym_out_GT_PIPE] = ACTIONS(1641), + [anon_sym_e_GT_PIPE] = ACTIONS(1641), + [anon_sym_o_GT_PIPE] = ACTIONS(1641), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(1641), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_DOLLAR] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1639), + [aux_sym_ctrl_match_token1] = ACTIONS(1641), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1641), + [anon_sym_DOT_DOT2] = ACTIONS(1639), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1639), + [anon_sym_DOT_DOT_LT] = ACTIONS(1639), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), + [aux_sym__val_number_decimal_token1] = ACTIONS(1639), + [aux_sym__val_number_decimal_token2] = ACTIONS(1641), + [aux_sym__val_number_decimal_token3] = ACTIONS(1641), + [aux_sym__val_number_decimal_token4] = ACTIONS(1641), + [aux_sym__val_number_token1] = ACTIONS(1641), + [aux_sym__val_number_token2] = ACTIONS(1641), + [aux_sym__val_number_token3] = ACTIONS(1641), + [anon_sym_0b] = ACTIONS(1639), + [sym_filesize_unit] = ACTIONS(1641), + [sym_duration_unit] = ACTIONS(1641), + [anon_sym_0o] = ACTIONS(1639), + [anon_sym_0x] = ACTIONS(1639), + [sym_val_date] = ACTIONS(1641), + [anon_sym_DQUOTE] = ACTIONS(1641), + [sym__str_single_quotes] = ACTIONS(1641), + [sym__str_back_ticks] = ACTIONS(1641), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1641), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1641), + [anon_sym_err_GT] = ACTIONS(1639), + [anon_sym_out_GT] = ACTIONS(1639), + [anon_sym_e_GT] = ACTIONS(1639), + [anon_sym_o_GT] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT] = ACTIONS(1639), + [anon_sym_err_GT_GT] = ACTIONS(1641), + [anon_sym_out_GT_GT] = ACTIONS(1641), + [anon_sym_e_GT_GT] = ACTIONS(1641), + [anon_sym_o_GT_GT] = ACTIONS(1641), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), + [aux_sym_unquoted_token1] = ACTIONS(1639), + [aux_sym_unquoted_token2] = ACTIONS(1639), [anon_sym_POUND] = ACTIONS(247), }, [1192] = { [sym_comment] = STATE(1192), - [anon_sym_true] = ACTIONS(3601), - [anon_sym_false] = ACTIONS(3601), - [anon_sym_null] = ACTIONS(3601), - [aux_sym_cmd_identifier_token38] = ACTIONS(3601), - [aux_sym_cmd_identifier_token39] = ACTIONS(3601), - [aux_sym_cmd_identifier_token40] = ACTIONS(3601), - [sym__newline] = ACTIONS(3601), - [anon_sym_LBRACK] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3601), - [anon_sym_COMMA] = ACTIONS(3601), - [anon_sym_DOLLAR] = ACTIONS(3601), - [aux_sym_ctrl_match_token1] = ACTIONS(3601), - [anon_sym_RBRACE] = ACTIONS(3601), - [anon_sym__] = ACTIONS(3603), - [anon_sym_DOT_DOT] = ACTIONS(3603), - [aux_sym_expr_binary_token1] = ACTIONS(3609), - [aux_sym_expr_binary_token2] = ACTIONS(3609), - [aux_sym_expr_binary_token3] = ACTIONS(3611), - [aux_sym_expr_binary_token4] = ACTIONS(3611), - [aux_sym_expr_binary_token5] = ACTIONS(3611), - [aux_sym_expr_binary_token6] = ACTIONS(3611), - [aux_sym_expr_binary_token7] = ACTIONS(3613), - [aux_sym_expr_binary_token8] = ACTIONS(3613), - [aux_sym_expr_binary_token9] = ACTIONS(3615), - [aux_sym_expr_binary_token10] = ACTIONS(3615), - [aux_sym_expr_binary_token11] = ACTIONS(3621), - [aux_sym_expr_binary_token12] = ACTIONS(3621), - [aux_sym_expr_binary_token13] = ACTIONS(3623), - [aux_sym_expr_binary_token14] = ACTIONS(3625), - [aux_sym_expr_binary_token15] = ACTIONS(3627), - [aux_sym_expr_binary_token16] = ACTIONS(3629), - [aux_sym_expr_binary_token17] = ACTIONS(3631), - [aux_sym_expr_binary_token18] = ACTIONS(3601), - [aux_sym_expr_binary_token19] = ACTIONS(3617), - [aux_sym_expr_binary_token20] = ACTIONS(3617), - [aux_sym_expr_binary_token21] = ACTIONS(3617), - [aux_sym_expr_binary_token22] = ACTIONS(3617), - [aux_sym_expr_binary_token23] = ACTIONS(3619), - [aux_sym_expr_binary_token24] = ACTIONS(3619), - [aux_sym_expr_binary_token25] = ACTIONS(3619), - [aux_sym_expr_binary_token26] = ACTIONS(3619), - [aux_sym_expr_binary_token27] = ACTIONS(3619), - [aux_sym_expr_binary_token28] = ACTIONS(3619), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3601), - [anon_sym_DOT_DOT_LT] = ACTIONS(3601), - [aux_sym__val_number_decimal_token1] = ACTIONS(3603), - [aux_sym__val_number_decimal_token2] = ACTIONS(3601), - [aux_sym__val_number_decimal_token3] = ACTIONS(3601), - [aux_sym__val_number_decimal_token4] = ACTIONS(3601), - [aux_sym__val_number_token1] = ACTIONS(3601), - [aux_sym__val_number_token2] = ACTIONS(3601), - [aux_sym__val_number_token3] = ACTIONS(3601), - [anon_sym_0b] = ACTIONS(3603), - [anon_sym_0o] = ACTIONS(3603), - [anon_sym_0x] = ACTIONS(3603), - [sym_val_date] = ACTIONS(3601), - [anon_sym_DQUOTE] = ACTIONS(3601), - [sym__str_single_quotes] = ACTIONS(3601), - [sym__str_back_ticks] = ACTIONS(3601), - [anon_sym_err_GT] = ACTIONS(3603), - [anon_sym_out_GT] = ACTIONS(3603), - [anon_sym_e_GT] = ACTIONS(3603), - [anon_sym_o_GT] = ACTIONS(3603), - [anon_sym_err_PLUSout_GT] = ACTIONS(3603), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3603), - [anon_sym_o_PLUSe_GT] = ACTIONS(3603), - [anon_sym_e_PLUSo_GT] = ACTIONS(3603), - [anon_sym_err_GT_GT] = ACTIONS(3601), - [anon_sym_out_GT_GT] = ACTIONS(3601), - [anon_sym_e_GT_GT] = ACTIONS(3601), - [anon_sym_o_GT_GT] = ACTIONS(3601), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3601), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3601), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3601), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3601), - [aux_sym_unquoted_token1] = ACTIONS(3603), + [anon_sym_true] = ACTIONS(1707), + [anon_sym_false] = ACTIONS(1707), + [anon_sym_null] = ACTIONS(1707), + [aux_sym_cmd_identifier_token38] = ACTIONS(1707), + [aux_sym_cmd_identifier_token39] = ACTIONS(1707), + [aux_sym_cmd_identifier_token40] = ACTIONS(1707), + [sym__newline] = ACTIONS(1707), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_err_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_GT_PIPE] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), + [anon_sym_LBRACK] = ACTIONS(1707), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_RPAREN] = ACTIONS(1707), + [anon_sym_DOLLAR] = ACTIONS(1705), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1705), + [aux_sym_ctrl_match_token1] = ACTIONS(1707), + [anon_sym_RBRACE] = ACTIONS(1707), + [anon_sym_DOT_DOT] = ACTIONS(1705), + [anon_sym_LPAREN2] = ACTIONS(1707), + [anon_sym_DOT_DOT2] = ACTIONS(1705), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1705), + [anon_sym_DOT_DOT_LT] = ACTIONS(1705), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1707), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1707), + [aux_sym__immediate_decimal_token2] = ACTIONS(4429), + [aux_sym__val_number_decimal_token1] = ACTIONS(1705), + [aux_sym__val_number_decimal_token2] = ACTIONS(1707), + [aux_sym__val_number_decimal_token3] = ACTIONS(1707), + [aux_sym__val_number_decimal_token4] = ACTIONS(1707), + [aux_sym__val_number_token1] = ACTIONS(1707), + [aux_sym__val_number_token2] = ACTIONS(1707), + [aux_sym__val_number_token3] = ACTIONS(1707), + [anon_sym_0b] = ACTIONS(1705), + [anon_sym_0o] = ACTIONS(1705), + [anon_sym_0x] = ACTIONS(1705), + [sym_val_date] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1707), + [sym__str_single_quotes] = ACTIONS(1707), + [sym__str_back_ticks] = ACTIONS(1707), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1707), + [anon_sym_err_GT] = ACTIONS(1705), + [anon_sym_out_GT] = ACTIONS(1705), + [anon_sym_e_GT] = ACTIONS(1705), + [anon_sym_o_GT] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT] = ACTIONS(1705), + [anon_sym_err_GT_GT] = ACTIONS(1707), + [anon_sym_out_GT_GT] = ACTIONS(1707), + [anon_sym_e_GT_GT] = ACTIONS(1707), + [anon_sym_o_GT_GT] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), + [aux_sym_unquoted_token1] = ACTIONS(1705), + [aux_sym_unquoted_token2] = ACTIONS(1705), [anon_sym_POUND] = ACTIONS(247), }, [1193] = { + [sym_cell_path] = STATE(1435), + [sym_path] = STATE(1341), [sym_comment] = STATE(1193), - [anon_sym_true] = ACTIONS(3601), - [anon_sym_false] = ACTIONS(3601), - [anon_sym_null] = ACTIONS(3601), - [aux_sym_cmd_identifier_token38] = ACTIONS(3601), - [aux_sym_cmd_identifier_token39] = ACTIONS(3601), - [aux_sym_cmd_identifier_token40] = ACTIONS(3601), - [sym__newline] = ACTIONS(3601), - [anon_sym_LBRACK] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3601), - [anon_sym_COMMA] = ACTIONS(3601), - [anon_sym_DOLLAR] = ACTIONS(3601), - [aux_sym_ctrl_match_token1] = ACTIONS(3601), - [anon_sym_RBRACE] = ACTIONS(3601), - [anon_sym__] = ACTIONS(3603), - [anon_sym_DOT_DOT] = ACTIONS(3603), - [aux_sym_expr_binary_token1] = ACTIONS(3609), - [aux_sym_expr_binary_token2] = ACTIONS(3609), - [aux_sym_expr_binary_token3] = ACTIONS(3611), - [aux_sym_expr_binary_token4] = ACTIONS(3611), - [aux_sym_expr_binary_token5] = ACTIONS(3611), - [aux_sym_expr_binary_token6] = ACTIONS(3611), - [aux_sym_expr_binary_token7] = ACTIONS(3613), - [aux_sym_expr_binary_token8] = ACTIONS(3613), - [aux_sym_expr_binary_token9] = ACTIONS(3615), - [aux_sym_expr_binary_token10] = ACTIONS(3615), - [aux_sym_expr_binary_token11] = ACTIONS(3601), - [aux_sym_expr_binary_token12] = ACTIONS(3601), - [aux_sym_expr_binary_token13] = ACTIONS(3601), - [aux_sym_expr_binary_token14] = ACTIONS(3601), - [aux_sym_expr_binary_token15] = ACTIONS(3601), - [aux_sym_expr_binary_token16] = ACTIONS(3601), - [aux_sym_expr_binary_token17] = ACTIONS(3601), - [aux_sym_expr_binary_token18] = ACTIONS(3601), - [aux_sym_expr_binary_token19] = ACTIONS(3601), - [aux_sym_expr_binary_token20] = ACTIONS(3601), - [aux_sym_expr_binary_token21] = ACTIONS(3601), - [aux_sym_expr_binary_token22] = ACTIONS(3601), - [aux_sym_expr_binary_token23] = ACTIONS(3619), - [aux_sym_expr_binary_token24] = ACTIONS(3619), - [aux_sym_expr_binary_token25] = ACTIONS(3619), - [aux_sym_expr_binary_token26] = ACTIONS(3619), - [aux_sym_expr_binary_token27] = ACTIONS(3619), - [aux_sym_expr_binary_token28] = ACTIONS(3619), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3601), - [anon_sym_DOT_DOT_LT] = ACTIONS(3601), - [aux_sym__val_number_decimal_token1] = ACTIONS(3603), - [aux_sym__val_number_decimal_token2] = ACTIONS(3601), - [aux_sym__val_number_decimal_token3] = ACTIONS(3601), - [aux_sym__val_number_decimal_token4] = ACTIONS(3601), - [aux_sym__val_number_token1] = ACTIONS(3601), - [aux_sym__val_number_token2] = ACTIONS(3601), - [aux_sym__val_number_token3] = ACTIONS(3601), - [anon_sym_0b] = ACTIONS(3603), - [anon_sym_0o] = ACTIONS(3603), - [anon_sym_0x] = ACTIONS(3603), - [sym_val_date] = ACTIONS(3601), - [anon_sym_DQUOTE] = ACTIONS(3601), - [sym__str_single_quotes] = ACTIONS(3601), - [sym__str_back_ticks] = ACTIONS(3601), - [anon_sym_err_GT] = ACTIONS(3603), - [anon_sym_out_GT] = ACTIONS(3603), - [anon_sym_e_GT] = ACTIONS(3603), - [anon_sym_o_GT] = ACTIONS(3603), - [anon_sym_err_PLUSout_GT] = ACTIONS(3603), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3603), - [anon_sym_o_PLUSe_GT] = ACTIONS(3603), - [anon_sym_e_PLUSo_GT] = ACTIONS(3603), - [anon_sym_err_GT_GT] = ACTIONS(3601), - [anon_sym_out_GT_GT] = ACTIONS(3601), - [anon_sym_e_GT_GT] = ACTIONS(3601), - [anon_sym_o_GT_GT] = ACTIONS(3601), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3601), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3601), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3601), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3601), - [aux_sym_unquoted_token1] = ACTIONS(3603), + [aux_sym_cell_path_repeat1] = STATE(1213), + [ts_builtin_sym_end] = ACTIONS(1688), + [anon_sym_true] = ACTIONS(1688), + [anon_sym_false] = ACTIONS(1688), + [anon_sym_null] = ACTIONS(1688), + [aux_sym_cmd_identifier_token38] = ACTIONS(1688), + [aux_sym_cmd_identifier_token39] = ACTIONS(1688), + [aux_sym_cmd_identifier_token40] = ACTIONS(1688), + [sym__newline] = ACTIONS(1688), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_err_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_GT_PIPE] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_LPAREN] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1688), + [anon_sym_DASH] = ACTIONS(1686), + [aux_sym_ctrl_match_token1] = ACTIONS(1688), + [anon_sym_DOT_DOT] = ACTIONS(1686), + [anon_sym_DOT_DOT2] = ACTIONS(1686), + [anon_sym_DOT] = ACTIONS(4431), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1686), + [anon_sym_DOT_DOT_LT] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1688), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1688), + [aux_sym__val_number_decimal_token1] = ACTIONS(1686), + [aux_sym__val_number_decimal_token2] = ACTIONS(1688), + [aux_sym__val_number_decimal_token3] = ACTIONS(1688), + [aux_sym__val_number_decimal_token4] = ACTIONS(1688), + [aux_sym__val_number_token1] = ACTIONS(1688), + [aux_sym__val_number_token2] = ACTIONS(1688), + [aux_sym__val_number_token3] = ACTIONS(1688), + [anon_sym_0b] = ACTIONS(1686), + [anon_sym_0o] = ACTIONS(1686), + [anon_sym_0x] = ACTIONS(1686), + [sym_val_date] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [sym__str_single_quotes] = ACTIONS(1688), + [sym__str_back_ticks] = ACTIONS(1688), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1688), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1688), + [anon_sym_err_GT] = ACTIONS(1686), + [anon_sym_out_GT] = ACTIONS(1686), + [anon_sym_e_GT] = ACTIONS(1686), + [anon_sym_o_GT] = ACTIONS(1686), + [anon_sym_err_PLUSout_GT] = ACTIONS(1686), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1686), + [anon_sym_o_PLUSe_GT] = ACTIONS(1686), + [anon_sym_e_PLUSo_GT] = ACTIONS(1686), + [anon_sym_err_GT_GT] = ACTIONS(1688), + [anon_sym_out_GT_GT] = ACTIONS(1688), + [anon_sym_e_GT_GT] = ACTIONS(1688), + [anon_sym_o_GT_GT] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1688), + [aux_sym_unquoted_token1] = ACTIONS(1686), [anon_sym_POUND] = ACTIONS(247), }, [1194] = { + [sym_cell_path] = STATE(1384), + [sym_path] = STATE(1341), [sym_comment] = STATE(1194), - [anon_sym_true] = ACTIONS(3601), - [anon_sym_false] = ACTIONS(3601), - [anon_sym_null] = ACTIONS(3601), - [aux_sym_cmd_identifier_token38] = ACTIONS(3601), - [aux_sym_cmd_identifier_token39] = ACTIONS(3601), - [aux_sym_cmd_identifier_token40] = ACTIONS(3601), - [sym__newline] = ACTIONS(3601), - [anon_sym_LBRACK] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3601), - [anon_sym_COMMA] = ACTIONS(3601), - [anon_sym_DOLLAR] = ACTIONS(3601), - [aux_sym_ctrl_match_token1] = ACTIONS(3601), - [anon_sym_RBRACE] = ACTIONS(3601), - [anon_sym__] = ACTIONS(3603), - [anon_sym_DOT_DOT] = ACTIONS(3603), - [aux_sym_expr_binary_token1] = ACTIONS(3609), - [aux_sym_expr_binary_token2] = ACTIONS(3609), - [aux_sym_expr_binary_token3] = ACTIONS(3611), - [aux_sym_expr_binary_token4] = ACTIONS(3611), - [aux_sym_expr_binary_token5] = ACTIONS(3611), - [aux_sym_expr_binary_token6] = ACTIONS(3611), - [aux_sym_expr_binary_token7] = ACTIONS(3613), - [aux_sym_expr_binary_token8] = ACTIONS(3613), - [aux_sym_expr_binary_token9] = ACTIONS(3615), - [aux_sym_expr_binary_token10] = ACTIONS(3615), - [aux_sym_expr_binary_token11] = ACTIONS(3601), - [aux_sym_expr_binary_token12] = ACTIONS(3601), - [aux_sym_expr_binary_token13] = ACTIONS(3601), - [aux_sym_expr_binary_token14] = ACTIONS(3601), - [aux_sym_expr_binary_token15] = ACTIONS(3601), - [aux_sym_expr_binary_token16] = ACTIONS(3601), - [aux_sym_expr_binary_token17] = ACTIONS(3601), - [aux_sym_expr_binary_token18] = ACTIONS(3601), - [aux_sym_expr_binary_token19] = ACTIONS(3601), - [aux_sym_expr_binary_token20] = ACTIONS(3601), - [aux_sym_expr_binary_token21] = ACTIONS(3601), - [aux_sym_expr_binary_token22] = ACTIONS(3601), - [aux_sym_expr_binary_token23] = ACTIONS(3601), - [aux_sym_expr_binary_token24] = ACTIONS(3601), - [aux_sym_expr_binary_token25] = ACTIONS(3601), - [aux_sym_expr_binary_token26] = ACTIONS(3601), - [aux_sym_expr_binary_token27] = ACTIONS(3601), - [aux_sym_expr_binary_token28] = ACTIONS(3601), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3601), - [anon_sym_DOT_DOT_LT] = ACTIONS(3601), - [aux_sym__val_number_decimal_token1] = ACTIONS(3603), - [aux_sym__val_number_decimal_token2] = ACTIONS(3601), - [aux_sym__val_number_decimal_token3] = ACTIONS(3601), - [aux_sym__val_number_decimal_token4] = ACTIONS(3601), - [aux_sym__val_number_token1] = ACTIONS(3601), - [aux_sym__val_number_token2] = ACTIONS(3601), - [aux_sym__val_number_token3] = ACTIONS(3601), - [anon_sym_0b] = ACTIONS(3603), - [anon_sym_0o] = ACTIONS(3603), - [anon_sym_0x] = ACTIONS(3603), - [sym_val_date] = ACTIONS(3601), - [anon_sym_DQUOTE] = ACTIONS(3601), - [sym__str_single_quotes] = ACTIONS(3601), - [sym__str_back_ticks] = ACTIONS(3601), - [anon_sym_err_GT] = ACTIONS(3603), - [anon_sym_out_GT] = ACTIONS(3603), - [anon_sym_e_GT] = ACTIONS(3603), - [anon_sym_o_GT] = ACTIONS(3603), - [anon_sym_err_PLUSout_GT] = ACTIONS(3603), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3603), - [anon_sym_o_PLUSe_GT] = ACTIONS(3603), - [anon_sym_e_PLUSo_GT] = ACTIONS(3603), - [anon_sym_err_GT_GT] = ACTIONS(3601), - [anon_sym_out_GT_GT] = ACTIONS(3601), - [anon_sym_e_GT_GT] = ACTIONS(3601), - [anon_sym_o_GT_GT] = ACTIONS(3601), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3601), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3601), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3601), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3601), - [aux_sym_unquoted_token1] = ACTIONS(3603), + [aux_sym_cell_path_repeat1] = STATE(1213), + [ts_builtin_sym_end] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1629), + [anon_sym_false] = ACTIONS(1629), + [anon_sym_null] = ACTIONS(1629), + [aux_sym_cmd_identifier_token38] = ACTIONS(1629), + [aux_sym_cmd_identifier_token39] = ACTIONS(1629), + [aux_sym_cmd_identifier_token40] = ACTIONS(1629), + [sym__newline] = ACTIONS(1629), + [anon_sym_SEMI] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1629), + [anon_sym_err_GT_PIPE] = ACTIONS(1629), + [anon_sym_out_GT_PIPE] = ACTIONS(1629), + [anon_sym_e_GT_PIPE] = ACTIONS(1629), + [anon_sym_o_GT_PIPE] = ACTIONS(1629), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1629), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1629), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1629), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_DOLLAR] = ACTIONS(1625), + [anon_sym_DASH_DASH] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1625), + [aux_sym_ctrl_match_token1] = ACTIONS(1629), + [anon_sym_DOT_DOT] = ACTIONS(1625), + [anon_sym_DOT_DOT2] = ACTIONS(1625), + [anon_sym_DOT] = ACTIONS(4431), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT] = ACTIONS(1625), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1629), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1629), + [aux_sym__val_number_decimal_token1] = ACTIONS(1625), + [aux_sym__val_number_decimal_token2] = ACTIONS(1629), + [aux_sym__val_number_decimal_token3] = ACTIONS(1629), + [aux_sym__val_number_decimal_token4] = ACTIONS(1629), + [aux_sym__val_number_token1] = ACTIONS(1629), + [aux_sym__val_number_token2] = ACTIONS(1629), + [aux_sym__val_number_token3] = ACTIONS(1629), + [anon_sym_0b] = ACTIONS(1625), + [anon_sym_0o] = ACTIONS(1625), + [anon_sym_0x] = ACTIONS(1625), + [sym_val_date] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1629), + [sym__str_single_quotes] = ACTIONS(1629), + [sym__str_back_ticks] = ACTIONS(1629), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1629), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1629), + [anon_sym_err_GT] = ACTIONS(1625), + [anon_sym_out_GT] = ACTIONS(1625), + [anon_sym_e_GT] = ACTIONS(1625), + [anon_sym_o_GT] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT] = ACTIONS(1625), + [anon_sym_err_GT_GT] = ACTIONS(1629), + [anon_sym_out_GT_GT] = ACTIONS(1629), + [anon_sym_e_GT_GT] = ACTIONS(1629), + [anon_sym_o_GT_GT] = ACTIONS(1629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1629), + [aux_sym_unquoted_token1] = ACTIONS(1625), [anon_sym_POUND] = ACTIONS(247), }, [1195] = { [sym_comment] = STATE(1195), - [anon_sym_true] = ACTIONS(1749), - [anon_sym_false] = ACTIONS(1749), - [anon_sym_null] = ACTIONS(1749), - [aux_sym_cmd_identifier_token38] = ACTIONS(1749), - [aux_sym_cmd_identifier_token39] = ACTIONS(1749), - [aux_sym_cmd_identifier_token40] = ACTIONS(1749), - [sym__newline] = ACTIONS(1749), - [anon_sym_LBRACK] = ACTIONS(1749), - [anon_sym_LPAREN] = ACTIONS(1749), - [anon_sym_COMMA] = ACTIONS(1749), - [anon_sym_DOLLAR] = ACTIONS(1749), - [aux_sym_ctrl_match_token1] = ACTIONS(1749), - [anon_sym_RBRACE] = ACTIONS(1749), - [anon_sym__] = ACTIONS(1747), - [anon_sym_DOT_DOT] = ACTIONS(1747), - [aux_sym_expr_binary_token1] = ACTIONS(1749), - [aux_sym_expr_binary_token2] = ACTIONS(1749), - [aux_sym_expr_binary_token3] = ACTIONS(1749), - [aux_sym_expr_binary_token4] = ACTIONS(1749), - [aux_sym_expr_binary_token5] = ACTIONS(1749), - [aux_sym_expr_binary_token6] = ACTIONS(1749), - [aux_sym_expr_binary_token7] = ACTIONS(1749), - [aux_sym_expr_binary_token8] = ACTIONS(1749), - [aux_sym_expr_binary_token9] = ACTIONS(1749), - [aux_sym_expr_binary_token10] = ACTIONS(1749), - [aux_sym_expr_binary_token11] = ACTIONS(1749), - [aux_sym_expr_binary_token12] = ACTIONS(1749), - [aux_sym_expr_binary_token13] = ACTIONS(1749), - [aux_sym_expr_binary_token14] = ACTIONS(1749), - [aux_sym_expr_binary_token15] = ACTIONS(1749), - [aux_sym_expr_binary_token16] = ACTIONS(1749), - [aux_sym_expr_binary_token17] = ACTIONS(1749), - [aux_sym_expr_binary_token18] = ACTIONS(1749), - [aux_sym_expr_binary_token19] = ACTIONS(1749), - [aux_sym_expr_binary_token20] = ACTIONS(1749), - [aux_sym_expr_binary_token21] = ACTIONS(1749), - [aux_sym_expr_binary_token22] = ACTIONS(1749), - [aux_sym_expr_binary_token23] = ACTIONS(1749), - [aux_sym_expr_binary_token24] = ACTIONS(1749), - [aux_sym_expr_binary_token25] = ACTIONS(1749), - [aux_sym_expr_binary_token26] = ACTIONS(1749), - [aux_sym_expr_binary_token27] = ACTIONS(1749), - [aux_sym_expr_binary_token28] = ACTIONS(1749), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1749), - [anon_sym_DOT_DOT_LT] = ACTIONS(1749), - [aux_sym__val_number_decimal_token1] = ACTIONS(1747), - [aux_sym__val_number_decimal_token2] = ACTIONS(1749), - [aux_sym__val_number_decimal_token3] = ACTIONS(1749), - [aux_sym__val_number_decimal_token4] = ACTIONS(1749), - [aux_sym__val_number_token1] = ACTIONS(1749), - [aux_sym__val_number_token2] = ACTIONS(1749), - [aux_sym__val_number_token3] = ACTIONS(1749), - [anon_sym_0b] = ACTIONS(1747), - [anon_sym_0o] = ACTIONS(1747), - [anon_sym_0x] = ACTIONS(1747), - [sym_val_date] = ACTIONS(1749), - [anon_sym_DQUOTE] = ACTIONS(1749), - [sym__str_single_quotes] = ACTIONS(1749), - [sym__str_back_ticks] = ACTIONS(1749), - [anon_sym_err_GT] = ACTIONS(1747), - [anon_sym_out_GT] = ACTIONS(1747), - [anon_sym_e_GT] = ACTIONS(1747), - [anon_sym_o_GT] = ACTIONS(1747), - [anon_sym_err_PLUSout_GT] = ACTIONS(1747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1747), - [anon_sym_o_PLUSe_GT] = ACTIONS(1747), - [anon_sym_e_PLUSo_GT] = ACTIONS(1747), - [anon_sym_err_GT_GT] = ACTIONS(1749), - [anon_sym_out_GT_GT] = ACTIONS(1749), - [anon_sym_e_GT_GT] = ACTIONS(1749), - [anon_sym_o_GT_GT] = ACTIONS(1749), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1749), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1749), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1749), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1749), - [aux_sym_unquoted_token1] = ACTIONS(1747), + [anon_sym_true] = ACTIONS(1587), + [anon_sym_false] = ACTIONS(1587), + [anon_sym_null] = ACTIONS(1587), + [aux_sym_cmd_identifier_token38] = ACTIONS(1587), + [aux_sym_cmd_identifier_token39] = ACTIONS(1587), + [aux_sym_cmd_identifier_token40] = ACTIONS(1587), + [sym__newline] = ACTIONS(1587), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_err_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_GT_PIPE] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_RPAREN] = ACTIONS(1587), + [anon_sym_DOLLAR] = ACTIONS(1575), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_DASH] = ACTIONS(1575), + [aux_sym_ctrl_match_token1] = ACTIONS(1587), + [anon_sym_RBRACE] = ACTIONS(1587), + [anon_sym_DOT_DOT] = ACTIONS(1575), + [anon_sym_DOT_DOT2] = ACTIONS(4433), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT] = ACTIONS(1575), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4435), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4435), + [aux_sym__val_number_decimal_token1] = ACTIONS(1575), + [aux_sym__val_number_decimal_token2] = ACTIONS(1587), + [aux_sym__val_number_decimal_token3] = ACTIONS(1587), + [aux_sym__val_number_decimal_token4] = ACTIONS(1587), + [aux_sym__val_number_token1] = ACTIONS(1587), + [aux_sym__val_number_token2] = ACTIONS(1587), + [aux_sym__val_number_token3] = ACTIONS(1587), + [anon_sym_0b] = ACTIONS(1575), + [sym_filesize_unit] = ACTIONS(4437), + [sym_duration_unit] = ACTIONS(4439), + [anon_sym_0o] = ACTIONS(1575), + [anon_sym_0x] = ACTIONS(1575), + [sym_val_date] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [sym__str_single_quotes] = ACTIONS(1587), + [sym__str_back_ticks] = ACTIONS(1587), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1587), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1587), + [anon_sym_err_GT] = ACTIONS(1575), + [anon_sym_out_GT] = ACTIONS(1575), + [anon_sym_e_GT] = ACTIONS(1575), + [anon_sym_o_GT] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT] = ACTIONS(1575), + [anon_sym_err_GT_GT] = ACTIONS(1587), + [anon_sym_out_GT_GT] = ACTIONS(1587), + [anon_sym_e_GT_GT] = ACTIONS(1587), + [anon_sym_o_GT_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [aux_sym_unquoted_token1] = ACTIONS(1575), + [aux_sym_unquoted_token2] = ACTIONS(4441), [anon_sym_POUND] = ACTIONS(247), }, [1196] = { [sym_comment] = STATE(1196), - [anon_sym_true] = ACTIONS(1857), - [anon_sym_false] = ACTIONS(1857), - [anon_sym_null] = ACTIONS(1857), - [aux_sym_cmd_identifier_token38] = ACTIONS(1857), - [aux_sym_cmd_identifier_token39] = ACTIONS(1857), - [aux_sym_cmd_identifier_token40] = ACTIONS(1857), - [sym__newline] = ACTIONS(1857), - [anon_sym_LBRACK] = ACTIONS(1857), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_COMMA] = ACTIONS(1857), - [anon_sym_DOLLAR] = ACTIONS(1857), - [aux_sym_ctrl_match_token1] = ACTIONS(1857), - [anon_sym_RBRACE] = ACTIONS(1857), - [anon_sym__] = ACTIONS(1855), - [anon_sym_DOT_DOT] = ACTIONS(1855), - [aux_sym_expr_binary_token1] = ACTIONS(1857), - [aux_sym_expr_binary_token2] = ACTIONS(1857), - [aux_sym_expr_binary_token3] = ACTIONS(1857), - [aux_sym_expr_binary_token4] = ACTIONS(1857), - [aux_sym_expr_binary_token5] = ACTIONS(1857), - [aux_sym_expr_binary_token6] = ACTIONS(1857), - [aux_sym_expr_binary_token7] = ACTIONS(1857), - [aux_sym_expr_binary_token8] = ACTIONS(1857), - [aux_sym_expr_binary_token9] = ACTIONS(1857), - [aux_sym_expr_binary_token10] = ACTIONS(1857), - [aux_sym_expr_binary_token11] = ACTIONS(1857), - [aux_sym_expr_binary_token12] = ACTIONS(1857), - [aux_sym_expr_binary_token13] = ACTIONS(1857), - [aux_sym_expr_binary_token14] = ACTIONS(1857), - [aux_sym_expr_binary_token15] = ACTIONS(1857), - [aux_sym_expr_binary_token16] = ACTIONS(1857), - [aux_sym_expr_binary_token17] = ACTIONS(1857), - [aux_sym_expr_binary_token18] = ACTIONS(1857), - [aux_sym_expr_binary_token19] = ACTIONS(1857), - [aux_sym_expr_binary_token20] = ACTIONS(1857), - [aux_sym_expr_binary_token21] = ACTIONS(1857), - [aux_sym_expr_binary_token22] = ACTIONS(1857), - [aux_sym_expr_binary_token23] = ACTIONS(1857), - [aux_sym_expr_binary_token24] = ACTIONS(1857), - [aux_sym_expr_binary_token25] = ACTIONS(1857), - [aux_sym_expr_binary_token26] = ACTIONS(1857), - [aux_sym_expr_binary_token27] = ACTIONS(1857), - [aux_sym_expr_binary_token28] = ACTIONS(1857), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1857), - [anon_sym_DOT_DOT_LT] = ACTIONS(1857), - [aux_sym__val_number_decimal_token1] = ACTIONS(1855), - [aux_sym__val_number_decimal_token2] = ACTIONS(1857), - [aux_sym__val_number_decimal_token3] = ACTIONS(1857), - [aux_sym__val_number_decimal_token4] = ACTIONS(1857), - [aux_sym__val_number_token1] = ACTIONS(1857), - [aux_sym__val_number_token2] = ACTIONS(1857), - [aux_sym__val_number_token3] = ACTIONS(1857), - [anon_sym_0b] = ACTIONS(1855), - [anon_sym_0o] = ACTIONS(1855), - [anon_sym_0x] = ACTIONS(1855), - [sym_val_date] = ACTIONS(1857), - [anon_sym_DQUOTE] = ACTIONS(1857), - [sym__str_single_quotes] = ACTIONS(1857), - [sym__str_back_ticks] = ACTIONS(1857), - [anon_sym_err_GT] = ACTIONS(1855), - [anon_sym_out_GT] = ACTIONS(1855), - [anon_sym_e_GT] = ACTIONS(1855), - [anon_sym_o_GT] = ACTIONS(1855), - [anon_sym_err_PLUSout_GT] = ACTIONS(1855), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1855), - [anon_sym_o_PLUSe_GT] = ACTIONS(1855), - [anon_sym_e_PLUSo_GT] = ACTIONS(1855), - [anon_sym_err_GT_GT] = ACTIONS(1857), - [anon_sym_out_GT_GT] = ACTIONS(1857), - [anon_sym_e_GT_GT] = ACTIONS(1857), - [anon_sym_o_GT_GT] = ACTIONS(1857), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1857), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1857), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1857), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1857), - [aux_sym_unquoted_token1] = ACTIONS(1855), + [ts_builtin_sym_end] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [aux_sym_cmd_identifier_token38] = ACTIONS(1633), + [aux_sym_cmd_identifier_token39] = ACTIONS(1633), + [aux_sym_cmd_identifier_token40] = ACTIONS(1633), + [sym__newline] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1633), + [anon_sym_err_GT_PIPE] = ACTIONS(1633), + [anon_sym_out_GT_PIPE] = ACTIONS(1633), + [anon_sym_e_GT_PIPE] = ACTIONS(1633), + [anon_sym_o_GT_PIPE] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1633), + [anon_sym_LBRACK] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_DOLLAR] = ACTIONS(1631), + [anon_sym_DASH_DASH] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1631), + [aux_sym_ctrl_match_token1] = ACTIONS(1633), + [anon_sym_DOT_DOT] = ACTIONS(1631), + [anon_sym_LPAREN2] = ACTIONS(1633), + [anon_sym_DOT_DOT2] = ACTIONS(1631), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1631), + [anon_sym_DOT_DOT_LT] = ACTIONS(1631), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1633), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1633), + [aux_sym__immediate_decimal_token1] = ACTIONS(4443), + [aux_sym__immediate_decimal_token2] = ACTIONS(4445), + [aux_sym__val_number_decimal_token1] = ACTIONS(1631), + [aux_sym__val_number_decimal_token2] = ACTIONS(1633), + [aux_sym__val_number_decimal_token3] = ACTIONS(1633), + [aux_sym__val_number_decimal_token4] = ACTIONS(1633), + [aux_sym__val_number_token1] = ACTIONS(1633), + [aux_sym__val_number_token2] = ACTIONS(1633), + [aux_sym__val_number_token3] = ACTIONS(1633), + [anon_sym_0b] = ACTIONS(1631), + [anon_sym_0o] = ACTIONS(1631), + [anon_sym_0x] = ACTIONS(1631), + [sym_val_date] = ACTIONS(1633), + [anon_sym_DQUOTE] = ACTIONS(1633), + [sym__str_single_quotes] = ACTIONS(1633), + [sym__str_back_ticks] = ACTIONS(1633), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1633), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1633), + [anon_sym_err_GT] = ACTIONS(1631), + [anon_sym_out_GT] = ACTIONS(1631), + [anon_sym_e_GT] = ACTIONS(1631), + [anon_sym_o_GT] = ACTIONS(1631), + [anon_sym_err_PLUSout_GT] = ACTIONS(1631), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1631), + [anon_sym_o_PLUSe_GT] = ACTIONS(1631), + [anon_sym_e_PLUSo_GT] = ACTIONS(1631), + [anon_sym_err_GT_GT] = ACTIONS(1633), + [anon_sym_out_GT_GT] = ACTIONS(1633), + [anon_sym_e_GT_GT] = ACTIONS(1633), + [anon_sym_o_GT_GT] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1633), + [aux_sym_unquoted_token1] = ACTIONS(1631), + [aux_sym_unquoted_token2] = ACTIONS(1631), [anon_sym_POUND] = ACTIONS(247), }, [1197] = { [sym_comment] = STATE(1197), - [anon_sym_true] = ACTIONS(1798), - [anon_sym_false] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1798), - [aux_sym_cmd_identifier_token38] = ACTIONS(1798), - [aux_sym_cmd_identifier_token39] = ACTIONS(1798), - [aux_sym_cmd_identifier_token40] = ACTIONS(1798), - [sym__newline] = ACTIONS(1798), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_DOLLAR] = ACTIONS(1798), - [aux_sym_ctrl_match_token1] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym__] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1796), - [aux_sym_expr_binary_token1] = ACTIONS(1798), - [aux_sym_expr_binary_token2] = ACTIONS(1798), - [aux_sym_expr_binary_token3] = ACTIONS(1798), - [aux_sym_expr_binary_token4] = ACTIONS(1798), - [aux_sym_expr_binary_token5] = ACTIONS(1798), - [aux_sym_expr_binary_token6] = ACTIONS(1798), - [aux_sym_expr_binary_token7] = ACTIONS(1798), - [aux_sym_expr_binary_token8] = ACTIONS(1798), - [aux_sym_expr_binary_token9] = ACTIONS(1798), - [aux_sym_expr_binary_token10] = ACTIONS(1798), - [aux_sym_expr_binary_token11] = ACTIONS(1798), - [aux_sym_expr_binary_token12] = ACTIONS(1798), - [aux_sym_expr_binary_token13] = ACTIONS(1798), - [aux_sym_expr_binary_token14] = ACTIONS(1798), - [aux_sym_expr_binary_token15] = ACTIONS(1798), - [aux_sym_expr_binary_token16] = ACTIONS(1798), - [aux_sym_expr_binary_token17] = ACTIONS(1798), - [aux_sym_expr_binary_token18] = ACTIONS(1798), - [aux_sym_expr_binary_token19] = ACTIONS(1798), - [aux_sym_expr_binary_token20] = ACTIONS(1798), - [aux_sym_expr_binary_token21] = ACTIONS(1798), - [aux_sym_expr_binary_token22] = ACTIONS(1798), - [aux_sym_expr_binary_token23] = ACTIONS(1798), - [aux_sym_expr_binary_token24] = ACTIONS(1798), - [aux_sym_expr_binary_token25] = ACTIONS(1798), - [aux_sym_expr_binary_token26] = ACTIONS(1798), - [aux_sym_expr_binary_token27] = ACTIONS(1798), - [aux_sym_expr_binary_token28] = ACTIONS(1798), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1798), - [anon_sym_DOT_DOT_LT] = ACTIONS(1798), - [aux_sym__val_number_decimal_token1] = ACTIONS(1796), - [aux_sym__val_number_decimal_token2] = ACTIONS(1798), - [aux_sym__val_number_decimal_token3] = ACTIONS(1798), - [aux_sym__val_number_decimal_token4] = ACTIONS(1798), - [aux_sym__val_number_token1] = ACTIONS(1798), - [aux_sym__val_number_token2] = ACTIONS(1798), - [aux_sym__val_number_token3] = ACTIONS(1798), - [anon_sym_0b] = ACTIONS(1796), - [anon_sym_0o] = ACTIONS(1796), - [anon_sym_0x] = ACTIONS(1796), - [sym_val_date] = ACTIONS(1798), - [anon_sym_DQUOTE] = ACTIONS(1798), - [sym__str_single_quotes] = ACTIONS(1798), - [sym__str_back_ticks] = ACTIONS(1798), - [anon_sym_err_GT] = ACTIONS(1796), - [anon_sym_out_GT] = ACTIONS(1796), - [anon_sym_e_GT] = ACTIONS(1796), - [anon_sym_o_GT] = ACTIONS(1796), - [anon_sym_err_PLUSout_GT] = ACTIONS(1796), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1796), - [anon_sym_o_PLUSe_GT] = ACTIONS(1796), - [anon_sym_e_PLUSo_GT] = ACTIONS(1796), - [anon_sym_err_GT_GT] = ACTIONS(1798), - [anon_sym_out_GT_GT] = ACTIONS(1798), - [anon_sym_e_GT_GT] = ACTIONS(1798), - [anon_sym_o_GT_GT] = ACTIONS(1798), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1798), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1798), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1798), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1798), - [aux_sym_unquoted_token1] = ACTIONS(1796), + [anon_sym_true] = ACTIONS(1499), + [anon_sym_false] = ACTIONS(1499), + [anon_sym_null] = ACTIONS(1499), + [aux_sym_cmd_identifier_token38] = ACTIONS(1499), + [aux_sym_cmd_identifier_token39] = ACTIONS(1499), + [aux_sym_cmd_identifier_token40] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_RPAREN] = ACTIONS(1499), + [anon_sym_DOLLAR] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1497), + [aux_sym_ctrl_match_token1] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1497), + [anon_sym_DOT_DOT2] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), + [anon_sym_DOT_DOT_LT] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1499), + [aux_sym__val_number_decimal_token4] = ACTIONS(1499), + [aux_sym__val_number_token1] = ACTIONS(1499), + [aux_sym__val_number_token2] = ACTIONS(1499), + [aux_sym__val_number_token3] = ACTIONS(1499), + [anon_sym_0b] = ACTIONS(1497), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1499), + [anon_sym_0o] = ACTIONS(1497), + [anon_sym_0x] = ACTIONS(1497), + [sym_val_date] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1499), + [sym__str_single_quotes] = ACTIONS(1499), + [sym__str_back_ticks] = ACTIONS(1499), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1499), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1499), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), + [aux_sym_unquoted_token1] = ACTIONS(1497), + [aux_sym_unquoted_token2] = ACTIONS(1497), [anon_sym_POUND] = ACTIONS(247), }, [1198] = { + [sym_cell_path] = STATE(1436), + [sym_path] = STATE(1341), [sym_comment] = STATE(1198), - [anon_sym_true] = ACTIONS(1745), - [anon_sym_false] = ACTIONS(1745), - [anon_sym_null] = ACTIONS(1745), - [aux_sym_cmd_identifier_token38] = ACTIONS(1745), - [aux_sym_cmd_identifier_token39] = ACTIONS(1745), - [aux_sym_cmd_identifier_token40] = ACTIONS(1745), - [sym__newline] = ACTIONS(1745), - [anon_sym_LBRACK] = ACTIONS(1745), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_COMMA] = ACTIONS(1745), - [anon_sym_DOLLAR] = ACTIONS(1745), - [aux_sym_ctrl_match_token1] = ACTIONS(1745), - [anon_sym_RBRACE] = ACTIONS(1745), - [anon_sym__] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1741), - [aux_sym_expr_binary_token1] = ACTIONS(1745), - [aux_sym_expr_binary_token2] = ACTIONS(1745), - [aux_sym_expr_binary_token3] = ACTIONS(1745), - [aux_sym_expr_binary_token4] = ACTIONS(1745), - [aux_sym_expr_binary_token5] = ACTIONS(1745), - [aux_sym_expr_binary_token6] = ACTIONS(1745), - [aux_sym_expr_binary_token7] = ACTIONS(1745), - [aux_sym_expr_binary_token8] = ACTIONS(1745), - [aux_sym_expr_binary_token9] = ACTIONS(1745), - [aux_sym_expr_binary_token10] = ACTIONS(1745), - [aux_sym_expr_binary_token11] = ACTIONS(1745), - [aux_sym_expr_binary_token12] = ACTIONS(1745), - [aux_sym_expr_binary_token13] = ACTIONS(1745), - [aux_sym_expr_binary_token14] = ACTIONS(1745), - [aux_sym_expr_binary_token15] = ACTIONS(1745), - [aux_sym_expr_binary_token16] = ACTIONS(1745), - [aux_sym_expr_binary_token17] = ACTIONS(1745), - [aux_sym_expr_binary_token18] = ACTIONS(1745), - [aux_sym_expr_binary_token19] = ACTIONS(1745), - [aux_sym_expr_binary_token20] = ACTIONS(1745), - [aux_sym_expr_binary_token21] = ACTIONS(1745), - [aux_sym_expr_binary_token22] = ACTIONS(1745), - [aux_sym_expr_binary_token23] = ACTIONS(1745), - [aux_sym_expr_binary_token24] = ACTIONS(1745), - [aux_sym_expr_binary_token25] = ACTIONS(1745), - [aux_sym_expr_binary_token26] = ACTIONS(1745), - [aux_sym_expr_binary_token27] = ACTIONS(1745), - [aux_sym_expr_binary_token28] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1745), - [anon_sym_DOT_DOT_LT] = ACTIONS(1745), - [aux_sym__val_number_decimal_token1] = ACTIONS(1741), - [aux_sym__val_number_decimal_token2] = ACTIONS(1745), - [aux_sym__val_number_decimal_token3] = ACTIONS(1745), - [aux_sym__val_number_decimal_token4] = ACTIONS(1745), - [aux_sym__val_number_token1] = ACTIONS(1745), - [aux_sym__val_number_token2] = ACTIONS(1745), - [aux_sym__val_number_token3] = ACTIONS(1745), - [anon_sym_0b] = ACTIONS(1741), - [anon_sym_0o] = ACTIONS(1741), - [anon_sym_0x] = ACTIONS(1741), - [sym_val_date] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1745), - [sym__str_single_quotes] = ACTIONS(1745), - [sym__str_back_ticks] = ACTIONS(1745), - [anon_sym_err_GT] = ACTIONS(1741), - [anon_sym_out_GT] = ACTIONS(1741), - [anon_sym_e_GT] = ACTIONS(1741), - [anon_sym_o_GT] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT] = ACTIONS(1741), - [anon_sym_err_GT_GT] = ACTIONS(1745), - [anon_sym_out_GT_GT] = ACTIONS(1745), - [anon_sym_e_GT_GT] = ACTIONS(1745), - [anon_sym_o_GT_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1745), - [aux_sym_unquoted_token1] = ACTIONS(1741), + [aux_sym_cell_path_repeat1] = STATE(1213), + [ts_builtin_sym_end] = ACTIONS(1013), + [anon_sym_true] = ACTIONS(1013), + [anon_sym_false] = ACTIONS(1013), + [anon_sym_null] = ACTIONS(1013), + [aux_sym_cmd_identifier_token38] = ACTIONS(1013), + [aux_sym_cmd_identifier_token39] = ACTIONS(1013), + [aux_sym_cmd_identifier_token40] = ACTIONS(1013), + [sym__newline] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1013), + [anon_sym_PIPE] = ACTIONS(1013), + [anon_sym_err_GT_PIPE] = ACTIONS(1013), + [anon_sym_out_GT_PIPE] = ACTIONS(1013), + [anon_sym_e_GT_PIPE] = ACTIONS(1013), + [anon_sym_o_GT_PIPE] = ACTIONS(1013), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1013), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1013), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1013), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1013), + [anon_sym_LBRACK] = ACTIONS(1013), + [anon_sym_LPAREN] = ACTIONS(1013), + [anon_sym_DOLLAR] = ACTIONS(1011), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_DASH] = ACTIONS(1011), + [aux_sym_ctrl_match_token1] = ACTIONS(1013), + [anon_sym_DOT_DOT] = ACTIONS(1011), + [anon_sym_DOT_DOT2] = ACTIONS(1011), + [anon_sym_DOT] = ACTIONS(4431), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1011), + [anon_sym_DOT_DOT_LT] = ACTIONS(1011), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1013), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1013), + [aux_sym__val_number_decimal_token1] = ACTIONS(1011), + [aux_sym__val_number_decimal_token2] = ACTIONS(1013), + [aux_sym__val_number_decimal_token3] = ACTIONS(1013), + [aux_sym__val_number_decimal_token4] = ACTIONS(1013), + [aux_sym__val_number_token1] = ACTIONS(1013), + [aux_sym__val_number_token2] = ACTIONS(1013), + [aux_sym__val_number_token3] = ACTIONS(1013), + [anon_sym_0b] = ACTIONS(1011), + [anon_sym_0o] = ACTIONS(1011), + [anon_sym_0x] = ACTIONS(1011), + [sym_val_date] = ACTIONS(1013), + [anon_sym_DQUOTE] = ACTIONS(1013), + [sym__str_single_quotes] = ACTIONS(1013), + [sym__str_back_ticks] = ACTIONS(1013), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1013), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1013), + [anon_sym_err_GT] = ACTIONS(1011), + [anon_sym_out_GT] = ACTIONS(1011), + [anon_sym_e_GT] = ACTIONS(1011), + [anon_sym_o_GT] = ACTIONS(1011), + [anon_sym_err_PLUSout_GT] = ACTIONS(1011), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1011), + [anon_sym_o_PLUSe_GT] = ACTIONS(1011), + [anon_sym_e_PLUSo_GT] = ACTIONS(1011), + [anon_sym_err_GT_GT] = ACTIONS(1013), + [anon_sym_out_GT_GT] = ACTIONS(1013), + [anon_sym_e_GT_GT] = ACTIONS(1013), + [anon_sym_o_GT_GT] = ACTIONS(1013), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1013), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1013), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1013), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1013), + [aux_sym_unquoted_token1] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(247), }, [1199] = { [sym_comment] = STATE(1199), - [anon_sym_true] = ACTIONS(2365), - [anon_sym_false] = ACTIONS(2365), - [anon_sym_null] = ACTIONS(2365), - [aux_sym_cmd_identifier_token38] = ACTIONS(2365), - [aux_sym_cmd_identifier_token39] = ACTIONS(2365), - [aux_sym_cmd_identifier_token40] = ACTIONS(2365), - [sym__newline] = ACTIONS(2365), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2365), - [anon_sym_COMMA] = ACTIONS(2365), - [anon_sym_DOLLAR] = ACTIONS(2365), - [aux_sym_ctrl_match_token1] = ACTIONS(2365), - [anon_sym_RBRACE] = ACTIONS(2365), - [anon_sym__] = ACTIONS(2363), - [anon_sym_DOT_DOT] = ACTIONS(2363), - [aux_sym_expr_binary_token1] = ACTIONS(2365), - [aux_sym_expr_binary_token2] = ACTIONS(2365), - [aux_sym_expr_binary_token3] = ACTIONS(2365), - [aux_sym_expr_binary_token4] = ACTIONS(2365), - [aux_sym_expr_binary_token5] = ACTIONS(2365), - [aux_sym_expr_binary_token6] = ACTIONS(2365), - [aux_sym_expr_binary_token7] = ACTIONS(2365), - [aux_sym_expr_binary_token8] = ACTIONS(2365), - [aux_sym_expr_binary_token9] = ACTIONS(2365), - [aux_sym_expr_binary_token10] = ACTIONS(2365), - [aux_sym_expr_binary_token11] = ACTIONS(2365), - [aux_sym_expr_binary_token12] = ACTIONS(2365), - [aux_sym_expr_binary_token13] = ACTIONS(2365), - [aux_sym_expr_binary_token14] = ACTIONS(2365), - [aux_sym_expr_binary_token15] = ACTIONS(2365), - [aux_sym_expr_binary_token16] = ACTIONS(2365), - [aux_sym_expr_binary_token17] = ACTIONS(2365), - [aux_sym_expr_binary_token18] = ACTIONS(2365), - [aux_sym_expr_binary_token19] = ACTIONS(2365), - [aux_sym_expr_binary_token20] = ACTIONS(2365), - [aux_sym_expr_binary_token21] = ACTIONS(2365), - [aux_sym_expr_binary_token22] = ACTIONS(2365), - [aux_sym_expr_binary_token23] = ACTIONS(2365), - [aux_sym_expr_binary_token24] = ACTIONS(2365), - [aux_sym_expr_binary_token25] = ACTIONS(2365), - [aux_sym_expr_binary_token26] = ACTIONS(2365), - [aux_sym_expr_binary_token27] = ACTIONS(2365), - [aux_sym_expr_binary_token28] = ACTIONS(2365), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2365), - [anon_sym_DOT_DOT_LT] = ACTIONS(2365), - [aux_sym__val_number_decimal_token1] = ACTIONS(2363), - [aux_sym__val_number_decimal_token2] = ACTIONS(2365), - [aux_sym__val_number_decimal_token3] = ACTIONS(2365), - [aux_sym__val_number_decimal_token4] = ACTIONS(2365), - [aux_sym__val_number_token1] = ACTIONS(2365), - [aux_sym__val_number_token2] = ACTIONS(2365), - [aux_sym__val_number_token3] = ACTIONS(2365), - [anon_sym_0b] = ACTIONS(2363), - [anon_sym_0o] = ACTIONS(2363), - [anon_sym_0x] = ACTIONS(2363), - [sym_val_date] = ACTIONS(2365), - [anon_sym_DQUOTE] = ACTIONS(2365), - [sym__str_single_quotes] = ACTIONS(2365), - [sym__str_back_ticks] = ACTIONS(2365), - [anon_sym_err_GT] = ACTIONS(2363), - [anon_sym_out_GT] = ACTIONS(2363), - [anon_sym_e_GT] = ACTIONS(2363), - [anon_sym_o_GT] = ACTIONS(2363), - [anon_sym_err_PLUSout_GT] = ACTIONS(2363), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2363), - [anon_sym_o_PLUSe_GT] = ACTIONS(2363), - [anon_sym_e_PLUSo_GT] = ACTIONS(2363), - [anon_sym_err_GT_GT] = ACTIONS(2365), - [anon_sym_out_GT_GT] = ACTIONS(2365), - [anon_sym_e_GT_GT] = ACTIONS(2365), - [anon_sym_o_GT_GT] = ACTIONS(2365), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2365), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2365), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2365), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2365), - [aux_sym_unquoted_token1] = ACTIONS(2363), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(1519), + [anon_sym_false] = ACTIONS(1519), + [anon_sym_null] = ACTIONS(1519), + [aux_sym_cmd_identifier_token38] = ACTIONS(1519), + [aux_sym_cmd_identifier_token39] = ACTIONS(1519), + [aux_sym_cmd_identifier_token40] = ACTIONS(1519), + [sym__newline] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1519), + [anon_sym_err_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_GT_PIPE] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_RPAREN] = ACTIONS(1519), + [anon_sym_DOLLAR] = ACTIONS(1517), + [anon_sym_DASH_DASH] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1517), + [aux_sym_ctrl_match_token1] = ACTIONS(1519), + [anon_sym_RBRACE] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_DOT_DOT2] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1517), + [anon_sym_DOT_DOT_LT] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token1] = ACTIONS(1517), + [aux_sym__val_number_decimal_token2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1519), + [aux_sym__val_number_token1] = ACTIONS(1519), + [aux_sym__val_number_token2] = ACTIONS(1519), + [aux_sym__val_number_token3] = ACTIONS(1519), + [anon_sym_0b] = ACTIONS(1517), + [sym_filesize_unit] = ACTIONS(1519), + [sym_duration_unit] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1517), + [sym_val_date] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1519), + [sym__str_single_quotes] = ACTIONS(1519), + [sym__str_back_ticks] = ACTIONS(1519), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1519), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1519), + [anon_sym_err_GT] = ACTIONS(1517), + [anon_sym_out_GT] = ACTIONS(1517), + [anon_sym_e_GT] = ACTIONS(1517), + [anon_sym_o_GT] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT] = ACTIONS(1517), + [anon_sym_err_GT_GT] = ACTIONS(1519), + [anon_sym_out_GT_GT] = ACTIONS(1519), + [anon_sym_e_GT_GT] = ACTIONS(1519), + [anon_sym_o_GT_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), + [aux_sym_unquoted_token1] = ACTIONS(1517), + [aux_sym_unquoted_token2] = ACTIONS(1517), + [anon_sym_POUND] = ACTIONS(247), }, [1200] = { [sym_comment] = STATE(1200), - [anon_sym_true] = ACTIONS(2369), - [anon_sym_false] = ACTIONS(2369), - [anon_sym_null] = ACTIONS(2369), - [aux_sym_cmd_identifier_token38] = ACTIONS(2369), - [aux_sym_cmd_identifier_token39] = ACTIONS(2369), - [aux_sym_cmd_identifier_token40] = ACTIONS(2369), - [sym__newline] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2369), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_COMMA] = ACTIONS(2369), - [anon_sym_DOLLAR] = ACTIONS(2369), - [aux_sym_ctrl_match_token1] = ACTIONS(2369), - [anon_sym_RBRACE] = ACTIONS(2369), - [anon_sym__] = ACTIONS(2367), - [anon_sym_DOT_DOT] = ACTIONS(2367), - [aux_sym_expr_binary_token1] = ACTIONS(2369), - [aux_sym_expr_binary_token2] = ACTIONS(2369), - [aux_sym_expr_binary_token3] = ACTIONS(2369), - [aux_sym_expr_binary_token4] = ACTIONS(2369), - [aux_sym_expr_binary_token5] = ACTIONS(2369), - [aux_sym_expr_binary_token6] = ACTIONS(2369), - [aux_sym_expr_binary_token7] = ACTIONS(2369), - [aux_sym_expr_binary_token8] = ACTIONS(2369), - [aux_sym_expr_binary_token9] = ACTIONS(2369), - [aux_sym_expr_binary_token10] = ACTIONS(2369), - [aux_sym_expr_binary_token11] = ACTIONS(2369), - [aux_sym_expr_binary_token12] = ACTIONS(2369), - [aux_sym_expr_binary_token13] = ACTIONS(2369), - [aux_sym_expr_binary_token14] = ACTIONS(2369), - [aux_sym_expr_binary_token15] = ACTIONS(2369), - [aux_sym_expr_binary_token16] = ACTIONS(2369), - [aux_sym_expr_binary_token17] = ACTIONS(2369), - [aux_sym_expr_binary_token18] = ACTIONS(2369), - [aux_sym_expr_binary_token19] = ACTIONS(2369), - [aux_sym_expr_binary_token20] = ACTIONS(2369), - [aux_sym_expr_binary_token21] = ACTIONS(2369), - [aux_sym_expr_binary_token22] = ACTIONS(2369), - [aux_sym_expr_binary_token23] = ACTIONS(2369), - [aux_sym_expr_binary_token24] = ACTIONS(2369), - [aux_sym_expr_binary_token25] = ACTIONS(2369), - [aux_sym_expr_binary_token26] = ACTIONS(2369), - [aux_sym_expr_binary_token27] = ACTIONS(2369), - [aux_sym_expr_binary_token28] = ACTIONS(2369), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2369), - [anon_sym_DOT_DOT_LT] = ACTIONS(2369), - [aux_sym__val_number_decimal_token1] = ACTIONS(2367), - [aux_sym__val_number_decimal_token2] = ACTIONS(2369), - [aux_sym__val_number_decimal_token3] = ACTIONS(2369), - [aux_sym__val_number_decimal_token4] = ACTIONS(2369), - [aux_sym__val_number_token1] = ACTIONS(2369), - [aux_sym__val_number_token2] = ACTIONS(2369), - [aux_sym__val_number_token3] = ACTIONS(2369), - [anon_sym_0b] = ACTIONS(2367), - [anon_sym_0o] = ACTIONS(2367), - [anon_sym_0x] = ACTIONS(2367), - [sym_val_date] = ACTIONS(2369), - [anon_sym_DQUOTE] = ACTIONS(2369), - [sym__str_single_quotes] = ACTIONS(2369), - [sym__str_back_ticks] = ACTIONS(2369), - [anon_sym_err_GT] = ACTIONS(2367), - [anon_sym_out_GT] = ACTIONS(2367), - [anon_sym_e_GT] = ACTIONS(2367), - [anon_sym_o_GT] = ACTIONS(2367), - [anon_sym_err_PLUSout_GT] = ACTIONS(2367), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2367), - [anon_sym_o_PLUSe_GT] = ACTIONS(2367), - [anon_sym_e_PLUSo_GT] = ACTIONS(2367), - [anon_sym_err_GT_GT] = ACTIONS(2369), - [anon_sym_out_GT_GT] = ACTIONS(2369), - [anon_sym_e_GT_GT] = ACTIONS(2369), - [anon_sym_o_GT_GT] = ACTIONS(2369), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2369), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2369), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2369), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2369), - [aux_sym_unquoted_token1] = ACTIONS(2367), + [ts_builtin_sym_end] = ACTIONS(1499), + [anon_sym_true] = ACTIONS(1499), + [anon_sym_false] = ACTIONS(1499), + [anon_sym_null] = ACTIONS(1499), + [aux_sym_cmd_identifier_token38] = ACTIONS(1499), + [aux_sym_cmd_identifier_token39] = ACTIONS(1499), + [aux_sym_cmd_identifier_token40] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1497), + [anon_sym_DOLLAR] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1497), + [aux_sym_ctrl_match_token1] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1497), + [anon_sym_LPAREN2] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), + [anon_sym_DOT_DOT_LT] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1499), + [aux_sym__val_number_decimal_token4] = ACTIONS(1499), + [aux_sym__val_number_token1] = ACTIONS(1499), + [aux_sym__val_number_token2] = ACTIONS(1499), + [aux_sym__val_number_token3] = ACTIONS(1499), + [anon_sym_0b] = ACTIONS(1497), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1499), + [anon_sym_0o] = ACTIONS(1497), + [anon_sym_0x] = ACTIONS(1497), + [sym_val_date] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1499), + [sym__str_single_quotes] = ACTIONS(1499), + [sym__str_back_ticks] = ACTIONS(1499), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1499), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1499), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), + [aux_sym_unquoted_token1] = ACTIONS(1497), + [aux_sym_unquoted_token2] = ACTIONS(1497), [anon_sym_POUND] = ACTIONS(247), }, [1201] = { [sym_comment] = STATE(1201), - [anon_sym_true] = ACTIONS(1901), - [anon_sym_false] = ACTIONS(1901), - [anon_sym_null] = ACTIONS(1901), - [aux_sym_cmd_identifier_token38] = ACTIONS(1901), - [aux_sym_cmd_identifier_token39] = ACTIONS(1901), - [aux_sym_cmd_identifier_token40] = ACTIONS(1901), - [sym__newline] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1901), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_COMMA] = ACTIONS(1901), - [anon_sym_DOLLAR] = ACTIONS(1901), - [aux_sym_ctrl_match_token1] = ACTIONS(1901), - [anon_sym_RBRACE] = ACTIONS(1901), - [anon_sym__] = ACTIONS(1899), - [anon_sym_DOT_DOT] = ACTIONS(1899), - [aux_sym_expr_binary_token1] = ACTIONS(1901), - [aux_sym_expr_binary_token2] = ACTIONS(1901), - [aux_sym_expr_binary_token3] = ACTIONS(1901), - [aux_sym_expr_binary_token4] = ACTIONS(1901), - [aux_sym_expr_binary_token5] = ACTIONS(1901), - [aux_sym_expr_binary_token6] = ACTIONS(1901), - [aux_sym_expr_binary_token7] = ACTIONS(1901), - [aux_sym_expr_binary_token8] = ACTIONS(1901), - [aux_sym_expr_binary_token9] = ACTIONS(1901), - [aux_sym_expr_binary_token10] = ACTIONS(1901), - [aux_sym_expr_binary_token11] = ACTIONS(1901), - [aux_sym_expr_binary_token12] = ACTIONS(1901), - [aux_sym_expr_binary_token13] = ACTIONS(1901), - [aux_sym_expr_binary_token14] = ACTIONS(1901), - [aux_sym_expr_binary_token15] = ACTIONS(1901), - [aux_sym_expr_binary_token16] = ACTIONS(1901), - [aux_sym_expr_binary_token17] = ACTIONS(1901), - [aux_sym_expr_binary_token18] = ACTIONS(1901), - [aux_sym_expr_binary_token19] = ACTIONS(1901), - [aux_sym_expr_binary_token20] = ACTIONS(1901), - [aux_sym_expr_binary_token21] = ACTIONS(1901), - [aux_sym_expr_binary_token22] = ACTIONS(1901), - [aux_sym_expr_binary_token23] = ACTIONS(1901), - [aux_sym_expr_binary_token24] = ACTIONS(1901), - [aux_sym_expr_binary_token25] = ACTIONS(1901), - [aux_sym_expr_binary_token26] = ACTIONS(1901), - [aux_sym_expr_binary_token27] = ACTIONS(1901), - [aux_sym_expr_binary_token28] = ACTIONS(1901), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1901), - [anon_sym_DOT_DOT_LT] = ACTIONS(1901), - [aux_sym__val_number_decimal_token1] = ACTIONS(1899), - [aux_sym__val_number_decimal_token2] = ACTIONS(1901), - [aux_sym__val_number_decimal_token3] = ACTIONS(1901), - [aux_sym__val_number_decimal_token4] = ACTIONS(1901), - [aux_sym__val_number_token1] = ACTIONS(1901), - [aux_sym__val_number_token2] = ACTIONS(1901), - [aux_sym__val_number_token3] = ACTIONS(1901), - [anon_sym_0b] = ACTIONS(1899), - [anon_sym_0o] = ACTIONS(1899), - [anon_sym_0x] = ACTIONS(1899), - [sym_val_date] = ACTIONS(1901), - [anon_sym_DQUOTE] = ACTIONS(1901), - [sym__str_single_quotes] = ACTIONS(1901), - [sym__str_back_ticks] = ACTIONS(1901), - [anon_sym_err_GT] = ACTIONS(1899), - [anon_sym_out_GT] = ACTIONS(1899), - [anon_sym_e_GT] = ACTIONS(1899), - [anon_sym_o_GT] = ACTIONS(1899), - [anon_sym_err_PLUSout_GT] = ACTIONS(1899), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1899), - [anon_sym_o_PLUSe_GT] = ACTIONS(1899), - [anon_sym_e_PLUSo_GT] = ACTIONS(1899), - [anon_sym_err_GT_GT] = ACTIONS(1901), - [anon_sym_out_GT_GT] = ACTIONS(1901), - [anon_sym_e_GT_GT] = ACTIONS(1901), - [anon_sym_o_GT_GT] = ACTIONS(1901), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1901), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1901), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1901), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1901), - [aux_sym_unquoted_token1] = ACTIONS(1899), + [anon_sym_true] = ACTIONS(1567), + [anon_sym_false] = ACTIONS(1567), + [anon_sym_null] = ACTIONS(1567), + [aux_sym_cmd_identifier_token38] = ACTIONS(1567), + [aux_sym_cmd_identifier_token39] = ACTIONS(1567), + [aux_sym_cmd_identifier_token40] = ACTIONS(1567), + [sym__newline] = ACTIONS(1567), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_err_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_GT_PIPE] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), + [anon_sym_LBRACK] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1567), + [anon_sym_RPAREN] = ACTIONS(1567), + [anon_sym_DOLLAR] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1565), + [aux_sym_ctrl_match_token1] = ACTIONS(1567), + [anon_sym_RBRACE] = ACTIONS(1567), + [anon_sym_DOT_DOT] = ACTIONS(1565), + [anon_sym_DOT_DOT2] = ACTIONS(1565), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1565), + [anon_sym_DOT_DOT_LT] = ACTIONS(1565), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), + [aux_sym__val_number_decimal_token1] = ACTIONS(1565), + [aux_sym__val_number_decimal_token2] = ACTIONS(1567), + [aux_sym__val_number_decimal_token3] = ACTIONS(1567), + [aux_sym__val_number_decimal_token4] = ACTIONS(1567), + [aux_sym__val_number_token1] = ACTIONS(1567), + [aux_sym__val_number_token2] = ACTIONS(1567), + [aux_sym__val_number_token3] = ACTIONS(1567), + [anon_sym_0b] = ACTIONS(1565), + [sym_filesize_unit] = ACTIONS(1567), + [sym_duration_unit] = ACTIONS(1567), + [anon_sym_0o] = ACTIONS(1565), + [anon_sym_0x] = ACTIONS(1565), + [sym_val_date] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(1567), + [sym__str_single_quotes] = ACTIONS(1567), + [sym__str_back_ticks] = ACTIONS(1567), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1567), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1567), + [anon_sym_err_GT] = ACTIONS(1565), + [anon_sym_out_GT] = ACTIONS(1565), + [anon_sym_e_GT] = ACTIONS(1565), + [anon_sym_o_GT] = ACTIONS(1565), + [anon_sym_err_PLUSout_GT] = ACTIONS(1565), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), + [anon_sym_o_PLUSe_GT] = ACTIONS(1565), + [anon_sym_e_PLUSo_GT] = ACTIONS(1565), + [anon_sym_err_GT_GT] = ACTIONS(1567), + [anon_sym_out_GT_GT] = ACTIONS(1567), + [anon_sym_e_GT_GT] = ACTIONS(1567), + [anon_sym_o_GT_GT] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), + [aux_sym_unquoted_token1] = ACTIONS(1565), + [aux_sym_unquoted_token2] = ACTIONS(1565), [anon_sym_POUND] = ACTIONS(247), }, [1202] = { + [sym__match_pattern_expression] = STATE(3052), + [sym__match_pattern_value] = STATE(3028), + [sym__match_pattern_list] = STATE(3029), + [sym__match_pattern_record] = STATE(3030), + [sym_expr_parenthesized] = STATE(2816), + [sym_val_range] = STATE(3028), + [sym__val_range] = STATE(7670), + [sym_val_nothing] = STATE(3031), + [sym_val_bool] = STATE(2974), + [sym_val_variable] = STATE(2817), + [sym_val_number] = STATE(3031), + [sym__val_number_decimal] = STATE(2606), + [sym__val_number] = STATE(3023), + [sym_val_duration] = STATE(3031), + [sym_val_filesize] = STATE(3031), + [sym_val_binary] = STATE(3031), + [sym_val_string] = STATE(3031), + [sym__str_double_quotes] = STATE(3007), + [sym_val_table] = STATE(3031), + [sym__unquoted_in_list] = STATE(3052), + [sym__unquoted_anonymous_prefix] = STATE(7659), [sym_comment] = STATE(1202), - [anon_sym_true] = ACTIONS(1837), - [anon_sym_false] = ACTIONS(1837), - [anon_sym_null] = ACTIONS(1837), - [aux_sym_cmd_identifier_token38] = ACTIONS(1837), - [aux_sym_cmd_identifier_token39] = ACTIONS(1837), - [aux_sym_cmd_identifier_token40] = ACTIONS(1837), - [sym__newline] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1837), - [aux_sym_ctrl_match_token1] = ACTIONS(1837), - [anon_sym_RBRACE] = ACTIONS(1837), - [anon_sym__] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1835), - [aux_sym_expr_binary_token1] = ACTIONS(1837), - [aux_sym_expr_binary_token2] = ACTIONS(1837), - [aux_sym_expr_binary_token3] = ACTIONS(1837), - [aux_sym_expr_binary_token4] = ACTIONS(1837), - [aux_sym_expr_binary_token5] = ACTIONS(1837), - [aux_sym_expr_binary_token6] = ACTIONS(1837), - [aux_sym_expr_binary_token7] = ACTIONS(1837), - [aux_sym_expr_binary_token8] = ACTIONS(1837), - [aux_sym_expr_binary_token9] = ACTIONS(1837), - [aux_sym_expr_binary_token10] = ACTIONS(1837), - [aux_sym_expr_binary_token11] = ACTIONS(1837), - [aux_sym_expr_binary_token12] = ACTIONS(1837), - [aux_sym_expr_binary_token13] = ACTIONS(1837), - [aux_sym_expr_binary_token14] = ACTIONS(1837), - [aux_sym_expr_binary_token15] = ACTIONS(1837), - [aux_sym_expr_binary_token16] = ACTIONS(1837), - [aux_sym_expr_binary_token17] = ACTIONS(1837), - [aux_sym_expr_binary_token18] = ACTIONS(1837), - [aux_sym_expr_binary_token19] = ACTIONS(1837), - [aux_sym_expr_binary_token20] = ACTIONS(1837), - [aux_sym_expr_binary_token21] = ACTIONS(1837), - [aux_sym_expr_binary_token22] = ACTIONS(1837), - [aux_sym_expr_binary_token23] = ACTIONS(1837), - [aux_sym_expr_binary_token24] = ACTIONS(1837), - [aux_sym_expr_binary_token25] = ACTIONS(1837), - [aux_sym_expr_binary_token26] = ACTIONS(1837), - [aux_sym_expr_binary_token27] = ACTIONS(1837), - [aux_sym_expr_binary_token28] = ACTIONS(1837), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1837), - [anon_sym_DOT_DOT_LT] = ACTIONS(1837), - [aux_sym__val_number_decimal_token1] = ACTIONS(1835), - [aux_sym__val_number_decimal_token2] = ACTIONS(1837), - [aux_sym__val_number_decimal_token3] = ACTIONS(1837), - [aux_sym__val_number_decimal_token4] = ACTIONS(1837), - [aux_sym__val_number_token1] = ACTIONS(1837), - [aux_sym__val_number_token2] = ACTIONS(1837), - [aux_sym__val_number_token3] = ACTIONS(1837), - [anon_sym_0b] = ACTIONS(1835), - [anon_sym_0o] = ACTIONS(1835), - [anon_sym_0x] = ACTIONS(1835), - [sym_val_date] = ACTIONS(1837), - [anon_sym_DQUOTE] = ACTIONS(1837), - [sym__str_single_quotes] = ACTIONS(1837), - [sym__str_back_ticks] = ACTIONS(1837), - [anon_sym_err_GT] = ACTIONS(1835), - [anon_sym_out_GT] = ACTIONS(1835), - [anon_sym_e_GT] = ACTIONS(1835), - [anon_sym_o_GT] = ACTIONS(1835), - [anon_sym_err_PLUSout_GT] = ACTIONS(1835), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1835), - [anon_sym_o_PLUSe_GT] = ACTIONS(1835), - [anon_sym_e_PLUSo_GT] = ACTIONS(1835), - [anon_sym_err_GT_GT] = ACTIONS(1837), - [anon_sym_out_GT_GT] = ACTIONS(1837), - [anon_sym_e_GT_GT] = ACTIONS(1837), - [anon_sym_o_GT_GT] = ACTIONS(1837), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1837), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1837), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1837), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1837), - [aux_sym_unquoted_token1] = ACTIONS(1835), + [aux_sym__match_pattern_list_repeat1] = STATE(1202), + [anon_sym_true] = ACTIONS(4447), + [anon_sym_false] = ACTIONS(4447), + [anon_sym_null] = ACTIONS(4450), + [aux_sym_cmd_identifier_token38] = ACTIONS(4453), + [aux_sym_cmd_identifier_token39] = ACTIONS(4453), + [aux_sym_cmd_identifier_token40] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4456), + [anon_sym_RBRACK] = ACTIONS(4459), + [anon_sym_LPAREN] = ACTIONS(4461), + [anon_sym_DOLLAR] = ACTIONS(4464), + [aux_sym_ctrl_match_token1] = ACTIONS(4467), + [anon_sym_DOT_DOT] = ACTIONS(4470), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4473), + [anon_sym_DOT_DOT_LT] = ACTIONS(4473), + [aux_sym__val_number_decimal_token1] = ACTIONS(4476), + [aux_sym__val_number_decimal_token2] = ACTIONS(4479), + [aux_sym__val_number_decimal_token3] = ACTIONS(4482), + [aux_sym__val_number_decimal_token4] = ACTIONS(4485), + [aux_sym__val_number_token1] = ACTIONS(4488), + [aux_sym__val_number_token2] = ACTIONS(4488), + [aux_sym__val_number_token3] = ACTIONS(4488), + [anon_sym_0b] = ACTIONS(4491), + [anon_sym_0o] = ACTIONS(4494), + [anon_sym_0x] = ACTIONS(4494), + [sym_val_date] = ACTIONS(4497), + [anon_sym_DQUOTE] = ACTIONS(4500), + [sym__str_single_quotes] = ACTIONS(4503), + [sym__str_back_ticks] = ACTIONS(4503), + [anon_sym_err_GT] = ACTIONS(4506), + [anon_sym_out_GT] = ACTIONS(4506), + [anon_sym_e_GT] = ACTIONS(4506), + [anon_sym_o_GT] = ACTIONS(4506), + [anon_sym_err_PLUSout_GT] = ACTIONS(4506), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4506), + [anon_sym_o_PLUSe_GT] = ACTIONS(4506), + [anon_sym_e_PLUSo_GT] = ACTIONS(4506), + [anon_sym_err_GT_GT] = ACTIONS(4509), + [anon_sym_out_GT_GT] = ACTIONS(4509), + [anon_sym_e_GT_GT] = ACTIONS(4509), + [anon_sym_o_GT_GT] = ACTIONS(4509), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4509), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4509), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4509), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4509), + [aux_sym__unquoted_in_list_token1] = ACTIONS(4512), [anon_sym_POUND] = ACTIONS(247), }, [1203] = { [sym_comment] = STATE(1203), - [anon_sym_true] = ACTIONS(2373), - [anon_sym_false] = ACTIONS(2373), - [anon_sym_null] = ACTIONS(2373), - [aux_sym_cmd_identifier_token38] = ACTIONS(2373), - [aux_sym_cmd_identifier_token39] = ACTIONS(2373), - [aux_sym_cmd_identifier_token40] = ACTIONS(2373), - [sym__newline] = ACTIONS(2373), - [anon_sym_LBRACK] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_COMMA] = ACTIONS(2373), - [anon_sym_DOLLAR] = ACTIONS(2373), - [aux_sym_ctrl_match_token1] = ACTIONS(2373), - [anon_sym_RBRACE] = ACTIONS(2373), - [anon_sym__] = ACTIONS(2371), - [anon_sym_DOT_DOT] = ACTIONS(2371), - [aux_sym_expr_binary_token1] = ACTIONS(2373), - [aux_sym_expr_binary_token2] = ACTIONS(2373), - [aux_sym_expr_binary_token3] = ACTIONS(2373), - [aux_sym_expr_binary_token4] = ACTIONS(2373), - [aux_sym_expr_binary_token5] = ACTIONS(2373), - [aux_sym_expr_binary_token6] = ACTIONS(2373), - [aux_sym_expr_binary_token7] = ACTIONS(2373), - [aux_sym_expr_binary_token8] = ACTIONS(2373), - [aux_sym_expr_binary_token9] = ACTIONS(2373), - [aux_sym_expr_binary_token10] = ACTIONS(2373), - [aux_sym_expr_binary_token11] = ACTIONS(2373), - [aux_sym_expr_binary_token12] = ACTIONS(2373), - [aux_sym_expr_binary_token13] = ACTIONS(2373), - [aux_sym_expr_binary_token14] = ACTIONS(2373), - [aux_sym_expr_binary_token15] = ACTIONS(2373), - [aux_sym_expr_binary_token16] = ACTIONS(2373), - [aux_sym_expr_binary_token17] = ACTIONS(2373), - [aux_sym_expr_binary_token18] = ACTIONS(2373), - [aux_sym_expr_binary_token19] = ACTIONS(2373), - [aux_sym_expr_binary_token20] = ACTIONS(2373), - [aux_sym_expr_binary_token21] = ACTIONS(2373), - [aux_sym_expr_binary_token22] = ACTIONS(2373), - [aux_sym_expr_binary_token23] = ACTIONS(2373), - [aux_sym_expr_binary_token24] = ACTIONS(2373), - [aux_sym_expr_binary_token25] = ACTIONS(2373), - [aux_sym_expr_binary_token26] = ACTIONS(2373), - [aux_sym_expr_binary_token27] = ACTIONS(2373), - [aux_sym_expr_binary_token28] = ACTIONS(2373), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2373), - [anon_sym_DOT_DOT_LT] = ACTIONS(2373), - [aux_sym__val_number_decimal_token1] = ACTIONS(2371), - [aux_sym__val_number_decimal_token2] = ACTIONS(2373), - [aux_sym__val_number_decimal_token3] = ACTIONS(2373), - [aux_sym__val_number_decimal_token4] = ACTIONS(2373), - [aux_sym__val_number_token1] = ACTIONS(2373), - [aux_sym__val_number_token2] = ACTIONS(2373), - [aux_sym__val_number_token3] = ACTIONS(2373), - [anon_sym_0b] = ACTIONS(2371), - [anon_sym_0o] = ACTIONS(2371), - [anon_sym_0x] = ACTIONS(2371), - [sym_val_date] = ACTIONS(2373), - [anon_sym_DQUOTE] = ACTIONS(2373), - [sym__str_single_quotes] = ACTIONS(2373), - [sym__str_back_ticks] = ACTIONS(2373), - [anon_sym_err_GT] = ACTIONS(2371), - [anon_sym_out_GT] = ACTIONS(2371), - [anon_sym_e_GT] = ACTIONS(2371), - [anon_sym_o_GT] = ACTIONS(2371), - [anon_sym_err_PLUSout_GT] = ACTIONS(2371), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2371), - [anon_sym_o_PLUSe_GT] = ACTIONS(2371), - [anon_sym_e_PLUSo_GT] = ACTIONS(2371), - [anon_sym_err_GT_GT] = ACTIONS(2373), - [anon_sym_out_GT_GT] = ACTIONS(2373), - [anon_sym_e_GT_GT] = ACTIONS(2373), - [anon_sym_o_GT_GT] = ACTIONS(2373), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2373), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2373), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2373), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2373), - [aux_sym_unquoted_token1] = ACTIONS(2371), + [anon_sym_true] = ACTIONS(1641), + [anon_sym_false] = ACTIONS(1641), + [anon_sym_null] = ACTIONS(1641), + [aux_sym_cmd_identifier_token38] = ACTIONS(1641), + [aux_sym_cmd_identifier_token39] = ACTIONS(1641), + [aux_sym_cmd_identifier_token40] = ACTIONS(1641), + [sym__newline] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(1641), + [anon_sym_PIPE] = ACTIONS(1641), + [anon_sym_err_GT_PIPE] = ACTIONS(1641), + [anon_sym_out_GT_PIPE] = ACTIONS(1641), + [anon_sym_e_GT_PIPE] = ACTIONS(1641), + [anon_sym_o_GT_PIPE] = ACTIONS(1641), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(1641), + [anon_sym_LPAREN] = ACTIONS(1641), + [anon_sym_RPAREN] = ACTIONS(1641), + [anon_sym_DOLLAR] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1639), + [aux_sym_ctrl_match_token1] = ACTIONS(1641), + [anon_sym_RBRACE] = ACTIONS(1641), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_DOT_DOT2] = ACTIONS(1639), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1639), + [anon_sym_DOT_DOT_LT] = ACTIONS(1639), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), + [aux_sym__val_number_decimal_token1] = ACTIONS(1639), + [aux_sym__val_number_decimal_token2] = ACTIONS(1641), + [aux_sym__val_number_decimal_token3] = ACTIONS(1641), + [aux_sym__val_number_decimal_token4] = ACTIONS(1641), + [aux_sym__val_number_token1] = ACTIONS(1641), + [aux_sym__val_number_token2] = ACTIONS(1641), + [aux_sym__val_number_token3] = ACTIONS(1641), + [anon_sym_0b] = ACTIONS(1639), + [sym_filesize_unit] = ACTIONS(1641), + [sym_duration_unit] = ACTIONS(1641), + [anon_sym_0o] = ACTIONS(1639), + [anon_sym_0x] = ACTIONS(1639), + [sym_val_date] = ACTIONS(1641), + [anon_sym_DQUOTE] = ACTIONS(1641), + [sym__str_single_quotes] = ACTIONS(1641), + [sym__str_back_ticks] = ACTIONS(1641), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1641), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1641), + [anon_sym_err_GT] = ACTIONS(1639), + [anon_sym_out_GT] = ACTIONS(1639), + [anon_sym_e_GT] = ACTIONS(1639), + [anon_sym_o_GT] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT] = ACTIONS(1639), + [anon_sym_err_GT_GT] = ACTIONS(1641), + [anon_sym_out_GT_GT] = ACTIONS(1641), + [anon_sym_e_GT_GT] = ACTIONS(1641), + [anon_sym_o_GT_GT] = ACTIONS(1641), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), + [aux_sym_unquoted_token1] = ACTIONS(1639), + [aux_sym_unquoted_token2] = ACTIONS(1639), [anon_sym_POUND] = ACTIONS(247), }, [1204] = { [sym_comment] = STATE(1204), - [anon_sym_true] = ACTIONS(2381), - [anon_sym_false] = ACTIONS(2381), - [anon_sym_null] = ACTIONS(2381), - [aux_sym_cmd_identifier_token38] = ACTIONS(2381), - [aux_sym_cmd_identifier_token39] = ACTIONS(2381), - [aux_sym_cmd_identifier_token40] = ACTIONS(2381), - [sym__newline] = ACTIONS(2381), - [anon_sym_LBRACK] = ACTIONS(2381), - [anon_sym_LPAREN] = ACTIONS(2381), - [anon_sym_COMMA] = ACTIONS(2381), - [anon_sym_DOLLAR] = ACTIONS(2381), - [aux_sym_ctrl_match_token1] = ACTIONS(2381), - [anon_sym_RBRACE] = ACTIONS(2381), - [anon_sym__] = ACTIONS(2379), - [anon_sym_DOT_DOT] = ACTIONS(2379), - [aux_sym_expr_binary_token1] = ACTIONS(2381), - [aux_sym_expr_binary_token2] = ACTIONS(2381), - [aux_sym_expr_binary_token3] = ACTIONS(2381), - [aux_sym_expr_binary_token4] = ACTIONS(2381), - [aux_sym_expr_binary_token5] = ACTIONS(2381), - [aux_sym_expr_binary_token6] = ACTIONS(2381), - [aux_sym_expr_binary_token7] = ACTIONS(2381), - [aux_sym_expr_binary_token8] = ACTIONS(2381), - [aux_sym_expr_binary_token9] = ACTIONS(2381), - [aux_sym_expr_binary_token10] = ACTIONS(2381), - [aux_sym_expr_binary_token11] = ACTIONS(2381), - [aux_sym_expr_binary_token12] = ACTIONS(2381), - [aux_sym_expr_binary_token13] = ACTIONS(2381), - [aux_sym_expr_binary_token14] = ACTIONS(2381), - [aux_sym_expr_binary_token15] = ACTIONS(2381), - [aux_sym_expr_binary_token16] = ACTIONS(2381), - [aux_sym_expr_binary_token17] = ACTIONS(2381), - [aux_sym_expr_binary_token18] = ACTIONS(2381), - [aux_sym_expr_binary_token19] = ACTIONS(2381), - [aux_sym_expr_binary_token20] = ACTIONS(2381), - [aux_sym_expr_binary_token21] = ACTIONS(2381), - [aux_sym_expr_binary_token22] = ACTIONS(2381), - [aux_sym_expr_binary_token23] = ACTIONS(2381), - [aux_sym_expr_binary_token24] = ACTIONS(2381), - [aux_sym_expr_binary_token25] = ACTIONS(2381), - [aux_sym_expr_binary_token26] = ACTIONS(2381), - [aux_sym_expr_binary_token27] = ACTIONS(2381), - [aux_sym_expr_binary_token28] = ACTIONS(2381), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2381), - [anon_sym_DOT_DOT_LT] = ACTIONS(2381), - [aux_sym__val_number_decimal_token1] = ACTIONS(2379), - [aux_sym__val_number_decimal_token2] = ACTIONS(2381), - [aux_sym__val_number_decimal_token3] = ACTIONS(2381), - [aux_sym__val_number_decimal_token4] = ACTIONS(2381), - [aux_sym__val_number_token1] = ACTIONS(2381), - [aux_sym__val_number_token2] = ACTIONS(2381), - [aux_sym__val_number_token3] = ACTIONS(2381), - [anon_sym_0b] = ACTIONS(2379), - [anon_sym_0o] = ACTIONS(2379), - [anon_sym_0x] = ACTIONS(2379), - [sym_val_date] = ACTIONS(2381), - [anon_sym_DQUOTE] = ACTIONS(2381), - [sym__str_single_quotes] = ACTIONS(2381), - [sym__str_back_ticks] = ACTIONS(2381), - [anon_sym_err_GT] = ACTIONS(2379), - [anon_sym_out_GT] = ACTIONS(2379), - [anon_sym_e_GT] = ACTIONS(2379), - [anon_sym_o_GT] = ACTIONS(2379), - [anon_sym_err_PLUSout_GT] = ACTIONS(2379), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2379), - [anon_sym_o_PLUSe_GT] = ACTIONS(2379), - [anon_sym_e_PLUSo_GT] = ACTIONS(2379), - [anon_sym_err_GT_GT] = ACTIONS(2381), - [anon_sym_out_GT_GT] = ACTIONS(2381), - [anon_sym_e_GT_GT] = ACTIONS(2381), - [anon_sym_o_GT_GT] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2381), - [aux_sym_unquoted_token1] = ACTIONS(2379), + [anon_sym_EQ] = ACTIONS(1064), + [anon_sym_PLUS_EQ] = ACTIONS(1066), + [anon_sym_DASH_EQ] = ACTIONS(1066), + [anon_sym_STAR_EQ] = ACTIONS(1066), + [anon_sym_SLASH_EQ] = ACTIONS(1066), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1066), + [sym__newline] = ACTIONS(1064), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1066), + [anon_sym_err_GT_PIPE] = ACTIONS(1066), + [anon_sym_out_GT_PIPE] = ACTIONS(1066), + [anon_sym_e_GT_PIPE] = ACTIONS(1066), + [anon_sym_o_GT_PIPE] = ACTIONS(1066), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1066), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1066), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1066), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1066), + [aux_sym_ctrl_match_token1] = ACTIONS(1066), + [anon_sym_RBRACE] = ACTIONS(1066), + [aux_sym_expr_binary_token1] = ACTIONS(1066), + [aux_sym_expr_binary_token2] = ACTIONS(1066), + [aux_sym_expr_binary_token3] = ACTIONS(1066), + [aux_sym_expr_binary_token4] = ACTIONS(1066), + [aux_sym_expr_binary_token5] = ACTIONS(1066), + [aux_sym_expr_binary_token6] = ACTIONS(1066), + [aux_sym_expr_binary_token7] = ACTIONS(1066), + [aux_sym_expr_binary_token8] = ACTIONS(1066), + [aux_sym_expr_binary_token9] = ACTIONS(1066), + [aux_sym_expr_binary_token10] = ACTIONS(1066), + [aux_sym_expr_binary_token11] = ACTIONS(1066), + [aux_sym_expr_binary_token12] = ACTIONS(1066), + [aux_sym_expr_binary_token13] = ACTIONS(1066), + [aux_sym_expr_binary_token14] = ACTIONS(1066), + [aux_sym_expr_binary_token15] = ACTIONS(1066), + [aux_sym_expr_binary_token16] = ACTIONS(1066), + [aux_sym_expr_binary_token17] = ACTIONS(1066), + [aux_sym_expr_binary_token18] = ACTIONS(1066), + [aux_sym_expr_binary_token19] = ACTIONS(1066), + [aux_sym_expr_binary_token20] = ACTIONS(1066), + [aux_sym_expr_binary_token21] = ACTIONS(1066), + [aux_sym_expr_binary_token22] = ACTIONS(1066), + [aux_sym_expr_binary_token23] = ACTIONS(1066), + [aux_sym_expr_binary_token24] = ACTIONS(1066), + [aux_sym_expr_binary_token25] = ACTIONS(1066), + [aux_sym_expr_binary_token26] = ACTIONS(1066), + [aux_sym_expr_binary_token27] = ACTIONS(1066), + [aux_sym_expr_binary_token28] = ACTIONS(1066), + [anon_sym_DOT_DOT2] = ACTIONS(1064), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1066), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1066), + [aux_sym_record_entry_token1] = ACTIONS(1066), + [anon_sym_err_GT] = ACTIONS(1064), + [anon_sym_out_GT] = ACTIONS(1064), + [anon_sym_e_GT] = ACTIONS(1064), + [anon_sym_o_GT] = ACTIONS(1064), + [anon_sym_err_PLUSout_GT] = ACTIONS(1064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1064), + [anon_sym_o_PLUSe_GT] = ACTIONS(1064), + [anon_sym_e_PLUSo_GT] = ACTIONS(1064), + [anon_sym_err_GT_GT] = ACTIONS(1066), + [anon_sym_out_GT_GT] = ACTIONS(1066), + [anon_sym_e_GT_GT] = ACTIONS(1066), + [anon_sym_o_GT_GT] = ACTIONS(1066), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1066), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1066), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1066), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1066), [anon_sym_POUND] = ACTIONS(247), }, [1205] = { [sym_comment] = STATE(1205), - [anon_sym_true] = ACTIONS(1841), - [anon_sym_false] = ACTIONS(1841), - [anon_sym_null] = ACTIONS(1841), - [aux_sym_cmd_identifier_token38] = ACTIONS(1841), - [aux_sym_cmd_identifier_token39] = ACTIONS(1841), - [aux_sym_cmd_identifier_token40] = ACTIONS(1841), - [sym__newline] = ACTIONS(1841), - [anon_sym_LBRACK] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_COMMA] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1841), - [aux_sym_ctrl_match_token1] = ACTIONS(1841), - [anon_sym_RBRACE] = ACTIONS(1841), - [anon_sym__] = ACTIONS(1839), - [anon_sym_DOT_DOT] = ACTIONS(1839), - [aux_sym_expr_binary_token1] = ACTIONS(1841), - [aux_sym_expr_binary_token2] = ACTIONS(1841), - [aux_sym_expr_binary_token3] = ACTIONS(1841), - [aux_sym_expr_binary_token4] = ACTIONS(1841), - [aux_sym_expr_binary_token5] = ACTIONS(1841), - [aux_sym_expr_binary_token6] = ACTIONS(1841), - [aux_sym_expr_binary_token7] = ACTIONS(1841), - [aux_sym_expr_binary_token8] = ACTIONS(1841), - [aux_sym_expr_binary_token9] = ACTIONS(1841), - [aux_sym_expr_binary_token10] = ACTIONS(1841), - [aux_sym_expr_binary_token11] = ACTIONS(1841), - [aux_sym_expr_binary_token12] = ACTIONS(1841), - [aux_sym_expr_binary_token13] = ACTIONS(1841), - [aux_sym_expr_binary_token14] = ACTIONS(1841), - [aux_sym_expr_binary_token15] = ACTIONS(1841), - [aux_sym_expr_binary_token16] = ACTIONS(1841), - [aux_sym_expr_binary_token17] = ACTIONS(1841), - [aux_sym_expr_binary_token18] = ACTIONS(1841), - [aux_sym_expr_binary_token19] = ACTIONS(1841), - [aux_sym_expr_binary_token20] = ACTIONS(1841), - [aux_sym_expr_binary_token21] = ACTIONS(1841), - [aux_sym_expr_binary_token22] = ACTIONS(1841), - [aux_sym_expr_binary_token23] = ACTIONS(1841), - [aux_sym_expr_binary_token24] = ACTIONS(1841), - [aux_sym_expr_binary_token25] = ACTIONS(1841), - [aux_sym_expr_binary_token26] = ACTIONS(1841), - [aux_sym_expr_binary_token27] = ACTIONS(1841), - [aux_sym_expr_binary_token28] = ACTIONS(1841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1841), - [anon_sym_DOT_DOT_LT] = ACTIONS(1841), - [aux_sym__val_number_decimal_token1] = ACTIONS(1839), - [aux_sym__val_number_decimal_token2] = ACTIONS(1841), - [aux_sym__val_number_decimal_token3] = ACTIONS(1841), - [aux_sym__val_number_decimal_token4] = ACTIONS(1841), - [aux_sym__val_number_token1] = ACTIONS(1841), - [aux_sym__val_number_token2] = ACTIONS(1841), - [aux_sym__val_number_token3] = ACTIONS(1841), - [anon_sym_0b] = ACTIONS(1839), - [anon_sym_0o] = ACTIONS(1839), - [anon_sym_0x] = ACTIONS(1839), - [sym_val_date] = ACTIONS(1841), - [anon_sym_DQUOTE] = ACTIONS(1841), - [sym__str_single_quotes] = ACTIONS(1841), - [sym__str_back_ticks] = ACTIONS(1841), - [anon_sym_err_GT] = ACTIONS(1839), - [anon_sym_out_GT] = ACTIONS(1839), - [anon_sym_e_GT] = ACTIONS(1839), - [anon_sym_o_GT] = ACTIONS(1839), - [anon_sym_err_PLUSout_GT] = ACTIONS(1839), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1839), - [anon_sym_o_PLUSe_GT] = ACTIONS(1839), - [anon_sym_e_PLUSo_GT] = ACTIONS(1839), - [anon_sym_err_GT_GT] = ACTIONS(1841), - [anon_sym_out_GT_GT] = ACTIONS(1841), - [anon_sym_e_GT_GT] = ACTIONS(1841), - [anon_sym_o_GT_GT] = ACTIONS(1841), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1841), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1841), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1841), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1841), - [aux_sym_unquoted_token1] = ACTIONS(1839), + [anon_sym_EQ] = ACTIONS(1056), + [anon_sym_PLUS_EQ] = ACTIONS(1058), + [anon_sym_DASH_EQ] = ACTIONS(1058), + [anon_sym_STAR_EQ] = ACTIONS(1058), + [anon_sym_SLASH_EQ] = ACTIONS(1058), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1058), + [sym__newline] = ACTIONS(1058), + [anon_sym_SEMI] = ACTIONS(1058), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_err_GT_PIPE] = ACTIONS(1058), + [anon_sym_out_GT_PIPE] = ACTIONS(1058), + [anon_sym_e_GT_PIPE] = ACTIONS(1058), + [anon_sym_o_GT_PIPE] = ACTIONS(1058), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1058), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1058), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1058), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1058), + [anon_sym_RPAREN] = ACTIONS(1058), + [anon_sym_RBRACE] = ACTIONS(1058), + [aux_sym_expr_binary_token1] = ACTIONS(1058), + [aux_sym_expr_binary_token2] = ACTIONS(1058), + [aux_sym_expr_binary_token3] = ACTIONS(1058), + [aux_sym_expr_binary_token4] = ACTIONS(1058), + [aux_sym_expr_binary_token5] = ACTIONS(1058), + [aux_sym_expr_binary_token6] = ACTIONS(1058), + [aux_sym_expr_binary_token7] = ACTIONS(1058), + [aux_sym_expr_binary_token8] = ACTIONS(1058), + [aux_sym_expr_binary_token9] = ACTIONS(1058), + [aux_sym_expr_binary_token10] = ACTIONS(1058), + [aux_sym_expr_binary_token11] = ACTIONS(1058), + [aux_sym_expr_binary_token12] = ACTIONS(1058), + [aux_sym_expr_binary_token13] = ACTIONS(1058), + [aux_sym_expr_binary_token14] = ACTIONS(1058), + [aux_sym_expr_binary_token15] = ACTIONS(1058), + [aux_sym_expr_binary_token16] = ACTIONS(1058), + [aux_sym_expr_binary_token17] = ACTIONS(1058), + [aux_sym_expr_binary_token18] = ACTIONS(1058), + [aux_sym_expr_binary_token19] = ACTIONS(1058), + [aux_sym_expr_binary_token20] = ACTIONS(1058), + [aux_sym_expr_binary_token21] = ACTIONS(1058), + [aux_sym_expr_binary_token22] = ACTIONS(1058), + [aux_sym_expr_binary_token23] = ACTIONS(1058), + [aux_sym_expr_binary_token24] = ACTIONS(1058), + [aux_sym_expr_binary_token25] = ACTIONS(1058), + [aux_sym_expr_binary_token26] = ACTIONS(1058), + [aux_sym_expr_binary_token27] = ACTIONS(1058), + [aux_sym_expr_binary_token28] = ACTIONS(1058), + [anon_sym_DOT_DOT2] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1058), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1058), + [anon_sym_err_GT] = ACTIONS(1056), + [anon_sym_out_GT] = ACTIONS(1056), + [anon_sym_e_GT] = ACTIONS(1056), + [anon_sym_o_GT] = ACTIONS(1056), + [anon_sym_err_PLUSout_GT] = ACTIONS(1056), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1056), + [anon_sym_o_PLUSe_GT] = ACTIONS(1056), + [anon_sym_e_PLUSo_GT] = ACTIONS(1056), + [anon_sym_err_GT_GT] = ACTIONS(1058), + [anon_sym_out_GT_GT] = ACTIONS(1058), + [anon_sym_e_GT_GT] = ACTIONS(1058), + [anon_sym_o_GT_GT] = ACTIONS(1058), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1058), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1058), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1058), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1058), [anon_sym_POUND] = ACTIONS(247), }, [1206] = { [sym_comment] = STATE(1206), - [anon_sym_true] = ACTIONS(2385), - [anon_sym_false] = ACTIONS(2385), - [anon_sym_null] = ACTIONS(2385), - [aux_sym_cmd_identifier_token38] = ACTIONS(2385), - [aux_sym_cmd_identifier_token39] = ACTIONS(2385), - [aux_sym_cmd_identifier_token40] = ACTIONS(2385), - [sym__newline] = ACTIONS(2385), - [anon_sym_LBRACK] = ACTIONS(2385), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_COMMA] = ACTIONS(2385), - [anon_sym_DOLLAR] = ACTIONS(2385), - [aux_sym_ctrl_match_token1] = ACTIONS(2385), - [anon_sym_RBRACE] = ACTIONS(2385), - [anon_sym__] = ACTIONS(2383), - [anon_sym_DOT_DOT] = ACTIONS(2383), - [aux_sym_expr_binary_token1] = ACTIONS(2385), - [aux_sym_expr_binary_token2] = ACTIONS(2385), - [aux_sym_expr_binary_token3] = ACTIONS(2385), - [aux_sym_expr_binary_token4] = ACTIONS(2385), - [aux_sym_expr_binary_token5] = ACTIONS(2385), - [aux_sym_expr_binary_token6] = ACTIONS(2385), - [aux_sym_expr_binary_token7] = ACTIONS(2385), - [aux_sym_expr_binary_token8] = ACTIONS(2385), - [aux_sym_expr_binary_token9] = ACTIONS(2385), - [aux_sym_expr_binary_token10] = ACTIONS(2385), - [aux_sym_expr_binary_token11] = ACTIONS(2385), - [aux_sym_expr_binary_token12] = ACTIONS(2385), - [aux_sym_expr_binary_token13] = ACTIONS(2385), - [aux_sym_expr_binary_token14] = ACTIONS(2385), - [aux_sym_expr_binary_token15] = ACTIONS(2385), - [aux_sym_expr_binary_token16] = ACTIONS(2385), - [aux_sym_expr_binary_token17] = ACTIONS(2385), - [aux_sym_expr_binary_token18] = ACTIONS(2385), - [aux_sym_expr_binary_token19] = ACTIONS(2385), - [aux_sym_expr_binary_token20] = ACTIONS(2385), - [aux_sym_expr_binary_token21] = ACTIONS(2385), - [aux_sym_expr_binary_token22] = ACTIONS(2385), - [aux_sym_expr_binary_token23] = ACTIONS(2385), - [aux_sym_expr_binary_token24] = ACTIONS(2385), - [aux_sym_expr_binary_token25] = ACTIONS(2385), - [aux_sym_expr_binary_token26] = ACTIONS(2385), - [aux_sym_expr_binary_token27] = ACTIONS(2385), - [aux_sym_expr_binary_token28] = ACTIONS(2385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2385), - [anon_sym_DOT_DOT_LT] = ACTIONS(2385), - [aux_sym__val_number_decimal_token1] = ACTIONS(2383), - [aux_sym__val_number_decimal_token2] = ACTIONS(2385), - [aux_sym__val_number_decimal_token3] = ACTIONS(2385), - [aux_sym__val_number_decimal_token4] = ACTIONS(2385), - [aux_sym__val_number_token1] = ACTIONS(2385), - [aux_sym__val_number_token2] = ACTIONS(2385), - [aux_sym__val_number_token3] = ACTIONS(2385), - [anon_sym_0b] = ACTIONS(2383), - [anon_sym_0o] = ACTIONS(2383), - [anon_sym_0x] = ACTIONS(2383), - [sym_val_date] = ACTIONS(2385), - [anon_sym_DQUOTE] = ACTIONS(2385), - [sym__str_single_quotes] = ACTIONS(2385), - [sym__str_back_ticks] = ACTIONS(2385), - [anon_sym_err_GT] = ACTIONS(2383), - [anon_sym_out_GT] = ACTIONS(2383), - [anon_sym_e_GT] = ACTIONS(2383), - [anon_sym_o_GT] = ACTIONS(2383), - [anon_sym_err_PLUSout_GT] = ACTIONS(2383), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2383), - [anon_sym_o_PLUSe_GT] = ACTIONS(2383), - [anon_sym_e_PLUSo_GT] = ACTIONS(2383), - [anon_sym_err_GT_GT] = ACTIONS(2385), - [anon_sym_out_GT_GT] = ACTIONS(2385), - [anon_sym_e_GT_GT] = ACTIONS(2385), - [anon_sym_o_GT_GT] = ACTIONS(2385), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2385), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2385), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2385), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2385), - [aux_sym_unquoted_token1] = ACTIONS(2383), + [anon_sym_EQ] = ACTIONS(1056), + [anon_sym_PLUS_EQ] = ACTIONS(1058), + [anon_sym_DASH_EQ] = ACTIONS(1058), + [anon_sym_STAR_EQ] = ACTIONS(1058), + [anon_sym_SLASH_EQ] = ACTIONS(1058), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1058), + [sym__newline] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1058), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_err_GT_PIPE] = ACTIONS(1058), + [anon_sym_out_GT_PIPE] = ACTIONS(1058), + [anon_sym_e_GT_PIPE] = ACTIONS(1058), + [anon_sym_o_GT_PIPE] = ACTIONS(1058), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1058), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1058), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1058), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1058), + [anon_sym_RPAREN] = ACTIONS(1058), + [aux_sym_ctrl_match_token1] = ACTIONS(1058), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1058), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1058), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1058), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1058), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1058), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1058), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1058), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1058), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1058), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1058), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1058), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1058), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1058), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1058), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1058), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1058), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1058), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1058), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1058), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1058), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1058), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1058), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1058), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1058), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1058), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1058), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1058), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1058), + [anon_sym_DOT_DOT2] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1058), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1058), + [anon_sym_err_GT] = ACTIONS(1056), + [anon_sym_out_GT] = ACTIONS(1056), + [anon_sym_e_GT] = ACTIONS(1056), + [anon_sym_o_GT] = ACTIONS(1056), + [anon_sym_err_PLUSout_GT] = ACTIONS(1056), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1056), + [anon_sym_o_PLUSe_GT] = ACTIONS(1056), + [anon_sym_e_PLUSo_GT] = ACTIONS(1056), + [anon_sym_err_GT_GT] = ACTIONS(1058), + [anon_sym_out_GT_GT] = ACTIONS(1058), + [anon_sym_e_GT_GT] = ACTIONS(1058), + [anon_sym_o_GT_GT] = ACTIONS(1058), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1058), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1058), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1058), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1058), [anon_sym_POUND] = ACTIONS(247), }, [1207] = { [sym_comment] = STATE(1207), - [anon_sym_true] = ACTIONS(3199), - [anon_sym_false] = ACTIONS(3199), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3199), - [aux_sym_cmd_identifier_token39] = ACTIONS(3199), - [aux_sym_cmd_identifier_token40] = ACTIONS(3199), - [sym__newline] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_DOLLAR] = ACTIONS(3199), - [aux_sym_ctrl_match_token1] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym__] = ACTIONS(3201), - [anon_sym_DOT_DOT] = ACTIONS(3201), - [aux_sym_expr_binary_token1] = ACTIONS(3199), - [aux_sym_expr_binary_token2] = ACTIONS(3199), - [aux_sym_expr_binary_token3] = ACTIONS(3199), - [aux_sym_expr_binary_token4] = ACTIONS(3199), - [aux_sym_expr_binary_token5] = ACTIONS(3199), - [aux_sym_expr_binary_token6] = ACTIONS(3199), - [aux_sym_expr_binary_token7] = ACTIONS(3199), - [aux_sym_expr_binary_token8] = ACTIONS(3199), - [aux_sym_expr_binary_token9] = ACTIONS(3199), - [aux_sym_expr_binary_token10] = ACTIONS(3199), - [aux_sym_expr_binary_token11] = ACTIONS(3199), - [aux_sym_expr_binary_token12] = ACTIONS(3199), - [aux_sym_expr_binary_token13] = ACTIONS(3199), - [aux_sym_expr_binary_token14] = ACTIONS(3199), - [aux_sym_expr_binary_token15] = ACTIONS(3199), - [aux_sym_expr_binary_token16] = ACTIONS(3199), - [aux_sym_expr_binary_token17] = ACTIONS(3199), - [aux_sym_expr_binary_token18] = ACTIONS(3199), - [aux_sym_expr_binary_token19] = ACTIONS(3199), - [aux_sym_expr_binary_token20] = ACTIONS(3199), - [aux_sym_expr_binary_token21] = ACTIONS(3199), - [aux_sym_expr_binary_token22] = ACTIONS(3199), - [aux_sym_expr_binary_token23] = ACTIONS(3199), - [aux_sym_expr_binary_token24] = ACTIONS(3199), - [aux_sym_expr_binary_token25] = ACTIONS(3199), - [aux_sym_expr_binary_token26] = ACTIONS(3199), - [aux_sym_expr_binary_token27] = ACTIONS(3199), - [aux_sym_expr_binary_token28] = ACTIONS(3199), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3199), - [anon_sym_DOT_DOT_LT] = ACTIONS(3199), - [aux_sym__val_number_decimal_token1] = ACTIONS(3201), - [aux_sym__val_number_decimal_token2] = ACTIONS(3199), - [aux_sym__val_number_decimal_token3] = ACTIONS(3199), - [aux_sym__val_number_decimal_token4] = ACTIONS(3199), - [aux_sym__val_number_token1] = ACTIONS(3199), - [aux_sym__val_number_token2] = ACTIONS(3199), - [aux_sym__val_number_token3] = ACTIONS(3199), - [anon_sym_0b] = ACTIONS(3201), - [anon_sym_0o] = ACTIONS(3201), - [anon_sym_0x] = ACTIONS(3201), - [sym_val_date] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3199), - [sym__str_single_quotes] = ACTIONS(3199), - [sym__str_back_ticks] = ACTIONS(3199), - [anon_sym_err_GT] = ACTIONS(3201), - [anon_sym_out_GT] = ACTIONS(3201), - [anon_sym_e_GT] = ACTIONS(3201), - [anon_sym_o_GT] = ACTIONS(3201), - [anon_sym_err_PLUSout_GT] = ACTIONS(3201), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), - [anon_sym_o_PLUSe_GT] = ACTIONS(3201), - [anon_sym_e_PLUSo_GT] = ACTIONS(3201), - [anon_sym_err_GT_GT] = ACTIONS(3199), - [anon_sym_out_GT_GT] = ACTIONS(3199), - [anon_sym_e_GT_GT] = ACTIONS(3199), - [anon_sym_o_GT_GT] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), - [aux_sym_unquoted_token1] = ACTIONS(3201), + [ts_builtin_sym_end] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [aux_sym_cmd_identifier_token38] = ACTIONS(1645), + [aux_sym_cmd_identifier_token39] = ACTIONS(1645), + [aux_sym_cmd_identifier_token40] = ACTIONS(1645), + [sym__newline] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_err_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_GT_PIPE] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), + [anon_sym_LBRACK] = ACTIONS(1645), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_DASH] = ACTIONS(1643), + [aux_sym_ctrl_match_token1] = ACTIONS(1645), + [anon_sym_DOT_DOT] = ACTIONS(1643), + [anon_sym_LPAREN2] = ACTIONS(1645), + [anon_sym_DOT_DOT2] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(4515), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), + [anon_sym_DOT_DOT_LT] = ACTIONS(1643), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), + [aux_sym__immediate_decimal_token2] = ACTIONS(4517), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1645), + [aux_sym__val_number_decimal_token3] = ACTIONS(1645), + [aux_sym__val_number_decimal_token4] = ACTIONS(1645), + [aux_sym__val_number_token1] = ACTIONS(1645), + [aux_sym__val_number_token2] = ACTIONS(1645), + [aux_sym__val_number_token3] = ACTIONS(1645), + [anon_sym_0b] = ACTIONS(1643), + [anon_sym_0o] = ACTIONS(1643), + [anon_sym_0x] = ACTIONS(1643), + [sym_val_date] = ACTIONS(1645), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym__str_single_quotes] = ACTIONS(1645), + [sym__str_back_ticks] = ACTIONS(1645), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1645), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1645), + [anon_sym_err_GT] = ACTIONS(1643), + [anon_sym_out_GT] = ACTIONS(1643), + [anon_sym_e_GT] = ACTIONS(1643), + [anon_sym_o_GT] = ACTIONS(1643), + [anon_sym_err_PLUSout_GT] = ACTIONS(1643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), + [anon_sym_o_PLUSe_GT] = ACTIONS(1643), + [anon_sym_e_PLUSo_GT] = ACTIONS(1643), + [anon_sym_err_GT_GT] = ACTIONS(1645), + [anon_sym_out_GT_GT] = ACTIONS(1645), + [anon_sym_e_GT_GT] = ACTIONS(1645), + [anon_sym_o_GT_GT] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [aux_sym_unquoted_token1] = ACTIONS(1643), + [aux_sym_unquoted_token2] = ACTIONS(1643), [anon_sym_POUND] = ACTIONS(247), }, [1208] = { - [sym_match_arm] = STATE(3233), - [sym_default_arm] = STATE(7512), - [sym_match_pattern] = STATE(8003), - [sym__match_pattern] = STATE(6318), - [sym__match_pattern_expression] = STATE(7519), - [sym__match_pattern_value] = STATE(6950), - [sym__match_pattern_list] = STATE(6957), - [sym__match_pattern_record] = STATE(6958), - [sym_expr_parenthesized] = STATE(6007), - [sym_val_range] = STATE(6950), - [sym__val_range] = STATE(8000), - [sym_val_nothing] = STATE(6978), - [sym_val_bool] = STATE(6785), - [sym_val_variable] = STATE(6011), - [sym_val_number] = STATE(6978), - [sym__val_number_decimal] = STATE(5584), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(6978), - [sym_val_filesize] = STATE(6978), - [sym_val_binary] = STATE(6978), - [sym_val_string] = STATE(6978), - [sym__str_double_quotes] = STATE(1851), - [sym_val_table] = STATE(6978), - [sym_unquoted] = STATE(7006), - [sym__unquoted_anonymous_prefix] = STATE(7741), [sym_comment] = STATE(1208), - [aux_sym_shebang_repeat1] = STATE(1246), - [aux_sym_ctrl_match_repeat1] = STATE(1222), - [anon_sym_true] = ACTIONS(3633), - [anon_sym_false] = ACTIONS(3633), - [anon_sym_null] = ACTIONS(3635), - [aux_sym_cmd_identifier_token38] = ACTIONS(3637), - [aux_sym_cmd_identifier_token39] = ACTIONS(3637), - [aux_sym_cmd_identifier_token40] = ACTIONS(3637), - [sym__newline] = ACTIONS(3639), - [anon_sym_LBRACK] = ACTIONS(3641), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_DOLLAR] = ACTIONS(3645), - [aux_sym_ctrl_match_token1] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(3649), - [anon_sym__] = ACTIONS(3651), - [anon_sym_DOT_DOT] = ACTIONS(3653), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3655), - [anon_sym_DOT_DOT_LT] = ACTIONS(3655), - [aux_sym__val_number_decimal_token1] = ACTIONS(3657), - [aux_sym__val_number_decimal_token2] = ACTIONS(3659), - [aux_sym__val_number_decimal_token3] = ACTIONS(3661), - [aux_sym__val_number_decimal_token4] = ACTIONS(3663), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3665), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_EQ] = ACTIONS(1052), + [anon_sym_PLUS_EQ] = ACTIONS(1054), + [anon_sym_DASH_EQ] = ACTIONS(1054), + [anon_sym_STAR_EQ] = ACTIONS(1054), + [anon_sym_SLASH_EQ] = ACTIONS(1054), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1054), + [sym__newline] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_PIPE] = ACTIONS(1054), + [anon_sym_err_GT_PIPE] = ACTIONS(1054), + [anon_sym_out_GT_PIPE] = ACTIONS(1054), + [anon_sym_e_GT_PIPE] = ACTIONS(1054), + [anon_sym_o_GT_PIPE] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1054), + [aux_sym_expr_binary_token1] = ACTIONS(1054), + [aux_sym_expr_binary_token2] = ACTIONS(1054), + [aux_sym_expr_binary_token3] = ACTIONS(1054), + [aux_sym_expr_binary_token4] = ACTIONS(1054), + [aux_sym_expr_binary_token5] = ACTIONS(1054), + [aux_sym_expr_binary_token6] = ACTIONS(1054), + [aux_sym_expr_binary_token7] = ACTIONS(1054), + [aux_sym_expr_binary_token8] = ACTIONS(1054), + [aux_sym_expr_binary_token9] = ACTIONS(1054), + [aux_sym_expr_binary_token10] = ACTIONS(1054), + [aux_sym_expr_binary_token11] = ACTIONS(1054), + [aux_sym_expr_binary_token12] = ACTIONS(1054), + [aux_sym_expr_binary_token13] = ACTIONS(1054), + [aux_sym_expr_binary_token14] = ACTIONS(1054), + [aux_sym_expr_binary_token15] = ACTIONS(1054), + [aux_sym_expr_binary_token16] = ACTIONS(1054), + [aux_sym_expr_binary_token17] = ACTIONS(1054), + [aux_sym_expr_binary_token18] = ACTIONS(1054), + [aux_sym_expr_binary_token19] = ACTIONS(1054), + [aux_sym_expr_binary_token20] = ACTIONS(1054), + [aux_sym_expr_binary_token21] = ACTIONS(1054), + [aux_sym_expr_binary_token22] = ACTIONS(1054), + [aux_sym_expr_binary_token23] = ACTIONS(1054), + [aux_sym_expr_binary_token24] = ACTIONS(1054), + [aux_sym_expr_binary_token25] = ACTIONS(1054), + [aux_sym_expr_binary_token26] = ACTIONS(1054), + [aux_sym_expr_binary_token27] = ACTIONS(1054), + [aux_sym_expr_binary_token28] = ACTIONS(1054), + [anon_sym_DOT_DOT2] = ACTIONS(1052), + [anon_sym_DOT] = ACTIONS(1052), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1054), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1054), + [anon_sym_err_GT] = ACTIONS(1052), + [anon_sym_out_GT] = ACTIONS(1052), + [anon_sym_e_GT] = ACTIONS(1052), + [anon_sym_o_GT] = ACTIONS(1052), + [anon_sym_err_PLUSout_GT] = ACTIONS(1052), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1052), + [anon_sym_o_PLUSe_GT] = ACTIONS(1052), + [anon_sym_e_PLUSo_GT] = ACTIONS(1052), + [anon_sym_err_GT_GT] = ACTIONS(1054), + [anon_sym_out_GT_GT] = ACTIONS(1054), + [anon_sym_e_GT_GT] = ACTIONS(1054), + [anon_sym_o_GT_GT] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1054), [anon_sym_POUND] = ACTIONS(247), }, [1209] = { - [sym_match_arm] = STATE(3233), - [sym_default_arm] = STATE(7152), - [sym_match_pattern] = STATE(8003), - [sym__match_pattern] = STATE(6318), - [sym__match_pattern_expression] = STATE(7519), - [sym__match_pattern_value] = STATE(6950), - [sym__match_pattern_list] = STATE(6957), - [sym__match_pattern_record] = STATE(6958), - [sym_expr_parenthesized] = STATE(6007), - [sym_val_range] = STATE(6950), - [sym__val_range] = STATE(8000), - [sym_val_nothing] = STATE(6978), - [sym_val_bool] = STATE(6785), - [sym_val_variable] = STATE(6011), - [sym_val_number] = STATE(6978), - [sym__val_number_decimal] = STATE(5584), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(6978), - [sym_val_filesize] = STATE(6978), - [sym_val_binary] = STATE(6978), - [sym_val_string] = STATE(6978), - [sym__str_double_quotes] = STATE(1851), - [sym_val_table] = STATE(6978), - [sym_unquoted] = STATE(7006), - [sym__unquoted_anonymous_prefix] = STATE(7741), [sym_comment] = STATE(1209), - [aux_sym_shebang_repeat1] = STATE(1238), - [aux_sym_ctrl_match_repeat1] = STATE(1224), - [anon_sym_true] = ACTIONS(3633), - [anon_sym_false] = ACTIONS(3633), - [anon_sym_null] = ACTIONS(3635), - [aux_sym_cmd_identifier_token38] = ACTIONS(3637), - [aux_sym_cmd_identifier_token39] = ACTIONS(3637), - [aux_sym_cmd_identifier_token40] = ACTIONS(3637), - [sym__newline] = ACTIONS(3639), - [anon_sym_LBRACK] = ACTIONS(3641), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_DOLLAR] = ACTIONS(3645), - [aux_sym_ctrl_match_token1] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(3667), - [anon_sym__] = ACTIONS(3651), - [anon_sym_DOT_DOT] = ACTIONS(3653), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3655), - [anon_sym_DOT_DOT_LT] = ACTIONS(3655), - [aux_sym__val_number_decimal_token1] = ACTIONS(3657), - [aux_sym__val_number_decimal_token2] = ACTIONS(3659), - [aux_sym__val_number_decimal_token3] = ACTIONS(3661), - [aux_sym__val_number_decimal_token4] = ACTIONS(3663), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3665), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [ts_builtin_sym_end] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [aux_sym_cmd_identifier_token38] = ACTIONS(1645), + [aux_sym_cmd_identifier_token39] = ACTIONS(1645), + [aux_sym_cmd_identifier_token40] = ACTIONS(1645), + [sym__newline] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_err_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_GT_PIPE] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), + [anon_sym_LBRACK] = ACTIONS(1645), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_DASH] = ACTIONS(1643), + [aux_sym_ctrl_match_token1] = ACTIONS(1645), + [anon_sym_DOT_DOT] = ACTIONS(1643), + [anon_sym_LPAREN2] = ACTIONS(1645), + [anon_sym_DOT_DOT2] = ACTIONS(1643), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), + [anon_sym_DOT_DOT_LT] = ACTIONS(1643), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), + [aux_sym__immediate_decimal_token2] = ACTIONS(4517), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1645), + [aux_sym__val_number_decimal_token3] = ACTIONS(1645), + [aux_sym__val_number_decimal_token4] = ACTIONS(1645), + [aux_sym__val_number_token1] = ACTIONS(1645), + [aux_sym__val_number_token2] = ACTIONS(1645), + [aux_sym__val_number_token3] = ACTIONS(1645), + [anon_sym_0b] = ACTIONS(1643), + [anon_sym_0o] = ACTIONS(1643), + [anon_sym_0x] = ACTIONS(1643), + [sym_val_date] = ACTIONS(1645), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym__str_single_quotes] = ACTIONS(1645), + [sym__str_back_ticks] = ACTIONS(1645), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1645), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1645), + [anon_sym_err_GT] = ACTIONS(1643), + [anon_sym_out_GT] = ACTIONS(1643), + [anon_sym_e_GT] = ACTIONS(1643), + [anon_sym_o_GT] = ACTIONS(1643), + [anon_sym_err_PLUSout_GT] = ACTIONS(1643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), + [anon_sym_o_PLUSe_GT] = ACTIONS(1643), + [anon_sym_e_PLUSo_GT] = ACTIONS(1643), + [anon_sym_err_GT_GT] = ACTIONS(1645), + [anon_sym_out_GT_GT] = ACTIONS(1645), + [anon_sym_e_GT_GT] = ACTIONS(1645), + [anon_sym_o_GT_GT] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [aux_sym_unquoted_token1] = ACTIONS(1643), + [aux_sym_unquoted_token2] = ACTIONS(1643), [anon_sym_POUND] = ACTIONS(247), }, [1210] = { - [sym_expr_parenthesized] = STATE(4931), - [sym_val_range] = STATE(5405), - [sym__val_range] = STATE(7788), - [sym__val_range_with_end] = STATE(7565), - [sym__value] = STATE(5405), - [sym_val_nothing] = STATE(5312), - [sym_val_bool] = STATE(5055), - [sym_val_variable] = STATE(4939), - [sym_val_number] = STATE(5312), - [sym__val_number_decimal] = STATE(4297), - [sym__val_number] = STATE(5409), - [sym_val_duration] = STATE(5312), - [sym_val_filesize] = STATE(5312), - [sym_val_binary] = STATE(5312), - [sym_val_string] = STATE(5312), - [sym__str_double_quotes] = STATE(4919), - [sym_val_interpolated] = STATE(5312), - [sym__inter_single_quotes] = STATE(5273), - [sym__inter_double_quotes] = STATE(5275), - [sym_val_list] = STATE(5312), - [sym_val_record] = STATE(5312), - [sym_val_table] = STATE(5312), - [sym_val_closure] = STATE(5312), - [sym__unquoted_in_list] = STATE(5175), - [sym__unquoted_in_list_with_expr] = STATE(5405), - [sym__unquoted_anonymous_prefix] = STATE(7139), [sym_comment] = STATE(1210), - [aux_sym_shebang_repeat1] = STATE(1215), - [anon_sym_true] = ACTIONS(3669), - [anon_sym_false] = ACTIONS(3669), - [anon_sym_null] = ACTIONS(3671), - [aux_sym_cmd_identifier_token38] = ACTIONS(3673), - [aux_sym_cmd_identifier_token39] = ACTIONS(3673), - [aux_sym_cmd_identifier_token40] = ACTIONS(3673), - [sym__newline] = ACTIONS(3675), - [anon_sym_LBRACK] = ACTIONS(3677), - [anon_sym_LPAREN] = ACTIONS(3679), - [anon_sym_DOLLAR] = ACTIONS(3681), - [aux_sym_ctrl_match_token1] = ACTIONS(3683), - [anon_sym_DOT_DOT] = ACTIONS(3685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3687), - [anon_sym_DOT_DOT_LT] = ACTIONS(3687), - [aux_sym__val_number_decimal_token1] = ACTIONS(3689), - [aux_sym__val_number_decimal_token2] = ACTIONS(3691), - [aux_sym__val_number_decimal_token3] = ACTIONS(3693), - [aux_sym__val_number_decimal_token4] = ACTIONS(3695), - [aux_sym__val_number_token1] = ACTIONS(3697), - [aux_sym__val_number_token2] = ACTIONS(3697), - [aux_sym__val_number_token3] = ACTIONS(3697), - [anon_sym_0b] = ACTIONS(3699), - [anon_sym_0o] = ACTIONS(3701), - [anon_sym_0x] = ACTIONS(3701), - [sym_val_date] = ACTIONS(3703), - [anon_sym_DQUOTE] = ACTIONS(3705), - [sym__str_single_quotes] = ACTIONS(3707), - [sym__str_back_ticks] = ACTIONS(3707), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3713), + [anon_sym_true] = ACTIONS(1050), + [anon_sym_false] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1050), + [aux_sym_cmd_identifier_token38] = ACTIONS(1050), + [aux_sym_cmd_identifier_token39] = ACTIONS(1050), + [aux_sym_cmd_identifier_token40] = ACTIONS(1050), + [sym__newline] = ACTIONS(1050), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_err_GT_PIPE] = ACTIONS(1050), + [anon_sym_out_GT_PIPE] = ACTIONS(1050), + [anon_sym_e_GT_PIPE] = ACTIONS(1050), + [anon_sym_o_GT_PIPE] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1050), + [anon_sym_LBRACK] = ACTIONS(1050), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_RPAREN] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_DASH] = ACTIONS(1048), + [aux_sym_ctrl_match_token1] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(1050), + [anon_sym_DOT_DOT] = ACTIONS(1048), + [anon_sym_QMARK2] = ACTIONS(1050), + [anon_sym_DOT_DOT2] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1048), + [anon_sym_DOT_DOT_LT] = ACTIONS(1048), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1050), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1050), + [aux_sym__val_number_decimal_token1] = ACTIONS(1048), + [aux_sym__val_number_decimal_token2] = ACTIONS(1050), + [aux_sym__val_number_decimal_token3] = ACTIONS(1050), + [aux_sym__val_number_decimal_token4] = ACTIONS(1050), + [aux_sym__val_number_token1] = ACTIONS(1050), + [aux_sym__val_number_token2] = ACTIONS(1050), + [aux_sym__val_number_token3] = ACTIONS(1050), + [anon_sym_0b] = ACTIONS(1048), + [anon_sym_0o] = ACTIONS(1048), + [anon_sym_0x] = ACTIONS(1048), + [sym_val_date] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym__str_single_quotes] = ACTIONS(1050), + [sym__str_back_ticks] = ACTIONS(1050), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1050), + [anon_sym_err_GT] = ACTIONS(1048), + [anon_sym_out_GT] = ACTIONS(1048), + [anon_sym_e_GT] = ACTIONS(1048), + [anon_sym_o_GT] = ACTIONS(1048), + [anon_sym_err_PLUSout_GT] = ACTIONS(1048), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1048), + [anon_sym_o_PLUSe_GT] = ACTIONS(1048), + [anon_sym_e_PLUSo_GT] = ACTIONS(1048), + [anon_sym_err_GT_GT] = ACTIONS(1050), + [anon_sym_out_GT_GT] = ACTIONS(1050), + [anon_sym_e_GT_GT] = ACTIONS(1050), + [anon_sym_o_GT_GT] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1050), + [aux_sym_unquoted_token1] = ACTIONS(1048), [anon_sym_POUND] = ACTIONS(247), }, [1211] = { - [sym_match_arm] = STATE(3233), - [sym_default_arm] = STATE(7072), - [sym_match_pattern] = STATE(8003), - [sym__match_pattern] = STATE(6318), - [sym__match_pattern_expression] = STATE(7519), - [sym__match_pattern_value] = STATE(6950), - [sym__match_pattern_list] = STATE(6957), - [sym__match_pattern_record] = STATE(6958), - [sym_expr_parenthesized] = STATE(6007), - [sym_val_range] = STATE(6950), - [sym__val_range] = STATE(8000), - [sym_val_nothing] = STATE(6978), - [sym_val_bool] = STATE(6785), - [sym_val_variable] = STATE(6011), - [sym_val_number] = STATE(6978), - [sym__val_number_decimal] = STATE(5584), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(6978), - [sym_val_filesize] = STATE(6978), - [sym_val_binary] = STATE(6978), - [sym_val_string] = STATE(6978), - [sym__str_double_quotes] = STATE(1851), - [sym_val_table] = STATE(6978), - [sym_unquoted] = STATE(7006), - [sym__unquoted_anonymous_prefix] = STATE(7741), [sym_comment] = STATE(1211), - [aux_sym_shebang_repeat1] = STATE(1248), - [aux_sym_ctrl_match_repeat1] = STATE(1223), - [anon_sym_true] = ACTIONS(3633), - [anon_sym_false] = ACTIONS(3633), - [anon_sym_null] = ACTIONS(3635), - [aux_sym_cmd_identifier_token38] = ACTIONS(3637), - [aux_sym_cmd_identifier_token39] = ACTIONS(3637), - [aux_sym_cmd_identifier_token40] = ACTIONS(3637), - [sym__newline] = ACTIONS(3639), - [anon_sym_LBRACK] = ACTIONS(3641), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_DOLLAR] = ACTIONS(3645), - [aux_sym_ctrl_match_token1] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(3715), - [anon_sym__] = ACTIONS(3651), - [anon_sym_DOT_DOT] = ACTIONS(3653), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3655), - [anon_sym_DOT_DOT_LT] = ACTIONS(3655), - [aux_sym__val_number_decimal_token1] = ACTIONS(3657), - [aux_sym__val_number_decimal_token2] = ACTIONS(3659), - [aux_sym__val_number_decimal_token3] = ACTIONS(3661), - [aux_sym__val_number_decimal_token4] = ACTIONS(3663), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3665), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [aux_sym_cmd_identifier_token38] = ACTIONS(1645), + [aux_sym_cmd_identifier_token39] = ACTIONS(1645), + [aux_sym_cmd_identifier_token40] = ACTIONS(1645), + [sym__newline] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_err_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_GT_PIPE] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), + [anon_sym_LBRACK] = ACTIONS(1645), + [anon_sym_LPAREN] = ACTIONS(1645), + [anon_sym_RPAREN] = ACTIONS(1645), + [anon_sym_DOLLAR] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_DASH] = ACTIONS(1643), + [aux_sym_ctrl_match_token1] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(1645), + [anon_sym_DOT_DOT] = ACTIONS(1643), + [anon_sym_DOT_DOT2] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(4519), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), + [anon_sym_DOT_DOT_LT] = ACTIONS(1643), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), + [aux_sym__immediate_decimal_token2] = ACTIONS(4521), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1645), + [aux_sym__val_number_decimal_token3] = ACTIONS(1645), + [aux_sym__val_number_decimal_token4] = ACTIONS(1645), + [aux_sym__val_number_token1] = ACTIONS(1645), + [aux_sym__val_number_token2] = ACTIONS(1645), + [aux_sym__val_number_token3] = ACTIONS(1645), + [anon_sym_0b] = ACTIONS(1643), + [anon_sym_0o] = ACTIONS(1643), + [anon_sym_0x] = ACTIONS(1643), + [sym_val_date] = ACTIONS(1645), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym__str_single_quotes] = ACTIONS(1645), + [sym__str_back_ticks] = ACTIONS(1645), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1645), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1645), + [anon_sym_err_GT] = ACTIONS(1643), + [anon_sym_out_GT] = ACTIONS(1643), + [anon_sym_e_GT] = ACTIONS(1643), + [anon_sym_o_GT] = ACTIONS(1643), + [anon_sym_err_PLUSout_GT] = ACTIONS(1643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), + [anon_sym_o_PLUSe_GT] = ACTIONS(1643), + [anon_sym_e_PLUSo_GT] = ACTIONS(1643), + [anon_sym_err_GT_GT] = ACTIONS(1645), + [anon_sym_out_GT_GT] = ACTIONS(1645), + [anon_sym_e_GT_GT] = ACTIONS(1645), + [anon_sym_o_GT_GT] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [aux_sym_unquoted_token1] = ACTIONS(1643), [anon_sym_POUND] = ACTIONS(247), }, [1212] = { - [sym_match_arm] = STATE(3233), - [sym_default_arm] = STATE(7144), - [sym_match_pattern] = STATE(8003), - [sym__match_pattern] = STATE(6318), - [sym__match_pattern_expression] = STATE(7519), - [sym__match_pattern_value] = STATE(6950), - [sym__match_pattern_list] = STATE(6957), - [sym__match_pattern_record] = STATE(6958), - [sym_expr_parenthesized] = STATE(6007), - [sym_val_range] = STATE(6950), - [sym__val_range] = STATE(8000), - [sym_val_nothing] = STATE(6978), - [sym_val_bool] = STATE(6785), - [sym_val_variable] = STATE(6011), - [sym_val_number] = STATE(6978), - [sym__val_number_decimal] = STATE(5584), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(6978), - [sym_val_filesize] = STATE(6978), - [sym_val_binary] = STATE(6978), - [sym_val_string] = STATE(6978), - [sym__str_double_quotes] = STATE(1851), - [sym_val_table] = STATE(6978), - [sym_unquoted] = STATE(7006), - [sym__unquoted_anonymous_prefix] = STATE(7741), [sym_comment] = STATE(1212), - [aux_sym_shebang_repeat1] = STATE(1237), - [aux_sym_ctrl_match_repeat1] = STATE(1224), - [anon_sym_true] = ACTIONS(3633), - [anon_sym_false] = ACTIONS(3633), - [anon_sym_null] = ACTIONS(3635), - [aux_sym_cmd_identifier_token38] = ACTIONS(3637), - [aux_sym_cmd_identifier_token39] = ACTIONS(3637), - [aux_sym_cmd_identifier_token40] = ACTIONS(3637), - [sym__newline] = ACTIONS(3639), - [anon_sym_LBRACK] = ACTIONS(3641), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_DOLLAR] = ACTIONS(3645), - [aux_sym_ctrl_match_token1] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(3717), - [anon_sym__] = ACTIONS(3651), - [anon_sym_DOT_DOT] = ACTIONS(3653), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3655), - [anon_sym_DOT_DOT_LT] = ACTIONS(3655), - [aux_sym__val_number_decimal_token1] = ACTIONS(3657), - [aux_sym__val_number_decimal_token2] = ACTIONS(3659), - [aux_sym__val_number_decimal_token3] = ACTIONS(3661), - [aux_sym__val_number_decimal_token4] = ACTIONS(3663), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3665), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(1030), + [anon_sym_false] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1030), + [aux_sym_cmd_identifier_token38] = ACTIONS(1030), + [aux_sym_cmd_identifier_token39] = ACTIONS(1030), + [aux_sym_cmd_identifier_token40] = ACTIONS(1030), + [sym__newline] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_err_GT_PIPE] = ACTIONS(1030), + [anon_sym_out_GT_PIPE] = ACTIONS(1030), + [anon_sym_e_GT_PIPE] = ACTIONS(1030), + [anon_sym_o_GT_PIPE] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1030), + [anon_sym_LBRACK] = ACTIONS(1030), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_RPAREN] = ACTIONS(1030), + [anon_sym_DOLLAR] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1028), + [aux_sym_ctrl_match_token1] = ACTIONS(1030), + [anon_sym_RBRACE] = ACTIONS(1030), + [anon_sym_DOT_DOT] = ACTIONS(1028), + [anon_sym_QMARK2] = ACTIONS(4523), + [anon_sym_DOT_DOT2] = ACTIONS(1028), + [anon_sym_DOT] = ACTIONS(1028), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1028), + [anon_sym_DOT_DOT_LT] = ACTIONS(1028), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1030), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1028), + [aux_sym__val_number_decimal_token2] = ACTIONS(1030), + [aux_sym__val_number_decimal_token3] = ACTIONS(1030), + [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_token1] = ACTIONS(1030), + [aux_sym__val_number_token2] = ACTIONS(1030), + [aux_sym__val_number_token3] = ACTIONS(1030), + [anon_sym_0b] = ACTIONS(1028), + [anon_sym_0o] = ACTIONS(1028), + [anon_sym_0x] = ACTIONS(1028), + [sym_val_date] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym__str_single_quotes] = ACTIONS(1030), + [sym__str_back_ticks] = ACTIONS(1030), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1030), + [anon_sym_err_GT] = ACTIONS(1028), + [anon_sym_out_GT] = ACTIONS(1028), + [anon_sym_e_GT] = ACTIONS(1028), + [anon_sym_o_GT] = ACTIONS(1028), + [anon_sym_err_PLUSout_GT] = ACTIONS(1028), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1028), + [anon_sym_o_PLUSe_GT] = ACTIONS(1028), + [anon_sym_e_PLUSo_GT] = ACTIONS(1028), + [anon_sym_err_GT_GT] = ACTIONS(1030), + [anon_sym_out_GT_GT] = ACTIONS(1030), + [anon_sym_e_GT_GT] = ACTIONS(1030), + [anon_sym_o_GT_GT] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1030), + [aux_sym_unquoted_token1] = ACTIONS(1028), [anon_sym_POUND] = ACTIONS(247), }, [1213] = { - [sym_expr_parenthesized] = STATE(4931), - [sym_val_range] = STATE(5405), - [sym__val_range] = STATE(7788), - [sym__val_range_with_end] = STATE(7565), - [sym__value] = STATE(5405), - [sym_val_nothing] = STATE(5312), - [sym_val_bool] = STATE(5288), - [sym_val_variable] = STATE(4939), - [sym_val_number] = STATE(5312), - [sym__val_number_decimal] = STATE(4385), - [sym__val_number] = STATE(5409), - [sym_val_duration] = STATE(5312), - [sym_val_filesize] = STATE(5312), - [sym_val_binary] = STATE(5312), - [sym_val_string] = STATE(5312), - [sym__str_double_quotes] = STATE(4919), - [sym_val_interpolated] = STATE(5312), - [sym__inter_single_quotes] = STATE(5273), - [sym__inter_double_quotes] = STATE(5275), - [sym_val_list] = STATE(5312), - [sym_val_record] = STATE(5312), - [sym_val_table] = STATE(5312), - [sym_val_closure] = STATE(5312), - [sym__unquoted_in_list] = STATE(5175), - [sym__unquoted_in_list_with_expr] = STATE(5405), - [sym__unquoted_anonymous_prefix] = STATE(7139), + [sym_path] = STATE(1341), [sym_comment] = STATE(1213), - [aux_sym_shebang_repeat1] = STATE(1219), - [anon_sym_true] = ACTIONS(3719), - [anon_sym_false] = ACTIONS(3719), - [anon_sym_null] = ACTIONS(3721), - [aux_sym_cmd_identifier_token38] = ACTIONS(3723), - [aux_sym_cmd_identifier_token39] = ACTIONS(3723), - [aux_sym_cmd_identifier_token40] = ACTIONS(3723), - [sym__newline] = ACTIONS(3675), - [anon_sym_LBRACK] = ACTIONS(3677), - [anon_sym_LPAREN] = ACTIONS(3679), - [anon_sym_DOLLAR] = ACTIONS(3681), - [aux_sym_ctrl_match_token1] = ACTIONS(3683), - [anon_sym_DOT_DOT] = ACTIONS(3725), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3727), - [anon_sym_DOT_DOT_LT] = ACTIONS(3727), - [aux_sym__val_number_decimal_token1] = ACTIONS(3729), - [aux_sym__val_number_decimal_token2] = ACTIONS(3731), - [aux_sym__val_number_decimal_token3] = ACTIONS(3733), - [aux_sym__val_number_decimal_token4] = ACTIONS(3735), - [aux_sym__val_number_token1] = ACTIONS(3697), - [aux_sym__val_number_token2] = ACTIONS(3697), - [aux_sym__val_number_token3] = ACTIONS(3697), - [anon_sym_0b] = ACTIONS(3699), - [anon_sym_0o] = ACTIONS(3701), - [anon_sym_0x] = ACTIONS(3701), - [sym_val_date] = ACTIONS(3737), - [anon_sym_DQUOTE] = ACTIONS(3705), - [sym__str_single_quotes] = ACTIONS(3707), - [sym__str_back_ticks] = ACTIONS(3707), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3713), + [aux_sym_cell_path_repeat1] = STATE(1227), + [ts_builtin_sym_end] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1019), + [anon_sym_false] = ACTIONS(1019), + [anon_sym_null] = ACTIONS(1019), + [aux_sym_cmd_identifier_token38] = ACTIONS(1019), + [aux_sym_cmd_identifier_token39] = ACTIONS(1019), + [aux_sym_cmd_identifier_token40] = ACTIONS(1019), + [sym__newline] = ACTIONS(1019), + [anon_sym_SEMI] = ACTIONS(1019), + [anon_sym_PIPE] = ACTIONS(1019), + [anon_sym_err_GT_PIPE] = ACTIONS(1019), + [anon_sym_out_GT_PIPE] = ACTIONS(1019), + [anon_sym_e_GT_PIPE] = ACTIONS(1019), + [anon_sym_o_GT_PIPE] = ACTIONS(1019), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1019), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1019), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1019), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1019), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_LPAREN] = ACTIONS(1019), + [anon_sym_DOLLAR] = ACTIONS(1017), + [anon_sym_DASH_DASH] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1017), + [aux_sym_ctrl_match_token1] = ACTIONS(1019), + [anon_sym_DOT_DOT] = ACTIONS(1017), + [anon_sym_DOT_DOT2] = ACTIONS(1017), + [anon_sym_DOT] = ACTIONS(4431), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1017), + [anon_sym_DOT_DOT_LT] = ACTIONS(1017), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1019), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1019), + [aux_sym__val_number_decimal_token1] = ACTIONS(1017), + [aux_sym__val_number_decimal_token2] = ACTIONS(1019), + [aux_sym__val_number_decimal_token3] = ACTIONS(1019), + [aux_sym__val_number_decimal_token4] = ACTIONS(1019), + [aux_sym__val_number_token1] = ACTIONS(1019), + [aux_sym__val_number_token2] = ACTIONS(1019), + [aux_sym__val_number_token3] = ACTIONS(1019), + [anon_sym_0b] = ACTIONS(1017), + [anon_sym_0o] = ACTIONS(1017), + [anon_sym_0x] = ACTIONS(1017), + [sym_val_date] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1019), + [sym__str_single_quotes] = ACTIONS(1019), + [sym__str_back_ticks] = ACTIONS(1019), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1019), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1019), + [anon_sym_err_GT] = ACTIONS(1017), + [anon_sym_out_GT] = ACTIONS(1017), + [anon_sym_e_GT] = ACTIONS(1017), + [anon_sym_o_GT] = ACTIONS(1017), + [anon_sym_err_PLUSout_GT] = ACTIONS(1017), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1017), + [anon_sym_o_PLUSe_GT] = ACTIONS(1017), + [anon_sym_e_PLUSo_GT] = ACTIONS(1017), + [anon_sym_err_GT_GT] = ACTIONS(1019), + [anon_sym_out_GT_GT] = ACTIONS(1019), + [anon_sym_e_GT_GT] = ACTIONS(1019), + [anon_sym_o_GT_GT] = ACTIONS(1019), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1019), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1019), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1019), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1019), + [aux_sym_unquoted_token1] = ACTIONS(1017), [anon_sym_POUND] = ACTIONS(247), }, [1214] = { - [sym_match_arm] = STATE(3233), - [sym_default_arm] = STATE(7004), - [sym_match_pattern] = STATE(8003), - [sym__match_pattern] = STATE(6318), - [sym__match_pattern_expression] = STATE(7519), - [sym__match_pattern_value] = STATE(6950), - [sym__match_pattern_list] = STATE(6957), - [sym__match_pattern_record] = STATE(6958), - [sym_expr_parenthesized] = STATE(6007), - [sym_val_range] = STATE(6950), - [sym__val_range] = STATE(8000), - [sym_val_nothing] = STATE(6978), - [sym_val_bool] = STATE(6785), - [sym_val_variable] = STATE(6011), - [sym_val_number] = STATE(6978), - [sym__val_number_decimal] = STATE(5584), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(6978), - [sym_val_filesize] = STATE(6978), - [sym_val_binary] = STATE(6978), - [sym_val_string] = STATE(6978), - [sym__str_double_quotes] = STATE(1851), - [sym_val_table] = STATE(6978), - [sym_unquoted] = STATE(7006), - [sym__unquoted_anonymous_prefix] = STATE(7741), [sym_comment] = STATE(1214), - [aux_sym_shebang_repeat1] = STATE(1240), - [aux_sym_ctrl_match_repeat1] = STATE(1212), - [anon_sym_true] = ACTIONS(3633), - [anon_sym_false] = ACTIONS(3633), - [anon_sym_null] = ACTIONS(3635), - [aux_sym_cmd_identifier_token38] = ACTIONS(3637), - [aux_sym_cmd_identifier_token39] = ACTIONS(3637), - [aux_sym_cmd_identifier_token40] = ACTIONS(3637), - [sym__newline] = ACTIONS(3639), - [anon_sym_LBRACK] = ACTIONS(3641), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_DOLLAR] = ACTIONS(3645), - [aux_sym_ctrl_match_token1] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(3739), - [anon_sym__] = ACTIONS(3651), - [anon_sym_DOT_DOT] = ACTIONS(3653), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3655), - [anon_sym_DOT_DOT_LT] = ACTIONS(3655), - [aux_sym__val_number_decimal_token1] = ACTIONS(3657), - [aux_sym__val_number_decimal_token2] = ACTIONS(3659), - [aux_sym__val_number_decimal_token3] = ACTIONS(3661), - [aux_sym__val_number_decimal_token4] = ACTIONS(3663), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3665), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(1707), + [anon_sym_false] = ACTIONS(1707), + [anon_sym_null] = ACTIONS(1707), + [aux_sym_cmd_identifier_token38] = ACTIONS(1707), + [aux_sym_cmd_identifier_token39] = ACTIONS(1707), + [aux_sym_cmd_identifier_token40] = ACTIONS(1707), + [sym__newline] = ACTIONS(1707), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_err_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_GT_PIPE] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), + [anon_sym_LBRACK] = ACTIONS(1707), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_RPAREN] = ACTIONS(1707), + [anon_sym_DOLLAR] = ACTIONS(1705), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1705), + [aux_sym_ctrl_match_token1] = ACTIONS(1707), + [anon_sym_RBRACE] = ACTIONS(1707), + [anon_sym_DOT_DOT] = ACTIONS(1705), + [anon_sym_LPAREN2] = ACTIONS(1707), + [anon_sym_DOT_DOT2] = ACTIONS(1705), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1705), + [anon_sym_DOT_DOT_LT] = ACTIONS(1705), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1707), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1707), + [aux_sym__val_number_decimal_token1] = ACTIONS(1705), + [aux_sym__val_number_decimal_token2] = ACTIONS(1707), + [aux_sym__val_number_decimal_token3] = ACTIONS(1707), + [aux_sym__val_number_decimal_token4] = ACTIONS(1707), + [aux_sym__val_number_token1] = ACTIONS(1707), + [aux_sym__val_number_token2] = ACTIONS(1707), + [aux_sym__val_number_token3] = ACTIONS(1707), + [anon_sym_0b] = ACTIONS(1705), + [anon_sym_0o] = ACTIONS(1705), + [anon_sym_0x] = ACTIONS(1705), + [sym_val_date] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1707), + [sym__str_single_quotes] = ACTIONS(1707), + [sym__str_back_ticks] = ACTIONS(1707), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1707), + [anon_sym_err_GT] = ACTIONS(1705), + [anon_sym_out_GT] = ACTIONS(1705), + [anon_sym_e_GT] = ACTIONS(1705), + [anon_sym_o_GT] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT] = ACTIONS(1705), + [anon_sym_err_GT_GT] = ACTIONS(1707), + [anon_sym_out_GT_GT] = ACTIONS(1707), + [anon_sym_e_GT_GT] = ACTIONS(1707), + [anon_sym_o_GT_GT] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), + [aux_sym_unquoted_token1] = ACTIONS(1705), + [aux_sym_unquoted_token2] = ACTIONS(1705), [anon_sym_POUND] = ACTIONS(247), }, [1215] = { - [sym_expr_parenthesized] = STATE(4955), - [sym_val_range] = STATE(5448), - [sym__val_range] = STATE(7788), - [sym__val_range_with_end] = STATE(7565), - [sym__value] = STATE(5448), - [sym_val_nothing] = STATE(5312), - [sym_val_bool] = STATE(5055), - [sym_val_variable] = STATE(4939), - [sym_val_number] = STATE(5312), - [sym__val_number_decimal] = STATE(4297), - [sym__val_number] = STATE(5409), - [sym_val_duration] = STATE(5312), - [sym_val_filesize] = STATE(5312), - [sym_val_binary] = STATE(5312), - [sym_val_string] = STATE(5312), - [sym__str_double_quotes] = STATE(4919), - [sym_val_interpolated] = STATE(5312), - [sym__inter_single_quotes] = STATE(5273), - [sym__inter_double_quotes] = STATE(5275), - [sym_val_list] = STATE(5312), - [sym_val_record] = STATE(5312), - [sym_val_table] = STATE(5312), - [sym_val_closure] = STATE(5312), - [sym__unquoted_in_list] = STATE(5147), - [sym__unquoted_in_list_with_expr] = STATE(5448), - [sym__unquoted_anonymous_prefix] = STATE(7139), [sym_comment] = STATE(1215), - [aux_sym_shebang_repeat1] = STATE(3101), - [anon_sym_true] = ACTIONS(3669), - [anon_sym_false] = ACTIONS(3669), - [anon_sym_null] = ACTIONS(3671), - [aux_sym_cmd_identifier_token38] = ACTIONS(3673), - [aux_sym_cmd_identifier_token39] = ACTIONS(3673), - [aux_sym_cmd_identifier_token40] = ACTIONS(3673), - [sym__newline] = ACTIONS(3675), - [anon_sym_LBRACK] = ACTIONS(3677), - [anon_sym_LPAREN] = ACTIONS(3679), - [anon_sym_DOLLAR] = ACTIONS(3681), - [aux_sym_ctrl_match_token1] = ACTIONS(3683), - [anon_sym_DOT_DOT] = ACTIONS(3685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3687), - [anon_sym_DOT_DOT_LT] = ACTIONS(3687), - [aux_sym__val_number_decimal_token1] = ACTIONS(3689), - [aux_sym__val_number_decimal_token2] = ACTIONS(3691), - [aux_sym__val_number_decimal_token3] = ACTIONS(3693), - [aux_sym__val_number_decimal_token4] = ACTIONS(3695), - [aux_sym__val_number_token1] = ACTIONS(3697), - [aux_sym__val_number_token2] = ACTIONS(3697), - [aux_sym__val_number_token3] = ACTIONS(3697), - [anon_sym_0b] = ACTIONS(3699), - [anon_sym_0o] = ACTIONS(3701), - [anon_sym_0x] = ACTIONS(3701), - [sym_val_date] = ACTIONS(3703), - [anon_sym_DQUOTE] = ACTIONS(3705), - [sym__str_single_quotes] = ACTIONS(3707), - [sym__str_back_ticks] = ACTIONS(3707), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3713), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [aux_sym_cmd_identifier_token38] = ACTIONS(1633), + [aux_sym_cmd_identifier_token39] = ACTIONS(1633), + [aux_sym_cmd_identifier_token40] = ACTIONS(1633), + [sym__newline] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1633), + [anon_sym_err_GT_PIPE] = ACTIONS(1633), + [anon_sym_out_GT_PIPE] = ACTIONS(1633), + [anon_sym_e_GT_PIPE] = ACTIONS(1633), + [anon_sym_o_GT_PIPE] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1633), + [anon_sym_LBRACK] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1633), + [anon_sym_RPAREN] = ACTIONS(1633), + [anon_sym_DOLLAR] = ACTIONS(1631), + [anon_sym_DASH_DASH] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1631), + [aux_sym_ctrl_match_token1] = ACTIONS(1633), + [anon_sym_RBRACE] = ACTIONS(1633), + [anon_sym_DOT_DOT] = ACTIONS(1631), + [anon_sym_DOT_DOT2] = ACTIONS(1631), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1631), + [anon_sym_DOT_DOT_LT] = ACTIONS(1631), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1633), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1633), + [aux_sym__immediate_decimal_token1] = ACTIONS(4525), + [aux_sym__immediate_decimal_token2] = ACTIONS(4527), + [aux_sym__val_number_decimal_token1] = ACTIONS(1631), + [aux_sym__val_number_decimal_token2] = ACTIONS(1633), + [aux_sym__val_number_decimal_token3] = ACTIONS(1633), + [aux_sym__val_number_decimal_token4] = ACTIONS(1633), + [aux_sym__val_number_token1] = ACTIONS(1633), + [aux_sym__val_number_token2] = ACTIONS(1633), + [aux_sym__val_number_token3] = ACTIONS(1633), + [anon_sym_0b] = ACTIONS(1631), + [anon_sym_0o] = ACTIONS(1631), + [anon_sym_0x] = ACTIONS(1631), + [sym_val_date] = ACTIONS(1633), + [anon_sym_DQUOTE] = ACTIONS(1633), + [sym__str_single_quotes] = ACTIONS(1633), + [sym__str_back_ticks] = ACTIONS(1633), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1633), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1633), + [anon_sym_err_GT] = ACTIONS(1631), + [anon_sym_out_GT] = ACTIONS(1631), + [anon_sym_e_GT] = ACTIONS(1631), + [anon_sym_o_GT] = ACTIONS(1631), + [anon_sym_err_PLUSout_GT] = ACTIONS(1631), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1631), + [anon_sym_o_PLUSe_GT] = ACTIONS(1631), + [anon_sym_e_PLUSo_GT] = ACTIONS(1631), + [anon_sym_err_GT_GT] = ACTIONS(1633), + [anon_sym_out_GT_GT] = ACTIONS(1633), + [anon_sym_e_GT_GT] = ACTIONS(1633), + [anon_sym_o_GT_GT] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1633), + [aux_sym_unquoted_token1] = ACTIONS(1631), [anon_sym_POUND] = ACTIONS(247), }, [1216] = { - [sym_expr_parenthesized] = STATE(4955), - [sym_val_range] = STATE(5448), - [sym__val_range] = STATE(7788), - [sym__val_range_with_end] = STATE(7565), - [sym__value] = STATE(5448), - [sym_val_nothing] = STATE(5312), - [sym_val_bool] = STATE(5055), - [sym_val_variable] = STATE(4939), - [sym_val_number] = STATE(5312), - [sym__val_number_decimal] = STATE(4297), - [sym__val_number] = STATE(5409), - [sym_val_duration] = STATE(5312), - [sym_val_filesize] = STATE(5312), - [sym_val_binary] = STATE(5312), - [sym_val_string] = STATE(5312), - [sym__str_double_quotes] = STATE(4919), - [sym_val_interpolated] = STATE(5312), - [sym__inter_single_quotes] = STATE(5273), - [sym__inter_double_quotes] = STATE(5275), - [sym_val_list] = STATE(5312), - [sym_val_record] = STATE(5312), - [sym_val_table] = STATE(5312), - [sym_val_closure] = STATE(5312), - [sym__unquoted_in_list] = STATE(5147), - [sym__unquoted_in_list_with_expr] = STATE(5448), - [sym__unquoted_anonymous_prefix] = STATE(7139), [sym_comment] = STATE(1216), - [aux_sym_shebang_repeat1] = STATE(1218), - [anon_sym_true] = ACTIONS(3669), - [anon_sym_false] = ACTIONS(3669), - [anon_sym_null] = ACTIONS(3671), - [aux_sym_cmd_identifier_token38] = ACTIONS(3673), - [aux_sym_cmd_identifier_token39] = ACTIONS(3673), - [aux_sym_cmd_identifier_token40] = ACTIONS(3673), - [sym__newline] = ACTIONS(3675), - [anon_sym_LBRACK] = ACTIONS(3677), - [anon_sym_LPAREN] = ACTIONS(3679), - [anon_sym_DOLLAR] = ACTIONS(3681), - [aux_sym_ctrl_match_token1] = ACTIONS(3683), - [anon_sym_DOT_DOT] = ACTIONS(3685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3687), - [anon_sym_DOT_DOT_LT] = ACTIONS(3687), - [aux_sym__val_number_decimal_token1] = ACTIONS(3689), - [aux_sym__val_number_decimal_token2] = ACTIONS(3691), - [aux_sym__val_number_decimal_token3] = ACTIONS(3693), - [aux_sym__val_number_decimal_token4] = ACTIONS(3695), - [aux_sym__val_number_token1] = ACTIONS(3697), - [aux_sym__val_number_token2] = ACTIONS(3697), - [aux_sym__val_number_token3] = ACTIONS(3697), - [anon_sym_0b] = ACTIONS(3699), - [anon_sym_0o] = ACTIONS(3701), - [anon_sym_0x] = ACTIONS(3701), - [sym_val_date] = ACTIONS(3703), - [anon_sym_DQUOTE] = ACTIONS(3705), - [sym__str_single_quotes] = ACTIONS(3707), - [sym__str_back_ticks] = ACTIONS(3707), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3713), + [anon_sym_true] = ACTIONS(1794), + [anon_sym_false] = ACTIONS(1794), + [anon_sym_null] = ACTIONS(1794), + [aux_sym_cmd_identifier_token38] = ACTIONS(1794), + [aux_sym_cmd_identifier_token39] = ACTIONS(1794), + [aux_sym_cmd_identifier_token40] = ACTIONS(1794), + [sym__newline] = ACTIONS(1794), + [anon_sym_SEMI] = ACTIONS(1794), + [anon_sym_PIPE] = ACTIONS(1794), + [anon_sym_err_GT_PIPE] = ACTIONS(1794), + [anon_sym_out_GT_PIPE] = ACTIONS(1794), + [anon_sym_e_GT_PIPE] = ACTIONS(1794), + [anon_sym_o_GT_PIPE] = ACTIONS(1794), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1794), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1794), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1794), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_RPAREN] = ACTIONS(1794), + [anon_sym_DOLLAR] = ACTIONS(1786), + [anon_sym_DASH_DASH] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1786), + [aux_sym_ctrl_match_token1] = ACTIONS(1794), + [anon_sym_RBRACE] = ACTIONS(1794), + [anon_sym_DOT_DOT] = ACTIONS(1786), + [anon_sym_LPAREN2] = ACTIONS(1788), + [anon_sym_DOT_DOT2] = ACTIONS(4529), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1786), + [anon_sym_DOT_DOT_LT] = ACTIONS(1786), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4531), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4531), + [aux_sym__val_number_decimal_token1] = ACTIONS(1786), + [aux_sym__val_number_decimal_token2] = ACTIONS(1794), + [aux_sym__val_number_decimal_token3] = ACTIONS(1794), + [aux_sym__val_number_decimal_token4] = ACTIONS(1794), + [aux_sym__val_number_token1] = ACTIONS(1794), + [aux_sym__val_number_token2] = ACTIONS(1794), + [aux_sym__val_number_token3] = ACTIONS(1794), + [anon_sym_0b] = ACTIONS(1786), + [anon_sym_0o] = ACTIONS(1786), + [anon_sym_0x] = ACTIONS(1786), + [sym_val_date] = ACTIONS(1794), + [anon_sym_DQUOTE] = ACTIONS(1794), + [sym__str_single_quotes] = ACTIONS(1794), + [sym__str_back_ticks] = ACTIONS(1794), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1794), + [anon_sym_err_GT] = ACTIONS(1786), + [anon_sym_out_GT] = ACTIONS(1786), + [anon_sym_e_GT] = ACTIONS(1786), + [anon_sym_o_GT] = ACTIONS(1786), + [anon_sym_err_PLUSout_GT] = ACTIONS(1786), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1786), + [anon_sym_o_PLUSe_GT] = ACTIONS(1786), + [anon_sym_e_PLUSo_GT] = ACTIONS(1786), + [anon_sym_err_GT_GT] = ACTIONS(1794), + [anon_sym_out_GT_GT] = ACTIONS(1794), + [anon_sym_e_GT_GT] = ACTIONS(1794), + [anon_sym_o_GT_GT] = ACTIONS(1794), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1794), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1794), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1794), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1794), + [aux_sym_unquoted_token1] = ACTIONS(1786), + [aux_sym_unquoted_token2] = ACTIONS(1495), [anon_sym_POUND] = ACTIONS(247), }, [1217] = { - [sym_match_arm] = STATE(3233), - [sym_default_arm] = STATE(7007), - [sym_match_pattern] = STATE(8003), - [sym__match_pattern] = STATE(6318), - [sym__match_pattern_expression] = STATE(7519), - [sym__match_pattern_value] = STATE(6950), - [sym__match_pattern_list] = STATE(6957), - [sym__match_pattern_record] = STATE(6958), - [sym_expr_parenthesized] = STATE(6007), - [sym_val_range] = STATE(6950), - [sym__val_range] = STATE(8000), - [sym_val_nothing] = STATE(6978), - [sym_val_bool] = STATE(6785), - [sym_val_variable] = STATE(6011), - [sym_val_number] = STATE(6978), - [sym__val_number_decimal] = STATE(5584), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(6978), - [sym_val_filesize] = STATE(6978), - [sym_val_binary] = STATE(6978), - [sym_val_string] = STATE(6978), - [sym__str_double_quotes] = STATE(1851), - [sym_val_table] = STATE(6978), - [sym_unquoted] = STATE(7006), - [sym__unquoted_anonymous_prefix] = STATE(7741), [sym_comment] = STATE(1217), - [aux_sym_shebang_repeat1] = STATE(1247), - [aux_sym_ctrl_match_repeat1] = STATE(1209), - [anon_sym_true] = ACTIONS(3633), - [anon_sym_false] = ACTIONS(3633), - [anon_sym_null] = ACTIONS(3635), - [aux_sym_cmd_identifier_token38] = ACTIONS(3637), - [aux_sym_cmd_identifier_token39] = ACTIONS(3637), - [aux_sym_cmd_identifier_token40] = ACTIONS(3637), - [sym__newline] = ACTIONS(3639), - [anon_sym_LBRACK] = ACTIONS(3641), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_DOLLAR] = ACTIONS(3645), - [aux_sym_ctrl_match_token1] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(3741), - [anon_sym__] = ACTIONS(3651), - [anon_sym_DOT_DOT] = ACTIONS(3653), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3655), - [anon_sym_DOT_DOT_LT] = ACTIONS(3655), - [aux_sym__val_number_decimal_token1] = ACTIONS(3657), - [aux_sym__val_number_decimal_token2] = ACTIONS(3659), - [aux_sym__val_number_decimal_token3] = ACTIONS(3661), - [aux_sym__val_number_decimal_token4] = ACTIONS(3663), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3665), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [sym__newline] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1519), + [anon_sym_err_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_GT_PIPE] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), + [anon_sym_RPAREN] = ACTIONS(1519), + [anon_sym_RBRACE] = ACTIONS(1519), + [anon_sym_LPAREN2] = ACTIONS(1519), + [aux_sym_expr_binary_token1] = ACTIONS(1519), + [aux_sym_expr_binary_token2] = ACTIONS(1519), + [aux_sym_expr_binary_token3] = ACTIONS(1519), + [aux_sym_expr_binary_token4] = ACTIONS(1519), + [aux_sym_expr_binary_token5] = ACTIONS(1519), + [aux_sym_expr_binary_token6] = ACTIONS(1519), + [aux_sym_expr_binary_token7] = ACTIONS(1519), + [aux_sym_expr_binary_token8] = ACTIONS(1519), + [aux_sym_expr_binary_token9] = ACTIONS(1519), + [aux_sym_expr_binary_token10] = ACTIONS(1519), + [aux_sym_expr_binary_token11] = ACTIONS(1519), + [aux_sym_expr_binary_token12] = ACTIONS(1519), + [aux_sym_expr_binary_token13] = ACTIONS(1519), + [aux_sym_expr_binary_token14] = ACTIONS(1519), + [aux_sym_expr_binary_token15] = ACTIONS(1519), + [aux_sym_expr_binary_token16] = ACTIONS(1519), + [aux_sym_expr_binary_token17] = ACTIONS(1519), + [aux_sym_expr_binary_token18] = ACTIONS(1519), + [aux_sym_expr_binary_token19] = ACTIONS(1519), + [aux_sym_expr_binary_token20] = ACTIONS(1519), + [aux_sym_expr_binary_token21] = ACTIONS(1519), + [aux_sym_expr_binary_token22] = ACTIONS(1519), + [aux_sym_expr_binary_token23] = ACTIONS(1519), + [aux_sym_expr_binary_token24] = ACTIONS(1519), + [aux_sym_expr_binary_token25] = ACTIONS(1519), + [aux_sym_expr_binary_token26] = ACTIONS(1519), + [aux_sym_expr_binary_token27] = ACTIONS(1519), + [aux_sym_expr_binary_token28] = ACTIONS(1519), + [anon_sym_DOT_DOT2] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), + [aux_sym__immediate_decimal_token1] = ACTIONS(4533), + [aux_sym__immediate_decimal_token2] = ACTIONS(4535), + [sym_filesize_unit] = ACTIONS(1519), + [sym_duration_unit] = ACTIONS(1519), + [anon_sym_err_GT] = ACTIONS(1517), + [anon_sym_out_GT] = ACTIONS(1517), + [anon_sym_e_GT] = ACTIONS(1517), + [anon_sym_o_GT] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT] = ACTIONS(1517), + [anon_sym_err_GT_GT] = ACTIONS(1519), + [anon_sym_out_GT_GT] = ACTIONS(1519), + [anon_sym_e_GT_GT] = ACTIONS(1519), + [anon_sym_o_GT_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), + [aux_sym_unquoted_token2] = ACTIONS(1517), [anon_sym_POUND] = ACTIONS(247), }, [1218] = { - [sym_expr_parenthesized] = STATE(4938), - [sym_val_range] = STATE(5426), - [sym__val_range] = STATE(7788), - [sym__val_range_with_end] = STATE(7565), - [sym__value] = STATE(5426), - [sym_val_nothing] = STATE(5312), - [sym_val_bool] = STATE(5055), - [sym_val_variable] = STATE(4939), - [sym_val_number] = STATE(5312), - [sym__val_number_decimal] = STATE(4297), - [sym__val_number] = STATE(5409), - [sym_val_duration] = STATE(5312), - [sym_val_filesize] = STATE(5312), - [sym_val_binary] = STATE(5312), - [sym_val_string] = STATE(5312), - [sym__str_double_quotes] = STATE(4919), - [sym_val_interpolated] = STATE(5312), - [sym__inter_single_quotes] = STATE(5273), - [sym__inter_double_quotes] = STATE(5275), - [sym_val_list] = STATE(5312), - [sym_val_record] = STATE(5312), - [sym_val_table] = STATE(5312), - [sym_val_closure] = STATE(5312), - [sym__unquoted_in_list] = STATE(5192), - [sym__unquoted_in_list_with_expr] = STATE(5426), - [sym__unquoted_anonymous_prefix] = STATE(7139), [sym_comment] = STATE(1218), - [aux_sym_shebang_repeat1] = STATE(3101), - [anon_sym_true] = ACTIONS(3669), - [anon_sym_false] = ACTIONS(3669), - [anon_sym_null] = ACTIONS(3671), - [aux_sym_cmd_identifier_token38] = ACTIONS(3673), - [aux_sym_cmd_identifier_token39] = ACTIONS(3673), - [aux_sym_cmd_identifier_token40] = ACTIONS(3673), - [sym__newline] = ACTIONS(3675), - [anon_sym_LBRACK] = ACTIONS(3677), - [anon_sym_LPAREN] = ACTIONS(3679), - [anon_sym_DOLLAR] = ACTIONS(3681), - [aux_sym_ctrl_match_token1] = ACTIONS(3683), - [anon_sym_DOT_DOT] = ACTIONS(3685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3687), - [anon_sym_DOT_DOT_LT] = ACTIONS(3687), - [aux_sym__val_number_decimal_token1] = ACTIONS(3689), - [aux_sym__val_number_decimal_token2] = ACTIONS(3691), - [aux_sym__val_number_decimal_token3] = ACTIONS(3693), - [aux_sym__val_number_decimal_token4] = ACTIONS(3695), - [aux_sym__val_number_token1] = ACTIONS(3697), - [aux_sym__val_number_token2] = ACTIONS(3697), - [aux_sym__val_number_token3] = ACTIONS(3697), - [anon_sym_0b] = ACTIONS(3699), - [anon_sym_0o] = ACTIONS(3701), - [anon_sym_0x] = ACTIONS(3701), - [sym_val_date] = ACTIONS(3703), - [anon_sym_DQUOTE] = ACTIONS(3705), - [sym__str_single_quotes] = ACTIONS(3707), - [sym__str_back_ticks] = ACTIONS(3707), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3713), + [anon_sym_true] = ACTIONS(1757), + [anon_sym_false] = ACTIONS(1757), + [anon_sym_null] = ACTIONS(1757), + [aux_sym_cmd_identifier_token38] = ACTIONS(1757), + [aux_sym_cmd_identifier_token39] = ACTIONS(1757), + [aux_sym_cmd_identifier_token40] = ACTIONS(1757), + [sym__newline] = ACTIONS(1757), + [anon_sym_SEMI] = ACTIONS(1757), + [anon_sym_PIPE] = ACTIONS(1757), + [anon_sym_err_GT_PIPE] = ACTIONS(1757), + [anon_sym_out_GT_PIPE] = ACTIONS(1757), + [anon_sym_e_GT_PIPE] = ACTIONS(1757), + [anon_sym_o_GT_PIPE] = ACTIONS(1757), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1757), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1757), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1757), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1757), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1755), + [anon_sym_RPAREN] = ACTIONS(1757), + [anon_sym_DOLLAR] = ACTIONS(1755), + [anon_sym_DASH_DASH] = ACTIONS(1757), + [anon_sym_DASH] = ACTIONS(1755), + [aux_sym_ctrl_match_token1] = ACTIONS(1757), + [anon_sym_RBRACE] = ACTIONS(1757), + [anon_sym_DOT_DOT] = ACTIONS(1755), + [anon_sym_LPAREN2] = ACTIONS(1757), + [anon_sym_DOT_DOT2] = ACTIONS(1755), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1755), + [anon_sym_DOT_DOT_LT] = ACTIONS(1755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), + [aux_sym__val_number_decimal_token1] = ACTIONS(1755), + [aux_sym__val_number_decimal_token2] = ACTIONS(1757), + [aux_sym__val_number_decimal_token3] = ACTIONS(1757), + [aux_sym__val_number_decimal_token4] = ACTIONS(1757), + [aux_sym__val_number_token1] = ACTIONS(1757), + [aux_sym__val_number_token2] = ACTIONS(1757), + [aux_sym__val_number_token3] = ACTIONS(1757), + [anon_sym_0b] = ACTIONS(1755), + [anon_sym_0o] = ACTIONS(1755), + [anon_sym_0x] = ACTIONS(1755), + [sym_val_date] = ACTIONS(1757), + [anon_sym_DQUOTE] = ACTIONS(1757), + [sym__str_single_quotes] = ACTIONS(1757), + [sym__str_back_ticks] = ACTIONS(1757), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), + [anon_sym_err_GT] = ACTIONS(1755), + [anon_sym_out_GT] = ACTIONS(1755), + [anon_sym_e_GT] = ACTIONS(1755), + [anon_sym_o_GT] = ACTIONS(1755), + [anon_sym_err_PLUSout_GT] = ACTIONS(1755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), + [anon_sym_o_PLUSe_GT] = ACTIONS(1755), + [anon_sym_e_PLUSo_GT] = ACTIONS(1755), + [anon_sym_err_GT_GT] = ACTIONS(1757), + [anon_sym_out_GT_GT] = ACTIONS(1757), + [anon_sym_e_GT_GT] = ACTIONS(1757), + [anon_sym_o_GT_GT] = ACTIONS(1757), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), + [aux_sym_unquoted_token1] = ACTIONS(1755), + [aux_sym_unquoted_token2] = ACTIONS(1755), [anon_sym_POUND] = ACTIONS(247), }, [1219] = { - [sym_expr_parenthesized] = STATE(4955), - [sym_val_range] = STATE(5448), - [sym__val_range] = STATE(7788), - [sym__val_range_with_end] = STATE(7565), - [sym__value] = STATE(5448), - [sym_val_nothing] = STATE(5312), - [sym_val_bool] = STATE(5288), - [sym_val_variable] = STATE(4939), - [sym_val_number] = STATE(5312), - [sym__val_number_decimal] = STATE(4385), - [sym__val_number] = STATE(5409), - [sym_val_duration] = STATE(5312), - [sym_val_filesize] = STATE(5312), - [sym_val_binary] = STATE(5312), - [sym_val_string] = STATE(5312), - [sym__str_double_quotes] = STATE(4919), - [sym_val_interpolated] = STATE(5312), - [sym__inter_single_quotes] = STATE(5273), - [sym__inter_double_quotes] = STATE(5275), - [sym_val_list] = STATE(5312), - [sym_val_record] = STATE(5312), - [sym_val_table] = STATE(5312), - [sym_val_closure] = STATE(5312), - [sym__unquoted_in_list] = STATE(5147), - [sym__unquoted_in_list_with_expr] = STATE(5448), - [sym__unquoted_anonymous_prefix] = STATE(7139), + [sym__match_pattern] = STATE(7295), + [sym__match_pattern_expression] = STATE(6857), + [sym__match_pattern_value] = STATE(6861), + [sym__match_pattern_list] = STATE(6862), + [sym__match_pattern_record] = STATE(6888), + [sym_expr_parenthesized] = STATE(5713), + [sym_val_range] = STATE(6861), + [sym__val_range] = STATE(7774), + [sym_val_nothing] = STATE(6915), + [sym_val_bool] = STATE(6854), + [sym_val_variable] = STATE(5754), + [sym_val_number] = STATE(6915), + [sym__val_number_decimal] = STATE(5488), + [sym__val_number] = STATE(1937), + [sym_val_duration] = STATE(6915), + [sym_val_filesize] = STATE(6915), + [sym_val_binary] = STATE(6915), + [sym_val_string] = STATE(6915), + [sym__str_double_quotes] = STATE(1707), + [sym_val_table] = STATE(6915), + [sym_unquoted] = STATE(6919), + [sym__unquoted_anonymous_prefix] = STATE(7502), [sym_comment] = STATE(1219), - [aux_sym_shebang_repeat1] = STATE(3101), - [anon_sym_true] = ACTIONS(3719), - [anon_sym_false] = ACTIONS(3719), - [anon_sym_null] = ACTIONS(3721), - [aux_sym_cmd_identifier_token38] = ACTIONS(3723), - [aux_sym_cmd_identifier_token39] = ACTIONS(3723), - [aux_sym_cmd_identifier_token40] = ACTIONS(3723), - [sym__newline] = ACTIONS(3675), - [anon_sym_LBRACK] = ACTIONS(3677), - [anon_sym_LPAREN] = ACTIONS(3679), - [anon_sym_DOLLAR] = ACTIONS(3681), - [aux_sym_ctrl_match_token1] = ACTIONS(3683), - [anon_sym_DOT_DOT] = ACTIONS(3725), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3727), - [anon_sym_DOT_DOT_LT] = ACTIONS(3727), - [aux_sym__val_number_decimal_token1] = ACTIONS(3729), - [aux_sym__val_number_decimal_token2] = ACTIONS(3731), - [aux_sym__val_number_decimal_token3] = ACTIONS(3733), - [aux_sym__val_number_decimal_token4] = ACTIONS(3735), - [aux_sym__val_number_token1] = ACTIONS(3697), - [aux_sym__val_number_token2] = ACTIONS(3697), - [aux_sym__val_number_token3] = ACTIONS(3697), - [anon_sym_0b] = ACTIONS(3699), - [anon_sym_0o] = ACTIONS(3701), - [anon_sym_0x] = ACTIONS(3701), - [sym_val_date] = ACTIONS(3737), - [anon_sym_DQUOTE] = ACTIONS(3705), - [sym__str_single_quotes] = ACTIONS(3707), - [sym__str_back_ticks] = ACTIONS(3707), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3713), + [anon_sym_true] = ACTIONS(3323), + [anon_sym_false] = ACTIONS(3323), + [anon_sym_null] = ACTIONS(3325), + [aux_sym_cmd_identifier_token38] = ACTIONS(4537), + [aux_sym_cmd_identifier_token39] = ACTIONS(4537), + [aux_sym_cmd_identifier_token40] = ACTIONS(4537), + [anon_sym_LBRACK] = ACTIONS(3479), + [anon_sym_LPAREN] = ACTIONS(3481), + [anon_sym_DOLLAR] = ACTIONS(3483), + [aux_sym_ctrl_match_token1] = ACTIONS(3485), + [anon_sym_DOT_DOT] = ACTIONS(4539), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4541), + [anon_sym_DOT_DOT_LT] = ACTIONS(4541), + [aux_sym__val_number_decimal_token1] = ACTIONS(3329), + [aux_sym__val_number_decimal_token2] = ACTIONS(3331), + [aux_sym__val_number_decimal_token3] = ACTIONS(3333), + [aux_sym__val_number_decimal_token4] = ACTIONS(3335), + [aux_sym__val_number_token1] = ACTIONS(499), + [aux_sym__val_number_token2] = ACTIONS(499), + [aux_sym__val_number_token3] = ACTIONS(499), + [anon_sym_0b] = ACTIONS(501), + [anon_sym_0o] = ACTIONS(503), + [anon_sym_0x] = ACTIONS(503), + [sym_val_date] = ACTIONS(4543), + [anon_sym_DQUOTE] = ACTIONS(507), + [sym__str_single_quotes] = ACTIONS(509), + [sym__str_back_ticks] = ACTIONS(509), + [anon_sym_err_GT] = ACTIONS(2573), + [anon_sym_out_GT] = ACTIONS(2573), + [anon_sym_e_GT] = ACTIONS(2573), + [anon_sym_o_GT] = ACTIONS(2573), + [anon_sym_err_PLUSout_GT] = ACTIONS(2573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), + [anon_sym_o_PLUSe_GT] = ACTIONS(2573), + [anon_sym_e_PLUSo_GT] = ACTIONS(2573), + [anon_sym_err_GT_GT] = ACTIONS(2575), + [anon_sym_out_GT_GT] = ACTIONS(2575), + [anon_sym_e_GT_GT] = ACTIONS(2575), + [anon_sym_o_GT_GT] = ACTIONS(2575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [aux_sym_unquoted_token1] = ACTIONS(3704), [anon_sym_POUND] = ACTIONS(247), }, [1220] = { - [sym_expr_parenthesized] = STATE(4955), - [sym_val_range] = STATE(5448), - [sym__val_range] = STATE(7788), - [sym__val_range_with_end] = STATE(7565), - [sym__value] = STATE(5448), - [sym_val_nothing] = STATE(5312), - [sym_val_bool] = STATE(5288), - [sym_val_variable] = STATE(4939), - [sym_val_number] = STATE(5312), - [sym__val_number_decimal] = STATE(4385), - [sym__val_number] = STATE(5409), - [sym_val_duration] = STATE(5312), - [sym_val_filesize] = STATE(5312), - [sym_val_binary] = STATE(5312), - [sym_val_string] = STATE(5312), - [sym__str_double_quotes] = STATE(4919), - [sym_val_interpolated] = STATE(5312), - [sym__inter_single_quotes] = STATE(5273), - [sym__inter_double_quotes] = STATE(5275), - [sym_val_list] = STATE(5312), - [sym_val_record] = STATE(5312), - [sym_val_table] = STATE(5312), - [sym_val_closure] = STATE(5312), - [sym__unquoted_in_list] = STATE(5147), - [sym__unquoted_in_list_with_expr] = STATE(5448), - [sym__unquoted_anonymous_prefix] = STATE(7139), [sym_comment] = STATE(1220), - [aux_sym_shebang_repeat1] = STATE(1221), - [anon_sym_true] = ACTIONS(3719), - [anon_sym_false] = ACTIONS(3719), - [anon_sym_null] = ACTIONS(3721), - [aux_sym_cmd_identifier_token38] = ACTIONS(3723), - [aux_sym_cmd_identifier_token39] = ACTIONS(3723), - [aux_sym_cmd_identifier_token40] = ACTIONS(3723), - [sym__newline] = ACTIONS(3675), - [anon_sym_LBRACK] = ACTIONS(3677), - [anon_sym_LPAREN] = ACTIONS(3679), - [anon_sym_DOLLAR] = ACTIONS(3681), - [aux_sym_ctrl_match_token1] = ACTIONS(3683), - [anon_sym_DOT_DOT] = ACTIONS(3725), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3727), - [anon_sym_DOT_DOT_LT] = ACTIONS(3727), - [aux_sym__val_number_decimal_token1] = ACTIONS(3729), - [aux_sym__val_number_decimal_token2] = ACTIONS(3731), - [aux_sym__val_number_decimal_token3] = ACTIONS(3733), - [aux_sym__val_number_decimal_token4] = ACTIONS(3735), - [aux_sym__val_number_token1] = ACTIONS(3697), - [aux_sym__val_number_token2] = ACTIONS(3697), - [aux_sym__val_number_token3] = ACTIONS(3697), - [anon_sym_0b] = ACTIONS(3699), - [anon_sym_0o] = ACTIONS(3701), - [anon_sym_0x] = ACTIONS(3701), - [sym_val_date] = ACTIONS(3737), - [anon_sym_DQUOTE] = ACTIONS(3705), - [sym__str_single_quotes] = ACTIONS(3707), - [sym__str_back_ticks] = ACTIONS(3707), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3713), + [ts_builtin_sym_end] = ACTIONS(1062), + [anon_sym_EQ] = ACTIONS(1060), + [anon_sym_PLUS_EQ] = ACTIONS(1062), + [anon_sym_DASH_EQ] = ACTIONS(1062), + [anon_sym_STAR_EQ] = ACTIONS(1062), + [anon_sym_SLASH_EQ] = ACTIONS(1062), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1062), + [sym__newline] = ACTIONS(1062), + [anon_sym_SEMI] = ACTIONS(1062), + [anon_sym_PIPE] = ACTIONS(1062), + [anon_sym_err_GT_PIPE] = ACTIONS(1062), + [anon_sym_out_GT_PIPE] = ACTIONS(1062), + [anon_sym_e_GT_PIPE] = ACTIONS(1062), + [anon_sym_o_GT_PIPE] = ACTIONS(1062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1062), + [aux_sym_expr_binary_token1] = ACTIONS(1062), + [aux_sym_expr_binary_token2] = ACTIONS(1062), + [aux_sym_expr_binary_token3] = ACTIONS(1062), + [aux_sym_expr_binary_token4] = ACTIONS(1062), + [aux_sym_expr_binary_token5] = ACTIONS(1062), + [aux_sym_expr_binary_token6] = ACTIONS(1062), + [aux_sym_expr_binary_token7] = ACTIONS(1062), + [aux_sym_expr_binary_token8] = ACTIONS(1062), + [aux_sym_expr_binary_token9] = ACTIONS(1062), + [aux_sym_expr_binary_token10] = ACTIONS(1062), + [aux_sym_expr_binary_token11] = ACTIONS(1062), + [aux_sym_expr_binary_token12] = ACTIONS(1062), + [aux_sym_expr_binary_token13] = ACTIONS(1062), + [aux_sym_expr_binary_token14] = ACTIONS(1062), + [aux_sym_expr_binary_token15] = ACTIONS(1062), + [aux_sym_expr_binary_token16] = ACTIONS(1062), + [aux_sym_expr_binary_token17] = ACTIONS(1062), + [aux_sym_expr_binary_token18] = ACTIONS(1062), + [aux_sym_expr_binary_token19] = ACTIONS(1062), + [aux_sym_expr_binary_token20] = ACTIONS(1062), + [aux_sym_expr_binary_token21] = ACTIONS(1062), + [aux_sym_expr_binary_token22] = ACTIONS(1062), + [aux_sym_expr_binary_token23] = ACTIONS(1062), + [aux_sym_expr_binary_token24] = ACTIONS(1062), + [aux_sym_expr_binary_token25] = ACTIONS(1062), + [aux_sym_expr_binary_token26] = ACTIONS(1062), + [aux_sym_expr_binary_token27] = ACTIONS(1062), + [aux_sym_expr_binary_token28] = ACTIONS(1062), + [anon_sym_DOT_DOT2] = ACTIONS(1060), + [anon_sym_DOT] = ACTIONS(1060), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1062), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1062), + [anon_sym_err_GT] = ACTIONS(1060), + [anon_sym_out_GT] = ACTIONS(1060), + [anon_sym_e_GT] = ACTIONS(1060), + [anon_sym_o_GT] = ACTIONS(1060), + [anon_sym_err_PLUSout_GT] = ACTIONS(1060), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1060), + [anon_sym_o_PLUSe_GT] = ACTIONS(1060), + [anon_sym_e_PLUSo_GT] = ACTIONS(1060), + [anon_sym_err_GT_GT] = ACTIONS(1062), + [anon_sym_out_GT_GT] = ACTIONS(1062), + [anon_sym_e_GT_GT] = ACTIONS(1062), + [anon_sym_o_GT_GT] = ACTIONS(1062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1062), [anon_sym_POUND] = ACTIONS(247), }, [1221] = { - [sym_expr_parenthesized] = STATE(4938), - [sym_val_range] = STATE(5426), - [sym__val_range] = STATE(7788), - [sym__val_range_with_end] = STATE(7565), - [sym__value] = STATE(5426), - [sym_val_nothing] = STATE(5312), - [sym_val_bool] = STATE(5288), - [sym_val_variable] = STATE(4939), - [sym_val_number] = STATE(5312), - [sym__val_number_decimal] = STATE(4385), - [sym__val_number] = STATE(5409), - [sym_val_duration] = STATE(5312), - [sym_val_filesize] = STATE(5312), - [sym_val_binary] = STATE(5312), - [sym_val_string] = STATE(5312), - [sym__str_double_quotes] = STATE(4919), - [sym_val_interpolated] = STATE(5312), - [sym__inter_single_quotes] = STATE(5273), - [sym__inter_double_quotes] = STATE(5275), - [sym_val_list] = STATE(5312), - [sym_val_record] = STATE(5312), - [sym_val_table] = STATE(5312), - [sym_val_closure] = STATE(5312), - [sym__unquoted_in_list] = STATE(5192), - [sym__unquoted_in_list_with_expr] = STATE(5426), - [sym__unquoted_anonymous_prefix] = STATE(7139), [sym_comment] = STATE(1221), - [aux_sym_shebang_repeat1] = STATE(3101), - [anon_sym_true] = ACTIONS(3719), - [anon_sym_false] = ACTIONS(3719), - [anon_sym_null] = ACTIONS(3721), - [aux_sym_cmd_identifier_token38] = ACTIONS(3723), - [aux_sym_cmd_identifier_token39] = ACTIONS(3723), - [aux_sym_cmd_identifier_token40] = ACTIONS(3723), - [sym__newline] = ACTIONS(3675), - [anon_sym_LBRACK] = ACTIONS(3677), - [anon_sym_LPAREN] = ACTIONS(3679), - [anon_sym_DOLLAR] = ACTIONS(3681), - [aux_sym_ctrl_match_token1] = ACTIONS(3683), - [anon_sym_DOT_DOT] = ACTIONS(3725), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3727), - [anon_sym_DOT_DOT_LT] = ACTIONS(3727), - [aux_sym__val_number_decimal_token1] = ACTIONS(3729), - [aux_sym__val_number_decimal_token2] = ACTIONS(3731), - [aux_sym__val_number_decimal_token3] = ACTIONS(3733), - [aux_sym__val_number_decimal_token4] = ACTIONS(3735), - [aux_sym__val_number_token1] = ACTIONS(3697), - [aux_sym__val_number_token2] = ACTIONS(3697), - [aux_sym__val_number_token3] = ACTIONS(3697), - [anon_sym_0b] = ACTIONS(3699), - [anon_sym_0o] = ACTIONS(3701), - [anon_sym_0x] = ACTIONS(3701), - [sym_val_date] = ACTIONS(3737), - [anon_sym_DQUOTE] = ACTIONS(3705), - [sym__str_single_quotes] = ACTIONS(3707), - [sym__str_back_ticks] = ACTIONS(3707), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3713), + [ts_builtin_sym_end] = ACTIONS(1054), + [anon_sym_EQ] = ACTIONS(1052), + [anon_sym_PLUS_EQ] = ACTIONS(1054), + [anon_sym_DASH_EQ] = ACTIONS(1054), + [anon_sym_STAR_EQ] = ACTIONS(1054), + [anon_sym_SLASH_EQ] = ACTIONS(1054), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1054), + [sym__newline] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_PIPE] = ACTIONS(1054), + [anon_sym_err_GT_PIPE] = ACTIONS(1054), + [anon_sym_out_GT_PIPE] = ACTIONS(1054), + [anon_sym_e_GT_PIPE] = ACTIONS(1054), + [anon_sym_o_GT_PIPE] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1054), + [aux_sym_expr_binary_token1] = ACTIONS(1054), + [aux_sym_expr_binary_token2] = ACTIONS(1054), + [aux_sym_expr_binary_token3] = ACTIONS(1054), + [aux_sym_expr_binary_token4] = ACTIONS(1054), + [aux_sym_expr_binary_token5] = ACTIONS(1054), + [aux_sym_expr_binary_token6] = ACTIONS(1054), + [aux_sym_expr_binary_token7] = ACTIONS(1054), + [aux_sym_expr_binary_token8] = ACTIONS(1054), + [aux_sym_expr_binary_token9] = ACTIONS(1054), + [aux_sym_expr_binary_token10] = ACTIONS(1054), + [aux_sym_expr_binary_token11] = ACTIONS(1054), + [aux_sym_expr_binary_token12] = ACTIONS(1054), + [aux_sym_expr_binary_token13] = ACTIONS(1054), + [aux_sym_expr_binary_token14] = ACTIONS(1054), + [aux_sym_expr_binary_token15] = ACTIONS(1054), + [aux_sym_expr_binary_token16] = ACTIONS(1054), + [aux_sym_expr_binary_token17] = ACTIONS(1054), + [aux_sym_expr_binary_token18] = ACTIONS(1054), + [aux_sym_expr_binary_token19] = ACTIONS(1054), + [aux_sym_expr_binary_token20] = ACTIONS(1054), + [aux_sym_expr_binary_token21] = ACTIONS(1054), + [aux_sym_expr_binary_token22] = ACTIONS(1054), + [aux_sym_expr_binary_token23] = ACTIONS(1054), + [aux_sym_expr_binary_token24] = ACTIONS(1054), + [aux_sym_expr_binary_token25] = ACTIONS(1054), + [aux_sym_expr_binary_token26] = ACTIONS(1054), + [aux_sym_expr_binary_token27] = ACTIONS(1054), + [aux_sym_expr_binary_token28] = ACTIONS(1054), + [anon_sym_DOT_DOT2] = ACTIONS(1052), + [anon_sym_DOT] = ACTIONS(1052), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1054), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1054), + [anon_sym_err_GT] = ACTIONS(1052), + [anon_sym_out_GT] = ACTIONS(1052), + [anon_sym_e_GT] = ACTIONS(1052), + [anon_sym_o_GT] = ACTIONS(1052), + [anon_sym_err_PLUSout_GT] = ACTIONS(1052), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1052), + [anon_sym_o_PLUSe_GT] = ACTIONS(1052), + [anon_sym_e_PLUSo_GT] = ACTIONS(1052), + [anon_sym_err_GT_GT] = ACTIONS(1054), + [anon_sym_out_GT_GT] = ACTIONS(1054), + [anon_sym_e_GT_GT] = ACTIONS(1054), + [anon_sym_o_GT_GT] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1054), [anon_sym_POUND] = ACTIONS(247), }, [1222] = { - [sym_match_arm] = STATE(3233), - [sym_default_arm] = STATE(7159), - [sym_match_pattern] = STATE(8003), - [sym__match_pattern] = STATE(6318), - [sym__match_pattern_expression] = STATE(7519), - [sym__match_pattern_value] = STATE(6950), - [sym__match_pattern_list] = STATE(6957), - [sym__match_pattern_record] = STATE(6958), - [sym_expr_parenthesized] = STATE(6007), - [sym_val_range] = STATE(6950), - [sym__val_range] = STATE(8000), - [sym_val_nothing] = STATE(6978), - [sym_val_bool] = STATE(6785), - [sym_val_variable] = STATE(6011), - [sym_val_number] = STATE(6978), - [sym__val_number_decimal] = STATE(5584), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(6978), - [sym_val_filesize] = STATE(6978), - [sym_val_binary] = STATE(6978), - [sym_val_string] = STATE(6978), - [sym__str_double_quotes] = STATE(1851), - [sym_val_table] = STATE(6978), - [sym_unquoted] = STATE(7006), - [sym__unquoted_anonymous_prefix] = STATE(7741), [sym_comment] = STATE(1222), - [aux_sym_shebang_repeat1] = STATE(1233), - [aux_sym_ctrl_match_repeat1] = STATE(1224), - [anon_sym_true] = ACTIONS(3633), - [anon_sym_false] = ACTIONS(3633), - [anon_sym_null] = ACTIONS(3635), - [aux_sym_cmd_identifier_token38] = ACTIONS(3637), - [aux_sym_cmd_identifier_token39] = ACTIONS(3637), - [aux_sym_cmd_identifier_token40] = ACTIONS(3637), - [sym__newline] = ACTIONS(3639), - [anon_sym_LBRACK] = ACTIONS(3641), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_DOLLAR] = ACTIONS(3645), - [aux_sym_ctrl_match_token1] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(3743), - [anon_sym__] = ACTIONS(3651), - [anon_sym_DOT_DOT] = ACTIONS(3653), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3655), - [anon_sym_DOT_DOT_LT] = ACTIONS(3655), - [aux_sym__val_number_decimal_token1] = ACTIONS(3657), - [aux_sym__val_number_decimal_token2] = ACTIONS(3659), - [aux_sym__val_number_decimal_token3] = ACTIONS(3661), - [aux_sym__val_number_decimal_token4] = ACTIONS(3663), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3665), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(1042), + [anon_sym_false] = ACTIONS(1042), + [anon_sym_null] = ACTIONS(1042), + [aux_sym_cmd_identifier_token38] = ACTIONS(1042), + [aux_sym_cmd_identifier_token39] = ACTIONS(1042), + [aux_sym_cmd_identifier_token40] = ACTIONS(1042), + [sym__newline] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1042), + [anon_sym_PIPE] = ACTIONS(1042), + [anon_sym_err_GT_PIPE] = ACTIONS(1042), + [anon_sym_out_GT_PIPE] = ACTIONS(1042), + [anon_sym_e_GT_PIPE] = ACTIONS(1042), + [anon_sym_o_GT_PIPE] = ACTIONS(1042), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1042), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1042), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1042), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1042), + [anon_sym_LBRACK] = ACTIONS(1042), + [anon_sym_LPAREN] = ACTIONS(1042), + [anon_sym_RPAREN] = ACTIONS(1042), + [anon_sym_DOLLAR] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1040), + [aux_sym_ctrl_match_token1] = ACTIONS(1042), + [anon_sym_RBRACE] = ACTIONS(1042), + [anon_sym_DOT_DOT] = ACTIONS(1040), + [anon_sym_QMARK2] = ACTIONS(1042), + [anon_sym_DOT_DOT2] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1040), + [anon_sym_DOT_DOT_LT] = ACTIONS(1040), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1042), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1042), + [aux_sym__val_number_decimal_token1] = ACTIONS(1040), + [aux_sym__val_number_decimal_token2] = ACTIONS(1042), + [aux_sym__val_number_decimal_token3] = ACTIONS(1042), + [aux_sym__val_number_decimal_token4] = ACTIONS(1042), + [aux_sym__val_number_token1] = ACTIONS(1042), + [aux_sym__val_number_token2] = ACTIONS(1042), + [aux_sym__val_number_token3] = ACTIONS(1042), + [anon_sym_0b] = ACTIONS(1040), + [anon_sym_0o] = ACTIONS(1040), + [anon_sym_0x] = ACTIONS(1040), + [sym_val_date] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1042), + [sym__str_single_quotes] = ACTIONS(1042), + [sym__str_back_ticks] = ACTIONS(1042), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1042), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1042), + [anon_sym_err_GT] = ACTIONS(1040), + [anon_sym_out_GT] = ACTIONS(1040), + [anon_sym_e_GT] = ACTIONS(1040), + [anon_sym_o_GT] = ACTIONS(1040), + [anon_sym_err_PLUSout_GT] = ACTIONS(1040), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1040), + [anon_sym_o_PLUSe_GT] = ACTIONS(1040), + [anon_sym_e_PLUSo_GT] = ACTIONS(1040), + [anon_sym_err_GT_GT] = ACTIONS(1042), + [anon_sym_out_GT_GT] = ACTIONS(1042), + [anon_sym_e_GT_GT] = ACTIONS(1042), + [anon_sym_o_GT_GT] = ACTIONS(1042), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1042), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1042), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1042), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1042), + [aux_sym_unquoted_token1] = ACTIONS(1040), [anon_sym_POUND] = ACTIONS(247), }, [1223] = { - [sym_match_arm] = STATE(3233), - [sym_default_arm] = STATE(7300), - [sym_match_pattern] = STATE(8003), - [sym__match_pattern] = STATE(6318), - [sym__match_pattern_expression] = STATE(7519), - [sym__match_pattern_value] = STATE(6950), - [sym__match_pattern_list] = STATE(6957), - [sym__match_pattern_record] = STATE(6958), - [sym_expr_parenthesized] = STATE(6007), - [sym_val_range] = STATE(6950), - [sym__val_range] = STATE(8000), - [sym_val_nothing] = STATE(6978), - [sym_val_bool] = STATE(6785), - [sym_val_variable] = STATE(6011), - [sym_val_number] = STATE(6978), - [sym__val_number_decimal] = STATE(5584), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(6978), - [sym_val_filesize] = STATE(6978), - [sym_val_binary] = STATE(6978), - [sym_val_string] = STATE(6978), - [sym__str_double_quotes] = STATE(1851), - [sym_val_table] = STATE(6978), - [sym_unquoted] = STATE(7006), - [sym__unquoted_anonymous_prefix] = STATE(7741), [sym_comment] = STATE(1223), - [aux_sym_shebang_repeat1] = STATE(1245), - [aux_sym_ctrl_match_repeat1] = STATE(1224), - [anon_sym_true] = ACTIONS(3633), - [anon_sym_false] = ACTIONS(3633), - [anon_sym_null] = ACTIONS(3635), - [aux_sym_cmd_identifier_token38] = ACTIONS(3637), - [aux_sym_cmd_identifier_token39] = ACTIONS(3637), - [aux_sym_cmd_identifier_token40] = ACTIONS(3637), - [sym__newline] = ACTIONS(3639), - [anon_sym_LBRACK] = ACTIONS(3641), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_DOLLAR] = ACTIONS(3645), - [aux_sym_ctrl_match_token1] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(3745), - [anon_sym__] = ACTIONS(3651), - [anon_sym_DOT_DOT] = ACTIONS(3653), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3655), - [anon_sym_DOT_DOT_LT] = ACTIONS(3655), - [aux_sym__val_number_decimal_token1] = ACTIONS(3657), - [aux_sym__val_number_decimal_token2] = ACTIONS(3659), - [aux_sym__val_number_decimal_token3] = ACTIONS(3661), - [aux_sym__val_number_decimal_token4] = ACTIONS(3663), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3665), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [aux_sym_cmd_identifier_token38] = ACTIONS(1645), + [aux_sym_cmd_identifier_token39] = ACTIONS(1645), + [aux_sym_cmd_identifier_token40] = ACTIONS(1645), + [sym__newline] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_err_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_GT_PIPE] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), + [anon_sym_LBRACK] = ACTIONS(1645), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_RPAREN] = ACTIONS(1645), + [anon_sym_DOLLAR] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_DASH] = ACTIONS(1643), + [aux_sym_ctrl_match_token1] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(1645), + [anon_sym_DOT_DOT] = ACTIONS(1643), + [anon_sym_LPAREN2] = ACTIONS(1645), + [anon_sym_DOT_DOT2] = ACTIONS(1643), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), + [anon_sym_DOT_DOT_LT] = ACTIONS(1643), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1645), + [aux_sym__val_number_decimal_token3] = ACTIONS(1645), + [aux_sym__val_number_decimal_token4] = ACTIONS(1645), + [aux_sym__val_number_token1] = ACTIONS(1645), + [aux_sym__val_number_token2] = ACTIONS(1645), + [aux_sym__val_number_token3] = ACTIONS(1645), + [anon_sym_0b] = ACTIONS(1643), + [anon_sym_0o] = ACTIONS(1643), + [anon_sym_0x] = ACTIONS(1643), + [sym_val_date] = ACTIONS(1645), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym__str_single_quotes] = ACTIONS(1645), + [sym__str_back_ticks] = ACTIONS(1645), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1645), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1645), + [anon_sym_err_GT] = ACTIONS(1643), + [anon_sym_out_GT] = ACTIONS(1643), + [anon_sym_e_GT] = ACTIONS(1643), + [anon_sym_o_GT] = ACTIONS(1643), + [anon_sym_err_PLUSout_GT] = ACTIONS(1643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), + [anon_sym_o_PLUSe_GT] = ACTIONS(1643), + [anon_sym_e_PLUSo_GT] = ACTIONS(1643), + [anon_sym_err_GT_GT] = ACTIONS(1645), + [anon_sym_out_GT_GT] = ACTIONS(1645), + [anon_sym_e_GT_GT] = ACTIONS(1645), + [anon_sym_o_GT_GT] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [aux_sym_unquoted_token1] = ACTIONS(1643), + [aux_sym_unquoted_token2] = ACTIONS(1643), [anon_sym_POUND] = ACTIONS(247), }, [1224] = { - [sym_match_arm] = STATE(3233), - [sym_match_pattern] = STATE(8003), - [sym__match_pattern] = STATE(6318), - [sym__match_pattern_expression] = STATE(7519), - [sym__match_pattern_value] = STATE(6950), - [sym__match_pattern_list] = STATE(6957), - [sym__match_pattern_record] = STATE(6958), - [sym_expr_parenthesized] = STATE(6007), - [sym_val_range] = STATE(6950), - [sym__val_range] = STATE(8000), - [sym_val_nothing] = STATE(6978), - [sym_val_bool] = STATE(6785), - [sym_val_variable] = STATE(6011), - [sym_val_number] = STATE(6978), - [sym__val_number_decimal] = STATE(5584), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(6978), - [sym_val_filesize] = STATE(6978), - [sym_val_binary] = STATE(6978), - [sym_val_string] = STATE(6978), - [sym__str_double_quotes] = STATE(1851), - [sym_val_table] = STATE(6978), - [sym_unquoted] = STATE(7006), - [sym__unquoted_anonymous_prefix] = STATE(7741), [sym_comment] = STATE(1224), - [aux_sym_shebang_repeat1] = STATE(1252), - [aux_sym_ctrl_match_repeat1] = STATE(1224), - [anon_sym_true] = ACTIONS(3747), - [anon_sym_false] = ACTIONS(3747), - [anon_sym_null] = ACTIONS(3750), - [aux_sym_cmd_identifier_token38] = ACTIONS(3753), - [aux_sym_cmd_identifier_token39] = ACTIONS(3753), - [aux_sym_cmd_identifier_token40] = ACTIONS(3753), - [sym__newline] = ACTIONS(3756), - [anon_sym_LBRACK] = ACTIONS(3759), - [anon_sym_LPAREN] = ACTIONS(3762), - [anon_sym_DOLLAR] = ACTIONS(3765), - [aux_sym_ctrl_match_token1] = ACTIONS(3768), - [anon_sym_RBRACE] = ACTIONS(3771), - [anon_sym__] = ACTIONS(3773), - [anon_sym_DOT_DOT] = ACTIONS(3776), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3779), - [anon_sym_DOT_DOT_LT] = ACTIONS(3779), - [aux_sym__val_number_decimal_token1] = ACTIONS(3782), - [aux_sym__val_number_decimal_token2] = ACTIONS(3785), - [aux_sym__val_number_decimal_token3] = ACTIONS(3788), - [aux_sym__val_number_decimal_token4] = ACTIONS(3791), - [aux_sym__val_number_token1] = ACTIONS(3794), - [aux_sym__val_number_token2] = ACTIONS(3794), - [aux_sym__val_number_token3] = ACTIONS(3794), - [anon_sym_0b] = ACTIONS(3797), - [anon_sym_0o] = ACTIONS(3800), - [anon_sym_0x] = ACTIONS(3800), - [sym_val_date] = ACTIONS(3803), - [anon_sym_DQUOTE] = ACTIONS(3806), - [sym__str_single_quotes] = ACTIONS(3809), - [sym__str_back_ticks] = ACTIONS(3809), - [anon_sym_err_GT] = ACTIONS(3812), - [anon_sym_out_GT] = ACTIONS(3812), - [anon_sym_e_GT] = ACTIONS(3812), - [anon_sym_o_GT] = ACTIONS(3812), - [anon_sym_err_PLUSout_GT] = ACTIONS(3812), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3812), - [anon_sym_o_PLUSe_GT] = ACTIONS(3812), - [anon_sym_e_PLUSo_GT] = ACTIONS(3812), - [anon_sym_err_GT_GT] = ACTIONS(3815), - [anon_sym_out_GT_GT] = ACTIONS(3815), - [anon_sym_e_GT_GT] = ACTIONS(3815), - [anon_sym_o_GT_GT] = ACTIONS(3815), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3815), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3815), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3815), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3815), - [aux_sym_unquoted_token1] = ACTIONS(3818), + [anon_sym_EQ] = ACTIONS(1064), + [anon_sym_PLUS_EQ] = ACTIONS(1066), + [anon_sym_DASH_EQ] = ACTIONS(1066), + [anon_sym_STAR_EQ] = ACTIONS(1066), + [anon_sym_SLASH_EQ] = ACTIONS(1066), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1066), + [sym__newline] = ACTIONS(1064), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1066), + [anon_sym_err_GT_PIPE] = ACTIONS(1066), + [anon_sym_out_GT_PIPE] = ACTIONS(1066), + [anon_sym_e_GT_PIPE] = ACTIONS(1066), + [anon_sym_o_GT_PIPE] = ACTIONS(1066), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1066), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1066), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1066), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1066), + [anon_sym_RPAREN] = ACTIONS(1066), + [aux_sym_ctrl_match_token1] = ACTIONS(1066), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1066), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1066), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1066), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1066), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1066), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1066), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1066), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1066), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1066), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1066), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1066), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1066), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1066), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1066), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1066), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1066), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1066), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1066), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1066), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1066), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1066), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1066), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1066), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1066), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1066), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1066), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1066), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1066), + [anon_sym_DOT_DOT2] = ACTIONS(1064), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1066), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1066), + [anon_sym_err_GT] = ACTIONS(1064), + [anon_sym_out_GT] = ACTIONS(1064), + [anon_sym_e_GT] = ACTIONS(1064), + [anon_sym_o_GT] = ACTIONS(1064), + [anon_sym_err_PLUSout_GT] = ACTIONS(1064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1064), + [anon_sym_o_PLUSe_GT] = ACTIONS(1064), + [anon_sym_e_PLUSo_GT] = ACTIONS(1064), + [anon_sym_err_GT_GT] = ACTIONS(1066), + [anon_sym_out_GT_GT] = ACTIONS(1066), + [anon_sym_e_GT_GT] = ACTIONS(1066), + [anon_sym_o_GT_GT] = ACTIONS(1066), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1066), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1066), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1066), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1066), [anon_sym_POUND] = ACTIONS(247), }, [1225] = { - [sym_expr_parenthesized] = STATE(6273), - [sym_val_range] = STATE(566), - [sym__val_range] = STATE(7803), - [sym__val_range_with_end] = STATE(7592), - [sym__value] = STATE(566), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6463), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5530), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(517), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_record] = STATE(457), - [sym__unquoted_in_record_with_expr] = STATE(566), - [sym__unquoted_anonymous_prefix] = STATE(7315), [sym_comment] = STATE(1225), - [anon_sym_true] = ACTIONS(3821), - [anon_sym_false] = ACTIONS(3821), - [anon_sym_null] = ACTIONS(3823), - [aux_sym_cmd_identifier_token38] = ACTIONS(3825), - [aux_sym_cmd_identifier_token39] = ACTIONS(3825), - [aux_sym_cmd_identifier_token40] = ACTIONS(3825), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(3827), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3829), - [anon_sym_DOT_DOT_LT] = ACTIONS(3829), - [aux_sym__val_number_decimal_token1] = ACTIONS(3831), - [aux_sym__val_number_decimal_token2] = ACTIONS(3833), - [aux_sym__val_number_decimal_token3] = ACTIONS(3835), - [aux_sym__val_number_decimal_token4] = ACTIONS(3837), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(3839), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_err_GT] = ACTIONS(3841), - [anon_sym_out_GT] = ACTIONS(3841), - [anon_sym_e_GT] = ACTIONS(3841), - [anon_sym_o_GT] = ACTIONS(3841), - [anon_sym_err_PLUSout_GT] = ACTIONS(3841), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3841), - [anon_sym_o_PLUSe_GT] = ACTIONS(3841), - [anon_sym_e_PLUSo_GT] = ACTIONS(3841), - [anon_sym_err_GT_GT] = ACTIONS(3843), - [anon_sym_out_GT_GT] = ACTIONS(3843), - [anon_sym_e_GT_GT] = ACTIONS(3843), - [anon_sym_o_GT_GT] = ACTIONS(3843), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3843), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3843), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3843), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3843), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3845), + [anon_sym_EQ] = ACTIONS(1064), + [anon_sym_PLUS_EQ] = ACTIONS(1066), + [anon_sym_DASH_EQ] = ACTIONS(1066), + [anon_sym_STAR_EQ] = ACTIONS(1066), + [anon_sym_SLASH_EQ] = ACTIONS(1066), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1066), + [sym__newline] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1066), + [anon_sym_err_GT_PIPE] = ACTIONS(1066), + [anon_sym_out_GT_PIPE] = ACTIONS(1066), + [anon_sym_e_GT_PIPE] = ACTIONS(1066), + [anon_sym_o_GT_PIPE] = ACTIONS(1066), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1066), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1066), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1066), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1066), + [anon_sym_RPAREN] = ACTIONS(1066), + [anon_sym_RBRACE] = ACTIONS(1066), + [aux_sym_expr_binary_token1] = ACTIONS(1066), + [aux_sym_expr_binary_token2] = ACTIONS(1066), + [aux_sym_expr_binary_token3] = ACTIONS(1066), + [aux_sym_expr_binary_token4] = ACTIONS(1066), + [aux_sym_expr_binary_token5] = ACTIONS(1066), + [aux_sym_expr_binary_token6] = ACTIONS(1066), + [aux_sym_expr_binary_token7] = ACTIONS(1066), + [aux_sym_expr_binary_token8] = ACTIONS(1066), + [aux_sym_expr_binary_token9] = ACTIONS(1066), + [aux_sym_expr_binary_token10] = ACTIONS(1066), + [aux_sym_expr_binary_token11] = ACTIONS(1066), + [aux_sym_expr_binary_token12] = ACTIONS(1066), + [aux_sym_expr_binary_token13] = ACTIONS(1066), + [aux_sym_expr_binary_token14] = ACTIONS(1066), + [aux_sym_expr_binary_token15] = ACTIONS(1066), + [aux_sym_expr_binary_token16] = ACTIONS(1066), + [aux_sym_expr_binary_token17] = ACTIONS(1066), + [aux_sym_expr_binary_token18] = ACTIONS(1066), + [aux_sym_expr_binary_token19] = ACTIONS(1066), + [aux_sym_expr_binary_token20] = ACTIONS(1066), + [aux_sym_expr_binary_token21] = ACTIONS(1066), + [aux_sym_expr_binary_token22] = ACTIONS(1066), + [aux_sym_expr_binary_token23] = ACTIONS(1066), + [aux_sym_expr_binary_token24] = ACTIONS(1066), + [aux_sym_expr_binary_token25] = ACTIONS(1066), + [aux_sym_expr_binary_token26] = ACTIONS(1066), + [aux_sym_expr_binary_token27] = ACTIONS(1066), + [aux_sym_expr_binary_token28] = ACTIONS(1066), + [anon_sym_DOT_DOT2] = ACTIONS(1064), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1066), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1066), + [anon_sym_err_GT] = ACTIONS(1064), + [anon_sym_out_GT] = ACTIONS(1064), + [anon_sym_e_GT] = ACTIONS(1064), + [anon_sym_o_GT] = ACTIONS(1064), + [anon_sym_err_PLUSout_GT] = ACTIONS(1064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1064), + [anon_sym_o_PLUSe_GT] = ACTIONS(1064), + [anon_sym_e_PLUSo_GT] = ACTIONS(1064), + [anon_sym_err_GT_GT] = ACTIONS(1066), + [anon_sym_out_GT_GT] = ACTIONS(1066), + [anon_sym_e_GT_GT] = ACTIONS(1066), + [anon_sym_o_GT_GT] = ACTIONS(1066), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1066), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1066), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1066), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1066), [anon_sym_POUND] = ACTIONS(247), }, [1226] = { - [sym_expr_parenthesized] = STATE(448), - [sym_val_range] = STATE(647), - [sym__val_range] = STATE(7891), - [sym__val_range_with_end] = STATE(7596), - [sym__value] = STATE(647), - [sym_val_nothing] = STATE(666), - [sym_val_bool] = STATE(473), - [sym_val_variable] = STATE(440), - [sym_val_number] = STATE(666), - [sym__val_number_decimal] = STATE(209), - [sym__val_number] = STATE(611), - [sym_val_duration] = STATE(666), - [sym_val_filesize] = STATE(666), - [sym_val_binary] = STATE(666), - [sym_val_string] = STATE(666), - [sym__str_double_quotes] = STATE(662), - [sym_val_interpolated] = STATE(666), - [sym__inter_single_quotes] = STATE(627), - [sym__inter_double_quotes] = STATE(628), - [sym_val_list] = STATE(666), - [sym_val_record] = STATE(666), - [sym_val_table] = STATE(666), - [sym_val_closure] = STATE(666), - [sym__unquoted_in_record] = STATE(471), - [sym__unquoted_in_record_with_expr] = STATE(647), - [sym__unquoted_anonymous_prefix] = STATE(7018), [sym_comment] = STATE(1226), - [anon_sym_true] = ACTIONS(3847), - [anon_sym_false] = ACTIONS(3847), - [anon_sym_null] = ACTIONS(3849), - [aux_sym_cmd_identifier_token38] = ACTIONS(3851), - [aux_sym_cmd_identifier_token39] = ACTIONS(3851), - [aux_sym_cmd_identifier_token40] = ACTIONS(3851), - [anon_sym_LBRACK] = ACTIONS(3853), - [anon_sym_LPAREN] = ACTIONS(3855), - [anon_sym_DOLLAR] = ACTIONS(3857), - [aux_sym_ctrl_match_token1] = ACTIONS(3859), - [anon_sym_DOT_DOT] = ACTIONS(3861), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3863), - [anon_sym_DOT_DOT_LT] = ACTIONS(3863), - [aux_sym__val_number_decimal_token1] = ACTIONS(3865), - [aux_sym__val_number_decimal_token2] = ACTIONS(3867), - [aux_sym__val_number_decimal_token3] = ACTIONS(3869), - [aux_sym__val_number_decimal_token4] = ACTIONS(3871), - [aux_sym__val_number_token1] = ACTIONS(3873), - [aux_sym__val_number_token2] = ACTIONS(3873), - [aux_sym__val_number_token3] = ACTIONS(3873), - [anon_sym_0b] = ACTIONS(3875), - [anon_sym_0o] = ACTIONS(3877), - [anon_sym_0x] = ACTIONS(3877), - [sym_val_date] = ACTIONS(3879), - [anon_sym_DQUOTE] = ACTIONS(3881), - [sym__str_single_quotes] = ACTIONS(3883), - [sym__str_back_ticks] = ACTIONS(3883), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3885), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3887), - [anon_sym_err_GT] = ACTIONS(3841), - [anon_sym_out_GT] = ACTIONS(3841), - [anon_sym_e_GT] = ACTIONS(3841), - [anon_sym_o_GT] = ACTIONS(3841), - [anon_sym_err_PLUSout_GT] = ACTIONS(3841), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3841), - [anon_sym_o_PLUSe_GT] = ACTIONS(3841), - [anon_sym_e_PLUSo_GT] = ACTIONS(3841), - [anon_sym_err_GT_GT] = ACTIONS(3843), - [anon_sym_out_GT_GT] = ACTIONS(3843), - [anon_sym_e_GT_GT] = ACTIONS(3843), - [anon_sym_o_GT_GT] = ACTIONS(3843), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3843), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3843), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3843), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3843), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3889), + [aux_sym_cmd_identifier_token41] = ACTIONS(1497), + [sym__newline] = ACTIONS(1497), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_EQ_GT] = ACTIONS(1499), + [aux_sym_expr_binary_token1] = ACTIONS(1499), + [aux_sym_expr_binary_token2] = ACTIONS(1499), + [aux_sym_expr_binary_token3] = ACTIONS(1499), + [aux_sym_expr_binary_token4] = ACTIONS(1499), + [aux_sym_expr_binary_token5] = ACTIONS(1499), + [aux_sym_expr_binary_token6] = ACTIONS(1499), + [aux_sym_expr_binary_token7] = ACTIONS(1499), + [aux_sym_expr_binary_token8] = ACTIONS(1499), + [aux_sym_expr_binary_token9] = ACTIONS(1499), + [aux_sym_expr_binary_token10] = ACTIONS(1499), + [aux_sym_expr_binary_token11] = ACTIONS(1499), + [aux_sym_expr_binary_token12] = ACTIONS(1499), + [aux_sym_expr_binary_token13] = ACTIONS(1499), + [aux_sym_expr_binary_token14] = ACTIONS(1499), + [aux_sym_expr_binary_token15] = ACTIONS(1499), + [aux_sym_expr_binary_token16] = ACTIONS(1499), + [aux_sym_expr_binary_token17] = ACTIONS(1499), + [aux_sym_expr_binary_token18] = ACTIONS(1499), + [aux_sym_expr_binary_token19] = ACTIONS(1499), + [aux_sym_expr_binary_token20] = ACTIONS(1499), + [aux_sym_expr_binary_token21] = ACTIONS(1499), + [aux_sym_expr_binary_token22] = ACTIONS(1499), + [aux_sym_expr_binary_token23] = ACTIONS(1499), + [aux_sym_expr_binary_token24] = ACTIONS(1499), + [aux_sym_expr_binary_token25] = ACTIONS(1499), + [aux_sym_expr_binary_token26] = ACTIONS(1499), + [aux_sym_expr_binary_token27] = ACTIONS(1499), + [aux_sym_expr_binary_token28] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1497), + [anon_sym_DOT] = ACTIONS(4545), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), + [aux_sym__immediate_decimal_token2] = ACTIONS(4547), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1499), + [aux_sym_record_entry_token1] = ACTIONS(1499), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(247), }, [1227] = { + [sym_path] = STATE(1341), [sym_comment] = STATE(1227), - [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1232), - [aux_sym_cmd_identifier_token1] = ACTIONS(3891), - [aux_sym_cmd_identifier_token2] = ACTIONS(3891), - [aux_sym_cmd_identifier_token3] = ACTIONS(3891), - [aux_sym_cmd_identifier_token4] = ACTIONS(3891), - [aux_sym_cmd_identifier_token5] = ACTIONS(3891), - [aux_sym_cmd_identifier_token6] = ACTIONS(3891), - [aux_sym_cmd_identifier_token7] = ACTIONS(3891), - [aux_sym_cmd_identifier_token8] = ACTIONS(3891), - [aux_sym_cmd_identifier_token9] = ACTIONS(3891), - [aux_sym_cmd_identifier_token10] = ACTIONS(3891), - [aux_sym_cmd_identifier_token11] = ACTIONS(3891), - [aux_sym_cmd_identifier_token12] = ACTIONS(3891), - [aux_sym_cmd_identifier_token13] = ACTIONS(3891), - [aux_sym_cmd_identifier_token14] = ACTIONS(3891), - [aux_sym_cmd_identifier_token15] = ACTIONS(3891), - [aux_sym_cmd_identifier_token16] = ACTIONS(3891), - [aux_sym_cmd_identifier_token17] = ACTIONS(3891), - [aux_sym_cmd_identifier_token18] = ACTIONS(3891), - [aux_sym_cmd_identifier_token19] = ACTIONS(3891), - [aux_sym_cmd_identifier_token20] = ACTIONS(3891), - [aux_sym_cmd_identifier_token21] = ACTIONS(3891), - [aux_sym_cmd_identifier_token22] = ACTIONS(3891), - [aux_sym_cmd_identifier_token23] = ACTIONS(3891), - [aux_sym_cmd_identifier_token24] = ACTIONS(3891), - [aux_sym_cmd_identifier_token25] = ACTIONS(3891), - [aux_sym_cmd_identifier_token26] = ACTIONS(3891), - [aux_sym_cmd_identifier_token27] = ACTIONS(3891), - [aux_sym_cmd_identifier_token28] = ACTIONS(3891), - [aux_sym_cmd_identifier_token29] = ACTIONS(3891), - [aux_sym_cmd_identifier_token30] = ACTIONS(3891), - [aux_sym_cmd_identifier_token31] = ACTIONS(3891), - [aux_sym_cmd_identifier_token32] = ACTIONS(3891), - [aux_sym_cmd_identifier_token33] = ACTIONS(3891), - [aux_sym_cmd_identifier_token34] = ACTIONS(3891), - [aux_sym_cmd_identifier_token35] = ACTIONS(3891), - [aux_sym_cmd_identifier_token36] = ACTIONS(3891), - [anon_sym_true] = ACTIONS(3891), - [anon_sym_false] = ACTIONS(3891), - [anon_sym_null] = ACTIONS(3891), - [aux_sym_cmd_identifier_token38] = ACTIONS(3891), - [aux_sym_cmd_identifier_token39] = ACTIONS(3891), - [aux_sym_cmd_identifier_token40] = ACTIONS(3891), - [sym__newline] = ACTIONS(3893), - [sym__space] = ACTIONS(3895), - [anon_sym_LBRACK] = ACTIONS(3891), - [anon_sym_LPAREN] = ACTIONS(3891), - [anon_sym_DOLLAR] = ACTIONS(3891), - [anon_sym_DASH] = ACTIONS(3891), - [aux_sym_ctrl_match_token1] = ACTIONS(3891), - [anon_sym_DOT_DOT] = ACTIONS(3891), - [aux_sym_expr_unary_token1] = ACTIONS(3891), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3891), - [anon_sym_DOT_DOT_LT] = ACTIONS(3891), - [aux_sym__val_number_decimal_token1] = ACTIONS(3891), - [aux_sym__val_number_decimal_token2] = ACTIONS(3891), - [aux_sym__val_number_decimal_token3] = ACTIONS(3891), - [aux_sym__val_number_decimal_token4] = ACTIONS(3891), - [aux_sym__val_number_token1] = ACTIONS(3891), - [aux_sym__val_number_token2] = ACTIONS(3891), - [aux_sym__val_number_token3] = ACTIONS(3891), - [anon_sym_0b] = ACTIONS(3891), - [anon_sym_0o] = ACTIONS(3891), - [anon_sym_0x] = ACTIONS(3891), - [sym_val_date] = ACTIONS(3891), - [anon_sym_DQUOTE] = ACTIONS(3891), - [sym__str_single_quotes] = ACTIONS(3891), - [sym__str_back_ticks] = ACTIONS(3891), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3891), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3891), - [aux_sym_env_var_token1] = ACTIONS(3891), - [anon_sym_CARET] = ACTIONS(3891), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1227), + [ts_builtin_sym_end] = ACTIONS(1023), + [anon_sym_true] = ACTIONS(1023), + [anon_sym_false] = ACTIONS(1023), + [anon_sym_null] = ACTIONS(1023), + [aux_sym_cmd_identifier_token38] = ACTIONS(1023), + [aux_sym_cmd_identifier_token39] = ACTIONS(1023), + [aux_sym_cmd_identifier_token40] = ACTIONS(1023), + [sym__newline] = ACTIONS(1023), + [anon_sym_SEMI] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(1023), + [anon_sym_err_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_GT_PIPE] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1023), + [anon_sym_DOLLAR] = ACTIONS(1021), + [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_DASH] = ACTIONS(1021), + [aux_sym_ctrl_match_token1] = ACTIONS(1023), + [anon_sym_DOT_DOT] = ACTIONS(1021), + [anon_sym_DOT_DOT2] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(4549), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1021), + [anon_sym_DOT_DOT_LT] = ACTIONS(1021), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), + [aux_sym__val_number_decimal_token1] = ACTIONS(1021), + [aux_sym__val_number_decimal_token2] = ACTIONS(1023), + [aux_sym__val_number_decimal_token3] = ACTIONS(1023), + [aux_sym__val_number_decimal_token4] = ACTIONS(1023), + [aux_sym__val_number_token1] = ACTIONS(1023), + [aux_sym__val_number_token2] = ACTIONS(1023), + [aux_sym__val_number_token3] = ACTIONS(1023), + [anon_sym_0b] = ACTIONS(1021), + [anon_sym_0o] = ACTIONS(1021), + [anon_sym_0x] = ACTIONS(1021), + [sym_val_date] = ACTIONS(1023), + [anon_sym_DQUOTE] = ACTIONS(1023), + [sym__str_single_quotes] = ACTIONS(1023), + [sym__str_back_ticks] = ACTIONS(1023), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1023), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1023), + [anon_sym_err_GT] = ACTIONS(1021), + [anon_sym_out_GT] = ACTIONS(1021), + [anon_sym_e_GT] = ACTIONS(1021), + [anon_sym_o_GT] = ACTIONS(1021), + [anon_sym_err_PLUSout_GT] = ACTIONS(1021), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), + [anon_sym_o_PLUSe_GT] = ACTIONS(1021), + [anon_sym_e_PLUSo_GT] = ACTIONS(1021), + [anon_sym_err_GT_GT] = ACTIONS(1023), + [anon_sym_out_GT_GT] = ACTIONS(1023), + [anon_sym_e_GT_GT] = ACTIONS(1023), + [anon_sym_o_GT_GT] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), + [aux_sym_unquoted_token1] = ACTIONS(1021), + [anon_sym_POUND] = ACTIONS(247), }, [1228] = { - [sym_expr_parenthesized] = STATE(6249), - [sym_val_range] = STATE(568), - [sym__val_range] = STATE(7803), - [sym__val_range_with_end] = STATE(7592), - [sym__value] = STATE(568), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(6463), - [sym_val_variable] = STATE(6175), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(5530), - [sym__val_number] = STATE(3131), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(5801), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(517), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_record] = STATE(458), - [sym__unquoted_in_record_with_expr] = STATE(568), - [sym__unquoted_anonymous_prefix] = STATE(7315), [sym_comment] = STATE(1228), - [anon_sym_true] = ACTIONS(3821), - [anon_sym_false] = ACTIONS(3821), - [anon_sym_null] = ACTIONS(3823), - [aux_sym_cmd_identifier_token38] = ACTIONS(3825), - [aux_sym_cmd_identifier_token39] = ACTIONS(3825), - [aux_sym_cmd_identifier_token40] = ACTIONS(3825), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_DOLLAR] = ACTIONS(2921), - [aux_sym_ctrl_match_token1] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(3827), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3829), - [anon_sym_DOT_DOT_LT] = ACTIONS(3829), - [aux_sym__val_number_decimal_token1] = ACTIONS(3831), - [aux_sym__val_number_decimal_token2] = ACTIONS(3833), - [aux_sym__val_number_decimal_token3] = ACTIONS(3835), - [aux_sym__val_number_decimal_token4] = ACTIONS(3837), - [aux_sym__val_number_token1] = ACTIONS(2762), - [aux_sym__val_number_token2] = ACTIONS(2762), - [aux_sym__val_number_token3] = ACTIONS(2762), - [anon_sym_0b] = ACTIONS(2764), - [anon_sym_0o] = ACTIONS(2766), - [anon_sym_0x] = ACTIONS(2766), - [sym_val_date] = ACTIONS(3839), - [anon_sym_DQUOTE] = ACTIONS(2939), - [sym__str_single_quotes] = ACTIONS(2941), - [sym__str_back_ticks] = ACTIONS(2941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_err_GT] = ACTIONS(3841), - [anon_sym_out_GT] = ACTIONS(3841), - [anon_sym_e_GT] = ACTIONS(3841), - [anon_sym_o_GT] = ACTIONS(3841), - [anon_sym_err_PLUSout_GT] = ACTIONS(3841), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3841), - [anon_sym_o_PLUSe_GT] = ACTIONS(3841), - [anon_sym_e_PLUSo_GT] = ACTIONS(3841), - [anon_sym_err_GT_GT] = ACTIONS(3843), - [anon_sym_out_GT_GT] = ACTIONS(3843), - [anon_sym_e_GT_GT] = ACTIONS(3843), - [anon_sym_o_GT_GT] = ACTIONS(3843), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3843), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3843), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3843), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3843), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3845), + [ts_builtin_sym_end] = ACTIONS(1519), + [anon_sym_true] = ACTIONS(1519), + [anon_sym_false] = ACTIONS(1519), + [anon_sym_null] = ACTIONS(1519), + [aux_sym_cmd_identifier_token38] = ACTIONS(1519), + [aux_sym_cmd_identifier_token39] = ACTIONS(1519), + [aux_sym_cmd_identifier_token40] = ACTIONS(1519), + [sym__newline] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1519), + [anon_sym_err_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_GT_PIPE] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_DOLLAR] = ACTIONS(1517), + [anon_sym_DASH_DASH] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1517), + [aux_sym_ctrl_match_token1] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_DOT_DOT2] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1517), + [anon_sym_DOT_DOT_LT] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token1] = ACTIONS(1517), + [aux_sym__val_number_decimal_token2] = ACTIONS(1519), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1519), + [aux_sym__val_number_token1] = ACTIONS(1519), + [aux_sym__val_number_token2] = ACTIONS(1519), + [aux_sym__val_number_token3] = ACTIONS(1519), + [anon_sym_0b] = ACTIONS(1517), + [sym_filesize_unit] = ACTIONS(1519), + [sym_duration_unit] = ACTIONS(1519), + [anon_sym_0o] = ACTIONS(1517), + [anon_sym_0x] = ACTIONS(1517), + [sym_val_date] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1519), + [sym__str_single_quotes] = ACTIONS(1519), + [sym__str_back_ticks] = ACTIONS(1519), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1519), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1519), + [anon_sym_err_GT] = ACTIONS(1517), + [anon_sym_out_GT] = ACTIONS(1517), + [anon_sym_e_GT] = ACTIONS(1517), + [anon_sym_o_GT] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT] = ACTIONS(1517), + [anon_sym_err_GT_GT] = ACTIONS(1519), + [anon_sym_out_GT_GT] = ACTIONS(1519), + [anon_sym_e_GT_GT] = ACTIONS(1519), + [anon_sym_o_GT_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), + [aux_sym_unquoted_token1] = ACTIONS(1517), + [aux_sym_unquoted_token2] = ACTIONS(1517), [anon_sym_POUND] = ACTIONS(247), }, [1229] = { - [sym_expr_parenthesized] = STATE(380), - [sym_val_range] = STATE(566), - [sym__val_range] = STATE(7803), - [sym__val_range_with_end] = STATE(7592), - [sym__value] = STATE(566), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(427), - [sym_val_variable] = STATE(390), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(204), - [sym__val_number] = STATE(561), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(594), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(517), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_record] = STATE(457), - [sym__unquoted_in_record_with_expr] = STATE(566), - [sym__unquoted_anonymous_prefix] = STATE(7315), [sym_comment] = STATE(1229), - [anon_sym_true] = ACTIONS(3897), - [anon_sym_false] = ACTIONS(3897), - [anon_sym_null] = ACTIONS(3899), - [aux_sym_cmd_identifier_token38] = ACTIONS(3901), - [aux_sym_cmd_identifier_token39] = ACTIONS(3901), - [aux_sym_cmd_identifier_token40] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(3903), - [anon_sym_LPAREN] = ACTIONS(3905), - [anon_sym_DOLLAR] = ACTIONS(1415), - [aux_sym_ctrl_match_token1] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(3909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3911), - [anon_sym_DOT_DOT_LT] = ACTIONS(3911), - [aux_sym__val_number_decimal_token1] = ACTIONS(3913), - [aux_sym__val_number_decimal_token2] = ACTIONS(3915), - [aux_sym__val_number_decimal_token3] = ACTIONS(3917), - [aux_sym__val_number_decimal_token4] = ACTIONS(3919), - [aux_sym__val_number_token1] = ACTIONS(3921), - [aux_sym__val_number_token2] = ACTIONS(3921), - [aux_sym__val_number_token3] = ACTIONS(3921), - [anon_sym_0b] = ACTIONS(3923), - [anon_sym_0o] = ACTIONS(3925), - [anon_sym_0x] = ACTIONS(3925), - [sym_val_date] = ACTIONS(3927), - [anon_sym_DQUOTE] = ACTIONS(3929), - [sym__str_single_quotes] = ACTIONS(3931), - [sym__str_back_ticks] = ACTIONS(3931), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_err_GT] = ACTIONS(3841), - [anon_sym_out_GT] = ACTIONS(3841), - [anon_sym_e_GT] = ACTIONS(3841), - [anon_sym_o_GT] = ACTIONS(3841), - [anon_sym_err_PLUSout_GT] = ACTIONS(3841), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3841), - [anon_sym_o_PLUSe_GT] = ACTIONS(3841), - [anon_sym_e_PLUSo_GT] = ACTIONS(3841), - [anon_sym_err_GT_GT] = ACTIONS(3843), - [anon_sym_out_GT_GT] = ACTIONS(3843), - [anon_sym_e_GT_GT] = ACTIONS(3843), - [anon_sym_o_GT_GT] = ACTIONS(3843), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3843), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3843), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3843), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3843), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3845), + [anon_sym_EQ] = ACTIONS(1070), + [anon_sym_PLUS_EQ] = ACTIONS(1072), + [anon_sym_DASH_EQ] = ACTIONS(1072), + [anon_sym_STAR_EQ] = ACTIONS(1072), + [anon_sym_SLASH_EQ] = ACTIONS(1072), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1072), + [sym__newline] = ACTIONS(1076), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_err_GT_PIPE] = ACTIONS(1078), + [anon_sym_out_GT_PIPE] = ACTIONS(1078), + [anon_sym_e_GT_PIPE] = ACTIONS(1078), + [anon_sym_o_GT_PIPE] = ACTIONS(1078), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1078), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1078), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1078), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1078), + [aux_sym_expr_binary_token1] = ACTIONS(1078), + [aux_sym_expr_binary_token2] = ACTIONS(1078), + [aux_sym_expr_binary_token3] = ACTIONS(1078), + [aux_sym_expr_binary_token4] = ACTIONS(1078), + [aux_sym_expr_binary_token5] = ACTIONS(1078), + [aux_sym_expr_binary_token6] = ACTIONS(1078), + [aux_sym_expr_binary_token7] = ACTIONS(1078), + [aux_sym_expr_binary_token8] = ACTIONS(1078), + [aux_sym_expr_binary_token9] = ACTIONS(1078), + [aux_sym_expr_binary_token10] = ACTIONS(1078), + [aux_sym_expr_binary_token11] = ACTIONS(1078), + [aux_sym_expr_binary_token12] = ACTIONS(1078), + [aux_sym_expr_binary_token13] = ACTIONS(1078), + [aux_sym_expr_binary_token14] = ACTIONS(1078), + [aux_sym_expr_binary_token15] = ACTIONS(1078), + [aux_sym_expr_binary_token16] = ACTIONS(1078), + [aux_sym_expr_binary_token17] = ACTIONS(1078), + [aux_sym_expr_binary_token18] = ACTIONS(1078), + [aux_sym_expr_binary_token19] = ACTIONS(1078), + [aux_sym_expr_binary_token20] = ACTIONS(1078), + [aux_sym_expr_binary_token21] = ACTIONS(1078), + [aux_sym_expr_binary_token22] = ACTIONS(1078), + [aux_sym_expr_binary_token23] = ACTIONS(1078), + [aux_sym_expr_binary_token24] = ACTIONS(1078), + [aux_sym_expr_binary_token25] = ACTIONS(1078), + [aux_sym_expr_binary_token26] = ACTIONS(1078), + [aux_sym_expr_binary_token27] = ACTIONS(1078), + [aux_sym_expr_binary_token28] = ACTIONS(1078), + [anon_sym_DOT_DOT2] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1087), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1087), + [aux_sym_record_entry_token1] = ACTIONS(4552), + [anon_sym_err_GT] = ACTIONS(1076), + [anon_sym_out_GT] = ACTIONS(1076), + [anon_sym_e_GT] = ACTIONS(1076), + [anon_sym_o_GT] = ACTIONS(1076), + [anon_sym_err_PLUSout_GT] = ACTIONS(1076), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1076), + [anon_sym_o_PLUSe_GT] = ACTIONS(1076), + [anon_sym_e_PLUSo_GT] = ACTIONS(1076), + [anon_sym_err_GT_GT] = ACTIONS(1078), + [anon_sym_out_GT_GT] = ACTIONS(1078), + [anon_sym_e_GT_GT] = ACTIONS(1078), + [anon_sym_o_GT_GT] = ACTIONS(1078), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1078), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1078), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1078), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1078), [anon_sym_POUND] = ACTIONS(247), }, [1230] = { - [sym_expr_parenthesized] = STATE(354), - [sym_val_range] = STATE(568), - [sym__val_range] = STATE(7803), - [sym__val_range_with_end] = STATE(7592), - [sym__value] = STATE(568), - [sym_val_nothing] = STATE(517), - [sym_val_bool] = STATE(427), - [sym_val_variable] = STATE(390), - [sym_val_number] = STATE(517), - [sym__val_number_decimal] = STATE(204), - [sym__val_number] = STATE(561), - [sym_val_duration] = STATE(517), - [sym_val_filesize] = STATE(517), - [sym_val_binary] = STATE(517), - [sym_val_string] = STATE(517), - [sym__str_double_quotes] = STATE(594), - [sym_val_interpolated] = STATE(517), - [sym__inter_single_quotes] = STATE(519), - [sym__inter_double_quotes] = STATE(522), - [sym_val_list] = STATE(517), - [sym_val_record] = STATE(517), - [sym_val_table] = STATE(517), - [sym_val_closure] = STATE(517), - [sym__unquoted_in_record] = STATE(458), - [sym__unquoted_in_record_with_expr] = STATE(568), - [sym__unquoted_anonymous_prefix] = STATE(7315), [sym_comment] = STATE(1230), - [anon_sym_true] = ACTIONS(3897), - [anon_sym_false] = ACTIONS(3897), - [anon_sym_null] = ACTIONS(3899), - [aux_sym_cmd_identifier_token38] = ACTIONS(3901), - [aux_sym_cmd_identifier_token39] = ACTIONS(3901), - [aux_sym_cmd_identifier_token40] = ACTIONS(3901), - [anon_sym_LBRACK] = ACTIONS(3903), - [anon_sym_LPAREN] = ACTIONS(3905), - [anon_sym_DOLLAR] = ACTIONS(1415), - [aux_sym_ctrl_match_token1] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(3909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3911), - [anon_sym_DOT_DOT_LT] = ACTIONS(3911), - [aux_sym__val_number_decimal_token1] = ACTIONS(3913), - [aux_sym__val_number_decimal_token2] = ACTIONS(3915), - [aux_sym__val_number_decimal_token3] = ACTIONS(3917), - [aux_sym__val_number_decimal_token4] = ACTIONS(3919), - [aux_sym__val_number_token1] = ACTIONS(3921), - [aux_sym__val_number_token2] = ACTIONS(3921), - [aux_sym__val_number_token3] = ACTIONS(3921), - [anon_sym_0b] = ACTIONS(3923), - [anon_sym_0o] = ACTIONS(3925), - [anon_sym_0x] = ACTIONS(3925), - [sym_val_date] = ACTIONS(3927), - [anon_sym_DQUOTE] = ACTIONS(3929), - [sym__str_single_quotes] = ACTIONS(3931), - [sym__str_back_ticks] = ACTIONS(3931), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2774), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2776), - [anon_sym_err_GT] = ACTIONS(3841), - [anon_sym_out_GT] = ACTIONS(3841), - [anon_sym_e_GT] = ACTIONS(3841), - [anon_sym_o_GT] = ACTIONS(3841), - [anon_sym_err_PLUSout_GT] = ACTIONS(3841), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3841), - [anon_sym_o_PLUSe_GT] = ACTIONS(3841), - [anon_sym_e_PLUSo_GT] = ACTIONS(3841), - [anon_sym_err_GT_GT] = ACTIONS(3843), - [anon_sym_out_GT_GT] = ACTIONS(3843), - [anon_sym_e_GT_GT] = ACTIONS(3843), - [anon_sym_o_GT_GT] = ACTIONS(3843), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3843), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3843), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3843), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3843), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3845), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_RPAREN] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_LPAREN2] = ACTIONS(1499), + [aux_sym_expr_binary_token1] = ACTIONS(1499), + [aux_sym_expr_binary_token2] = ACTIONS(1499), + [aux_sym_expr_binary_token3] = ACTIONS(1499), + [aux_sym_expr_binary_token4] = ACTIONS(1499), + [aux_sym_expr_binary_token5] = ACTIONS(1499), + [aux_sym_expr_binary_token6] = ACTIONS(1499), + [aux_sym_expr_binary_token7] = ACTIONS(1499), + [aux_sym_expr_binary_token8] = ACTIONS(1499), + [aux_sym_expr_binary_token9] = ACTIONS(1499), + [aux_sym_expr_binary_token10] = ACTIONS(1499), + [aux_sym_expr_binary_token11] = ACTIONS(1499), + [aux_sym_expr_binary_token12] = ACTIONS(1499), + [aux_sym_expr_binary_token13] = ACTIONS(1499), + [aux_sym_expr_binary_token14] = ACTIONS(1499), + [aux_sym_expr_binary_token15] = ACTIONS(1499), + [aux_sym_expr_binary_token16] = ACTIONS(1499), + [aux_sym_expr_binary_token17] = ACTIONS(1499), + [aux_sym_expr_binary_token18] = ACTIONS(1499), + [aux_sym_expr_binary_token19] = ACTIONS(1499), + [aux_sym_expr_binary_token20] = ACTIONS(1499), + [aux_sym_expr_binary_token21] = ACTIONS(1499), + [aux_sym_expr_binary_token22] = ACTIONS(1499), + [aux_sym_expr_binary_token23] = ACTIONS(1499), + [aux_sym_expr_binary_token24] = ACTIONS(1499), + [aux_sym_expr_binary_token25] = ACTIONS(1499), + [aux_sym_expr_binary_token26] = ACTIONS(1499), + [aux_sym_expr_binary_token27] = ACTIONS(1499), + [aux_sym_expr_binary_token28] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1497), + [anon_sym_DOT] = ACTIONS(4554), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), + [aux_sym__immediate_decimal_token2] = ACTIONS(4556), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1499), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), + [aux_sym_unquoted_token2] = ACTIONS(1497), [anon_sym_POUND] = ACTIONS(247), }, [1231] = { - [sym_expr_parenthesized] = STATE(435), - [sym_val_range] = STATE(634), - [sym__val_range] = STATE(7891), - [sym__val_range_with_end] = STATE(7596), - [sym__value] = STATE(634), - [sym_val_nothing] = STATE(666), - [sym_val_bool] = STATE(473), - [sym_val_variable] = STATE(440), - [sym_val_number] = STATE(666), - [sym__val_number_decimal] = STATE(209), - [sym__val_number] = STATE(611), - [sym_val_duration] = STATE(666), - [sym_val_filesize] = STATE(666), - [sym_val_binary] = STATE(666), - [sym_val_string] = STATE(666), - [sym__str_double_quotes] = STATE(662), - [sym_val_interpolated] = STATE(666), - [sym__inter_single_quotes] = STATE(627), - [sym__inter_double_quotes] = STATE(628), - [sym_val_list] = STATE(666), - [sym_val_record] = STATE(666), - [sym_val_table] = STATE(666), - [sym_val_closure] = STATE(666), - [sym__unquoted_in_record] = STATE(506), - [sym__unquoted_in_record_with_expr] = STATE(634), - [sym__unquoted_anonymous_prefix] = STATE(7018), [sym_comment] = STATE(1231), - [anon_sym_true] = ACTIONS(3847), - [anon_sym_false] = ACTIONS(3847), - [anon_sym_null] = ACTIONS(3849), - [aux_sym_cmd_identifier_token38] = ACTIONS(3851), - [aux_sym_cmd_identifier_token39] = ACTIONS(3851), - [aux_sym_cmd_identifier_token40] = ACTIONS(3851), - [anon_sym_LBRACK] = ACTIONS(3853), - [anon_sym_LPAREN] = ACTIONS(3855), - [anon_sym_DOLLAR] = ACTIONS(3857), - [aux_sym_ctrl_match_token1] = ACTIONS(3859), - [anon_sym_DOT_DOT] = ACTIONS(3861), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3863), - [anon_sym_DOT_DOT_LT] = ACTIONS(3863), - [aux_sym__val_number_decimal_token1] = ACTIONS(3865), - [aux_sym__val_number_decimal_token2] = ACTIONS(3867), - [aux_sym__val_number_decimal_token3] = ACTIONS(3869), - [aux_sym__val_number_decimal_token4] = ACTIONS(3871), - [aux_sym__val_number_token1] = ACTIONS(3873), - [aux_sym__val_number_token2] = ACTIONS(3873), - [aux_sym__val_number_token3] = ACTIONS(3873), - [anon_sym_0b] = ACTIONS(3875), - [anon_sym_0o] = ACTIONS(3877), - [anon_sym_0x] = ACTIONS(3877), - [sym_val_date] = ACTIONS(3879), - [anon_sym_DQUOTE] = ACTIONS(3881), - [sym__str_single_quotes] = ACTIONS(3883), - [sym__str_back_ticks] = ACTIONS(3883), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3885), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3887), - [anon_sym_err_GT] = ACTIONS(3841), - [anon_sym_out_GT] = ACTIONS(3841), - [anon_sym_e_GT] = ACTIONS(3841), - [anon_sym_o_GT] = ACTIONS(3841), - [anon_sym_err_PLUSout_GT] = ACTIONS(3841), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3841), - [anon_sym_o_PLUSe_GT] = ACTIONS(3841), - [anon_sym_e_PLUSo_GT] = ACTIONS(3841), - [anon_sym_err_GT_GT] = ACTIONS(3843), - [anon_sym_out_GT_GT] = ACTIONS(3843), - [anon_sym_e_GT_GT] = ACTIONS(3843), - [anon_sym_o_GT_GT] = ACTIONS(3843), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3843), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3843), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3843), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3843), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3889), + [ts_builtin_sym_end] = ACTIONS(1567), + [anon_sym_true] = ACTIONS(1567), + [anon_sym_false] = ACTIONS(1567), + [anon_sym_null] = ACTIONS(1567), + [aux_sym_cmd_identifier_token38] = ACTIONS(1567), + [aux_sym_cmd_identifier_token39] = ACTIONS(1567), + [aux_sym_cmd_identifier_token40] = ACTIONS(1567), + [sym__newline] = ACTIONS(1567), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_err_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_GT_PIPE] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), + [anon_sym_LBRACK] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1567), + [anon_sym_DOLLAR] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1565), + [aux_sym_ctrl_match_token1] = ACTIONS(1567), + [anon_sym_DOT_DOT] = ACTIONS(1565), + [anon_sym_DOT_DOT2] = ACTIONS(1565), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1565), + [anon_sym_DOT_DOT_LT] = ACTIONS(1565), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), + [aux_sym__val_number_decimal_token1] = ACTIONS(1565), + [aux_sym__val_number_decimal_token2] = ACTIONS(1567), + [aux_sym__val_number_decimal_token3] = ACTIONS(1567), + [aux_sym__val_number_decimal_token4] = ACTIONS(1567), + [aux_sym__val_number_token1] = ACTIONS(1567), + [aux_sym__val_number_token2] = ACTIONS(1567), + [aux_sym__val_number_token3] = ACTIONS(1567), + [anon_sym_0b] = ACTIONS(1565), + [sym_filesize_unit] = ACTIONS(1567), + [sym_duration_unit] = ACTIONS(1567), + [anon_sym_0o] = ACTIONS(1565), + [anon_sym_0x] = ACTIONS(1565), + [sym_val_date] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(1567), + [sym__str_single_quotes] = ACTIONS(1567), + [sym__str_back_ticks] = ACTIONS(1567), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1567), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1567), + [anon_sym_err_GT] = ACTIONS(1565), + [anon_sym_out_GT] = ACTIONS(1565), + [anon_sym_e_GT] = ACTIONS(1565), + [anon_sym_o_GT] = ACTIONS(1565), + [anon_sym_err_PLUSout_GT] = ACTIONS(1565), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), + [anon_sym_o_PLUSe_GT] = ACTIONS(1565), + [anon_sym_e_PLUSo_GT] = ACTIONS(1565), + [anon_sym_err_GT_GT] = ACTIONS(1567), + [anon_sym_out_GT_GT] = ACTIONS(1567), + [anon_sym_e_GT_GT] = ACTIONS(1567), + [anon_sym_o_GT_GT] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), + [aux_sym_unquoted_token1] = ACTIONS(1565), + [aux_sym_unquoted_token2] = ACTIONS(1565), [anon_sym_POUND] = ACTIONS(247), }, [1232] = { [sym_comment] = STATE(1232), - [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1232), - [aux_sym_cmd_identifier_token1] = ACTIONS(3933), - [aux_sym_cmd_identifier_token2] = ACTIONS(3933), - [aux_sym_cmd_identifier_token3] = ACTIONS(3933), - [aux_sym_cmd_identifier_token4] = ACTIONS(3933), - [aux_sym_cmd_identifier_token5] = ACTIONS(3933), - [aux_sym_cmd_identifier_token6] = ACTIONS(3933), - [aux_sym_cmd_identifier_token7] = ACTIONS(3933), - [aux_sym_cmd_identifier_token8] = ACTIONS(3933), - [aux_sym_cmd_identifier_token9] = ACTIONS(3933), - [aux_sym_cmd_identifier_token10] = ACTIONS(3933), - [aux_sym_cmd_identifier_token11] = ACTIONS(3933), - [aux_sym_cmd_identifier_token12] = ACTIONS(3933), - [aux_sym_cmd_identifier_token13] = ACTIONS(3933), - [aux_sym_cmd_identifier_token14] = ACTIONS(3933), - [aux_sym_cmd_identifier_token15] = ACTIONS(3933), - [aux_sym_cmd_identifier_token16] = ACTIONS(3933), - [aux_sym_cmd_identifier_token17] = ACTIONS(3933), - [aux_sym_cmd_identifier_token18] = ACTIONS(3933), - [aux_sym_cmd_identifier_token19] = ACTIONS(3933), - [aux_sym_cmd_identifier_token20] = ACTIONS(3933), - [aux_sym_cmd_identifier_token21] = ACTIONS(3933), - [aux_sym_cmd_identifier_token22] = ACTIONS(3933), - [aux_sym_cmd_identifier_token23] = ACTIONS(3933), - [aux_sym_cmd_identifier_token24] = ACTIONS(3933), - [aux_sym_cmd_identifier_token25] = ACTIONS(3933), - [aux_sym_cmd_identifier_token26] = ACTIONS(3933), - [aux_sym_cmd_identifier_token27] = ACTIONS(3933), - [aux_sym_cmd_identifier_token28] = ACTIONS(3933), - [aux_sym_cmd_identifier_token29] = ACTIONS(3933), - [aux_sym_cmd_identifier_token30] = ACTIONS(3933), - [aux_sym_cmd_identifier_token31] = ACTIONS(3933), - [aux_sym_cmd_identifier_token32] = ACTIONS(3933), - [aux_sym_cmd_identifier_token33] = ACTIONS(3933), - [aux_sym_cmd_identifier_token34] = ACTIONS(3933), - [aux_sym_cmd_identifier_token35] = ACTIONS(3933), - [aux_sym_cmd_identifier_token36] = ACTIONS(3933), - [anon_sym_true] = ACTIONS(3933), - [anon_sym_false] = ACTIONS(3933), - [anon_sym_null] = ACTIONS(3933), - [aux_sym_cmd_identifier_token38] = ACTIONS(3933), - [aux_sym_cmd_identifier_token39] = ACTIONS(3933), - [aux_sym_cmd_identifier_token40] = ACTIONS(3933), - [sym__newline] = ACTIONS(3935), - [sym__space] = ACTIONS(3938), - [anon_sym_LBRACK] = ACTIONS(3933), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_DOLLAR] = ACTIONS(3933), - [anon_sym_DASH] = ACTIONS(3933), - [aux_sym_ctrl_match_token1] = ACTIONS(3933), - [anon_sym_DOT_DOT] = ACTIONS(3933), - [aux_sym_expr_unary_token1] = ACTIONS(3933), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3933), - [anon_sym_DOT_DOT_LT] = ACTIONS(3933), - [aux_sym__val_number_decimal_token1] = ACTIONS(3933), - [aux_sym__val_number_decimal_token2] = ACTIONS(3933), - [aux_sym__val_number_decimal_token3] = ACTIONS(3933), - [aux_sym__val_number_decimal_token4] = ACTIONS(3933), - [aux_sym__val_number_token1] = ACTIONS(3933), - [aux_sym__val_number_token2] = ACTIONS(3933), - [aux_sym__val_number_token3] = ACTIONS(3933), - [anon_sym_0b] = ACTIONS(3933), - [anon_sym_0o] = ACTIONS(3933), - [anon_sym_0x] = ACTIONS(3933), - [sym_val_date] = ACTIONS(3933), - [anon_sym_DQUOTE] = ACTIONS(3933), - [sym__str_single_quotes] = ACTIONS(3933), - [sym__str_back_ticks] = ACTIONS(3933), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3933), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3933), - [aux_sym_env_var_token1] = ACTIONS(3933), - [anon_sym_CARET] = ACTIONS(3933), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1641), + [anon_sym_true] = ACTIONS(1641), + [anon_sym_false] = ACTIONS(1641), + [anon_sym_null] = ACTIONS(1641), + [aux_sym_cmd_identifier_token38] = ACTIONS(1641), + [aux_sym_cmd_identifier_token39] = ACTIONS(1641), + [aux_sym_cmd_identifier_token40] = ACTIONS(1641), + [sym__newline] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(1641), + [anon_sym_PIPE] = ACTIONS(1641), + [anon_sym_err_GT_PIPE] = ACTIONS(1641), + [anon_sym_out_GT_PIPE] = ACTIONS(1641), + [anon_sym_e_GT_PIPE] = ACTIONS(1641), + [anon_sym_o_GT_PIPE] = ACTIONS(1641), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(1641), + [anon_sym_LPAREN] = ACTIONS(1641), + [anon_sym_DOLLAR] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1639), + [aux_sym_ctrl_match_token1] = ACTIONS(1641), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_DOT_DOT2] = ACTIONS(1639), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1639), + [anon_sym_DOT_DOT_LT] = ACTIONS(1639), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), + [aux_sym__val_number_decimal_token1] = ACTIONS(1639), + [aux_sym__val_number_decimal_token2] = ACTIONS(1641), + [aux_sym__val_number_decimal_token3] = ACTIONS(1641), + [aux_sym__val_number_decimal_token4] = ACTIONS(1641), + [aux_sym__val_number_token1] = ACTIONS(1641), + [aux_sym__val_number_token2] = ACTIONS(1641), + [aux_sym__val_number_token3] = ACTIONS(1641), + [anon_sym_0b] = ACTIONS(1639), + [sym_filesize_unit] = ACTIONS(1641), + [sym_duration_unit] = ACTIONS(1641), + [anon_sym_0o] = ACTIONS(1639), + [anon_sym_0x] = ACTIONS(1639), + [sym_val_date] = ACTIONS(1641), + [anon_sym_DQUOTE] = ACTIONS(1641), + [sym__str_single_quotes] = ACTIONS(1641), + [sym__str_back_ticks] = ACTIONS(1641), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1641), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1641), + [anon_sym_err_GT] = ACTIONS(1639), + [anon_sym_out_GT] = ACTIONS(1639), + [anon_sym_e_GT] = ACTIONS(1639), + [anon_sym_o_GT] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT] = ACTIONS(1639), + [anon_sym_err_GT_GT] = ACTIONS(1641), + [anon_sym_out_GT_GT] = ACTIONS(1641), + [anon_sym_e_GT_GT] = ACTIONS(1641), + [anon_sym_o_GT_GT] = ACTIONS(1641), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), + [aux_sym_unquoted_token1] = ACTIONS(1639), + [aux_sym_unquoted_token2] = ACTIONS(1639), + [anon_sym_POUND] = ACTIONS(247), }, [1233] = { - [sym_match_pattern] = STATE(7745), - [sym__match_pattern] = STATE(6318), - [sym__match_pattern_expression] = STATE(7519), - [sym__match_pattern_value] = STATE(6950), - [sym__match_pattern_list] = STATE(6957), - [sym__match_pattern_record] = STATE(6958), - [sym_expr_parenthesized] = STATE(6007), - [sym_val_range] = STATE(6950), - [sym__val_range] = STATE(8000), - [sym_val_nothing] = STATE(6978), - [sym_val_bool] = STATE(6785), - [sym_val_variable] = STATE(6011), - [sym_val_number] = STATE(6978), - [sym__val_number_decimal] = STATE(5584), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(6978), - [sym_val_filesize] = STATE(6978), - [sym_val_binary] = STATE(6978), - [sym_val_string] = STATE(6978), - [sym__str_double_quotes] = STATE(1851), - [sym_val_table] = STATE(6978), - [sym_unquoted] = STATE(7006), - [sym__unquoted_anonymous_prefix] = STATE(7741), [sym_comment] = STATE(1233), - [aux_sym_shebang_repeat1] = STATE(3108), - [anon_sym_true] = ACTIONS(3633), - [anon_sym_false] = ACTIONS(3633), - [anon_sym_null] = ACTIONS(3635), - [aux_sym_cmd_identifier_token38] = ACTIONS(3637), - [aux_sym_cmd_identifier_token39] = ACTIONS(3637), - [aux_sym_cmd_identifier_token40] = ACTIONS(3637), - [sym__newline] = ACTIONS(3639), - [anon_sym_LBRACK] = ACTIONS(3641), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_DOLLAR] = ACTIONS(3645), - [aux_sym_ctrl_match_token1] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(3941), - [anon_sym__] = ACTIONS(3943), - [anon_sym_DOT_DOT] = ACTIONS(3653), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3655), - [anon_sym_DOT_DOT_LT] = ACTIONS(3655), - [aux_sym__val_number_decimal_token1] = ACTIONS(3657), - [aux_sym__val_number_decimal_token2] = ACTIONS(3659), - [aux_sym__val_number_decimal_token3] = ACTIONS(3661), - [aux_sym__val_number_decimal_token4] = ACTIONS(3663), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3665), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(1046), + [anon_sym_false] = ACTIONS(1046), + [anon_sym_null] = ACTIONS(1046), + [aux_sym_cmd_identifier_token38] = ACTIONS(1046), + [aux_sym_cmd_identifier_token39] = ACTIONS(1046), + [aux_sym_cmd_identifier_token40] = ACTIONS(1046), + [sym__newline] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_err_GT_PIPE] = ACTIONS(1046), + [anon_sym_out_GT_PIPE] = ACTIONS(1046), + [anon_sym_e_GT_PIPE] = ACTIONS(1046), + [anon_sym_o_GT_PIPE] = ACTIONS(1046), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1046), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1046), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1046), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1046), + [anon_sym_LBRACK] = ACTIONS(1046), + [anon_sym_LPAREN] = ACTIONS(1046), + [anon_sym_RPAREN] = ACTIONS(1046), + [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_DASH_DASH] = ACTIONS(1046), + [anon_sym_DASH] = ACTIONS(1044), + [aux_sym_ctrl_match_token1] = ACTIONS(1046), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_DOT_DOT] = ACTIONS(1044), + [anon_sym_QMARK2] = ACTIONS(1046), + [anon_sym_DOT_DOT2] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1044), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1044), + [anon_sym_DOT_DOT_LT] = ACTIONS(1044), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1046), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1046), + [aux_sym__val_number_decimal_token1] = ACTIONS(1044), + [aux_sym__val_number_decimal_token2] = ACTIONS(1046), + [aux_sym__val_number_decimal_token3] = ACTIONS(1046), + [aux_sym__val_number_decimal_token4] = ACTIONS(1046), + [aux_sym__val_number_token1] = ACTIONS(1046), + [aux_sym__val_number_token2] = ACTIONS(1046), + [aux_sym__val_number_token3] = ACTIONS(1046), + [anon_sym_0b] = ACTIONS(1044), + [anon_sym_0o] = ACTIONS(1044), + [anon_sym_0x] = ACTIONS(1044), + [sym_val_date] = ACTIONS(1046), + [anon_sym_DQUOTE] = ACTIONS(1046), + [sym__str_single_quotes] = ACTIONS(1046), + [sym__str_back_ticks] = ACTIONS(1046), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1046), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1046), + [anon_sym_err_GT] = ACTIONS(1044), + [anon_sym_out_GT] = ACTIONS(1044), + [anon_sym_e_GT] = ACTIONS(1044), + [anon_sym_o_GT] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT] = ACTIONS(1044), + [anon_sym_err_GT_GT] = ACTIONS(1046), + [anon_sym_out_GT_GT] = ACTIONS(1046), + [anon_sym_e_GT_GT] = ACTIONS(1046), + [anon_sym_o_GT_GT] = ACTIONS(1046), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1046), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1046), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1046), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1046), + [aux_sym_unquoted_token1] = ACTIONS(1044), [anon_sym_POUND] = ACTIONS(247), }, [1234] = { - [sym_env_var] = STATE(7550), [sym_comment] = STATE(1234), - [aux_sym_pipe_element_repeat2] = STATE(1234), - [aux_sym_cmd_identifier_token1] = ACTIONS(3945), - [aux_sym_cmd_identifier_token2] = ACTIONS(3947), - [aux_sym_cmd_identifier_token3] = ACTIONS(3947), - [aux_sym_cmd_identifier_token4] = ACTIONS(3947), - [aux_sym_cmd_identifier_token5] = ACTIONS(3947), - [aux_sym_cmd_identifier_token6] = ACTIONS(3947), - [aux_sym_cmd_identifier_token7] = ACTIONS(3947), - [aux_sym_cmd_identifier_token8] = ACTIONS(3947), - [aux_sym_cmd_identifier_token9] = ACTIONS(3945), - [aux_sym_cmd_identifier_token10] = ACTIONS(3947), - [aux_sym_cmd_identifier_token11] = ACTIONS(3947), - [aux_sym_cmd_identifier_token12] = ACTIONS(3947), - [aux_sym_cmd_identifier_token13] = ACTIONS(3945), - [aux_sym_cmd_identifier_token14] = ACTIONS(3947), - [aux_sym_cmd_identifier_token15] = ACTIONS(3945), - [aux_sym_cmd_identifier_token16] = ACTIONS(3947), - [aux_sym_cmd_identifier_token17] = ACTIONS(3947), - [aux_sym_cmd_identifier_token18] = ACTIONS(3947), - [aux_sym_cmd_identifier_token19] = ACTIONS(3947), - [aux_sym_cmd_identifier_token20] = ACTIONS(3947), - [aux_sym_cmd_identifier_token21] = ACTIONS(3947), - [aux_sym_cmd_identifier_token22] = ACTIONS(3947), - [aux_sym_cmd_identifier_token23] = ACTIONS(3947), - [aux_sym_cmd_identifier_token24] = ACTIONS(3947), - [aux_sym_cmd_identifier_token25] = ACTIONS(3947), - [aux_sym_cmd_identifier_token26] = ACTIONS(3947), - [aux_sym_cmd_identifier_token27] = ACTIONS(3947), - [aux_sym_cmd_identifier_token28] = ACTIONS(3947), - [aux_sym_cmd_identifier_token29] = ACTIONS(3947), - [aux_sym_cmd_identifier_token30] = ACTIONS(3947), - [aux_sym_cmd_identifier_token31] = ACTIONS(3947), - [aux_sym_cmd_identifier_token32] = ACTIONS(3947), - [aux_sym_cmd_identifier_token33] = ACTIONS(3947), - [aux_sym_cmd_identifier_token34] = ACTIONS(3947), - [aux_sym_cmd_identifier_token35] = ACTIONS(3947), - [aux_sym_cmd_identifier_token36] = ACTIONS(3945), - [anon_sym_true] = ACTIONS(3947), - [anon_sym_false] = ACTIONS(3947), - [anon_sym_null] = ACTIONS(3947), - [aux_sym_cmd_identifier_token38] = ACTIONS(3945), - [aux_sym_cmd_identifier_token39] = ACTIONS(3947), - [aux_sym_cmd_identifier_token40] = ACTIONS(3947), - [anon_sym_LBRACK] = ACTIONS(3947), - [anon_sym_LPAREN] = ACTIONS(3947), - [anon_sym_DOLLAR] = ACTIONS(3945), - [anon_sym_DASH] = ACTIONS(3945), - [aux_sym_ctrl_match_token1] = ACTIONS(3947), - [anon_sym_DOT_DOT] = ACTIONS(3945), - [aux_sym_expr_unary_token1] = ACTIONS(3947), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3947), - [anon_sym_DOT_DOT_LT] = ACTIONS(3947), - [aux_sym__val_number_decimal_token1] = ACTIONS(3945), - [aux_sym__val_number_decimal_token2] = ACTIONS(3947), - [aux_sym__val_number_decimal_token3] = ACTIONS(3947), - [aux_sym__val_number_decimal_token4] = ACTIONS(3947), - [aux_sym__val_number_token1] = ACTIONS(3947), - [aux_sym__val_number_token2] = ACTIONS(3947), - [aux_sym__val_number_token3] = ACTIONS(3947), - [anon_sym_0b] = ACTIONS(3945), - [anon_sym_0o] = ACTIONS(3945), - [anon_sym_0x] = ACTIONS(3945), - [sym_val_date] = ACTIONS(3947), - [anon_sym_DQUOTE] = ACTIONS(3947), - [sym__str_single_quotes] = ACTIONS(3947), - [sym__str_back_ticks] = ACTIONS(3947), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3947), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3947), - [aux_sym_env_var_token1] = ACTIONS(3949), - [anon_sym_CARET] = ACTIONS(3947), + [anon_sym_EQ] = ACTIONS(1070), + [anon_sym_PLUS_EQ] = ACTIONS(1072), + [anon_sym_DASH_EQ] = ACTIONS(1072), + [anon_sym_STAR_EQ] = ACTIONS(1072), + [anon_sym_SLASH_EQ] = ACTIONS(1072), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1072), + [sym__newline] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_err_GT_PIPE] = ACTIONS(1078), + [anon_sym_out_GT_PIPE] = ACTIONS(1078), + [anon_sym_e_GT_PIPE] = ACTIONS(1078), + [anon_sym_o_GT_PIPE] = ACTIONS(1078), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1078), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1078), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1078), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1078), + [aux_sym_expr_binary_token1] = ACTIONS(1078), + [aux_sym_expr_binary_token2] = ACTIONS(1078), + [aux_sym_expr_binary_token3] = ACTIONS(1078), + [aux_sym_expr_binary_token4] = ACTIONS(1078), + [aux_sym_expr_binary_token5] = ACTIONS(1078), + [aux_sym_expr_binary_token6] = ACTIONS(1078), + [aux_sym_expr_binary_token7] = ACTIONS(1078), + [aux_sym_expr_binary_token8] = ACTIONS(1078), + [aux_sym_expr_binary_token9] = ACTIONS(1078), + [aux_sym_expr_binary_token10] = ACTIONS(1078), + [aux_sym_expr_binary_token11] = ACTIONS(1078), + [aux_sym_expr_binary_token12] = ACTIONS(1078), + [aux_sym_expr_binary_token13] = ACTIONS(1078), + [aux_sym_expr_binary_token14] = ACTIONS(1078), + [aux_sym_expr_binary_token15] = ACTIONS(1078), + [aux_sym_expr_binary_token16] = ACTIONS(1078), + [aux_sym_expr_binary_token17] = ACTIONS(1078), + [aux_sym_expr_binary_token18] = ACTIONS(1078), + [aux_sym_expr_binary_token19] = ACTIONS(1078), + [aux_sym_expr_binary_token20] = ACTIONS(1078), + [aux_sym_expr_binary_token21] = ACTIONS(1078), + [aux_sym_expr_binary_token22] = ACTIONS(1078), + [aux_sym_expr_binary_token23] = ACTIONS(1078), + [aux_sym_expr_binary_token24] = ACTIONS(1078), + [aux_sym_expr_binary_token25] = ACTIONS(1078), + [aux_sym_expr_binary_token26] = ACTIONS(1078), + [aux_sym_expr_binary_token27] = ACTIONS(1078), + [aux_sym_expr_binary_token28] = ACTIONS(1078), + [anon_sym_DOT_DOT2] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1087), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1087), + [anon_sym_err_GT] = ACTIONS(1076), + [anon_sym_out_GT] = ACTIONS(1076), + [anon_sym_e_GT] = ACTIONS(1076), + [anon_sym_o_GT] = ACTIONS(1076), + [anon_sym_err_PLUSout_GT] = ACTIONS(1076), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1076), + [anon_sym_o_PLUSe_GT] = ACTIONS(1076), + [anon_sym_e_PLUSo_GT] = ACTIONS(1076), + [anon_sym_err_GT_GT] = ACTIONS(1078), + [anon_sym_out_GT_GT] = ACTIONS(1078), + [anon_sym_e_GT_GT] = ACTIONS(1078), + [anon_sym_o_GT_GT] = ACTIONS(1078), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1078), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1078), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1078), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1078), [anon_sym_POUND] = ACTIONS(247), }, [1235] = { [sym_comment] = STATE(1235), - [aux_sym_cmd_identifier_token1] = ACTIONS(3952), - [aux_sym_cmd_identifier_token2] = ACTIONS(3952), - [aux_sym_cmd_identifier_token3] = ACTIONS(3952), - [aux_sym_cmd_identifier_token4] = ACTIONS(3952), - [aux_sym_cmd_identifier_token5] = ACTIONS(3952), - [aux_sym_cmd_identifier_token6] = ACTIONS(3952), - [aux_sym_cmd_identifier_token7] = ACTIONS(3952), - [aux_sym_cmd_identifier_token8] = ACTIONS(3952), - [aux_sym_cmd_identifier_token9] = ACTIONS(3952), - [aux_sym_cmd_identifier_token10] = ACTIONS(3952), - [aux_sym_cmd_identifier_token11] = ACTIONS(3952), - [aux_sym_cmd_identifier_token12] = ACTIONS(3952), - [aux_sym_cmd_identifier_token13] = ACTIONS(3952), - [aux_sym_cmd_identifier_token14] = ACTIONS(3952), - [aux_sym_cmd_identifier_token15] = ACTIONS(3952), - [aux_sym_cmd_identifier_token16] = ACTIONS(3952), - [aux_sym_cmd_identifier_token17] = ACTIONS(3952), - [aux_sym_cmd_identifier_token18] = ACTIONS(3952), - [aux_sym_cmd_identifier_token19] = ACTIONS(3952), - [aux_sym_cmd_identifier_token20] = ACTIONS(3952), - [aux_sym_cmd_identifier_token21] = ACTIONS(3952), - [aux_sym_cmd_identifier_token22] = ACTIONS(3952), - [aux_sym_cmd_identifier_token23] = ACTIONS(3952), - [aux_sym_cmd_identifier_token24] = ACTIONS(3952), - [aux_sym_cmd_identifier_token25] = ACTIONS(3952), - [aux_sym_cmd_identifier_token26] = ACTIONS(3952), - [aux_sym_cmd_identifier_token27] = ACTIONS(3952), - [aux_sym_cmd_identifier_token28] = ACTIONS(3952), - [aux_sym_cmd_identifier_token29] = ACTIONS(3952), - [aux_sym_cmd_identifier_token30] = ACTIONS(3952), - [aux_sym_cmd_identifier_token31] = ACTIONS(3952), - [aux_sym_cmd_identifier_token32] = ACTIONS(3952), - [aux_sym_cmd_identifier_token33] = ACTIONS(3952), - [aux_sym_cmd_identifier_token34] = ACTIONS(3952), - [aux_sym_cmd_identifier_token35] = ACTIONS(3952), - [aux_sym_cmd_identifier_token36] = ACTIONS(3952), - [anon_sym_true] = ACTIONS(3952), - [anon_sym_false] = ACTIONS(3952), - [anon_sym_null] = ACTIONS(3952), - [aux_sym_cmd_identifier_token38] = ACTIONS(3952), - [aux_sym_cmd_identifier_token39] = ACTIONS(3952), - [aux_sym_cmd_identifier_token40] = ACTIONS(3952), - [sym__newline] = ACTIONS(3952), - [sym__space] = ACTIONS(3954), - [anon_sym_LBRACK] = ACTIONS(3952), - [anon_sym_LPAREN] = ACTIONS(3952), - [anon_sym_DOLLAR] = ACTIONS(3952), - [anon_sym_DASH] = ACTIONS(3952), - [aux_sym_ctrl_match_token1] = ACTIONS(3952), - [anon_sym_DOT_DOT] = ACTIONS(3952), - [aux_sym_expr_unary_token1] = ACTIONS(3952), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3952), - [anon_sym_DOT_DOT_LT] = ACTIONS(3952), - [aux_sym__val_number_decimal_token1] = ACTIONS(3952), - [aux_sym__val_number_decimal_token2] = ACTIONS(3952), - [aux_sym__val_number_decimal_token3] = ACTIONS(3952), - [aux_sym__val_number_decimal_token4] = ACTIONS(3952), - [aux_sym__val_number_token1] = ACTIONS(3952), - [aux_sym__val_number_token2] = ACTIONS(3952), - [aux_sym__val_number_token3] = ACTIONS(3952), - [anon_sym_0b] = ACTIONS(3952), - [anon_sym_0o] = ACTIONS(3952), - [anon_sym_0x] = ACTIONS(3952), - [sym_val_date] = ACTIONS(3952), - [anon_sym_DQUOTE] = ACTIONS(3952), - [sym__str_single_quotes] = ACTIONS(3952), - [sym__str_back_ticks] = ACTIONS(3952), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3952), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3952), - [aux_sym_env_var_token1] = ACTIONS(3952), - [anon_sym_CARET] = ACTIONS(3952), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1036), + [anon_sym_false] = ACTIONS(1036), + [anon_sym_null] = ACTIONS(1036), + [aux_sym_cmd_identifier_token38] = ACTIONS(1036), + [aux_sym_cmd_identifier_token39] = ACTIONS(1036), + [aux_sym_cmd_identifier_token40] = ACTIONS(1036), + [sym__newline] = ACTIONS(1036), + [anon_sym_SEMI] = ACTIONS(1036), + [anon_sym_PIPE] = ACTIONS(1036), + [anon_sym_err_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_GT_PIPE] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LPAREN] = ACTIONS(1036), + [anon_sym_RPAREN] = ACTIONS(1036), + [anon_sym_DOLLAR] = ACTIONS(1034), + [anon_sym_DASH_DASH] = ACTIONS(1036), + [anon_sym_DASH] = ACTIONS(1034), + [aux_sym_ctrl_match_token1] = ACTIONS(1036), + [anon_sym_RBRACE] = ACTIONS(1036), + [anon_sym_DOT_DOT] = ACTIONS(1034), + [anon_sym_QMARK2] = ACTIONS(4558), + [anon_sym_DOT_DOT2] = ACTIONS(1034), + [anon_sym_DOT] = ACTIONS(1034), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1034), + [anon_sym_DOT_DOT_LT] = ACTIONS(1034), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1036), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1036), + [aux_sym__val_number_decimal_token1] = ACTIONS(1034), + [aux_sym__val_number_decimal_token2] = ACTIONS(1036), + [aux_sym__val_number_decimal_token3] = ACTIONS(1036), + [aux_sym__val_number_decimal_token4] = ACTIONS(1036), + [aux_sym__val_number_token1] = ACTIONS(1036), + [aux_sym__val_number_token2] = ACTIONS(1036), + [aux_sym__val_number_token3] = ACTIONS(1036), + [anon_sym_0b] = ACTIONS(1034), + [anon_sym_0o] = ACTIONS(1034), + [anon_sym_0x] = ACTIONS(1034), + [sym_val_date] = ACTIONS(1036), + [anon_sym_DQUOTE] = ACTIONS(1036), + [sym__str_single_quotes] = ACTIONS(1036), + [sym__str_back_ticks] = ACTIONS(1036), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1036), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1036), + [anon_sym_err_GT] = ACTIONS(1034), + [anon_sym_out_GT] = ACTIONS(1034), + [anon_sym_e_GT] = ACTIONS(1034), + [anon_sym_o_GT] = ACTIONS(1034), + [anon_sym_err_PLUSout_GT] = ACTIONS(1034), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), + [anon_sym_o_PLUSe_GT] = ACTIONS(1034), + [anon_sym_e_PLUSo_GT] = ACTIONS(1034), + [anon_sym_err_GT_GT] = ACTIONS(1036), + [anon_sym_out_GT_GT] = ACTIONS(1036), + [anon_sym_e_GT_GT] = ACTIONS(1036), + [anon_sym_o_GT_GT] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), + [aux_sym_unquoted_token1] = ACTIONS(1034), + [anon_sym_POUND] = ACTIONS(247), }, [1236] = { - [sym__match_pattern_expression] = STATE(3315), - [sym__match_pattern_value] = STATE(3273), - [sym__match_pattern_list] = STATE(3277), - [sym__match_pattern_rest] = STATE(7997), - [sym__match_pattern_record] = STATE(3287), - [sym_expr_parenthesized] = STATE(3033), - [sym_val_range] = STATE(3273), - [sym__val_range] = STATE(7882), - [sym_val_nothing] = STATE(3288), - [sym_val_bool] = STATE(3213), - [sym_val_variable] = STATE(3034), - [sym_val_number] = STATE(3288), - [sym__val_number_decimal] = STATE(2800), - [sym__val_number] = STATE(3291), - [sym_val_duration] = STATE(3288), - [sym_val_filesize] = STATE(3288), - [sym_val_binary] = STATE(3288), - [sym_val_string] = STATE(3288), - [sym__str_double_quotes] = STATE(3297), - [sym_val_list] = STATE(7918), - [sym_val_table] = STATE(3288), - [sym__unquoted_in_list] = STATE(3315), - [sym__unquoted_anonymous_prefix] = STATE(7802), [sym_comment] = STATE(1236), - [aux_sym_shebang_repeat1] = STATE(6912), - [aux_sym__match_pattern_list_repeat1] = STATE(1306), - [anon_sym_true] = ACTIONS(3956), - [anon_sym_false] = ACTIONS(3956), - [anon_sym_null] = ACTIONS(3958), - [aux_sym_cmd_identifier_token38] = ACTIONS(3960), - [aux_sym_cmd_identifier_token39] = ACTIONS(3960), - [aux_sym_cmd_identifier_token40] = ACTIONS(3960), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(3962), - [anon_sym_RBRACK] = ACTIONS(3964), - [anon_sym_LPAREN] = ACTIONS(3966), - [anon_sym_DOLLAR] = ACTIONS(3968), - [aux_sym_ctrl_match_token1] = ACTIONS(3970), - [anon_sym_DOT_DOT] = ACTIONS(3972), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3974), - [anon_sym_DOT_DOT_LT] = ACTIONS(3974), - [aux_sym__val_number_decimal_token1] = ACTIONS(3976), - [aux_sym__val_number_decimal_token2] = ACTIONS(3978), - [aux_sym__val_number_decimal_token3] = ACTIONS(3980), - [aux_sym__val_number_decimal_token4] = ACTIONS(3982), - [aux_sym__val_number_token1] = ACTIONS(3984), - [aux_sym__val_number_token2] = ACTIONS(3984), - [aux_sym__val_number_token3] = ACTIONS(3984), - [anon_sym_0b] = ACTIONS(3986), - [anon_sym_0o] = ACTIONS(3988), - [anon_sym_0x] = ACTIONS(3988), - [sym_val_date] = ACTIONS(3990), - [anon_sym_DQUOTE] = ACTIONS(3992), - [sym__str_single_quotes] = ACTIONS(3994), - [sym__str_back_ticks] = ACTIONS(3994), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3996), + [aux_sym_cmd_identifier_token41] = ACTIONS(1517), + [sym__newline] = ACTIONS(1517), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1519), + [anon_sym_err_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_GT_PIPE] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), + [anon_sym_RBRACE] = ACTIONS(1519), + [anon_sym_EQ_GT] = ACTIONS(1519), + [aux_sym_expr_binary_token1] = ACTIONS(1519), + [aux_sym_expr_binary_token2] = ACTIONS(1519), + [aux_sym_expr_binary_token3] = ACTIONS(1519), + [aux_sym_expr_binary_token4] = ACTIONS(1519), + [aux_sym_expr_binary_token5] = ACTIONS(1519), + [aux_sym_expr_binary_token6] = ACTIONS(1519), + [aux_sym_expr_binary_token7] = ACTIONS(1519), + [aux_sym_expr_binary_token8] = ACTIONS(1519), + [aux_sym_expr_binary_token9] = ACTIONS(1519), + [aux_sym_expr_binary_token10] = ACTIONS(1519), + [aux_sym_expr_binary_token11] = ACTIONS(1519), + [aux_sym_expr_binary_token12] = ACTIONS(1519), + [aux_sym_expr_binary_token13] = ACTIONS(1519), + [aux_sym_expr_binary_token14] = ACTIONS(1519), + [aux_sym_expr_binary_token15] = ACTIONS(1519), + [aux_sym_expr_binary_token16] = ACTIONS(1519), + [aux_sym_expr_binary_token17] = ACTIONS(1519), + [aux_sym_expr_binary_token18] = ACTIONS(1519), + [aux_sym_expr_binary_token19] = ACTIONS(1519), + [aux_sym_expr_binary_token20] = ACTIONS(1519), + [aux_sym_expr_binary_token21] = ACTIONS(1519), + [aux_sym_expr_binary_token22] = ACTIONS(1519), + [aux_sym_expr_binary_token23] = ACTIONS(1519), + [aux_sym_expr_binary_token24] = ACTIONS(1519), + [aux_sym_expr_binary_token25] = ACTIONS(1519), + [aux_sym_expr_binary_token26] = ACTIONS(1519), + [aux_sym_expr_binary_token27] = ACTIONS(1519), + [aux_sym_expr_binary_token28] = ACTIONS(1519), + [anon_sym_DOT_DOT2] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), + [aux_sym__immediate_decimal_token1] = ACTIONS(4560), + [aux_sym__immediate_decimal_token2] = ACTIONS(4562), + [sym_filesize_unit] = ACTIONS(1519), + [sym_duration_unit] = ACTIONS(1519), + [aux_sym_record_entry_token1] = ACTIONS(1519), + [anon_sym_err_GT] = ACTIONS(1517), + [anon_sym_out_GT] = ACTIONS(1517), + [anon_sym_e_GT] = ACTIONS(1517), + [anon_sym_o_GT] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT] = ACTIONS(1517), + [anon_sym_err_GT_GT] = ACTIONS(1519), + [anon_sym_out_GT_GT] = ACTIONS(1519), + [anon_sym_e_GT_GT] = ACTIONS(1519), + [anon_sym_o_GT_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), [anon_sym_POUND] = ACTIONS(247), }, [1237] = { - [sym_match_pattern] = STATE(7745), - [sym__match_pattern] = STATE(6318), - [sym__match_pattern_expression] = STATE(7519), - [sym__match_pattern_value] = STATE(6950), - [sym__match_pattern_list] = STATE(6957), - [sym__match_pattern_record] = STATE(6958), - [sym_expr_parenthesized] = STATE(6007), - [sym_val_range] = STATE(6950), - [sym__val_range] = STATE(8000), - [sym_val_nothing] = STATE(6978), - [sym_val_bool] = STATE(6785), - [sym_val_variable] = STATE(6011), - [sym_val_number] = STATE(6978), - [sym__val_number_decimal] = STATE(5584), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(6978), - [sym_val_filesize] = STATE(6978), - [sym_val_binary] = STATE(6978), - [sym_val_string] = STATE(6978), - [sym__str_double_quotes] = STATE(1851), - [sym_val_table] = STATE(6978), - [sym_unquoted] = STATE(7006), - [sym__unquoted_anonymous_prefix] = STATE(7741), [sym_comment] = STATE(1237), - [aux_sym_shebang_repeat1] = STATE(3108), - [anon_sym_true] = ACTIONS(3633), - [anon_sym_false] = ACTIONS(3633), - [anon_sym_null] = ACTIONS(3635), - [aux_sym_cmd_identifier_token38] = ACTIONS(3637), - [aux_sym_cmd_identifier_token39] = ACTIONS(3637), - [aux_sym_cmd_identifier_token40] = ACTIONS(3637), - [sym__newline] = ACTIONS(3639), - [anon_sym_LBRACK] = ACTIONS(3641), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_DOLLAR] = ACTIONS(3645), - [aux_sym_ctrl_match_token1] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(3998), - [anon_sym__] = ACTIONS(3943), - [anon_sym_DOT_DOT] = ACTIONS(3653), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3655), - [anon_sym_DOT_DOT_LT] = ACTIONS(3655), - [aux_sym__val_number_decimal_token1] = ACTIONS(3657), - [aux_sym__val_number_decimal_token2] = ACTIONS(3659), - [aux_sym__val_number_decimal_token3] = ACTIONS(3661), - [aux_sym__val_number_decimal_token4] = ACTIONS(3663), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3665), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [ts_builtin_sym_end] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(1587), + [anon_sym_false] = ACTIONS(1587), + [anon_sym_null] = ACTIONS(1587), + [aux_sym_cmd_identifier_token38] = ACTIONS(1587), + [aux_sym_cmd_identifier_token39] = ACTIONS(1587), + [aux_sym_cmd_identifier_token40] = ACTIONS(1587), + [sym__newline] = ACTIONS(1587), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_err_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_GT_PIPE] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_DOLLAR] = ACTIONS(1575), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_DASH] = ACTIONS(1575), + [aux_sym_ctrl_match_token1] = ACTIONS(1587), + [anon_sym_DOT_DOT] = ACTIONS(1575), + [anon_sym_DOT_DOT2] = ACTIONS(4433), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT] = ACTIONS(1575), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4435), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4435), + [aux_sym__val_number_decimal_token1] = ACTIONS(1575), + [aux_sym__val_number_decimal_token2] = ACTIONS(1587), + [aux_sym__val_number_decimal_token3] = ACTIONS(1587), + [aux_sym__val_number_decimal_token4] = ACTIONS(1587), + [aux_sym__val_number_token1] = ACTIONS(1587), + [aux_sym__val_number_token2] = ACTIONS(1587), + [aux_sym__val_number_token3] = ACTIONS(1587), + [anon_sym_0b] = ACTIONS(1575), + [sym_filesize_unit] = ACTIONS(4564), + [sym_duration_unit] = ACTIONS(4566), + [anon_sym_0o] = ACTIONS(1575), + [anon_sym_0x] = ACTIONS(1575), + [sym_val_date] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [sym__str_single_quotes] = ACTIONS(1587), + [sym__str_back_ticks] = ACTIONS(1587), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1587), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1587), + [anon_sym_err_GT] = ACTIONS(1575), + [anon_sym_out_GT] = ACTIONS(1575), + [anon_sym_e_GT] = ACTIONS(1575), + [anon_sym_o_GT] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT] = ACTIONS(1575), + [anon_sym_err_GT_GT] = ACTIONS(1587), + [anon_sym_out_GT_GT] = ACTIONS(1587), + [anon_sym_e_GT_GT] = ACTIONS(1587), + [anon_sym_o_GT_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [aux_sym_unquoted_token1] = ACTIONS(1575), + [aux_sym_unquoted_token2] = ACTIONS(4568), [anon_sym_POUND] = ACTIONS(247), }, [1238] = { - [sym_match_pattern] = STATE(7745), - [sym__match_pattern] = STATE(6318), - [sym__match_pattern_expression] = STATE(7519), - [sym__match_pattern_value] = STATE(6950), - [sym__match_pattern_list] = STATE(6957), - [sym__match_pattern_record] = STATE(6958), - [sym_expr_parenthesized] = STATE(6007), - [sym_val_range] = STATE(6950), - [sym__val_range] = STATE(8000), - [sym_val_nothing] = STATE(6978), - [sym_val_bool] = STATE(6785), - [sym_val_variable] = STATE(6011), - [sym_val_number] = STATE(6978), - [sym__val_number_decimal] = STATE(5584), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(6978), - [sym_val_filesize] = STATE(6978), - [sym_val_binary] = STATE(6978), - [sym_val_string] = STATE(6978), - [sym__str_double_quotes] = STATE(1851), - [sym_val_table] = STATE(6978), - [sym_unquoted] = STATE(7006), - [sym__unquoted_anonymous_prefix] = STATE(7741), [sym_comment] = STATE(1238), - [aux_sym_shebang_repeat1] = STATE(3108), - [anon_sym_true] = ACTIONS(3633), - [anon_sym_false] = ACTIONS(3633), - [anon_sym_null] = ACTIONS(3635), - [aux_sym_cmd_identifier_token38] = ACTIONS(3637), - [aux_sym_cmd_identifier_token39] = ACTIONS(3637), - [aux_sym_cmd_identifier_token40] = ACTIONS(3637), - [sym__newline] = ACTIONS(3639), - [anon_sym_LBRACK] = ACTIONS(3641), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_DOLLAR] = ACTIONS(3645), - [aux_sym_ctrl_match_token1] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(4000), - [anon_sym__] = ACTIONS(3943), - [anon_sym_DOT_DOT] = ACTIONS(3653), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3655), - [anon_sym_DOT_DOT_LT] = ACTIONS(3655), - [aux_sym__val_number_decimal_token1] = ACTIONS(3657), - [aux_sym__val_number_decimal_token2] = ACTIONS(3659), - [aux_sym__val_number_decimal_token3] = ACTIONS(3661), - [aux_sym__val_number_decimal_token4] = ACTIONS(3663), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3665), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [ts_builtin_sym_end] = ACTIONS(1058), + [anon_sym_EQ] = ACTIONS(1056), + [anon_sym_PLUS_EQ] = ACTIONS(1058), + [anon_sym_DASH_EQ] = ACTIONS(1058), + [anon_sym_STAR_EQ] = ACTIONS(1058), + [anon_sym_SLASH_EQ] = ACTIONS(1058), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1058), + [sym__newline] = ACTIONS(1058), + [anon_sym_SEMI] = ACTIONS(1058), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_err_GT_PIPE] = ACTIONS(1058), + [anon_sym_out_GT_PIPE] = ACTIONS(1058), + [anon_sym_e_GT_PIPE] = ACTIONS(1058), + [anon_sym_o_GT_PIPE] = ACTIONS(1058), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1058), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1058), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1058), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1058), + [aux_sym_expr_binary_token1] = ACTIONS(1058), + [aux_sym_expr_binary_token2] = ACTIONS(1058), + [aux_sym_expr_binary_token3] = ACTIONS(1058), + [aux_sym_expr_binary_token4] = ACTIONS(1058), + [aux_sym_expr_binary_token5] = ACTIONS(1058), + [aux_sym_expr_binary_token6] = ACTIONS(1058), + [aux_sym_expr_binary_token7] = ACTIONS(1058), + [aux_sym_expr_binary_token8] = ACTIONS(1058), + [aux_sym_expr_binary_token9] = ACTIONS(1058), + [aux_sym_expr_binary_token10] = ACTIONS(1058), + [aux_sym_expr_binary_token11] = ACTIONS(1058), + [aux_sym_expr_binary_token12] = ACTIONS(1058), + [aux_sym_expr_binary_token13] = ACTIONS(1058), + [aux_sym_expr_binary_token14] = ACTIONS(1058), + [aux_sym_expr_binary_token15] = ACTIONS(1058), + [aux_sym_expr_binary_token16] = ACTIONS(1058), + [aux_sym_expr_binary_token17] = ACTIONS(1058), + [aux_sym_expr_binary_token18] = ACTIONS(1058), + [aux_sym_expr_binary_token19] = ACTIONS(1058), + [aux_sym_expr_binary_token20] = ACTIONS(1058), + [aux_sym_expr_binary_token21] = ACTIONS(1058), + [aux_sym_expr_binary_token22] = ACTIONS(1058), + [aux_sym_expr_binary_token23] = ACTIONS(1058), + [aux_sym_expr_binary_token24] = ACTIONS(1058), + [aux_sym_expr_binary_token25] = ACTIONS(1058), + [aux_sym_expr_binary_token26] = ACTIONS(1058), + [aux_sym_expr_binary_token27] = ACTIONS(1058), + [aux_sym_expr_binary_token28] = ACTIONS(1058), + [anon_sym_DOT_DOT2] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1058), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1058), + [anon_sym_err_GT] = ACTIONS(1056), + [anon_sym_out_GT] = ACTIONS(1056), + [anon_sym_e_GT] = ACTIONS(1056), + [anon_sym_o_GT] = ACTIONS(1056), + [anon_sym_err_PLUSout_GT] = ACTIONS(1056), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1056), + [anon_sym_o_PLUSe_GT] = ACTIONS(1056), + [anon_sym_e_PLUSo_GT] = ACTIONS(1056), + [anon_sym_err_GT_GT] = ACTIONS(1058), + [anon_sym_out_GT_GT] = ACTIONS(1058), + [anon_sym_e_GT_GT] = ACTIONS(1058), + [anon_sym_o_GT_GT] = ACTIONS(1058), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1058), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1058), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1058), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1058), [anon_sym_POUND] = ACTIONS(247), }, [1239] = { - [sym__expr_parenthesized_immediate] = STATE(1512), - [sym__immediate_decimal] = STATE(1422), - [sym_val_variable] = STATE(1512), [sym_comment] = STATE(1239), - [anon_sym_true] = ACTIONS(1427), - [anon_sym_false] = ACTIONS(1427), - [anon_sym_null] = ACTIONS(1427), - [aux_sym_cmd_identifier_token38] = ACTIONS(1427), - [aux_sym_cmd_identifier_token39] = ACTIONS(1427), - [aux_sym_cmd_identifier_token40] = ACTIONS(1427), - [sym__newline] = ACTIONS(1427), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_PIPE] = ACTIONS(1427), - [anon_sym_err_GT_PIPE] = ACTIONS(1427), - [anon_sym_out_GT_PIPE] = ACTIONS(1427), - [anon_sym_e_GT_PIPE] = ACTIONS(1427), - [anon_sym_o_GT_PIPE] = ACTIONS(1427), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1427), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1427), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1427), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1413), - [anon_sym_RPAREN] = ACTIONS(1427), - [anon_sym_DOLLAR] = ACTIONS(2469), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1413), - [aux_sym_ctrl_match_token1] = ACTIONS(1427), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_LPAREN2] = ACTIONS(4002), - [anon_sym_DOT] = ACTIONS(4004), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1427), - [anon_sym_DOT_DOT_LT] = ACTIONS(1427), - [aux_sym__immediate_decimal_token1] = ACTIONS(4006), - [aux_sym__immediate_decimal_token3] = ACTIONS(4008), - [aux_sym__immediate_decimal_token4] = ACTIONS(4010), - [aux_sym__immediate_decimal_token5] = ACTIONS(4012), - [aux_sym__val_number_decimal_token1] = ACTIONS(1413), - [aux_sym__val_number_decimal_token2] = ACTIONS(1413), - [aux_sym__val_number_decimal_token3] = ACTIONS(1413), - [aux_sym__val_number_decimal_token4] = ACTIONS(1413), - [aux_sym__val_number_token1] = ACTIONS(1427), - [aux_sym__val_number_token2] = ACTIONS(1427), - [aux_sym__val_number_token3] = ACTIONS(1427), - [anon_sym_0b] = ACTIONS(1413), - [anon_sym_0o] = ACTIONS(1413), - [anon_sym_0x] = ACTIONS(1413), - [sym_val_date] = ACTIONS(1427), - [anon_sym_DQUOTE] = ACTIONS(1427), - [sym__str_single_quotes] = ACTIONS(1427), - [sym__str_back_ticks] = ACTIONS(1427), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1427), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1427), - [anon_sym_err_GT] = ACTIONS(1413), - [anon_sym_out_GT] = ACTIONS(1413), - [anon_sym_e_GT] = ACTIONS(1413), - [anon_sym_o_GT] = ACTIONS(1413), - [anon_sym_err_PLUSout_GT] = ACTIONS(1413), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1413), - [anon_sym_o_PLUSe_GT] = ACTIONS(1413), - [anon_sym_e_PLUSo_GT] = ACTIONS(1413), - [anon_sym_err_GT_GT] = ACTIONS(1427), - [anon_sym_out_GT_GT] = ACTIONS(1427), - [anon_sym_e_GT_GT] = ACTIONS(1427), - [anon_sym_o_GT_GT] = ACTIONS(1427), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1427), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1427), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1427), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1427), - [aux_sym_unquoted_token1] = ACTIONS(1413), - [aux_sym_unquoted_token2] = ACTIONS(1429), + [anon_sym_true] = ACTIONS(1804), + [anon_sym_false] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1804), + [aux_sym_cmd_identifier_token38] = ACTIONS(1804), + [aux_sym_cmd_identifier_token39] = ACTIONS(1804), + [aux_sym_cmd_identifier_token40] = ACTIONS(1804), + [sym__newline] = ACTIONS(1804), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_PIPE] = ACTIONS(1804), + [anon_sym_err_GT_PIPE] = ACTIONS(1804), + [anon_sym_out_GT_PIPE] = ACTIONS(1804), + [anon_sym_e_GT_PIPE] = ACTIONS(1804), + [anon_sym_o_GT_PIPE] = ACTIONS(1804), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1804), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1804), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1804), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1796), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1796), + [aux_sym_ctrl_match_token1] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_DOT_DOT] = ACTIONS(1796), + [anon_sym_LPAREN2] = ACTIONS(1798), + [anon_sym_DOT_DOT2] = ACTIONS(4570), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1796), + [anon_sym_DOT_DOT_LT] = ACTIONS(1796), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4572), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4572), + [aux_sym__val_number_decimal_token1] = ACTIONS(1796), + [aux_sym__val_number_decimal_token2] = ACTIONS(1804), + [aux_sym__val_number_decimal_token3] = ACTIONS(1804), + [aux_sym__val_number_decimal_token4] = ACTIONS(1804), + [aux_sym__val_number_token1] = ACTIONS(1804), + [aux_sym__val_number_token2] = ACTIONS(1804), + [aux_sym__val_number_token3] = ACTIONS(1804), + [anon_sym_0b] = ACTIONS(1796), + [anon_sym_0o] = ACTIONS(1796), + [anon_sym_0x] = ACTIONS(1796), + [sym_val_date] = ACTIONS(1804), + [anon_sym_DQUOTE] = ACTIONS(1804), + [sym__str_single_quotes] = ACTIONS(1804), + [sym__str_back_ticks] = ACTIONS(1804), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1804), + [anon_sym_err_GT] = ACTIONS(1796), + [anon_sym_out_GT] = ACTIONS(1796), + [anon_sym_e_GT] = ACTIONS(1796), + [anon_sym_o_GT] = ACTIONS(1796), + [anon_sym_err_PLUSout_GT] = ACTIONS(1796), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1796), + [anon_sym_o_PLUSe_GT] = ACTIONS(1796), + [anon_sym_e_PLUSo_GT] = ACTIONS(1796), + [anon_sym_err_GT_GT] = ACTIONS(1804), + [anon_sym_out_GT_GT] = ACTIONS(1804), + [anon_sym_e_GT_GT] = ACTIONS(1804), + [anon_sym_o_GT_GT] = ACTIONS(1804), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1804), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1804), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1804), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1804), + [aux_sym_unquoted_token1] = ACTIONS(1796), + [aux_sym_unquoted_token2] = ACTIONS(1806), [anon_sym_POUND] = ACTIONS(247), }, [1240] = { - [sym_match_pattern] = STATE(7745), - [sym__match_pattern] = STATE(6318), - [sym__match_pattern_expression] = STATE(7519), - [sym__match_pattern_value] = STATE(6950), - [sym__match_pattern_list] = STATE(6957), - [sym__match_pattern_record] = STATE(6958), - [sym_expr_parenthesized] = STATE(6007), - [sym_val_range] = STATE(6950), - [sym__val_range] = STATE(8000), - [sym_val_nothing] = STATE(6978), - [sym_val_bool] = STATE(6785), - [sym_val_variable] = STATE(6011), - [sym_val_number] = STATE(6978), - [sym__val_number_decimal] = STATE(5584), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(6978), - [sym_val_filesize] = STATE(6978), - [sym_val_binary] = STATE(6978), - [sym_val_string] = STATE(6978), - [sym__str_double_quotes] = STATE(1851), - [sym_val_table] = STATE(6978), - [sym_unquoted] = STATE(7006), - [sym__unquoted_anonymous_prefix] = STATE(7741), [sym_comment] = STATE(1240), - [aux_sym_shebang_repeat1] = STATE(3108), - [anon_sym_true] = ACTIONS(3633), - [anon_sym_false] = ACTIONS(3633), - [anon_sym_null] = ACTIONS(3635), - [aux_sym_cmd_identifier_token38] = ACTIONS(3637), - [aux_sym_cmd_identifier_token39] = ACTIONS(3637), - [aux_sym_cmd_identifier_token40] = ACTIONS(3637), - [sym__newline] = ACTIONS(3639), - [anon_sym_LBRACK] = ACTIONS(3641), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_DOLLAR] = ACTIONS(3645), - [aux_sym_ctrl_match_token1] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(3717), - [anon_sym__] = ACTIONS(3943), - [anon_sym_DOT_DOT] = ACTIONS(3653), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3655), - [anon_sym_DOT_DOT_LT] = ACTIONS(3655), - [aux_sym__val_number_decimal_token1] = ACTIONS(3657), - [aux_sym__val_number_decimal_token2] = ACTIONS(3659), - [aux_sym__val_number_decimal_token3] = ACTIONS(3661), - [aux_sym__val_number_decimal_token4] = ACTIONS(3663), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3665), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [ts_builtin_sym_end] = ACTIONS(1066), + [anon_sym_EQ] = ACTIONS(1064), + [anon_sym_PLUS_EQ] = ACTIONS(1066), + [anon_sym_DASH_EQ] = ACTIONS(1066), + [anon_sym_STAR_EQ] = ACTIONS(1066), + [anon_sym_SLASH_EQ] = ACTIONS(1066), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1066), + [sym__newline] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1066), + [anon_sym_err_GT_PIPE] = ACTIONS(1066), + [anon_sym_out_GT_PIPE] = ACTIONS(1066), + [anon_sym_e_GT_PIPE] = ACTIONS(1066), + [anon_sym_o_GT_PIPE] = ACTIONS(1066), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1066), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1066), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1066), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1066), + [aux_sym_ctrl_match_token1] = ACTIONS(1066), + [aux_sym_expr_binary_token1] = ACTIONS(1066), + [aux_sym_expr_binary_token2] = ACTIONS(1066), + [aux_sym_expr_binary_token3] = ACTIONS(1066), + [aux_sym_expr_binary_token4] = ACTIONS(1066), + [aux_sym_expr_binary_token5] = ACTIONS(1066), + [aux_sym_expr_binary_token6] = ACTIONS(1066), + [aux_sym_expr_binary_token7] = ACTIONS(1066), + [aux_sym_expr_binary_token8] = ACTIONS(1066), + [aux_sym_expr_binary_token9] = ACTIONS(1066), + [aux_sym_expr_binary_token10] = ACTIONS(1066), + [aux_sym_expr_binary_token11] = ACTIONS(1066), + [aux_sym_expr_binary_token12] = ACTIONS(1066), + [aux_sym_expr_binary_token13] = ACTIONS(1066), + [aux_sym_expr_binary_token14] = ACTIONS(1066), + [aux_sym_expr_binary_token15] = ACTIONS(1066), + [aux_sym_expr_binary_token16] = ACTIONS(1066), + [aux_sym_expr_binary_token17] = ACTIONS(1066), + [aux_sym_expr_binary_token18] = ACTIONS(1066), + [aux_sym_expr_binary_token19] = ACTIONS(1066), + [aux_sym_expr_binary_token20] = ACTIONS(1066), + [aux_sym_expr_binary_token21] = ACTIONS(1066), + [aux_sym_expr_binary_token22] = ACTIONS(1066), + [aux_sym_expr_binary_token23] = ACTIONS(1066), + [aux_sym_expr_binary_token24] = ACTIONS(1066), + [aux_sym_expr_binary_token25] = ACTIONS(1066), + [aux_sym_expr_binary_token26] = ACTIONS(1066), + [aux_sym_expr_binary_token27] = ACTIONS(1066), + [aux_sym_expr_binary_token28] = ACTIONS(1066), + [anon_sym_DOT_DOT2] = ACTIONS(1064), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1066), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1066), + [anon_sym_err_GT] = ACTIONS(1064), + [anon_sym_out_GT] = ACTIONS(1064), + [anon_sym_e_GT] = ACTIONS(1064), + [anon_sym_o_GT] = ACTIONS(1064), + [anon_sym_err_PLUSout_GT] = ACTIONS(1064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1064), + [anon_sym_o_PLUSe_GT] = ACTIONS(1064), + [anon_sym_e_PLUSo_GT] = ACTIONS(1064), + [anon_sym_err_GT_GT] = ACTIONS(1066), + [anon_sym_out_GT_GT] = ACTIONS(1066), + [anon_sym_e_GT_GT] = ACTIONS(1066), + [anon_sym_o_GT_GT] = ACTIONS(1066), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1066), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1066), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1066), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1066), [anon_sym_POUND] = ACTIONS(247), }, [1241] = { - [sym_cell_path] = STATE(1385), - [sym_path] = STATE(1328), [sym_comment] = STATE(1241), - [aux_sym_cell_path_repeat1] = STATE(1255), - [anon_sym_EQ] = ACTIONS(945), - [anon_sym_PLUS_EQ] = ACTIONS(947), - [anon_sym_DASH_EQ] = ACTIONS(947), - [anon_sym_STAR_EQ] = ACTIONS(947), - [anon_sym_SLASH_EQ] = ACTIONS(947), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(947), - [sym__newline] = ACTIONS(947), - [anon_sym_SEMI] = ACTIONS(947), - [anon_sym_PIPE] = ACTIONS(947), - [anon_sym_err_GT_PIPE] = ACTIONS(947), - [anon_sym_out_GT_PIPE] = ACTIONS(947), - [anon_sym_e_GT_PIPE] = ACTIONS(947), - [anon_sym_o_GT_PIPE] = ACTIONS(947), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(947), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(947), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(947), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(947), - [anon_sym_COMMA] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(947), - [aux_sym_expr_binary_token1] = ACTIONS(947), - [aux_sym_expr_binary_token2] = ACTIONS(947), - [aux_sym_expr_binary_token3] = ACTIONS(947), - [aux_sym_expr_binary_token4] = ACTIONS(947), - [aux_sym_expr_binary_token5] = ACTIONS(947), - [aux_sym_expr_binary_token6] = ACTIONS(947), - [aux_sym_expr_binary_token7] = ACTIONS(947), - [aux_sym_expr_binary_token8] = ACTIONS(947), - [aux_sym_expr_binary_token9] = ACTIONS(947), - [aux_sym_expr_binary_token10] = ACTIONS(947), - [aux_sym_expr_binary_token11] = ACTIONS(947), - [aux_sym_expr_binary_token12] = ACTIONS(947), - [aux_sym_expr_binary_token13] = ACTIONS(947), - [aux_sym_expr_binary_token14] = ACTIONS(947), - [aux_sym_expr_binary_token15] = ACTIONS(947), - [aux_sym_expr_binary_token16] = ACTIONS(947), - [aux_sym_expr_binary_token17] = ACTIONS(947), - [aux_sym_expr_binary_token18] = ACTIONS(947), - [aux_sym_expr_binary_token19] = ACTIONS(947), - [aux_sym_expr_binary_token20] = ACTIONS(947), - [aux_sym_expr_binary_token21] = ACTIONS(947), - [aux_sym_expr_binary_token22] = ACTIONS(947), - [aux_sym_expr_binary_token23] = ACTIONS(947), - [aux_sym_expr_binary_token24] = ACTIONS(947), - [aux_sym_expr_binary_token25] = ACTIONS(947), - [aux_sym_expr_binary_token26] = ACTIONS(947), - [aux_sym_expr_binary_token27] = ACTIONS(947), - [aux_sym_expr_binary_token28] = ACTIONS(947), - [anon_sym_DOT_DOT2] = ACTIONS(945), - [anon_sym_DOT] = ACTIONS(4014), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(947), - [anon_sym_DOT_DOT_LT2] = ACTIONS(947), - [anon_sym_err_GT] = ACTIONS(945), - [anon_sym_out_GT] = ACTIONS(945), - [anon_sym_e_GT] = ACTIONS(945), - [anon_sym_o_GT] = ACTIONS(945), - [anon_sym_err_PLUSout_GT] = ACTIONS(945), - [anon_sym_out_PLUSerr_GT] = ACTIONS(945), - [anon_sym_o_PLUSe_GT] = ACTIONS(945), - [anon_sym_e_PLUSo_GT] = ACTIONS(945), - [anon_sym_err_GT_GT] = ACTIONS(947), - [anon_sym_out_GT_GT] = ACTIONS(947), - [anon_sym_e_GT_GT] = ACTIONS(947), - [anon_sym_o_GT_GT] = ACTIONS(947), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(947), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(947), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(947), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(947), + [ts_builtin_sym_end] = ACTIONS(1707), + [anon_sym_true] = ACTIONS(1707), + [anon_sym_false] = ACTIONS(1707), + [anon_sym_null] = ACTIONS(1707), + [aux_sym_cmd_identifier_token38] = ACTIONS(1707), + [aux_sym_cmd_identifier_token39] = ACTIONS(1707), + [aux_sym_cmd_identifier_token40] = ACTIONS(1707), + [sym__newline] = ACTIONS(1707), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_err_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_GT_PIPE] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), + [anon_sym_LBRACK] = ACTIONS(1707), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1705), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1705), + [aux_sym_ctrl_match_token1] = ACTIONS(1707), + [anon_sym_DOT_DOT] = ACTIONS(1705), + [anon_sym_LPAREN2] = ACTIONS(1707), + [anon_sym_DOT_DOT2] = ACTIONS(1705), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1705), + [anon_sym_DOT_DOT_LT] = ACTIONS(1705), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1707), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1707), + [aux_sym__immediate_decimal_token2] = ACTIONS(4574), + [aux_sym__val_number_decimal_token1] = ACTIONS(1705), + [aux_sym__val_number_decimal_token2] = ACTIONS(1707), + [aux_sym__val_number_decimal_token3] = ACTIONS(1707), + [aux_sym__val_number_decimal_token4] = ACTIONS(1707), + [aux_sym__val_number_token1] = ACTIONS(1707), + [aux_sym__val_number_token2] = ACTIONS(1707), + [aux_sym__val_number_token3] = ACTIONS(1707), + [anon_sym_0b] = ACTIONS(1705), + [anon_sym_0o] = ACTIONS(1705), + [anon_sym_0x] = ACTIONS(1705), + [sym_val_date] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1707), + [sym__str_single_quotes] = ACTIONS(1707), + [sym__str_back_ticks] = ACTIONS(1707), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1707), + [anon_sym_err_GT] = ACTIONS(1705), + [anon_sym_out_GT] = ACTIONS(1705), + [anon_sym_e_GT] = ACTIONS(1705), + [anon_sym_o_GT] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT] = ACTIONS(1705), + [anon_sym_err_GT_GT] = ACTIONS(1707), + [anon_sym_out_GT_GT] = ACTIONS(1707), + [anon_sym_e_GT_GT] = ACTIONS(1707), + [anon_sym_o_GT_GT] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), + [aux_sym_unquoted_token1] = ACTIONS(1705), + [aux_sym_unquoted_token2] = ACTIONS(1705), [anon_sym_POUND] = ACTIONS(247), }, [1242] = { - [sym_env_var] = STATE(7227), [sym_comment] = STATE(1242), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1242), - [aux_sym_cmd_identifier_token1] = ACTIONS(3891), - [aux_sym_cmd_identifier_token2] = ACTIONS(4016), - [aux_sym_cmd_identifier_token3] = ACTIONS(4016), - [aux_sym_cmd_identifier_token4] = ACTIONS(4016), - [aux_sym_cmd_identifier_token5] = ACTIONS(4016), - [aux_sym_cmd_identifier_token6] = ACTIONS(4016), - [aux_sym_cmd_identifier_token7] = ACTIONS(4016), - [aux_sym_cmd_identifier_token8] = ACTIONS(4016), - [aux_sym_cmd_identifier_token9] = ACTIONS(3891), - [aux_sym_cmd_identifier_token10] = ACTIONS(4016), - [aux_sym_cmd_identifier_token11] = ACTIONS(4016), - [aux_sym_cmd_identifier_token12] = ACTIONS(4016), - [aux_sym_cmd_identifier_token13] = ACTIONS(3891), - [aux_sym_cmd_identifier_token14] = ACTIONS(4016), - [aux_sym_cmd_identifier_token15] = ACTIONS(3891), - [aux_sym_cmd_identifier_token16] = ACTIONS(4016), - [aux_sym_cmd_identifier_token17] = ACTIONS(4016), - [aux_sym_cmd_identifier_token18] = ACTIONS(4016), - [aux_sym_cmd_identifier_token19] = ACTIONS(4016), - [aux_sym_cmd_identifier_token20] = ACTIONS(4016), - [aux_sym_cmd_identifier_token21] = ACTIONS(4016), - [aux_sym_cmd_identifier_token22] = ACTIONS(4016), - [aux_sym_cmd_identifier_token23] = ACTIONS(4016), - [aux_sym_cmd_identifier_token24] = ACTIONS(4016), - [aux_sym_cmd_identifier_token25] = ACTIONS(4016), - [aux_sym_cmd_identifier_token26] = ACTIONS(4016), - [aux_sym_cmd_identifier_token27] = ACTIONS(4016), - [aux_sym_cmd_identifier_token28] = ACTIONS(4016), - [aux_sym_cmd_identifier_token29] = ACTIONS(4016), - [aux_sym_cmd_identifier_token30] = ACTIONS(4016), - [aux_sym_cmd_identifier_token31] = ACTIONS(4016), - [aux_sym_cmd_identifier_token32] = ACTIONS(4016), - [aux_sym_cmd_identifier_token33] = ACTIONS(4016), - [aux_sym_cmd_identifier_token34] = ACTIONS(4016), - [aux_sym_cmd_identifier_token35] = ACTIONS(4016), - [aux_sym_cmd_identifier_token36] = ACTIONS(3891), - [anon_sym_true] = ACTIONS(4016), - [anon_sym_false] = ACTIONS(4016), - [anon_sym_null] = ACTIONS(4016), - [aux_sym_cmd_identifier_token38] = ACTIONS(3891), - [aux_sym_cmd_identifier_token39] = ACTIONS(4016), - [aux_sym_cmd_identifier_token40] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_DOLLAR] = ACTIONS(3891), - [anon_sym_DASH] = ACTIONS(3891), - [aux_sym_ctrl_match_token1] = ACTIONS(4016), - [anon_sym_DOT_DOT] = ACTIONS(3891), - [aux_sym_expr_unary_token1] = ACTIONS(4016), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4016), - [anon_sym_DOT_DOT_LT] = ACTIONS(4016), - [aux_sym__val_number_decimal_token1] = ACTIONS(3891), - [aux_sym__val_number_decimal_token2] = ACTIONS(4016), - [aux_sym__val_number_decimal_token3] = ACTIONS(4016), - [aux_sym__val_number_decimal_token4] = ACTIONS(4016), - [aux_sym__val_number_token1] = ACTIONS(4016), - [aux_sym__val_number_token2] = ACTIONS(4016), - [aux_sym__val_number_token3] = ACTIONS(4016), - [anon_sym_0b] = ACTIONS(3891), - [anon_sym_0o] = ACTIONS(3891), - [anon_sym_0x] = ACTIONS(3891), - [sym_val_date] = ACTIONS(4016), - [anon_sym_DQUOTE] = ACTIONS(4016), - [sym__str_single_quotes] = ACTIONS(4016), - [sym__str_back_ticks] = ACTIONS(4016), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4016), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4016), - [aux_sym_env_var_token1] = ACTIONS(4018), - [anon_sym_CARET] = ACTIONS(4016), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [aux_sym_cmd_identifier_token38] = ACTIONS(1633), + [aux_sym_cmd_identifier_token39] = ACTIONS(1633), + [aux_sym_cmd_identifier_token40] = ACTIONS(1633), + [sym__newline] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1633), + [anon_sym_err_GT_PIPE] = ACTIONS(1633), + [anon_sym_out_GT_PIPE] = ACTIONS(1633), + [anon_sym_e_GT_PIPE] = ACTIONS(1633), + [anon_sym_o_GT_PIPE] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1633), + [anon_sym_LBRACK] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_RPAREN] = ACTIONS(1633), + [anon_sym_DOLLAR] = ACTIONS(1631), + [anon_sym_DASH_DASH] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1631), + [aux_sym_ctrl_match_token1] = ACTIONS(1633), + [anon_sym_RBRACE] = ACTIONS(1633), + [anon_sym_DOT_DOT] = ACTIONS(1631), + [anon_sym_LPAREN2] = ACTIONS(1633), + [anon_sym_DOT_DOT2] = ACTIONS(1631), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1631), + [anon_sym_DOT_DOT_LT] = ACTIONS(1631), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1633), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1633), + [aux_sym__val_number_decimal_token1] = ACTIONS(1631), + [aux_sym__val_number_decimal_token2] = ACTIONS(1633), + [aux_sym__val_number_decimal_token3] = ACTIONS(1633), + [aux_sym__val_number_decimal_token4] = ACTIONS(1633), + [aux_sym__val_number_token1] = ACTIONS(1633), + [aux_sym__val_number_token2] = ACTIONS(1633), + [aux_sym__val_number_token3] = ACTIONS(1633), + [anon_sym_0b] = ACTIONS(1631), + [anon_sym_0o] = ACTIONS(1631), + [anon_sym_0x] = ACTIONS(1631), + [sym_val_date] = ACTIONS(1633), + [anon_sym_DQUOTE] = ACTIONS(1633), + [sym__str_single_quotes] = ACTIONS(1633), + [sym__str_back_ticks] = ACTIONS(1633), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1633), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1633), + [anon_sym_err_GT] = ACTIONS(1631), + [anon_sym_out_GT] = ACTIONS(1631), + [anon_sym_e_GT] = ACTIONS(1631), + [anon_sym_o_GT] = ACTIONS(1631), + [anon_sym_err_PLUSout_GT] = ACTIONS(1631), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1631), + [anon_sym_o_PLUSe_GT] = ACTIONS(1631), + [anon_sym_e_PLUSo_GT] = ACTIONS(1631), + [anon_sym_err_GT_GT] = ACTIONS(1633), + [anon_sym_out_GT_GT] = ACTIONS(1633), + [anon_sym_e_GT_GT] = ACTIONS(1633), + [anon_sym_o_GT_GT] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1633), + [aux_sym_unquoted_token1] = ACTIONS(1631), + [aux_sym_unquoted_token2] = ACTIONS(1631), [anon_sym_POUND] = ACTIONS(247), }, [1243] = { - [sym_cell_path] = STATE(1409), - [sym_path] = STATE(1299), [sym_comment] = STATE(1243), - [aux_sym_cell_path_repeat1] = STATE(1259), - [anon_sym_EQ] = ACTIONS(945), - [anon_sym_PLUS_EQ] = ACTIONS(947), - [anon_sym_DASH_EQ] = ACTIONS(947), - [anon_sym_STAR_EQ] = ACTIONS(947), - [anon_sym_SLASH_EQ] = ACTIONS(947), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(947), - [sym__newline] = ACTIONS(945), - [anon_sym_SEMI] = ACTIONS(947), - [anon_sym_PIPE] = ACTIONS(947), - [anon_sym_err_GT_PIPE] = ACTIONS(947), - [anon_sym_out_GT_PIPE] = ACTIONS(947), - [anon_sym_e_GT_PIPE] = ACTIONS(947), - [anon_sym_o_GT_PIPE] = ACTIONS(947), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(947), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(947), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(947), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(947), - [aux_sym_ctrl_match_token1] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(947), - [aux_sym_expr_binary_token1] = ACTIONS(947), - [aux_sym_expr_binary_token2] = ACTIONS(947), - [aux_sym_expr_binary_token3] = ACTIONS(947), - [aux_sym_expr_binary_token4] = ACTIONS(947), - [aux_sym_expr_binary_token5] = ACTIONS(947), - [aux_sym_expr_binary_token6] = ACTIONS(947), - [aux_sym_expr_binary_token7] = ACTIONS(947), - [aux_sym_expr_binary_token8] = ACTIONS(947), - [aux_sym_expr_binary_token9] = ACTIONS(947), - [aux_sym_expr_binary_token10] = ACTIONS(947), - [aux_sym_expr_binary_token11] = ACTIONS(947), - [aux_sym_expr_binary_token12] = ACTIONS(947), - [aux_sym_expr_binary_token13] = ACTIONS(947), - [aux_sym_expr_binary_token14] = ACTIONS(947), - [aux_sym_expr_binary_token15] = ACTIONS(947), - [aux_sym_expr_binary_token16] = ACTIONS(947), - [aux_sym_expr_binary_token17] = ACTIONS(947), - [aux_sym_expr_binary_token18] = ACTIONS(947), - [aux_sym_expr_binary_token19] = ACTIONS(947), - [aux_sym_expr_binary_token20] = ACTIONS(947), - [aux_sym_expr_binary_token21] = ACTIONS(947), - [aux_sym_expr_binary_token22] = ACTIONS(947), - [aux_sym_expr_binary_token23] = ACTIONS(947), - [aux_sym_expr_binary_token24] = ACTIONS(947), - [aux_sym_expr_binary_token25] = ACTIONS(947), - [aux_sym_expr_binary_token26] = ACTIONS(947), - [aux_sym_expr_binary_token27] = ACTIONS(947), - [aux_sym_expr_binary_token28] = ACTIONS(947), - [anon_sym_DOT_DOT2] = ACTIONS(945), - [anon_sym_DOT] = ACTIONS(4021), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(947), - [anon_sym_DOT_DOT_LT2] = ACTIONS(947), - [aux_sym_record_entry_token1] = ACTIONS(947), - [anon_sym_err_GT] = ACTIONS(945), - [anon_sym_out_GT] = ACTIONS(945), - [anon_sym_e_GT] = ACTIONS(945), - [anon_sym_o_GT] = ACTIONS(945), - [anon_sym_err_PLUSout_GT] = ACTIONS(945), - [anon_sym_out_PLUSerr_GT] = ACTIONS(945), - [anon_sym_o_PLUSe_GT] = ACTIONS(945), - [anon_sym_e_PLUSo_GT] = ACTIONS(945), - [anon_sym_err_GT_GT] = ACTIONS(947), - [anon_sym_out_GT_GT] = ACTIONS(947), - [anon_sym_e_GT_GT] = ACTIONS(947), - [anon_sym_o_GT_GT] = ACTIONS(947), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(947), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(947), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(947), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(947), + [ts_builtin_sym_end] = ACTIONS(1499), + [anon_sym_true] = ACTIONS(1499), + [anon_sym_false] = ACTIONS(1499), + [anon_sym_null] = ACTIONS(1499), + [aux_sym_cmd_identifier_token38] = ACTIONS(1499), + [aux_sym_cmd_identifier_token39] = ACTIONS(1499), + [aux_sym_cmd_identifier_token40] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_DOLLAR] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1497), + [aux_sym_ctrl_match_token1] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1497), + [anon_sym_DOT_DOT2] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), + [anon_sym_DOT_DOT_LT] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1499), + [aux_sym__val_number_decimal_token4] = ACTIONS(1499), + [aux_sym__val_number_token1] = ACTIONS(1499), + [aux_sym__val_number_token2] = ACTIONS(1499), + [aux_sym__val_number_token3] = ACTIONS(1499), + [anon_sym_0b] = ACTIONS(1497), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1499), + [anon_sym_0o] = ACTIONS(1497), + [anon_sym_0x] = ACTIONS(1497), + [sym_val_date] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1499), + [sym__str_single_quotes] = ACTIONS(1499), + [sym__str_back_ticks] = ACTIONS(1499), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1499), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1499), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), + [aux_sym_unquoted_token1] = ACTIONS(1497), + [aux_sym_unquoted_token2] = ACTIONS(1497), [anon_sym_POUND] = ACTIONS(247), }, [1244] = { - [sym__match_pattern_expression] = STATE(3315), - [sym__match_pattern_value] = STATE(3273), - [sym__match_pattern_list] = STATE(3277), - [sym__match_pattern_rest] = STATE(7871), - [sym__match_pattern_record] = STATE(3287), - [sym_expr_parenthesized] = STATE(3033), - [sym_val_range] = STATE(3273), - [sym__val_range] = STATE(7882), - [sym_val_nothing] = STATE(3288), - [sym_val_bool] = STATE(3213), - [sym_val_variable] = STATE(3034), - [sym_val_number] = STATE(3288), - [sym__val_number_decimal] = STATE(2800), - [sym__val_number] = STATE(3291), - [sym_val_duration] = STATE(3288), - [sym_val_filesize] = STATE(3288), - [sym_val_binary] = STATE(3288), - [sym_val_string] = STATE(3288), - [sym__str_double_quotes] = STATE(3297), - [sym_val_list] = STATE(8054), - [sym_val_table] = STATE(3288), - [sym__unquoted_in_list] = STATE(3315), - [sym__unquoted_anonymous_prefix] = STATE(7802), [sym_comment] = STATE(1244), - [aux_sym_shebang_repeat1] = STATE(6865), - [aux_sym__match_pattern_list_repeat1] = STATE(1317), - [anon_sym_true] = ACTIONS(3956), - [anon_sym_false] = ACTIONS(3956), - [anon_sym_null] = ACTIONS(3958), - [aux_sym_cmd_identifier_token38] = ACTIONS(3960), - [aux_sym_cmd_identifier_token39] = ACTIONS(3960), - [aux_sym_cmd_identifier_token40] = ACTIONS(3960), - [sym__newline] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(3962), - [anon_sym_RBRACK] = ACTIONS(4023), - [anon_sym_LPAREN] = ACTIONS(3966), - [anon_sym_DOLLAR] = ACTIONS(3968), - [aux_sym_ctrl_match_token1] = ACTIONS(3970), - [anon_sym_DOT_DOT] = ACTIONS(4025), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3974), - [anon_sym_DOT_DOT_LT] = ACTIONS(3974), - [aux_sym__val_number_decimal_token1] = ACTIONS(3976), - [aux_sym__val_number_decimal_token2] = ACTIONS(3978), - [aux_sym__val_number_decimal_token3] = ACTIONS(3980), - [aux_sym__val_number_decimal_token4] = ACTIONS(3982), - [aux_sym__val_number_token1] = ACTIONS(3984), - [aux_sym__val_number_token2] = ACTIONS(3984), - [aux_sym__val_number_token3] = ACTIONS(3984), - [anon_sym_0b] = ACTIONS(3986), - [anon_sym_0o] = ACTIONS(3988), - [anon_sym_0x] = ACTIONS(3988), - [sym_val_date] = ACTIONS(3990), - [anon_sym_DQUOTE] = ACTIONS(3992), - [sym__str_single_quotes] = ACTIONS(3994), - [sym__str_back_ticks] = ACTIONS(3994), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3996), + [ts_builtin_sym_end] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [aux_sym_cmd_identifier_token38] = ACTIONS(1633), + [aux_sym_cmd_identifier_token39] = ACTIONS(1633), + [aux_sym_cmd_identifier_token40] = ACTIONS(1633), + [sym__newline] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1633), + [anon_sym_err_GT_PIPE] = ACTIONS(1633), + [anon_sym_out_GT_PIPE] = ACTIONS(1633), + [anon_sym_e_GT_PIPE] = ACTIONS(1633), + [anon_sym_o_GT_PIPE] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1633), + [anon_sym_LBRACK] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1633), + [anon_sym_DOLLAR] = ACTIONS(1631), + [anon_sym_DASH_DASH] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1631), + [aux_sym_ctrl_match_token1] = ACTIONS(1633), + [anon_sym_DOT_DOT] = ACTIONS(1631), + [anon_sym_DOT_DOT2] = ACTIONS(1631), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1631), + [anon_sym_DOT_DOT_LT] = ACTIONS(1631), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1633), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1633), + [aux_sym__immediate_decimal_token1] = ACTIONS(4576), + [aux_sym__immediate_decimal_token2] = ACTIONS(4578), + [aux_sym__val_number_decimal_token1] = ACTIONS(1631), + [aux_sym__val_number_decimal_token2] = ACTIONS(1633), + [aux_sym__val_number_decimal_token3] = ACTIONS(1633), + [aux_sym__val_number_decimal_token4] = ACTIONS(1633), + [aux_sym__val_number_token1] = ACTIONS(1633), + [aux_sym__val_number_token2] = ACTIONS(1633), + [aux_sym__val_number_token3] = ACTIONS(1633), + [anon_sym_0b] = ACTIONS(1631), + [anon_sym_0o] = ACTIONS(1631), + [anon_sym_0x] = ACTIONS(1631), + [sym_val_date] = ACTIONS(1633), + [anon_sym_DQUOTE] = ACTIONS(1633), + [sym__str_single_quotes] = ACTIONS(1633), + [sym__str_back_ticks] = ACTIONS(1633), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1633), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1633), + [anon_sym_err_GT] = ACTIONS(1631), + [anon_sym_out_GT] = ACTIONS(1631), + [anon_sym_e_GT] = ACTIONS(1631), + [anon_sym_o_GT] = ACTIONS(1631), + [anon_sym_err_PLUSout_GT] = ACTIONS(1631), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1631), + [anon_sym_o_PLUSe_GT] = ACTIONS(1631), + [anon_sym_e_PLUSo_GT] = ACTIONS(1631), + [anon_sym_err_GT_GT] = ACTIONS(1633), + [anon_sym_out_GT_GT] = ACTIONS(1633), + [anon_sym_e_GT_GT] = ACTIONS(1633), + [anon_sym_o_GT_GT] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1633), + [aux_sym_unquoted_token1] = ACTIONS(1631), [anon_sym_POUND] = ACTIONS(247), }, [1245] = { - [sym_match_pattern] = STATE(7745), - [sym__match_pattern] = STATE(6318), - [sym__match_pattern_expression] = STATE(7519), - [sym__match_pattern_value] = STATE(6950), - [sym__match_pattern_list] = STATE(6957), - [sym__match_pattern_record] = STATE(6958), - [sym_expr_parenthesized] = STATE(6007), - [sym_val_range] = STATE(6950), - [sym__val_range] = STATE(8000), - [sym_val_nothing] = STATE(6978), - [sym_val_bool] = STATE(6785), - [sym_val_variable] = STATE(6011), - [sym_val_number] = STATE(6978), - [sym__val_number_decimal] = STATE(5584), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(6978), - [sym_val_filesize] = STATE(6978), - [sym_val_binary] = STATE(6978), - [sym_val_string] = STATE(6978), - [sym__str_double_quotes] = STATE(1851), - [sym_val_table] = STATE(6978), - [sym_unquoted] = STATE(7006), - [sym__unquoted_anonymous_prefix] = STATE(7741), + [sym_cell_path] = STATE(1308), + [sym_path] = STATE(1116), [sym_comment] = STATE(1245), - [aux_sym_shebang_repeat1] = STATE(3108), - [anon_sym_true] = ACTIONS(3633), - [anon_sym_false] = ACTIONS(3633), - [anon_sym_null] = ACTIONS(3635), - [aux_sym_cmd_identifier_token38] = ACTIONS(3637), - [aux_sym_cmd_identifier_token39] = ACTIONS(3637), - [aux_sym_cmd_identifier_token40] = ACTIONS(3637), - [sym__newline] = ACTIONS(3639), - [anon_sym_LBRACK] = ACTIONS(3641), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_DOLLAR] = ACTIONS(3645), - [aux_sym_ctrl_match_token1] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(4027), - [anon_sym__] = ACTIONS(3943), - [anon_sym_DOT_DOT] = ACTIONS(3653), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3655), - [anon_sym_DOT_DOT_LT] = ACTIONS(3655), - [aux_sym__val_number_decimal_token1] = ACTIONS(3657), - [aux_sym__val_number_decimal_token2] = ACTIONS(3659), - [aux_sym__val_number_decimal_token3] = ACTIONS(3661), - [aux_sym__val_number_decimal_token4] = ACTIONS(3663), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3665), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [aux_sym_cell_path_repeat1] = STATE(1049), + [sym__newline] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1629), + [anon_sym_err_GT_PIPE] = ACTIONS(1629), + [anon_sym_out_GT_PIPE] = ACTIONS(1629), + [anon_sym_e_GT_PIPE] = ACTIONS(1629), + [anon_sym_o_GT_PIPE] = ACTIONS(1629), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1629), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1629), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1629), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1629), + [aux_sym_ctrl_match_token1] = ACTIONS(1629), + [anon_sym_RBRACE] = ACTIONS(1629), + [aux_sym_expr_binary_token1] = ACTIONS(1629), + [aux_sym_expr_binary_token2] = ACTIONS(1629), + [aux_sym_expr_binary_token3] = ACTIONS(1629), + [aux_sym_expr_binary_token4] = ACTIONS(1629), + [aux_sym_expr_binary_token5] = ACTIONS(1629), + [aux_sym_expr_binary_token6] = ACTIONS(1629), + [aux_sym_expr_binary_token7] = ACTIONS(1629), + [aux_sym_expr_binary_token8] = ACTIONS(1629), + [aux_sym_expr_binary_token9] = ACTIONS(1629), + [aux_sym_expr_binary_token10] = ACTIONS(1629), + [aux_sym_expr_binary_token11] = ACTIONS(1629), + [aux_sym_expr_binary_token12] = ACTIONS(1629), + [aux_sym_expr_binary_token13] = ACTIONS(1629), + [aux_sym_expr_binary_token14] = ACTIONS(1629), + [aux_sym_expr_binary_token15] = ACTIONS(1629), + [aux_sym_expr_binary_token16] = ACTIONS(1629), + [aux_sym_expr_binary_token17] = ACTIONS(1629), + [aux_sym_expr_binary_token18] = ACTIONS(1629), + [aux_sym_expr_binary_token19] = ACTIONS(1629), + [aux_sym_expr_binary_token20] = ACTIONS(1629), + [aux_sym_expr_binary_token21] = ACTIONS(1629), + [aux_sym_expr_binary_token22] = ACTIONS(1629), + [aux_sym_expr_binary_token23] = ACTIONS(1629), + [aux_sym_expr_binary_token24] = ACTIONS(1629), + [aux_sym_expr_binary_token25] = ACTIONS(1629), + [aux_sym_expr_binary_token26] = ACTIONS(1629), + [aux_sym_expr_binary_token27] = ACTIONS(1629), + [aux_sym_expr_binary_token28] = ACTIONS(1629), + [anon_sym_DOT_DOT2] = ACTIONS(1625), + [anon_sym_DOT] = ACTIONS(3764), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1629), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1629), + [aux_sym_record_entry_token1] = ACTIONS(1629), + [anon_sym_err_GT] = ACTIONS(1625), + [anon_sym_out_GT] = ACTIONS(1625), + [anon_sym_e_GT] = ACTIONS(1625), + [anon_sym_o_GT] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT] = ACTIONS(1625), + [anon_sym_err_GT_GT] = ACTIONS(1629), + [anon_sym_out_GT_GT] = ACTIONS(1629), + [anon_sym_e_GT_GT] = ACTIONS(1629), + [anon_sym_o_GT_GT] = ACTIONS(1629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1629), [anon_sym_POUND] = ACTIONS(247), }, [1246] = { - [sym_match_pattern] = STATE(7745), - [sym__match_pattern] = STATE(6318), - [sym__match_pattern_expression] = STATE(7519), - [sym__match_pattern_value] = STATE(6950), - [sym__match_pattern_list] = STATE(6957), - [sym__match_pattern_record] = STATE(6958), - [sym_expr_parenthesized] = STATE(6007), - [sym_val_range] = STATE(6950), - [sym__val_range] = STATE(8000), - [sym_val_nothing] = STATE(6978), - [sym_val_bool] = STATE(6785), - [sym_val_variable] = STATE(6011), - [sym_val_number] = STATE(6978), - [sym__val_number_decimal] = STATE(5584), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(6978), - [sym_val_filesize] = STATE(6978), - [sym_val_binary] = STATE(6978), - [sym_val_string] = STATE(6978), - [sym__str_double_quotes] = STATE(1851), - [sym_val_table] = STATE(6978), - [sym_unquoted] = STATE(7006), - [sym__unquoted_anonymous_prefix] = STATE(7741), [sym_comment] = STATE(1246), - [aux_sym_shebang_repeat1] = STATE(3108), - [anon_sym_true] = ACTIONS(3633), - [anon_sym_false] = ACTIONS(3633), - [anon_sym_null] = ACTIONS(3635), - [aux_sym_cmd_identifier_token38] = ACTIONS(3637), - [aux_sym_cmd_identifier_token39] = ACTIONS(3637), - [aux_sym_cmd_identifier_token40] = ACTIONS(3637), - [sym__newline] = ACTIONS(3639), - [anon_sym_LBRACK] = ACTIONS(3641), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_DOLLAR] = ACTIONS(3645), - [aux_sym_ctrl_match_token1] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(3743), - [anon_sym__] = ACTIONS(3943), - [anon_sym_DOT_DOT] = ACTIONS(3653), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3655), - [anon_sym_DOT_DOT_LT] = ACTIONS(3655), - [aux_sym__val_number_decimal_token1] = ACTIONS(3657), - [aux_sym__val_number_decimal_token2] = ACTIONS(3659), - [aux_sym__val_number_decimal_token3] = ACTIONS(3661), - [aux_sym__val_number_decimal_token4] = ACTIONS(3663), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3665), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [ts_builtin_sym_end] = ACTIONS(1794), + [anon_sym_true] = ACTIONS(1794), + [anon_sym_false] = ACTIONS(1794), + [anon_sym_null] = ACTIONS(1794), + [aux_sym_cmd_identifier_token38] = ACTIONS(1794), + [aux_sym_cmd_identifier_token39] = ACTIONS(1794), + [aux_sym_cmd_identifier_token40] = ACTIONS(1794), + [sym__newline] = ACTIONS(1794), + [anon_sym_SEMI] = ACTIONS(1794), + [anon_sym_PIPE] = ACTIONS(1794), + [anon_sym_err_GT_PIPE] = ACTIONS(1794), + [anon_sym_out_GT_PIPE] = ACTIONS(1794), + [anon_sym_e_GT_PIPE] = ACTIONS(1794), + [anon_sym_o_GT_PIPE] = ACTIONS(1794), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1794), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1794), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1794), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_DOLLAR] = ACTIONS(1786), + [anon_sym_DASH_DASH] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1786), + [aux_sym_ctrl_match_token1] = ACTIONS(1794), + [anon_sym_DOT_DOT] = ACTIONS(1786), + [anon_sym_LPAREN2] = ACTIONS(1788), + [anon_sym_DOT_DOT2] = ACTIONS(4580), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1786), + [anon_sym_DOT_DOT_LT] = ACTIONS(1786), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4582), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4582), + [aux_sym__val_number_decimal_token1] = ACTIONS(1786), + [aux_sym__val_number_decimal_token2] = ACTIONS(1794), + [aux_sym__val_number_decimal_token3] = ACTIONS(1794), + [aux_sym__val_number_decimal_token4] = ACTIONS(1794), + [aux_sym__val_number_token1] = ACTIONS(1794), + [aux_sym__val_number_token2] = ACTIONS(1794), + [aux_sym__val_number_token3] = ACTIONS(1794), + [anon_sym_0b] = ACTIONS(1786), + [anon_sym_0o] = ACTIONS(1786), + [anon_sym_0x] = ACTIONS(1786), + [sym_val_date] = ACTIONS(1794), + [anon_sym_DQUOTE] = ACTIONS(1794), + [sym__str_single_quotes] = ACTIONS(1794), + [sym__str_back_ticks] = ACTIONS(1794), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1794), + [anon_sym_err_GT] = ACTIONS(1786), + [anon_sym_out_GT] = ACTIONS(1786), + [anon_sym_e_GT] = ACTIONS(1786), + [anon_sym_o_GT] = ACTIONS(1786), + [anon_sym_err_PLUSout_GT] = ACTIONS(1786), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1786), + [anon_sym_o_PLUSe_GT] = ACTIONS(1786), + [anon_sym_e_PLUSo_GT] = ACTIONS(1786), + [anon_sym_err_GT_GT] = ACTIONS(1794), + [anon_sym_out_GT_GT] = ACTIONS(1794), + [anon_sym_e_GT_GT] = ACTIONS(1794), + [anon_sym_o_GT_GT] = ACTIONS(1794), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1794), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1794), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1794), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1794), + [aux_sym_unquoted_token1] = ACTIONS(1786), + [aux_sym_unquoted_token2] = ACTIONS(1495), [anon_sym_POUND] = ACTIONS(247), }, [1247] = { - [sym_match_pattern] = STATE(7745), - [sym__match_pattern] = STATE(6318), - [sym__match_pattern_expression] = STATE(7519), - [sym__match_pattern_value] = STATE(6950), - [sym__match_pattern_list] = STATE(6957), - [sym__match_pattern_record] = STATE(6958), - [sym_expr_parenthesized] = STATE(6007), - [sym_val_range] = STATE(6950), - [sym__val_range] = STATE(8000), - [sym_val_nothing] = STATE(6978), - [sym_val_bool] = STATE(6785), - [sym_val_variable] = STATE(6011), - [sym_val_number] = STATE(6978), - [sym__val_number_decimal] = STATE(5584), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(6978), - [sym_val_filesize] = STATE(6978), - [sym_val_binary] = STATE(6978), - [sym_val_string] = STATE(6978), - [sym__str_double_quotes] = STATE(1851), - [sym_val_table] = STATE(6978), - [sym_unquoted] = STATE(7006), - [sym__unquoted_anonymous_prefix] = STATE(7741), [sym_comment] = STATE(1247), - [aux_sym_shebang_repeat1] = STATE(3108), - [anon_sym_true] = ACTIONS(3633), - [anon_sym_false] = ACTIONS(3633), - [anon_sym_null] = ACTIONS(3635), - [aux_sym_cmd_identifier_token38] = ACTIONS(3637), - [aux_sym_cmd_identifier_token39] = ACTIONS(3637), - [aux_sym_cmd_identifier_token40] = ACTIONS(3637), - [sym__newline] = ACTIONS(3639), - [anon_sym_LBRACK] = ACTIONS(3641), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_DOLLAR] = ACTIONS(3645), - [aux_sym_ctrl_match_token1] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(3667), - [anon_sym__] = ACTIONS(3943), - [anon_sym_DOT_DOT] = ACTIONS(3653), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3655), - [anon_sym_DOT_DOT_LT] = ACTIONS(3655), - [aux_sym__val_number_decimal_token1] = ACTIONS(3657), - [aux_sym__val_number_decimal_token2] = ACTIONS(3659), - [aux_sym__val_number_decimal_token3] = ACTIONS(3661), - [aux_sym__val_number_decimal_token4] = ACTIONS(3663), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3665), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [aux_sym_cmd_identifier_token38] = ACTIONS(1633), + [aux_sym_cmd_identifier_token39] = ACTIONS(1633), + [aux_sym_cmd_identifier_token40] = ACTIONS(1633), + [sym__newline] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1633), + [anon_sym_err_GT_PIPE] = ACTIONS(1633), + [anon_sym_out_GT_PIPE] = ACTIONS(1633), + [anon_sym_e_GT_PIPE] = ACTIONS(1633), + [anon_sym_o_GT_PIPE] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1633), + [anon_sym_LBRACK] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_RPAREN] = ACTIONS(1633), + [anon_sym_DOLLAR] = ACTIONS(1631), + [anon_sym_DASH_DASH] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1631), + [aux_sym_ctrl_match_token1] = ACTIONS(1633), + [anon_sym_RBRACE] = ACTIONS(1633), + [anon_sym_DOT_DOT] = ACTIONS(1631), + [anon_sym_LPAREN2] = ACTIONS(1633), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1633), + [anon_sym_DOT_DOT_LT] = ACTIONS(1633), + [aux_sym__immediate_decimal_token1] = ACTIONS(4584), + [aux_sym__immediate_decimal_token2] = ACTIONS(4586), + [aux_sym__val_number_decimal_token1] = ACTIONS(1631), + [aux_sym__val_number_decimal_token2] = ACTIONS(1633), + [aux_sym__val_number_decimal_token3] = ACTIONS(1633), + [aux_sym__val_number_decimal_token4] = ACTIONS(1633), + [aux_sym__val_number_token1] = ACTIONS(1633), + [aux_sym__val_number_token2] = ACTIONS(1633), + [aux_sym__val_number_token3] = ACTIONS(1633), + [anon_sym_0b] = ACTIONS(1631), + [anon_sym_0o] = ACTIONS(1631), + [anon_sym_0x] = ACTIONS(1631), + [sym_val_date] = ACTIONS(1633), + [anon_sym_DQUOTE] = ACTIONS(1633), + [sym__str_single_quotes] = ACTIONS(1633), + [sym__str_back_ticks] = ACTIONS(1633), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1633), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1633), + [anon_sym_err_GT] = ACTIONS(1631), + [anon_sym_out_GT] = ACTIONS(1631), + [anon_sym_e_GT] = ACTIONS(1631), + [anon_sym_o_GT] = ACTIONS(1631), + [anon_sym_err_PLUSout_GT] = ACTIONS(1631), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1631), + [anon_sym_o_PLUSe_GT] = ACTIONS(1631), + [anon_sym_e_PLUSo_GT] = ACTIONS(1631), + [anon_sym_err_GT_GT] = ACTIONS(1633), + [anon_sym_out_GT_GT] = ACTIONS(1633), + [anon_sym_e_GT_GT] = ACTIONS(1633), + [anon_sym_o_GT_GT] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1633), + [aux_sym_unquoted_token1] = ACTIONS(1631), + [aux_sym_unquoted_token2] = ACTIONS(1631), [anon_sym_POUND] = ACTIONS(247), }, [1248] = { - [sym_match_pattern] = STATE(7745), - [sym__match_pattern] = STATE(6318), - [sym__match_pattern_expression] = STATE(7519), - [sym__match_pattern_value] = STATE(6950), - [sym__match_pattern_list] = STATE(6957), - [sym__match_pattern_record] = STATE(6958), - [sym_expr_parenthesized] = STATE(6007), - [sym_val_range] = STATE(6950), - [sym__val_range] = STATE(8000), - [sym_val_nothing] = STATE(6978), - [sym_val_bool] = STATE(6785), - [sym_val_variable] = STATE(6011), - [sym_val_number] = STATE(6978), - [sym__val_number_decimal] = STATE(5584), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(6978), - [sym_val_filesize] = STATE(6978), - [sym_val_binary] = STATE(6978), - [sym_val_string] = STATE(6978), - [sym__str_double_quotes] = STATE(1851), - [sym_val_table] = STATE(6978), - [sym_unquoted] = STATE(7006), - [sym__unquoted_anonymous_prefix] = STATE(7741), [sym_comment] = STATE(1248), - [aux_sym_shebang_repeat1] = STATE(3108), - [anon_sym_true] = ACTIONS(3633), - [anon_sym_false] = ACTIONS(3633), - [anon_sym_null] = ACTIONS(3635), - [aux_sym_cmd_identifier_token38] = ACTIONS(3637), - [aux_sym_cmd_identifier_token39] = ACTIONS(3637), - [aux_sym_cmd_identifier_token40] = ACTIONS(3637), - [sym__newline] = ACTIONS(3639), - [anon_sym_LBRACK] = ACTIONS(3641), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_DOLLAR] = ACTIONS(3645), - [aux_sym_ctrl_match_token1] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(3745), - [anon_sym__] = ACTIONS(3943), - [anon_sym_DOT_DOT] = ACTIONS(3653), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3655), - [anon_sym_DOT_DOT_LT] = ACTIONS(3655), - [aux_sym__val_number_decimal_token1] = ACTIONS(3657), - [aux_sym__val_number_decimal_token2] = ACTIONS(3659), - [aux_sym__val_number_decimal_token3] = ACTIONS(3661), - [aux_sym__val_number_decimal_token4] = ACTIONS(3663), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3665), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_RPAREN] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_LPAREN2] = ACTIONS(1499), + [aux_sym_expr_binary_token1] = ACTIONS(1499), + [aux_sym_expr_binary_token2] = ACTIONS(1499), + [aux_sym_expr_binary_token3] = ACTIONS(1499), + [aux_sym_expr_binary_token4] = ACTIONS(1499), + [aux_sym_expr_binary_token5] = ACTIONS(1499), + [aux_sym_expr_binary_token6] = ACTIONS(1499), + [aux_sym_expr_binary_token7] = ACTIONS(1499), + [aux_sym_expr_binary_token8] = ACTIONS(1499), + [aux_sym_expr_binary_token9] = ACTIONS(1499), + [aux_sym_expr_binary_token10] = ACTIONS(1499), + [aux_sym_expr_binary_token11] = ACTIONS(1499), + [aux_sym_expr_binary_token12] = ACTIONS(1499), + [aux_sym_expr_binary_token13] = ACTIONS(1499), + [aux_sym_expr_binary_token14] = ACTIONS(1499), + [aux_sym_expr_binary_token15] = ACTIONS(1499), + [aux_sym_expr_binary_token16] = ACTIONS(1499), + [aux_sym_expr_binary_token17] = ACTIONS(1499), + [aux_sym_expr_binary_token18] = ACTIONS(1499), + [aux_sym_expr_binary_token19] = ACTIONS(1499), + [aux_sym_expr_binary_token20] = ACTIONS(1499), + [aux_sym_expr_binary_token21] = ACTIONS(1499), + [aux_sym_expr_binary_token22] = ACTIONS(1499), + [aux_sym_expr_binary_token23] = ACTIONS(1499), + [aux_sym_expr_binary_token24] = ACTIONS(1499), + [aux_sym_expr_binary_token25] = ACTIONS(1499), + [aux_sym_expr_binary_token26] = ACTIONS(1499), + [aux_sym_expr_binary_token27] = ACTIONS(1499), + [aux_sym_expr_binary_token28] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), + [aux_sym__immediate_decimal_token2] = ACTIONS(4556), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1499), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), + [aux_sym_unquoted_token2] = ACTIONS(1497), [anon_sym_POUND] = ACTIONS(247), }, [1249] = { [sym_comment] = STATE(1249), - [aux_sym_pipe_element_repeat1] = STATE(1249), - [aux_sym_cmd_identifier_token1] = ACTIONS(4029), - [aux_sym_cmd_identifier_token2] = ACTIONS(4029), - [aux_sym_cmd_identifier_token3] = ACTIONS(4029), - [aux_sym_cmd_identifier_token4] = ACTIONS(4029), - [aux_sym_cmd_identifier_token5] = ACTIONS(4029), - [aux_sym_cmd_identifier_token6] = ACTIONS(4029), - [aux_sym_cmd_identifier_token7] = ACTIONS(4029), - [aux_sym_cmd_identifier_token8] = ACTIONS(4029), - [aux_sym_cmd_identifier_token9] = ACTIONS(4029), - [aux_sym_cmd_identifier_token10] = ACTIONS(4029), - [aux_sym_cmd_identifier_token11] = ACTIONS(4029), - [aux_sym_cmd_identifier_token12] = ACTIONS(4029), - [aux_sym_cmd_identifier_token13] = ACTIONS(4029), - [aux_sym_cmd_identifier_token14] = ACTIONS(4029), - [aux_sym_cmd_identifier_token15] = ACTIONS(4029), - [aux_sym_cmd_identifier_token16] = ACTIONS(4029), - [aux_sym_cmd_identifier_token17] = ACTIONS(4029), - [aux_sym_cmd_identifier_token18] = ACTIONS(4029), - [aux_sym_cmd_identifier_token19] = ACTIONS(4029), - [aux_sym_cmd_identifier_token20] = ACTIONS(4029), - [aux_sym_cmd_identifier_token21] = ACTIONS(4029), - [aux_sym_cmd_identifier_token22] = ACTIONS(4029), - [aux_sym_cmd_identifier_token23] = ACTIONS(4029), - [aux_sym_cmd_identifier_token24] = ACTIONS(4029), - [aux_sym_cmd_identifier_token25] = ACTIONS(4029), - [aux_sym_cmd_identifier_token26] = ACTIONS(4029), - [aux_sym_cmd_identifier_token27] = ACTIONS(4029), - [aux_sym_cmd_identifier_token28] = ACTIONS(4029), - [aux_sym_cmd_identifier_token29] = ACTIONS(4029), - [aux_sym_cmd_identifier_token30] = ACTIONS(4029), - [aux_sym_cmd_identifier_token31] = ACTIONS(4029), - [aux_sym_cmd_identifier_token32] = ACTIONS(4029), - [aux_sym_cmd_identifier_token33] = ACTIONS(4029), - [aux_sym_cmd_identifier_token34] = ACTIONS(4029), - [aux_sym_cmd_identifier_token35] = ACTIONS(4029), - [aux_sym_cmd_identifier_token36] = ACTIONS(4029), - [anon_sym_true] = ACTIONS(4029), - [anon_sym_false] = ACTIONS(4029), - [anon_sym_null] = ACTIONS(4029), - [aux_sym_cmd_identifier_token38] = ACTIONS(4029), - [aux_sym_cmd_identifier_token39] = ACTIONS(4029), - [aux_sym_cmd_identifier_token40] = ACTIONS(4029), - [sym__space] = ACTIONS(4031), - [anon_sym_LBRACK] = ACTIONS(4029), - [anon_sym_LPAREN] = ACTIONS(4029), - [anon_sym_DOLLAR] = ACTIONS(4029), - [anon_sym_DASH] = ACTIONS(4029), - [aux_sym_ctrl_match_token1] = ACTIONS(4029), - [anon_sym_DOT_DOT] = ACTIONS(4029), - [aux_sym_expr_unary_token1] = ACTIONS(4029), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4029), - [anon_sym_DOT_DOT_LT] = ACTIONS(4029), - [aux_sym__val_number_decimal_token1] = ACTIONS(4029), - [aux_sym__val_number_decimal_token2] = ACTIONS(4029), - [aux_sym__val_number_decimal_token3] = ACTIONS(4029), - [aux_sym__val_number_decimal_token4] = ACTIONS(4029), - [aux_sym__val_number_token1] = ACTIONS(4029), - [aux_sym__val_number_token2] = ACTIONS(4029), - [aux_sym__val_number_token3] = ACTIONS(4029), - [anon_sym_0b] = ACTIONS(4029), - [anon_sym_0o] = ACTIONS(4029), - [anon_sym_0x] = ACTIONS(4029), - [sym_val_date] = ACTIONS(4029), - [anon_sym_DQUOTE] = ACTIONS(4029), - [sym__str_single_quotes] = ACTIONS(4029), - [sym__str_back_ticks] = ACTIONS(4029), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4029), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4029), - [aux_sym_env_var_token1] = ACTIONS(4029), - [anon_sym_CARET] = ACTIONS(4029), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(1567), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_err_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_GT_PIPE] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), + [anon_sym_RPAREN] = ACTIONS(1567), + [anon_sym_RBRACE] = ACTIONS(1567), + [anon_sym_LPAREN2] = ACTIONS(1567), + [aux_sym_expr_binary_token1] = ACTIONS(1567), + [aux_sym_expr_binary_token2] = ACTIONS(1567), + [aux_sym_expr_binary_token3] = ACTIONS(1567), + [aux_sym_expr_binary_token4] = ACTIONS(1567), + [aux_sym_expr_binary_token5] = ACTIONS(1567), + [aux_sym_expr_binary_token6] = ACTIONS(1567), + [aux_sym_expr_binary_token7] = ACTIONS(1567), + [aux_sym_expr_binary_token8] = ACTIONS(1567), + [aux_sym_expr_binary_token9] = ACTIONS(1567), + [aux_sym_expr_binary_token10] = ACTIONS(1567), + [aux_sym_expr_binary_token11] = ACTIONS(1567), + [aux_sym_expr_binary_token12] = ACTIONS(1567), + [aux_sym_expr_binary_token13] = ACTIONS(1567), + [aux_sym_expr_binary_token14] = ACTIONS(1567), + [aux_sym_expr_binary_token15] = ACTIONS(1567), + [aux_sym_expr_binary_token16] = ACTIONS(1567), + [aux_sym_expr_binary_token17] = ACTIONS(1567), + [aux_sym_expr_binary_token18] = ACTIONS(1567), + [aux_sym_expr_binary_token19] = ACTIONS(1567), + [aux_sym_expr_binary_token20] = ACTIONS(1567), + [aux_sym_expr_binary_token21] = ACTIONS(1567), + [aux_sym_expr_binary_token22] = ACTIONS(1567), + [aux_sym_expr_binary_token23] = ACTIONS(1567), + [aux_sym_expr_binary_token24] = ACTIONS(1567), + [aux_sym_expr_binary_token25] = ACTIONS(1567), + [aux_sym_expr_binary_token26] = ACTIONS(1567), + [aux_sym_expr_binary_token27] = ACTIONS(1567), + [aux_sym_expr_binary_token28] = ACTIONS(1567), + [anon_sym_DOT_DOT2] = ACTIONS(1565), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), + [aux_sym__immediate_decimal_token2] = ACTIONS(4588), + [sym_filesize_unit] = ACTIONS(1567), + [sym_duration_unit] = ACTIONS(1567), + [anon_sym_err_GT] = ACTIONS(1565), + [anon_sym_out_GT] = ACTIONS(1565), + [anon_sym_e_GT] = ACTIONS(1565), + [anon_sym_o_GT] = ACTIONS(1565), + [anon_sym_err_PLUSout_GT] = ACTIONS(1565), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), + [anon_sym_o_PLUSe_GT] = ACTIONS(1565), + [anon_sym_e_PLUSo_GT] = ACTIONS(1565), + [anon_sym_err_GT_GT] = ACTIONS(1567), + [anon_sym_out_GT_GT] = ACTIONS(1567), + [anon_sym_e_GT_GT] = ACTIONS(1567), + [anon_sym_o_GT_GT] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), + [aux_sym_unquoted_token2] = ACTIONS(1565), + [anon_sym_POUND] = ACTIONS(247), }, [1250] = { [sym_comment] = STATE(1250), - [aux_sym_shebang_repeat1] = STATE(1250), - [aux_sym_cmd_identifier_token1] = ACTIONS(1755), - [aux_sym_cmd_identifier_token2] = ACTIONS(1757), - [aux_sym_cmd_identifier_token3] = ACTIONS(1757), - [aux_sym_cmd_identifier_token4] = ACTIONS(1757), - [aux_sym_cmd_identifier_token5] = ACTIONS(1757), - [aux_sym_cmd_identifier_token6] = ACTIONS(1757), - [aux_sym_cmd_identifier_token7] = ACTIONS(1757), - [aux_sym_cmd_identifier_token8] = ACTIONS(1757), - [aux_sym_cmd_identifier_token9] = ACTIONS(1755), - [aux_sym_cmd_identifier_token10] = ACTIONS(1757), - [aux_sym_cmd_identifier_token11] = ACTIONS(1757), - [aux_sym_cmd_identifier_token12] = ACTIONS(1757), - [aux_sym_cmd_identifier_token13] = ACTIONS(1755), - [aux_sym_cmd_identifier_token14] = ACTIONS(1757), - [aux_sym_cmd_identifier_token15] = ACTIONS(1755), - [aux_sym_cmd_identifier_token16] = ACTIONS(1757), - [aux_sym_cmd_identifier_token17] = ACTIONS(1757), - [aux_sym_cmd_identifier_token18] = ACTIONS(1757), - [aux_sym_cmd_identifier_token19] = ACTIONS(1757), - [aux_sym_cmd_identifier_token20] = ACTIONS(1757), - [aux_sym_cmd_identifier_token21] = ACTIONS(1757), - [aux_sym_cmd_identifier_token22] = ACTIONS(1757), - [aux_sym_cmd_identifier_token23] = ACTIONS(1755), - [aux_sym_cmd_identifier_token24] = ACTIONS(1757), - [aux_sym_cmd_identifier_token25] = ACTIONS(1757), - [aux_sym_cmd_identifier_token26] = ACTIONS(1757), - [aux_sym_cmd_identifier_token27] = ACTIONS(1757), - [aux_sym_cmd_identifier_token28] = ACTIONS(1757), - [aux_sym_cmd_identifier_token29] = ACTIONS(1757), - [aux_sym_cmd_identifier_token30] = ACTIONS(1757), - [aux_sym_cmd_identifier_token31] = ACTIONS(1757), - [aux_sym_cmd_identifier_token32] = ACTIONS(1757), - [aux_sym_cmd_identifier_token33] = ACTIONS(1757), - [aux_sym_cmd_identifier_token34] = ACTIONS(1757), - [aux_sym_cmd_identifier_token35] = ACTIONS(1757), - [aux_sym_cmd_identifier_token36] = ACTIONS(1755), + [ts_builtin_sym_end] = ACTIONS(1757), [anon_sym_true] = ACTIONS(1757), [anon_sym_false] = ACTIONS(1757), [anon_sym_null] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), + [aux_sym_cmd_identifier_token38] = ACTIONS(1757), [aux_sym_cmd_identifier_token39] = ACTIONS(1757), [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [sym__newline] = ACTIONS(4034), + [sym__newline] = ACTIONS(1757), + [anon_sym_SEMI] = ACTIONS(1757), + [anon_sym_PIPE] = ACTIONS(1757), + [anon_sym_err_GT_PIPE] = ACTIONS(1757), + [anon_sym_out_GT_PIPE] = ACTIONS(1757), + [anon_sym_e_GT_PIPE] = ACTIONS(1757), + [anon_sym_o_GT_PIPE] = ACTIONS(1757), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1757), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1757), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1757), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1757), [anon_sym_LBRACK] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1755), [anon_sym_DOLLAR] = ACTIONS(1755), + [anon_sym_DASH_DASH] = ACTIONS(1757), [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), [aux_sym_ctrl_match_token1] = ACTIONS(1757), [anon_sym_DOT_DOT] = ACTIONS(1755), - [aux_sym_expr_unary_token1] = ACTIONS(1757), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT] = ACTIONS(1757), + [anon_sym_LPAREN2] = ACTIONS(1757), + [anon_sym_DOT_DOT2] = ACTIONS(1755), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1755), + [anon_sym_DOT_DOT_LT] = ACTIONS(1755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), [aux_sym__val_number_decimal_token1] = ACTIONS(1755), [aux_sym__val_number_decimal_token2] = ACTIONS(1757), [aux_sym__val_number_decimal_token3] = ACTIONS(1757), @@ -198950,13464 +192588,13007 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1757), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), - [anon_sym_CARET] = ACTIONS(1757), + [anon_sym_err_GT] = ACTIONS(1755), + [anon_sym_out_GT] = ACTIONS(1755), + [anon_sym_e_GT] = ACTIONS(1755), + [anon_sym_o_GT] = ACTIONS(1755), + [anon_sym_err_PLUSout_GT] = ACTIONS(1755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), + [anon_sym_o_PLUSe_GT] = ACTIONS(1755), + [anon_sym_e_PLUSo_GT] = ACTIONS(1755), + [anon_sym_err_GT_GT] = ACTIONS(1757), + [anon_sym_out_GT_GT] = ACTIONS(1757), + [anon_sym_e_GT_GT] = ACTIONS(1757), + [anon_sym_o_GT_GT] = ACTIONS(1757), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), + [aux_sym_unquoted_token1] = ACTIONS(1755), + [aux_sym_unquoted_token2] = ACTIONS(1755), [anon_sym_POUND] = ACTIONS(247), }, [1251] = { [sym_comment] = STATE(1251), - [aux_sym_pipe_element_repeat1] = STATE(1249), - [aux_sym_cmd_identifier_token1] = ACTIONS(3945), - [aux_sym_cmd_identifier_token2] = ACTIONS(3945), - [aux_sym_cmd_identifier_token3] = ACTIONS(3945), - [aux_sym_cmd_identifier_token4] = ACTIONS(3945), - [aux_sym_cmd_identifier_token5] = ACTIONS(3945), - [aux_sym_cmd_identifier_token6] = ACTIONS(3945), - [aux_sym_cmd_identifier_token7] = ACTIONS(3945), - [aux_sym_cmd_identifier_token8] = ACTIONS(3945), - [aux_sym_cmd_identifier_token9] = ACTIONS(3945), - [aux_sym_cmd_identifier_token10] = ACTIONS(3945), - [aux_sym_cmd_identifier_token11] = ACTIONS(3945), - [aux_sym_cmd_identifier_token12] = ACTIONS(3945), - [aux_sym_cmd_identifier_token13] = ACTIONS(3945), - [aux_sym_cmd_identifier_token14] = ACTIONS(3945), - [aux_sym_cmd_identifier_token15] = ACTIONS(3945), - [aux_sym_cmd_identifier_token16] = ACTIONS(3945), - [aux_sym_cmd_identifier_token17] = ACTIONS(3945), - [aux_sym_cmd_identifier_token18] = ACTIONS(3945), - [aux_sym_cmd_identifier_token19] = ACTIONS(3945), - [aux_sym_cmd_identifier_token20] = ACTIONS(3945), - [aux_sym_cmd_identifier_token21] = ACTIONS(3945), - [aux_sym_cmd_identifier_token22] = ACTIONS(3945), - [aux_sym_cmd_identifier_token23] = ACTIONS(3945), - [aux_sym_cmd_identifier_token24] = ACTIONS(3945), - [aux_sym_cmd_identifier_token25] = ACTIONS(3945), - [aux_sym_cmd_identifier_token26] = ACTIONS(3945), - [aux_sym_cmd_identifier_token27] = ACTIONS(3945), - [aux_sym_cmd_identifier_token28] = ACTIONS(3945), - [aux_sym_cmd_identifier_token29] = ACTIONS(3945), - [aux_sym_cmd_identifier_token30] = ACTIONS(3945), - [aux_sym_cmd_identifier_token31] = ACTIONS(3945), - [aux_sym_cmd_identifier_token32] = ACTIONS(3945), - [aux_sym_cmd_identifier_token33] = ACTIONS(3945), - [aux_sym_cmd_identifier_token34] = ACTIONS(3945), - [aux_sym_cmd_identifier_token35] = ACTIONS(3945), - [aux_sym_cmd_identifier_token36] = ACTIONS(3945), - [anon_sym_true] = ACTIONS(3945), - [anon_sym_false] = ACTIONS(3945), - [anon_sym_null] = ACTIONS(3945), - [aux_sym_cmd_identifier_token38] = ACTIONS(3945), - [aux_sym_cmd_identifier_token39] = ACTIONS(3945), - [aux_sym_cmd_identifier_token40] = ACTIONS(3945), - [sym__space] = ACTIONS(4037), - [anon_sym_LBRACK] = ACTIONS(3945), - [anon_sym_LPAREN] = ACTIONS(3945), - [anon_sym_DOLLAR] = ACTIONS(3945), - [anon_sym_DASH] = ACTIONS(3945), - [aux_sym_ctrl_match_token1] = ACTIONS(3945), - [anon_sym_DOT_DOT] = ACTIONS(3945), - [aux_sym_expr_unary_token1] = ACTIONS(3945), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3945), - [anon_sym_DOT_DOT_LT] = ACTIONS(3945), - [aux_sym__val_number_decimal_token1] = ACTIONS(3945), - [aux_sym__val_number_decimal_token2] = ACTIONS(3945), - [aux_sym__val_number_decimal_token3] = ACTIONS(3945), - [aux_sym__val_number_decimal_token4] = ACTIONS(3945), - [aux_sym__val_number_token1] = ACTIONS(3945), - [aux_sym__val_number_token2] = ACTIONS(3945), - [aux_sym__val_number_token3] = ACTIONS(3945), - [anon_sym_0b] = ACTIONS(3945), - [anon_sym_0o] = ACTIONS(3945), - [anon_sym_0x] = ACTIONS(3945), - [sym_val_date] = ACTIONS(3945), - [anon_sym_DQUOTE] = ACTIONS(3945), - [sym__str_single_quotes] = ACTIONS(3945), - [sym__str_back_ticks] = ACTIONS(3945), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3945), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3945), - [aux_sym_env_var_token1] = ACTIONS(3945), - [anon_sym_CARET] = ACTIONS(3945), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token41] = ACTIONS(1497), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_RPAREN] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1499), + [aux_sym_expr_binary_token1] = ACTIONS(1499), + [aux_sym_expr_binary_token2] = ACTIONS(1499), + [aux_sym_expr_binary_token3] = ACTIONS(1499), + [aux_sym_expr_binary_token4] = ACTIONS(1499), + [aux_sym_expr_binary_token5] = ACTIONS(1499), + [aux_sym_expr_binary_token6] = ACTIONS(1499), + [aux_sym_expr_binary_token7] = ACTIONS(1499), + [aux_sym_expr_binary_token8] = ACTIONS(1499), + [aux_sym_expr_binary_token9] = ACTIONS(1499), + [aux_sym_expr_binary_token10] = ACTIONS(1499), + [aux_sym_expr_binary_token11] = ACTIONS(1499), + [aux_sym_expr_binary_token12] = ACTIONS(1499), + [aux_sym_expr_binary_token13] = ACTIONS(1499), + [aux_sym_expr_binary_token14] = ACTIONS(1499), + [aux_sym_expr_binary_token15] = ACTIONS(1499), + [aux_sym_expr_binary_token16] = ACTIONS(1499), + [aux_sym_expr_binary_token17] = ACTIONS(1499), + [aux_sym_expr_binary_token18] = ACTIONS(1499), + [aux_sym_expr_binary_token19] = ACTIONS(1499), + [aux_sym_expr_binary_token20] = ACTIONS(1499), + [aux_sym_expr_binary_token21] = ACTIONS(1499), + [aux_sym_expr_binary_token22] = ACTIONS(1499), + [aux_sym_expr_binary_token23] = ACTIONS(1499), + [aux_sym_expr_binary_token24] = ACTIONS(1499), + [aux_sym_expr_binary_token25] = ACTIONS(1499), + [aux_sym_expr_binary_token26] = ACTIONS(1499), + [aux_sym_expr_binary_token27] = ACTIONS(1499), + [aux_sym_expr_binary_token28] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1497), + [anon_sym_DOT] = ACTIONS(4590), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), + [aux_sym__immediate_decimal_token2] = ACTIONS(4592), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1499), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(247), }, [1252] = { - [sym_match_pattern] = STATE(7745), - [sym__match_pattern] = STATE(6318), - [sym__match_pattern_expression] = STATE(7519), - [sym__match_pattern_value] = STATE(6950), - [sym__match_pattern_list] = STATE(6957), - [sym__match_pattern_record] = STATE(6958), - [sym_expr_parenthesized] = STATE(6007), - [sym_val_range] = STATE(6950), - [sym__val_range] = STATE(8000), - [sym_val_nothing] = STATE(6978), - [sym_val_bool] = STATE(6785), - [sym_val_variable] = STATE(6011), - [sym_val_number] = STATE(6978), - [sym__val_number_decimal] = STATE(5584), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(6978), - [sym_val_filesize] = STATE(6978), - [sym_val_binary] = STATE(6978), - [sym_val_string] = STATE(6978), - [sym__str_double_quotes] = STATE(1851), - [sym_val_table] = STATE(6978), - [sym_unquoted] = STATE(7006), - [sym__unquoted_anonymous_prefix] = STATE(7741), [sym_comment] = STATE(1252), - [aux_sym_shebang_repeat1] = STATE(3108), - [anon_sym_true] = ACTIONS(3633), - [anon_sym_false] = ACTIONS(3633), - [anon_sym_null] = ACTIONS(3635), - [aux_sym_cmd_identifier_token38] = ACTIONS(3637), - [aux_sym_cmd_identifier_token39] = ACTIONS(3637), - [aux_sym_cmd_identifier_token40] = ACTIONS(3637), - [sym__newline] = ACTIONS(3639), - [anon_sym_LBRACK] = ACTIONS(3641), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_DOLLAR] = ACTIONS(3645), - [aux_sym_ctrl_match_token1] = ACTIONS(3647), - [anon_sym__] = ACTIONS(4039), - [anon_sym_DOT_DOT] = ACTIONS(3653), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3655), - [anon_sym_DOT_DOT_LT] = ACTIONS(3655), - [aux_sym__val_number_decimal_token1] = ACTIONS(3657), - [aux_sym__val_number_decimal_token2] = ACTIONS(3659), - [aux_sym__val_number_decimal_token3] = ACTIONS(3661), - [aux_sym__val_number_decimal_token4] = ACTIONS(3663), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3665), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_null] = ACTIONS(1058), + [aux_sym_cmd_identifier_token38] = ACTIONS(1058), + [aux_sym_cmd_identifier_token39] = ACTIONS(1058), + [aux_sym_cmd_identifier_token40] = ACTIONS(1058), + [sym__newline] = ACTIONS(1058), + [anon_sym_SEMI] = ACTIONS(1058), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_err_GT_PIPE] = ACTIONS(1058), + [anon_sym_out_GT_PIPE] = ACTIONS(1058), + [anon_sym_e_GT_PIPE] = ACTIONS(1058), + [anon_sym_o_GT_PIPE] = ACTIONS(1058), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1058), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1058), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1058), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_LPAREN] = ACTIONS(1058), + [anon_sym_RPAREN] = ACTIONS(1058), + [anon_sym_DOLLAR] = ACTIONS(1056), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1056), + [aux_sym_ctrl_match_token1] = ACTIONS(1058), + [anon_sym_RBRACE] = ACTIONS(1058), + [anon_sym_DOT_DOT] = ACTIONS(1056), + [anon_sym_DOT_DOT2] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1056), + [anon_sym_DOT_DOT_LT] = ACTIONS(1056), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1058), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1058), + [aux_sym__val_number_decimal_token1] = ACTIONS(1056), + [aux_sym__val_number_decimal_token2] = ACTIONS(1058), + [aux_sym__val_number_decimal_token3] = ACTIONS(1058), + [aux_sym__val_number_decimal_token4] = ACTIONS(1058), + [aux_sym__val_number_token1] = ACTIONS(1058), + [aux_sym__val_number_token2] = ACTIONS(1058), + [aux_sym__val_number_token3] = ACTIONS(1058), + [anon_sym_0b] = ACTIONS(1056), + [anon_sym_0o] = ACTIONS(1056), + [anon_sym_0x] = ACTIONS(1056), + [sym_val_date] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [sym__str_single_quotes] = ACTIONS(1058), + [sym__str_back_ticks] = ACTIONS(1058), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1058), + [anon_sym_err_GT] = ACTIONS(1056), + [anon_sym_out_GT] = ACTIONS(1056), + [anon_sym_e_GT] = ACTIONS(1056), + [anon_sym_o_GT] = ACTIONS(1056), + [anon_sym_err_PLUSout_GT] = ACTIONS(1056), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1056), + [anon_sym_o_PLUSe_GT] = ACTIONS(1056), + [anon_sym_e_PLUSo_GT] = ACTIONS(1056), + [anon_sym_err_GT_GT] = ACTIONS(1058), + [anon_sym_out_GT_GT] = ACTIONS(1058), + [anon_sym_e_GT_GT] = ACTIONS(1058), + [anon_sym_o_GT_GT] = ACTIONS(1058), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1058), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1058), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1058), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1058), + [aux_sym_unquoted_token1] = ACTIONS(1056), [anon_sym_POUND] = ACTIONS(247), }, [1253] = { [sym_comment] = STATE(1253), - [aux_sym_cmd_identifier_token1] = ACTIONS(1273), - [aux_sym_cmd_identifier_token2] = ACTIONS(1277), - [aux_sym_cmd_identifier_token3] = ACTIONS(1277), - [aux_sym_cmd_identifier_token4] = ACTIONS(1277), - [aux_sym_cmd_identifier_token5] = ACTIONS(1277), - [aux_sym_cmd_identifier_token6] = ACTIONS(1277), - [aux_sym_cmd_identifier_token7] = ACTIONS(1277), - [aux_sym_cmd_identifier_token8] = ACTIONS(1277), - [aux_sym_cmd_identifier_token9] = ACTIONS(1273), - [aux_sym_cmd_identifier_token10] = ACTIONS(1277), - [aux_sym_cmd_identifier_token11] = ACTIONS(1277), - [aux_sym_cmd_identifier_token12] = ACTIONS(1277), - [aux_sym_cmd_identifier_token13] = ACTIONS(1273), - [aux_sym_cmd_identifier_token14] = ACTIONS(1277), - [aux_sym_cmd_identifier_token15] = ACTIONS(1273), - [aux_sym_cmd_identifier_token16] = ACTIONS(1277), - [aux_sym_cmd_identifier_token17] = ACTIONS(1277), - [aux_sym_cmd_identifier_token18] = ACTIONS(1277), - [aux_sym_cmd_identifier_token19] = ACTIONS(1277), - [aux_sym_cmd_identifier_token20] = ACTIONS(1277), - [aux_sym_cmd_identifier_token21] = ACTIONS(1277), - [aux_sym_cmd_identifier_token22] = ACTIONS(1277), - [aux_sym_cmd_identifier_token23] = ACTIONS(1273), - [aux_sym_cmd_identifier_token24] = ACTIONS(1277), - [aux_sym_cmd_identifier_token25] = ACTIONS(1277), - [aux_sym_cmd_identifier_token26] = ACTIONS(1277), - [aux_sym_cmd_identifier_token27] = ACTIONS(1277), - [aux_sym_cmd_identifier_token28] = ACTIONS(1277), - [aux_sym_cmd_identifier_token29] = ACTIONS(1277), - [aux_sym_cmd_identifier_token30] = ACTIONS(1277), - [aux_sym_cmd_identifier_token31] = ACTIONS(1277), - [aux_sym_cmd_identifier_token32] = ACTIONS(1277), - [aux_sym_cmd_identifier_token33] = ACTIONS(1277), - [aux_sym_cmd_identifier_token34] = ACTIONS(1277), - [aux_sym_cmd_identifier_token35] = ACTIONS(1277), - [aux_sym_cmd_identifier_token36] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1277), - [anon_sym_false] = ACTIONS(1277), - [anon_sym_null] = ACTIONS(1277), - [aux_sym_cmd_identifier_token38] = ACTIONS(1273), - [aux_sym_cmd_identifier_token39] = ACTIONS(1277), - [aux_sym_cmd_identifier_token40] = ACTIONS(1277), - [sym__newline] = ACTIONS(1277), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(1277), - [anon_sym_DOLLAR] = ACTIONS(1273), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_if] = ACTIONS(1273), - [aux_sym_ctrl_match_token1] = ACTIONS(1277), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [aux_sym_expr_unary_token1] = ACTIONS(1277), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_DOT_DOT_LT] = ACTIONS(1277), - [aux_sym__val_number_decimal_token1] = ACTIONS(1273), - [aux_sym__val_number_decimal_token2] = ACTIONS(1277), - [aux_sym__val_number_decimal_token3] = ACTIONS(1277), - [aux_sym__val_number_decimal_token4] = ACTIONS(1277), - [aux_sym__val_number_token1] = ACTIONS(1277), - [aux_sym__val_number_token2] = ACTIONS(1277), - [aux_sym__val_number_token3] = ACTIONS(1277), - [anon_sym_0b] = ACTIONS(1273), - [anon_sym_0o] = ACTIONS(1273), - [anon_sym_0x] = ACTIONS(1273), - [sym_val_date] = ACTIONS(1277), - [anon_sym_DQUOTE] = ACTIONS(1277), - [sym__str_single_quotes] = ACTIONS(1277), - [sym__str_back_ticks] = ACTIONS(1277), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1277), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1277), - [anon_sym_CARET] = ACTIONS(1277), + [aux_sym_cmd_identifier_token41] = ACTIONS(1497), + [sym__newline] = ACTIONS(1497), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_EQ_GT] = ACTIONS(1499), + [aux_sym_expr_binary_token1] = ACTIONS(1499), + [aux_sym_expr_binary_token2] = ACTIONS(1499), + [aux_sym_expr_binary_token3] = ACTIONS(1499), + [aux_sym_expr_binary_token4] = ACTIONS(1499), + [aux_sym_expr_binary_token5] = ACTIONS(1499), + [aux_sym_expr_binary_token6] = ACTIONS(1499), + [aux_sym_expr_binary_token7] = ACTIONS(1499), + [aux_sym_expr_binary_token8] = ACTIONS(1499), + [aux_sym_expr_binary_token9] = ACTIONS(1499), + [aux_sym_expr_binary_token10] = ACTIONS(1499), + [aux_sym_expr_binary_token11] = ACTIONS(1499), + [aux_sym_expr_binary_token12] = ACTIONS(1499), + [aux_sym_expr_binary_token13] = ACTIONS(1499), + [aux_sym_expr_binary_token14] = ACTIONS(1499), + [aux_sym_expr_binary_token15] = ACTIONS(1499), + [aux_sym_expr_binary_token16] = ACTIONS(1499), + [aux_sym_expr_binary_token17] = ACTIONS(1499), + [aux_sym_expr_binary_token18] = ACTIONS(1499), + [aux_sym_expr_binary_token19] = ACTIONS(1499), + [aux_sym_expr_binary_token20] = ACTIONS(1499), + [aux_sym_expr_binary_token21] = ACTIONS(1499), + [aux_sym_expr_binary_token22] = ACTIONS(1499), + [aux_sym_expr_binary_token23] = ACTIONS(1499), + [aux_sym_expr_binary_token24] = ACTIONS(1499), + [aux_sym_expr_binary_token25] = ACTIONS(1499), + [aux_sym_expr_binary_token26] = ACTIONS(1499), + [aux_sym_expr_binary_token27] = ACTIONS(1499), + [aux_sym_expr_binary_token28] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), + [aux_sym__immediate_decimal_token2] = ACTIONS(4547), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1499), + [aux_sym_record_entry_token1] = ACTIONS(1499), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(247), }, [1254] = { - [sym__expr_parenthesized_immediate] = STATE(1673), - [sym__immediate_decimal] = STATE(1477), - [sym_val_variable] = STATE(1673), [sym_comment] = STATE(1254), - [ts_builtin_sym_end] = ACTIONS(1427), - [anon_sym_true] = ACTIONS(1427), - [anon_sym_false] = ACTIONS(1427), - [anon_sym_null] = ACTIONS(1427), - [aux_sym_cmd_identifier_token38] = ACTIONS(1427), - [aux_sym_cmd_identifier_token39] = ACTIONS(1427), - [aux_sym_cmd_identifier_token40] = ACTIONS(1427), - [sym__newline] = ACTIONS(1427), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_PIPE] = ACTIONS(1427), - [anon_sym_err_GT_PIPE] = ACTIONS(1427), - [anon_sym_out_GT_PIPE] = ACTIONS(1427), - [anon_sym_e_GT_PIPE] = ACTIONS(1427), - [anon_sym_o_GT_PIPE] = ACTIONS(1427), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1427), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1427), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1427), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1413), - [anon_sym_DOLLAR] = ACTIONS(2694), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1413), - [aux_sym_ctrl_match_token1] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_LPAREN2] = ACTIONS(4041), - [anon_sym_DOT] = ACTIONS(4043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1427), - [anon_sym_DOT_DOT_LT] = ACTIONS(1427), - [aux_sym__immediate_decimal_token1] = ACTIONS(4045), - [aux_sym__immediate_decimal_token3] = ACTIONS(4047), - [aux_sym__immediate_decimal_token4] = ACTIONS(4049), - [aux_sym__immediate_decimal_token5] = ACTIONS(4051), - [aux_sym__val_number_decimal_token1] = ACTIONS(1413), - [aux_sym__val_number_decimal_token2] = ACTIONS(1413), - [aux_sym__val_number_decimal_token3] = ACTIONS(1413), - [aux_sym__val_number_decimal_token4] = ACTIONS(1413), - [aux_sym__val_number_token1] = ACTIONS(1427), - [aux_sym__val_number_token2] = ACTIONS(1427), - [aux_sym__val_number_token3] = ACTIONS(1427), - [anon_sym_0b] = ACTIONS(1413), - [anon_sym_0o] = ACTIONS(1413), - [anon_sym_0x] = ACTIONS(1413), - [sym_val_date] = ACTIONS(1427), - [anon_sym_DQUOTE] = ACTIONS(1427), - [sym__str_single_quotes] = ACTIONS(1427), - [sym__str_back_ticks] = ACTIONS(1427), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1427), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1427), - [anon_sym_err_GT] = ACTIONS(1413), - [anon_sym_out_GT] = ACTIONS(1413), - [anon_sym_e_GT] = ACTIONS(1413), - [anon_sym_o_GT] = ACTIONS(1413), - [anon_sym_err_PLUSout_GT] = ACTIONS(1413), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1413), - [anon_sym_o_PLUSe_GT] = ACTIONS(1413), - [anon_sym_e_PLUSo_GT] = ACTIONS(1413), - [anon_sym_err_GT_GT] = ACTIONS(1427), - [anon_sym_out_GT_GT] = ACTIONS(1427), - [anon_sym_e_GT_GT] = ACTIONS(1427), - [anon_sym_o_GT_GT] = ACTIONS(1427), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1427), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1427), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1427), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1427), - [aux_sym_unquoted_token1] = ACTIONS(1413), - [aux_sym_unquoted_token2] = ACTIONS(1429), + [anon_sym_true] = ACTIONS(1062), + [anon_sym_false] = ACTIONS(1062), + [anon_sym_null] = ACTIONS(1062), + [aux_sym_cmd_identifier_token38] = ACTIONS(1062), + [aux_sym_cmd_identifier_token39] = ACTIONS(1062), + [aux_sym_cmd_identifier_token40] = ACTIONS(1062), + [sym__newline] = ACTIONS(1062), + [anon_sym_SEMI] = ACTIONS(1062), + [anon_sym_PIPE] = ACTIONS(1062), + [anon_sym_err_GT_PIPE] = ACTIONS(1062), + [anon_sym_out_GT_PIPE] = ACTIONS(1062), + [anon_sym_e_GT_PIPE] = ACTIONS(1062), + [anon_sym_o_GT_PIPE] = ACTIONS(1062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(1062), + [anon_sym_LPAREN] = ACTIONS(1062), + [anon_sym_RPAREN] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1060), + [anon_sym_DASH_DASH] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1060), + [aux_sym_ctrl_match_token1] = ACTIONS(1062), + [anon_sym_RBRACE] = ACTIONS(1062), + [anon_sym_DOT_DOT] = ACTIONS(1060), + [anon_sym_DOT_DOT2] = ACTIONS(1060), + [anon_sym_DOT] = ACTIONS(1060), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1060), + [anon_sym_DOT_DOT_LT] = ACTIONS(1060), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1062), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1062), + [aux_sym__val_number_decimal_token1] = ACTIONS(1060), + [aux_sym__val_number_decimal_token2] = ACTIONS(1062), + [aux_sym__val_number_decimal_token3] = ACTIONS(1062), + [aux_sym__val_number_decimal_token4] = ACTIONS(1062), + [aux_sym__val_number_token1] = ACTIONS(1062), + [aux_sym__val_number_token2] = ACTIONS(1062), + [aux_sym__val_number_token3] = ACTIONS(1062), + [anon_sym_0b] = ACTIONS(1060), + [anon_sym_0o] = ACTIONS(1060), + [anon_sym_0x] = ACTIONS(1060), + [sym_val_date] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1062), + [sym__str_single_quotes] = ACTIONS(1062), + [sym__str_back_ticks] = ACTIONS(1062), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1062), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1062), + [anon_sym_err_GT] = ACTIONS(1060), + [anon_sym_out_GT] = ACTIONS(1060), + [anon_sym_e_GT] = ACTIONS(1060), + [anon_sym_o_GT] = ACTIONS(1060), + [anon_sym_err_PLUSout_GT] = ACTIONS(1060), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1060), + [anon_sym_o_PLUSe_GT] = ACTIONS(1060), + [anon_sym_e_PLUSo_GT] = ACTIONS(1060), + [anon_sym_err_GT_GT] = ACTIONS(1062), + [anon_sym_out_GT_GT] = ACTIONS(1062), + [anon_sym_e_GT_GT] = ACTIONS(1062), + [anon_sym_o_GT_GT] = ACTIONS(1062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1062), + [aux_sym_unquoted_token1] = ACTIONS(1060), [anon_sym_POUND] = ACTIONS(247), }, [1255] = { - [sym_path] = STATE(1328), [sym_comment] = STATE(1255), - [aux_sym_cell_path_repeat1] = STATE(1260), - [anon_sym_EQ] = ACTIONS(951), - [anon_sym_PLUS_EQ] = ACTIONS(953), - [anon_sym_DASH_EQ] = ACTIONS(953), - [anon_sym_STAR_EQ] = ACTIONS(953), - [anon_sym_SLASH_EQ] = ACTIONS(953), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(953), - [sym__newline] = ACTIONS(953), - [anon_sym_SEMI] = ACTIONS(953), - [anon_sym_PIPE] = ACTIONS(953), - [anon_sym_err_GT_PIPE] = ACTIONS(953), - [anon_sym_out_GT_PIPE] = ACTIONS(953), - [anon_sym_e_GT_PIPE] = ACTIONS(953), - [anon_sym_o_GT_PIPE] = ACTIONS(953), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(953), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(953), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(953), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(953), - [anon_sym_RPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(953), - [anon_sym_RBRACE] = ACTIONS(953), - [aux_sym_expr_binary_token1] = ACTIONS(953), - [aux_sym_expr_binary_token2] = ACTIONS(953), - [aux_sym_expr_binary_token3] = ACTIONS(953), - [aux_sym_expr_binary_token4] = ACTIONS(953), - [aux_sym_expr_binary_token5] = ACTIONS(953), - [aux_sym_expr_binary_token6] = ACTIONS(953), - [aux_sym_expr_binary_token7] = ACTIONS(953), - [aux_sym_expr_binary_token8] = ACTIONS(953), - [aux_sym_expr_binary_token9] = ACTIONS(953), - [aux_sym_expr_binary_token10] = ACTIONS(953), - [aux_sym_expr_binary_token11] = ACTIONS(953), - [aux_sym_expr_binary_token12] = ACTIONS(953), - [aux_sym_expr_binary_token13] = ACTIONS(953), - [aux_sym_expr_binary_token14] = ACTIONS(953), - [aux_sym_expr_binary_token15] = ACTIONS(953), - [aux_sym_expr_binary_token16] = ACTIONS(953), - [aux_sym_expr_binary_token17] = ACTIONS(953), - [aux_sym_expr_binary_token18] = ACTIONS(953), - [aux_sym_expr_binary_token19] = ACTIONS(953), - [aux_sym_expr_binary_token20] = ACTIONS(953), - [aux_sym_expr_binary_token21] = ACTIONS(953), - [aux_sym_expr_binary_token22] = ACTIONS(953), - [aux_sym_expr_binary_token23] = ACTIONS(953), - [aux_sym_expr_binary_token24] = ACTIONS(953), - [aux_sym_expr_binary_token25] = ACTIONS(953), - [aux_sym_expr_binary_token26] = ACTIONS(953), - [aux_sym_expr_binary_token27] = ACTIONS(953), - [aux_sym_expr_binary_token28] = ACTIONS(953), - [anon_sym_DOT_DOT2] = ACTIONS(951), - [anon_sym_DOT] = ACTIONS(4014), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(953), - [anon_sym_DOT_DOT_LT2] = ACTIONS(953), - [anon_sym_err_GT] = ACTIONS(951), - [anon_sym_out_GT] = ACTIONS(951), - [anon_sym_e_GT] = ACTIONS(951), - [anon_sym_o_GT] = ACTIONS(951), - [anon_sym_err_PLUSout_GT] = ACTIONS(951), - [anon_sym_out_PLUSerr_GT] = ACTIONS(951), - [anon_sym_o_PLUSe_GT] = ACTIONS(951), - [anon_sym_e_PLUSo_GT] = ACTIONS(951), - [anon_sym_err_GT_GT] = ACTIONS(953), - [anon_sym_out_GT_GT] = ACTIONS(953), - [anon_sym_e_GT_GT] = ACTIONS(953), - [anon_sym_o_GT_GT] = ACTIONS(953), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(953), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(953), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(953), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(953), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_null] = ACTIONS(1054), + [aux_sym_cmd_identifier_token38] = ACTIONS(1054), + [aux_sym_cmd_identifier_token39] = ACTIONS(1054), + [aux_sym_cmd_identifier_token40] = ACTIONS(1054), + [sym__newline] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_PIPE] = ACTIONS(1054), + [anon_sym_err_GT_PIPE] = ACTIONS(1054), + [anon_sym_out_GT_PIPE] = ACTIONS(1054), + [anon_sym_e_GT_PIPE] = ACTIONS(1054), + [anon_sym_o_GT_PIPE] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1054), + [anon_sym_DOLLAR] = ACTIONS(1052), + [anon_sym_DASH_DASH] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1052), + [aux_sym_ctrl_match_token1] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1054), + [anon_sym_DOT_DOT] = ACTIONS(1052), + [anon_sym_DOT_DOT2] = ACTIONS(1052), + [anon_sym_DOT] = ACTIONS(1052), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1052), + [anon_sym_DOT_DOT_LT] = ACTIONS(1052), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1054), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1054), + [aux_sym__val_number_decimal_token1] = ACTIONS(1052), + [aux_sym__val_number_decimal_token2] = ACTIONS(1054), + [aux_sym__val_number_decimal_token3] = ACTIONS(1054), + [aux_sym__val_number_decimal_token4] = ACTIONS(1054), + [aux_sym__val_number_token1] = ACTIONS(1054), + [aux_sym__val_number_token2] = ACTIONS(1054), + [aux_sym__val_number_token3] = ACTIONS(1054), + [anon_sym_0b] = ACTIONS(1052), + [anon_sym_0o] = ACTIONS(1052), + [anon_sym_0x] = ACTIONS(1052), + [sym_val_date] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym__str_single_quotes] = ACTIONS(1054), + [sym__str_back_ticks] = ACTIONS(1054), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1054), + [anon_sym_err_GT] = ACTIONS(1052), + [anon_sym_out_GT] = ACTIONS(1052), + [anon_sym_e_GT] = ACTIONS(1052), + [anon_sym_o_GT] = ACTIONS(1052), + [anon_sym_err_PLUSout_GT] = ACTIONS(1052), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1052), + [anon_sym_o_PLUSe_GT] = ACTIONS(1052), + [anon_sym_e_PLUSo_GT] = ACTIONS(1052), + [anon_sym_err_GT_GT] = ACTIONS(1054), + [anon_sym_out_GT_GT] = ACTIONS(1054), + [anon_sym_e_GT_GT] = ACTIONS(1054), + [anon_sym_o_GT_GT] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1054), + [aux_sym_unquoted_token1] = ACTIONS(1052), [anon_sym_POUND] = ACTIONS(247), }, [1256] = { - [sym_path] = STATE(1299), [sym_comment] = STATE(1256), - [aux_sym_cell_path_repeat1] = STATE(1256), - [anon_sym_EQ] = ACTIONS(955), - [anon_sym_PLUS_EQ] = ACTIONS(957), - [anon_sym_DASH_EQ] = ACTIONS(957), - [anon_sym_STAR_EQ] = ACTIONS(957), - [anon_sym_SLASH_EQ] = ACTIONS(957), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(957), - [sym__newline] = ACTIONS(955), - [anon_sym_SEMI] = ACTIONS(957), - [anon_sym_PIPE] = ACTIONS(957), - [anon_sym_err_GT_PIPE] = ACTIONS(957), - [anon_sym_out_GT_PIPE] = ACTIONS(957), - [anon_sym_e_GT_PIPE] = ACTIONS(957), - [anon_sym_o_GT_PIPE] = ACTIONS(957), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(957), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(957), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(957), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(957), - [aux_sym_ctrl_match_token1] = ACTIONS(957), - [anon_sym_RBRACE] = ACTIONS(957), - [aux_sym_expr_binary_token1] = ACTIONS(957), - [aux_sym_expr_binary_token2] = ACTIONS(957), - [aux_sym_expr_binary_token3] = ACTIONS(957), - [aux_sym_expr_binary_token4] = ACTIONS(957), - [aux_sym_expr_binary_token5] = ACTIONS(957), - [aux_sym_expr_binary_token6] = ACTIONS(957), - [aux_sym_expr_binary_token7] = ACTIONS(957), - [aux_sym_expr_binary_token8] = ACTIONS(957), - [aux_sym_expr_binary_token9] = ACTIONS(957), - [aux_sym_expr_binary_token10] = ACTIONS(957), - [aux_sym_expr_binary_token11] = ACTIONS(957), - [aux_sym_expr_binary_token12] = ACTIONS(957), - [aux_sym_expr_binary_token13] = ACTIONS(957), - [aux_sym_expr_binary_token14] = ACTIONS(957), - [aux_sym_expr_binary_token15] = ACTIONS(957), - [aux_sym_expr_binary_token16] = ACTIONS(957), - [aux_sym_expr_binary_token17] = ACTIONS(957), - [aux_sym_expr_binary_token18] = ACTIONS(957), - [aux_sym_expr_binary_token19] = ACTIONS(957), - [aux_sym_expr_binary_token20] = ACTIONS(957), - [aux_sym_expr_binary_token21] = ACTIONS(957), - [aux_sym_expr_binary_token22] = ACTIONS(957), - [aux_sym_expr_binary_token23] = ACTIONS(957), - [aux_sym_expr_binary_token24] = ACTIONS(957), - [aux_sym_expr_binary_token25] = ACTIONS(957), - [aux_sym_expr_binary_token26] = ACTIONS(957), - [aux_sym_expr_binary_token27] = ACTIONS(957), - [aux_sym_expr_binary_token28] = ACTIONS(957), - [anon_sym_DOT_DOT2] = ACTIONS(955), - [anon_sym_DOT] = ACTIONS(4053), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(957), - [anon_sym_DOT_DOT_LT2] = ACTIONS(957), - [aux_sym_record_entry_token1] = ACTIONS(957), - [anon_sym_err_GT] = ACTIONS(955), - [anon_sym_out_GT] = ACTIONS(955), - [anon_sym_e_GT] = ACTIONS(955), - [anon_sym_o_GT] = ACTIONS(955), - [anon_sym_err_PLUSout_GT] = ACTIONS(955), - [anon_sym_out_PLUSerr_GT] = ACTIONS(955), - [anon_sym_o_PLUSe_GT] = ACTIONS(955), - [anon_sym_e_PLUSo_GT] = ACTIONS(955), - [anon_sym_err_GT_GT] = ACTIONS(957), - [anon_sym_out_GT_GT] = ACTIONS(957), - [anon_sym_e_GT_GT] = ACTIONS(957), - [anon_sym_o_GT_GT] = ACTIONS(957), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(957), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(957), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(957), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(957), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [aux_sym_cmd_identifier_token38] = ACTIONS(1645), + [aux_sym_cmd_identifier_token39] = ACTIONS(1645), + [aux_sym_cmd_identifier_token40] = ACTIONS(1645), + [sym__newline] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_err_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_GT_PIPE] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), + [anon_sym_LBRACK] = ACTIONS(1645), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_RPAREN] = ACTIONS(1645), + [anon_sym_DOLLAR] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_DASH] = ACTIONS(1643), + [aux_sym_ctrl_match_token1] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(1645), + [anon_sym_DOT_DOT] = ACTIONS(1643), + [anon_sym_LPAREN2] = ACTIONS(1645), + [anon_sym_DOT] = ACTIONS(4594), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1645), + [anon_sym_DOT_DOT_LT] = ACTIONS(1645), + [aux_sym__immediate_decimal_token2] = ACTIONS(4596), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1645), + [aux_sym__val_number_decimal_token3] = ACTIONS(1645), + [aux_sym__val_number_decimal_token4] = ACTIONS(1645), + [aux_sym__val_number_token1] = ACTIONS(1645), + [aux_sym__val_number_token2] = ACTIONS(1645), + [aux_sym__val_number_token3] = ACTIONS(1645), + [anon_sym_0b] = ACTIONS(1643), + [anon_sym_0o] = ACTIONS(1643), + [anon_sym_0x] = ACTIONS(1643), + [sym_val_date] = ACTIONS(1645), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym__str_single_quotes] = ACTIONS(1645), + [sym__str_back_ticks] = ACTIONS(1645), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1645), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1645), + [anon_sym_err_GT] = ACTIONS(1643), + [anon_sym_out_GT] = ACTIONS(1643), + [anon_sym_e_GT] = ACTIONS(1643), + [anon_sym_o_GT] = ACTIONS(1643), + [anon_sym_err_PLUSout_GT] = ACTIONS(1643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), + [anon_sym_o_PLUSe_GT] = ACTIONS(1643), + [anon_sym_e_PLUSo_GT] = ACTIONS(1643), + [anon_sym_err_GT_GT] = ACTIONS(1645), + [anon_sym_out_GT_GT] = ACTIONS(1645), + [anon_sym_e_GT_GT] = ACTIONS(1645), + [anon_sym_o_GT_GT] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [aux_sym_unquoted_token1] = ACTIONS(1643), + [aux_sym_unquoted_token2] = ACTIONS(1643), [anon_sym_POUND] = ACTIONS(247), }, [1257] = { + [sym_cell_path] = STATE(1544), + [sym_path] = STATE(1532), [sym_comment] = STATE(1257), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [anon_sym_null] = ACTIONS(1483), - [aux_sym_cmd_identifier_token38] = ACTIONS(1483), - [aux_sym_cmd_identifier_token39] = ACTIONS(1483), - [aux_sym_cmd_identifier_token40] = ACTIONS(1483), - [sym__newline] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_err_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_GT_PIPE] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_LPAREN] = ACTIONS(1481), - [anon_sym_RPAREN] = ACTIONS(1483), - [anon_sym_DOLLAR] = ACTIONS(1481), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1481), - [aux_sym_ctrl_match_token1] = ACTIONS(1483), - [anon_sym_RBRACE] = ACTIONS(1483), - [anon_sym_DOT_DOT] = ACTIONS(1481), - [anon_sym_LPAREN2] = ACTIONS(1483), - [anon_sym_DOT_DOT2] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), - [anon_sym_DOT_DOT_LT] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), - [aux_sym__immediate_decimal_token1] = ACTIONS(4056), - [aux_sym__immediate_decimal_token2] = ACTIONS(4058), - [aux_sym__val_number_decimal_token1] = ACTIONS(1481), - [aux_sym__val_number_decimal_token2] = ACTIONS(1483), - [aux_sym__val_number_decimal_token3] = ACTIONS(1483), - [aux_sym__val_number_decimal_token4] = ACTIONS(1483), - [aux_sym__val_number_token1] = ACTIONS(1483), - [aux_sym__val_number_token2] = ACTIONS(1483), - [aux_sym__val_number_token3] = ACTIONS(1483), - [anon_sym_0b] = ACTIONS(1481), - [sym_filesize_unit] = ACTIONS(1483), - [sym_duration_unit] = ACTIONS(1483), - [anon_sym_0o] = ACTIONS(1481), - [anon_sym_0x] = ACTIONS(1481), - [sym_val_date] = ACTIONS(1483), - [anon_sym_DQUOTE] = ACTIONS(1483), - [sym__str_single_quotes] = ACTIONS(1483), - [sym__str_back_ticks] = ACTIONS(1483), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1483), - [anon_sym_err_GT] = ACTIONS(1481), - [anon_sym_out_GT] = ACTIONS(1481), - [anon_sym_e_GT] = ACTIONS(1481), - [anon_sym_o_GT] = ACTIONS(1481), - [anon_sym_err_PLUSout_GT] = ACTIONS(1481), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), - [anon_sym_o_PLUSe_GT] = ACTIONS(1481), - [anon_sym_e_PLUSo_GT] = ACTIONS(1481), - [anon_sym_err_GT_GT] = ACTIONS(1483), - [anon_sym_out_GT_GT] = ACTIONS(1483), - [anon_sym_e_GT_GT] = ACTIONS(1483), - [anon_sym_o_GT_GT] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), - [aux_sym_unquoted_token1] = ACTIONS(1481), - [aux_sym_unquoted_token2] = ACTIONS(1481), + [aux_sym_cell_path_repeat1] = STATE(1374), + [anon_sym_true] = ACTIONS(1959), + [anon_sym_false] = ACTIONS(1959), + [anon_sym_null] = ACTIONS(1959), + [aux_sym_cmd_identifier_token38] = ACTIONS(1959), + [aux_sym_cmd_identifier_token39] = ACTIONS(1959), + [aux_sym_cmd_identifier_token40] = ACTIONS(1959), + [sym__newline] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1959), + [anon_sym_PIPE] = ACTIONS(1959), + [anon_sym_err_GT_PIPE] = ACTIONS(1959), + [anon_sym_out_GT_PIPE] = ACTIONS(1959), + [anon_sym_e_GT_PIPE] = ACTIONS(1959), + [anon_sym_o_GT_PIPE] = ACTIONS(1959), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1959), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1959), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1959), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1959), + [anon_sym_LBRACK] = ACTIONS(1959), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_RPAREN] = ACTIONS(1959), + [anon_sym_DOLLAR] = ACTIONS(1957), + [anon_sym_DASH_DASH] = ACTIONS(1959), + [anon_sym_DASH] = ACTIONS(1957), + [aux_sym_ctrl_match_token1] = ACTIONS(1959), + [anon_sym_RBRACE] = ACTIONS(1959), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1957), + [aux_sym__val_number_decimal_token2] = ACTIONS(1959), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [aux_sym__val_number_token1] = ACTIONS(1959), + [aux_sym__val_number_token2] = ACTIONS(1959), + [aux_sym__val_number_token3] = ACTIONS(1959), + [anon_sym_0b] = ACTIONS(1957), + [anon_sym_0o] = ACTIONS(1957), + [anon_sym_0x] = ACTIONS(1957), + [sym_val_date] = ACTIONS(1959), + [anon_sym_DQUOTE] = ACTIONS(1959), + [sym__str_single_quotes] = ACTIONS(1959), + [sym__str_back_ticks] = ACTIONS(1959), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1959), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1959), + [anon_sym_err_GT] = ACTIONS(1957), + [anon_sym_out_GT] = ACTIONS(1957), + [anon_sym_e_GT] = ACTIONS(1957), + [anon_sym_o_GT] = ACTIONS(1957), + [anon_sym_err_PLUSout_GT] = ACTIONS(1957), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1957), + [anon_sym_o_PLUSe_GT] = ACTIONS(1957), + [anon_sym_e_PLUSo_GT] = ACTIONS(1957), + [anon_sym_err_GT_GT] = ACTIONS(1959), + [anon_sym_out_GT_GT] = ACTIONS(1959), + [anon_sym_e_GT_GT] = ACTIONS(1959), + [anon_sym_o_GT_GT] = ACTIONS(1959), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1959), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1959), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1959), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1959), + [aux_sym_unquoted_token1] = ACTIONS(1957), [anon_sym_POUND] = ACTIONS(247), }, [1258] = { - [sym__expr_parenthesized_immediate] = STATE(1863), - [sym__immediate_decimal] = STATE(1613), - [sym_val_variable] = STATE(1863), + [sym_cell_path] = STATE(1548), + [sym_path] = STATE(1532), [sym_comment] = STATE(1258), - [anon_sym_true] = ACTIONS(1455), - [anon_sym_false] = ACTIONS(1455), - [anon_sym_null] = ACTIONS(1455), - [aux_sym_cmd_identifier_token38] = ACTIONS(1455), - [aux_sym_cmd_identifier_token39] = ACTIONS(1455), - [aux_sym_cmd_identifier_token40] = ACTIONS(1455), - [sym__newline] = ACTIONS(1455), - [anon_sym_SEMI] = ACTIONS(1455), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_err_GT_PIPE] = ACTIONS(1455), - [anon_sym_out_GT_PIPE] = ACTIONS(1455), - [anon_sym_e_GT_PIPE] = ACTIONS(1455), - [anon_sym_o_GT_PIPE] = ACTIONS(1455), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1455), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1455), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1455), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1455), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1443), - [anon_sym_RPAREN] = ACTIONS(1455), - [anon_sym_DOLLAR] = ACTIONS(4060), - [anon_sym_DASH_DASH] = ACTIONS(1455), - [anon_sym_DASH] = ACTIONS(1443), - [aux_sym_ctrl_match_token1] = ACTIONS(1455), - [anon_sym_RBRACE] = ACTIONS(1455), - [anon_sym_DOT_DOT] = ACTIONS(1443), - [anon_sym_LPAREN2] = ACTIONS(4062), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1455), - [anon_sym_DOT_DOT_LT] = ACTIONS(1455), - [aux_sym__immediate_decimal_token1] = ACTIONS(4064), - [aux_sym__immediate_decimal_token3] = ACTIONS(4066), - [aux_sym__immediate_decimal_token4] = ACTIONS(4068), - [aux_sym__immediate_decimal_token5] = ACTIONS(4070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1443), - [aux_sym__val_number_decimal_token2] = ACTIONS(1443), - [aux_sym__val_number_decimal_token3] = ACTIONS(1443), - [aux_sym__val_number_decimal_token4] = ACTIONS(1443), - [aux_sym__val_number_token1] = ACTIONS(1455), - [aux_sym__val_number_token2] = ACTIONS(1455), - [aux_sym__val_number_token3] = ACTIONS(1455), - [anon_sym_0b] = ACTIONS(1443), - [anon_sym_0o] = ACTIONS(1443), - [anon_sym_0x] = ACTIONS(1443), - [sym_val_date] = ACTIONS(1455), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym__str_single_quotes] = ACTIONS(1455), - [sym__str_back_ticks] = ACTIONS(1455), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1455), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1455), - [anon_sym_err_GT] = ACTIONS(1443), - [anon_sym_out_GT] = ACTIONS(1443), - [anon_sym_e_GT] = ACTIONS(1443), - [anon_sym_o_GT] = ACTIONS(1443), - [anon_sym_err_PLUSout_GT] = ACTIONS(1443), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1443), - [anon_sym_o_PLUSe_GT] = ACTIONS(1443), - [anon_sym_e_PLUSo_GT] = ACTIONS(1443), - [anon_sym_err_GT_GT] = ACTIONS(1455), - [anon_sym_out_GT_GT] = ACTIONS(1455), - [anon_sym_e_GT_GT] = ACTIONS(1455), - [anon_sym_o_GT_GT] = ACTIONS(1455), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1455), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1455), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1455), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1455), - [aux_sym_unquoted_token1] = ACTIONS(1443), - [aux_sym_unquoted_token2] = ACTIONS(1457), + [aux_sym_cell_path_repeat1] = STATE(1374), + [anon_sym_true] = ACTIONS(1963), + [anon_sym_false] = ACTIONS(1963), + [anon_sym_null] = ACTIONS(1963), + [aux_sym_cmd_identifier_token38] = ACTIONS(1963), + [aux_sym_cmd_identifier_token39] = ACTIONS(1963), + [aux_sym_cmd_identifier_token40] = ACTIONS(1963), + [sym__newline] = ACTIONS(1963), + [anon_sym_SEMI] = ACTIONS(1963), + [anon_sym_PIPE] = ACTIONS(1963), + [anon_sym_err_GT_PIPE] = ACTIONS(1963), + [anon_sym_out_GT_PIPE] = ACTIONS(1963), + [anon_sym_e_GT_PIPE] = ACTIONS(1963), + [anon_sym_o_GT_PIPE] = ACTIONS(1963), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1963), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1963), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1963), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1963), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_LPAREN] = ACTIONS(1963), + [anon_sym_RPAREN] = ACTIONS(1963), + [anon_sym_DOLLAR] = ACTIONS(1961), + [anon_sym_DASH_DASH] = ACTIONS(1963), + [anon_sym_DASH] = ACTIONS(1961), + [aux_sym_ctrl_match_token1] = ACTIONS(1963), + [anon_sym_RBRACE] = ACTIONS(1963), + [anon_sym_DOT_DOT] = ACTIONS(1961), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1963), + [aux_sym__val_number_decimal_token4] = ACTIONS(1963), + [aux_sym__val_number_token1] = ACTIONS(1963), + [aux_sym__val_number_token2] = ACTIONS(1963), + [aux_sym__val_number_token3] = ACTIONS(1963), + [anon_sym_0b] = ACTIONS(1961), + [anon_sym_0o] = ACTIONS(1961), + [anon_sym_0x] = ACTIONS(1961), + [sym_val_date] = ACTIONS(1963), + [anon_sym_DQUOTE] = ACTIONS(1963), + [sym__str_single_quotes] = ACTIONS(1963), + [sym__str_back_ticks] = ACTIONS(1963), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1963), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1963), + [anon_sym_err_GT] = ACTIONS(1961), + [anon_sym_out_GT] = ACTIONS(1961), + [anon_sym_e_GT] = ACTIONS(1961), + [anon_sym_o_GT] = ACTIONS(1961), + [anon_sym_err_PLUSout_GT] = ACTIONS(1961), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1961), + [anon_sym_o_PLUSe_GT] = ACTIONS(1961), + [anon_sym_e_PLUSo_GT] = ACTIONS(1961), + [anon_sym_err_GT_GT] = ACTIONS(1963), + [anon_sym_out_GT_GT] = ACTIONS(1963), + [anon_sym_e_GT_GT] = ACTIONS(1963), + [anon_sym_o_GT_GT] = ACTIONS(1963), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1963), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1963), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1963), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1963), + [aux_sym_unquoted_token1] = ACTIONS(1961), [anon_sym_POUND] = ACTIONS(247), }, [1259] = { - [sym_path] = STATE(1299), [sym_comment] = STATE(1259), - [aux_sym_cell_path_repeat1] = STATE(1256), - [anon_sym_EQ] = ACTIONS(951), - [anon_sym_PLUS_EQ] = ACTIONS(953), - [anon_sym_DASH_EQ] = ACTIONS(953), - [anon_sym_STAR_EQ] = ACTIONS(953), - [anon_sym_SLASH_EQ] = ACTIONS(953), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(953), - [sym__newline] = ACTIONS(951), - [anon_sym_SEMI] = ACTIONS(953), - [anon_sym_PIPE] = ACTIONS(953), - [anon_sym_err_GT_PIPE] = ACTIONS(953), - [anon_sym_out_GT_PIPE] = ACTIONS(953), - [anon_sym_e_GT_PIPE] = ACTIONS(953), - [anon_sym_o_GT_PIPE] = ACTIONS(953), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(953), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(953), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(953), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(953), - [aux_sym_ctrl_match_token1] = ACTIONS(953), - [anon_sym_RBRACE] = ACTIONS(953), - [aux_sym_expr_binary_token1] = ACTIONS(953), - [aux_sym_expr_binary_token2] = ACTIONS(953), - [aux_sym_expr_binary_token3] = ACTIONS(953), - [aux_sym_expr_binary_token4] = ACTIONS(953), - [aux_sym_expr_binary_token5] = ACTIONS(953), - [aux_sym_expr_binary_token6] = ACTIONS(953), - [aux_sym_expr_binary_token7] = ACTIONS(953), - [aux_sym_expr_binary_token8] = ACTIONS(953), - [aux_sym_expr_binary_token9] = ACTIONS(953), - [aux_sym_expr_binary_token10] = ACTIONS(953), - [aux_sym_expr_binary_token11] = ACTIONS(953), - [aux_sym_expr_binary_token12] = ACTIONS(953), - [aux_sym_expr_binary_token13] = ACTIONS(953), - [aux_sym_expr_binary_token14] = ACTIONS(953), - [aux_sym_expr_binary_token15] = ACTIONS(953), - [aux_sym_expr_binary_token16] = ACTIONS(953), - [aux_sym_expr_binary_token17] = ACTIONS(953), - [aux_sym_expr_binary_token18] = ACTIONS(953), - [aux_sym_expr_binary_token19] = ACTIONS(953), - [aux_sym_expr_binary_token20] = ACTIONS(953), - [aux_sym_expr_binary_token21] = ACTIONS(953), - [aux_sym_expr_binary_token22] = ACTIONS(953), - [aux_sym_expr_binary_token23] = ACTIONS(953), - [aux_sym_expr_binary_token24] = ACTIONS(953), - [aux_sym_expr_binary_token25] = ACTIONS(953), - [aux_sym_expr_binary_token26] = ACTIONS(953), - [aux_sym_expr_binary_token27] = ACTIONS(953), - [aux_sym_expr_binary_token28] = ACTIONS(953), - [anon_sym_DOT_DOT2] = ACTIONS(951), - [anon_sym_DOT] = ACTIONS(4021), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(953), - [anon_sym_DOT_DOT_LT2] = ACTIONS(953), - [aux_sym_record_entry_token1] = ACTIONS(953), - [anon_sym_err_GT] = ACTIONS(951), - [anon_sym_out_GT] = ACTIONS(951), - [anon_sym_e_GT] = ACTIONS(951), - [anon_sym_o_GT] = ACTIONS(951), - [anon_sym_err_PLUSout_GT] = ACTIONS(951), - [anon_sym_out_PLUSerr_GT] = ACTIONS(951), - [anon_sym_o_PLUSe_GT] = ACTIONS(951), - [anon_sym_e_PLUSo_GT] = ACTIONS(951), - [anon_sym_err_GT_GT] = ACTIONS(953), - [anon_sym_out_GT_GT] = ACTIONS(953), - [anon_sym_e_GT_GT] = ACTIONS(953), - [anon_sym_o_GT_GT] = ACTIONS(953), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(953), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(953), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(953), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(953), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [aux_sym_cmd_identifier_token38] = ACTIONS(1645), + [aux_sym_cmd_identifier_token39] = ACTIONS(1645), + [aux_sym_cmd_identifier_token40] = ACTIONS(1645), + [sym__newline] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_err_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_GT_PIPE] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), + [anon_sym_LBRACK] = ACTIONS(1645), + [anon_sym_LPAREN] = ACTIONS(1645), + [anon_sym_RPAREN] = ACTIONS(1645), + [anon_sym_DOLLAR] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_DASH] = ACTIONS(1643), + [aux_sym_ctrl_match_token1] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(1645), + [anon_sym_DOT_DOT] = ACTIONS(1643), + [anon_sym_DOT_DOT2] = ACTIONS(1643), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), + [anon_sym_DOT_DOT_LT] = ACTIONS(1643), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), + [aux_sym__immediate_decimal_token2] = ACTIONS(4521), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1645), + [aux_sym__val_number_decimal_token3] = ACTIONS(1645), + [aux_sym__val_number_decimal_token4] = ACTIONS(1645), + [aux_sym__val_number_token1] = ACTIONS(1645), + [aux_sym__val_number_token2] = ACTIONS(1645), + [aux_sym__val_number_token3] = ACTIONS(1645), + [anon_sym_0b] = ACTIONS(1643), + [anon_sym_0o] = ACTIONS(1643), + [anon_sym_0x] = ACTIONS(1643), + [sym_val_date] = ACTIONS(1645), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym__str_single_quotes] = ACTIONS(1645), + [sym__str_back_ticks] = ACTIONS(1645), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1645), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1645), + [anon_sym_err_GT] = ACTIONS(1643), + [anon_sym_out_GT] = ACTIONS(1643), + [anon_sym_e_GT] = ACTIONS(1643), + [anon_sym_o_GT] = ACTIONS(1643), + [anon_sym_err_PLUSout_GT] = ACTIONS(1643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), + [anon_sym_o_PLUSe_GT] = ACTIONS(1643), + [anon_sym_e_PLUSo_GT] = ACTIONS(1643), + [anon_sym_err_GT_GT] = ACTIONS(1645), + [anon_sym_out_GT_GT] = ACTIONS(1645), + [anon_sym_e_GT_GT] = ACTIONS(1645), + [anon_sym_o_GT_GT] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [aux_sym_unquoted_token1] = ACTIONS(1643), [anon_sym_POUND] = ACTIONS(247), }, [1260] = { - [sym_path] = STATE(1328), [sym_comment] = STATE(1260), - [aux_sym_cell_path_repeat1] = STATE(1260), - [anon_sym_EQ] = ACTIONS(955), - [anon_sym_PLUS_EQ] = ACTIONS(957), - [anon_sym_DASH_EQ] = ACTIONS(957), - [anon_sym_STAR_EQ] = ACTIONS(957), - [anon_sym_SLASH_EQ] = ACTIONS(957), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(957), - [sym__newline] = ACTIONS(957), - [anon_sym_SEMI] = ACTIONS(957), - [anon_sym_PIPE] = ACTIONS(957), - [anon_sym_err_GT_PIPE] = ACTIONS(957), - [anon_sym_out_GT_PIPE] = ACTIONS(957), - [anon_sym_e_GT_PIPE] = ACTIONS(957), - [anon_sym_o_GT_PIPE] = ACTIONS(957), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(957), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(957), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(957), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(957), - [anon_sym_RPAREN] = ACTIONS(957), - [anon_sym_COMMA] = ACTIONS(957), - [anon_sym_RBRACE] = ACTIONS(957), - [aux_sym_expr_binary_token1] = ACTIONS(957), - [aux_sym_expr_binary_token2] = ACTIONS(957), - [aux_sym_expr_binary_token3] = ACTIONS(957), - [aux_sym_expr_binary_token4] = ACTIONS(957), - [aux_sym_expr_binary_token5] = ACTIONS(957), - [aux_sym_expr_binary_token6] = ACTIONS(957), - [aux_sym_expr_binary_token7] = ACTIONS(957), - [aux_sym_expr_binary_token8] = ACTIONS(957), - [aux_sym_expr_binary_token9] = ACTIONS(957), - [aux_sym_expr_binary_token10] = ACTIONS(957), - [aux_sym_expr_binary_token11] = ACTIONS(957), - [aux_sym_expr_binary_token12] = ACTIONS(957), - [aux_sym_expr_binary_token13] = ACTIONS(957), - [aux_sym_expr_binary_token14] = ACTIONS(957), - [aux_sym_expr_binary_token15] = ACTIONS(957), - [aux_sym_expr_binary_token16] = ACTIONS(957), - [aux_sym_expr_binary_token17] = ACTIONS(957), - [aux_sym_expr_binary_token18] = ACTIONS(957), - [aux_sym_expr_binary_token19] = ACTIONS(957), - [aux_sym_expr_binary_token20] = ACTIONS(957), - [aux_sym_expr_binary_token21] = ACTIONS(957), - [aux_sym_expr_binary_token22] = ACTIONS(957), - [aux_sym_expr_binary_token23] = ACTIONS(957), - [aux_sym_expr_binary_token24] = ACTIONS(957), - [aux_sym_expr_binary_token25] = ACTIONS(957), - [aux_sym_expr_binary_token26] = ACTIONS(957), - [aux_sym_expr_binary_token27] = ACTIONS(957), - [aux_sym_expr_binary_token28] = ACTIONS(957), - [anon_sym_DOT_DOT2] = ACTIONS(955), - [anon_sym_DOT] = ACTIONS(4072), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(957), - [anon_sym_DOT_DOT_LT2] = ACTIONS(957), - [anon_sym_err_GT] = ACTIONS(955), - [anon_sym_out_GT] = ACTIONS(955), - [anon_sym_e_GT] = ACTIONS(955), - [anon_sym_o_GT] = ACTIONS(955), - [anon_sym_err_PLUSout_GT] = ACTIONS(955), - [anon_sym_out_PLUSerr_GT] = ACTIONS(955), - [anon_sym_o_PLUSe_GT] = ACTIONS(955), - [anon_sym_e_PLUSo_GT] = ACTIONS(955), - [anon_sym_err_GT_GT] = ACTIONS(957), - [anon_sym_out_GT_GT] = ACTIONS(957), - [anon_sym_e_GT_GT] = ACTIONS(957), - [anon_sym_o_GT_GT] = ACTIONS(957), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(957), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(957), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(957), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(957), + [aux_sym_cmd_identifier_token41] = ACTIONS(1517), + [sym__newline] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1519), + [anon_sym_err_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_GT_PIPE] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), + [anon_sym_RPAREN] = ACTIONS(1519), + [anon_sym_RBRACE] = ACTIONS(1519), + [aux_sym_expr_binary_token1] = ACTIONS(1519), + [aux_sym_expr_binary_token2] = ACTIONS(1519), + [aux_sym_expr_binary_token3] = ACTIONS(1519), + [aux_sym_expr_binary_token4] = ACTIONS(1519), + [aux_sym_expr_binary_token5] = ACTIONS(1519), + [aux_sym_expr_binary_token6] = ACTIONS(1519), + [aux_sym_expr_binary_token7] = ACTIONS(1519), + [aux_sym_expr_binary_token8] = ACTIONS(1519), + [aux_sym_expr_binary_token9] = ACTIONS(1519), + [aux_sym_expr_binary_token10] = ACTIONS(1519), + [aux_sym_expr_binary_token11] = ACTIONS(1519), + [aux_sym_expr_binary_token12] = ACTIONS(1519), + [aux_sym_expr_binary_token13] = ACTIONS(1519), + [aux_sym_expr_binary_token14] = ACTIONS(1519), + [aux_sym_expr_binary_token15] = ACTIONS(1519), + [aux_sym_expr_binary_token16] = ACTIONS(1519), + [aux_sym_expr_binary_token17] = ACTIONS(1519), + [aux_sym_expr_binary_token18] = ACTIONS(1519), + [aux_sym_expr_binary_token19] = ACTIONS(1519), + [aux_sym_expr_binary_token20] = ACTIONS(1519), + [aux_sym_expr_binary_token21] = ACTIONS(1519), + [aux_sym_expr_binary_token22] = ACTIONS(1519), + [aux_sym_expr_binary_token23] = ACTIONS(1519), + [aux_sym_expr_binary_token24] = ACTIONS(1519), + [aux_sym_expr_binary_token25] = ACTIONS(1519), + [aux_sym_expr_binary_token26] = ACTIONS(1519), + [aux_sym_expr_binary_token27] = ACTIONS(1519), + [aux_sym_expr_binary_token28] = ACTIONS(1519), + [anon_sym_DOT_DOT2] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), + [aux_sym__immediate_decimal_token1] = ACTIONS(4600), + [aux_sym__immediate_decimal_token2] = ACTIONS(4602), + [sym_filesize_unit] = ACTIONS(1519), + [sym_duration_unit] = ACTIONS(1519), + [anon_sym_err_GT] = ACTIONS(1517), + [anon_sym_out_GT] = ACTIONS(1517), + [anon_sym_e_GT] = ACTIONS(1517), + [anon_sym_o_GT] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT] = ACTIONS(1517), + [anon_sym_err_GT_GT] = ACTIONS(1519), + [anon_sym_out_GT_GT] = ACTIONS(1519), + [anon_sym_e_GT_GT] = ACTIONS(1519), + [anon_sym_o_GT_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), [anon_sym_POUND] = ACTIONS(247), }, [1261] = { - [sym_cell_path] = STATE(1420), - [sym_path] = STATE(1399), + [sym_cell_path] = STATE(1313), + [sym_path] = STATE(1116), [sym_comment] = STATE(1261), - [aux_sym_cell_path_repeat1] = STATE(1288), - [anon_sym_EQ] = ACTIONS(945), - [anon_sym_PLUS_EQ] = ACTIONS(947), - [anon_sym_DASH_EQ] = ACTIONS(947), - [anon_sym_STAR_EQ] = ACTIONS(947), - [anon_sym_SLASH_EQ] = ACTIONS(947), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(947), - [sym__newline] = ACTIONS(945), - [anon_sym_SEMI] = ACTIONS(947), - [anon_sym_PIPE] = ACTIONS(947), - [anon_sym_err_GT_PIPE] = ACTIONS(947), - [anon_sym_out_GT_PIPE] = ACTIONS(947), - [anon_sym_e_GT_PIPE] = ACTIONS(947), - [anon_sym_o_GT_PIPE] = ACTIONS(947), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(947), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(947), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(947), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(947), - [aux_sym_ctrl_match_token1] = ACTIONS(947), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(947), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(947), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(947), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(947), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(947), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(947), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(947), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(947), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(947), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(947), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(947), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(947), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(947), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(947), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(947), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(947), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(947), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(947), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(947), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(947), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(947), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(947), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(947), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(947), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(947), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(947), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(947), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(947), - [anon_sym_DOT_DOT2] = ACTIONS(945), - [anon_sym_DOT] = ACTIONS(4075), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(947), - [anon_sym_DOT_DOT_LT2] = ACTIONS(947), - [anon_sym_err_GT] = ACTIONS(945), - [anon_sym_out_GT] = ACTIONS(945), - [anon_sym_e_GT] = ACTIONS(945), - [anon_sym_o_GT] = ACTIONS(945), - [anon_sym_err_PLUSout_GT] = ACTIONS(945), - [anon_sym_out_PLUSerr_GT] = ACTIONS(945), - [anon_sym_o_PLUSe_GT] = ACTIONS(945), - [anon_sym_e_PLUSo_GT] = ACTIONS(945), - [anon_sym_err_GT_GT] = ACTIONS(947), - [anon_sym_out_GT_GT] = ACTIONS(947), - [anon_sym_e_GT_GT] = ACTIONS(947), - [anon_sym_o_GT_GT] = ACTIONS(947), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(947), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(947), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(947), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(947), + [aux_sym_cell_path_repeat1] = STATE(1049), + [sym__newline] = ACTIONS(1686), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_err_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_GT_PIPE] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1688), + [aux_sym_ctrl_match_token1] = ACTIONS(1688), + [anon_sym_RBRACE] = ACTIONS(1688), + [aux_sym_expr_binary_token1] = ACTIONS(1688), + [aux_sym_expr_binary_token2] = ACTIONS(1688), + [aux_sym_expr_binary_token3] = ACTIONS(1688), + [aux_sym_expr_binary_token4] = ACTIONS(1688), + [aux_sym_expr_binary_token5] = ACTIONS(1688), + [aux_sym_expr_binary_token6] = ACTIONS(1688), + [aux_sym_expr_binary_token7] = ACTIONS(1688), + [aux_sym_expr_binary_token8] = ACTIONS(1688), + [aux_sym_expr_binary_token9] = ACTIONS(1688), + [aux_sym_expr_binary_token10] = ACTIONS(1688), + [aux_sym_expr_binary_token11] = ACTIONS(1688), + [aux_sym_expr_binary_token12] = ACTIONS(1688), + [aux_sym_expr_binary_token13] = ACTIONS(1688), + [aux_sym_expr_binary_token14] = ACTIONS(1688), + [aux_sym_expr_binary_token15] = ACTIONS(1688), + [aux_sym_expr_binary_token16] = ACTIONS(1688), + [aux_sym_expr_binary_token17] = ACTIONS(1688), + [aux_sym_expr_binary_token18] = ACTIONS(1688), + [aux_sym_expr_binary_token19] = ACTIONS(1688), + [aux_sym_expr_binary_token20] = ACTIONS(1688), + [aux_sym_expr_binary_token21] = ACTIONS(1688), + [aux_sym_expr_binary_token22] = ACTIONS(1688), + [aux_sym_expr_binary_token23] = ACTIONS(1688), + [aux_sym_expr_binary_token24] = ACTIONS(1688), + [aux_sym_expr_binary_token25] = ACTIONS(1688), + [aux_sym_expr_binary_token26] = ACTIONS(1688), + [aux_sym_expr_binary_token27] = ACTIONS(1688), + [aux_sym_expr_binary_token28] = ACTIONS(1688), + [anon_sym_DOT_DOT2] = ACTIONS(1686), + [anon_sym_DOT] = ACTIONS(3764), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1688), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1688), + [aux_sym_record_entry_token1] = ACTIONS(1688), + [anon_sym_err_GT] = ACTIONS(1686), + [anon_sym_out_GT] = ACTIONS(1686), + [anon_sym_e_GT] = ACTIONS(1686), + [anon_sym_o_GT] = ACTIONS(1686), + [anon_sym_err_PLUSout_GT] = ACTIONS(1686), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1686), + [anon_sym_o_PLUSe_GT] = ACTIONS(1686), + [anon_sym_e_PLUSo_GT] = ACTIONS(1686), + [anon_sym_err_GT_GT] = ACTIONS(1688), + [anon_sym_out_GT_GT] = ACTIONS(1688), + [anon_sym_e_GT_GT] = ACTIONS(1688), + [anon_sym_o_GT_GT] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1688), [anon_sym_POUND] = ACTIONS(247), }, [1262] = { - [sym__expr_parenthesized_immediate] = STATE(1539), - [sym__immediate_decimal] = STATE(1531), - [sym_val_variable] = STATE(1539), + [sym_cell_path] = STATE(1550), + [sym_path] = STATE(1532), [sym_comment] = STATE(1262), - [anon_sym_true] = ACTIONS(1441), - [anon_sym_false] = ACTIONS(1441), - [anon_sym_null] = ACTIONS(1441), - [aux_sym_cmd_identifier_token38] = ACTIONS(1441), - [aux_sym_cmd_identifier_token39] = ACTIONS(1441), - [aux_sym_cmd_identifier_token40] = ACTIONS(1441), - [sym__newline] = ACTIONS(1441), - [anon_sym_SEMI] = ACTIONS(1441), - [anon_sym_PIPE] = ACTIONS(1441), - [anon_sym_err_GT_PIPE] = ACTIONS(1441), - [anon_sym_out_GT_PIPE] = ACTIONS(1441), - [anon_sym_e_GT_PIPE] = ACTIONS(1441), - [anon_sym_o_GT_PIPE] = ACTIONS(1441), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1441), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1441), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1441), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_RPAREN] = ACTIONS(1441), - [anon_sym_DOLLAR] = ACTIONS(2469), - [anon_sym_DASH_DASH] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1431), - [aux_sym_ctrl_match_token1] = ACTIONS(1441), - [anon_sym_RBRACE] = ACTIONS(1441), - [anon_sym_DOT_DOT] = ACTIONS(1431), - [anon_sym_LPAREN2] = ACTIONS(4002), - [anon_sym_DOT] = ACTIONS(4077), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1441), - [anon_sym_DOT_DOT_LT] = ACTIONS(1441), - [aux_sym__immediate_decimal_token1] = ACTIONS(4079), - [aux_sym__immediate_decimal_token3] = ACTIONS(4081), - [aux_sym__immediate_decimal_token4] = ACTIONS(4083), - [aux_sym__immediate_decimal_token5] = ACTIONS(4085), - [aux_sym__val_number_decimal_token1] = ACTIONS(1431), - [aux_sym__val_number_decimal_token2] = ACTIONS(1431), - [aux_sym__val_number_decimal_token3] = ACTIONS(1431), - [aux_sym__val_number_decimal_token4] = ACTIONS(1431), - [aux_sym__val_number_token1] = ACTIONS(1441), - [aux_sym__val_number_token2] = ACTIONS(1441), - [aux_sym__val_number_token3] = ACTIONS(1441), - [anon_sym_0b] = ACTIONS(1431), - [anon_sym_0o] = ACTIONS(1431), - [anon_sym_0x] = ACTIONS(1431), - [sym_val_date] = ACTIONS(1441), - [anon_sym_DQUOTE] = ACTIONS(1441), - [sym__str_single_quotes] = ACTIONS(1441), - [sym__str_back_ticks] = ACTIONS(1441), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1441), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1441), - [anon_sym_err_GT] = ACTIONS(1431), - [anon_sym_out_GT] = ACTIONS(1431), - [anon_sym_e_GT] = ACTIONS(1431), - [anon_sym_o_GT] = ACTIONS(1431), - [anon_sym_err_PLUSout_GT] = ACTIONS(1431), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1431), - [anon_sym_o_PLUSe_GT] = ACTIONS(1431), - [anon_sym_e_PLUSo_GT] = ACTIONS(1431), - [anon_sym_err_GT_GT] = ACTIONS(1441), - [anon_sym_out_GT_GT] = ACTIONS(1441), - [anon_sym_e_GT_GT] = ACTIONS(1441), - [anon_sym_o_GT_GT] = ACTIONS(1441), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1441), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1441), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1441), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1441), - [aux_sym_unquoted_token1] = ACTIONS(1431), + [aux_sym_cell_path_repeat1] = STATE(1374), + [anon_sym_true] = ACTIONS(1833), + [anon_sym_false] = ACTIONS(1833), + [anon_sym_null] = ACTIONS(1833), + [aux_sym_cmd_identifier_token38] = ACTIONS(1833), + [aux_sym_cmd_identifier_token39] = ACTIONS(1833), + [aux_sym_cmd_identifier_token40] = ACTIONS(1833), + [sym__newline] = ACTIONS(1833), + [anon_sym_SEMI] = ACTIONS(1833), + [anon_sym_PIPE] = ACTIONS(1833), + [anon_sym_err_GT_PIPE] = ACTIONS(1833), + [anon_sym_out_GT_PIPE] = ACTIONS(1833), + [anon_sym_e_GT_PIPE] = ACTIONS(1833), + [anon_sym_o_GT_PIPE] = ACTIONS(1833), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1833), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1833), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1833), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(1833), + [anon_sym_LPAREN] = ACTIONS(1833), + [anon_sym_RPAREN] = ACTIONS(1833), + [anon_sym_DOLLAR] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1829), + [aux_sym_ctrl_match_token1] = ACTIONS(1833), + [anon_sym_RBRACE] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(1829), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1833), + [anon_sym_DOT_DOT_LT] = ACTIONS(1833), + [aux_sym__val_number_decimal_token1] = ACTIONS(1829), + [aux_sym__val_number_decimal_token2] = ACTIONS(1833), + [aux_sym__val_number_decimal_token3] = ACTIONS(1833), + [aux_sym__val_number_decimal_token4] = ACTIONS(1833), + [aux_sym__val_number_token1] = ACTIONS(1833), + [aux_sym__val_number_token2] = ACTIONS(1833), + [aux_sym__val_number_token3] = ACTIONS(1833), + [anon_sym_0b] = ACTIONS(1829), + [anon_sym_0o] = ACTIONS(1829), + [anon_sym_0x] = ACTIONS(1829), + [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_err_GT] = ACTIONS(1829), + [anon_sym_out_GT] = ACTIONS(1829), + [anon_sym_e_GT] = ACTIONS(1829), + [anon_sym_o_GT] = ACTIONS(1829), + [anon_sym_err_PLUSout_GT] = ACTIONS(1829), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1829), + [anon_sym_o_PLUSe_GT] = ACTIONS(1829), + [anon_sym_e_PLUSo_GT] = ACTIONS(1829), + [anon_sym_err_GT_GT] = ACTIONS(1833), + [anon_sym_out_GT_GT] = ACTIONS(1833), + [anon_sym_e_GT_GT] = ACTIONS(1833), + [anon_sym_o_GT_GT] = ACTIONS(1833), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1833), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1833), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1833), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1833), + [aux_sym_unquoted_token1] = ACTIONS(1829), [anon_sym_POUND] = ACTIONS(247), }, [1263] = { - [sym__expr_parenthesized_immediate] = STATE(1847), - [sym__immediate_decimal] = STATE(1611), - [sym_val_variable] = STATE(1847), + [sym_cell_path] = STATE(1551), + [sym_path] = STATE(1532), [sym_comment] = STATE(1263), - [anon_sym_true] = ACTIONS(1427), - [anon_sym_false] = ACTIONS(1427), - [anon_sym_null] = ACTIONS(1427), - [aux_sym_cmd_identifier_token38] = ACTIONS(1427), - [aux_sym_cmd_identifier_token39] = ACTIONS(1427), - [aux_sym_cmd_identifier_token40] = ACTIONS(1427), - [sym__newline] = ACTIONS(1427), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_PIPE] = ACTIONS(1427), - [anon_sym_err_GT_PIPE] = ACTIONS(1427), - [anon_sym_out_GT_PIPE] = ACTIONS(1427), - [anon_sym_e_GT_PIPE] = ACTIONS(1427), - [anon_sym_o_GT_PIPE] = ACTIONS(1427), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1427), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1427), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1427), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1413), - [anon_sym_RPAREN] = ACTIONS(1427), - [anon_sym_DOLLAR] = ACTIONS(4060), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1413), - [aux_sym_ctrl_match_token1] = ACTIONS(1427), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_LPAREN2] = ACTIONS(4062), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1427), - [anon_sym_DOT_DOT_LT] = ACTIONS(1427), - [aux_sym__immediate_decimal_token1] = ACTIONS(4064), - [aux_sym__immediate_decimal_token3] = ACTIONS(4066), - [aux_sym__immediate_decimal_token4] = ACTIONS(4068), - [aux_sym__immediate_decimal_token5] = ACTIONS(4070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1413), - [aux_sym__val_number_decimal_token2] = ACTIONS(1413), - [aux_sym__val_number_decimal_token3] = ACTIONS(1413), - [aux_sym__val_number_decimal_token4] = ACTIONS(1413), - [aux_sym__val_number_token1] = ACTIONS(1427), - [aux_sym__val_number_token2] = ACTIONS(1427), - [aux_sym__val_number_token3] = ACTIONS(1427), - [anon_sym_0b] = ACTIONS(1413), - [anon_sym_0o] = ACTIONS(1413), - [anon_sym_0x] = ACTIONS(1413), - [sym_val_date] = ACTIONS(1427), - [anon_sym_DQUOTE] = ACTIONS(1427), - [sym__str_single_quotes] = ACTIONS(1427), - [sym__str_back_ticks] = ACTIONS(1427), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1427), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1427), - [anon_sym_err_GT] = ACTIONS(1413), - [anon_sym_out_GT] = ACTIONS(1413), - [anon_sym_e_GT] = ACTIONS(1413), - [anon_sym_o_GT] = ACTIONS(1413), - [anon_sym_err_PLUSout_GT] = ACTIONS(1413), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1413), - [anon_sym_o_PLUSe_GT] = ACTIONS(1413), - [anon_sym_e_PLUSo_GT] = ACTIONS(1413), - [anon_sym_err_GT_GT] = ACTIONS(1427), - [anon_sym_out_GT_GT] = ACTIONS(1427), - [anon_sym_e_GT_GT] = ACTIONS(1427), - [anon_sym_o_GT_GT] = ACTIONS(1427), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1427), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1427), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1427), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1427), - [aux_sym_unquoted_token1] = ACTIONS(1413), - [aux_sym_unquoted_token2] = ACTIONS(1429), + [aux_sym_cell_path_repeat1] = STATE(1374), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_null] = ACTIONS(1837), + [aux_sym_cmd_identifier_token38] = ACTIONS(1837), + [aux_sym_cmd_identifier_token39] = ACTIONS(1837), + [aux_sym_cmd_identifier_token40] = ACTIONS(1837), + [sym__newline] = ACTIONS(1837), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_err_GT_PIPE] = ACTIONS(1837), + [anon_sym_out_GT_PIPE] = ACTIONS(1837), + [anon_sym_e_GT_PIPE] = ACTIONS(1837), + [anon_sym_o_GT_PIPE] = ACTIONS(1837), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1837), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1837), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1837), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1835), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1835), + [aux_sym_ctrl_match_token1] = ACTIONS(1837), + [anon_sym_RBRACE] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1837), + [anon_sym_DOT_DOT_LT] = ACTIONS(1837), + [aux_sym__val_number_decimal_token1] = ACTIONS(1835), + [aux_sym__val_number_decimal_token2] = ACTIONS(1837), + [aux_sym__val_number_decimal_token3] = ACTIONS(1837), + [aux_sym__val_number_decimal_token4] = ACTIONS(1837), + [aux_sym__val_number_token1] = ACTIONS(1837), + [aux_sym__val_number_token2] = ACTIONS(1837), + [aux_sym__val_number_token3] = ACTIONS(1837), + [anon_sym_0b] = ACTIONS(1835), + [anon_sym_0o] = ACTIONS(1835), + [anon_sym_0x] = ACTIONS(1835), + [sym_val_date] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [sym__str_single_quotes] = ACTIONS(1837), + [sym__str_back_ticks] = ACTIONS(1837), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1837), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1837), + [anon_sym_err_GT] = ACTIONS(1835), + [anon_sym_out_GT] = ACTIONS(1835), + [anon_sym_e_GT] = ACTIONS(1835), + [anon_sym_o_GT] = ACTIONS(1835), + [anon_sym_err_PLUSout_GT] = ACTIONS(1835), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1835), + [anon_sym_o_PLUSe_GT] = ACTIONS(1835), + [anon_sym_e_PLUSo_GT] = ACTIONS(1835), + [anon_sym_err_GT_GT] = ACTIONS(1837), + [anon_sym_out_GT_GT] = ACTIONS(1837), + [anon_sym_e_GT_GT] = ACTIONS(1837), + [anon_sym_o_GT_GT] = ACTIONS(1837), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1837), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1837), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1837), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1837), + [aux_sym_unquoted_token1] = ACTIONS(1835), [anon_sym_POUND] = ACTIONS(247), }, [1264] = { + [sym_cell_path] = STATE(1552), + [sym_path] = STATE(1532), [sym_comment] = STATE(1264), - [aux_sym_cmd_identifier_token1] = ACTIONS(4087), - [aux_sym_cmd_identifier_token2] = ACTIONS(4087), - [aux_sym_cmd_identifier_token3] = ACTIONS(4087), - [aux_sym_cmd_identifier_token4] = ACTIONS(4087), - [aux_sym_cmd_identifier_token5] = ACTIONS(4087), - [aux_sym_cmd_identifier_token6] = ACTIONS(4087), - [aux_sym_cmd_identifier_token7] = ACTIONS(4087), - [aux_sym_cmd_identifier_token8] = ACTIONS(4087), - [aux_sym_cmd_identifier_token9] = ACTIONS(4087), - [aux_sym_cmd_identifier_token10] = ACTIONS(4087), - [aux_sym_cmd_identifier_token11] = ACTIONS(4087), - [aux_sym_cmd_identifier_token12] = ACTIONS(4087), - [aux_sym_cmd_identifier_token13] = ACTIONS(4087), - [aux_sym_cmd_identifier_token14] = ACTIONS(4087), - [aux_sym_cmd_identifier_token15] = ACTIONS(4087), - [aux_sym_cmd_identifier_token16] = ACTIONS(4087), - [aux_sym_cmd_identifier_token17] = ACTIONS(4087), - [aux_sym_cmd_identifier_token18] = ACTIONS(4087), - [aux_sym_cmd_identifier_token19] = ACTIONS(4087), - [aux_sym_cmd_identifier_token20] = ACTIONS(4087), - [aux_sym_cmd_identifier_token21] = ACTIONS(4087), - [aux_sym_cmd_identifier_token22] = ACTIONS(4087), - [aux_sym_cmd_identifier_token23] = ACTIONS(4087), - [aux_sym_cmd_identifier_token24] = ACTIONS(4087), - [aux_sym_cmd_identifier_token25] = ACTIONS(4087), - [aux_sym_cmd_identifier_token26] = ACTIONS(4087), - [aux_sym_cmd_identifier_token27] = ACTIONS(4087), - [aux_sym_cmd_identifier_token28] = ACTIONS(4087), - [aux_sym_cmd_identifier_token29] = ACTIONS(4087), - [aux_sym_cmd_identifier_token30] = ACTIONS(4087), - [aux_sym_cmd_identifier_token31] = ACTIONS(4087), - [aux_sym_cmd_identifier_token32] = ACTIONS(4087), - [aux_sym_cmd_identifier_token33] = ACTIONS(4087), - [aux_sym_cmd_identifier_token34] = ACTIONS(4087), - [aux_sym_cmd_identifier_token35] = ACTIONS(4087), - [aux_sym_cmd_identifier_token36] = ACTIONS(4087), - [anon_sym_true] = ACTIONS(4087), - [anon_sym_false] = ACTIONS(4087), - [anon_sym_null] = ACTIONS(4087), - [aux_sym_cmd_identifier_token38] = ACTIONS(4087), - [aux_sym_cmd_identifier_token39] = ACTIONS(4087), - [aux_sym_cmd_identifier_token40] = ACTIONS(4087), - [sym__space] = ACTIONS(4089), - [anon_sym_LBRACK] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_DOLLAR] = ACTIONS(4087), - [anon_sym_DASH] = ACTIONS(4087), - [aux_sym_ctrl_match_token1] = ACTIONS(4087), - [anon_sym_DOT_DOT] = ACTIONS(4087), - [aux_sym_expr_unary_token1] = ACTIONS(4087), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4087), - [anon_sym_DOT_DOT_LT] = ACTIONS(4087), - [aux_sym__val_number_decimal_token1] = ACTIONS(4087), - [aux_sym__val_number_decimal_token2] = ACTIONS(4087), - [aux_sym__val_number_decimal_token3] = ACTIONS(4087), - [aux_sym__val_number_decimal_token4] = ACTIONS(4087), - [aux_sym__val_number_token1] = ACTIONS(4087), - [aux_sym__val_number_token2] = ACTIONS(4087), - [aux_sym__val_number_token3] = ACTIONS(4087), - [anon_sym_0b] = ACTIONS(4087), - [anon_sym_0o] = ACTIONS(4087), - [anon_sym_0x] = ACTIONS(4087), - [sym_val_date] = ACTIONS(4087), - [anon_sym_DQUOTE] = ACTIONS(4087), - [sym__str_single_quotes] = ACTIONS(4087), - [sym__str_back_ticks] = ACTIONS(4087), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4087), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4087), - [aux_sym_env_var_token1] = ACTIONS(4087), - [anon_sym_CARET] = ACTIONS(4087), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1374), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1841), + [aux_sym_cmd_identifier_token38] = ACTIONS(1841), + [aux_sym_cmd_identifier_token39] = ACTIONS(1841), + [aux_sym_cmd_identifier_token40] = ACTIONS(1841), + [sym__newline] = ACTIONS(1841), + [anon_sym_SEMI] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_err_GT_PIPE] = ACTIONS(1841), + [anon_sym_out_GT_PIPE] = ACTIONS(1841), + [anon_sym_e_GT_PIPE] = ACTIONS(1841), + [anon_sym_o_GT_PIPE] = ACTIONS(1841), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1841), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1841), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1841), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1841), + [anon_sym_LBRACK] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_RPAREN] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1839), + [anon_sym_DASH_DASH] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1839), + [aux_sym_ctrl_match_token1] = ACTIONS(1841), + [anon_sym_RBRACE] = ACTIONS(1841), + [anon_sym_DOT_DOT] = ACTIONS(1839), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1841), + [anon_sym_DOT_DOT_LT] = ACTIONS(1841), + [aux_sym__val_number_decimal_token1] = ACTIONS(1839), + [aux_sym__val_number_decimal_token2] = ACTIONS(1841), + [aux_sym__val_number_decimal_token3] = ACTIONS(1841), + [aux_sym__val_number_decimal_token4] = ACTIONS(1841), + [aux_sym__val_number_token1] = ACTIONS(1841), + [aux_sym__val_number_token2] = ACTIONS(1841), + [aux_sym__val_number_token3] = ACTIONS(1841), + [anon_sym_0b] = ACTIONS(1839), + [anon_sym_0o] = ACTIONS(1839), + [anon_sym_0x] = ACTIONS(1839), + [sym_val_date] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym__str_single_quotes] = ACTIONS(1841), + [sym__str_back_ticks] = ACTIONS(1841), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1841), + [anon_sym_err_GT] = ACTIONS(1839), + [anon_sym_out_GT] = ACTIONS(1839), + [anon_sym_e_GT] = ACTIONS(1839), + [anon_sym_o_GT] = ACTIONS(1839), + [anon_sym_err_PLUSout_GT] = ACTIONS(1839), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1839), + [anon_sym_o_PLUSe_GT] = ACTIONS(1839), + [anon_sym_e_PLUSo_GT] = ACTIONS(1839), + [anon_sym_err_GT_GT] = ACTIONS(1841), + [anon_sym_out_GT_GT] = ACTIONS(1841), + [anon_sym_e_GT_GT] = ACTIONS(1841), + [anon_sym_o_GT_GT] = ACTIONS(1841), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1841), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1841), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1841), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1841), + [aux_sym_unquoted_token1] = ACTIONS(1839), + [anon_sym_POUND] = ACTIONS(247), }, [1265] = { + [sym_cell_path] = STATE(1553), + [sym_path] = STATE(1532), [sym_comment] = STATE(1265), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [aux_sym_cmd_identifier_token38] = ACTIONS(1475), - [aux_sym_cmd_identifier_token39] = ACTIONS(1475), - [aux_sym_cmd_identifier_token40] = ACTIONS(1475), - [sym__newline] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_err_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_GT_PIPE] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1473), - [anon_sym_RPAREN] = ACTIONS(1475), - [anon_sym_DOLLAR] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1473), - [aux_sym_ctrl_match_token1] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_DOT_DOT] = ACTIONS(1473), - [anon_sym_LPAREN2] = ACTIONS(1475), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT] = ACTIONS(4091), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), - [anon_sym_DOT_DOT_LT] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [aux_sym__immediate_decimal_token2] = ACTIONS(4093), - [aux_sym__val_number_decimal_token1] = ACTIONS(1473), - [aux_sym__val_number_decimal_token2] = ACTIONS(1475), - [aux_sym__val_number_decimal_token3] = ACTIONS(1475), - [aux_sym__val_number_decimal_token4] = ACTIONS(1475), - [aux_sym__val_number_token1] = ACTIONS(1475), - [aux_sym__val_number_token2] = ACTIONS(1475), - [aux_sym__val_number_token3] = ACTIONS(1475), - [anon_sym_0b] = ACTIONS(1473), - [sym_filesize_unit] = ACTIONS(1475), - [sym_duration_unit] = ACTIONS(1475), - [anon_sym_0o] = ACTIONS(1473), - [anon_sym_0x] = ACTIONS(1473), - [sym_val_date] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym__str_single_quotes] = ACTIONS(1475), - [sym__str_back_ticks] = ACTIONS(1475), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1473), - [anon_sym_out_GT] = ACTIONS(1473), - [anon_sym_e_GT] = ACTIONS(1473), - [anon_sym_o_GT] = ACTIONS(1473), - [anon_sym_err_PLUSout_GT] = ACTIONS(1473), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), - [anon_sym_o_PLUSe_GT] = ACTIONS(1473), - [anon_sym_e_PLUSo_GT] = ACTIONS(1473), - [anon_sym_err_GT_GT] = ACTIONS(1475), - [anon_sym_out_GT_GT] = ACTIONS(1475), - [anon_sym_e_GT_GT] = ACTIONS(1475), - [anon_sym_o_GT_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), - [aux_sym_unquoted_token1] = ACTIONS(1473), - [aux_sym_unquoted_token2] = ACTIONS(1473), + [aux_sym_cell_path_repeat1] = STATE(1374), + [anon_sym_true] = ACTIONS(1845), + [anon_sym_false] = ACTIONS(1845), + [anon_sym_null] = ACTIONS(1845), + [aux_sym_cmd_identifier_token38] = ACTIONS(1845), + [aux_sym_cmd_identifier_token39] = ACTIONS(1845), + [aux_sym_cmd_identifier_token40] = ACTIONS(1845), + [sym__newline] = ACTIONS(1845), + [anon_sym_SEMI] = ACTIONS(1845), + [anon_sym_PIPE] = ACTIONS(1845), + [anon_sym_err_GT_PIPE] = ACTIONS(1845), + [anon_sym_out_GT_PIPE] = ACTIONS(1845), + [anon_sym_e_GT_PIPE] = ACTIONS(1845), + [anon_sym_o_GT_PIPE] = ACTIONS(1845), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1845), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1845), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1845), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1845), + [anon_sym_LBRACK] = ACTIONS(1845), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_RPAREN] = ACTIONS(1845), + [anon_sym_DOLLAR] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1843), + [aux_sym_ctrl_match_token1] = ACTIONS(1845), + [anon_sym_RBRACE] = ACTIONS(1845), + [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1845), + [anon_sym_DOT_DOT_LT] = ACTIONS(1845), + [aux_sym__val_number_decimal_token1] = ACTIONS(1843), + [aux_sym__val_number_decimal_token2] = ACTIONS(1845), + [aux_sym__val_number_decimal_token3] = ACTIONS(1845), + [aux_sym__val_number_decimal_token4] = ACTIONS(1845), + [aux_sym__val_number_token1] = ACTIONS(1845), + [aux_sym__val_number_token2] = ACTIONS(1845), + [aux_sym__val_number_token3] = ACTIONS(1845), + [anon_sym_0b] = ACTIONS(1843), + [anon_sym_0o] = ACTIONS(1843), + [anon_sym_0x] = ACTIONS(1843), + [sym_val_date] = ACTIONS(1845), + [anon_sym_DQUOTE] = ACTIONS(1845), + [sym__str_single_quotes] = ACTIONS(1845), + [sym__str_back_ticks] = ACTIONS(1845), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1845), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1845), + [anon_sym_err_GT] = ACTIONS(1843), + [anon_sym_out_GT] = ACTIONS(1843), + [anon_sym_e_GT] = ACTIONS(1843), + [anon_sym_o_GT] = ACTIONS(1843), + [anon_sym_err_PLUSout_GT] = ACTIONS(1843), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1843), + [anon_sym_o_PLUSe_GT] = ACTIONS(1843), + [anon_sym_e_PLUSo_GT] = ACTIONS(1843), + [anon_sym_err_GT_GT] = ACTIONS(1845), + [anon_sym_out_GT_GT] = ACTIONS(1845), + [anon_sym_e_GT_GT] = ACTIONS(1845), + [anon_sym_o_GT_GT] = ACTIONS(1845), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1845), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1845), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1845), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1845), + [aux_sym_unquoted_token1] = ACTIONS(1843), [anon_sym_POUND] = ACTIONS(247), }, [1266] = { + [sym_cell_path] = STATE(1554), + [sym_path] = STATE(1532), [sym_comment] = STATE(1266), - [anon_sym_EQ] = ACTIONS(970), - [anon_sym_PLUS_EQ] = ACTIONS(972), - [anon_sym_DASH_EQ] = ACTIONS(972), - [anon_sym_STAR_EQ] = ACTIONS(972), - [anon_sym_SLASH_EQ] = ACTIONS(972), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(972), - [sym__newline] = ACTIONS(972), - [anon_sym_SEMI] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_err_GT_PIPE] = ACTIONS(972), - [anon_sym_out_GT_PIPE] = ACTIONS(972), - [anon_sym_e_GT_PIPE] = ACTIONS(972), - [anon_sym_o_GT_PIPE] = ACTIONS(972), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(972), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(972), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(972), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(972), - [anon_sym_COMMA] = ACTIONS(972), - [anon_sym_RBRACE] = ACTIONS(972), - [anon_sym_QMARK2] = ACTIONS(4095), - [aux_sym_expr_binary_token1] = ACTIONS(972), - [aux_sym_expr_binary_token2] = ACTIONS(972), - [aux_sym_expr_binary_token3] = ACTIONS(972), - [aux_sym_expr_binary_token4] = ACTIONS(972), - [aux_sym_expr_binary_token5] = ACTIONS(972), - [aux_sym_expr_binary_token6] = ACTIONS(972), - [aux_sym_expr_binary_token7] = ACTIONS(972), - [aux_sym_expr_binary_token8] = ACTIONS(972), - [aux_sym_expr_binary_token9] = ACTIONS(972), - [aux_sym_expr_binary_token10] = ACTIONS(972), - [aux_sym_expr_binary_token11] = ACTIONS(972), - [aux_sym_expr_binary_token12] = ACTIONS(972), - [aux_sym_expr_binary_token13] = ACTIONS(972), - [aux_sym_expr_binary_token14] = ACTIONS(972), - [aux_sym_expr_binary_token15] = ACTIONS(972), - [aux_sym_expr_binary_token16] = ACTIONS(972), - [aux_sym_expr_binary_token17] = ACTIONS(972), - [aux_sym_expr_binary_token18] = ACTIONS(972), - [aux_sym_expr_binary_token19] = ACTIONS(972), - [aux_sym_expr_binary_token20] = ACTIONS(972), - [aux_sym_expr_binary_token21] = ACTIONS(972), - [aux_sym_expr_binary_token22] = ACTIONS(972), - [aux_sym_expr_binary_token23] = ACTIONS(972), - [aux_sym_expr_binary_token24] = ACTIONS(972), - [aux_sym_expr_binary_token25] = ACTIONS(972), - [aux_sym_expr_binary_token26] = ACTIONS(972), - [aux_sym_expr_binary_token27] = ACTIONS(972), - [aux_sym_expr_binary_token28] = ACTIONS(972), - [anon_sym_DOT_DOT2] = ACTIONS(970), - [anon_sym_DOT] = ACTIONS(970), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(972), - [anon_sym_DOT_DOT_LT2] = ACTIONS(972), - [anon_sym_err_GT] = ACTIONS(970), - [anon_sym_out_GT] = ACTIONS(970), - [anon_sym_e_GT] = ACTIONS(970), - [anon_sym_o_GT] = ACTIONS(970), - [anon_sym_err_PLUSout_GT] = ACTIONS(970), - [anon_sym_out_PLUSerr_GT] = ACTIONS(970), - [anon_sym_o_PLUSe_GT] = ACTIONS(970), - [anon_sym_e_PLUSo_GT] = ACTIONS(970), - [anon_sym_err_GT_GT] = ACTIONS(972), - [anon_sym_out_GT_GT] = ACTIONS(972), - [anon_sym_e_GT_GT] = ACTIONS(972), - [anon_sym_o_GT_GT] = ACTIONS(972), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(972), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(972), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(972), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(972), + [aux_sym_cell_path_repeat1] = STATE(1374), + [anon_sym_true] = ACTIONS(1849), + [anon_sym_false] = ACTIONS(1849), + [anon_sym_null] = ACTIONS(1849), + [aux_sym_cmd_identifier_token38] = ACTIONS(1849), + [aux_sym_cmd_identifier_token39] = ACTIONS(1849), + [aux_sym_cmd_identifier_token40] = ACTIONS(1849), + [sym__newline] = ACTIONS(1849), + [anon_sym_SEMI] = ACTIONS(1849), + [anon_sym_PIPE] = ACTIONS(1849), + [anon_sym_err_GT_PIPE] = ACTIONS(1849), + [anon_sym_out_GT_PIPE] = ACTIONS(1849), + [anon_sym_e_GT_PIPE] = ACTIONS(1849), + [anon_sym_o_GT_PIPE] = ACTIONS(1849), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1849), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1849), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1849), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1849), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_RPAREN] = ACTIONS(1849), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1849), + [anon_sym_DASH] = ACTIONS(1847), + [aux_sym_ctrl_match_token1] = ACTIONS(1849), + [anon_sym_RBRACE] = ACTIONS(1849), + [anon_sym_DOT_DOT] = ACTIONS(1847), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1849), + [anon_sym_DOT_DOT_LT] = ACTIONS(1849), + [aux_sym__val_number_decimal_token1] = ACTIONS(1847), + [aux_sym__val_number_decimal_token2] = ACTIONS(1849), + [aux_sym__val_number_decimal_token3] = ACTIONS(1849), + [aux_sym__val_number_decimal_token4] = ACTIONS(1849), + [aux_sym__val_number_token1] = ACTIONS(1849), + [aux_sym__val_number_token2] = ACTIONS(1849), + [aux_sym__val_number_token3] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1847), + [anon_sym_0x] = ACTIONS(1847), + [sym_val_date] = ACTIONS(1849), + [anon_sym_DQUOTE] = ACTIONS(1849), + [sym__str_single_quotes] = ACTIONS(1849), + [sym__str_back_ticks] = ACTIONS(1849), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1849), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1849), + [anon_sym_err_GT] = ACTIONS(1847), + [anon_sym_out_GT] = ACTIONS(1847), + [anon_sym_e_GT] = ACTIONS(1847), + [anon_sym_o_GT] = ACTIONS(1847), + [anon_sym_err_PLUSout_GT] = ACTIONS(1847), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1847), + [anon_sym_o_PLUSe_GT] = ACTIONS(1847), + [anon_sym_e_PLUSo_GT] = ACTIONS(1847), + [anon_sym_err_GT_GT] = ACTIONS(1849), + [anon_sym_out_GT_GT] = ACTIONS(1849), + [anon_sym_e_GT_GT] = ACTIONS(1849), + [anon_sym_o_GT_GT] = ACTIONS(1849), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1849), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1849), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1849), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1849), + [aux_sym_unquoted_token1] = ACTIONS(1847), [anon_sym_POUND] = ACTIONS(247), }, [1267] = { [sym_comment] = STATE(1267), - [anon_sym_EQ] = ACTIONS(980), - [anon_sym_PLUS_EQ] = ACTIONS(982), - [anon_sym_DASH_EQ] = ACTIONS(982), - [anon_sym_STAR_EQ] = ACTIONS(982), - [anon_sym_SLASH_EQ] = ACTIONS(982), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(982), - [sym__newline] = ACTIONS(980), - [anon_sym_SEMI] = ACTIONS(982), - [anon_sym_PIPE] = ACTIONS(982), - [anon_sym_err_GT_PIPE] = ACTIONS(982), - [anon_sym_out_GT_PIPE] = ACTIONS(982), - [anon_sym_e_GT_PIPE] = ACTIONS(982), - [anon_sym_o_GT_PIPE] = ACTIONS(982), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(982), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(982), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(982), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(982), - [aux_sym_ctrl_match_token1] = ACTIONS(982), - [anon_sym_RBRACE] = ACTIONS(982), - [anon_sym_QMARK2] = ACTIONS(4097), - [aux_sym_expr_binary_token1] = ACTIONS(982), - [aux_sym_expr_binary_token2] = ACTIONS(982), - [aux_sym_expr_binary_token3] = ACTIONS(982), - [aux_sym_expr_binary_token4] = ACTIONS(982), - [aux_sym_expr_binary_token5] = ACTIONS(982), - [aux_sym_expr_binary_token6] = ACTIONS(982), - [aux_sym_expr_binary_token7] = ACTIONS(982), - [aux_sym_expr_binary_token8] = ACTIONS(982), - [aux_sym_expr_binary_token9] = ACTIONS(982), - [aux_sym_expr_binary_token10] = ACTIONS(982), - [aux_sym_expr_binary_token11] = ACTIONS(982), - [aux_sym_expr_binary_token12] = ACTIONS(982), - [aux_sym_expr_binary_token13] = ACTIONS(982), - [aux_sym_expr_binary_token14] = ACTIONS(982), - [aux_sym_expr_binary_token15] = ACTIONS(982), - [aux_sym_expr_binary_token16] = ACTIONS(982), - [aux_sym_expr_binary_token17] = ACTIONS(982), - [aux_sym_expr_binary_token18] = ACTIONS(982), - [aux_sym_expr_binary_token19] = ACTIONS(982), - [aux_sym_expr_binary_token20] = ACTIONS(982), - [aux_sym_expr_binary_token21] = ACTIONS(982), - [aux_sym_expr_binary_token22] = ACTIONS(982), - [aux_sym_expr_binary_token23] = ACTIONS(982), - [aux_sym_expr_binary_token24] = ACTIONS(982), - [aux_sym_expr_binary_token25] = ACTIONS(982), - [aux_sym_expr_binary_token26] = ACTIONS(982), - [aux_sym_expr_binary_token27] = ACTIONS(982), - [aux_sym_expr_binary_token28] = ACTIONS(982), - [anon_sym_DOT_DOT2] = ACTIONS(980), - [anon_sym_DOT] = ACTIONS(980), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(982), - [anon_sym_DOT_DOT_LT2] = ACTIONS(982), - [aux_sym_record_entry_token1] = ACTIONS(982), - [anon_sym_err_GT] = ACTIONS(980), - [anon_sym_out_GT] = ACTIONS(980), - [anon_sym_e_GT] = ACTIONS(980), - [anon_sym_o_GT] = ACTIONS(980), - [anon_sym_err_PLUSout_GT] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT] = ACTIONS(980), - [anon_sym_o_PLUSe_GT] = ACTIONS(980), - [anon_sym_e_PLUSo_GT] = ACTIONS(980), - [anon_sym_err_GT_GT] = ACTIONS(982), - [anon_sym_out_GT_GT] = ACTIONS(982), - [anon_sym_e_GT_GT] = ACTIONS(982), - [anon_sym_o_GT_GT] = ACTIONS(982), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(982), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(982), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(982), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(982), + [anon_sym_EQ] = ACTIONS(4604), + [anon_sym_PLUS_EQ] = ACTIONS(4606), + [anon_sym_DASH_EQ] = ACTIONS(4606), + [anon_sym_STAR_EQ] = ACTIONS(4606), + [anon_sym_SLASH_EQ] = ACTIONS(4606), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4606), + [sym__newline] = ACTIONS(1076), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_err_GT_PIPE] = ACTIONS(1078), + [anon_sym_out_GT_PIPE] = ACTIONS(1078), + [anon_sym_e_GT_PIPE] = ACTIONS(1078), + [anon_sym_o_GT_PIPE] = ACTIONS(1078), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1078), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1078), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1078), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(1078), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1078), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1078), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1078), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1078), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1078), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1078), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1078), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1078), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1078), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1078), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1078), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1078), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1078), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1078), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1078), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1078), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1078), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1078), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1078), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1078), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1078), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1078), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1078), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1078), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1078), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1078), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1078), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1078), + [anon_sym_DOT_DOT2] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1087), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1087), + [anon_sym_err_GT] = ACTIONS(1076), + [anon_sym_out_GT] = ACTIONS(1076), + [anon_sym_e_GT] = ACTIONS(1076), + [anon_sym_o_GT] = ACTIONS(1076), + [anon_sym_err_PLUSout_GT] = ACTIONS(1076), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1076), + [anon_sym_o_PLUSe_GT] = ACTIONS(1076), + [anon_sym_e_PLUSo_GT] = ACTIONS(1076), + [anon_sym_err_GT_GT] = ACTIONS(1078), + [anon_sym_out_GT_GT] = ACTIONS(1078), + [anon_sym_e_GT_GT] = ACTIONS(1078), + [anon_sym_o_GT_GT] = ACTIONS(1078), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1078), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1078), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1078), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1078), [anon_sym_POUND] = ACTIONS(247), }, [1268] = { - [sym__expr_parenthesized_immediate] = STATE(1671), - [sym__immediate_decimal] = STATE(1672), - [sym_val_variable] = STATE(1671), [sym_comment] = STATE(1268), - [ts_builtin_sym_end] = ACTIONS(1441), - [anon_sym_true] = ACTIONS(1441), - [anon_sym_false] = ACTIONS(1441), - [anon_sym_null] = ACTIONS(1441), - [aux_sym_cmd_identifier_token38] = ACTIONS(1441), - [aux_sym_cmd_identifier_token39] = ACTIONS(1441), - [aux_sym_cmd_identifier_token40] = ACTIONS(1441), - [sym__newline] = ACTIONS(1441), - [anon_sym_SEMI] = ACTIONS(1441), - [anon_sym_PIPE] = ACTIONS(1441), - [anon_sym_err_GT_PIPE] = ACTIONS(1441), - [anon_sym_out_GT_PIPE] = ACTIONS(1441), - [anon_sym_e_GT_PIPE] = ACTIONS(1441), - [anon_sym_o_GT_PIPE] = ACTIONS(1441), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1441), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1441), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1441), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_DOLLAR] = ACTIONS(2694), - [anon_sym_DASH_DASH] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1431), - [aux_sym_ctrl_match_token1] = ACTIONS(1441), - [anon_sym_DOT_DOT] = ACTIONS(1431), - [anon_sym_LPAREN2] = ACTIONS(4041), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1441), - [anon_sym_DOT_DOT_LT] = ACTIONS(1441), - [aux_sym__immediate_decimal_token1] = ACTIONS(4101), - [aux_sym__immediate_decimal_token3] = ACTIONS(4103), - [aux_sym__immediate_decimal_token4] = ACTIONS(4105), - [aux_sym__immediate_decimal_token5] = ACTIONS(4107), - [aux_sym__val_number_decimal_token1] = ACTIONS(1431), - [aux_sym__val_number_decimal_token2] = ACTIONS(1431), - [aux_sym__val_number_decimal_token3] = ACTIONS(1431), - [aux_sym__val_number_decimal_token4] = ACTIONS(1431), - [aux_sym__val_number_token1] = ACTIONS(1441), - [aux_sym__val_number_token2] = ACTIONS(1441), - [aux_sym__val_number_token3] = ACTIONS(1441), - [anon_sym_0b] = ACTIONS(1431), - [anon_sym_0o] = ACTIONS(1431), - [anon_sym_0x] = ACTIONS(1431), - [sym_val_date] = ACTIONS(1441), - [anon_sym_DQUOTE] = ACTIONS(1441), - [sym__str_single_quotes] = ACTIONS(1441), - [sym__str_back_ticks] = ACTIONS(1441), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1441), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1441), - [anon_sym_err_GT] = ACTIONS(1431), - [anon_sym_out_GT] = ACTIONS(1431), - [anon_sym_e_GT] = ACTIONS(1431), - [anon_sym_o_GT] = ACTIONS(1431), - [anon_sym_err_PLUSout_GT] = ACTIONS(1431), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1431), - [anon_sym_o_PLUSe_GT] = ACTIONS(1431), - [anon_sym_e_PLUSo_GT] = ACTIONS(1431), - [anon_sym_err_GT_GT] = ACTIONS(1441), - [anon_sym_out_GT_GT] = ACTIONS(1441), - [anon_sym_e_GT_GT] = ACTIONS(1441), - [anon_sym_o_GT_GT] = ACTIONS(1441), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1441), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1441), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1441), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1441), - [aux_sym_unquoted_token1] = ACTIONS(1431), + [anon_sym_true] = ACTIONS(1707), + [anon_sym_false] = ACTIONS(1707), + [anon_sym_null] = ACTIONS(1707), + [aux_sym_cmd_identifier_token38] = ACTIONS(1707), + [aux_sym_cmd_identifier_token39] = ACTIONS(1707), + [aux_sym_cmd_identifier_token40] = ACTIONS(1707), + [sym__newline] = ACTIONS(1707), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_err_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_GT_PIPE] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), + [anon_sym_LBRACK] = ACTIONS(1707), + [anon_sym_LPAREN] = ACTIONS(1707), + [anon_sym_RPAREN] = ACTIONS(1707), + [anon_sym_DOLLAR] = ACTIONS(1705), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1705), + [aux_sym_ctrl_match_token1] = ACTIONS(1707), + [anon_sym_RBRACE] = ACTIONS(1707), + [anon_sym_DOT_DOT] = ACTIONS(1705), + [anon_sym_DOT_DOT2] = ACTIONS(1705), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1705), + [anon_sym_DOT_DOT_LT] = ACTIONS(1705), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1707), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1707), + [aux_sym__immediate_decimal_token2] = ACTIONS(4608), + [aux_sym__val_number_decimal_token1] = ACTIONS(1705), + [aux_sym__val_number_decimal_token2] = ACTIONS(1707), + [aux_sym__val_number_decimal_token3] = ACTIONS(1707), + [aux_sym__val_number_decimal_token4] = ACTIONS(1707), + [aux_sym__val_number_token1] = ACTIONS(1707), + [aux_sym__val_number_token2] = ACTIONS(1707), + [aux_sym__val_number_token3] = ACTIONS(1707), + [anon_sym_0b] = ACTIONS(1705), + [anon_sym_0o] = ACTIONS(1705), + [anon_sym_0x] = ACTIONS(1705), + [sym_val_date] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1707), + [sym__str_single_quotes] = ACTIONS(1707), + [sym__str_back_ticks] = ACTIONS(1707), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1707), + [anon_sym_err_GT] = ACTIONS(1705), + [anon_sym_out_GT] = ACTIONS(1705), + [anon_sym_e_GT] = ACTIONS(1705), + [anon_sym_o_GT] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT] = ACTIONS(1705), + [anon_sym_err_GT_GT] = ACTIONS(1707), + [anon_sym_out_GT_GT] = ACTIONS(1707), + [anon_sym_e_GT_GT] = ACTIONS(1707), + [anon_sym_o_GT_GT] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), + [aux_sym_unquoted_token1] = ACTIONS(1705), [anon_sym_POUND] = ACTIONS(247), }, [1269] = { + [sym_cell_path] = STATE(1555), + [sym_path] = STATE(1532), [sym_comment] = STATE(1269), - [anon_sym_EQ] = ACTIONS(976), - [anon_sym_PLUS_EQ] = ACTIONS(978), - [anon_sym_DASH_EQ] = ACTIONS(978), - [anon_sym_STAR_EQ] = ACTIONS(978), - [anon_sym_SLASH_EQ] = ACTIONS(978), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(978), - [sym__newline] = ACTIONS(978), - [anon_sym_SEMI] = ACTIONS(978), - [anon_sym_PIPE] = ACTIONS(978), - [anon_sym_err_GT_PIPE] = ACTIONS(978), - [anon_sym_out_GT_PIPE] = ACTIONS(978), - [anon_sym_e_GT_PIPE] = ACTIONS(978), - [anon_sym_o_GT_PIPE] = ACTIONS(978), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(978), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(978), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(978), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(978), - [anon_sym_RPAREN] = ACTIONS(978), - [anon_sym_COMMA] = ACTIONS(978), - [anon_sym_RBRACE] = ACTIONS(978), - [anon_sym_QMARK2] = ACTIONS(978), - [aux_sym_expr_binary_token1] = ACTIONS(978), - [aux_sym_expr_binary_token2] = ACTIONS(978), - [aux_sym_expr_binary_token3] = ACTIONS(978), - [aux_sym_expr_binary_token4] = ACTIONS(978), - [aux_sym_expr_binary_token5] = ACTIONS(978), - [aux_sym_expr_binary_token6] = ACTIONS(978), - [aux_sym_expr_binary_token7] = ACTIONS(978), - [aux_sym_expr_binary_token8] = ACTIONS(978), - [aux_sym_expr_binary_token9] = ACTIONS(978), - [aux_sym_expr_binary_token10] = ACTIONS(978), - [aux_sym_expr_binary_token11] = ACTIONS(978), - [aux_sym_expr_binary_token12] = ACTIONS(978), - [aux_sym_expr_binary_token13] = ACTIONS(978), - [aux_sym_expr_binary_token14] = ACTIONS(978), - [aux_sym_expr_binary_token15] = ACTIONS(978), - [aux_sym_expr_binary_token16] = ACTIONS(978), - [aux_sym_expr_binary_token17] = ACTIONS(978), - [aux_sym_expr_binary_token18] = ACTIONS(978), - [aux_sym_expr_binary_token19] = ACTIONS(978), - [aux_sym_expr_binary_token20] = ACTIONS(978), - [aux_sym_expr_binary_token21] = ACTIONS(978), - [aux_sym_expr_binary_token22] = ACTIONS(978), - [aux_sym_expr_binary_token23] = ACTIONS(978), - [aux_sym_expr_binary_token24] = ACTIONS(978), - [aux_sym_expr_binary_token25] = ACTIONS(978), - [aux_sym_expr_binary_token26] = ACTIONS(978), - [aux_sym_expr_binary_token27] = ACTIONS(978), - [aux_sym_expr_binary_token28] = ACTIONS(978), - [anon_sym_DOT_DOT2] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), - [anon_sym_DOT_DOT_LT2] = ACTIONS(978), - [anon_sym_err_GT] = ACTIONS(976), - [anon_sym_out_GT] = ACTIONS(976), - [anon_sym_e_GT] = ACTIONS(976), - [anon_sym_o_GT] = ACTIONS(976), - [anon_sym_err_PLUSout_GT] = ACTIONS(976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(976), - [anon_sym_o_PLUSe_GT] = ACTIONS(976), - [anon_sym_e_PLUSo_GT] = ACTIONS(976), - [anon_sym_err_GT_GT] = ACTIONS(978), - [anon_sym_out_GT_GT] = ACTIONS(978), - [anon_sym_e_GT_GT] = ACTIONS(978), - [anon_sym_o_GT_GT] = ACTIONS(978), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(978), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(978), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(978), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(978), + [aux_sym_cell_path_repeat1] = STATE(1374), + [anon_sym_true] = ACTIONS(1853), + [anon_sym_false] = ACTIONS(1853), + [anon_sym_null] = ACTIONS(1853), + [aux_sym_cmd_identifier_token38] = ACTIONS(1853), + [aux_sym_cmd_identifier_token39] = ACTIONS(1853), + [aux_sym_cmd_identifier_token40] = ACTIONS(1853), + [sym__newline] = ACTIONS(1853), + [anon_sym_SEMI] = ACTIONS(1853), + [anon_sym_PIPE] = ACTIONS(1853), + [anon_sym_err_GT_PIPE] = ACTIONS(1853), + [anon_sym_out_GT_PIPE] = ACTIONS(1853), + [anon_sym_e_GT_PIPE] = ACTIONS(1853), + [anon_sym_o_GT_PIPE] = ACTIONS(1853), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1853), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1853), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1853), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1853), + [anon_sym_LBRACK] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1853), + [anon_sym_RPAREN] = ACTIONS(1853), + [anon_sym_DOLLAR] = ACTIONS(1851), + [anon_sym_DASH_DASH] = ACTIONS(1853), + [anon_sym_DASH] = ACTIONS(1851), + [aux_sym_ctrl_match_token1] = ACTIONS(1853), + [anon_sym_RBRACE] = ACTIONS(1853), + [anon_sym_DOT_DOT] = ACTIONS(1851), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1853), + [anon_sym_DOT_DOT_LT] = ACTIONS(1853), + [aux_sym__val_number_decimal_token1] = ACTIONS(1851), + [aux_sym__val_number_decimal_token2] = ACTIONS(1853), + [aux_sym__val_number_decimal_token3] = ACTIONS(1853), + [aux_sym__val_number_decimal_token4] = ACTIONS(1853), + [aux_sym__val_number_token1] = ACTIONS(1853), + [aux_sym__val_number_token2] = ACTIONS(1853), + [aux_sym__val_number_token3] = ACTIONS(1853), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0o] = ACTIONS(1851), + [anon_sym_0x] = ACTIONS(1851), + [sym_val_date] = ACTIONS(1853), + [anon_sym_DQUOTE] = ACTIONS(1853), + [sym__str_single_quotes] = ACTIONS(1853), + [sym__str_back_ticks] = ACTIONS(1853), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1853), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1853), + [anon_sym_err_GT] = ACTIONS(1851), + [anon_sym_out_GT] = ACTIONS(1851), + [anon_sym_e_GT] = ACTIONS(1851), + [anon_sym_o_GT] = ACTIONS(1851), + [anon_sym_err_PLUSout_GT] = ACTIONS(1851), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1851), + [anon_sym_o_PLUSe_GT] = ACTIONS(1851), + [anon_sym_e_PLUSo_GT] = ACTIONS(1851), + [anon_sym_err_GT_GT] = ACTIONS(1853), + [anon_sym_out_GT_GT] = ACTIONS(1853), + [anon_sym_e_GT_GT] = ACTIONS(1853), + [anon_sym_o_GT_GT] = ACTIONS(1853), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1853), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1853), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1853), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1853), + [aux_sym_unquoted_token1] = ACTIONS(1851), [anon_sym_POUND] = ACTIONS(247), }, [1270] = { + [sym__expr_parenthesized_immediate] = STATE(7411), [sym_comment] = STATE(1270), - [anon_sym_EQ] = ACTIONS(962), - [anon_sym_PLUS_EQ] = ACTIONS(964), - [anon_sym_DASH_EQ] = ACTIONS(964), - [anon_sym_STAR_EQ] = ACTIONS(964), - [anon_sym_SLASH_EQ] = ACTIONS(964), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(964), - [sym__newline] = ACTIONS(964), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_PIPE] = ACTIONS(964), - [anon_sym_err_GT_PIPE] = ACTIONS(964), - [anon_sym_out_GT_PIPE] = ACTIONS(964), - [anon_sym_e_GT_PIPE] = ACTIONS(964), - [anon_sym_o_GT_PIPE] = ACTIONS(964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(964), - [anon_sym_RPAREN] = ACTIONS(964), - [anon_sym_COMMA] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_QMARK2] = ACTIONS(964), - [aux_sym_expr_binary_token1] = ACTIONS(964), - [aux_sym_expr_binary_token2] = ACTIONS(964), - [aux_sym_expr_binary_token3] = ACTIONS(964), - [aux_sym_expr_binary_token4] = ACTIONS(964), - [aux_sym_expr_binary_token5] = ACTIONS(964), - [aux_sym_expr_binary_token6] = ACTIONS(964), - [aux_sym_expr_binary_token7] = ACTIONS(964), - [aux_sym_expr_binary_token8] = ACTIONS(964), - [aux_sym_expr_binary_token9] = ACTIONS(964), - [aux_sym_expr_binary_token10] = ACTIONS(964), - [aux_sym_expr_binary_token11] = ACTIONS(964), - [aux_sym_expr_binary_token12] = ACTIONS(964), - [aux_sym_expr_binary_token13] = ACTIONS(964), - [aux_sym_expr_binary_token14] = ACTIONS(964), - [aux_sym_expr_binary_token15] = ACTIONS(964), - [aux_sym_expr_binary_token16] = ACTIONS(964), - [aux_sym_expr_binary_token17] = ACTIONS(964), - [aux_sym_expr_binary_token18] = ACTIONS(964), - [aux_sym_expr_binary_token19] = ACTIONS(964), - [aux_sym_expr_binary_token20] = ACTIONS(964), - [aux_sym_expr_binary_token21] = ACTIONS(964), - [aux_sym_expr_binary_token22] = ACTIONS(964), - [aux_sym_expr_binary_token23] = ACTIONS(964), - [aux_sym_expr_binary_token24] = ACTIONS(964), - [aux_sym_expr_binary_token25] = ACTIONS(964), - [aux_sym_expr_binary_token26] = ACTIONS(964), - [aux_sym_expr_binary_token27] = ACTIONS(964), - [aux_sym_expr_binary_token28] = ACTIONS(964), - [anon_sym_DOT_DOT2] = ACTIONS(962), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(964), - [anon_sym_DOT_DOT_LT2] = ACTIONS(964), - [anon_sym_err_GT] = ACTIONS(962), - [anon_sym_out_GT] = ACTIONS(962), - [anon_sym_e_GT] = ACTIONS(962), - [anon_sym_o_GT] = ACTIONS(962), - [anon_sym_err_PLUSout_GT] = ACTIONS(962), - [anon_sym_out_PLUSerr_GT] = ACTIONS(962), - [anon_sym_o_PLUSe_GT] = ACTIONS(962), - [anon_sym_e_PLUSo_GT] = ACTIONS(962), - [anon_sym_err_GT_GT] = ACTIONS(964), - [anon_sym_out_GT_GT] = ACTIONS(964), - [anon_sym_e_GT_GT] = ACTIONS(964), - [anon_sym_o_GT_GT] = ACTIONS(964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(964), + [sym__newline] = ACTIONS(1587), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_err_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_GT_PIPE] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), + [anon_sym_RPAREN] = ACTIONS(1587), + [anon_sym_RBRACE] = ACTIONS(1587), + [anon_sym_LPAREN2] = ACTIONS(3914), + [aux_sym_expr_binary_token1] = ACTIONS(1587), + [aux_sym_expr_binary_token2] = ACTIONS(1587), + [aux_sym_expr_binary_token3] = ACTIONS(1587), + [aux_sym_expr_binary_token4] = ACTIONS(1587), + [aux_sym_expr_binary_token5] = ACTIONS(1587), + [aux_sym_expr_binary_token6] = ACTIONS(1587), + [aux_sym_expr_binary_token7] = ACTIONS(1587), + [aux_sym_expr_binary_token8] = ACTIONS(1587), + [aux_sym_expr_binary_token9] = ACTIONS(1587), + [aux_sym_expr_binary_token10] = ACTIONS(1587), + [aux_sym_expr_binary_token11] = ACTIONS(1587), + [aux_sym_expr_binary_token12] = ACTIONS(1587), + [aux_sym_expr_binary_token13] = ACTIONS(1587), + [aux_sym_expr_binary_token14] = ACTIONS(1587), + [aux_sym_expr_binary_token15] = ACTIONS(1587), + [aux_sym_expr_binary_token16] = ACTIONS(1587), + [aux_sym_expr_binary_token17] = ACTIONS(1587), + [aux_sym_expr_binary_token18] = ACTIONS(1587), + [aux_sym_expr_binary_token19] = ACTIONS(1587), + [aux_sym_expr_binary_token20] = ACTIONS(1587), + [aux_sym_expr_binary_token21] = ACTIONS(1587), + [aux_sym_expr_binary_token22] = ACTIONS(1587), + [aux_sym_expr_binary_token23] = ACTIONS(1587), + [aux_sym_expr_binary_token24] = ACTIONS(1587), + [aux_sym_expr_binary_token25] = ACTIONS(1587), + [aux_sym_expr_binary_token26] = ACTIONS(1587), + [aux_sym_expr_binary_token27] = ACTIONS(1587), + [aux_sym_expr_binary_token28] = ACTIONS(1587), + [anon_sym_DOT_DOT2] = ACTIONS(4610), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4612), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4612), + [sym_filesize_unit] = ACTIONS(4614), + [sym_duration_unit] = ACTIONS(4616), + [anon_sym_err_GT] = ACTIONS(1575), + [anon_sym_out_GT] = ACTIONS(1575), + [anon_sym_e_GT] = ACTIONS(1575), + [anon_sym_o_GT] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT] = ACTIONS(1575), + [anon_sym_err_GT_GT] = ACTIONS(1587), + [anon_sym_out_GT_GT] = ACTIONS(1587), + [anon_sym_e_GT_GT] = ACTIONS(1587), + [anon_sym_o_GT_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [aux_sym_unquoted_token2] = ACTIONS(4618), [anon_sym_POUND] = ACTIONS(247), }, [1271] = { - [sym_path] = STATE(1399), [sym_comment] = STATE(1271), - [aux_sym_cell_path_repeat1] = STATE(1271), - [anon_sym_EQ] = ACTIONS(955), - [anon_sym_PLUS_EQ] = ACTIONS(957), - [anon_sym_DASH_EQ] = ACTIONS(957), - [anon_sym_STAR_EQ] = ACTIONS(957), - [anon_sym_SLASH_EQ] = ACTIONS(957), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(957), - [sym__newline] = ACTIONS(955), - [anon_sym_SEMI] = ACTIONS(957), - [anon_sym_PIPE] = ACTIONS(957), - [anon_sym_err_GT_PIPE] = ACTIONS(957), - [anon_sym_out_GT_PIPE] = ACTIONS(957), - [anon_sym_e_GT_PIPE] = ACTIONS(957), - [anon_sym_o_GT_PIPE] = ACTIONS(957), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(957), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(957), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(957), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(957), - [anon_sym_RPAREN] = ACTIONS(957), - [aux_sym_ctrl_match_token1] = ACTIONS(957), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(957), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(957), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(957), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(957), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(957), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(957), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(957), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(957), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(957), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(957), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(957), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(957), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(957), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(957), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(957), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(957), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(957), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(957), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(957), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(957), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(957), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(957), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(957), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(957), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(957), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(957), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(957), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(957), - [anon_sym_DOT_DOT2] = ACTIONS(955), - [anon_sym_DOT] = ACTIONS(4109), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(957), - [anon_sym_DOT_DOT_LT2] = ACTIONS(957), - [anon_sym_err_GT] = ACTIONS(955), - [anon_sym_out_GT] = ACTIONS(955), - [anon_sym_e_GT] = ACTIONS(955), - [anon_sym_o_GT] = ACTIONS(955), - [anon_sym_err_PLUSout_GT] = ACTIONS(955), - [anon_sym_out_PLUSerr_GT] = ACTIONS(955), - [anon_sym_o_PLUSe_GT] = ACTIONS(955), - [anon_sym_e_PLUSo_GT] = ACTIONS(955), - [anon_sym_err_GT_GT] = ACTIONS(957), - [anon_sym_out_GT_GT] = ACTIONS(957), - [anon_sym_e_GT_GT] = ACTIONS(957), - [anon_sym_o_GT_GT] = ACTIONS(957), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(957), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(957), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(957), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(957), + [ts_builtin_sym_end] = ACTIONS(1078), + [anon_sym_EQ] = ACTIONS(4620), + [anon_sym_PLUS_EQ] = ACTIONS(4622), + [anon_sym_DASH_EQ] = ACTIONS(4622), + [anon_sym_STAR_EQ] = ACTIONS(4622), + [anon_sym_SLASH_EQ] = ACTIONS(4622), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4622), + [sym__newline] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_err_GT_PIPE] = ACTIONS(1078), + [anon_sym_out_GT_PIPE] = ACTIONS(1078), + [anon_sym_e_GT_PIPE] = ACTIONS(1078), + [anon_sym_o_GT_PIPE] = ACTIONS(1078), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1078), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1078), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1078), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1078), + [aux_sym_expr_binary_token1] = ACTIONS(1078), + [aux_sym_expr_binary_token2] = ACTIONS(1078), + [aux_sym_expr_binary_token3] = ACTIONS(1078), + [aux_sym_expr_binary_token4] = ACTIONS(1078), + [aux_sym_expr_binary_token5] = ACTIONS(1078), + [aux_sym_expr_binary_token6] = ACTIONS(1078), + [aux_sym_expr_binary_token7] = ACTIONS(1078), + [aux_sym_expr_binary_token8] = ACTIONS(1078), + [aux_sym_expr_binary_token9] = ACTIONS(1078), + [aux_sym_expr_binary_token10] = ACTIONS(1078), + [aux_sym_expr_binary_token11] = ACTIONS(1078), + [aux_sym_expr_binary_token12] = ACTIONS(1078), + [aux_sym_expr_binary_token13] = ACTIONS(1078), + [aux_sym_expr_binary_token14] = ACTIONS(1078), + [aux_sym_expr_binary_token15] = ACTIONS(1078), + [aux_sym_expr_binary_token16] = ACTIONS(1078), + [aux_sym_expr_binary_token17] = ACTIONS(1078), + [aux_sym_expr_binary_token18] = ACTIONS(1078), + [aux_sym_expr_binary_token19] = ACTIONS(1078), + [aux_sym_expr_binary_token20] = ACTIONS(1078), + [aux_sym_expr_binary_token21] = ACTIONS(1078), + [aux_sym_expr_binary_token22] = ACTIONS(1078), + [aux_sym_expr_binary_token23] = ACTIONS(1078), + [aux_sym_expr_binary_token24] = ACTIONS(1078), + [aux_sym_expr_binary_token25] = ACTIONS(1078), + [aux_sym_expr_binary_token26] = ACTIONS(1078), + [aux_sym_expr_binary_token27] = ACTIONS(1078), + [aux_sym_expr_binary_token28] = ACTIONS(1078), + [anon_sym_DOT_DOT2] = ACTIONS(4624), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4626), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4626), + [anon_sym_err_GT] = ACTIONS(1076), + [anon_sym_out_GT] = ACTIONS(1076), + [anon_sym_e_GT] = ACTIONS(1076), + [anon_sym_o_GT] = ACTIONS(1076), + [anon_sym_err_PLUSout_GT] = ACTIONS(1076), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1076), + [anon_sym_o_PLUSe_GT] = ACTIONS(1076), + [anon_sym_e_PLUSo_GT] = ACTIONS(1076), + [anon_sym_err_GT_GT] = ACTIONS(1078), + [anon_sym_out_GT_GT] = ACTIONS(1078), + [anon_sym_e_GT_GT] = ACTIONS(1078), + [anon_sym_o_GT_GT] = ACTIONS(1078), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1078), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1078), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1078), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1078), [anon_sym_POUND] = ACTIONS(247), }, [1272] = { [sym_comment] = STATE(1272), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [aux_sym_cmd_identifier_token38] = ACTIONS(1475), - [aux_sym_cmd_identifier_token39] = ACTIONS(1475), - [aux_sym_cmd_identifier_token40] = ACTIONS(1475), - [sym__newline] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_err_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_GT_PIPE] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1473), - [anon_sym_RPAREN] = ACTIONS(1475), - [anon_sym_DOLLAR] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1473), - [aux_sym_ctrl_match_token1] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_DOT_DOT] = ACTIONS(1473), - [anon_sym_LPAREN2] = ACTIONS(1475), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), - [anon_sym_DOT_DOT_LT] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [aux_sym__immediate_decimal_token2] = ACTIONS(4093), - [aux_sym__val_number_decimal_token1] = ACTIONS(1473), - [aux_sym__val_number_decimal_token2] = ACTIONS(1475), - [aux_sym__val_number_decimal_token3] = ACTIONS(1475), - [aux_sym__val_number_decimal_token4] = ACTIONS(1475), - [aux_sym__val_number_token1] = ACTIONS(1475), - [aux_sym__val_number_token2] = ACTIONS(1475), - [aux_sym__val_number_token3] = ACTIONS(1475), - [anon_sym_0b] = ACTIONS(1473), - [sym_filesize_unit] = ACTIONS(1475), - [sym_duration_unit] = ACTIONS(1475), - [anon_sym_0o] = ACTIONS(1473), - [anon_sym_0x] = ACTIONS(1473), - [sym_val_date] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym__str_single_quotes] = ACTIONS(1475), - [sym__str_back_ticks] = ACTIONS(1475), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1473), - [anon_sym_out_GT] = ACTIONS(1473), - [anon_sym_e_GT] = ACTIONS(1473), - [anon_sym_o_GT] = ACTIONS(1473), - [anon_sym_err_PLUSout_GT] = ACTIONS(1473), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), - [anon_sym_o_PLUSe_GT] = ACTIONS(1473), - [anon_sym_e_PLUSo_GT] = ACTIONS(1473), - [anon_sym_err_GT_GT] = ACTIONS(1475), - [anon_sym_out_GT_GT] = ACTIONS(1475), - [anon_sym_e_GT_GT] = ACTIONS(1475), - [anon_sym_o_GT_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), - [aux_sym_unquoted_token1] = ACTIONS(1473), - [aux_sym_unquoted_token2] = ACTIONS(1473), + [ts_builtin_sym_end] = ACTIONS(1707), + [anon_sym_true] = ACTIONS(1707), + [anon_sym_false] = ACTIONS(1707), + [anon_sym_null] = ACTIONS(1707), + [aux_sym_cmd_identifier_token38] = ACTIONS(1707), + [aux_sym_cmd_identifier_token39] = ACTIONS(1707), + [aux_sym_cmd_identifier_token40] = ACTIONS(1707), + [sym__newline] = ACTIONS(1707), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_err_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_GT_PIPE] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), + [anon_sym_LBRACK] = ACTIONS(1707), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1705), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1705), + [aux_sym_ctrl_match_token1] = ACTIONS(1707), + [anon_sym_DOT_DOT] = ACTIONS(1705), + [anon_sym_LPAREN2] = ACTIONS(1707), + [anon_sym_DOT_DOT2] = ACTIONS(1705), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1705), + [anon_sym_DOT_DOT_LT] = ACTIONS(1705), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1707), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1707), + [aux_sym__val_number_decimal_token1] = ACTIONS(1705), + [aux_sym__val_number_decimal_token2] = ACTIONS(1707), + [aux_sym__val_number_decimal_token3] = ACTIONS(1707), + [aux_sym__val_number_decimal_token4] = ACTIONS(1707), + [aux_sym__val_number_token1] = ACTIONS(1707), + [aux_sym__val_number_token2] = ACTIONS(1707), + [aux_sym__val_number_token3] = ACTIONS(1707), + [anon_sym_0b] = ACTIONS(1705), + [anon_sym_0o] = ACTIONS(1705), + [anon_sym_0x] = ACTIONS(1705), + [sym_val_date] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1707), + [sym__str_single_quotes] = ACTIONS(1707), + [sym__str_back_ticks] = ACTIONS(1707), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1707), + [anon_sym_err_GT] = ACTIONS(1705), + [anon_sym_out_GT] = ACTIONS(1705), + [anon_sym_e_GT] = ACTIONS(1705), + [anon_sym_o_GT] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT] = ACTIONS(1705), + [anon_sym_err_GT_GT] = ACTIONS(1707), + [anon_sym_out_GT_GT] = ACTIONS(1707), + [anon_sym_e_GT_GT] = ACTIONS(1707), + [anon_sym_o_GT_GT] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), + [aux_sym_unquoted_token1] = ACTIONS(1705), + [aux_sym_unquoted_token2] = ACTIONS(1705), [anon_sym_POUND] = ACTIONS(247), }, [1273] = { + [sym_cell_path] = STATE(1557), + [sym_path] = STATE(1532), [sym_comment] = STATE(1273), - [anon_sym_EQ] = ACTIONS(966), - [anon_sym_PLUS_EQ] = ACTIONS(968), - [anon_sym_DASH_EQ] = ACTIONS(968), - [anon_sym_STAR_EQ] = ACTIONS(968), - [anon_sym_SLASH_EQ] = ACTIONS(968), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(968), - [sym__newline] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [aux_sym_ctrl_match_token1] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_QMARK2] = ACTIONS(968), - [aux_sym_expr_binary_token1] = ACTIONS(968), - [aux_sym_expr_binary_token2] = ACTIONS(968), - [aux_sym_expr_binary_token3] = ACTIONS(968), - [aux_sym_expr_binary_token4] = ACTIONS(968), - [aux_sym_expr_binary_token5] = ACTIONS(968), - [aux_sym_expr_binary_token6] = ACTIONS(968), - [aux_sym_expr_binary_token7] = ACTIONS(968), - [aux_sym_expr_binary_token8] = ACTIONS(968), - [aux_sym_expr_binary_token9] = ACTIONS(968), - [aux_sym_expr_binary_token10] = ACTIONS(968), - [aux_sym_expr_binary_token11] = ACTIONS(968), - [aux_sym_expr_binary_token12] = ACTIONS(968), - [aux_sym_expr_binary_token13] = ACTIONS(968), - [aux_sym_expr_binary_token14] = ACTIONS(968), - [aux_sym_expr_binary_token15] = ACTIONS(968), - [aux_sym_expr_binary_token16] = ACTIONS(968), - [aux_sym_expr_binary_token17] = ACTIONS(968), - [aux_sym_expr_binary_token18] = ACTIONS(968), - [aux_sym_expr_binary_token19] = ACTIONS(968), - [aux_sym_expr_binary_token20] = ACTIONS(968), - [aux_sym_expr_binary_token21] = ACTIONS(968), - [aux_sym_expr_binary_token22] = ACTIONS(968), - [aux_sym_expr_binary_token23] = ACTIONS(968), - [aux_sym_expr_binary_token24] = ACTIONS(968), - [aux_sym_expr_binary_token25] = ACTIONS(968), - [aux_sym_expr_binary_token26] = ACTIONS(968), - [aux_sym_expr_binary_token27] = ACTIONS(968), - [aux_sym_expr_binary_token28] = ACTIONS(968), - [anon_sym_DOT_DOT2] = ACTIONS(966), - [anon_sym_DOT] = ACTIONS(966), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(968), - [anon_sym_DOT_DOT_LT2] = ACTIONS(968), - [aux_sym_record_entry_token1] = ACTIONS(968), - [anon_sym_err_GT] = ACTIONS(966), - [anon_sym_out_GT] = ACTIONS(966), - [anon_sym_e_GT] = ACTIONS(966), - [anon_sym_o_GT] = ACTIONS(966), - [anon_sym_err_PLUSout_GT] = ACTIONS(966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(966), - [anon_sym_o_PLUSe_GT] = ACTIONS(966), - [anon_sym_e_PLUSo_GT] = ACTIONS(966), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), + [aux_sym_cell_path_repeat1] = STATE(1374), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1861), + [aux_sym_cmd_identifier_token38] = ACTIONS(1861), + [aux_sym_cmd_identifier_token39] = ACTIONS(1861), + [aux_sym_cmd_identifier_token40] = ACTIONS(1861), + [sym__newline] = ACTIONS(1861), + [anon_sym_SEMI] = ACTIONS(1861), + [anon_sym_PIPE] = ACTIONS(1861), + [anon_sym_err_GT_PIPE] = ACTIONS(1861), + [anon_sym_out_GT_PIPE] = ACTIONS(1861), + [anon_sym_e_GT_PIPE] = ACTIONS(1861), + [anon_sym_o_GT_PIPE] = ACTIONS(1861), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1861), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1861), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1861), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1861), + [anon_sym_RPAREN] = ACTIONS(1861), + [anon_sym_DOLLAR] = ACTIONS(1859), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_DASH] = ACTIONS(1859), + [aux_sym_ctrl_match_token1] = ACTIONS(1861), + [anon_sym_RBRACE] = ACTIONS(1861), + [anon_sym_DOT_DOT] = ACTIONS(1859), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1861), + [anon_sym_DOT_DOT_LT] = ACTIONS(1861), + [aux_sym__val_number_decimal_token1] = ACTIONS(1859), + [aux_sym__val_number_decimal_token2] = ACTIONS(1861), + [aux_sym__val_number_decimal_token3] = ACTIONS(1861), + [aux_sym__val_number_decimal_token4] = ACTIONS(1861), + [aux_sym__val_number_token1] = ACTIONS(1861), + [aux_sym__val_number_token2] = ACTIONS(1861), + [aux_sym__val_number_token3] = ACTIONS(1861), + [anon_sym_0b] = ACTIONS(1859), + [anon_sym_0o] = ACTIONS(1859), + [anon_sym_0x] = ACTIONS(1859), + [sym_val_date] = ACTIONS(1861), + [anon_sym_DQUOTE] = ACTIONS(1861), + [sym__str_single_quotes] = ACTIONS(1861), + [sym__str_back_ticks] = ACTIONS(1861), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1861), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1861), + [anon_sym_err_GT] = ACTIONS(1859), + [anon_sym_out_GT] = ACTIONS(1859), + [anon_sym_e_GT] = ACTIONS(1859), + [anon_sym_o_GT] = ACTIONS(1859), + [anon_sym_err_PLUSout_GT] = ACTIONS(1859), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1859), + [anon_sym_o_PLUSe_GT] = ACTIONS(1859), + [anon_sym_e_PLUSo_GT] = ACTIONS(1859), + [anon_sym_err_GT_GT] = ACTIONS(1861), + [anon_sym_out_GT_GT] = ACTIONS(1861), + [anon_sym_e_GT_GT] = ACTIONS(1861), + [anon_sym_o_GT_GT] = ACTIONS(1861), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1861), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1861), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1861), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1861), + [aux_sym_unquoted_token1] = ACTIONS(1859), [anon_sym_POUND] = ACTIONS(247), }, [1274] = { [sym_comment] = STATE(1274), - [anon_sym_EQ] = ACTIONS(980), - [anon_sym_PLUS_EQ] = ACTIONS(982), - [anon_sym_DASH_EQ] = ACTIONS(982), - [anon_sym_STAR_EQ] = ACTIONS(982), - [anon_sym_SLASH_EQ] = ACTIONS(982), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(982), - [sym__newline] = ACTIONS(982), - [anon_sym_SEMI] = ACTIONS(982), - [anon_sym_PIPE] = ACTIONS(982), - [anon_sym_err_GT_PIPE] = ACTIONS(982), - [anon_sym_out_GT_PIPE] = ACTIONS(982), - [anon_sym_e_GT_PIPE] = ACTIONS(982), - [anon_sym_o_GT_PIPE] = ACTIONS(982), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(982), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(982), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(982), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(982), - [anon_sym_RPAREN] = ACTIONS(982), - [anon_sym_COMMA] = ACTIONS(982), - [anon_sym_RBRACE] = ACTIONS(982), - [anon_sym_QMARK2] = ACTIONS(4112), - [aux_sym_expr_binary_token1] = ACTIONS(982), - [aux_sym_expr_binary_token2] = ACTIONS(982), - [aux_sym_expr_binary_token3] = ACTIONS(982), - [aux_sym_expr_binary_token4] = ACTIONS(982), - [aux_sym_expr_binary_token5] = ACTIONS(982), - [aux_sym_expr_binary_token6] = ACTIONS(982), - [aux_sym_expr_binary_token7] = ACTIONS(982), - [aux_sym_expr_binary_token8] = ACTIONS(982), - [aux_sym_expr_binary_token9] = ACTIONS(982), - [aux_sym_expr_binary_token10] = ACTIONS(982), - [aux_sym_expr_binary_token11] = ACTIONS(982), - [aux_sym_expr_binary_token12] = ACTIONS(982), - [aux_sym_expr_binary_token13] = ACTIONS(982), - [aux_sym_expr_binary_token14] = ACTIONS(982), - [aux_sym_expr_binary_token15] = ACTIONS(982), - [aux_sym_expr_binary_token16] = ACTIONS(982), - [aux_sym_expr_binary_token17] = ACTIONS(982), - [aux_sym_expr_binary_token18] = ACTIONS(982), - [aux_sym_expr_binary_token19] = ACTIONS(982), - [aux_sym_expr_binary_token20] = ACTIONS(982), - [aux_sym_expr_binary_token21] = ACTIONS(982), - [aux_sym_expr_binary_token22] = ACTIONS(982), - [aux_sym_expr_binary_token23] = ACTIONS(982), - [aux_sym_expr_binary_token24] = ACTIONS(982), - [aux_sym_expr_binary_token25] = ACTIONS(982), - [aux_sym_expr_binary_token26] = ACTIONS(982), - [aux_sym_expr_binary_token27] = ACTIONS(982), - [aux_sym_expr_binary_token28] = ACTIONS(982), - [anon_sym_DOT_DOT2] = ACTIONS(980), - [anon_sym_DOT] = ACTIONS(980), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(982), - [anon_sym_DOT_DOT_LT2] = ACTIONS(982), - [anon_sym_err_GT] = ACTIONS(980), - [anon_sym_out_GT] = ACTIONS(980), - [anon_sym_e_GT] = ACTIONS(980), - [anon_sym_o_GT] = ACTIONS(980), - [anon_sym_err_PLUSout_GT] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT] = ACTIONS(980), - [anon_sym_o_PLUSe_GT] = ACTIONS(980), - [anon_sym_e_PLUSo_GT] = ACTIONS(980), - [anon_sym_err_GT_GT] = ACTIONS(982), - [anon_sym_out_GT_GT] = ACTIONS(982), - [anon_sym_e_GT_GT] = ACTIONS(982), - [anon_sym_o_GT_GT] = ACTIONS(982), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(982), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(982), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(982), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(982), + [ts_builtin_sym_end] = ACTIONS(1042), + [anon_sym_true] = ACTIONS(1042), + [anon_sym_false] = ACTIONS(1042), + [anon_sym_null] = ACTIONS(1042), + [aux_sym_cmd_identifier_token38] = ACTIONS(1042), + [aux_sym_cmd_identifier_token39] = ACTIONS(1042), + [aux_sym_cmd_identifier_token40] = ACTIONS(1042), + [sym__newline] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1042), + [anon_sym_PIPE] = ACTIONS(1042), + [anon_sym_err_GT_PIPE] = ACTIONS(1042), + [anon_sym_out_GT_PIPE] = ACTIONS(1042), + [anon_sym_e_GT_PIPE] = ACTIONS(1042), + [anon_sym_o_GT_PIPE] = ACTIONS(1042), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1042), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1042), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1042), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1042), + [anon_sym_LBRACK] = ACTIONS(1042), + [anon_sym_LPAREN] = ACTIONS(1042), + [anon_sym_DOLLAR] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1040), + [aux_sym_ctrl_match_token1] = ACTIONS(1042), + [anon_sym_DOT_DOT] = ACTIONS(1040), + [anon_sym_QMARK2] = ACTIONS(1042), + [anon_sym_DOT_DOT2] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1040), + [anon_sym_DOT_DOT_LT] = ACTIONS(1040), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1042), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1042), + [aux_sym__val_number_decimal_token1] = ACTIONS(1040), + [aux_sym__val_number_decimal_token2] = ACTIONS(1042), + [aux_sym__val_number_decimal_token3] = ACTIONS(1042), + [aux_sym__val_number_decimal_token4] = ACTIONS(1042), + [aux_sym__val_number_token1] = ACTIONS(1042), + [aux_sym__val_number_token2] = ACTIONS(1042), + [aux_sym__val_number_token3] = ACTIONS(1042), + [anon_sym_0b] = ACTIONS(1040), + [anon_sym_0o] = ACTIONS(1040), + [anon_sym_0x] = ACTIONS(1040), + [sym_val_date] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1042), + [sym__str_single_quotes] = ACTIONS(1042), + [sym__str_back_ticks] = ACTIONS(1042), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1042), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1042), + [anon_sym_err_GT] = ACTIONS(1040), + [anon_sym_out_GT] = ACTIONS(1040), + [anon_sym_e_GT] = ACTIONS(1040), + [anon_sym_o_GT] = ACTIONS(1040), + [anon_sym_err_PLUSout_GT] = ACTIONS(1040), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1040), + [anon_sym_o_PLUSe_GT] = ACTIONS(1040), + [anon_sym_e_PLUSo_GT] = ACTIONS(1040), + [anon_sym_err_GT_GT] = ACTIONS(1042), + [anon_sym_out_GT_GT] = ACTIONS(1042), + [anon_sym_e_GT_GT] = ACTIONS(1042), + [anon_sym_o_GT_GT] = ACTIONS(1042), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1042), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1042), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1042), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1042), + [aux_sym_unquoted_token1] = ACTIONS(1040), [anon_sym_POUND] = ACTIONS(247), }, [1275] = { - [sym__expr_parenthesized_immediate] = STATE(7677), + [sym_cell_path] = STATE(1558), + [sym_path] = STATE(1532), [sym_comment] = STATE(1275), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_null] = ACTIONS(1537), - [aux_sym_cmd_identifier_token38] = ACTIONS(1537), - [aux_sym_cmd_identifier_token39] = ACTIONS(1537), - [aux_sym_cmd_identifier_token40] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_RPAREN] = ACTIONS(1537), - [anon_sym_DOLLAR] = ACTIONS(1525), - [anon_sym_DASH_DASH] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1525), - [aux_sym_ctrl_match_token1] = ACTIONS(1537), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_DOT_DOT] = ACTIONS(1525), - [anon_sym_LPAREN2] = ACTIONS(2947), - [anon_sym_DOT_DOT2] = ACTIONS(4114), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1525), - [anon_sym_DOT_DOT_LT] = ACTIONS(1525), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4116), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4116), - [aux_sym__val_number_decimal_token1] = ACTIONS(1525), - [aux_sym__val_number_decimal_token2] = ACTIONS(1537), - [aux_sym__val_number_decimal_token3] = ACTIONS(1537), - [aux_sym__val_number_decimal_token4] = ACTIONS(1537), - [aux_sym__val_number_token1] = ACTIONS(1537), - [aux_sym__val_number_token2] = ACTIONS(1537), - [aux_sym__val_number_token3] = ACTIONS(1537), - [anon_sym_0b] = ACTIONS(1525), - [sym_filesize_unit] = ACTIONS(4118), - [sym_duration_unit] = ACTIONS(4120), - [anon_sym_0o] = ACTIONS(1525), - [anon_sym_0x] = ACTIONS(1525), - [sym_val_date] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym__str_single_quotes] = ACTIONS(1537), - [sym__str_back_ticks] = ACTIONS(1537), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1537), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1537), - [anon_sym_err_GT] = ACTIONS(1525), - [anon_sym_out_GT] = ACTIONS(1525), - [anon_sym_e_GT] = ACTIONS(1525), - [anon_sym_o_GT] = ACTIONS(1525), - [anon_sym_err_PLUSout_GT] = ACTIONS(1525), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), - [anon_sym_o_PLUSe_GT] = ACTIONS(1525), - [anon_sym_e_PLUSo_GT] = ACTIONS(1525), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), - [aux_sym_unquoted_token1] = ACTIONS(1525), - [aux_sym_unquoted_token2] = ACTIONS(4122), + [aux_sym_cell_path_repeat1] = STATE(1374), + [anon_sym_true] = ACTIONS(1865), + [anon_sym_false] = ACTIONS(1865), + [anon_sym_null] = ACTIONS(1865), + [aux_sym_cmd_identifier_token38] = ACTIONS(1865), + [aux_sym_cmd_identifier_token39] = ACTIONS(1865), + [aux_sym_cmd_identifier_token40] = ACTIONS(1865), + [sym__newline] = ACTIONS(1865), + [anon_sym_SEMI] = ACTIONS(1865), + [anon_sym_PIPE] = ACTIONS(1865), + [anon_sym_err_GT_PIPE] = ACTIONS(1865), + [anon_sym_out_GT_PIPE] = ACTIONS(1865), + [anon_sym_e_GT_PIPE] = ACTIONS(1865), + [anon_sym_o_GT_PIPE] = ACTIONS(1865), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1865), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1865), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1865), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1865), + [anon_sym_LBRACK] = ACTIONS(1865), + [anon_sym_LPAREN] = ACTIONS(1865), + [anon_sym_RPAREN] = ACTIONS(1865), + [anon_sym_DOLLAR] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_DASH] = ACTIONS(1863), + [aux_sym_ctrl_match_token1] = ACTIONS(1865), + [anon_sym_RBRACE] = ACTIONS(1865), + [anon_sym_DOT_DOT] = ACTIONS(1863), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1865), + [anon_sym_DOT_DOT_LT] = ACTIONS(1865), + [aux_sym__val_number_decimal_token1] = ACTIONS(1863), + [aux_sym__val_number_decimal_token2] = ACTIONS(1865), + [aux_sym__val_number_decimal_token3] = ACTIONS(1865), + [aux_sym__val_number_decimal_token4] = ACTIONS(1865), + [aux_sym__val_number_token1] = ACTIONS(1865), + [aux_sym__val_number_token2] = ACTIONS(1865), + [aux_sym__val_number_token3] = ACTIONS(1865), + [anon_sym_0b] = ACTIONS(1863), + [anon_sym_0o] = ACTIONS(1863), + [anon_sym_0x] = ACTIONS(1863), + [sym_val_date] = ACTIONS(1865), + [anon_sym_DQUOTE] = ACTIONS(1865), + [sym__str_single_quotes] = ACTIONS(1865), + [sym__str_back_ticks] = ACTIONS(1865), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1865), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1865), + [anon_sym_err_GT] = ACTIONS(1863), + [anon_sym_out_GT] = ACTIONS(1863), + [anon_sym_e_GT] = ACTIONS(1863), + [anon_sym_o_GT] = ACTIONS(1863), + [anon_sym_err_PLUSout_GT] = ACTIONS(1863), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1863), + [anon_sym_o_PLUSe_GT] = ACTIONS(1863), + [anon_sym_e_PLUSo_GT] = ACTIONS(1863), + [anon_sym_err_GT_GT] = ACTIONS(1865), + [anon_sym_out_GT_GT] = ACTIONS(1865), + [anon_sym_e_GT_GT] = ACTIONS(1865), + [anon_sym_o_GT_GT] = ACTIONS(1865), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1865), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1865), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1865), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1865), + [aux_sym_unquoted_token1] = ACTIONS(1863), [anon_sym_POUND] = ACTIONS(247), }, [1276] = { - [sym__expr_parenthesized_immediate] = STATE(1984), - [sym__immediate_decimal] = STATE(1741), - [sym_val_variable] = STATE(1984), + [sym_cell_path] = STATE(1559), + [sym_path] = STATE(1532), [sym_comment] = STATE(1276), - [ts_builtin_sym_end] = ACTIONS(1427), - [anon_sym_true] = ACTIONS(1427), - [anon_sym_false] = ACTIONS(1427), - [anon_sym_null] = ACTIONS(1427), - [aux_sym_cmd_identifier_token38] = ACTIONS(1427), - [aux_sym_cmd_identifier_token39] = ACTIONS(1427), - [aux_sym_cmd_identifier_token40] = ACTIONS(1427), - [sym__newline] = ACTIONS(1427), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_PIPE] = ACTIONS(1427), - [anon_sym_err_GT_PIPE] = ACTIONS(1427), - [anon_sym_out_GT_PIPE] = ACTIONS(1427), - [anon_sym_e_GT_PIPE] = ACTIONS(1427), - [anon_sym_o_GT_PIPE] = ACTIONS(1427), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1427), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1427), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1427), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1413), - [anon_sym_DOLLAR] = ACTIONS(4124), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1413), - [aux_sym_ctrl_match_token1] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_LPAREN2] = ACTIONS(4126), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1427), - [anon_sym_DOT_DOT_LT] = ACTIONS(1427), - [aux_sym__immediate_decimal_token1] = ACTIONS(4128), - [aux_sym__immediate_decimal_token3] = ACTIONS(4130), - [aux_sym__immediate_decimal_token4] = ACTIONS(4132), - [aux_sym__immediate_decimal_token5] = ACTIONS(4134), - [aux_sym__val_number_decimal_token1] = ACTIONS(1413), - [aux_sym__val_number_decimal_token2] = ACTIONS(1413), - [aux_sym__val_number_decimal_token3] = ACTIONS(1413), - [aux_sym__val_number_decimal_token4] = ACTIONS(1413), - [aux_sym__val_number_token1] = ACTIONS(1427), - [aux_sym__val_number_token2] = ACTIONS(1427), - [aux_sym__val_number_token3] = ACTIONS(1427), - [anon_sym_0b] = ACTIONS(1413), - [anon_sym_0o] = ACTIONS(1413), - [anon_sym_0x] = ACTIONS(1413), - [sym_val_date] = ACTIONS(1427), - [anon_sym_DQUOTE] = ACTIONS(1427), - [sym__str_single_quotes] = ACTIONS(1427), - [sym__str_back_ticks] = ACTIONS(1427), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1427), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1427), - [anon_sym_err_GT] = ACTIONS(1413), - [anon_sym_out_GT] = ACTIONS(1413), - [anon_sym_e_GT] = ACTIONS(1413), - [anon_sym_o_GT] = ACTIONS(1413), - [anon_sym_err_PLUSout_GT] = ACTIONS(1413), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1413), - [anon_sym_o_PLUSe_GT] = ACTIONS(1413), - [anon_sym_e_PLUSo_GT] = ACTIONS(1413), - [anon_sym_err_GT_GT] = ACTIONS(1427), - [anon_sym_out_GT_GT] = ACTIONS(1427), - [anon_sym_e_GT_GT] = ACTIONS(1427), - [anon_sym_o_GT_GT] = ACTIONS(1427), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1427), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1427), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1427), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1427), - [aux_sym_unquoted_token1] = ACTIONS(1413), - [aux_sym_unquoted_token2] = ACTIONS(1429), + [aux_sym_cell_path_repeat1] = STATE(1374), + [anon_sym_true] = ACTIONS(1869), + [anon_sym_false] = ACTIONS(1869), + [anon_sym_null] = ACTIONS(1869), + [aux_sym_cmd_identifier_token38] = ACTIONS(1869), + [aux_sym_cmd_identifier_token39] = ACTIONS(1869), + [aux_sym_cmd_identifier_token40] = ACTIONS(1869), + [sym__newline] = ACTIONS(1869), + [anon_sym_SEMI] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_err_GT_PIPE] = ACTIONS(1869), + [anon_sym_out_GT_PIPE] = ACTIONS(1869), + [anon_sym_e_GT_PIPE] = ACTIONS(1869), + [anon_sym_o_GT_PIPE] = ACTIONS(1869), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1869), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1869), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1869), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1869), + [anon_sym_LBRACK] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1869), + [anon_sym_RPAREN] = ACTIONS(1869), + [anon_sym_DOLLAR] = ACTIONS(1867), + [anon_sym_DASH_DASH] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1867), + [aux_sym_ctrl_match_token1] = ACTIONS(1869), + [anon_sym_RBRACE] = ACTIONS(1869), + [anon_sym_DOT_DOT] = ACTIONS(1867), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1869), + [anon_sym_DOT_DOT_LT] = ACTIONS(1869), + [aux_sym__val_number_decimal_token1] = ACTIONS(1867), + [aux_sym__val_number_decimal_token2] = ACTIONS(1869), + [aux_sym__val_number_decimal_token3] = ACTIONS(1869), + [aux_sym__val_number_decimal_token4] = ACTIONS(1869), + [aux_sym__val_number_token1] = ACTIONS(1869), + [aux_sym__val_number_token2] = ACTIONS(1869), + [aux_sym__val_number_token3] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1867), + [anon_sym_0x] = ACTIONS(1867), + [sym_val_date] = ACTIONS(1869), + [anon_sym_DQUOTE] = ACTIONS(1869), + [sym__str_single_quotes] = ACTIONS(1869), + [sym__str_back_ticks] = ACTIONS(1869), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1869), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1869), + [anon_sym_err_GT] = ACTIONS(1867), + [anon_sym_out_GT] = ACTIONS(1867), + [anon_sym_e_GT] = ACTIONS(1867), + [anon_sym_o_GT] = ACTIONS(1867), + [anon_sym_err_PLUSout_GT] = ACTIONS(1867), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1867), + [anon_sym_o_PLUSe_GT] = ACTIONS(1867), + [anon_sym_e_PLUSo_GT] = ACTIONS(1867), + [anon_sym_err_GT_GT] = ACTIONS(1869), + [anon_sym_out_GT_GT] = ACTIONS(1869), + [anon_sym_e_GT_GT] = ACTIONS(1869), + [anon_sym_o_GT_GT] = ACTIONS(1869), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1869), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1869), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1869), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1869), + [aux_sym_unquoted_token1] = ACTIONS(1867), [anon_sym_POUND] = ACTIONS(247), }, [1277] = { + [sym_cell_path] = STATE(1579), + [sym_path] = STATE(1532), [sym_comment] = STATE(1277), - [anon_sym_EQ] = ACTIONS(976), - [anon_sym_PLUS_EQ] = ACTIONS(978), - [anon_sym_DASH_EQ] = ACTIONS(978), - [anon_sym_STAR_EQ] = ACTIONS(978), - [anon_sym_SLASH_EQ] = ACTIONS(978), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(978), - [sym__newline] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(978), - [anon_sym_PIPE] = ACTIONS(978), - [anon_sym_err_GT_PIPE] = ACTIONS(978), - [anon_sym_out_GT_PIPE] = ACTIONS(978), - [anon_sym_e_GT_PIPE] = ACTIONS(978), - [anon_sym_o_GT_PIPE] = ACTIONS(978), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(978), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(978), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(978), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(978), - [aux_sym_ctrl_match_token1] = ACTIONS(978), - [anon_sym_RBRACE] = ACTIONS(978), - [anon_sym_QMARK2] = ACTIONS(978), - [aux_sym_expr_binary_token1] = ACTIONS(978), - [aux_sym_expr_binary_token2] = ACTIONS(978), - [aux_sym_expr_binary_token3] = ACTIONS(978), - [aux_sym_expr_binary_token4] = ACTIONS(978), - [aux_sym_expr_binary_token5] = ACTIONS(978), - [aux_sym_expr_binary_token6] = ACTIONS(978), - [aux_sym_expr_binary_token7] = ACTIONS(978), - [aux_sym_expr_binary_token8] = ACTIONS(978), - [aux_sym_expr_binary_token9] = ACTIONS(978), - [aux_sym_expr_binary_token10] = ACTIONS(978), - [aux_sym_expr_binary_token11] = ACTIONS(978), - [aux_sym_expr_binary_token12] = ACTIONS(978), - [aux_sym_expr_binary_token13] = ACTIONS(978), - [aux_sym_expr_binary_token14] = ACTIONS(978), - [aux_sym_expr_binary_token15] = ACTIONS(978), - [aux_sym_expr_binary_token16] = ACTIONS(978), - [aux_sym_expr_binary_token17] = ACTIONS(978), - [aux_sym_expr_binary_token18] = ACTIONS(978), - [aux_sym_expr_binary_token19] = ACTIONS(978), - [aux_sym_expr_binary_token20] = ACTIONS(978), - [aux_sym_expr_binary_token21] = ACTIONS(978), - [aux_sym_expr_binary_token22] = ACTIONS(978), - [aux_sym_expr_binary_token23] = ACTIONS(978), - [aux_sym_expr_binary_token24] = ACTIONS(978), - [aux_sym_expr_binary_token25] = ACTIONS(978), - [aux_sym_expr_binary_token26] = ACTIONS(978), - [aux_sym_expr_binary_token27] = ACTIONS(978), - [aux_sym_expr_binary_token28] = ACTIONS(978), - [anon_sym_DOT_DOT2] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), - [anon_sym_DOT_DOT_LT2] = ACTIONS(978), - [aux_sym_record_entry_token1] = ACTIONS(978), - [anon_sym_err_GT] = ACTIONS(976), - [anon_sym_out_GT] = ACTIONS(976), - [anon_sym_e_GT] = ACTIONS(976), - [anon_sym_o_GT] = ACTIONS(976), - [anon_sym_err_PLUSout_GT] = ACTIONS(976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(976), - [anon_sym_o_PLUSe_GT] = ACTIONS(976), - [anon_sym_e_PLUSo_GT] = ACTIONS(976), - [anon_sym_err_GT_GT] = ACTIONS(978), - [anon_sym_out_GT_GT] = ACTIONS(978), - [anon_sym_e_GT_GT] = ACTIONS(978), - [anon_sym_o_GT_GT] = ACTIONS(978), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(978), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(978), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(978), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(978), + [aux_sym_cell_path_repeat1] = STATE(1374), + [anon_sym_true] = ACTIONS(1013), + [anon_sym_false] = ACTIONS(1013), + [anon_sym_null] = ACTIONS(1013), + [aux_sym_cmd_identifier_token38] = ACTIONS(1013), + [aux_sym_cmd_identifier_token39] = ACTIONS(1013), + [aux_sym_cmd_identifier_token40] = ACTIONS(1013), + [sym__newline] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1013), + [anon_sym_PIPE] = ACTIONS(1013), + [anon_sym_err_GT_PIPE] = ACTIONS(1013), + [anon_sym_out_GT_PIPE] = ACTIONS(1013), + [anon_sym_e_GT_PIPE] = ACTIONS(1013), + [anon_sym_o_GT_PIPE] = ACTIONS(1013), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1013), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1013), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1013), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1013), + [anon_sym_LBRACK] = ACTIONS(1013), + [anon_sym_LPAREN] = ACTIONS(1013), + [anon_sym_RPAREN] = ACTIONS(1013), + [anon_sym_DOLLAR] = ACTIONS(1011), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_DASH] = ACTIONS(1011), + [aux_sym_ctrl_match_token1] = ACTIONS(1013), + [anon_sym_RBRACE] = ACTIONS(1013), + [anon_sym_DOT_DOT] = ACTIONS(1011), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1013), + [anon_sym_DOT_DOT_LT] = ACTIONS(1013), + [aux_sym__val_number_decimal_token1] = ACTIONS(1011), + [aux_sym__val_number_decimal_token2] = ACTIONS(1013), + [aux_sym__val_number_decimal_token3] = ACTIONS(1013), + [aux_sym__val_number_decimal_token4] = ACTIONS(1013), + [aux_sym__val_number_token1] = ACTIONS(1013), + [aux_sym__val_number_token2] = ACTIONS(1013), + [aux_sym__val_number_token3] = ACTIONS(1013), + [anon_sym_0b] = ACTIONS(1011), + [anon_sym_0o] = ACTIONS(1011), + [anon_sym_0x] = ACTIONS(1011), + [sym_val_date] = ACTIONS(1013), + [anon_sym_DQUOTE] = ACTIONS(1013), + [sym__str_single_quotes] = ACTIONS(1013), + [sym__str_back_ticks] = ACTIONS(1013), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1013), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1013), + [anon_sym_err_GT] = ACTIONS(1011), + [anon_sym_out_GT] = ACTIONS(1011), + [anon_sym_e_GT] = ACTIONS(1011), + [anon_sym_o_GT] = ACTIONS(1011), + [anon_sym_err_PLUSout_GT] = ACTIONS(1011), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1011), + [anon_sym_o_PLUSe_GT] = ACTIONS(1011), + [anon_sym_e_PLUSo_GT] = ACTIONS(1011), + [anon_sym_err_GT_GT] = ACTIONS(1013), + [anon_sym_out_GT_GT] = ACTIONS(1013), + [anon_sym_e_GT_GT] = ACTIONS(1013), + [anon_sym_o_GT_GT] = ACTIONS(1013), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1013), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1013), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1013), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1013), + [aux_sym_unquoted_token1] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(247), }, [1278] = { [sym_comment] = STATE(1278), - [anon_sym_EQ] = ACTIONS(962), - [anon_sym_PLUS_EQ] = ACTIONS(964), - [anon_sym_DASH_EQ] = ACTIONS(964), - [anon_sym_STAR_EQ] = ACTIONS(964), - [anon_sym_SLASH_EQ] = ACTIONS(964), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(964), - [sym__newline] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_PIPE] = ACTIONS(964), - [anon_sym_err_GT_PIPE] = ACTIONS(964), - [anon_sym_out_GT_PIPE] = ACTIONS(964), - [anon_sym_e_GT_PIPE] = ACTIONS(964), - [anon_sym_o_GT_PIPE] = ACTIONS(964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(964), - [aux_sym_ctrl_match_token1] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_QMARK2] = ACTIONS(964), - [aux_sym_expr_binary_token1] = ACTIONS(964), - [aux_sym_expr_binary_token2] = ACTIONS(964), - [aux_sym_expr_binary_token3] = ACTIONS(964), - [aux_sym_expr_binary_token4] = ACTIONS(964), - [aux_sym_expr_binary_token5] = ACTIONS(964), - [aux_sym_expr_binary_token6] = ACTIONS(964), - [aux_sym_expr_binary_token7] = ACTIONS(964), - [aux_sym_expr_binary_token8] = ACTIONS(964), - [aux_sym_expr_binary_token9] = ACTIONS(964), - [aux_sym_expr_binary_token10] = ACTIONS(964), - [aux_sym_expr_binary_token11] = ACTIONS(964), - [aux_sym_expr_binary_token12] = ACTIONS(964), - [aux_sym_expr_binary_token13] = ACTIONS(964), - [aux_sym_expr_binary_token14] = ACTIONS(964), - [aux_sym_expr_binary_token15] = ACTIONS(964), - [aux_sym_expr_binary_token16] = ACTIONS(964), - [aux_sym_expr_binary_token17] = ACTIONS(964), - [aux_sym_expr_binary_token18] = ACTIONS(964), - [aux_sym_expr_binary_token19] = ACTIONS(964), - [aux_sym_expr_binary_token20] = ACTIONS(964), - [aux_sym_expr_binary_token21] = ACTIONS(964), - [aux_sym_expr_binary_token22] = ACTIONS(964), - [aux_sym_expr_binary_token23] = ACTIONS(964), - [aux_sym_expr_binary_token24] = ACTIONS(964), - [aux_sym_expr_binary_token25] = ACTIONS(964), - [aux_sym_expr_binary_token26] = ACTIONS(964), - [aux_sym_expr_binary_token27] = ACTIONS(964), - [aux_sym_expr_binary_token28] = ACTIONS(964), - [anon_sym_DOT_DOT2] = ACTIONS(962), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(964), - [anon_sym_DOT_DOT_LT2] = ACTIONS(964), - [aux_sym_record_entry_token1] = ACTIONS(964), - [anon_sym_err_GT] = ACTIONS(962), - [anon_sym_out_GT] = ACTIONS(962), - [anon_sym_e_GT] = ACTIONS(962), - [anon_sym_o_GT] = ACTIONS(962), - [anon_sym_err_PLUSout_GT] = ACTIONS(962), - [anon_sym_out_PLUSerr_GT] = ACTIONS(962), - [anon_sym_o_PLUSe_GT] = ACTIONS(962), - [anon_sym_e_PLUSo_GT] = ACTIONS(962), - [anon_sym_err_GT_GT] = ACTIONS(964), - [anon_sym_out_GT_GT] = ACTIONS(964), - [anon_sym_e_GT_GT] = ACTIONS(964), - [anon_sym_o_GT_GT] = ACTIONS(964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(964), + [ts_builtin_sym_end] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [aux_sym_cmd_identifier_token38] = ACTIONS(1645), + [aux_sym_cmd_identifier_token39] = ACTIONS(1645), + [aux_sym_cmd_identifier_token40] = ACTIONS(1645), + [sym__newline] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_err_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_GT_PIPE] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), + [anon_sym_LBRACK] = ACTIONS(1645), + [anon_sym_LPAREN] = ACTIONS(1645), + [anon_sym_DOLLAR] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_DASH] = ACTIONS(1643), + [aux_sym_ctrl_match_token1] = ACTIONS(1645), + [anon_sym_DOT_DOT] = ACTIONS(1643), + [anon_sym_DOT_DOT2] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(4628), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), + [anon_sym_DOT_DOT_LT] = ACTIONS(1643), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), + [aux_sym__immediate_decimal_token2] = ACTIONS(4630), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1645), + [aux_sym__val_number_decimal_token3] = ACTIONS(1645), + [aux_sym__val_number_decimal_token4] = ACTIONS(1645), + [aux_sym__val_number_token1] = ACTIONS(1645), + [aux_sym__val_number_token2] = ACTIONS(1645), + [aux_sym__val_number_token3] = ACTIONS(1645), + [anon_sym_0b] = ACTIONS(1643), + [anon_sym_0o] = ACTIONS(1643), + [anon_sym_0x] = ACTIONS(1643), + [sym_val_date] = ACTIONS(1645), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym__str_single_quotes] = ACTIONS(1645), + [sym__str_back_ticks] = ACTIONS(1645), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1645), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1645), + [anon_sym_err_GT] = ACTIONS(1643), + [anon_sym_out_GT] = ACTIONS(1643), + [anon_sym_e_GT] = ACTIONS(1643), + [anon_sym_o_GT] = ACTIONS(1643), + [anon_sym_err_PLUSout_GT] = ACTIONS(1643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), + [anon_sym_o_PLUSe_GT] = ACTIONS(1643), + [anon_sym_e_PLUSo_GT] = ACTIONS(1643), + [anon_sym_err_GT_GT] = ACTIONS(1645), + [anon_sym_out_GT_GT] = ACTIONS(1645), + [anon_sym_e_GT_GT] = ACTIONS(1645), + [anon_sym_o_GT_GT] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [aux_sym_unquoted_token1] = ACTIONS(1643), [anon_sym_POUND] = ACTIONS(247), }, [1279] = { [sym_comment] = STATE(1279), - [anon_sym_true] = ACTIONS(1521), - [anon_sym_false] = ACTIONS(1521), - [anon_sym_null] = ACTIONS(1521), - [aux_sym_cmd_identifier_token38] = ACTIONS(1521), - [aux_sym_cmd_identifier_token39] = ACTIONS(1521), - [aux_sym_cmd_identifier_token40] = ACTIONS(1521), - [sym__newline] = ACTIONS(1521), - [anon_sym_SEMI] = ACTIONS(1521), - [anon_sym_PIPE] = ACTIONS(1521), - [anon_sym_err_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_GT_PIPE] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1519), - [anon_sym_RPAREN] = ACTIONS(1521), - [anon_sym_DOLLAR] = ACTIONS(1519), - [anon_sym_DASH_DASH] = ACTIONS(1521), - [anon_sym_DASH] = ACTIONS(1519), - [aux_sym_ctrl_match_token1] = ACTIONS(1521), - [anon_sym_RBRACE] = ACTIONS(1521), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_LPAREN2] = ACTIONS(1521), - [anon_sym_DOT_DOT2] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1519), - [anon_sym_DOT_DOT_LT] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), - [aux_sym__immediate_decimal_token2] = ACTIONS(4136), - [aux_sym__val_number_decimal_token1] = ACTIONS(1519), - [aux_sym__val_number_decimal_token2] = ACTIONS(1521), - [aux_sym__val_number_decimal_token3] = ACTIONS(1521), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(1521), - [aux_sym__val_number_token2] = ACTIONS(1521), - [aux_sym__val_number_token3] = ACTIONS(1521), - [anon_sym_0b] = ACTIONS(1519), - [sym_filesize_unit] = ACTIONS(1521), - [sym_duration_unit] = ACTIONS(1521), - [anon_sym_0o] = ACTIONS(1519), - [anon_sym_0x] = ACTIONS(1519), - [sym_val_date] = ACTIONS(1521), - [anon_sym_DQUOTE] = ACTIONS(1521), - [sym__str_single_quotes] = ACTIONS(1521), - [sym__str_back_ticks] = ACTIONS(1521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1521), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1521), - [anon_sym_err_GT] = ACTIONS(1519), - [anon_sym_out_GT] = ACTIONS(1519), - [anon_sym_e_GT] = ACTIONS(1519), - [anon_sym_o_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT] = ACTIONS(1519), - [anon_sym_err_GT_GT] = ACTIONS(1521), - [anon_sym_out_GT_GT] = ACTIONS(1521), - [anon_sym_e_GT_GT] = ACTIONS(1521), - [anon_sym_o_GT_GT] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), - [aux_sym_unquoted_token1] = ACTIONS(1519), - [aux_sym_unquoted_token2] = ACTIONS(1519), + [ts_builtin_sym_end] = ACTIONS(1046), + [anon_sym_true] = ACTIONS(1046), + [anon_sym_false] = ACTIONS(1046), + [anon_sym_null] = ACTIONS(1046), + [aux_sym_cmd_identifier_token38] = ACTIONS(1046), + [aux_sym_cmd_identifier_token39] = ACTIONS(1046), + [aux_sym_cmd_identifier_token40] = ACTIONS(1046), + [sym__newline] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_err_GT_PIPE] = ACTIONS(1046), + [anon_sym_out_GT_PIPE] = ACTIONS(1046), + [anon_sym_e_GT_PIPE] = ACTIONS(1046), + [anon_sym_o_GT_PIPE] = ACTIONS(1046), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1046), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1046), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1046), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1046), + [anon_sym_LBRACK] = ACTIONS(1046), + [anon_sym_LPAREN] = ACTIONS(1046), + [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_DASH_DASH] = ACTIONS(1046), + [anon_sym_DASH] = ACTIONS(1044), + [aux_sym_ctrl_match_token1] = ACTIONS(1046), + [anon_sym_DOT_DOT] = ACTIONS(1044), + [anon_sym_QMARK2] = ACTIONS(1046), + [anon_sym_DOT_DOT2] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1044), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1044), + [anon_sym_DOT_DOT_LT] = ACTIONS(1044), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1046), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1046), + [aux_sym__val_number_decimal_token1] = ACTIONS(1044), + [aux_sym__val_number_decimal_token2] = ACTIONS(1046), + [aux_sym__val_number_decimal_token3] = ACTIONS(1046), + [aux_sym__val_number_decimal_token4] = ACTIONS(1046), + [aux_sym__val_number_token1] = ACTIONS(1046), + [aux_sym__val_number_token2] = ACTIONS(1046), + [aux_sym__val_number_token3] = ACTIONS(1046), + [anon_sym_0b] = ACTIONS(1044), + [anon_sym_0o] = ACTIONS(1044), + [anon_sym_0x] = ACTIONS(1044), + [sym_val_date] = ACTIONS(1046), + [anon_sym_DQUOTE] = ACTIONS(1046), + [sym__str_single_quotes] = ACTIONS(1046), + [sym__str_back_ticks] = ACTIONS(1046), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1046), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1046), + [anon_sym_err_GT] = ACTIONS(1044), + [anon_sym_out_GT] = ACTIONS(1044), + [anon_sym_e_GT] = ACTIONS(1044), + [anon_sym_o_GT] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT] = ACTIONS(1044), + [anon_sym_err_GT_GT] = ACTIONS(1046), + [anon_sym_out_GT_GT] = ACTIONS(1046), + [anon_sym_e_GT_GT] = ACTIONS(1046), + [anon_sym_o_GT_GT] = ACTIONS(1046), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1046), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1046), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1046), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1046), + [aux_sym_unquoted_token1] = ACTIONS(1044), [anon_sym_POUND] = ACTIONS(247), }, [1280] = { - [sym_cell_path] = STATE(1446), - [sym_path] = STATE(1426), + [sym_cell_path] = STATE(1560), + [sym_path] = STATE(1532), [sym_comment] = STATE(1280), - [aux_sym_cell_path_repeat1] = STATE(1297), - [ts_builtin_sym_end] = ACTIONS(947), - [anon_sym_EQ] = ACTIONS(945), - [anon_sym_PLUS_EQ] = ACTIONS(947), - [anon_sym_DASH_EQ] = ACTIONS(947), - [anon_sym_STAR_EQ] = ACTIONS(947), - [anon_sym_SLASH_EQ] = ACTIONS(947), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(947), - [sym__newline] = ACTIONS(947), - [anon_sym_SEMI] = ACTIONS(947), - [anon_sym_PIPE] = ACTIONS(947), - [anon_sym_err_GT_PIPE] = ACTIONS(947), - [anon_sym_out_GT_PIPE] = ACTIONS(947), - [anon_sym_e_GT_PIPE] = ACTIONS(947), - [anon_sym_o_GT_PIPE] = ACTIONS(947), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(947), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(947), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(947), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(947), - [aux_sym_expr_binary_token1] = ACTIONS(947), - [aux_sym_expr_binary_token2] = ACTIONS(947), - [aux_sym_expr_binary_token3] = ACTIONS(947), - [aux_sym_expr_binary_token4] = ACTIONS(947), - [aux_sym_expr_binary_token5] = ACTIONS(947), - [aux_sym_expr_binary_token6] = ACTIONS(947), - [aux_sym_expr_binary_token7] = ACTIONS(947), - [aux_sym_expr_binary_token8] = ACTIONS(947), - [aux_sym_expr_binary_token9] = ACTIONS(947), - [aux_sym_expr_binary_token10] = ACTIONS(947), - [aux_sym_expr_binary_token11] = ACTIONS(947), - [aux_sym_expr_binary_token12] = ACTIONS(947), - [aux_sym_expr_binary_token13] = ACTIONS(947), - [aux_sym_expr_binary_token14] = ACTIONS(947), - [aux_sym_expr_binary_token15] = ACTIONS(947), - [aux_sym_expr_binary_token16] = ACTIONS(947), - [aux_sym_expr_binary_token17] = ACTIONS(947), - [aux_sym_expr_binary_token18] = ACTIONS(947), - [aux_sym_expr_binary_token19] = ACTIONS(947), - [aux_sym_expr_binary_token20] = ACTIONS(947), - [aux_sym_expr_binary_token21] = ACTIONS(947), - [aux_sym_expr_binary_token22] = ACTIONS(947), - [aux_sym_expr_binary_token23] = ACTIONS(947), - [aux_sym_expr_binary_token24] = ACTIONS(947), - [aux_sym_expr_binary_token25] = ACTIONS(947), - [aux_sym_expr_binary_token26] = ACTIONS(947), - [aux_sym_expr_binary_token27] = ACTIONS(947), - [aux_sym_expr_binary_token28] = ACTIONS(947), - [anon_sym_DOT_DOT2] = ACTIONS(945), - [anon_sym_DOT] = ACTIONS(4138), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(947), - [anon_sym_DOT_DOT_LT2] = ACTIONS(947), - [anon_sym_err_GT] = ACTIONS(945), - [anon_sym_out_GT] = ACTIONS(945), - [anon_sym_e_GT] = ACTIONS(945), - [anon_sym_o_GT] = ACTIONS(945), - [anon_sym_err_PLUSout_GT] = ACTIONS(945), - [anon_sym_out_PLUSerr_GT] = ACTIONS(945), - [anon_sym_o_PLUSe_GT] = ACTIONS(945), - [anon_sym_e_PLUSo_GT] = ACTIONS(945), - [anon_sym_err_GT_GT] = ACTIONS(947), - [anon_sym_out_GT_GT] = ACTIONS(947), - [anon_sym_e_GT_GT] = ACTIONS(947), - [anon_sym_o_GT_GT] = ACTIONS(947), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(947), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(947), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(947), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(947), + [aux_sym_cell_path_repeat1] = STATE(1374), + [anon_sym_true] = ACTIONS(1873), + [anon_sym_false] = ACTIONS(1873), + [anon_sym_null] = ACTIONS(1873), + [aux_sym_cmd_identifier_token38] = ACTIONS(1873), + [aux_sym_cmd_identifier_token39] = ACTIONS(1873), + [aux_sym_cmd_identifier_token40] = ACTIONS(1873), + [sym__newline] = ACTIONS(1873), + [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym_PIPE] = ACTIONS(1873), + [anon_sym_err_GT_PIPE] = ACTIONS(1873), + [anon_sym_out_GT_PIPE] = ACTIONS(1873), + [anon_sym_e_GT_PIPE] = ACTIONS(1873), + [anon_sym_o_GT_PIPE] = ACTIONS(1873), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1873), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1873), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1873), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1873), + [anon_sym_LBRACK] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(1873), + [anon_sym_RPAREN] = ACTIONS(1873), + [anon_sym_DOLLAR] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1871), + [aux_sym_ctrl_match_token1] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(1873), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1873), + [anon_sym_DOT_DOT_LT] = ACTIONS(1873), + [aux_sym__val_number_decimal_token1] = ACTIONS(1871), + [aux_sym__val_number_decimal_token2] = ACTIONS(1873), + [aux_sym__val_number_decimal_token3] = ACTIONS(1873), + [aux_sym__val_number_decimal_token4] = ACTIONS(1873), + [aux_sym__val_number_token1] = ACTIONS(1873), + [aux_sym__val_number_token2] = ACTIONS(1873), + [aux_sym__val_number_token3] = ACTIONS(1873), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0o] = ACTIONS(1871), + [anon_sym_0x] = ACTIONS(1871), + [sym_val_date] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(1873), + [sym__str_single_quotes] = ACTIONS(1873), + [sym__str_back_ticks] = ACTIONS(1873), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1873), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1873), + [anon_sym_err_GT] = ACTIONS(1871), + [anon_sym_out_GT] = ACTIONS(1871), + [anon_sym_e_GT] = ACTIONS(1871), + [anon_sym_o_GT] = ACTIONS(1871), + [anon_sym_err_PLUSout_GT] = ACTIONS(1871), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1871), + [anon_sym_o_PLUSe_GT] = ACTIONS(1871), + [anon_sym_e_PLUSo_GT] = ACTIONS(1871), + [anon_sym_err_GT_GT] = ACTIONS(1873), + [anon_sym_out_GT_GT] = ACTIONS(1873), + [anon_sym_e_GT_GT] = ACTIONS(1873), + [anon_sym_o_GT_GT] = ACTIONS(1873), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1873), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1873), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1873), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1873), + [aux_sym_unquoted_token1] = ACTIONS(1871), [anon_sym_POUND] = ACTIONS(247), }, [1281] = { + [sym_cell_path] = STATE(1561), + [sym_path] = STATE(1532), [sym_comment] = STATE(1281), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [aux_sym_cmd_identifier_token38] = ACTIONS(1475), - [aux_sym_cmd_identifier_token39] = ACTIONS(1475), - [aux_sym_cmd_identifier_token40] = ACTIONS(1475), - [sym__newline] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_err_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_GT_PIPE] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1475), - [anon_sym_RPAREN] = ACTIONS(1475), - [anon_sym_DOLLAR] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1473), - [aux_sym_ctrl_match_token1] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_DOT_DOT] = ACTIONS(1473), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT] = ACTIONS(4140), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), - [anon_sym_DOT_DOT_LT] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [aux_sym__immediate_decimal_token2] = ACTIONS(4142), - [aux_sym__val_number_decimal_token1] = ACTIONS(1473), - [aux_sym__val_number_decimal_token2] = ACTIONS(1475), - [aux_sym__val_number_decimal_token3] = ACTIONS(1475), - [aux_sym__val_number_decimal_token4] = ACTIONS(1475), - [aux_sym__val_number_token1] = ACTIONS(1475), - [aux_sym__val_number_token2] = ACTIONS(1475), - [aux_sym__val_number_token3] = ACTIONS(1475), - [anon_sym_0b] = ACTIONS(1473), - [sym_filesize_unit] = ACTIONS(1475), - [sym_duration_unit] = ACTIONS(1475), - [anon_sym_0o] = ACTIONS(1473), - [anon_sym_0x] = ACTIONS(1473), - [sym_val_date] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym__str_single_quotes] = ACTIONS(1475), - [sym__str_back_ticks] = ACTIONS(1475), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1473), - [anon_sym_out_GT] = ACTIONS(1473), - [anon_sym_e_GT] = ACTIONS(1473), - [anon_sym_o_GT] = ACTIONS(1473), - [anon_sym_err_PLUSout_GT] = ACTIONS(1473), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), - [anon_sym_o_PLUSe_GT] = ACTIONS(1473), - [anon_sym_e_PLUSo_GT] = ACTIONS(1473), - [anon_sym_err_GT_GT] = ACTIONS(1475), - [anon_sym_out_GT_GT] = ACTIONS(1475), - [anon_sym_e_GT_GT] = ACTIONS(1475), - [anon_sym_o_GT_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), - [aux_sym_unquoted_token1] = ACTIONS(1473), - [aux_sym_unquoted_token2] = ACTIONS(1473), + [aux_sym_cell_path_repeat1] = STATE(1374), + [anon_sym_true] = ACTIONS(1877), + [anon_sym_false] = ACTIONS(1877), + [anon_sym_null] = ACTIONS(1877), + [aux_sym_cmd_identifier_token38] = ACTIONS(1877), + [aux_sym_cmd_identifier_token39] = ACTIONS(1877), + [aux_sym_cmd_identifier_token40] = ACTIONS(1877), + [sym__newline] = ACTIONS(1877), + [anon_sym_SEMI] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1877), + [anon_sym_err_GT_PIPE] = ACTIONS(1877), + [anon_sym_out_GT_PIPE] = ACTIONS(1877), + [anon_sym_e_GT_PIPE] = ACTIONS(1877), + [anon_sym_o_GT_PIPE] = ACTIONS(1877), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1877), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1877), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1877), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(1877), + [anon_sym_RPAREN] = ACTIONS(1877), + [anon_sym_DOLLAR] = ACTIONS(1875), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1875), + [aux_sym_ctrl_match_token1] = ACTIONS(1877), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1875), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1877), + [anon_sym_DOT_DOT_LT] = ACTIONS(1877), + [aux_sym__val_number_decimal_token1] = ACTIONS(1875), + [aux_sym__val_number_decimal_token2] = ACTIONS(1877), + [aux_sym__val_number_decimal_token3] = ACTIONS(1877), + [aux_sym__val_number_decimal_token4] = ACTIONS(1877), + [aux_sym__val_number_token1] = ACTIONS(1877), + [aux_sym__val_number_token2] = ACTIONS(1877), + [aux_sym__val_number_token3] = ACTIONS(1877), + [anon_sym_0b] = ACTIONS(1875), + [anon_sym_0o] = ACTIONS(1875), + [anon_sym_0x] = ACTIONS(1875), + [sym_val_date] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1877), + [sym__str_single_quotes] = ACTIONS(1877), + [sym__str_back_ticks] = ACTIONS(1877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1877), + [anon_sym_err_GT] = ACTIONS(1875), + [anon_sym_out_GT] = ACTIONS(1875), + [anon_sym_e_GT] = ACTIONS(1875), + [anon_sym_o_GT] = ACTIONS(1875), + [anon_sym_err_PLUSout_GT] = ACTIONS(1875), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1875), + [anon_sym_o_PLUSe_GT] = ACTIONS(1875), + [anon_sym_e_PLUSo_GT] = ACTIONS(1875), + [anon_sym_err_GT_GT] = ACTIONS(1877), + [anon_sym_out_GT_GT] = ACTIONS(1877), + [anon_sym_e_GT_GT] = ACTIONS(1877), + [anon_sym_o_GT_GT] = ACTIONS(1877), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1877), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1877), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1877), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1877), + [aux_sym_unquoted_token1] = ACTIONS(1875), [anon_sym_POUND] = ACTIONS(247), }, [1282] = { - [sym__expr_parenthesized_immediate] = STATE(1845), - [sym__immediate_decimal] = STATE(1846), - [sym_val_variable] = STATE(1845), [sym_comment] = STATE(1282), - [anon_sym_true] = ACTIONS(1441), - [anon_sym_false] = ACTIONS(1441), - [anon_sym_null] = ACTIONS(1441), - [aux_sym_cmd_identifier_token38] = ACTIONS(1441), - [aux_sym_cmd_identifier_token39] = ACTIONS(1441), - [aux_sym_cmd_identifier_token40] = ACTIONS(1441), - [sym__newline] = ACTIONS(1441), - [anon_sym_SEMI] = ACTIONS(1441), - [anon_sym_PIPE] = ACTIONS(1441), - [anon_sym_err_GT_PIPE] = ACTIONS(1441), - [anon_sym_out_GT_PIPE] = ACTIONS(1441), - [anon_sym_e_GT_PIPE] = ACTIONS(1441), - [anon_sym_o_GT_PIPE] = ACTIONS(1441), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1441), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1441), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1441), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_RPAREN] = ACTIONS(1441), - [anon_sym_DOLLAR] = ACTIONS(4060), - [anon_sym_DASH_DASH] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1431), - [aux_sym_ctrl_match_token1] = ACTIONS(1441), - [anon_sym_RBRACE] = ACTIONS(1441), - [anon_sym_DOT_DOT] = ACTIONS(1431), - [anon_sym_LPAREN2] = ACTIONS(4062), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1441), - [anon_sym_DOT_DOT_LT] = ACTIONS(1441), - [aux_sym__immediate_decimal_token1] = ACTIONS(4144), - [aux_sym__immediate_decimal_token3] = ACTIONS(4146), - [aux_sym__immediate_decimal_token4] = ACTIONS(4148), - [aux_sym__immediate_decimal_token5] = ACTIONS(4150), - [aux_sym__val_number_decimal_token1] = ACTIONS(1431), - [aux_sym__val_number_decimal_token2] = ACTIONS(1431), - [aux_sym__val_number_decimal_token3] = ACTIONS(1431), - [aux_sym__val_number_decimal_token4] = ACTIONS(1431), - [aux_sym__val_number_token1] = ACTIONS(1441), - [aux_sym__val_number_token2] = ACTIONS(1441), - [aux_sym__val_number_token3] = ACTIONS(1441), - [anon_sym_0b] = ACTIONS(1431), - [anon_sym_0o] = ACTIONS(1431), - [anon_sym_0x] = ACTIONS(1431), - [sym_val_date] = ACTIONS(1441), - [anon_sym_DQUOTE] = ACTIONS(1441), - [sym__str_single_quotes] = ACTIONS(1441), - [sym__str_back_ticks] = ACTIONS(1441), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1441), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1441), - [anon_sym_err_GT] = ACTIONS(1431), - [anon_sym_out_GT] = ACTIONS(1431), - [anon_sym_e_GT] = ACTIONS(1431), - [anon_sym_o_GT] = ACTIONS(1431), - [anon_sym_err_PLUSout_GT] = ACTIONS(1431), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1431), - [anon_sym_o_PLUSe_GT] = ACTIONS(1431), - [anon_sym_e_PLUSo_GT] = ACTIONS(1431), - [anon_sym_err_GT_GT] = ACTIONS(1441), - [anon_sym_out_GT_GT] = ACTIONS(1441), - [anon_sym_e_GT_GT] = ACTIONS(1441), - [anon_sym_o_GT_GT] = ACTIONS(1441), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1441), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1441), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1441), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1441), - [aux_sym_unquoted_token1] = ACTIONS(1431), + [aux_sym_cmd_identifier_token41] = ACTIONS(1565), + [sym__newline] = ACTIONS(1565), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_err_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_GT_PIPE] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), + [anon_sym_RBRACE] = ACTIONS(1567), + [anon_sym_EQ_GT] = ACTIONS(1567), + [aux_sym_expr_binary_token1] = ACTIONS(1567), + [aux_sym_expr_binary_token2] = ACTIONS(1567), + [aux_sym_expr_binary_token3] = ACTIONS(1567), + [aux_sym_expr_binary_token4] = ACTIONS(1567), + [aux_sym_expr_binary_token5] = ACTIONS(1567), + [aux_sym_expr_binary_token6] = ACTIONS(1567), + [aux_sym_expr_binary_token7] = ACTIONS(1567), + [aux_sym_expr_binary_token8] = ACTIONS(1567), + [aux_sym_expr_binary_token9] = ACTIONS(1567), + [aux_sym_expr_binary_token10] = ACTIONS(1567), + [aux_sym_expr_binary_token11] = ACTIONS(1567), + [aux_sym_expr_binary_token12] = ACTIONS(1567), + [aux_sym_expr_binary_token13] = ACTIONS(1567), + [aux_sym_expr_binary_token14] = ACTIONS(1567), + [aux_sym_expr_binary_token15] = ACTIONS(1567), + [aux_sym_expr_binary_token16] = ACTIONS(1567), + [aux_sym_expr_binary_token17] = ACTIONS(1567), + [aux_sym_expr_binary_token18] = ACTIONS(1567), + [aux_sym_expr_binary_token19] = ACTIONS(1567), + [aux_sym_expr_binary_token20] = ACTIONS(1567), + [aux_sym_expr_binary_token21] = ACTIONS(1567), + [aux_sym_expr_binary_token22] = ACTIONS(1567), + [aux_sym_expr_binary_token23] = ACTIONS(1567), + [aux_sym_expr_binary_token24] = ACTIONS(1567), + [aux_sym_expr_binary_token25] = ACTIONS(1567), + [aux_sym_expr_binary_token26] = ACTIONS(1567), + [aux_sym_expr_binary_token27] = ACTIONS(1567), + [aux_sym_expr_binary_token28] = ACTIONS(1567), + [anon_sym_DOT_DOT2] = ACTIONS(1565), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), + [aux_sym__immediate_decimal_token2] = ACTIONS(4632), + [sym_filesize_unit] = ACTIONS(1567), + [sym_duration_unit] = ACTIONS(1567), + [aux_sym_record_entry_token1] = ACTIONS(1567), + [anon_sym_err_GT] = ACTIONS(1565), + [anon_sym_out_GT] = ACTIONS(1565), + [anon_sym_e_GT] = ACTIONS(1565), + [anon_sym_o_GT] = ACTIONS(1565), + [anon_sym_err_PLUSout_GT] = ACTIONS(1565), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), + [anon_sym_o_PLUSe_GT] = ACTIONS(1565), + [anon_sym_e_PLUSo_GT] = ACTIONS(1565), + [anon_sym_err_GT_GT] = ACTIONS(1567), + [anon_sym_out_GT_GT] = ACTIONS(1567), + [anon_sym_e_GT_GT] = ACTIONS(1567), + [anon_sym_o_GT_GT] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), [anon_sym_POUND] = ACTIONS(247), }, [1283] = { - [sym__expr_parenthesized_immediate] = STATE(1857), - [sym__immediate_decimal] = STATE(1858), - [sym_val_variable] = STATE(1857), [sym_comment] = STATE(1283), - [anon_sym_true] = ACTIONS(1553), - [anon_sym_false] = ACTIONS(1553), - [anon_sym_null] = ACTIONS(1553), - [aux_sym_cmd_identifier_token38] = ACTIONS(1553), - [aux_sym_cmd_identifier_token39] = ACTIONS(1553), - [aux_sym_cmd_identifier_token40] = ACTIONS(1553), - [sym__newline] = ACTIONS(1553), - [anon_sym_SEMI] = ACTIONS(1553), - [anon_sym_PIPE] = ACTIONS(1553), - [anon_sym_err_GT_PIPE] = ACTIONS(1553), - [anon_sym_out_GT_PIPE] = ACTIONS(1553), - [anon_sym_e_GT_PIPE] = ACTIONS(1553), - [anon_sym_o_GT_PIPE] = ACTIONS(1553), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1553), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1553), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1553), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1553), - [anon_sym_LBRACK] = ACTIONS(1553), - [anon_sym_LPAREN] = ACTIONS(1551), - [anon_sym_RPAREN] = ACTIONS(1553), - [anon_sym_DOLLAR] = ACTIONS(4060), - [anon_sym_DASH_DASH] = ACTIONS(1553), - [anon_sym_DASH] = ACTIONS(1551), - [aux_sym_ctrl_match_token1] = ACTIONS(1553), - [anon_sym_RBRACE] = ACTIONS(1553), - [anon_sym_DOT_DOT] = ACTIONS(1551), - [anon_sym_LPAREN2] = ACTIONS(4062), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1553), - [anon_sym_DOT_DOT_LT] = ACTIONS(1553), - [aux_sym__immediate_decimal_token1] = ACTIONS(4144), - [aux_sym__immediate_decimal_token3] = ACTIONS(4146), - [aux_sym__immediate_decimal_token4] = ACTIONS(4148), - [aux_sym__immediate_decimal_token5] = ACTIONS(4150), - [aux_sym__val_number_decimal_token1] = ACTIONS(1551), - [aux_sym__val_number_decimal_token2] = ACTIONS(1551), - [aux_sym__val_number_decimal_token3] = ACTIONS(1551), - [aux_sym__val_number_decimal_token4] = ACTIONS(1551), - [aux_sym__val_number_token1] = ACTIONS(1553), - [aux_sym__val_number_token2] = ACTIONS(1553), - [aux_sym__val_number_token3] = ACTIONS(1553), - [anon_sym_0b] = ACTIONS(1551), - [anon_sym_0o] = ACTIONS(1551), - [anon_sym_0x] = ACTIONS(1551), - [sym_val_date] = ACTIONS(1553), - [anon_sym_DQUOTE] = ACTIONS(1553), - [sym__str_single_quotes] = ACTIONS(1553), - [sym__str_back_ticks] = ACTIONS(1553), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1553), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1553), - [anon_sym_err_GT] = ACTIONS(1551), - [anon_sym_out_GT] = ACTIONS(1551), - [anon_sym_e_GT] = ACTIONS(1551), - [anon_sym_o_GT] = ACTIONS(1551), - [anon_sym_err_PLUSout_GT] = ACTIONS(1551), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1551), - [anon_sym_o_PLUSe_GT] = ACTIONS(1551), - [anon_sym_e_PLUSo_GT] = ACTIONS(1551), - [anon_sym_err_GT_GT] = ACTIONS(1553), - [anon_sym_out_GT_GT] = ACTIONS(1553), - [anon_sym_e_GT_GT] = ACTIONS(1553), - [anon_sym_o_GT_GT] = ACTIONS(1553), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1553), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1553), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1553), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1553), - [aux_sym_unquoted_token1] = ACTIONS(1551), + [ts_builtin_sym_end] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1050), + [anon_sym_false] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1050), + [aux_sym_cmd_identifier_token38] = ACTIONS(1050), + [aux_sym_cmd_identifier_token39] = ACTIONS(1050), + [aux_sym_cmd_identifier_token40] = ACTIONS(1050), + [sym__newline] = ACTIONS(1050), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_err_GT_PIPE] = ACTIONS(1050), + [anon_sym_out_GT_PIPE] = ACTIONS(1050), + [anon_sym_e_GT_PIPE] = ACTIONS(1050), + [anon_sym_o_GT_PIPE] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1050), + [anon_sym_LBRACK] = ACTIONS(1050), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_DASH] = ACTIONS(1048), + [aux_sym_ctrl_match_token1] = ACTIONS(1050), + [anon_sym_DOT_DOT] = ACTIONS(1048), + [anon_sym_QMARK2] = ACTIONS(1050), + [anon_sym_DOT_DOT2] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1048), + [anon_sym_DOT_DOT_LT] = ACTIONS(1048), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1050), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1050), + [aux_sym__val_number_decimal_token1] = ACTIONS(1048), + [aux_sym__val_number_decimal_token2] = ACTIONS(1050), + [aux_sym__val_number_decimal_token3] = ACTIONS(1050), + [aux_sym__val_number_decimal_token4] = ACTIONS(1050), + [aux_sym__val_number_token1] = ACTIONS(1050), + [aux_sym__val_number_token2] = ACTIONS(1050), + [aux_sym__val_number_token3] = ACTIONS(1050), + [anon_sym_0b] = ACTIONS(1048), + [anon_sym_0o] = ACTIONS(1048), + [anon_sym_0x] = ACTIONS(1048), + [sym_val_date] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym__str_single_quotes] = ACTIONS(1050), + [sym__str_back_ticks] = ACTIONS(1050), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1050), + [anon_sym_err_GT] = ACTIONS(1048), + [anon_sym_out_GT] = ACTIONS(1048), + [anon_sym_e_GT] = ACTIONS(1048), + [anon_sym_o_GT] = ACTIONS(1048), + [anon_sym_err_PLUSout_GT] = ACTIONS(1048), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1048), + [anon_sym_o_PLUSe_GT] = ACTIONS(1048), + [anon_sym_e_PLUSo_GT] = ACTIONS(1048), + [anon_sym_err_GT_GT] = ACTIONS(1050), + [anon_sym_out_GT_GT] = ACTIONS(1050), + [anon_sym_e_GT_GT] = ACTIONS(1050), + [anon_sym_o_GT_GT] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1050), + [aux_sym_unquoted_token1] = ACTIONS(1048), [anon_sym_POUND] = ACTIONS(247), }, [1284] = { - [sym__expr_parenthesized_immediate] = STATE(1859), - [sym__immediate_decimal] = STATE(1860), - [sym_val_variable] = STATE(1859), + [sym_cell_path] = STATE(1562), + [sym_path] = STATE(1532), [sym_comment] = STATE(1284), - [anon_sym_true] = ACTIONS(1557), - [anon_sym_false] = ACTIONS(1557), - [anon_sym_null] = ACTIONS(1557), - [aux_sym_cmd_identifier_token38] = ACTIONS(1557), - [aux_sym_cmd_identifier_token39] = ACTIONS(1557), - [aux_sym_cmd_identifier_token40] = ACTIONS(1557), - [sym__newline] = ACTIONS(1557), - [anon_sym_SEMI] = ACTIONS(1557), - [anon_sym_PIPE] = ACTIONS(1557), - [anon_sym_err_GT_PIPE] = ACTIONS(1557), - [anon_sym_out_GT_PIPE] = ACTIONS(1557), - [anon_sym_e_GT_PIPE] = ACTIONS(1557), - [anon_sym_o_GT_PIPE] = ACTIONS(1557), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1557), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1557), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1557), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1557), - [anon_sym_LPAREN] = ACTIONS(1555), - [anon_sym_RPAREN] = ACTIONS(1557), - [anon_sym_DOLLAR] = ACTIONS(4060), - [anon_sym_DASH_DASH] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1555), - [aux_sym_ctrl_match_token1] = ACTIONS(1557), - [anon_sym_RBRACE] = ACTIONS(1557), - [anon_sym_DOT_DOT] = ACTIONS(1555), - [anon_sym_LPAREN2] = ACTIONS(4062), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1557), - [anon_sym_DOT_DOT_LT] = ACTIONS(1557), - [aux_sym__immediate_decimal_token1] = ACTIONS(4144), - [aux_sym__immediate_decimal_token3] = ACTIONS(4146), - [aux_sym__immediate_decimal_token4] = ACTIONS(4148), - [aux_sym__immediate_decimal_token5] = ACTIONS(4150), - [aux_sym__val_number_decimal_token1] = ACTIONS(1555), - [aux_sym__val_number_decimal_token2] = ACTIONS(1555), - [aux_sym__val_number_decimal_token3] = ACTIONS(1555), - [aux_sym__val_number_decimal_token4] = ACTIONS(1555), - [aux_sym__val_number_token1] = ACTIONS(1557), - [aux_sym__val_number_token2] = ACTIONS(1557), - [aux_sym__val_number_token3] = ACTIONS(1557), - [anon_sym_0b] = ACTIONS(1555), - [anon_sym_0o] = ACTIONS(1555), - [anon_sym_0x] = ACTIONS(1555), - [sym_val_date] = ACTIONS(1557), - [anon_sym_DQUOTE] = ACTIONS(1557), - [sym__str_single_quotes] = ACTIONS(1557), - [sym__str_back_ticks] = ACTIONS(1557), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1557), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1557), - [anon_sym_err_GT] = ACTIONS(1555), - [anon_sym_out_GT] = ACTIONS(1555), - [anon_sym_e_GT] = ACTIONS(1555), - [anon_sym_o_GT] = ACTIONS(1555), - [anon_sym_err_PLUSout_GT] = ACTIONS(1555), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1555), - [anon_sym_o_PLUSe_GT] = ACTIONS(1555), - [anon_sym_e_PLUSo_GT] = ACTIONS(1555), - [anon_sym_err_GT_GT] = ACTIONS(1557), - [anon_sym_out_GT_GT] = ACTIONS(1557), - [anon_sym_e_GT_GT] = ACTIONS(1557), - [anon_sym_o_GT_GT] = ACTIONS(1557), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1557), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1557), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1557), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1557), - [aux_sym_unquoted_token1] = ACTIONS(1555), + [aux_sym_cell_path_repeat1] = STATE(1374), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1971), + [aux_sym_cmd_identifier_token38] = ACTIONS(1971), + [aux_sym_cmd_identifier_token39] = ACTIONS(1971), + [aux_sym_cmd_identifier_token40] = ACTIONS(1971), + [sym__newline] = ACTIONS(1971), + [anon_sym_SEMI] = ACTIONS(1971), + [anon_sym_PIPE] = ACTIONS(1971), + [anon_sym_err_GT_PIPE] = ACTIONS(1971), + [anon_sym_out_GT_PIPE] = ACTIONS(1971), + [anon_sym_e_GT_PIPE] = ACTIONS(1971), + [anon_sym_o_GT_PIPE] = ACTIONS(1971), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1971), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1971), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1971), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1971), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_LPAREN] = ACTIONS(1971), + [anon_sym_RPAREN] = ACTIONS(1971), + [anon_sym_DOLLAR] = ACTIONS(1969), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1969), + [aux_sym_ctrl_match_token1] = ACTIONS(1971), + [anon_sym_RBRACE] = ACTIONS(1971), + [anon_sym_DOT_DOT] = ACTIONS(1969), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1971), + [anon_sym_DOT_DOT_LT] = ACTIONS(1971), + [aux_sym__val_number_decimal_token1] = ACTIONS(1969), + [aux_sym__val_number_decimal_token2] = ACTIONS(1971), + [aux_sym__val_number_decimal_token3] = ACTIONS(1971), + [aux_sym__val_number_decimal_token4] = ACTIONS(1971), + [aux_sym__val_number_token1] = ACTIONS(1971), + [aux_sym__val_number_token2] = ACTIONS(1971), + [aux_sym__val_number_token3] = ACTIONS(1971), + [anon_sym_0b] = ACTIONS(1969), + [anon_sym_0o] = ACTIONS(1969), + [anon_sym_0x] = ACTIONS(1969), + [sym_val_date] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(1971), + [sym__str_single_quotes] = ACTIONS(1971), + [sym__str_back_ticks] = ACTIONS(1971), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1971), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1971), + [anon_sym_err_GT] = ACTIONS(1969), + [anon_sym_out_GT] = ACTIONS(1969), + [anon_sym_e_GT] = ACTIONS(1969), + [anon_sym_o_GT] = ACTIONS(1969), + [anon_sym_err_PLUSout_GT] = ACTIONS(1969), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1969), + [anon_sym_o_PLUSe_GT] = ACTIONS(1969), + [anon_sym_e_PLUSo_GT] = ACTIONS(1969), + [anon_sym_err_GT_GT] = ACTIONS(1971), + [anon_sym_out_GT_GT] = ACTIONS(1971), + [anon_sym_e_GT_GT] = ACTIONS(1971), + [anon_sym_o_GT_GT] = ACTIONS(1971), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1971), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1971), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1971), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1971), + [aux_sym_unquoted_token1] = ACTIONS(1969), [anon_sym_POUND] = ACTIONS(247), }, [1285] = { - [sym__expr_parenthesized_immediate] = STATE(1861), - [sym__immediate_decimal] = STATE(1862), - [sym_val_variable] = STATE(1861), + [sym_cell_path] = STATE(1563), + [sym_path] = STATE(1532), [sym_comment] = STATE(1285), - [anon_sym_true] = ACTIONS(1509), - [anon_sym_false] = ACTIONS(1509), - [anon_sym_null] = ACTIONS(1509), - [aux_sym_cmd_identifier_token38] = ACTIONS(1509), - [aux_sym_cmd_identifier_token39] = ACTIONS(1509), - [aux_sym_cmd_identifier_token40] = ACTIONS(1509), - [sym__newline] = ACTIONS(1509), - [anon_sym_SEMI] = ACTIONS(1509), - [anon_sym_PIPE] = ACTIONS(1509), - [anon_sym_err_GT_PIPE] = ACTIONS(1509), - [anon_sym_out_GT_PIPE] = ACTIONS(1509), - [anon_sym_e_GT_PIPE] = ACTIONS(1509), - [anon_sym_o_GT_PIPE] = ACTIONS(1509), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1509), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1509), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1509), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1509), - [anon_sym_LBRACK] = ACTIONS(1509), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_RPAREN] = ACTIONS(1509), - [anon_sym_DOLLAR] = ACTIONS(4060), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1501), - [aux_sym_ctrl_match_token1] = ACTIONS(1509), - [anon_sym_RBRACE] = ACTIONS(1509), - [anon_sym_DOT_DOT] = ACTIONS(1501), - [anon_sym_LPAREN2] = ACTIONS(4062), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1509), - [anon_sym_DOT_DOT_LT] = ACTIONS(1509), - [aux_sym__immediate_decimal_token1] = ACTIONS(4144), - [aux_sym__immediate_decimal_token3] = ACTIONS(4146), - [aux_sym__immediate_decimal_token4] = ACTIONS(4148), - [aux_sym__immediate_decimal_token5] = ACTIONS(4150), - [aux_sym__val_number_decimal_token1] = ACTIONS(1501), - [aux_sym__val_number_decimal_token2] = ACTIONS(1501), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1501), - [aux_sym__val_number_token1] = ACTIONS(1509), - [aux_sym__val_number_token2] = ACTIONS(1509), - [aux_sym__val_number_token3] = ACTIONS(1509), - [anon_sym_0b] = ACTIONS(1501), - [anon_sym_0o] = ACTIONS(1501), - [anon_sym_0x] = ACTIONS(1501), - [sym_val_date] = ACTIONS(1509), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym__str_single_quotes] = ACTIONS(1509), - [sym__str_back_ticks] = ACTIONS(1509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1509), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1509), - [anon_sym_err_GT] = ACTIONS(1501), - [anon_sym_out_GT] = ACTIONS(1501), - [anon_sym_e_GT] = ACTIONS(1501), - [anon_sym_o_GT] = ACTIONS(1501), - [anon_sym_err_PLUSout_GT] = ACTIONS(1501), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1501), - [anon_sym_o_PLUSe_GT] = ACTIONS(1501), - [anon_sym_e_PLUSo_GT] = ACTIONS(1501), - [anon_sym_err_GT_GT] = ACTIONS(1509), - [anon_sym_out_GT_GT] = ACTIONS(1509), - [anon_sym_e_GT_GT] = ACTIONS(1509), - [anon_sym_o_GT_GT] = ACTIONS(1509), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1509), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1509), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1509), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1509), - [aux_sym_unquoted_token1] = ACTIONS(1501), + [aux_sym_cell_path_repeat1] = STATE(1374), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1892), + [aux_sym_cmd_identifier_token38] = ACTIONS(1892), + [aux_sym_cmd_identifier_token39] = ACTIONS(1892), + [aux_sym_cmd_identifier_token40] = ACTIONS(1892), + [sym__newline] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_err_GT_PIPE] = ACTIONS(1892), + [anon_sym_out_GT_PIPE] = ACTIONS(1892), + [anon_sym_e_GT_PIPE] = ACTIONS(1892), + [anon_sym_o_GT_PIPE] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_DASH_DASH] = ACTIONS(1892), + [anon_sym_DASH] = ACTIONS(1890), + [aux_sym_ctrl_match_token1] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1892), + [anon_sym_DOT_DOT_LT] = ACTIONS(1892), + [aux_sym__val_number_decimal_token1] = ACTIONS(1890), + [aux_sym__val_number_decimal_token2] = ACTIONS(1892), + [aux_sym__val_number_decimal_token3] = ACTIONS(1892), + [aux_sym__val_number_decimal_token4] = ACTIONS(1892), + [aux_sym__val_number_token1] = ACTIONS(1892), + [aux_sym__val_number_token2] = ACTIONS(1892), + [aux_sym__val_number_token3] = ACTIONS(1892), + [anon_sym_0b] = ACTIONS(1890), + [anon_sym_0o] = ACTIONS(1890), + [anon_sym_0x] = ACTIONS(1890), + [sym_val_date] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [sym__str_single_quotes] = ACTIONS(1892), + [sym__str_back_ticks] = ACTIONS(1892), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1892), + [anon_sym_err_GT] = ACTIONS(1890), + [anon_sym_out_GT] = ACTIONS(1890), + [anon_sym_e_GT] = ACTIONS(1890), + [anon_sym_o_GT] = ACTIONS(1890), + [anon_sym_err_PLUSout_GT] = ACTIONS(1890), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1890), + [anon_sym_o_PLUSe_GT] = ACTIONS(1890), + [anon_sym_e_PLUSo_GT] = ACTIONS(1890), + [anon_sym_err_GT_GT] = ACTIONS(1892), + [anon_sym_out_GT_GT] = ACTIONS(1892), + [anon_sym_e_GT_GT] = ACTIONS(1892), + [anon_sym_o_GT_GT] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1892), + [aux_sym_unquoted_token1] = ACTIONS(1890), [anon_sym_POUND] = ACTIONS(247), }, [1286] = { - [sym__expr_parenthesized_immediate] = STATE(2088), - [sym__immediate_decimal] = STATE(1696), - [sym_val_variable] = STATE(2088), + [sym_cell_path] = STATE(1564), + [sym_path] = STATE(1532), [sym_comment] = STATE(1286), - [ts_builtin_sym_end] = ACTIONS(1455), - [anon_sym_true] = ACTIONS(1455), - [anon_sym_false] = ACTIONS(1455), - [anon_sym_null] = ACTIONS(1455), - [aux_sym_cmd_identifier_token38] = ACTIONS(1455), - [aux_sym_cmd_identifier_token39] = ACTIONS(1455), - [aux_sym_cmd_identifier_token40] = ACTIONS(1455), - [sym__newline] = ACTIONS(1455), - [anon_sym_SEMI] = ACTIONS(1455), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_err_GT_PIPE] = ACTIONS(1455), - [anon_sym_out_GT_PIPE] = ACTIONS(1455), - [anon_sym_e_GT_PIPE] = ACTIONS(1455), - [anon_sym_o_GT_PIPE] = ACTIONS(1455), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1455), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1455), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1455), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1455), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1443), - [anon_sym_DOLLAR] = ACTIONS(4124), - [anon_sym_DASH_DASH] = ACTIONS(1455), - [anon_sym_DASH] = ACTIONS(1443), - [aux_sym_ctrl_match_token1] = ACTIONS(1455), - [anon_sym_DOT_DOT] = ACTIONS(1443), - [anon_sym_LPAREN2] = ACTIONS(4126), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1455), - [anon_sym_DOT_DOT_LT] = ACTIONS(1455), - [aux_sym__immediate_decimal_token1] = ACTIONS(4128), - [aux_sym__immediate_decimal_token3] = ACTIONS(4130), - [aux_sym__immediate_decimal_token4] = ACTIONS(4132), - [aux_sym__immediate_decimal_token5] = ACTIONS(4134), - [aux_sym__val_number_decimal_token1] = ACTIONS(1443), - [aux_sym__val_number_decimal_token2] = ACTIONS(1443), - [aux_sym__val_number_decimal_token3] = ACTIONS(1443), - [aux_sym__val_number_decimal_token4] = ACTIONS(1443), - [aux_sym__val_number_token1] = ACTIONS(1455), - [aux_sym__val_number_token2] = ACTIONS(1455), - [aux_sym__val_number_token3] = ACTIONS(1455), - [anon_sym_0b] = ACTIONS(1443), - [anon_sym_0o] = ACTIONS(1443), - [anon_sym_0x] = ACTIONS(1443), - [sym_val_date] = ACTIONS(1455), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym__str_single_quotes] = ACTIONS(1455), - [sym__str_back_ticks] = ACTIONS(1455), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1455), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1455), - [anon_sym_err_GT] = ACTIONS(1443), - [anon_sym_out_GT] = ACTIONS(1443), - [anon_sym_e_GT] = ACTIONS(1443), - [anon_sym_o_GT] = ACTIONS(1443), - [anon_sym_err_PLUSout_GT] = ACTIONS(1443), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1443), - [anon_sym_o_PLUSe_GT] = ACTIONS(1443), - [anon_sym_e_PLUSo_GT] = ACTIONS(1443), - [anon_sym_err_GT_GT] = ACTIONS(1455), - [anon_sym_out_GT_GT] = ACTIONS(1455), - [anon_sym_e_GT_GT] = ACTIONS(1455), - [anon_sym_o_GT_GT] = ACTIONS(1455), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1455), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1455), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1455), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1455), - [aux_sym_unquoted_token1] = ACTIONS(1443), - [aux_sym_unquoted_token2] = ACTIONS(1457), + [aux_sym_cell_path_repeat1] = STATE(1374), + [anon_sym_true] = ACTIONS(1896), + [anon_sym_false] = ACTIONS(1896), + [anon_sym_null] = ACTIONS(1896), + [aux_sym_cmd_identifier_token38] = ACTIONS(1896), + [aux_sym_cmd_identifier_token39] = ACTIONS(1896), + [aux_sym_cmd_identifier_token40] = ACTIONS(1896), + [sym__newline] = ACTIONS(1896), + [anon_sym_SEMI] = ACTIONS(1896), + [anon_sym_PIPE] = ACTIONS(1896), + [anon_sym_err_GT_PIPE] = ACTIONS(1896), + [anon_sym_out_GT_PIPE] = ACTIONS(1896), + [anon_sym_e_GT_PIPE] = ACTIONS(1896), + [anon_sym_o_GT_PIPE] = ACTIONS(1896), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1896), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1896), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1896), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1896), + [anon_sym_LBRACK] = ACTIONS(1896), + [anon_sym_LPAREN] = ACTIONS(1896), + [anon_sym_RPAREN] = ACTIONS(1896), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1894), + [aux_sym_ctrl_match_token1] = ACTIONS(1896), + [anon_sym_RBRACE] = ACTIONS(1896), + [anon_sym_DOT_DOT] = ACTIONS(1894), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1896), + [anon_sym_DOT_DOT_LT] = ACTIONS(1896), + [aux_sym__val_number_decimal_token1] = ACTIONS(1894), + [aux_sym__val_number_decimal_token2] = ACTIONS(1896), + [aux_sym__val_number_decimal_token3] = ACTIONS(1896), + [aux_sym__val_number_decimal_token4] = ACTIONS(1896), + [aux_sym__val_number_token1] = ACTIONS(1896), + [aux_sym__val_number_token2] = ACTIONS(1896), + [aux_sym__val_number_token3] = ACTIONS(1896), + [anon_sym_0b] = ACTIONS(1894), + [anon_sym_0o] = ACTIONS(1894), + [anon_sym_0x] = ACTIONS(1894), + [sym_val_date] = ACTIONS(1896), + [anon_sym_DQUOTE] = ACTIONS(1896), + [sym__str_single_quotes] = ACTIONS(1896), + [sym__str_back_ticks] = ACTIONS(1896), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1896), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1896), + [anon_sym_err_GT] = ACTIONS(1894), + [anon_sym_out_GT] = ACTIONS(1894), + [anon_sym_e_GT] = ACTIONS(1894), + [anon_sym_o_GT] = ACTIONS(1894), + [anon_sym_err_PLUSout_GT] = ACTIONS(1894), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1894), + [anon_sym_o_PLUSe_GT] = ACTIONS(1894), + [anon_sym_e_PLUSo_GT] = ACTIONS(1894), + [anon_sym_err_GT_GT] = ACTIONS(1896), + [anon_sym_out_GT_GT] = ACTIONS(1896), + [anon_sym_e_GT_GT] = ACTIONS(1896), + [anon_sym_o_GT_GT] = ACTIONS(1896), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1896), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1896), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1896), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1896), + [aux_sym_unquoted_token1] = ACTIONS(1894), [anon_sym_POUND] = ACTIONS(247), }, [1287] = { + [sym_cell_path] = STATE(1565), + [sym_path] = STATE(1532), [sym_comment] = STATE(1287), - [ts_builtin_sym_end] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [aux_sym_cmd_identifier_token38] = ACTIONS(1475), - [aux_sym_cmd_identifier_token39] = ACTIONS(1475), - [aux_sym_cmd_identifier_token40] = ACTIONS(1475), - [sym__newline] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_err_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_GT_PIPE] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1473), - [anon_sym_DOLLAR] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1473), - [aux_sym_ctrl_match_token1] = ACTIONS(1475), - [anon_sym_DOT_DOT] = ACTIONS(1473), - [anon_sym_LPAREN2] = ACTIONS(1475), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT] = ACTIONS(4152), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), - [anon_sym_DOT_DOT_LT] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [aux_sym__immediate_decimal_token2] = ACTIONS(4154), - [aux_sym__val_number_decimal_token1] = ACTIONS(1473), - [aux_sym__val_number_decimal_token2] = ACTIONS(1475), - [aux_sym__val_number_decimal_token3] = ACTIONS(1475), - [aux_sym__val_number_decimal_token4] = ACTIONS(1475), - [aux_sym__val_number_token1] = ACTIONS(1475), - [aux_sym__val_number_token2] = ACTIONS(1475), - [aux_sym__val_number_token3] = ACTIONS(1475), - [anon_sym_0b] = ACTIONS(1473), - [sym_filesize_unit] = ACTIONS(1475), - [sym_duration_unit] = ACTIONS(1475), - [anon_sym_0o] = ACTIONS(1473), - [anon_sym_0x] = ACTIONS(1473), - [sym_val_date] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym__str_single_quotes] = ACTIONS(1475), - [sym__str_back_ticks] = ACTIONS(1475), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1473), - [anon_sym_out_GT] = ACTIONS(1473), - [anon_sym_e_GT] = ACTIONS(1473), - [anon_sym_o_GT] = ACTIONS(1473), - [anon_sym_err_PLUSout_GT] = ACTIONS(1473), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), - [anon_sym_o_PLUSe_GT] = ACTIONS(1473), - [anon_sym_e_PLUSo_GT] = ACTIONS(1473), - [anon_sym_err_GT_GT] = ACTIONS(1475), - [anon_sym_out_GT_GT] = ACTIONS(1475), - [anon_sym_e_GT_GT] = ACTIONS(1475), - [anon_sym_o_GT_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), - [aux_sym_unquoted_token1] = ACTIONS(1473), - [aux_sym_unquoted_token2] = ACTIONS(1473), + [aux_sym_cell_path_repeat1] = STATE(1374), + [anon_sym_true] = ACTIONS(1939), + [anon_sym_false] = ACTIONS(1939), + [anon_sym_null] = ACTIONS(1939), + [aux_sym_cmd_identifier_token38] = ACTIONS(1939), + [aux_sym_cmd_identifier_token39] = ACTIONS(1939), + [aux_sym_cmd_identifier_token40] = ACTIONS(1939), + [sym__newline] = ACTIONS(1939), + [anon_sym_SEMI] = ACTIONS(1939), + [anon_sym_PIPE] = ACTIONS(1939), + [anon_sym_err_GT_PIPE] = ACTIONS(1939), + [anon_sym_out_GT_PIPE] = ACTIONS(1939), + [anon_sym_e_GT_PIPE] = ACTIONS(1939), + [anon_sym_o_GT_PIPE] = ACTIONS(1939), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1939), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1939), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1939), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1939), + [anon_sym_LBRACK] = ACTIONS(1939), + [anon_sym_LPAREN] = ACTIONS(1939), + [anon_sym_RPAREN] = ACTIONS(1939), + [anon_sym_DOLLAR] = ACTIONS(1937), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_DASH] = ACTIONS(1937), + [aux_sym_ctrl_match_token1] = ACTIONS(1939), + [anon_sym_RBRACE] = ACTIONS(1939), + [anon_sym_DOT_DOT] = ACTIONS(1937), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1939), + [anon_sym_DOT_DOT_LT] = ACTIONS(1939), + [aux_sym__val_number_decimal_token1] = ACTIONS(1937), + [aux_sym__val_number_decimal_token2] = ACTIONS(1939), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [aux_sym__val_number_token1] = ACTIONS(1939), + [aux_sym__val_number_token2] = ACTIONS(1939), + [aux_sym__val_number_token3] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1937), + [anon_sym_0x] = ACTIONS(1937), + [sym_val_date] = ACTIONS(1939), + [anon_sym_DQUOTE] = ACTIONS(1939), + [sym__str_single_quotes] = ACTIONS(1939), + [sym__str_back_ticks] = ACTIONS(1939), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1939), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1939), + [anon_sym_err_GT] = ACTIONS(1937), + [anon_sym_out_GT] = ACTIONS(1937), + [anon_sym_e_GT] = ACTIONS(1937), + [anon_sym_o_GT] = ACTIONS(1937), + [anon_sym_err_PLUSout_GT] = ACTIONS(1937), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1937), + [anon_sym_o_PLUSe_GT] = ACTIONS(1937), + [anon_sym_e_PLUSo_GT] = ACTIONS(1937), + [anon_sym_err_GT_GT] = ACTIONS(1939), + [anon_sym_out_GT_GT] = ACTIONS(1939), + [anon_sym_e_GT_GT] = ACTIONS(1939), + [anon_sym_o_GT_GT] = ACTIONS(1939), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1939), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1939), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1939), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1939), + [aux_sym_unquoted_token1] = ACTIONS(1937), [anon_sym_POUND] = ACTIONS(247), }, [1288] = { - [sym_path] = STATE(1399), + [sym_cell_path] = STATE(1566), + [sym_path] = STATE(1532), [sym_comment] = STATE(1288), - [aux_sym_cell_path_repeat1] = STATE(1271), - [anon_sym_EQ] = ACTIONS(951), - [anon_sym_PLUS_EQ] = ACTIONS(953), - [anon_sym_DASH_EQ] = ACTIONS(953), - [anon_sym_STAR_EQ] = ACTIONS(953), - [anon_sym_SLASH_EQ] = ACTIONS(953), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(953), - [sym__newline] = ACTIONS(951), - [anon_sym_SEMI] = ACTIONS(953), - [anon_sym_PIPE] = ACTIONS(953), - [anon_sym_err_GT_PIPE] = ACTIONS(953), - [anon_sym_out_GT_PIPE] = ACTIONS(953), - [anon_sym_e_GT_PIPE] = ACTIONS(953), - [anon_sym_o_GT_PIPE] = ACTIONS(953), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(953), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(953), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(953), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(953), - [anon_sym_RPAREN] = ACTIONS(953), - [aux_sym_ctrl_match_token1] = ACTIONS(953), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(953), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(953), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(953), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(953), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(953), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(953), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(953), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(953), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(953), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(953), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(953), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(953), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(953), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(953), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(953), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(953), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(953), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(953), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(953), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(953), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(953), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(953), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(953), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(953), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(953), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(953), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(953), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(953), - [anon_sym_DOT_DOT2] = ACTIONS(951), - [anon_sym_DOT] = ACTIONS(4075), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(953), - [anon_sym_DOT_DOT_LT2] = ACTIONS(953), - [anon_sym_err_GT] = ACTIONS(951), - [anon_sym_out_GT] = ACTIONS(951), - [anon_sym_e_GT] = ACTIONS(951), - [anon_sym_o_GT] = ACTIONS(951), - [anon_sym_err_PLUSout_GT] = ACTIONS(951), - [anon_sym_out_PLUSerr_GT] = ACTIONS(951), - [anon_sym_o_PLUSe_GT] = ACTIONS(951), - [anon_sym_e_PLUSo_GT] = ACTIONS(951), - [anon_sym_err_GT_GT] = ACTIONS(953), - [anon_sym_out_GT_GT] = ACTIONS(953), - [anon_sym_e_GT_GT] = ACTIONS(953), - [anon_sym_o_GT_GT] = ACTIONS(953), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(953), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(953), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(953), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(953), + [aux_sym_cell_path_repeat1] = STATE(1374), + [anon_sym_true] = ACTIONS(1947), + [anon_sym_false] = ACTIONS(1947), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token38] = ACTIONS(1947), + [aux_sym_cmd_identifier_token39] = ACTIONS(1947), + [aux_sym_cmd_identifier_token40] = ACTIONS(1947), + [sym__newline] = ACTIONS(1947), + [anon_sym_SEMI] = ACTIONS(1947), + [anon_sym_PIPE] = ACTIONS(1947), + [anon_sym_err_GT_PIPE] = ACTIONS(1947), + [anon_sym_out_GT_PIPE] = ACTIONS(1947), + [anon_sym_e_GT_PIPE] = ACTIONS(1947), + [anon_sym_o_GT_PIPE] = ACTIONS(1947), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1947), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1947), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1947), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1947), + [anon_sym_LBRACK] = ACTIONS(1947), + [anon_sym_LPAREN] = ACTIONS(1947), + [anon_sym_RPAREN] = ACTIONS(1947), + [anon_sym_DOLLAR] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1947), + [anon_sym_DASH] = ACTIONS(1945), + [aux_sym_ctrl_match_token1] = ACTIONS(1947), + [anon_sym_RBRACE] = ACTIONS(1947), + [anon_sym_DOT_DOT] = ACTIONS(1945), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1947), + [anon_sym_DOT_DOT_LT] = ACTIONS(1947), + [aux_sym__val_number_decimal_token1] = ACTIONS(1945), + [aux_sym__val_number_decimal_token2] = ACTIONS(1947), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), + [aux_sym__val_number_token1] = ACTIONS(1947), + [aux_sym__val_number_token2] = ACTIONS(1947), + [aux_sym__val_number_token3] = ACTIONS(1947), + [anon_sym_0b] = ACTIONS(1945), + [anon_sym_0o] = ACTIONS(1945), + [anon_sym_0x] = ACTIONS(1945), + [sym_val_date] = ACTIONS(1947), + [anon_sym_DQUOTE] = ACTIONS(1947), + [sym__str_single_quotes] = ACTIONS(1947), + [sym__str_back_ticks] = ACTIONS(1947), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1947), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1947), + [anon_sym_err_GT] = ACTIONS(1945), + [anon_sym_out_GT] = ACTIONS(1945), + [anon_sym_e_GT] = ACTIONS(1945), + [anon_sym_o_GT] = ACTIONS(1945), + [anon_sym_err_PLUSout_GT] = ACTIONS(1945), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1945), + [anon_sym_o_PLUSe_GT] = ACTIONS(1945), + [anon_sym_e_PLUSo_GT] = ACTIONS(1945), + [anon_sym_err_GT_GT] = ACTIONS(1947), + [anon_sym_out_GT_GT] = ACTIONS(1947), + [anon_sym_e_GT_GT] = ACTIONS(1947), + [anon_sym_o_GT_GT] = ACTIONS(1947), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1947), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1947), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1947), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1947), + [aux_sym_unquoted_token1] = ACTIONS(1945), [anon_sym_POUND] = ACTIONS(247), }, [1289] = { + [sym_cell_path] = STATE(1567), + [sym_path] = STATE(1532), [sym_comment] = STATE(1289), - [anon_sym_EQ] = ACTIONS(970), - [anon_sym_PLUS_EQ] = ACTIONS(972), - [anon_sym_DASH_EQ] = ACTIONS(972), - [anon_sym_STAR_EQ] = ACTIONS(972), - [anon_sym_SLASH_EQ] = ACTIONS(972), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(972), - [sym__newline] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_err_GT_PIPE] = ACTIONS(972), - [anon_sym_out_GT_PIPE] = ACTIONS(972), - [anon_sym_e_GT_PIPE] = ACTIONS(972), - [anon_sym_o_GT_PIPE] = ACTIONS(972), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(972), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(972), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(972), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(972), - [aux_sym_ctrl_match_token1] = ACTIONS(972), - [anon_sym_RBRACE] = ACTIONS(972), - [anon_sym_QMARK2] = ACTIONS(4156), - [aux_sym_expr_binary_token1] = ACTIONS(972), - [aux_sym_expr_binary_token2] = ACTIONS(972), - [aux_sym_expr_binary_token3] = ACTIONS(972), - [aux_sym_expr_binary_token4] = ACTIONS(972), - [aux_sym_expr_binary_token5] = ACTIONS(972), - [aux_sym_expr_binary_token6] = ACTIONS(972), - [aux_sym_expr_binary_token7] = ACTIONS(972), - [aux_sym_expr_binary_token8] = ACTIONS(972), - [aux_sym_expr_binary_token9] = ACTIONS(972), - [aux_sym_expr_binary_token10] = ACTIONS(972), - [aux_sym_expr_binary_token11] = ACTIONS(972), - [aux_sym_expr_binary_token12] = ACTIONS(972), - [aux_sym_expr_binary_token13] = ACTIONS(972), - [aux_sym_expr_binary_token14] = ACTIONS(972), - [aux_sym_expr_binary_token15] = ACTIONS(972), - [aux_sym_expr_binary_token16] = ACTIONS(972), - [aux_sym_expr_binary_token17] = ACTIONS(972), - [aux_sym_expr_binary_token18] = ACTIONS(972), - [aux_sym_expr_binary_token19] = ACTIONS(972), - [aux_sym_expr_binary_token20] = ACTIONS(972), - [aux_sym_expr_binary_token21] = ACTIONS(972), - [aux_sym_expr_binary_token22] = ACTIONS(972), - [aux_sym_expr_binary_token23] = ACTIONS(972), - [aux_sym_expr_binary_token24] = ACTIONS(972), - [aux_sym_expr_binary_token25] = ACTIONS(972), - [aux_sym_expr_binary_token26] = ACTIONS(972), - [aux_sym_expr_binary_token27] = ACTIONS(972), - [aux_sym_expr_binary_token28] = ACTIONS(972), - [anon_sym_DOT_DOT2] = ACTIONS(970), - [anon_sym_DOT] = ACTIONS(970), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(972), - [anon_sym_DOT_DOT_LT2] = ACTIONS(972), - [aux_sym_record_entry_token1] = ACTIONS(972), - [anon_sym_err_GT] = ACTIONS(970), - [anon_sym_out_GT] = ACTIONS(970), - [anon_sym_e_GT] = ACTIONS(970), - [anon_sym_o_GT] = ACTIONS(970), - [anon_sym_err_PLUSout_GT] = ACTIONS(970), - [anon_sym_out_PLUSerr_GT] = ACTIONS(970), - [anon_sym_o_PLUSe_GT] = ACTIONS(970), - [anon_sym_e_PLUSo_GT] = ACTIONS(970), - [anon_sym_err_GT_GT] = ACTIONS(972), - [anon_sym_out_GT_GT] = ACTIONS(972), - [anon_sym_e_GT_GT] = ACTIONS(972), - [anon_sym_o_GT_GT] = ACTIONS(972), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(972), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(972), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(972), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(972), + [aux_sym_cell_path_repeat1] = STATE(1374), + [anon_sym_true] = ACTIONS(1951), + [anon_sym_false] = ACTIONS(1951), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token38] = ACTIONS(1951), + [aux_sym_cmd_identifier_token39] = ACTIONS(1951), + [aux_sym_cmd_identifier_token40] = ACTIONS(1951), + [sym__newline] = ACTIONS(1951), + [anon_sym_SEMI] = ACTIONS(1951), + [anon_sym_PIPE] = ACTIONS(1951), + [anon_sym_err_GT_PIPE] = ACTIONS(1951), + [anon_sym_out_GT_PIPE] = ACTIONS(1951), + [anon_sym_e_GT_PIPE] = ACTIONS(1951), + [anon_sym_o_GT_PIPE] = ACTIONS(1951), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1951), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1951), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1951), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1951), + [anon_sym_LBRACK] = ACTIONS(1951), + [anon_sym_LPAREN] = ACTIONS(1951), + [anon_sym_RPAREN] = ACTIONS(1951), + [anon_sym_DOLLAR] = ACTIONS(1949), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_DASH] = ACTIONS(1949), + [aux_sym_ctrl_match_token1] = ACTIONS(1951), + [anon_sym_RBRACE] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1949), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1951), + [anon_sym_DOT_DOT_LT] = ACTIONS(1951), + [aux_sym__val_number_decimal_token1] = ACTIONS(1949), + [aux_sym__val_number_decimal_token2] = ACTIONS(1951), + [aux_sym__val_number_decimal_token3] = ACTIONS(1951), + [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [aux_sym__val_number_token1] = ACTIONS(1951), + [aux_sym__val_number_token2] = ACTIONS(1951), + [aux_sym__val_number_token3] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1949), + [anon_sym_0x] = ACTIONS(1949), + [sym_val_date] = ACTIONS(1951), + [anon_sym_DQUOTE] = ACTIONS(1951), + [sym__str_single_quotes] = ACTIONS(1951), + [sym__str_back_ticks] = ACTIONS(1951), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1951), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1951), + [anon_sym_err_GT] = ACTIONS(1949), + [anon_sym_out_GT] = ACTIONS(1949), + [anon_sym_e_GT] = ACTIONS(1949), + [anon_sym_o_GT] = ACTIONS(1949), + [anon_sym_err_PLUSout_GT] = ACTIONS(1949), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1949), + [anon_sym_o_PLUSe_GT] = ACTIONS(1949), + [anon_sym_e_PLUSo_GT] = ACTIONS(1949), + [anon_sym_err_GT_GT] = ACTIONS(1951), + [anon_sym_out_GT_GT] = ACTIONS(1951), + [anon_sym_e_GT_GT] = ACTIONS(1951), + [anon_sym_o_GT_GT] = ACTIONS(1951), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1951), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1951), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1951), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1951), + [aux_sym_unquoted_token1] = ACTIONS(1949), [anon_sym_POUND] = ACTIONS(247), }, [1290] = { [sym_comment] = STATE(1290), - [ts_builtin_sym_end] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [anon_sym_null] = ACTIONS(1483), - [aux_sym_cmd_identifier_token38] = ACTIONS(1483), - [aux_sym_cmd_identifier_token39] = ACTIONS(1483), - [aux_sym_cmd_identifier_token40] = ACTIONS(1483), - [sym__newline] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_err_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_GT_PIPE] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_LPAREN] = ACTIONS(1481), - [anon_sym_DOLLAR] = ACTIONS(1481), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1481), - [aux_sym_ctrl_match_token1] = ACTIONS(1483), - [anon_sym_DOT_DOT] = ACTIONS(1481), - [anon_sym_LPAREN2] = ACTIONS(1483), - [anon_sym_DOT_DOT2] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), - [anon_sym_DOT_DOT_LT] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), - [aux_sym__immediate_decimal_token1] = ACTIONS(4158), - [aux_sym__immediate_decimal_token2] = ACTIONS(4160), - [aux_sym__val_number_decimal_token1] = ACTIONS(1481), - [aux_sym__val_number_decimal_token2] = ACTIONS(1483), - [aux_sym__val_number_decimal_token3] = ACTIONS(1483), - [aux_sym__val_number_decimal_token4] = ACTIONS(1483), - [aux_sym__val_number_token1] = ACTIONS(1483), - [aux_sym__val_number_token2] = ACTIONS(1483), - [aux_sym__val_number_token3] = ACTIONS(1483), - [anon_sym_0b] = ACTIONS(1481), - [sym_filesize_unit] = ACTIONS(1483), - [sym_duration_unit] = ACTIONS(1483), - [anon_sym_0o] = ACTIONS(1481), - [anon_sym_0x] = ACTIONS(1481), - [sym_val_date] = ACTIONS(1483), - [anon_sym_DQUOTE] = ACTIONS(1483), - [sym__str_single_quotes] = ACTIONS(1483), - [sym__str_back_ticks] = ACTIONS(1483), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1483), - [anon_sym_err_GT] = ACTIONS(1481), - [anon_sym_out_GT] = ACTIONS(1481), - [anon_sym_e_GT] = ACTIONS(1481), - [anon_sym_o_GT] = ACTIONS(1481), - [anon_sym_err_PLUSout_GT] = ACTIONS(1481), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), - [anon_sym_o_PLUSe_GT] = ACTIONS(1481), - [anon_sym_e_PLUSo_GT] = ACTIONS(1481), - [anon_sym_err_GT_GT] = ACTIONS(1483), - [anon_sym_out_GT_GT] = ACTIONS(1483), - [anon_sym_e_GT_GT] = ACTIONS(1483), - [anon_sym_o_GT_GT] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), - [aux_sym_unquoted_token1] = ACTIONS(1481), - [aux_sym_unquoted_token2] = ACTIONS(1481), + [ts_builtin_sym_end] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_LPAREN2] = ACTIONS(1499), + [aux_sym_expr_binary_token1] = ACTIONS(1499), + [aux_sym_expr_binary_token2] = ACTIONS(1499), + [aux_sym_expr_binary_token3] = ACTIONS(1499), + [aux_sym_expr_binary_token4] = ACTIONS(1499), + [aux_sym_expr_binary_token5] = ACTIONS(1499), + [aux_sym_expr_binary_token6] = ACTIONS(1499), + [aux_sym_expr_binary_token7] = ACTIONS(1499), + [aux_sym_expr_binary_token8] = ACTIONS(1499), + [aux_sym_expr_binary_token9] = ACTIONS(1499), + [aux_sym_expr_binary_token10] = ACTIONS(1499), + [aux_sym_expr_binary_token11] = ACTIONS(1499), + [aux_sym_expr_binary_token12] = ACTIONS(1499), + [aux_sym_expr_binary_token13] = ACTIONS(1499), + [aux_sym_expr_binary_token14] = ACTIONS(1499), + [aux_sym_expr_binary_token15] = ACTIONS(1499), + [aux_sym_expr_binary_token16] = ACTIONS(1499), + [aux_sym_expr_binary_token17] = ACTIONS(1499), + [aux_sym_expr_binary_token18] = ACTIONS(1499), + [aux_sym_expr_binary_token19] = ACTIONS(1499), + [aux_sym_expr_binary_token20] = ACTIONS(1499), + [aux_sym_expr_binary_token21] = ACTIONS(1499), + [aux_sym_expr_binary_token22] = ACTIONS(1499), + [aux_sym_expr_binary_token23] = ACTIONS(1499), + [aux_sym_expr_binary_token24] = ACTIONS(1499), + [aux_sym_expr_binary_token25] = ACTIONS(1499), + [aux_sym_expr_binary_token26] = ACTIONS(1499), + [aux_sym_expr_binary_token27] = ACTIONS(1499), + [aux_sym_expr_binary_token28] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1497), + [anon_sym_DOT] = ACTIONS(4634), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), + [aux_sym__immediate_decimal_token2] = ACTIONS(4636), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1499), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), + [aux_sym_unquoted_token2] = ACTIONS(1497), [anon_sym_POUND] = ACTIONS(247), }, [1291] = { + [sym_cell_path] = STATE(1571), + [sym_path] = STATE(1532), [sym_comment] = STATE(1291), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [anon_sym_null] = ACTIONS(1483), - [aux_sym_cmd_identifier_token38] = ACTIONS(1483), - [aux_sym_cmd_identifier_token39] = ACTIONS(1483), - [aux_sym_cmd_identifier_token40] = ACTIONS(1483), - [sym__newline] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_err_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_GT_PIPE] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_RPAREN] = ACTIONS(1483), - [anon_sym_DOLLAR] = ACTIONS(1481), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1481), - [aux_sym_ctrl_match_token1] = ACTIONS(1483), - [anon_sym_RBRACE] = ACTIONS(1483), - [anon_sym_DOT_DOT] = ACTIONS(1481), - [anon_sym_DOT_DOT2] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), - [anon_sym_DOT_DOT_LT] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), - [aux_sym__immediate_decimal_token1] = ACTIONS(4162), - [aux_sym__immediate_decimal_token2] = ACTIONS(4164), - [aux_sym__val_number_decimal_token1] = ACTIONS(1481), - [aux_sym__val_number_decimal_token2] = ACTIONS(1483), - [aux_sym__val_number_decimal_token3] = ACTIONS(1483), - [aux_sym__val_number_decimal_token4] = ACTIONS(1483), - [aux_sym__val_number_token1] = ACTIONS(1483), - [aux_sym__val_number_token2] = ACTIONS(1483), - [aux_sym__val_number_token3] = ACTIONS(1483), - [anon_sym_0b] = ACTIONS(1481), - [sym_filesize_unit] = ACTIONS(1483), - [sym_duration_unit] = ACTIONS(1483), - [anon_sym_0o] = ACTIONS(1481), - [anon_sym_0x] = ACTIONS(1481), - [sym_val_date] = ACTIONS(1483), - [anon_sym_DQUOTE] = ACTIONS(1483), - [sym__str_single_quotes] = ACTIONS(1483), - [sym__str_back_ticks] = ACTIONS(1483), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1483), - [anon_sym_err_GT] = ACTIONS(1481), - [anon_sym_out_GT] = ACTIONS(1481), - [anon_sym_e_GT] = ACTIONS(1481), - [anon_sym_o_GT] = ACTIONS(1481), - [anon_sym_err_PLUSout_GT] = ACTIONS(1481), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), - [anon_sym_o_PLUSe_GT] = ACTIONS(1481), - [anon_sym_e_PLUSo_GT] = ACTIONS(1481), - [anon_sym_err_GT_GT] = ACTIONS(1483), - [anon_sym_out_GT_GT] = ACTIONS(1483), - [anon_sym_e_GT_GT] = ACTIONS(1483), - [anon_sym_o_GT_GT] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), - [aux_sym_unquoted_token1] = ACTIONS(1481), - [aux_sym_unquoted_token2] = ACTIONS(1481), + [aux_sym_cell_path_repeat1] = STATE(1374), + [anon_sym_true] = ACTIONS(1967), + [anon_sym_false] = ACTIONS(1967), + [anon_sym_null] = ACTIONS(1967), + [aux_sym_cmd_identifier_token38] = ACTIONS(1967), + [aux_sym_cmd_identifier_token39] = ACTIONS(1967), + [aux_sym_cmd_identifier_token40] = ACTIONS(1967), + [sym__newline] = ACTIONS(1967), + [anon_sym_SEMI] = ACTIONS(1967), + [anon_sym_PIPE] = ACTIONS(1967), + [anon_sym_err_GT_PIPE] = ACTIONS(1967), + [anon_sym_out_GT_PIPE] = ACTIONS(1967), + [anon_sym_e_GT_PIPE] = ACTIONS(1967), + [anon_sym_o_GT_PIPE] = ACTIONS(1967), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1967), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1967), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1967), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1967), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_LPAREN] = ACTIONS(1967), + [anon_sym_RPAREN] = ACTIONS(1967), + [anon_sym_DOLLAR] = ACTIONS(1965), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_DASH] = ACTIONS(1965), + [aux_sym_ctrl_match_token1] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(1967), + [anon_sym_DOT_DOT] = ACTIONS(1965), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1967), + [anon_sym_DOT_DOT_LT] = ACTIONS(1967), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1967), + [aux_sym__val_number_decimal_token4] = ACTIONS(1967), + [aux_sym__val_number_token1] = ACTIONS(1967), + [aux_sym__val_number_token2] = ACTIONS(1967), + [aux_sym__val_number_token3] = ACTIONS(1967), + [anon_sym_0b] = ACTIONS(1965), + [anon_sym_0o] = ACTIONS(1965), + [anon_sym_0x] = ACTIONS(1965), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym__str_single_quotes] = ACTIONS(1967), + [sym__str_back_ticks] = ACTIONS(1967), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1967), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1967), + [anon_sym_err_GT] = ACTIONS(1965), + [anon_sym_out_GT] = ACTIONS(1965), + [anon_sym_e_GT] = ACTIONS(1965), + [anon_sym_o_GT] = ACTIONS(1965), + [anon_sym_err_PLUSout_GT] = ACTIONS(1965), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1965), + [anon_sym_o_PLUSe_GT] = ACTIONS(1965), + [anon_sym_e_PLUSo_GT] = ACTIONS(1965), + [anon_sym_err_GT_GT] = ACTIONS(1967), + [anon_sym_out_GT_GT] = ACTIONS(1967), + [anon_sym_e_GT_GT] = ACTIONS(1967), + [anon_sym_o_GT_GT] = ACTIONS(1967), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1967), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1967), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1967), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1967), + [aux_sym_unquoted_token1] = ACTIONS(1965), [anon_sym_POUND] = ACTIONS(247), }, [1292] = { [sym_comment] = STATE(1292), - [anon_sym_EQ] = ACTIONS(966), - [anon_sym_PLUS_EQ] = ACTIONS(968), - [anon_sym_DASH_EQ] = ACTIONS(968), - [anon_sym_STAR_EQ] = ACTIONS(968), - [anon_sym_SLASH_EQ] = ACTIONS(968), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(968), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(968), - [anon_sym_COMMA] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_QMARK2] = ACTIONS(968), - [aux_sym_expr_binary_token1] = ACTIONS(968), - [aux_sym_expr_binary_token2] = ACTIONS(968), - [aux_sym_expr_binary_token3] = ACTIONS(968), - [aux_sym_expr_binary_token4] = ACTIONS(968), - [aux_sym_expr_binary_token5] = ACTIONS(968), - [aux_sym_expr_binary_token6] = ACTIONS(968), - [aux_sym_expr_binary_token7] = ACTIONS(968), - [aux_sym_expr_binary_token8] = ACTIONS(968), - [aux_sym_expr_binary_token9] = ACTIONS(968), - [aux_sym_expr_binary_token10] = ACTIONS(968), - [aux_sym_expr_binary_token11] = ACTIONS(968), - [aux_sym_expr_binary_token12] = ACTIONS(968), - [aux_sym_expr_binary_token13] = ACTIONS(968), - [aux_sym_expr_binary_token14] = ACTIONS(968), - [aux_sym_expr_binary_token15] = ACTIONS(968), - [aux_sym_expr_binary_token16] = ACTIONS(968), - [aux_sym_expr_binary_token17] = ACTIONS(968), - [aux_sym_expr_binary_token18] = ACTIONS(968), - [aux_sym_expr_binary_token19] = ACTIONS(968), - [aux_sym_expr_binary_token20] = ACTIONS(968), - [aux_sym_expr_binary_token21] = ACTIONS(968), - [aux_sym_expr_binary_token22] = ACTIONS(968), - [aux_sym_expr_binary_token23] = ACTIONS(968), - [aux_sym_expr_binary_token24] = ACTIONS(968), - [aux_sym_expr_binary_token25] = ACTIONS(968), - [aux_sym_expr_binary_token26] = ACTIONS(968), - [aux_sym_expr_binary_token27] = ACTIONS(968), - [aux_sym_expr_binary_token28] = ACTIONS(968), - [anon_sym_DOT_DOT2] = ACTIONS(966), - [anon_sym_DOT] = ACTIONS(966), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(968), - [anon_sym_DOT_DOT_LT2] = ACTIONS(968), - [anon_sym_err_GT] = ACTIONS(966), - [anon_sym_out_GT] = ACTIONS(966), - [anon_sym_e_GT] = ACTIONS(966), - [anon_sym_o_GT] = ACTIONS(966), - [anon_sym_err_PLUSout_GT] = ACTIONS(966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(966), - [anon_sym_o_PLUSe_GT] = ACTIONS(966), - [anon_sym_e_PLUSo_GT] = ACTIONS(966), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), + [ts_builtin_sym_end] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1804), + [anon_sym_false] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1804), + [aux_sym_cmd_identifier_token38] = ACTIONS(1804), + [aux_sym_cmd_identifier_token39] = ACTIONS(1804), + [aux_sym_cmd_identifier_token40] = ACTIONS(1804), + [sym__newline] = ACTIONS(1804), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_PIPE] = ACTIONS(1804), + [anon_sym_err_GT_PIPE] = ACTIONS(1804), + [anon_sym_out_GT_PIPE] = ACTIONS(1804), + [anon_sym_e_GT_PIPE] = ACTIONS(1804), + [anon_sym_o_GT_PIPE] = ACTIONS(1804), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1804), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1804), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1804), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1796), + [anon_sym_DOLLAR] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1796), + [aux_sym_ctrl_match_token1] = ACTIONS(1804), + [anon_sym_DOT_DOT] = ACTIONS(1796), + [anon_sym_LPAREN2] = ACTIONS(1798), + [anon_sym_DOT_DOT2] = ACTIONS(4638), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1796), + [anon_sym_DOT_DOT_LT] = ACTIONS(1796), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4640), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4640), + [aux_sym__val_number_decimal_token1] = ACTIONS(1796), + [aux_sym__val_number_decimal_token2] = ACTIONS(1804), + [aux_sym__val_number_decimal_token3] = ACTIONS(1804), + [aux_sym__val_number_decimal_token4] = ACTIONS(1804), + [aux_sym__val_number_token1] = ACTIONS(1804), + [aux_sym__val_number_token2] = ACTIONS(1804), + [aux_sym__val_number_token3] = ACTIONS(1804), + [anon_sym_0b] = ACTIONS(1796), + [anon_sym_0o] = ACTIONS(1796), + [anon_sym_0x] = ACTIONS(1796), + [sym_val_date] = ACTIONS(1804), + [anon_sym_DQUOTE] = ACTIONS(1804), + [sym__str_single_quotes] = ACTIONS(1804), + [sym__str_back_ticks] = ACTIONS(1804), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1804), + [anon_sym_err_GT] = ACTIONS(1796), + [anon_sym_out_GT] = ACTIONS(1796), + [anon_sym_e_GT] = ACTIONS(1796), + [anon_sym_o_GT] = ACTIONS(1796), + [anon_sym_err_PLUSout_GT] = ACTIONS(1796), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1796), + [anon_sym_o_PLUSe_GT] = ACTIONS(1796), + [anon_sym_e_PLUSo_GT] = ACTIONS(1796), + [anon_sym_err_GT_GT] = ACTIONS(1804), + [anon_sym_out_GT_GT] = ACTIONS(1804), + [anon_sym_e_GT_GT] = ACTIONS(1804), + [anon_sym_o_GT_GT] = ACTIONS(1804), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1804), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1804), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1804), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1804), + [aux_sym_unquoted_token1] = ACTIONS(1796), + [aux_sym_unquoted_token2] = ACTIONS(1806), [anon_sym_POUND] = ACTIONS(247), }, [1293] = { - [sym__val_range] = STATE(7981), - [sym__value] = STATE(2892), - [sym_val_nothing] = STATE(2982), - [sym_val_bool] = STATE(2863), - [sym_val_variable] = STATE(2982), - [sym_val_number] = STATE(2982), - [sym__val_number_decimal] = STATE(2598), - [sym__val_number] = STATE(2929), - [sym_val_duration] = STATE(2982), - [sym_val_filesize] = STATE(2982), - [sym_val_binary] = STATE(2982), - [sym_val_string] = STATE(2982), - [sym__str_double_quotes] = STATE(2993), - [sym_val_interpolated] = STATE(2982), - [sym__inter_single_quotes] = STATE(2995), - [sym__inter_double_quotes] = STATE(2992), - [sym_val_list] = STATE(2982), - [sym_val_record] = STATE(2982), - [sym_val_table] = STATE(2982), - [sym_val_closure] = STATE(2982), - [sym_unquoted] = STATE(2894), - [sym__unquoted_anonymous_prefix] = STATE(8059), [sym_comment] = STATE(1293), - [anon_sym_true] = ACTIONS(4166), - [anon_sym_false] = ACTIONS(4166), - [anon_sym_null] = ACTIONS(4168), - [aux_sym_cmd_identifier_token38] = ACTIONS(4170), - [aux_sym_cmd_identifier_token39] = ACTIONS(4170), - [aux_sym_cmd_identifier_token40] = ACTIONS(4170), - [anon_sym_LBRACK] = ACTIONS(4172), - [anon_sym_LPAREN] = ACTIONS(4174), - [anon_sym_DOLLAR] = ACTIONS(4176), - [aux_sym_ctrl_match_token1] = ACTIONS(4178), - [anon_sym_DOT_DOT] = ACTIONS(4180), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4182), - [anon_sym_DOT_DOT_LT] = ACTIONS(4182), - [aux_sym__val_number_decimal_token1] = ACTIONS(4184), - [aux_sym__val_number_decimal_token2] = ACTIONS(4186), - [aux_sym__val_number_decimal_token3] = ACTIONS(4188), - [aux_sym__val_number_decimal_token4] = ACTIONS(4190), - [aux_sym__val_number_token1] = ACTIONS(4192), - [aux_sym__val_number_token2] = ACTIONS(4192), - [aux_sym__val_number_token3] = ACTIONS(4192), - [anon_sym_0b] = ACTIONS(4194), - [anon_sym_0o] = ACTIONS(4196), - [anon_sym_0x] = ACTIONS(4196), - [sym_val_date] = ACTIONS(4198), - [anon_sym_DQUOTE] = ACTIONS(4200), - [sym__str_single_quotes] = ACTIONS(4202), - [sym__str_back_ticks] = ACTIONS(4202), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4204), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4206), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(4208), + [ts_builtin_sym_end] = ACTIONS(1519), + [sym__newline] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1519), + [anon_sym_err_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_GT_PIPE] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), + [anon_sym_LPAREN2] = ACTIONS(1519), + [aux_sym_expr_binary_token1] = ACTIONS(1519), + [aux_sym_expr_binary_token2] = ACTIONS(1519), + [aux_sym_expr_binary_token3] = ACTIONS(1519), + [aux_sym_expr_binary_token4] = ACTIONS(1519), + [aux_sym_expr_binary_token5] = ACTIONS(1519), + [aux_sym_expr_binary_token6] = ACTIONS(1519), + [aux_sym_expr_binary_token7] = ACTIONS(1519), + [aux_sym_expr_binary_token8] = ACTIONS(1519), + [aux_sym_expr_binary_token9] = ACTIONS(1519), + [aux_sym_expr_binary_token10] = ACTIONS(1519), + [aux_sym_expr_binary_token11] = ACTIONS(1519), + [aux_sym_expr_binary_token12] = ACTIONS(1519), + [aux_sym_expr_binary_token13] = ACTIONS(1519), + [aux_sym_expr_binary_token14] = ACTIONS(1519), + [aux_sym_expr_binary_token15] = ACTIONS(1519), + [aux_sym_expr_binary_token16] = ACTIONS(1519), + [aux_sym_expr_binary_token17] = ACTIONS(1519), + [aux_sym_expr_binary_token18] = ACTIONS(1519), + [aux_sym_expr_binary_token19] = ACTIONS(1519), + [aux_sym_expr_binary_token20] = ACTIONS(1519), + [aux_sym_expr_binary_token21] = ACTIONS(1519), + [aux_sym_expr_binary_token22] = ACTIONS(1519), + [aux_sym_expr_binary_token23] = ACTIONS(1519), + [aux_sym_expr_binary_token24] = ACTIONS(1519), + [aux_sym_expr_binary_token25] = ACTIONS(1519), + [aux_sym_expr_binary_token26] = ACTIONS(1519), + [aux_sym_expr_binary_token27] = ACTIONS(1519), + [aux_sym_expr_binary_token28] = ACTIONS(1519), + [anon_sym_DOT_DOT2] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), + [aux_sym__immediate_decimal_token1] = ACTIONS(4642), + [aux_sym__immediate_decimal_token2] = ACTIONS(4644), + [sym_filesize_unit] = ACTIONS(1519), + [sym_duration_unit] = ACTIONS(1519), + [anon_sym_err_GT] = ACTIONS(1517), + [anon_sym_out_GT] = ACTIONS(1517), + [anon_sym_e_GT] = ACTIONS(1517), + [anon_sym_o_GT] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT] = ACTIONS(1517), + [anon_sym_err_GT_GT] = ACTIONS(1519), + [anon_sym_out_GT_GT] = ACTIONS(1519), + [anon_sym_e_GT_GT] = ACTIONS(1519), + [anon_sym_o_GT_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), + [aux_sym_unquoted_token2] = ACTIONS(1517), [anon_sym_POUND] = ACTIONS(247), }, [1294] = { - [sym__expr_parenthesized_immediate] = STATE(1982), - [sym__immediate_decimal] = STATE(1983), - [sym_val_variable] = STATE(1982), [sym_comment] = STATE(1294), - [ts_builtin_sym_end] = ACTIONS(1441), - [anon_sym_true] = ACTIONS(1441), - [anon_sym_false] = ACTIONS(1441), - [anon_sym_null] = ACTIONS(1441), - [aux_sym_cmd_identifier_token38] = ACTIONS(1441), - [aux_sym_cmd_identifier_token39] = ACTIONS(1441), - [aux_sym_cmd_identifier_token40] = ACTIONS(1441), - [sym__newline] = ACTIONS(1441), - [anon_sym_SEMI] = ACTIONS(1441), - [anon_sym_PIPE] = ACTIONS(1441), - [anon_sym_err_GT_PIPE] = ACTIONS(1441), - [anon_sym_out_GT_PIPE] = ACTIONS(1441), - [anon_sym_e_GT_PIPE] = ACTIONS(1441), - [anon_sym_o_GT_PIPE] = ACTIONS(1441), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1441), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1441), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1441), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_DOLLAR] = ACTIONS(4124), - [anon_sym_DASH_DASH] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1431), - [aux_sym_ctrl_match_token1] = ACTIONS(1441), - [anon_sym_DOT_DOT] = ACTIONS(1431), - [anon_sym_LPAREN2] = ACTIONS(4126), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1441), - [anon_sym_DOT_DOT_LT] = ACTIONS(1441), - [aux_sym__immediate_decimal_token1] = ACTIONS(4210), - [aux_sym__immediate_decimal_token3] = ACTIONS(4212), - [aux_sym__immediate_decimal_token4] = ACTIONS(4214), - [aux_sym__immediate_decimal_token5] = ACTIONS(4216), - [aux_sym__val_number_decimal_token1] = ACTIONS(1431), - [aux_sym__val_number_decimal_token2] = ACTIONS(1431), - [aux_sym__val_number_decimal_token3] = ACTIONS(1431), - [aux_sym__val_number_decimal_token4] = ACTIONS(1431), - [aux_sym__val_number_token1] = ACTIONS(1441), - [aux_sym__val_number_token2] = ACTIONS(1441), - [aux_sym__val_number_token3] = ACTIONS(1441), - [anon_sym_0b] = ACTIONS(1431), - [anon_sym_0o] = ACTIONS(1431), - [anon_sym_0x] = ACTIONS(1431), - [sym_val_date] = ACTIONS(1441), - [anon_sym_DQUOTE] = ACTIONS(1441), - [sym__str_single_quotes] = ACTIONS(1441), - [sym__str_back_ticks] = ACTIONS(1441), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1441), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1441), - [anon_sym_err_GT] = ACTIONS(1431), - [anon_sym_out_GT] = ACTIONS(1431), - [anon_sym_e_GT] = ACTIONS(1431), - [anon_sym_o_GT] = ACTIONS(1431), - [anon_sym_err_PLUSout_GT] = ACTIONS(1431), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1431), - [anon_sym_o_PLUSe_GT] = ACTIONS(1431), - [anon_sym_e_PLUSo_GT] = ACTIONS(1431), - [anon_sym_err_GT_GT] = ACTIONS(1441), - [anon_sym_out_GT_GT] = ACTIONS(1441), - [anon_sym_e_GT_GT] = ACTIONS(1441), - [anon_sym_o_GT_GT] = ACTIONS(1441), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1441), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1441), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1441), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1441), - [aux_sym_unquoted_token1] = ACTIONS(1431), + [aux_sym_cmd_identifier_token41] = ACTIONS(1517), + [sym__newline] = ACTIONS(1517), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1519), + [anon_sym_err_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_GT_PIPE] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), + [anon_sym_RPAREN] = ACTIONS(1519), + [aux_sym_ctrl_match_token1] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1519), + [anon_sym_DOT_DOT2] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), + [aux_sym__immediate_decimal_token1] = ACTIONS(4646), + [aux_sym__immediate_decimal_token2] = ACTIONS(4648), + [sym_filesize_unit] = ACTIONS(1519), + [sym_duration_unit] = ACTIONS(1519), + [anon_sym_err_GT] = ACTIONS(1517), + [anon_sym_out_GT] = ACTIONS(1517), + [anon_sym_e_GT] = ACTIONS(1517), + [anon_sym_o_GT] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT] = ACTIONS(1517), + [anon_sym_err_GT_GT] = ACTIONS(1519), + [anon_sym_out_GT_GT] = ACTIONS(1519), + [anon_sym_e_GT_GT] = ACTIONS(1519), + [anon_sym_o_GT_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), [anon_sym_POUND] = ACTIONS(247), }, [1295] = { - [sym__val_range] = STATE(7865), - [sym__value] = STATE(6238), - [sym_val_nothing] = STATE(5312), - [sym_val_bool] = STATE(6000), - [sym_val_variable] = STATE(5312), - [sym_val_number] = STATE(5312), - [sym__val_number_decimal] = STATE(5498), - [sym__val_number] = STATE(3713), - [sym_val_duration] = STATE(5312), - [sym_val_filesize] = STATE(5312), - [sym_val_binary] = STATE(5312), - [sym_val_string] = STATE(5312), - [sym__str_double_quotes] = STATE(2802), - [sym_val_interpolated] = STATE(5312), - [sym__inter_single_quotes] = STATE(5273), - [sym__inter_double_quotes] = STATE(5275), - [sym_val_list] = STATE(5312), - [sym_val_record] = STATE(5312), - [sym_val_table] = STATE(5312), - [sym_val_closure] = STATE(5312), - [sym_unquoted] = STATE(6265), - [sym__unquoted_anonymous_prefix] = STATE(7927), [sym_comment] = STATE(1295), - [anon_sym_true] = ACTIONS(4218), - [anon_sym_false] = ACTIONS(4218), - [anon_sym_null] = ACTIONS(4220), - [aux_sym_cmd_identifier_token38] = ACTIONS(4222), - [aux_sym_cmd_identifier_token39] = ACTIONS(4222), - [aux_sym_cmd_identifier_token40] = ACTIONS(4222), - [anon_sym_LBRACK] = ACTIONS(4224), - [anon_sym_LPAREN] = ACTIONS(4226), - [anon_sym_DOLLAR] = ACTIONS(4228), - [aux_sym_ctrl_match_token1] = ACTIONS(4230), - [anon_sym_DOT_DOT] = ACTIONS(4232), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4234), - [anon_sym_DOT_DOT_LT] = ACTIONS(4234), - [aux_sym__val_number_decimal_token1] = ACTIONS(4236), - [aux_sym__val_number_decimal_token2] = ACTIONS(4238), - [aux_sym__val_number_decimal_token3] = ACTIONS(4240), - [aux_sym__val_number_decimal_token4] = ACTIONS(4242), - [aux_sym__val_number_token1] = ACTIONS(3519), - [aux_sym__val_number_token2] = ACTIONS(3519), - [aux_sym__val_number_token3] = ACTIONS(3519), - [anon_sym_0b] = ACTIONS(3699), - [anon_sym_0o] = ACTIONS(3701), - [anon_sym_0x] = ACTIONS(3701), - [sym_val_date] = ACTIONS(4244), - [anon_sym_DQUOTE] = ACTIONS(3527), - [sym__str_single_quotes] = ACTIONS(3529), - [sym__str_back_ticks] = ACTIONS(3529), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(4246), + [ts_builtin_sym_end] = ACTIONS(1036), + [anon_sym_true] = ACTIONS(1036), + [anon_sym_false] = ACTIONS(1036), + [anon_sym_null] = ACTIONS(1036), + [aux_sym_cmd_identifier_token38] = ACTIONS(1036), + [aux_sym_cmd_identifier_token39] = ACTIONS(1036), + [aux_sym_cmd_identifier_token40] = ACTIONS(1036), + [sym__newline] = ACTIONS(1036), + [anon_sym_SEMI] = ACTIONS(1036), + [anon_sym_PIPE] = ACTIONS(1036), + [anon_sym_err_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_GT_PIPE] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LPAREN] = ACTIONS(1036), + [anon_sym_DOLLAR] = ACTIONS(1034), + [anon_sym_DASH_DASH] = ACTIONS(1036), + [anon_sym_DASH] = ACTIONS(1034), + [aux_sym_ctrl_match_token1] = ACTIONS(1036), + [anon_sym_DOT_DOT] = ACTIONS(1034), + [anon_sym_QMARK2] = ACTIONS(4650), + [anon_sym_DOT_DOT2] = ACTIONS(1034), + [anon_sym_DOT] = ACTIONS(1034), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1034), + [anon_sym_DOT_DOT_LT] = ACTIONS(1034), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1036), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1036), + [aux_sym__val_number_decimal_token1] = ACTIONS(1034), + [aux_sym__val_number_decimal_token2] = ACTIONS(1036), + [aux_sym__val_number_decimal_token3] = ACTIONS(1036), + [aux_sym__val_number_decimal_token4] = ACTIONS(1036), + [aux_sym__val_number_token1] = ACTIONS(1036), + [aux_sym__val_number_token2] = ACTIONS(1036), + [aux_sym__val_number_token3] = ACTIONS(1036), + [anon_sym_0b] = ACTIONS(1034), + [anon_sym_0o] = ACTIONS(1034), + [anon_sym_0x] = ACTIONS(1034), + [sym_val_date] = ACTIONS(1036), + [anon_sym_DQUOTE] = ACTIONS(1036), + [sym__str_single_quotes] = ACTIONS(1036), + [sym__str_back_ticks] = ACTIONS(1036), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1036), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1036), + [anon_sym_err_GT] = ACTIONS(1034), + [anon_sym_out_GT] = ACTIONS(1034), + [anon_sym_e_GT] = ACTIONS(1034), + [anon_sym_o_GT] = ACTIONS(1034), + [anon_sym_err_PLUSout_GT] = ACTIONS(1034), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), + [anon_sym_o_PLUSe_GT] = ACTIONS(1034), + [anon_sym_e_PLUSo_GT] = ACTIONS(1034), + [anon_sym_err_GT_GT] = ACTIONS(1036), + [anon_sym_out_GT_GT] = ACTIONS(1036), + [anon_sym_e_GT_GT] = ACTIONS(1036), + [anon_sym_o_GT_GT] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), + [aux_sym_unquoted_token1] = ACTIONS(1034), [anon_sym_POUND] = ACTIONS(247), }, [1296] = { - [sym__val_range] = STATE(8049), - [sym__value] = STATE(2892), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3916), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(5842), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(2158), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2894), - [sym__unquoted_anonymous_prefix] = STATE(7765), [sym_comment] = STATE(1296), - [anon_sym_true] = ACTIONS(3213), - [anon_sym_false] = ACTIONS(3213), - [anon_sym_null] = ACTIONS(3215), - [aux_sym_cmd_identifier_token38] = ACTIONS(3217), - [aux_sym_cmd_identifier_token39] = ACTIONS(3217), - [aux_sym_cmd_identifier_token40] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(4248), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_DOLLAR] = ACTIONS(4252), - [aux_sym_ctrl_match_token1] = ACTIONS(4254), - [anon_sym_DOT_DOT] = ACTIONS(4256), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4258), - [anon_sym_DOT_DOT_LT] = ACTIONS(4258), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(4260), - [sym__str_single_quotes] = ACTIONS(4262), - [sym__str_back_ticks] = ACTIONS(4262), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3241), + [ts_builtin_sym_end] = ACTIONS(1030), + [anon_sym_true] = ACTIONS(1030), + [anon_sym_false] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1030), + [aux_sym_cmd_identifier_token38] = ACTIONS(1030), + [aux_sym_cmd_identifier_token39] = ACTIONS(1030), + [aux_sym_cmd_identifier_token40] = ACTIONS(1030), + [sym__newline] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_err_GT_PIPE] = ACTIONS(1030), + [anon_sym_out_GT_PIPE] = ACTIONS(1030), + [anon_sym_e_GT_PIPE] = ACTIONS(1030), + [anon_sym_o_GT_PIPE] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1030), + [anon_sym_LBRACK] = ACTIONS(1030), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_DOLLAR] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1028), + [aux_sym_ctrl_match_token1] = ACTIONS(1030), + [anon_sym_DOT_DOT] = ACTIONS(1028), + [anon_sym_QMARK2] = ACTIONS(4652), + [anon_sym_DOT_DOT2] = ACTIONS(1028), + [anon_sym_DOT] = ACTIONS(1028), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1028), + [anon_sym_DOT_DOT_LT] = ACTIONS(1028), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1030), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1028), + [aux_sym__val_number_decimal_token2] = ACTIONS(1030), + [aux_sym__val_number_decimal_token3] = ACTIONS(1030), + [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_token1] = ACTIONS(1030), + [aux_sym__val_number_token2] = ACTIONS(1030), + [aux_sym__val_number_token3] = ACTIONS(1030), + [anon_sym_0b] = ACTIONS(1028), + [anon_sym_0o] = ACTIONS(1028), + [anon_sym_0x] = ACTIONS(1028), + [sym_val_date] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym__str_single_quotes] = ACTIONS(1030), + [sym__str_back_ticks] = ACTIONS(1030), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1030), + [anon_sym_err_GT] = ACTIONS(1028), + [anon_sym_out_GT] = ACTIONS(1028), + [anon_sym_e_GT] = ACTIONS(1028), + [anon_sym_o_GT] = ACTIONS(1028), + [anon_sym_err_PLUSout_GT] = ACTIONS(1028), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1028), + [anon_sym_o_PLUSe_GT] = ACTIONS(1028), + [anon_sym_e_PLUSo_GT] = ACTIONS(1028), + [anon_sym_err_GT_GT] = ACTIONS(1030), + [anon_sym_out_GT_GT] = ACTIONS(1030), + [anon_sym_e_GT_GT] = ACTIONS(1030), + [anon_sym_o_GT_GT] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1030), + [aux_sym_unquoted_token1] = ACTIONS(1028), [anon_sym_POUND] = ACTIONS(247), }, [1297] = { - [sym_path] = STATE(1426), + [sym_cell_path] = STATE(1573), + [sym_path] = STATE(1532), [sym_comment] = STATE(1297), - [aux_sym_cell_path_repeat1] = STATE(1325), - [ts_builtin_sym_end] = ACTIONS(953), - [anon_sym_EQ] = ACTIONS(951), - [anon_sym_PLUS_EQ] = ACTIONS(953), - [anon_sym_DASH_EQ] = ACTIONS(953), - [anon_sym_STAR_EQ] = ACTIONS(953), - [anon_sym_SLASH_EQ] = ACTIONS(953), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(953), - [sym__newline] = ACTIONS(953), - [anon_sym_SEMI] = ACTIONS(953), - [anon_sym_PIPE] = ACTIONS(953), - [anon_sym_err_GT_PIPE] = ACTIONS(953), - [anon_sym_out_GT_PIPE] = ACTIONS(953), - [anon_sym_e_GT_PIPE] = ACTIONS(953), - [anon_sym_o_GT_PIPE] = ACTIONS(953), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(953), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(953), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(953), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(953), - [aux_sym_expr_binary_token1] = ACTIONS(953), - [aux_sym_expr_binary_token2] = ACTIONS(953), - [aux_sym_expr_binary_token3] = ACTIONS(953), - [aux_sym_expr_binary_token4] = ACTIONS(953), - [aux_sym_expr_binary_token5] = ACTIONS(953), - [aux_sym_expr_binary_token6] = ACTIONS(953), - [aux_sym_expr_binary_token7] = ACTIONS(953), - [aux_sym_expr_binary_token8] = ACTIONS(953), - [aux_sym_expr_binary_token9] = ACTIONS(953), - [aux_sym_expr_binary_token10] = ACTIONS(953), - [aux_sym_expr_binary_token11] = ACTIONS(953), - [aux_sym_expr_binary_token12] = ACTIONS(953), - [aux_sym_expr_binary_token13] = ACTIONS(953), - [aux_sym_expr_binary_token14] = ACTIONS(953), - [aux_sym_expr_binary_token15] = ACTIONS(953), - [aux_sym_expr_binary_token16] = ACTIONS(953), - [aux_sym_expr_binary_token17] = ACTIONS(953), - [aux_sym_expr_binary_token18] = ACTIONS(953), - [aux_sym_expr_binary_token19] = ACTIONS(953), - [aux_sym_expr_binary_token20] = ACTIONS(953), - [aux_sym_expr_binary_token21] = ACTIONS(953), - [aux_sym_expr_binary_token22] = ACTIONS(953), - [aux_sym_expr_binary_token23] = ACTIONS(953), - [aux_sym_expr_binary_token24] = ACTIONS(953), - [aux_sym_expr_binary_token25] = ACTIONS(953), - [aux_sym_expr_binary_token26] = ACTIONS(953), - [aux_sym_expr_binary_token27] = ACTIONS(953), - [aux_sym_expr_binary_token28] = ACTIONS(953), - [anon_sym_DOT_DOT2] = ACTIONS(951), - [anon_sym_DOT] = ACTIONS(4138), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(953), - [anon_sym_DOT_DOT_LT2] = ACTIONS(953), - [anon_sym_err_GT] = ACTIONS(951), - [anon_sym_out_GT] = ACTIONS(951), - [anon_sym_e_GT] = ACTIONS(951), - [anon_sym_o_GT] = ACTIONS(951), - [anon_sym_err_PLUSout_GT] = ACTIONS(951), - [anon_sym_out_PLUSerr_GT] = ACTIONS(951), - [anon_sym_o_PLUSe_GT] = ACTIONS(951), - [anon_sym_e_PLUSo_GT] = ACTIONS(951), - [anon_sym_err_GT_GT] = ACTIONS(953), - [anon_sym_out_GT_GT] = ACTIONS(953), - [anon_sym_e_GT_GT] = ACTIONS(953), - [anon_sym_o_GT_GT] = ACTIONS(953), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(953), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(953), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(953), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(953), + [aux_sym_cell_path_repeat1] = STATE(1374), + [anon_sym_true] = ACTIONS(1881), + [anon_sym_false] = ACTIONS(1881), + [anon_sym_null] = ACTIONS(1881), + [aux_sym_cmd_identifier_token38] = ACTIONS(1881), + [aux_sym_cmd_identifier_token39] = ACTIONS(1881), + [aux_sym_cmd_identifier_token40] = ACTIONS(1881), + [sym__newline] = ACTIONS(1881), + [anon_sym_SEMI] = ACTIONS(1881), + [anon_sym_PIPE] = ACTIONS(1881), + [anon_sym_err_GT_PIPE] = ACTIONS(1881), + [anon_sym_out_GT_PIPE] = ACTIONS(1881), + [anon_sym_e_GT_PIPE] = ACTIONS(1881), + [anon_sym_o_GT_PIPE] = ACTIONS(1881), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1881), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1881), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1881), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1881), + [anon_sym_LBRACK] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_RPAREN] = ACTIONS(1881), + [anon_sym_DOLLAR] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1879), + [aux_sym_ctrl_match_token1] = ACTIONS(1881), + [anon_sym_RBRACE] = ACTIONS(1881), + [anon_sym_DOT_DOT] = ACTIONS(1879), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1881), + [anon_sym_DOT_DOT_LT] = ACTIONS(1881), + [aux_sym__val_number_decimal_token1] = ACTIONS(1879), + [aux_sym__val_number_decimal_token2] = ACTIONS(1881), + [aux_sym__val_number_decimal_token3] = ACTIONS(1881), + [aux_sym__val_number_decimal_token4] = ACTIONS(1881), + [aux_sym__val_number_token1] = ACTIONS(1881), + [aux_sym__val_number_token2] = ACTIONS(1881), + [aux_sym__val_number_token3] = ACTIONS(1881), + [anon_sym_0b] = ACTIONS(1879), + [anon_sym_0o] = ACTIONS(1879), + [anon_sym_0x] = ACTIONS(1879), + [sym_val_date] = ACTIONS(1881), + [anon_sym_DQUOTE] = ACTIONS(1881), + [sym__str_single_quotes] = ACTIONS(1881), + [sym__str_back_ticks] = ACTIONS(1881), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1881), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1881), + [anon_sym_err_GT] = ACTIONS(1879), + [anon_sym_out_GT] = ACTIONS(1879), + [anon_sym_e_GT] = ACTIONS(1879), + [anon_sym_o_GT] = ACTIONS(1879), + [anon_sym_err_PLUSout_GT] = ACTIONS(1879), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1879), + [anon_sym_o_PLUSe_GT] = ACTIONS(1879), + [anon_sym_e_PLUSo_GT] = ACTIONS(1879), + [anon_sym_err_GT_GT] = ACTIONS(1881), + [anon_sym_out_GT_GT] = ACTIONS(1881), + [anon_sym_e_GT_GT] = ACTIONS(1881), + [anon_sym_o_GT_GT] = ACTIONS(1881), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1881), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1881), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1881), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1881), + [aux_sym_unquoted_token1] = ACTIONS(1879), [anon_sym_POUND] = ACTIONS(247), }, [1298] = { - [sym__val_range] = STATE(7865), - [sym__value] = STATE(6291), - [sym_val_nothing] = STATE(5312), - [sym_val_bool] = STATE(7285), - [sym_val_variable] = STATE(5312), - [sym_val_number] = STATE(5312), - [sym__val_number_decimal] = STATE(5793), - [sym__val_number] = STATE(5409), - [sym_val_duration] = STATE(5312), - [sym_val_filesize] = STATE(5312), - [sym_val_binary] = STATE(5312), - [sym_val_string] = STATE(5312), - [sym__str_double_quotes] = STATE(4863), - [sym_val_interpolated] = STATE(5312), - [sym__inter_single_quotes] = STATE(5273), - [sym__inter_double_quotes] = STATE(5275), - [sym_val_list] = STATE(5312), - [sym_val_record] = STATE(5312), - [sym_val_table] = STATE(5312), - [sym_val_closure] = STATE(5312), - [sym_unquoted] = STATE(6292), - [sym__unquoted_anonymous_prefix] = STATE(7927), [sym_comment] = STATE(1298), - [anon_sym_true] = ACTIONS(4264), - [anon_sym_false] = ACTIONS(4264), - [anon_sym_null] = ACTIONS(4266), - [aux_sym_cmd_identifier_token38] = ACTIONS(4268), - [aux_sym_cmd_identifier_token39] = ACTIONS(4268), - [aux_sym_cmd_identifier_token40] = ACTIONS(4268), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4226), - [anon_sym_DOLLAR] = ACTIONS(4272), - [aux_sym_ctrl_match_token1] = ACTIONS(4274), - [anon_sym_DOT_DOT] = ACTIONS(4232), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4234), - [anon_sym_DOT_DOT_LT] = ACTIONS(4234), - [aux_sym__val_number_decimal_token1] = ACTIONS(4276), - [aux_sym__val_number_decimal_token2] = ACTIONS(4278), - [aux_sym__val_number_decimal_token3] = ACTIONS(4280), - [aux_sym__val_number_decimal_token4] = ACTIONS(4282), - [aux_sym__val_number_token1] = ACTIONS(3697), - [aux_sym__val_number_token2] = ACTIONS(3697), - [aux_sym__val_number_token3] = ACTIONS(3697), - [anon_sym_0b] = ACTIONS(3699), - [anon_sym_0o] = ACTIONS(3701), - [anon_sym_0x] = ACTIONS(3701), - [sym_val_date] = ACTIONS(4284), - [anon_sym_DQUOTE] = ACTIONS(4286), - [sym__str_single_quotes] = ACTIONS(4288), - [sym__str_back_ticks] = ACTIONS(4288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(4246), + [aux_sym_cmd_identifier_token41] = ACTIONS(1497), + [sym__newline] = ACTIONS(1497), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_RPAREN] = ACTIONS(1499), + [aux_sym_ctrl_match_token1] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1497), + [anon_sym_DOT] = ACTIONS(4654), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), + [aux_sym__immediate_decimal_token2] = ACTIONS(4656), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1499), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(247), }, [1299] = { [sym_comment] = STATE(1299), - [anon_sym_EQ] = ACTIONS(994), - [anon_sym_PLUS_EQ] = ACTIONS(996), - [anon_sym_DASH_EQ] = ACTIONS(996), - [anon_sym_STAR_EQ] = ACTIONS(996), - [anon_sym_SLASH_EQ] = ACTIONS(996), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(996), - [sym__newline] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [aux_sym_ctrl_match_token1] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [aux_sym_expr_binary_token1] = ACTIONS(996), - [aux_sym_expr_binary_token2] = ACTIONS(996), - [aux_sym_expr_binary_token3] = ACTIONS(996), - [aux_sym_expr_binary_token4] = ACTIONS(996), - [aux_sym_expr_binary_token5] = ACTIONS(996), - [aux_sym_expr_binary_token6] = ACTIONS(996), - [aux_sym_expr_binary_token7] = ACTIONS(996), - [aux_sym_expr_binary_token8] = ACTIONS(996), - [aux_sym_expr_binary_token9] = ACTIONS(996), - [aux_sym_expr_binary_token10] = ACTIONS(996), - [aux_sym_expr_binary_token11] = ACTIONS(996), - [aux_sym_expr_binary_token12] = ACTIONS(996), - [aux_sym_expr_binary_token13] = ACTIONS(996), - [aux_sym_expr_binary_token14] = ACTIONS(996), - [aux_sym_expr_binary_token15] = ACTIONS(996), - [aux_sym_expr_binary_token16] = ACTIONS(996), - [aux_sym_expr_binary_token17] = ACTIONS(996), - [aux_sym_expr_binary_token18] = ACTIONS(996), - [aux_sym_expr_binary_token19] = ACTIONS(996), - [aux_sym_expr_binary_token20] = ACTIONS(996), - [aux_sym_expr_binary_token21] = ACTIONS(996), - [aux_sym_expr_binary_token22] = ACTIONS(996), - [aux_sym_expr_binary_token23] = ACTIONS(996), - [aux_sym_expr_binary_token24] = ACTIONS(996), - [aux_sym_expr_binary_token25] = ACTIONS(996), - [aux_sym_expr_binary_token26] = ACTIONS(996), - [aux_sym_expr_binary_token27] = ACTIONS(996), - [aux_sym_expr_binary_token28] = ACTIONS(996), - [anon_sym_DOT_DOT2] = ACTIONS(994), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), - [anon_sym_DOT_DOT_LT2] = ACTIONS(996), - [aux_sym_record_entry_token1] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(994), - [anon_sym_out_GT] = ACTIONS(994), - [anon_sym_e_GT] = ACTIONS(994), - [anon_sym_o_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT] = ACTIONS(994), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [ts_builtin_sym_end] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [aux_sym_cmd_identifier_token38] = ACTIONS(1645), + [aux_sym_cmd_identifier_token39] = ACTIONS(1645), + [aux_sym_cmd_identifier_token40] = ACTIONS(1645), + [sym__newline] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_err_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_GT_PIPE] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), + [anon_sym_LBRACK] = ACTIONS(1645), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_DASH] = ACTIONS(1643), + [aux_sym_ctrl_match_token1] = ACTIONS(1645), + [anon_sym_DOT_DOT] = ACTIONS(1643), + [anon_sym_LPAREN2] = ACTIONS(1645), + [anon_sym_DOT_DOT2] = ACTIONS(1643), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), + [anon_sym_DOT_DOT_LT] = ACTIONS(1643), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1645), + [aux_sym__val_number_decimal_token3] = ACTIONS(1645), + [aux_sym__val_number_decimal_token4] = ACTIONS(1645), + [aux_sym__val_number_token1] = ACTIONS(1645), + [aux_sym__val_number_token2] = ACTIONS(1645), + [aux_sym__val_number_token3] = ACTIONS(1645), + [anon_sym_0b] = ACTIONS(1643), + [anon_sym_0o] = ACTIONS(1643), + [anon_sym_0x] = ACTIONS(1643), + [sym_val_date] = ACTIONS(1645), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym__str_single_quotes] = ACTIONS(1645), + [sym__str_back_ticks] = ACTIONS(1645), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1645), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1645), + [anon_sym_err_GT] = ACTIONS(1643), + [anon_sym_out_GT] = ACTIONS(1643), + [anon_sym_e_GT] = ACTIONS(1643), + [anon_sym_o_GT] = ACTIONS(1643), + [anon_sym_err_PLUSout_GT] = ACTIONS(1643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), + [anon_sym_o_PLUSe_GT] = ACTIONS(1643), + [anon_sym_e_PLUSo_GT] = ACTIONS(1643), + [anon_sym_err_GT_GT] = ACTIONS(1645), + [anon_sym_out_GT_GT] = ACTIONS(1645), + [anon_sym_e_GT_GT] = ACTIONS(1645), + [anon_sym_o_GT_GT] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [aux_sym_unquoted_token1] = ACTIONS(1643), + [aux_sym_unquoted_token2] = ACTIONS(1643), [anon_sym_POUND] = ACTIONS(247), }, [1300] = { - [sym__val_range] = STATE(7865), - [sym__value] = STATE(6272), - [sym_val_nothing] = STATE(5312), - [sym_val_bool] = STATE(6000), - [sym_val_variable] = STATE(5312), - [sym_val_number] = STATE(5312), - [sym__val_number_decimal] = STATE(5498), - [sym__val_number] = STATE(3713), - [sym_val_duration] = STATE(5312), - [sym_val_filesize] = STATE(5312), - [sym_val_binary] = STATE(5312), - [sym_val_string] = STATE(5312), - [sym__str_double_quotes] = STATE(2802), - [sym_val_interpolated] = STATE(5312), - [sym__inter_single_quotes] = STATE(5273), - [sym__inter_double_quotes] = STATE(5275), - [sym_val_list] = STATE(5312), - [sym_val_record] = STATE(5312), - [sym_val_table] = STATE(5312), - [sym_val_closure] = STATE(5312), - [sym_unquoted] = STATE(6274), - [sym__unquoted_anonymous_prefix] = STATE(7927), [sym_comment] = STATE(1300), - [anon_sym_true] = ACTIONS(4218), - [anon_sym_false] = ACTIONS(4218), - [anon_sym_null] = ACTIONS(4220), - [aux_sym_cmd_identifier_token38] = ACTIONS(4222), - [aux_sym_cmd_identifier_token39] = ACTIONS(4222), - [aux_sym_cmd_identifier_token40] = ACTIONS(4222), - [anon_sym_LBRACK] = ACTIONS(4224), - [anon_sym_LPAREN] = ACTIONS(4226), - [anon_sym_DOLLAR] = ACTIONS(4228), - [aux_sym_ctrl_match_token1] = ACTIONS(4230), - [anon_sym_DOT_DOT] = ACTIONS(4232), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4234), - [anon_sym_DOT_DOT_LT] = ACTIONS(4234), - [aux_sym__val_number_decimal_token1] = ACTIONS(4236), - [aux_sym__val_number_decimal_token2] = ACTIONS(4238), - [aux_sym__val_number_decimal_token3] = ACTIONS(4240), - [aux_sym__val_number_decimal_token4] = ACTIONS(4242), - [aux_sym__val_number_token1] = ACTIONS(3519), - [aux_sym__val_number_token2] = ACTIONS(3519), - [aux_sym__val_number_token3] = ACTIONS(3519), - [anon_sym_0b] = ACTIONS(3699), - [anon_sym_0o] = ACTIONS(3701), - [anon_sym_0x] = ACTIONS(3701), - [sym_val_date] = ACTIONS(4244), - [anon_sym_DQUOTE] = ACTIONS(3527), - [sym__str_single_quotes] = ACTIONS(3529), - [sym__str_back_ticks] = ACTIONS(3529), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(4246), + [sym__newline] = ACTIONS(1497), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_RPAREN] = ACTIONS(1499), + [anon_sym_LPAREN2] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1497), + [anon_sym_DOT] = ACTIONS(4658), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), + [aux_sym__immediate_decimal_token2] = ACTIONS(4660), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1499), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), + [aux_sym_unquoted_token2] = ACTIONS(1497), [anon_sym_POUND] = ACTIONS(247), }, [1301] = { [sym_comment] = STATE(1301), - [anon_sym_true] = ACTIONS(1571), - [anon_sym_false] = ACTIONS(1571), - [anon_sym_null] = ACTIONS(1571), - [aux_sym_cmd_identifier_token38] = ACTIONS(1571), - [aux_sym_cmd_identifier_token39] = ACTIONS(1571), - [aux_sym_cmd_identifier_token40] = ACTIONS(1571), - [sym__newline] = ACTIONS(1571), - [anon_sym_SEMI] = ACTIONS(1571), - [anon_sym_PIPE] = ACTIONS(1571), - [anon_sym_err_GT_PIPE] = ACTIONS(1571), - [anon_sym_out_GT_PIPE] = ACTIONS(1571), - [anon_sym_e_GT_PIPE] = ACTIONS(1571), - [anon_sym_o_GT_PIPE] = ACTIONS(1571), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1571), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1571), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1571), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1571), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_RPAREN] = ACTIONS(1571), - [anon_sym_DOLLAR] = ACTIONS(1569), - [anon_sym_DASH_DASH] = ACTIONS(1571), - [anon_sym_DASH] = ACTIONS(1569), - [aux_sym_ctrl_match_token1] = ACTIONS(1571), - [anon_sym_RBRACE] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1569), - [anon_sym_LPAREN2] = ACTIONS(1571), - [anon_sym_DOT_DOT2] = ACTIONS(1569), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1569), - [anon_sym_DOT_DOT_LT] = ACTIONS(1569), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1571), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1571), - [aux_sym__immediate_decimal_token1] = ACTIONS(4290), - [aux_sym__immediate_decimal_token2] = ACTIONS(4292), - [aux_sym__val_number_decimal_token1] = ACTIONS(1569), - [aux_sym__val_number_decimal_token2] = ACTIONS(1571), - [aux_sym__val_number_decimal_token3] = ACTIONS(1571), - [aux_sym__val_number_decimal_token4] = ACTIONS(1571), - [aux_sym__val_number_token1] = ACTIONS(1571), - [aux_sym__val_number_token2] = ACTIONS(1571), - [aux_sym__val_number_token3] = ACTIONS(1571), - [anon_sym_0b] = ACTIONS(1569), - [anon_sym_0o] = ACTIONS(1569), - [anon_sym_0x] = ACTIONS(1569), - [sym_val_date] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [sym__str_single_quotes] = ACTIONS(1571), - [sym__str_back_ticks] = ACTIONS(1571), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1571), - [anon_sym_err_GT] = ACTIONS(1569), - [anon_sym_out_GT] = ACTIONS(1569), - [anon_sym_e_GT] = ACTIONS(1569), - [anon_sym_o_GT] = ACTIONS(1569), - [anon_sym_err_PLUSout_GT] = ACTIONS(1569), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1569), - [anon_sym_o_PLUSe_GT] = ACTIONS(1569), - [anon_sym_e_PLUSo_GT] = ACTIONS(1569), - [anon_sym_err_GT_GT] = ACTIONS(1571), - [anon_sym_out_GT_GT] = ACTIONS(1571), - [anon_sym_e_GT_GT] = ACTIONS(1571), - [anon_sym_o_GT_GT] = ACTIONS(1571), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1571), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1571), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1571), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1571), - [aux_sym_unquoted_token1] = ACTIONS(1569), - [aux_sym_unquoted_token2] = ACTIONS(1569), + [ts_builtin_sym_end] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [aux_sym_cmd_identifier_token38] = ACTIONS(1633), + [aux_sym_cmd_identifier_token39] = ACTIONS(1633), + [aux_sym_cmd_identifier_token40] = ACTIONS(1633), + [sym__newline] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1633), + [anon_sym_err_GT_PIPE] = ACTIONS(1633), + [anon_sym_out_GT_PIPE] = ACTIONS(1633), + [anon_sym_e_GT_PIPE] = ACTIONS(1633), + [anon_sym_o_GT_PIPE] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1633), + [anon_sym_LBRACK] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_DOLLAR] = ACTIONS(1631), + [anon_sym_DASH_DASH] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1631), + [aux_sym_ctrl_match_token1] = ACTIONS(1633), + [anon_sym_DOT_DOT] = ACTIONS(1631), + [anon_sym_LPAREN2] = ACTIONS(1633), + [anon_sym_DOT_DOT2] = ACTIONS(1631), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1631), + [anon_sym_DOT_DOT_LT] = ACTIONS(1631), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1633), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1633), + [aux_sym__val_number_decimal_token1] = ACTIONS(1631), + [aux_sym__val_number_decimal_token2] = ACTIONS(1633), + [aux_sym__val_number_decimal_token3] = ACTIONS(1633), + [aux_sym__val_number_decimal_token4] = ACTIONS(1633), + [aux_sym__val_number_token1] = ACTIONS(1633), + [aux_sym__val_number_token2] = ACTIONS(1633), + [aux_sym__val_number_token3] = ACTIONS(1633), + [anon_sym_0b] = ACTIONS(1631), + [anon_sym_0o] = ACTIONS(1631), + [anon_sym_0x] = ACTIONS(1631), + [sym_val_date] = ACTIONS(1633), + [anon_sym_DQUOTE] = ACTIONS(1633), + [sym__str_single_quotes] = ACTIONS(1633), + [sym__str_back_ticks] = ACTIONS(1633), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1633), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1633), + [anon_sym_err_GT] = ACTIONS(1631), + [anon_sym_out_GT] = ACTIONS(1631), + [anon_sym_e_GT] = ACTIONS(1631), + [anon_sym_o_GT] = ACTIONS(1631), + [anon_sym_err_PLUSout_GT] = ACTIONS(1631), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1631), + [anon_sym_o_PLUSe_GT] = ACTIONS(1631), + [anon_sym_e_PLUSo_GT] = ACTIONS(1631), + [anon_sym_err_GT_GT] = ACTIONS(1633), + [anon_sym_out_GT_GT] = ACTIONS(1633), + [anon_sym_e_GT_GT] = ACTIONS(1633), + [anon_sym_o_GT_GT] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1633), + [aux_sym_unquoted_token1] = ACTIONS(1631), + [aux_sym_unquoted_token2] = ACTIONS(1631), [anon_sym_POUND] = ACTIONS(247), }, [1302] = { [sym_comment] = STATE(1302), - [anon_sym_EQ] = ACTIONS(986), - [anon_sym_PLUS_EQ] = ACTIONS(988), - [anon_sym_DASH_EQ] = ACTIONS(988), - [anon_sym_STAR_EQ] = ACTIONS(988), - [anon_sym_SLASH_EQ] = ACTIONS(988), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(988), - [sym__newline] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_PIPE] = ACTIONS(988), - [anon_sym_err_GT_PIPE] = ACTIONS(988), - [anon_sym_out_GT_PIPE] = ACTIONS(988), - [anon_sym_e_GT_PIPE] = ACTIONS(988), - [anon_sym_o_GT_PIPE] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(988), - [aux_sym_ctrl_match_token1] = ACTIONS(988), - [anon_sym_RBRACE] = ACTIONS(988), - [aux_sym_expr_binary_token1] = ACTIONS(988), - [aux_sym_expr_binary_token2] = ACTIONS(988), - [aux_sym_expr_binary_token3] = ACTIONS(988), - [aux_sym_expr_binary_token4] = ACTIONS(988), - [aux_sym_expr_binary_token5] = ACTIONS(988), - [aux_sym_expr_binary_token6] = ACTIONS(988), - [aux_sym_expr_binary_token7] = ACTIONS(988), - [aux_sym_expr_binary_token8] = ACTIONS(988), - [aux_sym_expr_binary_token9] = ACTIONS(988), - [aux_sym_expr_binary_token10] = ACTIONS(988), - [aux_sym_expr_binary_token11] = ACTIONS(988), - [aux_sym_expr_binary_token12] = ACTIONS(988), - [aux_sym_expr_binary_token13] = ACTIONS(988), - [aux_sym_expr_binary_token14] = ACTIONS(988), - [aux_sym_expr_binary_token15] = ACTIONS(988), - [aux_sym_expr_binary_token16] = ACTIONS(988), - [aux_sym_expr_binary_token17] = ACTIONS(988), - [aux_sym_expr_binary_token18] = ACTIONS(988), - [aux_sym_expr_binary_token19] = ACTIONS(988), - [aux_sym_expr_binary_token20] = ACTIONS(988), - [aux_sym_expr_binary_token21] = ACTIONS(988), - [aux_sym_expr_binary_token22] = ACTIONS(988), - [aux_sym_expr_binary_token23] = ACTIONS(988), - [aux_sym_expr_binary_token24] = ACTIONS(988), - [aux_sym_expr_binary_token25] = ACTIONS(988), - [aux_sym_expr_binary_token26] = ACTIONS(988), - [aux_sym_expr_binary_token27] = ACTIONS(988), - [aux_sym_expr_binary_token28] = ACTIONS(988), - [anon_sym_DOT_DOT2] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(986), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), - [anon_sym_DOT_DOT_LT2] = ACTIONS(988), - [aux_sym_record_entry_token1] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(986), - [anon_sym_out_GT] = ACTIONS(986), - [anon_sym_e_GT] = ACTIONS(986), - [anon_sym_o_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT] = ACTIONS(986), - [anon_sym_err_GT_GT] = ACTIONS(988), - [anon_sym_out_GT_GT] = ACTIONS(988), - [anon_sym_e_GT_GT] = ACTIONS(988), - [anon_sym_o_GT_GT] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), + [sym__newline] = ACTIONS(1517), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1519), + [anon_sym_err_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_GT_PIPE] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), + [anon_sym_RPAREN] = ACTIONS(1519), + [anon_sym_LPAREN2] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1519), + [anon_sym_DOT_DOT2] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), + [aux_sym__immediate_decimal_token1] = ACTIONS(4662), + [aux_sym__immediate_decimal_token2] = ACTIONS(4664), + [sym_filesize_unit] = ACTIONS(1519), + [sym_duration_unit] = ACTIONS(1519), + [anon_sym_err_GT] = ACTIONS(1517), + [anon_sym_out_GT] = ACTIONS(1517), + [anon_sym_e_GT] = ACTIONS(1517), + [anon_sym_o_GT] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT] = ACTIONS(1517), + [anon_sym_err_GT_GT] = ACTIONS(1519), + [anon_sym_out_GT_GT] = ACTIONS(1519), + [anon_sym_e_GT_GT] = ACTIONS(1519), + [anon_sym_o_GT_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), + [aux_sym_unquoted_token2] = ACTIONS(1517), [anon_sym_POUND] = ACTIONS(247), }, [1303] = { + [sym_cell_path] = STATE(1556), + [sym_path] = STATE(1532), [sym_comment] = STATE(1303), - [anon_sym_EQ] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(992), - [anon_sym_DASH_EQ] = ACTIONS(992), - [anon_sym_STAR_EQ] = ACTIONS(992), - [anon_sym_SLASH_EQ] = ACTIONS(992), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(992), - [sym__newline] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(992), - [anon_sym_err_GT_PIPE] = ACTIONS(992), - [anon_sym_out_GT_PIPE] = ACTIONS(992), - [anon_sym_e_GT_PIPE] = ACTIONS(992), - [anon_sym_o_GT_PIPE] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), - [aux_sym_ctrl_match_token1] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(992), - [aux_sym_expr_binary_token1] = ACTIONS(992), - [aux_sym_expr_binary_token2] = ACTIONS(992), - [aux_sym_expr_binary_token3] = ACTIONS(992), - [aux_sym_expr_binary_token4] = ACTIONS(992), - [aux_sym_expr_binary_token5] = ACTIONS(992), - [aux_sym_expr_binary_token6] = ACTIONS(992), - [aux_sym_expr_binary_token7] = ACTIONS(992), - [aux_sym_expr_binary_token8] = ACTIONS(992), - [aux_sym_expr_binary_token9] = ACTIONS(992), - [aux_sym_expr_binary_token10] = ACTIONS(992), - [aux_sym_expr_binary_token11] = ACTIONS(992), - [aux_sym_expr_binary_token12] = ACTIONS(992), - [aux_sym_expr_binary_token13] = ACTIONS(992), - [aux_sym_expr_binary_token14] = ACTIONS(992), - [aux_sym_expr_binary_token15] = ACTIONS(992), - [aux_sym_expr_binary_token16] = ACTIONS(992), - [aux_sym_expr_binary_token17] = ACTIONS(992), - [aux_sym_expr_binary_token18] = ACTIONS(992), - [aux_sym_expr_binary_token19] = ACTIONS(992), - [aux_sym_expr_binary_token20] = ACTIONS(992), - [aux_sym_expr_binary_token21] = ACTIONS(992), - [aux_sym_expr_binary_token22] = ACTIONS(992), - [aux_sym_expr_binary_token23] = ACTIONS(992), - [aux_sym_expr_binary_token24] = ACTIONS(992), - [aux_sym_expr_binary_token25] = ACTIONS(992), - [aux_sym_expr_binary_token26] = ACTIONS(992), - [aux_sym_expr_binary_token27] = ACTIONS(992), - [aux_sym_expr_binary_token28] = ACTIONS(992), - [anon_sym_DOT_DOT2] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), - [anon_sym_DOT_DOT_LT2] = ACTIONS(992), - [aux_sym_record_entry_token1] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(990), - [anon_sym_out_GT] = ACTIONS(990), - [anon_sym_e_GT] = ACTIONS(990), - [anon_sym_o_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT] = ACTIONS(990), - [anon_sym_err_GT_GT] = ACTIONS(992), - [anon_sym_out_GT_GT] = ACTIONS(992), - [anon_sym_e_GT_GT] = ACTIONS(992), - [anon_sym_o_GT_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(247), - }, - [1304] = { - [sym__expr_parenthesized_immediate] = STATE(2025), - [sym__immediate_decimal] = STATE(2040), - [sym_val_variable] = STATE(2025), - [sym_comment] = STATE(1304), - [ts_builtin_sym_end] = ACTIONS(1553), - [anon_sym_true] = ACTIONS(1553), - [anon_sym_false] = ACTIONS(1553), - [anon_sym_null] = ACTIONS(1553), - [aux_sym_cmd_identifier_token38] = ACTIONS(1553), - [aux_sym_cmd_identifier_token39] = ACTIONS(1553), - [aux_sym_cmd_identifier_token40] = ACTIONS(1553), - [sym__newline] = ACTIONS(1553), - [anon_sym_SEMI] = ACTIONS(1553), - [anon_sym_PIPE] = ACTIONS(1553), - [anon_sym_err_GT_PIPE] = ACTIONS(1553), - [anon_sym_out_GT_PIPE] = ACTIONS(1553), - [anon_sym_e_GT_PIPE] = ACTIONS(1553), - [anon_sym_o_GT_PIPE] = ACTIONS(1553), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1553), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1553), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1553), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1553), - [anon_sym_LBRACK] = ACTIONS(1553), - [anon_sym_LPAREN] = ACTIONS(1551), - [anon_sym_DOLLAR] = ACTIONS(4124), - [anon_sym_DASH_DASH] = ACTIONS(1553), - [anon_sym_DASH] = ACTIONS(1551), - [aux_sym_ctrl_match_token1] = ACTIONS(1553), - [anon_sym_DOT_DOT] = ACTIONS(1551), - [anon_sym_LPAREN2] = ACTIONS(4126), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1553), - [anon_sym_DOT_DOT_LT] = ACTIONS(1553), - [aux_sym__immediate_decimal_token1] = ACTIONS(4210), - [aux_sym__immediate_decimal_token3] = ACTIONS(4212), - [aux_sym__immediate_decimal_token4] = ACTIONS(4214), - [aux_sym__immediate_decimal_token5] = ACTIONS(4216), - [aux_sym__val_number_decimal_token1] = ACTIONS(1551), - [aux_sym__val_number_decimal_token2] = ACTIONS(1551), - [aux_sym__val_number_decimal_token3] = ACTIONS(1551), - [aux_sym__val_number_decimal_token4] = ACTIONS(1551), - [aux_sym__val_number_token1] = ACTIONS(1553), - [aux_sym__val_number_token2] = ACTIONS(1553), - [aux_sym__val_number_token3] = ACTIONS(1553), - [anon_sym_0b] = ACTIONS(1551), - [anon_sym_0o] = ACTIONS(1551), - [anon_sym_0x] = ACTIONS(1551), - [sym_val_date] = ACTIONS(1553), - [anon_sym_DQUOTE] = ACTIONS(1553), - [sym__str_single_quotes] = ACTIONS(1553), - [sym__str_back_ticks] = ACTIONS(1553), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1553), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1553), - [anon_sym_err_GT] = ACTIONS(1551), - [anon_sym_out_GT] = ACTIONS(1551), - [anon_sym_e_GT] = ACTIONS(1551), - [anon_sym_o_GT] = ACTIONS(1551), - [anon_sym_err_PLUSout_GT] = ACTIONS(1551), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1551), - [anon_sym_o_PLUSe_GT] = ACTIONS(1551), - [anon_sym_e_PLUSo_GT] = ACTIONS(1551), - [anon_sym_err_GT_GT] = ACTIONS(1553), - [anon_sym_out_GT_GT] = ACTIONS(1553), - [anon_sym_e_GT_GT] = ACTIONS(1553), - [anon_sym_o_GT_GT] = ACTIONS(1553), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1553), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1553), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1553), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1553), - [aux_sym_unquoted_token1] = ACTIONS(1551), - [anon_sym_POUND] = ACTIONS(247), - }, - [1305] = { - [sym__expr_parenthesized_immediate] = STATE(7630), - [sym_comment] = STATE(1305), - [ts_builtin_sym_end] = ACTIONS(1537), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_null] = ACTIONS(1537), - [aux_sym_cmd_identifier_token38] = ACTIONS(1537), - [aux_sym_cmd_identifier_token39] = ACTIONS(1537), - [aux_sym_cmd_identifier_token40] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_DOLLAR] = ACTIONS(1525), - [anon_sym_DASH_DASH] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1525), - [aux_sym_ctrl_match_token1] = ACTIONS(1537), - [anon_sym_DOT_DOT] = ACTIONS(1525), - [anon_sym_LPAREN2] = ACTIONS(2947), - [anon_sym_DOT_DOT2] = ACTIONS(4294), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1525), - [anon_sym_DOT_DOT_LT] = ACTIONS(1525), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4296), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4296), - [aux_sym__val_number_decimal_token1] = ACTIONS(1525), - [aux_sym__val_number_decimal_token2] = ACTIONS(1537), - [aux_sym__val_number_decimal_token3] = ACTIONS(1537), - [aux_sym__val_number_decimal_token4] = ACTIONS(1537), - [aux_sym__val_number_token1] = ACTIONS(1537), - [aux_sym__val_number_token2] = ACTIONS(1537), - [aux_sym__val_number_token3] = ACTIONS(1537), - [anon_sym_0b] = ACTIONS(1525), - [sym_filesize_unit] = ACTIONS(4298), - [sym_duration_unit] = ACTIONS(4300), - [anon_sym_0o] = ACTIONS(1525), - [anon_sym_0x] = ACTIONS(1525), - [sym_val_date] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym__str_single_quotes] = ACTIONS(1537), - [sym__str_back_ticks] = ACTIONS(1537), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1537), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1537), - [anon_sym_err_GT] = ACTIONS(1525), - [anon_sym_out_GT] = ACTIONS(1525), - [anon_sym_e_GT] = ACTIONS(1525), - [anon_sym_o_GT] = ACTIONS(1525), - [anon_sym_err_PLUSout_GT] = ACTIONS(1525), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), - [anon_sym_o_PLUSe_GT] = ACTIONS(1525), - [anon_sym_e_PLUSo_GT] = ACTIONS(1525), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), - [aux_sym_unquoted_token1] = ACTIONS(1525), - [aux_sym_unquoted_token2] = ACTIONS(4302), - [anon_sym_POUND] = ACTIONS(247), - }, - [1306] = { - [sym__match_pattern_expression] = STATE(3315), - [sym__match_pattern_value] = STATE(3273), - [sym__match_pattern_list] = STATE(3277), - [sym__match_pattern_rest] = STATE(8041), - [sym__match_pattern_record] = STATE(3287), - [sym_expr_parenthesized] = STATE(3033), - [sym_val_range] = STATE(3273), - [sym__val_range] = STATE(7882), - [sym_val_nothing] = STATE(3288), - [sym_val_bool] = STATE(3213), - [sym_val_variable] = STATE(3034), - [sym_val_number] = STATE(3288), - [sym__val_number_decimal] = STATE(2800), - [sym__val_number] = STATE(3291), - [sym_val_duration] = STATE(3288), - [sym_val_filesize] = STATE(3288), - [sym_val_binary] = STATE(3288), - [sym_val_string] = STATE(3288), - [sym__str_double_quotes] = STATE(3297), - [sym_val_table] = STATE(3288), - [sym__unquoted_in_list] = STATE(3315), - [sym__unquoted_anonymous_prefix] = STATE(7802), - [sym_comment] = STATE(1306), - [aux_sym__match_pattern_list_repeat1] = STATE(1395), - [anon_sym_true] = ACTIONS(3956), - [anon_sym_false] = ACTIONS(3956), - [anon_sym_null] = ACTIONS(3958), - [aux_sym_cmd_identifier_token38] = ACTIONS(3960), - [aux_sym_cmd_identifier_token39] = ACTIONS(3960), - [aux_sym_cmd_identifier_token40] = ACTIONS(3960), - [anon_sym_LBRACK] = ACTIONS(4304), - [anon_sym_RBRACK] = ACTIONS(4306), - [anon_sym_LPAREN] = ACTIONS(3966), - [anon_sym_DOLLAR] = ACTIONS(3968), - [aux_sym_ctrl_match_token1] = ACTIONS(3970), - [anon_sym_DOT_DOT] = ACTIONS(4308), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3974), - [anon_sym_DOT_DOT_LT] = ACTIONS(3974), - [aux_sym__val_number_decimal_token1] = ACTIONS(3976), - [aux_sym__val_number_decimal_token2] = ACTIONS(3978), - [aux_sym__val_number_decimal_token3] = ACTIONS(3980), - [aux_sym__val_number_decimal_token4] = ACTIONS(3982), - [aux_sym__val_number_token1] = ACTIONS(3984), - [aux_sym__val_number_token2] = ACTIONS(3984), - [aux_sym__val_number_token3] = ACTIONS(3984), - [anon_sym_0b] = ACTIONS(3986), - [anon_sym_0o] = ACTIONS(3988), - [anon_sym_0x] = ACTIONS(3988), - [sym_val_date] = ACTIONS(3990), - [anon_sym_DQUOTE] = ACTIONS(3992), - [sym__str_single_quotes] = ACTIONS(3994), - [sym__str_back_ticks] = ACTIONS(3994), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3996), - [anon_sym_POUND] = ACTIONS(247), - }, - [1307] = { - [sym__expr_parenthesized_immediate] = STATE(2048), - [sym__immediate_decimal] = STATE(2062), - [sym_val_variable] = STATE(2048), - [sym_comment] = STATE(1307), - [ts_builtin_sym_end] = ACTIONS(1557), - [anon_sym_true] = ACTIONS(1557), - [anon_sym_false] = ACTIONS(1557), - [anon_sym_null] = ACTIONS(1557), - [aux_sym_cmd_identifier_token38] = ACTIONS(1557), - [aux_sym_cmd_identifier_token39] = ACTIONS(1557), - [aux_sym_cmd_identifier_token40] = ACTIONS(1557), - [sym__newline] = ACTIONS(1557), - [anon_sym_SEMI] = ACTIONS(1557), - [anon_sym_PIPE] = ACTIONS(1557), - [anon_sym_err_GT_PIPE] = ACTIONS(1557), - [anon_sym_out_GT_PIPE] = ACTIONS(1557), - [anon_sym_e_GT_PIPE] = ACTIONS(1557), - [anon_sym_o_GT_PIPE] = ACTIONS(1557), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1557), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1557), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1557), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1557), - [anon_sym_LPAREN] = ACTIONS(1555), - [anon_sym_DOLLAR] = ACTIONS(4124), - [anon_sym_DASH_DASH] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1555), - [aux_sym_ctrl_match_token1] = ACTIONS(1557), - [anon_sym_DOT_DOT] = ACTIONS(1555), - [anon_sym_LPAREN2] = ACTIONS(4126), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1557), - [anon_sym_DOT_DOT_LT] = ACTIONS(1557), - [aux_sym__immediate_decimal_token1] = ACTIONS(4210), - [aux_sym__immediate_decimal_token3] = ACTIONS(4212), - [aux_sym__immediate_decimal_token4] = ACTIONS(4214), - [aux_sym__immediate_decimal_token5] = ACTIONS(4216), - [aux_sym__val_number_decimal_token1] = ACTIONS(1555), - [aux_sym__val_number_decimal_token2] = ACTIONS(1555), - [aux_sym__val_number_decimal_token3] = ACTIONS(1555), - [aux_sym__val_number_decimal_token4] = ACTIONS(1555), - [aux_sym__val_number_token1] = ACTIONS(1557), - [aux_sym__val_number_token2] = ACTIONS(1557), - [aux_sym__val_number_token3] = ACTIONS(1557), - [anon_sym_0b] = ACTIONS(1555), - [anon_sym_0o] = ACTIONS(1555), - [anon_sym_0x] = ACTIONS(1555), - [sym_val_date] = ACTIONS(1557), - [anon_sym_DQUOTE] = ACTIONS(1557), - [sym__str_single_quotes] = ACTIONS(1557), - [sym__str_back_ticks] = ACTIONS(1557), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1557), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1557), - [anon_sym_err_GT] = ACTIONS(1555), - [anon_sym_out_GT] = ACTIONS(1555), - [anon_sym_e_GT] = ACTIONS(1555), - [anon_sym_o_GT] = ACTIONS(1555), - [anon_sym_err_PLUSout_GT] = ACTIONS(1555), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1555), - [anon_sym_o_PLUSe_GT] = ACTIONS(1555), - [anon_sym_e_PLUSo_GT] = ACTIONS(1555), - [anon_sym_err_GT_GT] = ACTIONS(1557), - [anon_sym_out_GT_GT] = ACTIONS(1557), - [anon_sym_e_GT_GT] = ACTIONS(1557), - [anon_sym_o_GT_GT] = ACTIONS(1557), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1557), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1557), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1557), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1557), - [aux_sym_unquoted_token1] = ACTIONS(1555), - [anon_sym_POUND] = ACTIONS(247), - }, - [1308] = { - [sym_comment] = STATE(1308), - [ts_builtin_sym_end] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [aux_sym_cmd_identifier_token38] = ACTIONS(1475), - [aux_sym_cmd_identifier_token39] = ACTIONS(1475), - [aux_sym_cmd_identifier_token40] = ACTIONS(1475), - [sym__newline] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_err_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_GT_PIPE] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1473), - [anon_sym_DOLLAR] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1473), - [aux_sym_ctrl_match_token1] = ACTIONS(1475), - [anon_sym_DOT_DOT] = ACTIONS(1473), - [anon_sym_LPAREN2] = ACTIONS(1475), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), - [anon_sym_DOT_DOT_LT] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [aux_sym__immediate_decimal_token2] = ACTIONS(4154), - [aux_sym__val_number_decimal_token1] = ACTIONS(1473), - [aux_sym__val_number_decimal_token2] = ACTIONS(1475), - [aux_sym__val_number_decimal_token3] = ACTIONS(1475), - [aux_sym__val_number_decimal_token4] = ACTIONS(1475), - [aux_sym__val_number_token1] = ACTIONS(1475), - [aux_sym__val_number_token2] = ACTIONS(1475), - [aux_sym__val_number_token3] = ACTIONS(1475), - [anon_sym_0b] = ACTIONS(1473), - [sym_filesize_unit] = ACTIONS(1475), - [sym_duration_unit] = ACTIONS(1475), - [anon_sym_0o] = ACTIONS(1473), - [anon_sym_0x] = ACTIONS(1473), - [sym_val_date] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym__str_single_quotes] = ACTIONS(1475), - [sym__str_back_ticks] = ACTIONS(1475), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1473), - [anon_sym_out_GT] = ACTIONS(1473), - [anon_sym_e_GT] = ACTIONS(1473), - [anon_sym_o_GT] = ACTIONS(1473), - [anon_sym_err_PLUSout_GT] = ACTIONS(1473), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), - [anon_sym_o_PLUSe_GT] = ACTIONS(1473), - [anon_sym_e_PLUSo_GT] = ACTIONS(1473), - [anon_sym_err_GT_GT] = ACTIONS(1475), - [anon_sym_out_GT_GT] = ACTIONS(1475), - [anon_sym_e_GT_GT] = ACTIONS(1475), - [anon_sym_o_GT_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), - [aux_sym_unquoted_token1] = ACTIONS(1473), - [aux_sym_unquoted_token2] = ACTIONS(1473), - [anon_sym_POUND] = ACTIONS(247), - }, - [1309] = { - [sym__val_range] = STATE(8049), - [sym__value] = STATE(6238), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3916), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(5842), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(2158), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(6265), - [sym__unquoted_anonymous_prefix] = STATE(7765), - [sym_comment] = STATE(1309), - [anon_sym_true] = ACTIONS(3213), - [anon_sym_false] = ACTIONS(3213), - [anon_sym_null] = ACTIONS(3215), - [aux_sym_cmd_identifier_token38] = ACTIONS(3217), - [aux_sym_cmd_identifier_token39] = ACTIONS(3217), - [aux_sym_cmd_identifier_token40] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(4248), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_DOLLAR] = ACTIONS(4252), - [aux_sym_ctrl_match_token1] = ACTIONS(4254), - [anon_sym_DOT_DOT] = ACTIONS(4256), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4258), - [anon_sym_DOT_DOT_LT] = ACTIONS(4258), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(4260), - [sym__str_single_quotes] = ACTIONS(4262), - [sym__str_back_ticks] = ACTIONS(4262), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3241), - [anon_sym_POUND] = ACTIONS(247), - }, - [1310] = { - [sym_comment] = STATE(1310), - [ts_builtin_sym_end] = ACTIONS(1521), - [anon_sym_true] = ACTIONS(1521), - [anon_sym_false] = ACTIONS(1521), - [anon_sym_null] = ACTIONS(1521), - [aux_sym_cmd_identifier_token38] = ACTIONS(1521), - [aux_sym_cmd_identifier_token39] = ACTIONS(1521), - [aux_sym_cmd_identifier_token40] = ACTIONS(1521), - [sym__newline] = ACTIONS(1521), - [anon_sym_SEMI] = ACTIONS(1521), - [anon_sym_PIPE] = ACTIONS(1521), - [anon_sym_err_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_GT_PIPE] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1519), - [anon_sym_DOLLAR] = ACTIONS(1519), - [anon_sym_DASH_DASH] = ACTIONS(1521), - [anon_sym_DASH] = ACTIONS(1519), - [aux_sym_ctrl_match_token1] = ACTIONS(1521), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_LPAREN2] = ACTIONS(1521), - [anon_sym_DOT_DOT2] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1519), - [anon_sym_DOT_DOT_LT] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), - [aux_sym__immediate_decimal_token2] = ACTIONS(4310), - [aux_sym__val_number_decimal_token1] = ACTIONS(1519), - [aux_sym__val_number_decimal_token2] = ACTIONS(1521), - [aux_sym__val_number_decimal_token3] = ACTIONS(1521), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(1521), - [aux_sym__val_number_token2] = ACTIONS(1521), - [aux_sym__val_number_token3] = ACTIONS(1521), - [anon_sym_0b] = ACTIONS(1519), - [sym_filesize_unit] = ACTIONS(1521), - [sym_duration_unit] = ACTIONS(1521), - [anon_sym_0o] = ACTIONS(1519), - [anon_sym_0x] = ACTIONS(1519), - [sym_val_date] = ACTIONS(1521), - [anon_sym_DQUOTE] = ACTIONS(1521), - [sym__str_single_quotes] = ACTIONS(1521), - [sym__str_back_ticks] = ACTIONS(1521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1521), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1521), - [anon_sym_err_GT] = ACTIONS(1519), - [anon_sym_out_GT] = ACTIONS(1519), - [anon_sym_e_GT] = ACTIONS(1519), - [anon_sym_o_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT] = ACTIONS(1519), - [anon_sym_err_GT_GT] = ACTIONS(1521), - [anon_sym_out_GT_GT] = ACTIONS(1521), - [anon_sym_e_GT_GT] = ACTIONS(1521), - [anon_sym_o_GT_GT] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), - [aux_sym_unquoted_token1] = ACTIONS(1519), - [aux_sym_unquoted_token2] = ACTIONS(1519), + [aux_sym_cell_path_repeat1] = STATE(1374), + [anon_sym_true] = ACTIONS(1857), + [anon_sym_false] = ACTIONS(1857), + [anon_sym_null] = ACTIONS(1857), + [aux_sym_cmd_identifier_token38] = ACTIONS(1857), + [aux_sym_cmd_identifier_token39] = ACTIONS(1857), + [aux_sym_cmd_identifier_token40] = ACTIONS(1857), + [sym__newline] = ACTIONS(1857), + [anon_sym_SEMI] = ACTIONS(1857), + [anon_sym_PIPE] = ACTIONS(1857), + [anon_sym_err_GT_PIPE] = ACTIONS(1857), + [anon_sym_out_GT_PIPE] = ACTIONS(1857), + [anon_sym_e_GT_PIPE] = ACTIONS(1857), + [anon_sym_o_GT_PIPE] = ACTIONS(1857), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1857), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1857), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1857), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1857), + [anon_sym_LBRACK] = ACTIONS(1857), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_RPAREN] = ACTIONS(1857), + [anon_sym_DOLLAR] = ACTIONS(1855), + [anon_sym_DASH_DASH] = ACTIONS(1857), + [anon_sym_DASH] = ACTIONS(1855), + [aux_sym_ctrl_match_token1] = ACTIONS(1857), + [anon_sym_RBRACE] = ACTIONS(1857), + [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1857), + [anon_sym_DOT_DOT_LT] = ACTIONS(1857), + [aux_sym__val_number_decimal_token1] = ACTIONS(1855), + [aux_sym__val_number_decimal_token2] = ACTIONS(1857), + [aux_sym__val_number_decimal_token3] = ACTIONS(1857), + [aux_sym__val_number_decimal_token4] = ACTIONS(1857), + [aux_sym__val_number_token1] = ACTIONS(1857), + [aux_sym__val_number_token2] = ACTIONS(1857), + [aux_sym__val_number_token3] = ACTIONS(1857), + [anon_sym_0b] = ACTIONS(1855), + [anon_sym_0o] = ACTIONS(1855), + [anon_sym_0x] = ACTIONS(1855), + [sym_val_date] = ACTIONS(1857), + [anon_sym_DQUOTE] = ACTIONS(1857), + [sym__str_single_quotes] = ACTIONS(1857), + [sym__str_back_ticks] = ACTIONS(1857), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1857), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1857), + [anon_sym_err_GT] = ACTIONS(1855), + [anon_sym_out_GT] = ACTIONS(1855), + [anon_sym_e_GT] = ACTIONS(1855), + [anon_sym_o_GT] = ACTIONS(1855), + [anon_sym_err_PLUSout_GT] = ACTIONS(1855), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1855), + [anon_sym_o_PLUSe_GT] = ACTIONS(1855), + [anon_sym_e_PLUSo_GT] = ACTIONS(1855), + [anon_sym_err_GT_GT] = ACTIONS(1857), + [anon_sym_out_GT_GT] = ACTIONS(1857), + [anon_sym_e_GT_GT] = ACTIONS(1857), + [anon_sym_o_GT_GT] = ACTIONS(1857), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1857), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1857), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1857), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1857), + [aux_sym_unquoted_token1] = ACTIONS(1855), + [anon_sym_POUND] = ACTIONS(247), + }, + [1304] = { + [sym_comment] = STATE(1304), + [ts_builtin_sym_end] = ACTIONS(1499), + [aux_sym_cmd_identifier_token41] = ACTIONS(1497), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [aux_sym_expr_binary_token1] = ACTIONS(1499), + [aux_sym_expr_binary_token2] = ACTIONS(1499), + [aux_sym_expr_binary_token3] = ACTIONS(1499), + [aux_sym_expr_binary_token4] = ACTIONS(1499), + [aux_sym_expr_binary_token5] = ACTIONS(1499), + [aux_sym_expr_binary_token6] = ACTIONS(1499), + [aux_sym_expr_binary_token7] = ACTIONS(1499), + [aux_sym_expr_binary_token8] = ACTIONS(1499), + [aux_sym_expr_binary_token9] = ACTIONS(1499), + [aux_sym_expr_binary_token10] = ACTIONS(1499), + [aux_sym_expr_binary_token11] = ACTIONS(1499), + [aux_sym_expr_binary_token12] = ACTIONS(1499), + [aux_sym_expr_binary_token13] = ACTIONS(1499), + [aux_sym_expr_binary_token14] = ACTIONS(1499), + [aux_sym_expr_binary_token15] = ACTIONS(1499), + [aux_sym_expr_binary_token16] = ACTIONS(1499), + [aux_sym_expr_binary_token17] = ACTIONS(1499), + [aux_sym_expr_binary_token18] = ACTIONS(1499), + [aux_sym_expr_binary_token19] = ACTIONS(1499), + [aux_sym_expr_binary_token20] = ACTIONS(1499), + [aux_sym_expr_binary_token21] = ACTIONS(1499), + [aux_sym_expr_binary_token22] = ACTIONS(1499), + [aux_sym_expr_binary_token23] = ACTIONS(1499), + [aux_sym_expr_binary_token24] = ACTIONS(1499), + [aux_sym_expr_binary_token25] = ACTIONS(1499), + [aux_sym_expr_binary_token26] = ACTIONS(1499), + [aux_sym_expr_binary_token27] = ACTIONS(1499), + [aux_sym_expr_binary_token28] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1497), + [anon_sym_DOT] = ACTIONS(4666), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), + [aux_sym__immediate_decimal_token2] = ACTIONS(4668), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1499), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(247), + }, + [1305] = { + [sym_comment] = STATE(1305), + [anon_sym_true] = ACTIONS(1707), + [anon_sym_false] = ACTIONS(1707), + [anon_sym_null] = ACTIONS(1707), + [aux_sym_cmd_identifier_token38] = ACTIONS(1707), + [aux_sym_cmd_identifier_token39] = ACTIONS(1707), + [aux_sym_cmd_identifier_token40] = ACTIONS(1707), + [sym__newline] = ACTIONS(1707), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_err_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_GT_PIPE] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), + [anon_sym_LBRACK] = ACTIONS(1707), + [anon_sym_LPAREN] = ACTIONS(1707), + [anon_sym_RPAREN] = ACTIONS(1707), + [anon_sym_DOLLAR] = ACTIONS(1705), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1705), + [aux_sym_ctrl_match_token1] = ACTIONS(1707), + [anon_sym_RBRACE] = ACTIONS(1707), + [anon_sym_DOT_DOT] = ACTIONS(1705), + [anon_sym_DOT_DOT2] = ACTIONS(1705), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1705), + [anon_sym_DOT_DOT_LT] = ACTIONS(1705), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1707), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1707), + [aux_sym__val_number_decimal_token1] = ACTIONS(1705), + [aux_sym__val_number_decimal_token2] = ACTIONS(1707), + [aux_sym__val_number_decimal_token3] = ACTIONS(1707), + [aux_sym__val_number_decimal_token4] = ACTIONS(1707), + [aux_sym__val_number_token1] = ACTIONS(1707), + [aux_sym__val_number_token2] = ACTIONS(1707), + [aux_sym__val_number_token3] = ACTIONS(1707), + [anon_sym_0b] = ACTIONS(1705), + [anon_sym_0o] = ACTIONS(1705), + [anon_sym_0x] = ACTIONS(1705), + [sym_val_date] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1707), + [sym__str_single_quotes] = ACTIONS(1707), + [sym__str_back_ticks] = ACTIONS(1707), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1707), + [anon_sym_err_GT] = ACTIONS(1705), + [anon_sym_out_GT] = ACTIONS(1705), + [anon_sym_e_GT] = ACTIONS(1705), + [anon_sym_o_GT] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT] = ACTIONS(1705), + [anon_sym_err_GT_GT] = ACTIONS(1707), + [anon_sym_out_GT_GT] = ACTIONS(1707), + [anon_sym_e_GT_GT] = ACTIONS(1707), + [anon_sym_o_GT_GT] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), + [aux_sym_unquoted_token1] = ACTIONS(1705), + [anon_sym_POUND] = ACTIONS(247), + }, + [1306] = { + [sym_comment] = STATE(1306), + [anon_sym_true] = ACTIONS(1078), + [anon_sym_false] = ACTIONS(1078), + [anon_sym_null] = ACTIONS(1078), + [aux_sym_cmd_identifier_token38] = ACTIONS(1078), + [aux_sym_cmd_identifier_token39] = ACTIONS(1078), + [aux_sym_cmd_identifier_token40] = ACTIONS(1078), + [sym__newline] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_err_GT_PIPE] = ACTIONS(1078), + [anon_sym_out_GT_PIPE] = ACTIONS(1078), + [anon_sym_e_GT_PIPE] = ACTIONS(1078), + [anon_sym_o_GT_PIPE] = ACTIONS(1078), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1078), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1078), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1078), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_DOLLAR] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1076), + [aux_sym_ctrl_match_token1] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT2] = ACTIONS(4670), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1076), + [anon_sym_DOT_DOT_LT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4672), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4672), + [aux_sym__val_number_decimal_token1] = ACTIONS(1076), + [aux_sym__val_number_decimal_token2] = ACTIONS(1078), + [aux_sym__val_number_decimal_token3] = ACTIONS(1078), + [aux_sym__val_number_decimal_token4] = ACTIONS(1078), + [aux_sym__val_number_token1] = ACTIONS(1078), + [aux_sym__val_number_token2] = ACTIONS(1078), + [aux_sym__val_number_token3] = ACTIONS(1078), + [anon_sym_0b] = ACTIONS(1076), + [anon_sym_0o] = ACTIONS(1076), + [anon_sym_0x] = ACTIONS(1076), + [sym_val_date] = ACTIONS(1078), + [anon_sym_DQUOTE] = ACTIONS(1078), + [sym__str_single_quotes] = ACTIONS(1078), + [sym__str_back_ticks] = ACTIONS(1078), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1078), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1078), + [anon_sym_err_GT] = ACTIONS(1076), + [anon_sym_out_GT] = ACTIONS(1076), + [anon_sym_e_GT] = ACTIONS(1076), + [anon_sym_o_GT] = ACTIONS(1076), + [anon_sym_err_PLUSout_GT] = ACTIONS(1076), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1076), + [anon_sym_o_PLUSe_GT] = ACTIONS(1076), + [anon_sym_e_PLUSo_GT] = ACTIONS(1076), + [anon_sym_err_GT_GT] = ACTIONS(1078), + [anon_sym_out_GT_GT] = ACTIONS(1078), + [anon_sym_e_GT_GT] = ACTIONS(1078), + [anon_sym_o_GT_GT] = ACTIONS(1078), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1078), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1078), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1078), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1078), + [aux_sym_unquoted_token1] = ACTIONS(1076), + [anon_sym_POUND] = ACTIONS(247), + }, + [1307] = { + [sym_comment] = STATE(1307), + [anon_sym_true] = ACTIONS(1757), + [anon_sym_false] = ACTIONS(1757), + [anon_sym_null] = ACTIONS(1757), + [aux_sym_cmd_identifier_token38] = ACTIONS(1757), + [aux_sym_cmd_identifier_token39] = ACTIONS(1757), + [aux_sym_cmd_identifier_token40] = ACTIONS(1757), + [sym__newline] = ACTIONS(1757), + [anon_sym_SEMI] = ACTIONS(1757), + [anon_sym_PIPE] = ACTIONS(1757), + [anon_sym_err_GT_PIPE] = ACTIONS(1757), + [anon_sym_out_GT_PIPE] = ACTIONS(1757), + [anon_sym_e_GT_PIPE] = ACTIONS(1757), + [anon_sym_o_GT_PIPE] = ACTIONS(1757), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1757), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1757), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1757), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1757), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_RPAREN] = ACTIONS(1757), + [anon_sym_DOLLAR] = ACTIONS(1755), + [anon_sym_DASH_DASH] = ACTIONS(1757), + [anon_sym_DASH] = ACTIONS(1755), + [aux_sym_ctrl_match_token1] = ACTIONS(1757), + [anon_sym_RBRACE] = ACTIONS(1757), + [anon_sym_DOT_DOT] = ACTIONS(1755), + [anon_sym_DOT_DOT2] = ACTIONS(1755), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1755), + [anon_sym_DOT_DOT_LT] = ACTIONS(1755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), + [aux_sym__val_number_decimal_token1] = ACTIONS(1755), + [aux_sym__val_number_decimal_token2] = ACTIONS(1757), + [aux_sym__val_number_decimal_token3] = ACTIONS(1757), + [aux_sym__val_number_decimal_token4] = ACTIONS(1757), + [aux_sym__val_number_token1] = ACTIONS(1757), + [aux_sym__val_number_token2] = ACTIONS(1757), + [aux_sym__val_number_token3] = ACTIONS(1757), + [anon_sym_0b] = ACTIONS(1755), + [anon_sym_0o] = ACTIONS(1755), + [anon_sym_0x] = ACTIONS(1755), + [sym_val_date] = ACTIONS(1757), + [anon_sym_DQUOTE] = ACTIONS(1757), + [sym__str_single_quotes] = ACTIONS(1757), + [sym__str_back_ticks] = ACTIONS(1757), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), + [anon_sym_err_GT] = ACTIONS(1755), + [anon_sym_out_GT] = ACTIONS(1755), + [anon_sym_e_GT] = ACTIONS(1755), + [anon_sym_o_GT] = ACTIONS(1755), + [anon_sym_err_PLUSout_GT] = ACTIONS(1755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), + [anon_sym_o_PLUSe_GT] = ACTIONS(1755), + [anon_sym_e_PLUSo_GT] = ACTIONS(1755), + [anon_sym_err_GT_GT] = ACTIONS(1757), + [anon_sym_out_GT_GT] = ACTIONS(1757), + [anon_sym_e_GT_GT] = ACTIONS(1757), + [anon_sym_o_GT_GT] = ACTIONS(1757), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), + [aux_sym_unquoted_token1] = ACTIONS(1755), + [anon_sym_POUND] = ACTIONS(247), + }, + [1308] = { + [sym_comment] = STATE(1308), + [sym__newline] = ACTIONS(2137), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_PIPE] = ACTIONS(2139), + [anon_sym_err_GT_PIPE] = ACTIONS(2139), + [anon_sym_out_GT_PIPE] = ACTIONS(2139), + [anon_sym_e_GT_PIPE] = ACTIONS(2139), + [anon_sym_o_GT_PIPE] = ACTIONS(2139), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2139), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2139), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2139), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2137), + [aux_sym_ctrl_match_token1] = ACTIONS(2139), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_EQ_GT] = ACTIONS(2139), + [aux_sym_expr_binary_token1] = ACTIONS(2139), + [aux_sym_expr_binary_token2] = ACTIONS(2139), + [aux_sym_expr_binary_token3] = ACTIONS(2139), + [aux_sym_expr_binary_token4] = ACTIONS(2139), + [aux_sym_expr_binary_token5] = ACTIONS(2139), + [aux_sym_expr_binary_token6] = ACTIONS(2139), + [aux_sym_expr_binary_token7] = ACTIONS(2139), + [aux_sym_expr_binary_token8] = ACTIONS(2139), + [aux_sym_expr_binary_token9] = ACTIONS(2139), + [aux_sym_expr_binary_token10] = ACTIONS(2139), + [aux_sym_expr_binary_token11] = ACTIONS(2139), + [aux_sym_expr_binary_token12] = ACTIONS(2139), + [aux_sym_expr_binary_token13] = ACTIONS(2139), + [aux_sym_expr_binary_token14] = ACTIONS(2139), + [aux_sym_expr_binary_token15] = ACTIONS(2139), + [aux_sym_expr_binary_token16] = ACTIONS(2139), + [aux_sym_expr_binary_token17] = ACTIONS(2139), + [aux_sym_expr_binary_token18] = ACTIONS(2139), + [aux_sym_expr_binary_token19] = ACTIONS(2139), + [aux_sym_expr_binary_token20] = ACTIONS(2139), + [aux_sym_expr_binary_token21] = ACTIONS(2139), + [aux_sym_expr_binary_token22] = ACTIONS(2139), + [aux_sym_expr_binary_token23] = ACTIONS(2139), + [aux_sym_expr_binary_token24] = ACTIONS(2139), + [aux_sym_expr_binary_token25] = ACTIONS(2139), + [aux_sym_expr_binary_token26] = ACTIONS(2139), + [aux_sym_expr_binary_token27] = ACTIONS(2139), + [aux_sym_expr_binary_token28] = ACTIONS(2139), + [anon_sym_DOT_DOT2] = ACTIONS(2137), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2139), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2139), + [aux_sym_record_entry_token1] = ACTIONS(2139), + [anon_sym_err_GT] = ACTIONS(2137), + [anon_sym_out_GT] = ACTIONS(2137), + [anon_sym_e_GT] = ACTIONS(2137), + [anon_sym_o_GT] = ACTIONS(2137), + [anon_sym_err_PLUSout_GT] = ACTIONS(2137), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2137), + [anon_sym_o_PLUSe_GT] = ACTIONS(2137), + [anon_sym_e_PLUSo_GT] = ACTIONS(2137), + [anon_sym_err_GT_GT] = ACTIONS(2139), + [anon_sym_out_GT_GT] = ACTIONS(2139), + [anon_sym_e_GT_GT] = ACTIONS(2139), + [anon_sym_o_GT_GT] = ACTIONS(2139), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2139), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2139), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2139), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2139), + [anon_sym_POUND] = ACTIONS(247), + }, + [1309] = { + [sym_cell_path] = STATE(1876), + [sym_path] = STATE(1599), + [sym_comment] = STATE(1309), + [aux_sym_cell_path_repeat1] = STATE(1437), + [ts_builtin_sym_end] = ACTIONS(1881), + [anon_sym_true] = ACTIONS(1881), + [anon_sym_false] = ACTIONS(1881), + [anon_sym_null] = ACTIONS(1881), + [aux_sym_cmd_identifier_token38] = ACTIONS(1881), + [aux_sym_cmd_identifier_token39] = ACTIONS(1881), + [aux_sym_cmd_identifier_token40] = ACTIONS(1881), + [sym__newline] = ACTIONS(1881), + [anon_sym_SEMI] = ACTIONS(1881), + [anon_sym_PIPE] = ACTIONS(1881), + [anon_sym_err_GT_PIPE] = ACTIONS(1881), + [anon_sym_out_GT_PIPE] = ACTIONS(1881), + [anon_sym_e_GT_PIPE] = ACTIONS(1881), + [anon_sym_o_GT_PIPE] = ACTIONS(1881), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1881), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1881), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1881), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1881), + [anon_sym_LBRACK] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_DOLLAR] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1879), + [aux_sym_ctrl_match_token1] = ACTIONS(1881), + [anon_sym_DOT_DOT] = ACTIONS(1879), + [anon_sym_DOT] = ACTIONS(4674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1881), + [anon_sym_DOT_DOT_LT] = ACTIONS(1881), + [aux_sym__val_number_decimal_token1] = ACTIONS(1879), + [aux_sym__val_number_decimal_token2] = ACTIONS(1881), + [aux_sym__val_number_decimal_token3] = ACTIONS(1881), + [aux_sym__val_number_decimal_token4] = ACTIONS(1881), + [aux_sym__val_number_token1] = ACTIONS(1881), + [aux_sym__val_number_token2] = ACTIONS(1881), + [aux_sym__val_number_token3] = ACTIONS(1881), + [anon_sym_0b] = ACTIONS(1879), + [anon_sym_0o] = ACTIONS(1879), + [anon_sym_0x] = ACTIONS(1879), + [sym_val_date] = ACTIONS(1881), + [anon_sym_DQUOTE] = ACTIONS(1881), + [sym__str_single_quotes] = ACTIONS(1881), + [sym__str_back_ticks] = ACTIONS(1881), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1881), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1881), + [anon_sym_err_GT] = ACTIONS(1879), + [anon_sym_out_GT] = ACTIONS(1879), + [anon_sym_e_GT] = ACTIONS(1879), + [anon_sym_o_GT] = ACTIONS(1879), + [anon_sym_err_PLUSout_GT] = ACTIONS(1879), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1879), + [anon_sym_o_PLUSe_GT] = ACTIONS(1879), + [anon_sym_e_PLUSo_GT] = ACTIONS(1879), + [anon_sym_err_GT_GT] = ACTIONS(1881), + [anon_sym_out_GT_GT] = ACTIONS(1881), + [anon_sym_e_GT_GT] = ACTIONS(1881), + [anon_sym_o_GT_GT] = ACTIONS(1881), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1881), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1881), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1881), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1881), + [aux_sym_unquoted_token1] = ACTIONS(1879), + [anon_sym_POUND] = ACTIONS(247), + }, + [1310] = { + [sym__expr_parenthesized_immediate] = STATE(7332), + [sym_comment] = STATE(1310), + [sym__newline] = ACTIONS(1575), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_err_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_GT_PIPE] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), + [anon_sym_RPAREN] = ACTIONS(1587), + [anon_sym_LPAREN2] = ACTIONS(3914), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1587), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1587), + [anon_sym_DOT_DOT2] = ACTIONS(4610), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4612), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4612), + [sym_filesize_unit] = ACTIONS(4676), + [sym_duration_unit] = ACTIONS(4678), + [anon_sym_err_GT] = ACTIONS(1575), + [anon_sym_out_GT] = ACTIONS(1575), + [anon_sym_e_GT] = ACTIONS(1575), + [anon_sym_o_GT] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT] = ACTIONS(1575), + [anon_sym_err_GT_GT] = ACTIONS(1587), + [anon_sym_out_GT_GT] = ACTIONS(1587), + [anon_sym_e_GT_GT] = ACTIONS(1587), + [anon_sym_o_GT_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [aux_sym_unquoted_token2] = ACTIONS(4680), [anon_sym_POUND] = ACTIONS(247), }, [1311] = { - [sym__val_range] = STATE(7981), - [sym__value] = STATE(2856), - [sym_val_nothing] = STATE(2982), - [sym_val_bool] = STATE(2863), - [sym_val_variable] = STATE(2982), - [sym_val_number] = STATE(2982), - [sym__val_number_decimal] = STATE(2598), - [sym__val_number] = STATE(2929), - [sym_val_duration] = STATE(2982), - [sym_val_filesize] = STATE(2982), - [sym_val_binary] = STATE(2982), - [sym_val_string] = STATE(2982), - [sym__str_double_quotes] = STATE(2993), - [sym_val_interpolated] = STATE(2982), - [sym__inter_single_quotes] = STATE(2995), - [sym__inter_double_quotes] = STATE(2992), - [sym_val_list] = STATE(2982), - [sym_val_record] = STATE(2982), - [sym_val_table] = STATE(2982), - [sym_val_closure] = STATE(2982), - [sym_unquoted] = STATE(2857), - [sym__unquoted_anonymous_prefix] = STATE(8059), [sym_comment] = STATE(1311), - [anon_sym_true] = ACTIONS(4166), - [anon_sym_false] = ACTIONS(4166), - [anon_sym_null] = ACTIONS(4168), - [aux_sym_cmd_identifier_token38] = ACTIONS(4170), - [aux_sym_cmd_identifier_token39] = ACTIONS(4170), - [aux_sym_cmd_identifier_token40] = ACTIONS(4170), - [anon_sym_LBRACK] = ACTIONS(4172), - [anon_sym_LPAREN] = ACTIONS(4174), - [anon_sym_DOLLAR] = ACTIONS(4176), - [aux_sym_ctrl_match_token1] = ACTIONS(4178), - [anon_sym_DOT_DOT] = ACTIONS(4180), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4182), - [anon_sym_DOT_DOT_LT] = ACTIONS(4182), - [aux_sym__val_number_decimal_token1] = ACTIONS(4184), - [aux_sym__val_number_decimal_token2] = ACTIONS(4186), - [aux_sym__val_number_decimal_token3] = ACTIONS(4188), - [aux_sym__val_number_decimal_token4] = ACTIONS(4190), - [aux_sym__val_number_token1] = ACTIONS(4192), - [aux_sym__val_number_token2] = ACTIONS(4192), - [aux_sym__val_number_token3] = ACTIONS(4192), - [anon_sym_0b] = ACTIONS(4194), - [anon_sym_0o] = ACTIONS(4196), - [anon_sym_0x] = ACTIONS(4196), - [sym_val_date] = ACTIONS(4198), - [anon_sym_DQUOTE] = ACTIONS(4200), - [sym__str_single_quotes] = ACTIONS(4202), - [sym__str_back_ticks] = ACTIONS(4202), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4204), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4206), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(4208), + [anon_sym_true] = ACTIONS(2135), + [anon_sym_false] = ACTIONS(2135), + [anon_sym_null] = ACTIONS(2135), + [aux_sym_cmd_identifier_token38] = ACTIONS(2135), + [aux_sym_cmd_identifier_token39] = ACTIONS(2135), + [aux_sym_cmd_identifier_token40] = ACTIONS(2135), + [sym__newline] = ACTIONS(2135), + [anon_sym_SEMI] = ACTIONS(2135), + [anon_sym_PIPE] = ACTIONS(2135), + [anon_sym_err_GT_PIPE] = ACTIONS(2135), + [anon_sym_out_GT_PIPE] = ACTIONS(2135), + [anon_sym_e_GT_PIPE] = ACTIONS(2135), + [anon_sym_o_GT_PIPE] = ACTIONS(2135), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2135), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2135), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2135), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2135), + [anon_sym_LBRACK] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_RPAREN] = ACTIONS(2135), + [anon_sym_DOLLAR] = ACTIONS(2133), + [anon_sym_DASH_DASH] = ACTIONS(2135), + [anon_sym_DASH] = ACTIONS(2133), + [aux_sym_ctrl_match_token1] = ACTIONS(2135), + [anon_sym_RBRACE] = ACTIONS(2135), + [anon_sym_DOT_DOT] = ACTIONS(2133), + [anon_sym_DOT_DOT2] = ACTIONS(2133), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2133), + [anon_sym_DOT_DOT_LT] = ACTIONS(2133), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2135), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2135), + [aux_sym__val_number_decimal_token1] = ACTIONS(2133), + [aux_sym__val_number_decimal_token2] = ACTIONS(2135), + [aux_sym__val_number_decimal_token3] = ACTIONS(2135), + [aux_sym__val_number_decimal_token4] = ACTIONS(2135), + [aux_sym__val_number_token1] = ACTIONS(2135), + [aux_sym__val_number_token2] = ACTIONS(2135), + [aux_sym__val_number_token3] = ACTIONS(2135), + [anon_sym_0b] = ACTIONS(2133), + [anon_sym_0o] = ACTIONS(2133), + [anon_sym_0x] = ACTIONS(2133), + [sym_val_date] = ACTIONS(2135), + [anon_sym_DQUOTE] = ACTIONS(2135), + [sym__str_single_quotes] = ACTIONS(2135), + [sym__str_back_ticks] = ACTIONS(2135), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2135), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2135), + [anon_sym_err_GT] = ACTIONS(2133), + [anon_sym_out_GT] = ACTIONS(2133), + [anon_sym_e_GT] = ACTIONS(2133), + [anon_sym_o_GT] = ACTIONS(2133), + [anon_sym_err_PLUSout_GT] = ACTIONS(2133), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2133), + [anon_sym_o_PLUSe_GT] = ACTIONS(2133), + [anon_sym_e_PLUSo_GT] = ACTIONS(2133), + [anon_sym_err_GT_GT] = ACTIONS(2135), + [anon_sym_out_GT_GT] = ACTIONS(2135), + [anon_sym_e_GT_GT] = ACTIONS(2135), + [anon_sym_o_GT_GT] = ACTIONS(2135), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2135), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2135), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2135), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2135), + [aux_sym_unquoted_token1] = ACTIONS(2133), [anon_sym_POUND] = ACTIONS(247), }, [1312] = { - [sym__expr_parenthesized_immediate] = STATE(2065), - [sym__immediate_decimal] = STATE(2074), - [sym_val_variable] = STATE(2065), [sym_comment] = STATE(1312), - [ts_builtin_sym_end] = ACTIONS(1509), - [anon_sym_true] = ACTIONS(1509), - [anon_sym_false] = ACTIONS(1509), - [anon_sym_null] = ACTIONS(1509), - [aux_sym_cmd_identifier_token38] = ACTIONS(1509), - [aux_sym_cmd_identifier_token39] = ACTIONS(1509), - [aux_sym_cmd_identifier_token40] = ACTIONS(1509), - [sym__newline] = ACTIONS(1509), - [anon_sym_SEMI] = ACTIONS(1509), - [anon_sym_PIPE] = ACTIONS(1509), - [anon_sym_err_GT_PIPE] = ACTIONS(1509), - [anon_sym_out_GT_PIPE] = ACTIONS(1509), - [anon_sym_e_GT_PIPE] = ACTIONS(1509), - [anon_sym_o_GT_PIPE] = ACTIONS(1509), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1509), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1509), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1509), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1509), - [anon_sym_LBRACK] = ACTIONS(1509), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_DOLLAR] = ACTIONS(4124), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1501), - [aux_sym_ctrl_match_token1] = ACTIONS(1509), - [anon_sym_DOT_DOT] = ACTIONS(1501), - [anon_sym_LPAREN2] = ACTIONS(4126), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1509), - [anon_sym_DOT_DOT_LT] = ACTIONS(1509), - [aux_sym__immediate_decimal_token1] = ACTIONS(4210), - [aux_sym__immediate_decimal_token3] = ACTIONS(4212), - [aux_sym__immediate_decimal_token4] = ACTIONS(4214), - [aux_sym__immediate_decimal_token5] = ACTIONS(4216), - [aux_sym__val_number_decimal_token1] = ACTIONS(1501), - [aux_sym__val_number_decimal_token2] = ACTIONS(1501), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1501), - [aux_sym__val_number_token1] = ACTIONS(1509), - [aux_sym__val_number_token2] = ACTIONS(1509), - [aux_sym__val_number_token3] = ACTIONS(1509), - [anon_sym_0b] = ACTIONS(1501), - [anon_sym_0o] = ACTIONS(1501), - [anon_sym_0x] = ACTIONS(1501), - [sym_val_date] = ACTIONS(1509), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym__str_single_quotes] = ACTIONS(1509), - [sym__str_back_ticks] = ACTIONS(1509), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1509), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1509), - [anon_sym_err_GT] = ACTIONS(1501), - [anon_sym_out_GT] = ACTIONS(1501), - [anon_sym_e_GT] = ACTIONS(1501), - [anon_sym_o_GT] = ACTIONS(1501), - [anon_sym_err_PLUSout_GT] = ACTIONS(1501), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1501), - [anon_sym_o_PLUSe_GT] = ACTIONS(1501), - [anon_sym_e_PLUSo_GT] = ACTIONS(1501), - [anon_sym_err_GT_GT] = ACTIONS(1509), - [anon_sym_out_GT_GT] = ACTIONS(1509), - [anon_sym_e_GT_GT] = ACTIONS(1509), - [anon_sym_o_GT_GT] = ACTIONS(1509), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1509), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1509), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1509), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1509), - [aux_sym_unquoted_token1] = ACTIONS(1501), + [aux_sym_cmd_identifier_token41] = ACTIONS(1497), + [sym__newline] = ACTIONS(1497), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_EQ_GT] = ACTIONS(1499), + [aux_sym_expr_binary_token1] = ACTIONS(1499), + [aux_sym_expr_binary_token2] = ACTIONS(1499), + [aux_sym_expr_binary_token3] = ACTIONS(1499), + [aux_sym_expr_binary_token4] = ACTIONS(1499), + [aux_sym_expr_binary_token5] = ACTIONS(1499), + [aux_sym_expr_binary_token6] = ACTIONS(1499), + [aux_sym_expr_binary_token7] = ACTIONS(1499), + [aux_sym_expr_binary_token8] = ACTIONS(1499), + [aux_sym_expr_binary_token9] = ACTIONS(1499), + [aux_sym_expr_binary_token10] = ACTIONS(1499), + [aux_sym_expr_binary_token11] = ACTIONS(1499), + [aux_sym_expr_binary_token12] = ACTIONS(1499), + [aux_sym_expr_binary_token13] = ACTIONS(1499), + [aux_sym_expr_binary_token14] = ACTIONS(1499), + [aux_sym_expr_binary_token15] = ACTIONS(1499), + [aux_sym_expr_binary_token16] = ACTIONS(1499), + [aux_sym_expr_binary_token17] = ACTIONS(1499), + [aux_sym_expr_binary_token18] = ACTIONS(1499), + [aux_sym_expr_binary_token19] = ACTIONS(1499), + [aux_sym_expr_binary_token20] = ACTIONS(1499), + [aux_sym_expr_binary_token21] = ACTIONS(1499), + [aux_sym_expr_binary_token22] = ACTIONS(1499), + [aux_sym_expr_binary_token23] = ACTIONS(1499), + [aux_sym_expr_binary_token24] = ACTIONS(1499), + [aux_sym_expr_binary_token25] = ACTIONS(1499), + [aux_sym_expr_binary_token26] = ACTIONS(1499), + [aux_sym_expr_binary_token27] = ACTIONS(1499), + [aux_sym_expr_binary_token28] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1499), + [aux_sym_record_entry_token1] = ACTIONS(1499), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(247), }, [1313] = { - [sym__val_range] = STATE(7865), - [sym__value] = STATE(6208), - [sym_val_nothing] = STATE(5312), - [sym_val_bool] = STATE(6000), - [sym_val_variable] = STATE(5312), - [sym_val_number] = STATE(5312), - [sym__val_number_decimal] = STATE(5498), - [sym__val_number] = STATE(3713), - [sym_val_duration] = STATE(5312), - [sym_val_filesize] = STATE(5312), - [sym_val_binary] = STATE(5312), - [sym_val_string] = STATE(5312), - [sym__str_double_quotes] = STATE(2802), - [sym_val_interpolated] = STATE(5312), - [sym__inter_single_quotes] = STATE(5273), - [sym__inter_double_quotes] = STATE(5275), - [sym_val_list] = STATE(5312), - [sym_val_record] = STATE(5312), - [sym_val_table] = STATE(5312), - [sym_val_closure] = STATE(5312), - [sym_unquoted] = STATE(6209), - [sym__unquoted_anonymous_prefix] = STATE(7927), [sym_comment] = STATE(1313), - [anon_sym_true] = ACTIONS(4218), - [anon_sym_false] = ACTIONS(4218), - [anon_sym_null] = ACTIONS(4220), - [aux_sym_cmd_identifier_token38] = ACTIONS(4222), - [aux_sym_cmd_identifier_token39] = ACTIONS(4222), - [aux_sym_cmd_identifier_token40] = ACTIONS(4222), - [anon_sym_LBRACK] = ACTIONS(4224), - [anon_sym_LPAREN] = ACTIONS(4226), - [anon_sym_DOLLAR] = ACTIONS(4228), - [aux_sym_ctrl_match_token1] = ACTIONS(4230), - [anon_sym_DOT_DOT] = ACTIONS(4232), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4234), - [anon_sym_DOT_DOT_LT] = ACTIONS(4234), - [aux_sym__val_number_decimal_token1] = ACTIONS(4236), - [aux_sym__val_number_decimal_token2] = ACTIONS(4238), - [aux_sym__val_number_decimal_token3] = ACTIONS(4240), - [aux_sym__val_number_decimal_token4] = ACTIONS(4242), - [aux_sym__val_number_token1] = ACTIONS(3519), - [aux_sym__val_number_token2] = ACTIONS(3519), - [aux_sym__val_number_token3] = ACTIONS(3519), - [anon_sym_0b] = ACTIONS(3699), - [anon_sym_0o] = ACTIONS(3701), - [anon_sym_0x] = ACTIONS(3701), - [sym_val_date] = ACTIONS(4244), - [anon_sym_DQUOTE] = ACTIONS(3527), - [sym__str_single_quotes] = ACTIONS(3529), - [sym__str_back_ticks] = ACTIONS(3529), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(4246), + [sym__newline] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1629), + [anon_sym_err_GT_PIPE] = ACTIONS(1629), + [anon_sym_out_GT_PIPE] = ACTIONS(1629), + [anon_sym_e_GT_PIPE] = ACTIONS(1629), + [anon_sym_o_GT_PIPE] = ACTIONS(1629), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1629), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1629), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1629), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1629), + [anon_sym_DASH_DASH] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1625), + [aux_sym_ctrl_match_token1] = ACTIONS(1629), + [anon_sym_RBRACE] = ACTIONS(1629), + [anon_sym_EQ_GT] = ACTIONS(1629), + [aux_sym_expr_binary_token1] = ACTIONS(1629), + [aux_sym_expr_binary_token2] = ACTIONS(1629), + [aux_sym_expr_binary_token3] = ACTIONS(1629), + [aux_sym_expr_binary_token4] = ACTIONS(1629), + [aux_sym_expr_binary_token5] = ACTIONS(1629), + [aux_sym_expr_binary_token6] = ACTIONS(1629), + [aux_sym_expr_binary_token7] = ACTIONS(1629), + [aux_sym_expr_binary_token8] = ACTIONS(1629), + [aux_sym_expr_binary_token9] = ACTIONS(1629), + [aux_sym_expr_binary_token10] = ACTIONS(1629), + [aux_sym_expr_binary_token11] = ACTIONS(1629), + [aux_sym_expr_binary_token12] = ACTIONS(1629), + [aux_sym_expr_binary_token13] = ACTIONS(1629), + [aux_sym_expr_binary_token14] = ACTIONS(1629), + [aux_sym_expr_binary_token15] = ACTIONS(1629), + [aux_sym_expr_binary_token16] = ACTIONS(1629), + [aux_sym_expr_binary_token17] = ACTIONS(1629), + [aux_sym_expr_binary_token18] = ACTIONS(1629), + [aux_sym_expr_binary_token19] = ACTIONS(1629), + [aux_sym_expr_binary_token20] = ACTIONS(1629), + [aux_sym_expr_binary_token21] = ACTIONS(1629), + [aux_sym_expr_binary_token22] = ACTIONS(1629), + [aux_sym_expr_binary_token23] = ACTIONS(1629), + [aux_sym_expr_binary_token24] = ACTIONS(1629), + [aux_sym_expr_binary_token25] = ACTIONS(1629), + [aux_sym_expr_binary_token26] = ACTIONS(1629), + [aux_sym_expr_binary_token27] = ACTIONS(1629), + [aux_sym_expr_binary_token28] = ACTIONS(1629), + [anon_sym_DOT_DOT2] = ACTIONS(1625), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1629), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1629), + [aux_sym_record_entry_token1] = ACTIONS(1629), + [anon_sym_err_GT] = ACTIONS(1625), + [anon_sym_out_GT] = ACTIONS(1625), + [anon_sym_e_GT] = ACTIONS(1625), + [anon_sym_o_GT] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT] = ACTIONS(1625), + [anon_sym_err_GT_GT] = ACTIONS(1629), + [anon_sym_out_GT_GT] = ACTIONS(1629), + [anon_sym_e_GT_GT] = ACTIONS(1629), + [anon_sym_o_GT_GT] = ACTIONS(1629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1629), [anon_sym_POUND] = ACTIONS(247), }, [1314] = { [sym_comment] = STATE(1314), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [aux_sym_cmd_identifier_token38] = ACTIONS(1475), - [aux_sym_cmd_identifier_token39] = ACTIONS(1475), - [aux_sym_cmd_identifier_token40] = ACTIONS(1475), - [sym__newline] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_err_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_GT_PIPE] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1475), - [anon_sym_RPAREN] = ACTIONS(1475), - [anon_sym_DOLLAR] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1473), - [aux_sym_ctrl_match_token1] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_DOT_DOT] = ACTIONS(1473), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), - [anon_sym_DOT_DOT_LT] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [aux_sym__immediate_decimal_token2] = ACTIONS(4142), - [aux_sym__val_number_decimal_token1] = ACTIONS(1473), - [aux_sym__val_number_decimal_token2] = ACTIONS(1475), - [aux_sym__val_number_decimal_token3] = ACTIONS(1475), - [aux_sym__val_number_decimal_token4] = ACTIONS(1475), - [aux_sym__val_number_token1] = ACTIONS(1475), - [aux_sym__val_number_token2] = ACTIONS(1475), - [aux_sym__val_number_token3] = ACTIONS(1475), - [anon_sym_0b] = ACTIONS(1473), - [sym_filesize_unit] = ACTIONS(1475), - [sym_duration_unit] = ACTIONS(1475), - [anon_sym_0o] = ACTIONS(1473), - [anon_sym_0x] = ACTIONS(1473), - [sym_val_date] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym__str_single_quotes] = ACTIONS(1475), - [sym__str_back_ticks] = ACTIONS(1475), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1473), - [anon_sym_out_GT] = ACTIONS(1473), - [anon_sym_e_GT] = ACTIONS(1473), - [anon_sym_o_GT] = ACTIONS(1473), - [anon_sym_err_PLUSout_GT] = ACTIONS(1473), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), - [anon_sym_o_PLUSe_GT] = ACTIONS(1473), - [anon_sym_e_PLUSo_GT] = ACTIONS(1473), - [anon_sym_err_GT_GT] = ACTIONS(1475), - [anon_sym_out_GT_GT] = ACTIONS(1475), - [anon_sym_e_GT_GT] = ACTIONS(1475), - [anon_sym_o_GT_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), - [aux_sym_unquoted_token1] = ACTIONS(1473), - [aux_sym_unquoted_token2] = ACTIONS(1473), + [aux_sym_cmd_identifier_token41] = ACTIONS(1497), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_RPAREN] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1499), + [aux_sym_expr_binary_token1] = ACTIONS(1499), + [aux_sym_expr_binary_token2] = ACTIONS(1499), + [aux_sym_expr_binary_token3] = ACTIONS(1499), + [aux_sym_expr_binary_token4] = ACTIONS(1499), + [aux_sym_expr_binary_token5] = ACTIONS(1499), + [aux_sym_expr_binary_token6] = ACTIONS(1499), + [aux_sym_expr_binary_token7] = ACTIONS(1499), + [aux_sym_expr_binary_token8] = ACTIONS(1499), + [aux_sym_expr_binary_token9] = ACTIONS(1499), + [aux_sym_expr_binary_token10] = ACTIONS(1499), + [aux_sym_expr_binary_token11] = ACTIONS(1499), + [aux_sym_expr_binary_token12] = ACTIONS(1499), + [aux_sym_expr_binary_token13] = ACTIONS(1499), + [aux_sym_expr_binary_token14] = ACTIONS(1499), + [aux_sym_expr_binary_token15] = ACTIONS(1499), + [aux_sym_expr_binary_token16] = ACTIONS(1499), + [aux_sym_expr_binary_token17] = ACTIONS(1499), + [aux_sym_expr_binary_token18] = ACTIONS(1499), + [aux_sym_expr_binary_token19] = ACTIONS(1499), + [aux_sym_expr_binary_token20] = ACTIONS(1499), + [aux_sym_expr_binary_token21] = ACTIONS(1499), + [aux_sym_expr_binary_token22] = ACTIONS(1499), + [aux_sym_expr_binary_token23] = ACTIONS(1499), + [aux_sym_expr_binary_token24] = ACTIONS(1499), + [aux_sym_expr_binary_token25] = ACTIONS(1499), + [aux_sym_expr_binary_token26] = ACTIONS(1499), + [aux_sym_expr_binary_token27] = ACTIONS(1499), + [aux_sym_expr_binary_token28] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), + [aux_sym__immediate_decimal_token2] = ACTIONS(4592), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1499), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(247), }, [1315] = { - [sym__val_range] = STATE(7865), - [sym__value] = STATE(6238), - [sym_val_nothing] = STATE(5312), - [sym_val_bool] = STATE(6000), - [sym_val_variable] = STATE(5312), - [sym_val_number] = STATE(5312), - [sym__val_number_decimal] = STATE(5531), - [sym__val_number] = STATE(5409), - [sym_val_duration] = STATE(5312), - [sym_val_filesize] = STATE(5312), - [sym_val_binary] = STATE(5312), - [sym_val_string] = STATE(5312), - [sym__str_double_quotes] = STATE(4863), - [sym_val_interpolated] = STATE(5312), - [sym__inter_single_quotes] = STATE(5273), - [sym__inter_double_quotes] = STATE(5275), - [sym_val_list] = STATE(5312), - [sym_val_record] = STATE(5312), - [sym_val_table] = STATE(5312), - [sym_val_closure] = STATE(5312), - [sym_unquoted] = STATE(6265), - [sym__unquoted_anonymous_prefix] = STATE(7927), + [sym_cell_path] = STATE(1861), + [sym_path] = STATE(1599), [sym_comment] = STATE(1315), - [anon_sym_true] = ACTIONS(4218), - [anon_sym_false] = ACTIONS(4218), - [anon_sym_null] = ACTIONS(4220), - [aux_sym_cmd_identifier_token38] = ACTIONS(4312), - [aux_sym_cmd_identifier_token39] = ACTIONS(4312), - [aux_sym_cmd_identifier_token40] = ACTIONS(4312), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4226), - [anon_sym_DOLLAR] = ACTIONS(4272), - [aux_sym_ctrl_match_token1] = ACTIONS(4274), - [anon_sym_DOT_DOT] = ACTIONS(4232), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4234), - [anon_sym_DOT_DOT_LT] = ACTIONS(4234), - [aux_sym__val_number_decimal_token1] = ACTIONS(4314), - [aux_sym__val_number_decimal_token2] = ACTIONS(4316), - [aux_sym__val_number_decimal_token3] = ACTIONS(4318), - [aux_sym__val_number_decimal_token4] = ACTIONS(4320), - [aux_sym__val_number_token1] = ACTIONS(3697), - [aux_sym__val_number_token2] = ACTIONS(3697), - [aux_sym__val_number_token3] = ACTIONS(3697), - [anon_sym_0b] = ACTIONS(3699), - [anon_sym_0o] = ACTIONS(3701), - [anon_sym_0x] = ACTIONS(3701), - [sym_val_date] = ACTIONS(4244), - [anon_sym_DQUOTE] = ACTIONS(4286), - [sym__str_single_quotes] = ACTIONS(4288), - [sym__str_back_ticks] = ACTIONS(4288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(4246), + [aux_sym_cell_path_repeat1] = STATE(1437), + [ts_builtin_sym_end] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1939), + [anon_sym_false] = ACTIONS(1939), + [anon_sym_null] = ACTIONS(1939), + [aux_sym_cmd_identifier_token38] = ACTIONS(1939), + [aux_sym_cmd_identifier_token39] = ACTIONS(1939), + [aux_sym_cmd_identifier_token40] = ACTIONS(1939), + [sym__newline] = ACTIONS(1939), + [anon_sym_SEMI] = ACTIONS(1939), + [anon_sym_PIPE] = ACTIONS(1939), + [anon_sym_err_GT_PIPE] = ACTIONS(1939), + [anon_sym_out_GT_PIPE] = ACTIONS(1939), + [anon_sym_e_GT_PIPE] = ACTIONS(1939), + [anon_sym_o_GT_PIPE] = ACTIONS(1939), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1939), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1939), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1939), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1939), + [anon_sym_LBRACK] = ACTIONS(1939), + [anon_sym_LPAREN] = ACTIONS(1939), + [anon_sym_DOLLAR] = ACTIONS(1937), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_DASH] = ACTIONS(1937), + [aux_sym_ctrl_match_token1] = ACTIONS(1939), + [anon_sym_DOT_DOT] = ACTIONS(1937), + [anon_sym_DOT] = ACTIONS(4674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1939), + [anon_sym_DOT_DOT_LT] = ACTIONS(1939), + [aux_sym__val_number_decimal_token1] = ACTIONS(1937), + [aux_sym__val_number_decimal_token2] = ACTIONS(1939), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [aux_sym__val_number_token1] = ACTIONS(1939), + [aux_sym__val_number_token2] = ACTIONS(1939), + [aux_sym__val_number_token3] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1937), + [anon_sym_0x] = ACTIONS(1937), + [sym_val_date] = ACTIONS(1939), + [anon_sym_DQUOTE] = ACTIONS(1939), + [sym__str_single_quotes] = ACTIONS(1939), + [sym__str_back_ticks] = ACTIONS(1939), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1939), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1939), + [anon_sym_err_GT] = ACTIONS(1937), + [anon_sym_out_GT] = ACTIONS(1937), + [anon_sym_e_GT] = ACTIONS(1937), + [anon_sym_o_GT] = ACTIONS(1937), + [anon_sym_err_PLUSout_GT] = ACTIONS(1937), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1937), + [anon_sym_o_PLUSe_GT] = ACTIONS(1937), + [anon_sym_e_PLUSo_GT] = ACTIONS(1937), + [anon_sym_err_GT_GT] = ACTIONS(1939), + [anon_sym_out_GT_GT] = ACTIONS(1939), + [anon_sym_e_GT_GT] = ACTIONS(1939), + [anon_sym_o_GT_GT] = ACTIONS(1939), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1939), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1939), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1939), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1939), + [aux_sym_unquoted_token1] = ACTIONS(1937), [anon_sym_POUND] = ACTIONS(247), }, [1316] = { - [sym__val_range] = STATE(7865), - [sym__value] = STATE(6291), - [sym_val_nothing] = STATE(5312), - [sym_val_bool] = STATE(6000), - [sym_val_variable] = STATE(5312), - [sym_val_number] = STATE(5312), - [sym__val_number_decimal] = STATE(5498), - [sym__val_number] = STATE(3713), - [sym_val_duration] = STATE(5312), - [sym_val_filesize] = STATE(5312), - [sym_val_binary] = STATE(5312), - [sym_val_string] = STATE(5312), - [sym__str_double_quotes] = STATE(2802), - [sym_val_interpolated] = STATE(5312), - [sym__inter_single_quotes] = STATE(5273), - [sym__inter_double_quotes] = STATE(5275), - [sym_val_list] = STATE(5312), - [sym_val_record] = STATE(5312), - [sym_val_table] = STATE(5312), - [sym_val_closure] = STATE(5312), - [sym_unquoted] = STATE(6292), - [sym__unquoted_anonymous_prefix] = STATE(7927), + [sym_cell_path] = STATE(1840), + [sym_path] = STATE(1599), [sym_comment] = STATE(1316), - [anon_sym_true] = ACTIONS(4218), - [anon_sym_false] = ACTIONS(4218), - [anon_sym_null] = ACTIONS(4220), - [aux_sym_cmd_identifier_token38] = ACTIONS(4222), - [aux_sym_cmd_identifier_token39] = ACTIONS(4222), - [aux_sym_cmd_identifier_token40] = ACTIONS(4222), - [anon_sym_LBRACK] = ACTIONS(4224), - [anon_sym_LPAREN] = ACTIONS(4226), - [anon_sym_DOLLAR] = ACTIONS(4228), - [aux_sym_ctrl_match_token1] = ACTIONS(4230), - [anon_sym_DOT_DOT] = ACTIONS(4232), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4234), - [anon_sym_DOT_DOT_LT] = ACTIONS(4234), - [aux_sym__val_number_decimal_token1] = ACTIONS(4236), - [aux_sym__val_number_decimal_token2] = ACTIONS(4238), - [aux_sym__val_number_decimal_token3] = ACTIONS(4240), - [aux_sym__val_number_decimal_token4] = ACTIONS(4242), - [aux_sym__val_number_token1] = ACTIONS(3519), - [aux_sym__val_number_token2] = ACTIONS(3519), - [aux_sym__val_number_token3] = ACTIONS(3519), - [anon_sym_0b] = ACTIONS(3699), - [anon_sym_0o] = ACTIONS(3701), - [anon_sym_0x] = ACTIONS(3701), - [sym_val_date] = ACTIONS(4244), - [anon_sym_DQUOTE] = ACTIONS(3527), - [sym__str_single_quotes] = ACTIONS(3529), - [sym__str_back_ticks] = ACTIONS(3529), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(4246), + [aux_sym_cell_path_repeat1] = STATE(1437), + [ts_builtin_sym_end] = ACTIONS(1963), + [anon_sym_true] = ACTIONS(1963), + [anon_sym_false] = ACTIONS(1963), + [anon_sym_null] = ACTIONS(1963), + [aux_sym_cmd_identifier_token38] = ACTIONS(1963), + [aux_sym_cmd_identifier_token39] = ACTIONS(1963), + [aux_sym_cmd_identifier_token40] = ACTIONS(1963), + [sym__newline] = ACTIONS(1963), + [anon_sym_SEMI] = ACTIONS(1963), + [anon_sym_PIPE] = ACTIONS(1963), + [anon_sym_err_GT_PIPE] = ACTIONS(1963), + [anon_sym_out_GT_PIPE] = ACTIONS(1963), + [anon_sym_e_GT_PIPE] = ACTIONS(1963), + [anon_sym_o_GT_PIPE] = ACTIONS(1963), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1963), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1963), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1963), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1963), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_LPAREN] = ACTIONS(1963), + [anon_sym_DOLLAR] = ACTIONS(1961), + [anon_sym_DASH_DASH] = ACTIONS(1963), + [anon_sym_DASH] = ACTIONS(1961), + [aux_sym_ctrl_match_token1] = ACTIONS(1963), + [anon_sym_DOT_DOT] = ACTIONS(1961), + [anon_sym_DOT] = ACTIONS(4674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1961), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1963), + [aux_sym__val_number_decimal_token4] = ACTIONS(1963), + [aux_sym__val_number_token1] = ACTIONS(1963), + [aux_sym__val_number_token2] = ACTIONS(1963), + [aux_sym__val_number_token3] = ACTIONS(1963), + [anon_sym_0b] = ACTIONS(1961), + [anon_sym_0o] = ACTIONS(1961), + [anon_sym_0x] = ACTIONS(1961), + [sym_val_date] = ACTIONS(1963), + [anon_sym_DQUOTE] = ACTIONS(1963), + [sym__str_single_quotes] = ACTIONS(1963), + [sym__str_back_ticks] = ACTIONS(1963), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1963), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1963), + [anon_sym_err_GT] = ACTIONS(1961), + [anon_sym_out_GT] = ACTIONS(1961), + [anon_sym_e_GT] = ACTIONS(1961), + [anon_sym_o_GT] = ACTIONS(1961), + [anon_sym_err_PLUSout_GT] = ACTIONS(1961), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1961), + [anon_sym_o_PLUSe_GT] = ACTIONS(1961), + [anon_sym_e_PLUSo_GT] = ACTIONS(1961), + [anon_sym_err_GT_GT] = ACTIONS(1963), + [anon_sym_out_GT_GT] = ACTIONS(1963), + [anon_sym_e_GT_GT] = ACTIONS(1963), + [anon_sym_o_GT_GT] = ACTIONS(1963), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1963), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1963), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1963), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1963), + [aux_sym_unquoted_token1] = ACTIONS(1961), [anon_sym_POUND] = ACTIONS(247), }, [1317] = { - [sym__match_pattern_expression] = STATE(3315), - [sym__match_pattern_value] = STATE(3273), - [sym__match_pattern_list] = STATE(3277), - [sym__match_pattern_rest] = STATE(8014), - [sym__match_pattern_record] = STATE(3287), - [sym_expr_parenthesized] = STATE(3033), - [sym_val_range] = STATE(3273), - [sym__val_range] = STATE(7882), - [sym_val_nothing] = STATE(3288), - [sym_val_bool] = STATE(3213), - [sym_val_variable] = STATE(3034), - [sym_val_number] = STATE(3288), - [sym__val_number_decimal] = STATE(2800), - [sym__val_number] = STATE(3291), - [sym_val_duration] = STATE(3288), - [sym_val_filesize] = STATE(3288), - [sym_val_binary] = STATE(3288), - [sym_val_string] = STATE(3288), - [sym__str_double_quotes] = STATE(3297), - [sym_val_table] = STATE(3288), - [sym__unquoted_in_list] = STATE(3315), - [sym__unquoted_anonymous_prefix] = STATE(7802), [sym_comment] = STATE(1317), - [aux_sym__match_pattern_list_repeat1] = STATE(1395), - [anon_sym_true] = ACTIONS(3956), - [anon_sym_false] = ACTIONS(3956), - [anon_sym_null] = ACTIONS(3958), - [aux_sym_cmd_identifier_token38] = ACTIONS(3960), - [aux_sym_cmd_identifier_token39] = ACTIONS(3960), - [aux_sym_cmd_identifier_token40] = ACTIONS(3960), - [anon_sym_LBRACK] = ACTIONS(4304), - [anon_sym_RBRACK] = ACTIONS(4322), - [anon_sym_LPAREN] = ACTIONS(3966), - [anon_sym_DOLLAR] = ACTIONS(3968), - [aux_sym_ctrl_match_token1] = ACTIONS(3970), - [anon_sym_DOT_DOT] = ACTIONS(4324), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3974), - [anon_sym_DOT_DOT_LT] = ACTIONS(3974), - [aux_sym__val_number_decimal_token1] = ACTIONS(3976), - [aux_sym__val_number_decimal_token2] = ACTIONS(3978), - [aux_sym__val_number_decimal_token3] = ACTIONS(3980), - [aux_sym__val_number_decimal_token4] = ACTIONS(3982), - [aux_sym__val_number_token1] = ACTIONS(3984), - [aux_sym__val_number_token2] = ACTIONS(3984), - [aux_sym__val_number_token3] = ACTIONS(3984), - [anon_sym_0b] = ACTIONS(3986), - [anon_sym_0o] = ACTIONS(3988), - [anon_sym_0x] = ACTIONS(3988), - [sym_val_date] = ACTIONS(3990), - [anon_sym_DQUOTE] = ACTIONS(3992), - [sym__str_single_quotes] = ACTIONS(3994), - [sym__str_back_ticks] = ACTIONS(3994), - [anon_sym_err_GT] = ACTIONS(2780), - [anon_sym_out_GT] = ACTIONS(2780), - [anon_sym_e_GT] = ACTIONS(2780), - [anon_sym_o_GT] = ACTIONS(2780), - [anon_sym_err_PLUSout_GT] = ACTIONS(2780), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2780), - [anon_sym_o_PLUSe_GT] = ACTIONS(2780), - [anon_sym_e_PLUSo_GT] = ACTIONS(2780), - [anon_sym_err_GT_GT] = ACTIONS(2782), - [anon_sym_out_GT_GT] = ACTIONS(2782), - [anon_sym_e_GT_GT] = ACTIONS(2782), - [anon_sym_o_GT_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2782), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3996), + [anon_sym_true] = ACTIONS(1707), + [anon_sym_false] = ACTIONS(1707), + [anon_sym_null] = ACTIONS(1707), + [aux_sym_cmd_identifier_token38] = ACTIONS(1707), + [aux_sym_cmd_identifier_token39] = ACTIONS(1707), + [aux_sym_cmd_identifier_token40] = ACTIONS(1707), + [sym__newline] = ACTIONS(1707), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_err_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_GT_PIPE] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), + [anon_sym_LBRACK] = ACTIONS(1707), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_RPAREN] = ACTIONS(1707), + [anon_sym_DOLLAR] = ACTIONS(1705), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1705), + [aux_sym_ctrl_match_token1] = ACTIONS(1707), + [anon_sym_RBRACE] = ACTIONS(1707), + [anon_sym_DOT_DOT] = ACTIONS(1705), + [anon_sym_LPAREN2] = ACTIONS(1707), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1707), + [anon_sym_DOT_DOT_LT] = ACTIONS(1707), + [aux_sym__immediate_decimal_token2] = ACTIONS(4682), + [aux_sym__val_number_decimal_token1] = ACTIONS(1705), + [aux_sym__val_number_decimal_token2] = ACTIONS(1707), + [aux_sym__val_number_decimal_token3] = ACTIONS(1707), + [aux_sym__val_number_decimal_token4] = ACTIONS(1707), + [aux_sym__val_number_token1] = ACTIONS(1707), + [aux_sym__val_number_token2] = ACTIONS(1707), + [aux_sym__val_number_token3] = ACTIONS(1707), + [anon_sym_0b] = ACTIONS(1705), + [anon_sym_0o] = ACTIONS(1705), + [anon_sym_0x] = ACTIONS(1705), + [sym_val_date] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1707), + [sym__str_single_quotes] = ACTIONS(1707), + [sym__str_back_ticks] = ACTIONS(1707), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1707), + [anon_sym_err_GT] = ACTIONS(1705), + [anon_sym_out_GT] = ACTIONS(1705), + [anon_sym_e_GT] = ACTIONS(1705), + [anon_sym_o_GT] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT] = ACTIONS(1705), + [anon_sym_err_GT_GT] = ACTIONS(1707), + [anon_sym_out_GT_GT] = ACTIONS(1707), + [anon_sym_e_GT_GT] = ACTIONS(1707), + [anon_sym_o_GT_GT] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), + [aux_sym_unquoted_token1] = ACTIONS(1705), + [aux_sym_unquoted_token2] = ACTIONS(1705), [anon_sym_POUND] = ACTIONS(247), }, [1318] = { + [sym_cell_path] = STATE(1904), + [sym_path] = STATE(1205), [sym_comment] = STATE(1318), - [anon_sym_true] = ACTIONS(1521), - [anon_sym_false] = ACTIONS(1521), - [anon_sym_null] = ACTIONS(1521), - [aux_sym_cmd_identifier_token38] = ACTIONS(1521), - [aux_sym_cmd_identifier_token39] = ACTIONS(1521), - [aux_sym_cmd_identifier_token40] = ACTIONS(1521), - [sym__newline] = ACTIONS(1521), - [anon_sym_SEMI] = ACTIONS(1521), - [anon_sym_PIPE] = ACTIONS(1521), - [anon_sym_err_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_GT_PIPE] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_RPAREN] = ACTIONS(1521), - [anon_sym_DOLLAR] = ACTIONS(1519), - [anon_sym_DASH_DASH] = ACTIONS(1521), - [anon_sym_DASH] = ACTIONS(1519), - [aux_sym_ctrl_match_token1] = ACTIONS(1521), - [anon_sym_RBRACE] = ACTIONS(1521), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_DOT_DOT2] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1519), - [anon_sym_DOT_DOT_LT] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), - [aux_sym__immediate_decimal_token2] = ACTIONS(4326), - [aux_sym__val_number_decimal_token1] = ACTIONS(1519), - [aux_sym__val_number_decimal_token2] = ACTIONS(1521), - [aux_sym__val_number_decimal_token3] = ACTIONS(1521), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(1521), - [aux_sym__val_number_token2] = ACTIONS(1521), - [aux_sym__val_number_token3] = ACTIONS(1521), - [anon_sym_0b] = ACTIONS(1519), - [sym_filesize_unit] = ACTIONS(1521), - [sym_duration_unit] = ACTIONS(1521), - [anon_sym_0o] = ACTIONS(1519), - [anon_sym_0x] = ACTIONS(1519), - [sym_val_date] = ACTIONS(1521), - [anon_sym_DQUOTE] = ACTIONS(1521), - [sym__str_single_quotes] = ACTIONS(1521), - [sym__str_back_ticks] = ACTIONS(1521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1521), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1521), - [anon_sym_err_GT] = ACTIONS(1519), - [anon_sym_out_GT] = ACTIONS(1519), - [anon_sym_e_GT] = ACTIONS(1519), - [anon_sym_o_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT] = ACTIONS(1519), - [anon_sym_err_GT_GT] = ACTIONS(1521), - [anon_sym_out_GT_GT] = ACTIONS(1521), - [anon_sym_e_GT_GT] = ACTIONS(1521), - [anon_sym_o_GT_GT] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), - [aux_sym_unquoted_token1] = ACTIONS(1519), - [aux_sym_unquoted_token2] = ACTIONS(1519), + [aux_sym_cell_path_repeat1] = STATE(1074), + [sym__newline] = ACTIONS(1688), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_err_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_GT_PIPE] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1688), + [anon_sym_RPAREN] = ACTIONS(1688), + [anon_sym_RBRACE] = ACTIONS(1688), + [aux_sym_expr_binary_token1] = ACTIONS(1688), + [aux_sym_expr_binary_token2] = ACTIONS(1688), + [aux_sym_expr_binary_token3] = ACTIONS(1688), + [aux_sym_expr_binary_token4] = ACTIONS(1688), + [aux_sym_expr_binary_token5] = ACTIONS(1688), + [aux_sym_expr_binary_token6] = ACTIONS(1688), + [aux_sym_expr_binary_token7] = ACTIONS(1688), + [aux_sym_expr_binary_token8] = ACTIONS(1688), + [aux_sym_expr_binary_token9] = ACTIONS(1688), + [aux_sym_expr_binary_token10] = ACTIONS(1688), + [aux_sym_expr_binary_token11] = ACTIONS(1688), + [aux_sym_expr_binary_token12] = ACTIONS(1688), + [aux_sym_expr_binary_token13] = ACTIONS(1688), + [aux_sym_expr_binary_token14] = ACTIONS(1688), + [aux_sym_expr_binary_token15] = ACTIONS(1688), + [aux_sym_expr_binary_token16] = ACTIONS(1688), + [aux_sym_expr_binary_token17] = ACTIONS(1688), + [aux_sym_expr_binary_token18] = ACTIONS(1688), + [aux_sym_expr_binary_token19] = ACTIONS(1688), + [aux_sym_expr_binary_token20] = ACTIONS(1688), + [aux_sym_expr_binary_token21] = ACTIONS(1688), + [aux_sym_expr_binary_token22] = ACTIONS(1688), + [aux_sym_expr_binary_token23] = ACTIONS(1688), + [aux_sym_expr_binary_token24] = ACTIONS(1688), + [aux_sym_expr_binary_token25] = ACTIONS(1688), + [aux_sym_expr_binary_token26] = ACTIONS(1688), + [aux_sym_expr_binary_token27] = ACTIONS(1688), + [aux_sym_expr_binary_token28] = ACTIONS(1688), + [anon_sym_DOT_DOT2] = ACTIONS(1686), + [anon_sym_DOT] = ACTIONS(3880), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1688), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1688), + [anon_sym_err_GT] = ACTIONS(1686), + [anon_sym_out_GT] = ACTIONS(1686), + [anon_sym_e_GT] = ACTIONS(1686), + [anon_sym_o_GT] = ACTIONS(1686), + [anon_sym_err_PLUSout_GT] = ACTIONS(1686), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1686), + [anon_sym_o_PLUSe_GT] = ACTIONS(1686), + [anon_sym_e_PLUSo_GT] = ACTIONS(1686), + [anon_sym_err_GT_GT] = ACTIONS(1688), + [anon_sym_out_GT_GT] = ACTIONS(1688), + [anon_sym_e_GT_GT] = ACTIONS(1688), + [anon_sym_o_GT_GT] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1688), [anon_sym_POUND] = ACTIONS(247), }, [1319] = { [sym_comment] = STATE(1319), - [anon_sym_EQ] = ACTIONS(966), - [anon_sym_PLUS_EQ] = ACTIONS(968), - [anon_sym_DASH_EQ] = ACTIONS(968), - [anon_sym_STAR_EQ] = ACTIONS(968), - [anon_sym_SLASH_EQ] = ACTIONS(968), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(968), - [sym__newline] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(968), - [aux_sym_ctrl_match_token1] = ACTIONS(968), - [anon_sym_QMARK2] = ACTIONS(968), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(968), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(968), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(968), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(968), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(968), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(968), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(968), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(968), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(968), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(968), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(968), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(968), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(968), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(968), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(968), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(968), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(968), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(968), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(968), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(968), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(968), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(968), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(968), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(968), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(968), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(968), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(968), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(968), - [anon_sym_DOT_DOT2] = ACTIONS(966), - [anon_sym_DOT] = ACTIONS(966), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(968), - [anon_sym_DOT_DOT_LT2] = ACTIONS(968), - [anon_sym_err_GT] = ACTIONS(966), - [anon_sym_out_GT] = ACTIONS(966), - [anon_sym_e_GT] = ACTIONS(966), - [anon_sym_o_GT] = ACTIONS(966), - [anon_sym_err_PLUSout_GT] = ACTIONS(966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(966), - [anon_sym_o_PLUSe_GT] = ACTIONS(966), - [anon_sym_e_PLUSo_GT] = ACTIONS(966), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), + [anon_sym_true] = ACTIONS(2139), + [anon_sym_false] = ACTIONS(2139), + [anon_sym_null] = ACTIONS(2139), + [aux_sym_cmd_identifier_token38] = ACTIONS(2139), + [aux_sym_cmd_identifier_token39] = ACTIONS(2139), + [aux_sym_cmd_identifier_token40] = ACTIONS(2139), + [sym__newline] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_PIPE] = ACTIONS(2139), + [anon_sym_err_GT_PIPE] = ACTIONS(2139), + [anon_sym_out_GT_PIPE] = ACTIONS(2139), + [anon_sym_e_GT_PIPE] = ACTIONS(2139), + [anon_sym_o_GT_PIPE] = ACTIONS(2139), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2139), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2139), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2139), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_RPAREN] = ACTIONS(2139), + [anon_sym_DOLLAR] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2137), + [aux_sym_ctrl_match_token1] = ACTIONS(2139), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_DOT_DOT] = ACTIONS(2137), + [anon_sym_DOT_DOT2] = ACTIONS(2137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2137), + [anon_sym_DOT_DOT_LT] = ACTIONS(2137), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2139), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2139), + [aux_sym__val_number_decimal_token1] = ACTIONS(2137), + [aux_sym__val_number_decimal_token2] = ACTIONS(2139), + [aux_sym__val_number_decimal_token3] = ACTIONS(2139), + [aux_sym__val_number_decimal_token4] = ACTIONS(2139), + [aux_sym__val_number_token1] = ACTIONS(2139), + [aux_sym__val_number_token2] = ACTIONS(2139), + [aux_sym__val_number_token3] = ACTIONS(2139), + [anon_sym_0b] = ACTIONS(2137), + [anon_sym_0o] = ACTIONS(2137), + [anon_sym_0x] = ACTIONS(2137), + [sym_val_date] = ACTIONS(2139), + [anon_sym_DQUOTE] = ACTIONS(2139), + [sym__str_single_quotes] = ACTIONS(2139), + [sym__str_back_ticks] = ACTIONS(2139), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2139), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2139), + [anon_sym_err_GT] = ACTIONS(2137), + [anon_sym_out_GT] = ACTIONS(2137), + [anon_sym_e_GT] = ACTIONS(2137), + [anon_sym_o_GT] = ACTIONS(2137), + [anon_sym_err_PLUSout_GT] = ACTIONS(2137), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2137), + [anon_sym_o_PLUSe_GT] = ACTIONS(2137), + [anon_sym_e_PLUSo_GT] = ACTIONS(2137), + [anon_sym_err_GT_GT] = ACTIONS(2139), + [anon_sym_out_GT_GT] = ACTIONS(2139), + [anon_sym_e_GT_GT] = ACTIONS(2139), + [anon_sym_o_GT_GT] = ACTIONS(2139), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2139), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2139), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2139), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2139), + [aux_sym_unquoted_token1] = ACTIONS(2137), [anon_sym_POUND] = ACTIONS(247), }, [1320] = { - [sym__val_range] = STATE(7865), - [sym__value] = STATE(6272), - [sym_val_nothing] = STATE(5312), - [sym_val_bool] = STATE(6000), - [sym_val_variable] = STATE(5312), - [sym_val_number] = STATE(5312), - [sym__val_number_decimal] = STATE(5531), - [sym__val_number] = STATE(5409), - [sym_val_duration] = STATE(5312), - [sym_val_filesize] = STATE(5312), - [sym_val_binary] = STATE(5312), - [sym_val_string] = STATE(5312), - [sym__str_double_quotes] = STATE(4863), - [sym_val_interpolated] = STATE(5312), - [sym__inter_single_quotes] = STATE(5273), - [sym__inter_double_quotes] = STATE(5275), - [sym_val_list] = STATE(5312), - [sym_val_record] = STATE(5312), - [sym_val_table] = STATE(5312), - [sym_val_closure] = STATE(5312), - [sym_unquoted] = STATE(6274), - [sym__unquoted_anonymous_prefix] = STATE(7927), + [sym_cell_path] = STATE(1906), + [sym_path] = STATE(1205), [sym_comment] = STATE(1320), - [anon_sym_true] = ACTIONS(4218), - [anon_sym_false] = ACTIONS(4218), - [anon_sym_null] = ACTIONS(4220), - [aux_sym_cmd_identifier_token38] = ACTIONS(4312), - [aux_sym_cmd_identifier_token39] = ACTIONS(4312), - [aux_sym_cmd_identifier_token40] = ACTIONS(4312), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4226), - [anon_sym_DOLLAR] = ACTIONS(4272), - [aux_sym_ctrl_match_token1] = ACTIONS(4274), - [anon_sym_DOT_DOT] = ACTIONS(4232), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4234), - [anon_sym_DOT_DOT_LT] = ACTIONS(4234), - [aux_sym__val_number_decimal_token1] = ACTIONS(4314), - [aux_sym__val_number_decimal_token2] = ACTIONS(4316), - [aux_sym__val_number_decimal_token3] = ACTIONS(4318), - [aux_sym__val_number_decimal_token4] = ACTIONS(4320), - [aux_sym__val_number_token1] = ACTIONS(3697), - [aux_sym__val_number_token2] = ACTIONS(3697), - [aux_sym__val_number_token3] = ACTIONS(3697), - [anon_sym_0b] = ACTIONS(3699), - [anon_sym_0o] = ACTIONS(3701), - [anon_sym_0x] = ACTIONS(3701), - [sym_val_date] = ACTIONS(4244), - [anon_sym_DQUOTE] = ACTIONS(4286), - [sym__str_single_quotes] = ACTIONS(4288), - [sym__str_back_ticks] = ACTIONS(4288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(4246), + [aux_sym_cell_path_repeat1] = STATE(1074), + [sym__newline] = ACTIONS(1629), + [anon_sym_SEMI] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1629), + [anon_sym_err_GT_PIPE] = ACTIONS(1629), + [anon_sym_out_GT_PIPE] = ACTIONS(1629), + [anon_sym_e_GT_PIPE] = ACTIONS(1629), + [anon_sym_o_GT_PIPE] = ACTIONS(1629), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1629), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1629), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1629), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1629), + [anon_sym_RPAREN] = ACTIONS(1629), + [anon_sym_RBRACE] = ACTIONS(1629), + [aux_sym_expr_binary_token1] = ACTIONS(1629), + [aux_sym_expr_binary_token2] = ACTIONS(1629), + [aux_sym_expr_binary_token3] = ACTIONS(1629), + [aux_sym_expr_binary_token4] = ACTIONS(1629), + [aux_sym_expr_binary_token5] = ACTIONS(1629), + [aux_sym_expr_binary_token6] = ACTIONS(1629), + [aux_sym_expr_binary_token7] = ACTIONS(1629), + [aux_sym_expr_binary_token8] = ACTIONS(1629), + [aux_sym_expr_binary_token9] = ACTIONS(1629), + [aux_sym_expr_binary_token10] = ACTIONS(1629), + [aux_sym_expr_binary_token11] = ACTIONS(1629), + [aux_sym_expr_binary_token12] = ACTIONS(1629), + [aux_sym_expr_binary_token13] = ACTIONS(1629), + [aux_sym_expr_binary_token14] = ACTIONS(1629), + [aux_sym_expr_binary_token15] = ACTIONS(1629), + [aux_sym_expr_binary_token16] = ACTIONS(1629), + [aux_sym_expr_binary_token17] = ACTIONS(1629), + [aux_sym_expr_binary_token18] = ACTIONS(1629), + [aux_sym_expr_binary_token19] = ACTIONS(1629), + [aux_sym_expr_binary_token20] = ACTIONS(1629), + [aux_sym_expr_binary_token21] = ACTIONS(1629), + [aux_sym_expr_binary_token22] = ACTIONS(1629), + [aux_sym_expr_binary_token23] = ACTIONS(1629), + [aux_sym_expr_binary_token24] = ACTIONS(1629), + [aux_sym_expr_binary_token25] = ACTIONS(1629), + [aux_sym_expr_binary_token26] = ACTIONS(1629), + [aux_sym_expr_binary_token27] = ACTIONS(1629), + [aux_sym_expr_binary_token28] = ACTIONS(1629), + [anon_sym_DOT_DOT2] = ACTIONS(1625), + [anon_sym_DOT] = ACTIONS(3880), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1629), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1629), + [anon_sym_err_GT] = ACTIONS(1625), + [anon_sym_out_GT] = ACTIONS(1625), + [anon_sym_e_GT] = ACTIONS(1625), + [anon_sym_o_GT] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT] = ACTIONS(1625), + [anon_sym_err_GT_GT] = ACTIONS(1629), + [anon_sym_out_GT_GT] = ACTIONS(1629), + [anon_sym_e_GT_GT] = ACTIONS(1629), + [anon_sym_o_GT_GT] = ACTIONS(1629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1629), [anon_sym_POUND] = ACTIONS(247), }, [1321] = { + [sym_cell_path] = STATE(1533), + [sym_path] = STATE(1206), [sym_comment] = STATE(1321), - [anon_sym_EQ] = ACTIONS(976), - [anon_sym_PLUS_EQ] = ACTIONS(978), - [anon_sym_DASH_EQ] = ACTIONS(978), - [anon_sym_STAR_EQ] = ACTIONS(978), - [anon_sym_SLASH_EQ] = ACTIONS(978), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(978), - [sym__newline] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(978), - [anon_sym_PIPE] = ACTIONS(978), - [anon_sym_err_GT_PIPE] = ACTIONS(978), - [anon_sym_out_GT_PIPE] = ACTIONS(978), - [anon_sym_e_GT_PIPE] = ACTIONS(978), - [anon_sym_o_GT_PIPE] = ACTIONS(978), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(978), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(978), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(978), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(978), - [anon_sym_RPAREN] = ACTIONS(978), - [aux_sym_ctrl_match_token1] = ACTIONS(978), - [anon_sym_QMARK2] = ACTIONS(978), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(978), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(978), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(978), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(978), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(978), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(978), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(978), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(978), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(978), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(978), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(978), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(978), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(978), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(978), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(978), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(978), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(978), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(978), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(978), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(978), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(978), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(978), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(978), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(978), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(978), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(978), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(978), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(978), - [anon_sym_DOT_DOT2] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), - [anon_sym_DOT_DOT_LT2] = ACTIONS(978), - [anon_sym_err_GT] = ACTIONS(976), - [anon_sym_out_GT] = ACTIONS(976), - [anon_sym_e_GT] = ACTIONS(976), - [anon_sym_o_GT] = ACTIONS(976), - [anon_sym_err_PLUSout_GT] = ACTIONS(976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(976), - [anon_sym_o_PLUSe_GT] = ACTIONS(976), - [anon_sym_e_PLUSo_GT] = ACTIONS(976), - [anon_sym_err_GT_GT] = ACTIONS(978), - [anon_sym_out_GT_GT] = ACTIONS(978), - [anon_sym_e_GT_GT] = ACTIONS(978), - [anon_sym_o_GT_GT] = ACTIONS(978), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(978), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(978), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(978), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(978), + [aux_sym_cell_path_repeat1] = STATE(1065), + [sym__newline] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1629), + [anon_sym_err_GT_PIPE] = ACTIONS(1629), + [anon_sym_out_GT_PIPE] = ACTIONS(1629), + [anon_sym_e_GT_PIPE] = ACTIONS(1629), + [anon_sym_o_GT_PIPE] = ACTIONS(1629), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1629), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1629), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1629), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1629), + [anon_sym_RPAREN] = ACTIONS(1629), + [aux_sym_ctrl_match_token1] = ACTIONS(1629), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1629), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1629), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1629), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1629), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1629), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1629), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1629), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1629), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1629), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1629), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1629), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1629), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1629), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1629), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1629), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1629), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1629), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1629), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1629), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1629), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1629), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1629), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1629), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1629), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1629), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1629), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1629), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1629), + [anon_sym_DOT_DOT2] = ACTIONS(1625), + [anon_sym_DOT] = ACTIONS(3894), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1629), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1629), + [anon_sym_err_GT] = ACTIONS(1625), + [anon_sym_out_GT] = ACTIONS(1625), + [anon_sym_e_GT] = ACTIONS(1625), + [anon_sym_o_GT] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT] = ACTIONS(1625), + [anon_sym_err_GT_GT] = ACTIONS(1629), + [anon_sym_out_GT_GT] = ACTIONS(1629), + [anon_sym_e_GT_GT] = ACTIONS(1629), + [anon_sym_o_GT_GT] = ACTIONS(1629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1629), [anon_sym_POUND] = ACTIONS(247), }, [1322] = { + [sym_cell_path] = STATE(1870), + [sym_path] = STATE(1599), [sym_comment] = STATE(1322), - [anon_sym_EQ] = ACTIONS(962), - [anon_sym_PLUS_EQ] = ACTIONS(964), - [anon_sym_DASH_EQ] = ACTIONS(964), - [anon_sym_STAR_EQ] = ACTIONS(964), - [anon_sym_SLASH_EQ] = ACTIONS(964), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(964), - [sym__newline] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_PIPE] = ACTIONS(964), - [anon_sym_err_GT_PIPE] = ACTIONS(964), - [anon_sym_out_GT_PIPE] = ACTIONS(964), - [anon_sym_e_GT_PIPE] = ACTIONS(964), - [anon_sym_o_GT_PIPE] = ACTIONS(964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(964), - [anon_sym_RPAREN] = ACTIONS(964), - [aux_sym_ctrl_match_token1] = ACTIONS(964), - [anon_sym_QMARK2] = ACTIONS(964), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(964), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(964), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(964), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(964), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(964), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(964), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(964), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(964), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(964), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(964), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(964), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(964), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(964), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(964), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(964), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(964), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(964), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(964), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(964), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(964), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(964), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(964), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(964), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(964), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(964), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(964), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(964), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(964), - [anon_sym_DOT_DOT2] = ACTIONS(962), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(964), - [anon_sym_DOT_DOT_LT2] = ACTIONS(964), - [anon_sym_err_GT] = ACTIONS(962), - [anon_sym_out_GT] = ACTIONS(962), - [anon_sym_e_GT] = ACTIONS(962), - [anon_sym_o_GT] = ACTIONS(962), - [anon_sym_err_PLUSout_GT] = ACTIONS(962), - [anon_sym_out_PLUSerr_GT] = ACTIONS(962), - [anon_sym_o_PLUSe_GT] = ACTIONS(962), - [anon_sym_e_PLUSo_GT] = ACTIONS(962), - [anon_sym_err_GT_GT] = ACTIONS(964), - [anon_sym_out_GT_GT] = ACTIONS(964), - [anon_sym_e_GT_GT] = ACTIONS(964), - [anon_sym_o_GT_GT] = ACTIONS(964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(964), + [aux_sym_cell_path_repeat1] = STATE(1437), + [ts_builtin_sym_end] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1967), + [anon_sym_false] = ACTIONS(1967), + [anon_sym_null] = ACTIONS(1967), + [aux_sym_cmd_identifier_token38] = ACTIONS(1967), + [aux_sym_cmd_identifier_token39] = ACTIONS(1967), + [aux_sym_cmd_identifier_token40] = ACTIONS(1967), + [sym__newline] = ACTIONS(1967), + [anon_sym_SEMI] = ACTIONS(1967), + [anon_sym_PIPE] = ACTIONS(1967), + [anon_sym_err_GT_PIPE] = ACTIONS(1967), + [anon_sym_out_GT_PIPE] = ACTIONS(1967), + [anon_sym_e_GT_PIPE] = ACTIONS(1967), + [anon_sym_o_GT_PIPE] = ACTIONS(1967), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1967), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1967), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1967), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1967), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_LPAREN] = ACTIONS(1967), + [anon_sym_DOLLAR] = ACTIONS(1965), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_DASH] = ACTIONS(1965), + [aux_sym_ctrl_match_token1] = ACTIONS(1967), + [anon_sym_DOT_DOT] = ACTIONS(1965), + [anon_sym_DOT] = ACTIONS(4674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1967), + [anon_sym_DOT_DOT_LT] = ACTIONS(1967), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1967), + [aux_sym__val_number_decimal_token4] = ACTIONS(1967), + [aux_sym__val_number_token1] = ACTIONS(1967), + [aux_sym__val_number_token2] = ACTIONS(1967), + [aux_sym__val_number_token3] = ACTIONS(1967), + [anon_sym_0b] = ACTIONS(1965), + [anon_sym_0o] = ACTIONS(1965), + [anon_sym_0x] = ACTIONS(1965), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym__str_single_quotes] = ACTIONS(1967), + [sym__str_back_ticks] = ACTIONS(1967), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1967), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1967), + [anon_sym_err_GT] = ACTIONS(1965), + [anon_sym_out_GT] = ACTIONS(1965), + [anon_sym_e_GT] = ACTIONS(1965), + [anon_sym_o_GT] = ACTIONS(1965), + [anon_sym_err_PLUSout_GT] = ACTIONS(1965), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1965), + [anon_sym_o_PLUSe_GT] = ACTIONS(1965), + [anon_sym_e_PLUSo_GT] = ACTIONS(1965), + [anon_sym_err_GT_GT] = ACTIONS(1967), + [anon_sym_out_GT_GT] = ACTIONS(1967), + [anon_sym_e_GT_GT] = ACTIONS(1967), + [anon_sym_o_GT_GT] = ACTIONS(1967), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1967), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1967), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1967), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1967), + [aux_sym_unquoted_token1] = ACTIONS(1965), [anon_sym_POUND] = ACTIONS(247), }, [1323] = { - [sym__val_range] = STATE(8049), - [sym__value] = STATE(2856), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3916), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(5842), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(2158), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(2857), - [sym__unquoted_anonymous_prefix] = STATE(7765), [sym_comment] = STATE(1323), - [anon_sym_true] = ACTIONS(3213), - [anon_sym_false] = ACTIONS(3213), - [anon_sym_null] = ACTIONS(3215), - [aux_sym_cmd_identifier_token38] = ACTIONS(3217), - [aux_sym_cmd_identifier_token39] = ACTIONS(3217), - [aux_sym_cmd_identifier_token40] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(4248), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_DOLLAR] = ACTIONS(4252), - [aux_sym_ctrl_match_token1] = ACTIONS(4254), - [anon_sym_DOT_DOT] = ACTIONS(4256), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4258), - [anon_sym_DOT_DOT_LT] = ACTIONS(4258), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(4260), - [sym__str_single_quotes] = ACTIONS(4262), - [sym__str_back_ticks] = ACTIONS(4262), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3241), + [ts_builtin_sym_end] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [aux_sym_cmd_identifier_token38] = ACTIONS(1633), + [aux_sym_cmd_identifier_token39] = ACTIONS(1633), + [aux_sym_cmd_identifier_token40] = ACTIONS(1633), + [sym__newline] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1633), + [anon_sym_err_GT_PIPE] = ACTIONS(1633), + [anon_sym_out_GT_PIPE] = ACTIONS(1633), + [anon_sym_e_GT_PIPE] = ACTIONS(1633), + [anon_sym_o_GT_PIPE] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1633), + [anon_sym_LBRACK] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_DOLLAR] = ACTIONS(1631), + [anon_sym_DASH_DASH] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1631), + [aux_sym_ctrl_match_token1] = ACTIONS(1633), + [anon_sym_DOT_DOT] = ACTIONS(1631), + [anon_sym_LPAREN2] = ACTIONS(1633), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1633), + [anon_sym_DOT_DOT_LT] = ACTIONS(1633), + [aux_sym__immediate_decimal_token1] = ACTIONS(4684), + [aux_sym__immediate_decimal_token2] = ACTIONS(4686), + [aux_sym__val_number_decimal_token1] = ACTIONS(1631), + [aux_sym__val_number_decimal_token2] = ACTIONS(1633), + [aux_sym__val_number_decimal_token3] = ACTIONS(1633), + [aux_sym__val_number_decimal_token4] = ACTIONS(1633), + [aux_sym__val_number_token1] = ACTIONS(1633), + [aux_sym__val_number_token2] = ACTIONS(1633), + [aux_sym__val_number_token3] = ACTIONS(1633), + [anon_sym_0b] = ACTIONS(1631), + [anon_sym_0o] = ACTIONS(1631), + [anon_sym_0x] = ACTIONS(1631), + [sym_val_date] = ACTIONS(1633), + [anon_sym_DQUOTE] = ACTIONS(1633), + [sym__str_single_quotes] = ACTIONS(1633), + [sym__str_back_ticks] = ACTIONS(1633), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1633), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1633), + [anon_sym_err_GT] = ACTIONS(1631), + [anon_sym_out_GT] = ACTIONS(1631), + [anon_sym_e_GT] = ACTIONS(1631), + [anon_sym_o_GT] = ACTIONS(1631), + [anon_sym_err_PLUSout_GT] = ACTIONS(1631), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1631), + [anon_sym_o_PLUSe_GT] = ACTIONS(1631), + [anon_sym_e_PLUSo_GT] = ACTIONS(1631), + [anon_sym_err_GT_GT] = ACTIONS(1633), + [anon_sym_out_GT_GT] = ACTIONS(1633), + [anon_sym_e_GT_GT] = ACTIONS(1633), + [anon_sym_o_GT_GT] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1633), + [aux_sym_unquoted_token1] = ACTIONS(1631), + [aux_sym_unquoted_token2] = ACTIONS(1631), [anon_sym_POUND] = ACTIONS(247), }, [1324] = { - [sym__val_range] = STATE(7865), - [sym__value] = STATE(6272), - [sym_val_nothing] = STATE(5312), - [sym_val_bool] = STATE(7285), - [sym_val_variable] = STATE(5312), - [sym_val_number] = STATE(5312), - [sym__val_number_decimal] = STATE(5793), - [sym__val_number] = STATE(5409), - [sym_val_duration] = STATE(5312), - [sym_val_filesize] = STATE(5312), - [sym_val_binary] = STATE(5312), - [sym_val_string] = STATE(5312), - [sym__str_double_quotes] = STATE(4863), - [sym_val_interpolated] = STATE(5312), - [sym__inter_single_quotes] = STATE(5273), - [sym__inter_double_quotes] = STATE(5275), - [sym_val_list] = STATE(5312), - [sym_val_record] = STATE(5312), - [sym_val_table] = STATE(5312), - [sym_val_closure] = STATE(5312), - [sym_unquoted] = STATE(6274), - [sym__unquoted_anonymous_prefix] = STATE(7927), [sym_comment] = STATE(1324), - [anon_sym_true] = ACTIONS(4264), - [anon_sym_false] = ACTIONS(4264), - [anon_sym_null] = ACTIONS(4266), - [aux_sym_cmd_identifier_token38] = ACTIONS(4268), - [aux_sym_cmd_identifier_token39] = ACTIONS(4268), - [aux_sym_cmd_identifier_token40] = ACTIONS(4268), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4226), - [anon_sym_DOLLAR] = ACTIONS(4272), - [aux_sym_ctrl_match_token1] = ACTIONS(4274), - [anon_sym_DOT_DOT] = ACTIONS(4232), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4234), - [anon_sym_DOT_DOT_LT] = ACTIONS(4234), - [aux_sym__val_number_decimal_token1] = ACTIONS(4276), - [aux_sym__val_number_decimal_token2] = ACTIONS(4278), - [aux_sym__val_number_decimal_token3] = ACTIONS(4280), - [aux_sym__val_number_decimal_token4] = ACTIONS(4282), - [aux_sym__val_number_token1] = ACTIONS(3697), - [aux_sym__val_number_token2] = ACTIONS(3697), - [aux_sym__val_number_token3] = ACTIONS(3697), - [anon_sym_0b] = ACTIONS(3699), - [anon_sym_0o] = ACTIONS(3701), - [anon_sym_0x] = ACTIONS(3701), - [sym_val_date] = ACTIONS(4284), - [anon_sym_DQUOTE] = ACTIONS(4286), - [sym__str_single_quotes] = ACTIONS(4288), - [sym__str_back_ticks] = ACTIONS(4288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(4246), + [anon_sym_true] = ACTIONS(2067), + [anon_sym_false] = ACTIONS(2067), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token38] = ACTIONS(2067), + [aux_sym_cmd_identifier_token39] = ACTIONS(2067), + [aux_sym_cmd_identifier_token40] = ACTIONS(2067), + [sym__newline] = ACTIONS(2067), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_PIPE] = ACTIONS(2067), + [anon_sym_err_GT_PIPE] = ACTIONS(2067), + [anon_sym_out_GT_PIPE] = ACTIONS(2067), + [anon_sym_e_GT_PIPE] = ACTIONS(2067), + [anon_sym_o_GT_PIPE] = ACTIONS(2067), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2067), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2067), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2067), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_RPAREN] = ACTIONS(2067), + [anon_sym_DOLLAR] = ACTIONS(2061), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2061), + [aux_sym_ctrl_match_token1] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_DOT_DOT] = ACTIONS(2061), + [anon_sym_DOT_DOT2] = ACTIONS(4688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2061), + [anon_sym_DOT_DOT_LT] = ACTIONS(2061), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4690), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4690), + [aux_sym__val_number_decimal_token1] = ACTIONS(2061), + [aux_sym__val_number_decimal_token2] = ACTIONS(2067), + [aux_sym__val_number_decimal_token3] = ACTIONS(2067), + [aux_sym__val_number_decimal_token4] = ACTIONS(2067), + [aux_sym__val_number_token1] = ACTIONS(2067), + [aux_sym__val_number_token2] = ACTIONS(2067), + [aux_sym__val_number_token3] = ACTIONS(2067), + [anon_sym_0b] = ACTIONS(2061), + [anon_sym_0o] = ACTIONS(2061), + [anon_sym_0x] = ACTIONS(2061), + [sym_val_date] = ACTIONS(2067), + [anon_sym_DQUOTE] = ACTIONS(2067), + [sym__str_single_quotes] = ACTIONS(2067), + [sym__str_back_ticks] = ACTIONS(2067), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2067), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2067), + [anon_sym_err_GT] = ACTIONS(2061), + [anon_sym_out_GT] = ACTIONS(2061), + [anon_sym_e_GT] = ACTIONS(2061), + [anon_sym_o_GT] = ACTIONS(2061), + [anon_sym_err_PLUSout_GT] = ACTIONS(2061), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2061), + [anon_sym_o_PLUSe_GT] = ACTIONS(2061), + [anon_sym_e_PLUSo_GT] = ACTIONS(2061), + [anon_sym_err_GT_GT] = ACTIONS(2067), + [anon_sym_out_GT_GT] = ACTIONS(2067), + [anon_sym_e_GT_GT] = ACTIONS(2067), + [anon_sym_o_GT_GT] = ACTIONS(2067), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2067), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2067), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2067), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2067), + [aux_sym_unquoted_token1] = ACTIONS(2061), [anon_sym_POUND] = ACTIONS(247), }, [1325] = { - [sym_path] = STATE(1426), [sym_comment] = STATE(1325), - [aux_sym_cell_path_repeat1] = STATE(1325), - [ts_builtin_sym_end] = ACTIONS(957), - [anon_sym_EQ] = ACTIONS(955), - [anon_sym_PLUS_EQ] = ACTIONS(957), - [anon_sym_DASH_EQ] = ACTIONS(957), - [anon_sym_STAR_EQ] = ACTIONS(957), - [anon_sym_SLASH_EQ] = ACTIONS(957), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(957), - [sym__newline] = ACTIONS(957), - [anon_sym_SEMI] = ACTIONS(957), - [anon_sym_PIPE] = ACTIONS(957), - [anon_sym_err_GT_PIPE] = ACTIONS(957), - [anon_sym_out_GT_PIPE] = ACTIONS(957), - [anon_sym_e_GT_PIPE] = ACTIONS(957), - [anon_sym_o_GT_PIPE] = ACTIONS(957), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(957), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(957), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(957), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(957), - [aux_sym_expr_binary_token1] = ACTIONS(957), - [aux_sym_expr_binary_token2] = ACTIONS(957), - [aux_sym_expr_binary_token3] = ACTIONS(957), - [aux_sym_expr_binary_token4] = ACTIONS(957), - [aux_sym_expr_binary_token5] = ACTIONS(957), - [aux_sym_expr_binary_token6] = ACTIONS(957), - [aux_sym_expr_binary_token7] = ACTIONS(957), - [aux_sym_expr_binary_token8] = ACTIONS(957), - [aux_sym_expr_binary_token9] = ACTIONS(957), - [aux_sym_expr_binary_token10] = ACTIONS(957), - [aux_sym_expr_binary_token11] = ACTIONS(957), - [aux_sym_expr_binary_token12] = ACTIONS(957), - [aux_sym_expr_binary_token13] = ACTIONS(957), - [aux_sym_expr_binary_token14] = ACTIONS(957), - [aux_sym_expr_binary_token15] = ACTIONS(957), - [aux_sym_expr_binary_token16] = ACTIONS(957), - [aux_sym_expr_binary_token17] = ACTIONS(957), - [aux_sym_expr_binary_token18] = ACTIONS(957), - [aux_sym_expr_binary_token19] = ACTIONS(957), - [aux_sym_expr_binary_token20] = ACTIONS(957), - [aux_sym_expr_binary_token21] = ACTIONS(957), - [aux_sym_expr_binary_token22] = ACTIONS(957), - [aux_sym_expr_binary_token23] = ACTIONS(957), - [aux_sym_expr_binary_token24] = ACTIONS(957), - [aux_sym_expr_binary_token25] = ACTIONS(957), - [aux_sym_expr_binary_token26] = ACTIONS(957), - [aux_sym_expr_binary_token27] = ACTIONS(957), - [aux_sym_expr_binary_token28] = ACTIONS(957), - [anon_sym_DOT_DOT2] = ACTIONS(955), - [anon_sym_DOT] = ACTIONS(4328), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(957), - [anon_sym_DOT_DOT_LT2] = ACTIONS(957), - [anon_sym_err_GT] = ACTIONS(955), - [anon_sym_out_GT] = ACTIONS(955), - [anon_sym_e_GT] = ACTIONS(955), - [anon_sym_o_GT] = ACTIONS(955), - [anon_sym_err_PLUSout_GT] = ACTIONS(955), - [anon_sym_out_PLUSerr_GT] = ACTIONS(955), - [anon_sym_o_PLUSe_GT] = ACTIONS(955), - [anon_sym_e_PLUSo_GT] = ACTIONS(955), - [anon_sym_err_GT_GT] = ACTIONS(957), - [anon_sym_out_GT_GT] = ACTIONS(957), - [anon_sym_e_GT_GT] = ACTIONS(957), - [anon_sym_o_GT_GT] = ACTIONS(957), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(957), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(957), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(957), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(957), + [aux_sym_cmd_identifier_token41] = ACTIONS(1565), + [sym__newline] = ACTIONS(1565), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_err_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_GT_PIPE] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), + [anon_sym_RPAREN] = ACTIONS(1567), + [aux_sym_ctrl_match_token1] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1567), + [anon_sym_DOT_DOT2] = ACTIONS(1565), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), + [aux_sym__immediate_decimal_token2] = ACTIONS(4692), + [sym_filesize_unit] = ACTIONS(1567), + [sym_duration_unit] = ACTIONS(1567), + [anon_sym_err_GT] = ACTIONS(1565), + [anon_sym_out_GT] = ACTIONS(1565), + [anon_sym_e_GT] = ACTIONS(1565), + [anon_sym_o_GT] = ACTIONS(1565), + [anon_sym_err_PLUSout_GT] = ACTIONS(1565), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), + [anon_sym_o_PLUSe_GT] = ACTIONS(1565), + [anon_sym_e_PLUSo_GT] = ACTIONS(1565), + [anon_sym_err_GT_GT] = ACTIONS(1567), + [anon_sym_out_GT_GT] = ACTIONS(1567), + [anon_sym_e_GT_GT] = ACTIONS(1567), + [anon_sym_o_GT_GT] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), [anon_sym_POUND] = ACTIONS(247), }, [1326] = { - [sym__val_range] = STATE(8049), - [sym__value] = STATE(6272), - [sym_val_nothing] = STATE(2431), - [sym_val_bool] = STATE(3916), - [sym_val_variable] = STATE(2431), - [sym_val_number] = STATE(2431), - [sym__val_number_decimal] = STATE(5842), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(2431), - [sym_val_filesize] = STATE(2431), - [sym_val_binary] = STATE(2431), - [sym_val_string] = STATE(2431), - [sym__str_double_quotes] = STATE(2158), - [sym_val_interpolated] = STATE(2431), - [sym__inter_single_quotes] = STATE(2465), - [sym__inter_double_quotes] = STATE(2466), - [sym_val_list] = STATE(2431), - [sym_val_record] = STATE(2431), - [sym_val_table] = STATE(2431), - [sym_val_closure] = STATE(2431), - [sym_unquoted] = STATE(6274), - [sym__unquoted_anonymous_prefix] = STATE(7765), [sym_comment] = STATE(1326), - [anon_sym_true] = ACTIONS(3213), - [anon_sym_false] = ACTIONS(3213), - [anon_sym_null] = ACTIONS(3215), - [aux_sym_cmd_identifier_token38] = ACTIONS(3217), - [aux_sym_cmd_identifier_token39] = ACTIONS(3217), - [aux_sym_cmd_identifier_token40] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(4248), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_DOLLAR] = ACTIONS(4252), - [aux_sym_ctrl_match_token1] = ACTIONS(4254), - [anon_sym_DOT_DOT] = ACTIONS(4256), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4258), - [anon_sym_DOT_DOT_LT] = ACTIONS(4258), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(4260), - [sym__str_single_quotes] = ACTIONS(4262), - [sym__str_back_ticks] = ACTIONS(4262), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3241), + [ts_builtin_sym_end] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [aux_sym_cmd_identifier_token38] = ACTIONS(1645), + [aux_sym_cmd_identifier_token39] = ACTIONS(1645), + [aux_sym_cmd_identifier_token40] = ACTIONS(1645), + [sym__newline] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_err_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_GT_PIPE] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), + [anon_sym_LBRACK] = ACTIONS(1645), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_DASH] = ACTIONS(1643), + [aux_sym_ctrl_match_token1] = ACTIONS(1645), + [anon_sym_DOT_DOT] = ACTIONS(1643), + [anon_sym_LPAREN2] = ACTIONS(1645), + [anon_sym_DOT] = ACTIONS(4694), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1645), + [anon_sym_DOT_DOT_LT] = ACTIONS(1645), + [aux_sym__immediate_decimal_token2] = ACTIONS(4696), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1645), + [aux_sym__val_number_decimal_token3] = ACTIONS(1645), + [aux_sym__val_number_decimal_token4] = ACTIONS(1645), + [aux_sym__val_number_token1] = ACTIONS(1645), + [aux_sym__val_number_token2] = ACTIONS(1645), + [aux_sym__val_number_token3] = ACTIONS(1645), + [anon_sym_0b] = ACTIONS(1643), + [anon_sym_0o] = ACTIONS(1643), + [anon_sym_0x] = ACTIONS(1643), + [sym_val_date] = ACTIONS(1645), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym__str_single_quotes] = ACTIONS(1645), + [sym__str_back_ticks] = ACTIONS(1645), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1645), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1645), + [anon_sym_err_GT] = ACTIONS(1643), + [anon_sym_out_GT] = ACTIONS(1643), + [anon_sym_e_GT] = ACTIONS(1643), + [anon_sym_o_GT] = ACTIONS(1643), + [anon_sym_err_PLUSout_GT] = ACTIONS(1643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), + [anon_sym_o_PLUSe_GT] = ACTIONS(1643), + [anon_sym_e_PLUSo_GT] = ACTIONS(1643), + [anon_sym_err_GT_GT] = ACTIONS(1645), + [anon_sym_out_GT_GT] = ACTIONS(1645), + [anon_sym_e_GT_GT] = ACTIONS(1645), + [anon_sym_o_GT_GT] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [aux_sym_unquoted_token1] = ACTIONS(1643), + [aux_sym_unquoted_token2] = ACTIONS(1643), [anon_sym_POUND] = ACTIONS(247), }, [1327] = { [sym_comment] = STATE(1327), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [aux_sym_cmd_identifier_token38] = ACTIONS(1475), - [aux_sym_cmd_identifier_token39] = ACTIONS(1475), - [aux_sym_cmd_identifier_token40] = ACTIONS(1475), - [sym__newline] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_err_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_GT_PIPE] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1473), - [anon_sym_RPAREN] = ACTIONS(1475), - [anon_sym_DOLLAR] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1473), - [aux_sym_ctrl_match_token1] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_DOT_DOT] = ACTIONS(1473), - [anon_sym_LPAREN2] = ACTIONS(1475), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), - [anon_sym_DOT_DOT_LT] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [aux_sym__val_number_decimal_token1] = ACTIONS(1473), - [aux_sym__val_number_decimal_token2] = ACTIONS(1475), - [aux_sym__val_number_decimal_token3] = ACTIONS(1475), - [aux_sym__val_number_decimal_token4] = ACTIONS(1475), - [aux_sym__val_number_token1] = ACTIONS(1475), - [aux_sym__val_number_token2] = ACTIONS(1475), - [aux_sym__val_number_token3] = ACTIONS(1475), - [anon_sym_0b] = ACTIONS(1473), - [sym_filesize_unit] = ACTIONS(1475), - [sym_duration_unit] = ACTIONS(1475), - [anon_sym_0o] = ACTIONS(1473), - [anon_sym_0x] = ACTIONS(1473), - [sym_val_date] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym__str_single_quotes] = ACTIONS(1475), - [sym__str_back_ticks] = ACTIONS(1475), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1473), - [anon_sym_out_GT] = ACTIONS(1473), - [anon_sym_e_GT] = ACTIONS(1473), - [anon_sym_o_GT] = ACTIONS(1473), - [anon_sym_err_PLUSout_GT] = ACTIONS(1473), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), - [anon_sym_o_PLUSe_GT] = ACTIONS(1473), - [anon_sym_e_PLUSo_GT] = ACTIONS(1473), - [anon_sym_err_GT_GT] = ACTIONS(1475), - [anon_sym_out_GT_GT] = ACTIONS(1475), - [anon_sym_e_GT_GT] = ACTIONS(1475), - [anon_sym_o_GT_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), - [aux_sym_unquoted_token1] = ACTIONS(1473), - [aux_sym_unquoted_token2] = ACTIONS(1473), + [aux_sym_cmd_identifier_token41] = ACTIONS(1497), + [sym__newline] = ACTIONS(1497), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_RPAREN] = ACTIONS(1499), + [aux_sym_ctrl_match_token1] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), + [aux_sym__immediate_decimal_token2] = ACTIONS(4656), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1499), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(247), }, [1328] = { [sym_comment] = STATE(1328), - [anon_sym_EQ] = ACTIONS(994), - [anon_sym_PLUS_EQ] = ACTIONS(996), - [anon_sym_DASH_EQ] = ACTIONS(996), - [anon_sym_STAR_EQ] = ACTIONS(996), - [anon_sym_SLASH_EQ] = ACTIONS(996), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(996), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_RPAREN] = ACTIONS(996), - [anon_sym_COMMA] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [aux_sym_expr_binary_token1] = ACTIONS(996), - [aux_sym_expr_binary_token2] = ACTIONS(996), - [aux_sym_expr_binary_token3] = ACTIONS(996), - [aux_sym_expr_binary_token4] = ACTIONS(996), - [aux_sym_expr_binary_token5] = ACTIONS(996), - [aux_sym_expr_binary_token6] = ACTIONS(996), - [aux_sym_expr_binary_token7] = ACTIONS(996), - [aux_sym_expr_binary_token8] = ACTIONS(996), - [aux_sym_expr_binary_token9] = ACTIONS(996), - [aux_sym_expr_binary_token10] = ACTIONS(996), - [aux_sym_expr_binary_token11] = ACTIONS(996), - [aux_sym_expr_binary_token12] = ACTIONS(996), - [aux_sym_expr_binary_token13] = ACTIONS(996), - [aux_sym_expr_binary_token14] = ACTIONS(996), - [aux_sym_expr_binary_token15] = ACTIONS(996), - [aux_sym_expr_binary_token16] = ACTIONS(996), - [aux_sym_expr_binary_token17] = ACTIONS(996), - [aux_sym_expr_binary_token18] = ACTIONS(996), - [aux_sym_expr_binary_token19] = ACTIONS(996), - [aux_sym_expr_binary_token20] = ACTIONS(996), - [aux_sym_expr_binary_token21] = ACTIONS(996), - [aux_sym_expr_binary_token22] = ACTIONS(996), - [aux_sym_expr_binary_token23] = ACTIONS(996), - [aux_sym_expr_binary_token24] = ACTIONS(996), - [aux_sym_expr_binary_token25] = ACTIONS(996), - [aux_sym_expr_binary_token26] = ACTIONS(996), - [aux_sym_expr_binary_token27] = ACTIONS(996), - [aux_sym_expr_binary_token28] = ACTIONS(996), - [anon_sym_DOT_DOT2] = ACTIONS(994), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), - [anon_sym_DOT_DOT_LT2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(994), - [anon_sym_out_GT] = ACTIONS(994), - [anon_sym_e_GT] = ACTIONS(994), - [anon_sym_o_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT] = ACTIONS(994), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [ts_builtin_sym_end] = ACTIONS(1519), + [aux_sym_cmd_identifier_token41] = ACTIONS(1517), + [sym__newline] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1519), + [anon_sym_err_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_GT_PIPE] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), + [aux_sym_expr_binary_token1] = ACTIONS(1519), + [aux_sym_expr_binary_token2] = ACTIONS(1519), + [aux_sym_expr_binary_token3] = ACTIONS(1519), + [aux_sym_expr_binary_token4] = ACTIONS(1519), + [aux_sym_expr_binary_token5] = ACTIONS(1519), + [aux_sym_expr_binary_token6] = ACTIONS(1519), + [aux_sym_expr_binary_token7] = ACTIONS(1519), + [aux_sym_expr_binary_token8] = ACTIONS(1519), + [aux_sym_expr_binary_token9] = ACTIONS(1519), + [aux_sym_expr_binary_token10] = ACTIONS(1519), + [aux_sym_expr_binary_token11] = ACTIONS(1519), + [aux_sym_expr_binary_token12] = ACTIONS(1519), + [aux_sym_expr_binary_token13] = ACTIONS(1519), + [aux_sym_expr_binary_token14] = ACTIONS(1519), + [aux_sym_expr_binary_token15] = ACTIONS(1519), + [aux_sym_expr_binary_token16] = ACTIONS(1519), + [aux_sym_expr_binary_token17] = ACTIONS(1519), + [aux_sym_expr_binary_token18] = ACTIONS(1519), + [aux_sym_expr_binary_token19] = ACTIONS(1519), + [aux_sym_expr_binary_token20] = ACTIONS(1519), + [aux_sym_expr_binary_token21] = ACTIONS(1519), + [aux_sym_expr_binary_token22] = ACTIONS(1519), + [aux_sym_expr_binary_token23] = ACTIONS(1519), + [aux_sym_expr_binary_token24] = ACTIONS(1519), + [aux_sym_expr_binary_token25] = ACTIONS(1519), + [aux_sym_expr_binary_token26] = ACTIONS(1519), + [aux_sym_expr_binary_token27] = ACTIONS(1519), + [aux_sym_expr_binary_token28] = ACTIONS(1519), + [anon_sym_DOT_DOT2] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), + [aux_sym__immediate_decimal_token1] = ACTIONS(4698), + [aux_sym__immediate_decimal_token2] = ACTIONS(4700), + [sym_filesize_unit] = ACTIONS(1519), + [sym_duration_unit] = ACTIONS(1519), + [anon_sym_err_GT] = ACTIONS(1517), + [anon_sym_out_GT] = ACTIONS(1517), + [anon_sym_e_GT] = ACTIONS(1517), + [anon_sym_o_GT] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT] = ACTIONS(1517), + [anon_sym_err_GT_GT] = ACTIONS(1519), + [anon_sym_out_GT_GT] = ACTIONS(1519), + [anon_sym_e_GT_GT] = ACTIONS(1519), + [anon_sym_o_GT_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), [anon_sym_POUND] = ACTIONS(247), }, [1329] = { [sym_comment] = STATE(1329), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [anon_sym_null] = ACTIONS(1483), - [aux_sym_cmd_identifier_token38] = ACTIONS(1483), - [aux_sym_cmd_identifier_token39] = ACTIONS(1483), - [aux_sym_cmd_identifier_token40] = ACTIONS(1483), - [sym__newline] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_err_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_GT_PIPE] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_LPAREN] = ACTIONS(1481), - [anon_sym_RPAREN] = ACTIONS(1483), - [anon_sym_DOLLAR] = ACTIONS(1481), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1481), - [aux_sym_ctrl_match_token1] = ACTIONS(1483), - [anon_sym_RBRACE] = ACTIONS(1483), - [anon_sym_DOT_DOT] = ACTIONS(1481), - [anon_sym_LPAREN2] = ACTIONS(1483), - [anon_sym_DOT_DOT2] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), - [anon_sym_DOT_DOT_LT] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), - [aux_sym__val_number_decimal_token1] = ACTIONS(1481), - [aux_sym__val_number_decimal_token2] = ACTIONS(1483), - [aux_sym__val_number_decimal_token3] = ACTIONS(1483), - [aux_sym__val_number_decimal_token4] = ACTIONS(1483), - [aux_sym__val_number_token1] = ACTIONS(1483), - [aux_sym__val_number_token2] = ACTIONS(1483), - [aux_sym__val_number_token3] = ACTIONS(1483), - [anon_sym_0b] = ACTIONS(1481), - [sym_filesize_unit] = ACTIONS(1483), - [sym_duration_unit] = ACTIONS(1483), - [anon_sym_0o] = ACTIONS(1481), - [anon_sym_0x] = ACTIONS(1481), - [sym_val_date] = ACTIONS(1483), - [anon_sym_DQUOTE] = ACTIONS(1483), - [sym__str_single_quotes] = ACTIONS(1483), - [sym__str_back_ticks] = ACTIONS(1483), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1483), - [anon_sym_err_GT] = ACTIONS(1481), - [anon_sym_out_GT] = ACTIONS(1481), - [anon_sym_e_GT] = ACTIONS(1481), - [anon_sym_o_GT] = ACTIONS(1481), - [anon_sym_err_PLUSout_GT] = ACTIONS(1481), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), - [anon_sym_o_PLUSe_GT] = ACTIONS(1481), - [anon_sym_e_PLUSo_GT] = ACTIONS(1481), - [anon_sym_err_GT_GT] = ACTIONS(1483), - [anon_sym_out_GT_GT] = ACTIONS(1483), - [anon_sym_e_GT_GT] = ACTIONS(1483), - [anon_sym_o_GT_GT] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), - [aux_sym_unquoted_token1] = ACTIONS(1481), - [aux_sym_unquoted_token2] = ACTIONS(1481), + [aux_sym_cmd_identifier_token41] = ACTIONS(1565), + [sym__newline] = ACTIONS(1565), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_err_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_GT_PIPE] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), + [anon_sym_RBRACE] = ACTIONS(1567), + [anon_sym_EQ_GT] = ACTIONS(1567), + [aux_sym_expr_binary_token1] = ACTIONS(1567), + [aux_sym_expr_binary_token2] = ACTIONS(1567), + [aux_sym_expr_binary_token3] = ACTIONS(1567), + [aux_sym_expr_binary_token4] = ACTIONS(1567), + [aux_sym_expr_binary_token5] = ACTIONS(1567), + [aux_sym_expr_binary_token6] = ACTIONS(1567), + [aux_sym_expr_binary_token7] = ACTIONS(1567), + [aux_sym_expr_binary_token8] = ACTIONS(1567), + [aux_sym_expr_binary_token9] = ACTIONS(1567), + [aux_sym_expr_binary_token10] = ACTIONS(1567), + [aux_sym_expr_binary_token11] = ACTIONS(1567), + [aux_sym_expr_binary_token12] = ACTIONS(1567), + [aux_sym_expr_binary_token13] = ACTIONS(1567), + [aux_sym_expr_binary_token14] = ACTIONS(1567), + [aux_sym_expr_binary_token15] = ACTIONS(1567), + [aux_sym_expr_binary_token16] = ACTIONS(1567), + [aux_sym_expr_binary_token17] = ACTIONS(1567), + [aux_sym_expr_binary_token18] = ACTIONS(1567), + [aux_sym_expr_binary_token19] = ACTIONS(1567), + [aux_sym_expr_binary_token20] = ACTIONS(1567), + [aux_sym_expr_binary_token21] = ACTIONS(1567), + [aux_sym_expr_binary_token22] = ACTIONS(1567), + [aux_sym_expr_binary_token23] = ACTIONS(1567), + [aux_sym_expr_binary_token24] = ACTIONS(1567), + [aux_sym_expr_binary_token25] = ACTIONS(1567), + [aux_sym_expr_binary_token26] = ACTIONS(1567), + [aux_sym_expr_binary_token27] = ACTIONS(1567), + [aux_sym_expr_binary_token28] = ACTIONS(1567), + [anon_sym_DOT_DOT2] = ACTIONS(1565), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), + [sym_filesize_unit] = ACTIONS(1567), + [sym_duration_unit] = ACTIONS(1567), + [aux_sym_record_entry_token1] = ACTIONS(1567), + [anon_sym_err_GT] = ACTIONS(1565), + [anon_sym_out_GT] = ACTIONS(1565), + [anon_sym_e_GT] = ACTIONS(1565), + [anon_sym_o_GT] = ACTIONS(1565), + [anon_sym_err_PLUSout_GT] = ACTIONS(1565), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), + [anon_sym_o_PLUSe_GT] = ACTIONS(1565), + [anon_sym_e_PLUSo_GT] = ACTIONS(1565), + [anon_sym_err_GT_GT] = ACTIONS(1567), + [anon_sym_out_GT_GT] = ACTIONS(1567), + [anon_sym_e_GT_GT] = ACTIONS(1567), + [anon_sym_o_GT_GT] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), [anon_sym_POUND] = ACTIONS(247), }, [1330] = { [sym_comment] = STATE(1330), - [anon_sym_true] = ACTIONS(1521), - [anon_sym_false] = ACTIONS(1521), - [anon_sym_null] = ACTIONS(1521), - [aux_sym_cmd_identifier_token38] = ACTIONS(1521), - [aux_sym_cmd_identifier_token39] = ACTIONS(1521), - [aux_sym_cmd_identifier_token40] = ACTIONS(1521), - [sym__newline] = ACTIONS(1521), - [anon_sym_SEMI] = ACTIONS(1521), - [anon_sym_PIPE] = ACTIONS(1521), - [anon_sym_err_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_GT_PIPE] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1519), - [anon_sym_RPAREN] = ACTIONS(1521), - [anon_sym_DOLLAR] = ACTIONS(1519), - [anon_sym_DASH_DASH] = ACTIONS(1521), - [anon_sym_DASH] = ACTIONS(1519), - [aux_sym_ctrl_match_token1] = ACTIONS(1521), - [anon_sym_RBRACE] = ACTIONS(1521), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_LPAREN2] = ACTIONS(1521), - [anon_sym_DOT_DOT2] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1519), - [anon_sym_DOT_DOT_LT] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), - [aux_sym__val_number_decimal_token1] = ACTIONS(1519), - [aux_sym__val_number_decimal_token2] = ACTIONS(1521), - [aux_sym__val_number_decimal_token3] = ACTIONS(1521), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(1521), - [aux_sym__val_number_token2] = ACTIONS(1521), - [aux_sym__val_number_token3] = ACTIONS(1521), - [anon_sym_0b] = ACTIONS(1519), - [sym_filesize_unit] = ACTIONS(1521), - [sym_duration_unit] = ACTIONS(1521), - [anon_sym_0o] = ACTIONS(1519), - [anon_sym_0x] = ACTIONS(1519), - [sym_val_date] = ACTIONS(1521), - [anon_sym_DQUOTE] = ACTIONS(1521), - [sym__str_single_quotes] = ACTIONS(1521), - [sym__str_back_ticks] = ACTIONS(1521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1521), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1521), - [anon_sym_err_GT] = ACTIONS(1519), - [anon_sym_out_GT] = ACTIONS(1519), - [anon_sym_e_GT] = ACTIONS(1519), - [anon_sym_o_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT] = ACTIONS(1519), - [anon_sym_err_GT_GT] = ACTIONS(1521), - [anon_sym_out_GT_GT] = ACTIONS(1521), - [anon_sym_e_GT_GT] = ACTIONS(1521), - [anon_sym_o_GT_GT] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), - [aux_sym_unquoted_token1] = ACTIONS(1519), - [aux_sym_unquoted_token2] = ACTIONS(1519), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_RPAREN] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_LPAREN2] = ACTIONS(1499), + [aux_sym_expr_binary_token1] = ACTIONS(1499), + [aux_sym_expr_binary_token2] = ACTIONS(1499), + [aux_sym_expr_binary_token3] = ACTIONS(1499), + [aux_sym_expr_binary_token4] = ACTIONS(1499), + [aux_sym_expr_binary_token5] = ACTIONS(1499), + [aux_sym_expr_binary_token6] = ACTIONS(1499), + [aux_sym_expr_binary_token7] = ACTIONS(1499), + [aux_sym_expr_binary_token8] = ACTIONS(1499), + [aux_sym_expr_binary_token9] = ACTIONS(1499), + [aux_sym_expr_binary_token10] = ACTIONS(1499), + [aux_sym_expr_binary_token11] = ACTIONS(1499), + [aux_sym_expr_binary_token12] = ACTIONS(1499), + [aux_sym_expr_binary_token13] = ACTIONS(1499), + [aux_sym_expr_binary_token14] = ACTIONS(1499), + [aux_sym_expr_binary_token15] = ACTIONS(1499), + [aux_sym_expr_binary_token16] = ACTIONS(1499), + [aux_sym_expr_binary_token17] = ACTIONS(1499), + [aux_sym_expr_binary_token18] = ACTIONS(1499), + [aux_sym_expr_binary_token19] = ACTIONS(1499), + [aux_sym_expr_binary_token20] = ACTIONS(1499), + [aux_sym_expr_binary_token21] = ACTIONS(1499), + [aux_sym_expr_binary_token22] = ACTIONS(1499), + [aux_sym_expr_binary_token23] = ACTIONS(1499), + [aux_sym_expr_binary_token24] = ACTIONS(1499), + [aux_sym_expr_binary_token25] = ACTIONS(1499), + [aux_sym_expr_binary_token26] = ACTIONS(1499), + [aux_sym_expr_binary_token27] = ACTIONS(1499), + [aux_sym_expr_binary_token28] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1499), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), + [aux_sym_unquoted_token2] = ACTIONS(1497), [anon_sym_POUND] = ACTIONS(247), }, [1331] = { + [sym_cell_path] = STATE(1484), + [sym_path] = STATE(1206), [sym_comment] = STATE(1331), - [anon_sym_true] = ACTIONS(1587), - [anon_sym_false] = ACTIONS(1587), - [anon_sym_null] = ACTIONS(1587), - [aux_sym_cmd_identifier_token38] = ACTIONS(1587), - [aux_sym_cmd_identifier_token39] = ACTIONS(1587), - [aux_sym_cmd_identifier_token40] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_RPAREN] = ACTIONS(1587), - [anon_sym_DOLLAR] = ACTIONS(1585), - [anon_sym_DASH_DASH] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1585), - [aux_sym_ctrl_match_token1] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1587), - [anon_sym_DOT_DOT] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1585), - [anon_sym_DOT_DOT_LT] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1587), - [aux_sym__val_number_decimal_token4] = ACTIONS(1587), - [aux_sym__val_number_token1] = ACTIONS(1587), - [aux_sym__val_number_token2] = ACTIONS(1587), - [aux_sym__val_number_token3] = ACTIONS(1587), - [anon_sym_0b] = ACTIONS(1585), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1587), - [anon_sym_0o] = ACTIONS(1585), - [anon_sym_0x] = ACTIONS(1585), - [sym_val_date] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1587), - [sym__str_single_quotes] = ACTIONS(1587), - [sym__str_back_ticks] = ACTIONS(1587), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1585), - [anon_sym_out_GT] = ACTIONS(1585), - [anon_sym_e_GT] = ACTIONS(1585), - [anon_sym_o_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT] = ACTIONS(1585), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), - [aux_sym_unquoted_token1] = ACTIONS(1585), - [aux_sym_unquoted_token2] = ACTIONS(1585), + [aux_sym_cell_path_repeat1] = STATE(1065), + [sym__newline] = ACTIONS(1686), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_err_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_GT_PIPE] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1688), + [anon_sym_RPAREN] = ACTIONS(1688), + [aux_sym_ctrl_match_token1] = ACTIONS(1688), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1688), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1688), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1688), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1688), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1688), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1688), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1688), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1688), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1688), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1688), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1688), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1688), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1688), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1688), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1688), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1688), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1688), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1688), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1688), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1688), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1688), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1688), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1688), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1688), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1688), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1688), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1688), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1688), + [anon_sym_DOT_DOT2] = ACTIONS(1686), + [anon_sym_DOT] = ACTIONS(3894), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1688), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1688), + [anon_sym_err_GT] = ACTIONS(1686), + [anon_sym_out_GT] = ACTIONS(1686), + [anon_sym_e_GT] = ACTIONS(1686), + [anon_sym_o_GT] = ACTIONS(1686), + [anon_sym_err_PLUSout_GT] = ACTIONS(1686), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1686), + [anon_sym_o_PLUSe_GT] = ACTIONS(1686), + [anon_sym_e_PLUSo_GT] = ACTIONS(1686), + [anon_sym_err_GT_GT] = ACTIONS(1688), + [anon_sym_out_GT_GT] = ACTIONS(1688), + [anon_sym_e_GT_GT] = ACTIONS(1688), + [anon_sym_o_GT_GT] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1688), [anon_sym_POUND] = ACTIONS(247), }, [1332] = { - [sym__val_range] = STATE(7865), - [sym__value] = STATE(6208), - [sym_val_nothing] = STATE(5312), - [sym_val_bool] = STATE(6000), - [sym_val_variable] = STATE(5312), - [sym_val_number] = STATE(5312), - [sym__val_number_decimal] = STATE(5531), - [sym__val_number] = STATE(5409), - [sym_val_duration] = STATE(5312), - [sym_val_filesize] = STATE(5312), - [sym_val_binary] = STATE(5312), - [sym_val_string] = STATE(5312), - [sym__str_double_quotes] = STATE(4863), - [sym_val_interpolated] = STATE(5312), - [sym__inter_single_quotes] = STATE(5273), - [sym__inter_double_quotes] = STATE(5275), - [sym_val_list] = STATE(5312), - [sym_val_record] = STATE(5312), - [sym_val_table] = STATE(5312), - [sym_val_closure] = STATE(5312), - [sym_unquoted] = STATE(6209), - [sym__unquoted_anonymous_prefix] = STATE(7927), [sym_comment] = STATE(1332), - [anon_sym_true] = ACTIONS(4218), - [anon_sym_false] = ACTIONS(4218), - [anon_sym_null] = ACTIONS(4220), - [aux_sym_cmd_identifier_token38] = ACTIONS(4312), - [aux_sym_cmd_identifier_token39] = ACTIONS(4312), - [aux_sym_cmd_identifier_token40] = ACTIONS(4312), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4226), - [anon_sym_DOLLAR] = ACTIONS(4272), - [aux_sym_ctrl_match_token1] = ACTIONS(4274), - [anon_sym_DOT_DOT] = ACTIONS(4232), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4234), - [anon_sym_DOT_DOT_LT] = ACTIONS(4234), - [aux_sym__val_number_decimal_token1] = ACTIONS(4314), - [aux_sym__val_number_decimal_token2] = ACTIONS(4316), - [aux_sym__val_number_decimal_token3] = ACTIONS(4318), - [aux_sym__val_number_decimal_token4] = ACTIONS(4320), - [aux_sym__val_number_token1] = ACTIONS(3697), - [aux_sym__val_number_token2] = ACTIONS(3697), - [aux_sym__val_number_token3] = ACTIONS(3697), - [anon_sym_0b] = ACTIONS(3699), - [anon_sym_0o] = ACTIONS(3701), - [anon_sym_0x] = ACTIONS(3701), - [sym_val_date] = ACTIONS(4244), - [anon_sym_DQUOTE] = ACTIONS(4286), - [sym__str_single_quotes] = ACTIONS(4288), - [sym__str_back_ticks] = ACTIONS(4288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(4246), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [aux_sym_cmd_identifier_token38] = ACTIONS(1645), + [aux_sym_cmd_identifier_token39] = ACTIONS(1645), + [aux_sym_cmd_identifier_token40] = ACTIONS(1645), + [sym__newline] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_err_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_GT_PIPE] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), + [anon_sym_LBRACK] = ACTIONS(1645), + [anon_sym_LPAREN] = ACTIONS(1645), + [anon_sym_RPAREN] = ACTIONS(1645), + [anon_sym_DOLLAR] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_DASH] = ACTIONS(1643), + [aux_sym_ctrl_match_token1] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(1645), + [anon_sym_DOT_DOT] = ACTIONS(1643), + [anon_sym_DOT_DOT2] = ACTIONS(1643), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), + [anon_sym_DOT_DOT_LT] = ACTIONS(1643), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1645), + [aux_sym__val_number_decimal_token3] = ACTIONS(1645), + [aux_sym__val_number_decimal_token4] = ACTIONS(1645), + [aux_sym__val_number_token1] = ACTIONS(1645), + [aux_sym__val_number_token2] = ACTIONS(1645), + [aux_sym__val_number_token3] = ACTIONS(1645), + [anon_sym_0b] = ACTIONS(1643), + [anon_sym_0o] = ACTIONS(1643), + [anon_sym_0x] = ACTIONS(1643), + [sym_val_date] = ACTIONS(1645), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym__str_single_quotes] = ACTIONS(1645), + [sym__str_back_ticks] = ACTIONS(1645), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1645), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1645), + [anon_sym_err_GT] = ACTIONS(1643), + [anon_sym_out_GT] = ACTIONS(1643), + [anon_sym_e_GT] = ACTIONS(1643), + [anon_sym_o_GT] = ACTIONS(1643), + [anon_sym_err_PLUSout_GT] = ACTIONS(1643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), + [anon_sym_o_PLUSe_GT] = ACTIONS(1643), + [anon_sym_e_PLUSo_GT] = ACTIONS(1643), + [anon_sym_err_GT_GT] = ACTIONS(1645), + [anon_sym_out_GT_GT] = ACTIONS(1645), + [anon_sym_e_GT_GT] = ACTIONS(1645), + [anon_sym_o_GT_GT] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [aux_sym_unquoted_token1] = ACTIONS(1643), [anon_sym_POUND] = ACTIONS(247), }, [1333] = { - [sym__val_range] = STATE(7776), - [sym__value] = STATE(5794), - [sym_val_nothing] = STATE(4250), - [sym_val_bool] = STATE(7560), - [sym_val_variable] = STATE(4250), - [sym_val_number] = STATE(4250), - [sym__val_number_decimal] = STATE(5887), - [sym__val_number] = STATE(3713), - [sym_val_duration] = STATE(4250), - [sym_val_filesize] = STATE(4250), - [sym_val_binary] = STATE(4250), - [sym_val_string] = STATE(4250), - [sym__str_double_quotes] = STATE(2802), - [sym_val_interpolated] = STATE(4250), - [sym__inter_single_quotes] = STATE(4209), - [sym__inter_double_quotes] = STATE(4211), - [sym_val_list] = STATE(4250), - [sym_val_record] = STATE(4250), - [sym_val_table] = STATE(4250), - [sym_val_closure] = STATE(4250), - [sym_unquoted] = STATE(5795), - [sym__unquoted_anonymous_prefix] = STATE(7986), + [sym_cell_path] = STATE(1859), + [sym_path] = STATE(1599), [sym_comment] = STATE(1333), - [anon_sym_true] = ACTIONS(4331), - [anon_sym_false] = ACTIONS(4331), - [anon_sym_null] = ACTIONS(4333), - [aux_sym_cmd_identifier_token38] = ACTIONS(4335), - [aux_sym_cmd_identifier_token39] = ACTIONS(4335), - [aux_sym_cmd_identifier_token40] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(3495), - [anon_sym_LPAREN] = ACTIONS(4337), - [anon_sym_DOLLAR] = ACTIONS(4228), - [aux_sym_ctrl_match_token1] = ACTIONS(3503), - [anon_sym_DOT_DOT] = ACTIONS(4339), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4341), - [anon_sym_DOT_DOT_LT] = ACTIONS(4341), - [aux_sym__val_number_decimal_token1] = ACTIONS(4343), - [aux_sym__val_number_decimal_token2] = ACTIONS(4345), - [aux_sym__val_number_decimal_token3] = ACTIONS(4347), - [aux_sym__val_number_decimal_token4] = ACTIONS(4349), - [aux_sym__val_number_token1] = ACTIONS(3519), - [aux_sym__val_number_token2] = ACTIONS(3519), - [aux_sym__val_number_token3] = ACTIONS(3519), - [anon_sym_0b] = ACTIONS(3521), - [anon_sym_0o] = ACTIONS(3523), - [anon_sym_0x] = ACTIONS(3523), - [sym_val_date] = ACTIONS(4351), - [anon_sym_DQUOTE] = ACTIONS(3527), - [sym__str_single_quotes] = ACTIONS(3529), - [sym__str_back_ticks] = ACTIONS(3529), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3531), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3535), + [aux_sym_cell_path_repeat1] = STATE(1437), + [ts_builtin_sym_end] = ACTIONS(1892), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1892), + [aux_sym_cmd_identifier_token38] = ACTIONS(1892), + [aux_sym_cmd_identifier_token39] = ACTIONS(1892), + [aux_sym_cmd_identifier_token40] = ACTIONS(1892), + [sym__newline] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_err_GT_PIPE] = ACTIONS(1892), + [anon_sym_out_GT_PIPE] = ACTIONS(1892), + [anon_sym_e_GT_PIPE] = ACTIONS(1892), + [anon_sym_o_GT_PIPE] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_DASH_DASH] = ACTIONS(1892), + [anon_sym_DASH] = ACTIONS(1890), + [aux_sym_ctrl_match_token1] = ACTIONS(1892), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_DOT] = ACTIONS(4674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1892), + [anon_sym_DOT_DOT_LT] = ACTIONS(1892), + [aux_sym__val_number_decimal_token1] = ACTIONS(1890), + [aux_sym__val_number_decimal_token2] = ACTIONS(1892), + [aux_sym__val_number_decimal_token3] = ACTIONS(1892), + [aux_sym__val_number_decimal_token4] = ACTIONS(1892), + [aux_sym__val_number_token1] = ACTIONS(1892), + [aux_sym__val_number_token2] = ACTIONS(1892), + [aux_sym__val_number_token3] = ACTIONS(1892), + [anon_sym_0b] = ACTIONS(1890), + [anon_sym_0o] = ACTIONS(1890), + [anon_sym_0x] = ACTIONS(1890), + [sym_val_date] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [sym__str_single_quotes] = ACTIONS(1892), + [sym__str_back_ticks] = ACTIONS(1892), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1892), + [anon_sym_err_GT] = ACTIONS(1890), + [anon_sym_out_GT] = ACTIONS(1890), + [anon_sym_e_GT] = ACTIONS(1890), + [anon_sym_o_GT] = ACTIONS(1890), + [anon_sym_err_PLUSout_GT] = ACTIONS(1890), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1890), + [anon_sym_o_PLUSe_GT] = ACTIONS(1890), + [anon_sym_e_PLUSo_GT] = ACTIONS(1890), + [anon_sym_err_GT_GT] = ACTIONS(1892), + [anon_sym_out_GT_GT] = ACTIONS(1892), + [anon_sym_e_GT_GT] = ACTIONS(1892), + [anon_sym_o_GT_GT] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1892), + [aux_sym_unquoted_token1] = ACTIONS(1890), [anon_sym_POUND] = ACTIONS(247), }, [1334] = { - [sym__val_range] = STATE(7865), - [sym__value] = STATE(6291), - [sym_val_nothing] = STATE(5312), - [sym_val_bool] = STATE(6000), - [sym_val_variable] = STATE(5312), - [sym_val_number] = STATE(5312), - [sym__val_number_decimal] = STATE(5531), - [sym__val_number] = STATE(5409), - [sym_val_duration] = STATE(5312), - [sym_val_filesize] = STATE(5312), - [sym_val_binary] = STATE(5312), - [sym_val_string] = STATE(5312), - [sym__str_double_quotes] = STATE(4863), - [sym_val_interpolated] = STATE(5312), - [sym__inter_single_quotes] = STATE(5273), - [sym__inter_double_quotes] = STATE(5275), - [sym_val_list] = STATE(5312), - [sym_val_record] = STATE(5312), - [sym_val_table] = STATE(5312), - [sym_val_closure] = STATE(5312), - [sym_unquoted] = STATE(6292), - [sym__unquoted_anonymous_prefix] = STATE(7927), [sym_comment] = STATE(1334), - [anon_sym_true] = ACTIONS(4218), - [anon_sym_false] = ACTIONS(4218), - [anon_sym_null] = ACTIONS(4220), - [aux_sym_cmd_identifier_token38] = ACTIONS(4312), - [aux_sym_cmd_identifier_token39] = ACTIONS(4312), - [aux_sym_cmd_identifier_token40] = ACTIONS(4312), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4226), - [anon_sym_DOLLAR] = ACTIONS(4272), - [aux_sym_ctrl_match_token1] = ACTIONS(4274), - [anon_sym_DOT_DOT] = ACTIONS(4232), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4234), - [anon_sym_DOT_DOT_LT] = ACTIONS(4234), - [aux_sym__val_number_decimal_token1] = ACTIONS(4314), - [aux_sym__val_number_decimal_token2] = ACTIONS(4316), - [aux_sym__val_number_decimal_token3] = ACTIONS(4318), - [aux_sym__val_number_decimal_token4] = ACTIONS(4320), - [aux_sym__val_number_token1] = ACTIONS(3697), - [aux_sym__val_number_token2] = ACTIONS(3697), - [aux_sym__val_number_token3] = ACTIONS(3697), - [anon_sym_0b] = ACTIONS(3699), - [anon_sym_0o] = ACTIONS(3701), - [anon_sym_0x] = ACTIONS(3701), - [sym_val_date] = ACTIONS(4244), - [anon_sym_DQUOTE] = ACTIONS(4286), - [sym__str_single_quotes] = ACTIONS(4288), - [sym__str_back_ticks] = ACTIONS(4288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(4246), + [ts_builtin_sym_end] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_LPAREN2] = ACTIONS(1499), + [aux_sym_expr_binary_token1] = ACTIONS(1499), + [aux_sym_expr_binary_token2] = ACTIONS(1499), + [aux_sym_expr_binary_token3] = ACTIONS(1499), + [aux_sym_expr_binary_token4] = ACTIONS(1499), + [aux_sym_expr_binary_token5] = ACTIONS(1499), + [aux_sym_expr_binary_token6] = ACTIONS(1499), + [aux_sym_expr_binary_token7] = ACTIONS(1499), + [aux_sym_expr_binary_token8] = ACTIONS(1499), + [aux_sym_expr_binary_token9] = ACTIONS(1499), + [aux_sym_expr_binary_token10] = ACTIONS(1499), + [aux_sym_expr_binary_token11] = ACTIONS(1499), + [aux_sym_expr_binary_token12] = ACTIONS(1499), + [aux_sym_expr_binary_token13] = ACTIONS(1499), + [aux_sym_expr_binary_token14] = ACTIONS(1499), + [aux_sym_expr_binary_token15] = ACTIONS(1499), + [aux_sym_expr_binary_token16] = ACTIONS(1499), + [aux_sym_expr_binary_token17] = ACTIONS(1499), + [aux_sym_expr_binary_token18] = ACTIONS(1499), + [aux_sym_expr_binary_token19] = ACTIONS(1499), + [aux_sym_expr_binary_token20] = ACTIONS(1499), + [aux_sym_expr_binary_token21] = ACTIONS(1499), + [aux_sym_expr_binary_token22] = ACTIONS(1499), + [aux_sym_expr_binary_token23] = ACTIONS(1499), + [aux_sym_expr_binary_token24] = ACTIONS(1499), + [aux_sym_expr_binary_token25] = ACTIONS(1499), + [aux_sym_expr_binary_token26] = ACTIONS(1499), + [aux_sym_expr_binary_token27] = ACTIONS(1499), + [aux_sym_expr_binary_token28] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), + [aux_sym__immediate_decimal_token2] = ACTIONS(4636), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1499), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), + [aux_sym_unquoted_token2] = ACTIONS(1497), [anon_sym_POUND] = ACTIONS(247), }, [1335] = { - [sym__val_range] = STATE(7776), - [sym__value] = STATE(5821), - [sym_val_nothing] = STATE(4250), - [sym_val_bool] = STATE(7560), - [sym_val_variable] = STATE(4250), - [sym_val_number] = STATE(4250), - [sym__val_number_decimal] = STATE(5887), - [sym__val_number] = STATE(3713), - [sym_val_duration] = STATE(4250), - [sym_val_filesize] = STATE(4250), - [sym_val_binary] = STATE(4250), - [sym_val_string] = STATE(4250), - [sym__str_double_quotes] = STATE(2802), - [sym_val_interpolated] = STATE(4250), - [sym__inter_single_quotes] = STATE(4209), - [sym__inter_double_quotes] = STATE(4211), - [sym_val_list] = STATE(4250), - [sym_val_record] = STATE(4250), - [sym_val_table] = STATE(4250), - [sym_val_closure] = STATE(4250), - [sym_unquoted] = STATE(5822), - [sym__unquoted_anonymous_prefix] = STATE(7986), [sym_comment] = STATE(1335), - [anon_sym_true] = ACTIONS(4331), - [anon_sym_false] = ACTIONS(4331), - [anon_sym_null] = ACTIONS(4333), - [aux_sym_cmd_identifier_token38] = ACTIONS(4335), - [aux_sym_cmd_identifier_token39] = ACTIONS(4335), - [aux_sym_cmd_identifier_token40] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(3495), - [anon_sym_LPAREN] = ACTIONS(4337), - [anon_sym_DOLLAR] = ACTIONS(4228), - [aux_sym_ctrl_match_token1] = ACTIONS(3503), - [anon_sym_DOT_DOT] = ACTIONS(4339), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4341), - [anon_sym_DOT_DOT_LT] = ACTIONS(4341), - [aux_sym__val_number_decimal_token1] = ACTIONS(4343), - [aux_sym__val_number_decimal_token2] = ACTIONS(4345), - [aux_sym__val_number_decimal_token3] = ACTIONS(4347), - [aux_sym__val_number_decimal_token4] = ACTIONS(4349), - [aux_sym__val_number_token1] = ACTIONS(3519), - [aux_sym__val_number_token2] = ACTIONS(3519), - [aux_sym__val_number_token3] = ACTIONS(3519), - [anon_sym_0b] = ACTIONS(3521), - [anon_sym_0o] = ACTIONS(3523), - [anon_sym_0x] = ACTIONS(3523), - [sym_val_date] = ACTIONS(4351), - [anon_sym_DQUOTE] = ACTIONS(3527), - [sym__str_single_quotes] = ACTIONS(3529), - [sym__str_back_ticks] = ACTIONS(3529), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3531), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3535), + [sym__newline] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1519), + [anon_sym_err_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_GT_PIPE] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), + [anon_sym_RPAREN] = ACTIONS(1519), + [anon_sym_RBRACE] = ACTIONS(1519), + [anon_sym_LPAREN2] = ACTIONS(1519), + [aux_sym_expr_binary_token1] = ACTIONS(1519), + [aux_sym_expr_binary_token2] = ACTIONS(1519), + [aux_sym_expr_binary_token3] = ACTIONS(1519), + [aux_sym_expr_binary_token4] = ACTIONS(1519), + [aux_sym_expr_binary_token5] = ACTIONS(1519), + [aux_sym_expr_binary_token6] = ACTIONS(1519), + [aux_sym_expr_binary_token7] = ACTIONS(1519), + [aux_sym_expr_binary_token8] = ACTIONS(1519), + [aux_sym_expr_binary_token9] = ACTIONS(1519), + [aux_sym_expr_binary_token10] = ACTIONS(1519), + [aux_sym_expr_binary_token11] = ACTIONS(1519), + [aux_sym_expr_binary_token12] = ACTIONS(1519), + [aux_sym_expr_binary_token13] = ACTIONS(1519), + [aux_sym_expr_binary_token14] = ACTIONS(1519), + [aux_sym_expr_binary_token15] = ACTIONS(1519), + [aux_sym_expr_binary_token16] = ACTIONS(1519), + [aux_sym_expr_binary_token17] = ACTIONS(1519), + [aux_sym_expr_binary_token18] = ACTIONS(1519), + [aux_sym_expr_binary_token19] = ACTIONS(1519), + [aux_sym_expr_binary_token20] = ACTIONS(1519), + [aux_sym_expr_binary_token21] = ACTIONS(1519), + [aux_sym_expr_binary_token22] = ACTIONS(1519), + [aux_sym_expr_binary_token23] = ACTIONS(1519), + [aux_sym_expr_binary_token24] = ACTIONS(1519), + [aux_sym_expr_binary_token25] = ACTIONS(1519), + [aux_sym_expr_binary_token26] = ACTIONS(1519), + [aux_sym_expr_binary_token27] = ACTIONS(1519), + [aux_sym_expr_binary_token28] = ACTIONS(1519), + [anon_sym_DOT_DOT2] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), + [sym_filesize_unit] = ACTIONS(1519), + [sym_duration_unit] = ACTIONS(1519), + [anon_sym_err_GT] = ACTIONS(1517), + [anon_sym_out_GT] = ACTIONS(1517), + [anon_sym_e_GT] = ACTIONS(1517), + [anon_sym_o_GT] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT] = ACTIONS(1517), + [anon_sym_err_GT_GT] = ACTIONS(1519), + [anon_sym_out_GT_GT] = ACTIONS(1519), + [anon_sym_e_GT_GT] = ACTIONS(1519), + [anon_sym_o_GT_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), + [aux_sym_unquoted_token2] = ACTIONS(1517), [anon_sym_POUND] = ACTIONS(247), }, [1336] = { [sym_comment] = STATE(1336), - [anon_sym_EQ] = ACTIONS(986), - [anon_sym_PLUS_EQ] = ACTIONS(988), - [anon_sym_DASH_EQ] = ACTIONS(988), - [anon_sym_STAR_EQ] = ACTIONS(988), - [anon_sym_SLASH_EQ] = ACTIONS(988), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(988), - [sym__newline] = ACTIONS(988), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_PIPE] = ACTIONS(988), - [anon_sym_err_GT_PIPE] = ACTIONS(988), - [anon_sym_out_GT_PIPE] = ACTIONS(988), - [anon_sym_e_GT_PIPE] = ACTIONS(988), - [anon_sym_o_GT_PIPE] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(988), - [anon_sym_RPAREN] = ACTIONS(988), - [anon_sym_COMMA] = ACTIONS(988), - [anon_sym_RBRACE] = ACTIONS(988), - [aux_sym_expr_binary_token1] = ACTIONS(988), - [aux_sym_expr_binary_token2] = ACTIONS(988), - [aux_sym_expr_binary_token3] = ACTIONS(988), - [aux_sym_expr_binary_token4] = ACTIONS(988), - [aux_sym_expr_binary_token5] = ACTIONS(988), - [aux_sym_expr_binary_token6] = ACTIONS(988), - [aux_sym_expr_binary_token7] = ACTIONS(988), - [aux_sym_expr_binary_token8] = ACTIONS(988), - [aux_sym_expr_binary_token9] = ACTIONS(988), - [aux_sym_expr_binary_token10] = ACTIONS(988), - [aux_sym_expr_binary_token11] = ACTIONS(988), - [aux_sym_expr_binary_token12] = ACTIONS(988), - [aux_sym_expr_binary_token13] = ACTIONS(988), - [aux_sym_expr_binary_token14] = ACTIONS(988), - [aux_sym_expr_binary_token15] = ACTIONS(988), - [aux_sym_expr_binary_token16] = ACTIONS(988), - [aux_sym_expr_binary_token17] = ACTIONS(988), - [aux_sym_expr_binary_token18] = ACTIONS(988), - [aux_sym_expr_binary_token19] = ACTIONS(988), - [aux_sym_expr_binary_token20] = ACTIONS(988), - [aux_sym_expr_binary_token21] = ACTIONS(988), - [aux_sym_expr_binary_token22] = ACTIONS(988), - [aux_sym_expr_binary_token23] = ACTIONS(988), - [aux_sym_expr_binary_token24] = ACTIONS(988), - [aux_sym_expr_binary_token25] = ACTIONS(988), - [aux_sym_expr_binary_token26] = ACTIONS(988), - [aux_sym_expr_binary_token27] = ACTIONS(988), - [aux_sym_expr_binary_token28] = ACTIONS(988), - [anon_sym_DOT_DOT2] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(986), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), - [anon_sym_DOT_DOT_LT2] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(986), - [anon_sym_out_GT] = ACTIONS(986), - [anon_sym_e_GT] = ACTIONS(986), - [anon_sym_o_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT] = ACTIONS(986), - [anon_sym_err_GT_GT] = ACTIONS(988), - [anon_sym_out_GT_GT] = ACTIONS(988), - [anon_sym_e_GT_GT] = ACTIONS(988), - [anon_sym_o_GT_GT] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), + [aux_sym_cmd_identifier_token41] = ACTIONS(1565), + [sym__newline] = ACTIONS(1567), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_err_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_GT_PIPE] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), + [anon_sym_RPAREN] = ACTIONS(1567), + [anon_sym_RBRACE] = ACTIONS(1567), + [aux_sym_expr_binary_token1] = ACTIONS(1567), + [aux_sym_expr_binary_token2] = ACTIONS(1567), + [aux_sym_expr_binary_token3] = ACTIONS(1567), + [aux_sym_expr_binary_token4] = ACTIONS(1567), + [aux_sym_expr_binary_token5] = ACTIONS(1567), + [aux_sym_expr_binary_token6] = ACTIONS(1567), + [aux_sym_expr_binary_token7] = ACTIONS(1567), + [aux_sym_expr_binary_token8] = ACTIONS(1567), + [aux_sym_expr_binary_token9] = ACTIONS(1567), + [aux_sym_expr_binary_token10] = ACTIONS(1567), + [aux_sym_expr_binary_token11] = ACTIONS(1567), + [aux_sym_expr_binary_token12] = ACTIONS(1567), + [aux_sym_expr_binary_token13] = ACTIONS(1567), + [aux_sym_expr_binary_token14] = ACTIONS(1567), + [aux_sym_expr_binary_token15] = ACTIONS(1567), + [aux_sym_expr_binary_token16] = ACTIONS(1567), + [aux_sym_expr_binary_token17] = ACTIONS(1567), + [aux_sym_expr_binary_token18] = ACTIONS(1567), + [aux_sym_expr_binary_token19] = ACTIONS(1567), + [aux_sym_expr_binary_token20] = ACTIONS(1567), + [aux_sym_expr_binary_token21] = ACTIONS(1567), + [aux_sym_expr_binary_token22] = ACTIONS(1567), + [aux_sym_expr_binary_token23] = ACTIONS(1567), + [aux_sym_expr_binary_token24] = ACTIONS(1567), + [aux_sym_expr_binary_token25] = ACTIONS(1567), + [aux_sym_expr_binary_token26] = ACTIONS(1567), + [aux_sym_expr_binary_token27] = ACTIONS(1567), + [aux_sym_expr_binary_token28] = ACTIONS(1567), + [anon_sym_DOT_DOT2] = ACTIONS(1565), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), + [aux_sym__immediate_decimal_token2] = ACTIONS(4702), + [sym_filesize_unit] = ACTIONS(1567), + [sym_duration_unit] = ACTIONS(1567), + [anon_sym_err_GT] = ACTIONS(1565), + [anon_sym_out_GT] = ACTIONS(1565), + [anon_sym_e_GT] = ACTIONS(1565), + [anon_sym_o_GT] = ACTIONS(1565), + [anon_sym_err_PLUSout_GT] = ACTIONS(1565), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), + [anon_sym_o_PLUSe_GT] = ACTIONS(1565), + [anon_sym_e_PLUSo_GT] = ACTIONS(1565), + [anon_sym_err_GT_GT] = ACTIONS(1567), + [anon_sym_out_GT_GT] = ACTIONS(1567), + [anon_sym_e_GT_GT] = ACTIONS(1567), + [anon_sym_o_GT_GT] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), [anon_sym_POUND] = ACTIONS(247), }, [1337] = { [sym_comment] = STATE(1337), - [anon_sym_EQ] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(992), - [anon_sym_DASH_EQ] = ACTIONS(992), - [anon_sym_STAR_EQ] = ACTIONS(992), - [anon_sym_SLASH_EQ] = ACTIONS(992), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(992), - [sym__newline] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(992), - [anon_sym_err_GT_PIPE] = ACTIONS(992), - [anon_sym_out_GT_PIPE] = ACTIONS(992), - [anon_sym_e_GT_PIPE] = ACTIONS(992), - [anon_sym_o_GT_PIPE] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), - [anon_sym_RPAREN] = ACTIONS(992), - [anon_sym_COMMA] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(992), - [aux_sym_expr_binary_token1] = ACTIONS(992), - [aux_sym_expr_binary_token2] = ACTIONS(992), - [aux_sym_expr_binary_token3] = ACTIONS(992), - [aux_sym_expr_binary_token4] = ACTIONS(992), - [aux_sym_expr_binary_token5] = ACTIONS(992), - [aux_sym_expr_binary_token6] = ACTIONS(992), - [aux_sym_expr_binary_token7] = ACTIONS(992), - [aux_sym_expr_binary_token8] = ACTIONS(992), - [aux_sym_expr_binary_token9] = ACTIONS(992), - [aux_sym_expr_binary_token10] = ACTIONS(992), - [aux_sym_expr_binary_token11] = ACTIONS(992), - [aux_sym_expr_binary_token12] = ACTIONS(992), - [aux_sym_expr_binary_token13] = ACTIONS(992), - [aux_sym_expr_binary_token14] = ACTIONS(992), - [aux_sym_expr_binary_token15] = ACTIONS(992), - [aux_sym_expr_binary_token16] = ACTIONS(992), - [aux_sym_expr_binary_token17] = ACTIONS(992), - [aux_sym_expr_binary_token18] = ACTIONS(992), - [aux_sym_expr_binary_token19] = ACTIONS(992), - [aux_sym_expr_binary_token20] = ACTIONS(992), - [aux_sym_expr_binary_token21] = ACTIONS(992), - [aux_sym_expr_binary_token22] = ACTIONS(992), - [aux_sym_expr_binary_token23] = ACTIONS(992), - [aux_sym_expr_binary_token24] = ACTIONS(992), - [aux_sym_expr_binary_token25] = ACTIONS(992), - [aux_sym_expr_binary_token26] = ACTIONS(992), - [aux_sym_expr_binary_token27] = ACTIONS(992), - [aux_sym_expr_binary_token28] = ACTIONS(992), - [anon_sym_DOT_DOT2] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), - [anon_sym_DOT_DOT_LT2] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(990), - [anon_sym_out_GT] = ACTIONS(990), - [anon_sym_e_GT] = ACTIONS(990), - [anon_sym_o_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT] = ACTIONS(990), - [anon_sym_err_GT_GT] = ACTIONS(992), - [anon_sym_out_GT_GT] = ACTIONS(992), - [anon_sym_e_GT_GT] = ACTIONS(992), - [anon_sym_o_GT_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [aux_sym_cmd_identifier_token38] = ACTIONS(1645), + [aux_sym_cmd_identifier_token39] = ACTIONS(1645), + [aux_sym_cmd_identifier_token40] = ACTIONS(1645), + [sym__newline] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_err_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_GT_PIPE] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), + [anon_sym_LBRACK] = ACTIONS(1645), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_RPAREN] = ACTIONS(1645), + [anon_sym_DOLLAR] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_DASH] = ACTIONS(1643), + [aux_sym_ctrl_match_token1] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(1645), + [anon_sym_DOT_DOT] = ACTIONS(1643), + [anon_sym_LPAREN2] = ACTIONS(1645), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1645), + [anon_sym_DOT_DOT_LT] = ACTIONS(1645), + [aux_sym__immediate_decimal_token2] = ACTIONS(4596), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1645), + [aux_sym__val_number_decimal_token3] = ACTIONS(1645), + [aux_sym__val_number_decimal_token4] = ACTIONS(1645), + [aux_sym__val_number_token1] = ACTIONS(1645), + [aux_sym__val_number_token2] = ACTIONS(1645), + [aux_sym__val_number_token3] = ACTIONS(1645), + [anon_sym_0b] = ACTIONS(1643), + [anon_sym_0o] = ACTIONS(1643), + [anon_sym_0x] = ACTIONS(1643), + [sym_val_date] = ACTIONS(1645), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym__str_single_quotes] = ACTIONS(1645), + [sym__str_back_ticks] = ACTIONS(1645), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1645), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1645), + [anon_sym_err_GT] = ACTIONS(1643), + [anon_sym_out_GT] = ACTIONS(1643), + [anon_sym_e_GT] = ACTIONS(1643), + [anon_sym_o_GT] = ACTIONS(1643), + [anon_sym_err_PLUSout_GT] = ACTIONS(1643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), + [anon_sym_o_PLUSe_GT] = ACTIONS(1643), + [anon_sym_e_PLUSo_GT] = ACTIONS(1643), + [anon_sym_err_GT_GT] = ACTIONS(1645), + [anon_sym_out_GT_GT] = ACTIONS(1645), + [anon_sym_e_GT_GT] = ACTIONS(1645), + [anon_sym_o_GT_GT] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [aux_sym_unquoted_token1] = ACTIONS(1643), + [aux_sym_unquoted_token2] = ACTIONS(1643), [anon_sym_POUND] = ACTIONS(247), }, [1338] = { - [sym__val_range] = STATE(7776), - [sym__value] = STATE(5708), - [sym_val_nothing] = STATE(4250), - [sym_val_bool] = STATE(7560), - [sym_val_variable] = STATE(4250), - [sym_val_number] = STATE(4250), - [sym__val_number_decimal] = STATE(5887), - [sym__val_number] = STATE(3713), - [sym_val_duration] = STATE(4250), - [sym_val_filesize] = STATE(4250), - [sym_val_binary] = STATE(4250), - [sym_val_string] = STATE(4250), - [sym__str_double_quotes] = STATE(2802), - [sym_val_interpolated] = STATE(4250), - [sym__inter_single_quotes] = STATE(4209), - [sym__inter_double_quotes] = STATE(4211), - [sym_val_list] = STATE(4250), - [sym_val_record] = STATE(4250), - [sym_val_table] = STATE(4250), - [sym_val_closure] = STATE(4250), - [sym_unquoted] = STATE(5713), - [sym__unquoted_anonymous_prefix] = STATE(7986), + [sym_cell_path] = STATE(1831), + [sym_path] = STATE(1599), [sym_comment] = STATE(1338), - [anon_sym_true] = ACTIONS(4331), - [anon_sym_false] = ACTIONS(4331), - [anon_sym_null] = ACTIONS(4333), - [aux_sym_cmd_identifier_token38] = ACTIONS(4335), - [aux_sym_cmd_identifier_token39] = ACTIONS(4335), - [aux_sym_cmd_identifier_token40] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(3495), - [anon_sym_LPAREN] = ACTIONS(4337), - [anon_sym_DOLLAR] = ACTIONS(4228), - [aux_sym_ctrl_match_token1] = ACTIONS(3503), - [anon_sym_DOT_DOT] = ACTIONS(4339), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4341), - [anon_sym_DOT_DOT_LT] = ACTIONS(4341), - [aux_sym__val_number_decimal_token1] = ACTIONS(4343), - [aux_sym__val_number_decimal_token2] = ACTIONS(4345), - [aux_sym__val_number_decimal_token3] = ACTIONS(4347), - [aux_sym__val_number_decimal_token4] = ACTIONS(4349), - [aux_sym__val_number_token1] = ACTIONS(3519), - [aux_sym__val_number_token2] = ACTIONS(3519), - [aux_sym__val_number_token3] = ACTIONS(3519), - [anon_sym_0b] = ACTIONS(3521), - [anon_sym_0o] = ACTIONS(3523), - [anon_sym_0x] = ACTIONS(3523), - [sym_val_date] = ACTIONS(4351), - [anon_sym_DQUOTE] = ACTIONS(3527), - [sym__str_single_quotes] = ACTIONS(3529), - [sym__str_back_ticks] = ACTIONS(3529), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3531), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3535), + [aux_sym_cell_path_repeat1] = STATE(1437), + [ts_builtin_sym_end] = ACTIONS(1959), + [anon_sym_true] = ACTIONS(1959), + [anon_sym_false] = ACTIONS(1959), + [anon_sym_null] = ACTIONS(1959), + [aux_sym_cmd_identifier_token38] = ACTIONS(1959), + [aux_sym_cmd_identifier_token39] = ACTIONS(1959), + [aux_sym_cmd_identifier_token40] = ACTIONS(1959), + [sym__newline] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1959), + [anon_sym_PIPE] = ACTIONS(1959), + [anon_sym_err_GT_PIPE] = ACTIONS(1959), + [anon_sym_out_GT_PIPE] = ACTIONS(1959), + [anon_sym_e_GT_PIPE] = ACTIONS(1959), + [anon_sym_o_GT_PIPE] = ACTIONS(1959), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1959), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1959), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1959), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1959), + [anon_sym_LBRACK] = ACTIONS(1959), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_DOLLAR] = ACTIONS(1957), + [anon_sym_DASH_DASH] = ACTIONS(1959), + [anon_sym_DASH] = ACTIONS(1957), + [aux_sym_ctrl_match_token1] = ACTIONS(1959), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT] = ACTIONS(4674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1957), + [aux_sym__val_number_decimal_token2] = ACTIONS(1959), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [aux_sym__val_number_token1] = ACTIONS(1959), + [aux_sym__val_number_token2] = ACTIONS(1959), + [aux_sym__val_number_token3] = ACTIONS(1959), + [anon_sym_0b] = ACTIONS(1957), + [anon_sym_0o] = ACTIONS(1957), + [anon_sym_0x] = ACTIONS(1957), + [sym_val_date] = ACTIONS(1959), + [anon_sym_DQUOTE] = ACTIONS(1959), + [sym__str_single_quotes] = ACTIONS(1959), + [sym__str_back_ticks] = ACTIONS(1959), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1959), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1959), + [anon_sym_err_GT] = ACTIONS(1957), + [anon_sym_out_GT] = ACTIONS(1957), + [anon_sym_e_GT] = ACTIONS(1957), + [anon_sym_o_GT] = ACTIONS(1957), + [anon_sym_err_PLUSout_GT] = ACTIONS(1957), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1957), + [anon_sym_o_PLUSe_GT] = ACTIONS(1957), + [anon_sym_e_PLUSo_GT] = ACTIONS(1957), + [anon_sym_err_GT_GT] = ACTIONS(1959), + [anon_sym_out_GT_GT] = ACTIONS(1959), + [anon_sym_e_GT_GT] = ACTIONS(1959), + [anon_sym_o_GT_GT] = ACTIONS(1959), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1959), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1959), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1959), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1959), + [aux_sym_unquoted_token1] = ACTIONS(1957), [anon_sym_POUND] = ACTIONS(247), }, [1339] = { - [sym__val_range] = STATE(7894), - [sym__value] = STATE(2083), - [sym_val_nothing] = STATE(2094), - [sym_val_bool] = STATE(1825), - [sym_val_variable] = STATE(2094), - [sym_val_number] = STATE(2094), - [sym__val_number_decimal] = STATE(1419), - [sym__val_number] = STATE(2080), - [sym_val_duration] = STATE(2094), - [sym_val_filesize] = STATE(2094), - [sym_val_binary] = STATE(2094), - [sym_val_string] = STATE(2094), - [sym__str_double_quotes] = STATE(2042), - [sym_val_interpolated] = STATE(2094), - [sym__inter_single_quotes] = STATE(1955), - [sym__inter_double_quotes] = STATE(2073), - [sym_val_list] = STATE(2094), - [sym_val_record] = STATE(2094), - [sym_val_table] = STATE(2094), - [sym_val_closure] = STATE(2094), - [sym_unquoted] = STATE(2084), - [sym__unquoted_anonymous_prefix] = STATE(7825), [sym_comment] = STATE(1339), - [anon_sym_true] = ACTIONS(4353), - [anon_sym_false] = ACTIONS(4353), - [anon_sym_null] = ACTIONS(4355), - [aux_sym_cmd_identifier_token38] = ACTIONS(4357), - [aux_sym_cmd_identifier_token39] = ACTIONS(4357), - [aux_sym_cmd_identifier_token40] = ACTIONS(4357), - [anon_sym_LBRACK] = ACTIONS(2690), - [anon_sym_LPAREN] = ACTIONS(4359), - [anon_sym_DOLLAR] = ACTIONS(4124), - [aux_sym_ctrl_match_token1] = ACTIONS(2700), - [anon_sym_DOT_DOT] = ACTIONS(4361), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4363), - [anon_sym_DOT_DOT_LT] = ACTIONS(4363), - [aux_sym__val_number_decimal_token1] = ACTIONS(4365), - [aux_sym__val_number_decimal_token2] = ACTIONS(4367), - [aux_sym__val_number_decimal_token3] = ACTIONS(4369), - [aux_sym__val_number_decimal_token4] = ACTIONS(4371), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [anon_sym_0b] = ACTIONS(2716), - [anon_sym_0o] = ACTIONS(2718), - [anon_sym_0x] = ACTIONS(2718), - [sym_val_date] = ACTIONS(4373), - [anon_sym_DQUOTE] = ACTIONS(2722), - [sym__str_single_quotes] = ACTIONS(2724), - [sym__str_back_ticks] = ACTIONS(2724), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2726), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(4375), + [sym__newline] = ACTIONS(1567), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_err_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_GT_PIPE] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), + [anon_sym_RPAREN] = ACTIONS(1567), + [anon_sym_RBRACE] = ACTIONS(1567), + [anon_sym_LPAREN2] = ACTIONS(1567), + [aux_sym_expr_binary_token1] = ACTIONS(1567), + [aux_sym_expr_binary_token2] = ACTIONS(1567), + [aux_sym_expr_binary_token3] = ACTIONS(1567), + [aux_sym_expr_binary_token4] = ACTIONS(1567), + [aux_sym_expr_binary_token5] = ACTIONS(1567), + [aux_sym_expr_binary_token6] = ACTIONS(1567), + [aux_sym_expr_binary_token7] = ACTIONS(1567), + [aux_sym_expr_binary_token8] = ACTIONS(1567), + [aux_sym_expr_binary_token9] = ACTIONS(1567), + [aux_sym_expr_binary_token10] = ACTIONS(1567), + [aux_sym_expr_binary_token11] = ACTIONS(1567), + [aux_sym_expr_binary_token12] = ACTIONS(1567), + [aux_sym_expr_binary_token13] = ACTIONS(1567), + [aux_sym_expr_binary_token14] = ACTIONS(1567), + [aux_sym_expr_binary_token15] = ACTIONS(1567), + [aux_sym_expr_binary_token16] = ACTIONS(1567), + [aux_sym_expr_binary_token17] = ACTIONS(1567), + [aux_sym_expr_binary_token18] = ACTIONS(1567), + [aux_sym_expr_binary_token19] = ACTIONS(1567), + [aux_sym_expr_binary_token20] = ACTIONS(1567), + [aux_sym_expr_binary_token21] = ACTIONS(1567), + [aux_sym_expr_binary_token22] = ACTIONS(1567), + [aux_sym_expr_binary_token23] = ACTIONS(1567), + [aux_sym_expr_binary_token24] = ACTIONS(1567), + [aux_sym_expr_binary_token25] = ACTIONS(1567), + [aux_sym_expr_binary_token26] = ACTIONS(1567), + [aux_sym_expr_binary_token27] = ACTIONS(1567), + [aux_sym_expr_binary_token28] = ACTIONS(1567), + [anon_sym_DOT_DOT2] = ACTIONS(1565), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), + [sym_filesize_unit] = ACTIONS(1567), + [sym_duration_unit] = ACTIONS(1567), + [anon_sym_err_GT] = ACTIONS(1565), + [anon_sym_out_GT] = ACTIONS(1565), + [anon_sym_e_GT] = ACTIONS(1565), + [anon_sym_o_GT] = ACTIONS(1565), + [anon_sym_err_PLUSout_GT] = ACTIONS(1565), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), + [anon_sym_o_PLUSe_GT] = ACTIONS(1565), + [anon_sym_e_PLUSo_GT] = ACTIONS(1565), + [anon_sym_err_GT_GT] = ACTIONS(1567), + [anon_sym_out_GT_GT] = ACTIONS(1567), + [anon_sym_e_GT_GT] = ACTIONS(1567), + [anon_sym_o_GT_GT] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), + [aux_sym_unquoted_token2] = ACTIONS(1565), [anon_sym_POUND] = ACTIONS(247), }, [1340] = { - [sym__val_range] = STATE(7776), - [sym__value] = STATE(5770), - [sym_val_nothing] = STATE(4250), - [sym_val_bool] = STATE(7560), - [sym_val_variable] = STATE(4250), - [sym_val_number] = STATE(4250), - [sym__val_number_decimal] = STATE(5887), - [sym__val_number] = STATE(3713), - [sym_val_duration] = STATE(4250), - [sym_val_filesize] = STATE(4250), - [sym_val_binary] = STATE(4250), - [sym_val_string] = STATE(4250), - [sym__str_double_quotes] = STATE(2802), - [sym_val_interpolated] = STATE(4250), - [sym__inter_single_quotes] = STATE(4209), - [sym__inter_double_quotes] = STATE(4211), - [sym_val_list] = STATE(4250), - [sym_val_record] = STATE(4250), - [sym_val_table] = STATE(4250), - [sym_val_closure] = STATE(4250), - [sym_unquoted] = STATE(5772), - [sym__unquoted_anonymous_prefix] = STATE(7986), [sym_comment] = STATE(1340), - [anon_sym_true] = ACTIONS(4331), - [anon_sym_false] = ACTIONS(4331), - [anon_sym_null] = ACTIONS(4333), - [aux_sym_cmd_identifier_token38] = ACTIONS(4335), - [aux_sym_cmd_identifier_token39] = ACTIONS(4335), - [aux_sym_cmd_identifier_token40] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(3495), - [anon_sym_LPAREN] = ACTIONS(4337), - [anon_sym_DOLLAR] = ACTIONS(4228), - [aux_sym_ctrl_match_token1] = ACTIONS(3503), - [anon_sym_DOT_DOT] = ACTIONS(4339), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4341), - [anon_sym_DOT_DOT_LT] = ACTIONS(4341), - [aux_sym__val_number_decimal_token1] = ACTIONS(4343), - [aux_sym__val_number_decimal_token2] = ACTIONS(4345), - [aux_sym__val_number_decimal_token3] = ACTIONS(4347), - [aux_sym__val_number_decimal_token4] = ACTIONS(4349), - [aux_sym__val_number_token1] = ACTIONS(3519), - [aux_sym__val_number_token2] = ACTIONS(3519), - [aux_sym__val_number_token3] = ACTIONS(3519), - [anon_sym_0b] = ACTIONS(3521), - [anon_sym_0o] = ACTIONS(3523), - [anon_sym_0x] = ACTIONS(3523), - [sym_val_date] = ACTIONS(4351), - [anon_sym_DQUOTE] = ACTIONS(3527), - [sym__str_single_quotes] = ACTIONS(3529), - [sym__str_back_ticks] = ACTIONS(3529), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3531), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3535), + [anon_sym_true] = ACTIONS(4704), + [anon_sym_false] = ACTIONS(4704), + [anon_sym_null] = ACTIONS(4704), + [aux_sym_cmd_identifier_token38] = ACTIONS(4704), + [aux_sym_cmd_identifier_token39] = ACTIONS(4704), + [aux_sym_cmd_identifier_token40] = ACTIONS(4704), + [sym__newline] = ACTIONS(4704), + [anon_sym_SEMI] = ACTIONS(4704), + [anon_sym_PIPE] = ACTIONS(4704), + [anon_sym_err_GT_PIPE] = ACTIONS(4704), + [anon_sym_out_GT_PIPE] = ACTIONS(4704), + [anon_sym_e_GT_PIPE] = ACTIONS(4704), + [anon_sym_o_GT_PIPE] = ACTIONS(4704), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4704), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4704), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4704), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4704), + [anon_sym_LBRACK] = ACTIONS(4704), + [anon_sym_LPAREN] = ACTIONS(4704), + [anon_sym_RPAREN] = ACTIONS(4704), + [anon_sym_DOLLAR] = ACTIONS(4706), + [anon_sym_DASH_DASH] = ACTIONS(4704), + [anon_sym_DASH] = ACTIONS(4706), + [aux_sym_ctrl_match_token1] = ACTIONS(4704), + [anon_sym_RBRACE] = ACTIONS(4704), + [anon_sym_DOT_DOT] = ACTIONS(4706), + [anon_sym_DOT_DOT2] = ACTIONS(4670), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4706), + [anon_sym_DOT_DOT_LT] = ACTIONS(4706), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4672), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4672), + [aux_sym__val_number_decimal_token1] = ACTIONS(4706), + [aux_sym__val_number_decimal_token2] = ACTIONS(4704), + [aux_sym__val_number_decimal_token3] = ACTIONS(4704), + [aux_sym__val_number_decimal_token4] = ACTIONS(4704), + [aux_sym__val_number_token1] = ACTIONS(4704), + [aux_sym__val_number_token2] = ACTIONS(4704), + [aux_sym__val_number_token3] = ACTIONS(4704), + [anon_sym_0b] = ACTIONS(4706), + [anon_sym_0o] = ACTIONS(4706), + [anon_sym_0x] = ACTIONS(4706), + [sym_val_date] = ACTIONS(4704), + [anon_sym_DQUOTE] = ACTIONS(4704), + [sym__str_single_quotes] = ACTIONS(4704), + [sym__str_back_ticks] = ACTIONS(4704), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4704), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4704), + [anon_sym_err_GT] = ACTIONS(4706), + [anon_sym_out_GT] = ACTIONS(4706), + [anon_sym_e_GT] = ACTIONS(4706), + [anon_sym_o_GT] = ACTIONS(4706), + [anon_sym_err_PLUSout_GT] = ACTIONS(4706), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4706), + [anon_sym_o_PLUSe_GT] = ACTIONS(4706), + [anon_sym_e_PLUSo_GT] = ACTIONS(4706), + [anon_sym_err_GT_GT] = ACTIONS(4704), + [anon_sym_out_GT_GT] = ACTIONS(4704), + [anon_sym_e_GT_GT] = ACTIONS(4704), + [anon_sym_o_GT_GT] = ACTIONS(4704), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4704), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4704), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4704), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4704), + [aux_sym_unquoted_token1] = ACTIONS(4706), [anon_sym_POUND] = ACTIONS(247), }, [1341] = { - [sym__val_range] = STATE(7865), - [sym__value] = STATE(6208), - [sym_val_nothing] = STATE(5312), - [sym_val_bool] = STATE(7285), - [sym_val_variable] = STATE(5312), - [sym_val_number] = STATE(5312), - [sym__val_number_decimal] = STATE(5793), - [sym__val_number] = STATE(5409), - [sym_val_duration] = STATE(5312), - [sym_val_filesize] = STATE(5312), - [sym_val_binary] = STATE(5312), - [sym_val_string] = STATE(5312), - [sym__str_double_quotes] = STATE(4863), - [sym_val_interpolated] = STATE(5312), - [sym__inter_single_quotes] = STATE(5273), - [sym__inter_double_quotes] = STATE(5275), - [sym_val_list] = STATE(5312), - [sym_val_record] = STATE(5312), - [sym_val_table] = STATE(5312), - [sym_val_closure] = STATE(5312), - [sym_unquoted] = STATE(6209), - [sym__unquoted_anonymous_prefix] = STATE(7927), [sym_comment] = STATE(1341), - [anon_sym_true] = ACTIONS(4264), - [anon_sym_false] = ACTIONS(4264), - [anon_sym_null] = ACTIONS(4266), - [aux_sym_cmd_identifier_token38] = ACTIONS(4268), - [aux_sym_cmd_identifier_token39] = ACTIONS(4268), - [aux_sym_cmd_identifier_token40] = ACTIONS(4268), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4226), - [anon_sym_DOLLAR] = ACTIONS(4272), - [aux_sym_ctrl_match_token1] = ACTIONS(4274), - [anon_sym_DOT_DOT] = ACTIONS(4232), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4234), - [anon_sym_DOT_DOT_LT] = ACTIONS(4234), - [aux_sym__val_number_decimal_token1] = ACTIONS(4276), - [aux_sym__val_number_decimal_token2] = ACTIONS(4278), - [aux_sym__val_number_decimal_token3] = ACTIONS(4280), - [aux_sym__val_number_decimal_token4] = ACTIONS(4282), - [aux_sym__val_number_token1] = ACTIONS(3697), - [aux_sym__val_number_token2] = ACTIONS(3697), - [aux_sym__val_number_token3] = ACTIONS(3697), - [anon_sym_0b] = ACTIONS(3699), - [anon_sym_0o] = ACTIONS(3701), - [anon_sym_0x] = ACTIONS(3701), - [sym_val_date] = ACTIONS(4284), - [anon_sym_DQUOTE] = ACTIONS(4286), - [sym__str_single_quotes] = ACTIONS(4288), - [sym__str_back_ticks] = ACTIONS(4288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(4246), + [ts_builtin_sym_end] = ACTIONS(1058), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_null] = ACTIONS(1058), + [aux_sym_cmd_identifier_token38] = ACTIONS(1058), + [aux_sym_cmd_identifier_token39] = ACTIONS(1058), + [aux_sym_cmd_identifier_token40] = ACTIONS(1058), + [sym__newline] = ACTIONS(1058), + [anon_sym_SEMI] = ACTIONS(1058), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_err_GT_PIPE] = ACTIONS(1058), + [anon_sym_out_GT_PIPE] = ACTIONS(1058), + [anon_sym_e_GT_PIPE] = ACTIONS(1058), + [anon_sym_o_GT_PIPE] = ACTIONS(1058), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1058), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1058), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1058), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_LPAREN] = ACTIONS(1058), + [anon_sym_DOLLAR] = ACTIONS(1056), + [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1056), + [aux_sym_ctrl_match_token1] = ACTIONS(1058), + [anon_sym_DOT_DOT] = ACTIONS(1056), + [anon_sym_DOT_DOT2] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1056), + [anon_sym_DOT_DOT_LT] = ACTIONS(1056), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1058), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1058), + [aux_sym__val_number_decimal_token1] = ACTIONS(1056), + [aux_sym__val_number_decimal_token2] = ACTIONS(1058), + [aux_sym__val_number_decimal_token3] = ACTIONS(1058), + [aux_sym__val_number_decimal_token4] = ACTIONS(1058), + [aux_sym__val_number_token1] = ACTIONS(1058), + [aux_sym__val_number_token2] = ACTIONS(1058), + [aux_sym__val_number_token3] = ACTIONS(1058), + [anon_sym_0b] = ACTIONS(1056), + [anon_sym_0o] = ACTIONS(1056), + [anon_sym_0x] = ACTIONS(1056), + [sym_val_date] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [sym__str_single_quotes] = ACTIONS(1058), + [sym__str_back_ticks] = ACTIONS(1058), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1058), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1058), + [anon_sym_err_GT] = ACTIONS(1056), + [anon_sym_out_GT] = ACTIONS(1056), + [anon_sym_e_GT] = ACTIONS(1056), + [anon_sym_o_GT] = ACTIONS(1056), + [anon_sym_err_PLUSout_GT] = ACTIONS(1056), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1056), + [anon_sym_o_PLUSe_GT] = ACTIONS(1056), + [anon_sym_e_PLUSo_GT] = ACTIONS(1056), + [anon_sym_err_GT_GT] = ACTIONS(1058), + [anon_sym_out_GT_GT] = ACTIONS(1058), + [anon_sym_e_GT_GT] = ACTIONS(1058), + [anon_sym_o_GT_GT] = ACTIONS(1058), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1058), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1058), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1058), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1058), + [aux_sym_unquoted_token1] = ACTIONS(1056), [anon_sym_POUND] = ACTIONS(247), }, [1342] = { - [sym_cell_path] = STATE(1592), - [sym_path] = STATE(1465), + [sym_cell_path] = STATE(1844), + [sym_path] = STATE(1599), [sym_comment] = STATE(1342), - [aux_sym_cell_path_repeat1] = STATE(1398), - [anon_sym_true] = ACTIONS(947), - [anon_sym_false] = ACTIONS(947), - [anon_sym_null] = ACTIONS(947), - [aux_sym_cmd_identifier_token38] = ACTIONS(947), - [aux_sym_cmd_identifier_token39] = ACTIONS(947), - [aux_sym_cmd_identifier_token40] = ACTIONS(947), - [sym__newline] = ACTIONS(947), - [anon_sym_SEMI] = ACTIONS(947), - [anon_sym_PIPE] = ACTIONS(947), - [anon_sym_err_GT_PIPE] = ACTIONS(947), - [anon_sym_out_GT_PIPE] = ACTIONS(947), - [anon_sym_e_GT_PIPE] = ACTIONS(947), - [anon_sym_o_GT_PIPE] = ACTIONS(947), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(947), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(947), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(947), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(947), - [anon_sym_DOLLAR] = ACTIONS(945), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(945), - [aux_sym_ctrl_match_token1] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(947), - [anon_sym_DOT_DOT] = ACTIONS(945), - [anon_sym_DOT_DOT2] = ACTIONS(945), - [anon_sym_DOT] = ACTIONS(4377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(945), - [anon_sym_DOT_DOT_LT] = ACTIONS(945), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(947), - [anon_sym_DOT_DOT_LT2] = ACTIONS(947), - [aux_sym__val_number_decimal_token1] = ACTIONS(945), - [aux_sym__val_number_decimal_token2] = ACTIONS(947), - [aux_sym__val_number_decimal_token3] = ACTIONS(947), - [aux_sym__val_number_decimal_token4] = ACTIONS(947), - [aux_sym__val_number_token1] = ACTIONS(947), - [aux_sym__val_number_token2] = ACTIONS(947), - [aux_sym__val_number_token3] = ACTIONS(947), - [anon_sym_0b] = ACTIONS(945), - [anon_sym_0o] = ACTIONS(945), - [anon_sym_0x] = ACTIONS(945), - [sym_val_date] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(947), - [sym__str_single_quotes] = ACTIONS(947), - [sym__str_back_ticks] = ACTIONS(947), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(947), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(947), - [anon_sym_err_GT] = ACTIONS(945), - [anon_sym_out_GT] = ACTIONS(945), - [anon_sym_e_GT] = ACTIONS(945), - [anon_sym_o_GT] = ACTIONS(945), - [anon_sym_err_PLUSout_GT] = ACTIONS(945), - [anon_sym_out_PLUSerr_GT] = ACTIONS(945), - [anon_sym_o_PLUSe_GT] = ACTIONS(945), - [anon_sym_e_PLUSo_GT] = ACTIONS(945), - [anon_sym_err_GT_GT] = ACTIONS(947), - [anon_sym_out_GT_GT] = ACTIONS(947), - [anon_sym_e_GT_GT] = ACTIONS(947), - [anon_sym_o_GT_GT] = ACTIONS(947), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(947), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(947), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(947), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(947), - [aux_sym_unquoted_token1] = ACTIONS(945), + [aux_sym_cell_path_repeat1] = STATE(1437), + [ts_builtin_sym_end] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_null] = ACTIONS(1837), + [aux_sym_cmd_identifier_token38] = ACTIONS(1837), + [aux_sym_cmd_identifier_token39] = ACTIONS(1837), + [aux_sym_cmd_identifier_token40] = ACTIONS(1837), + [sym__newline] = ACTIONS(1837), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_err_GT_PIPE] = ACTIONS(1837), + [anon_sym_out_GT_PIPE] = ACTIONS(1837), + [anon_sym_e_GT_PIPE] = ACTIONS(1837), + [anon_sym_o_GT_PIPE] = ACTIONS(1837), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1837), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1837), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1837), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1835), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1835), + [aux_sym_ctrl_match_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_DOT] = ACTIONS(4674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1837), + [anon_sym_DOT_DOT_LT] = ACTIONS(1837), + [aux_sym__val_number_decimal_token1] = ACTIONS(1835), + [aux_sym__val_number_decimal_token2] = ACTIONS(1837), + [aux_sym__val_number_decimal_token3] = ACTIONS(1837), + [aux_sym__val_number_decimal_token4] = ACTIONS(1837), + [aux_sym__val_number_token1] = ACTIONS(1837), + [aux_sym__val_number_token2] = ACTIONS(1837), + [aux_sym__val_number_token3] = ACTIONS(1837), + [anon_sym_0b] = ACTIONS(1835), + [anon_sym_0o] = ACTIONS(1835), + [anon_sym_0x] = ACTIONS(1835), + [sym_val_date] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [sym__str_single_quotes] = ACTIONS(1837), + [sym__str_back_ticks] = ACTIONS(1837), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1837), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1837), + [anon_sym_err_GT] = ACTIONS(1835), + [anon_sym_out_GT] = ACTIONS(1835), + [anon_sym_e_GT] = ACTIONS(1835), + [anon_sym_o_GT] = ACTIONS(1835), + [anon_sym_err_PLUSout_GT] = ACTIONS(1835), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1835), + [anon_sym_o_PLUSe_GT] = ACTIONS(1835), + [anon_sym_e_PLUSo_GT] = ACTIONS(1835), + [anon_sym_err_GT_GT] = ACTIONS(1837), + [anon_sym_out_GT_GT] = ACTIONS(1837), + [anon_sym_e_GT_GT] = ACTIONS(1837), + [anon_sym_o_GT_GT] = ACTIONS(1837), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1837), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1837), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1837), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1837), + [aux_sym_unquoted_token1] = ACTIONS(1835), [anon_sym_POUND] = ACTIONS(247), }, [1343] = { [sym_comment] = STATE(1343), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [anon_sym_null] = ACTIONS(1591), - [aux_sym_cmd_identifier_token38] = ACTIONS(1591), - [aux_sym_cmd_identifier_token39] = ACTIONS(1591), - [aux_sym_cmd_identifier_token40] = ACTIONS(1591), - [sym__newline] = ACTIONS(1591), - [anon_sym_SEMI] = ACTIONS(1591), - [anon_sym_PIPE] = ACTIONS(1591), - [anon_sym_err_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_GT_PIPE] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), - [anon_sym_LBRACK] = ACTIONS(1591), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_RPAREN] = ACTIONS(1591), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_DASH] = ACTIONS(1589), - [aux_sym_ctrl_match_token1] = ACTIONS(1591), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1591), - [anon_sym_DOT_DOT2] = ACTIONS(1589), - [anon_sym_DOT] = ACTIONS(4379), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), - [aux_sym__immediate_decimal_token2] = ACTIONS(4381), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token3] = ACTIONS(1591), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(1591), - [aux_sym__val_number_token2] = ACTIONS(1591), - [aux_sym__val_number_token3] = ACTIONS(1591), - [anon_sym_0b] = ACTIONS(1589), - [anon_sym_0o] = ACTIONS(1589), - [anon_sym_0x] = ACTIONS(1589), - [sym_val_date] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym__str_single_quotes] = ACTIONS(1591), - [sym__str_back_ticks] = ACTIONS(1591), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), - [anon_sym_err_GT] = ACTIONS(1589), - [anon_sym_out_GT] = ACTIONS(1589), - [anon_sym_e_GT] = ACTIONS(1589), - [anon_sym_o_GT] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT] = ACTIONS(1589), - [anon_sym_err_GT_GT] = ACTIONS(1591), - [anon_sym_out_GT_GT] = ACTIONS(1591), - [anon_sym_e_GT_GT] = ACTIONS(1591), - [anon_sym_o_GT_GT] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), - [aux_sym_unquoted_token1] = ACTIONS(1589), - [aux_sym_unquoted_token2] = ACTIONS(1589), + [aux_sym_cmd_identifier_token41] = ACTIONS(1639), + [sym__newline] = ACTIONS(1639), + [anon_sym_SEMI] = ACTIONS(1641), + [anon_sym_PIPE] = ACTIONS(1641), + [anon_sym_err_GT_PIPE] = ACTIONS(1641), + [anon_sym_out_GT_PIPE] = ACTIONS(1641), + [anon_sym_e_GT_PIPE] = ACTIONS(1641), + [anon_sym_o_GT_PIPE] = ACTIONS(1641), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), + [anon_sym_RBRACE] = ACTIONS(1641), + [anon_sym_EQ_GT] = ACTIONS(1641), + [aux_sym_expr_binary_token1] = ACTIONS(1641), + [aux_sym_expr_binary_token2] = ACTIONS(1641), + [aux_sym_expr_binary_token3] = ACTIONS(1641), + [aux_sym_expr_binary_token4] = ACTIONS(1641), + [aux_sym_expr_binary_token5] = ACTIONS(1641), + [aux_sym_expr_binary_token6] = ACTIONS(1641), + [aux_sym_expr_binary_token7] = ACTIONS(1641), + [aux_sym_expr_binary_token8] = ACTIONS(1641), + [aux_sym_expr_binary_token9] = ACTIONS(1641), + [aux_sym_expr_binary_token10] = ACTIONS(1641), + [aux_sym_expr_binary_token11] = ACTIONS(1641), + [aux_sym_expr_binary_token12] = ACTIONS(1641), + [aux_sym_expr_binary_token13] = ACTIONS(1641), + [aux_sym_expr_binary_token14] = ACTIONS(1641), + [aux_sym_expr_binary_token15] = ACTIONS(1641), + [aux_sym_expr_binary_token16] = ACTIONS(1641), + [aux_sym_expr_binary_token17] = ACTIONS(1641), + [aux_sym_expr_binary_token18] = ACTIONS(1641), + [aux_sym_expr_binary_token19] = ACTIONS(1641), + [aux_sym_expr_binary_token20] = ACTIONS(1641), + [aux_sym_expr_binary_token21] = ACTIONS(1641), + [aux_sym_expr_binary_token22] = ACTIONS(1641), + [aux_sym_expr_binary_token23] = ACTIONS(1641), + [aux_sym_expr_binary_token24] = ACTIONS(1641), + [aux_sym_expr_binary_token25] = ACTIONS(1641), + [aux_sym_expr_binary_token26] = ACTIONS(1641), + [aux_sym_expr_binary_token27] = ACTIONS(1641), + [aux_sym_expr_binary_token28] = ACTIONS(1641), + [anon_sym_DOT_DOT2] = ACTIONS(1639), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), + [sym_filesize_unit] = ACTIONS(1641), + [sym_duration_unit] = ACTIONS(1641), + [aux_sym_record_entry_token1] = ACTIONS(1641), + [anon_sym_err_GT] = ACTIONS(1639), + [anon_sym_out_GT] = ACTIONS(1639), + [anon_sym_e_GT] = ACTIONS(1639), + [anon_sym_o_GT] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT] = ACTIONS(1639), + [anon_sym_err_GT_GT] = ACTIONS(1641), + [anon_sym_out_GT_GT] = ACTIONS(1641), + [anon_sym_e_GT_GT] = ACTIONS(1641), + [anon_sym_o_GT_GT] = ACTIONS(1641), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), [anon_sym_POUND] = ACTIONS(247), }, [1344] = { - [sym__val_range] = STATE(7894), - [sym__value] = STATE(2078), - [sym_val_nothing] = STATE(2094), - [sym_val_bool] = STATE(1825), - [sym_val_variable] = STATE(2094), - [sym_val_number] = STATE(2094), - [sym__val_number_decimal] = STATE(1419), - [sym__val_number] = STATE(2080), - [sym_val_duration] = STATE(2094), - [sym_val_filesize] = STATE(2094), - [sym_val_binary] = STATE(2094), - [sym_val_string] = STATE(2094), - [sym__str_double_quotes] = STATE(2042), - [sym_val_interpolated] = STATE(2094), - [sym__inter_single_quotes] = STATE(1955), - [sym__inter_double_quotes] = STATE(2073), - [sym_val_list] = STATE(2094), - [sym_val_record] = STATE(2094), - [sym_val_table] = STATE(2094), - [sym_val_closure] = STATE(2094), - [sym_unquoted] = STATE(2079), - [sym__unquoted_anonymous_prefix] = STATE(7825), + [sym_cell_path] = STATE(1858), + [sym_path] = STATE(1599), [sym_comment] = STATE(1344), - [anon_sym_true] = ACTIONS(4353), - [anon_sym_false] = ACTIONS(4353), - [anon_sym_null] = ACTIONS(4355), - [aux_sym_cmd_identifier_token38] = ACTIONS(4357), - [aux_sym_cmd_identifier_token39] = ACTIONS(4357), - [aux_sym_cmd_identifier_token40] = ACTIONS(4357), - [anon_sym_LBRACK] = ACTIONS(2690), - [anon_sym_LPAREN] = ACTIONS(4359), - [anon_sym_DOLLAR] = ACTIONS(4124), - [aux_sym_ctrl_match_token1] = ACTIONS(2700), - [anon_sym_DOT_DOT] = ACTIONS(4361), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4363), - [anon_sym_DOT_DOT_LT] = ACTIONS(4363), - [aux_sym__val_number_decimal_token1] = ACTIONS(4365), - [aux_sym__val_number_decimal_token2] = ACTIONS(4367), - [aux_sym__val_number_decimal_token3] = ACTIONS(4369), - [aux_sym__val_number_decimal_token4] = ACTIONS(4371), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [anon_sym_0b] = ACTIONS(2716), - [anon_sym_0o] = ACTIONS(2718), - [anon_sym_0x] = ACTIONS(2718), - [sym_val_date] = ACTIONS(4373), - [anon_sym_DQUOTE] = ACTIONS(2722), - [sym__str_single_quotes] = ACTIONS(2724), - [sym__str_back_ticks] = ACTIONS(2724), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2726), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(4375), + [aux_sym_cell_path_repeat1] = STATE(1437), + [ts_builtin_sym_end] = ACTIONS(1971), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1971), + [aux_sym_cmd_identifier_token38] = ACTIONS(1971), + [aux_sym_cmd_identifier_token39] = ACTIONS(1971), + [aux_sym_cmd_identifier_token40] = ACTIONS(1971), + [sym__newline] = ACTIONS(1971), + [anon_sym_SEMI] = ACTIONS(1971), + [anon_sym_PIPE] = ACTIONS(1971), + [anon_sym_err_GT_PIPE] = ACTIONS(1971), + [anon_sym_out_GT_PIPE] = ACTIONS(1971), + [anon_sym_e_GT_PIPE] = ACTIONS(1971), + [anon_sym_o_GT_PIPE] = ACTIONS(1971), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1971), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1971), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1971), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1971), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_LPAREN] = ACTIONS(1971), + [anon_sym_DOLLAR] = ACTIONS(1969), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1969), + [aux_sym_ctrl_match_token1] = ACTIONS(1971), + [anon_sym_DOT_DOT] = ACTIONS(1969), + [anon_sym_DOT] = ACTIONS(4674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1971), + [anon_sym_DOT_DOT_LT] = ACTIONS(1971), + [aux_sym__val_number_decimal_token1] = ACTIONS(1969), + [aux_sym__val_number_decimal_token2] = ACTIONS(1971), + [aux_sym__val_number_decimal_token3] = ACTIONS(1971), + [aux_sym__val_number_decimal_token4] = ACTIONS(1971), + [aux_sym__val_number_token1] = ACTIONS(1971), + [aux_sym__val_number_token2] = ACTIONS(1971), + [aux_sym__val_number_token3] = ACTIONS(1971), + [anon_sym_0b] = ACTIONS(1969), + [anon_sym_0o] = ACTIONS(1969), + [anon_sym_0x] = ACTIONS(1969), + [sym_val_date] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(1971), + [sym__str_single_quotes] = ACTIONS(1971), + [sym__str_back_ticks] = ACTIONS(1971), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1971), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1971), + [anon_sym_err_GT] = ACTIONS(1969), + [anon_sym_out_GT] = ACTIONS(1969), + [anon_sym_e_GT] = ACTIONS(1969), + [anon_sym_o_GT] = ACTIONS(1969), + [anon_sym_err_PLUSout_GT] = ACTIONS(1969), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1969), + [anon_sym_o_PLUSe_GT] = ACTIONS(1969), + [anon_sym_e_PLUSo_GT] = ACTIONS(1969), + [anon_sym_err_GT_GT] = ACTIONS(1971), + [anon_sym_out_GT_GT] = ACTIONS(1971), + [anon_sym_e_GT_GT] = ACTIONS(1971), + [anon_sym_o_GT_GT] = ACTIONS(1971), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1971), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1971), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1971), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1971), + [aux_sym_unquoted_token1] = ACTIONS(1969), [anon_sym_POUND] = ACTIONS(247), }, [1345] = { - [sym__val_range] = STATE(7865), - [sym__value] = STATE(6238), - [sym_val_nothing] = STATE(5312), - [sym_val_bool] = STATE(6781), - [sym_val_variable] = STATE(5312), - [sym_val_number] = STATE(5312), - [sym__val_number_decimal] = STATE(5651), - [sym__val_number] = STATE(5409), - [sym_val_duration] = STATE(5312), - [sym_val_filesize] = STATE(5312), - [sym_val_binary] = STATE(5312), - [sym_val_string] = STATE(5312), - [sym__str_double_quotes] = STATE(4863), - [sym_val_interpolated] = STATE(5312), - [sym__inter_single_quotes] = STATE(5273), - [sym__inter_double_quotes] = STATE(5275), - [sym_val_list] = STATE(5312), - [sym_val_record] = STATE(5312), - [sym_val_table] = STATE(5312), - [sym_val_closure] = STATE(5312), - [sym_unquoted] = STATE(6265), - [sym__unquoted_anonymous_prefix] = STATE(7927), + [sym_cell_path] = STATE(1843), + [sym_path] = STATE(1599), [sym_comment] = STATE(1345), - [anon_sym_true] = ACTIONS(4383), - [anon_sym_false] = ACTIONS(4383), - [anon_sym_null] = ACTIONS(4385), - [aux_sym_cmd_identifier_token38] = ACTIONS(4387), - [aux_sym_cmd_identifier_token39] = ACTIONS(4387), - [aux_sym_cmd_identifier_token40] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4226), - [anon_sym_DOLLAR] = ACTIONS(4272), - [aux_sym_ctrl_match_token1] = ACTIONS(4274), - [anon_sym_DOT_DOT] = ACTIONS(4232), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4234), - [anon_sym_DOT_DOT_LT] = ACTIONS(4234), - [aux_sym__val_number_decimal_token1] = ACTIONS(4389), - [aux_sym__val_number_decimal_token2] = ACTIONS(4391), - [aux_sym__val_number_decimal_token3] = ACTIONS(4393), - [aux_sym__val_number_decimal_token4] = ACTIONS(4395), - [aux_sym__val_number_token1] = ACTIONS(3697), - [aux_sym__val_number_token2] = ACTIONS(3697), - [aux_sym__val_number_token3] = ACTIONS(3697), - [anon_sym_0b] = ACTIONS(3699), - [anon_sym_0o] = ACTIONS(3701), - [anon_sym_0x] = ACTIONS(3701), - [sym_val_date] = ACTIONS(4397), - [anon_sym_DQUOTE] = ACTIONS(4286), - [sym__str_single_quotes] = ACTIONS(4288), - [sym__str_back_ticks] = ACTIONS(4288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(4246), + [aux_sym_cell_path_repeat1] = STATE(1437), + [ts_builtin_sym_end] = ACTIONS(1833), + [anon_sym_true] = ACTIONS(1833), + [anon_sym_false] = ACTIONS(1833), + [anon_sym_null] = ACTIONS(1833), + [aux_sym_cmd_identifier_token38] = ACTIONS(1833), + [aux_sym_cmd_identifier_token39] = ACTIONS(1833), + [aux_sym_cmd_identifier_token40] = ACTIONS(1833), + [sym__newline] = ACTIONS(1833), + [anon_sym_SEMI] = ACTIONS(1833), + [anon_sym_PIPE] = ACTIONS(1833), + [anon_sym_err_GT_PIPE] = ACTIONS(1833), + [anon_sym_out_GT_PIPE] = ACTIONS(1833), + [anon_sym_e_GT_PIPE] = ACTIONS(1833), + [anon_sym_o_GT_PIPE] = ACTIONS(1833), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1833), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1833), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1833), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(1833), + [anon_sym_LPAREN] = ACTIONS(1833), + [anon_sym_DOLLAR] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1829), + [aux_sym_ctrl_match_token1] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(1829), + [anon_sym_DOT] = ACTIONS(4674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1833), + [anon_sym_DOT_DOT_LT] = ACTIONS(1833), + [aux_sym__val_number_decimal_token1] = ACTIONS(1829), + [aux_sym__val_number_decimal_token2] = ACTIONS(1833), + [aux_sym__val_number_decimal_token3] = ACTIONS(1833), + [aux_sym__val_number_decimal_token4] = ACTIONS(1833), + [aux_sym__val_number_token1] = ACTIONS(1833), + [aux_sym__val_number_token2] = ACTIONS(1833), + [aux_sym__val_number_token3] = ACTIONS(1833), + [anon_sym_0b] = ACTIONS(1829), + [anon_sym_0o] = ACTIONS(1829), + [anon_sym_0x] = ACTIONS(1829), + [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_err_GT] = ACTIONS(1829), + [anon_sym_out_GT] = ACTIONS(1829), + [anon_sym_e_GT] = ACTIONS(1829), + [anon_sym_o_GT] = ACTIONS(1829), + [anon_sym_err_PLUSout_GT] = ACTIONS(1829), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1829), + [anon_sym_o_PLUSe_GT] = ACTIONS(1829), + [anon_sym_e_PLUSo_GT] = ACTIONS(1829), + [anon_sym_err_GT_GT] = ACTIONS(1833), + [anon_sym_out_GT_GT] = ACTIONS(1833), + [anon_sym_e_GT_GT] = ACTIONS(1833), + [anon_sym_o_GT_GT] = ACTIONS(1833), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1833), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1833), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1833), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1833), + [aux_sym_unquoted_token1] = ACTIONS(1829), [anon_sym_POUND] = ACTIONS(247), }, [1346] = { - [sym__val_range] = STATE(7894), - [sym__value] = STATE(2086), - [sym_val_nothing] = STATE(2094), - [sym_val_bool] = STATE(1825), - [sym_val_variable] = STATE(2094), - [sym_val_number] = STATE(2094), - [sym__val_number_decimal] = STATE(1419), - [sym__val_number] = STATE(2080), - [sym_val_duration] = STATE(2094), - [sym_val_filesize] = STATE(2094), - [sym_val_binary] = STATE(2094), - [sym_val_string] = STATE(2094), - [sym__str_double_quotes] = STATE(2042), - [sym_val_interpolated] = STATE(2094), - [sym__inter_single_quotes] = STATE(1955), - [sym__inter_double_quotes] = STATE(2073), - [sym_val_list] = STATE(2094), - [sym_val_record] = STATE(2094), - [sym_val_table] = STATE(2094), - [sym_val_closure] = STATE(2094), - [sym_unquoted] = STATE(2087), - [sym__unquoted_anonymous_prefix] = STATE(7825), + [sym_cell_path] = STATE(1846), + [sym_path] = STATE(1599), [sym_comment] = STATE(1346), - [anon_sym_true] = ACTIONS(4353), - [anon_sym_false] = ACTIONS(4353), - [anon_sym_null] = ACTIONS(4355), - [aux_sym_cmd_identifier_token38] = ACTIONS(4357), - [aux_sym_cmd_identifier_token39] = ACTIONS(4357), - [aux_sym_cmd_identifier_token40] = ACTIONS(4357), - [anon_sym_LBRACK] = ACTIONS(2690), - [anon_sym_LPAREN] = ACTIONS(4359), - [anon_sym_DOLLAR] = ACTIONS(4124), - [aux_sym_ctrl_match_token1] = ACTIONS(2700), - [anon_sym_DOT_DOT] = ACTIONS(4361), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4363), - [anon_sym_DOT_DOT_LT] = ACTIONS(4363), - [aux_sym__val_number_decimal_token1] = ACTIONS(4365), - [aux_sym__val_number_decimal_token2] = ACTIONS(4367), - [aux_sym__val_number_decimal_token3] = ACTIONS(4369), - [aux_sym__val_number_decimal_token4] = ACTIONS(4371), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [anon_sym_0b] = ACTIONS(2716), - [anon_sym_0o] = ACTIONS(2718), - [anon_sym_0x] = ACTIONS(2718), - [sym_val_date] = ACTIONS(4373), - [anon_sym_DQUOTE] = ACTIONS(2722), - [sym__str_single_quotes] = ACTIONS(2724), - [sym__str_back_ticks] = ACTIONS(2724), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2726), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(4375), + [aux_sym_cell_path_repeat1] = STATE(1437), + [ts_builtin_sym_end] = ACTIONS(1841), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1841), + [aux_sym_cmd_identifier_token38] = ACTIONS(1841), + [aux_sym_cmd_identifier_token39] = ACTIONS(1841), + [aux_sym_cmd_identifier_token40] = ACTIONS(1841), + [sym__newline] = ACTIONS(1841), + [anon_sym_SEMI] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_err_GT_PIPE] = ACTIONS(1841), + [anon_sym_out_GT_PIPE] = ACTIONS(1841), + [anon_sym_e_GT_PIPE] = ACTIONS(1841), + [anon_sym_o_GT_PIPE] = ACTIONS(1841), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1841), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1841), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1841), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1841), + [anon_sym_LBRACK] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1839), + [anon_sym_DASH_DASH] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1839), + [aux_sym_ctrl_match_token1] = ACTIONS(1841), + [anon_sym_DOT_DOT] = ACTIONS(1839), + [anon_sym_DOT] = ACTIONS(4674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1841), + [anon_sym_DOT_DOT_LT] = ACTIONS(1841), + [aux_sym__val_number_decimal_token1] = ACTIONS(1839), + [aux_sym__val_number_decimal_token2] = ACTIONS(1841), + [aux_sym__val_number_decimal_token3] = ACTIONS(1841), + [aux_sym__val_number_decimal_token4] = ACTIONS(1841), + [aux_sym__val_number_token1] = ACTIONS(1841), + [aux_sym__val_number_token2] = ACTIONS(1841), + [aux_sym__val_number_token3] = ACTIONS(1841), + [anon_sym_0b] = ACTIONS(1839), + [anon_sym_0o] = ACTIONS(1839), + [anon_sym_0x] = ACTIONS(1839), + [sym_val_date] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym__str_single_quotes] = ACTIONS(1841), + [sym__str_back_ticks] = ACTIONS(1841), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1841), + [anon_sym_err_GT] = ACTIONS(1839), + [anon_sym_out_GT] = ACTIONS(1839), + [anon_sym_e_GT] = ACTIONS(1839), + [anon_sym_o_GT] = ACTIONS(1839), + [anon_sym_err_PLUSout_GT] = ACTIONS(1839), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1839), + [anon_sym_o_PLUSe_GT] = ACTIONS(1839), + [anon_sym_e_PLUSo_GT] = ACTIONS(1839), + [anon_sym_err_GT_GT] = ACTIONS(1841), + [anon_sym_out_GT_GT] = ACTIONS(1841), + [anon_sym_e_GT_GT] = ACTIONS(1841), + [anon_sym_o_GT_GT] = ACTIONS(1841), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1841), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1841), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1841), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1841), + [aux_sym_unquoted_token1] = ACTIONS(1839), [anon_sym_POUND] = ACTIONS(247), }, [1347] = { - [sym__val_range] = STATE(7865), - [sym__value] = STATE(6272), - [sym_val_nothing] = STATE(5312), - [sym_val_bool] = STATE(6781), - [sym_val_variable] = STATE(5312), - [sym_val_number] = STATE(5312), - [sym__val_number_decimal] = STATE(5651), - [sym__val_number] = STATE(5409), - [sym_val_duration] = STATE(5312), - [sym_val_filesize] = STATE(5312), - [sym_val_binary] = STATE(5312), - [sym_val_string] = STATE(5312), - [sym__str_double_quotes] = STATE(4863), - [sym_val_interpolated] = STATE(5312), - [sym__inter_single_quotes] = STATE(5273), - [sym__inter_double_quotes] = STATE(5275), - [sym_val_list] = STATE(5312), - [sym_val_record] = STATE(5312), - [sym_val_table] = STATE(5312), - [sym_val_closure] = STATE(5312), - [sym_unquoted] = STATE(6274), - [sym__unquoted_anonymous_prefix] = STATE(7927), + [sym__expr_parenthesized_immediate] = STATE(7427), [sym_comment] = STATE(1347), - [anon_sym_true] = ACTIONS(4383), - [anon_sym_false] = ACTIONS(4383), - [anon_sym_null] = ACTIONS(4385), - [aux_sym_cmd_identifier_token38] = ACTIONS(4387), - [aux_sym_cmd_identifier_token39] = ACTIONS(4387), - [aux_sym_cmd_identifier_token40] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4226), - [anon_sym_DOLLAR] = ACTIONS(4272), - [aux_sym_ctrl_match_token1] = ACTIONS(4274), - [anon_sym_DOT_DOT] = ACTIONS(4232), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4234), - [anon_sym_DOT_DOT_LT] = ACTIONS(4234), - [aux_sym__val_number_decimal_token1] = ACTIONS(4389), - [aux_sym__val_number_decimal_token2] = ACTIONS(4391), - [aux_sym__val_number_decimal_token3] = ACTIONS(4393), - [aux_sym__val_number_decimal_token4] = ACTIONS(4395), - [aux_sym__val_number_token1] = ACTIONS(3697), - [aux_sym__val_number_token2] = ACTIONS(3697), - [aux_sym__val_number_token3] = ACTIONS(3697), - [anon_sym_0b] = ACTIONS(3699), - [anon_sym_0o] = ACTIONS(3701), - [anon_sym_0x] = ACTIONS(3701), - [sym_val_date] = ACTIONS(4397), - [anon_sym_DQUOTE] = ACTIONS(4286), - [sym__str_single_quotes] = ACTIONS(4288), - [sym__str_back_ticks] = ACTIONS(4288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(4246), + [ts_builtin_sym_end] = ACTIONS(1587), + [sym__newline] = ACTIONS(1587), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_err_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_GT_PIPE] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), + [anon_sym_LPAREN2] = ACTIONS(3914), + [aux_sym_expr_binary_token1] = ACTIONS(1587), + [aux_sym_expr_binary_token2] = ACTIONS(1587), + [aux_sym_expr_binary_token3] = ACTIONS(1587), + [aux_sym_expr_binary_token4] = ACTIONS(1587), + [aux_sym_expr_binary_token5] = ACTIONS(1587), + [aux_sym_expr_binary_token6] = ACTIONS(1587), + [aux_sym_expr_binary_token7] = ACTIONS(1587), + [aux_sym_expr_binary_token8] = ACTIONS(1587), + [aux_sym_expr_binary_token9] = ACTIONS(1587), + [aux_sym_expr_binary_token10] = ACTIONS(1587), + [aux_sym_expr_binary_token11] = ACTIONS(1587), + [aux_sym_expr_binary_token12] = ACTIONS(1587), + [aux_sym_expr_binary_token13] = ACTIONS(1587), + [aux_sym_expr_binary_token14] = ACTIONS(1587), + [aux_sym_expr_binary_token15] = ACTIONS(1587), + [aux_sym_expr_binary_token16] = ACTIONS(1587), + [aux_sym_expr_binary_token17] = ACTIONS(1587), + [aux_sym_expr_binary_token18] = ACTIONS(1587), + [aux_sym_expr_binary_token19] = ACTIONS(1587), + [aux_sym_expr_binary_token20] = ACTIONS(1587), + [aux_sym_expr_binary_token21] = ACTIONS(1587), + [aux_sym_expr_binary_token22] = ACTIONS(1587), + [aux_sym_expr_binary_token23] = ACTIONS(1587), + [aux_sym_expr_binary_token24] = ACTIONS(1587), + [aux_sym_expr_binary_token25] = ACTIONS(1587), + [aux_sym_expr_binary_token26] = ACTIONS(1587), + [aux_sym_expr_binary_token27] = ACTIONS(1587), + [aux_sym_expr_binary_token28] = ACTIONS(1587), + [anon_sym_DOT_DOT2] = ACTIONS(4610), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4612), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4612), + [sym_filesize_unit] = ACTIONS(4708), + [sym_duration_unit] = ACTIONS(4710), + [anon_sym_err_GT] = ACTIONS(1575), + [anon_sym_out_GT] = ACTIONS(1575), + [anon_sym_e_GT] = ACTIONS(1575), + [anon_sym_o_GT] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT] = ACTIONS(1575), + [anon_sym_err_GT_GT] = ACTIONS(1587), + [anon_sym_out_GT_GT] = ACTIONS(1587), + [anon_sym_e_GT_GT] = ACTIONS(1587), + [anon_sym_o_GT_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [aux_sym_unquoted_token2] = ACTIONS(4712), [anon_sym_POUND] = ACTIONS(247), }, [1348] = { [sym_comment] = STATE(1348), - [ts_builtin_sym_end] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [aux_sym_cmd_identifier_token38] = ACTIONS(1475), - [aux_sym_cmd_identifier_token39] = ACTIONS(1475), - [aux_sym_cmd_identifier_token40] = ACTIONS(1475), - [sym__newline] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_err_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_GT_PIPE] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1475), - [anon_sym_DOLLAR] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1473), - [aux_sym_ctrl_match_token1] = ACTIONS(1475), - [anon_sym_DOT_DOT] = ACTIONS(1473), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT] = ACTIONS(4399), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), - [anon_sym_DOT_DOT_LT] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [aux_sym__immediate_decimal_token2] = ACTIONS(4401), - [aux_sym__val_number_decimal_token1] = ACTIONS(1473), - [aux_sym__val_number_decimal_token2] = ACTIONS(1475), - [aux_sym__val_number_decimal_token3] = ACTIONS(1475), - [aux_sym__val_number_decimal_token4] = ACTIONS(1475), - [aux_sym__val_number_token1] = ACTIONS(1475), - [aux_sym__val_number_token2] = ACTIONS(1475), - [aux_sym__val_number_token3] = ACTIONS(1475), - [anon_sym_0b] = ACTIONS(1473), - [sym_filesize_unit] = ACTIONS(1475), - [sym_duration_unit] = ACTIONS(1475), - [anon_sym_0o] = ACTIONS(1473), - [anon_sym_0x] = ACTIONS(1473), - [sym_val_date] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym__str_single_quotes] = ACTIONS(1475), - [sym__str_back_ticks] = ACTIONS(1475), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1473), - [anon_sym_out_GT] = ACTIONS(1473), - [anon_sym_e_GT] = ACTIONS(1473), - [anon_sym_o_GT] = ACTIONS(1473), - [anon_sym_err_PLUSout_GT] = ACTIONS(1473), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), - [anon_sym_o_PLUSe_GT] = ACTIONS(1473), - [anon_sym_e_PLUSo_GT] = ACTIONS(1473), - [anon_sym_err_GT_GT] = ACTIONS(1475), - [anon_sym_out_GT_GT] = ACTIONS(1475), - [anon_sym_e_GT_GT] = ACTIONS(1475), - [anon_sym_o_GT_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), - [aux_sym_unquoted_token1] = ACTIONS(1473), - [aux_sym_unquoted_token2] = ACTIONS(1473), + [ts_builtin_sym_end] = ACTIONS(1062), + [anon_sym_true] = ACTIONS(1062), + [anon_sym_false] = ACTIONS(1062), + [anon_sym_null] = ACTIONS(1062), + [aux_sym_cmd_identifier_token38] = ACTIONS(1062), + [aux_sym_cmd_identifier_token39] = ACTIONS(1062), + [aux_sym_cmd_identifier_token40] = ACTIONS(1062), + [sym__newline] = ACTIONS(1062), + [anon_sym_SEMI] = ACTIONS(1062), + [anon_sym_PIPE] = ACTIONS(1062), + [anon_sym_err_GT_PIPE] = ACTIONS(1062), + [anon_sym_out_GT_PIPE] = ACTIONS(1062), + [anon_sym_e_GT_PIPE] = ACTIONS(1062), + [anon_sym_o_GT_PIPE] = ACTIONS(1062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(1062), + [anon_sym_LPAREN] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1060), + [anon_sym_DASH_DASH] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1060), + [aux_sym_ctrl_match_token1] = ACTIONS(1062), + [anon_sym_DOT_DOT] = ACTIONS(1060), + [anon_sym_DOT_DOT2] = ACTIONS(1060), + [anon_sym_DOT] = ACTIONS(1060), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1060), + [anon_sym_DOT_DOT_LT] = ACTIONS(1060), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1062), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1062), + [aux_sym__val_number_decimal_token1] = ACTIONS(1060), + [aux_sym__val_number_decimal_token2] = ACTIONS(1062), + [aux_sym__val_number_decimal_token3] = ACTIONS(1062), + [aux_sym__val_number_decimal_token4] = ACTIONS(1062), + [aux_sym__val_number_token1] = ACTIONS(1062), + [aux_sym__val_number_token2] = ACTIONS(1062), + [aux_sym__val_number_token3] = ACTIONS(1062), + [anon_sym_0b] = ACTIONS(1060), + [anon_sym_0o] = ACTIONS(1060), + [anon_sym_0x] = ACTIONS(1060), + [sym_val_date] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1062), + [sym__str_single_quotes] = ACTIONS(1062), + [sym__str_back_ticks] = ACTIONS(1062), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1062), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1062), + [anon_sym_err_GT] = ACTIONS(1060), + [anon_sym_out_GT] = ACTIONS(1060), + [anon_sym_e_GT] = ACTIONS(1060), + [anon_sym_o_GT] = ACTIONS(1060), + [anon_sym_err_PLUSout_GT] = ACTIONS(1060), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1060), + [anon_sym_o_PLUSe_GT] = ACTIONS(1060), + [anon_sym_e_PLUSo_GT] = ACTIONS(1060), + [anon_sym_err_GT_GT] = ACTIONS(1062), + [anon_sym_out_GT_GT] = ACTIONS(1062), + [anon_sym_e_GT_GT] = ACTIONS(1062), + [anon_sym_o_GT_GT] = ACTIONS(1062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1062), + [aux_sym_unquoted_token1] = ACTIONS(1060), [anon_sym_POUND] = ACTIONS(247), }, [1349] = { - [sym__val_range] = STATE(7865), - [sym__value] = STATE(6208), - [sym_val_nothing] = STATE(5312), - [sym_val_bool] = STATE(6781), - [sym_val_variable] = STATE(5312), - [sym_val_number] = STATE(5312), - [sym__val_number_decimal] = STATE(5651), - [sym__val_number] = STATE(5409), - [sym_val_duration] = STATE(5312), - [sym_val_filesize] = STATE(5312), - [sym_val_binary] = STATE(5312), - [sym_val_string] = STATE(5312), - [sym__str_double_quotes] = STATE(4863), - [sym_val_interpolated] = STATE(5312), - [sym__inter_single_quotes] = STATE(5273), - [sym__inter_double_quotes] = STATE(5275), - [sym_val_list] = STATE(5312), - [sym_val_record] = STATE(5312), - [sym_val_table] = STATE(5312), - [sym_val_closure] = STATE(5312), - [sym_unquoted] = STATE(6209), - [sym__unquoted_anonymous_prefix] = STATE(7927), [sym_comment] = STATE(1349), - [anon_sym_true] = ACTIONS(4383), - [anon_sym_false] = ACTIONS(4383), - [anon_sym_null] = ACTIONS(4385), - [aux_sym_cmd_identifier_token38] = ACTIONS(4387), - [aux_sym_cmd_identifier_token39] = ACTIONS(4387), - [aux_sym_cmd_identifier_token40] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4226), - [anon_sym_DOLLAR] = ACTIONS(4272), - [aux_sym_ctrl_match_token1] = ACTIONS(4274), - [anon_sym_DOT_DOT] = ACTIONS(4232), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4234), - [anon_sym_DOT_DOT_LT] = ACTIONS(4234), - [aux_sym__val_number_decimal_token1] = ACTIONS(4389), - [aux_sym__val_number_decimal_token2] = ACTIONS(4391), - [aux_sym__val_number_decimal_token3] = ACTIONS(4393), - [aux_sym__val_number_decimal_token4] = ACTIONS(4395), - [aux_sym__val_number_token1] = ACTIONS(3697), - [aux_sym__val_number_token2] = ACTIONS(3697), - [aux_sym__val_number_token3] = ACTIONS(3697), - [anon_sym_0b] = ACTIONS(3699), - [anon_sym_0o] = ACTIONS(3701), - [anon_sym_0x] = ACTIONS(3701), - [sym_val_date] = ACTIONS(4397), - [anon_sym_DQUOTE] = ACTIONS(4286), - [sym__str_single_quotes] = ACTIONS(4288), - [sym__str_back_ticks] = ACTIONS(4288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(4246), + [ts_builtin_sym_end] = ACTIONS(1054), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_null] = ACTIONS(1054), + [aux_sym_cmd_identifier_token38] = ACTIONS(1054), + [aux_sym_cmd_identifier_token39] = ACTIONS(1054), + [aux_sym_cmd_identifier_token40] = ACTIONS(1054), + [sym__newline] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_PIPE] = ACTIONS(1054), + [anon_sym_err_GT_PIPE] = ACTIONS(1054), + [anon_sym_out_GT_PIPE] = ACTIONS(1054), + [anon_sym_e_GT_PIPE] = ACTIONS(1054), + [anon_sym_o_GT_PIPE] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_DOLLAR] = ACTIONS(1052), + [anon_sym_DASH_DASH] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1052), + [aux_sym_ctrl_match_token1] = ACTIONS(1054), + [anon_sym_DOT_DOT] = ACTIONS(1052), + [anon_sym_DOT_DOT2] = ACTIONS(1052), + [anon_sym_DOT] = ACTIONS(1052), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1052), + [anon_sym_DOT_DOT_LT] = ACTIONS(1052), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1054), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1054), + [aux_sym__val_number_decimal_token1] = ACTIONS(1052), + [aux_sym__val_number_decimal_token2] = ACTIONS(1054), + [aux_sym__val_number_decimal_token3] = ACTIONS(1054), + [aux_sym__val_number_decimal_token4] = ACTIONS(1054), + [aux_sym__val_number_token1] = ACTIONS(1054), + [aux_sym__val_number_token2] = ACTIONS(1054), + [aux_sym__val_number_token3] = ACTIONS(1054), + [anon_sym_0b] = ACTIONS(1052), + [anon_sym_0o] = ACTIONS(1052), + [anon_sym_0x] = ACTIONS(1052), + [sym_val_date] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym__str_single_quotes] = ACTIONS(1054), + [sym__str_back_ticks] = ACTIONS(1054), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1054), + [anon_sym_err_GT] = ACTIONS(1052), + [anon_sym_out_GT] = ACTIONS(1052), + [anon_sym_e_GT] = ACTIONS(1052), + [anon_sym_o_GT] = ACTIONS(1052), + [anon_sym_err_PLUSout_GT] = ACTIONS(1052), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1052), + [anon_sym_o_PLUSe_GT] = ACTIONS(1052), + [anon_sym_e_PLUSo_GT] = ACTIONS(1052), + [anon_sym_err_GT_GT] = ACTIONS(1054), + [anon_sym_out_GT_GT] = ACTIONS(1054), + [anon_sym_e_GT_GT] = ACTIONS(1054), + [anon_sym_o_GT_GT] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1054), + [aux_sym_unquoted_token1] = ACTIONS(1052), [anon_sym_POUND] = ACTIONS(247), }, [1350] = { - [sym__val_range] = STATE(7916), - [sym__value] = STATE(5112), - [sym_val_nothing] = STATE(5122), - [sym_val_bool] = STATE(4803), - [sym_val_variable] = STATE(5122), - [sym_val_number] = STATE(5122), - [sym__val_number_decimal] = STATE(4301), - [sym__val_number] = STATE(5127), - [sym_val_duration] = STATE(5122), - [sym_val_filesize] = STATE(5122), - [sym_val_binary] = STATE(5122), - [sym_val_string] = STATE(5122), - [sym__str_double_quotes] = STATE(4755), - [sym_val_interpolated] = STATE(5122), - [sym__inter_single_quotes] = STATE(5169), - [sym__inter_double_quotes] = STATE(5023), - [sym_val_list] = STATE(5122), - [sym_val_record] = STATE(5122), - [sym_val_table] = STATE(5122), - [sym_val_closure] = STATE(5122), - [sym_unquoted] = STATE(5113), - [sym__unquoted_anonymous_prefix] = STATE(8005), + [sym_cell_path] = STATE(1860), + [sym_path] = STATE(1599), [sym_comment] = STATE(1350), - [anon_sym_true] = ACTIONS(4403), - [anon_sym_false] = ACTIONS(4403), - [anon_sym_null] = ACTIONS(4405), - [aux_sym_cmd_identifier_token38] = ACTIONS(4407), - [aux_sym_cmd_identifier_token39] = ACTIONS(4407), - [aux_sym_cmd_identifier_token40] = ACTIONS(4407), - [anon_sym_LBRACK] = ACTIONS(4409), - [anon_sym_LPAREN] = ACTIONS(4411), - [anon_sym_DOLLAR] = ACTIONS(4413), - [aux_sym_ctrl_match_token1] = ACTIONS(4415), - [anon_sym_DOT_DOT] = ACTIONS(4417), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4419), - [anon_sym_DOT_DOT_LT] = ACTIONS(4419), - [aux_sym__val_number_decimal_token1] = ACTIONS(2175), - [aux_sym__val_number_decimal_token2] = ACTIONS(4421), - [aux_sym__val_number_decimal_token3] = ACTIONS(4423), - [aux_sym__val_number_decimal_token4] = ACTIONS(4425), - [aux_sym__val_number_token1] = ACTIONS(4427), - [aux_sym__val_number_token2] = ACTIONS(4427), - [aux_sym__val_number_token3] = ACTIONS(4427), - [anon_sym_0b] = ACTIONS(2183), - [anon_sym_0o] = ACTIONS(2185), - [anon_sym_0x] = ACTIONS(2185), - [sym_val_date] = ACTIONS(4429), - [anon_sym_DQUOTE] = ACTIONS(4431), - [sym__str_single_quotes] = ACTIONS(4433), - [sym__str_back_ticks] = ACTIONS(4433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4435), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4437), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(2201), + [aux_sym_cell_path_repeat1] = STATE(1437), + [ts_builtin_sym_end] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(1896), + [anon_sym_false] = ACTIONS(1896), + [anon_sym_null] = ACTIONS(1896), + [aux_sym_cmd_identifier_token38] = ACTIONS(1896), + [aux_sym_cmd_identifier_token39] = ACTIONS(1896), + [aux_sym_cmd_identifier_token40] = ACTIONS(1896), + [sym__newline] = ACTIONS(1896), + [anon_sym_SEMI] = ACTIONS(1896), + [anon_sym_PIPE] = ACTIONS(1896), + [anon_sym_err_GT_PIPE] = ACTIONS(1896), + [anon_sym_out_GT_PIPE] = ACTIONS(1896), + [anon_sym_e_GT_PIPE] = ACTIONS(1896), + [anon_sym_o_GT_PIPE] = ACTIONS(1896), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1896), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1896), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1896), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1896), + [anon_sym_LBRACK] = ACTIONS(1896), + [anon_sym_LPAREN] = ACTIONS(1896), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_DASH_DASH] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1894), + [aux_sym_ctrl_match_token1] = ACTIONS(1896), + [anon_sym_DOT_DOT] = ACTIONS(1894), + [anon_sym_DOT] = ACTIONS(4674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1896), + [anon_sym_DOT_DOT_LT] = ACTIONS(1896), + [aux_sym__val_number_decimal_token1] = ACTIONS(1894), + [aux_sym__val_number_decimal_token2] = ACTIONS(1896), + [aux_sym__val_number_decimal_token3] = ACTIONS(1896), + [aux_sym__val_number_decimal_token4] = ACTIONS(1896), + [aux_sym__val_number_token1] = ACTIONS(1896), + [aux_sym__val_number_token2] = ACTIONS(1896), + [aux_sym__val_number_token3] = ACTIONS(1896), + [anon_sym_0b] = ACTIONS(1894), + [anon_sym_0o] = ACTIONS(1894), + [anon_sym_0x] = ACTIONS(1894), + [sym_val_date] = ACTIONS(1896), + [anon_sym_DQUOTE] = ACTIONS(1896), + [sym__str_single_quotes] = ACTIONS(1896), + [sym__str_back_ticks] = ACTIONS(1896), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1896), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1896), + [anon_sym_err_GT] = ACTIONS(1894), + [anon_sym_out_GT] = ACTIONS(1894), + [anon_sym_e_GT] = ACTIONS(1894), + [anon_sym_o_GT] = ACTIONS(1894), + [anon_sym_err_PLUSout_GT] = ACTIONS(1894), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1894), + [anon_sym_o_PLUSe_GT] = ACTIONS(1894), + [anon_sym_e_PLUSo_GT] = ACTIONS(1894), + [anon_sym_err_GT_GT] = ACTIONS(1896), + [anon_sym_out_GT_GT] = ACTIONS(1896), + [anon_sym_e_GT_GT] = ACTIONS(1896), + [anon_sym_o_GT_GT] = ACTIONS(1896), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1896), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1896), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1896), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1896), + [aux_sym_unquoted_token1] = ACTIONS(1894), [anon_sym_POUND] = ACTIONS(247), }, [1351] = { - [sym__val_range] = STATE(7865), - [sym__value] = STATE(6291), - [sym_val_nothing] = STATE(5312), - [sym_val_bool] = STATE(6781), - [sym_val_variable] = STATE(5312), - [sym_val_number] = STATE(5312), - [sym__val_number_decimal] = STATE(5651), - [sym__val_number] = STATE(5409), - [sym_val_duration] = STATE(5312), - [sym_val_filesize] = STATE(5312), - [sym_val_binary] = STATE(5312), - [sym_val_string] = STATE(5312), - [sym__str_double_quotes] = STATE(4863), - [sym_val_interpolated] = STATE(5312), - [sym__inter_single_quotes] = STATE(5273), - [sym__inter_double_quotes] = STATE(5275), - [sym_val_list] = STATE(5312), - [sym_val_record] = STATE(5312), - [sym_val_table] = STATE(5312), - [sym_val_closure] = STATE(5312), - [sym_unquoted] = STATE(6292), - [sym__unquoted_anonymous_prefix] = STATE(7927), [sym_comment] = STATE(1351), - [anon_sym_true] = ACTIONS(4383), - [anon_sym_false] = ACTIONS(4383), - [anon_sym_null] = ACTIONS(4385), - [aux_sym_cmd_identifier_token38] = ACTIONS(4387), - [aux_sym_cmd_identifier_token39] = ACTIONS(4387), - [aux_sym_cmd_identifier_token40] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4226), - [anon_sym_DOLLAR] = ACTIONS(4272), - [aux_sym_ctrl_match_token1] = ACTIONS(4274), - [anon_sym_DOT_DOT] = ACTIONS(4232), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4234), - [anon_sym_DOT_DOT_LT] = ACTIONS(4234), - [aux_sym__val_number_decimal_token1] = ACTIONS(4389), - [aux_sym__val_number_decimal_token2] = ACTIONS(4391), - [aux_sym__val_number_decimal_token3] = ACTIONS(4393), - [aux_sym__val_number_decimal_token4] = ACTIONS(4395), - [aux_sym__val_number_token1] = ACTIONS(3697), - [aux_sym__val_number_token2] = ACTIONS(3697), - [aux_sym__val_number_token3] = ACTIONS(3697), - [anon_sym_0b] = ACTIONS(3699), - [anon_sym_0o] = ACTIONS(3701), - [anon_sym_0x] = ACTIONS(3701), - [sym_val_date] = ACTIONS(4397), - [anon_sym_DQUOTE] = ACTIONS(4286), - [sym__str_single_quotes] = ACTIONS(4288), - [sym__str_back_ticks] = ACTIONS(4288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(4246), + [ts_builtin_sym_end] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [aux_sym_cmd_identifier_token38] = ACTIONS(1645), + [aux_sym_cmd_identifier_token39] = ACTIONS(1645), + [aux_sym_cmd_identifier_token40] = ACTIONS(1645), + [sym__newline] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_err_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_GT_PIPE] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), + [anon_sym_LBRACK] = ACTIONS(1645), + [anon_sym_LPAREN] = ACTIONS(1645), + [anon_sym_DOLLAR] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_DASH] = ACTIONS(1643), + [aux_sym_ctrl_match_token1] = ACTIONS(1645), + [anon_sym_DOT_DOT] = ACTIONS(1643), + [anon_sym_DOT_DOT2] = ACTIONS(1643), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), + [anon_sym_DOT_DOT_LT] = ACTIONS(1643), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), + [aux_sym__immediate_decimal_token2] = ACTIONS(4630), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1645), + [aux_sym__val_number_decimal_token3] = ACTIONS(1645), + [aux_sym__val_number_decimal_token4] = ACTIONS(1645), + [aux_sym__val_number_token1] = ACTIONS(1645), + [aux_sym__val_number_token2] = ACTIONS(1645), + [aux_sym__val_number_token3] = ACTIONS(1645), + [anon_sym_0b] = ACTIONS(1643), + [anon_sym_0o] = ACTIONS(1643), + [anon_sym_0x] = ACTIONS(1643), + [sym_val_date] = ACTIONS(1645), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym__str_single_quotes] = ACTIONS(1645), + [sym__str_back_ticks] = ACTIONS(1645), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1645), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1645), + [anon_sym_err_GT] = ACTIONS(1643), + [anon_sym_out_GT] = ACTIONS(1643), + [anon_sym_e_GT] = ACTIONS(1643), + [anon_sym_o_GT] = ACTIONS(1643), + [anon_sym_err_PLUSout_GT] = ACTIONS(1643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), + [anon_sym_o_PLUSe_GT] = ACTIONS(1643), + [anon_sym_e_PLUSo_GT] = ACTIONS(1643), + [anon_sym_err_GT_GT] = ACTIONS(1645), + [anon_sym_out_GT_GT] = ACTIONS(1645), + [anon_sym_e_GT_GT] = ACTIONS(1645), + [anon_sym_o_GT_GT] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [aux_sym_unquoted_token1] = ACTIONS(1643), [anon_sym_POUND] = ACTIONS(247), }, [1352] = { - [sym__val_range] = STATE(7916), - [sym__value] = STATE(5124), - [sym_val_nothing] = STATE(5122), - [sym_val_bool] = STATE(4803), - [sym_val_variable] = STATE(5122), - [sym_val_number] = STATE(5122), - [sym__val_number_decimal] = STATE(4301), - [sym__val_number] = STATE(5127), - [sym_val_duration] = STATE(5122), - [sym_val_filesize] = STATE(5122), - [sym_val_binary] = STATE(5122), - [sym_val_string] = STATE(5122), - [sym__str_double_quotes] = STATE(4755), - [sym_val_interpolated] = STATE(5122), - [sym__inter_single_quotes] = STATE(5169), - [sym__inter_double_quotes] = STATE(5023), - [sym_val_list] = STATE(5122), - [sym_val_record] = STATE(5122), - [sym_val_table] = STATE(5122), - [sym_val_closure] = STATE(5122), - [sym_unquoted] = STATE(5125), - [sym__unquoted_anonymous_prefix] = STATE(8005), + [sym_cell_path] = STATE(1862), + [sym_path] = STATE(1599), [sym_comment] = STATE(1352), - [anon_sym_true] = ACTIONS(4403), - [anon_sym_false] = ACTIONS(4403), - [anon_sym_null] = ACTIONS(4405), - [aux_sym_cmd_identifier_token38] = ACTIONS(4407), - [aux_sym_cmd_identifier_token39] = ACTIONS(4407), - [aux_sym_cmd_identifier_token40] = ACTIONS(4407), - [anon_sym_LBRACK] = ACTIONS(4409), - [anon_sym_LPAREN] = ACTIONS(4411), - [anon_sym_DOLLAR] = ACTIONS(4413), - [aux_sym_ctrl_match_token1] = ACTIONS(4415), - [anon_sym_DOT_DOT] = ACTIONS(4417), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4419), - [anon_sym_DOT_DOT_LT] = ACTIONS(4419), - [aux_sym__val_number_decimal_token1] = ACTIONS(2175), - [aux_sym__val_number_decimal_token2] = ACTIONS(4421), - [aux_sym__val_number_decimal_token3] = ACTIONS(4423), - [aux_sym__val_number_decimal_token4] = ACTIONS(4425), - [aux_sym__val_number_token1] = ACTIONS(4427), - [aux_sym__val_number_token2] = ACTIONS(4427), - [aux_sym__val_number_token3] = ACTIONS(4427), - [anon_sym_0b] = ACTIONS(2183), - [anon_sym_0o] = ACTIONS(2185), - [anon_sym_0x] = ACTIONS(2185), - [sym_val_date] = ACTIONS(4429), - [anon_sym_DQUOTE] = ACTIONS(4431), - [sym__str_single_quotes] = ACTIONS(4433), - [sym__str_back_ticks] = ACTIONS(4433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4435), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4437), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(2201), + [aux_sym_cell_path_repeat1] = STATE(1437), + [ts_builtin_sym_end] = ACTIONS(1947), + [anon_sym_true] = ACTIONS(1947), + [anon_sym_false] = ACTIONS(1947), + [anon_sym_null] = ACTIONS(1947), + [aux_sym_cmd_identifier_token38] = ACTIONS(1947), + [aux_sym_cmd_identifier_token39] = ACTIONS(1947), + [aux_sym_cmd_identifier_token40] = ACTIONS(1947), + [sym__newline] = ACTIONS(1947), + [anon_sym_SEMI] = ACTIONS(1947), + [anon_sym_PIPE] = ACTIONS(1947), + [anon_sym_err_GT_PIPE] = ACTIONS(1947), + [anon_sym_out_GT_PIPE] = ACTIONS(1947), + [anon_sym_e_GT_PIPE] = ACTIONS(1947), + [anon_sym_o_GT_PIPE] = ACTIONS(1947), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1947), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1947), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1947), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1947), + [anon_sym_LBRACK] = ACTIONS(1947), + [anon_sym_LPAREN] = ACTIONS(1947), + [anon_sym_DOLLAR] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1947), + [anon_sym_DASH] = ACTIONS(1945), + [aux_sym_ctrl_match_token1] = ACTIONS(1947), + [anon_sym_DOT_DOT] = ACTIONS(1945), + [anon_sym_DOT] = ACTIONS(4674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1947), + [anon_sym_DOT_DOT_LT] = ACTIONS(1947), + [aux_sym__val_number_decimal_token1] = ACTIONS(1945), + [aux_sym__val_number_decimal_token2] = ACTIONS(1947), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), + [aux_sym__val_number_token1] = ACTIONS(1947), + [aux_sym__val_number_token2] = ACTIONS(1947), + [aux_sym__val_number_token3] = ACTIONS(1947), + [anon_sym_0b] = ACTIONS(1945), + [anon_sym_0o] = ACTIONS(1945), + [anon_sym_0x] = ACTIONS(1945), + [sym_val_date] = ACTIONS(1947), + [anon_sym_DQUOTE] = ACTIONS(1947), + [sym__str_single_quotes] = ACTIONS(1947), + [sym__str_back_ticks] = ACTIONS(1947), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1947), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1947), + [anon_sym_err_GT] = ACTIONS(1945), + [anon_sym_out_GT] = ACTIONS(1945), + [anon_sym_e_GT] = ACTIONS(1945), + [anon_sym_o_GT] = ACTIONS(1945), + [anon_sym_err_PLUSout_GT] = ACTIONS(1945), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1945), + [anon_sym_o_PLUSe_GT] = ACTIONS(1945), + [anon_sym_e_PLUSo_GT] = ACTIONS(1945), + [anon_sym_err_GT_GT] = ACTIONS(1947), + [anon_sym_out_GT_GT] = ACTIONS(1947), + [anon_sym_e_GT_GT] = ACTIONS(1947), + [anon_sym_o_GT_GT] = ACTIONS(1947), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1947), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1947), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1947), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1947), + [aux_sym_unquoted_token1] = ACTIONS(1945), [anon_sym_POUND] = ACTIONS(247), }, [1353] = { - [sym__val_range] = STATE(7916), - [sym__value] = STATE(5189), - [sym_val_nothing] = STATE(5122), - [sym_val_bool] = STATE(4803), - [sym_val_variable] = STATE(5122), - [sym_val_number] = STATE(5122), - [sym__val_number_decimal] = STATE(4301), - [sym__val_number] = STATE(5127), - [sym_val_duration] = STATE(5122), - [sym_val_filesize] = STATE(5122), - [sym_val_binary] = STATE(5122), - [sym_val_string] = STATE(5122), - [sym__str_double_quotes] = STATE(4755), - [sym_val_interpolated] = STATE(5122), - [sym__inter_single_quotes] = STATE(5169), - [sym__inter_double_quotes] = STATE(5023), - [sym_val_list] = STATE(5122), - [sym_val_record] = STATE(5122), - [sym_val_table] = STATE(5122), - [sym_val_closure] = STATE(5122), - [sym_unquoted] = STATE(5191), - [sym__unquoted_anonymous_prefix] = STATE(8005), [sym_comment] = STATE(1353), - [anon_sym_true] = ACTIONS(4403), - [anon_sym_false] = ACTIONS(4403), - [anon_sym_null] = ACTIONS(4405), - [aux_sym_cmd_identifier_token38] = ACTIONS(4407), - [aux_sym_cmd_identifier_token39] = ACTIONS(4407), - [aux_sym_cmd_identifier_token40] = ACTIONS(4407), - [anon_sym_LBRACK] = ACTIONS(4409), - [anon_sym_LPAREN] = ACTIONS(4411), - [anon_sym_DOLLAR] = ACTIONS(4413), - [aux_sym_ctrl_match_token1] = ACTIONS(4415), - [anon_sym_DOT_DOT] = ACTIONS(4417), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4419), - [anon_sym_DOT_DOT_LT] = ACTIONS(4419), - [aux_sym__val_number_decimal_token1] = ACTIONS(2175), - [aux_sym__val_number_decimal_token2] = ACTIONS(4421), - [aux_sym__val_number_decimal_token3] = ACTIONS(4423), - [aux_sym__val_number_decimal_token4] = ACTIONS(4425), - [aux_sym__val_number_token1] = ACTIONS(4427), - [aux_sym__val_number_token2] = ACTIONS(4427), - [aux_sym__val_number_token3] = ACTIONS(4427), - [anon_sym_0b] = ACTIONS(2183), - [anon_sym_0o] = ACTIONS(2185), - [anon_sym_0x] = ACTIONS(2185), - [sym_val_date] = ACTIONS(4429), - [anon_sym_DQUOTE] = ACTIONS(4431), - [sym__str_single_quotes] = ACTIONS(4433), - [sym__str_back_ticks] = ACTIONS(4433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4435), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4437), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(2201), + [anon_sym_true] = ACTIONS(2021), + [anon_sym_false] = ACTIONS(2021), + [anon_sym_null] = ACTIONS(2021), + [aux_sym_cmd_identifier_token38] = ACTIONS(2021), + [aux_sym_cmd_identifier_token39] = ACTIONS(2021), + [aux_sym_cmd_identifier_token40] = ACTIONS(2021), + [sym__newline] = ACTIONS(2021), + [anon_sym_SEMI] = ACTIONS(2021), + [anon_sym_PIPE] = ACTIONS(2021), + [anon_sym_err_GT_PIPE] = ACTIONS(2021), + [anon_sym_out_GT_PIPE] = ACTIONS(2021), + [anon_sym_e_GT_PIPE] = ACTIONS(2021), + [anon_sym_o_GT_PIPE] = ACTIONS(2021), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2021), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2021), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2021), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2021), + [anon_sym_LBRACK] = ACTIONS(2021), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_RPAREN] = ACTIONS(2021), + [anon_sym_DOLLAR] = ACTIONS(2019), + [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_DASH] = ACTIONS(2019), + [aux_sym_ctrl_match_token1] = ACTIONS(2021), + [anon_sym_RBRACE] = ACTIONS(2021), + [anon_sym_DOT_DOT] = ACTIONS(2019), + [anon_sym_DOT_DOT2] = ACTIONS(2019), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2019), + [anon_sym_DOT_DOT_LT] = ACTIONS(2019), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2021), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2021), + [aux_sym__val_number_decimal_token1] = ACTIONS(2019), + [aux_sym__val_number_decimal_token2] = ACTIONS(2021), + [aux_sym__val_number_decimal_token3] = ACTIONS(2021), + [aux_sym__val_number_decimal_token4] = ACTIONS(2021), + [aux_sym__val_number_token1] = ACTIONS(2021), + [aux_sym__val_number_token2] = ACTIONS(2021), + [aux_sym__val_number_token3] = ACTIONS(2021), + [anon_sym_0b] = ACTIONS(2019), + [anon_sym_0o] = ACTIONS(2019), + [anon_sym_0x] = ACTIONS(2019), + [sym_val_date] = ACTIONS(2021), + [anon_sym_DQUOTE] = ACTIONS(2021), + [sym__str_single_quotes] = ACTIONS(2021), + [sym__str_back_ticks] = ACTIONS(2021), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2021), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2021), + [anon_sym_err_GT] = ACTIONS(2019), + [anon_sym_out_GT] = ACTIONS(2019), + [anon_sym_e_GT] = ACTIONS(2019), + [anon_sym_o_GT] = ACTIONS(2019), + [anon_sym_err_PLUSout_GT] = ACTIONS(2019), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2019), + [anon_sym_o_PLUSe_GT] = ACTIONS(2019), + [anon_sym_e_PLUSo_GT] = ACTIONS(2019), + [anon_sym_err_GT_GT] = ACTIONS(2021), + [anon_sym_out_GT_GT] = ACTIONS(2021), + [anon_sym_e_GT_GT] = ACTIONS(2021), + [anon_sym_o_GT_GT] = ACTIONS(2021), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2021), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2021), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2021), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2021), + [aux_sym_unquoted_token1] = ACTIONS(2019), [anon_sym_POUND] = ACTIONS(247), }, [1354] = { - [sym__val_range] = STATE(7816), - [sym__value] = STATE(5010), - [sym_val_nothing] = STATE(4994), - [sym_val_bool] = STATE(6973), - [sym_val_variable] = STATE(4994), - [sym_val_number] = STATE(4994), - [sym__val_number_decimal] = STATE(5721), - [sym__val_number] = STATE(4878), - [sym_val_duration] = STATE(4994), - [sym_val_filesize] = STATE(4994), - [sym_val_binary] = STATE(4994), - [sym_val_string] = STATE(4994), - [sym__str_double_quotes] = STATE(4660), - [sym_val_interpolated] = STATE(4994), - [sym__inter_single_quotes] = STATE(4902), - [sym__inter_double_quotes] = STATE(4928), - [sym_val_list] = STATE(4994), - [sym_val_record] = STATE(4994), - [sym_val_table] = STATE(4994), - [sym_val_closure] = STATE(4994), - [sym_unquoted] = STATE(5011), - [sym__unquoted_anonymous_prefix] = STATE(7738), [sym_comment] = STATE(1354), - [anon_sym_true] = ACTIONS(4439), - [anon_sym_false] = ACTIONS(4439), - [anon_sym_null] = ACTIONS(4441), - [aux_sym_cmd_identifier_token38] = ACTIONS(4443), - [aux_sym_cmd_identifier_token39] = ACTIONS(4443), - [aux_sym_cmd_identifier_token40] = ACTIONS(4443), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_LPAREN] = ACTIONS(4447), - [anon_sym_DOLLAR] = ACTIONS(4449), - [aux_sym_ctrl_match_token1] = ACTIONS(4451), - [anon_sym_DOT_DOT] = ACTIONS(4453), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4455), - [anon_sym_DOT_DOT_LT] = ACTIONS(4455), - [aux_sym__val_number_decimal_token1] = ACTIONS(4457), - [aux_sym__val_number_decimal_token2] = ACTIONS(4459), - [aux_sym__val_number_decimal_token3] = ACTIONS(4461), - [aux_sym__val_number_decimal_token4] = ACTIONS(4463), - [aux_sym__val_number_token1] = ACTIONS(4465), - [aux_sym__val_number_token2] = ACTIONS(4465), - [aux_sym__val_number_token3] = ACTIONS(4465), - [anon_sym_0b] = ACTIONS(2042), - [anon_sym_0o] = ACTIONS(2044), - [anon_sym_0x] = ACTIONS(2044), - [sym_val_date] = ACTIONS(4467), - [anon_sym_DQUOTE] = ACTIONS(4469), - [sym__str_single_quotes] = ACTIONS(4471), - [sym__str_back_ticks] = ACTIONS(4471), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4473), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4475), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(2060), + [ts_builtin_sym_end] = ACTIONS(1567), + [sym__newline] = ACTIONS(1567), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_err_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_GT_PIPE] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), + [anon_sym_LPAREN2] = ACTIONS(1567), + [aux_sym_expr_binary_token1] = ACTIONS(1567), + [aux_sym_expr_binary_token2] = ACTIONS(1567), + [aux_sym_expr_binary_token3] = ACTIONS(1567), + [aux_sym_expr_binary_token4] = ACTIONS(1567), + [aux_sym_expr_binary_token5] = ACTIONS(1567), + [aux_sym_expr_binary_token6] = ACTIONS(1567), + [aux_sym_expr_binary_token7] = ACTIONS(1567), + [aux_sym_expr_binary_token8] = ACTIONS(1567), + [aux_sym_expr_binary_token9] = ACTIONS(1567), + [aux_sym_expr_binary_token10] = ACTIONS(1567), + [aux_sym_expr_binary_token11] = ACTIONS(1567), + [aux_sym_expr_binary_token12] = ACTIONS(1567), + [aux_sym_expr_binary_token13] = ACTIONS(1567), + [aux_sym_expr_binary_token14] = ACTIONS(1567), + [aux_sym_expr_binary_token15] = ACTIONS(1567), + [aux_sym_expr_binary_token16] = ACTIONS(1567), + [aux_sym_expr_binary_token17] = ACTIONS(1567), + [aux_sym_expr_binary_token18] = ACTIONS(1567), + [aux_sym_expr_binary_token19] = ACTIONS(1567), + [aux_sym_expr_binary_token20] = ACTIONS(1567), + [aux_sym_expr_binary_token21] = ACTIONS(1567), + [aux_sym_expr_binary_token22] = ACTIONS(1567), + [aux_sym_expr_binary_token23] = ACTIONS(1567), + [aux_sym_expr_binary_token24] = ACTIONS(1567), + [aux_sym_expr_binary_token25] = ACTIONS(1567), + [aux_sym_expr_binary_token26] = ACTIONS(1567), + [aux_sym_expr_binary_token27] = ACTIONS(1567), + [aux_sym_expr_binary_token28] = ACTIONS(1567), + [anon_sym_DOT_DOT2] = ACTIONS(1565), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), + [aux_sym__immediate_decimal_token2] = ACTIONS(4714), + [sym_filesize_unit] = ACTIONS(1567), + [sym_duration_unit] = ACTIONS(1567), + [anon_sym_err_GT] = ACTIONS(1565), + [anon_sym_out_GT] = ACTIONS(1565), + [anon_sym_e_GT] = ACTIONS(1565), + [anon_sym_o_GT] = ACTIONS(1565), + [anon_sym_err_PLUSout_GT] = ACTIONS(1565), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), + [anon_sym_o_PLUSe_GT] = ACTIONS(1565), + [anon_sym_e_PLUSo_GT] = ACTIONS(1565), + [anon_sym_err_GT_GT] = ACTIONS(1567), + [anon_sym_out_GT_GT] = ACTIONS(1567), + [anon_sym_e_GT_GT] = ACTIONS(1567), + [anon_sym_o_GT_GT] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), + [aux_sym_unquoted_token2] = ACTIONS(1565), [anon_sym_POUND] = ACTIONS(247), }, [1355] = { - [sym__val_range] = STATE(7916), - [sym__value] = STATE(5136), - [sym_val_nothing] = STATE(5122), - [sym_val_bool] = STATE(4803), - [sym_val_variable] = STATE(5122), - [sym_val_number] = STATE(5122), - [sym__val_number_decimal] = STATE(4301), - [sym__val_number] = STATE(5127), - [sym_val_duration] = STATE(5122), - [sym_val_filesize] = STATE(5122), - [sym_val_binary] = STATE(5122), - [sym_val_string] = STATE(5122), - [sym__str_double_quotes] = STATE(4755), - [sym_val_interpolated] = STATE(5122), - [sym__inter_single_quotes] = STATE(5169), - [sym__inter_double_quotes] = STATE(5023), - [sym_val_list] = STATE(5122), - [sym_val_record] = STATE(5122), - [sym_val_table] = STATE(5122), - [sym_val_closure] = STATE(5122), - [sym_unquoted] = STATE(5185), - [sym__unquoted_anonymous_prefix] = STATE(8005), + [sym_cell_path] = STATE(1883), + [sym_path] = STATE(1599), [sym_comment] = STATE(1355), - [anon_sym_true] = ACTIONS(4403), - [anon_sym_false] = ACTIONS(4403), - [anon_sym_null] = ACTIONS(4405), - [aux_sym_cmd_identifier_token38] = ACTIONS(4407), - [aux_sym_cmd_identifier_token39] = ACTIONS(4407), - [aux_sym_cmd_identifier_token40] = ACTIONS(4407), - [anon_sym_LBRACK] = ACTIONS(4409), - [anon_sym_LPAREN] = ACTIONS(4411), - [anon_sym_DOLLAR] = ACTIONS(4413), - [aux_sym_ctrl_match_token1] = ACTIONS(4415), - [anon_sym_DOT_DOT] = ACTIONS(4417), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4419), - [anon_sym_DOT_DOT_LT] = ACTIONS(4419), - [aux_sym__val_number_decimal_token1] = ACTIONS(2175), - [aux_sym__val_number_decimal_token2] = ACTIONS(4421), - [aux_sym__val_number_decimal_token3] = ACTIONS(4423), - [aux_sym__val_number_decimal_token4] = ACTIONS(4425), - [aux_sym__val_number_token1] = ACTIONS(4427), - [aux_sym__val_number_token2] = ACTIONS(4427), - [aux_sym__val_number_token3] = ACTIONS(4427), - [anon_sym_0b] = ACTIONS(2183), - [anon_sym_0o] = ACTIONS(2185), - [anon_sym_0x] = ACTIONS(2185), - [sym_val_date] = ACTIONS(4429), - [anon_sym_DQUOTE] = ACTIONS(4431), - [sym__str_single_quotes] = ACTIONS(4433), - [sym__str_back_ticks] = ACTIONS(4433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4435), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4437), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(2201), + [aux_sym_cell_path_repeat1] = STATE(1437), + [ts_builtin_sym_end] = ACTIONS(1013), + [anon_sym_true] = ACTIONS(1013), + [anon_sym_false] = ACTIONS(1013), + [anon_sym_null] = ACTIONS(1013), + [aux_sym_cmd_identifier_token38] = ACTIONS(1013), + [aux_sym_cmd_identifier_token39] = ACTIONS(1013), + [aux_sym_cmd_identifier_token40] = ACTIONS(1013), + [sym__newline] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1013), + [anon_sym_PIPE] = ACTIONS(1013), + [anon_sym_err_GT_PIPE] = ACTIONS(1013), + [anon_sym_out_GT_PIPE] = ACTIONS(1013), + [anon_sym_e_GT_PIPE] = ACTIONS(1013), + [anon_sym_o_GT_PIPE] = ACTIONS(1013), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1013), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1013), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1013), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1013), + [anon_sym_LBRACK] = ACTIONS(1013), + [anon_sym_LPAREN] = ACTIONS(1013), + [anon_sym_DOLLAR] = ACTIONS(1011), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_DASH] = ACTIONS(1011), + [aux_sym_ctrl_match_token1] = ACTIONS(1013), + [anon_sym_DOT_DOT] = ACTIONS(1011), + [anon_sym_DOT] = ACTIONS(4674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1013), + [anon_sym_DOT_DOT_LT] = ACTIONS(1013), + [aux_sym__val_number_decimal_token1] = ACTIONS(1011), + [aux_sym__val_number_decimal_token2] = ACTIONS(1013), + [aux_sym__val_number_decimal_token3] = ACTIONS(1013), + [aux_sym__val_number_decimal_token4] = ACTIONS(1013), + [aux_sym__val_number_token1] = ACTIONS(1013), + [aux_sym__val_number_token2] = ACTIONS(1013), + [aux_sym__val_number_token3] = ACTIONS(1013), + [anon_sym_0b] = ACTIONS(1011), + [anon_sym_0o] = ACTIONS(1011), + [anon_sym_0x] = ACTIONS(1011), + [sym_val_date] = ACTIONS(1013), + [anon_sym_DQUOTE] = ACTIONS(1013), + [sym__str_single_quotes] = ACTIONS(1013), + [sym__str_back_ticks] = ACTIONS(1013), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1013), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1013), + [anon_sym_err_GT] = ACTIONS(1011), + [anon_sym_out_GT] = ACTIONS(1011), + [anon_sym_e_GT] = ACTIONS(1011), + [anon_sym_o_GT] = ACTIONS(1011), + [anon_sym_err_PLUSout_GT] = ACTIONS(1011), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1011), + [anon_sym_o_PLUSe_GT] = ACTIONS(1011), + [anon_sym_e_PLUSo_GT] = ACTIONS(1011), + [anon_sym_err_GT_GT] = ACTIONS(1013), + [anon_sym_out_GT_GT] = ACTIONS(1013), + [anon_sym_e_GT_GT] = ACTIONS(1013), + [anon_sym_o_GT_GT] = ACTIONS(1013), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1013), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1013), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1013), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1013), + [aux_sym_unquoted_token1] = ACTIONS(1011), [anon_sym_POUND] = ACTIONS(247), }, [1356] = { - [sym__val_range] = STATE(7816), - [sym__value] = STATE(4946), - [sym_val_nothing] = STATE(4994), - [sym_val_bool] = STATE(6973), - [sym_val_variable] = STATE(4994), - [sym_val_number] = STATE(4994), - [sym__val_number_decimal] = STATE(5721), - [sym__val_number] = STATE(4878), - [sym_val_duration] = STATE(4994), - [sym_val_filesize] = STATE(4994), - [sym_val_binary] = STATE(4994), - [sym_val_string] = STATE(4994), - [sym__str_double_quotes] = STATE(4660), - [sym_val_interpolated] = STATE(4994), - [sym__inter_single_quotes] = STATE(4902), - [sym__inter_double_quotes] = STATE(4928), - [sym_val_list] = STATE(4994), - [sym_val_record] = STATE(4994), - [sym_val_table] = STATE(4994), - [sym_val_closure] = STATE(4994), - [sym_unquoted] = STATE(4947), - [sym__unquoted_anonymous_prefix] = STATE(7738), [sym_comment] = STATE(1356), - [anon_sym_true] = ACTIONS(4439), - [anon_sym_false] = ACTIONS(4439), - [anon_sym_null] = ACTIONS(4441), - [aux_sym_cmd_identifier_token38] = ACTIONS(4443), - [aux_sym_cmd_identifier_token39] = ACTIONS(4443), - [aux_sym_cmd_identifier_token40] = ACTIONS(4443), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_LPAREN] = ACTIONS(4447), - [anon_sym_DOLLAR] = ACTIONS(4449), - [aux_sym_ctrl_match_token1] = ACTIONS(4451), - [anon_sym_DOT_DOT] = ACTIONS(4453), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4455), - [anon_sym_DOT_DOT_LT] = ACTIONS(4455), - [aux_sym__val_number_decimal_token1] = ACTIONS(4457), - [aux_sym__val_number_decimal_token2] = ACTIONS(4459), - [aux_sym__val_number_decimal_token3] = ACTIONS(4461), - [aux_sym__val_number_decimal_token4] = ACTIONS(4463), - [aux_sym__val_number_token1] = ACTIONS(4465), - [aux_sym__val_number_token2] = ACTIONS(4465), - [aux_sym__val_number_token3] = ACTIONS(4465), - [anon_sym_0b] = ACTIONS(2042), - [anon_sym_0o] = ACTIONS(2044), - [anon_sym_0x] = ACTIONS(2044), - [sym_val_date] = ACTIONS(4467), - [anon_sym_DQUOTE] = ACTIONS(4469), - [sym__str_single_quotes] = ACTIONS(4471), - [sym__str_back_ticks] = ACTIONS(4471), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4473), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4475), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(2060), + [ts_builtin_sym_end] = ACTIONS(1707), + [anon_sym_true] = ACTIONS(1707), + [anon_sym_false] = ACTIONS(1707), + [anon_sym_null] = ACTIONS(1707), + [aux_sym_cmd_identifier_token38] = ACTIONS(1707), + [aux_sym_cmd_identifier_token39] = ACTIONS(1707), + [aux_sym_cmd_identifier_token40] = ACTIONS(1707), + [sym__newline] = ACTIONS(1707), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_err_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_GT_PIPE] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), + [anon_sym_LBRACK] = ACTIONS(1707), + [anon_sym_LPAREN] = ACTIONS(1707), + [anon_sym_DOLLAR] = ACTIONS(1705), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1705), + [aux_sym_ctrl_match_token1] = ACTIONS(1707), + [anon_sym_DOT_DOT] = ACTIONS(1705), + [anon_sym_DOT_DOT2] = ACTIONS(1705), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1705), + [anon_sym_DOT_DOT_LT] = ACTIONS(1705), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1707), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1707), + [aux_sym__immediate_decimal_token2] = ACTIONS(4716), + [aux_sym__val_number_decimal_token1] = ACTIONS(1705), + [aux_sym__val_number_decimal_token2] = ACTIONS(1707), + [aux_sym__val_number_decimal_token3] = ACTIONS(1707), + [aux_sym__val_number_decimal_token4] = ACTIONS(1707), + [aux_sym__val_number_token1] = ACTIONS(1707), + [aux_sym__val_number_token2] = ACTIONS(1707), + [aux_sym__val_number_token3] = ACTIONS(1707), + [anon_sym_0b] = ACTIONS(1705), + [anon_sym_0o] = ACTIONS(1705), + [anon_sym_0x] = ACTIONS(1705), + [sym_val_date] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1707), + [sym__str_single_quotes] = ACTIONS(1707), + [sym__str_back_ticks] = ACTIONS(1707), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1707), + [anon_sym_err_GT] = ACTIONS(1705), + [anon_sym_out_GT] = ACTIONS(1705), + [anon_sym_e_GT] = ACTIONS(1705), + [anon_sym_o_GT] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT] = ACTIONS(1705), + [anon_sym_err_GT_GT] = ACTIONS(1707), + [anon_sym_out_GT_GT] = ACTIONS(1707), + [anon_sym_e_GT_GT] = ACTIONS(1707), + [anon_sym_o_GT_GT] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), + [aux_sym_unquoted_token1] = ACTIONS(1705), [anon_sym_POUND] = ACTIONS(247), }, [1357] = { - [sym__val_range] = STATE(7816), - [sym__value] = STATE(4932), - [sym_val_nothing] = STATE(4994), - [sym_val_bool] = STATE(6973), - [sym_val_variable] = STATE(4994), - [sym_val_number] = STATE(4994), - [sym__val_number_decimal] = STATE(5721), - [sym__val_number] = STATE(4878), - [sym_val_duration] = STATE(4994), - [sym_val_filesize] = STATE(4994), - [sym_val_binary] = STATE(4994), - [sym_val_string] = STATE(4994), - [sym__str_double_quotes] = STATE(4660), - [sym_val_interpolated] = STATE(4994), - [sym__inter_single_quotes] = STATE(4902), - [sym__inter_double_quotes] = STATE(4928), - [sym_val_list] = STATE(4994), - [sym_val_record] = STATE(4994), - [sym_val_table] = STATE(4994), - [sym_val_closure] = STATE(4994), - [sym_unquoted] = STATE(4933), - [sym__unquoted_anonymous_prefix] = STATE(7738), [sym_comment] = STATE(1357), - [anon_sym_true] = ACTIONS(4439), - [anon_sym_false] = ACTIONS(4439), - [anon_sym_null] = ACTIONS(4441), - [aux_sym_cmd_identifier_token38] = ACTIONS(4443), - [aux_sym_cmd_identifier_token39] = ACTIONS(4443), - [aux_sym_cmd_identifier_token40] = ACTIONS(4443), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_LPAREN] = ACTIONS(4447), - [anon_sym_DOLLAR] = ACTIONS(4449), - [aux_sym_ctrl_match_token1] = ACTIONS(4451), - [anon_sym_DOT_DOT] = ACTIONS(4453), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4455), - [anon_sym_DOT_DOT_LT] = ACTIONS(4455), - [aux_sym__val_number_decimal_token1] = ACTIONS(4457), - [aux_sym__val_number_decimal_token2] = ACTIONS(4459), - [aux_sym__val_number_decimal_token3] = ACTIONS(4461), - [aux_sym__val_number_decimal_token4] = ACTIONS(4463), - [aux_sym__val_number_token1] = ACTIONS(4465), - [aux_sym__val_number_token2] = ACTIONS(4465), - [aux_sym__val_number_token3] = ACTIONS(4465), - [anon_sym_0b] = ACTIONS(2042), - [anon_sym_0o] = ACTIONS(2044), - [anon_sym_0x] = ACTIONS(2044), - [sym_val_date] = ACTIONS(4467), - [anon_sym_DQUOTE] = ACTIONS(4469), - [sym__str_single_quotes] = ACTIONS(4471), - [sym__str_back_ticks] = ACTIONS(4471), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4473), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4475), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(2060), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [aux_sym_cmd_identifier_token38] = ACTIONS(1633), + [aux_sym_cmd_identifier_token39] = ACTIONS(1633), + [aux_sym_cmd_identifier_token40] = ACTIONS(1633), + [sym__newline] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1633), + [anon_sym_err_GT_PIPE] = ACTIONS(1633), + [anon_sym_out_GT_PIPE] = ACTIONS(1633), + [anon_sym_e_GT_PIPE] = ACTIONS(1633), + [anon_sym_o_GT_PIPE] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1633), + [anon_sym_LBRACK] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1633), + [anon_sym_RPAREN] = ACTIONS(1633), + [anon_sym_DOLLAR] = ACTIONS(1631), + [anon_sym_DASH_DASH] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1631), + [aux_sym_ctrl_match_token1] = ACTIONS(1633), + [anon_sym_RBRACE] = ACTIONS(1633), + [anon_sym_DOT_DOT] = ACTIONS(1631), + [anon_sym_DOT_DOT2] = ACTIONS(1631), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1631), + [anon_sym_DOT_DOT_LT] = ACTIONS(1631), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1633), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1633), + [aux_sym__val_number_decimal_token1] = ACTIONS(1631), + [aux_sym__val_number_decimal_token2] = ACTIONS(1633), + [aux_sym__val_number_decimal_token3] = ACTIONS(1633), + [aux_sym__val_number_decimal_token4] = ACTIONS(1633), + [aux_sym__val_number_token1] = ACTIONS(1633), + [aux_sym__val_number_token2] = ACTIONS(1633), + [aux_sym__val_number_token3] = ACTIONS(1633), + [anon_sym_0b] = ACTIONS(1631), + [anon_sym_0o] = ACTIONS(1631), + [anon_sym_0x] = ACTIONS(1631), + [sym_val_date] = ACTIONS(1633), + [anon_sym_DQUOTE] = ACTIONS(1633), + [sym__str_single_quotes] = ACTIONS(1633), + [sym__str_back_ticks] = ACTIONS(1633), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1633), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1633), + [anon_sym_err_GT] = ACTIONS(1631), + [anon_sym_out_GT] = ACTIONS(1631), + [anon_sym_e_GT] = ACTIONS(1631), + [anon_sym_o_GT] = ACTIONS(1631), + [anon_sym_err_PLUSout_GT] = ACTIONS(1631), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1631), + [anon_sym_o_PLUSe_GT] = ACTIONS(1631), + [anon_sym_e_PLUSo_GT] = ACTIONS(1631), + [anon_sym_err_GT_GT] = ACTIONS(1633), + [anon_sym_out_GT_GT] = ACTIONS(1633), + [anon_sym_e_GT_GT] = ACTIONS(1633), + [anon_sym_o_GT_GT] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1633), + [aux_sym_unquoted_token1] = ACTIONS(1631), [anon_sym_POUND] = ACTIONS(247), }, [1358] = { - [sym__val_range] = STATE(7816), - [sym__value] = STATE(5010), - [sym_val_nothing] = STATE(4994), - [sym_val_bool] = STATE(4669), - [sym_val_variable] = STATE(4994), - [sym_val_number] = STATE(4994), - [sym__val_number_decimal] = STATE(4225), - [sym__val_number] = STATE(4878), - [sym_val_duration] = STATE(4994), - [sym_val_filesize] = STATE(4994), - [sym_val_binary] = STATE(4994), - [sym_val_string] = STATE(4994), - [sym__str_double_quotes] = STATE(4660), - [sym_val_interpolated] = STATE(4994), - [sym__inter_single_quotes] = STATE(4902), - [sym__inter_double_quotes] = STATE(4928), - [sym_val_list] = STATE(4994), - [sym_val_record] = STATE(4994), - [sym_val_table] = STATE(4994), - [sym_val_closure] = STATE(4994), - [sym_unquoted] = STATE(5011), - [sym__unquoted_anonymous_prefix] = STATE(7738), + [sym_cell_path] = STATE(1847), + [sym_path] = STATE(1599), [sym_comment] = STATE(1358), - [anon_sym_true] = ACTIONS(4477), - [anon_sym_false] = ACTIONS(4477), - [anon_sym_null] = ACTIONS(4479), - [aux_sym_cmd_identifier_token38] = ACTIONS(4481), - [aux_sym_cmd_identifier_token39] = ACTIONS(4481), - [aux_sym_cmd_identifier_token40] = ACTIONS(4481), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_LPAREN] = ACTIONS(4447), - [anon_sym_DOLLAR] = ACTIONS(4449), - [aux_sym_ctrl_match_token1] = ACTIONS(4451), - [anon_sym_DOT_DOT] = ACTIONS(4453), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4455), - [anon_sym_DOT_DOT_LT] = ACTIONS(4455), - [aux_sym__val_number_decimal_token1] = ACTIONS(2034), - [aux_sym__val_number_decimal_token2] = ACTIONS(4483), - [aux_sym__val_number_decimal_token3] = ACTIONS(4485), - [aux_sym__val_number_decimal_token4] = ACTIONS(4487), - [aux_sym__val_number_token1] = ACTIONS(4465), - [aux_sym__val_number_token2] = ACTIONS(4465), - [aux_sym__val_number_token3] = ACTIONS(4465), - [anon_sym_0b] = ACTIONS(2042), - [anon_sym_0o] = ACTIONS(2044), - [anon_sym_0x] = ACTIONS(2044), - [sym_val_date] = ACTIONS(4489), - [anon_sym_DQUOTE] = ACTIONS(4469), - [sym__str_single_quotes] = ACTIONS(4471), - [sym__str_back_ticks] = ACTIONS(4471), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4473), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4475), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(2060), + [aux_sym_cell_path_repeat1] = STATE(1437), + [ts_builtin_sym_end] = ACTIONS(1845), + [anon_sym_true] = ACTIONS(1845), + [anon_sym_false] = ACTIONS(1845), + [anon_sym_null] = ACTIONS(1845), + [aux_sym_cmd_identifier_token38] = ACTIONS(1845), + [aux_sym_cmd_identifier_token39] = ACTIONS(1845), + [aux_sym_cmd_identifier_token40] = ACTIONS(1845), + [sym__newline] = ACTIONS(1845), + [anon_sym_SEMI] = ACTIONS(1845), + [anon_sym_PIPE] = ACTIONS(1845), + [anon_sym_err_GT_PIPE] = ACTIONS(1845), + [anon_sym_out_GT_PIPE] = ACTIONS(1845), + [anon_sym_e_GT_PIPE] = ACTIONS(1845), + [anon_sym_o_GT_PIPE] = ACTIONS(1845), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1845), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1845), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1845), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1845), + [anon_sym_LBRACK] = ACTIONS(1845), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_DOLLAR] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1843), + [aux_sym_ctrl_match_token1] = ACTIONS(1845), + [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_DOT] = ACTIONS(4674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1845), + [anon_sym_DOT_DOT_LT] = ACTIONS(1845), + [aux_sym__val_number_decimal_token1] = ACTIONS(1843), + [aux_sym__val_number_decimal_token2] = ACTIONS(1845), + [aux_sym__val_number_decimal_token3] = ACTIONS(1845), + [aux_sym__val_number_decimal_token4] = ACTIONS(1845), + [aux_sym__val_number_token1] = ACTIONS(1845), + [aux_sym__val_number_token2] = ACTIONS(1845), + [aux_sym__val_number_token3] = ACTIONS(1845), + [anon_sym_0b] = ACTIONS(1843), + [anon_sym_0o] = ACTIONS(1843), + [anon_sym_0x] = ACTIONS(1843), + [sym_val_date] = ACTIONS(1845), + [anon_sym_DQUOTE] = ACTIONS(1845), + [sym__str_single_quotes] = ACTIONS(1845), + [sym__str_back_ticks] = ACTIONS(1845), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1845), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1845), + [anon_sym_err_GT] = ACTIONS(1843), + [anon_sym_out_GT] = ACTIONS(1843), + [anon_sym_e_GT] = ACTIONS(1843), + [anon_sym_o_GT] = ACTIONS(1843), + [anon_sym_err_PLUSout_GT] = ACTIONS(1843), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1843), + [anon_sym_o_PLUSe_GT] = ACTIONS(1843), + [anon_sym_e_PLUSo_GT] = ACTIONS(1843), + [anon_sym_err_GT_GT] = ACTIONS(1845), + [anon_sym_out_GT_GT] = ACTIONS(1845), + [anon_sym_e_GT_GT] = ACTIONS(1845), + [anon_sym_o_GT_GT] = ACTIONS(1845), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1845), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1845), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1845), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1845), + [aux_sym_unquoted_token1] = ACTIONS(1843), [anon_sym_POUND] = ACTIONS(247), }, [1359] = { - [sym__val_range] = STATE(7816), - [sym__value] = STATE(4991), - [sym_val_nothing] = STATE(4994), - [sym_val_bool] = STATE(6973), - [sym_val_variable] = STATE(4994), - [sym_val_number] = STATE(4994), - [sym__val_number_decimal] = STATE(5721), - [sym__val_number] = STATE(4878), - [sym_val_duration] = STATE(4994), - [sym_val_filesize] = STATE(4994), - [sym_val_binary] = STATE(4994), - [sym_val_string] = STATE(4994), - [sym__str_double_quotes] = STATE(4660), - [sym_val_interpolated] = STATE(4994), - [sym__inter_single_quotes] = STATE(4902), - [sym__inter_double_quotes] = STATE(4928), - [sym_val_list] = STATE(4994), - [sym_val_record] = STATE(4994), - [sym_val_table] = STATE(4994), - [sym_val_closure] = STATE(4994), - [sym_unquoted] = STATE(4992), - [sym__unquoted_anonymous_prefix] = STATE(7738), [sym_comment] = STATE(1359), - [anon_sym_true] = ACTIONS(4439), - [anon_sym_false] = ACTIONS(4439), - [anon_sym_null] = ACTIONS(4441), - [aux_sym_cmd_identifier_token38] = ACTIONS(4443), - [aux_sym_cmd_identifier_token39] = ACTIONS(4443), - [aux_sym_cmd_identifier_token40] = ACTIONS(4443), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_LPAREN] = ACTIONS(4447), - [anon_sym_DOLLAR] = ACTIONS(4449), - [aux_sym_ctrl_match_token1] = ACTIONS(4451), - [anon_sym_DOT_DOT] = ACTIONS(4453), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4455), - [anon_sym_DOT_DOT_LT] = ACTIONS(4455), - [aux_sym__val_number_decimal_token1] = ACTIONS(4457), - [aux_sym__val_number_decimal_token2] = ACTIONS(4459), - [aux_sym__val_number_decimal_token3] = ACTIONS(4461), - [aux_sym__val_number_decimal_token4] = ACTIONS(4463), - [aux_sym__val_number_token1] = ACTIONS(4465), - [aux_sym__val_number_token2] = ACTIONS(4465), - [aux_sym__val_number_token3] = ACTIONS(4465), - [anon_sym_0b] = ACTIONS(2042), - [anon_sym_0o] = ACTIONS(2044), - [anon_sym_0x] = ACTIONS(2044), - [sym_val_date] = ACTIONS(4467), - [anon_sym_DQUOTE] = ACTIONS(4469), - [sym__str_single_quotes] = ACTIONS(4471), - [sym__str_back_ticks] = ACTIONS(4471), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4473), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4475), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(2060), + [anon_sym_true] = ACTIONS(1629), + [anon_sym_false] = ACTIONS(1629), + [anon_sym_null] = ACTIONS(1629), + [aux_sym_cmd_identifier_token38] = ACTIONS(1629), + [aux_sym_cmd_identifier_token39] = ACTIONS(1629), + [aux_sym_cmd_identifier_token40] = ACTIONS(1629), + [sym__newline] = ACTIONS(1629), + [anon_sym_SEMI] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1629), + [anon_sym_err_GT_PIPE] = ACTIONS(1629), + [anon_sym_out_GT_PIPE] = ACTIONS(1629), + [anon_sym_e_GT_PIPE] = ACTIONS(1629), + [anon_sym_o_GT_PIPE] = ACTIONS(1629), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1629), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1629), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1629), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_RPAREN] = ACTIONS(1629), + [anon_sym_DOLLAR] = ACTIONS(1625), + [anon_sym_DASH_DASH] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1625), + [aux_sym_ctrl_match_token1] = ACTIONS(1629), + [anon_sym_RBRACE] = ACTIONS(1629), + [anon_sym_DOT_DOT] = ACTIONS(1625), + [anon_sym_DOT_DOT2] = ACTIONS(1625), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT] = ACTIONS(1625), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1629), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1629), + [aux_sym__val_number_decimal_token1] = ACTIONS(1625), + [aux_sym__val_number_decimal_token2] = ACTIONS(1629), + [aux_sym__val_number_decimal_token3] = ACTIONS(1629), + [aux_sym__val_number_decimal_token4] = ACTIONS(1629), + [aux_sym__val_number_token1] = ACTIONS(1629), + [aux_sym__val_number_token2] = ACTIONS(1629), + [aux_sym__val_number_token3] = ACTIONS(1629), + [anon_sym_0b] = ACTIONS(1625), + [anon_sym_0o] = ACTIONS(1625), + [anon_sym_0x] = ACTIONS(1625), + [sym_val_date] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1629), + [sym__str_single_quotes] = ACTIONS(1629), + [sym__str_back_ticks] = ACTIONS(1629), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1629), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1629), + [anon_sym_err_GT] = ACTIONS(1625), + [anon_sym_out_GT] = ACTIONS(1625), + [anon_sym_e_GT] = ACTIONS(1625), + [anon_sym_o_GT] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT] = ACTIONS(1625), + [anon_sym_err_GT_GT] = ACTIONS(1629), + [anon_sym_out_GT_GT] = ACTIONS(1629), + [anon_sym_e_GT_GT] = ACTIONS(1629), + [anon_sym_o_GT_GT] = ACTIONS(1629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1629), + [aux_sym_unquoted_token1] = ACTIONS(1625), [anon_sym_POUND] = ACTIONS(247), }, [1360] = { - [sym__val_range] = STATE(7816), - [sym__value] = STATE(4946), - [sym_val_nothing] = STATE(4994), - [sym_val_bool] = STATE(4669), - [sym_val_variable] = STATE(4994), - [sym_val_number] = STATE(4994), - [sym__val_number_decimal] = STATE(4225), - [sym__val_number] = STATE(4878), - [sym_val_duration] = STATE(4994), - [sym_val_filesize] = STATE(4994), - [sym_val_binary] = STATE(4994), - [sym_val_string] = STATE(4994), - [sym__str_double_quotes] = STATE(4660), - [sym_val_interpolated] = STATE(4994), - [sym__inter_single_quotes] = STATE(4902), - [sym__inter_double_quotes] = STATE(4928), - [sym_val_list] = STATE(4994), - [sym_val_record] = STATE(4994), - [sym_val_table] = STATE(4994), - [sym_val_closure] = STATE(4994), - [sym_unquoted] = STATE(4947), - [sym__unquoted_anonymous_prefix] = STATE(7738), + [sym_cell_path] = STATE(1848), + [sym_path] = STATE(1599), [sym_comment] = STATE(1360), - [anon_sym_true] = ACTIONS(4477), - [anon_sym_false] = ACTIONS(4477), - [anon_sym_null] = ACTIONS(4479), - [aux_sym_cmd_identifier_token38] = ACTIONS(4481), - [aux_sym_cmd_identifier_token39] = ACTIONS(4481), - [aux_sym_cmd_identifier_token40] = ACTIONS(4481), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_LPAREN] = ACTIONS(4447), - [anon_sym_DOLLAR] = ACTIONS(4449), - [aux_sym_ctrl_match_token1] = ACTIONS(4451), - [anon_sym_DOT_DOT] = ACTIONS(4453), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4455), - [anon_sym_DOT_DOT_LT] = ACTIONS(4455), - [aux_sym__val_number_decimal_token1] = ACTIONS(2034), - [aux_sym__val_number_decimal_token2] = ACTIONS(4483), - [aux_sym__val_number_decimal_token3] = ACTIONS(4485), - [aux_sym__val_number_decimal_token4] = ACTIONS(4487), - [aux_sym__val_number_token1] = ACTIONS(4465), - [aux_sym__val_number_token2] = ACTIONS(4465), - [aux_sym__val_number_token3] = ACTIONS(4465), - [anon_sym_0b] = ACTIONS(2042), - [anon_sym_0o] = ACTIONS(2044), - [anon_sym_0x] = ACTIONS(2044), - [sym_val_date] = ACTIONS(4489), - [anon_sym_DQUOTE] = ACTIONS(4469), - [sym__str_single_quotes] = ACTIONS(4471), - [sym__str_back_ticks] = ACTIONS(4471), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4473), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4475), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(2060), + [aux_sym_cell_path_repeat1] = STATE(1437), + [ts_builtin_sym_end] = ACTIONS(1849), + [anon_sym_true] = ACTIONS(1849), + [anon_sym_false] = ACTIONS(1849), + [anon_sym_null] = ACTIONS(1849), + [aux_sym_cmd_identifier_token38] = ACTIONS(1849), + [aux_sym_cmd_identifier_token39] = ACTIONS(1849), + [aux_sym_cmd_identifier_token40] = ACTIONS(1849), + [sym__newline] = ACTIONS(1849), + [anon_sym_SEMI] = ACTIONS(1849), + [anon_sym_PIPE] = ACTIONS(1849), + [anon_sym_err_GT_PIPE] = ACTIONS(1849), + [anon_sym_out_GT_PIPE] = ACTIONS(1849), + [anon_sym_e_GT_PIPE] = ACTIONS(1849), + [anon_sym_o_GT_PIPE] = ACTIONS(1849), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1849), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1849), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1849), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1849), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1849), + [anon_sym_DASH] = ACTIONS(1847), + [aux_sym_ctrl_match_token1] = ACTIONS(1849), + [anon_sym_DOT_DOT] = ACTIONS(1847), + [anon_sym_DOT] = ACTIONS(4674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1849), + [anon_sym_DOT_DOT_LT] = ACTIONS(1849), + [aux_sym__val_number_decimal_token1] = ACTIONS(1847), + [aux_sym__val_number_decimal_token2] = ACTIONS(1849), + [aux_sym__val_number_decimal_token3] = ACTIONS(1849), + [aux_sym__val_number_decimal_token4] = ACTIONS(1849), + [aux_sym__val_number_token1] = ACTIONS(1849), + [aux_sym__val_number_token2] = ACTIONS(1849), + [aux_sym__val_number_token3] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1847), + [anon_sym_0x] = ACTIONS(1847), + [sym_val_date] = ACTIONS(1849), + [anon_sym_DQUOTE] = ACTIONS(1849), + [sym__str_single_quotes] = ACTIONS(1849), + [sym__str_back_ticks] = ACTIONS(1849), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1849), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1849), + [anon_sym_err_GT] = ACTIONS(1847), + [anon_sym_out_GT] = ACTIONS(1847), + [anon_sym_e_GT] = ACTIONS(1847), + [anon_sym_o_GT] = ACTIONS(1847), + [anon_sym_err_PLUSout_GT] = ACTIONS(1847), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1847), + [anon_sym_o_PLUSe_GT] = ACTIONS(1847), + [anon_sym_e_PLUSo_GT] = ACTIONS(1847), + [anon_sym_err_GT_GT] = ACTIONS(1849), + [anon_sym_out_GT_GT] = ACTIONS(1849), + [anon_sym_e_GT_GT] = ACTIONS(1849), + [anon_sym_o_GT_GT] = ACTIONS(1849), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1849), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1849), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1849), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1849), + [aux_sym_unquoted_token1] = ACTIONS(1847), [anon_sym_POUND] = ACTIONS(247), }, [1361] = { - [sym__val_range] = STATE(7816), - [sym__value] = STATE(4932), - [sym_val_nothing] = STATE(4994), - [sym_val_bool] = STATE(4669), - [sym_val_variable] = STATE(4994), - [sym_val_number] = STATE(4994), - [sym__val_number_decimal] = STATE(4225), - [sym__val_number] = STATE(4878), - [sym_val_duration] = STATE(4994), - [sym_val_filesize] = STATE(4994), - [sym_val_binary] = STATE(4994), - [sym_val_string] = STATE(4994), - [sym__str_double_quotes] = STATE(4660), - [sym_val_interpolated] = STATE(4994), - [sym__inter_single_quotes] = STATE(4902), - [sym__inter_double_quotes] = STATE(4928), - [sym_val_list] = STATE(4994), - [sym_val_record] = STATE(4994), - [sym_val_table] = STATE(4994), - [sym_val_closure] = STATE(4994), - [sym_unquoted] = STATE(4933), - [sym__unquoted_anonymous_prefix] = STATE(7738), + [sym_cell_path] = STATE(1850), + [sym_path] = STATE(1599), [sym_comment] = STATE(1361), - [anon_sym_true] = ACTIONS(4477), - [anon_sym_false] = ACTIONS(4477), - [anon_sym_null] = ACTIONS(4479), - [aux_sym_cmd_identifier_token38] = ACTIONS(4481), - [aux_sym_cmd_identifier_token39] = ACTIONS(4481), - [aux_sym_cmd_identifier_token40] = ACTIONS(4481), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_LPAREN] = ACTIONS(4447), - [anon_sym_DOLLAR] = ACTIONS(4449), - [aux_sym_ctrl_match_token1] = ACTIONS(4451), - [anon_sym_DOT_DOT] = ACTIONS(4453), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4455), - [anon_sym_DOT_DOT_LT] = ACTIONS(4455), - [aux_sym__val_number_decimal_token1] = ACTIONS(2034), - [aux_sym__val_number_decimal_token2] = ACTIONS(4483), - [aux_sym__val_number_decimal_token3] = ACTIONS(4485), - [aux_sym__val_number_decimal_token4] = ACTIONS(4487), - [aux_sym__val_number_token1] = ACTIONS(4465), - [aux_sym__val_number_token2] = ACTIONS(4465), - [aux_sym__val_number_token3] = ACTIONS(4465), - [anon_sym_0b] = ACTIONS(2042), - [anon_sym_0o] = ACTIONS(2044), - [anon_sym_0x] = ACTIONS(2044), - [sym_val_date] = ACTIONS(4489), - [anon_sym_DQUOTE] = ACTIONS(4469), - [sym__str_single_quotes] = ACTIONS(4471), - [sym__str_back_ticks] = ACTIONS(4471), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4473), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4475), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(2060), + [aux_sym_cell_path_repeat1] = STATE(1437), + [ts_builtin_sym_end] = ACTIONS(1853), + [anon_sym_true] = ACTIONS(1853), + [anon_sym_false] = ACTIONS(1853), + [anon_sym_null] = ACTIONS(1853), + [aux_sym_cmd_identifier_token38] = ACTIONS(1853), + [aux_sym_cmd_identifier_token39] = ACTIONS(1853), + [aux_sym_cmd_identifier_token40] = ACTIONS(1853), + [sym__newline] = ACTIONS(1853), + [anon_sym_SEMI] = ACTIONS(1853), + [anon_sym_PIPE] = ACTIONS(1853), + [anon_sym_err_GT_PIPE] = ACTIONS(1853), + [anon_sym_out_GT_PIPE] = ACTIONS(1853), + [anon_sym_e_GT_PIPE] = ACTIONS(1853), + [anon_sym_o_GT_PIPE] = ACTIONS(1853), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1853), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1853), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1853), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1853), + [anon_sym_LBRACK] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1853), + [anon_sym_DOLLAR] = ACTIONS(1851), + [anon_sym_DASH_DASH] = ACTIONS(1853), + [anon_sym_DASH] = ACTIONS(1851), + [aux_sym_ctrl_match_token1] = ACTIONS(1853), + [anon_sym_DOT_DOT] = ACTIONS(1851), + [anon_sym_DOT] = ACTIONS(4674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1853), + [anon_sym_DOT_DOT_LT] = ACTIONS(1853), + [aux_sym__val_number_decimal_token1] = ACTIONS(1851), + [aux_sym__val_number_decimal_token2] = ACTIONS(1853), + [aux_sym__val_number_decimal_token3] = ACTIONS(1853), + [aux_sym__val_number_decimal_token4] = ACTIONS(1853), + [aux_sym__val_number_token1] = ACTIONS(1853), + [aux_sym__val_number_token2] = ACTIONS(1853), + [aux_sym__val_number_token3] = ACTIONS(1853), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0o] = ACTIONS(1851), + [anon_sym_0x] = ACTIONS(1851), + [sym_val_date] = ACTIONS(1853), + [anon_sym_DQUOTE] = ACTIONS(1853), + [sym__str_single_quotes] = ACTIONS(1853), + [sym__str_back_ticks] = ACTIONS(1853), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1853), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1853), + [anon_sym_err_GT] = ACTIONS(1851), + [anon_sym_out_GT] = ACTIONS(1851), + [anon_sym_e_GT] = ACTIONS(1851), + [anon_sym_o_GT] = ACTIONS(1851), + [anon_sym_err_PLUSout_GT] = ACTIONS(1851), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1851), + [anon_sym_o_PLUSe_GT] = ACTIONS(1851), + [anon_sym_e_PLUSo_GT] = ACTIONS(1851), + [anon_sym_err_GT_GT] = ACTIONS(1853), + [anon_sym_out_GT_GT] = ACTIONS(1853), + [anon_sym_e_GT_GT] = ACTIONS(1853), + [anon_sym_o_GT_GT] = ACTIONS(1853), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1853), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1853), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1853), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1853), + [aux_sym_unquoted_token1] = ACTIONS(1851), [anon_sym_POUND] = ACTIONS(247), }, [1362] = { - [sym__val_range] = STATE(8032), - [sym__value] = STATE(3967), - [sym_val_nothing] = STATE(3906), - [sym_val_bool] = STATE(3772), - [sym_val_variable] = STATE(3906), - [sym_val_number] = STATE(3906), - [sym__val_number_decimal] = STATE(3629), - [sym__val_number] = STATE(3888), - [sym_val_duration] = STATE(3906), - [sym_val_filesize] = STATE(3906), - [sym_val_binary] = STATE(3906), - [sym_val_string] = STATE(3906), - [sym__str_double_quotes] = STATE(3735), - [sym_val_interpolated] = STATE(3906), - [sym__inter_single_quotes] = STATE(3896), - [sym__inter_double_quotes] = STATE(3897), - [sym_val_list] = STATE(3906), - [sym_val_record] = STATE(3906), - [sym_val_table] = STATE(3906), - [sym_val_closure] = STATE(3906), - [sym_unquoted] = STATE(3971), - [sym__unquoted_anonymous_prefix] = STATE(7930), [sym_comment] = STATE(1362), - [anon_sym_true] = ACTIONS(4491), - [anon_sym_false] = ACTIONS(4491), - [anon_sym_null] = ACTIONS(4493), - [aux_sym_cmd_identifier_token38] = ACTIONS(4495), - [aux_sym_cmd_identifier_token39] = ACTIONS(4495), - [aux_sym_cmd_identifier_token40] = ACTIONS(4495), - [anon_sym_LBRACK] = ACTIONS(4497), - [anon_sym_LPAREN] = ACTIONS(4499), - [anon_sym_DOLLAR] = ACTIONS(4501), - [aux_sym_ctrl_match_token1] = ACTIONS(4503), - [anon_sym_DOT_DOT] = ACTIONS(4505), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4507), - [anon_sym_DOT_DOT_LT] = ACTIONS(4507), - [aux_sym__val_number_decimal_token1] = ACTIONS(4509), - [aux_sym__val_number_decimal_token2] = ACTIONS(4511), - [aux_sym__val_number_decimal_token3] = ACTIONS(4513), - [aux_sym__val_number_decimal_token4] = ACTIONS(4515), - [aux_sym__val_number_token1] = ACTIONS(4517), - [aux_sym__val_number_token2] = ACTIONS(4517), - [aux_sym__val_number_token3] = ACTIONS(4517), - [anon_sym_0b] = ACTIONS(4519), - [anon_sym_0o] = ACTIONS(4521), - [anon_sym_0x] = ACTIONS(4521), - [sym_val_date] = ACTIONS(4523), - [anon_sym_DQUOTE] = ACTIONS(4525), - [sym__str_single_quotes] = ACTIONS(4527), - [sym__str_back_ticks] = ACTIONS(4527), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4529), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4531), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(4533), + [sym__newline] = ACTIONS(1497), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_RPAREN] = ACTIONS(1499), + [anon_sym_LPAREN2] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), + [aux_sym__immediate_decimal_token2] = ACTIONS(4660), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1499), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), + [aux_sym_unquoted_token2] = ACTIONS(1497), [anon_sym_POUND] = ACTIONS(247), }, [1363] = { - [sym__val_range] = STATE(7816), - [sym__value] = STATE(4991), - [sym_val_nothing] = STATE(4994), - [sym_val_bool] = STATE(4669), - [sym_val_variable] = STATE(4994), - [sym_val_number] = STATE(4994), - [sym__val_number_decimal] = STATE(4225), - [sym__val_number] = STATE(4878), - [sym_val_duration] = STATE(4994), - [sym_val_filesize] = STATE(4994), - [sym_val_binary] = STATE(4994), - [sym_val_string] = STATE(4994), - [sym__str_double_quotes] = STATE(4660), - [sym_val_interpolated] = STATE(4994), - [sym__inter_single_quotes] = STATE(4902), - [sym__inter_double_quotes] = STATE(4928), - [sym_val_list] = STATE(4994), - [sym_val_record] = STATE(4994), - [sym_val_table] = STATE(4994), - [sym_val_closure] = STATE(4994), - [sym_unquoted] = STATE(4992), - [sym__unquoted_anonymous_prefix] = STATE(7738), + [sym_cell_path] = STATE(1851), + [sym_path] = STATE(1599), [sym_comment] = STATE(1363), - [anon_sym_true] = ACTIONS(4477), - [anon_sym_false] = ACTIONS(4477), - [anon_sym_null] = ACTIONS(4479), - [aux_sym_cmd_identifier_token38] = ACTIONS(4481), - [aux_sym_cmd_identifier_token39] = ACTIONS(4481), - [aux_sym_cmd_identifier_token40] = ACTIONS(4481), - [anon_sym_LBRACK] = ACTIONS(4445), - [anon_sym_LPAREN] = ACTIONS(4447), - [anon_sym_DOLLAR] = ACTIONS(4449), - [aux_sym_ctrl_match_token1] = ACTIONS(4451), - [anon_sym_DOT_DOT] = ACTIONS(4453), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4455), - [anon_sym_DOT_DOT_LT] = ACTIONS(4455), - [aux_sym__val_number_decimal_token1] = ACTIONS(2034), - [aux_sym__val_number_decimal_token2] = ACTIONS(4483), - [aux_sym__val_number_decimal_token3] = ACTIONS(4485), - [aux_sym__val_number_decimal_token4] = ACTIONS(4487), - [aux_sym__val_number_token1] = ACTIONS(4465), - [aux_sym__val_number_token2] = ACTIONS(4465), - [aux_sym__val_number_token3] = ACTIONS(4465), - [anon_sym_0b] = ACTIONS(2042), - [anon_sym_0o] = ACTIONS(2044), - [anon_sym_0x] = ACTIONS(2044), - [sym_val_date] = ACTIONS(4489), - [anon_sym_DQUOTE] = ACTIONS(4469), - [sym__str_single_quotes] = ACTIONS(4471), - [sym__str_back_ticks] = ACTIONS(4471), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4473), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4475), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(2060), + [aux_sym_cell_path_repeat1] = STATE(1437), + [ts_builtin_sym_end] = ACTIONS(1857), + [anon_sym_true] = ACTIONS(1857), + [anon_sym_false] = ACTIONS(1857), + [anon_sym_null] = ACTIONS(1857), + [aux_sym_cmd_identifier_token38] = ACTIONS(1857), + [aux_sym_cmd_identifier_token39] = ACTIONS(1857), + [aux_sym_cmd_identifier_token40] = ACTIONS(1857), + [sym__newline] = ACTIONS(1857), + [anon_sym_SEMI] = ACTIONS(1857), + [anon_sym_PIPE] = ACTIONS(1857), + [anon_sym_err_GT_PIPE] = ACTIONS(1857), + [anon_sym_out_GT_PIPE] = ACTIONS(1857), + [anon_sym_e_GT_PIPE] = ACTIONS(1857), + [anon_sym_o_GT_PIPE] = ACTIONS(1857), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1857), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1857), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1857), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1857), + [anon_sym_LBRACK] = ACTIONS(1857), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_DOLLAR] = ACTIONS(1855), + [anon_sym_DASH_DASH] = ACTIONS(1857), + [anon_sym_DASH] = ACTIONS(1855), + [aux_sym_ctrl_match_token1] = ACTIONS(1857), + [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_DOT] = ACTIONS(4674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1857), + [anon_sym_DOT_DOT_LT] = ACTIONS(1857), + [aux_sym__val_number_decimal_token1] = ACTIONS(1855), + [aux_sym__val_number_decimal_token2] = ACTIONS(1857), + [aux_sym__val_number_decimal_token3] = ACTIONS(1857), + [aux_sym__val_number_decimal_token4] = ACTIONS(1857), + [aux_sym__val_number_token1] = ACTIONS(1857), + [aux_sym__val_number_token2] = ACTIONS(1857), + [aux_sym__val_number_token3] = ACTIONS(1857), + [anon_sym_0b] = ACTIONS(1855), + [anon_sym_0o] = ACTIONS(1855), + [anon_sym_0x] = ACTIONS(1855), + [sym_val_date] = ACTIONS(1857), + [anon_sym_DQUOTE] = ACTIONS(1857), + [sym__str_single_quotes] = ACTIONS(1857), + [sym__str_back_ticks] = ACTIONS(1857), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1857), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1857), + [anon_sym_err_GT] = ACTIONS(1855), + [anon_sym_out_GT] = ACTIONS(1855), + [anon_sym_e_GT] = ACTIONS(1855), + [anon_sym_o_GT] = ACTIONS(1855), + [anon_sym_err_PLUSout_GT] = ACTIONS(1855), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1855), + [anon_sym_o_PLUSe_GT] = ACTIONS(1855), + [anon_sym_e_PLUSo_GT] = ACTIONS(1855), + [anon_sym_err_GT_GT] = ACTIONS(1857), + [anon_sym_out_GT_GT] = ACTIONS(1857), + [anon_sym_e_GT_GT] = ACTIONS(1857), + [anon_sym_o_GT_GT] = ACTIONS(1857), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1857), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1857), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1857), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1857), + [aux_sym_unquoted_token1] = ACTIONS(1855), [anon_sym_POUND] = ACTIONS(247), }, [1364] = { - [sym__val_range] = STATE(8032), - [sym__value] = STATE(3894), - [sym_val_nothing] = STATE(3906), - [sym_val_bool] = STATE(3772), - [sym_val_variable] = STATE(3906), - [sym_val_number] = STATE(3906), - [sym__val_number_decimal] = STATE(3629), - [sym__val_number] = STATE(3888), - [sym_val_duration] = STATE(3906), - [sym_val_filesize] = STATE(3906), - [sym_val_binary] = STATE(3906), - [sym_val_string] = STATE(3906), - [sym__str_double_quotes] = STATE(3735), - [sym_val_interpolated] = STATE(3906), - [sym__inter_single_quotes] = STATE(3896), - [sym__inter_double_quotes] = STATE(3897), - [sym_val_list] = STATE(3906), - [sym_val_record] = STATE(3906), - [sym_val_table] = STATE(3906), - [sym_val_closure] = STATE(3906), - [sym_unquoted] = STATE(3895), - [sym__unquoted_anonymous_prefix] = STATE(7930), [sym_comment] = STATE(1364), - [anon_sym_true] = ACTIONS(4491), - [anon_sym_false] = ACTIONS(4491), - [anon_sym_null] = ACTIONS(4493), - [aux_sym_cmd_identifier_token38] = ACTIONS(4495), - [aux_sym_cmd_identifier_token39] = ACTIONS(4495), - [aux_sym_cmd_identifier_token40] = ACTIONS(4495), - [anon_sym_LBRACK] = ACTIONS(4497), - [anon_sym_LPAREN] = ACTIONS(4499), - [anon_sym_DOLLAR] = ACTIONS(4501), - [aux_sym_ctrl_match_token1] = ACTIONS(4503), - [anon_sym_DOT_DOT] = ACTIONS(4505), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4507), - [anon_sym_DOT_DOT_LT] = ACTIONS(4507), - [aux_sym__val_number_decimal_token1] = ACTIONS(4509), - [aux_sym__val_number_decimal_token2] = ACTIONS(4511), - [aux_sym__val_number_decimal_token3] = ACTIONS(4513), - [aux_sym__val_number_decimal_token4] = ACTIONS(4515), - [aux_sym__val_number_token1] = ACTIONS(4517), - [aux_sym__val_number_token2] = ACTIONS(4517), - [aux_sym__val_number_token3] = ACTIONS(4517), - [anon_sym_0b] = ACTIONS(4519), - [anon_sym_0o] = ACTIONS(4521), - [anon_sym_0x] = ACTIONS(4521), - [sym_val_date] = ACTIONS(4523), - [anon_sym_DQUOTE] = ACTIONS(4525), - [sym__str_single_quotes] = ACTIONS(4527), - [sym__str_back_ticks] = ACTIONS(4527), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4529), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4531), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(4533), + [aux_sym_cmd_identifier_token41] = ACTIONS(1517), + [sym__newline] = ACTIONS(1517), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1519), + [anon_sym_err_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_GT_PIPE] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), + [anon_sym_RBRACE] = ACTIONS(1519), + [anon_sym_EQ_GT] = ACTIONS(1519), + [aux_sym_expr_binary_token1] = ACTIONS(1519), + [aux_sym_expr_binary_token2] = ACTIONS(1519), + [aux_sym_expr_binary_token3] = ACTIONS(1519), + [aux_sym_expr_binary_token4] = ACTIONS(1519), + [aux_sym_expr_binary_token5] = ACTIONS(1519), + [aux_sym_expr_binary_token6] = ACTIONS(1519), + [aux_sym_expr_binary_token7] = ACTIONS(1519), + [aux_sym_expr_binary_token8] = ACTIONS(1519), + [aux_sym_expr_binary_token9] = ACTIONS(1519), + [aux_sym_expr_binary_token10] = ACTIONS(1519), + [aux_sym_expr_binary_token11] = ACTIONS(1519), + [aux_sym_expr_binary_token12] = ACTIONS(1519), + [aux_sym_expr_binary_token13] = ACTIONS(1519), + [aux_sym_expr_binary_token14] = ACTIONS(1519), + [aux_sym_expr_binary_token15] = ACTIONS(1519), + [aux_sym_expr_binary_token16] = ACTIONS(1519), + [aux_sym_expr_binary_token17] = ACTIONS(1519), + [aux_sym_expr_binary_token18] = ACTIONS(1519), + [aux_sym_expr_binary_token19] = ACTIONS(1519), + [aux_sym_expr_binary_token20] = ACTIONS(1519), + [aux_sym_expr_binary_token21] = ACTIONS(1519), + [aux_sym_expr_binary_token22] = ACTIONS(1519), + [aux_sym_expr_binary_token23] = ACTIONS(1519), + [aux_sym_expr_binary_token24] = ACTIONS(1519), + [aux_sym_expr_binary_token25] = ACTIONS(1519), + [aux_sym_expr_binary_token26] = ACTIONS(1519), + [aux_sym_expr_binary_token27] = ACTIONS(1519), + [aux_sym_expr_binary_token28] = ACTIONS(1519), + [anon_sym_DOT_DOT2] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), + [sym_filesize_unit] = ACTIONS(1519), + [sym_duration_unit] = ACTIONS(1519), + [aux_sym_record_entry_token1] = ACTIONS(1519), + [anon_sym_err_GT] = ACTIONS(1517), + [anon_sym_out_GT] = ACTIONS(1517), + [anon_sym_e_GT] = ACTIONS(1517), + [anon_sym_o_GT] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT] = ACTIONS(1517), + [anon_sym_err_GT_GT] = ACTIONS(1519), + [anon_sym_out_GT_GT] = ACTIONS(1519), + [anon_sym_e_GT_GT] = ACTIONS(1519), + [anon_sym_o_GT_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), [anon_sym_POUND] = ACTIONS(247), }, [1365] = { - [sym__val_range] = STATE(8032), - [sym__value] = STATE(3875), - [sym_val_nothing] = STATE(3906), - [sym_val_bool] = STATE(3772), - [sym_val_variable] = STATE(3906), - [sym_val_number] = STATE(3906), - [sym__val_number_decimal] = STATE(3629), - [sym__val_number] = STATE(3888), - [sym_val_duration] = STATE(3906), - [sym_val_filesize] = STATE(3906), - [sym_val_binary] = STATE(3906), - [sym_val_string] = STATE(3906), - [sym__str_double_quotes] = STATE(3735), - [sym_val_interpolated] = STATE(3906), - [sym__inter_single_quotes] = STATE(3896), - [sym__inter_double_quotes] = STATE(3897), - [sym_val_list] = STATE(3906), - [sym_val_record] = STATE(3906), - [sym_val_table] = STATE(3906), - [sym_val_closure] = STATE(3906), - [sym_unquoted] = STATE(3933), - [sym__unquoted_anonymous_prefix] = STATE(7930), + [sym_cell_path] = STATE(1852), + [sym_path] = STATE(1599), [sym_comment] = STATE(1365), - [anon_sym_true] = ACTIONS(4491), - [anon_sym_false] = ACTIONS(4491), - [anon_sym_null] = ACTIONS(4493), - [aux_sym_cmd_identifier_token38] = ACTIONS(4495), - [aux_sym_cmd_identifier_token39] = ACTIONS(4495), - [aux_sym_cmd_identifier_token40] = ACTIONS(4495), - [anon_sym_LBRACK] = ACTIONS(4497), - [anon_sym_LPAREN] = ACTIONS(4499), - [anon_sym_DOLLAR] = ACTIONS(4501), - [aux_sym_ctrl_match_token1] = ACTIONS(4503), - [anon_sym_DOT_DOT] = ACTIONS(4505), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4507), - [anon_sym_DOT_DOT_LT] = ACTIONS(4507), - [aux_sym__val_number_decimal_token1] = ACTIONS(4509), - [aux_sym__val_number_decimal_token2] = ACTIONS(4511), - [aux_sym__val_number_decimal_token3] = ACTIONS(4513), - [aux_sym__val_number_decimal_token4] = ACTIONS(4515), - [aux_sym__val_number_token1] = ACTIONS(4517), - [aux_sym__val_number_token2] = ACTIONS(4517), - [aux_sym__val_number_token3] = ACTIONS(4517), - [anon_sym_0b] = ACTIONS(4519), - [anon_sym_0o] = ACTIONS(4521), - [anon_sym_0x] = ACTIONS(4521), - [sym_val_date] = ACTIONS(4523), - [anon_sym_DQUOTE] = ACTIONS(4525), - [sym__str_single_quotes] = ACTIONS(4527), - [sym__str_back_ticks] = ACTIONS(4527), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4529), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4531), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(4533), + [aux_sym_cell_path_repeat1] = STATE(1437), + [ts_builtin_sym_end] = ACTIONS(1861), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1861), + [aux_sym_cmd_identifier_token38] = ACTIONS(1861), + [aux_sym_cmd_identifier_token39] = ACTIONS(1861), + [aux_sym_cmd_identifier_token40] = ACTIONS(1861), + [sym__newline] = ACTIONS(1861), + [anon_sym_SEMI] = ACTIONS(1861), + [anon_sym_PIPE] = ACTIONS(1861), + [anon_sym_err_GT_PIPE] = ACTIONS(1861), + [anon_sym_out_GT_PIPE] = ACTIONS(1861), + [anon_sym_e_GT_PIPE] = ACTIONS(1861), + [anon_sym_o_GT_PIPE] = ACTIONS(1861), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1861), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1861), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1861), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1861), + [anon_sym_DOLLAR] = ACTIONS(1859), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_DASH] = ACTIONS(1859), + [aux_sym_ctrl_match_token1] = ACTIONS(1861), + [anon_sym_DOT_DOT] = ACTIONS(1859), + [anon_sym_DOT] = ACTIONS(4674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1861), + [anon_sym_DOT_DOT_LT] = ACTIONS(1861), + [aux_sym__val_number_decimal_token1] = ACTIONS(1859), + [aux_sym__val_number_decimal_token2] = ACTIONS(1861), + [aux_sym__val_number_decimal_token3] = ACTIONS(1861), + [aux_sym__val_number_decimal_token4] = ACTIONS(1861), + [aux_sym__val_number_token1] = ACTIONS(1861), + [aux_sym__val_number_token2] = ACTIONS(1861), + [aux_sym__val_number_token3] = ACTIONS(1861), + [anon_sym_0b] = ACTIONS(1859), + [anon_sym_0o] = ACTIONS(1859), + [anon_sym_0x] = ACTIONS(1859), + [sym_val_date] = ACTIONS(1861), + [anon_sym_DQUOTE] = ACTIONS(1861), + [sym__str_single_quotes] = ACTIONS(1861), + [sym__str_back_ticks] = ACTIONS(1861), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1861), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1861), + [anon_sym_err_GT] = ACTIONS(1859), + [anon_sym_out_GT] = ACTIONS(1859), + [anon_sym_e_GT] = ACTIONS(1859), + [anon_sym_o_GT] = ACTIONS(1859), + [anon_sym_err_PLUSout_GT] = ACTIONS(1859), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1859), + [anon_sym_o_PLUSe_GT] = ACTIONS(1859), + [anon_sym_e_PLUSo_GT] = ACTIONS(1859), + [anon_sym_err_GT_GT] = ACTIONS(1861), + [anon_sym_out_GT_GT] = ACTIONS(1861), + [anon_sym_e_GT_GT] = ACTIONS(1861), + [anon_sym_o_GT_GT] = ACTIONS(1861), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1861), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1861), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1861), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1861), + [aux_sym_unquoted_token1] = ACTIONS(1859), [anon_sym_POUND] = ACTIONS(247), }, [1366] = { - [sym__val_range] = STATE(7753), - [sym__value] = STATE(1940), - [sym_val_nothing] = STATE(1867), - [sym_val_bool] = STATE(1700), - [sym_val_variable] = STATE(1867), - [sym_val_number] = STATE(1867), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(1945), - [sym_val_duration] = STATE(1867), - [sym_val_filesize] = STATE(1867), - [sym_val_binary] = STATE(1867), - [sym_val_string] = STATE(1867), - [sym__str_double_quotes] = STATE(1954), - [sym_val_interpolated] = STATE(1867), - [sym__inter_single_quotes] = STATE(1824), - [sym__inter_double_quotes] = STATE(1826), - [sym_val_list] = STATE(1867), - [sym_val_record] = STATE(1867), - [sym_val_table] = STATE(1867), - [sym_val_closure] = STATE(1867), - [sym_unquoted] = STATE(1943), - [sym__unquoted_anonymous_prefix] = STATE(7850), + [sym_cell_path] = STATE(1853), + [sym_path] = STATE(1599), [sym_comment] = STATE(1366), - [anon_sym_true] = ACTIONS(4535), - [anon_sym_false] = ACTIONS(4535), - [anon_sym_null] = ACTIONS(4537), - [aux_sym_cmd_identifier_token38] = ACTIONS(4539), - [aux_sym_cmd_identifier_token39] = ACTIONS(4539), - [aux_sym_cmd_identifier_token40] = ACTIONS(4539), - [anon_sym_LBRACK] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(4541), - [anon_sym_DOLLAR] = ACTIONS(4060), - [aux_sym_ctrl_match_token1] = ACTIONS(2475), - [anon_sym_DOT_DOT] = ACTIONS(4543), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4545), - [anon_sym_DOT_DOT_LT] = ACTIONS(4545), - [aux_sym__val_number_decimal_token1] = ACTIONS(4547), - [aux_sym__val_number_decimal_token2] = ACTIONS(4549), - [aux_sym__val_number_decimal_token3] = ACTIONS(4551), - [aux_sym__val_number_decimal_token4] = ACTIONS(4553), - [aux_sym__val_number_token1] = ACTIONS(2489), - [aux_sym__val_number_token2] = ACTIONS(2489), - [aux_sym__val_number_token3] = ACTIONS(2489), - [anon_sym_0b] = ACTIONS(2491), - [anon_sym_0o] = ACTIONS(2493), - [anon_sym_0x] = ACTIONS(2493), - [sym_val_date] = ACTIONS(4555), - [anon_sym_DQUOTE] = ACTIONS(2497), - [sym__str_single_quotes] = ACTIONS(2499), - [sym__str_back_ticks] = ACTIONS(2499), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2501), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2503), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(4557), + [aux_sym_cell_path_repeat1] = STATE(1437), + [ts_builtin_sym_end] = ACTIONS(1865), + [anon_sym_true] = ACTIONS(1865), + [anon_sym_false] = ACTIONS(1865), + [anon_sym_null] = ACTIONS(1865), + [aux_sym_cmd_identifier_token38] = ACTIONS(1865), + [aux_sym_cmd_identifier_token39] = ACTIONS(1865), + [aux_sym_cmd_identifier_token40] = ACTIONS(1865), + [sym__newline] = ACTIONS(1865), + [anon_sym_SEMI] = ACTIONS(1865), + [anon_sym_PIPE] = ACTIONS(1865), + [anon_sym_err_GT_PIPE] = ACTIONS(1865), + [anon_sym_out_GT_PIPE] = ACTIONS(1865), + [anon_sym_e_GT_PIPE] = ACTIONS(1865), + [anon_sym_o_GT_PIPE] = ACTIONS(1865), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1865), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1865), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1865), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1865), + [anon_sym_LBRACK] = ACTIONS(1865), + [anon_sym_LPAREN] = ACTIONS(1865), + [anon_sym_DOLLAR] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_DASH] = ACTIONS(1863), + [aux_sym_ctrl_match_token1] = ACTIONS(1865), + [anon_sym_DOT_DOT] = ACTIONS(1863), + [anon_sym_DOT] = ACTIONS(4674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1865), + [anon_sym_DOT_DOT_LT] = ACTIONS(1865), + [aux_sym__val_number_decimal_token1] = ACTIONS(1863), + [aux_sym__val_number_decimal_token2] = ACTIONS(1865), + [aux_sym__val_number_decimal_token3] = ACTIONS(1865), + [aux_sym__val_number_decimal_token4] = ACTIONS(1865), + [aux_sym__val_number_token1] = ACTIONS(1865), + [aux_sym__val_number_token2] = ACTIONS(1865), + [aux_sym__val_number_token3] = ACTIONS(1865), + [anon_sym_0b] = ACTIONS(1863), + [anon_sym_0o] = ACTIONS(1863), + [anon_sym_0x] = ACTIONS(1863), + [sym_val_date] = ACTIONS(1865), + [anon_sym_DQUOTE] = ACTIONS(1865), + [sym__str_single_quotes] = ACTIONS(1865), + [sym__str_back_ticks] = ACTIONS(1865), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1865), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1865), + [anon_sym_err_GT] = ACTIONS(1863), + [anon_sym_out_GT] = ACTIONS(1863), + [anon_sym_e_GT] = ACTIONS(1863), + [anon_sym_o_GT] = ACTIONS(1863), + [anon_sym_err_PLUSout_GT] = ACTIONS(1863), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1863), + [anon_sym_o_PLUSe_GT] = ACTIONS(1863), + [anon_sym_e_PLUSo_GT] = ACTIONS(1863), + [anon_sym_err_GT_GT] = ACTIONS(1865), + [anon_sym_out_GT_GT] = ACTIONS(1865), + [anon_sym_e_GT_GT] = ACTIONS(1865), + [anon_sym_o_GT_GT] = ACTIONS(1865), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1865), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1865), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1865), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1865), + [aux_sym_unquoted_token1] = ACTIONS(1863), [anon_sym_POUND] = ACTIONS(247), }, [1367] = { - [sym__val_range] = STATE(8032), - [sym__value] = STATE(3966), - [sym_val_nothing] = STATE(3906), - [sym_val_bool] = STATE(3772), - [sym_val_variable] = STATE(3906), - [sym_val_number] = STATE(3906), - [sym__val_number_decimal] = STATE(3629), - [sym__val_number] = STATE(3888), - [sym_val_duration] = STATE(3906), - [sym_val_filesize] = STATE(3906), - [sym_val_binary] = STATE(3906), - [sym_val_string] = STATE(3906), - [sym__str_double_quotes] = STATE(3735), - [sym_val_interpolated] = STATE(3906), - [sym__inter_single_quotes] = STATE(3896), - [sym__inter_double_quotes] = STATE(3897), - [sym_val_list] = STATE(3906), - [sym_val_record] = STATE(3906), - [sym_val_table] = STATE(3906), - [sym_val_closure] = STATE(3906), - [sym_unquoted] = STATE(3970), - [sym__unquoted_anonymous_prefix] = STATE(7930), + [sym_cell_path] = STATE(1855), + [sym_path] = STATE(1599), [sym_comment] = STATE(1367), - [anon_sym_true] = ACTIONS(4491), - [anon_sym_false] = ACTIONS(4491), - [anon_sym_null] = ACTIONS(4493), - [aux_sym_cmd_identifier_token38] = ACTIONS(4495), - [aux_sym_cmd_identifier_token39] = ACTIONS(4495), - [aux_sym_cmd_identifier_token40] = ACTIONS(4495), - [anon_sym_LBRACK] = ACTIONS(4497), - [anon_sym_LPAREN] = ACTIONS(4499), - [anon_sym_DOLLAR] = ACTIONS(4501), - [aux_sym_ctrl_match_token1] = ACTIONS(4503), - [anon_sym_DOT_DOT] = ACTIONS(4505), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4507), - [anon_sym_DOT_DOT_LT] = ACTIONS(4507), - [aux_sym__val_number_decimal_token1] = ACTIONS(4509), - [aux_sym__val_number_decimal_token2] = ACTIONS(4511), - [aux_sym__val_number_decimal_token3] = ACTIONS(4513), - [aux_sym__val_number_decimal_token4] = ACTIONS(4515), - [aux_sym__val_number_token1] = ACTIONS(4517), - [aux_sym__val_number_token2] = ACTIONS(4517), - [aux_sym__val_number_token3] = ACTIONS(4517), - [anon_sym_0b] = ACTIONS(4519), - [anon_sym_0o] = ACTIONS(4521), - [anon_sym_0x] = ACTIONS(4521), - [sym_val_date] = ACTIONS(4523), - [anon_sym_DQUOTE] = ACTIONS(4525), - [sym__str_single_quotes] = ACTIONS(4527), - [sym__str_back_ticks] = ACTIONS(4527), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4529), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4531), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(4533), + [aux_sym_cell_path_repeat1] = STATE(1437), + [ts_builtin_sym_end] = ACTIONS(1869), + [anon_sym_true] = ACTIONS(1869), + [anon_sym_false] = ACTIONS(1869), + [anon_sym_null] = ACTIONS(1869), + [aux_sym_cmd_identifier_token38] = ACTIONS(1869), + [aux_sym_cmd_identifier_token39] = ACTIONS(1869), + [aux_sym_cmd_identifier_token40] = ACTIONS(1869), + [sym__newline] = ACTIONS(1869), + [anon_sym_SEMI] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_err_GT_PIPE] = ACTIONS(1869), + [anon_sym_out_GT_PIPE] = ACTIONS(1869), + [anon_sym_e_GT_PIPE] = ACTIONS(1869), + [anon_sym_o_GT_PIPE] = ACTIONS(1869), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1869), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1869), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1869), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1869), + [anon_sym_LBRACK] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1869), + [anon_sym_DOLLAR] = ACTIONS(1867), + [anon_sym_DASH_DASH] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1867), + [aux_sym_ctrl_match_token1] = ACTIONS(1869), + [anon_sym_DOT_DOT] = ACTIONS(1867), + [anon_sym_DOT] = ACTIONS(4674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1869), + [anon_sym_DOT_DOT_LT] = ACTIONS(1869), + [aux_sym__val_number_decimal_token1] = ACTIONS(1867), + [aux_sym__val_number_decimal_token2] = ACTIONS(1869), + [aux_sym__val_number_decimal_token3] = ACTIONS(1869), + [aux_sym__val_number_decimal_token4] = ACTIONS(1869), + [aux_sym__val_number_token1] = ACTIONS(1869), + [aux_sym__val_number_token2] = ACTIONS(1869), + [aux_sym__val_number_token3] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1867), + [anon_sym_0x] = ACTIONS(1867), + [sym_val_date] = ACTIONS(1869), + [anon_sym_DQUOTE] = ACTIONS(1869), + [sym__str_single_quotes] = ACTIONS(1869), + [sym__str_back_ticks] = ACTIONS(1869), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1869), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1869), + [anon_sym_err_GT] = ACTIONS(1867), + [anon_sym_out_GT] = ACTIONS(1867), + [anon_sym_e_GT] = ACTIONS(1867), + [anon_sym_o_GT] = ACTIONS(1867), + [anon_sym_err_PLUSout_GT] = ACTIONS(1867), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1867), + [anon_sym_o_PLUSe_GT] = ACTIONS(1867), + [anon_sym_e_PLUSo_GT] = ACTIONS(1867), + [anon_sym_err_GT_GT] = ACTIONS(1869), + [anon_sym_out_GT_GT] = ACTIONS(1869), + [anon_sym_e_GT_GT] = ACTIONS(1869), + [anon_sym_o_GT_GT] = ACTIONS(1869), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1869), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1869), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1869), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1869), + [aux_sym_unquoted_token1] = ACTIONS(1867), [anon_sym_POUND] = ACTIONS(247), }, [1368] = { - [sym__val_range] = STATE(7753), - [sym__value] = STATE(1946), - [sym_val_nothing] = STATE(1867), - [sym_val_bool] = STATE(1700), - [sym_val_variable] = STATE(1867), - [sym_val_number] = STATE(1867), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(1945), - [sym_val_duration] = STATE(1867), - [sym_val_filesize] = STATE(1867), - [sym_val_binary] = STATE(1867), - [sym_val_string] = STATE(1867), - [sym__str_double_quotes] = STATE(1954), - [sym_val_interpolated] = STATE(1867), - [sym__inter_single_quotes] = STATE(1824), - [sym__inter_double_quotes] = STATE(1826), - [sym_val_list] = STATE(1867), - [sym_val_record] = STATE(1867), - [sym_val_table] = STATE(1867), - [sym_val_closure] = STATE(1867), - [sym_unquoted] = STATE(1947), - [sym__unquoted_anonymous_prefix] = STATE(7850), [sym_comment] = STATE(1368), - [anon_sym_true] = ACTIONS(4535), - [anon_sym_false] = ACTIONS(4535), - [anon_sym_null] = ACTIONS(4537), - [aux_sym_cmd_identifier_token38] = ACTIONS(4539), - [aux_sym_cmd_identifier_token39] = ACTIONS(4539), - [aux_sym_cmd_identifier_token40] = ACTIONS(4539), - [anon_sym_LBRACK] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(4541), - [anon_sym_DOLLAR] = ACTIONS(4060), - [aux_sym_ctrl_match_token1] = ACTIONS(2475), - [anon_sym_DOT_DOT] = ACTIONS(4543), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4545), - [anon_sym_DOT_DOT_LT] = ACTIONS(4545), - [aux_sym__val_number_decimal_token1] = ACTIONS(4547), - [aux_sym__val_number_decimal_token2] = ACTIONS(4549), - [aux_sym__val_number_decimal_token3] = ACTIONS(4551), - [aux_sym__val_number_decimal_token4] = ACTIONS(4553), - [aux_sym__val_number_token1] = ACTIONS(2489), - [aux_sym__val_number_token2] = ACTIONS(2489), - [aux_sym__val_number_token3] = ACTIONS(2489), - [anon_sym_0b] = ACTIONS(2491), - [anon_sym_0o] = ACTIONS(2493), - [anon_sym_0x] = ACTIONS(2493), - [sym_val_date] = ACTIONS(4555), - [anon_sym_DQUOTE] = ACTIONS(2497), - [sym__str_single_quotes] = ACTIONS(2499), - [sym__str_back_ticks] = ACTIONS(2499), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2501), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2503), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(4557), + [anon_sym_true] = ACTIONS(2041), + [anon_sym_false] = ACTIONS(2041), + [anon_sym_null] = ACTIONS(2041), + [aux_sym_cmd_identifier_token38] = ACTIONS(2041), + [aux_sym_cmd_identifier_token39] = ACTIONS(2041), + [aux_sym_cmd_identifier_token40] = ACTIONS(2041), + [sym__newline] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(2041), + [anon_sym_PIPE] = ACTIONS(2041), + [anon_sym_err_GT_PIPE] = ACTIONS(2041), + [anon_sym_out_GT_PIPE] = ACTIONS(2041), + [anon_sym_e_GT_PIPE] = ACTIONS(2041), + [anon_sym_o_GT_PIPE] = ACTIONS(2041), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2041), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2041), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2041), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_RPAREN] = ACTIONS(2041), + [anon_sym_DOLLAR] = ACTIONS(2035), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_DASH] = ACTIONS(2035), + [aux_sym_ctrl_match_token1] = ACTIONS(2041), + [anon_sym_RBRACE] = ACTIONS(2041), + [anon_sym_DOT_DOT] = ACTIONS(2035), + [anon_sym_DOT_DOT2] = ACTIONS(4718), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2035), + [anon_sym_DOT_DOT_LT] = ACTIONS(2035), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4720), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4720), + [aux_sym__val_number_decimal_token1] = ACTIONS(2035), + [aux_sym__val_number_decimal_token2] = ACTIONS(2041), + [aux_sym__val_number_decimal_token3] = ACTIONS(2041), + [aux_sym__val_number_decimal_token4] = ACTIONS(2041), + [aux_sym__val_number_token1] = ACTIONS(2041), + [aux_sym__val_number_token2] = ACTIONS(2041), + [aux_sym__val_number_token3] = ACTIONS(2041), + [anon_sym_0b] = ACTIONS(2035), + [anon_sym_0o] = ACTIONS(2035), + [anon_sym_0x] = ACTIONS(2035), + [sym_val_date] = ACTIONS(2041), + [anon_sym_DQUOTE] = ACTIONS(2041), + [sym__str_single_quotes] = ACTIONS(2041), + [sym__str_back_ticks] = ACTIONS(2041), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2041), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2041), + [anon_sym_err_GT] = ACTIONS(2035), + [anon_sym_out_GT] = ACTIONS(2035), + [anon_sym_e_GT] = ACTIONS(2035), + [anon_sym_o_GT] = ACTIONS(2035), + [anon_sym_err_PLUSout_GT] = ACTIONS(2035), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2035), + [anon_sym_o_PLUSe_GT] = ACTIONS(2035), + [anon_sym_e_PLUSo_GT] = ACTIONS(2035), + [anon_sym_err_GT_GT] = ACTIONS(2041), + [anon_sym_out_GT_GT] = ACTIONS(2041), + [anon_sym_e_GT_GT] = ACTIONS(2041), + [anon_sym_o_GT_GT] = ACTIONS(2041), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2041), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2041), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2041), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2041), + [aux_sym_unquoted_token1] = ACTIONS(2035), [anon_sym_POUND] = ACTIONS(247), }, [1369] = { - [sym__val_range] = STATE(7753), - [sym__value] = STATE(1880), - [sym_val_nothing] = STATE(1867), - [sym_val_bool] = STATE(1700), - [sym_val_variable] = STATE(1867), - [sym_val_number] = STATE(1867), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(1945), - [sym_val_duration] = STATE(1867), - [sym_val_filesize] = STATE(1867), - [sym_val_binary] = STATE(1867), - [sym_val_string] = STATE(1867), - [sym__str_double_quotes] = STATE(1954), - [sym_val_interpolated] = STATE(1867), - [sym__inter_single_quotes] = STATE(1824), - [sym__inter_double_quotes] = STATE(1826), - [sym_val_list] = STATE(1867), - [sym_val_record] = STATE(1867), - [sym_val_table] = STATE(1867), - [sym_val_closure] = STATE(1867), - [sym_unquoted] = STATE(1883), - [sym__unquoted_anonymous_prefix] = STATE(7850), [sym_comment] = STATE(1369), - [anon_sym_true] = ACTIONS(4535), - [anon_sym_false] = ACTIONS(4535), - [anon_sym_null] = ACTIONS(4537), - [aux_sym_cmd_identifier_token38] = ACTIONS(4539), - [aux_sym_cmd_identifier_token39] = ACTIONS(4539), - [aux_sym_cmd_identifier_token40] = ACTIONS(4539), - [anon_sym_LBRACK] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(4541), - [anon_sym_DOLLAR] = ACTIONS(4060), - [aux_sym_ctrl_match_token1] = ACTIONS(2475), - [anon_sym_DOT_DOT] = ACTIONS(4543), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4545), - [anon_sym_DOT_DOT_LT] = ACTIONS(4545), - [aux_sym__val_number_decimal_token1] = ACTIONS(4547), - [aux_sym__val_number_decimal_token2] = ACTIONS(4549), - [aux_sym__val_number_decimal_token3] = ACTIONS(4551), - [aux_sym__val_number_decimal_token4] = ACTIONS(4553), - [aux_sym__val_number_token1] = ACTIONS(2489), - [aux_sym__val_number_token2] = ACTIONS(2489), - [aux_sym__val_number_token3] = ACTIONS(2489), - [anon_sym_0b] = ACTIONS(2491), - [anon_sym_0o] = ACTIONS(2493), - [anon_sym_0x] = ACTIONS(2493), - [sym_val_date] = ACTIONS(4555), - [anon_sym_DQUOTE] = ACTIONS(2497), - [sym__str_single_quotes] = ACTIONS(2499), - [sym__str_back_ticks] = ACTIONS(2499), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2501), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2503), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(4557), + [anon_sym_true] = ACTIONS(2049), + [anon_sym_false] = ACTIONS(2049), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token38] = ACTIONS(2049), + [aux_sym_cmd_identifier_token39] = ACTIONS(2049), + [aux_sym_cmd_identifier_token40] = ACTIONS(2049), + [sym__newline] = ACTIONS(2049), + [anon_sym_SEMI] = ACTIONS(2049), + [anon_sym_PIPE] = ACTIONS(2049), + [anon_sym_err_GT_PIPE] = ACTIONS(2049), + [anon_sym_out_GT_PIPE] = ACTIONS(2049), + [anon_sym_e_GT_PIPE] = ACTIONS(2049), + [anon_sym_o_GT_PIPE] = ACTIONS(2049), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2049), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2049), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2049), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(2049), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_RPAREN] = ACTIONS(2049), + [anon_sym_DOLLAR] = ACTIONS(2043), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_DASH] = ACTIONS(2043), + [aux_sym_ctrl_match_token1] = ACTIONS(2049), + [anon_sym_RBRACE] = ACTIONS(2049), + [anon_sym_DOT_DOT] = ACTIONS(2043), + [anon_sym_DOT_DOT2] = ACTIONS(4722), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2043), + [anon_sym_DOT_DOT_LT] = ACTIONS(2043), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4724), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4724), + [aux_sym__val_number_decimal_token1] = ACTIONS(2043), + [aux_sym__val_number_decimal_token2] = ACTIONS(2049), + [aux_sym__val_number_decimal_token3] = ACTIONS(2049), + [aux_sym__val_number_decimal_token4] = ACTIONS(2049), + [aux_sym__val_number_token1] = ACTIONS(2049), + [aux_sym__val_number_token2] = ACTIONS(2049), + [aux_sym__val_number_token3] = ACTIONS(2049), + [anon_sym_0b] = ACTIONS(2043), + [anon_sym_0o] = ACTIONS(2043), + [anon_sym_0x] = ACTIONS(2043), + [sym_val_date] = ACTIONS(2049), + [anon_sym_DQUOTE] = ACTIONS(2049), + [sym__str_single_quotes] = ACTIONS(2049), + [sym__str_back_ticks] = ACTIONS(2049), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2049), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2049), + [anon_sym_err_GT] = ACTIONS(2043), + [anon_sym_out_GT] = ACTIONS(2043), + [anon_sym_e_GT] = ACTIONS(2043), + [anon_sym_o_GT] = ACTIONS(2043), + [anon_sym_err_PLUSout_GT] = ACTIONS(2043), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2043), + [anon_sym_o_PLUSe_GT] = ACTIONS(2043), + [anon_sym_e_PLUSo_GT] = ACTIONS(2043), + [anon_sym_err_GT_GT] = ACTIONS(2049), + [anon_sym_out_GT_GT] = ACTIONS(2049), + [anon_sym_e_GT_GT] = ACTIONS(2049), + [anon_sym_o_GT_GT] = ACTIONS(2049), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2049), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2049), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2049), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2049), + [aux_sym_unquoted_token1] = ACTIONS(2043), [anon_sym_POUND] = ACTIONS(247), }, [1370] = { - [sym__val_range] = STATE(7957), - [sym__value] = STATE(6052), - [sym_val_nothing] = STATE(4339), - [sym_val_bool] = STATE(5838), - [sym_val_variable] = STATE(4339), - [sym_val_number] = STATE(4339), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(4400), - [sym_val_duration] = STATE(4339), - [sym_val_filesize] = STATE(4339), - [sym_val_binary] = STATE(4339), - [sym_val_string] = STATE(4339), - [sym__str_double_quotes] = STATE(3756), - [sym_val_interpolated] = STATE(4339), - [sym__inter_single_quotes] = STATE(4389), - [sym__inter_double_quotes] = STATE(4338), - [sym_val_list] = STATE(4339), - [sym_val_record] = STATE(4339), - [sym_val_table] = STATE(4339), - [sym_val_closure] = STATE(4339), - [sym_unquoted] = STATE(6056), - [sym__unquoted_anonymous_prefix] = STATE(8024), + [sym_cell_path] = STATE(1857), + [sym_path] = STATE(1599), [sym_comment] = STATE(1370), - [anon_sym_true] = ACTIONS(4559), - [anon_sym_false] = ACTIONS(4559), - [anon_sym_null] = ACTIONS(4561), - [aux_sym_cmd_identifier_token38] = ACTIONS(4563), - [aux_sym_cmd_identifier_token39] = ACTIONS(4563), - [aux_sym_cmd_identifier_token40] = ACTIONS(4563), - [anon_sym_LBRACK] = ACTIONS(3549), - [anon_sym_LPAREN] = ACTIONS(4565), - [anon_sym_DOLLAR] = ACTIONS(4567), - [aux_sym_ctrl_match_token1] = ACTIONS(3557), - [anon_sym_DOT_DOT] = ACTIONS(4569), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4571), - [anon_sym_DOT_DOT_LT] = ACTIONS(4571), - [aux_sym__val_number_decimal_token1] = ACTIONS(4573), - [aux_sym__val_number_decimal_token2] = ACTIONS(4575), - [aux_sym__val_number_decimal_token3] = ACTIONS(4577), - [aux_sym__val_number_decimal_token4] = ACTIONS(4579), - [aux_sym__val_number_token1] = ACTIONS(3573), - [aux_sym__val_number_token2] = ACTIONS(3573), - [aux_sym__val_number_token3] = ACTIONS(3573), - [anon_sym_0b] = ACTIONS(3575), - [anon_sym_0o] = ACTIONS(3577), - [anon_sym_0x] = ACTIONS(3577), - [sym_val_date] = ACTIONS(4581), - [anon_sym_DQUOTE] = ACTIONS(3581), - [sym__str_single_quotes] = ACTIONS(3583), - [sym__str_back_ticks] = ACTIONS(3583), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3585), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3587), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3589), + [aux_sym_cell_path_repeat1] = STATE(1437), + [ts_builtin_sym_end] = ACTIONS(1877), + [anon_sym_true] = ACTIONS(1877), + [anon_sym_false] = ACTIONS(1877), + [anon_sym_null] = ACTIONS(1877), + [aux_sym_cmd_identifier_token38] = ACTIONS(1877), + [aux_sym_cmd_identifier_token39] = ACTIONS(1877), + [aux_sym_cmd_identifier_token40] = ACTIONS(1877), + [sym__newline] = ACTIONS(1877), + [anon_sym_SEMI] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1877), + [anon_sym_err_GT_PIPE] = ACTIONS(1877), + [anon_sym_out_GT_PIPE] = ACTIONS(1877), + [anon_sym_e_GT_PIPE] = ACTIONS(1877), + [anon_sym_o_GT_PIPE] = ACTIONS(1877), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1877), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1877), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1877), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(1877), + [anon_sym_DOLLAR] = ACTIONS(1875), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1875), + [aux_sym_ctrl_match_token1] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1875), + [anon_sym_DOT] = ACTIONS(4674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1877), + [anon_sym_DOT_DOT_LT] = ACTIONS(1877), + [aux_sym__val_number_decimal_token1] = ACTIONS(1875), + [aux_sym__val_number_decimal_token2] = ACTIONS(1877), + [aux_sym__val_number_decimal_token3] = ACTIONS(1877), + [aux_sym__val_number_decimal_token4] = ACTIONS(1877), + [aux_sym__val_number_token1] = ACTIONS(1877), + [aux_sym__val_number_token2] = ACTIONS(1877), + [aux_sym__val_number_token3] = ACTIONS(1877), + [anon_sym_0b] = ACTIONS(1875), + [anon_sym_0o] = ACTIONS(1875), + [anon_sym_0x] = ACTIONS(1875), + [sym_val_date] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1877), + [sym__str_single_quotes] = ACTIONS(1877), + [sym__str_back_ticks] = ACTIONS(1877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1877), + [anon_sym_err_GT] = ACTIONS(1875), + [anon_sym_out_GT] = ACTIONS(1875), + [anon_sym_e_GT] = ACTIONS(1875), + [anon_sym_o_GT] = ACTIONS(1875), + [anon_sym_err_PLUSout_GT] = ACTIONS(1875), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1875), + [anon_sym_o_PLUSe_GT] = ACTIONS(1875), + [anon_sym_e_PLUSo_GT] = ACTIONS(1875), + [anon_sym_err_GT_GT] = ACTIONS(1877), + [anon_sym_out_GT_GT] = ACTIONS(1877), + [anon_sym_e_GT_GT] = ACTIONS(1877), + [anon_sym_o_GT_GT] = ACTIONS(1877), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1877), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1877), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1877), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1877), + [aux_sym_unquoted_token1] = ACTIONS(1875), [anon_sym_POUND] = ACTIONS(247), }, [1371] = { - [sym__val_range] = STATE(7753), - [sym__value] = STATE(1899), - [sym_val_nothing] = STATE(1867), - [sym_val_bool] = STATE(1700), - [sym_val_variable] = STATE(1867), - [sym_val_number] = STATE(1867), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(1945), - [sym_val_duration] = STATE(1867), - [sym_val_filesize] = STATE(1867), - [sym_val_binary] = STATE(1867), - [sym_val_string] = STATE(1867), - [sym__str_double_quotes] = STATE(1954), - [sym_val_interpolated] = STATE(1867), - [sym__inter_single_quotes] = STATE(1824), - [sym__inter_double_quotes] = STATE(1826), - [sym_val_list] = STATE(1867), - [sym_val_record] = STATE(1867), - [sym_val_table] = STATE(1867), - [sym_val_closure] = STATE(1867), - [sym_unquoted] = STATE(1904), - [sym__unquoted_anonymous_prefix] = STATE(7850), [sym_comment] = STATE(1371), - [anon_sym_true] = ACTIONS(4535), - [anon_sym_false] = ACTIONS(4535), - [anon_sym_null] = ACTIONS(4537), - [aux_sym_cmd_identifier_token38] = ACTIONS(4539), - [aux_sym_cmd_identifier_token39] = ACTIONS(4539), - [aux_sym_cmd_identifier_token40] = ACTIONS(4539), - [anon_sym_LBRACK] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(4541), - [anon_sym_DOLLAR] = ACTIONS(4060), - [aux_sym_ctrl_match_token1] = ACTIONS(2475), - [anon_sym_DOT_DOT] = ACTIONS(4543), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4545), - [anon_sym_DOT_DOT_LT] = ACTIONS(4545), - [aux_sym__val_number_decimal_token1] = ACTIONS(4547), - [aux_sym__val_number_decimal_token2] = ACTIONS(4549), - [aux_sym__val_number_decimal_token3] = ACTIONS(4551), - [aux_sym__val_number_decimal_token4] = ACTIONS(4553), - [aux_sym__val_number_token1] = ACTIONS(2489), - [aux_sym__val_number_token2] = ACTIONS(2489), - [aux_sym__val_number_token3] = ACTIONS(2489), - [anon_sym_0b] = ACTIONS(2491), - [anon_sym_0o] = ACTIONS(2493), - [anon_sym_0x] = ACTIONS(2493), - [sym_val_date] = ACTIONS(4555), - [anon_sym_DQUOTE] = ACTIONS(2497), - [sym__str_single_quotes] = ACTIONS(2499), - [sym__str_back_ticks] = ACTIONS(2499), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2501), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2503), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(4557), + [anon_sym_true] = ACTIONS(2057), + [anon_sym_false] = ACTIONS(2057), + [anon_sym_null] = ACTIONS(2057), + [aux_sym_cmd_identifier_token38] = ACTIONS(2057), + [aux_sym_cmd_identifier_token39] = ACTIONS(2057), + [aux_sym_cmd_identifier_token40] = ACTIONS(2057), + [sym__newline] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_PIPE] = ACTIONS(2057), + [anon_sym_err_GT_PIPE] = ACTIONS(2057), + [anon_sym_out_GT_PIPE] = ACTIONS(2057), + [anon_sym_e_GT_PIPE] = ACTIONS(2057), + [anon_sym_o_GT_PIPE] = ACTIONS(2057), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2057), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2057), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2057), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_RPAREN] = ACTIONS(2057), + [anon_sym_DOLLAR] = ACTIONS(2051), + [anon_sym_DASH_DASH] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2051), + [aux_sym_ctrl_match_token1] = ACTIONS(2057), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_DOT_DOT] = ACTIONS(2051), + [anon_sym_DOT_DOT2] = ACTIONS(4726), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2051), + [anon_sym_DOT_DOT_LT] = ACTIONS(2051), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4728), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4728), + [aux_sym__val_number_decimal_token1] = ACTIONS(2051), + [aux_sym__val_number_decimal_token2] = ACTIONS(2057), + [aux_sym__val_number_decimal_token3] = ACTIONS(2057), + [aux_sym__val_number_decimal_token4] = ACTIONS(2057), + [aux_sym__val_number_token1] = ACTIONS(2057), + [aux_sym__val_number_token2] = ACTIONS(2057), + [aux_sym__val_number_token3] = ACTIONS(2057), + [anon_sym_0b] = ACTIONS(2051), + [anon_sym_0o] = ACTIONS(2051), + [anon_sym_0x] = ACTIONS(2051), + [sym_val_date] = ACTIONS(2057), + [anon_sym_DQUOTE] = ACTIONS(2057), + [sym__str_single_quotes] = ACTIONS(2057), + [sym__str_back_ticks] = ACTIONS(2057), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2057), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2057), + [anon_sym_err_GT] = ACTIONS(2051), + [anon_sym_out_GT] = ACTIONS(2051), + [anon_sym_e_GT] = ACTIONS(2051), + [anon_sym_o_GT] = ACTIONS(2051), + [anon_sym_err_PLUSout_GT] = ACTIONS(2051), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2051), + [anon_sym_o_PLUSe_GT] = ACTIONS(2051), + [anon_sym_e_PLUSo_GT] = ACTIONS(2051), + [anon_sym_err_GT_GT] = ACTIONS(2057), + [anon_sym_out_GT_GT] = ACTIONS(2057), + [anon_sym_e_GT_GT] = ACTIONS(2057), + [anon_sym_o_GT_GT] = ACTIONS(2057), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2057), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2057), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2057), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2057), + [aux_sym_unquoted_token1] = ACTIONS(2051), [anon_sym_POUND] = ACTIONS(247), }, [1372] = { - [sym__val_range] = STATE(7957), - [sym__value] = STATE(5979), - [sym_val_nothing] = STATE(4339), - [sym_val_bool] = STATE(5838), - [sym_val_variable] = STATE(4339), - [sym_val_number] = STATE(4339), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(4400), - [sym_val_duration] = STATE(4339), - [sym_val_filesize] = STATE(4339), - [sym_val_binary] = STATE(4339), - [sym_val_string] = STATE(4339), - [sym__str_double_quotes] = STATE(3756), - [sym_val_interpolated] = STATE(4339), - [sym__inter_single_quotes] = STATE(4389), - [sym__inter_double_quotes] = STATE(4338), - [sym_val_list] = STATE(4339), - [sym_val_record] = STATE(4339), - [sym_val_table] = STATE(4339), - [sym_val_closure] = STATE(4339), - [sym_unquoted] = STATE(6128), - [sym__unquoted_anonymous_prefix] = STATE(8024), + [sym_cell_path] = STATE(1856), + [sym_path] = STATE(1599), [sym_comment] = STATE(1372), - [anon_sym_true] = ACTIONS(4559), - [anon_sym_false] = ACTIONS(4559), - [anon_sym_null] = ACTIONS(4561), - [aux_sym_cmd_identifier_token38] = ACTIONS(4563), - [aux_sym_cmd_identifier_token39] = ACTIONS(4563), - [aux_sym_cmd_identifier_token40] = ACTIONS(4563), - [anon_sym_LBRACK] = ACTIONS(3549), - [anon_sym_LPAREN] = ACTIONS(4565), - [anon_sym_DOLLAR] = ACTIONS(4567), - [aux_sym_ctrl_match_token1] = ACTIONS(3557), - [anon_sym_DOT_DOT] = ACTIONS(4569), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4571), - [anon_sym_DOT_DOT_LT] = ACTIONS(4571), - [aux_sym__val_number_decimal_token1] = ACTIONS(4573), - [aux_sym__val_number_decimal_token2] = ACTIONS(4575), - [aux_sym__val_number_decimal_token3] = ACTIONS(4577), - [aux_sym__val_number_decimal_token4] = ACTIONS(4579), - [aux_sym__val_number_token1] = ACTIONS(3573), - [aux_sym__val_number_token2] = ACTIONS(3573), - [aux_sym__val_number_token3] = ACTIONS(3573), - [anon_sym_0b] = ACTIONS(3575), - [anon_sym_0o] = ACTIONS(3577), - [anon_sym_0x] = ACTIONS(3577), - [sym_val_date] = ACTIONS(4581), - [anon_sym_DQUOTE] = ACTIONS(3581), - [sym__str_single_quotes] = ACTIONS(3583), - [sym__str_back_ticks] = ACTIONS(3583), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3585), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3587), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3589), + [aux_sym_cell_path_repeat1] = STATE(1437), + [ts_builtin_sym_end] = ACTIONS(1873), + [anon_sym_true] = ACTIONS(1873), + [anon_sym_false] = ACTIONS(1873), + [anon_sym_null] = ACTIONS(1873), + [aux_sym_cmd_identifier_token38] = ACTIONS(1873), + [aux_sym_cmd_identifier_token39] = ACTIONS(1873), + [aux_sym_cmd_identifier_token40] = ACTIONS(1873), + [sym__newline] = ACTIONS(1873), + [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym_PIPE] = ACTIONS(1873), + [anon_sym_err_GT_PIPE] = ACTIONS(1873), + [anon_sym_out_GT_PIPE] = ACTIONS(1873), + [anon_sym_e_GT_PIPE] = ACTIONS(1873), + [anon_sym_o_GT_PIPE] = ACTIONS(1873), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1873), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1873), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1873), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1873), + [anon_sym_LBRACK] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(1873), + [anon_sym_DOLLAR] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1871), + [aux_sym_ctrl_match_token1] = ACTIONS(1873), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_DOT] = ACTIONS(4674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1873), + [anon_sym_DOT_DOT_LT] = ACTIONS(1873), + [aux_sym__val_number_decimal_token1] = ACTIONS(1871), + [aux_sym__val_number_decimal_token2] = ACTIONS(1873), + [aux_sym__val_number_decimal_token3] = ACTIONS(1873), + [aux_sym__val_number_decimal_token4] = ACTIONS(1873), + [aux_sym__val_number_token1] = ACTIONS(1873), + [aux_sym__val_number_token2] = ACTIONS(1873), + [aux_sym__val_number_token3] = ACTIONS(1873), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0o] = ACTIONS(1871), + [anon_sym_0x] = ACTIONS(1871), + [sym_val_date] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(1873), + [sym__str_single_quotes] = ACTIONS(1873), + [sym__str_back_ticks] = ACTIONS(1873), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1873), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1873), + [anon_sym_err_GT] = ACTIONS(1871), + [anon_sym_out_GT] = ACTIONS(1871), + [anon_sym_e_GT] = ACTIONS(1871), + [anon_sym_o_GT] = ACTIONS(1871), + [anon_sym_err_PLUSout_GT] = ACTIONS(1871), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1871), + [anon_sym_o_PLUSe_GT] = ACTIONS(1871), + [anon_sym_e_PLUSo_GT] = ACTIONS(1871), + [anon_sym_err_GT_GT] = ACTIONS(1873), + [anon_sym_out_GT_GT] = ACTIONS(1873), + [anon_sym_e_GT_GT] = ACTIONS(1873), + [anon_sym_o_GT_GT] = ACTIONS(1873), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1873), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1873), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1873), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1873), + [aux_sym_unquoted_token1] = ACTIONS(1871), [anon_sym_POUND] = ACTIONS(247), }, [1373] = { - [sym__val_range] = STATE(7957), - [sym__value] = STATE(5974), - [sym_val_nothing] = STATE(4339), - [sym_val_bool] = STATE(5838), - [sym_val_variable] = STATE(4339), - [sym_val_number] = STATE(4339), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(4400), - [sym_val_duration] = STATE(4339), - [sym_val_filesize] = STATE(4339), - [sym_val_binary] = STATE(4339), - [sym_val_string] = STATE(4339), - [sym__str_double_quotes] = STATE(3756), - [sym_val_interpolated] = STATE(4339), - [sym__inter_single_quotes] = STATE(4389), - [sym__inter_double_quotes] = STATE(4338), - [sym_val_list] = STATE(4339), - [sym_val_record] = STATE(4339), - [sym_val_table] = STATE(4339), - [sym_val_closure] = STATE(4339), - [sym_unquoted] = STATE(5995), - [sym__unquoted_anonymous_prefix] = STATE(8024), + [sym_path] = STATE(1532), [sym_comment] = STATE(1373), - [anon_sym_true] = ACTIONS(4559), - [anon_sym_false] = ACTIONS(4559), - [anon_sym_null] = ACTIONS(4561), - [aux_sym_cmd_identifier_token38] = ACTIONS(4563), - [aux_sym_cmd_identifier_token39] = ACTIONS(4563), - [aux_sym_cmd_identifier_token40] = ACTIONS(4563), - [anon_sym_LBRACK] = ACTIONS(3549), - [anon_sym_LPAREN] = ACTIONS(4565), - [anon_sym_DOLLAR] = ACTIONS(4567), - [aux_sym_ctrl_match_token1] = ACTIONS(3557), - [anon_sym_DOT_DOT] = ACTIONS(4569), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4571), - [anon_sym_DOT_DOT_LT] = ACTIONS(4571), - [aux_sym__val_number_decimal_token1] = ACTIONS(4573), - [aux_sym__val_number_decimal_token2] = ACTIONS(4575), - [aux_sym__val_number_decimal_token3] = ACTIONS(4577), - [aux_sym__val_number_decimal_token4] = ACTIONS(4579), - [aux_sym__val_number_token1] = ACTIONS(3573), - [aux_sym__val_number_token2] = ACTIONS(3573), - [aux_sym__val_number_token3] = ACTIONS(3573), - [anon_sym_0b] = ACTIONS(3575), - [anon_sym_0o] = ACTIONS(3577), - [anon_sym_0x] = ACTIONS(3577), - [sym_val_date] = ACTIONS(4581), - [anon_sym_DQUOTE] = ACTIONS(3581), - [sym__str_single_quotes] = ACTIONS(3583), - [sym__str_back_ticks] = ACTIONS(3583), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3585), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3587), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3589), + [aux_sym_cell_path_repeat1] = STATE(1373), + [anon_sym_true] = ACTIONS(1023), + [anon_sym_false] = ACTIONS(1023), + [anon_sym_null] = ACTIONS(1023), + [aux_sym_cmd_identifier_token38] = ACTIONS(1023), + [aux_sym_cmd_identifier_token39] = ACTIONS(1023), + [aux_sym_cmd_identifier_token40] = ACTIONS(1023), + [sym__newline] = ACTIONS(1023), + [anon_sym_SEMI] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(1023), + [anon_sym_err_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_GT_PIPE] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1023), + [anon_sym_RPAREN] = ACTIONS(1023), + [anon_sym_DOLLAR] = ACTIONS(1021), + [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_DASH] = ACTIONS(1021), + [aux_sym_ctrl_match_token1] = ACTIONS(1023), + [anon_sym_RBRACE] = ACTIONS(1023), + [anon_sym_DOT_DOT] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(4730), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1023), + [anon_sym_DOT_DOT_LT] = ACTIONS(1023), + [aux_sym__val_number_decimal_token1] = ACTIONS(1021), + [aux_sym__val_number_decimal_token2] = ACTIONS(1023), + [aux_sym__val_number_decimal_token3] = ACTIONS(1023), + [aux_sym__val_number_decimal_token4] = ACTIONS(1023), + [aux_sym__val_number_token1] = ACTIONS(1023), + [aux_sym__val_number_token2] = ACTIONS(1023), + [aux_sym__val_number_token3] = ACTIONS(1023), + [anon_sym_0b] = ACTIONS(1021), + [anon_sym_0o] = ACTIONS(1021), + [anon_sym_0x] = ACTIONS(1021), + [sym_val_date] = ACTIONS(1023), + [anon_sym_DQUOTE] = ACTIONS(1023), + [sym__str_single_quotes] = ACTIONS(1023), + [sym__str_back_ticks] = ACTIONS(1023), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1023), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1023), + [anon_sym_err_GT] = ACTIONS(1021), + [anon_sym_out_GT] = ACTIONS(1021), + [anon_sym_e_GT] = ACTIONS(1021), + [anon_sym_o_GT] = ACTIONS(1021), + [anon_sym_err_PLUSout_GT] = ACTIONS(1021), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), + [anon_sym_o_PLUSe_GT] = ACTIONS(1021), + [anon_sym_e_PLUSo_GT] = ACTIONS(1021), + [anon_sym_err_GT_GT] = ACTIONS(1023), + [anon_sym_out_GT_GT] = ACTIONS(1023), + [anon_sym_e_GT_GT] = ACTIONS(1023), + [anon_sym_o_GT_GT] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), + [aux_sym_unquoted_token1] = ACTIONS(1021), [anon_sym_POUND] = ACTIONS(247), }, [1374] = { - [sym__val_range] = STATE(7776), - [sym__value] = STATE(5794), - [sym_val_nothing] = STATE(4250), - [sym_val_bool] = STATE(5790), - [sym_val_variable] = STATE(4250), - [sym_val_number] = STATE(4250), - [sym__val_number_decimal] = STATE(5173), - [sym__val_number] = STATE(3713), - [sym_val_duration] = STATE(4250), - [sym_val_filesize] = STATE(4250), - [sym_val_binary] = STATE(4250), - [sym_val_string] = STATE(4250), - [sym__str_double_quotes] = STATE(2802), - [sym_val_interpolated] = STATE(4250), - [sym__inter_single_quotes] = STATE(4209), - [sym__inter_double_quotes] = STATE(4211), - [sym_val_list] = STATE(4250), - [sym_val_record] = STATE(4250), - [sym_val_table] = STATE(4250), - [sym_val_closure] = STATE(4250), - [sym_unquoted] = STATE(5795), - [sym__unquoted_anonymous_prefix] = STATE(7986), + [sym_path] = STATE(1532), [sym_comment] = STATE(1374), - [anon_sym_true] = ACTIONS(4583), - [anon_sym_false] = ACTIONS(4583), - [anon_sym_null] = ACTIONS(4585), - [aux_sym_cmd_identifier_token38] = ACTIONS(4587), - [aux_sym_cmd_identifier_token39] = ACTIONS(4587), - [aux_sym_cmd_identifier_token40] = ACTIONS(4587), - [anon_sym_LBRACK] = ACTIONS(3495), - [anon_sym_LPAREN] = ACTIONS(4337), - [anon_sym_DOLLAR] = ACTIONS(4228), - [aux_sym_ctrl_match_token1] = ACTIONS(3503), - [anon_sym_DOT_DOT] = ACTIONS(4339), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4341), - [anon_sym_DOT_DOT_LT] = ACTIONS(4341), - [aux_sym__val_number_decimal_token1] = ACTIONS(4589), - [aux_sym__val_number_decimal_token2] = ACTIONS(4591), - [aux_sym__val_number_decimal_token3] = ACTIONS(4593), - [aux_sym__val_number_decimal_token4] = ACTIONS(4595), - [aux_sym__val_number_token1] = ACTIONS(3519), - [aux_sym__val_number_token2] = ACTIONS(3519), - [aux_sym__val_number_token3] = ACTIONS(3519), - [anon_sym_0b] = ACTIONS(3521), - [anon_sym_0o] = ACTIONS(3523), - [anon_sym_0x] = ACTIONS(3523), - [sym_val_date] = ACTIONS(4597), - [anon_sym_DQUOTE] = ACTIONS(3527), - [sym__str_single_quotes] = ACTIONS(3529), - [sym__str_back_ticks] = ACTIONS(3529), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3531), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3535), + [aux_sym_cell_path_repeat1] = STATE(1373), + [anon_sym_true] = ACTIONS(1019), + [anon_sym_false] = ACTIONS(1019), + [anon_sym_null] = ACTIONS(1019), + [aux_sym_cmd_identifier_token38] = ACTIONS(1019), + [aux_sym_cmd_identifier_token39] = ACTIONS(1019), + [aux_sym_cmd_identifier_token40] = ACTIONS(1019), + [sym__newline] = ACTIONS(1019), + [anon_sym_SEMI] = ACTIONS(1019), + [anon_sym_PIPE] = ACTIONS(1019), + [anon_sym_err_GT_PIPE] = ACTIONS(1019), + [anon_sym_out_GT_PIPE] = ACTIONS(1019), + [anon_sym_e_GT_PIPE] = ACTIONS(1019), + [anon_sym_o_GT_PIPE] = ACTIONS(1019), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1019), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1019), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1019), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1019), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_LPAREN] = ACTIONS(1019), + [anon_sym_RPAREN] = ACTIONS(1019), + [anon_sym_DOLLAR] = ACTIONS(1017), + [anon_sym_DASH_DASH] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1017), + [aux_sym_ctrl_match_token1] = ACTIONS(1019), + [anon_sym_RBRACE] = ACTIONS(1019), + [anon_sym_DOT_DOT] = ACTIONS(1017), + [anon_sym_DOT] = ACTIONS(4598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1019), + [anon_sym_DOT_DOT_LT] = ACTIONS(1019), + [aux_sym__val_number_decimal_token1] = ACTIONS(1017), + [aux_sym__val_number_decimal_token2] = ACTIONS(1019), + [aux_sym__val_number_decimal_token3] = ACTIONS(1019), + [aux_sym__val_number_decimal_token4] = ACTIONS(1019), + [aux_sym__val_number_token1] = ACTIONS(1019), + [aux_sym__val_number_token2] = ACTIONS(1019), + [aux_sym__val_number_token3] = ACTIONS(1019), + [anon_sym_0b] = ACTIONS(1017), + [anon_sym_0o] = ACTIONS(1017), + [anon_sym_0x] = ACTIONS(1017), + [sym_val_date] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1019), + [sym__str_single_quotes] = ACTIONS(1019), + [sym__str_back_ticks] = ACTIONS(1019), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1019), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1019), + [anon_sym_err_GT] = ACTIONS(1017), + [anon_sym_out_GT] = ACTIONS(1017), + [anon_sym_e_GT] = ACTIONS(1017), + [anon_sym_o_GT] = ACTIONS(1017), + [anon_sym_err_PLUSout_GT] = ACTIONS(1017), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1017), + [anon_sym_o_PLUSe_GT] = ACTIONS(1017), + [anon_sym_e_PLUSo_GT] = ACTIONS(1017), + [anon_sym_err_GT_GT] = ACTIONS(1019), + [anon_sym_out_GT_GT] = ACTIONS(1019), + [anon_sym_e_GT_GT] = ACTIONS(1019), + [anon_sym_o_GT_GT] = ACTIONS(1019), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1019), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1019), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1019), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1019), + [aux_sym_unquoted_token1] = ACTIONS(1017), [anon_sym_POUND] = ACTIONS(247), }, [1375] = { - [sym__val_range] = STATE(7957), - [sym__value] = STATE(6039), - [sym_val_nothing] = STATE(4339), - [sym_val_bool] = STATE(5838), - [sym_val_variable] = STATE(4339), - [sym_val_number] = STATE(4339), - [sym__val_number_decimal] = STATE(5380), - [sym__val_number] = STATE(4400), - [sym_val_duration] = STATE(4339), - [sym_val_filesize] = STATE(4339), - [sym_val_binary] = STATE(4339), - [sym_val_string] = STATE(4339), - [sym__str_double_quotes] = STATE(3756), - [sym_val_interpolated] = STATE(4339), - [sym__inter_single_quotes] = STATE(4389), - [sym__inter_double_quotes] = STATE(4338), - [sym_val_list] = STATE(4339), - [sym_val_record] = STATE(4339), - [sym_val_table] = STATE(4339), - [sym_val_closure] = STATE(4339), - [sym_unquoted] = STATE(6044), - [sym__unquoted_anonymous_prefix] = STATE(8024), [sym_comment] = STATE(1375), - [anon_sym_true] = ACTIONS(4559), - [anon_sym_false] = ACTIONS(4559), - [anon_sym_null] = ACTIONS(4561), - [aux_sym_cmd_identifier_token38] = ACTIONS(4563), - [aux_sym_cmd_identifier_token39] = ACTIONS(4563), - [aux_sym_cmd_identifier_token40] = ACTIONS(4563), - [anon_sym_LBRACK] = ACTIONS(3549), - [anon_sym_LPAREN] = ACTIONS(4565), - [anon_sym_DOLLAR] = ACTIONS(4567), - [aux_sym_ctrl_match_token1] = ACTIONS(3557), - [anon_sym_DOT_DOT] = ACTIONS(4569), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4571), - [anon_sym_DOT_DOT_LT] = ACTIONS(4571), - [aux_sym__val_number_decimal_token1] = ACTIONS(4573), - [aux_sym__val_number_decimal_token2] = ACTIONS(4575), - [aux_sym__val_number_decimal_token3] = ACTIONS(4577), - [aux_sym__val_number_decimal_token4] = ACTIONS(4579), - [aux_sym__val_number_token1] = ACTIONS(3573), - [aux_sym__val_number_token2] = ACTIONS(3573), - [aux_sym__val_number_token3] = ACTIONS(3573), - [anon_sym_0b] = ACTIONS(3575), - [anon_sym_0o] = ACTIONS(3577), - [anon_sym_0x] = ACTIONS(3577), - [sym_val_date] = ACTIONS(4581), - [anon_sym_DQUOTE] = ACTIONS(3581), - [sym__str_single_quotes] = ACTIONS(3583), - [sym__str_back_ticks] = ACTIONS(3583), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3585), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3587), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3589), + [anon_sym_true] = ACTIONS(1066), + [anon_sym_false] = ACTIONS(1066), + [anon_sym_null] = ACTIONS(1066), + [aux_sym_cmd_identifier_token38] = ACTIONS(1066), + [aux_sym_cmd_identifier_token39] = ACTIONS(1066), + [aux_sym_cmd_identifier_token40] = ACTIONS(1066), + [sym__newline] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1066), + [anon_sym_err_GT_PIPE] = ACTIONS(1066), + [anon_sym_out_GT_PIPE] = ACTIONS(1066), + [anon_sym_e_GT_PIPE] = ACTIONS(1066), + [anon_sym_o_GT_PIPE] = ACTIONS(1066), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1066), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1066), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1066), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1066), + [anon_sym_LBRACK] = ACTIONS(1066), + [anon_sym_LPAREN] = ACTIONS(1066), + [anon_sym_RPAREN] = ACTIONS(1066), + [anon_sym_DOLLAR] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1064), + [aux_sym_ctrl_match_token1] = ACTIONS(1066), + [anon_sym_RBRACE] = ACTIONS(1066), + [anon_sym_DOT_DOT] = ACTIONS(1064), + [anon_sym_DOT_DOT2] = ACTIONS(1064), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1064), + [anon_sym_DOT_DOT_LT] = ACTIONS(1064), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1066), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1066), + [aux_sym__val_number_decimal_token1] = ACTIONS(1064), + [aux_sym__val_number_decimal_token2] = ACTIONS(1066), + [aux_sym__val_number_decimal_token3] = ACTIONS(1066), + [aux_sym__val_number_decimal_token4] = ACTIONS(1066), + [aux_sym__val_number_token1] = ACTIONS(1066), + [aux_sym__val_number_token2] = ACTIONS(1066), + [aux_sym__val_number_token3] = ACTIONS(1066), + [anon_sym_0b] = ACTIONS(1064), + [anon_sym_0o] = ACTIONS(1064), + [anon_sym_0x] = ACTIONS(1064), + [sym_val_date] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [sym__str_single_quotes] = ACTIONS(1066), + [sym__str_back_ticks] = ACTIONS(1066), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1066), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1066), + [anon_sym_err_GT] = ACTIONS(1064), + [anon_sym_out_GT] = ACTIONS(1064), + [anon_sym_e_GT] = ACTIONS(1064), + [anon_sym_o_GT] = ACTIONS(1064), + [anon_sym_err_PLUSout_GT] = ACTIONS(1064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1064), + [anon_sym_o_PLUSe_GT] = ACTIONS(1064), + [anon_sym_e_PLUSo_GT] = ACTIONS(1064), + [anon_sym_err_GT_GT] = ACTIONS(1066), + [anon_sym_out_GT_GT] = ACTIONS(1066), + [anon_sym_e_GT_GT] = ACTIONS(1066), + [anon_sym_o_GT_GT] = ACTIONS(1066), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1066), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1066), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1066), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1066), + [aux_sym_unquoted_token1] = ACTIONS(1064), [anon_sym_POUND] = ACTIONS(247), }, [1376] = { - [sym__val_range] = STATE(7776), - [sym__value] = STATE(5821), - [sym_val_nothing] = STATE(4250), - [sym_val_bool] = STATE(5790), - [sym_val_variable] = STATE(4250), - [sym_val_number] = STATE(4250), - [sym__val_number_decimal] = STATE(5173), - [sym__val_number] = STATE(3713), - [sym_val_duration] = STATE(4250), - [sym_val_filesize] = STATE(4250), - [sym_val_binary] = STATE(4250), - [sym_val_string] = STATE(4250), - [sym__str_double_quotes] = STATE(2802), - [sym_val_interpolated] = STATE(4250), - [sym__inter_single_quotes] = STATE(4209), - [sym__inter_double_quotes] = STATE(4211), - [sym_val_list] = STATE(4250), - [sym_val_record] = STATE(4250), - [sym_val_table] = STATE(4250), - [sym_val_closure] = STATE(4250), - [sym_unquoted] = STATE(5822), - [sym__unquoted_anonymous_prefix] = STATE(7986), + [sym_cell_path] = STATE(1863), + [sym_path] = STATE(1599), [sym_comment] = STATE(1376), - [anon_sym_true] = ACTIONS(4583), - [anon_sym_false] = ACTIONS(4583), - [anon_sym_null] = ACTIONS(4585), - [aux_sym_cmd_identifier_token38] = ACTIONS(4587), - [aux_sym_cmd_identifier_token39] = ACTIONS(4587), - [aux_sym_cmd_identifier_token40] = ACTIONS(4587), - [anon_sym_LBRACK] = ACTIONS(3495), - [anon_sym_LPAREN] = ACTIONS(4337), - [anon_sym_DOLLAR] = ACTIONS(4228), - [aux_sym_ctrl_match_token1] = ACTIONS(3503), - [anon_sym_DOT_DOT] = ACTIONS(4339), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4341), - [anon_sym_DOT_DOT_LT] = ACTIONS(4341), - [aux_sym__val_number_decimal_token1] = ACTIONS(4589), - [aux_sym__val_number_decimal_token2] = ACTIONS(4591), - [aux_sym__val_number_decimal_token3] = ACTIONS(4593), - [aux_sym__val_number_decimal_token4] = ACTIONS(4595), - [aux_sym__val_number_token1] = ACTIONS(3519), - [aux_sym__val_number_token2] = ACTIONS(3519), - [aux_sym__val_number_token3] = ACTIONS(3519), - [anon_sym_0b] = ACTIONS(3521), - [anon_sym_0o] = ACTIONS(3523), - [anon_sym_0x] = ACTIONS(3523), - [sym_val_date] = ACTIONS(4597), - [anon_sym_DQUOTE] = ACTIONS(3527), - [sym__str_single_quotes] = ACTIONS(3529), - [sym__str_back_ticks] = ACTIONS(3529), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3531), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3535), + [aux_sym_cell_path_repeat1] = STATE(1437), + [ts_builtin_sym_end] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(1951), + [anon_sym_false] = ACTIONS(1951), + [anon_sym_null] = ACTIONS(1951), + [aux_sym_cmd_identifier_token38] = ACTIONS(1951), + [aux_sym_cmd_identifier_token39] = ACTIONS(1951), + [aux_sym_cmd_identifier_token40] = ACTIONS(1951), + [sym__newline] = ACTIONS(1951), + [anon_sym_SEMI] = ACTIONS(1951), + [anon_sym_PIPE] = ACTIONS(1951), + [anon_sym_err_GT_PIPE] = ACTIONS(1951), + [anon_sym_out_GT_PIPE] = ACTIONS(1951), + [anon_sym_e_GT_PIPE] = ACTIONS(1951), + [anon_sym_o_GT_PIPE] = ACTIONS(1951), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1951), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1951), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1951), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1951), + [anon_sym_LBRACK] = ACTIONS(1951), + [anon_sym_LPAREN] = ACTIONS(1951), + [anon_sym_DOLLAR] = ACTIONS(1949), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_DASH] = ACTIONS(1949), + [aux_sym_ctrl_match_token1] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1949), + [anon_sym_DOT] = ACTIONS(4674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1951), + [anon_sym_DOT_DOT_LT] = ACTIONS(1951), + [aux_sym__val_number_decimal_token1] = ACTIONS(1949), + [aux_sym__val_number_decimal_token2] = ACTIONS(1951), + [aux_sym__val_number_decimal_token3] = ACTIONS(1951), + [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [aux_sym__val_number_token1] = ACTIONS(1951), + [aux_sym__val_number_token2] = ACTIONS(1951), + [aux_sym__val_number_token3] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1949), + [anon_sym_0x] = ACTIONS(1949), + [sym_val_date] = ACTIONS(1951), + [anon_sym_DQUOTE] = ACTIONS(1951), + [sym__str_single_quotes] = ACTIONS(1951), + [sym__str_back_ticks] = ACTIONS(1951), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1951), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1951), + [anon_sym_err_GT] = ACTIONS(1949), + [anon_sym_out_GT] = ACTIONS(1949), + [anon_sym_e_GT] = ACTIONS(1949), + [anon_sym_o_GT] = ACTIONS(1949), + [anon_sym_err_PLUSout_GT] = ACTIONS(1949), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1949), + [anon_sym_o_PLUSe_GT] = ACTIONS(1949), + [anon_sym_e_PLUSo_GT] = ACTIONS(1949), + [anon_sym_err_GT_GT] = ACTIONS(1951), + [anon_sym_out_GT_GT] = ACTIONS(1951), + [anon_sym_e_GT_GT] = ACTIONS(1951), + [anon_sym_o_GT_GT] = ACTIONS(1951), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1951), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1951), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1951), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1951), + [aux_sym_unquoted_token1] = ACTIONS(1949), [anon_sym_POUND] = ACTIONS(247), }, [1377] = { - [sym__val_range] = STATE(7776), - [sym__value] = STATE(5708), - [sym_val_nothing] = STATE(4250), - [sym_val_bool] = STATE(5790), - [sym_val_variable] = STATE(4250), - [sym_val_number] = STATE(4250), - [sym__val_number_decimal] = STATE(5173), - [sym__val_number] = STATE(3713), - [sym_val_duration] = STATE(4250), - [sym_val_filesize] = STATE(4250), - [sym_val_binary] = STATE(4250), - [sym_val_string] = STATE(4250), - [sym__str_double_quotes] = STATE(2802), - [sym_val_interpolated] = STATE(4250), - [sym__inter_single_quotes] = STATE(4209), - [sym__inter_double_quotes] = STATE(4211), - [sym_val_list] = STATE(4250), - [sym_val_record] = STATE(4250), - [sym_val_table] = STATE(4250), - [sym_val_closure] = STATE(4250), - [sym_unquoted] = STATE(5713), - [sym__unquoted_anonymous_prefix] = STATE(7986), [sym_comment] = STATE(1377), - [anon_sym_true] = ACTIONS(4583), - [anon_sym_false] = ACTIONS(4583), - [anon_sym_null] = ACTIONS(4585), - [aux_sym_cmd_identifier_token38] = ACTIONS(4587), - [aux_sym_cmd_identifier_token39] = ACTIONS(4587), - [aux_sym_cmd_identifier_token40] = ACTIONS(4587), - [anon_sym_LBRACK] = ACTIONS(3495), - [anon_sym_LPAREN] = ACTIONS(4337), - [anon_sym_DOLLAR] = ACTIONS(4228), - [aux_sym_ctrl_match_token1] = ACTIONS(3503), - [anon_sym_DOT_DOT] = ACTIONS(4339), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4341), - [anon_sym_DOT_DOT_LT] = ACTIONS(4341), - [aux_sym__val_number_decimal_token1] = ACTIONS(4589), - [aux_sym__val_number_decimal_token2] = ACTIONS(4591), - [aux_sym__val_number_decimal_token3] = ACTIONS(4593), - [aux_sym__val_number_decimal_token4] = ACTIONS(4595), - [aux_sym__val_number_token1] = ACTIONS(3519), - [aux_sym__val_number_token2] = ACTIONS(3519), - [aux_sym__val_number_token3] = ACTIONS(3519), - [anon_sym_0b] = ACTIONS(3521), - [anon_sym_0o] = ACTIONS(3523), - [anon_sym_0x] = ACTIONS(3523), - [sym_val_date] = ACTIONS(4597), - [anon_sym_DQUOTE] = ACTIONS(3527), - [sym__str_single_quotes] = ACTIONS(3529), - [sym__str_back_ticks] = ACTIONS(3529), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3531), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3535), + [sym__newline] = ACTIONS(1565), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_err_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_GT_PIPE] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), + [anon_sym_RPAREN] = ACTIONS(1567), + [anon_sym_LPAREN2] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1567), + [anon_sym_DOT_DOT2] = ACTIONS(1565), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), + [aux_sym__immediate_decimal_token2] = ACTIONS(4733), + [sym_filesize_unit] = ACTIONS(1567), + [sym_duration_unit] = ACTIONS(1567), + [anon_sym_err_GT] = ACTIONS(1565), + [anon_sym_out_GT] = ACTIONS(1565), + [anon_sym_e_GT] = ACTIONS(1565), + [anon_sym_o_GT] = ACTIONS(1565), + [anon_sym_err_PLUSout_GT] = ACTIONS(1565), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), + [anon_sym_o_PLUSe_GT] = ACTIONS(1565), + [anon_sym_e_PLUSo_GT] = ACTIONS(1565), + [anon_sym_err_GT_GT] = ACTIONS(1567), + [anon_sym_out_GT_GT] = ACTIONS(1567), + [anon_sym_e_GT_GT] = ACTIONS(1567), + [anon_sym_o_GT_GT] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), + [aux_sym_unquoted_token2] = ACTIONS(1565), [anon_sym_POUND] = ACTIONS(247), }, [1378] = { - [sym__val_range] = STATE(7776), - [sym__value] = STATE(5770), - [sym_val_nothing] = STATE(4250), - [sym_val_bool] = STATE(5790), - [sym_val_variable] = STATE(4250), - [sym_val_number] = STATE(4250), - [sym__val_number_decimal] = STATE(5173), - [sym__val_number] = STATE(3713), - [sym_val_duration] = STATE(4250), - [sym_val_filesize] = STATE(4250), - [sym_val_binary] = STATE(4250), - [sym_val_string] = STATE(4250), - [sym__str_double_quotes] = STATE(2802), - [sym_val_interpolated] = STATE(4250), - [sym__inter_single_quotes] = STATE(4209), - [sym__inter_double_quotes] = STATE(4211), - [sym_val_list] = STATE(4250), - [sym_val_record] = STATE(4250), - [sym_val_table] = STATE(4250), - [sym_val_closure] = STATE(4250), - [sym_unquoted] = STATE(5772), - [sym__unquoted_anonymous_prefix] = STATE(7986), [sym_comment] = STATE(1378), - [anon_sym_true] = ACTIONS(4583), - [anon_sym_false] = ACTIONS(4583), - [anon_sym_null] = ACTIONS(4585), - [aux_sym_cmd_identifier_token38] = ACTIONS(4587), - [aux_sym_cmd_identifier_token39] = ACTIONS(4587), - [aux_sym_cmd_identifier_token40] = ACTIONS(4587), - [anon_sym_LBRACK] = ACTIONS(3495), - [anon_sym_LPAREN] = ACTIONS(4337), - [anon_sym_DOLLAR] = ACTIONS(4228), - [aux_sym_ctrl_match_token1] = ACTIONS(3503), - [anon_sym_DOT_DOT] = ACTIONS(4339), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4341), - [anon_sym_DOT_DOT_LT] = ACTIONS(4341), - [aux_sym__val_number_decimal_token1] = ACTIONS(4589), - [aux_sym__val_number_decimal_token2] = ACTIONS(4591), - [aux_sym__val_number_decimal_token3] = ACTIONS(4593), - [aux_sym__val_number_decimal_token4] = ACTIONS(4595), - [aux_sym__val_number_token1] = ACTIONS(3519), - [aux_sym__val_number_token2] = ACTIONS(3519), - [aux_sym__val_number_token3] = ACTIONS(3519), - [anon_sym_0b] = ACTIONS(3521), - [anon_sym_0o] = ACTIONS(3523), - [anon_sym_0x] = ACTIONS(3523), - [sym_val_date] = ACTIONS(4597), - [anon_sym_DQUOTE] = ACTIONS(3527), - [sym__str_single_quotes] = ACTIONS(3529), - [sym__str_back_ticks] = ACTIONS(3529), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3531), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3533), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3535), + [sym__newline] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(1641), + [anon_sym_PIPE] = ACTIONS(1641), + [anon_sym_err_GT_PIPE] = ACTIONS(1641), + [anon_sym_out_GT_PIPE] = ACTIONS(1641), + [anon_sym_e_GT_PIPE] = ACTIONS(1641), + [anon_sym_o_GT_PIPE] = ACTIONS(1641), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), + [anon_sym_RPAREN] = ACTIONS(1641), + [anon_sym_RBRACE] = ACTIONS(1641), + [anon_sym_LPAREN2] = ACTIONS(1641), + [aux_sym_expr_binary_token1] = ACTIONS(1641), + [aux_sym_expr_binary_token2] = ACTIONS(1641), + [aux_sym_expr_binary_token3] = ACTIONS(1641), + [aux_sym_expr_binary_token4] = ACTIONS(1641), + [aux_sym_expr_binary_token5] = ACTIONS(1641), + [aux_sym_expr_binary_token6] = ACTIONS(1641), + [aux_sym_expr_binary_token7] = ACTIONS(1641), + [aux_sym_expr_binary_token8] = ACTIONS(1641), + [aux_sym_expr_binary_token9] = ACTIONS(1641), + [aux_sym_expr_binary_token10] = ACTIONS(1641), + [aux_sym_expr_binary_token11] = ACTIONS(1641), + [aux_sym_expr_binary_token12] = ACTIONS(1641), + [aux_sym_expr_binary_token13] = ACTIONS(1641), + [aux_sym_expr_binary_token14] = ACTIONS(1641), + [aux_sym_expr_binary_token15] = ACTIONS(1641), + [aux_sym_expr_binary_token16] = ACTIONS(1641), + [aux_sym_expr_binary_token17] = ACTIONS(1641), + [aux_sym_expr_binary_token18] = ACTIONS(1641), + [aux_sym_expr_binary_token19] = ACTIONS(1641), + [aux_sym_expr_binary_token20] = ACTIONS(1641), + [aux_sym_expr_binary_token21] = ACTIONS(1641), + [aux_sym_expr_binary_token22] = ACTIONS(1641), + [aux_sym_expr_binary_token23] = ACTIONS(1641), + [aux_sym_expr_binary_token24] = ACTIONS(1641), + [aux_sym_expr_binary_token25] = ACTIONS(1641), + [aux_sym_expr_binary_token26] = ACTIONS(1641), + [aux_sym_expr_binary_token27] = ACTIONS(1641), + [aux_sym_expr_binary_token28] = ACTIONS(1641), + [anon_sym_DOT_DOT2] = ACTIONS(1639), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), + [sym_filesize_unit] = ACTIONS(1641), + [sym_duration_unit] = ACTIONS(1641), + [anon_sym_err_GT] = ACTIONS(1639), + [anon_sym_out_GT] = ACTIONS(1639), + [anon_sym_e_GT] = ACTIONS(1639), + [anon_sym_o_GT] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT] = ACTIONS(1639), + [anon_sym_err_GT_GT] = ACTIONS(1641), + [anon_sym_out_GT_GT] = ACTIONS(1641), + [anon_sym_e_GT_GT] = ACTIONS(1641), + [anon_sym_o_GT_GT] = ACTIONS(1641), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), + [aux_sym_unquoted_token2] = ACTIONS(1639), [anon_sym_POUND] = ACTIONS(247), }, [1379] = { [sym_comment] = STATE(1379), - [ts_builtin_sym_end] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [anon_sym_null] = ACTIONS(1483), - [aux_sym_cmd_identifier_token38] = ACTIONS(1483), - [aux_sym_cmd_identifier_token39] = ACTIONS(1483), - [aux_sym_cmd_identifier_token40] = ACTIONS(1483), - [sym__newline] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_err_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_GT_PIPE] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_DOLLAR] = ACTIONS(1481), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1481), - [aux_sym_ctrl_match_token1] = ACTIONS(1483), - [anon_sym_DOT_DOT] = ACTIONS(1481), - [anon_sym_DOT_DOT2] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), - [anon_sym_DOT_DOT_LT] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), - [aux_sym__immediate_decimal_token1] = ACTIONS(4599), - [aux_sym__immediate_decimal_token2] = ACTIONS(4601), - [aux_sym__val_number_decimal_token1] = ACTIONS(1481), - [aux_sym__val_number_decimal_token2] = ACTIONS(1483), - [aux_sym__val_number_decimal_token3] = ACTIONS(1483), - [aux_sym__val_number_decimal_token4] = ACTIONS(1483), - [aux_sym__val_number_token1] = ACTIONS(1483), - [aux_sym__val_number_token2] = ACTIONS(1483), - [aux_sym__val_number_token3] = ACTIONS(1483), - [anon_sym_0b] = ACTIONS(1481), - [sym_filesize_unit] = ACTIONS(1483), - [sym_duration_unit] = ACTIONS(1483), - [anon_sym_0o] = ACTIONS(1481), - [anon_sym_0x] = ACTIONS(1481), - [sym_val_date] = ACTIONS(1483), - [anon_sym_DQUOTE] = ACTIONS(1483), - [sym__str_single_quotes] = ACTIONS(1483), - [sym__str_back_ticks] = ACTIONS(1483), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1483), - [anon_sym_err_GT] = ACTIONS(1481), - [anon_sym_out_GT] = ACTIONS(1481), - [anon_sym_e_GT] = ACTIONS(1481), - [anon_sym_o_GT] = ACTIONS(1481), - [anon_sym_err_PLUSout_GT] = ACTIONS(1481), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), - [anon_sym_o_PLUSe_GT] = ACTIONS(1481), - [anon_sym_e_PLUSo_GT] = ACTIONS(1481), - [anon_sym_err_GT_GT] = ACTIONS(1483), - [anon_sym_out_GT_GT] = ACTIONS(1483), - [anon_sym_e_GT_GT] = ACTIONS(1483), - [anon_sym_o_GT_GT] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), - [aux_sym_unquoted_token1] = ACTIONS(1481), - [aux_sym_unquoted_token2] = ACTIONS(1481), + [anon_sym_true] = ACTIONS(4735), + [anon_sym_false] = ACTIONS(4735), + [anon_sym_null] = ACTIONS(4735), + [aux_sym_cmd_identifier_token38] = ACTIONS(4735), + [aux_sym_cmd_identifier_token39] = ACTIONS(4737), + [aux_sym_cmd_identifier_token40] = ACTIONS(4735), + [sym_long_flag_identifier] = ACTIONS(4739), + [sym__newline] = ACTIONS(4737), + [anon_sym_SEMI] = ACTIONS(4737), + [anon_sym_PIPE] = ACTIONS(4737), + [anon_sym_err_GT_PIPE] = ACTIONS(4737), + [anon_sym_out_GT_PIPE] = ACTIONS(4737), + [anon_sym_e_GT_PIPE] = ACTIONS(4737), + [anon_sym_o_GT_PIPE] = ACTIONS(4737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4737), + [anon_sym_LBRACK] = ACTIONS(4737), + [anon_sym_LPAREN] = ACTIONS(4737), + [anon_sym_RPAREN] = ACTIONS(4737), + [anon_sym_DOLLAR] = ACTIONS(4735), + [anon_sym_DASH_DASH] = ACTIONS(4737), + [anon_sym_DASH] = ACTIONS(4735), + [aux_sym_ctrl_match_token1] = ACTIONS(4737), + [anon_sym_RBRACE] = ACTIONS(4737), + [anon_sym_DOT_DOT] = ACTIONS(4735), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4737), + [anon_sym_DOT_DOT_LT] = ACTIONS(4737), + [aux_sym__val_number_decimal_token1] = ACTIONS(4735), + [aux_sym__val_number_decimal_token2] = ACTIONS(4737), + [aux_sym__val_number_decimal_token3] = ACTIONS(4737), + [aux_sym__val_number_decimal_token4] = ACTIONS(4737), + [aux_sym__val_number_token1] = ACTIONS(4735), + [aux_sym__val_number_token2] = ACTIONS(4735), + [aux_sym__val_number_token3] = ACTIONS(4735), + [anon_sym_0b] = ACTIONS(4735), + [anon_sym_0o] = ACTIONS(4735), + [anon_sym_0x] = ACTIONS(4735), + [sym_val_date] = ACTIONS(4735), + [anon_sym_DQUOTE] = ACTIONS(4737), + [sym__str_single_quotes] = ACTIONS(4737), + [sym__str_back_ticks] = ACTIONS(4737), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4737), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4737), + [anon_sym_err_GT] = ACTIONS(4735), + [anon_sym_out_GT] = ACTIONS(4735), + [anon_sym_e_GT] = ACTIONS(4735), + [anon_sym_o_GT] = ACTIONS(4735), + [anon_sym_err_PLUSout_GT] = ACTIONS(4735), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4735), + [anon_sym_o_PLUSe_GT] = ACTIONS(4735), + [anon_sym_e_PLUSo_GT] = ACTIONS(4735), + [anon_sym_err_GT_GT] = ACTIONS(4737), + [anon_sym_out_GT_GT] = ACTIONS(4737), + [anon_sym_e_GT_GT] = ACTIONS(4737), + [anon_sym_o_GT_GT] = ACTIONS(4737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4737), + [anon_sym_EQ2] = ACTIONS(4741), + [aux_sym_unquoted_token1] = ACTIONS(4735), [anon_sym_POUND] = ACTIONS(247), }, [1380] = { + [sym__expr_parenthesized_immediate] = STATE(7413), [sym_comment] = STATE(1380), - [anon_sym_EQ] = ACTIONS(970), - [anon_sym_PLUS_EQ] = ACTIONS(972), - [anon_sym_DASH_EQ] = ACTIONS(972), - [anon_sym_STAR_EQ] = ACTIONS(972), - [anon_sym_SLASH_EQ] = ACTIONS(972), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(972), - [sym__newline] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_err_GT_PIPE] = ACTIONS(972), - [anon_sym_out_GT_PIPE] = ACTIONS(972), - [anon_sym_e_GT_PIPE] = ACTIONS(972), - [anon_sym_o_GT_PIPE] = ACTIONS(972), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(972), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(972), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(972), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(972), - [aux_sym_ctrl_match_token1] = ACTIONS(972), - [anon_sym_QMARK2] = ACTIONS(4603), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(972), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(972), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(972), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(972), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(972), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(972), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(972), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(972), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(972), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(972), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(972), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(972), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(972), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(972), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(972), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(972), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(972), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(972), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(972), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(972), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(972), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(972), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(972), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(972), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(972), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(972), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(972), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(972), - [anon_sym_DOT_DOT2] = ACTIONS(970), - [anon_sym_DOT] = ACTIONS(970), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(972), - [anon_sym_DOT_DOT_LT2] = ACTIONS(972), - [anon_sym_err_GT] = ACTIONS(970), - [anon_sym_out_GT] = ACTIONS(970), - [anon_sym_e_GT] = ACTIONS(970), - [anon_sym_o_GT] = ACTIONS(970), - [anon_sym_err_PLUSout_GT] = ACTIONS(970), - [anon_sym_out_PLUSerr_GT] = ACTIONS(970), - [anon_sym_o_PLUSe_GT] = ACTIONS(970), - [anon_sym_e_PLUSo_GT] = ACTIONS(970), - [anon_sym_err_GT_GT] = ACTIONS(972), - [anon_sym_out_GT_GT] = ACTIONS(972), - [anon_sym_e_GT_GT] = ACTIONS(972), - [anon_sym_o_GT_GT] = ACTIONS(972), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(972), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(972), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(972), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(972), + [sym__newline] = ACTIONS(4743), + [anon_sym_SEMI] = ACTIONS(4743), + [anon_sym_PIPE] = ACTIONS(4743), + [anon_sym_err_GT_PIPE] = ACTIONS(4743), + [anon_sym_out_GT_PIPE] = ACTIONS(4743), + [anon_sym_e_GT_PIPE] = ACTIONS(4743), + [anon_sym_o_GT_PIPE] = ACTIONS(4743), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4743), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4743), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4743), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4743), + [anon_sym_RPAREN] = ACTIONS(4743), + [anon_sym_DASH_DASH] = ACTIONS(4743), + [anon_sym_DASH] = ACTIONS(4745), + [aux_sym_ctrl_match_token1] = ACTIONS(4743), + [anon_sym_RBRACE] = ACTIONS(4743), + [anon_sym_EQ_GT] = ACTIONS(4743), + [anon_sym_LPAREN2] = ACTIONS(3914), + [aux_sym_expr_binary_token1] = ACTIONS(4743), + [aux_sym_expr_binary_token2] = ACTIONS(4743), + [aux_sym_expr_binary_token3] = ACTIONS(4743), + [aux_sym_expr_binary_token4] = ACTIONS(4743), + [aux_sym_expr_binary_token5] = ACTIONS(4743), + [aux_sym_expr_binary_token6] = ACTIONS(4743), + [aux_sym_expr_binary_token7] = ACTIONS(4743), + [aux_sym_expr_binary_token8] = ACTIONS(4743), + [aux_sym_expr_binary_token9] = ACTIONS(4743), + [aux_sym_expr_binary_token10] = ACTIONS(4743), + [aux_sym_expr_binary_token11] = ACTIONS(4743), + [aux_sym_expr_binary_token12] = ACTIONS(4743), + [aux_sym_expr_binary_token13] = ACTIONS(4743), + [aux_sym_expr_binary_token14] = ACTIONS(4743), + [aux_sym_expr_binary_token15] = ACTIONS(4743), + [aux_sym_expr_binary_token16] = ACTIONS(4743), + [aux_sym_expr_binary_token17] = ACTIONS(4743), + [aux_sym_expr_binary_token18] = ACTIONS(4743), + [aux_sym_expr_binary_token19] = ACTIONS(4743), + [aux_sym_expr_binary_token20] = ACTIONS(4743), + [aux_sym_expr_binary_token21] = ACTIONS(4743), + [aux_sym_expr_binary_token22] = ACTIONS(4743), + [aux_sym_expr_binary_token23] = ACTIONS(4743), + [aux_sym_expr_binary_token24] = ACTIONS(4743), + [aux_sym_expr_binary_token25] = ACTIONS(4743), + [aux_sym_expr_binary_token26] = ACTIONS(4743), + [aux_sym_expr_binary_token27] = ACTIONS(4743), + [aux_sym_expr_binary_token28] = ACTIONS(4743), + [anon_sym_err_GT] = ACTIONS(4745), + [anon_sym_out_GT] = ACTIONS(4745), + [anon_sym_e_GT] = ACTIONS(4745), + [anon_sym_o_GT] = ACTIONS(4745), + [anon_sym_err_PLUSout_GT] = ACTIONS(4745), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4745), + [anon_sym_o_PLUSe_GT] = ACTIONS(4745), + [anon_sym_e_PLUSo_GT] = ACTIONS(4745), + [anon_sym_err_GT_GT] = ACTIONS(4743), + [anon_sym_out_GT_GT] = ACTIONS(4743), + [anon_sym_e_GT_GT] = ACTIONS(4743), + [anon_sym_o_GT_GT] = ACTIONS(4743), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4743), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4743), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4743), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4743), [anon_sym_POUND] = ACTIONS(247), }, [1381] = { [sym_comment] = STATE(1381), - [anon_sym_EQ] = ACTIONS(980), - [anon_sym_PLUS_EQ] = ACTIONS(982), - [anon_sym_DASH_EQ] = ACTIONS(982), - [anon_sym_STAR_EQ] = ACTIONS(982), - [anon_sym_SLASH_EQ] = ACTIONS(982), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(982), - [sym__newline] = ACTIONS(980), - [anon_sym_SEMI] = ACTIONS(982), - [anon_sym_PIPE] = ACTIONS(982), - [anon_sym_err_GT_PIPE] = ACTIONS(982), - [anon_sym_out_GT_PIPE] = ACTIONS(982), - [anon_sym_e_GT_PIPE] = ACTIONS(982), - [anon_sym_o_GT_PIPE] = ACTIONS(982), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(982), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(982), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(982), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(982), - [anon_sym_RPAREN] = ACTIONS(982), - [aux_sym_ctrl_match_token1] = ACTIONS(982), - [anon_sym_QMARK2] = ACTIONS(4605), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(982), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(982), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(982), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(982), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(982), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(982), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(982), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(982), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(982), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(982), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(982), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(982), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(982), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(982), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(982), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(982), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(982), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(982), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(982), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(982), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(982), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(982), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(982), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(982), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(982), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(982), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(982), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(982), - [anon_sym_DOT_DOT2] = ACTIONS(980), - [anon_sym_DOT] = ACTIONS(980), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(982), - [anon_sym_DOT_DOT_LT2] = ACTIONS(982), - [anon_sym_err_GT] = ACTIONS(980), - [anon_sym_out_GT] = ACTIONS(980), - [anon_sym_e_GT] = ACTIONS(980), - [anon_sym_o_GT] = ACTIONS(980), - [anon_sym_err_PLUSout_GT] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT] = ACTIONS(980), - [anon_sym_o_PLUSe_GT] = ACTIONS(980), - [anon_sym_e_PLUSo_GT] = ACTIONS(980), - [anon_sym_err_GT_GT] = ACTIONS(982), - [anon_sym_out_GT_GT] = ACTIONS(982), - [anon_sym_e_GT_GT] = ACTIONS(982), - [anon_sym_o_GT_GT] = ACTIONS(982), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(982), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(982), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(982), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(982), + [aux_sym_cmd_identifier_token41] = ACTIONS(1639), + [sym__newline] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(1641), + [anon_sym_PIPE] = ACTIONS(1641), + [anon_sym_err_GT_PIPE] = ACTIONS(1641), + [anon_sym_out_GT_PIPE] = ACTIONS(1641), + [anon_sym_e_GT_PIPE] = ACTIONS(1641), + [anon_sym_o_GT_PIPE] = ACTIONS(1641), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), + [anon_sym_RPAREN] = ACTIONS(1641), + [anon_sym_RBRACE] = ACTIONS(1641), + [aux_sym_expr_binary_token1] = ACTIONS(1641), + [aux_sym_expr_binary_token2] = ACTIONS(1641), + [aux_sym_expr_binary_token3] = ACTIONS(1641), + [aux_sym_expr_binary_token4] = ACTIONS(1641), + [aux_sym_expr_binary_token5] = ACTIONS(1641), + [aux_sym_expr_binary_token6] = ACTIONS(1641), + [aux_sym_expr_binary_token7] = ACTIONS(1641), + [aux_sym_expr_binary_token8] = ACTIONS(1641), + [aux_sym_expr_binary_token9] = ACTIONS(1641), + [aux_sym_expr_binary_token10] = ACTIONS(1641), + [aux_sym_expr_binary_token11] = ACTIONS(1641), + [aux_sym_expr_binary_token12] = ACTIONS(1641), + [aux_sym_expr_binary_token13] = ACTIONS(1641), + [aux_sym_expr_binary_token14] = ACTIONS(1641), + [aux_sym_expr_binary_token15] = ACTIONS(1641), + [aux_sym_expr_binary_token16] = ACTIONS(1641), + [aux_sym_expr_binary_token17] = ACTIONS(1641), + [aux_sym_expr_binary_token18] = ACTIONS(1641), + [aux_sym_expr_binary_token19] = ACTIONS(1641), + [aux_sym_expr_binary_token20] = ACTIONS(1641), + [aux_sym_expr_binary_token21] = ACTIONS(1641), + [aux_sym_expr_binary_token22] = ACTIONS(1641), + [aux_sym_expr_binary_token23] = ACTIONS(1641), + [aux_sym_expr_binary_token24] = ACTIONS(1641), + [aux_sym_expr_binary_token25] = ACTIONS(1641), + [aux_sym_expr_binary_token26] = ACTIONS(1641), + [aux_sym_expr_binary_token27] = ACTIONS(1641), + [aux_sym_expr_binary_token28] = ACTIONS(1641), + [anon_sym_DOT_DOT2] = ACTIONS(1639), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), + [sym_filesize_unit] = ACTIONS(1641), + [sym_duration_unit] = ACTIONS(1641), + [anon_sym_err_GT] = ACTIONS(1639), + [anon_sym_out_GT] = ACTIONS(1639), + [anon_sym_e_GT] = ACTIONS(1639), + [anon_sym_o_GT] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT] = ACTIONS(1639), + [anon_sym_err_GT_GT] = ACTIONS(1641), + [anon_sym_out_GT_GT] = ACTIONS(1641), + [anon_sym_e_GT_GT] = ACTIONS(1641), + [anon_sym_o_GT_GT] = ACTIONS(1641), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), [anon_sym_POUND] = ACTIONS(247), }, [1382] = { - [sym_cell_path] = STATE(1520), - [sym_path] = STATE(1465), [sym_comment] = STATE(1382), - [aux_sym_cell_path_repeat1] = STATE(1398), - [anon_sym_true] = ACTIONS(1603), - [anon_sym_false] = ACTIONS(1603), - [anon_sym_null] = ACTIONS(1603), - [aux_sym_cmd_identifier_token38] = ACTIONS(1603), - [aux_sym_cmd_identifier_token39] = ACTIONS(1603), - [aux_sym_cmd_identifier_token40] = ACTIONS(1603), - [sym__newline] = ACTIONS(1603), - [anon_sym_SEMI] = ACTIONS(1603), - [anon_sym_PIPE] = ACTIONS(1603), - [anon_sym_err_GT_PIPE] = ACTIONS(1603), - [anon_sym_out_GT_PIPE] = ACTIONS(1603), - [anon_sym_e_GT_PIPE] = ACTIONS(1603), - [anon_sym_o_GT_PIPE] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1603), - [anon_sym_LPAREN] = ACTIONS(1603), - [anon_sym_RPAREN] = ACTIONS(1603), - [anon_sym_DOLLAR] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1599), - [aux_sym_ctrl_match_token1] = ACTIONS(1603), - [anon_sym_RBRACE] = ACTIONS(1603), - [anon_sym_DOT_DOT] = ACTIONS(1599), - [anon_sym_DOT_DOT2] = ACTIONS(1599), - [anon_sym_DOT] = ACTIONS(4377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1599), - [anon_sym_DOT_DOT_LT] = ACTIONS(1599), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1603), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1603), - [aux_sym__val_number_decimal_token1] = ACTIONS(1599), - [aux_sym__val_number_decimal_token2] = ACTIONS(1603), - [aux_sym__val_number_decimal_token3] = ACTIONS(1603), - [aux_sym__val_number_decimal_token4] = ACTIONS(1603), - [aux_sym__val_number_token1] = ACTIONS(1603), - [aux_sym__val_number_token2] = ACTIONS(1603), - [aux_sym__val_number_token3] = ACTIONS(1603), - [anon_sym_0b] = ACTIONS(1599), - [anon_sym_0o] = ACTIONS(1599), - [anon_sym_0x] = ACTIONS(1599), - [sym_val_date] = ACTIONS(1603), - [anon_sym_DQUOTE] = ACTIONS(1603), - [sym__str_single_quotes] = ACTIONS(1603), - [sym__str_back_ticks] = ACTIONS(1603), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1603), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1603), - [anon_sym_err_GT] = ACTIONS(1599), - [anon_sym_out_GT] = ACTIONS(1599), - [anon_sym_e_GT] = ACTIONS(1599), - [anon_sym_o_GT] = ACTIONS(1599), - [anon_sym_err_PLUSout_GT] = ACTIONS(1599), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), - [anon_sym_o_PLUSe_GT] = ACTIONS(1599), - [anon_sym_e_PLUSo_GT] = ACTIONS(1599), - [anon_sym_err_GT_GT] = ACTIONS(1603), - [anon_sym_out_GT_GT] = ACTIONS(1603), - [anon_sym_e_GT_GT] = ACTIONS(1603), - [anon_sym_o_GT_GT] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1603), - [aux_sym_unquoted_token1] = ACTIONS(1599), + [aux_sym_cmd_identifier_token41] = ACTIONS(1497), + [sym__newline] = ACTIONS(1497), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_RPAREN] = ACTIONS(1499), + [aux_sym_ctrl_match_token1] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1499), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(247), }, [1383] = { - [sym__val_range] = STATE(7865), - [sym__value] = STATE(6238), - [sym_val_nothing] = STATE(5312), - [sym_val_bool] = STATE(7285), - [sym_val_variable] = STATE(5312), - [sym_val_number] = STATE(5312), - [sym__val_number_decimal] = STATE(5793), - [sym__val_number] = STATE(5409), - [sym_val_duration] = STATE(5312), - [sym_val_filesize] = STATE(5312), - [sym_val_binary] = STATE(5312), - [sym_val_string] = STATE(5312), - [sym__str_double_quotes] = STATE(4863), - [sym_val_interpolated] = STATE(5312), - [sym__inter_single_quotes] = STATE(5273), - [sym__inter_double_quotes] = STATE(5275), - [sym_val_list] = STATE(5312), - [sym_val_record] = STATE(5312), - [sym_val_table] = STATE(5312), - [sym_val_closure] = STATE(5312), - [sym_unquoted] = STATE(6265), - [sym__unquoted_anonymous_prefix] = STATE(7927), [sym_comment] = STATE(1383), - [anon_sym_true] = ACTIONS(4264), - [anon_sym_false] = ACTIONS(4264), - [anon_sym_null] = ACTIONS(4266), - [aux_sym_cmd_identifier_token38] = ACTIONS(4268), - [aux_sym_cmd_identifier_token39] = ACTIONS(4268), - [aux_sym_cmd_identifier_token40] = ACTIONS(4268), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4226), - [anon_sym_DOLLAR] = ACTIONS(4272), - [aux_sym_ctrl_match_token1] = ACTIONS(4274), - [anon_sym_DOT_DOT] = ACTIONS(4232), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4234), - [anon_sym_DOT_DOT_LT] = ACTIONS(4234), - [aux_sym__val_number_decimal_token1] = ACTIONS(4276), - [aux_sym__val_number_decimal_token2] = ACTIONS(4278), - [aux_sym__val_number_decimal_token3] = ACTIONS(4280), - [aux_sym__val_number_decimal_token4] = ACTIONS(4282), - [aux_sym__val_number_token1] = ACTIONS(3697), - [aux_sym__val_number_token2] = ACTIONS(3697), - [aux_sym__val_number_token3] = ACTIONS(3697), - [anon_sym_0b] = ACTIONS(3699), - [anon_sym_0o] = ACTIONS(3701), - [anon_sym_0x] = ACTIONS(3701), - [sym_val_date] = ACTIONS(4284), - [anon_sym_DQUOTE] = ACTIONS(4286), - [sym__str_single_quotes] = ACTIONS(4288), - [sym__str_back_ticks] = ACTIONS(4288), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3709), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(4246), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [aux_sym_cmd_identifier_token38] = ACTIONS(1633), + [aux_sym_cmd_identifier_token39] = ACTIONS(1633), + [aux_sym_cmd_identifier_token40] = ACTIONS(1633), + [sym__newline] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1633), + [anon_sym_err_GT_PIPE] = ACTIONS(1633), + [anon_sym_out_GT_PIPE] = ACTIONS(1633), + [anon_sym_e_GT_PIPE] = ACTIONS(1633), + [anon_sym_o_GT_PIPE] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1633), + [anon_sym_LBRACK] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_RPAREN] = ACTIONS(1633), + [anon_sym_DOLLAR] = ACTIONS(1631), + [anon_sym_DASH_DASH] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1631), + [aux_sym_ctrl_match_token1] = ACTIONS(1633), + [anon_sym_RBRACE] = ACTIONS(1633), + [anon_sym_DOT_DOT] = ACTIONS(1631), + [anon_sym_LPAREN2] = ACTIONS(1633), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1633), + [anon_sym_DOT_DOT_LT] = ACTIONS(1633), + [aux_sym__val_number_decimal_token1] = ACTIONS(1631), + [aux_sym__val_number_decimal_token2] = ACTIONS(1633), + [aux_sym__val_number_decimal_token3] = ACTIONS(1633), + [aux_sym__val_number_decimal_token4] = ACTIONS(1633), + [aux_sym__val_number_token1] = ACTIONS(1633), + [aux_sym__val_number_token2] = ACTIONS(1633), + [aux_sym__val_number_token3] = ACTIONS(1633), + [anon_sym_0b] = ACTIONS(1631), + [anon_sym_0o] = ACTIONS(1631), + [anon_sym_0x] = ACTIONS(1631), + [sym_val_date] = ACTIONS(1633), + [anon_sym_DQUOTE] = ACTIONS(1633), + [sym__str_single_quotes] = ACTIONS(1633), + [sym__str_back_ticks] = ACTIONS(1633), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1633), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1633), + [anon_sym_err_GT] = ACTIONS(1631), + [anon_sym_out_GT] = ACTIONS(1631), + [anon_sym_e_GT] = ACTIONS(1631), + [anon_sym_o_GT] = ACTIONS(1631), + [anon_sym_err_PLUSout_GT] = ACTIONS(1631), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1631), + [anon_sym_o_PLUSe_GT] = ACTIONS(1631), + [anon_sym_e_PLUSo_GT] = ACTIONS(1631), + [anon_sym_err_GT_GT] = ACTIONS(1633), + [anon_sym_out_GT_GT] = ACTIONS(1633), + [anon_sym_e_GT_GT] = ACTIONS(1633), + [anon_sym_o_GT_GT] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1633), + [aux_sym_unquoted_token1] = ACTIONS(1631), + [aux_sym_unquoted_token2] = ACTIONS(1631), [anon_sym_POUND] = ACTIONS(247), }, [1384] = { - [sym__val_range] = STATE(7894), - [sym__value] = STATE(1956), - [sym_val_nothing] = STATE(2094), - [sym_val_bool] = STATE(1825), - [sym_val_variable] = STATE(2094), - [sym_val_number] = STATE(2094), - [sym__val_number_decimal] = STATE(1419), - [sym__val_number] = STATE(2080), - [sym_val_duration] = STATE(2094), - [sym_val_filesize] = STATE(2094), - [sym_val_binary] = STATE(2094), - [sym_val_string] = STATE(2094), - [sym__str_double_quotes] = STATE(2042), - [sym_val_interpolated] = STATE(2094), - [sym__inter_single_quotes] = STATE(1955), - [sym__inter_double_quotes] = STATE(2073), - [sym_val_list] = STATE(2094), - [sym_val_record] = STATE(2094), - [sym_val_table] = STATE(2094), - [sym_val_closure] = STATE(2094), - [sym_unquoted] = STATE(1957), - [sym__unquoted_anonymous_prefix] = STATE(7825), [sym_comment] = STATE(1384), - [anon_sym_true] = ACTIONS(4353), - [anon_sym_false] = ACTIONS(4353), - [anon_sym_null] = ACTIONS(4355), - [aux_sym_cmd_identifier_token38] = ACTIONS(4357), - [aux_sym_cmd_identifier_token39] = ACTIONS(4357), - [aux_sym_cmd_identifier_token40] = ACTIONS(4357), - [anon_sym_LBRACK] = ACTIONS(2690), - [anon_sym_LPAREN] = ACTIONS(4359), - [anon_sym_DOLLAR] = ACTIONS(4124), - [aux_sym_ctrl_match_token1] = ACTIONS(2700), - [anon_sym_DOT_DOT] = ACTIONS(4361), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4363), - [anon_sym_DOT_DOT_LT] = ACTIONS(4363), - [aux_sym__val_number_decimal_token1] = ACTIONS(4365), - [aux_sym__val_number_decimal_token2] = ACTIONS(4367), - [aux_sym__val_number_decimal_token3] = ACTIONS(4369), - [aux_sym__val_number_decimal_token4] = ACTIONS(4371), - [aux_sym__val_number_token1] = ACTIONS(2714), - [aux_sym__val_number_token2] = ACTIONS(2714), - [aux_sym__val_number_token3] = ACTIONS(2714), - [anon_sym_0b] = ACTIONS(2716), - [anon_sym_0o] = ACTIONS(2718), - [anon_sym_0x] = ACTIONS(2718), - [sym_val_date] = ACTIONS(4373), - [anon_sym_DQUOTE] = ACTIONS(2722), - [sym__str_single_quotes] = ACTIONS(2724), - [sym__str_back_ticks] = ACTIONS(2724), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2726), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(4375), + [ts_builtin_sym_end] = ACTIONS(2139), + [anon_sym_true] = ACTIONS(2139), + [anon_sym_false] = ACTIONS(2139), + [anon_sym_null] = ACTIONS(2139), + [aux_sym_cmd_identifier_token38] = ACTIONS(2139), + [aux_sym_cmd_identifier_token39] = ACTIONS(2139), + [aux_sym_cmd_identifier_token40] = ACTIONS(2139), + [sym__newline] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_PIPE] = ACTIONS(2139), + [anon_sym_err_GT_PIPE] = ACTIONS(2139), + [anon_sym_out_GT_PIPE] = ACTIONS(2139), + [anon_sym_e_GT_PIPE] = ACTIONS(2139), + [anon_sym_o_GT_PIPE] = ACTIONS(2139), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2139), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2139), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2139), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_DOLLAR] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2137), + [aux_sym_ctrl_match_token1] = ACTIONS(2139), + [anon_sym_DOT_DOT] = ACTIONS(2137), + [anon_sym_DOT_DOT2] = ACTIONS(2137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2137), + [anon_sym_DOT_DOT_LT] = ACTIONS(2137), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2139), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2139), + [aux_sym__val_number_decimal_token1] = ACTIONS(2137), + [aux_sym__val_number_decimal_token2] = ACTIONS(2139), + [aux_sym__val_number_decimal_token3] = ACTIONS(2139), + [aux_sym__val_number_decimal_token4] = ACTIONS(2139), + [aux_sym__val_number_token1] = ACTIONS(2139), + [aux_sym__val_number_token2] = ACTIONS(2139), + [aux_sym__val_number_token3] = ACTIONS(2139), + [anon_sym_0b] = ACTIONS(2137), + [anon_sym_0o] = ACTIONS(2137), + [anon_sym_0x] = ACTIONS(2137), + [sym_val_date] = ACTIONS(2139), + [anon_sym_DQUOTE] = ACTIONS(2139), + [sym__str_single_quotes] = ACTIONS(2139), + [sym__str_back_ticks] = ACTIONS(2139), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2139), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2139), + [anon_sym_err_GT] = ACTIONS(2137), + [anon_sym_out_GT] = ACTIONS(2137), + [anon_sym_e_GT] = ACTIONS(2137), + [anon_sym_o_GT] = ACTIONS(2137), + [anon_sym_err_PLUSout_GT] = ACTIONS(2137), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2137), + [anon_sym_o_PLUSe_GT] = ACTIONS(2137), + [anon_sym_e_PLUSo_GT] = ACTIONS(2137), + [anon_sym_err_GT_GT] = ACTIONS(2139), + [anon_sym_out_GT_GT] = ACTIONS(2139), + [anon_sym_e_GT_GT] = ACTIONS(2139), + [anon_sym_o_GT_GT] = ACTIONS(2139), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2139), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2139), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2139), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2139), + [aux_sym_unquoted_token1] = ACTIONS(2137), [anon_sym_POUND] = ACTIONS(247), }, [1385] = { + [sym__expr_parenthesized_immediate] = STATE(7413), [sym_comment] = STATE(1385), - [anon_sym_EQ] = ACTIONS(1021), - [anon_sym_PLUS_EQ] = ACTIONS(1023), - [anon_sym_DASH_EQ] = ACTIONS(1023), - [anon_sym_STAR_EQ] = ACTIONS(1023), - [anon_sym_SLASH_EQ] = ACTIONS(1023), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1023), - [sym__newline] = ACTIONS(1023), - [anon_sym_SEMI] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(1023), - [anon_sym_err_GT_PIPE] = ACTIONS(1023), - [anon_sym_out_GT_PIPE] = ACTIONS(1023), - [anon_sym_e_GT_PIPE] = ACTIONS(1023), - [anon_sym_o_GT_PIPE] = ACTIONS(1023), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1023), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1023), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1023), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1023), - [anon_sym_RPAREN] = ACTIONS(1023), - [anon_sym_COMMA] = ACTIONS(1023), - [anon_sym_RBRACE] = ACTIONS(1023), - [aux_sym_expr_binary_token1] = ACTIONS(1023), - [aux_sym_expr_binary_token2] = ACTIONS(1023), - [aux_sym_expr_binary_token3] = ACTIONS(1023), - [aux_sym_expr_binary_token4] = ACTIONS(1023), - [aux_sym_expr_binary_token5] = ACTIONS(1023), - [aux_sym_expr_binary_token6] = ACTIONS(1023), - [aux_sym_expr_binary_token7] = ACTIONS(1023), - [aux_sym_expr_binary_token8] = ACTIONS(1023), - [aux_sym_expr_binary_token9] = ACTIONS(1023), - [aux_sym_expr_binary_token10] = ACTIONS(1023), - [aux_sym_expr_binary_token11] = ACTIONS(1023), - [aux_sym_expr_binary_token12] = ACTIONS(1023), - [aux_sym_expr_binary_token13] = ACTIONS(1023), - [aux_sym_expr_binary_token14] = ACTIONS(1023), - [aux_sym_expr_binary_token15] = ACTIONS(1023), - [aux_sym_expr_binary_token16] = ACTIONS(1023), - [aux_sym_expr_binary_token17] = ACTIONS(1023), - [aux_sym_expr_binary_token18] = ACTIONS(1023), - [aux_sym_expr_binary_token19] = ACTIONS(1023), - [aux_sym_expr_binary_token20] = ACTIONS(1023), - [aux_sym_expr_binary_token21] = ACTIONS(1023), - [aux_sym_expr_binary_token22] = ACTIONS(1023), - [aux_sym_expr_binary_token23] = ACTIONS(1023), - [aux_sym_expr_binary_token24] = ACTIONS(1023), - [aux_sym_expr_binary_token25] = ACTIONS(1023), - [aux_sym_expr_binary_token26] = ACTIONS(1023), - [aux_sym_expr_binary_token27] = ACTIONS(1023), - [aux_sym_expr_binary_token28] = ACTIONS(1023), - [anon_sym_DOT_DOT2] = ACTIONS(1021), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), - [anon_sym_err_GT] = ACTIONS(1021), - [anon_sym_out_GT] = ACTIONS(1021), - [anon_sym_e_GT] = ACTIONS(1021), - [anon_sym_o_GT] = ACTIONS(1021), - [anon_sym_err_PLUSout_GT] = ACTIONS(1021), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), - [anon_sym_o_PLUSe_GT] = ACTIONS(1021), - [anon_sym_e_PLUSo_GT] = ACTIONS(1021), - [anon_sym_err_GT_GT] = ACTIONS(1023), - [anon_sym_out_GT_GT] = ACTIONS(1023), - [anon_sym_e_GT_GT] = ACTIONS(1023), - [anon_sym_o_GT_GT] = ACTIONS(1023), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), + [sym__newline] = ACTIONS(4743), + [anon_sym_SEMI] = ACTIONS(4743), + [anon_sym_PIPE] = ACTIONS(4743), + [anon_sym_err_GT_PIPE] = ACTIONS(4743), + [anon_sym_out_GT_PIPE] = ACTIONS(4743), + [anon_sym_e_GT_PIPE] = ACTIONS(4743), + [anon_sym_o_GT_PIPE] = ACTIONS(4743), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4743), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4743), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4743), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4743), + [anon_sym_RPAREN] = ACTIONS(4743), + [anon_sym_DASH_DASH] = ACTIONS(4743), + [anon_sym_DASH] = ACTIONS(4745), + [aux_sym_ctrl_match_token1] = ACTIONS(4743), + [anon_sym_RBRACE] = ACTIONS(4743), + [anon_sym_EQ_GT] = ACTIONS(4743), + [anon_sym_LPAREN2] = ACTIONS(3914), + [aux_sym_expr_binary_token1] = ACTIONS(4743), + [aux_sym_expr_binary_token2] = ACTIONS(4743), + [aux_sym_expr_binary_token3] = ACTIONS(4743), + [aux_sym_expr_binary_token4] = ACTIONS(4743), + [aux_sym_expr_binary_token5] = ACTIONS(4743), + [aux_sym_expr_binary_token6] = ACTIONS(4743), + [aux_sym_expr_binary_token7] = ACTIONS(4743), + [aux_sym_expr_binary_token8] = ACTIONS(4743), + [aux_sym_expr_binary_token9] = ACTIONS(4743), + [aux_sym_expr_binary_token10] = ACTIONS(4743), + [aux_sym_expr_binary_token11] = ACTIONS(4743), + [aux_sym_expr_binary_token12] = ACTIONS(4743), + [aux_sym_expr_binary_token13] = ACTIONS(4743), + [aux_sym_expr_binary_token14] = ACTIONS(4743), + [aux_sym_expr_binary_token15] = ACTIONS(4743), + [aux_sym_expr_binary_token16] = ACTIONS(4743), + [aux_sym_expr_binary_token17] = ACTIONS(4743), + [aux_sym_expr_binary_token18] = ACTIONS(4743), + [aux_sym_expr_binary_token19] = ACTIONS(4743), + [aux_sym_expr_binary_token20] = ACTIONS(4743), + [aux_sym_expr_binary_token21] = ACTIONS(4743), + [aux_sym_expr_binary_token22] = ACTIONS(4743), + [aux_sym_expr_binary_token23] = ACTIONS(4743), + [aux_sym_expr_binary_token24] = ACTIONS(4743), + [aux_sym_expr_binary_token25] = ACTIONS(4743), + [aux_sym_expr_binary_token26] = ACTIONS(4743), + [aux_sym_expr_binary_token27] = ACTIONS(4743), + [aux_sym_expr_binary_token28] = ACTIONS(4743), + [anon_sym_err_GT] = ACTIONS(4745), + [anon_sym_out_GT] = ACTIONS(4745), + [anon_sym_e_GT] = ACTIONS(4745), + [anon_sym_o_GT] = ACTIONS(4745), + [anon_sym_err_PLUSout_GT] = ACTIONS(4745), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4745), + [anon_sym_o_PLUSe_GT] = ACTIONS(4745), + [anon_sym_e_PLUSo_GT] = ACTIONS(4745), + [anon_sym_err_GT_GT] = ACTIONS(4743), + [anon_sym_out_GT_GT] = ACTIONS(4743), + [anon_sym_e_GT_GT] = ACTIONS(4743), + [anon_sym_o_GT_GT] = ACTIONS(4743), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4743), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4743), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4743), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4743), [anon_sym_POUND] = ACTIONS(247), }, [1386] = { + [sym__expr_parenthesized_immediate] = STATE(7413), [sym_comment] = STATE(1386), - [ts_builtin_sym_end] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1571), - [anon_sym_false] = ACTIONS(1571), - [anon_sym_null] = ACTIONS(1571), - [aux_sym_cmd_identifier_token38] = ACTIONS(1571), - [aux_sym_cmd_identifier_token39] = ACTIONS(1571), - [aux_sym_cmd_identifier_token40] = ACTIONS(1571), - [sym__newline] = ACTIONS(1571), - [anon_sym_SEMI] = ACTIONS(1571), - [anon_sym_PIPE] = ACTIONS(1571), - [anon_sym_err_GT_PIPE] = ACTIONS(1571), - [anon_sym_out_GT_PIPE] = ACTIONS(1571), - [anon_sym_e_GT_PIPE] = ACTIONS(1571), - [anon_sym_o_GT_PIPE] = ACTIONS(1571), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1571), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1571), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1571), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1571), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_DOLLAR] = ACTIONS(1569), - [anon_sym_DASH_DASH] = ACTIONS(1571), - [anon_sym_DASH] = ACTIONS(1569), - [aux_sym_ctrl_match_token1] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1569), - [anon_sym_LPAREN2] = ACTIONS(1571), - [anon_sym_DOT_DOT2] = ACTIONS(1569), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1569), - [anon_sym_DOT_DOT_LT] = ACTIONS(1569), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1571), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1571), - [aux_sym__immediate_decimal_token1] = ACTIONS(4607), - [aux_sym__immediate_decimal_token2] = ACTIONS(4609), - [aux_sym__val_number_decimal_token1] = ACTIONS(1569), - [aux_sym__val_number_decimal_token2] = ACTIONS(1571), - [aux_sym__val_number_decimal_token3] = ACTIONS(1571), - [aux_sym__val_number_decimal_token4] = ACTIONS(1571), - [aux_sym__val_number_token1] = ACTIONS(1571), - [aux_sym__val_number_token2] = ACTIONS(1571), - [aux_sym__val_number_token3] = ACTIONS(1571), - [anon_sym_0b] = ACTIONS(1569), - [anon_sym_0o] = ACTIONS(1569), - [anon_sym_0x] = ACTIONS(1569), - [sym_val_date] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [sym__str_single_quotes] = ACTIONS(1571), - [sym__str_back_ticks] = ACTIONS(1571), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1571), - [anon_sym_err_GT] = ACTIONS(1569), - [anon_sym_out_GT] = ACTIONS(1569), - [anon_sym_e_GT] = ACTIONS(1569), - [anon_sym_o_GT] = ACTIONS(1569), - [anon_sym_err_PLUSout_GT] = ACTIONS(1569), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1569), - [anon_sym_o_PLUSe_GT] = ACTIONS(1569), - [anon_sym_e_PLUSo_GT] = ACTIONS(1569), - [anon_sym_err_GT_GT] = ACTIONS(1571), - [anon_sym_out_GT_GT] = ACTIONS(1571), - [anon_sym_e_GT_GT] = ACTIONS(1571), - [anon_sym_o_GT_GT] = ACTIONS(1571), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1571), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1571), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1571), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1571), - [aux_sym_unquoted_token1] = ACTIONS(1569), - [aux_sym_unquoted_token2] = ACTIONS(1569), + [sym__newline] = ACTIONS(4743), + [anon_sym_SEMI] = ACTIONS(4743), + [anon_sym_PIPE] = ACTIONS(4743), + [anon_sym_err_GT_PIPE] = ACTIONS(4743), + [anon_sym_out_GT_PIPE] = ACTIONS(4743), + [anon_sym_e_GT_PIPE] = ACTIONS(4743), + [anon_sym_o_GT_PIPE] = ACTIONS(4743), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4743), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4743), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4743), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4743), + [anon_sym_RPAREN] = ACTIONS(4743), + [anon_sym_DASH_DASH] = ACTIONS(4743), + [anon_sym_DASH] = ACTIONS(4745), + [aux_sym_ctrl_match_token1] = ACTIONS(4743), + [anon_sym_RBRACE] = ACTIONS(4743), + [anon_sym_EQ_GT] = ACTIONS(4743), + [anon_sym_LPAREN2] = ACTIONS(3914), + [aux_sym_expr_binary_token1] = ACTIONS(4743), + [aux_sym_expr_binary_token2] = ACTIONS(4743), + [aux_sym_expr_binary_token3] = ACTIONS(4743), + [aux_sym_expr_binary_token4] = ACTIONS(4743), + [aux_sym_expr_binary_token5] = ACTIONS(4743), + [aux_sym_expr_binary_token6] = ACTIONS(4743), + [aux_sym_expr_binary_token7] = ACTIONS(4743), + [aux_sym_expr_binary_token8] = ACTIONS(4743), + [aux_sym_expr_binary_token9] = ACTIONS(4743), + [aux_sym_expr_binary_token10] = ACTIONS(4743), + [aux_sym_expr_binary_token11] = ACTIONS(4743), + [aux_sym_expr_binary_token12] = ACTIONS(4743), + [aux_sym_expr_binary_token13] = ACTIONS(4743), + [aux_sym_expr_binary_token14] = ACTIONS(4743), + [aux_sym_expr_binary_token15] = ACTIONS(4743), + [aux_sym_expr_binary_token16] = ACTIONS(4743), + [aux_sym_expr_binary_token17] = ACTIONS(4743), + [aux_sym_expr_binary_token18] = ACTIONS(4743), + [aux_sym_expr_binary_token19] = ACTIONS(4743), + [aux_sym_expr_binary_token20] = ACTIONS(4743), + [aux_sym_expr_binary_token21] = ACTIONS(4743), + [aux_sym_expr_binary_token22] = ACTIONS(4743), + [aux_sym_expr_binary_token23] = ACTIONS(4743), + [aux_sym_expr_binary_token24] = ACTIONS(4743), + [aux_sym_expr_binary_token25] = ACTIONS(4743), + [aux_sym_expr_binary_token26] = ACTIONS(4743), + [aux_sym_expr_binary_token27] = ACTIONS(4743), + [aux_sym_expr_binary_token28] = ACTIONS(4743), + [anon_sym_err_GT] = ACTIONS(4745), + [anon_sym_out_GT] = ACTIONS(4745), + [anon_sym_e_GT] = ACTIONS(4745), + [anon_sym_o_GT] = ACTIONS(4745), + [anon_sym_err_PLUSout_GT] = ACTIONS(4745), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4745), + [anon_sym_o_PLUSe_GT] = ACTIONS(4745), + [anon_sym_e_PLUSo_GT] = ACTIONS(4745), + [anon_sym_err_GT_GT] = ACTIONS(4743), + [anon_sym_out_GT_GT] = ACTIONS(4743), + [anon_sym_e_GT_GT] = ACTIONS(4743), + [anon_sym_o_GT_GT] = ACTIONS(4743), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4743), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4743), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4743), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4743), [anon_sym_POUND] = ACTIONS(247), }, [1387] = { + [sym__expr_parenthesized_immediate] = STATE(7413), [sym_comment] = STATE(1387), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [aux_sym_cmd_identifier_token38] = ACTIONS(1475), - [aux_sym_cmd_identifier_token39] = ACTIONS(1475), - [aux_sym_cmd_identifier_token40] = ACTIONS(1475), - [sym__newline] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_err_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_GT_PIPE] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1475), - [anon_sym_RPAREN] = ACTIONS(1475), - [anon_sym_DOLLAR] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1473), - [aux_sym_ctrl_match_token1] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_DOT_DOT] = ACTIONS(1473), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), - [anon_sym_DOT_DOT_LT] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [aux_sym__val_number_decimal_token1] = ACTIONS(1473), - [aux_sym__val_number_decimal_token2] = ACTIONS(1475), - [aux_sym__val_number_decimal_token3] = ACTIONS(1475), - [aux_sym__val_number_decimal_token4] = ACTIONS(1475), - [aux_sym__val_number_token1] = ACTIONS(1475), - [aux_sym__val_number_token2] = ACTIONS(1475), - [aux_sym__val_number_token3] = ACTIONS(1475), - [anon_sym_0b] = ACTIONS(1473), - [sym_filesize_unit] = ACTIONS(1475), - [sym_duration_unit] = ACTIONS(1475), - [anon_sym_0o] = ACTIONS(1473), - [anon_sym_0x] = ACTIONS(1473), - [sym_val_date] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym__str_single_quotes] = ACTIONS(1475), - [sym__str_back_ticks] = ACTIONS(1475), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1473), - [anon_sym_out_GT] = ACTIONS(1473), - [anon_sym_e_GT] = ACTIONS(1473), - [anon_sym_o_GT] = ACTIONS(1473), - [anon_sym_err_PLUSout_GT] = ACTIONS(1473), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), - [anon_sym_o_PLUSe_GT] = ACTIONS(1473), - [anon_sym_e_PLUSo_GT] = ACTIONS(1473), - [anon_sym_err_GT_GT] = ACTIONS(1475), - [anon_sym_out_GT_GT] = ACTIONS(1475), - [anon_sym_e_GT_GT] = ACTIONS(1475), - [anon_sym_o_GT_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), - [aux_sym_unquoted_token1] = ACTIONS(1473), - [aux_sym_unquoted_token2] = ACTIONS(1473), + [sym__newline] = ACTIONS(4743), + [anon_sym_SEMI] = ACTIONS(4743), + [anon_sym_PIPE] = ACTIONS(4743), + [anon_sym_err_GT_PIPE] = ACTIONS(4743), + [anon_sym_out_GT_PIPE] = ACTIONS(4743), + [anon_sym_e_GT_PIPE] = ACTIONS(4743), + [anon_sym_o_GT_PIPE] = ACTIONS(4743), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4743), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4743), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4743), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4743), + [anon_sym_RPAREN] = ACTIONS(4743), + [anon_sym_DASH_DASH] = ACTIONS(4743), + [anon_sym_DASH] = ACTIONS(4745), + [aux_sym_ctrl_match_token1] = ACTIONS(4743), + [anon_sym_RBRACE] = ACTIONS(4743), + [anon_sym_EQ_GT] = ACTIONS(4743), + [anon_sym_LPAREN2] = ACTIONS(3914), + [aux_sym_expr_binary_token1] = ACTIONS(4743), + [aux_sym_expr_binary_token2] = ACTIONS(4743), + [aux_sym_expr_binary_token3] = ACTIONS(4743), + [aux_sym_expr_binary_token4] = ACTIONS(4743), + [aux_sym_expr_binary_token5] = ACTIONS(4743), + [aux_sym_expr_binary_token6] = ACTIONS(4743), + [aux_sym_expr_binary_token7] = ACTIONS(4743), + [aux_sym_expr_binary_token8] = ACTIONS(4743), + [aux_sym_expr_binary_token9] = ACTIONS(4743), + [aux_sym_expr_binary_token10] = ACTIONS(4743), + [aux_sym_expr_binary_token11] = ACTIONS(4743), + [aux_sym_expr_binary_token12] = ACTIONS(4743), + [aux_sym_expr_binary_token13] = ACTIONS(4743), + [aux_sym_expr_binary_token14] = ACTIONS(4743), + [aux_sym_expr_binary_token15] = ACTIONS(4743), + [aux_sym_expr_binary_token16] = ACTIONS(4743), + [aux_sym_expr_binary_token17] = ACTIONS(4743), + [aux_sym_expr_binary_token18] = ACTIONS(4743), + [aux_sym_expr_binary_token19] = ACTIONS(4743), + [aux_sym_expr_binary_token20] = ACTIONS(4743), + [aux_sym_expr_binary_token21] = ACTIONS(4743), + [aux_sym_expr_binary_token22] = ACTIONS(4743), + [aux_sym_expr_binary_token23] = ACTIONS(4743), + [aux_sym_expr_binary_token24] = ACTIONS(4743), + [aux_sym_expr_binary_token25] = ACTIONS(4743), + [aux_sym_expr_binary_token26] = ACTIONS(4743), + [aux_sym_expr_binary_token27] = ACTIONS(4743), + [aux_sym_expr_binary_token28] = ACTIONS(4743), + [anon_sym_err_GT] = ACTIONS(4745), + [anon_sym_out_GT] = ACTIONS(4745), + [anon_sym_e_GT] = ACTIONS(4745), + [anon_sym_o_GT] = ACTIONS(4745), + [anon_sym_err_PLUSout_GT] = ACTIONS(4745), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4745), + [anon_sym_o_PLUSe_GT] = ACTIONS(4745), + [anon_sym_e_PLUSo_GT] = ACTIONS(4745), + [anon_sym_err_GT_GT] = ACTIONS(4743), + [anon_sym_out_GT_GT] = ACTIONS(4743), + [anon_sym_e_GT_GT] = ACTIONS(4743), + [anon_sym_o_GT_GT] = ACTIONS(4743), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4743), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4743), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4743), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4743), [anon_sym_POUND] = ACTIONS(247), }, [1388] = { + [sym__expr_parenthesized_immediate] = STATE(7413), [sym_comment] = STATE(1388), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [anon_sym_null] = ACTIONS(1483), - [aux_sym_cmd_identifier_token38] = ACTIONS(1483), - [aux_sym_cmd_identifier_token39] = ACTIONS(1483), - [aux_sym_cmd_identifier_token40] = ACTIONS(1483), - [sym__newline] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_err_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_GT_PIPE] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_RPAREN] = ACTIONS(1483), - [anon_sym_DOLLAR] = ACTIONS(1481), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1481), - [aux_sym_ctrl_match_token1] = ACTIONS(1483), - [anon_sym_RBRACE] = ACTIONS(1483), - [anon_sym_DOT_DOT] = ACTIONS(1481), - [anon_sym_DOT_DOT2] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), - [anon_sym_DOT_DOT_LT] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), - [aux_sym__val_number_decimal_token1] = ACTIONS(1481), - [aux_sym__val_number_decimal_token2] = ACTIONS(1483), - [aux_sym__val_number_decimal_token3] = ACTIONS(1483), - [aux_sym__val_number_decimal_token4] = ACTIONS(1483), - [aux_sym__val_number_token1] = ACTIONS(1483), - [aux_sym__val_number_token2] = ACTIONS(1483), - [aux_sym__val_number_token3] = ACTIONS(1483), - [anon_sym_0b] = ACTIONS(1481), - [sym_filesize_unit] = ACTIONS(1483), - [sym_duration_unit] = ACTIONS(1483), - [anon_sym_0o] = ACTIONS(1481), - [anon_sym_0x] = ACTIONS(1481), - [sym_val_date] = ACTIONS(1483), - [anon_sym_DQUOTE] = ACTIONS(1483), - [sym__str_single_quotes] = ACTIONS(1483), - [sym__str_back_ticks] = ACTIONS(1483), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1483), - [anon_sym_err_GT] = ACTIONS(1481), - [anon_sym_out_GT] = ACTIONS(1481), - [anon_sym_e_GT] = ACTIONS(1481), - [anon_sym_o_GT] = ACTIONS(1481), - [anon_sym_err_PLUSout_GT] = ACTIONS(1481), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), - [anon_sym_o_PLUSe_GT] = ACTIONS(1481), - [anon_sym_e_PLUSo_GT] = ACTIONS(1481), - [anon_sym_err_GT_GT] = ACTIONS(1483), - [anon_sym_out_GT_GT] = ACTIONS(1483), - [anon_sym_e_GT_GT] = ACTIONS(1483), - [anon_sym_o_GT_GT] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), - [aux_sym_unquoted_token1] = ACTIONS(1481), - [aux_sym_unquoted_token2] = ACTIONS(1481), + [sym__newline] = ACTIONS(4743), + [anon_sym_SEMI] = ACTIONS(4743), + [anon_sym_PIPE] = ACTIONS(4743), + [anon_sym_err_GT_PIPE] = ACTIONS(4743), + [anon_sym_out_GT_PIPE] = ACTIONS(4743), + [anon_sym_e_GT_PIPE] = ACTIONS(4743), + [anon_sym_o_GT_PIPE] = ACTIONS(4743), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4743), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4743), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4743), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4743), + [anon_sym_RPAREN] = ACTIONS(4743), + [anon_sym_DASH_DASH] = ACTIONS(4743), + [anon_sym_DASH] = ACTIONS(4745), + [aux_sym_ctrl_match_token1] = ACTIONS(4743), + [anon_sym_RBRACE] = ACTIONS(4743), + [anon_sym_EQ_GT] = ACTIONS(4743), + [anon_sym_LPAREN2] = ACTIONS(3914), + [aux_sym_expr_binary_token1] = ACTIONS(4743), + [aux_sym_expr_binary_token2] = ACTIONS(4743), + [aux_sym_expr_binary_token3] = ACTIONS(4743), + [aux_sym_expr_binary_token4] = ACTIONS(4743), + [aux_sym_expr_binary_token5] = ACTIONS(4743), + [aux_sym_expr_binary_token6] = ACTIONS(4743), + [aux_sym_expr_binary_token7] = ACTIONS(4743), + [aux_sym_expr_binary_token8] = ACTIONS(4743), + [aux_sym_expr_binary_token9] = ACTIONS(4743), + [aux_sym_expr_binary_token10] = ACTIONS(4743), + [aux_sym_expr_binary_token11] = ACTIONS(4743), + [aux_sym_expr_binary_token12] = ACTIONS(4743), + [aux_sym_expr_binary_token13] = ACTIONS(4743), + [aux_sym_expr_binary_token14] = ACTIONS(4743), + [aux_sym_expr_binary_token15] = ACTIONS(4743), + [aux_sym_expr_binary_token16] = ACTIONS(4743), + [aux_sym_expr_binary_token17] = ACTIONS(4743), + [aux_sym_expr_binary_token18] = ACTIONS(4743), + [aux_sym_expr_binary_token19] = ACTIONS(4743), + [aux_sym_expr_binary_token20] = ACTIONS(4743), + [aux_sym_expr_binary_token21] = ACTIONS(4743), + [aux_sym_expr_binary_token22] = ACTIONS(4743), + [aux_sym_expr_binary_token23] = ACTIONS(4743), + [aux_sym_expr_binary_token24] = ACTIONS(4743), + [aux_sym_expr_binary_token25] = ACTIONS(4743), + [aux_sym_expr_binary_token26] = ACTIONS(4743), + [aux_sym_expr_binary_token27] = ACTIONS(4743), + [aux_sym_expr_binary_token28] = ACTIONS(4743), + [anon_sym_err_GT] = ACTIONS(4745), + [anon_sym_out_GT] = ACTIONS(4745), + [anon_sym_e_GT] = ACTIONS(4745), + [anon_sym_o_GT] = ACTIONS(4745), + [anon_sym_err_PLUSout_GT] = ACTIONS(4745), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4745), + [anon_sym_o_PLUSe_GT] = ACTIONS(4745), + [anon_sym_e_PLUSo_GT] = ACTIONS(4745), + [anon_sym_err_GT_GT] = ACTIONS(4743), + [anon_sym_out_GT_GT] = ACTIONS(4743), + [anon_sym_e_GT_GT] = ACTIONS(4743), + [anon_sym_o_GT_GT] = ACTIONS(4743), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4743), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4743), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4743), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4743), [anon_sym_POUND] = ACTIONS(247), }, [1389] = { [sym_comment] = STATE(1389), - [anon_sym_true] = ACTIONS(1521), - [anon_sym_false] = ACTIONS(1521), - [anon_sym_null] = ACTIONS(1521), - [aux_sym_cmd_identifier_token38] = ACTIONS(1521), - [aux_sym_cmd_identifier_token39] = ACTIONS(1521), - [aux_sym_cmd_identifier_token40] = ACTIONS(1521), - [sym__newline] = ACTIONS(1521), - [anon_sym_SEMI] = ACTIONS(1521), - [anon_sym_PIPE] = ACTIONS(1521), - [anon_sym_err_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_GT_PIPE] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_RPAREN] = ACTIONS(1521), - [anon_sym_DOLLAR] = ACTIONS(1519), - [anon_sym_DASH_DASH] = ACTIONS(1521), - [anon_sym_DASH] = ACTIONS(1519), - [aux_sym_ctrl_match_token1] = ACTIONS(1521), - [anon_sym_RBRACE] = ACTIONS(1521), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_DOT_DOT2] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1519), - [anon_sym_DOT_DOT_LT] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), - [aux_sym__val_number_decimal_token1] = ACTIONS(1519), - [aux_sym__val_number_decimal_token2] = ACTIONS(1521), - [aux_sym__val_number_decimal_token3] = ACTIONS(1521), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(1521), - [aux_sym__val_number_token2] = ACTIONS(1521), - [aux_sym__val_number_token3] = ACTIONS(1521), - [anon_sym_0b] = ACTIONS(1519), - [sym_filesize_unit] = ACTIONS(1521), - [sym_duration_unit] = ACTIONS(1521), - [anon_sym_0o] = ACTIONS(1519), - [anon_sym_0x] = ACTIONS(1519), - [sym_val_date] = ACTIONS(1521), - [anon_sym_DQUOTE] = ACTIONS(1521), - [sym__str_single_quotes] = ACTIONS(1521), - [sym__str_back_ticks] = ACTIONS(1521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1521), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1521), - [anon_sym_err_GT] = ACTIONS(1519), - [anon_sym_out_GT] = ACTIONS(1519), - [anon_sym_e_GT] = ACTIONS(1519), - [anon_sym_o_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT] = ACTIONS(1519), - [anon_sym_err_GT_GT] = ACTIONS(1521), - [anon_sym_out_GT_GT] = ACTIONS(1521), - [anon_sym_e_GT_GT] = ACTIONS(1521), - [anon_sym_o_GT_GT] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), - [aux_sym_unquoted_token1] = ACTIONS(1519), - [aux_sym_unquoted_token2] = ACTIONS(1519), + [sym__newline] = ACTIONS(1040), + [anon_sym_SEMI] = ACTIONS(1042), + [anon_sym_PIPE] = ACTIONS(1042), + [anon_sym_err_GT_PIPE] = ACTIONS(1042), + [anon_sym_out_GT_PIPE] = ACTIONS(1042), + [anon_sym_e_GT_PIPE] = ACTIONS(1042), + [anon_sym_o_GT_PIPE] = ACTIONS(1042), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1042), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1042), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1042), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1042), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1040), + [aux_sym_ctrl_match_token1] = ACTIONS(1042), + [anon_sym_RBRACE] = ACTIONS(1042), + [anon_sym_EQ_GT] = ACTIONS(1042), + [anon_sym_QMARK2] = ACTIONS(1042), + [aux_sym_expr_binary_token1] = ACTIONS(1042), + [aux_sym_expr_binary_token2] = ACTIONS(1042), + [aux_sym_expr_binary_token3] = ACTIONS(1042), + [aux_sym_expr_binary_token4] = ACTIONS(1042), + [aux_sym_expr_binary_token5] = ACTIONS(1042), + [aux_sym_expr_binary_token6] = ACTIONS(1042), + [aux_sym_expr_binary_token7] = ACTIONS(1042), + [aux_sym_expr_binary_token8] = ACTIONS(1042), + [aux_sym_expr_binary_token9] = ACTIONS(1042), + [aux_sym_expr_binary_token10] = ACTIONS(1042), + [aux_sym_expr_binary_token11] = ACTIONS(1042), + [aux_sym_expr_binary_token12] = ACTIONS(1042), + [aux_sym_expr_binary_token13] = ACTIONS(1042), + [aux_sym_expr_binary_token14] = ACTIONS(1042), + [aux_sym_expr_binary_token15] = ACTIONS(1042), + [aux_sym_expr_binary_token16] = ACTIONS(1042), + [aux_sym_expr_binary_token17] = ACTIONS(1042), + [aux_sym_expr_binary_token18] = ACTIONS(1042), + [aux_sym_expr_binary_token19] = ACTIONS(1042), + [aux_sym_expr_binary_token20] = ACTIONS(1042), + [aux_sym_expr_binary_token21] = ACTIONS(1042), + [aux_sym_expr_binary_token22] = ACTIONS(1042), + [aux_sym_expr_binary_token23] = ACTIONS(1042), + [aux_sym_expr_binary_token24] = ACTIONS(1042), + [aux_sym_expr_binary_token25] = ACTIONS(1042), + [aux_sym_expr_binary_token26] = ACTIONS(1042), + [aux_sym_expr_binary_token27] = ACTIONS(1042), + [aux_sym_expr_binary_token28] = ACTIONS(1042), + [anon_sym_DOT] = ACTIONS(1042), + [aux_sym_record_entry_token1] = ACTIONS(1042), + [anon_sym_err_GT] = ACTIONS(1040), + [anon_sym_out_GT] = ACTIONS(1040), + [anon_sym_e_GT] = ACTIONS(1040), + [anon_sym_o_GT] = ACTIONS(1040), + [anon_sym_err_PLUSout_GT] = ACTIONS(1040), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1040), + [anon_sym_o_PLUSe_GT] = ACTIONS(1040), + [anon_sym_e_PLUSo_GT] = ACTIONS(1040), + [anon_sym_err_GT_GT] = ACTIONS(1042), + [anon_sym_out_GT_GT] = ACTIONS(1042), + [anon_sym_e_GT_GT] = ACTIONS(1042), + [anon_sym_o_GT_GT] = ACTIONS(1042), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1042), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1042), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1042), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1042), [anon_sym_POUND] = ACTIONS(247), }, [1390] = { [sym_comment] = STATE(1390), - [anon_sym_true] = ACTIONS(1587), - [anon_sym_false] = ACTIONS(1587), - [anon_sym_null] = ACTIONS(1587), - [aux_sym_cmd_identifier_token38] = ACTIONS(1587), - [aux_sym_cmd_identifier_token39] = ACTIONS(1587), - [aux_sym_cmd_identifier_token40] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_RPAREN] = ACTIONS(1587), - [anon_sym_DOLLAR] = ACTIONS(1585), - [anon_sym_DASH_DASH] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1585), - [aux_sym_ctrl_match_token1] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1587), - [anon_sym_DOT_DOT] = ACTIONS(1585), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1585), - [anon_sym_DOT_DOT_LT] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1587), - [aux_sym__val_number_decimal_token4] = ACTIONS(1587), - [aux_sym__val_number_token1] = ACTIONS(1587), - [aux_sym__val_number_token2] = ACTIONS(1587), - [aux_sym__val_number_token3] = ACTIONS(1587), - [anon_sym_0b] = ACTIONS(1585), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1587), - [anon_sym_0o] = ACTIONS(1585), - [anon_sym_0x] = ACTIONS(1585), - [sym_val_date] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1587), - [sym__str_single_quotes] = ACTIONS(1587), - [sym__str_back_ticks] = ACTIONS(1587), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1585), - [anon_sym_out_GT] = ACTIONS(1585), - [anon_sym_e_GT] = ACTIONS(1585), - [anon_sym_o_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT] = ACTIONS(1585), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), - [aux_sym_unquoted_token1] = ACTIONS(1585), - [aux_sym_unquoted_token2] = ACTIONS(1585), + [ts_builtin_sym_end] = ACTIONS(1499), + [aux_sym_cmd_identifier_token41] = ACTIONS(1497), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [aux_sym_expr_binary_token1] = ACTIONS(1499), + [aux_sym_expr_binary_token2] = ACTIONS(1499), + [aux_sym_expr_binary_token3] = ACTIONS(1499), + [aux_sym_expr_binary_token4] = ACTIONS(1499), + [aux_sym_expr_binary_token5] = ACTIONS(1499), + [aux_sym_expr_binary_token6] = ACTIONS(1499), + [aux_sym_expr_binary_token7] = ACTIONS(1499), + [aux_sym_expr_binary_token8] = ACTIONS(1499), + [aux_sym_expr_binary_token9] = ACTIONS(1499), + [aux_sym_expr_binary_token10] = ACTIONS(1499), + [aux_sym_expr_binary_token11] = ACTIONS(1499), + [aux_sym_expr_binary_token12] = ACTIONS(1499), + [aux_sym_expr_binary_token13] = ACTIONS(1499), + [aux_sym_expr_binary_token14] = ACTIONS(1499), + [aux_sym_expr_binary_token15] = ACTIONS(1499), + [aux_sym_expr_binary_token16] = ACTIONS(1499), + [aux_sym_expr_binary_token17] = ACTIONS(1499), + [aux_sym_expr_binary_token18] = ACTIONS(1499), + [aux_sym_expr_binary_token19] = ACTIONS(1499), + [aux_sym_expr_binary_token20] = ACTIONS(1499), + [aux_sym_expr_binary_token21] = ACTIONS(1499), + [aux_sym_expr_binary_token22] = ACTIONS(1499), + [aux_sym_expr_binary_token23] = ACTIONS(1499), + [aux_sym_expr_binary_token24] = ACTIONS(1499), + [aux_sym_expr_binary_token25] = ACTIONS(1499), + [aux_sym_expr_binary_token26] = ACTIONS(1499), + [aux_sym_expr_binary_token27] = ACTIONS(1499), + [aux_sym_expr_binary_token28] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), + [aux_sym__immediate_decimal_token2] = ACTIONS(4668), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1499), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(247), }, [1391] = { + [sym__expr_parenthesized_immediate] = STATE(7413), [sym_comment] = STATE(1391), - [ts_builtin_sym_end] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [anon_sym_null] = ACTIONS(1591), - [aux_sym_cmd_identifier_token38] = ACTIONS(1591), - [aux_sym_cmd_identifier_token39] = ACTIONS(1591), - [aux_sym_cmd_identifier_token40] = ACTIONS(1591), - [sym__newline] = ACTIONS(1591), - [anon_sym_SEMI] = ACTIONS(1591), - [anon_sym_PIPE] = ACTIONS(1591), - [anon_sym_err_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_GT_PIPE] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), - [anon_sym_LBRACK] = ACTIONS(1591), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_DASH] = ACTIONS(1589), - [aux_sym_ctrl_match_token1] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1591), - [anon_sym_DOT_DOT2] = ACTIONS(1589), - [anon_sym_DOT] = ACTIONS(4611), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), - [aux_sym__immediate_decimal_token2] = ACTIONS(4613), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token3] = ACTIONS(1591), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(1591), - [aux_sym__val_number_token2] = ACTIONS(1591), - [aux_sym__val_number_token3] = ACTIONS(1591), - [anon_sym_0b] = ACTIONS(1589), - [anon_sym_0o] = ACTIONS(1589), - [anon_sym_0x] = ACTIONS(1589), - [sym_val_date] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym__str_single_quotes] = ACTIONS(1591), - [sym__str_back_ticks] = ACTIONS(1591), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), - [anon_sym_err_GT] = ACTIONS(1589), - [anon_sym_out_GT] = ACTIONS(1589), - [anon_sym_e_GT] = ACTIONS(1589), - [anon_sym_o_GT] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT] = ACTIONS(1589), - [anon_sym_err_GT_GT] = ACTIONS(1591), - [anon_sym_out_GT_GT] = ACTIONS(1591), - [anon_sym_e_GT_GT] = ACTIONS(1591), - [anon_sym_o_GT_GT] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), - [aux_sym_unquoted_token1] = ACTIONS(1589), - [aux_sym_unquoted_token2] = ACTIONS(1589), + [sym__newline] = ACTIONS(4743), + [anon_sym_SEMI] = ACTIONS(4743), + [anon_sym_PIPE] = ACTIONS(4743), + [anon_sym_err_GT_PIPE] = ACTIONS(4743), + [anon_sym_out_GT_PIPE] = ACTIONS(4743), + [anon_sym_e_GT_PIPE] = ACTIONS(4743), + [anon_sym_o_GT_PIPE] = ACTIONS(4743), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4743), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4743), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4743), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4743), + [anon_sym_RPAREN] = ACTIONS(4743), + [anon_sym_DASH_DASH] = ACTIONS(4743), + [anon_sym_DASH] = ACTIONS(4745), + [aux_sym_ctrl_match_token1] = ACTIONS(4743), + [anon_sym_RBRACE] = ACTIONS(4743), + [anon_sym_EQ_GT] = ACTIONS(4743), + [anon_sym_LPAREN2] = ACTIONS(3914), + [aux_sym_expr_binary_token1] = ACTIONS(4743), + [aux_sym_expr_binary_token2] = ACTIONS(4743), + [aux_sym_expr_binary_token3] = ACTIONS(4743), + [aux_sym_expr_binary_token4] = ACTIONS(4743), + [aux_sym_expr_binary_token5] = ACTIONS(4743), + [aux_sym_expr_binary_token6] = ACTIONS(4743), + [aux_sym_expr_binary_token7] = ACTIONS(4743), + [aux_sym_expr_binary_token8] = ACTIONS(4743), + [aux_sym_expr_binary_token9] = ACTIONS(4743), + [aux_sym_expr_binary_token10] = ACTIONS(4743), + [aux_sym_expr_binary_token11] = ACTIONS(4743), + [aux_sym_expr_binary_token12] = ACTIONS(4743), + [aux_sym_expr_binary_token13] = ACTIONS(4743), + [aux_sym_expr_binary_token14] = ACTIONS(4743), + [aux_sym_expr_binary_token15] = ACTIONS(4743), + [aux_sym_expr_binary_token16] = ACTIONS(4743), + [aux_sym_expr_binary_token17] = ACTIONS(4743), + [aux_sym_expr_binary_token18] = ACTIONS(4743), + [aux_sym_expr_binary_token19] = ACTIONS(4743), + [aux_sym_expr_binary_token20] = ACTIONS(4743), + [aux_sym_expr_binary_token21] = ACTIONS(4743), + [aux_sym_expr_binary_token22] = ACTIONS(4743), + [aux_sym_expr_binary_token23] = ACTIONS(4743), + [aux_sym_expr_binary_token24] = ACTIONS(4743), + [aux_sym_expr_binary_token25] = ACTIONS(4743), + [aux_sym_expr_binary_token26] = ACTIONS(4743), + [aux_sym_expr_binary_token27] = ACTIONS(4743), + [aux_sym_expr_binary_token28] = ACTIONS(4743), + [anon_sym_err_GT] = ACTIONS(4745), + [anon_sym_out_GT] = ACTIONS(4745), + [anon_sym_e_GT] = ACTIONS(4745), + [anon_sym_o_GT] = ACTIONS(4745), + [anon_sym_err_PLUSout_GT] = ACTIONS(4745), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4745), + [anon_sym_o_PLUSe_GT] = ACTIONS(4745), + [anon_sym_e_PLUSo_GT] = ACTIONS(4745), + [anon_sym_err_GT_GT] = ACTIONS(4743), + [anon_sym_out_GT_GT] = ACTIONS(4743), + [anon_sym_e_GT_GT] = ACTIONS(4743), + [anon_sym_o_GT_GT] = ACTIONS(4743), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4743), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4743), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4743), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4743), [anon_sym_POUND] = ACTIONS(247), }, [1392] = { + [sym__expr_parenthesized_immediate] = STATE(7413), [sym_comment] = STATE(1392), - [ts_builtin_sym_end] = ACTIONS(972), - [anon_sym_EQ] = ACTIONS(970), - [anon_sym_PLUS_EQ] = ACTIONS(972), - [anon_sym_DASH_EQ] = ACTIONS(972), - [anon_sym_STAR_EQ] = ACTIONS(972), - [anon_sym_SLASH_EQ] = ACTIONS(972), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(972), - [sym__newline] = ACTIONS(972), - [anon_sym_SEMI] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_err_GT_PIPE] = ACTIONS(972), - [anon_sym_out_GT_PIPE] = ACTIONS(972), - [anon_sym_e_GT_PIPE] = ACTIONS(972), - [anon_sym_o_GT_PIPE] = ACTIONS(972), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(972), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(972), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(972), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(972), - [anon_sym_QMARK2] = ACTIONS(4615), - [aux_sym_expr_binary_token1] = ACTIONS(972), - [aux_sym_expr_binary_token2] = ACTIONS(972), - [aux_sym_expr_binary_token3] = ACTIONS(972), - [aux_sym_expr_binary_token4] = ACTIONS(972), - [aux_sym_expr_binary_token5] = ACTIONS(972), - [aux_sym_expr_binary_token6] = ACTIONS(972), - [aux_sym_expr_binary_token7] = ACTIONS(972), - [aux_sym_expr_binary_token8] = ACTIONS(972), - [aux_sym_expr_binary_token9] = ACTIONS(972), - [aux_sym_expr_binary_token10] = ACTIONS(972), - [aux_sym_expr_binary_token11] = ACTIONS(972), - [aux_sym_expr_binary_token12] = ACTIONS(972), - [aux_sym_expr_binary_token13] = ACTIONS(972), - [aux_sym_expr_binary_token14] = ACTIONS(972), - [aux_sym_expr_binary_token15] = ACTIONS(972), - [aux_sym_expr_binary_token16] = ACTIONS(972), - [aux_sym_expr_binary_token17] = ACTIONS(972), - [aux_sym_expr_binary_token18] = ACTIONS(972), - [aux_sym_expr_binary_token19] = ACTIONS(972), - [aux_sym_expr_binary_token20] = ACTIONS(972), - [aux_sym_expr_binary_token21] = ACTIONS(972), - [aux_sym_expr_binary_token22] = ACTIONS(972), - [aux_sym_expr_binary_token23] = ACTIONS(972), - [aux_sym_expr_binary_token24] = ACTIONS(972), - [aux_sym_expr_binary_token25] = ACTIONS(972), - [aux_sym_expr_binary_token26] = ACTIONS(972), - [aux_sym_expr_binary_token27] = ACTIONS(972), - [aux_sym_expr_binary_token28] = ACTIONS(972), - [anon_sym_DOT_DOT2] = ACTIONS(970), - [anon_sym_DOT] = ACTIONS(970), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(972), - [anon_sym_DOT_DOT_LT2] = ACTIONS(972), - [anon_sym_err_GT] = ACTIONS(970), - [anon_sym_out_GT] = ACTIONS(970), - [anon_sym_e_GT] = ACTIONS(970), - [anon_sym_o_GT] = ACTIONS(970), - [anon_sym_err_PLUSout_GT] = ACTIONS(970), - [anon_sym_out_PLUSerr_GT] = ACTIONS(970), - [anon_sym_o_PLUSe_GT] = ACTIONS(970), - [anon_sym_e_PLUSo_GT] = ACTIONS(970), - [anon_sym_err_GT_GT] = ACTIONS(972), - [anon_sym_out_GT_GT] = ACTIONS(972), - [anon_sym_e_GT_GT] = ACTIONS(972), - [anon_sym_o_GT_GT] = ACTIONS(972), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(972), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(972), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(972), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(972), + [sym__newline] = ACTIONS(4743), + [anon_sym_SEMI] = ACTIONS(4743), + [anon_sym_PIPE] = ACTIONS(4743), + [anon_sym_err_GT_PIPE] = ACTIONS(4743), + [anon_sym_out_GT_PIPE] = ACTIONS(4743), + [anon_sym_e_GT_PIPE] = ACTIONS(4743), + [anon_sym_o_GT_PIPE] = ACTIONS(4743), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4743), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4743), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4743), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4743), + [anon_sym_RPAREN] = ACTIONS(4743), + [anon_sym_DASH_DASH] = ACTIONS(4743), + [anon_sym_DASH] = ACTIONS(4745), + [aux_sym_ctrl_match_token1] = ACTIONS(4743), + [anon_sym_RBRACE] = ACTIONS(4743), + [anon_sym_EQ_GT] = ACTIONS(4743), + [anon_sym_LPAREN2] = ACTIONS(3914), + [aux_sym_expr_binary_token1] = ACTIONS(4743), + [aux_sym_expr_binary_token2] = ACTIONS(4743), + [aux_sym_expr_binary_token3] = ACTIONS(4743), + [aux_sym_expr_binary_token4] = ACTIONS(4743), + [aux_sym_expr_binary_token5] = ACTIONS(4743), + [aux_sym_expr_binary_token6] = ACTIONS(4743), + [aux_sym_expr_binary_token7] = ACTIONS(4743), + [aux_sym_expr_binary_token8] = ACTIONS(4743), + [aux_sym_expr_binary_token9] = ACTIONS(4743), + [aux_sym_expr_binary_token10] = ACTIONS(4743), + [aux_sym_expr_binary_token11] = ACTIONS(4743), + [aux_sym_expr_binary_token12] = ACTIONS(4743), + [aux_sym_expr_binary_token13] = ACTIONS(4743), + [aux_sym_expr_binary_token14] = ACTIONS(4743), + [aux_sym_expr_binary_token15] = ACTIONS(4743), + [aux_sym_expr_binary_token16] = ACTIONS(4743), + [aux_sym_expr_binary_token17] = ACTIONS(4743), + [aux_sym_expr_binary_token18] = ACTIONS(4743), + [aux_sym_expr_binary_token19] = ACTIONS(4743), + [aux_sym_expr_binary_token20] = ACTIONS(4743), + [aux_sym_expr_binary_token21] = ACTIONS(4743), + [aux_sym_expr_binary_token22] = ACTIONS(4743), + [aux_sym_expr_binary_token23] = ACTIONS(4743), + [aux_sym_expr_binary_token24] = ACTIONS(4743), + [aux_sym_expr_binary_token25] = ACTIONS(4743), + [aux_sym_expr_binary_token26] = ACTIONS(4743), + [aux_sym_expr_binary_token27] = ACTIONS(4743), + [aux_sym_expr_binary_token28] = ACTIONS(4743), + [anon_sym_err_GT] = ACTIONS(4745), + [anon_sym_out_GT] = ACTIONS(4745), + [anon_sym_e_GT] = ACTIONS(4745), + [anon_sym_o_GT] = ACTIONS(4745), + [anon_sym_err_PLUSout_GT] = ACTIONS(4745), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4745), + [anon_sym_o_PLUSe_GT] = ACTIONS(4745), + [anon_sym_e_PLUSo_GT] = ACTIONS(4745), + [anon_sym_err_GT_GT] = ACTIONS(4743), + [anon_sym_out_GT_GT] = ACTIONS(4743), + [anon_sym_e_GT_GT] = ACTIONS(4743), + [anon_sym_o_GT_GT] = ACTIONS(4743), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4743), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4743), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4743), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4743), [anon_sym_POUND] = ACTIONS(247), }, [1393] = { - [sym_cell_path] = STATE(1627), - [sym_path] = STATE(1597), + [sym__expr_parenthesized_immediate] = STATE(7413), [sym_comment] = STATE(1393), - [aux_sym_cell_path_repeat1] = STATE(1440), - [ts_builtin_sym_end] = ACTIONS(947), - [anon_sym_true] = ACTIONS(947), - [anon_sym_false] = ACTIONS(947), - [anon_sym_null] = ACTIONS(947), - [aux_sym_cmd_identifier_token38] = ACTIONS(947), - [aux_sym_cmd_identifier_token39] = ACTIONS(947), - [aux_sym_cmd_identifier_token40] = ACTIONS(947), - [sym__newline] = ACTIONS(947), - [anon_sym_SEMI] = ACTIONS(947), - [anon_sym_PIPE] = ACTIONS(947), - [anon_sym_err_GT_PIPE] = ACTIONS(947), - [anon_sym_out_GT_PIPE] = ACTIONS(947), - [anon_sym_e_GT_PIPE] = ACTIONS(947), - [anon_sym_o_GT_PIPE] = ACTIONS(947), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(947), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(947), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(947), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_DOLLAR] = ACTIONS(945), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(945), - [aux_sym_ctrl_match_token1] = ACTIONS(947), - [anon_sym_DOT_DOT] = ACTIONS(945), - [anon_sym_DOT_DOT2] = ACTIONS(945), - [anon_sym_DOT] = ACTIONS(4617), - [anon_sym_DOT_DOT_EQ] = ACTIONS(945), - [anon_sym_DOT_DOT_LT] = ACTIONS(945), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(947), - [anon_sym_DOT_DOT_LT2] = ACTIONS(947), - [aux_sym__val_number_decimal_token1] = ACTIONS(945), - [aux_sym__val_number_decimal_token2] = ACTIONS(947), - [aux_sym__val_number_decimal_token3] = ACTIONS(947), - [aux_sym__val_number_decimal_token4] = ACTIONS(947), - [aux_sym__val_number_token1] = ACTIONS(947), - [aux_sym__val_number_token2] = ACTIONS(947), - [aux_sym__val_number_token3] = ACTIONS(947), - [anon_sym_0b] = ACTIONS(945), - [anon_sym_0o] = ACTIONS(945), - [anon_sym_0x] = ACTIONS(945), - [sym_val_date] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(947), - [sym__str_single_quotes] = ACTIONS(947), - [sym__str_back_ticks] = ACTIONS(947), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(947), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(947), - [anon_sym_err_GT] = ACTIONS(945), - [anon_sym_out_GT] = ACTIONS(945), - [anon_sym_e_GT] = ACTIONS(945), - [anon_sym_o_GT] = ACTIONS(945), - [anon_sym_err_PLUSout_GT] = ACTIONS(945), - [anon_sym_out_PLUSerr_GT] = ACTIONS(945), - [anon_sym_o_PLUSe_GT] = ACTIONS(945), - [anon_sym_e_PLUSo_GT] = ACTIONS(945), - [anon_sym_err_GT_GT] = ACTIONS(947), - [anon_sym_out_GT_GT] = ACTIONS(947), - [anon_sym_e_GT_GT] = ACTIONS(947), - [anon_sym_o_GT_GT] = ACTIONS(947), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(947), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(947), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(947), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(947), - [aux_sym_unquoted_token1] = ACTIONS(945), + [sym__newline] = ACTIONS(4743), + [anon_sym_SEMI] = ACTIONS(4743), + [anon_sym_PIPE] = ACTIONS(4743), + [anon_sym_err_GT_PIPE] = ACTIONS(4743), + [anon_sym_out_GT_PIPE] = ACTIONS(4743), + [anon_sym_e_GT_PIPE] = ACTIONS(4743), + [anon_sym_o_GT_PIPE] = ACTIONS(4743), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4743), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4743), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4743), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4743), + [anon_sym_RPAREN] = ACTIONS(4743), + [anon_sym_DASH_DASH] = ACTIONS(4743), + [anon_sym_DASH] = ACTIONS(4745), + [aux_sym_ctrl_match_token1] = ACTIONS(4743), + [anon_sym_RBRACE] = ACTIONS(4743), + [anon_sym_EQ_GT] = ACTIONS(4743), + [anon_sym_LPAREN2] = ACTIONS(3914), + [aux_sym_expr_binary_token1] = ACTIONS(4743), + [aux_sym_expr_binary_token2] = ACTIONS(4743), + [aux_sym_expr_binary_token3] = ACTIONS(4743), + [aux_sym_expr_binary_token4] = ACTIONS(4743), + [aux_sym_expr_binary_token5] = ACTIONS(4743), + [aux_sym_expr_binary_token6] = ACTIONS(4743), + [aux_sym_expr_binary_token7] = ACTIONS(4743), + [aux_sym_expr_binary_token8] = ACTIONS(4743), + [aux_sym_expr_binary_token9] = ACTIONS(4743), + [aux_sym_expr_binary_token10] = ACTIONS(4743), + [aux_sym_expr_binary_token11] = ACTIONS(4743), + [aux_sym_expr_binary_token12] = ACTIONS(4743), + [aux_sym_expr_binary_token13] = ACTIONS(4743), + [aux_sym_expr_binary_token14] = ACTIONS(4743), + [aux_sym_expr_binary_token15] = ACTIONS(4743), + [aux_sym_expr_binary_token16] = ACTIONS(4743), + [aux_sym_expr_binary_token17] = ACTIONS(4743), + [aux_sym_expr_binary_token18] = ACTIONS(4743), + [aux_sym_expr_binary_token19] = ACTIONS(4743), + [aux_sym_expr_binary_token20] = ACTIONS(4743), + [aux_sym_expr_binary_token21] = ACTIONS(4743), + [aux_sym_expr_binary_token22] = ACTIONS(4743), + [aux_sym_expr_binary_token23] = ACTIONS(4743), + [aux_sym_expr_binary_token24] = ACTIONS(4743), + [aux_sym_expr_binary_token25] = ACTIONS(4743), + [aux_sym_expr_binary_token26] = ACTIONS(4743), + [aux_sym_expr_binary_token27] = ACTIONS(4743), + [aux_sym_expr_binary_token28] = ACTIONS(4743), + [anon_sym_err_GT] = ACTIONS(4745), + [anon_sym_out_GT] = ACTIONS(4745), + [anon_sym_e_GT] = ACTIONS(4745), + [anon_sym_o_GT] = ACTIONS(4745), + [anon_sym_err_PLUSout_GT] = ACTIONS(4745), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4745), + [anon_sym_o_PLUSe_GT] = ACTIONS(4745), + [anon_sym_e_PLUSo_GT] = ACTIONS(4745), + [anon_sym_err_GT_GT] = ACTIONS(4743), + [anon_sym_out_GT_GT] = ACTIONS(4743), + [anon_sym_e_GT_GT] = ACTIONS(4743), + [anon_sym_o_GT_GT] = ACTIONS(4743), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4743), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4743), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4743), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4743), [anon_sym_POUND] = ACTIONS(247), }, [1394] = { + [sym__expr_parenthesized_immediate] = STATE(7413), [sym_comment] = STATE(1394), - [ts_builtin_sym_end] = ACTIONS(982), - [anon_sym_EQ] = ACTIONS(980), - [anon_sym_PLUS_EQ] = ACTIONS(982), - [anon_sym_DASH_EQ] = ACTIONS(982), - [anon_sym_STAR_EQ] = ACTIONS(982), - [anon_sym_SLASH_EQ] = ACTIONS(982), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(982), - [sym__newline] = ACTIONS(982), - [anon_sym_SEMI] = ACTIONS(982), - [anon_sym_PIPE] = ACTIONS(982), - [anon_sym_err_GT_PIPE] = ACTIONS(982), - [anon_sym_out_GT_PIPE] = ACTIONS(982), - [anon_sym_e_GT_PIPE] = ACTIONS(982), - [anon_sym_o_GT_PIPE] = ACTIONS(982), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(982), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(982), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(982), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(982), - [anon_sym_QMARK2] = ACTIONS(4619), - [aux_sym_expr_binary_token1] = ACTIONS(982), - [aux_sym_expr_binary_token2] = ACTIONS(982), - [aux_sym_expr_binary_token3] = ACTIONS(982), - [aux_sym_expr_binary_token4] = ACTIONS(982), - [aux_sym_expr_binary_token5] = ACTIONS(982), - [aux_sym_expr_binary_token6] = ACTIONS(982), - [aux_sym_expr_binary_token7] = ACTIONS(982), - [aux_sym_expr_binary_token8] = ACTIONS(982), - [aux_sym_expr_binary_token9] = ACTIONS(982), - [aux_sym_expr_binary_token10] = ACTIONS(982), - [aux_sym_expr_binary_token11] = ACTIONS(982), - [aux_sym_expr_binary_token12] = ACTIONS(982), - [aux_sym_expr_binary_token13] = ACTIONS(982), - [aux_sym_expr_binary_token14] = ACTIONS(982), - [aux_sym_expr_binary_token15] = ACTIONS(982), - [aux_sym_expr_binary_token16] = ACTIONS(982), - [aux_sym_expr_binary_token17] = ACTIONS(982), - [aux_sym_expr_binary_token18] = ACTIONS(982), - [aux_sym_expr_binary_token19] = ACTIONS(982), - [aux_sym_expr_binary_token20] = ACTIONS(982), - [aux_sym_expr_binary_token21] = ACTIONS(982), - [aux_sym_expr_binary_token22] = ACTIONS(982), - [aux_sym_expr_binary_token23] = ACTIONS(982), - [aux_sym_expr_binary_token24] = ACTIONS(982), - [aux_sym_expr_binary_token25] = ACTIONS(982), - [aux_sym_expr_binary_token26] = ACTIONS(982), - [aux_sym_expr_binary_token27] = ACTIONS(982), - [aux_sym_expr_binary_token28] = ACTIONS(982), - [anon_sym_DOT_DOT2] = ACTIONS(980), - [anon_sym_DOT] = ACTIONS(980), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(982), - [anon_sym_DOT_DOT_LT2] = ACTIONS(982), - [anon_sym_err_GT] = ACTIONS(980), - [anon_sym_out_GT] = ACTIONS(980), - [anon_sym_e_GT] = ACTIONS(980), - [anon_sym_o_GT] = ACTIONS(980), - [anon_sym_err_PLUSout_GT] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT] = ACTIONS(980), - [anon_sym_o_PLUSe_GT] = ACTIONS(980), - [anon_sym_e_PLUSo_GT] = ACTIONS(980), - [anon_sym_err_GT_GT] = ACTIONS(982), - [anon_sym_out_GT_GT] = ACTIONS(982), - [anon_sym_e_GT_GT] = ACTIONS(982), - [anon_sym_o_GT_GT] = ACTIONS(982), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(982), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(982), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(982), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(982), + [sym__newline] = ACTIONS(4743), + [anon_sym_SEMI] = ACTIONS(4743), + [anon_sym_PIPE] = ACTIONS(4743), + [anon_sym_err_GT_PIPE] = ACTIONS(4743), + [anon_sym_out_GT_PIPE] = ACTIONS(4743), + [anon_sym_e_GT_PIPE] = ACTIONS(4743), + [anon_sym_o_GT_PIPE] = ACTIONS(4743), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4743), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4743), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4743), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4743), + [anon_sym_RPAREN] = ACTIONS(4743), + [anon_sym_DASH_DASH] = ACTIONS(4743), + [anon_sym_DASH] = ACTIONS(4745), + [aux_sym_ctrl_match_token1] = ACTIONS(4743), + [anon_sym_RBRACE] = ACTIONS(4743), + [anon_sym_EQ_GT] = ACTIONS(4743), + [anon_sym_LPAREN2] = ACTIONS(3914), + [aux_sym_expr_binary_token1] = ACTIONS(4743), + [aux_sym_expr_binary_token2] = ACTIONS(4743), + [aux_sym_expr_binary_token3] = ACTIONS(4743), + [aux_sym_expr_binary_token4] = ACTIONS(4743), + [aux_sym_expr_binary_token5] = ACTIONS(4743), + [aux_sym_expr_binary_token6] = ACTIONS(4743), + [aux_sym_expr_binary_token7] = ACTIONS(4743), + [aux_sym_expr_binary_token8] = ACTIONS(4743), + [aux_sym_expr_binary_token9] = ACTIONS(4743), + [aux_sym_expr_binary_token10] = ACTIONS(4743), + [aux_sym_expr_binary_token11] = ACTIONS(4743), + [aux_sym_expr_binary_token12] = ACTIONS(4743), + [aux_sym_expr_binary_token13] = ACTIONS(4743), + [aux_sym_expr_binary_token14] = ACTIONS(4743), + [aux_sym_expr_binary_token15] = ACTIONS(4743), + [aux_sym_expr_binary_token16] = ACTIONS(4743), + [aux_sym_expr_binary_token17] = ACTIONS(4743), + [aux_sym_expr_binary_token18] = ACTIONS(4743), + [aux_sym_expr_binary_token19] = ACTIONS(4743), + [aux_sym_expr_binary_token20] = ACTIONS(4743), + [aux_sym_expr_binary_token21] = ACTIONS(4743), + [aux_sym_expr_binary_token22] = ACTIONS(4743), + [aux_sym_expr_binary_token23] = ACTIONS(4743), + [aux_sym_expr_binary_token24] = ACTIONS(4743), + [aux_sym_expr_binary_token25] = ACTIONS(4743), + [aux_sym_expr_binary_token26] = ACTIONS(4743), + [aux_sym_expr_binary_token27] = ACTIONS(4743), + [aux_sym_expr_binary_token28] = ACTIONS(4743), + [anon_sym_err_GT] = ACTIONS(4745), + [anon_sym_out_GT] = ACTIONS(4745), + [anon_sym_e_GT] = ACTIONS(4745), + [anon_sym_o_GT] = ACTIONS(4745), + [anon_sym_err_PLUSout_GT] = ACTIONS(4745), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4745), + [anon_sym_o_PLUSe_GT] = ACTIONS(4745), + [anon_sym_e_PLUSo_GT] = ACTIONS(4745), + [anon_sym_err_GT_GT] = ACTIONS(4743), + [anon_sym_out_GT_GT] = ACTIONS(4743), + [anon_sym_e_GT_GT] = ACTIONS(4743), + [anon_sym_o_GT_GT] = ACTIONS(4743), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4743), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4743), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4743), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4743), [anon_sym_POUND] = ACTIONS(247), }, [1395] = { - [sym__match_pattern_expression] = STATE(3315), - [sym__match_pattern_value] = STATE(3273), - [sym__match_pattern_list] = STATE(3277), - [sym__match_pattern_record] = STATE(3287), - [sym_expr_parenthesized] = STATE(3033), - [sym_val_range] = STATE(3273), - [sym__val_range] = STATE(7882), - [sym_val_nothing] = STATE(3288), - [sym_val_bool] = STATE(3213), - [sym_val_variable] = STATE(3034), - [sym_val_number] = STATE(3288), - [sym__val_number_decimal] = STATE(2800), - [sym__val_number] = STATE(3291), - [sym_val_duration] = STATE(3288), - [sym_val_filesize] = STATE(3288), - [sym_val_binary] = STATE(3288), - [sym_val_string] = STATE(3288), - [sym__str_double_quotes] = STATE(3297), - [sym_val_table] = STATE(3288), - [sym__unquoted_in_list] = STATE(3315), - [sym__unquoted_anonymous_prefix] = STATE(7802), [sym_comment] = STATE(1395), - [aux_sym__match_pattern_list_repeat1] = STATE(1395), - [anon_sym_true] = ACTIONS(4621), - [anon_sym_false] = ACTIONS(4621), - [anon_sym_null] = ACTIONS(4624), - [aux_sym_cmd_identifier_token38] = ACTIONS(4627), - [aux_sym_cmd_identifier_token39] = ACTIONS(4627), - [aux_sym_cmd_identifier_token40] = ACTIONS(4627), - [anon_sym_LBRACK] = ACTIONS(4630), - [anon_sym_RBRACK] = ACTIONS(4633), - [anon_sym_LPAREN] = ACTIONS(4635), - [anon_sym_DOLLAR] = ACTIONS(4638), - [aux_sym_ctrl_match_token1] = ACTIONS(4641), - [anon_sym_DOT_DOT] = ACTIONS(4644), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4647), - [anon_sym_DOT_DOT_LT] = ACTIONS(4647), - [aux_sym__val_number_decimal_token1] = ACTIONS(4650), - [aux_sym__val_number_decimal_token2] = ACTIONS(4653), - [aux_sym__val_number_decimal_token3] = ACTIONS(4656), - [aux_sym__val_number_decimal_token4] = ACTIONS(4659), - [aux_sym__val_number_token1] = ACTIONS(4662), - [aux_sym__val_number_token2] = ACTIONS(4662), - [aux_sym__val_number_token3] = ACTIONS(4662), - [anon_sym_0b] = ACTIONS(4665), - [anon_sym_0o] = ACTIONS(4668), - [anon_sym_0x] = ACTIONS(4668), - [sym_val_date] = ACTIONS(4671), - [anon_sym_DQUOTE] = ACTIONS(4674), - [sym__str_single_quotes] = ACTIONS(4677), - [sym__str_back_ticks] = ACTIONS(4677), - [anon_sym_err_GT] = ACTIONS(4680), - [anon_sym_out_GT] = ACTIONS(4680), - [anon_sym_e_GT] = ACTIONS(4680), - [anon_sym_o_GT] = ACTIONS(4680), - [anon_sym_err_PLUSout_GT] = ACTIONS(4680), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4680), - [anon_sym_o_PLUSe_GT] = ACTIONS(4680), - [anon_sym_e_PLUSo_GT] = ACTIONS(4680), - [anon_sym_err_GT_GT] = ACTIONS(4683), - [anon_sym_out_GT_GT] = ACTIONS(4683), - [anon_sym_e_GT_GT] = ACTIONS(4683), - [anon_sym_o_GT_GT] = ACTIONS(4683), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4683), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4683), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4683), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4683), - [aux_sym__unquoted_in_list_token1] = ACTIONS(4686), + [sym__newline] = ACTIONS(1639), + [anon_sym_SEMI] = ACTIONS(1641), + [anon_sym_PIPE] = ACTIONS(1641), + [anon_sym_err_GT_PIPE] = ACTIONS(1641), + [anon_sym_out_GT_PIPE] = ACTIONS(1641), + [anon_sym_e_GT_PIPE] = ACTIONS(1641), + [anon_sym_o_GT_PIPE] = ACTIONS(1641), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), + [anon_sym_RPAREN] = ACTIONS(1641), + [anon_sym_LPAREN2] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1641), + [anon_sym_DOT_DOT2] = ACTIONS(1639), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), + [sym_filesize_unit] = ACTIONS(1641), + [sym_duration_unit] = ACTIONS(1641), + [anon_sym_err_GT] = ACTIONS(1639), + [anon_sym_out_GT] = ACTIONS(1639), + [anon_sym_e_GT] = ACTIONS(1639), + [anon_sym_o_GT] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT] = ACTIONS(1639), + [anon_sym_err_GT_GT] = ACTIONS(1641), + [anon_sym_out_GT_GT] = ACTIONS(1641), + [anon_sym_e_GT_GT] = ACTIONS(1641), + [anon_sym_o_GT_GT] = ACTIONS(1641), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), + [aux_sym_unquoted_token2] = ACTIONS(1639), [anon_sym_POUND] = ACTIONS(247), }, [1396] = { [sym_comment] = STATE(1396), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [anon_sym_null] = ACTIONS(1591), - [aux_sym_cmd_identifier_token38] = ACTIONS(1591), - [aux_sym_cmd_identifier_token39] = ACTIONS(1591), - [aux_sym_cmd_identifier_token40] = ACTIONS(1591), - [sym__newline] = ACTIONS(1591), - [anon_sym_SEMI] = ACTIONS(1591), - [anon_sym_PIPE] = ACTIONS(1591), - [anon_sym_err_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_GT_PIPE] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), - [anon_sym_LBRACK] = ACTIONS(1591), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_RPAREN] = ACTIONS(1591), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_DASH] = ACTIONS(1589), - [aux_sym_ctrl_match_token1] = ACTIONS(1591), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1591), - [anon_sym_DOT_DOT2] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), - [aux_sym__immediate_decimal_token2] = ACTIONS(4381), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token3] = ACTIONS(1591), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(1591), - [aux_sym__val_number_token2] = ACTIONS(1591), - [aux_sym__val_number_token3] = ACTIONS(1591), - [anon_sym_0b] = ACTIONS(1589), - [anon_sym_0o] = ACTIONS(1589), - [anon_sym_0x] = ACTIONS(1589), - [sym_val_date] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym__str_single_quotes] = ACTIONS(1591), - [sym__str_back_ticks] = ACTIONS(1591), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), - [anon_sym_err_GT] = ACTIONS(1589), - [anon_sym_out_GT] = ACTIONS(1589), - [anon_sym_e_GT] = ACTIONS(1589), - [anon_sym_o_GT] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT] = ACTIONS(1589), - [anon_sym_err_GT_GT] = ACTIONS(1591), - [anon_sym_out_GT_GT] = ACTIONS(1591), - [anon_sym_e_GT_GT] = ACTIONS(1591), - [anon_sym_o_GT_GT] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), - [aux_sym_unquoted_token1] = ACTIONS(1589), - [aux_sym_unquoted_token2] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1707), + [anon_sym_false] = ACTIONS(1707), + [anon_sym_null] = ACTIONS(1707), + [aux_sym_cmd_identifier_token38] = ACTIONS(1707), + [aux_sym_cmd_identifier_token39] = ACTIONS(1707), + [aux_sym_cmd_identifier_token40] = ACTIONS(1707), + [sym__newline] = ACTIONS(1707), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_err_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_GT_PIPE] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), + [anon_sym_LBRACK] = ACTIONS(1707), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_RPAREN] = ACTIONS(1707), + [anon_sym_DOLLAR] = ACTIONS(1705), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1705), + [aux_sym_ctrl_match_token1] = ACTIONS(1707), + [anon_sym_RBRACE] = ACTIONS(1707), + [anon_sym_DOT_DOT] = ACTIONS(1705), + [anon_sym_LPAREN2] = ACTIONS(1707), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1707), + [anon_sym_DOT_DOT_LT] = ACTIONS(1707), + [aux_sym__val_number_decimal_token1] = ACTIONS(1705), + [aux_sym__val_number_decimal_token2] = ACTIONS(1707), + [aux_sym__val_number_decimal_token3] = ACTIONS(1707), + [aux_sym__val_number_decimal_token4] = ACTIONS(1707), + [aux_sym__val_number_token1] = ACTIONS(1707), + [aux_sym__val_number_token2] = ACTIONS(1707), + [aux_sym__val_number_token3] = ACTIONS(1707), + [anon_sym_0b] = ACTIONS(1705), + [anon_sym_0o] = ACTIONS(1705), + [anon_sym_0x] = ACTIONS(1705), + [sym_val_date] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1707), + [sym__str_single_quotes] = ACTIONS(1707), + [sym__str_back_ticks] = ACTIONS(1707), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1707), + [anon_sym_err_GT] = ACTIONS(1705), + [anon_sym_out_GT] = ACTIONS(1705), + [anon_sym_e_GT] = ACTIONS(1705), + [anon_sym_o_GT] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT] = ACTIONS(1705), + [anon_sym_err_GT_GT] = ACTIONS(1707), + [anon_sym_out_GT_GT] = ACTIONS(1707), + [anon_sym_e_GT_GT] = ACTIONS(1707), + [anon_sym_o_GT_GT] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), + [aux_sym_unquoted_token1] = ACTIONS(1705), + [aux_sym_unquoted_token2] = ACTIONS(1705), [anon_sym_POUND] = ACTIONS(247), }, [1397] = { + [sym__expr_parenthesized_immediate] = STATE(7413), [sym_comment] = STATE(1397), - [ts_builtin_sym_end] = ACTIONS(1587), - [anon_sym_true] = ACTIONS(1587), - [anon_sym_false] = ACTIONS(1587), - [anon_sym_null] = ACTIONS(1587), - [aux_sym_cmd_identifier_token38] = ACTIONS(1587), - [aux_sym_cmd_identifier_token39] = ACTIONS(1587), - [aux_sym_cmd_identifier_token40] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_DOLLAR] = ACTIONS(1585), - [anon_sym_DASH_DASH] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1585), - [aux_sym_ctrl_match_token1] = ACTIONS(1587), - [anon_sym_DOT_DOT] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1585), - [anon_sym_DOT_DOT_LT] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1587), - [aux_sym__val_number_decimal_token4] = ACTIONS(1587), - [aux_sym__val_number_token1] = ACTIONS(1587), - [aux_sym__val_number_token2] = ACTIONS(1587), - [aux_sym__val_number_token3] = ACTIONS(1587), - [anon_sym_0b] = ACTIONS(1585), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1587), - [anon_sym_0o] = ACTIONS(1585), - [anon_sym_0x] = ACTIONS(1585), - [sym_val_date] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1587), - [sym__str_single_quotes] = ACTIONS(1587), - [sym__str_back_ticks] = ACTIONS(1587), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1585), - [anon_sym_out_GT] = ACTIONS(1585), - [anon_sym_e_GT] = ACTIONS(1585), - [anon_sym_o_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT] = ACTIONS(1585), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), - [aux_sym_unquoted_token1] = ACTIONS(1585), - [aux_sym_unquoted_token2] = ACTIONS(1585), + [sym__newline] = ACTIONS(4743), + [anon_sym_SEMI] = ACTIONS(4743), + [anon_sym_PIPE] = ACTIONS(4743), + [anon_sym_err_GT_PIPE] = ACTIONS(4743), + [anon_sym_out_GT_PIPE] = ACTIONS(4743), + [anon_sym_e_GT_PIPE] = ACTIONS(4743), + [anon_sym_o_GT_PIPE] = ACTIONS(4743), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4743), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4743), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4743), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4743), + [anon_sym_RPAREN] = ACTIONS(4743), + [anon_sym_DASH_DASH] = ACTIONS(4743), + [anon_sym_DASH] = ACTIONS(4745), + [aux_sym_ctrl_match_token1] = ACTIONS(4743), + [anon_sym_RBRACE] = ACTIONS(4743), + [anon_sym_EQ_GT] = ACTIONS(4743), + [anon_sym_LPAREN2] = ACTIONS(3914), + [aux_sym_expr_binary_token1] = ACTIONS(4743), + [aux_sym_expr_binary_token2] = ACTIONS(4743), + [aux_sym_expr_binary_token3] = ACTIONS(4743), + [aux_sym_expr_binary_token4] = ACTIONS(4743), + [aux_sym_expr_binary_token5] = ACTIONS(4743), + [aux_sym_expr_binary_token6] = ACTIONS(4743), + [aux_sym_expr_binary_token7] = ACTIONS(4743), + [aux_sym_expr_binary_token8] = ACTIONS(4743), + [aux_sym_expr_binary_token9] = ACTIONS(4743), + [aux_sym_expr_binary_token10] = ACTIONS(4743), + [aux_sym_expr_binary_token11] = ACTIONS(4743), + [aux_sym_expr_binary_token12] = ACTIONS(4743), + [aux_sym_expr_binary_token13] = ACTIONS(4743), + [aux_sym_expr_binary_token14] = ACTIONS(4743), + [aux_sym_expr_binary_token15] = ACTIONS(4743), + [aux_sym_expr_binary_token16] = ACTIONS(4743), + [aux_sym_expr_binary_token17] = ACTIONS(4743), + [aux_sym_expr_binary_token18] = ACTIONS(4743), + [aux_sym_expr_binary_token19] = ACTIONS(4743), + [aux_sym_expr_binary_token20] = ACTIONS(4743), + [aux_sym_expr_binary_token21] = ACTIONS(4743), + [aux_sym_expr_binary_token22] = ACTIONS(4743), + [aux_sym_expr_binary_token23] = ACTIONS(4743), + [aux_sym_expr_binary_token24] = ACTIONS(4743), + [aux_sym_expr_binary_token25] = ACTIONS(4743), + [aux_sym_expr_binary_token26] = ACTIONS(4743), + [aux_sym_expr_binary_token27] = ACTIONS(4743), + [aux_sym_expr_binary_token28] = ACTIONS(4743), + [anon_sym_err_GT] = ACTIONS(4745), + [anon_sym_out_GT] = ACTIONS(4745), + [anon_sym_e_GT] = ACTIONS(4745), + [anon_sym_o_GT] = ACTIONS(4745), + [anon_sym_err_PLUSout_GT] = ACTIONS(4745), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4745), + [anon_sym_o_PLUSe_GT] = ACTIONS(4745), + [anon_sym_e_PLUSo_GT] = ACTIONS(4745), + [anon_sym_err_GT_GT] = ACTIONS(4743), + [anon_sym_out_GT_GT] = ACTIONS(4743), + [anon_sym_e_GT_GT] = ACTIONS(4743), + [anon_sym_o_GT_GT] = ACTIONS(4743), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4743), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4743), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4743), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4743), [anon_sym_POUND] = ACTIONS(247), }, [1398] = { - [sym_path] = STATE(1465), + [sym__expr_parenthesized_immediate] = STATE(7413), [sym_comment] = STATE(1398), - [aux_sym_cell_path_repeat1] = STATE(1400), - [anon_sym_true] = ACTIONS(953), - [anon_sym_false] = ACTIONS(953), - [anon_sym_null] = ACTIONS(953), - [aux_sym_cmd_identifier_token38] = ACTIONS(953), - [aux_sym_cmd_identifier_token39] = ACTIONS(953), - [aux_sym_cmd_identifier_token40] = ACTIONS(953), - [sym__newline] = ACTIONS(953), - [anon_sym_SEMI] = ACTIONS(953), - [anon_sym_PIPE] = ACTIONS(953), - [anon_sym_err_GT_PIPE] = ACTIONS(953), - [anon_sym_out_GT_PIPE] = ACTIONS(953), - [anon_sym_e_GT_PIPE] = ACTIONS(953), - [anon_sym_o_GT_PIPE] = ACTIONS(953), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(953), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(953), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(953), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_RPAREN] = ACTIONS(953), - [anon_sym_DOLLAR] = ACTIONS(951), - [anon_sym_DASH_DASH] = ACTIONS(953), - [anon_sym_DASH] = ACTIONS(951), - [aux_sym_ctrl_match_token1] = ACTIONS(953), - [anon_sym_RBRACE] = ACTIONS(953), - [anon_sym_DOT_DOT] = ACTIONS(951), - [anon_sym_DOT_DOT2] = ACTIONS(951), - [anon_sym_DOT] = ACTIONS(4377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(951), - [anon_sym_DOT_DOT_LT] = ACTIONS(951), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(953), - [anon_sym_DOT_DOT_LT2] = ACTIONS(953), - [aux_sym__val_number_decimal_token1] = ACTIONS(951), - [aux_sym__val_number_decimal_token2] = ACTIONS(953), - [aux_sym__val_number_decimal_token3] = ACTIONS(953), - [aux_sym__val_number_decimal_token4] = ACTIONS(953), - [aux_sym__val_number_token1] = ACTIONS(953), - [aux_sym__val_number_token2] = ACTIONS(953), - [aux_sym__val_number_token3] = ACTIONS(953), - [anon_sym_0b] = ACTIONS(951), - [anon_sym_0o] = ACTIONS(951), - [anon_sym_0x] = ACTIONS(951), - [sym_val_date] = ACTIONS(953), - [anon_sym_DQUOTE] = ACTIONS(953), - [sym__str_single_quotes] = ACTIONS(953), - [sym__str_back_ticks] = ACTIONS(953), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(953), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(953), - [anon_sym_err_GT] = ACTIONS(951), - [anon_sym_out_GT] = ACTIONS(951), - [anon_sym_e_GT] = ACTIONS(951), - [anon_sym_o_GT] = ACTIONS(951), - [anon_sym_err_PLUSout_GT] = ACTIONS(951), - [anon_sym_out_PLUSerr_GT] = ACTIONS(951), - [anon_sym_o_PLUSe_GT] = ACTIONS(951), - [anon_sym_e_PLUSo_GT] = ACTIONS(951), - [anon_sym_err_GT_GT] = ACTIONS(953), - [anon_sym_out_GT_GT] = ACTIONS(953), - [anon_sym_e_GT_GT] = ACTIONS(953), - [anon_sym_o_GT_GT] = ACTIONS(953), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(953), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(953), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(953), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(953), - [aux_sym_unquoted_token1] = ACTIONS(951), + [sym__newline] = ACTIONS(4743), + [anon_sym_SEMI] = ACTIONS(4743), + [anon_sym_PIPE] = ACTIONS(4743), + [anon_sym_err_GT_PIPE] = ACTIONS(4743), + [anon_sym_out_GT_PIPE] = ACTIONS(4743), + [anon_sym_e_GT_PIPE] = ACTIONS(4743), + [anon_sym_o_GT_PIPE] = ACTIONS(4743), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4743), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4743), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4743), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4743), + [anon_sym_RPAREN] = ACTIONS(4743), + [anon_sym_DASH_DASH] = ACTIONS(4743), + [anon_sym_DASH] = ACTIONS(4745), + [aux_sym_ctrl_match_token1] = ACTIONS(4743), + [anon_sym_RBRACE] = ACTIONS(4743), + [anon_sym_EQ_GT] = ACTIONS(4743), + [anon_sym_LPAREN2] = ACTIONS(3914), + [aux_sym_expr_binary_token1] = ACTIONS(4743), + [aux_sym_expr_binary_token2] = ACTIONS(4743), + [aux_sym_expr_binary_token3] = ACTIONS(4743), + [aux_sym_expr_binary_token4] = ACTIONS(4743), + [aux_sym_expr_binary_token5] = ACTIONS(4743), + [aux_sym_expr_binary_token6] = ACTIONS(4743), + [aux_sym_expr_binary_token7] = ACTIONS(4743), + [aux_sym_expr_binary_token8] = ACTIONS(4743), + [aux_sym_expr_binary_token9] = ACTIONS(4743), + [aux_sym_expr_binary_token10] = ACTIONS(4743), + [aux_sym_expr_binary_token11] = ACTIONS(4743), + [aux_sym_expr_binary_token12] = ACTIONS(4743), + [aux_sym_expr_binary_token13] = ACTIONS(4743), + [aux_sym_expr_binary_token14] = ACTIONS(4743), + [aux_sym_expr_binary_token15] = ACTIONS(4743), + [aux_sym_expr_binary_token16] = ACTIONS(4743), + [aux_sym_expr_binary_token17] = ACTIONS(4743), + [aux_sym_expr_binary_token18] = ACTIONS(4743), + [aux_sym_expr_binary_token19] = ACTIONS(4743), + [aux_sym_expr_binary_token20] = ACTIONS(4743), + [aux_sym_expr_binary_token21] = ACTIONS(4743), + [aux_sym_expr_binary_token22] = ACTIONS(4743), + [aux_sym_expr_binary_token23] = ACTIONS(4743), + [aux_sym_expr_binary_token24] = ACTIONS(4743), + [aux_sym_expr_binary_token25] = ACTIONS(4743), + [aux_sym_expr_binary_token26] = ACTIONS(4743), + [aux_sym_expr_binary_token27] = ACTIONS(4743), + [aux_sym_expr_binary_token28] = ACTIONS(4743), + [anon_sym_err_GT] = ACTIONS(4745), + [anon_sym_out_GT] = ACTIONS(4745), + [anon_sym_e_GT] = ACTIONS(4745), + [anon_sym_o_GT] = ACTIONS(4745), + [anon_sym_err_PLUSout_GT] = ACTIONS(4745), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4745), + [anon_sym_o_PLUSe_GT] = ACTIONS(4745), + [anon_sym_e_PLUSo_GT] = ACTIONS(4745), + [anon_sym_err_GT_GT] = ACTIONS(4743), + [anon_sym_out_GT_GT] = ACTIONS(4743), + [anon_sym_e_GT_GT] = ACTIONS(4743), + [anon_sym_o_GT_GT] = ACTIONS(4743), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4743), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4743), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4743), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4743), [anon_sym_POUND] = ACTIONS(247), }, [1399] = { + [sym__expr_parenthesized_immediate] = STATE(7413), [sym_comment] = STATE(1399), - [anon_sym_EQ] = ACTIONS(994), - [anon_sym_PLUS_EQ] = ACTIONS(996), - [anon_sym_DASH_EQ] = ACTIONS(996), - [anon_sym_STAR_EQ] = ACTIONS(996), - [anon_sym_SLASH_EQ] = ACTIONS(996), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(996), - [sym__newline] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_RPAREN] = ACTIONS(996), - [aux_sym_ctrl_match_token1] = ACTIONS(996), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(996), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(996), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(996), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(996), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(996), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(996), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(996), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(996), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(996), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(996), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(996), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(996), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(996), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(996), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(996), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(996), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(996), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(996), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(996), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(996), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(996), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(996), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(996), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(996), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(996), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(996), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(996), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(996), - [anon_sym_DOT_DOT2] = ACTIONS(994), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), - [anon_sym_DOT_DOT_LT2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(994), - [anon_sym_out_GT] = ACTIONS(994), - [anon_sym_e_GT] = ACTIONS(994), - [anon_sym_o_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT] = ACTIONS(994), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [sym__newline] = ACTIONS(4743), + [anon_sym_SEMI] = ACTIONS(4743), + [anon_sym_PIPE] = ACTIONS(4743), + [anon_sym_err_GT_PIPE] = ACTIONS(4743), + [anon_sym_out_GT_PIPE] = ACTIONS(4743), + [anon_sym_e_GT_PIPE] = ACTIONS(4743), + [anon_sym_o_GT_PIPE] = ACTIONS(4743), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4743), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4743), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4743), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4743), + [anon_sym_RPAREN] = ACTIONS(4743), + [anon_sym_DASH_DASH] = ACTIONS(4743), + [anon_sym_DASH] = ACTIONS(4745), + [aux_sym_ctrl_match_token1] = ACTIONS(4743), + [anon_sym_RBRACE] = ACTIONS(4743), + [anon_sym_EQ_GT] = ACTIONS(4743), + [anon_sym_LPAREN2] = ACTIONS(3914), + [aux_sym_expr_binary_token1] = ACTIONS(4743), + [aux_sym_expr_binary_token2] = ACTIONS(4743), + [aux_sym_expr_binary_token3] = ACTIONS(4743), + [aux_sym_expr_binary_token4] = ACTIONS(4743), + [aux_sym_expr_binary_token5] = ACTIONS(4743), + [aux_sym_expr_binary_token6] = ACTIONS(4743), + [aux_sym_expr_binary_token7] = ACTIONS(4743), + [aux_sym_expr_binary_token8] = ACTIONS(4743), + [aux_sym_expr_binary_token9] = ACTIONS(4743), + [aux_sym_expr_binary_token10] = ACTIONS(4743), + [aux_sym_expr_binary_token11] = ACTIONS(4743), + [aux_sym_expr_binary_token12] = ACTIONS(4743), + [aux_sym_expr_binary_token13] = ACTIONS(4743), + [aux_sym_expr_binary_token14] = ACTIONS(4743), + [aux_sym_expr_binary_token15] = ACTIONS(4743), + [aux_sym_expr_binary_token16] = ACTIONS(4743), + [aux_sym_expr_binary_token17] = ACTIONS(4743), + [aux_sym_expr_binary_token18] = ACTIONS(4743), + [aux_sym_expr_binary_token19] = ACTIONS(4743), + [aux_sym_expr_binary_token20] = ACTIONS(4743), + [aux_sym_expr_binary_token21] = ACTIONS(4743), + [aux_sym_expr_binary_token22] = ACTIONS(4743), + [aux_sym_expr_binary_token23] = ACTIONS(4743), + [aux_sym_expr_binary_token24] = ACTIONS(4743), + [aux_sym_expr_binary_token25] = ACTIONS(4743), + [aux_sym_expr_binary_token26] = ACTIONS(4743), + [aux_sym_expr_binary_token27] = ACTIONS(4743), + [aux_sym_expr_binary_token28] = ACTIONS(4743), + [anon_sym_err_GT] = ACTIONS(4745), + [anon_sym_out_GT] = ACTIONS(4745), + [anon_sym_e_GT] = ACTIONS(4745), + [anon_sym_o_GT] = ACTIONS(4745), + [anon_sym_err_PLUSout_GT] = ACTIONS(4745), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4745), + [anon_sym_o_PLUSe_GT] = ACTIONS(4745), + [anon_sym_e_PLUSo_GT] = ACTIONS(4745), + [anon_sym_err_GT_GT] = ACTIONS(4743), + [anon_sym_out_GT_GT] = ACTIONS(4743), + [anon_sym_e_GT_GT] = ACTIONS(4743), + [anon_sym_o_GT_GT] = ACTIONS(4743), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4743), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4743), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4743), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4743), [anon_sym_POUND] = ACTIONS(247), }, [1400] = { - [sym_path] = STATE(1465), [sym_comment] = STATE(1400), - [aux_sym_cell_path_repeat1] = STATE(1400), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_null] = ACTIONS(957), - [aux_sym_cmd_identifier_token38] = ACTIONS(957), - [aux_sym_cmd_identifier_token39] = ACTIONS(957), - [aux_sym_cmd_identifier_token40] = ACTIONS(957), - [sym__newline] = ACTIONS(957), - [anon_sym_SEMI] = ACTIONS(957), - [anon_sym_PIPE] = ACTIONS(957), - [anon_sym_err_GT_PIPE] = ACTIONS(957), - [anon_sym_out_GT_PIPE] = ACTIONS(957), - [anon_sym_e_GT_PIPE] = ACTIONS(957), - [anon_sym_o_GT_PIPE] = ACTIONS(957), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(957), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(957), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(957), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(957), - [anon_sym_LBRACK] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(957), - [anon_sym_RPAREN] = ACTIONS(957), - [anon_sym_DOLLAR] = ACTIONS(955), - [anon_sym_DASH_DASH] = ACTIONS(957), - [anon_sym_DASH] = ACTIONS(955), - [aux_sym_ctrl_match_token1] = ACTIONS(957), - [anon_sym_RBRACE] = ACTIONS(957), - [anon_sym_DOT_DOT] = ACTIONS(955), - [anon_sym_DOT_DOT2] = ACTIONS(955), - [anon_sym_DOT] = ACTIONS(4689), - [anon_sym_DOT_DOT_EQ] = ACTIONS(955), - [anon_sym_DOT_DOT_LT] = ACTIONS(955), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(957), - [anon_sym_DOT_DOT_LT2] = ACTIONS(957), - [aux_sym__val_number_decimal_token1] = ACTIONS(955), - [aux_sym__val_number_decimal_token2] = ACTIONS(957), - [aux_sym__val_number_decimal_token3] = ACTIONS(957), - [aux_sym__val_number_decimal_token4] = ACTIONS(957), - [aux_sym__val_number_token1] = ACTIONS(957), - [aux_sym__val_number_token2] = ACTIONS(957), - [aux_sym__val_number_token3] = ACTIONS(957), - [anon_sym_0b] = ACTIONS(955), - [anon_sym_0o] = ACTIONS(955), - [anon_sym_0x] = ACTIONS(955), - [sym_val_date] = ACTIONS(957), - [anon_sym_DQUOTE] = ACTIONS(957), - [sym__str_single_quotes] = ACTIONS(957), - [sym__str_back_ticks] = ACTIONS(957), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(957), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(957), - [anon_sym_err_GT] = ACTIONS(955), - [anon_sym_out_GT] = ACTIONS(955), - [anon_sym_e_GT] = ACTIONS(955), - [anon_sym_o_GT] = ACTIONS(955), - [anon_sym_err_PLUSout_GT] = ACTIONS(955), - [anon_sym_out_PLUSerr_GT] = ACTIONS(955), - [anon_sym_o_PLUSe_GT] = ACTIONS(955), - [anon_sym_e_PLUSo_GT] = ACTIONS(955), - [anon_sym_err_GT_GT] = ACTIONS(957), - [anon_sym_out_GT_GT] = ACTIONS(957), - [anon_sym_e_GT_GT] = ACTIONS(957), - [anon_sym_o_GT_GT] = ACTIONS(957), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(957), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(957), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(957), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(957), - [aux_sym_unquoted_token1] = ACTIONS(955), + [anon_sym_true] = ACTIONS(4747), + [anon_sym_false] = ACTIONS(4747), + [anon_sym_null] = ACTIONS(4747), + [aux_sym_cmd_identifier_token38] = ACTIONS(4747), + [aux_sym_cmd_identifier_token39] = ACTIONS(4747), + [aux_sym_cmd_identifier_token40] = ACTIONS(4747), + [sym__newline] = ACTIONS(4749), + [anon_sym_SEMI] = ACTIONS(4749), + [anon_sym_PIPE] = ACTIONS(4749), + [anon_sym_err_GT_PIPE] = ACTIONS(4749), + [anon_sym_out_GT_PIPE] = ACTIONS(4749), + [anon_sym_e_GT_PIPE] = ACTIONS(4749), + [anon_sym_o_GT_PIPE] = ACTIONS(4749), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4749), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4749), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4749), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4749), + [anon_sym_LBRACK] = ACTIONS(4749), + [anon_sym_LPAREN] = ACTIONS(4749), + [anon_sym_RPAREN] = ACTIONS(4749), + [anon_sym_DOLLAR] = ACTIONS(4747), + [anon_sym_DASH_DASH] = ACTIONS(4747), + [anon_sym_DASH] = ACTIONS(4747), + [aux_sym_ctrl_match_token1] = ACTIONS(4749), + [anon_sym_RBRACE] = ACTIONS(4749), + [anon_sym_DOT_DOT] = ACTIONS(4747), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4749), + [anon_sym_DOT_DOT_LT] = ACTIONS(4749), + [aux_sym__val_number_decimal_token1] = ACTIONS(4747), + [aux_sym__val_number_decimal_token2] = ACTIONS(4747), + [aux_sym__val_number_decimal_token3] = ACTIONS(4749), + [aux_sym__val_number_decimal_token4] = ACTIONS(4749), + [aux_sym__val_number_token1] = ACTIONS(4747), + [aux_sym__val_number_token2] = ACTIONS(4747), + [aux_sym__val_number_token3] = ACTIONS(4747), + [anon_sym_0b] = ACTIONS(4747), + [anon_sym_0o] = ACTIONS(4747), + [anon_sym_0x] = ACTIONS(4747), + [sym_val_date] = ACTIONS(4747), + [anon_sym_DQUOTE] = ACTIONS(4749), + [sym__str_single_quotes] = ACTIONS(4749), + [sym__str_back_ticks] = ACTIONS(4749), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4749), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4749), + [anon_sym_err_GT] = ACTIONS(4747), + [anon_sym_out_GT] = ACTIONS(4747), + [anon_sym_e_GT] = ACTIONS(4747), + [anon_sym_o_GT] = ACTIONS(4747), + [anon_sym_err_PLUSout_GT] = ACTIONS(4747), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4747), + [anon_sym_o_PLUSe_GT] = ACTIONS(4747), + [anon_sym_e_PLUSo_GT] = ACTIONS(4747), + [anon_sym_err_GT_GT] = ACTIONS(4749), + [anon_sym_out_GT_GT] = ACTIONS(4749), + [anon_sym_e_GT_GT] = ACTIONS(4749), + [anon_sym_o_GT_GT] = ACTIONS(4749), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4749), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4749), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4749), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4749), + [anon_sym_EQ2] = ACTIONS(4751), + [sym_short_flag_identifier] = ACTIONS(4753), + [aux_sym_unquoted_token1] = ACTIONS(4747), [anon_sym_POUND] = ACTIONS(247), }, [1401] = { [sym_comment] = STATE(1401), - [ts_builtin_sym_end] = ACTIONS(968), - [anon_sym_EQ] = ACTIONS(966), - [anon_sym_PLUS_EQ] = ACTIONS(968), - [anon_sym_DASH_EQ] = ACTIONS(968), - [anon_sym_STAR_EQ] = ACTIONS(968), - [anon_sym_SLASH_EQ] = ACTIONS(968), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(968), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_QMARK2] = ACTIONS(968), - [aux_sym_expr_binary_token1] = ACTIONS(968), - [aux_sym_expr_binary_token2] = ACTIONS(968), - [aux_sym_expr_binary_token3] = ACTIONS(968), - [aux_sym_expr_binary_token4] = ACTIONS(968), - [aux_sym_expr_binary_token5] = ACTIONS(968), - [aux_sym_expr_binary_token6] = ACTIONS(968), - [aux_sym_expr_binary_token7] = ACTIONS(968), - [aux_sym_expr_binary_token8] = ACTIONS(968), - [aux_sym_expr_binary_token9] = ACTIONS(968), - [aux_sym_expr_binary_token10] = ACTIONS(968), - [aux_sym_expr_binary_token11] = ACTIONS(968), - [aux_sym_expr_binary_token12] = ACTIONS(968), - [aux_sym_expr_binary_token13] = ACTIONS(968), - [aux_sym_expr_binary_token14] = ACTIONS(968), - [aux_sym_expr_binary_token15] = ACTIONS(968), - [aux_sym_expr_binary_token16] = ACTIONS(968), - [aux_sym_expr_binary_token17] = ACTIONS(968), - [aux_sym_expr_binary_token18] = ACTIONS(968), - [aux_sym_expr_binary_token19] = ACTIONS(968), - [aux_sym_expr_binary_token20] = ACTIONS(968), - [aux_sym_expr_binary_token21] = ACTIONS(968), - [aux_sym_expr_binary_token22] = ACTIONS(968), - [aux_sym_expr_binary_token23] = ACTIONS(968), - [aux_sym_expr_binary_token24] = ACTIONS(968), - [aux_sym_expr_binary_token25] = ACTIONS(968), - [aux_sym_expr_binary_token26] = ACTIONS(968), - [aux_sym_expr_binary_token27] = ACTIONS(968), - [aux_sym_expr_binary_token28] = ACTIONS(968), - [anon_sym_DOT_DOT2] = ACTIONS(966), - [anon_sym_DOT] = ACTIONS(966), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(968), - [anon_sym_DOT_DOT_LT2] = ACTIONS(968), - [anon_sym_err_GT] = ACTIONS(966), - [anon_sym_out_GT] = ACTIONS(966), - [anon_sym_e_GT] = ACTIONS(966), - [anon_sym_o_GT] = ACTIONS(966), - [anon_sym_err_PLUSout_GT] = ACTIONS(966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(966), - [anon_sym_o_PLUSe_GT] = ACTIONS(966), - [anon_sym_e_PLUSo_GT] = ACTIONS(966), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), + [ts_builtin_sym_end] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [aux_sym_cmd_identifier_token38] = ACTIONS(1645), + [aux_sym_cmd_identifier_token39] = ACTIONS(1645), + [aux_sym_cmd_identifier_token40] = ACTIONS(1645), + [sym__newline] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_err_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_GT_PIPE] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), + [anon_sym_LBRACK] = ACTIONS(1645), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_DASH] = ACTIONS(1643), + [aux_sym_ctrl_match_token1] = ACTIONS(1645), + [anon_sym_DOT_DOT] = ACTIONS(1643), + [anon_sym_LPAREN2] = ACTIONS(1645), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1645), + [anon_sym_DOT_DOT_LT] = ACTIONS(1645), + [aux_sym__immediate_decimal_token2] = ACTIONS(4696), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1645), + [aux_sym__val_number_decimal_token3] = ACTIONS(1645), + [aux_sym__val_number_decimal_token4] = ACTIONS(1645), + [aux_sym__val_number_token1] = ACTIONS(1645), + [aux_sym__val_number_token2] = ACTIONS(1645), + [aux_sym__val_number_token3] = ACTIONS(1645), + [anon_sym_0b] = ACTIONS(1643), + [anon_sym_0o] = ACTIONS(1643), + [anon_sym_0x] = ACTIONS(1643), + [sym_val_date] = ACTIONS(1645), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym__str_single_quotes] = ACTIONS(1645), + [sym__str_back_ticks] = ACTIONS(1645), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1645), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1645), + [anon_sym_err_GT] = ACTIONS(1643), + [anon_sym_out_GT] = ACTIONS(1643), + [anon_sym_e_GT] = ACTIONS(1643), + [anon_sym_o_GT] = ACTIONS(1643), + [anon_sym_err_PLUSout_GT] = ACTIONS(1643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), + [anon_sym_o_PLUSe_GT] = ACTIONS(1643), + [anon_sym_e_PLUSo_GT] = ACTIONS(1643), + [anon_sym_err_GT_GT] = ACTIONS(1645), + [anon_sym_out_GT_GT] = ACTIONS(1645), + [anon_sym_e_GT_GT] = ACTIONS(1645), + [anon_sym_o_GT_GT] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [aux_sym_unquoted_token1] = ACTIONS(1643), + [aux_sym_unquoted_token2] = ACTIONS(1643), [anon_sym_POUND] = ACTIONS(247), }, [1402] = { [sym_comment] = STATE(1402), - [ts_builtin_sym_end] = ACTIONS(978), - [anon_sym_EQ] = ACTIONS(976), - [anon_sym_PLUS_EQ] = ACTIONS(978), - [anon_sym_DASH_EQ] = ACTIONS(978), - [anon_sym_STAR_EQ] = ACTIONS(978), - [anon_sym_SLASH_EQ] = ACTIONS(978), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(978), - [sym__newline] = ACTIONS(978), - [anon_sym_SEMI] = ACTIONS(978), - [anon_sym_PIPE] = ACTIONS(978), - [anon_sym_err_GT_PIPE] = ACTIONS(978), - [anon_sym_out_GT_PIPE] = ACTIONS(978), - [anon_sym_e_GT_PIPE] = ACTIONS(978), - [anon_sym_o_GT_PIPE] = ACTIONS(978), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(978), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(978), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(978), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(978), - [anon_sym_QMARK2] = ACTIONS(978), - [aux_sym_expr_binary_token1] = ACTIONS(978), - [aux_sym_expr_binary_token2] = ACTIONS(978), - [aux_sym_expr_binary_token3] = ACTIONS(978), - [aux_sym_expr_binary_token4] = ACTIONS(978), - [aux_sym_expr_binary_token5] = ACTIONS(978), - [aux_sym_expr_binary_token6] = ACTIONS(978), - [aux_sym_expr_binary_token7] = ACTIONS(978), - [aux_sym_expr_binary_token8] = ACTIONS(978), - [aux_sym_expr_binary_token9] = ACTIONS(978), - [aux_sym_expr_binary_token10] = ACTIONS(978), - [aux_sym_expr_binary_token11] = ACTIONS(978), - [aux_sym_expr_binary_token12] = ACTIONS(978), - [aux_sym_expr_binary_token13] = ACTIONS(978), - [aux_sym_expr_binary_token14] = ACTIONS(978), - [aux_sym_expr_binary_token15] = ACTIONS(978), - [aux_sym_expr_binary_token16] = ACTIONS(978), - [aux_sym_expr_binary_token17] = ACTIONS(978), - [aux_sym_expr_binary_token18] = ACTIONS(978), - [aux_sym_expr_binary_token19] = ACTIONS(978), - [aux_sym_expr_binary_token20] = ACTIONS(978), - [aux_sym_expr_binary_token21] = ACTIONS(978), - [aux_sym_expr_binary_token22] = ACTIONS(978), - [aux_sym_expr_binary_token23] = ACTIONS(978), - [aux_sym_expr_binary_token24] = ACTIONS(978), - [aux_sym_expr_binary_token25] = ACTIONS(978), - [aux_sym_expr_binary_token26] = ACTIONS(978), - [aux_sym_expr_binary_token27] = ACTIONS(978), - [aux_sym_expr_binary_token28] = ACTIONS(978), - [anon_sym_DOT_DOT2] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), - [anon_sym_DOT_DOT_LT2] = ACTIONS(978), - [anon_sym_err_GT] = ACTIONS(976), - [anon_sym_out_GT] = ACTIONS(976), - [anon_sym_e_GT] = ACTIONS(976), - [anon_sym_o_GT] = ACTIONS(976), - [anon_sym_err_PLUSout_GT] = ACTIONS(976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(976), - [anon_sym_o_PLUSe_GT] = ACTIONS(976), - [anon_sym_e_PLUSo_GT] = ACTIONS(976), - [anon_sym_err_GT_GT] = ACTIONS(978), - [anon_sym_out_GT_GT] = ACTIONS(978), - [anon_sym_e_GT_GT] = ACTIONS(978), - [anon_sym_o_GT_GT] = ACTIONS(978), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(978), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(978), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(978), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(978), + [ts_builtin_sym_end] = ACTIONS(2021), + [anon_sym_true] = ACTIONS(2021), + [anon_sym_false] = ACTIONS(2021), + [anon_sym_null] = ACTIONS(2021), + [aux_sym_cmd_identifier_token38] = ACTIONS(2021), + [aux_sym_cmd_identifier_token39] = ACTIONS(2021), + [aux_sym_cmd_identifier_token40] = ACTIONS(2021), + [sym__newline] = ACTIONS(2021), + [anon_sym_SEMI] = ACTIONS(2021), + [anon_sym_PIPE] = ACTIONS(2021), + [anon_sym_err_GT_PIPE] = ACTIONS(2021), + [anon_sym_out_GT_PIPE] = ACTIONS(2021), + [anon_sym_e_GT_PIPE] = ACTIONS(2021), + [anon_sym_o_GT_PIPE] = ACTIONS(2021), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2021), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2021), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2021), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2021), + [anon_sym_LBRACK] = ACTIONS(2021), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_DOLLAR] = ACTIONS(2019), + [anon_sym_DASH_DASH] = ACTIONS(2021), + [anon_sym_DASH] = ACTIONS(2019), + [aux_sym_ctrl_match_token1] = ACTIONS(2021), + [anon_sym_DOT_DOT] = ACTIONS(2019), + [anon_sym_DOT_DOT2] = ACTIONS(2019), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2019), + [anon_sym_DOT_DOT_LT] = ACTIONS(2019), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2021), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2021), + [aux_sym__val_number_decimal_token1] = ACTIONS(2019), + [aux_sym__val_number_decimal_token2] = ACTIONS(2021), + [aux_sym__val_number_decimal_token3] = ACTIONS(2021), + [aux_sym__val_number_decimal_token4] = ACTIONS(2021), + [aux_sym__val_number_token1] = ACTIONS(2021), + [aux_sym__val_number_token2] = ACTIONS(2021), + [aux_sym__val_number_token3] = ACTIONS(2021), + [anon_sym_0b] = ACTIONS(2019), + [anon_sym_0o] = ACTIONS(2019), + [anon_sym_0x] = ACTIONS(2019), + [sym_val_date] = ACTIONS(2021), + [anon_sym_DQUOTE] = ACTIONS(2021), + [sym__str_single_quotes] = ACTIONS(2021), + [sym__str_back_ticks] = ACTIONS(2021), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2021), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2021), + [anon_sym_err_GT] = ACTIONS(2019), + [anon_sym_out_GT] = ACTIONS(2019), + [anon_sym_e_GT] = ACTIONS(2019), + [anon_sym_o_GT] = ACTIONS(2019), + [anon_sym_err_PLUSout_GT] = ACTIONS(2019), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2019), + [anon_sym_o_PLUSe_GT] = ACTIONS(2019), + [anon_sym_e_PLUSo_GT] = ACTIONS(2019), + [anon_sym_err_GT_GT] = ACTIONS(2021), + [anon_sym_out_GT_GT] = ACTIONS(2021), + [anon_sym_e_GT_GT] = ACTIONS(2021), + [anon_sym_o_GT_GT] = ACTIONS(2021), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2021), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2021), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2021), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2021), + [aux_sym_unquoted_token1] = ACTIONS(2019), [anon_sym_POUND] = ACTIONS(247), }, [1403] = { [sym_comment] = STATE(1403), - [ts_builtin_sym_end] = ACTIONS(964), - [anon_sym_EQ] = ACTIONS(962), - [anon_sym_PLUS_EQ] = ACTIONS(964), - [anon_sym_DASH_EQ] = ACTIONS(964), - [anon_sym_STAR_EQ] = ACTIONS(964), - [anon_sym_SLASH_EQ] = ACTIONS(964), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(964), - [sym__newline] = ACTIONS(964), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_PIPE] = ACTIONS(964), - [anon_sym_err_GT_PIPE] = ACTIONS(964), - [anon_sym_out_GT_PIPE] = ACTIONS(964), - [anon_sym_e_GT_PIPE] = ACTIONS(964), - [anon_sym_o_GT_PIPE] = ACTIONS(964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(964), - [anon_sym_QMARK2] = ACTIONS(964), - [aux_sym_expr_binary_token1] = ACTIONS(964), - [aux_sym_expr_binary_token2] = ACTIONS(964), - [aux_sym_expr_binary_token3] = ACTIONS(964), - [aux_sym_expr_binary_token4] = ACTIONS(964), - [aux_sym_expr_binary_token5] = ACTIONS(964), - [aux_sym_expr_binary_token6] = ACTIONS(964), - [aux_sym_expr_binary_token7] = ACTIONS(964), - [aux_sym_expr_binary_token8] = ACTIONS(964), - [aux_sym_expr_binary_token9] = ACTIONS(964), - [aux_sym_expr_binary_token10] = ACTIONS(964), - [aux_sym_expr_binary_token11] = ACTIONS(964), - [aux_sym_expr_binary_token12] = ACTIONS(964), - [aux_sym_expr_binary_token13] = ACTIONS(964), - [aux_sym_expr_binary_token14] = ACTIONS(964), - [aux_sym_expr_binary_token15] = ACTIONS(964), - [aux_sym_expr_binary_token16] = ACTIONS(964), - [aux_sym_expr_binary_token17] = ACTIONS(964), - [aux_sym_expr_binary_token18] = ACTIONS(964), - [aux_sym_expr_binary_token19] = ACTIONS(964), - [aux_sym_expr_binary_token20] = ACTIONS(964), - [aux_sym_expr_binary_token21] = ACTIONS(964), - [aux_sym_expr_binary_token22] = ACTIONS(964), - [aux_sym_expr_binary_token23] = ACTIONS(964), - [aux_sym_expr_binary_token24] = ACTIONS(964), - [aux_sym_expr_binary_token25] = ACTIONS(964), - [aux_sym_expr_binary_token26] = ACTIONS(964), - [aux_sym_expr_binary_token27] = ACTIONS(964), - [aux_sym_expr_binary_token28] = ACTIONS(964), - [anon_sym_DOT_DOT2] = ACTIONS(962), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(964), - [anon_sym_DOT_DOT_LT2] = ACTIONS(964), - [anon_sym_err_GT] = ACTIONS(962), - [anon_sym_out_GT] = ACTIONS(962), - [anon_sym_e_GT] = ACTIONS(962), - [anon_sym_o_GT] = ACTIONS(962), - [anon_sym_err_PLUSout_GT] = ACTIONS(962), - [anon_sym_out_PLUSerr_GT] = ACTIONS(962), - [anon_sym_o_PLUSe_GT] = ACTIONS(962), - [anon_sym_e_PLUSo_GT] = ACTIONS(962), - [anon_sym_err_GT_GT] = ACTIONS(964), - [anon_sym_out_GT_GT] = ACTIONS(964), - [anon_sym_e_GT_GT] = ACTIONS(964), - [anon_sym_o_GT_GT] = ACTIONS(964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(964), + [ts_builtin_sym_end] = ACTIONS(4704), + [anon_sym_true] = ACTIONS(4704), + [anon_sym_false] = ACTIONS(4704), + [anon_sym_null] = ACTIONS(4704), + [aux_sym_cmd_identifier_token38] = ACTIONS(4704), + [aux_sym_cmd_identifier_token39] = ACTIONS(4704), + [aux_sym_cmd_identifier_token40] = ACTIONS(4704), + [sym__newline] = ACTIONS(4704), + [anon_sym_SEMI] = ACTIONS(4704), + [anon_sym_PIPE] = ACTIONS(4704), + [anon_sym_err_GT_PIPE] = ACTIONS(4704), + [anon_sym_out_GT_PIPE] = ACTIONS(4704), + [anon_sym_e_GT_PIPE] = ACTIONS(4704), + [anon_sym_o_GT_PIPE] = ACTIONS(4704), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4704), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4704), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4704), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4704), + [anon_sym_LBRACK] = ACTIONS(4704), + [anon_sym_LPAREN] = ACTIONS(4704), + [anon_sym_DOLLAR] = ACTIONS(4706), + [anon_sym_DASH_DASH] = ACTIONS(4704), + [anon_sym_DASH] = ACTIONS(4706), + [aux_sym_ctrl_match_token1] = ACTIONS(4704), + [anon_sym_DOT_DOT] = ACTIONS(4706), + [anon_sym_DOT_DOT2] = ACTIONS(4755), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4706), + [anon_sym_DOT_DOT_LT] = ACTIONS(4706), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4757), + [aux_sym__val_number_decimal_token1] = ACTIONS(4706), + [aux_sym__val_number_decimal_token2] = ACTIONS(4704), + [aux_sym__val_number_decimal_token3] = ACTIONS(4704), + [aux_sym__val_number_decimal_token4] = ACTIONS(4704), + [aux_sym__val_number_token1] = ACTIONS(4704), + [aux_sym__val_number_token2] = ACTIONS(4704), + [aux_sym__val_number_token3] = ACTIONS(4704), + [anon_sym_0b] = ACTIONS(4706), + [anon_sym_0o] = ACTIONS(4706), + [anon_sym_0x] = ACTIONS(4706), + [sym_val_date] = ACTIONS(4704), + [anon_sym_DQUOTE] = ACTIONS(4704), + [sym__str_single_quotes] = ACTIONS(4704), + [sym__str_back_ticks] = ACTIONS(4704), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4704), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4704), + [anon_sym_err_GT] = ACTIONS(4706), + [anon_sym_out_GT] = ACTIONS(4706), + [anon_sym_e_GT] = ACTIONS(4706), + [anon_sym_o_GT] = ACTIONS(4706), + [anon_sym_err_PLUSout_GT] = ACTIONS(4706), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4706), + [anon_sym_o_PLUSe_GT] = ACTIONS(4706), + [anon_sym_e_PLUSo_GT] = ACTIONS(4706), + [anon_sym_err_GT_GT] = ACTIONS(4704), + [anon_sym_out_GT_GT] = ACTIONS(4704), + [anon_sym_e_GT_GT] = ACTIONS(4704), + [anon_sym_o_GT_GT] = ACTIONS(4704), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4704), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4704), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4704), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4704), + [aux_sym_unquoted_token1] = ACTIONS(4706), [anon_sym_POUND] = ACTIONS(247), }, [1404] = { [sym_comment] = STATE(1404), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [anon_sym_null] = ACTIONS(1650), - [aux_sym_cmd_identifier_token38] = ACTIONS(1650), - [aux_sym_cmd_identifier_token39] = ACTIONS(1650), - [aux_sym_cmd_identifier_token40] = ACTIONS(1650), - [sym__newline] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_err_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_GT_PIPE] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_RPAREN] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_DASH] = ACTIONS(1648), - [aux_sym_ctrl_match_token1] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_DOT_DOT] = ACTIONS(1648), - [anon_sym_LPAREN2] = ACTIONS(1650), - [anon_sym_DOT_DOT2] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1648), - [anon_sym_DOT_DOT_LT] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), - [aux_sym__immediate_decimal_token2] = ACTIONS(4692), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token3] = ACTIONS(1650), - [aux_sym__val_number_decimal_token4] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [anon_sym_0b] = ACTIONS(1648), - [anon_sym_0o] = ACTIONS(1648), - [anon_sym_0x] = ACTIONS(1648), - [sym_val_date] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), - [anon_sym_err_GT] = ACTIONS(1648), - [anon_sym_out_GT] = ACTIONS(1648), - [anon_sym_e_GT] = ACTIONS(1648), - [anon_sym_o_GT] = ACTIONS(1648), - [anon_sym_err_PLUSout_GT] = ACTIONS(1648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1648), - [anon_sym_o_PLUSe_GT] = ACTIONS(1648), - [anon_sym_e_PLUSo_GT] = ACTIONS(1648), - [anon_sym_err_GT_GT] = ACTIONS(1650), - [anon_sym_out_GT_GT] = ACTIONS(1650), - [anon_sym_e_GT_GT] = ACTIONS(1650), - [anon_sym_o_GT_GT] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1650), - [aux_sym_unquoted_token1] = ACTIONS(1648), - [aux_sym_unquoted_token2] = ACTIONS(1648), + [anon_sym_true] = ACTIONS(1757), + [anon_sym_false] = ACTIONS(1757), + [anon_sym_null] = ACTIONS(1757), + [aux_sym_cmd_identifier_token38] = ACTIONS(1757), + [aux_sym_cmd_identifier_token39] = ACTIONS(1757), + [aux_sym_cmd_identifier_token40] = ACTIONS(1757), + [sym__newline] = ACTIONS(1757), + [anon_sym_SEMI] = ACTIONS(1757), + [anon_sym_PIPE] = ACTIONS(1757), + [anon_sym_err_GT_PIPE] = ACTIONS(1757), + [anon_sym_out_GT_PIPE] = ACTIONS(1757), + [anon_sym_e_GT_PIPE] = ACTIONS(1757), + [anon_sym_o_GT_PIPE] = ACTIONS(1757), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1757), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1757), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1757), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1757), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1755), + [anon_sym_RPAREN] = ACTIONS(1757), + [anon_sym_DOLLAR] = ACTIONS(1755), + [anon_sym_DASH_DASH] = ACTIONS(1757), + [anon_sym_DASH] = ACTIONS(1755), + [aux_sym_ctrl_match_token1] = ACTIONS(1757), + [anon_sym_RBRACE] = ACTIONS(1757), + [anon_sym_DOT_DOT] = ACTIONS(1755), + [anon_sym_LPAREN2] = ACTIONS(1757), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), + [anon_sym_DOT_DOT_LT] = ACTIONS(1757), + [aux_sym__val_number_decimal_token1] = ACTIONS(1755), + [aux_sym__val_number_decimal_token2] = ACTIONS(1757), + [aux_sym__val_number_decimal_token3] = ACTIONS(1757), + [aux_sym__val_number_decimal_token4] = ACTIONS(1757), + [aux_sym__val_number_token1] = ACTIONS(1757), + [aux_sym__val_number_token2] = ACTIONS(1757), + [aux_sym__val_number_token3] = ACTIONS(1757), + [anon_sym_0b] = ACTIONS(1755), + [anon_sym_0o] = ACTIONS(1755), + [anon_sym_0x] = ACTIONS(1755), + [sym_val_date] = ACTIONS(1757), + [anon_sym_DQUOTE] = ACTIONS(1757), + [sym__str_single_quotes] = ACTIONS(1757), + [sym__str_back_ticks] = ACTIONS(1757), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), + [anon_sym_err_GT] = ACTIONS(1755), + [anon_sym_out_GT] = ACTIONS(1755), + [anon_sym_e_GT] = ACTIONS(1755), + [anon_sym_o_GT] = ACTIONS(1755), + [anon_sym_err_PLUSout_GT] = ACTIONS(1755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), + [anon_sym_o_PLUSe_GT] = ACTIONS(1755), + [anon_sym_e_PLUSo_GT] = ACTIONS(1755), + [anon_sym_err_GT_GT] = ACTIONS(1757), + [anon_sym_out_GT_GT] = ACTIONS(1757), + [anon_sym_e_GT_GT] = ACTIONS(1757), + [anon_sym_o_GT_GT] = ACTIONS(1757), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), + [aux_sym_unquoted_token1] = ACTIONS(1755), + [aux_sym_unquoted_token2] = ACTIONS(1755), [anon_sym_POUND] = ACTIONS(247), }, [1405] = { [sym_comment] = STATE(1405), - [ts_builtin_sym_end] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [aux_sym_cmd_identifier_token38] = ACTIONS(1475), - [aux_sym_cmd_identifier_token39] = ACTIONS(1475), - [aux_sym_cmd_identifier_token40] = ACTIONS(1475), - [sym__newline] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_err_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_GT_PIPE] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1475), - [anon_sym_DOLLAR] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1473), - [aux_sym_ctrl_match_token1] = ACTIONS(1475), - [anon_sym_DOT_DOT] = ACTIONS(1473), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), - [anon_sym_DOT_DOT_LT] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [aux_sym__immediate_decimal_token2] = ACTIONS(4401), - [aux_sym__val_number_decimal_token1] = ACTIONS(1473), - [aux_sym__val_number_decimal_token2] = ACTIONS(1475), - [aux_sym__val_number_decimal_token3] = ACTIONS(1475), - [aux_sym__val_number_decimal_token4] = ACTIONS(1475), - [aux_sym__val_number_token1] = ACTIONS(1475), - [aux_sym__val_number_token2] = ACTIONS(1475), - [aux_sym__val_number_token3] = ACTIONS(1475), - [anon_sym_0b] = ACTIONS(1473), - [sym_filesize_unit] = ACTIONS(1475), - [sym_duration_unit] = ACTIONS(1475), - [anon_sym_0o] = ACTIONS(1473), - [anon_sym_0x] = ACTIONS(1473), - [sym_val_date] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym__str_single_quotes] = ACTIONS(1475), - [sym__str_back_ticks] = ACTIONS(1475), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1473), - [anon_sym_out_GT] = ACTIONS(1473), - [anon_sym_e_GT] = ACTIONS(1473), - [anon_sym_o_GT] = ACTIONS(1473), - [anon_sym_err_PLUSout_GT] = ACTIONS(1473), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), - [anon_sym_o_PLUSe_GT] = ACTIONS(1473), - [anon_sym_e_PLUSo_GT] = ACTIONS(1473), - [anon_sym_err_GT_GT] = ACTIONS(1475), - [anon_sym_out_GT_GT] = ACTIONS(1475), - [anon_sym_e_GT_GT] = ACTIONS(1475), - [anon_sym_o_GT_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), - [aux_sym_unquoted_token1] = ACTIONS(1473), - [aux_sym_unquoted_token2] = ACTIONS(1473), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(1076), + [anon_sym_false] = ACTIONS(1076), + [anon_sym_null] = ACTIONS(1076), + [aux_sym_cmd_identifier_token38] = ACTIONS(1076), + [aux_sym_cmd_identifier_token39] = ACTIONS(1076), + [aux_sym_cmd_identifier_token40] = ACTIONS(1076), + [sym__newline] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_err_GT_PIPE] = ACTIONS(1078), + [anon_sym_out_GT_PIPE] = ACTIONS(1078), + [anon_sym_e_GT_PIPE] = ACTIONS(1078), + [anon_sym_o_GT_PIPE] = ACTIONS(1078), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1078), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1078), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1078), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_DOLLAR] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1076), + [anon_sym_DASH] = ACTIONS(1076), + [aux_sym_ctrl_match_token1] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_LPAREN2] = ACTIONS(2239), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1076), + [anon_sym_DOT_DOT_LT] = ACTIONS(1076), + [aux_sym__val_number_decimal_token1] = ACTIONS(1076), + [aux_sym__val_number_decimal_token2] = ACTIONS(1076), + [aux_sym__val_number_decimal_token3] = ACTIONS(1076), + [aux_sym__val_number_decimal_token4] = ACTIONS(1076), + [aux_sym__val_number_token1] = ACTIONS(1076), + [aux_sym__val_number_token2] = ACTIONS(1076), + [aux_sym__val_number_token3] = ACTIONS(1076), + [anon_sym_0b] = ACTIONS(1076), + [anon_sym_0o] = ACTIONS(1076), + [anon_sym_0x] = ACTIONS(1076), + [sym_val_date] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1078), + [sym__str_single_quotes] = ACTIONS(1078), + [sym__str_back_ticks] = ACTIONS(1078), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1078), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1078), + [anon_sym_err_GT] = ACTIONS(1076), + [anon_sym_out_GT] = ACTIONS(1076), + [anon_sym_e_GT] = ACTIONS(1076), + [anon_sym_o_GT] = ACTIONS(1076), + [anon_sym_err_PLUSout_GT] = ACTIONS(1076), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1076), + [anon_sym_o_PLUSe_GT] = ACTIONS(1076), + [anon_sym_e_PLUSo_GT] = ACTIONS(1076), + [anon_sym_err_GT_GT] = ACTIONS(1076), + [anon_sym_out_GT_GT] = ACTIONS(1076), + [anon_sym_e_GT_GT] = ACTIONS(1076), + [anon_sym_o_GT_GT] = ACTIONS(1076), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1076), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1076), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1076), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1076), + [aux_sym_unquoted_token1] = ACTIONS(1076), + [aux_sym_unquoted_token4] = ACTIONS(2241), + [anon_sym_POUND] = ACTIONS(3), }, [1406] = { - [sym_cell_path] = STATE(1634), - [sym_path] = STATE(1597), [sym_comment] = STATE(1406), - [aux_sym_cell_path_repeat1] = STATE(1440), - [ts_builtin_sym_end] = ACTIONS(1603), - [anon_sym_true] = ACTIONS(1603), - [anon_sym_false] = ACTIONS(1603), - [anon_sym_null] = ACTIONS(1603), - [aux_sym_cmd_identifier_token38] = ACTIONS(1603), - [aux_sym_cmd_identifier_token39] = ACTIONS(1603), - [aux_sym_cmd_identifier_token40] = ACTIONS(1603), - [sym__newline] = ACTIONS(1603), - [anon_sym_SEMI] = ACTIONS(1603), - [anon_sym_PIPE] = ACTIONS(1603), - [anon_sym_err_GT_PIPE] = ACTIONS(1603), - [anon_sym_out_GT_PIPE] = ACTIONS(1603), - [anon_sym_e_GT_PIPE] = ACTIONS(1603), - [anon_sym_o_GT_PIPE] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1603), - [anon_sym_LPAREN] = ACTIONS(1603), - [anon_sym_DOLLAR] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1599), - [aux_sym_ctrl_match_token1] = ACTIONS(1603), - [anon_sym_DOT_DOT] = ACTIONS(1599), - [anon_sym_DOT_DOT2] = ACTIONS(1599), - [anon_sym_DOT] = ACTIONS(4617), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1599), - [anon_sym_DOT_DOT_LT] = ACTIONS(1599), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1603), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1603), - [aux_sym__val_number_decimal_token1] = ACTIONS(1599), - [aux_sym__val_number_decimal_token2] = ACTIONS(1603), - [aux_sym__val_number_decimal_token3] = ACTIONS(1603), - [aux_sym__val_number_decimal_token4] = ACTIONS(1603), - [aux_sym__val_number_token1] = ACTIONS(1603), - [aux_sym__val_number_token2] = ACTIONS(1603), - [aux_sym__val_number_token3] = ACTIONS(1603), - [anon_sym_0b] = ACTIONS(1599), - [anon_sym_0o] = ACTIONS(1599), - [anon_sym_0x] = ACTIONS(1599), - [sym_val_date] = ACTIONS(1603), - [anon_sym_DQUOTE] = ACTIONS(1603), - [sym__str_single_quotes] = ACTIONS(1603), - [sym__str_back_ticks] = ACTIONS(1603), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1603), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1603), - [anon_sym_err_GT] = ACTIONS(1599), - [anon_sym_out_GT] = ACTIONS(1599), - [anon_sym_e_GT] = ACTIONS(1599), - [anon_sym_o_GT] = ACTIONS(1599), - [anon_sym_err_PLUSout_GT] = ACTIONS(1599), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), - [anon_sym_o_PLUSe_GT] = ACTIONS(1599), - [anon_sym_e_PLUSo_GT] = ACTIONS(1599), - [anon_sym_err_GT_GT] = ACTIONS(1603), - [anon_sym_out_GT_GT] = ACTIONS(1603), - [anon_sym_e_GT_GT] = ACTIONS(1603), - [anon_sym_o_GT_GT] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1603), - [aux_sym_unquoted_token1] = ACTIONS(1599), + [ts_builtin_sym_end] = ACTIONS(1078), + [anon_sym_true] = ACTIONS(1078), + [anon_sym_false] = ACTIONS(1078), + [anon_sym_null] = ACTIONS(1078), + [aux_sym_cmd_identifier_token38] = ACTIONS(1078), + [aux_sym_cmd_identifier_token39] = ACTIONS(1078), + [aux_sym_cmd_identifier_token40] = ACTIONS(1078), + [sym__newline] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_err_GT_PIPE] = ACTIONS(1078), + [anon_sym_out_GT_PIPE] = ACTIONS(1078), + [anon_sym_e_GT_PIPE] = ACTIONS(1078), + [anon_sym_o_GT_PIPE] = ACTIONS(1078), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1078), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1078), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1078), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_DOLLAR] = ACTIONS(1076), + [anon_sym_DASH_DASH] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1076), + [aux_sym_ctrl_match_token1] = ACTIONS(1078), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT2] = ACTIONS(4755), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1076), + [anon_sym_DOT_DOT_LT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4757), + [aux_sym__val_number_decimal_token1] = ACTIONS(1076), + [aux_sym__val_number_decimal_token2] = ACTIONS(1078), + [aux_sym__val_number_decimal_token3] = ACTIONS(1078), + [aux_sym__val_number_decimal_token4] = ACTIONS(1078), + [aux_sym__val_number_token1] = ACTIONS(1078), + [aux_sym__val_number_token2] = ACTIONS(1078), + [aux_sym__val_number_token3] = ACTIONS(1078), + [anon_sym_0b] = ACTIONS(1076), + [anon_sym_0o] = ACTIONS(1076), + [anon_sym_0x] = ACTIONS(1076), + [sym_val_date] = ACTIONS(1078), + [anon_sym_DQUOTE] = ACTIONS(1078), + [sym__str_single_quotes] = ACTIONS(1078), + [sym__str_back_ticks] = ACTIONS(1078), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1078), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1078), + [anon_sym_err_GT] = ACTIONS(1076), + [anon_sym_out_GT] = ACTIONS(1076), + [anon_sym_e_GT] = ACTIONS(1076), + [anon_sym_o_GT] = ACTIONS(1076), + [anon_sym_err_PLUSout_GT] = ACTIONS(1076), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1076), + [anon_sym_o_PLUSe_GT] = ACTIONS(1076), + [anon_sym_e_PLUSo_GT] = ACTIONS(1076), + [anon_sym_err_GT_GT] = ACTIONS(1078), + [anon_sym_out_GT_GT] = ACTIONS(1078), + [anon_sym_e_GT_GT] = ACTIONS(1078), + [anon_sym_o_GT_GT] = ACTIONS(1078), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1078), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1078), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1078), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1078), + [aux_sym_unquoted_token1] = ACTIONS(1076), [anon_sym_POUND] = ACTIONS(247), }, [1407] = { [sym_comment] = STATE(1407), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_null] = ACTIONS(1537), - [aux_sym_cmd_identifier_token38] = ACTIONS(1537), - [aux_sym_cmd_identifier_token39] = ACTIONS(1537), - [aux_sym_cmd_identifier_token40] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_RPAREN] = ACTIONS(1537), - [anon_sym_DOLLAR] = ACTIONS(1525), - [anon_sym_DASH_DASH] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1525), - [aux_sym_ctrl_match_token1] = ACTIONS(1537), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_DOT_DOT] = ACTIONS(1525), - [anon_sym_DOT_DOT2] = ACTIONS(4694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1525), - [anon_sym_DOT_DOT_LT] = ACTIONS(1525), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4696), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4696), - [aux_sym__val_number_decimal_token1] = ACTIONS(1525), - [aux_sym__val_number_decimal_token2] = ACTIONS(1537), - [aux_sym__val_number_decimal_token3] = ACTIONS(1537), - [aux_sym__val_number_decimal_token4] = ACTIONS(1537), - [aux_sym__val_number_token1] = ACTIONS(1537), - [aux_sym__val_number_token2] = ACTIONS(1537), - [aux_sym__val_number_token3] = ACTIONS(1537), - [anon_sym_0b] = ACTIONS(1525), - [sym_filesize_unit] = ACTIONS(4698), - [sym_duration_unit] = ACTIONS(4700), - [anon_sym_0o] = ACTIONS(1525), - [anon_sym_0x] = ACTIONS(1525), - [sym_val_date] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym__str_single_quotes] = ACTIONS(1537), - [sym__str_back_ticks] = ACTIONS(1537), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1537), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1537), - [anon_sym_err_GT] = ACTIONS(1525), - [anon_sym_out_GT] = ACTIONS(1525), - [anon_sym_e_GT] = ACTIONS(1525), - [anon_sym_o_GT] = ACTIONS(1525), - [anon_sym_err_PLUSout_GT] = ACTIONS(1525), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), - [anon_sym_o_PLUSe_GT] = ACTIONS(1525), - [anon_sym_e_PLUSo_GT] = ACTIONS(1525), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), - [aux_sym_unquoted_token1] = ACTIONS(1525), - [aux_sym_unquoted_token2] = ACTIONS(4702), + [ts_builtin_sym_end] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_LPAREN2] = ACTIONS(1499), + [aux_sym_expr_binary_token1] = ACTIONS(1499), + [aux_sym_expr_binary_token2] = ACTIONS(1499), + [aux_sym_expr_binary_token3] = ACTIONS(1499), + [aux_sym_expr_binary_token4] = ACTIONS(1499), + [aux_sym_expr_binary_token5] = ACTIONS(1499), + [aux_sym_expr_binary_token6] = ACTIONS(1499), + [aux_sym_expr_binary_token7] = ACTIONS(1499), + [aux_sym_expr_binary_token8] = ACTIONS(1499), + [aux_sym_expr_binary_token9] = ACTIONS(1499), + [aux_sym_expr_binary_token10] = ACTIONS(1499), + [aux_sym_expr_binary_token11] = ACTIONS(1499), + [aux_sym_expr_binary_token12] = ACTIONS(1499), + [aux_sym_expr_binary_token13] = ACTIONS(1499), + [aux_sym_expr_binary_token14] = ACTIONS(1499), + [aux_sym_expr_binary_token15] = ACTIONS(1499), + [aux_sym_expr_binary_token16] = ACTIONS(1499), + [aux_sym_expr_binary_token17] = ACTIONS(1499), + [aux_sym_expr_binary_token18] = ACTIONS(1499), + [aux_sym_expr_binary_token19] = ACTIONS(1499), + [aux_sym_expr_binary_token20] = ACTIONS(1499), + [aux_sym_expr_binary_token21] = ACTIONS(1499), + [aux_sym_expr_binary_token22] = ACTIONS(1499), + [aux_sym_expr_binary_token23] = ACTIONS(1499), + [aux_sym_expr_binary_token24] = ACTIONS(1499), + [aux_sym_expr_binary_token25] = ACTIONS(1499), + [aux_sym_expr_binary_token26] = ACTIONS(1499), + [aux_sym_expr_binary_token27] = ACTIONS(1499), + [aux_sym_expr_binary_token28] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1499), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), + [aux_sym_unquoted_token2] = ACTIONS(1497), [anon_sym_POUND] = ACTIONS(247), }, [1408] = { [sym_comment] = STATE(1408), - [ts_builtin_sym_end] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [aux_sym_cmd_identifier_token38] = ACTIONS(1475), - [aux_sym_cmd_identifier_token39] = ACTIONS(1475), - [aux_sym_cmd_identifier_token40] = ACTIONS(1475), - [sym__newline] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_err_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_GT_PIPE] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1473), - [anon_sym_DOLLAR] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1473), - [aux_sym_ctrl_match_token1] = ACTIONS(1475), - [anon_sym_DOT_DOT] = ACTIONS(1473), - [anon_sym_LPAREN2] = ACTIONS(1475), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), - [anon_sym_DOT_DOT_LT] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [aux_sym__val_number_decimal_token1] = ACTIONS(1473), - [aux_sym__val_number_decimal_token2] = ACTIONS(1475), - [aux_sym__val_number_decimal_token3] = ACTIONS(1475), - [aux_sym__val_number_decimal_token4] = ACTIONS(1475), - [aux_sym__val_number_token1] = ACTIONS(1475), - [aux_sym__val_number_token2] = ACTIONS(1475), - [aux_sym__val_number_token3] = ACTIONS(1475), - [anon_sym_0b] = ACTIONS(1473), - [sym_filesize_unit] = ACTIONS(1475), - [sym_duration_unit] = ACTIONS(1475), - [anon_sym_0o] = ACTIONS(1473), - [anon_sym_0x] = ACTIONS(1473), - [sym_val_date] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym__str_single_quotes] = ACTIONS(1475), - [sym__str_back_ticks] = ACTIONS(1475), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1473), - [anon_sym_out_GT] = ACTIONS(1473), - [anon_sym_e_GT] = ACTIONS(1473), - [anon_sym_o_GT] = ACTIONS(1473), - [anon_sym_err_PLUSout_GT] = ACTIONS(1473), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), - [anon_sym_o_PLUSe_GT] = ACTIONS(1473), - [anon_sym_e_PLUSo_GT] = ACTIONS(1473), - [anon_sym_err_GT_GT] = ACTIONS(1475), - [anon_sym_out_GT_GT] = ACTIONS(1475), - [anon_sym_e_GT_GT] = ACTIONS(1475), - [anon_sym_o_GT_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), - [aux_sym_unquoted_token1] = ACTIONS(1473), - [aux_sym_unquoted_token2] = ACTIONS(1473), + [ts_builtin_sym_end] = ACTIONS(2135), + [anon_sym_true] = ACTIONS(2135), + [anon_sym_false] = ACTIONS(2135), + [anon_sym_null] = ACTIONS(2135), + [aux_sym_cmd_identifier_token38] = ACTIONS(2135), + [aux_sym_cmd_identifier_token39] = ACTIONS(2135), + [aux_sym_cmd_identifier_token40] = ACTIONS(2135), + [sym__newline] = ACTIONS(2135), + [anon_sym_SEMI] = ACTIONS(2135), + [anon_sym_PIPE] = ACTIONS(2135), + [anon_sym_err_GT_PIPE] = ACTIONS(2135), + [anon_sym_out_GT_PIPE] = ACTIONS(2135), + [anon_sym_e_GT_PIPE] = ACTIONS(2135), + [anon_sym_o_GT_PIPE] = ACTIONS(2135), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2135), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2135), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2135), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2135), + [anon_sym_LBRACK] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_DOLLAR] = ACTIONS(2133), + [anon_sym_DASH_DASH] = ACTIONS(2135), + [anon_sym_DASH] = ACTIONS(2133), + [aux_sym_ctrl_match_token1] = ACTIONS(2135), + [anon_sym_DOT_DOT] = ACTIONS(2133), + [anon_sym_DOT_DOT2] = ACTIONS(2133), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2133), + [anon_sym_DOT_DOT_LT] = ACTIONS(2133), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2135), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2135), + [aux_sym__val_number_decimal_token1] = ACTIONS(2133), + [aux_sym__val_number_decimal_token2] = ACTIONS(2135), + [aux_sym__val_number_decimal_token3] = ACTIONS(2135), + [aux_sym__val_number_decimal_token4] = ACTIONS(2135), + [aux_sym__val_number_token1] = ACTIONS(2135), + [aux_sym__val_number_token2] = ACTIONS(2135), + [aux_sym__val_number_token3] = ACTIONS(2135), + [anon_sym_0b] = ACTIONS(2133), + [anon_sym_0o] = ACTIONS(2133), + [anon_sym_0x] = ACTIONS(2133), + [sym_val_date] = ACTIONS(2135), + [anon_sym_DQUOTE] = ACTIONS(2135), + [sym__str_single_quotes] = ACTIONS(2135), + [sym__str_back_ticks] = ACTIONS(2135), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2135), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2135), + [anon_sym_err_GT] = ACTIONS(2133), + [anon_sym_out_GT] = ACTIONS(2133), + [anon_sym_e_GT] = ACTIONS(2133), + [anon_sym_o_GT] = ACTIONS(2133), + [anon_sym_err_PLUSout_GT] = ACTIONS(2133), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2133), + [anon_sym_o_PLUSe_GT] = ACTIONS(2133), + [anon_sym_e_PLUSo_GT] = ACTIONS(2133), + [anon_sym_err_GT_GT] = ACTIONS(2135), + [anon_sym_out_GT_GT] = ACTIONS(2135), + [anon_sym_e_GT_GT] = ACTIONS(2135), + [anon_sym_o_GT_GT] = ACTIONS(2135), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2135), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2135), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2135), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2135), + [aux_sym_unquoted_token1] = ACTIONS(2133), [anon_sym_POUND] = ACTIONS(247), }, [1409] = { + [sym__expr_parenthesized_immediate] = STATE(7570), [sym_comment] = STATE(1409), - [anon_sym_EQ] = ACTIONS(1021), - [anon_sym_PLUS_EQ] = ACTIONS(1023), - [anon_sym_DASH_EQ] = ACTIONS(1023), - [anon_sym_STAR_EQ] = ACTIONS(1023), - [anon_sym_SLASH_EQ] = ACTIONS(1023), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1023), - [sym__newline] = ACTIONS(1021), - [anon_sym_SEMI] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(1023), - [anon_sym_err_GT_PIPE] = ACTIONS(1023), - [anon_sym_out_GT_PIPE] = ACTIONS(1023), - [anon_sym_e_GT_PIPE] = ACTIONS(1023), - [anon_sym_o_GT_PIPE] = ACTIONS(1023), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1023), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1023), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1023), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1023), - [aux_sym_ctrl_match_token1] = ACTIONS(1023), - [anon_sym_RBRACE] = ACTIONS(1023), - [aux_sym_expr_binary_token1] = ACTIONS(1023), - [aux_sym_expr_binary_token2] = ACTIONS(1023), - [aux_sym_expr_binary_token3] = ACTIONS(1023), - [aux_sym_expr_binary_token4] = ACTIONS(1023), - [aux_sym_expr_binary_token5] = ACTIONS(1023), - [aux_sym_expr_binary_token6] = ACTIONS(1023), - [aux_sym_expr_binary_token7] = ACTIONS(1023), - [aux_sym_expr_binary_token8] = ACTIONS(1023), - [aux_sym_expr_binary_token9] = ACTIONS(1023), - [aux_sym_expr_binary_token10] = ACTIONS(1023), - [aux_sym_expr_binary_token11] = ACTIONS(1023), - [aux_sym_expr_binary_token12] = ACTIONS(1023), - [aux_sym_expr_binary_token13] = ACTIONS(1023), - [aux_sym_expr_binary_token14] = ACTIONS(1023), - [aux_sym_expr_binary_token15] = ACTIONS(1023), - [aux_sym_expr_binary_token16] = ACTIONS(1023), - [aux_sym_expr_binary_token17] = ACTIONS(1023), - [aux_sym_expr_binary_token18] = ACTIONS(1023), - [aux_sym_expr_binary_token19] = ACTIONS(1023), - [aux_sym_expr_binary_token20] = ACTIONS(1023), - [aux_sym_expr_binary_token21] = ACTIONS(1023), - [aux_sym_expr_binary_token22] = ACTIONS(1023), - [aux_sym_expr_binary_token23] = ACTIONS(1023), - [aux_sym_expr_binary_token24] = ACTIONS(1023), - [aux_sym_expr_binary_token25] = ACTIONS(1023), - [aux_sym_expr_binary_token26] = ACTIONS(1023), - [aux_sym_expr_binary_token27] = ACTIONS(1023), - [aux_sym_expr_binary_token28] = ACTIONS(1023), - [anon_sym_DOT_DOT2] = ACTIONS(1021), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), - [aux_sym_record_entry_token1] = ACTIONS(1023), - [anon_sym_err_GT] = ACTIONS(1021), - [anon_sym_out_GT] = ACTIONS(1021), - [anon_sym_e_GT] = ACTIONS(1021), - [anon_sym_o_GT] = ACTIONS(1021), - [anon_sym_err_PLUSout_GT] = ACTIONS(1021), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), - [anon_sym_o_PLUSe_GT] = ACTIONS(1021), - [anon_sym_e_PLUSo_GT] = ACTIONS(1021), - [anon_sym_err_GT_GT] = ACTIONS(1023), - [anon_sym_out_GT_GT] = ACTIONS(1023), - [anon_sym_e_GT_GT] = ACTIONS(1023), - [anon_sym_o_GT_GT] = ACTIONS(1023), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), + [anon_sym_true] = ACTIONS(4759), + [anon_sym_false] = ACTIONS(4759), + [anon_sym_null] = ACTIONS(4759), + [aux_sym_cmd_identifier_token38] = ACTIONS(4759), + [aux_sym_cmd_identifier_token39] = ACTIONS(4759), + [aux_sym_cmd_identifier_token40] = ACTIONS(4759), + [sym__newline] = ACTIONS(4759), + [anon_sym_SEMI] = ACTIONS(4759), + [anon_sym_PIPE] = ACTIONS(4759), + [anon_sym_err_GT_PIPE] = ACTIONS(4759), + [anon_sym_out_GT_PIPE] = ACTIONS(4759), + [anon_sym_e_GT_PIPE] = ACTIONS(4759), + [anon_sym_o_GT_PIPE] = ACTIONS(4759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4759), + [anon_sym_LBRACK] = ACTIONS(4759), + [anon_sym_LPAREN] = ACTIONS(4761), + [anon_sym_RPAREN] = ACTIONS(4759), + [anon_sym_DOLLAR] = ACTIONS(4761), + [anon_sym_DASH_DASH] = ACTIONS(4759), + [anon_sym_DASH] = ACTIONS(4761), + [aux_sym_ctrl_match_token1] = ACTIONS(4759), + [anon_sym_RBRACE] = ACTIONS(4759), + [anon_sym_DOT_DOT] = ACTIONS(4761), + [anon_sym_LPAREN2] = ACTIONS(3914), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4759), + [anon_sym_DOT_DOT_LT] = ACTIONS(4759), + [aux_sym__val_number_decimal_token1] = ACTIONS(4761), + [aux_sym__val_number_decimal_token2] = ACTIONS(4759), + [aux_sym__val_number_decimal_token3] = ACTIONS(4759), + [aux_sym__val_number_decimal_token4] = ACTIONS(4759), + [aux_sym__val_number_token1] = ACTIONS(4759), + [aux_sym__val_number_token2] = ACTIONS(4759), + [aux_sym__val_number_token3] = ACTIONS(4759), + [anon_sym_0b] = ACTIONS(4761), + [anon_sym_0o] = ACTIONS(4761), + [anon_sym_0x] = ACTIONS(4761), + [sym_val_date] = ACTIONS(4759), + [anon_sym_DQUOTE] = ACTIONS(4759), + [sym__str_single_quotes] = ACTIONS(4759), + [sym__str_back_ticks] = ACTIONS(4759), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4759), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4759), + [anon_sym_err_GT] = ACTIONS(4761), + [anon_sym_out_GT] = ACTIONS(4761), + [anon_sym_e_GT] = ACTIONS(4761), + [anon_sym_o_GT] = ACTIONS(4761), + [anon_sym_err_PLUSout_GT] = ACTIONS(4761), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4761), + [anon_sym_o_PLUSe_GT] = ACTIONS(4761), + [anon_sym_e_PLUSo_GT] = ACTIONS(4761), + [anon_sym_err_GT_GT] = ACTIONS(4759), + [anon_sym_out_GT_GT] = ACTIONS(4759), + [anon_sym_e_GT_GT] = ACTIONS(4759), + [anon_sym_o_GT_GT] = ACTIONS(4759), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4759), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4759), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4759), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4759), + [aux_sym_unquoted_token1] = ACTIONS(4761), [anon_sym_POUND] = ACTIONS(247), }, [1410] = { [sym_comment] = STATE(1410), - [ts_builtin_sym_end] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [anon_sym_null] = ACTIONS(1483), - [aux_sym_cmd_identifier_token38] = ACTIONS(1483), - [aux_sym_cmd_identifier_token39] = ACTIONS(1483), - [aux_sym_cmd_identifier_token40] = ACTIONS(1483), - [sym__newline] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_err_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_GT_PIPE] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_LPAREN] = ACTIONS(1481), - [anon_sym_DOLLAR] = ACTIONS(1481), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1481), - [aux_sym_ctrl_match_token1] = ACTIONS(1483), - [anon_sym_DOT_DOT] = ACTIONS(1481), - [anon_sym_LPAREN2] = ACTIONS(1483), - [anon_sym_DOT_DOT2] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), - [anon_sym_DOT_DOT_LT] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), - [aux_sym__val_number_decimal_token1] = ACTIONS(1481), - [aux_sym__val_number_decimal_token2] = ACTIONS(1483), - [aux_sym__val_number_decimal_token3] = ACTIONS(1483), - [aux_sym__val_number_decimal_token4] = ACTIONS(1483), - [aux_sym__val_number_token1] = ACTIONS(1483), - [aux_sym__val_number_token2] = ACTIONS(1483), - [aux_sym__val_number_token3] = ACTIONS(1483), - [anon_sym_0b] = ACTIONS(1481), - [sym_filesize_unit] = ACTIONS(1483), - [sym_duration_unit] = ACTIONS(1483), - [anon_sym_0o] = ACTIONS(1481), - [anon_sym_0x] = ACTIONS(1481), - [sym_val_date] = ACTIONS(1483), - [anon_sym_DQUOTE] = ACTIONS(1483), - [sym__str_single_quotes] = ACTIONS(1483), - [sym__str_back_ticks] = ACTIONS(1483), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1483), - [anon_sym_err_GT] = ACTIONS(1481), - [anon_sym_out_GT] = ACTIONS(1481), - [anon_sym_e_GT] = ACTIONS(1481), - [anon_sym_o_GT] = ACTIONS(1481), - [anon_sym_err_PLUSout_GT] = ACTIONS(1481), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), - [anon_sym_o_PLUSe_GT] = ACTIONS(1481), - [anon_sym_e_PLUSo_GT] = ACTIONS(1481), - [anon_sym_err_GT_GT] = ACTIONS(1483), - [anon_sym_out_GT_GT] = ACTIONS(1483), - [anon_sym_e_GT_GT] = ACTIONS(1483), - [anon_sym_o_GT_GT] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), - [aux_sym_unquoted_token1] = ACTIONS(1481), - [aux_sym_unquoted_token2] = ACTIONS(1481), + [sym__newline] = ACTIONS(1048), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_err_GT_PIPE] = ACTIONS(1050), + [anon_sym_out_GT_PIPE] = ACTIONS(1050), + [anon_sym_e_GT_PIPE] = ACTIONS(1050), + [anon_sym_o_GT_PIPE] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1050), + [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_DASH] = ACTIONS(1048), + [aux_sym_ctrl_match_token1] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(1050), + [anon_sym_EQ_GT] = ACTIONS(1050), + [anon_sym_QMARK2] = ACTIONS(1050), + [aux_sym_expr_binary_token1] = ACTIONS(1050), + [aux_sym_expr_binary_token2] = ACTIONS(1050), + [aux_sym_expr_binary_token3] = ACTIONS(1050), + [aux_sym_expr_binary_token4] = ACTIONS(1050), + [aux_sym_expr_binary_token5] = ACTIONS(1050), + [aux_sym_expr_binary_token6] = ACTIONS(1050), + [aux_sym_expr_binary_token7] = ACTIONS(1050), + [aux_sym_expr_binary_token8] = ACTIONS(1050), + [aux_sym_expr_binary_token9] = ACTIONS(1050), + [aux_sym_expr_binary_token10] = ACTIONS(1050), + [aux_sym_expr_binary_token11] = ACTIONS(1050), + [aux_sym_expr_binary_token12] = ACTIONS(1050), + [aux_sym_expr_binary_token13] = ACTIONS(1050), + [aux_sym_expr_binary_token14] = ACTIONS(1050), + [aux_sym_expr_binary_token15] = ACTIONS(1050), + [aux_sym_expr_binary_token16] = ACTIONS(1050), + [aux_sym_expr_binary_token17] = ACTIONS(1050), + [aux_sym_expr_binary_token18] = ACTIONS(1050), + [aux_sym_expr_binary_token19] = ACTIONS(1050), + [aux_sym_expr_binary_token20] = ACTIONS(1050), + [aux_sym_expr_binary_token21] = ACTIONS(1050), + [aux_sym_expr_binary_token22] = ACTIONS(1050), + [aux_sym_expr_binary_token23] = ACTIONS(1050), + [aux_sym_expr_binary_token24] = ACTIONS(1050), + [aux_sym_expr_binary_token25] = ACTIONS(1050), + [aux_sym_expr_binary_token26] = ACTIONS(1050), + [aux_sym_expr_binary_token27] = ACTIONS(1050), + [aux_sym_expr_binary_token28] = ACTIONS(1050), + [anon_sym_DOT] = ACTIONS(1050), + [aux_sym_record_entry_token1] = ACTIONS(1050), + [anon_sym_err_GT] = ACTIONS(1048), + [anon_sym_out_GT] = ACTIONS(1048), + [anon_sym_e_GT] = ACTIONS(1048), + [anon_sym_o_GT] = ACTIONS(1048), + [anon_sym_err_PLUSout_GT] = ACTIONS(1048), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1048), + [anon_sym_o_PLUSe_GT] = ACTIONS(1048), + [anon_sym_e_PLUSo_GT] = ACTIONS(1048), + [anon_sym_err_GT_GT] = ACTIONS(1050), + [anon_sym_out_GT_GT] = ACTIONS(1050), + [anon_sym_e_GT_GT] = ACTIONS(1050), + [anon_sym_o_GT_GT] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1050), [anon_sym_POUND] = ACTIONS(247), }, [1411] = { [sym_comment] = STATE(1411), - [ts_builtin_sym_end] = ACTIONS(1521), - [anon_sym_true] = ACTIONS(1521), - [anon_sym_false] = ACTIONS(1521), - [anon_sym_null] = ACTIONS(1521), - [aux_sym_cmd_identifier_token38] = ACTIONS(1521), - [aux_sym_cmd_identifier_token39] = ACTIONS(1521), - [aux_sym_cmd_identifier_token40] = ACTIONS(1521), - [sym__newline] = ACTIONS(1521), - [anon_sym_SEMI] = ACTIONS(1521), - [anon_sym_PIPE] = ACTIONS(1521), - [anon_sym_err_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_GT_PIPE] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1519), - [anon_sym_DOLLAR] = ACTIONS(1519), - [anon_sym_DASH_DASH] = ACTIONS(1521), - [anon_sym_DASH] = ACTIONS(1519), - [aux_sym_ctrl_match_token1] = ACTIONS(1521), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_LPAREN2] = ACTIONS(1521), - [anon_sym_DOT_DOT2] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1519), - [anon_sym_DOT_DOT_LT] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), - [aux_sym__val_number_decimal_token1] = ACTIONS(1519), - [aux_sym__val_number_decimal_token2] = ACTIONS(1521), - [aux_sym__val_number_decimal_token3] = ACTIONS(1521), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(1521), - [aux_sym__val_number_token2] = ACTIONS(1521), - [aux_sym__val_number_token3] = ACTIONS(1521), - [anon_sym_0b] = ACTIONS(1519), - [sym_filesize_unit] = ACTIONS(1521), - [sym_duration_unit] = ACTIONS(1521), - [anon_sym_0o] = ACTIONS(1519), - [anon_sym_0x] = ACTIONS(1519), - [sym_val_date] = ACTIONS(1521), - [anon_sym_DQUOTE] = ACTIONS(1521), - [sym__str_single_quotes] = ACTIONS(1521), - [sym__str_back_ticks] = ACTIONS(1521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1521), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1521), - [anon_sym_err_GT] = ACTIONS(1519), - [anon_sym_out_GT] = ACTIONS(1519), - [anon_sym_e_GT] = ACTIONS(1519), - [anon_sym_o_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT] = ACTIONS(1519), - [anon_sym_err_GT_GT] = ACTIONS(1521), - [anon_sym_out_GT_GT] = ACTIONS(1521), - [anon_sym_e_GT_GT] = ACTIONS(1521), - [anon_sym_o_GT_GT] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), - [aux_sym_unquoted_token1] = ACTIONS(1519), - [aux_sym_unquoted_token2] = ACTIONS(1519), + [ts_builtin_sym_end] = ACTIONS(1567), + [aux_sym_cmd_identifier_token41] = ACTIONS(1565), + [sym__newline] = ACTIONS(1567), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_err_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_GT_PIPE] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), + [aux_sym_expr_binary_token1] = ACTIONS(1567), + [aux_sym_expr_binary_token2] = ACTIONS(1567), + [aux_sym_expr_binary_token3] = ACTIONS(1567), + [aux_sym_expr_binary_token4] = ACTIONS(1567), + [aux_sym_expr_binary_token5] = ACTIONS(1567), + [aux_sym_expr_binary_token6] = ACTIONS(1567), + [aux_sym_expr_binary_token7] = ACTIONS(1567), + [aux_sym_expr_binary_token8] = ACTIONS(1567), + [aux_sym_expr_binary_token9] = ACTIONS(1567), + [aux_sym_expr_binary_token10] = ACTIONS(1567), + [aux_sym_expr_binary_token11] = ACTIONS(1567), + [aux_sym_expr_binary_token12] = ACTIONS(1567), + [aux_sym_expr_binary_token13] = ACTIONS(1567), + [aux_sym_expr_binary_token14] = ACTIONS(1567), + [aux_sym_expr_binary_token15] = ACTIONS(1567), + [aux_sym_expr_binary_token16] = ACTIONS(1567), + [aux_sym_expr_binary_token17] = ACTIONS(1567), + [aux_sym_expr_binary_token18] = ACTIONS(1567), + [aux_sym_expr_binary_token19] = ACTIONS(1567), + [aux_sym_expr_binary_token20] = ACTIONS(1567), + [aux_sym_expr_binary_token21] = ACTIONS(1567), + [aux_sym_expr_binary_token22] = ACTIONS(1567), + [aux_sym_expr_binary_token23] = ACTIONS(1567), + [aux_sym_expr_binary_token24] = ACTIONS(1567), + [aux_sym_expr_binary_token25] = ACTIONS(1567), + [aux_sym_expr_binary_token26] = ACTIONS(1567), + [aux_sym_expr_binary_token27] = ACTIONS(1567), + [aux_sym_expr_binary_token28] = ACTIONS(1567), + [anon_sym_DOT_DOT2] = ACTIONS(1565), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), + [aux_sym__immediate_decimal_token2] = ACTIONS(4763), + [sym_filesize_unit] = ACTIONS(1567), + [sym_duration_unit] = ACTIONS(1567), + [anon_sym_err_GT] = ACTIONS(1565), + [anon_sym_out_GT] = ACTIONS(1565), + [anon_sym_e_GT] = ACTIONS(1565), + [anon_sym_o_GT] = ACTIONS(1565), + [anon_sym_err_PLUSout_GT] = ACTIONS(1565), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), + [anon_sym_o_PLUSe_GT] = ACTIONS(1565), + [anon_sym_e_PLUSo_GT] = ACTIONS(1565), + [anon_sym_err_GT_GT] = ACTIONS(1567), + [anon_sym_out_GT_GT] = ACTIONS(1567), + [anon_sym_e_GT_GT] = ACTIONS(1567), + [anon_sym_o_GT_GT] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), [anon_sym_POUND] = ACTIONS(247), }, [1412] = { [sym_comment] = STATE(1412), - [ts_builtin_sym_end] = ACTIONS(1521), - [anon_sym_true] = ACTIONS(1521), - [anon_sym_false] = ACTIONS(1521), - [anon_sym_null] = ACTIONS(1521), - [aux_sym_cmd_identifier_token38] = ACTIONS(1521), - [aux_sym_cmd_identifier_token39] = ACTIONS(1521), - [aux_sym_cmd_identifier_token40] = ACTIONS(1521), - [sym__newline] = ACTIONS(1521), - [anon_sym_SEMI] = ACTIONS(1521), - [anon_sym_PIPE] = ACTIONS(1521), - [anon_sym_err_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_GT_PIPE] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_DOLLAR] = ACTIONS(1519), - [anon_sym_DASH_DASH] = ACTIONS(1521), - [anon_sym_DASH] = ACTIONS(1519), - [aux_sym_ctrl_match_token1] = ACTIONS(1521), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_DOT_DOT2] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1519), - [anon_sym_DOT_DOT_LT] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), - [aux_sym__immediate_decimal_token2] = ACTIONS(4704), - [aux_sym__val_number_decimal_token1] = ACTIONS(1519), - [aux_sym__val_number_decimal_token2] = ACTIONS(1521), - [aux_sym__val_number_decimal_token3] = ACTIONS(1521), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(1521), - [aux_sym__val_number_token2] = ACTIONS(1521), - [aux_sym__val_number_token3] = ACTIONS(1521), - [anon_sym_0b] = ACTIONS(1519), - [sym_filesize_unit] = ACTIONS(1521), - [sym_duration_unit] = ACTIONS(1521), - [anon_sym_0o] = ACTIONS(1519), - [anon_sym_0x] = ACTIONS(1519), - [sym_val_date] = ACTIONS(1521), - [anon_sym_DQUOTE] = ACTIONS(1521), - [sym__str_single_quotes] = ACTIONS(1521), - [sym__str_back_ticks] = ACTIONS(1521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1521), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1521), - [anon_sym_err_GT] = ACTIONS(1519), - [anon_sym_out_GT] = ACTIONS(1519), - [anon_sym_e_GT] = ACTIONS(1519), - [anon_sym_o_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT] = ACTIONS(1519), - [anon_sym_err_GT_GT] = ACTIONS(1521), - [anon_sym_out_GT_GT] = ACTIONS(1521), - [anon_sym_e_GT_GT] = ACTIONS(1521), - [anon_sym_o_GT_GT] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), - [aux_sym_unquoted_token1] = ACTIONS(1519), - [aux_sym_unquoted_token2] = ACTIONS(1519), + [aux_sym_cmd_identifier_token41] = ACTIONS(1565), + [sym__newline] = ACTIONS(1567), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_err_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_GT_PIPE] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), + [anon_sym_RPAREN] = ACTIONS(1567), + [anon_sym_RBRACE] = ACTIONS(1567), + [aux_sym_expr_binary_token1] = ACTIONS(1567), + [aux_sym_expr_binary_token2] = ACTIONS(1567), + [aux_sym_expr_binary_token3] = ACTIONS(1567), + [aux_sym_expr_binary_token4] = ACTIONS(1567), + [aux_sym_expr_binary_token5] = ACTIONS(1567), + [aux_sym_expr_binary_token6] = ACTIONS(1567), + [aux_sym_expr_binary_token7] = ACTIONS(1567), + [aux_sym_expr_binary_token8] = ACTIONS(1567), + [aux_sym_expr_binary_token9] = ACTIONS(1567), + [aux_sym_expr_binary_token10] = ACTIONS(1567), + [aux_sym_expr_binary_token11] = ACTIONS(1567), + [aux_sym_expr_binary_token12] = ACTIONS(1567), + [aux_sym_expr_binary_token13] = ACTIONS(1567), + [aux_sym_expr_binary_token14] = ACTIONS(1567), + [aux_sym_expr_binary_token15] = ACTIONS(1567), + [aux_sym_expr_binary_token16] = ACTIONS(1567), + [aux_sym_expr_binary_token17] = ACTIONS(1567), + [aux_sym_expr_binary_token18] = ACTIONS(1567), + [aux_sym_expr_binary_token19] = ACTIONS(1567), + [aux_sym_expr_binary_token20] = ACTIONS(1567), + [aux_sym_expr_binary_token21] = ACTIONS(1567), + [aux_sym_expr_binary_token22] = ACTIONS(1567), + [aux_sym_expr_binary_token23] = ACTIONS(1567), + [aux_sym_expr_binary_token24] = ACTIONS(1567), + [aux_sym_expr_binary_token25] = ACTIONS(1567), + [aux_sym_expr_binary_token26] = ACTIONS(1567), + [aux_sym_expr_binary_token27] = ACTIONS(1567), + [aux_sym_expr_binary_token28] = ACTIONS(1567), + [anon_sym_DOT_DOT2] = ACTIONS(1565), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), + [sym_filesize_unit] = ACTIONS(1567), + [sym_duration_unit] = ACTIONS(1567), + [anon_sym_err_GT] = ACTIONS(1565), + [anon_sym_out_GT] = ACTIONS(1565), + [anon_sym_e_GT] = ACTIONS(1565), + [anon_sym_o_GT] = ACTIONS(1565), + [anon_sym_err_PLUSout_GT] = ACTIONS(1565), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), + [anon_sym_o_PLUSe_GT] = ACTIONS(1565), + [anon_sym_e_PLUSo_GT] = ACTIONS(1565), + [anon_sym_err_GT_GT] = ACTIONS(1567), + [anon_sym_out_GT_GT] = ACTIONS(1567), + [anon_sym_e_GT_GT] = ACTIONS(1567), + [anon_sym_o_GT_GT] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), [anon_sym_POUND] = ACTIONS(247), }, [1413] = { [sym_comment] = STATE(1413), - [anon_sym_EQ] = ACTIONS(986), - [anon_sym_PLUS_EQ] = ACTIONS(988), - [anon_sym_DASH_EQ] = ACTIONS(988), - [anon_sym_STAR_EQ] = ACTIONS(988), - [anon_sym_SLASH_EQ] = ACTIONS(988), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(988), - [sym__newline] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_PIPE] = ACTIONS(988), - [anon_sym_err_GT_PIPE] = ACTIONS(988), - [anon_sym_out_GT_PIPE] = ACTIONS(988), - [anon_sym_e_GT_PIPE] = ACTIONS(988), - [anon_sym_o_GT_PIPE] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(988), - [anon_sym_RPAREN] = ACTIONS(988), - [aux_sym_ctrl_match_token1] = ACTIONS(988), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(988), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(988), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(988), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(988), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(988), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(988), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(988), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(988), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(988), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(988), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(988), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(988), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(988), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(988), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(988), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(988), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(988), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(988), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(988), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(988), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(988), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(988), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(988), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(988), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(988), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(988), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(988), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(988), - [anon_sym_DOT_DOT2] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(986), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), - [anon_sym_DOT_DOT_LT2] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(986), - [anon_sym_out_GT] = ACTIONS(986), - [anon_sym_e_GT] = ACTIONS(986), - [anon_sym_o_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT] = ACTIONS(986), - [anon_sym_err_GT_GT] = ACTIONS(988), - [anon_sym_out_GT_GT] = ACTIONS(988), - [anon_sym_e_GT_GT] = ACTIONS(988), - [anon_sym_o_GT_GT] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), + [aux_sym_cmd_identifier_token41] = ACTIONS(1639), + [sym__newline] = ACTIONS(1639), + [anon_sym_SEMI] = ACTIONS(1641), + [anon_sym_PIPE] = ACTIONS(1641), + [anon_sym_err_GT_PIPE] = ACTIONS(1641), + [anon_sym_out_GT_PIPE] = ACTIONS(1641), + [anon_sym_e_GT_PIPE] = ACTIONS(1641), + [anon_sym_o_GT_PIPE] = ACTIONS(1641), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), + [anon_sym_RPAREN] = ACTIONS(1641), + [aux_sym_ctrl_match_token1] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1641), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1641), + [anon_sym_DOT_DOT2] = ACTIONS(1639), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), + [sym_filesize_unit] = ACTIONS(1641), + [sym_duration_unit] = ACTIONS(1641), + [anon_sym_err_GT] = ACTIONS(1639), + [anon_sym_out_GT] = ACTIONS(1639), + [anon_sym_e_GT] = ACTIONS(1639), + [anon_sym_o_GT] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT] = ACTIONS(1639), + [anon_sym_err_GT_GT] = ACTIONS(1641), + [anon_sym_out_GT_GT] = ACTIONS(1641), + [anon_sym_e_GT_GT] = ACTIONS(1641), + [anon_sym_o_GT_GT] = ACTIONS(1641), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), [anon_sym_POUND] = ACTIONS(247), }, [1414] = { [sym_comment] = STATE(1414), - [anon_sym_EQ] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(992), - [anon_sym_DASH_EQ] = ACTIONS(992), - [anon_sym_STAR_EQ] = ACTIONS(992), - [anon_sym_SLASH_EQ] = ACTIONS(992), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(992), - [sym__newline] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(992), - [anon_sym_err_GT_PIPE] = ACTIONS(992), - [anon_sym_out_GT_PIPE] = ACTIONS(992), - [anon_sym_e_GT_PIPE] = ACTIONS(992), - [anon_sym_o_GT_PIPE] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), - [anon_sym_RPAREN] = ACTIONS(992), - [aux_sym_ctrl_match_token1] = ACTIONS(992), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(992), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(992), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(992), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(992), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(992), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(992), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(992), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(992), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(992), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(992), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(992), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(992), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(992), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(992), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(992), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(992), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(992), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(992), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(992), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(992), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(992), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(992), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(992), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(992), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(992), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(992), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(992), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(992), - [anon_sym_DOT_DOT2] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), - [anon_sym_DOT_DOT_LT2] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(990), - [anon_sym_out_GT] = ACTIONS(990), - [anon_sym_e_GT] = ACTIONS(990), - [anon_sym_o_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT] = ACTIONS(990), - [anon_sym_err_GT_GT] = ACTIONS(992), - [anon_sym_out_GT_GT] = ACTIONS(992), - [anon_sym_e_GT_GT] = ACTIONS(992), - [anon_sym_o_GT_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), + [ts_builtin_sym_end] = ACTIONS(1519), + [sym__newline] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1519), + [anon_sym_err_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_GT_PIPE] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), + [anon_sym_LPAREN2] = ACTIONS(1519), + [aux_sym_expr_binary_token1] = ACTIONS(1519), + [aux_sym_expr_binary_token2] = ACTIONS(1519), + [aux_sym_expr_binary_token3] = ACTIONS(1519), + [aux_sym_expr_binary_token4] = ACTIONS(1519), + [aux_sym_expr_binary_token5] = ACTIONS(1519), + [aux_sym_expr_binary_token6] = ACTIONS(1519), + [aux_sym_expr_binary_token7] = ACTIONS(1519), + [aux_sym_expr_binary_token8] = ACTIONS(1519), + [aux_sym_expr_binary_token9] = ACTIONS(1519), + [aux_sym_expr_binary_token10] = ACTIONS(1519), + [aux_sym_expr_binary_token11] = ACTIONS(1519), + [aux_sym_expr_binary_token12] = ACTIONS(1519), + [aux_sym_expr_binary_token13] = ACTIONS(1519), + [aux_sym_expr_binary_token14] = ACTIONS(1519), + [aux_sym_expr_binary_token15] = ACTIONS(1519), + [aux_sym_expr_binary_token16] = ACTIONS(1519), + [aux_sym_expr_binary_token17] = ACTIONS(1519), + [aux_sym_expr_binary_token18] = ACTIONS(1519), + [aux_sym_expr_binary_token19] = ACTIONS(1519), + [aux_sym_expr_binary_token20] = ACTIONS(1519), + [aux_sym_expr_binary_token21] = ACTIONS(1519), + [aux_sym_expr_binary_token22] = ACTIONS(1519), + [aux_sym_expr_binary_token23] = ACTIONS(1519), + [aux_sym_expr_binary_token24] = ACTIONS(1519), + [aux_sym_expr_binary_token25] = ACTIONS(1519), + [aux_sym_expr_binary_token26] = ACTIONS(1519), + [aux_sym_expr_binary_token27] = ACTIONS(1519), + [aux_sym_expr_binary_token28] = ACTIONS(1519), + [anon_sym_DOT_DOT2] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), + [sym_filesize_unit] = ACTIONS(1519), + [sym_duration_unit] = ACTIONS(1519), + [anon_sym_err_GT] = ACTIONS(1517), + [anon_sym_out_GT] = ACTIONS(1517), + [anon_sym_e_GT] = ACTIONS(1517), + [anon_sym_o_GT] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT] = ACTIONS(1517), + [anon_sym_err_GT_GT] = ACTIONS(1519), + [anon_sym_out_GT_GT] = ACTIONS(1519), + [anon_sym_e_GT_GT] = ACTIONS(1519), + [anon_sym_o_GT_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), + [aux_sym_unquoted_token2] = ACTIONS(1517), [anon_sym_POUND] = ACTIONS(247), }, [1415] = { [sym_comment] = STATE(1415), - [anon_sym_true] = ACTIONS(1571), - [anon_sym_false] = ACTIONS(1571), - [anon_sym_null] = ACTIONS(1571), - [aux_sym_cmd_identifier_token38] = ACTIONS(1571), - [aux_sym_cmd_identifier_token39] = ACTIONS(1571), - [aux_sym_cmd_identifier_token40] = ACTIONS(1571), - [sym__newline] = ACTIONS(1571), - [anon_sym_SEMI] = ACTIONS(1571), - [anon_sym_PIPE] = ACTIONS(1571), - [anon_sym_err_GT_PIPE] = ACTIONS(1571), - [anon_sym_out_GT_PIPE] = ACTIONS(1571), - [anon_sym_e_GT_PIPE] = ACTIONS(1571), - [anon_sym_o_GT_PIPE] = ACTIONS(1571), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1571), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1571), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1571), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1571), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_RPAREN] = ACTIONS(1571), - [anon_sym_DOLLAR] = ACTIONS(1569), - [anon_sym_DASH_DASH] = ACTIONS(1571), - [anon_sym_DASH] = ACTIONS(1569), - [aux_sym_ctrl_match_token1] = ACTIONS(1571), - [anon_sym_RBRACE] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1569), - [anon_sym_LPAREN2] = ACTIONS(1571), - [anon_sym_DOT_DOT2] = ACTIONS(1569), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1569), - [anon_sym_DOT_DOT_LT] = ACTIONS(1569), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1571), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1571), - [aux_sym__val_number_decimal_token1] = ACTIONS(1569), - [aux_sym__val_number_decimal_token2] = ACTIONS(1571), - [aux_sym__val_number_decimal_token3] = ACTIONS(1571), - [aux_sym__val_number_decimal_token4] = ACTIONS(1571), - [aux_sym__val_number_token1] = ACTIONS(1571), - [aux_sym__val_number_token2] = ACTIONS(1571), - [aux_sym__val_number_token3] = ACTIONS(1571), - [anon_sym_0b] = ACTIONS(1569), - [anon_sym_0o] = ACTIONS(1569), - [anon_sym_0x] = ACTIONS(1569), - [sym_val_date] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [sym__str_single_quotes] = ACTIONS(1571), - [sym__str_back_ticks] = ACTIONS(1571), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1571), - [anon_sym_err_GT] = ACTIONS(1569), - [anon_sym_out_GT] = ACTIONS(1569), - [anon_sym_e_GT] = ACTIONS(1569), - [anon_sym_o_GT] = ACTIONS(1569), - [anon_sym_err_PLUSout_GT] = ACTIONS(1569), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1569), - [anon_sym_o_PLUSe_GT] = ACTIONS(1569), - [anon_sym_e_PLUSo_GT] = ACTIONS(1569), - [anon_sym_err_GT_GT] = ACTIONS(1571), - [anon_sym_out_GT_GT] = ACTIONS(1571), - [anon_sym_e_GT_GT] = ACTIONS(1571), - [anon_sym_o_GT_GT] = ACTIONS(1571), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1571), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1571), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1571), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1571), - [aux_sym_unquoted_token1] = ACTIONS(1569), - [aux_sym_unquoted_token2] = ACTIONS(1569), + [ts_builtin_sym_end] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(2067), + [anon_sym_false] = ACTIONS(2067), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token38] = ACTIONS(2067), + [aux_sym_cmd_identifier_token39] = ACTIONS(2067), + [aux_sym_cmd_identifier_token40] = ACTIONS(2067), + [sym__newline] = ACTIONS(2067), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_PIPE] = ACTIONS(2067), + [anon_sym_err_GT_PIPE] = ACTIONS(2067), + [anon_sym_out_GT_PIPE] = ACTIONS(2067), + [anon_sym_e_GT_PIPE] = ACTIONS(2067), + [anon_sym_o_GT_PIPE] = ACTIONS(2067), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2067), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2067), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2067), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_DOLLAR] = ACTIONS(2061), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2061), + [aux_sym_ctrl_match_token1] = ACTIONS(2067), + [anon_sym_DOT_DOT] = ACTIONS(2061), + [anon_sym_DOT_DOT2] = ACTIONS(4765), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2061), + [anon_sym_DOT_DOT_LT] = ACTIONS(2061), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4767), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4767), + [aux_sym__val_number_decimal_token1] = ACTIONS(2061), + [aux_sym__val_number_decimal_token2] = ACTIONS(2067), + [aux_sym__val_number_decimal_token3] = ACTIONS(2067), + [aux_sym__val_number_decimal_token4] = ACTIONS(2067), + [aux_sym__val_number_token1] = ACTIONS(2067), + [aux_sym__val_number_token2] = ACTIONS(2067), + [aux_sym__val_number_token3] = ACTIONS(2067), + [anon_sym_0b] = ACTIONS(2061), + [anon_sym_0o] = ACTIONS(2061), + [anon_sym_0x] = ACTIONS(2061), + [sym_val_date] = ACTIONS(2067), + [anon_sym_DQUOTE] = ACTIONS(2067), + [sym__str_single_quotes] = ACTIONS(2067), + [sym__str_back_ticks] = ACTIONS(2067), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2067), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2067), + [anon_sym_err_GT] = ACTIONS(2061), + [anon_sym_out_GT] = ACTIONS(2061), + [anon_sym_e_GT] = ACTIONS(2061), + [anon_sym_o_GT] = ACTIONS(2061), + [anon_sym_err_PLUSout_GT] = ACTIONS(2061), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2061), + [anon_sym_o_PLUSe_GT] = ACTIONS(2061), + [anon_sym_e_PLUSo_GT] = ACTIONS(2061), + [anon_sym_err_GT_GT] = ACTIONS(2067), + [anon_sym_out_GT_GT] = ACTIONS(2067), + [anon_sym_e_GT_GT] = ACTIONS(2067), + [anon_sym_o_GT_GT] = ACTIONS(2067), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2067), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2067), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2067), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2067), + [aux_sym_unquoted_token1] = ACTIONS(2061), [anon_sym_POUND] = ACTIONS(247), }, [1416] = { [sym_comment] = STATE(1416), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [anon_sym_null] = ACTIONS(1591), - [aux_sym_cmd_identifier_token38] = ACTIONS(1591), - [aux_sym_cmd_identifier_token39] = ACTIONS(1591), - [aux_sym_cmd_identifier_token40] = ACTIONS(1591), - [sym__newline] = ACTIONS(1591), - [anon_sym_SEMI] = ACTIONS(1591), - [anon_sym_PIPE] = ACTIONS(1591), - [anon_sym_err_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_GT_PIPE] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), - [anon_sym_LBRACK] = ACTIONS(1591), - [anon_sym_LPAREN] = ACTIONS(1591), - [anon_sym_RPAREN] = ACTIONS(1591), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_DASH] = ACTIONS(1589), - [aux_sym_ctrl_match_token1] = ACTIONS(1591), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_DOT_DOT2] = ACTIONS(1589), - [anon_sym_DOT] = ACTIONS(4706), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), - [aux_sym__immediate_decimal_token2] = ACTIONS(4708), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token3] = ACTIONS(1591), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(1591), - [aux_sym__val_number_token2] = ACTIONS(1591), - [aux_sym__val_number_token3] = ACTIONS(1591), - [anon_sym_0b] = ACTIONS(1589), - [anon_sym_0o] = ACTIONS(1589), - [anon_sym_0x] = ACTIONS(1589), - [sym_val_date] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym__str_single_quotes] = ACTIONS(1591), - [sym__str_back_ticks] = ACTIONS(1591), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), - [anon_sym_err_GT] = ACTIONS(1589), - [anon_sym_out_GT] = ACTIONS(1589), - [anon_sym_e_GT] = ACTIONS(1589), - [anon_sym_o_GT] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT] = ACTIONS(1589), - [anon_sym_err_GT_GT] = ACTIONS(1591), - [anon_sym_out_GT_GT] = ACTIONS(1591), - [anon_sym_e_GT_GT] = ACTIONS(1591), - [anon_sym_o_GT_GT] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), - [aux_sym_unquoted_token1] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1042), + [anon_sym_false] = ACTIONS(1042), + [anon_sym_null] = ACTIONS(1042), + [aux_sym_cmd_identifier_token38] = ACTIONS(1042), + [aux_sym_cmd_identifier_token39] = ACTIONS(1042), + [aux_sym_cmd_identifier_token40] = ACTIONS(1042), + [sym__newline] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1042), + [anon_sym_PIPE] = ACTIONS(1042), + [anon_sym_err_GT_PIPE] = ACTIONS(1042), + [anon_sym_out_GT_PIPE] = ACTIONS(1042), + [anon_sym_e_GT_PIPE] = ACTIONS(1042), + [anon_sym_o_GT_PIPE] = ACTIONS(1042), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1042), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1042), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1042), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1042), + [anon_sym_LBRACK] = ACTIONS(1042), + [anon_sym_LPAREN] = ACTIONS(1042), + [anon_sym_RPAREN] = ACTIONS(1042), + [anon_sym_DOLLAR] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1040), + [aux_sym_ctrl_match_token1] = ACTIONS(1042), + [anon_sym_RBRACE] = ACTIONS(1042), + [anon_sym_DOT_DOT] = ACTIONS(1040), + [anon_sym_QMARK2] = ACTIONS(1042), + [anon_sym_DOT] = ACTIONS(1040), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1042), + [anon_sym_DOT_DOT_LT] = ACTIONS(1042), + [aux_sym__val_number_decimal_token1] = ACTIONS(1040), + [aux_sym__val_number_decimal_token2] = ACTIONS(1042), + [aux_sym__val_number_decimal_token3] = ACTIONS(1042), + [aux_sym__val_number_decimal_token4] = ACTIONS(1042), + [aux_sym__val_number_token1] = ACTIONS(1042), + [aux_sym__val_number_token2] = ACTIONS(1042), + [aux_sym__val_number_token3] = ACTIONS(1042), + [anon_sym_0b] = ACTIONS(1040), + [anon_sym_0o] = ACTIONS(1040), + [anon_sym_0x] = ACTIONS(1040), + [sym_val_date] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1042), + [sym__str_single_quotes] = ACTIONS(1042), + [sym__str_back_ticks] = ACTIONS(1042), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1042), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1042), + [anon_sym_err_GT] = ACTIONS(1040), + [anon_sym_out_GT] = ACTIONS(1040), + [anon_sym_e_GT] = ACTIONS(1040), + [anon_sym_o_GT] = ACTIONS(1040), + [anon_sym_err_PLUSout_GT] = ACTIONS(1040), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1040), + [anon_sym_o_PLUSe_GT] = ACTIONS(1040), + [anon_sym_e_PLUSo_GT] = ACTIONS(1040), + [anon_sym_err_GT_GT] = ACTIONS(1042), + [anon_sym_out_GT_GT] = ACTIONS(1042), + [anon_sym_e_GT_GT] = ACTIONS(1042), + [anon_sym_o_GT_GT] = ACTIONS(1042), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1042), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1042), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1042), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1042), + [aux_sym_unquoted_token1] = ACTIONS(1040), [anon_sym_POUND] = ACTIONS(247), }, [1417] = { + [sym__expr_parenthesized_immediate] = STATE(7570), [sym_comment] = STATE(1417), - [sym__newline] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_err_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_GT_PIPE] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), - [anon_sym_RPAREN] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_LPAREN2] = ACTIONS(1475), - [aux_sym_expr_binary_token1] = ACTIONS(1475), - [aux_sym_expr_binary_token2] = ACTIONS(1475), - [aux_sym_expr_binary_token3] = ACTIONS(1475), - [aux_sym_expr_binary_token4] = ACTIONS(1475), - [aux_sym_expr_binary_token5] = ACTIONS(1475), - [aux_sym_expr_binary_token6] = ACTIONS(1475), - [aux_sym_expr_binary_token7] = ACTIONS(1475), - [aux_sym_expr_binary_token8] = ACTIONS(1475), - [aux_sym_expr_binary_token9] = ACTIONS(1475), - [aux_sym_expr_binary_token10] = ACTIONS(1475), - [aux_sym_expr_binary_token11] = ACTIONS(1475), - [aux_sym_expr_binary_token12] = ACTIONS(1475), - [aux_sym_expr_binary_token13] = ACTIONS(1475), - [aux_sym_expr_binary_token14] = ACTIONS(1475), - [aux_sym_expr_binary_token15] = ACTIONS(1475), - [aux_sym_expr_binary_token16] = ACTIONS(1475), - [aux_sym_expr_binary_token17] = ACTIONS(1475), - [aux_sym_expr_binary_token18] = ACTIONS(1475), - [aux_sym_expr_binary_token19] = ACTIONS(1475), - [aux_sym_expr_binary_token20] = ACTIONS(1475), - [aux_sym_expr_binary_token21] = ACTIONS(1475), - [aux_sym_expr_binary_token22] = ACTIONS(1475), - [aux_sym_expr_binary_token23] = ACTIONS(1475), - [aux_sym_expr_binary_token24] = ACTIONS(1475), - [aux_sym_expr_binary_token25] = ACTIONS(1475), - [aux_sym_expr_binary_token26] = ACTIONS(1475), - [aux_sym_expr_binary_token27] = ACTIONS(1475), - [aux_sym_expr_binary_token28] = ACTIONS(1475), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT] = ACTIONS(4710), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [aux_sym__immediate_decimal_token2] = ACTIONS(4712), - [sym_filesize_unit] = ACTIONS(1475), - [sym_duration_unit] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1473), - [anon_sym_out_GT] = ACTIONS(1473), - [anon_sym_e_GT] = ACTIONS(1473), - [anon_sym_o_GT] = ACTIONS(1473), - [anon_sym_err_PLUSout_GT] = ACTIONS(1473), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), - [anon_sym_o_PLUSe_GT] = ACTIONS(1473), - [anon_sym_e_PLUSo_GT] = ACTIONS(1473), - [anon_sym_err_GT_GT] = ACTIONS(1475), - [anon_sym_out_GT_GT] = ACTIONS(1475), - [anon_sym_e_GT_GT] = ACTIONS(1475), - [anon_sym_o_GT_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), - [aux_sym_unquoted_token2] = ACTIONS(1473), + [anon_sym_true] = ACTIONS(4769), + [anon_sym_false] = ACTIONS(4769), + [anon_sym_null] = ACTIONS(4769), + [aux_sym_cmd_identifier_token38] = ACTIONS(4769), + [aux_sym_cmd_identifier_token39] = ACTIONS(4769), + [aux_sym_cmd_identifier_token40] = ACTIONS(4769), + [sym__newline] = ACTIONS(4769), + [anon_sym_SEMI] = ACTIONS(4769), + [anon_sym_PIPE] = ACTIONS(4769), + [anon_sym_err_GT_PIPE] = ACTIONS(4769), + [anon_sym_out_GT_PIPE] = ACTIONS(4769), + [anon_sym_e_GT_PIPE] = ACTIONS(4769), + [anon_sym_o_GT_PIPE] = ACTIONS(4769), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4769), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4769), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4769), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4769), + [anon_sym_LBRACK] = ACTIONS(4769), + [anon_sym_LPAREN] = ACTIONS(4771), + [anon_sym_RPAREN] = ACTIONS(4769), + [anon_sym_DOLLAR] = ACTIONS(4771), + [anon_sym_DASH_DASH] = ACTIONS(4769), + [anon_sym_DASH] = ACTIONS(4771), + [aux_sym_ctrl_match_token1] = ACTIONS(4769), + [anon_sym_RBRACE] = ACTIONS(4769), + [anon_sym_DOT_DOT] = ACTIONS(4771), + [anon_sym_LPAREN2] = ACTIONS(3914), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4769), + [anon_sym_DOT_DOT_LT] = ACTIONS(4769), + [aux_sym__val_number_decimal_token1] = ACTIONS(4771), + [aux_sym__val_number_decimal_token2] = ACTIONS(4769), + [aux_sym__val_number_decimal_token3] = ACTIONS(4769), + [aux_sym__val_number_decimal_token4] = ACTIONS(4769), + [aux_sym__val_number_token1] = ACTIONS(4769), + [aux_sym__val_number_token2] = ACTIONS(4769), + [aux_sym__val_number_token3] = ACTIONS(4769), + [anon_sym_0b] = ACTIONS(4771), + [anon_sym_0o] = ACTIONS(4771), + [anon_sym_0x] = ACTIONS(4771), + [sym_val_date] = ACTIONS(4769), + [anon_sym_DQUOTE] = ACTIONS(4769), + [sym__str_single_quotes] = ACTIONS(4769), + [sym__str_back_ticks] = ACTIONS(4769), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4769), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4769), + [anon_sym_err_GT] = ACTIONS(4771), + [anon_sym_out_GT] = ACTIONS(4771), + [anon_sym_e_GT] = ACTIONS(4771), + [anon_sym_o_GT] = ACTIONS(4771), + [anon_sym_err_PLUSout_GT] = ACTIONS(4771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4771), + [anon_sym_o_PLUSe_GT] = ACTIONS(4771), + [anon_sym_e_PLUSo_GT] = ACTIONS(4771), + [anon_sym_err_GT_GT] = ACTIONS(4769), + [anon_sym_out_GT_GT] = ACTIONS(4769), + [anon_sym_e_GT_GT] = ACTIONS(4769), + [anon_sym_o_GT_GT] = ACTIONS(4769), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4769), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4769), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4769), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4769), + [aux_sym_unquoted_token1] = ACTIONS(4771), [anon_sym_POUND] = ACTIONS(247), }, [1418] = { [sym_comment] = STATE(1418), - [sym__newline] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_err_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_GT_PIPE] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), - [anon_sym_RPAREN] = ACTIONS(1483), - [anon_sym_RBRACE] = ACTIONS(1483), - [anon_sym_LPAREN2] = ACTIONS(1483), - [aux_sym_expr_binary_token1] = ACTIONS(1483), - [aux_sym_expr_binary_token2] = ACTIONS(1483), - [aux_sym_expr_binary_token3] = ACTIONS(1483), - [aux_sym_expr_binary_token4] = ACTIONS(1483), - [aux_sym_expr_binary_token5] = ACTIONS(1483), - [aux_sym_expr_binary_token6] = ACTIONS(1483), - [aux_sym_expr_binary_token7] = ACTIONS(1483), - [aux_sym_expr_binary_token8] = ACTIONS(1483), - [aux_sym_expr_binary_token9] = ACTIONS(1483), - [aux_sym_expr_binary_token10] = ACTIONS(1483), - [aux_sym_expr_binary_token11] = ACTIONS(1483), - [aux_sym_expr_binary_token12] = ACTIONS(1483), - [aux_sym_expr_binary_token13] = ACTIONS(1483), - [aux_sym_expr_binary_token14] = ACTIONS(1483), - [aux_sym_expr_binary_token15] = ACTIONS(1483), - [aux_sym_expr_binary_token16] = ACTIONS(1483), - [aux_sym_expr_binary_token17] = ACTIONS(1483), - [aux_sym_expr_binary_token18] = ACTIONS(1483), - [aux_sym_expr_binary_token19] = ACTIONS(1483), - [aux_sym_expr_binary_token20] = ACTIONS(1483), - [aux_sym_expr_binary_token21] = ACTIONS(1483), - [aux_sym_expr_binary_token22] = ACTIONS(1483), - [aux_sym_expr_binary_token23] = ACTIONS(1483), - [aux_sym_expr_binary_token24] = ACTIONS(1483), - [aux_sym_expr_binary_token25] = ACTIONS(1483), - [aux_sym_expr_binary_token26] = ACTIONS(1483), - [aux_sym_expr_binary_token27] = ACTIONS(1483), - [aux_sym_expr_binary_token28] = ACTIONS(1483), - [anon_sym_DOT_DOT2] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), - [aux_sym__immediate_decimal_token1] = ACTIONS(4714), - [aux_sym__immediate_decimal_token2] = ACTIONS(4716), - [sym_filesize_unit] = ACTIONS(1483), - [sym_duration_unit] = ACTIONS(1483), - [anon_sym_err_GT] = ACTIONS(1481), - [anon_sym_out_GT] = ACTIONS(1481), - [anon_sym_e_GT] = ACTIONS(1481), - [anon_sym_o_GT] = ACTIONS(1481), - [anon_sym_err_PLUSout_GT] = ACTIONS(1481), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), - [anon_sym_o_PLUSe_GT] = ACTIONS(1481), - [anon_sym_e_PLUSo_GT] = ACTIONS(1481), - [anon_sym_err_GT_GT] = ACTIONS(1483), - [anon_sym_out_GT_GT] = ACTIONS(1483), - [anon_sym_e_GT_GT] = ACTIONS(1483), - [anon_sym_o_GT_GT] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), - [aux_sym_unquoted_token2] = ACTIONS(1481), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(2259), + [anon_sym_false] = ACTIONS(2259), + [anon_sym_null] = ACTIONS(2259), + [aux_sym_cmd_identifier_token38] = ACTIONS(2259), + [aux_sym_cmd_identifier_token39] = ACTIONS(2259), + [aux_sym_cmd_identifier_token40] = ACTIONS(2259), + [sym__newline] = ACTIONS(2261), + [anon_sym_SEMI] = ACTIONS(2261), + [anon_sym_PIPE] = ACTIONS(2261), + [anon_sym_err_GT_PIPE] = ACTIONS(2261), + [anon_sym_out_GT_PIPE] = ACTIONS(2261), + [anon_sym_e_GT_PIPE] = ACTIONS(2261), + [anon_sym_o_GT_PIPE] = ACTIONS(2261), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2261), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2261), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2261), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_RPAREN] = ACTIONS(2261), + [anon_sym_DOLLAR] = ACTIONS(2259), + [anon_sym_DASH_DASH] = ACTIONS(2259), + [anon_sym_DASH] = ACTIONS(2259), + [aux_sym_ctrl_match_token1] = ACTIONS(2261), + [anon_sym_RBRACE] = ACTIONS(2261), + [anon_sym_DOT_DOT] = ACTIONS(2259), + [anon_sym_LPAREN2] = ACTIONS(2261), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2259), + [anon_sym_DOT_DOT_LT] = ACTIONS(2259), + [aux_sym__val_number_decimal_token1] = ACTIONS(2259), + [aux_sym__val_number_decimal_token2] = ACTIONS(2259), + [aux_sym__val_number_decimal_token3] = ACTIONS(2259), + [aux_sym__val_number_decimal_token4] = ACTIONS(2259), + [aux_sym__val_number_token1] = ACTIONS(2259), + [aux_sym__val_number_token2] = ACTIONS(2259), + [aux_sym__val_number_token3] = ACTIONS(2259), + [anon_sym_0b] = ACTIONS(2259), + [anon_sym_0o] = ACTIONS(2259), + [anon_sym_0x] = ACTIONS(2259), + [sym_val_date] = ACTIONS(2259), + [anon_sym_DQUOTE] = ACTIONS(2261), + [sym__str_single_quotes] = ACTIONS(2261), + [sym__str_back_ticks] = ACTIONS(2261), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2261), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2261), + [anon_sym_err_GT] = ACTIONS(2259), + [anon_sym_out_GT] = ACTIONS(2259), + [anon_sym_e_GT] = ACTIONS(2259), + [anon_sym_o_GT] = ACTIONS(2259), + [anon_sym_err_PLUSout_GT] = ACTIONS(2259), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2259), + [anon_sym_o_PLUSe_GT] = ACTIONS(2259), + [anon_sym_e_PLUSo_GT] = ACTIONS(2259), + [anon_sym_err_GT_GT] = ACTIONS(2259), + [anon_sym_out_GT_GT] = ACTIONS(2259), + [anon_sym_e_GT_GT] = ACTIONS(2259), + [anon_sym_o_GT_GT] = ACTIONS(2259), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2259), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2259), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2259), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2259), + [aux_sym_unquoted_token1] = ACTIONS(2259), + [aux_sym_unquoted_token4] = ACTIONS(2259), + [anon_sym_POUND] = ACTIONS(3), }, [1419] = { [sym_comment] = STATE(1419), - [ts_builtin_sym_end] = ACTIONS(1537), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_null] = ACTIONS(1537), - [aux_sym_cmd_identifier_token38] = ACTIONS(1537), - [aux_sym_cmd_identifier_token39] = ACTIONS(1537), - [aux_sym_cmd_identifier_token40] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_DOLLAR] = ACTIONS(1525), - [anon_sym_DASH_DASH] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1525), - [aux_sym_ctrl_match_token1] = ACTIONS(1537), - [anon_sym_DOT_DOT] = ACTIONS(1525), - [anon_sym_DOT_DOT2] = ACTIONS(4694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1525), - [anon_sym_DOT_DOT_LT] = ACTIONS(1525), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4696), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4696), - [aux_sym__val_number_decimal_token1] = ACTIONS(1525), - [aux_sym__val_number_decimal_token2] = ACTIONS(1537), - [aux_sym__val_number_decimal_token3] = ACTIONS(1537), - [aux_sym__val_number_decimal_token4] = ACTIONS(1537), - [aux_sym__val_number_token1] = ACTIONS(1537), - [aux_sym__val_number_token2] = ACTIONS(1537), - [aux_sym__val_number_token3] = ACTIONS(1537), - [anon_sym_0b] = ACTIONS(1525), - [sym_filesize_unit] = ACTIONS(4718), - [sym_duration_unit] = ACTIONS(4720), - [anon_sym_0o] = ACTIONS(1525), - [anon_sym_0x] = ACTIONS(1525), - [sym_val_date] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym__str_single_quotes] = ACTIONS(1537), - [sym__str_back_ticks] = ACTIONS(1537), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1537), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1537), - [anon_sym_err_GT] = ACTIONS(1525), - [anon_sym_out_GT] = ACTIONS(1525), - [anon_sym_e_GT] = ACTIONS(1525), - [anon_sym_o_GT] = ACTIONS(1525), - [anon_sym_err_PLUSout_GT] = ACTIONS(1525), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), - [anon_sym_o_PLUSe_GT] = ACTIONS(1525), - [anon_sym_e_PLUSo_GT] = ACTIONS(1525), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), - [aux_sym_unquoted_token1] = ACTIONS(1525), - [aux_sym_unquoted_token2] = ACTIONS(4722), + [anon_sym_true] = ACTIONS(2162), + [anon_sym_false] = ACTIONS(2162), + [anon_sym_null] = ACTIONS(2162), + [aux_sym_cmd_identifier_token38] = ACTIONS(2162), + [aux_sym_cmd_identifier_token39] = ACTIONS(2162), + [aux_sym_cmd_identifier_token40] = ACTIONS(2162), + [sym__newline] = ACTIONS(2162), + [anon_sym_SEMI] = ACTIONS(2162), + [anon_sym_PIPE] = ACTIONS(2162), + [anon_sym_err_GT_PIPE] = ACTIONS(2162), + [anon_sym_out_GT_PIPE] = ACTIONS(2162), + [anon_sym_e_GT_PIPE] = ACTIONS(2162), + [anon_sym_o_GT_PIPE] = ACTIONS(2162), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2162), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2162), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2162), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2162), + [anon_sym_LBRACK] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_RPAREN] = ACTIONS(2162), + [anon_sym_DOLLAR] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2162), + [anon_sym_DASH] = ACTIONS(2160), + [aux_sym_ctrl_match_token1] = ACTIONS(2162), + [anon_sym_RBRACE] = ACTIONS(2162), + [anon_sym_DOT_DOT] = ACTIONS(2160), + [anon_sym_LPAREN2] = ACTIONS(1798), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2162), + [anon_sym_DOT_DOT_LT] = ACTIONS(2162), + [aux_sym__val_number_decimal_token1] = ACTIONS(2160), + [aux_sym__val_number_decimal_token2] = ACTIONS(2162), + [aux_sym__val_number_decimal_token3] = ACTIONS(2162), + [aux_sym__val_number_decimal_token4] = ACTIONS(2162), + [aux_sym__val_number_token1] = ACTIONS(2162), + [aux_sym__val_number_token2] = ACTIONS(2162), + [aux_sym__val_number_token3] = ACTIONS(2162), + [anon_sym_0b] = ACTIONS(2160), + [anon_sym_0o] = ACTIONS(2160), + [anon_sym_0x] = ACTIONS(2160), + [sym_val_date] = ACTIONS(2162), + [anon_sym_DQUOTE] = ACTIONS(2162), + [sym__str_single_quotes] = ACTIONS(2162), + [sym__str_back_ticks] = ACTIONS(2162), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2162), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2162), + [anon_sym_err_GT] = ACTIONS(2160), + [anon_sym_out_GT] = ACTIONS(2160), + [anon_sym_e_GT] = ACTIONS(2160), + [anon_sym_o_GT] = ACTIONS(2160), + [anon_sym_err_PLUSout_GT] = ACTIONS(2160), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2160), + [anon_sym_o_PLUSe_GT] = ACTIONS(2160), + [anon_sym_e_PLUSo_GT] = ACTIONS(2160), + [anon_sym_err_GT_GT] = ACTIONS(2162), + [anon_sym_out_GT_GT] = ACTIONS(2162), + [anon_sym_e_GT_GT] = ACTIONS(2162), + [anon_sym_o_GT_GT] = ACTIONS(2162), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2162), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2162), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2162), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2162), + [aux_sym_unquoted_token1] = ACTIONS(2160), + [aux_sym_unquoted_token2] = ACTIONS(1806), [anon_sym_POUND] = ACTIONS(247), }, [1420] = { [sym_comment] = STATE(1420), - [anon_sym_EQ] = ACTIONS(1021), - [anon_sym_PLUS_EQ] = ACTIONS(1023), - [anon_sym_DASH_EQ] = ACTIONS(1023), - [anon_sym_STAR_EQ] = ACTIONS(1023), - [anon_sym_SLASH_EQ] = ACTIONS(1023), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1023), - [sym__newline] = ACTIONS(1021), - [anon_sym_SEMI] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(1023), - [anon_sym_err_GT_PIPE] = ACTIONS(1023), - [anon_sym_out_GT_PIPE] = ACTIONS(1023), - [anon_sym_e_GT_PIPE] = ACTIONS(1023), - [anon_sym_o_GT_PIPE] = ACTIONS(1023), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1023), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1023), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1023), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1023), - [anon_sym_RPAREN] = ACTIONS(1023), - [aux_sym_ctrl_match_token1] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1023), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1023), - [anon_sym_DOT_DOT2] = ACTIONS(1021), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), - [anon_sym_err_GT] = ACTIONS(1021), - [anon_sym_out_GT] = ACTIONS(1021), - [anon_sym_e_GT] = ACTIONS(1021), - [anon_sym_o_GT] = ACTIONS(1021), - [anon_sym_err_PLUSout_GT] = ACTIONS(1021), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), - [anon_sym_o_PLUSe_GT] = ACTIONS(1021), - [anon_sym_e_PLUSo_GT] = ACTIONS(1021), - [anon_sym_err_GT_GT] = ACTIONS(1023), - [anon_sym_out_GT_GT] = ACTIONS(1023), - [anon_sym_e_GT_GT] = ACTIONS(1023), - [anon_sym_o_GT_GT] = ACTIONS(1023), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), + [anon_sym_true] = ACTIONS(1804), + [anon_sym_false] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1804), + [aux_sym_cmd_identifier_token38] = ACTIONS(1804), + [aux_sym_cmd_identifier_token39] = ACTIONS(1804), + [aux_sym_cmd_identifier_token40] = ACTIONS(1804), + [sym__newline] = ACTIONS(1804), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_PIPE] = ACTIONS(1804), + [anon_sym_err_GT_PIPE] = ACTIONS(1804), + [anon_sym_out_GT_PIPE] = ACTIONS(1804), + [anon_sym_e_GT_PIPE] = ACTIONS(1804), + [anon_sym_o_GT_PIPE] = ACTIONS(1804), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1804), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1804), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1804), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1796), + [anon_sym_RPAREN] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1796), + [aux_sym_ctrl_match_token1] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_DOT_DOT] = ACTIONS(1796), + [anon_sym_LPAREN2] = ACTIONS(1798), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1804), + [anon_sym_DOT_DOT_LT] = ACTIONS(1804), + [aux_sym__val_number_decimal_token1] = ACTIONS(1796), + [aux_sym__val_number_decimal_token2] = ACTIONS(1804), + [aux_sym__val_number_decimal_token3] = ACTIONS(1804), + [aux_sym__val_number_decimal_token4] = ACTIONS(1804), + [aux_sym__val_number_token1] = ACTIONS(1804), + [aux_sym__val_number_token2] = ACTIONS(1804), + [aux_sym__val_number_token3] = ACTIONS(1804), + [anon_sym_0b] = ACTIONS(1796), + [anon_sym_0o] = ACTIONS(1796), + [anon_sym_0x] = ACTIONS(1796), + [sym_val_date] = ACTIONS(1804), + [anon_sym_DQUOTE] = ACTIONS(1804), + [sym__str_single_quotes] = ACTIONS(1804), + [sym__str_back_ticks] = ACTIONS(1804), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1804), + [anon_sym_err_GT] = ACTIONS(1796), + [anon_sym_out_GT] = ACTIONS(1796), + [anon_sym_e_GT] = ACTIONS(1796), + [anon_sym_o_GT] = ACTIONS(1796), + [anon_sym_err_PLUSout_GT] = ACTIONS(1796), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1796), + [anon_sym_o_PLUSe_GT] = ACTIONS(1796), + [anon_sym_e_PLUSo_GT] = ACTIONS(1796), + [anon_sym_err_GT_GT] = ACTIONS(1804), + [anon_sym_out_GT_GT] = ACTIONS(1804), + [anon_sym_e_GT_GT] = ACTIONS(1804), + [anon_sym_o_GT_GT] = ACTIONS(1804), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1804), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1804), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1804), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1804), + [aux_sym_unquoted_token1] = ACTIONS(1796), + [aux_sym_unquoted_token2] = ACTIONS(1806), [anon_sym_POUND] = ACTIONS(247), }, [1421] = { [sym_comment] = STATE(1421), - [ts_builtin_sym_end] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [aux_sym_cmd_identifier_token38] = ACTIONS(1475), - [aux_sym_cmd_identifier_token39] = ACTIONS(1475), - [aux_sym_cmd_identifier_token40] = ACTIONS(1475), - [sym__newline] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_err_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_GT_PIPE] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1475), - [anon_sym_DOLLAR] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1473), - [aux_sym_ctrl_match_token1] = ACTIONS(1475), - [anon_sym_DOT_DOT] = ACTIONS(1473), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), - [anon_sym_DOT_DOT_LT] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [aux_sym__val_number_decimal_token1] = ACTIONS(1473), - [aux_sym__val_number_decimal_token2] = ACTIONS(1475), - [aux_sym__val_number_decimal_token3] = ACTIONS(1475), - [aux_sym__val_number_decimal_token4] = ACTIONS(1475), - [aux_sym__val_number_token1] = ACTIONS(1475), - [aux_sym__val_number_token2] = ACTIONS(1475), - [aux_sym__val_number_token3] = ACTIONS(1475), - [anon_sym_0b] = ACTIONS(1473), - [sym_filesize_unit] = ACTIONS(1475), - [sym_duration_unit] = ACTIONS(1475), - [anon_sym_0o] = ACTIONS(1473), - [anon_sym_0x] = ACTIONS(1473), - [sym_val_date] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym__str_single_quotes] = ACTIONS(1475), - [sym__str_back_ticks] = ACTIONS(1475), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1473), - [anon_sym_out_GT] = ACTIONS(1473), - [anon_sym_e_GT] = ACTIONS(1473), - [anon_sym_o_GT] = ACTIONS(1473), - [anon_sym_err_PLUSout_GT] = ACTIONS(1473), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), - [anon_sym_o_PLUSe_GT] = ACTIONS(1473), - [anon_sym_e_PLUSo_GT] = ACTIONS(1473), - [anon_sym_err_GT_GT] = ACTIONS(1475), - [anon_sym_out_GT_GT] = ACTIONS(1475), - [anon_sym_e_GT_GT] = ACTIONS(1475), - [anon_sym_o_GT_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), - [aux_sym_unquoted_token1] = ACTIONS(1473), - [aux_sym_unquoted_token2] = ACTIONS(1473), + [anon_sym_true] = ACTIONS(1046), + [anon_sym_false] = ACTIONS(1046), + [anon_sym_null] = ACTIONS(1046), + [aux_sym_cmd_identifier_token38] = ACTIONS(1046), + [aux_sym_cmd_identifier_token39] = ACTIONS(1046), + [aux_sym_cmd_identifier_token40] = ACTIONS(1046), + [sym__newline] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_err_GT_PIPE] = ACTIONS(1046), + [anon_sym_out_GT_PIPE] = ACTIONS(1046), + [anon_sym_e_GT_PIPE] = ACTIONS(1046), + [anon_sym_o_GT_PIPE] = ACTIONS(1046), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1046), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1046), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1046), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1046), + [anon_sym_LBRACK] = ACTIONS(1046), + [anon_sym_LPAREN] = ACTIONS(1046), + [anon_sym_RPAREN] = ACTIONS(1046), + [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_DASH_DASH] = ACTIONS(1046), + [anon_sym_DASH] = ACTIONS(1044), + [aux_sym_ctrl_match_token1] = ACTIONS(1046), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_DOT_DOT] = ACTIONS(1044), + [anon_sym_QMARK2] = ACTIONS(1046), + [anon_sym_DOT] = ACTIONS(1044), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1046), + [anon_sym_DOT_DOT_LT] = ACTIONS(1046), + [aux_sym__val_number_decimal_token1] = ACTIONS(1044), + [aux_sym__val_number_decimal_token2] = ACTIONS(1046), + [aux_sym__val_number_decimal_token3] = ACTIONS(1046), + [aux_sym__val_number_decimal_token4] = ACTIONS(1046), + [aux_sym__val_number_token1] = ACTIONS(1046), + [aux_sym__val_number_token2] = ACTIONS(1046), + [aux_sym__val_number_token3] = ACTIONS(1046), + [anon_sym_0b] = ACTIONS(1044), + [anon_sym_0o] = ACTIONS(1044), + [anon_sym_0x] = ACTIONS(1044), + [sym_val_date] = ACTIONS(1046), + [anon_sym_DQUOTE] = ACTIONS(1046), + [sym__str_single_quotes] = ACTIONS(1046), + [sym__str_back_ticks] = ACTIONS(1046), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1046), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1046), + [anon_sym_err_GT] = ACTIONS(1044), + [anon_sym_out_GT] = ACTIONS(1044), + [anon_sym_e_GT] = ACTIONS(1044), + [anon_sym_o_GT] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT] = ACTIONS(1044), + [anon_sym_err_GT_GT] = ACTIONS(1046), + [anon_sym_out_GT_GT] = ACTIONS(1046), + [anon_sym_e_GT_GT] = ACTIONS(1046), + [anon_sym_o_GT_GT] = ACTIONS(1046), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1046), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1046), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1046), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1046), + [aux_sym_unquoted_token1] = ACTIONS(1044), [anon_sym_POUND] = ACTIONS(247), }, [1422] = { [sym_comment] = STATE(1422), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1717), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [sym__newline] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_err_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_GT_PIPE] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_RPAREN] = ACTIONS(1717), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1709), - [aux_sym_ctrl_match_token1] = ACTIONS(1717), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_DOT_DOT] = ACTIONS(1709), - [anon_sym_LPAREN2] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(4724), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1709), - [anon_sym_DOT_DOT_LT] = ACTIONS(1709), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4726), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4726), - [aux_sym__val_number_decimal_token1] = ACTIONS(1709), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [anon_sym_0b] = ACTIONS(1709), - [anon_sym_0o] = ACTIONS(1709), - [anon_sym_0x] = ACTIONS(1709), - [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_err_GT] = ACTIONS(1709), - [anon_sym_out_GT] = ACTIONS(1709), - [anon_sym_e_GT] = ACTIONS(1709), - [anon_sym_o_GT] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT] = ACTIONS(1709), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), - [anon_sym_o_PLUSe_GT] = ACTIONS(1709), - [anon_sym_e_PLUSo_GT] = ACTIONS(1709), - [anon_sym_err_GT_GT] = ACTIONS(1717), - [anon_sym_out_GT_GT] = ACTIONS(1717), - [anon_sym_e_GT_GT] = ACTIONS(1717), - [anon_sym_o_GT_GT] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), - [aux_sym_unquoted_token1] = ACTIONS(1709), - [aux_sym_unquoted_token2] = ACTIONS(1719), + [aux_sym_cmd_identifier_token41] = ACTIONS(1517), + [sym__newline] = ACTIONS(1517), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1519), + [anon_sym_err_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_GT_PIPE] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), + [anon_sym_RPAREN] = ACTIONS(1519), + [aux_sym_ctrl_match_token1] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1519), + [anon_sym_DOT_DOT2] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), + [sym_filesize_unit] = ACTIONS(1519), + [sym_duration_unit] = ACTIONS(1519), + [anon_sym_err_GT] = ACTIONS(1517), + [anon_sym_out_GT] = ACTIONS(1517), + [anon_sym_e_GT] = ACTIONS(1517), + [anon_sym_o_GT] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT] = ACTIONS(1517), + [anon_sym_err_GT_GT] = ACTIONS(1519), + [anon_sym_out_GT_GT] = ACTIONS(1519), + [anon_sym_e_GT_GT] = ACTIONS(1519), + [anon_sym_o_GT_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), [anon_sym_POUND] = ACTIONS(247), }, [1423] = { [sym_comment] = STATE(1423), - [anon_sym_EQ] = ACTIONS(1000), - [anon_sym_PLUS_EQ] = ACTIONS(1002), - [anon_sym_DASH_EQ] = ACTIONS(1002), - [anon_sym_STAR_EQ] = ACTIONS(1002), - [anon_sym_SLASH_EQ] = ACTIONS(1002), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1002), - [sym__newline] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_err_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_GT_PIPE] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), - [anon_sym_RPAREN] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1008), - [aux_sym_expr_binary_token1] = ACTIONS(1008), - [aux_sym_expr_binary_token2] = ACTIONS(1008), - [aux_sym_expr_binary_token3] = ACTIONS(1008), - [aux_sym_expr_binary_token4] = ACTIONS(1008), - [aux_sym_expr_binary_token5] = ACTIONS(1008), - [aux_sym_expr_binary_token6] = ACTIONS(1008), - [aux_sym_expr_binary_token7] = ACTIONS(1008), - [aux_sym_expr_binary_token8] = ACTIONS(1008), - [aux_sym_expr_binary_token9] = ACTIONS(1008), - [aux_sym_expr_binary_token10] = ACTIONS(1008), - [aux_sym_expr_binary_token11] = ACTIONS(1008), - [aux_sym_expr_binary_token12] = ACTIONS(1008), - [aux_sym_expr_binary_token13] = ACTIONS(1008), - [aux_sym_expr_binary_token14] = ACTIONS(1008), - [aux_sym_expr_binary_token15] = ACTIONS(1008), - [aux_sym_expr_binary_token16] = ACTIONS(1008), - [aux_sym_expr_binary_token17] = ACTIONS(1008), - [aux_sym_expr_binary_token18] = ACTIONS(1008), - [aux_sym_expr_binary_token19] = ACTIONS(1008), - [aux_sym_expr_binary_token20] = ACTIONS(1008), - [aux_sym_expr_binary_token21] = ACTIONS(1008), - [aux_sym_expr_binary_token22] = ACTIONS(1008), - [aux_sym_expr_binary_token23] = ACTIONS(1008), - [aux_sym_expr_binary_token24] = ACTIONS(1008), - [aux_sym_expr_binary_token25] = ACTIONS(1008), - [aux_sym_expr_binary_token26] = ACTIONS(1008), - [aux_sym_expr_binary_token27] = ACTIONS(1008), - [aux_sym_expr_binary_token28] = ACTIONS(1008), - [anon_sym_DOT_DOT2] = ACTIONS(1015), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1017), - [anon_sym_err_GT] = ACTIONS(1006), - [anon_sym_out_GT] = ACTIONS(1006), - [anon_sym_e_GT] = ACTIONS(1006), - [anon_sym_o_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT] = ACTIONS(1006), - [anon_sym_err_GT_GT] = ACTIONS(1008), - [anon_sym_out_GT_GT] = ACTIONS(1008), - [anon_sym_e_GT_GT] = ACTIONS(1008), - [anon_sym_o_GT_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), + [anon_sym_true] = ACTIONS(1050), + [anon_sym_false] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1050), + [aux_sym_cmd_identifier_token38] = ACTIONS(1050), + [aux_sym_cmd_identifier_token39] = ACTIONS(1050), + [aux_sym_cmd_identifier_token40] = ACTIONS(1050), + [sym__newline] = ACTIONS(1050), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_err_GT_PIPE] = ACTIONS(1050), + [anon_sym_out_GT_PIPE] = ACTIONS(1050), + [anon_sym_e_GT_PIPE] = ACTIONS(1050), + [anon_sym_o_GT_PIPE] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1050), + [anon_sym_LBRACK] = ACTIONS(1050), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_RPAREN] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_DASH] = ACTIONS(1048), + [aux_sym_ctrl_match_token1] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(1050), + [anon_sym_DOT_DOT] = ACTIONS(1048), + [anon_sym_QMARK2] = ACTIONS(1050), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1050), + [anon_sym_DOT_DOT_LT] = ACTIONS(1050), + [aux_sym__val_number_decimal_token1] = ACTIONS(1048), + [aux_sym__val_number_decimal_token2] = ACTIONS(1050), + [aux_sym__val_number_decimal_token3] = ACTIONS(1050), + [aux_sym__val_number_decimal_token4] = ACTIONS(1050), + [aux_sym__val_number_token1] = ACTIONS(1050), + [aux_sym__val_number_token2] = ACTIONS(1050), + [aux_sym__val_number_token3] = ACTIONS(1050), + [anon_sym_0b] = ACTIONS(1048), + [anon_sym_0o] = ACTIONS(1048), + [anon_sym_0x] = ACTIONS(1048), + [sym_val_date] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym__str_single_quotes] = ACTIONS(1050), + [sym__str_back_ticks] = ACTIONS(1050), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1050), + [anon_sym_err_GT] = ACTIONS(1048), + [anon_sym_out_GT] = ACTIONS(1048), + [anon_sym_e_GT] = ACTIONS(1048), + [anon_sym_o_GT] = ACTIONS(1048), + [anon_sym_err_PLUSout_GT] = ACTIONS(1048), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1048), + [anon_sym_o_PLUSe_GT] = ACTIONS(1048), + [anon_sym_e_PLUSo_GT] = ACTIONS(1048), + [anon_sym_err_GT_GT] = ACTIONS(1050), + [anon_sym_out_GT_GT] = ACTIONS(1050), + [anon_sym_e_GT_GT] = ACTIONS(1050), + [anon_sym_o_GT_GT] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1050), + [aux_sym_unquoted_token1] = ACTIONS(1048), [anon_sym_POUND] = ACTIONS(247), }, [1424] = { [sym_comment] = STATE(1424), - [ts_builtin_sym_end] = ACTIONS(988), - [anon_sym_EQ] = ACTIONS(986), - [anon_sym_PLUS_EQ] = ACTIONS(988), - [anon_sym_DASH_EQ] = ACTIONS(988), - [anon_sym_STAR_EQ] = ACTIONS(988), - [anon_sym_SLASH_EQ] = ACTIONS(988), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(988), - [sym__newline] = ACTIONS(988), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_PIPE] = ACTIONS(988), - [anon_sym_err_GT_PIPE] = ACTIONS(988), - [anon_sym_out_GT_PIPE] = ACTIONS(988), - [anon_sym_e_GT_PIPE] = ACTIONS(988), - [anon_sym_o_GT_PIPE] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(988), - [aux_sym_expr_binary_token1] = ACTIONS(988), - [aux_sym_expr_binary_token2] = ACTIONS(988), - [aux_sym_expr_binary_token3] = ACTIONS(988), - [aux_sym_expr_binary_token4] = ACTIONS(988), - [aux_sym_expr_binary_token5] = ACTIONS(988), - [aux_sym_expr_binary_token6] = ACTIONS(988), - [aux_sym_expr_binary_token7] = ACTIONS(988), - [aux_sym_expr_binary_token8] = ACTIONS(988), - [aux_sym_expr_binary_token9] = ACTIONS(988), - [aux_sym_expr_binary_token10] = ACTIONS(988), - [aux_sym_expr_binary_token11] = ACTIONS(988), - [aux_sym_expr_binary_token12] = ACTIONS(988), - [aux_sym_expr_binary_token13] = ACTIONS(988), - [aux_sym_expr_binary_token14] = ACTIONS(988), - [aux_sym_expr_binary_token15] = ACTIONS(988), - [aux_sym_expr_binary_token16] = ACTIONS(988), - [aux_sym_expr_binary_token17] = ACTIONS(988), - [aux_sym_expr_binary_token18] = ACTIONS(988), - [aux_sym_expr_binary_token19] = ACTIONS(988), - [aux_sym_expr_binary_token20] = ACTIONS(988), - [aux_sym_expr_binary_token21] = ACTIONS(988), - [aux_sym_expr_binary_token22] = ACTIONS(988), - [aux_sym_expr_binary_token23] = ACTIONS(988), - [aux_sym_expr_binary_token24] = ACTIONS(988), - [aux_sym_expr_binary_token25] = ACTIONS(988), - [aux_sym_expr_binary_token26] = ACTIONS(988), - [aux_sym_expr_binary_token27] = ACTIONS(988), - [aux_sym_expr_binary_token28] = ACTIONS(988), - [anon_sym_DOT_DOT2] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(986), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), - [anon_sym_DOT_DOT_LT2] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(986), - [anon_sym_out_GT] = ACTIONS(986), - [anon_sym_e_GT] = ACTIONS(986), - [anon_sym_o_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT] = ACTIONS(986), - [anon_sym_err_GT_GT] = ACTIONS(988), - [anon_sym_out_GT_GT] = ACTIONS(988), - [anon_sym_e_GT_GT] = ACTIONS(988), - [anon_sym_o_GT_GT] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), + [ts_builtin_sym_end] = ACTIONS(1641), + [sym__newline] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(1641), + [anon_sym_PIPE] = ACTIONS(1641), + [anon_sym_err_GT_PIPE] = ACTIONS(1641), + [anon_sym_out_GT_PIPE] = ACTIONS(1641), + [anon_sym_e_GT_PIPE] = ACTIONS(1641), + [anon_sym_o_GT_PIPE] = ACTIONS(1641), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), + [anon_sym_LPAREN2] = ACTIONS(1641), + [aux_sym_expr_binary_token1] = ACTIONS(1641), + [aux_sym_expr_binary_token2] = ACTIONS(1641), + [aux_sym_expr_binary_token3] = ACTIONS(1641), + [aux_sym_expr_binary_token4] = ACTIONS(1641), + [aux_sym_expr_binary_token5] = ACTIONS(1641), + [aux_sym_expr_binary_token6] = ACTIONS(1641), + [aux_sym_expr_binary_token7] = ACTIONS(1641), + [aux_sym_expr_binary_token8] = ACTIONS(1641), + [aux_sym_expr_binary_token9] = ACTIONS(1641), + [aux_sym_expr_binary_token10] = ACTIONS(1641), + [aux_sym_expr_binary_token11] = ACTIONS(1641), + [aux_sym_expr_binary_token12] = ACTIONS(1641), + [aux_sym_expr_binary_token13] = ACTIONS(1641), + [aux_sym_expr_binary_token14] = ACTIONS(1641), + [aux_sym_expr_binary_token15] = ACTIONS(1641), + [aux_sym_expr_binary_token16] = ACTIONS(1641), + [aux_sym_expr_binary_token17] = ACTIONS(1641), + [aux_sym_expr_binary_token18] = ACTIONS(1641), + [aux_sym_expr_binary_token19] = ACTIONS(1641), + [aux_sym_expr_binary_token20] = ACTIONS(1641), + [aux_sym_expr_binary_token21] = ACTIONS(1641), + [aux_sym_expr_binary_token22] = ACTIONS(1641), + [aux_sym_expr_binary_token23] = ACTIONS(1641), + [aux_sym_expr_binary_token24] = ACTIONS(1641), + [aux_sym_expr_binary_token25] = ACTIONS(1641), + [aux_sym_expr_binary_token26] = ACTIONS(1641), + [aux_sym_expr_binary_token27] = ACTIONS(1641), + [aux_sym_expr_binary_token28] = ACTIONS(1641), + [anon_sym_DOT_DOT2] = ACTIONS(1639), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), + [sym_filesize_unit] = ACTIONS(1641), + [sym_duration_unit] = ACTIONS(1641), + [anon_sym_err_GT] = ACTIONS(1639), + [anon_sym_out_GT] = ACTIONS(1639), + [anon_sym_e_GT] = ACTIONS(1639), + [anon_sym_o_GT] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT] = ACTIONS(1639), + [anon_sym_err_GT_GT] = ACTIONS(1641), + [anon_sym_out_GT_GT] = ACTIONS(1641), + [anon_sym_e_GT_GT] = ACTIONS(1641), + [anon_sym_o_GT_GT] = ACTIONS(1641), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), + [aux_sym_unquoted_token2] = ACTIONS(1639), [anon_sym_POUND] = ACTIONS(247), }, [1425] = { [sym_comment] = STATE(1425), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [anon_sym_null] = ACTIONS(1650), - [aux_sym_cmd_identifier_token38] = ACTIONS(1650), - [aux_sym_cmd_identifier_token39] = ACTIONS(1650), - [aux_sym_cmd_identifier_token40] = ACTIONS(1650), - [sym__newline] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_err_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_GT_PIPE] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_RPAREN] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_DASH] = ACTIONS(1648), - [aux_sym_ctrl_match_token1] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_DOT_DOT] = ACTIONS(1648), - [anon_sym_LPAREN2] = ACTIONS(1650), - [anon_sym_DOT_DOT2] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1648), - [anon_sym_DOT_DOT_LT] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token3] = ACTIONS(1650), - [aux_sym__val_number_decimal_token4] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [anon_sym_0b] = ACTIONS(1648), - [anon_sym_0o] = ACTIONS(1648), - [anon_sym_0x] = ACTIONS(1648), - [sym_val_date] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), - [anon_sym_err_GT] = ACTIONS(1648), - [anon_sym_out_GT] = ACTIONS(1648), - [anon_sym_e_GT] = ACTIONS(1648), - [anon_sym_o_GT] = ACTIONS(1648), - [anon_sym_err_PLUSout_GT] = ACTIONS(1648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1648), - [anon_sym_o_PLUSe_GT] = ACTIONS(1648), - [anon_sym_e_PLUSo_GT] = ACTIONS(1648), - [anon_sym_err_GT_GT] = ACTIONS(1650), - [anon_sym_out_GT_GT] = ACTIONS(1650), - [anon_sym_e_GT_GT] = ACTIONS(1650), - [anon_sym_o_GT_GT] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1650), - [aux_sym_unquoted_token1] = ACTIONS(1648), - [aux_sym_unquoted_token2] = ACTIONS(1648), + [ts_builtin_sym_end] = ACTIONS(1707), + [anon_sym_true] = ACTIONS(1707), + [anon_sym_false] = ACTIONS(1707), + [anon_sym_null] = ACTIONS(1707), + [aux_sym_cmd_identifier_token38] = ACTIONS(1707), + [aux_sym_cmd_identifier_token39] = ACTIONS(1707), + [aux_sym_cmd_identifier_token40] = ACTIONS(1707), + [sym__newline] = ACTIONS(1707), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_err_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_GT_PIPE] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), + [anon_sym_LBRACK] = ACTIONS(1707), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1705), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1705), + [aux_sym_ctrl_match_token1] = ACTIONS(1707), + [anon_sym_DOT_DOT] = ACTIONS(1705), + [anon_sym_LPAREN2] = ACTIONS(1707), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1707), + [anon_sym_DOT_DOT_LT] = ACTIONS(1707), + [aux_sym__immediate_decimal_token2] = ACTIONS(4773), + [aux_sym__val_number_decimal_token1] = ACTIONS(1705), + [aux_sym__val_number_decimal_token2] = ACTIONS(1707), + [aux_sym__val_number_decimal_token3] = ACTIONS(1707), + [aux_sym__val_number_decimal_token4] = ACTIONS(1707), + [aux_sym__val_number_token1] = ACTIONS(1707), + [aux_sym__val_number_token2] = ACTIONS(1707), + [aux_sym__val_number_token3] = ACTIONS(1707), + [anon_sym_0b] = ACTIONS(1705), + [anon_sym_0o] = ACTIONS(1705), + [anon_sym_0x] = ACTIONS(1705), + [sym_val_date] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1707), + [sym__str_single_quotes] = ACTIONS(1707), + [sym__str_back_ticks] = ACTIONS(1707), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1707), + [anon_sym_err_GT] = ACTIONS(1705), + [anon_sym_out_GT] = ACTIONS(1705), + [anon_sym_e_GT] = ACTIONS(1705), + [anon_sym_o_GT] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT] = ACTIONS(1705), + [anon_sym_err_GT_GT] = ACTIONS(1707), + [anon_sym_out_GT_GT] = ACTIONS(1707), + [anon_sym_e_GT_GT] = ACTIONS(1707), + [anon_sym_o_GT_GT] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), + [aux_sym_unquoted_token1] = ACTIONS(1705), + [aux_sym_unquoted_token2] = ACTIONS(1705), [anon_sym_POUND] = ACTIONS(247), }, [1426] = { [sym_comment] = STATE(1426), - [ts_builtin_sym_end] = ACTIONS(996), - [anon_sym_EQ] = ACTIONS(994), - [anon_sym_PLUS_EQ] = ACTIONS(996), - [anon_sym_DASH_EQ] = ACTIONS(996), - [anon_sym_STAR_EQ] = ACTIONS(996), - [anon_sym_SLASH_EQ] = ACTIONS(996), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(996), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [aux_sym_expr_binary_token1] = ACTIONS(996), - [aux_sym_expr_binary_token2] = ACTIONS(996), - [aux_sym_expr_binary_token3] = ACTIONS(996), - [aux_sym_expr_binary_token4] = ACTIONS(996), - [aux_sym_expr_binary_token5] = ACTIONS(996), - [aux_sym_expr_binary_token6] = ACTIONS(996), - [aux_sym_expr_binary_token7] = ACTIONS(996), - [aux_sym_expr_binary_token8] = ACTIONS(996), - [aux_sym_expr_binary_token9] = ACTIONS(996), - [aux_sym_expr_binary_token10] = ACTIONS(996), - [aux_sym_expr_binary_token11] = ACTIONS(996), - [aux_sym_expr_binary_token12] = ACTIONS(996), - [aux_sym_expr_binary_token13] = ACTIONS(996), - [aux_sym_expr_binary_token14] = ACTIONS(996), - [aux_sym_expr_binary_token15] = ACTIONS(996), - [aux_sym_expr_binary_token16] = ACTIONS(996), - [aux_sym_expr_binary_token17] = ACTIONS(996), - [aux_sym_expr_binary_token18] = ACTIONS(996), - [aux_sym_expr_binary_token19] = ACTIONS(996), - [aux_sym_expr_binary_token20] = ACTIONS(996), - [aux_sym_expr_binary_token21] = ACTIONS(996), - [aux_sym_expr_binary_token22] = ACTIONS(996), - [aux_sym_expr_binary_token23] = ACTIONS(996), - [aux_sym_expr_binary_token24] = ACTIONS(996), - [aux_sym_expr_binary_token25] = ACTIONS(996), - [aux_sym_expr_binary_token26] = ACTIONS(996), - [aux_sym_expr_binary_token27] = ACTIONS(996), - [aux_sym_expr_binary_token28] = ACTIONS(996), - [anon_sym_DOT_DOT2] = ACTIONS(994), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), - [anon_sym_DOT_DOT_LT2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(994), - [anon_sym_out_GT] = ACTIONS(994), - [anon_sym_e_GT] = ACTIONS(994), - [anon_sym_o_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT] = ACTIONS(994), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [aux_sym_cmd_identifier_token41] = ACTIONS(1565), + [sym__newline] = ACTIONS(1565), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_err_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_GT_PIPE] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), + [anon_sym_RPAREN] = ACTIONS(1567), + [aux_sym_ctrl_match_token1] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1567), + [anon_sym_DOT_DOT2] = ACTIONS(1565), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), + [sym_filesize_unit] = ACTIONS(1567), + [sym_duration_unit] = ACTIONS(1567), + [anon_sym_err_GT] = ACTIONS(1565), + [anon_sym_out_GT] = ACTIONS(1565), + [anon_sym_e_GT] = ACTIONS(1565), + [anon_sym_o_GT] = ACTIONS(1565), + [anon_sym_err_PLUSout_GT] = ACTIONS(1565), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), + [anon_sym_o_PLUSe_GT] = ACTIONS(1565), + [anon_sym_e_PLUSo_GT] = ACTIONS(1565), + [anon_sym_err_GT_GT] = ACTIONS(1567), + [anon_sym_out_GT_GT] = ACTIONS(1567), + [anon_sym_e_GT_GT] = ACTIONS(1567), + [anon_sym_o_GT_GT] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), [anon_sym_POUND] = ACTIONS(247), }, [1427] = { [sym_comment] = STATE(1427), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1723), - [aux_sym_cmd_identifier_token38] = ACTIONS(1723), - [aux_sym_cmd_identifier_token39] = ACTIONS(1723), - [aux_sym_cmd_identifier_token40] = ACTIONS(1723), - [sym__newline] = ACTIONS(1723), - [anon_sym_SEMI] = ACTIONS(1723), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_err_GT_PIPE] = ACTIONS(1723), - [anon_sym_out_GT_PIPE] = ACTIONS(1723), - [anon_sym_e_GT_PIPE] = ACTIONS(1723), - [anon_sym_o_GT_PIPE] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), - [anon_sym_LBRACK] = ACTIONS(1723), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_RPAREN] = ACTIONS(1723), - [anon_sym_DOLLAR] = ACTIONS(1721), - [anon_sym_DASH_DASH] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1721), - [aux_sym_ctrl_match_token1] = ACTIONS(1723), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1721), - [anon_sym_LPAREN2] = ACTIONS(1723), - [anon_sym_DOT_DOT2] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token3] = ACTIONS(1723), - [aux_sym__val_number_decimal_token4] = ACTIONS(1723), - [aux_sym__val_number_token1] = ACTIONS(1723), - [aux_sym__val_number_token2] = ACTIONS(1723), - [aux_sym__val_number_token3] = ACTIONS(1723), - [anon_sym_0b] = ACTIONS(1721), - [anon_sym_0o] = ACTIONS(1721), - [anon_sym_0x] = ACTIONS(1721), - [sym_val_date] = ACTIONS(1723), - [anon_sym_DQUOTE] = ACTIONS(1723), - [sym__str_single_quotes] = ACTIONS(1723), - [sym__str_back_ticks] = ACTIONS(1723), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1723), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1723), - [anon_sym_err_GT] = ACTIONS(1721), - [anon_sym_out_GT] = ACTIONS(1721), - [anon_sym_e_GT] = ACTIONS(1721), - [anon_sym_o_GT] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT] = ACTIONS(1721), - [anon_sym_err_GT_GT] = ACTIONS(1723), - [anon_sym_out_GT_GT] = ACTIONS(1723), - [anon_sym_e_GT_GT] = ACTIONS(1723), - [anon_sym_o_GT_GT] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), - [aux_sym_unquoted_token1] = ACTIONS(1721), - [aux_sym_unquoted_token2] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(2293), + [anon_sym_false] = ACTIONS(2293), + [anon_sym_null] = ACTIONS(2293), + [aux_sym_cmd_identifier_token38] = ACTIONS(2293), + [aux_sym_cmd_identifier_token39] = ACTIONS(2293), + [aux_sym_cmd_identifier_token40] = ACTIONS(2293), + [sym__newline] = ACTIONS(2297), + [anon_sym_SEMI] = ACTIONS(2297), + [anon_sym_PIPE] = ACTIONS(2297), + [anon_sym_err_GT_PIPE] = ACTIONS(2297), + [anon_sym_out_GT_PIPE] = ACTIONS(2297), + [anon_sym_e_GT_PIPE] = ACTIONS(2297), + [anon_sym_o_GT_PIPE] = ACTIONS(2297), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2297), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2297), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2297), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(2297), + [anon_sym_LPAREN] = ACTIONS(2293), + [anon_sym_RPAREN] = ACTIONS(2297), + [anon_sym_DOLLAR] = ACTIONS(2293), + [anon_sym_DASH_DASH] = ACTIONS(2293), + [anon_sym_DASH] = ACTIONS(2293), + [aux_sym_ctrl_match_token1] = ACTIONS(2297), + [anon_sym_RBRACE] = ACTIONS(2297), + [anon_sym_DOT_DOT] = ACTIONS(2293), + [anon_sym_LPAREN2] = ACTIONS(2295), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2293), + [anon_sym_DOT_DOT_LT] = ACTIONS(2293), + [aux_sym__val_number_decimal_token1] = ACTIONS(2293), + [aux_sym__val_number_decimal_token2] = ACTIONS(2293), + [aux_sym__val_number_decimal_token3] = ACTIONS(2293), + [aux_sym__val_number_decimal_token4] = ACTIONS(2293), + [aux_sym__val_number_token1] = ACTIONS(2293), + [aux_sym__val_number_token2] = ACTIONS(2293), + [aux_sym__val_number_token3] = ACTIONS(2293), + [anon_sym_0b] = ACTIONS(2293), + [anon_sym_0o] = ACTIONS(2293), + [anon_sym_0x] = ACTIONS(2293), + [sym_val_date] = ACTIONS(2293), + [anon_sym_DQUOTE] = ACTIONS(2297), + [sym__str_single_quotes] = ACTIONS(2297), + [sym__str_back_ticks] = ACTIONS(2297), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2297), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2297), + [anon_sym_err_GT] = ACTIONS(2293), + [anon_sym_out_GT] = ACTIONS(2293), + [anon_sym_e_GT] = ACTIONS(2293), + [anon_sym_o_GT] = ACTIONS(2293), + [anon_sym_err_PLUSout_GT] = ACTIONS(2293), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2293), + [anon_sym_o_PLUSe_GT] = ACTIONS(2293), + [anon_sym_e_PLUSo_GT] = ACTIONS(2293), + [anon_sym_err_GT_GT] = ACTIONS(2293), + [anon_sym_out_GT_GT] = ACTIONS(2293), + [anon_sym_e_GT_GT] = ACTIONS(2293), + [anon_sym_o_GT_GT] = ACTIONS(2293), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2293), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2293), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2293), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2293), + [aux_sym_unquoted_token1] = ACTIONS(2293), + [aux_sym_unquoted_token4] = ACTIONS(2299), + [anon_sym_POUND] = ACTIONS(3), }, [1428] = { [sym_comment] = STATE(1428), - [anon_sym_EQ] = ACTIONS(1000), - [anon_sym_PLUS_EQ] = ACTIONS(1002), - [anon_sym_DASH_EQ] = ACTIONS(1002), - [anon_sym_STAR_EQ] = ACTIONS(1002), - [anon_sym_SLASH_EQ] = ACTIONS(1002), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1002), - [sym__newline] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_err_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_GT_PIPE] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1008), - [aux_sym_expr_binary_token1] = ACTIONS(1008), - [aux_sym_expr_binary_token2] = ACTIONS(1008), - [aux_sym_expr_binary_token3] = ACTIONS(1008), - [aux_sym_expr_binary_token4] = ACTIONS(1008), - [aux_sym_expr_binary_token5] = ACTIONS(1008), - [aux_sym_expr_binary_token6] = ACTIONS(1008), - [aux_sym_expr_binary_token7] = ACTIONS(1008), - [aux_sym_expr_binary_token8] = ACTIONS(1008), - [aux_sym_expr_binary_token9] = ACTIONS(1008), - [aux_sym_expr_binary_token10] = ACTIONS(1008), - [aux_sym_expr_binary_token11] = ACTIONS(1008), - [aux_sym_expr_binary_token12] = ACTIONS(1008), - [aux_sym_expr_binary_token13] = ACTIONS(1008), - [aux_sym_expr_binary_token14] = ACTIONS(1008), - [aux_sym_expr_binary_token15] = ACTIONS(1008), - [aux_sym_expr_binary_token16] = ACTIONS(1008), - [aux_sym_expr_binary_token17] = ACTIONS(1008), - [aux_sym_expr_binary_token18] = ACTIONS(1008), - [aux_sym_expr_binary_token19] = ACTIONS(1008), - [aux_sym_expr_binary_token20] = ACTIONS(1008), - [aux_sym_expr_binary_token21] = ACTIONS(1008), - [aux_sym_expr_binary_token22] = ACTIONS(1008), - [aux_sym_expr_binary_token23] = ACTIONS(1008), - [aux_sym_expr_binary_token24] = ACTIONS(1008), - [aux_sym_expr_binary_token25] = ACTIONS(1008), - [aux_sym_expr_binary_token26] = ACTIONS(1008), - [aux_sym_expr_binary_token27] = ACTIONS(1008), - [aux_sym_expr_binary_token28] = ACTIONS(1008), - [anon_sym_DOT_DOT2] = ACTIONS(1015), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1017), - [aux_sym_record_entry_token1] = ACTIONS(4728), - [anon_sym_err_GT] = ACTIONS(1006), - [anon_sym_out_GT] = ACTIONS(1006), - [anon_sym_e_GT] = ACTIONS(1006), - [anon_sym_o_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT] = ACTIONS(1006), - [anon_sym_err_GT_GT] = ACTIONS(1008), - [anon_sym_out_GT_GT] = ACTIONS(1008), - [anon_sym_e_GT_GT] = ACTIONS(1008), - [anon_sym_o_GT_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), + [anon_sym_true] = ACTIONS(2222), + [anon_sym_false] = ACTIONS(2222), + [anon_sym_null] = ACTIONS(2222), + [aux_sym_cmd_identifier_token38] = ACTIONS(2222), + [aux_sym_cmd_identifier_token39] = ACTIONS(2222), + [aux_sym_cmd_identifier_token40] = ACTIONS(2222), + [sym__newline] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2222), + [anon_sym_PIPE] = ACTIONS(2222), + [anon_sym_err_GT_PIPE] = ACTIONS(2222), + [anon_sym_out_GT_PIPE] = ACTIONS(2222), + [anon_sym_e_GT_PIPE] = ACTIONS(2222), + [anon_sym_o_GT_PIPE] = ACTIONS(2222), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2222), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2222), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2222), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_LPAREN] = ACTIONS(2218), + [anon_sym_RPAREN] = ACTIONS(2222), + [anon_sym_DOLLAR] = ACTIONS(2218), + [anon_sym_DASH_DASH] = ACTIONS(2222), + [anon_sym_DASH] = ACTIONS(2218), + [aux_sym_ctrl_match_token1] = ACTIONS(2222), + [anon_sym_RBRACE] = ACTIONS(2222), + [anon_sym_DOT_DOT] = ACTIONS(2218), + [anon_sym_LPAREN2] = ACTIONS(2220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2222), + [anon_sym_DOT_DOT_LT] = ACTIONS(2222), + [aux_sym__val_number_decimal_token1] = ACTIONS(2218), + [aux_sym__val_number_decimal_token2] = ACTIONS(2222), + [aux_sym__val_number_decimal_token3] = ACTIONS(2222), + [aux_sym__val_number_decimal_token4] = ACTIONS(2222), + [aux_sym__val_number_token1] = ACTIONS(2222), + [aux_sym__val_number_token2] = ACTIONS(2222), + [aux_sym__val_number_token3] = ACTIONS(2222), + [anon_sym_0b] = ACTIONS(2218), + [anon_sym_0o] = ACTIONS(2218), + [anon_sym_0x] = ACTIONS(2218), + [sym_val_date] = ACTIONS(2222), + [anon_sym_DQUOTE] = ACTIONS(2222), + [sym__str_single_quotes] = ACTIONS(2222), + [sym__str_back_ticks] = ACTIONS(2222), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2222), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2222), + [anon_sym_err_GT] = ACTIONS(2218), + [anon_sym_out_GT] = ACTIONS(2218), + [anon_sym_e_GT] = ACTIONS(2218), + [anon_sym_o_GT] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT] = ACTIONS(2218), + [anon_sym_err_GT_GT] = ACTIONS(2222), + [anon_sym_out_GT_GT] = ACTIONS(2222), + [anon_sym_e_GT_GT] = ACTIONS(2222), + [anon_sym_o_GT_GT] = ACTIONS(2222), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2222), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2222), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2222), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2222), + [aux_sym_unquoted_token1] = ACTIONS(2218), + [aux_sym_unquoted_token2] = ACTIONS(1553), [anon_sym_POUND] = ACTIONS(247), }, [1429] = { [sym_comment] = STATE(1429), - [ts_builtin_sym_end] = ACTIONS(992), - [anon_sym_EQ] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(992), - [anon_sym_DASH_EQ] = ACTIONS(992), - [anon_sym_STAR_EQ] = ACTIONS(992), - [anon_sym_SLASH_EQ] = ACTIONS(992), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(992), - [sym__newline] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(992), - [anon_sym_err_GT_PIPE] = ACTIONS(992), - [anon_sym_out_GT_PIPE] = ACTIONS(992), - [anon_sym_e_GT_PIPE] = ACTIONS(992), - [anon_sym_o_GT_PIPE] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), - [aux_sym_expr_binary_token1] = ACTIONS(992), - [aux_sym_expr_binary_token2] = ACTIONS(992), - [aux_sym_expr_binary_token3] = ACTIONS(992), - [aux_sym_expr_binary_token4] = ACTIONS(992), - [aux_sym_expr_binary_token5] = ACTIONS(992), - [aux_sym_expr_binary_token6] = ACTIONS(992), - [aux_sym_expr_binary_token7] = ACTIONS(992), - [aux_sym_expr_binary_token8] = ACTIONS(992), - [aux_sym_expr_binary_token9] = ACTIONS(992), - [aux_sym_expr_binary_token10] = ACTIONS(992), - [aux_sym_expr_binary_token11] = ACTIONS(992), - [aux_sym_expr_binary_token12] = ACTIONS(992), - [aux_sym_expr_binary_token13] = ACTIONS(992), - [aux_sym_expr_binary_token14] = ACTIONS(992), - [aux_sym_expr_binary_token15] = ACTIONS(992), - [aux_sym_expr_binary_token16] = ACTIONS(992), - [aux_sym_expr_binary_token17] = ACTIONS(992), - [aux_sym_expr_binary_token18] = ACTIONS(992), - [aux_sym_expr_binary_token19] = ACTIONS(992), - [aux_sym_expr_binary_token20] = ACTIONS(992), - [aux_sym_expr_binary_token21] = ACTIONS(992), - [aux_sym_expr_binary_token22] = ACTIONS(992), - [aux_sym_expr_binary_token23] = ACTIONS(992), - [aux_sym_expr_binary_token24] = ACTIONS(992), - [aux_sym_expr_binary_token25] = ACTIONS(992), - [aux_sym_expr_binary_token26] = ACTIONS(992), - [aux_sym_expr_binary_token27] = ACTIONS(992), - [aux_sym_expr_binary_token28] = ACTIONS(992), - [anon_sym_DOT_DOT2] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), - [anon_sym_DOT_DOT_LT2] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(990), - [anon_sym_out_GT] = ACTIONS(990), - [anon_sym_e_GT] = ACTIONS(990), - [anon_sym_o_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT] = ACTIONS(990), - [anon_sym_err_GT_GT] = ACTIONS(992), - [anon_sym_out_GT_GT] = ACTIONS(992), - [anon_sym_e_GT_GT] = ACTIONS(992), - [anon_sym_o_GT_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), + [aux_sym_cmd_identifier_token41] = ACTIONS(1517), + [sym__newline] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1519), + [anon_sym_err_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_GT_PIPE] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), + [anon_sym_RPAREN] = ACTIONS(1519), + [anon_sym_RBRACE] = ACTIONS(1519), + [aux_sym_expr_binary_token1] = ACTIONS(1519), + [aux_sym_expr_binary_token2] = ACTIONS(1519), + [aux_sym_expr_binary_token3] = ACTIONS(1519), + [aux_sym_expr_binary_token4] = ACTIONS(1519), + [aux_sym_expr_binary_token5] = ACTIONS(1519), + [aux_sym_expr_binary_token6] = ACTIONS(1519), + [aux_sym_expr_binary_token7] = ACTIONS(1519), + [aux_sym_expr_binary_token8] = ACTIONS(1519), + [aux_sym_expr_binary_token9] = ACTIONS(1519), + [aux_sym_expr_binary_token10] = ACTIONS(1519), + [aux_sym_expr_binary_token11] = ACTIONS(1519), + [aux_sym_expr_binary_token12] = ACTIONS(1519), + [aux_sym_expr_binary_token13] = ACTIONS(1519), + [aux_sym_expr_binary_token14] = ACTIONS(1519), + [aux_sym_expr_binary_token15] = ACTIONS(1519), + [aux_sym_expr_binary_token16] = ACTIONS(1519), + [aux_sym_expr_binary_token17] = ACTIONS(1519), + [aux_sym_expr_binary_token18] = ACTIONS(1519), + [aux_sym_expr_binary_token19] = ACTIONS(1519), + [aux_sym_expr_binary_token20] = ACTIONS(1519), + [aux_sym_expr_binary_token21] = ACTIONS(1519), + [aux_sym_expr_binary_token22] = ACTIONS(1519), + [aux_sym_expr_binary_token23] = ACTIONS(1519), + [aux_sym_expr_binary_token24] = ACTIONS(1519), + [aux_sym_expr_binary_token25] = ACTIONS(1519), + [aux_sym_expr_binary_token26] = ACTIONS(1519), + [aux_sym_expr_binary_token27] = ACTIONS(1519), + [aux_sym_expr_binary_token28] = ACTIONS(1519), + [anon_sym_DOT_DOT2] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), + [sym_filesize_unit] = ACTIONS(1519), + [sym_duration_unit] = ACTIONS(1519), + [anon_sym_err_GT] = ACTIONS(1517), + [anon_sym_out_GT] = ACTIONS(1517), + [anon_sym_e_GT] = ACTIONS(1517), + [anon_sym_o_GT] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT] = ACTIONS(1517), + [anon_sym_err_GT_GT] = ACTIONS(1519), + [anon_sym_out_GT_GT] = ACTIONS(1519), + [anon_sym_e_GT_GT] = ACTIONS(1519), + [anon_sym_o_GT_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), [anon_sym_POUND] = ACTIONS(247), }, [1430] = { - [sym__match_pattern] = STATE(7563), - [sym__match_pattern_expression] = STATE(7519), - [sym__match_pattern_value] = STATE(6950), - [sym__match_pattern_list] = STATE(6957), - [sym__match_pattern_record] = STATE(6958), - [sym_expr_parenthesized] = STATE(6007), - [sym_val_range] = STATE(6950), - [sym__val_range] = STATE(8049), - [sym_val_nothing] = STATE(6978), - [sym_val_bool] = STATE(7008), - [sym_val_variable] = STATE(6011), - [sym_val_number] = STATE(6978), - [sym__val_number_decimal] = STATE(5802), - [sym__val_number] = STATE(2137), - [sym_val_duration] = STATE(6978), - [sym_val_filesize] = STATE(6978), - [sym_val_binary] = STATE(6978), - [sym_val_string] = STATE(6978), - [sym__str_double_quotes] = STATE(1851), - [sym_val_table] = STATE(6978), - [sym_unquoted] = STATE(7006), - [sym__unquoted_anonymous_prefix] = STATE(7765), [sym_comment] = STATE(1430), - [anon_sym_true] = ACTIONS(3399), - [anon_sym_false] = ACTIONS(3399), - [anon_sym_null] = ACTIONS(3401), - [aux_sym_cmd_identifier_token38] = ACTIONS(4730), - [aux_sym_cmd_identifier_token39] = ACTIONS(4730), - [aux_sym_cmd_identifier_token40] = ACTIONS(4730), - [anon_sym_LBRACK] = ACTIONS(3641), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_DOLLAR] = ACTIONS(3645), - [aux_sym_ctrl_match_token1] = ACTIONS(3647), - [anon_sym_DOT_DOT] = ACTIONS(4732), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4734), - [anon_sym_DOT_DOT_LT] = ACTIONS(4734), - [aux_sym__val_number_decimal_token1] = ACTIONS(3405), - [aux_sym__val_number_decimal_token2] = ACTIONS(3407), - [aux_sym__val_number_decimal_token3] = ACTIONS(3409), - [aux_sym__val_number_decimal_token4] = ACTIONS(3411), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(4736), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2505), - [anon_sym_out_GT] = ACTIONS(2505), - [anon_sym_e_GT] = ACTIONS(2505), - [anon_sym_o_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT] = ACTIONS(2505), - [anon_sym_err_GT_GT] = ACTIONS(2507), - [anon_sym_out_GT_GT] = ACTIONS(2507), - [anon_sym_e_GT_GT] = ACTIONS(2507), - [anon_sym_o_GT_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2507), - [aux_sym_unquoted_token1] = ACTIONS(3241), + [ts_builtin_sym_end] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [aux_sym_cmd_identifier_token38] = ACTIONS(1645), + [aux_sym_cmd_identifier_token39] = ACTIONS(1645), + [aux_sym_cmd_identifier_token40] = ACTIONS(1645), + [sym__newline] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_err_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_GT_PIPE] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), + [anon_sym_LBRACK] = ACTIONS(1645), + [anon_sym_LPAREN] = ACTIONS(1645), + [anon_sym_DOLLAR] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_DASH] = ACTIONS(1643), + [aux_sym_ctrl_match_token1] = ACTIONS(1645), + [anon_sym_DOT_DOT] = ACTIONS(1643), + [anon_sym_DOT_DOT2] = ACTIONS(1643), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), + [anon_sym_DOT_DOT_LT] = ACTIONS(1643), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1645), + [aux_sym__val_number_decimal_token3] = ACTIONS(1645), + [aux_sym__val_number_decimal_token4] = ACTIONS(1645), + [aux_sym__val_number_token1] = ACTIONS(1645), + [aux_sym__val_number_token2] = ACTIONS(1645), + [aux_sym__val_number_token3] = ACTIONS(1645), + [anon_sym_0b] = ACTIONS(1643), + [anon_sym_0o] = ACTIONS(1643), + [anon_sym_0x] = ACTIONS(1643), + [sym_val_date] = ACTIONS(1645), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym__str_single_quotes] = ACTIONS(1645), + [sym__str_back_ticks] = ACTIONS(1645), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1645), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1645), + [anon_sym_err_GT] = ACTIONS(1643), + [anon_sym_out_GT] = ACTIONS(1643), + [anon_sym_e_GT] = ACTIONS(1643), + [anon_sym_o_GT] = ACTIONS(1643), + [anon_sym_err_PLUSout_GT] = ACTIONS(1643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), + [anon_sym_o_PLUSe_GT] = ACTIONS(1643), + [anon_sym_e_PLUSo_GT] = ACTIONS(1643), + [anon_sym_err_GT_GT] = ACTIONS(1645), + [anon_sym_out_GT_GT] = ACTIONS(1645), + [anon_sym_e_GT_GT] = ACTIONS(1645), + [anon_sym_o_GT_GT] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [aux_sym_unquoted_token1] = ACTIONS(1643), [anon_sym_POUND] = ACTIONS(247), }, [1431] = { [sym_comment] = STATE(1431), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [anon_sym_null] = ACTIONS(1591), - [aux_sym_cmd_identifier_token38] = ACTIONS(1591), - [aux_sym_cmd_identifier_token39] = ACTIONS(1591), - [aux_sym_cmd_identifier_token40] = ACTIONS(1591), - [sym__newline] = ACTIONS(1591), - [anon_sym_SEMI] = ACTIONS(1591), - [anon_sym_PIPE] = ACTIONS(1591), - [anon_sym_err_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_GT_PIPE] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), - [anon_sym_LBRACK] = ACTIONS(1591), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_RPAREN] = ACTIONS(1591), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_DASH] = ACTIONS(1589), - [aux_sym_ctrl_match_token1] = ACTIONS(1591), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1591), - [anon_sym_DOT_DOT2] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token3] = ACTIONS(1591), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(1591), - [aux_sym__val_number_token2] = ACTIONS(1591), - [aux_sym__val_number_token3] = ACTIONS(1591), - [anon_sym_0b] = ACTIONS(1589), - [anon_sym_0o] = ACTIONS(1589), - [anon_sym_0x] = ACTIONS(1589), - [sym_val_date] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym__str_single_quotes] = ACTIONS(1591), - [sym__str_back_ticks] = ACTIONS(1591), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), - [anon_sym_err_GT] = ACTIONS(1589), - [anon_sym_out_GT] = ACTIONS(1589), - [anon_sym_e_GT] = ACTIONS(1589), - [anon_sym_o_GT] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT] = ACTIONS(1589), - [anon_sym_err_GT_GT] = ACTIONS(1591), - [anon_sym_out_GT_GT] = ACTIONS(1591), - [anon_sym_e_GT_GT] = ACTIONS(1591), - [anon_sym_o_GT_GT] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), - [aux_sym_unquoted_token1] = ACTIONS(1589), - [aux_sym_unquoted_token2] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1036), + [anon_sym_false] = ACTIONS(1036), + [anon_sym_null] = ACTIONS(1036), + [aux_sym_cmd_identifier_token38] = ACTIONS(1036), + [aux_sym_cmd_identifier_token39] = ACTIONS(1036), + [aux_sym_cmd_identifier_token40] = ACTIONS(1036), + [sym__newline] = ACTIONS(1036), + [anon_sym_SEMI] = ACTIONS(1036), + [anon_sym_PIPE] = ACTIONS(1036), + [anon_sym_err_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_GT_PIPE] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LPAREN] = ACTIONS(1036), + [anon_sym_RPAREN] = ACTIONS(1036), + [anon_sym_DOLLAR] = ACTIONS(1034), + [anon_sym_DASH_DASH] = ACTIONS(1036), + [anon_sym_DASH] = ACTIONS(1034), + [aux_sym_ctrl_match_token1] = ACTIONS(1036), + [anon_sym_RBRACE] = ACTIONS(1036), + [anon_sym_DOT_DOT] = ACTIONS(1034), + [anon_sym_QMARK2] = ACTIONS(4775), + [anon_sym_DOT] = ACTIONS(1034), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1036), + [anon_sym_DOT_DOT_LT] = ACTIONS(1036), + [aux_sym__val_number_decimal_token1] = ACTIONS(1034), + [aux_sym__val_number_decimal_token2] = ACTIONS(1036), + [aux_sym__val_number_decimal_token3] = ACTIONS(1036), + [aux_sym__val_number_decimal_token4] = ACTIONS(1036), + [aux_sym__val_number_token1] = ACTIONS(1036), + [aux_sym__val_number_token2] = ACTIONS(1036), + [aux_sym__val_number_token3] = ACTIONS(1036), + [anon_sym_0b] = ACTIONS(1034), + [anon_sym_0o] = ACTIONS(1034), + [anon_sym_0x] = ACTIONS(1034), + [sym_val_date] = ACTIONS(1036), + [anon_sym_DQUOTE] = ACTIONS(1036), + [sym__str_single_quotes] = ACTIONS(1036), + [sym__str_back_ticks] = ACTIONS(1036), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1036), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1036), + [anon_sym_err_GT] = ACTIONS(1034), + [anon_sym_out_GT] = ACTIONS(1034), + [anon_sym_e_GT] = ACTIONS(1034), + [anon_sym_o_GT] = ACTIONS(1034), + [anon_sym_err_PLUSout_GT] = ACTIONS(1034), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), + [anon_sym_o_PLUSe_GT] = ACTIONS(1034), + [anon_sym_e_PLUSo_GT] = ACTIONS(1034), + [anon_sym_err_GT_GT] = ACTIONS(1036), + [anon_sym_out_GT_GT] = ACTIONS(1036), + [anon_sym_e_GT_GT] = ACTIONS(1036), + [anon_sym_o_GT_GT] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), + [aux_sym_unquoted_token1] = ACTIONS(1034), [anon_sym_POUND] = ACTIONS(247), }, [1432] = { [sym_comment] = STATE(1432), - [anon_sym_true] = ACTIONS(982), - [anon_sym_false] = ACTIONS(982), - [anon_sym_null] = ACTIONS(982), - [aux_sym_cmd_identifier_token38] = ACTIONS(982), - [aux_sym_cmd_identifier_token39] = ACTIONS(982), - [aux_sym_cmd_identifier_token40] = ACTIONS(982), - [sym__newline] = ACTIONS(982), - [anon_sym_SEMI] = ACTIONS(982), - [anon_sym_PIPE] = ACTIONS(982), - [anon_sym_err_GT_PIPE] = ACTIONS(982), - [anon_sym_out_GT_PIPE] = ACTIONS(982), - [anon_sym_e_GT_PIPE] = ACTIONS(982), - [anon_sym_o_GT_PIPE] = ACTIONS(982), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(982), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(982), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(982), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(982), - [anon_sym_LBRACK] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(982), - [anon_sym_RPAREN] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(980), - [anon_sym_DASH_DASH] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(980), - [aux_sym_ctrl_match_token1] = ACTIONS(982), - [anon_sym_RBRACE] = ACTIONS(982), - [anon_sym_DOT_DOT] = ACTIONS(980), - [anon_sym_QMARK2] = ACTIONS(4738), - [anon_sym_DOT_DOT2] = ACTIONS(980), - [anon_sym_DOT] = ACTIONS(980), - [anon_sym_DOT_DOT_EQ] = ACTIONS(980), - [anon_sym_DOT_DOT_LT] = ACTIONS(980), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(982), - [anon_sym_DOT_DOT_LT2] = ACTIONS(982), - [aux_sym__val_number_decimal_token1] = ACTIONS(980), - [aux_sym__val_number_decimal_token2] = ACTIONS(982), - [aux_sym__val_number_decimal_token3] = ACTIONS(982), - [aux_sym__val_number_decimal_token4] = ACTIONS(982), - [aux_sym__val_number_token1] = ACTIONS(982), - [aux_sym__val_number_token2] = ACTIONS(982), - [aux_sym__val_number_token3] = ACTIONS(982), - [anon_sym_0b] = ACTIONS(980), - [anon_sym_0o] = ACTIONS(980), - [anon_sym_0x] = ACTIONS(980), - [sym_val_date] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(982), - [sym__str_single_quotes] = ACTIONS(982), - [sym__str_back_ticks] = ACTIONS(982), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(982), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(982), - [anon_sym_err_GT] = ACTIONS(980), - [anon_sym_out_GT] = ACTIONS(980), - [anon_sym_e_GT] = ACTIONS(980), - [anon_sym_o_GT] = ACTIONS(980), - [anon_sym_err_PLUSout_GT] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT] = ACTIONS(980), - [anon_sym_o_PLUSe_GT] = ACTIONS(980), - [anon_sym_e_PLUSo_GT] = ACTIONS(980), - [anon_sym_err_GT_GT] = ACTIONS(982), - [anon_sym_out_GT_GT] = ACTIONS(982), - [anon_sym_e_GT_GT] = ACTIONS(982), - [anon_sym_o_GT_GT] = ACTIONS(982), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(982), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(982), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(982), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(982), - [aux_sym_unquoted_token1] = ACTIONS(980), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [aux_sym_cmd_identifier_token38] = ACTIONS(1645), + [aux_sym_cmd_identifier_token39] = ACTIONS(1645), + [aux_sym_cmd_identifier_token40] = ACTIONS(1645), + [sym__newline] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_err_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_GT_PIPE] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), + [anon_sym_LBRACK] = ACTIONS(1645), + [anon_sym_LPAREN] = ACTIONS(1645), + [anon_sym_RPAREN] = ACTIONS(1645), + [anon_sym_DOLLAR] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_DASH] = ACTIONS(1643), + [aux_sym_ctrl_match_token1] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(1645), + [anon_sym_DOT_DOT] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1645), + [anon_sym_DOT_DOT_LT] = ACTIONS(1645), + [aux_sym__immediate_decimal_token2] = ACTIONS(4779), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1645), + [aux_sym__val_number_decimal_token3] = ACTIONS(1645), + [aux_sym__val_number_decimal_token4] = ACTIONS(1645), + [aux_sym__val_number_token1] = ACTIONS(1645), + [aux_sym__val_number_token2] = ACTIONS(1645), + [aux_sym__val_number_token3] = ACTIONS(1645), + [anon_sym_0b] = ACTIONS(1643), + [anon_sym_0o] = ACTIONS(1643), + [anon_sym_0x] = ACTIONS(1643), + [sym_val_date] = ACTIONS(1645), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym__str_single_quotes] = ACTIONS(1645), + [sym__str_back_ticks] = ACTIONS(1645), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1645), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1645), + [anon_sym_err_GT] = ACTIONS(1643), + [anon_sym_out_GT] = ACTIONS(1643), + [anon_sym_e_GT] = ACTIONS(1643), + [anon_sym_o_GT] = ACTIONS(1643), + [anon_sym_err_PLUSout_GT] = ACTIONS(1643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), + [anon_sym_o_PLUSe_GT] = ACTIONS(1643), + [anon_sym_e_PLUSo_GT] = ACTIONS(1643), + [anon_sym_err_GT_GT] = ACTIONS(1645), + [anon_sym_out_GT_GT] = ACTIONS(1645), + [anon_sym_e_GT_GT] = ACTIONS(1645), + [anon_sym_o_GT_GT] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [aux_sym_unquoted_token1] = ACTIONS(1643), [anon_sym_POUND] = ACTIONS(247), }, [1433] = { + [sym__expr_parenthesized_immediate] = STATE(7413), [sym_comment] = STATE(1433), - [ts_builtin_sym_end] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [anon_sym_null] = ACTIONS(1483), - [aux_sym_cmd_identifier_token38] = ACTIONS(1483), - [aux_sym_cmd_identifier_token39] = ACTIONS(1483), - [aux_sym_cmd_identifier_token40] = ACTIONS(1483), - [sym__newline] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_err_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_GT_PIPE] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_DOLLAR] = ACTIONS(1481), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1481), - [aux_sym_ctrl_match_token1] = ACTIONS(1483), - [anon_sym_DOT_DOT] = ACTIONS(1481), - [anon_sym_DOT_DOT2] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), - [anon_sym_DOT_DOT_LT] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), - [aux_sym__val_number_decimal_token1] = ACTIONS(1481), - [aux_sym__val_number_decimal_token2] = ACTIONS(1483), - [aux_sym__val_number_decimal_token3] = ACTIONS(1483), - [aux_sym__val_number_decimal_token4] = ACTIONS(1483), - [aux_sym__val_number_token1] = ACTIONS(1483), - [aux_sym__val_number_token2] = ACTIONS(1483), - [aux_sym__val_number_token3] = ACTIONS(1483), - [anon_sym_0b] = ACTIONS(1481), - [sym_filesize_unit] = ACTIONS(1483), - [sym_duration_unit] = ACTIONS(1483), - [anon_sym_0o] = ACTIONS(1481), - [anon_sym_0x] = ACTIONS(1481), - [sym_val_date] = ACTIONS(1483), - [anon_sym_DQUOTE] = ACTIONS(1483), - [sym__str_single_quotes] = ACTIONS(1483), - [sym__str_back_ticks] = ACTIONS(1483), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1483), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1483), - [anon_sym_err_GT] = ACTIONS(1481), - [anon_sym_out_GT] = ACTIONS(1481), - [anon_sym_e_GT] = ACTIONS(1481), - [anon_sym_o_GT] = ACTIONS(1481), - [anon_sym_err_PLUSout_GT] = ACTIONS(1481), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), - [anon_sym_o_PLUSe_GT] = ACTIONS(1481), - [anon_sym_e_PLUSo_GT] = ACTIONS(1481), - [anon_sym_err_GT_GT] = ACTIONS(1483), - [anon_sym_out_GT_GT] = ACTIONS(1483), - [anon_sym_e_GT_GT] = ACTIONS(1483), - [anon_sym_o_GT_GT] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), - [aux_sym_unquoted_token1] = ACTIONS(1481), - [aux_sym_unquoted_token2] = ACTIONS(1481), + [sym__newline] = ACTIONS(4743), + [anon_sym_SEMI] = ACTIONS(4743), + [anon_sym_PIPE] = ACTIONS(4743), + [anon_sym_err_GT_PIPE] = ACTIONS(4743), + [anon_sym_out_GT_PIPE] = ACTIONS(4743), + [anon_sym_e_GT_PIPE] = ACTIONS(4743), + [anon_sym_o_GT_PIPE] = ACTIONS(4743), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4743), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4743), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4743), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4743), + [anon_sym_RPAREN] = ACTIONS(4743), + [anon_sym_DASH_DASH] = ACTIONS(4743), + [anon_sym_DASH] = ACTIONS(4745), + [aux_sym_ctrl_match_token1] = ACTIONS(4743), + [anon_sym_RBRACE] = ACTIONS(4743), + [anon_sym_EQ_GT] = ACTIONS(4743), + [anon_sym_LPAREN2] = ACTIONS(3914), + [aux_sym_expr_binary_token1] = ACTIONS(4743), + [aux_sym_expr_binary_token2] = ACTIONS(4743), + [aux_sym_expr_binary_token3] = ACTIONS(4743), + [aux_sym_expr_binary_token4] = ACTIONS(4743), + [aux_sym_expr_binary_token5] = ACTIONS(4743), + [aux_sym_expr_binary_token6] = ACTIONS(4743), + [aux_sym_expr_binary_token7] = ACTIONS(4743), + [aux_sym_expr_binary_token8] = ACTIONS(4743), + [aux_sym_expr_binary_token9] = ACTIONS(4743), + [aux_sym_expr_binary_token10] = ACTIONS(4743), + [aux_sym_expr_binary_token11] = ACTIONS(4743), + [aux_sym_expr_binary_token12] = ACTIONS(4743), + [aux_sym_expr_binary_token13] = ACTIONS(4743), + [aux_sym_expr_binary_token14] = ACTIONS(4743), + [aux_sym_expr_binary_token15] = ACTIONS(4743), + [aux_sym_expr_binary_token16] = ACTIONS(4743), + [aux_sym_expr_binary_token17] = ACTIONS(4743), + [aux_sym_expr_binary_token18] = ACTIONS(4743), + [aux_sym_expr_binary_token19] = ACTIONS(4743), + [aux_sym_expr_binary_token20] = ACTIONS(4743), + [aux_sym_expr_binary_token21] = ACTIONS(4743), + [aux_sym_expr_binary_token22] = ACTIONS(4743), + [aux_sym_expr_binary_token23] = ACTIONS(4743), + [aux_sym_expr_binary_token24] = ACTIONS(4743), + [aux_sym_expr_binary_token25] = ACTIONS(4743), + [aux_sym_expr_binary_token26] = ACTIONS(4743), + [aux_sym_expr_binary_token27] = ACTIONS(4743), + [aux_sym_expr_binary_token28] = ACTIONS(4743), + [anon_sym_err_GT] = ACTIONS(4745), + [anon_sym_out_GT] = ACTIONS(4745), + [anon_sym_e_GT] = ACTIONS(4745), + [anon_sym_o_GT] = ACTIONS(4745), + [anon_sym_err_PLUSout_GT] = ACTIONS(4745), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4745), + [anon_sym_o_PLUSe_GT] = ACTIONS(4745), + [anon_sym_e_PLUSo_GT] = ACTIONS(4745), + [anon_sym_err_GT_GT] = ACTIONS(4743), + [anon_sym_out_GT_GT] = ACTIONS(4743), + [anon_sym_e_GT_GT] = ACTIONS(4743), + [anon_sym_o_GT_GT] = ACTIONS(4743), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4743), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4743), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4743), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4743), [anon_sym_POUND] = ACTIONS(247), }, [1434] = { + [sym__expr_parenthesized_immediate] = STATE(7570), [sym_comment] = STATE(1434), - [anon_sym_true] = ACTIONS(968), - [anon_sym_false] = ACTIONS(968), - [anon_sym_null] = ACTIONS(968), - [aux_sym_cmd_identifier_token38] = ACTIONS(968), - [aux_sym_cmd_identifier_token39] = ACTIONS(968), - [aux_sym_cmd_identifier_token40] = ACTIONS(968), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_LBRACK] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(968), - [anon_sym_DOLLAR] = ACTIONS(966), - [anon_sym_DASH_DASH] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(966), - [aux_sym_ctrl_match_token1] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_DOT_DOT] = ACTIONS(966), - [anon_sym_QMARK2] = ACTIONS(968), - [anon_sym_DOT_DOT2] = ACTIONS(966), - [anon_sym_DOT] = ACTIONS(966), - [anon_sym_DOT_DOT_EQ] = ACTIONS(966), - [anon_sym_DOT_DOT_LT] = ACTIONS(966), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(968), - [anon_sym_DOT_DOT_LT2] = ACTIONS(968), - [aux_sym__val_number_decimal_token1] = ACTIONS(966), - [aux_sym__val_number_decimal_token2] = ACTIONS(968), - [aux_sym__val_number_decimal_token3] = ACTIONS(968), - [aux_sym__val_number_decimal_token4] = ACTIONS(968), - [aux_sym__val_number_token1] = ACTIONS(968), - [aux_sym__val_number_token2] = ACTIONS(968), - [aux_sym__val_number_token3] = ACTIONS(968), - [anon_sym_0b] = ACTIONS(966), - [anon_sym_0o] = ACTIONS(966), - [anon_sym_0x] = ACTIONS(966), - [sym_val_date] = ACTIONS(968), - [anon_sym_DQUOTE] = ACTIONS(968), - [sym__str_single_quotes] = ACTIONS(968), - [sym__str_back_ticks] = ACTIONS(968), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(968), - [anon_sym_err_GT] = ACTIONS(966), - [anon_sym_out_GT] = ACTIONS(966), - [anon_sym_e_GT] = ACTIONS(966), - [anon_sym_o_GT] = ACTIONS(966), - [anon_sym_err_PLUSout_GT] = ACTIONS(966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(966), - [anon_sym_o_PLUSe_GT] = ACTIONS(966), - [anon_sym_e_PLUSo_GT] = ACTIONS(966), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [aux_sym_unquoted_token1] = ACTIONS(966), + [sym__newline] = ACTIONS(4759), + [anon_sym_SEMI] = ACTIONS(4759), + [anon_sym_PIPE] = ACTIONS(4759), + [anon_sym_err_GT_PIPE] = ACTIONS(4759), + [anon_sym_out_GT_PIPE] = ACTIONS(4759), + [anon_sym_e_GT_PIPE] = ACTIONS(4759), + [anon_sym_o_GT_PIPE] = ACTIONS(4759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4759), + [anon_sym_RPAREN] = ACTIONS(4759), + [anon_sym_DASH_DASH] = ACTIONS(4759), + [anon_sym_DASH] = ACTIONS(4761), + [aux_sym_ctrl_match_token1] = ACTIONS(4759), + [anon_sym_RBRACE] = ACTIONS(4759), + [anon_sym_EQ_GT] = ACTIONS(4759), + [anon_sym_LPAREN2] = ACTIONS(3914), + [aux_sym_expr_binary_token1] = ACTIONS(4759), + [aux_sym_expr_binary_token2] = ACTIONS(4759), + [aux_sym_expr_binary_token3] = ACTIONS(4759), + [aux_sym_expr_binary_token4] = ACTIONS(4759), + [aux_sym_expr_binary_token5] = ACTIONS(4759), + [aux_sym_expr_binary_token6] = ACTIONS(4759), + [aux_sym_expr_binary_token7] = ACTIONS(4759), + [aux_sym_expr_binary_token8] = ACTIONS(4759), + [aux_sym_expr_binary_token9] = ACTIONS(4759), + [aux_sym_expr_binary_token10] = ACTIONS(4759), + [aux_sym_expr_binary_token11] = ACTIONS(4759), + [aux_sym_expr_binary_token12] = ACTIONS(4759), + [aux_sym_expr_binary_token13] = ACTIONS(4759), + [aux_sym_expr_binary_token14] = ACTIONS(4759), + [aux_sym_expr_binary_token15] = ACTIONS(4759), + [aux_sym_expr_binary_token16] = ACTIONS(4759), + [aux_sym_expr_binary_token17] = ACTIONS(4759), + [aux_sym_expr_binary_token18] = ACTIONS(4759), + [aux_sym_expr_binary_token19] = ACTIONS(4759), + [aux_sym_expr_binary_token20] = ACTIONS(4759), + [aux_sym_expr_binary_token21] = ACTIONS(4759), + [aux_sym_expr_binary_token22] = ACTIONS(4759), + [aux_sym_expr_binary_token23] = ACTIONS(4759), + [aux_sym_expr_binary_token24] = ACTIONS(4759), + [aux_sym_expr_binary_token25] = ACTIONS(4759), + [aux_sym_expr_binary_token26] = ACTIONS(4759), + [aux_sym_expr_binary_token27] = ACTIONS(4759), + [aux_sym_expr_binary_token28] = ACTIONS(4759), + [anon_sym_err_GT] = ACTIONS(4761), + [anon_sym_out_GT] = ACTIONS(4761), + [anon_sym_e_GT] = ACTIONS(4761), + [anon_sym_o_GT] = ACTIONS(4761), + [anon_sym_err_PLUSout_GT] = ACTIONS(4761), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4761), + [anon_sym_o_PLUSe_GT] = ACTIONS(4761), + [anon_sym_e_PLUSo_GT] = ACTIONS(4761), + [anon_sym_err_GT_GT] = ACTIONS(4759), + [anon_sym_out_GT_GT] = ACTIONS(4759), + [anon_sym_e_GT_GT] = ACTIONS(4759), + [anon_sym_o_GT_GT] = ACTIONS(4759), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4759), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4759), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4759), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4759), [anon_sym_POUND] = ACTIONS(247), }, [1435] = { [sym_comment] = STATE(1435), - [ts_builtin_sym_end] = ACTIONS(1650), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [anon_sym_null] = ACTIONS(1650), - [aux_sym_cmd_identifier_token38] = ACTIONS(1650), - [aux_sym_cmd_identifier_token39] = ACTIONS(1650), - [aux_sym_cmd_identifier_token40] = ACTIONS(1650), - [sym__newline] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_err_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_GT_PIPE] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_DASH] = ACTIONS(1648), - [aux_sym_ctrl_match_token1] = ACTIONS(1650), - [anon_sym_DOT_DOT] = ACTIONS(1648), - [anon_sym_LPAREN2] = ACTIONS(1650), - [anon_sym_DOT_DOT2] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1648), - [anon_sym_DOT_DOT_LT] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), - [aux_sym__immediate_decimal_token2] = ACTIONS(4740), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token3] = ACTIONS(1650), - [aux_sym__val_number_decimal_token4] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [anon_sym_0b] = ACTIONS(1648), - [anon_sym_0o] = ACTIONS(1648), - [anon_sym_0x] = ACTIONS(1648), - [sym_val_date] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), - [anon_sym_err_GT] = ACTIONS(1648), - [anon_sym_out_GT] = ACTIONS(1648), - [anon_sym_e_GT] = ACTIONS(1648), - [anon_sym_o_GT] = ACTIONS(1648), - [anon_sym_err_PLUSout_GT] = ACTIONS(1648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1648), - [anon_sym_o_PLUSe_GT] = ACTIONS(1648), - [anon_sym_e_PLUSo_GT] = ACTIONS(1648), - [anon_sym_err_GT_GT] = ACTIONS(1650), - [anon_sym_out_GT_GT] = ACTIONS(1650), - [anon_sym_e_GT_GT] = ACTIONS(1650), - [anon_sym_o_GT_GT] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1650), - [aux_sym_unquoted_token1] = ACTIONS(1648), - [aux_sym_unquoted_token2] = ACTIONS(1648), + [ts_builtin_sym_end] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1629), + [anon_sym_false] = ACTIONS(1629), + [anon_sym_null] = ACTIONS(1629), + [aux_sym_cmd_identifier_token38] = ACTIONS(1629), + [aux_sym_cmd_identifier_token39] = ACTIONS(1629), + [aux_sym_cmd_identifier_token40] = ACTIONS(1629), + [sym__newline] = ACTIONS(1629), + [anon_sym_SEMI] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1629), + [anon_sym_err_GT_PIPE] = ACTIONS(1629), + [anon_sym_out_GT_PIPE] = ACTIONS(1629), + [anon_sym_e_GT_PIPE] = ACTIONS(1629), + [anon_sym_o_GT_PIPE] = ACTIONS(1629), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1629), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1629), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1629), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_DOLLAR] = ACTIONS(1625), + [anon_sym_DASH_DASH] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1625), + [aux_sym_ctrl_match_token1] = ACTIONS(1629), + [anon_sym_DOT_DOT] = ACTIONS(1625), + [anon_sym_DOT_DOT2] = ACTIONS(1625), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT] = ACTIONS(1625), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1629), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1629), + [aux_sym__val_number_decimal_token1] = ACTIONS(1625), + [aux_sym__val_number_decimal_token2] = ACTIONS(1629), + [aux_sym__val_number_decimal_token3] = ACTIONS(1629), + [aux_sym__val_number_decimal_token4] = ACTIONS(1629), + [aux_sym__val_number_token1] = ACTIONS(1629), + [aux_sym__val_number_token2] = ACTIONS(1629), + [aux_sym__val_number_token3] = ACTIONS(1629), + [anon_sym_0b] = ACTIONS(1625), + [anon_sym_0o] = ACTIONS(1625), + [anon_sym_0x] = ACTIONS(1625), + [sym_val_date] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(1629), + [sym__str_single_quotes] = ACTIONS(1629), + [sym__str_back_ticks] = ACTIONS(1629), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1629), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1629), + [anon_sym_err_GT] = ACTIONS(1625), + [anon_sym_out_GT] = ACTIONS(1625), + [anon_sym_e_GT] = ACTIONS(1625), + [anon_sym_o_GT] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT] = ACTIONS(1625), + [anon_sym_err_GT_GT] = ACTIONS(1629), + [anon_sym_out_GT_GT] = ACTIONS(1629), + [anon_sym_e_GT_GT] = ACTIONS(1629), + [anon_sym_o_GT_GT] = ACTIONS(1629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1629), + [aux_sym_unquoted_token1] = ACTIONS(1625), [anon_sym_POUND] = ACTIONS(247), }, [1436] = { [sym_comment] = STATE(1436), - [aux_sym_cmd_identifier_token41] = ACTIONS(1473), - [sym__newline] = ACTIONS(1473), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_err_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_GT_PIPE] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_EQ_GT] = ACTIONS(1475), - [aux_sym_expr_binary_token1] = ACTIONS(1475), - [aux_sym_expr_binary_token2] = ACTIONS(1475), - [aux_sym_expr_binary_token3] = ACTIONS(1475), - [aux_sym_expr_binary_token4] = ACTIONS(1475), - [aux_sym_expr_binary_token5] = ACTIONS(1475), - [aux_sym_expr_binary_token6] = ACTIONS(1475), - [aux_sym_expr_binary_token7] = ACTIONS(1475), - [aux_sym_expr_binary_token8] = ACTIONS(1475), - [aux_sym_expr_binary_token9] = ACTIONS(1475), - [aux_sym_expr_binary_token10] = ACTIONS(1475), - [aux_sym_expr_binary_token11] = ACTIONS(1475), - [aux_sym_expr_binary_token12] = ACTIONS(1475), - [aux_sym_expr_binary_token13] = ACTIONS(1475), - [aux_sym_expr_binary_token14] = ACTIONS(1475), - [aux_sym_expr_binary_token15] = ACTIONS(1475), - [aux_sym_expr_binary_token16] = ACTIONS(1475), - [aux_sym_expr_binary_token17] = ACTIONS(1475), - [aux_sym_expr_binary_token18] = ACTIONS(1475), - [aux_sym_expr_binary_token19] = ACTIONS(1475), - [aux_sym_expr_binary_token20] = ACTIONS(1475), - [aux_sym_expr_binary_token21] = ACTIONS(1475), - [aux_sym_expr_binary_token22] = ACTIONS(1475), - [aux_sym_expr_binary_token23] = ACTIONS(1475), - [aux_sym_expr_binary_token24] = ACTIONS(1475), - [aux_sym_expr_binary_token25] = ACTIONS(1475), - [aux_sym_expr_binary_token26] = ACTIONS(1475), - [aux_sym_expr_binary_token27] = ACTIONS(1475), - [aux_sym_expr_binary_token28] = ACTIONS(1475), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT] = ACTIONS(4742), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [aux_sym__immediate_decimal_token2] = ACTIONS(4744), - [sym_filesize_unit] = ACTIONS(1475), - [sym_duration_unit] = ACTIONS(1475), - [aux_sym_record_entry_token1] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1473), - [anon_sym_out_GT] = ACTIONS(1473), - [anon_sym_e_GT] = ACTIONS(1473), - [anon_sym_o_GT] = ACTIONS(1473), - [anon_sym_err_PLUSout_GT] = ACTIONS(1473), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), - [anon_sym_o_PLUSe_GT] = ACTIONS(1473), - [anon_sym_e_PLUSo_GT] = ACTIONS(1473), - [anon_sym_err_GT_GT] = ACTIONS(1475), - [anon_sym_out_GT_GT] = ACTIONS(1475), - [anon_sym_e_GT_GT] = ACTIONS(1475), - [anon_sym_o_GT_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [ts_builtin_sym_end] = ACTIONS(1066), + [anon_sym_true] = ACTIONS(1066), + [anon_sym_false] = ACTIONS(1066), + [anon_sym_null] = ACTIONS(1066), + [aux_sym_cmd_identifier_token38] = ACTIONS(1066), + [aux_sym_cmd_identifier_token39] = ACTIONS(1066), + [aux_sym_cmd_identifier_token40] = ACTIONS(1066), + [sym__newline] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1066), + [anon_sym_err_GT_PIPE] = ACTIONS(1066), + [anon_sym_out_GT_PIPE] = ACTIONS(1066), + [anon_sym_e_GT_PIPE] = ACTIONS(1066), + [anon_sym_o_GT_PIPE] = ACTIONS(1066), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1066), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1066), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1066), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1066), + [anon_sym_LBRACK] = ACTIONS(1066), + [anon_sym_LPAREN] = ACTIONS(1066), + [anon_sym_DOLLAR] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1064), + [aux_sym_ctrl_match_token1] = ACTIONS(1066), + [anon_sym_DOT_DOT] = ACTIONS(1064), + [anon_sym_DOT_DOT2] = ACTIONS(1064), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1064), + [anon_sym_DOT_DOT_LT] = ACTIONS(1064), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1066), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1066), + [aux_sym__val_number_decimal_token1] = ACTIONS(1064), + [aux_sym__val_number_decimal_token2] = ACTIONS(1066), + [aux_sym__val_number_decimal_token3] = ACTIONS(1066), + [aux_sym__val_number_decimal_token4] = ACTIONS(1066), + [aux_sym__val_number_token1] = ACTIONS(1066), + [aux_sym__val_number_token2] = ACTIONS(1066), + [aux_sym__val_number_token3] = ACTIONS(1066), + [anon_sym_0b] = ACTIONS(1064), + [anon_sym_0o] = ACTIONS(1064), + [anon_sym_0x] = ACTIONS(1064), + [sym_val_date] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [sym__str_single_quotes] = ACTIONS(1066), + [sym__str_back_ticks] = ACTIONS(1066), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1066), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1066), + [anon_sym_err_GT] = ACTIONS(1064), + [anon_sym_out_GT] = ACTIONS(1064), + [anon_sym_e_GT] = ACTIONS(1064), + [anon_sym_o_GT] = ACTIONS(1064), + [anon_sym_err_PLUSout_GT] = ACTIONS(1064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1064), + [anon_sym_o_PLUSe_GT] = ACTIONS(1064), + [anon_sym_e_PLUSo_GT] = ACTIONS(1064), + [anon_sym_err_GT_GT] = ACTIONS(1066), + [anon_sym_out_GT_GT] = ACTIONS(1066), + [anon_sym_e_GT_GT] = ACTIONS(1066), + [anon_sym_o_GT_GT] = ACTIONS(1066), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1066), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1066), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1066), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1066), + [aux_sym_unquoted_token1] = ACTIONS(1064), [anon_sym_POUND] = ACTIONS(247), }, [1437] = { + [sym_path] = STATE(1599), [sym_comment] = STATE(1437), - [ts_builtin_sym_end] = ACTIONS(1521), - [anon_sym_true] = ACTIONS(1521), - [anon_sym_false] = ACTIONS(1521), - [anon_sym_null] = ACTIONS(1521), - [aux_sym_cmd_identifier_token38] = ACTIONS(1521), - [aux_sym_cmd_identifier_token39] = ACTIONS(1521), - [aux_sym_cmd_identifier_token40] = ACTIONS(1521), - [sym__newline] = ACTIONS(1521), - [anon_sym_SEMI] = ACTIONS(1521), - [anon_sym_PIPE] = ACTIONS(1521), - [anon_sym_err_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_GT_PIPE] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_DOLLAR] = ACTIONS(1519), - [anon_sym_DASH_DASH] = ACTIONS(1521), - [anon_sym_DASH] = ACTIONS(1519), - [aux_sym_ctrl_match_token1] = ACTIONS(1521), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_DOT_DOT2] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1519), - [anon_sym_DOT_DOT_LT] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), - [aux_sym__val_number_decimal_token1] = ACTIONS(1519), - [aux_sym__val_number_decimal_token2] = ACTIONS(1521), - [aux_sym__val_number_decimal_token3] = ACTIONS(1521), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(1521), - [aux_sym__val_number_token2] = ACTIONS(1521), - [aux_sym__val_number_token3] = ACTIONS(1521), - [anon_sym_0b] = ACTIONS(1519), - [sym_filesize_unit] = ACTIONS(1521), - [sym_duration_unit] = ACTIONS(1521), - [anon_sym_0o] = ACTIONS(1519), - [anon_sym_0x] = ACTIONS(1519), - [sym_val_date] = ACTIONS(1521), - [anon_sym_DQUOTE] = ACTIONS(1521), - [sym__str_single_quotes] = ACTIONS(1521), - [sym__str_back_ticks] = ACTIONS(1521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1521), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1521), - [anon_sym_err_GT] = ACTIONS(1519), - [anon_sym_out_GT] = ACTIONS(1519), - [anon_sym_e_GT] = ACTIONS(1519), - [anon_sym_o_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT] = ACTIONS(1519), - [anon_sym_err_GT_GT] = ACTIONS(1521), - [anon_sym_out_GT_GT] = ACTIONS(1521), - [anon_sym_e_GT_GT] = ACTIONS(1521), - [anon_sym_o_GT_GT] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), - [aux_sym_unquoted_token1] = ACTIONS(1519), - [aux_sym_unquoted_token2] = ACTIONS(1519), + [aux_sym_cell_path_repeat1] = STATE(1446), + [ts_builtin_sym_end] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1019), + [anon_sym_false] = ACTIONS(1019), + [anon_sym_null] = ACTIONS(1019), + [aux_sym_cmd_identifier_token38] = ACTIONS(1019), + [aux_sym_cmd_identifier_token39] = ACTIONS(1019), + [aux_sym_cmd_identifier_token40] = ACTIONS(1019), + [sym__newline] = ACTIONS(1019), + [anon_sym_SEMI] = ACTIONS(1019), + [anon_sym_PIPE] = ACTIONS(1019), + [anon_sym_err_GT_PIPE] = ACTIONS(1019), + [anon_sym_out_GT_PIPE] = ACTIONS(1019), + [anon_sym_e_GT_PIPE] = ACTIONS(1019), + [anon_sym_o_GT_PIPE] = ACTIONS(1019), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1019), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1019), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1019), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1019), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_LPAREN] = ACTIONS(1019), + [anon_sym_DOLLAR] = ACTIONS(1017), + [anon_sym_DASH_DASH] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1017), + [aux_sym_ctrl_match_token1] = ACTIONS(1019), + [anon_sym_DOT_DOT] = ACTIONS(1017), + [anon_sym_DOT] = ACTIONS(4674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1019), + [anon_sym_DOT_DOT_LT] = ACTIONS(1019), + [aux_sym__val_number_decimal_token1] = ACTIONS(1017), + [aux_sym__val_number_decimal_token2] = ACTIONS(1019), + [aux_sym__val_number_decimal_token3] = ACTIONS(1019), + [aux_sym__val_number_decimal_token4] = ACTIONS(1019), + [aux_sym__val_number_token1] = ACTIONS(1019), + [aux_sym__val_number_token2] = ACTIONS(1019), + [aux_sym__val_number_token3] = ACTIONS(1019), + [anon_sym_0b] = ACTIONS(1017), + [anon_sym_0o] = ACTIONS(1017), + [anon_sym_0x] = ACTIONS(1017), + [sym_val_date] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1019), + [sym__str_single_quotes] = ACTIONS(1019), + [sym__str_back_ticks] = ACTIONS(1019), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1019), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1019), + [anon_sym_err_GT] = ACTIONS(1017), + [anon_sym_out_GT] = ACTIONS(1017), + [anon_sym_e_GT] = ACTIONS(1017), + [anon_sym_o_GT] = ACTIONS(1017), + [anon_sym_err_PLUSout_GT] = ACTIONS(1017), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1017), + [anon_sym_o_PLUSe_GT] = ACTIONS(1017), + [anon_sym_e_PLUSo_GT] = ACTIONS(1017), + [anon_sym_err_GT_GT] = ACTIONS(1019), + [anon_sym_out_GT_GT] = ACTIONS(1019), + [anon_sym_e_GT_GT] = ACTIONS(1019), + [anon_sym_o_GT_GT] = ACTIONS(1019), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1019), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1019), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1019), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1019), + [aux_sym_unquoted_token1] = ACTIONS(1017), [anon_sym_POUND] = ACTIONS(247), }, [1438] = { [sym_comment] = STATE(1438), - [ts_builtin_sym_end] = ACTIONS(1587), - [anon_sym_true] = ACTIONS(1587), - [anon_sym_false] = ACTIONS(1587), - [anon_sym_null] = ACTIONS(1587), - [aux_sym_cmd_identifier_token38] = ACTIONS(1587), - [aux_sym_cmd_identifier_token39] = ACTIONS(1587), - [aux_sym_cmd_identifier_token40] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(2243), + [anon_sym_false] = ACTIONS(2243), + [anon_sym_null] = ACTIONS(2243), + [aux_sym_cmd_identifier_token38] = ACTIONS(2243), + [aux_sym_cmd_identifier_token39] = ACTIONS(2243), + [aux_sym_cmd_identifier_token40] = ACTIONS(2243), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_LPAREN] = ACTIONS(2243), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_DOLLAR] = ACTIONS(2243), + [anon_sym_DASH_DASH] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [aux_sym_ctrl_match_token1] = ACTIONS(2247), + [anon_sym_RBRACE] = ACTIONS(2247), + [anon_sym_DOT_DOT] = ACTIONS(2243), + [anon_sym_LPAREN2] = ACTIONS(2245), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2243), + [anon_sym_DOT_DOT_LT] = ACTIONS(2243), + [aux_sym__val_number_decimal_token1] = ACTIONS(2243), + [aux_sym__val_number_decimal_token2] = ACTIONS(2243), + [aux_sym__val_number_decimal_token3] = ACTIONS(2243), + [aux_sym__val_number_decimal_token4] = ACTIONS(2243), + [aux_sym__val_number_token1] = ACTIONS(2243), + [aux_sym__val_number_token2] = ACTIONS(2243), + [aux_sym__val_number_token3] = ACTIONS(2243), + [anon_sym_0b] = ACTIONS(2243), + [anon_sym_0o] = ACTIONS(2243), + [anon_sym_0x] = ACTIONS(2243), + [sym_val_date] = ACTIONS(2243), + [anon_sym_DQUOTE] = ACTIONS(2247), + [sym__str_single_quotes] = ACTIONS(2247), + [sym__str_back_ticks] = ACTIONS(2247), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2247), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2243), + [anon_sym_out_GT] = ACTIONS(2243), + [anon_sym_e_GT] = ACTIONS(2243), + [anon_sym_o_GT] = ACTIONS(2243), + [anon_sym_err_PLUSout_GT] = ACTIONS(2243), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2243), + [anon_sym_o_PLUSe_GT] = ACTIONS(2243), + [anon_sym_e_PLUSo_GT] = ACTIONS(2243), + [anon_sym_err_GT_GT] = ACTIONS(2243), + [anon_sym_out_GT_GT] = ACTIONS(2243), + [anon_sym_e_GT_GT] = ACTIONS(2243), + [anon_sym_o_GT_GT] = ACTIONS(2243), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2243), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2243), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2243), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2243), + [aux_sym_unquoted_token1] = ACTIONS(2243), + [aux_sym_unquoted_token4] = ACTIONS(2249), + [anon_sym_POUND] = ACTIONS(3), + }, + [1439] = { + [sym_comment] = STATE(1439), + [anon_sym_true] = ACTIONS(2251), + [anon_sym_false] = ACTIONS(2251), + [anon_sym_null] = ACTIONS(2251), + [aux_sym_cmd_identifier_token38] = ACTIONS(2251), + [aux_sym_cmd_identifier_token39] = ACTIONS(2251), + [aux_sym_cmd_identifier_token40] = ACTIONS(2251), + [sym__newline] = ACTIONS(2253), + [anon_sym_SEMI] = ACTIONS(2253), + [anon_sym_PIPE] = ACTIONS(2253), + [anon_sym_err_GT_PIPE] = ACTIONS(2253), + [anon_sym_out_GT_PIPE] = ACTIONS(2253), + [anon_sym_e_GT_PIPE] = ACTIONS(2253), + [anon_sym_o_GT_PIPE] = ACTIONS(2253), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2253), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2253), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2253), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2253), + [anon_sym_LBRACK] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2251), + [anon_sym_RPAREN] = ACTIONS(2253), + [anon_sym_DOLLAR] = ACTIONS(2251), + [anon_sym_DASH_DASH] = ACTIONS(2251), + [anon_sym_DASH] = ACTIONS(2251), + [aux_sym_ctrl_match_token1] = ACTIONS(2253), + [anon_sym_RBRACE] = ACTIONS(2253), + [anon_sym_DOT_DOT] = ACTIONS(2251), + [anon_sym_LPAREN2] = ACTIONS(2245), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2251), + [anon_sym_DOT_DOT_LT] = ACTIONS(2251), + [aux_sym__val_number_decimal_token1] = ACTIONS(2251), + [aux_sym__val_number_decimal_token2] = ACTIONS(2251), + [aux_sym__val_number_decimal_token3] = ACTIONS(2251), + [aux_sym__val_number_decimal_token4] = ACTIONS(2251), + [aux_sym__val_number_token1] = ACTIONS(2251), + [aux_sym__val_number_token2] = ACTIONS(2251), + [aux_sym__val_number_token3] = ACTIONS(2251), + [anon_sym_0b] = ACTIONS(2251), + [anon_sym_0o] = ACTIONS(2251), + [anon_sym_0x] = ACTIONS(2251), + [sym_val_date] = ACTIONS(2251), + [anon_sym_DQUOTE] = ACTIONS(2253), + [sym__str_single_quotes] = ACTIONS(2253), + [sym__str_back_ticks] = ACTIONS(2253), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2253), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2253), + [anon_sym_err_GT] = ACTIONS(2251), + [anon_sym_out_GT] = ACTIONS(2251), + [anon_sym_e_GT] = ACTIONS(2251), + [anon_sym_o_GT] = ACTIONS(2251), + [anon_sym_err_PLUSout_GT] = ACTIONS(2251), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2251), + [anon_sym_o_PLUSe_GT] = ACTIONS(2251), + [anon_sym_e_PLUSo_GT] = ACTIONS(2251), + [anon_sym_err_GT_GT] = ACTIONS(2251), + [anon_sym_out_GT_GT] = ACTIONS(2251), + [anon_sym_e_GT_GT] = ACTIONS(2251), + [anon_sym_o_GT_GT] = ACTIONS(2251), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2251), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2251), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2251), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2251), + [aux_sym_unquoted_token1] = ACTIONS(2251), + [aux_sym_unquoted_token4] = ACTIONS(2249), + [anon_sym_POUND] = ACTIONS(3), + }, + [1440] = { + [sym_comment] = STATE(1440), + [anon_sym_true] = ACTIONS(2228), + [anon_sym_false] = ACTIONS(2228), + [anon_sym_null] = ACTIONS(2228), + [aux_sym_cmd_identifier_token38] = ACTIONS(2228), + [aux_sym_cmd_identifier_token39] = ACTIONS(2228), + [aux_sym_cmd_identifier_token40] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_LBRACK] = ACTIONS(2228), + [anon_sym_LPAREN] = ACTIONS(2224), + [anon_sym_RPAREN] = ACTIONS(2228), + [anon_sym_DOLLAR] = ACTIONS(2224), + [anon_sym_DASH_DASH] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2224), + [aux_sym_ctrl_match_token1] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2226), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2228), + [anon_sym_DOT_DOT_LT] = ACTIONS(2228), + [aux_sym__val_number_decimal_token1] = ACTIONS(2224), + [aux_sym__val_number_decimal_token2] = ACTIONS(2228), + [aux_sym__val_number_decimal_token3] = ACTIONS(2228), + [aux_sym__val_number_decimal_token4] = ACTIONS(2228), + [aux_sym__val_number_token1] = ACTIONS(2228), + [aux_sym__val_number_token2] = ACTIONS(2228), + [aux_sym__val_number_token3] = ACTIONS(2228), + [anon_sym_0b] = ACTIONS(2224), + [anon_sym_0o] = ACTIONS(2224), + [anon_sym_0x] = ACTIONS(2224), + [sym_val_date] = ACTIONS(2228), + [anon_sym_DQUOTE] = ACTIONS(2228), + [sym__str_single_quotes] = ACTIONS(2228), + [sym__str_back_ticks] = ACTIONS(2228), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2228), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2224), + [anon_sym_out_GT] = ACTIONS(2224), + [anon_sym_e_GT] = ACTIONS(2224), + [anon_sym_o_GT] = ACTIONS(2224), + [anon_sym_err_PLUSout_GT] = ACTIONS(2224), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2224), + [anon_sym_o_PLUSe_GT] = ACTIONS(2224), + [anon_sym_e_PLUSo_GT] = ACTIONS(2224), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), + [aux_sym_unquoted_token1] = ACTIONS(2224), + [aux_sym_unquoted_token2] = ACTIONS(2230), + [anon_sym_POUND] = ACTIONS(247), + }, + [1441] = { + [sym__expr_parenthesized_immediate] = STATE(7570), + [sym_comment] = STATE(1441), + [sym__newline] = ACTIONS(4781), + [anon_sym_SEMI] = ACTIONS(4781), + [anon_sym_PIPE] = ACTIONS(4781), + [anon_sym_err_GT_PIPE] = ACTIONS(4781), + [anon_sym_out_GT_PIPE] = ACTIONS(4781), + [anon_sym_e_GT_PIPE] = ACTIONS(4781), + [anon_sym_o_GT_PIPE] = ACTIONS(4781), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4781), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4781), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4781), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4781), + [anon_sym_RPAREN] = ACTIONS(4781), + [anon_sym_DASH_DASH] = ACTIONS(4781), + [anon_sym_DASH] = ACTIONS(4783), + [aux_sym_ctrl_match_token1] = ACTIONS(4781), + [anon_sym_RBRACE] = ACTIONS(4781), + [anon_sym_EQ_GT] = ACTIONS(4781), + [anon_sym_LPAREN2] = ACTIONS(3914), + [aux_sym_expr_binary_token1] = ACTIONS(4781), + [aux_sym_expr_binary_token2] = ACTIONS(4781), + [aux_sym_expr_binary_token3] = ACTIONS(4781), + [aux_sym_expr_binary_token4] = ACTIONS(4781), + [aux_sym_expr_binary_token5] = ACTIONS(4781), + [aux_sym_expr_binary_token6] = ACTIONS(4781), + [aux_sym_expr_binary_token7] = ACTIONS(4781), + [aux_sym_expr_binary_token8] = ACTIONS(4781), + [aux_sym_expr_binary_token9] = ACTIONS(4781), + [aux_sym_expr_binary_token10] = ACTIONS(4781), + [aux_sym_expr_binary_token11] = ACTIONS(4781), + [aux_sym_expr_binary_token12] = ACTIONS(4781), + [aux_sym_expr_binary_token13] = ACTIONS(4781), + [aux_sym_expr_binary_token14] = ACTIONS(4781), + [aux_sym_expr_binary_token15] = ACTIONS(4781), + [aux_sym_expr_binary_token16] = ACTIONS(4781), + [aux_sym_expr_binary_token17] = ACTIONS(4781), + [aux_sym_expr_binary_token18] = ACTIONS(4781), + [aux_sym_expr_binary_token19] = ACTIONS(4781), + [aux_sym_expr_binary_token20] = ACTIONS(4781), + [aux_sym_expr_binary_token21] = ACTIONS(4781), + [aux_sym_expr_binary_token22] = ACTIONS(4781), + [aux_sym_expr_binary_token23] = ACTIONS(4781), + [aux_sym_expr_binary_token24] = ACTIONS(4781), + [aux_sym_expr_binary_token25] = ACTIONS(4781), + [aux_sym_expr_binary_token26] = ACTIONS(4781), + [aux_sym_expr_binary_token27] = ACTIONS(4781), + [aux_sym_expr_binary_token28] = ACTIONS(4781), + [anon_sym_err_GT] = ACTIONS(4783), + [anon_sym_out_GT] = ACTIONS(4783), + [anon_sym_e_GT] = ACTIONS(4783), + [anon_sym_o_GT] = ACTIONS(4783), + [anon_sym_err_PLUSout_GT] = ACTIONS(4783), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4783), + [anon_sym_o_PLUSe_GT] = ACTIONS(4783), + [anon_sym_e_PLUSo_GT] = ACTIONS(4783), + [anon_sym_err_GT_GT] = ACTIONS(4781), + [anon_sym_out_GT_GT] = ACTIONS(4781), + [anon_sym_e_GT_GT] = ACTIONS(4781), + [anon_sym_o_GT_GT] = ACTIONS(4781), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4781), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4781), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4781), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4781), + [anon_sym_POUND] = ACTIONS(247), + }, + [1442] = { + [sym_comment] = STATE(1442), + [aux_sym_cmd_identifier_token41] = ACTIONS(4785), [sym__newline] = ACTIONS(1587), [anon_sym_SEMI] = ACTIONS(1587), [anon_sym_PIPE] = ACTIONS(1587), @@ -212419,44 +205600,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_DOLLAR] = ACTIONS(1585), - [anon_sym_DASH_DASH] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1585), - [aux_sym_ctrl_match_token1] = ACTIONS(1587), - [anon_sym_DOT_DOT] = ACTIONS(1585), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1585), - [anon_sym_DOT_DOT_LT] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1587), - [aux_sym__val_number_decimal_token4] = ACTIONS(1587), - [aux_sym__val_number_token1] = ACTIONS(1587), - [aux_sym__val_number_token2] = ACTIONS(1587), - [aux_sym__val_number_token3] = ACTIONS(1587), - [anon_sym_0b] = ACTIONS(1585), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1587), - [anon_sym_0o] = ACTIONS(1585), - [anon_sym_0x] = ACTIONS(1585), - [sym_val_date] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1587), - [sym__str_single_quotes] = ACTIONS(1587), - [sym__str_back_ticks] = ACTIONS(1587), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1585), - [anon_sym_out_GT] = ACTIONS(1585), - [anon_sym_e_GT] = ACTIONS(1585), - [anon_sym_o_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT] = ACTIONS(1585), + [anon_sym_RPAREN] = ACTIONS(1587), + [anon_sym_RBRACE] = ACTIONS(1587), + [aux_sym_expr_binary_token1] = ACTIONS(1587), + [aux_sym_expr_binary_token2] = ACTIONS(1587), + [aux_sym_expr_binary_token3] = ACTIONS(1587), + [aux_sym_expr_binary_token4] = ACTIONS(1587), + [aux_sym_expr_binary_token5] = ACTIONS(1587), + [aux_sym_expr_binary_token6] = ACTIONS(1587), + [aux_sym_expr_binary_token7] = ACTIONS(1587), + [aux_sym_expr_binary_token8] = ACTIONS(1587), + [aux_sym_expr_binary_token9] = ACTIONS(1587), + [aux_sym_expr_binary_token10] = ACTIONS(1587), + [aux_sym_expr_binary_token11] = ACTIONS(1587), + [aux_sym_expr_binary_token12] = ACTIONS(1587), + [aux_sym_expr_binary_token13] = ACTIONS(1587), + [aux_sym_expr_binary_token14] = ACTIONS(1587), + [aux_sym_expr_binary_token15] = ACTIONS(1587), + [aux_sym_expr_binary_token16] = ACTIONS(1587), + [aux_sym_expr_binary_token17] = ACTIONS(1587), + [aux_sym_expr_binary_token18] = ACTIONS(1587), + [aux_sym_expr_binary_token19] = ACTIONS(1587), + [aux_sym_expr_binary_token20] = ACTIONS(1587), + [aux_sym_expr_binary_token21] = ACTIONS(1587), + [aux_sym_expr_binary_token22] = ACTIONS(1587), + [aux_sym_expr_binary_token23] = ACTIONS(1587), + [aux_sym_expr_binary_token24] = ACTIONS(1587), + [aux_sym_expr_binary_token25] = ACTIONS(1587), + [aux_sym_expr_binary_token26] = ACTIONS(1587), + [aux_sym_expr_binary_token27] = ACTIONS(1587), + [aux_sym_expr_binary_token28] = ACTIONS(1587), + [anon_sym_DOT_DOT2] = ACTIONS(4787), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4789), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4789), + [sym_filesize_unit] = ACTIONS(4791), + [sym_duration_unit] = ACTIONS(4793), + [anon_sym_err_GT] = ACTIONS(1575), + [anon_sym_out_GT] = ACTIONS(1575), + [anon_sym_e_GT] = ACTIONS(1575), + [anon_sym_o_GT] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT] = ACTIONS(1575), [anon_sym_err_GT_GT] = ACTIONS(1587), [anon_sym_out_GT_GT] = ACTIONS(1587), [anon_sym_e_GT_GT] = ACTIONS(1587), @@ -212465,10906 +205651,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), - [aux_sym_unquoted_token1] = ACTIONS(1585), - [aux_sym_unquoted_token2] = ACTIONS(1585), - [anon_sym_POUND] = ACTIONS(247), - }, - [1439] = { - [sym_comment] = STATE(1439), - [ts_builtin_sym_end] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [anon_sym_null] = ACTIONS(1591), - [aux_sym_cmd_identifier_token38] = ACTIONS(1591), - [aux_sym_cmd_identifier_token39] = ACTIONS(1591), - [aux_sym_cmd_identifier_token40] = ACTIONS(1591), - [sym__newline] = ACTIONS(1591), - [anon_sym_SEMI] = ACTIONS(1591), - [anon_sym_PIPE] = ACTIONS(1591), - [anon_sym_err_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_GT_PIPE] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), - [anon_sym_LBRACK] = ACTIONS(1591), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_DASH] = ACTIONS(1589), - [aux_sym_ctrl_match_token1] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1591), - [anon_sym_DOT_DOT2] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), - [aux_sym__immediate_decimal_token2] = ACTIONS(4613), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token3] = ACTIONS(1591), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(1591), - [aux_sym__val_number_token2] = ACTIONS(1591), - [aux_sym__val_number_token3] = ACTIONS(1591), - [anon_sym_0b] = ACTIONS(1589), - [anon_sym_0o] = ACTIONS(1589), - [anon_sym_0x] = ACTIONS(1589), - [sym_val_date] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym__str_single_quotes] = ACTIONS(1591), - [sym__str_back_ticks] = ACTIONS(1591), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), - [anon_sym_err_GT] = ACTIONS(1589), - [anon_sym_out_GT] = ACTIONS(1589), - [anon_sym_e_GT] = ACTIONS(1589), - [anon_sym_o_GT] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT] = ACTIONS(1589), - [anon_sym_err_GT_GT] = ACTIONS(1591), - [anon_sym_out_GT_GT] = ACTIONS(1591), - [anon_sym_e_GT_GT] = ACTIONS(1591), - [anon_sym_o_GT_GT] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), - [aux_sym_unquoted_token1] = ACTIONS(1589), - [aux_sym_unquoted_token2] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(247), - }, - [1440] = { - [sym_path] = STATE(1597), - [sym_comment] = STATE(1440), - [aux_sym_cell_path_repeat1] = STATE(1441), - [ts_builtin_sym_end] = ACTIONS(953), - [anon_sym_true] = ACTIONS(953), - [anon_sym_false] = ACTIONS(953), - [anon_sym_null] = ACTIONS(953), - [aux_sym_cmd_identifier_token38] = ACTIONS(953), - [aux_sym_cmd_identifier_token39] = ACTIONS(953), - [aux_sym_cmd_identifier_token40] = ACTIONS(953), - [sym__newline] = ACTIONS(953), - [anon_sym_SEMI] = ACTIONS(953), - [anon_sym_PIPE] = ACTIONS(953), - [anon_sym_err_GT_PIPE] = ACTIONS(953), - [anon_sym_out_GT_PIPE] = ACTIONS(953), - [anon_sym_e_GT_PIPE] = ACTIONS(953), - [anon_sym_o_GT_PIPE] = ACTIONS(953), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(953), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(953), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(953), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_DOLLAR] = ACTIONS(951), - [anon_sym_DASH_DASH] = ACTIONS(953), - [anon_sym_DASH] = ACTIONS(951), - [aux_sym_ctrl_match_token1] = ACTIONS(953), - [anon_sym_DOT_DOT] = ACTIONS(951), - [anon_sym_DOT_DOT2] = ACTIONS(951), - [anon_sym_DOT] = ACTIONS(4617), - [anon_sym_DOT_DOT_EQ] = ACTIONS(951), - [anon_sym_DOT_DOT_LT] = ACTIONS(951), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(953), - [anon_sym_DOT_DOT_LT2] = ACTIONS(953), - [aux_sym__val_number_decimal_token1] = ACTIONS(951), - [aux_sym__val_number_decimal_token2] = ACTIONS(953), - [aux_sym__val_number_decimal_token3] = ACTIONS(953), - [aux_sym__val_number_decimal_token4] = ACTIONS(953), - [aux_sym__val_number_token1] = ACTIONS(953), - [aux_sym__val_number_token2] = ACTIONS(953), - [aux_sym__val_number_token3] = ACTIONS(953), - [anon_sym_0b] = ACTIONS(951), - [anon_sym_0o] = ACTIONS(951), - [anon_sym_0x] = ACTIONS(951), - [sym_val_date] = ACTIONS(953), - [anon_sym_DQUOTE] = ACTIONS(953), - [sym__str_single_quotes] = ACTIONS(953), - [sym__str_back_ticks] = ACTIONS(953), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(953), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(953), - [anon_sym_err_GT] = ACTIONS(951), - [anon_sym_out_GT] = ACTIONS(951), - [anon_sym_e_GT] = ACTIONS(951), - [anon_sym_o_GT] = ACTIONS(951), - [anon_sym_err_PLUSout_GT] = ACTIONS(951), - [anon_sym_out_PLUSerr_GT] = ACTIONS(951), - [anon_sym_o_PLUSe_GT] = ACTIONS(951), - [anon_sym_e_PLUSo_GT] = ACTIONS(951), - [anon_sym_err_GT_GT] = ACTIONS(953), - [anon_sym_out_GT_GT] = ACTIONS(953), - [anon_sym_e_GT_GT] = ACTIONS(953), - [anon_sym_o_GT_GT] = ACTIONS(953), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(953), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(953), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(953), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(953), - [aux_sym_unquoted_token1] = ACTIONS(951), - [anon_sym_POUND] = ACTIONS(247), - }, - [1441] = { - [sym_path] = STATE(1597), - [sym_comment] = STATE(1441), - [aux_sym_cell_path_repeat1] = STATE(1441), - [ts_builtin_sym_end] = ACTIONS(957), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_null] = ACTIONS(957), - [aux_sym_cmd_identifier_token38] = ACTIONS(957), - [aux_sym_cmd_identifier_token39] = ACTIONS(957), - [aux_sym_cmd_identifier_token40] = ACTIONS(957), - [sym__newline] = ACTIONS(957), - [anon_sym_SEMI] = ACTIONS(957), - [anon_sym_PIPE] = ACTIONS(957), - [anon_sym_err_GT_PIPE] = ACTIONS(957), - [anon_sym_out_GT_PIPE] = ACTIONS(957), - [anon_sym_e_GT_PIPE] = ACTIONS(957), - [anon_sym_o_GT_PIPE] = ACTIONS(957), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(957), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(957), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(957), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(957), - [anon_sym_LBRACK] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(957), - [anon_sym_DOLLAR] = ACTIONS(955), - [anon_sym_DASH_DASH] = ACTIONS(957), - [anon_sym_DASH] = ACTIONS(955), - [aux_sym_ctrl_match_token1] = ACTIONS(957), - [anon_sym_DOT_DOT] = ACTIONS(955), - [anon_sym_DOT_DOT2] = ACTIONS(955), - [anon_sym_DOT] = ACTIONS(4746), - [anon_sym_DOT_DOT_EQ] = ACTIONS(955), - [anon_sym_DOT_DOT_LT] = ACTIONS(955), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(957), - [anon_sym_DOT_DOT_LT2] = ACTIONS(957), - [aux_sym__val_number_decimal_token1] = ACTIONS(955), - [aux_sym__val_number_decimal_token2] = ACTIONS(957), - [aux_sym__val_number_decimal_token3] = ACTIONS(957), - [aux_sym__val_number_decimal_token4] = ACTIONS(957), - [aux_sym__val_number_token1] = ACTIONS(957), - [aux_sym__val_number_token2] = ACTIONS(957), - [aux_sym__val_number_token3] = ACTIONS(957), - [anon_sym_0b] = ACTIONS(955), - [anon_sym_0o] = ACTIONS(955), - [anon_sym_0x] = ACTIONS(955), - [sym_val_date] = ACTIONS(957), - [anon_sym_DQUOTE] = ACTIONS(957), - [sym__str_single_quotes] = ACTIONS(957), - [sym__str_back_ticks] = ACTIONS(957), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(957), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(957), - [anon_sym_err_GT] = ACTIONS(955), - [anon_sym_out_GT] = ACTIONS(955), - [anon_sym_e_GT] = ACTIONS(955), - [anon_sym_o_GT] = ACTIONS(955), - [anon_sym_err_PLUSout_GT] = ACTIONS(955), - [anon_sym_out_PLUSerr_GT] = ACTIONS(955), - [anon_sym_o_PLUSe_GT] = ACTIONS(955), - [anon_sym_e_PLUSo_GT] = ACTIONS(955), - [anon_sym_err_GT_GT] = ACTIONS(957), - [anon_sym_out_GT_GT] = ACTIONS(957), - [anon_sym_e_GT_GT] = ACTIONS(957), - [anon_sym_o_GT_GT] = ACTIONS(957), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(957), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(957), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(957), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(957), - [aux_sym_unquoted_token1] = ACTIONS(955), - [anon_sym_POUND] = ACTIONS(247), - }, - [1442] = { - [sym_comment] = STATE(1442), - [anon_sym_true] = ACTIONS(964), - [anon_sym_false] = ACTIONS(964), - [anon_sym_null] = ACTIONS(964), - [aux_sym_cmd_identifier_token38] = ACTIONS(964), - [aux_sym_cmd_identifier_token39] = ACTIONS(964), - [aux_sym_cmd_identifier_token40] = ACTIONS(964), - [sym__newline] = ACTIONS(964), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_PIPE] = ACTIONS(964), - [anon_sym_err_GT_PIPE] = ACTIONS(964), - [anon_sym_out_GT_PIPE] = ACTIONS(964), - [anon_sym_e_GT_PIPE] = ACTIONS(964), - [anon_sym_o_GT_PIPE] = ACTIONS(964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(964), - [anon_sym_LBRACK] = ACTIONS(964), - [anon_sym_LPAREN] = ACTIONS(964), - [anon_sym_RPAREN] = ACTIONS(964), - [anon_sym_DOLLAR] = ACTIONS(962), - [anon_sym_DASH_DASH] = ACTIONS(964), - [anon_sym_DASH] = ACTIONS(962), - [aux_sym_ctrl_match_token1] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_DOT_DOT] = ACTIONS(962), - [anon_sym_QMARK2] = ACTIONS(964), - [anon_sym_DOT_DOT2] = ACTIONS(962), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_DOT_DOT_EQ] = ACTIONS(962), - [anon_sym_DOT_DOT_LT] = ACTIONS(962), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(964), - [anon_sym_DOT_DOT_LT2] = ACTIONS(964), - [aux_sym__val_number_decimal_token1] = ACTIONS(962), - [aux_sym__val_number_decimal_token2] = ACTIONS(964), - [aux_sym__val_number_decimal_token3] = ACTIONS(964), - [aux_sym__val_number_decimal_token4] = ACTIONS(964), - [aux_sym__val_number_token1] = ACTIONS(964), - [aux_sym__val_number_token2] = ACTIONS(964), - [aux_sym__val_number_token3] = ACTIONS(964), - [anon_sym_0b] = ACTIONS(962), - [anon_sym_0o] = ACTIONS(962), - [anon_sym_0x] = ACTIONS(962), - [sym_val_date] = ACTIONS(964), - [anon_sym_DQUOTE] = ACTIONS(964), - [sym__str_single_quotes] = ACTIONS(964), - [sym__str_back_ticks] = ACTIONS(964), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(964), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(964), - [anon_sym_err_GT] = ACTIONS(962), - [anon_sym_out_GT] = ACTIONS(962), - [anon_sym_e_GT] = ACTIONS(962), - [anon_sym_o_GT] = ACTIONS(962), - [anon_sym_err_PLUSout_GT] = ACTIONS(962), - [anon_sym_out_PLUSerr_GT] = ACTIONS(962), - [anon_sym_o_PLUSe_GT] = ACTIONS(962), - [anon_sym_e_PLUSo_GT] = ACTIONS(962), - [anon_sym_err_GT_GT] = ACTIONS(964), - [anon_sym_out_GT_GT] = ACTIONS(964), - [anon_sym_e_GT_GT] = ACTIONS(964), - [anon_sym_o_GT_GT] = ACTIONS(964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(964), - [aux_sym_unquoted_token1] = ACTIONS(962), [anon_sym_POUND] = ACTIONS(247), }, [1443] = { [sym_comment] = STATE(1443), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1698), - [anon_sym_null] = ACTIONS(1698), - [aux_sym_cmd_identifier_token38] = ACTIONS(1698), - [aux_sym_cmd_identifier_token39] = ACTIONS(1698), - [aux_sym_cmd_identifier_token40] = ACTIONS(1698), - [sym__newline] = ACTIONS(1698), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_PIPE] = ACTIONS(1698), - [anon_sym_err_GT_PIPE] = ACTIONS(1698), - [anon_sym_out_GT_PIPE] = ACTIONS(1698), - [anon_sym_e_GT_PIPE] = ACTIONS(1698), - [anon_sym_o_GT_PIPE] = ACTIONS(1698), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1698), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1698), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1698), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1698), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_RPAREN] = ACTIONS(1698), - [anon_sym_DOLLAR] = ACTIONS(1690), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_DASH] = ACTIONS(1690), - [aux_sym_ctrl_match_token1] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_DOT_DOT] = ACTIONS(1690), - [anon_sym_LPAREN2] = ACTIONS(1692), - [anon_sym_DOT_DOT2] = ACTIONS(4749), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1690), - [anon_sym_DOT_DOT_LT] = ACTIONS(1690), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4751), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4751), - [aux_sym__val_number_decimal_token1] = ACTIONS(1690), - [aux_sym__val_number_decimal_token2] = ACTIONS(1698), - [aux_sym__val_number_decimal_token3] = ACTIONS(1698), - [aux_sym__val_number_decimal_token4] = ACTIONS(1698), - [aux_sym__val_number_token1] = ACTIONS(1698), - [aux_sym__val_number_token2] = ACTIONS(1698), - [aux_sym__val_number_token3] = ACTIONS(1698), - [anon_sym_0b] = ACTIONS(1690), - [anon_sym_0o] = ACTIONS(1690), - [anon_sym_0x] = ACTIONS(1690), - [sym_val_date] = ACTIONS(1698), - [anon_sym_DQUOTE] = ACTIONS(1698), - [sym__str_single_quotes] = ACTIONS(1698), - [sym__str_back_ticks] = ACTIONS(1698), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1698), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1698), - [anon_sym_err_GT] = ACTIONS(1690), - [anon_sym_out_GT] = ACTIONS(1690), - [anon_sym_e_GT] = ACTIONS(1690), - [anon_sym_o_GT] = ACTIONS(1690), - [anon_sym_err_PLUSout_GT] = ACTIONS(1690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1690), - [anon_sym_o_PLUSe_GT] = ACTIONS(1690), - [anon_sym_e_PLUSo_GT] = ACTIONS(1690), - [anon_sym_err_GT_GT] = ACTIONS(1698), - [anon_sym_out_GT_GT] = ACTIONS(1698), - [anon_sym_e_GT_GT] = ACTIONS(1698), - [anon_sym_o_GT_GT] = ACTIONS(1698), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1698), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1698), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1698), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1698), - [aux_sym_unquoted_token1] = ACTIONS(1690), - [aux_sym_unquoted_token2] = ACTIONS(1429), + [ts_builtin_sym_end] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [aux_sym_cmd_identifier_token38] = ACTIONS(1633), + [aux_sym_cmd_identifier_token39] = ACTIONS(1633), + [aux_sym_cmd_identifier_token40] = ACTIONS(1633), + [sym__newline] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1633), + [anon_sym_err_GT_PIPE] = ACTIONS(1633), + [anon_sym_out_GT_PIPE] = ACTIONS(1633), + [anon_sym_e_GT_PIPE] = ACTIONS(1633), + [anon_sym_o_GT_PIPE] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1633), + [anon_sym_LBRACK] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1633), + [anon_sym_DOLLAR] = ACTIONS(1631), + [anon_sym_DASH_DASH] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1631), + [aux_sym_ctrl_match_token1] = ACTIONS(1633), + [anon_sym_DOT_DOT] = ACTIONS(1631), + [anon_sym_DOT_DOT2] = ACTIONS(1631), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1631), + [anon_sym_DOT_DOT_LT] = ACTIONS(1631), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1633), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1633), + [aux_sym__val_number_decimal_token1] = ACTIONS(1631), + [aux_sym__val_number_decimal_token2] = ACTIONS(1633), + [aux_sym__val_number_decimal_token3] = ACTIONS(1633), + [aux_sym__val_number_decimal_token4] = ACTIONS(1633), + [aux_sym__val_number_token1] = ACTIONS(1633), + [aux_sym__val_number_token2] = ACTIONS(1633), + [aux_sym__val_number_token3] = ACTIONS(1633), + [anon_sym_0b] = ACTIONS(1631), + [anon_sym_0o] = ACTIONS(1631), + [anon_sym_0x] = ACTIONS(1631), + [sym_val_date] = ACTIONS(1633), + [anon_sym_DQUOTE] = ACTIONS(1633), + [sym__str_single_quotes] = ACTIONS(1633), + [sym__str_back_ticks] = ACTIONS(1633), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1633), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1633), + [anon_sym_err_GT] = ACTIONS(1631), + [anon_sym_out_GT] = ACTIONS(1631), + [anon_sym_e_GT] = ACTIONS(1631), + [anon_sym_o_GT] = ACTIONS(1631), + [anon_sym_err_PLUSout_GT] = ACTIONS(1631), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1631), + [anon_sym_o_PLUSe_GT] = ACTIONS(1631), + [anon_sym_e_PLUSo_GT] = ACTIONS(1631), + [anon_sym_err_GT_GT] = ACTIONS(1633), + [anon_sym_out_GT_GT] = ACTIONS(1633), + [anon_sym_e_GT_GT] = ACTIONS(1633), + [anon_sym_o_GT_GT] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1633), + [aux_sym_unquoted_token1] = ACTIONS(1631), [anon_sym_POUND] = ACTIONS(247), }, [1444] = { + [sym__expr_parenthesized_immediate] = STATE(7390), [sym_comment] = STATE(1444), - [anon_sym_true] = ACTIONS(1571), - [anon_sym_false] = ACTIONS(1571), - [anon_sym_null] = ACTIONS(1571), - [aux_sym_cmd_identifier_token38] = ACTIONS(1571), - [aux_sym_cmd_identifier_token39] = ACTIONS(1571), - [aux_sym_cmd_identifier_token40] = ACTIONS(1571), - [sym__newline] = ACTIONS(1571), - [anon_sym_SEMI] = ACTIONS(1571), - [anon_sym_PIPE] = ACTIONS(1571), - [anon_sym_err_GT_PIPE] = ACTIONS(1571), - [anon_sym_out_GT_PIPE] = ACTIONS(1571), - [anon_sym_e_GT_PIPE] = ACTIONS(1571), - [anon_sym_o_GT_PIPE] = ACTIONS(1571), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1571), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1571), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1571), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1571), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_LPAREN] = ACTIONS(1571), - [anon_sym_RPAREN] = ACTIONS(1571), - [anon_sym_DOLLAR] = ACTIONS(1569), - [anon_sym_DASH_DASH] = ACTIONS(1571), - [anon_sym_DASH] = ACTIONS(1569), - [aux_sym_ctrl_match_token1] = ACTIONS(1571), - [anon_sym_RBRACE] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1569), - [anon_sym_DOT_DOT2] = ACTIONS(1569), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1569), - [anon_sym_DOT_DOT_LT] = ACTIONS(1569), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1571), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1571), - [aux_sym__immediate_decimal_token1] = ACTIONS(4753), - [aux_sym__immediate_decimal_token2] = ACTIONS(4755), - [aux_sym__val_number_decimal_token1] = ACTIONS(1569), - [aux_sym__val_number_decimal_token2] = ACTIONS(1571), - [aux_sym__val_number_decimal_token3] = ACTIONS(1571), - [aux_sym__val_number_decimal_token4] = ACTIONS(1571), - [aux_sym__val_number_token1] = ACTIONS(1571), - [aux_sym__val_number_token2] = ACTIONS(1571), - [aux_sym__val_number_token3] = ACTIONS(1571), - [anon_sym_0b] = ACTIONS(1569), - [anon_sym_0o] = ACTIONS(1569), - [anon_sym_0x] = ACTIONS(1569), - [sym_val_date] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [sym__str_single_quotes] = ACTIONS(1571), - [sym__str_back_ticks] = ACTIONS(1571), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1571), - [anon_sym_err_GT] = ACTIONS(1569), - [anon_sym_out_GT] = ACTIONS(1569), - [anon_sym_e_GT] = ACTIONS(1569), - [anon_sym_o_GT] = ACTIONS(1569), - [anon_sym_err_PLUSout_GT] = ACTIONS(1569), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1569), - [anon_sym_o_PLUSe_GT] = ACTIONS(1569), - [anon_sym_e_PLUSo_GT] = ACTIONS(1569), - [anon_sym_err_GT_GT] = ACTIONS(1571), - [anon_sym_out_GT_GT] = ACTIONS(1571), - [anon_sym_e_GT_GT] = ACTIONS(1571), - [anon_sym_o_GT_GT] = ACTIONS(1571), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1571), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1571), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1571), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1571), - [aux_sym_unquoted_token1] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(4795), + [anon_sym_false] = ACTIONS(4795), + [anon_sym_null] = ACTIONS(4795), + [aux_sym_cmd_identifier_token38] = ACTIONS(4795), + [aux_sym_cmd_identifier_token39] = ACTIONS(4795), + [aux_sym_cmd_identifier_token40] = ACTIONS(4795), + [sym__newline] = ACTIONS(4795), + [anon_sym_SEMI] = ACTIONS(4795), + [anon_sym_PIPE] = ACTIONS(4795), + [anon_sym_err_GT_PIPE] = ACTIONS(4795), + [anon_sym_out_GT_PIPE] = ACTIONS(4795), + [anon_sym_e_GT_PIPE] = ACTIONS(4795), + [anon_sym_o_GT_PIPE] = ACTIONS(4795), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4795), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4795), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4795), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4795), + [anon_sym_LBRACK] = ACTIONS(4795), + [anon_sym_LPAREN] = ACTIONS(4797), + [anon_sym_RPAREN] = ACTIONS(4795), + [anon_sym_DOLLAR] = ACTIONS(4797), + [anon_sym_DASH_DASH] = ACTIONS(4795), + [anon_sym_DASH] = ACTIONS(4797), + [aux_sym_ctrl_match_token1] = ACTIONS(4795), + [anon_sym_RBRACE] = ACTIONS(4795), + [anon_sym_DOT_DOT] = ACTIONS(4797), + [anon_sym_LPAREN2] = ACTIONS(3914), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4795), + [anon_sym_DOT_DOT_LT] = ACTIONS(4795), + [aux_sym__val_number_decimal_token1] = ACTIONS(4797), + [aux_sym__val_number_decimal_token2] = ACTIONS(4795), + [aux_sym__val_number_decimal_token3] = ACTIONS(4795), + [aux_sym__val_number_decimal_token4] = ACTIONS(4795), + [aux_sym__val_number_token1] = ACTIONS(4795), + [aux_sym__val_number_token2] = ACTIONS(4795), + [aux_sym__val_number_token3] = ACTIONS(4795), + [anon_sym_0b] = ACTIONS(4797), + [anon_sym_0o] = ACTIONS(4797), + [anon_sym_0x] = ACTIONS(4797), + [sym_val_date] = ACTIONS(4795), + [anon_sym_DQUOTE] = ACTIONS(4795), + [sym__str_single_quotes] = ACTIONS(4795), + [sym__str_back_ticks] = ACTIONS(4795), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4795), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4795), + [anon_sym_err_GT] = ACTIONS(4797), + [anon_sym_out_GT] = ACTIONS(4797), + [anon_sym_e_GT] = ACTIONS(4797), + [anon_sym_o_GT] = ACTIONS(4797), + [anon_sym_err_PLUSout_GT] = ACTIONS(4797), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4797), + [anon_sym_o_PLUSe_GT] = ACTIONS(4797), + [anon_sym_e_PLUSo_GT] = ACTIONS(4797), + [anon_sym_err_GT_GT] = ACTIONS(4795), + [anon_sym_out_GT_GT] = ACTIONS(4795), + [anon_sym_e_GT_GT] = ACTIONS(4795), + [anon_sym_o_GT_GT] = ACTIONS(4795), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4795), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4795), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4795), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4795), + [aux_sym_unquoted_token1] = ACTIONS(4797), [anon_sym_POUND] = ACTIONS(247), }, [1445] = { [sym_comment] = STATE(1445), - [anon_sym_true] = ACTIONS(978), - [anon_sym_false] = ACTIONS(978), - [anon_sym_null] = ACTIONS(978), - [aux_sym_cmd_identifier_token38] = ACTIONS(978), - [aux_sym_cmd_identifier_token39] = ACTIONS(978), - [aux_sym_cmd_identifier_token40] = ACTIONS(978), - [sym__newline] = ACTIONS(978), - [anon_sym_SEMI] = ACTIONS(978), - [anon_sym_PIPE] = ACTIONS(978), - [anon_sym_err_GT_PIPE] = ACTIONS(978), - [anon_sym_out_GT_PIPE] = ACTIONS(978), - [anon_sym_e_GT_PIPE] = ACTIONS(978), - [anon_sym_o_GT_PIPE] = ACTIONS(978), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(978), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(978), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(978), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(978), - [anon_sym_LBRACK] = ACTIONS(978), - [anon_sym_LPAREN] = ACTIONS(978), - [anon_sym_RPAREN] = ACTIONS(978), - [anon_sym_DOLLAR] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(976), - [aux_sym_ctrl_match_token1] = ACTIONS(978), - [anon_sym_RBRACE] = ACTIONS(978), - [anon_sym_DOT_DOT] = ACTIONS(976), - [anon_sym_QMARK2] = ACTIONS(978), - [anon_sym_DOT_DOT2] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ] = ACTIONS(976), - [anon_sym_DOT_DOT_LT] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), - [anon_sym_DOT_DOT_LT2] = ACTIONS(978), - [aux_sym__val_number_decimal_token1] = ACTIONS(976), - [aux_sym__val_number_decimal_token2] = ACTIONS(978), - [aux_sym__val_number_decimal_token3] = ACTIONS(978), - [aux_sym__val_number_decimal_token4] = ACTIONS(978), - [aux_sym__val_number_token1] = ACTIONS(978), - [aux_sym__val_number_token2] = ACTIONS(978), - [aux_sym__val_number_token3] = ACTIONS(978), - [anon_sym_0b] = ACTIONS(976), - [anon_sym_0o] = ACTIONS(976), - [anon_sym_0x] = ACTIONS(976), - [sym_val_date] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(978), - [sym__str_single_quotes] = ACTIONS(978), - [sym__str_back_ticks] = ACTIONS(978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(978), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(978), - [anon_sym_err_GT] = ACTIONS(976), - [anon_sym_out_GT] = ACTIONS(976), - [anon_sym_e_GT] = ACTIONS(976), - [anon_sym_o_GT] = ACTIONS(976), - [anon_sym_err_PLUSout_GT] = ACTIONS(976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(976), - [anon_sym_o_PLUSe_GT] = ACTIONS(976), - [anon_sym_e_PLUSo_GT] = ACTIONS(976), - [anon_sym_err_GT_GT] = ACTIONS(978), - [anon_sym_out_GT_GT] = ACTIONS(978), - [anon_sym_e_GT_GT] = ACTIONS(978), - [anon_sym_o_GT_GT] = ACTIONS(978), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(978), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(978), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(978), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(978), - [aux_sym_unquoted_token1] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(247), - }, - [1446] = { - [sym_comment] = STATE(1446), - [ts_builtin_sym_end] = ACTIONS(1023), - [anon_sym_EQ] = ACTIONS(1021), - [anon_sym_PLUS_EQ] = ACTIONS(1023), - [anon_sym_DASH_EQ] = ACTIONS(1023), - [anon_sym_STAR_EQ] = ACTIONS(1023), - [anon_sym_SLASH_EQ] = ACTIONS(1023), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1023), - [sym__newline] = ACTIONS(1023), - [anon_sym_SEMI] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(1023), - [anon_sym_err_GT_PIPE] = ACTIONS(1023), - [anon_sym_out_GT_PIPE] = ACTIONS(1023), - [anon_sym_e_GT_PIPE] = ACTIONS(1023), - [anon_sym_o_GT_PIPE] = ACTIONS(1023), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1023), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1023), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1023), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1023), - [aux_sym_ctrl_match_token1] = ACTIONS(1023), - [aux_sym_expr_binary_token1] = ACTIONS(1023), - [aux_sym_expr_binary_token2] = ACTIONS(1023), - [aux_sym_expr_binary_token3] = ACTIONS(1023), - [aux_sym_expr_binary_token4] = ACTIONS(1023), - [aux_sym_expr_binary_token5] = ACTIONS(1023), - [aux_sym_expr_binary_token6] = ACTIONS(1023), - [aux_sym_expr_binary_token7] = ACTIONS(1023), - [aux_sym_expr_binary_token8] = ACTIONS(1023), - [aux_sym_expr_binary_token9] = ACTIONS(1023), - [aux_sym_expr_binary_token10] = ACTIONS(1023), - [aux_sym_expr_binary_token11] = ACTIONS(1023), - [aux_sym_expr_binary_token12] = ACTIONS(1023), - [aux_sym_expr_binary_token13] = ACTIONS(1023), - [aux_sym_expr_binary_token14] = ACTIONS(1023), - [aux_sym_expr_binary_token15] = ACTIONS(1023), - [aux_sym_expr_binary_token16] = ACTIONS(1023), - [aux_sym_expr_binary_token17] = ACTIONS(1023), - [aux_sym_expr_binary_token18] = ACTIONS(1023), - [aux_sym_expr_binary_token19] = ACTIONS(1023), - [aux_sym_expr_binary_token20] = ACTIONS(1023), - [aux_sym_expr_binary_token21] = ACTIONS(1023), - [aux_sym_expr_binary_token22] = ACTIONS(1023), - [aux_sym_expr_binary_token23] = ACTIONS(1023), - [aux_sym_expr_binary_token24] = ACTIONS(1023), - [aux_sym_expr_binary_token25] = ACTIONS(1023), - [aux_sym_expr_binary_token26] = ACTIONS(1023), - [aux_sym_expr_binary_token27] = ACTIONS(1023), - [aux_sym_expr_binary_token28] = ACTIONS(1023), - [anon_sym_DOT_DOT2] = ACTIONS(1021), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), - [anon_sym_err_GT] = ACTIONS(1021), - [anon_sym_out_GT] = ACTIONS(1021), - [anon_sym_e_GT] = ACTIONS(1021), - [anon_sym_o_GT] = ACTIONS(1021), - [anon_sym_err_PLUSout_GT] = ACTIONS(1021), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), - [anon_sym_o_PLUSe_GT] = ACTIONS(1021), - [anon_sym_e_PLUSo_GT] = ACTIONS(1021), - [anon_sym_err_GT_GT] = ACTIONS(1023), - [anon_sym_out_GT_GT] = ACTIONS(1023), - [anon_sym_e_GT_GT] = ACTIONS(1023), - [anon_sym_o_GT_GT] = ACTIONS(1023), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), - [anon_sym_POUND] = ACTIONS(247), - }, - [1447] = { - [sym_comment] = STATE(1447), - [aux_sym_cmd_identifier_token41] = ACTIONS(1481), - [sym__newline] = ACTIONS(1481), - [anon_sym_SEMI] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_err_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_GT_PIPE] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), - [anon_sym_RBRACE] = ACTIONS(1483), - [anon_sym_EQ_GT] = ACTIONS(1483), - [aux_sym_expr_binary_token1] = ACTIONS(1483), - [aux_sym_expr_binary_token2] = ACTIONS(1483), - [aux_sym_expr_binary_token3] = ACTIONS(1483), - [aux_sym_expr_binary_token4] = ACTIONS(1483), - [aux_sym_expr_binary_token5] = ACTIONS(1483), - [aux_sym_expr_binary_token6] = ACTIONS(1483), - [aux_sym_expr_binary_token7] = ACTIONS(1483), - [aux_sym_expr_binary_token8] = ACTIONS(1483), - [aux_sym_expr_binary_token9] = ACTIONS(1483), - [aux_sym_expr_binary_token10] = ACTIONS(1483), - [aux_sym_expr_binary_token11] = ACTIONS(1483), - [aux_sym_expr_binary_token12] = ACTIONS(1483), - [aux_sym_expr_binary_token13] = ACTIONS(1483), - [aux_sym_expr_binary_token14] = ACTIONS(1483), - [aux_sym_expr_binary_token15] = ACTIONS(1483), - [aux_sym_expr_binary_token16] = ACTIONS(1483), - [aux_sym_expr_binary_token17] = ACTIONS(1483), - [aux_sym_expr_binary_token18] = ACTIONS(1483), - [aux_sym_expr_binary_token19] = ACTIONS(1483), - [aux_sym_expr_binary_token20] = ACTIONS(1483), - [aux_sym_expr_binary_token21] = ACTIONS(1483), - [aux_sym_expr_binary_token22] = ACTIONS(1483), - [aux_sym_expr_binary_token23] = ACTIONS(1483), - [aux_sym_expr_binary_token24] = ACTIONS(1483), - [aux_sym_expr_binary_token25] = ACTIONS(1483), - [aux_sym_expr_binary_token26] = ACTIONS(1483), - [aux_sym_expr_binary_token27] = ACTIONS(1483), - [aux_sym_expr_binary_token28] = ACTIONS(1483), - [anon_sym_DOT_DOT2] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), - [aux_sym__immediate_decimal_token1] = ACTIONS(4757), - [aux_sym__immediate_decimal_token2] = ACTIONS(4759), - [sym_filesize_unit] = ACTIONS(1483), - [sym_duration_unit] = ACTIONS(1483), - [aux_sym_record_entry_token1] = ACTIONS(1483), - [anon_sym_err_GT] = ACTIONS(1481), - [anon_sym_out_GT] = ACTIONS(1481), - [anon_sym_e_GT] = ACTIONS(1481), - [anon_sym_o_GT] = ACTIONS(1481), - [anon_sym_err_PLUSout_GT] = ACTIONS(1481), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), - [anon_sym_o_PLUSe_GT] = ACTIONS(1481), - [anon_sym_e_PLUSo_GT] = ACTIONS(1481), - [anon_sym_err_GT_GT] = ACTIONS(1483), - [anon_sym_out_GT_GT] = ACTIONS(1483), - [anon_sym_e_GT_GT] = ACTIONS(1483), - [anon_sym_o_GT_GT] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), - [anon_sym_POUND] = ACTIONS(247), - }, - [1448] = { - [sym_comment] = STATE(1448), - [anon_sym_true] = ACTIONS(972), - [anon_sym_false] = ACTIONS(972), - [anon_sym_null] = ACTIONS(972), - [aux_sym_cmd_identifier_token38] = ACTIONS(972), - [aux_sym_cmd_identifier_token39] = ACTIONS(972), - [aux_sym_cmd_identifier_token40] = ACTIONS(972), - [sym__newline] = ACTIONS(972), - [anon_sym_SEMI] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_err_GT_PIPE] = ACTIONS(972), - [anon_sym_out_GT_PIPE] = ACTIONS(972), - [anon_sym_e_GT_PIPE] = ACTIONS(972), - [anon_sym_o_GT_PIPE] = ACTIONS(972), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(972), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(972), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(972), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(972), - [anon_sym_DOLLAR] = ACTIONS(970), - [anon_sym_DASH_DASH] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(970), - [aux_sym_ctrl_match_token1] = ACTIONS(972), - [anon_sym_RBRACE] = ACTIONS(972), - [anon_sym_DOT_DOT] = ACTIONS(970), - [anon_sym_QMARK2] = ACTIONS(4761), - [anon_sym_DOT_DOT2] = ACTIONS(970), - [anon_sym_DOT] = ACTIONS(970), - [anon_sym_DOT_DOT_EQ] = ACTIONS(970), - [anon_sym_DOT_DOT_LT] = ACTIONS(970), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(972), - [anon_sym_DOT_DOT_LT2] = ACTIONS(972), - [aux_sym__val_number_decimal_token1] = ACTIONS(970), - [aux_sym__val_number_decimal_token2] = ACTIONS(972), - [aux_sym__val_number_decimal_token3] = ACTIONS(972), - [aux_sym__val_number_decimal_token4] = ACTIONS(972), - [aux_sym__val_number_token1] = ACTIONS(972), - [aux_sym__val_number_token2] = ACTIONS(972), - [aux_sym__val_number_token3] = ACTIONS(972), - [anon_sym_0b] = ACTIONS(970), - [anon_sym_0o] = ACTIONS(970), - [anon_sym_0x] = ACTIONS(970), - [sym_val_date] = ACTIONS(972), - [anon_sym_DQUOTE] = ACTIONS(972), - [sym__str_single_quotes] = ACTIONS(972), - [sym__str_back_ticks] = ACTIONS(972), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(972), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(972), - [anon_sym_err_GT] = ACTIONS(970), - [anon_sym_out_GT] = ACTIONS(970), - [anon_sym_e_GT] = ACTIONS(970), - [anon_sym_o_GT] = ACTIONS(970), - [anon_sym_err_PLUSout_GT] = ACTIONS(970), - [anon_sym_out_PLUSerr_GT] = ACTIONS(970), - [anon_sym_o_PLUSe_GT] = ACTIONS(970), - [anon_sym_e_PLUSo_GT] = ACTIONS(970), - [anon_sym_err_GT_GT] = ACTIONS(972), - [anon_sym_out_GT_GT] = ACTIONS(972), - [anon_sym_e_GT_GT] = ACTIONS(972), - [anon_sym_o_GT_GT] = ACTIONS(972), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(972), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(972), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(972), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(972), - [aux_sym_unquoted_token1] = ACTIONS(970), - [anon_sym_POUND] = ACTIONS(247), - }, - [1449] = { - [sym_cell_path] = STATE(1931), - [sym_path] = STATE(1715), - [sym_comment] = STATE(1449), - [aux_sym_cell_path_repeat1] = STATE(1575), - [anon_sym_true] = ACTIONS(1857), - [anon_sym_false] = ACTIONS(1857), - [anon_sym_null] = ACTIONS(1857), - [aux_sym_cmd_identifier_token38] = ACTIONS(1857), - [aux_sym_cmd_identifier_token39] = ACTIONS(1857), - [aux_sym_cmd_identifier_token40] = ACTIONS(1857), - [sym__newline] = ACTIONS(1857), - [anon_sym_SEMI] = ACTIONS(1857), - [anon_sym_PIPE] = ACTIONS(1857), - [anon_sym_err_GT_PIPE] = ACTIONS(1857), - [anon_sym_out_GT_PIPE] = ACTIONS(1857), - [anon_sym_e_GT_PIPE] = ACTIONS(1857), - [anon_sym_o_GT_PIPE] = ACTIONS(1857), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1857), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1857), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1857), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1857), - [anon_sym_LBRACK] = ACTIONS(1857), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_RPAREN] = ACTIONS(1857), - [anon_sym_DOLLAR] = ACTIONS(1855), - [anon_sym_DASH_DASH] = ACTIONS(1857), - [anon_sym_DASH] = ACTIONS(1855), - [aux_sym_ctrl_match_token1] = ACTIONS(1857), - [anon_sym_RBRACE] = ACTIONS(1857), - [anon_sym_DOT_DOT] = ACTIONS(1855), - [anon_sym_DOT] = ACTIONS(4763), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1857), - [anon_sym_DOT_DOT_LT] = ACTIONS(1857), - [aux_sym__val_number_decimal_token1] = ACTIONS(1855), - [aux_sym__val_number_decimal_token2] = ACTIONS(1857), - [aux_sym__val_number_decimal_token3] = ACTIONS(1857), - [aux_sym__val_number_decimal_token4] = ACTIONS(1857), - [aux_sym__val_number_token1] = ACTIONS(1857), - [aux_sym__val_number_token2] = ACTIONS(1857), - [aux_sym__val_number_token3] = ACTIONS(1857), - [anon_sym_0b] = ACTIONS(1855), - [anon_sym_0o] = ACTIONS(1855), - [anon_sym_0x] = ACTIONS(1855), - [sym_val_date] = ACTIONS(1857), - [anon_sym_DQUOTE] = ACTIONS(1857), - [sym__str_single_quotes] = ACTIONS(1857), - [sym__str_back_ticks] = ACTIONS(1857), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1857), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1857), - [anon_sym_err_GT] = ACTIONS(1855), - [anon_sym_out_GT] = ACTIONS(1855), - [anon_sym_e_GT] = ACTIONS(1855), - [anon_sym_o_GT] = ACTIONS(1855), - [anon_sym_err_PLUSout_GT] = ACTIONS(1855), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1855), - [anon_sym_o_PLUSe_GT] = ACTIONS(1855), - [anon_sym_e_PLUSo_GT] = ACTIONS(1855), - [anon_sym_err_GT_GT] = ACTIONS(1857), - [anon_sym_out_GT_GT] = ACTIONS(1857), - [anon_sym_e_GT_GT] = ACTIONS(1857), - [anon_sym_o_GT_GT] = ACTIONS(1857), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1857), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1857), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1857), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1857), - [aux_sym_unquoted_token1] = ACTIONS(1855), - [anon_sym_POUND] = ACTIONS(247), - }, - [1450] = { - [sym_comment] = STATE(1450), - [anon_sym_EQ] = ACTIONS(4765), - [anon_sym_PLUS_EQ] = ACTIONS(4767), - [anon_sym_DASH_EQ] = ACTIONS(4767), - [anon_sym_STAR_EQ] = ACTIONS(4767), - [anon_sym_SLASH_EQ] = ACTIONS(4767), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4767), - [sym__newline] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_err_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_GT_PIPE] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), - [anon_sym_RPAREN] = ACTIONS(1008), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1008), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1008), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1008), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1008), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1008), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1008), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1008), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1008), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1008), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1008), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1008), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1008), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1008), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1008), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1008), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1008), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1008), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1008), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1008), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1008), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1008), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1008), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1008), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1008), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1008), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1008), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1008), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1008), - [anon_sym_DOT_DOT2] = ACTIONS(1015), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1017), - [anon_sym_err_GT] = ACTIONS(1006), - [anon_sym_out_GT] = ACTIONS(1006), - [anon_sym_e_GT] = ACTIONS(1006), - [anon_sym_o_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT] = ACTIONS(1006), - [anon_sym_err_GT_GT] = ACTIONS(1008), - [anon_sym_out_GT_GT] = ACTIONS(1008), - [anon_sym_e_GT_GT] = ACTIONS(1008), - [anon_sym_o_GT_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), - [anon_sym_POUND] = ACTIONS(247), - }, - [1451] = { - [sym_comment] = STATE(1451), - [ts_builtin_sym_end] = ACTIONS(972), - [anon_sym_true] = ACTIONS(972), - [anon_sym_false] = ACTIONS(972), - [anon_sym_null] = ACTIONS(972), - [aux_sym_cmd_identifier_token38] = ACTIONS(972), - [aux_sym_cmd_identifier_token39] = ACTIONS(972), - [aux_sym_cmd_identifier_token40] = ACTIONS(972), - [sym__newline] = ACTIONS(972), - [anon_sym_SEMI] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_err_GT_PIPE] = ACTIONS(972), - [anon_sym_out_GT_PIPE] = ACTIONS(972), - [anon_sym_e_GT_PIPE] = ACTIONS(972), - [anon_sym_o_GT_PIPE] = ACTIONS(972), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(972), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(972), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(972), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(972), - [anon_sym_DOLLAR] = ACTIONS(970), - [anon_sym_DASH_DASH] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(970), - [aux_sym_ctrl_match_token1] = ACTIONS(972), - [anon_sym_DOT_DOT] = ACTIONS(970), - [anon_sym_QMARK2] = ACTIONS(4769), - [anon_sym_DOT_DOT2] = ACTIONS(970), - [anon_sym_DOT] = ACTIONS(970), - [anon_sym_DOT_DOT_EQ] = ACTIONS(970), - [anon_sym_DOT_DOT_LT] = ACTIONS(970), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(972), - [anon_sym_DOT_DOT_LT2] = ACTIONS(972), - [aux_sym__val_number_decimal_token1] = ACTIONS(970), - [aux_sym__val_number_decimal_token2] = ACTIONS(972), - [aux_sym__val_number_decimal_token3] = ACTIONS(972), - [aux_sym__val_number_decimal_token4] = ACTIONS(972), - [aux_sym__val_number_token1] = ACTIONS(972), - [aux_sym__val_number_token2] = ACTIONS(972), - [aux_sym__val_number_token3] = ACTIONS(972), - [anon_sym_0b] = ACTIONS(970), - [anon_sym_0o] = ACTIONS(970), - [anon_sym_0x] = ACTIONS(970), - [sym_val_date] = ACTIONS(972), - [anon_sym_DQUOTE] = ACTIONS(972), - [sym__str_single_quotes] = ACTIONS(972), - [sym__str_back_ticks] = ACTIONS(972), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(972), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(972), - [anon_sym_err_GT] = ACTIONS(970), - [anon_sym_out_GT] = ACTIONS(970), - [anon_sym_e_GT] = ACTIONS(970), - [anon_sym_o_GT] = ACTIONS(970), - [anon_sym_err_PLUSout_GT] = ACTIONS(970), - [anon_sym_out_PLUSerr_GT] = ACTIONS(970), - [anon_sym_o_PLUSe_GT] = ACTIONS(970), - [anon_sym_e_PLUSo_GT] = ACTIONS(970), - [anon_sym_err_GT_GT] = ACTIONS(972), - [anon_sym_out_GT_GT] = ACTIONS(972), - [anon_sym_e_GT_GT] = ACTIONS(972), - [anon_sym_o_GT_GT] = ACTIONS(972), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(972), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(972), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(972), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(972), - [aux_sym_unquoted_token1] = ACTIONS(970), - [anon_sym_POUND] = ACTIONS(247), - }, - [1452] = { - [sym_comment] = STATE(1452), - [ts_builtin_sym_end] = ACTIONS(982), - [anon_sym_true] = ACTIONS(982), - [anon_sym_false] = ACTIONS(982), - [anon_sym_null] = ACTIONS(982), - [aux_sym_cmd_identifier_token38] = ACTIONS(982), - [aux_sym_cmd_identifier_token39] = ACTIONS(982), - [aux_sym_cmd_identifier_token40] = ACTIONS(982), - [sym__newline] = ACTIONS(982), - [anon_sym_SEMI] = ACTIONS(982), - [anon_sym_PIPE] = ACTIONS(982), - [anon_sym_err_GT_PIPE] = ACTIONS(982), - [anon_sym_out_GT_PIPE] = ACTIONS(982), - [anon_sym_e_GT_PIPE] = ACTIONS(982), - [anon_sym_o_GT_PIPE] = ACTIONS(982), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(982), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(982), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(982), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(982), - [anon_sym_LBRACK] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(980), - [anon_sym_DASH_DASH] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(980), - [aux_sym_ctrl_match_token1] = ACTIONS(982), - [anon_sym_DOT_DOT] = ACTIONS(980), - [anon_sym_QMARK2] = ACTIONS(4771), - [anon_sym_DOT_DOT2] = ACTIONS(980), - [anon_sym_DOT] = ACTIONS(980), - [anon_sym_DOT_DOT_EQ] = ACTIONS(980), - [anon_sym_DOT_DOT_LT] = ACTIONS(980), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(982), - [anon_sym_DOT_DOT_LT2] = ACTIONS(982), - [aux_sym__val_number_decimal_token1] = ACTIONS(980), - [aux_sym__val_number_decimal_token2] = ACTIONS(982), - [aux_sym__val_number_decimal_token3] = ACTIONS(982), - [aux_sym__val_number_decimal_token4] = ACTIONS(982), - [aux_sym__val_number_token1] = ACTIONS(982), - [aux_sym__val_number_token2] = ACTIONS(982), - [aux_sym__val_number_token3] = ACTIONS(982), - [anon_sym_0b] = ACTIONS(980), - [anon_sym_0o] = ACTIONS(980), - [anon_sym_0x] = ACTIONS(980), - [sym_val_date] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(982), - [sym__str_single_quotes] = ACTIONS(982), - [sym__str_back_ticks] = ACTIONS(982), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(982), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(982), - [anon_sym_err_GT] = ACTIONS(980), - [anon_sym_out_GT] = ACTIONS(980), - [anon_sym_e_GT] = ACTIONS(980), - [anon_sym_o_GT] = ACTIONS(980), - [anon_sym_err_PLUSout_GT] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT] = ACTIONS(980), - [anon_sym_o_PLUSe_GT] = ACTIONS(980), - [anon_sym_e_PLUSo_GT] = ACTIONS(980), - [anon_sym_err_GT_GT] = ACTIONS(982), - [anon_sym_out_GT_GT] = ACTIONS(982), - [anon_sym_e_GT_GT] = ACTIONS(982), - [anon_sym_o_GT_GT] = ACTIONS(982), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(982), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(982), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(982), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(982), - [aux_sym_unquoted_token1] = ACTIONS(980), - [anon_sym_POUND] = ACTIONS(247), - }, - [1453] = { - [sym_comment] = STATE(1453), - [sym__newline] = ACTIONS(1481), - [anon_sym_SEMI] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_err_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_GT_PIPE] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), - [anon_sym_RPAREN] = ACTIONS(1483), - [anon_sym_LPAREN2] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1483), - [anon_sym_DOT_DOT2] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), - [aux_sym__immediate_decimal_token1] = ACTIONS(4773), - [aux_sym__immediate_decimal_token2] = ACTIONS(4775), - [sym_filesize_unit] = ACTIONS(1483), - [sym_duration_unit] = ACTIONS(1483), - [anon_sym_err_GT] = ACTIONS(1481), - [anon_sym_out_GT] = ACTIONS(1481), - [anon_sym_e_GT] = ACTIONS(1481), - [anon_sym_o_GT] = ACTIONS(1481), - [anon_sym_err_PLUSout_GT] = ACTIONS(1481), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), - [anon_sym_o_PLUSe_GT] = ACTIONS(1481), - [anon_sym_e_PLUSo_GT] = ACTIONS(1481), - [anon_sym_err_GT_GT] = ACTIONS(1483), - [anon_sym_out_GT_GT] = ACTIONS(1483), - [anon_sym_e_GT_GT] = ACTIONS(1483), - [anon_sym_o_GT_GT] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), - [aux_sym_unquoted_token2] = ACTIONS(1481), - [anon_sym_POUND] = ACTIONS(247), - }, - [1454] = { - [sym_comment] = STATE(1454), - [anon_sym_true] = ACTIONS(1571), - [anon_sym_false] = ACTIONS(1571), - [anon_sym_null] = ACTIONS(1571), - [aux_sym_cmd_identifier_token38] = ACTIONS(1571), - [aux_sym_cmd_identifier_token39] = ACTIONS(1571), - [aux_sym_cmd_identifier_token40] = ACTIONS(1571), - [sym__newline] = ACTIONS(1571), - [anon_sym_SEMI] = ACTIONS(1571), - [anon_sym_PIPE] = ACTIONS(1571), - [anon_sym_err_GT_PIPE] = ACTIONS(1571), - [anon_sym_out_GT_PIPE] = ACTIONS(1571), - [anon_sym_e_GT_PIPE] = ACTIONS(1571), - [anon_sym_o_GT_PIPE] = ACTIONS(1571), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1571), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1571), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1571), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1571), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_RPAREN] = ACTIONS(1571), - [anon_sym_DOLLAR] = ACTIONS(1569), - [anon_sym_DASH_DASH] = ACTIONS(1571), - [anon_sym_DASH] = ACTIONS(1569), - [aux_sym_ctrl_match_token1] = ACTIONS(1571), - [anon_sym_RBRACE] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1569), - [anon_sym_LPAREN2] = ACTIONS(1571), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1571), - [anon_sym_DOT_DOT_LT] = ACTIONS(1571), - [aux_sym__immediate_decimal_token1] = ACTIONS(4777), - [aux_sym__immediate_decimal_token2] = ACTIONS(4779), - [aux_sym__val_number_decimal_token1] = ACTIONS(1569), - [aux_sym__val_number_decimal_token2] = ACTIONS(1571), - [aux_sym__val_number_decimal_token3] = ACTIONS(1571), - [aux_sym__val_number_decimal_token4] = ACTIONS(1571), - [aux_sym__val_number_token1] = ACTIONS(1571), - [aux_sym__val_number_token2] = ACTIONS(1571), - [aux_sym__val_number_token3] = ACTIONS(1571), - [anon_sym_0b] = ACTIONS(1569), - [anon_sym_0o] = ACTIONS(1569), - [anon_sym_0x] = ACTIONS(1569), - [sym_val_date] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [sym__str_single_quotes] = ACTIONS(1571), - [sym__str_back_ticks] = ACTIONS(1571), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1571), - [anon_sym_err_GT] = ACTIONS(1569), - [anon_sym_out_GT] = ACTIONS(1569), - [anon_sym_e_GT] = ACTIONS(1569), - [anon_sym_o_GT] = ACTIONS(1569), - [anon_sym_err_PLUSout_GT] = ACTIONS(1569), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1569), - [anon_sym_o_PLUSe_GT] = ACTIONS(1569), - [anon_sym_e_PLUSo_GT] = ACTIONS(1569), - [anon_sym_err_GT_GT] = ACTIONS(1571), - [anon_sym_out_GT_GT] = ACTIONS(1571), - [anon_sym_e_GT_GT] = ACTIONS(1571), - [anon_sym_o_GT_GT] = ACTIONS(1571), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1571), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1571), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1571), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1571), - [aux_sym_unquoted_token1] = ACTIONS(1569), - [aux_sym_unquoted_token2] = ACTIONS(1569), - [anon_sym_POUND] = ACTIONS(247), - }, - [1455] = { - [sym_cell_path] = STATE(1929), - [sym_path] = STATE(1715), - [sym_comment] = STATE(1455), - [aux_sym_cell_path_repeat1] = STATE(1575), - [anon_sym_true] = ACTIONS(1749), - [anon_sym_false] = ACTIONS(1749), - [anon_sym_null] = ACTIONS(1749), - [aux_sym_cmd_identifier_token38] = ACTIONS(1749), - [aux_sym_cmd_identifier_token39] = ACTIONS(1749), - [aux_sym_cmd_identifier_token40] = ACTIONS(1749), - [sym__newline] = ACTIONS(1749), - [anon_sym_SEMI] = ACTIONS(1749), - [anon_sym_PIPE] = ACTIONS(1749), - [anon_sym_err_GT_PIPE] = ACTIONS(1749), - [anon_sym_out_GT_PIPE] = ACTIONS(1749), - [anon_sym_e_GT_PIPE] = ACTIONS(1749), - [anon_sym_o_GT_PIPE] = ACTIONS(1749), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1749), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1749), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1749), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1749), - [anon_sym_LBRACK] = ACTIONS(1749), - [anon_sym_LPAREN] = ACTIONS(1749), - [anon_sym_RPAREN] = ACTIONS(1749), - [anon_sym_DOLLAR] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1747), - [aux_sym_ctrl_match_token1] = ACTIONS(1749), - [anon_sym_RBRACE] = ACTIONS(1749), - [anon_sym_DOT_DOT] = ACTIONS(1747), - [anon_sym_DOT] = ACTIONS(4763), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1749), - [anon_sym_DOT_DOT_LT] = ACTIONS(1749), - [aux_sym__val_number_decimal_token1] = ACTIONS(1747), - [aux_sym__val_number_decimal_token2] = ACTIONS(1749), - [aux_sym__val_number_decimal_token3] = ACTIONS(1749), - [aux_sym__val_number_decimal_token4] = ACTIONS(1749), - [aux_sym__val_number_token1] = ACTIONS(1749), - [aux_sym__val_number_token2] = ACTIONS(1749), - [aux_sym__val_number_token3] = ACTIONS(1749), - [anon_sym_0b] = ACTIONS(1747), - [anon_sym_0o] = ACTIONS(1747), - [anon_sym_0x] = ACTIONS(1747), - [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_err_GT] = ACTIONS(1747), - [anon_sym_out_GT] = ACTIONS(1747), - [anon_sym_e_GT] = ACTIONS(1747), - [anon_sym_o_GT] = ACTIONS(1747), - [anon_sym_err_PLUSout_GT] = ACTIONS(1747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1747), - [anon_sym_o_PLUSe_GT] = ACTIONS(1747), - [anon_sym_e_PLUSo_GT] = ACTIONS(1747), - [anon_sym_err_GT_GT] = ACTIONS(1749), - [anon_sym_out_GT_GT] = ACTIONS(1749), - [anon_sym_e_GT_GT] = ACTIONS(1749), - [anon_sym_o_GT_GT] = ACTIONS(1749), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1749), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1749), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1749), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1749), - [aux_sym_unquoted_token1] = ACTIONS(1747), - [anon_sym_POUND] = ACTIONS(247), - }, - [1456] = { - [sym_comment] = STATE(1456), - [sym__newline] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_err_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_GT_PIPE] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), - [anon_sym_RPAREN] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_LPAREN2] = ACTIONS(1475), - [aux_sym_expr_binary_token1] = ACTIONS(1475), - [aux_sym_expr_binary_token2] = ACTIONS(1475), - [aux_sym_expr_binary_token3] = ACTIONS(1475), - [aux_sym_expr_binary_token4] = ACTIONS(1475), - [aux_sym_expr_binary_token5] = ACTIONS(1475), - [aux_sym_expr_binary_token6] = ACTIONS(1475), - [aux_sym_expr_binary_token7] = ACTIONS(1475), - [aux_sym_expr_binary_token8] = ACTIONS(1475), - [aux_sym_expr_binary_token9] = ACTIONS(1475), - [aux_sym_expr_binary_token10] = ACTIONS(1475), - [aux_sym_expr_binary_token11] = ACTIONS(1475), - [aux_sym_expr_binary_token12] = ACTIONS(1475), - [aux_sym_expr_binary_token13] = ACTIONS(1475), - [aux_sym_expr_binary_token14] = ACTIONS(1475), - [aux_sym_expr_binary_token15] = ACTIONS(1475), - [aux_sym_expr_binary_token16] = ACTIONS(1475), - [aux_sym_expr_binary_token17] = ACTIONS(1475), - [aux_sym_expr_binary_token18] = ACTIONS(1475), - [aux_sym_expr_binary_token19] = ACTIONS(1475), - [aux_sym_expr_binary_token20] = ACTIONS(1475), - [aux_sym_expr_binary_token21] = ACTIONS(1475), - [aux_sym_expr_binary_token22] = ACTIONS(1475), - [aux_sym_expr_binary_token23] = ACTIONS(1475), - [aux_sym_expr_binary_token24] = ACTIONS(1475), - [aux_sym_expr_binary_token25] = ACTIONS(1475), - [aux_sym_expr_binary_token26] = ACTIONS(1475), - [aux_sym_expr_binary_token27] = ACTIONS(1475), - [aux_sym_expr_binary_token28] = ACTIONS(1475), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [aux_sym__immediate_decimal_token2] = ACTIONS(4712), - [sym_filesize_unit] = ACTIONS(1475), - [sym_duration_unit] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1473), - [anon_sym_out_GT] = ACTIONS(1473), - [anon_sym_e_GT] = ACTIONS(1473), - [anon_sym_o_GT] = ACTIONS(1473), - [anon_sym_err_PLUSout_GT] = ACTIONS(1473), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), - [anon_sym_o_PLUSe_GT] = ACTIONS(1473), - [anon_sym_e_PLUSo_GT] = ACTIONS(1473), - [anon_sym_err_GT_GT] = ACTIONS(1475), - [anon_sym_out_GT_GT] = ACTIONS(1475), - [anon_sym_e_GT_GT] = ACTIONS(1475), - [anon_sym_o_GT_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), - [aux_sym_unquoted_token2] = ACTIONS(1473), - [anon_sym_POUND] = ACTIONS(247), - }, - [1457] = { - [sym_comment] = STATE(1457), - [ts_builtin_sym_end] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1571), - [anon_sym_false] = ACTIONS(1571), - [anon_sym_null] = ACTIONS(1571), - [aux_sym_cmd_identifier_token38] = ACTIONS(1571), - [aux_sym_cmd_identifier_token39] = ACTIONS(1571), - [aux_sym_cmd_identifier_token40] = ACTIONS(1571), - [sym__newline] = ACTIONS(1571), - [anon_sym_SEMI] = ACTIONS(1571), - [anon_sym_PIPE] = ACTIONS(1571), - [anon_sym_err_GT_PIPE] = ACTIONS(1571), - [anon_sym_out_GT_PIPE] = ACTIONS(1571), - [anon_sym_e_GT_PIPE] = ACTIONS(1571), - [anon_sym_o_GT_PIPE] = ACTIONS(1571), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1571), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1571), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1571), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1571), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_DOLLAR] = ACTIONS(1569), - [anon_sym_DASH_DASH] = ACTIONS(1571), - [anon_sym_DASH] = ACTIONS(1569), - [aux_sym_ctrl_match_token1] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1569), - [anon_sym_LPAREN2] = ACTIONS(1571), - [anon_sym_DOT_DOT2] = ACTIONS(1569), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1569), - [anon_sym_DOT_DOT_LT] = ACTIONS(1569), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1571), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1571), - [aux_sym__val_number_decimal_token1] = ACTIONS(1569), - [aux_sym__val_number_decimal_token2] = ACTIONS(1571), - [aux_sym__val_number_decimal_token3] = ACTIONS(1571), - [aux_sym__val_number_decimal_token4] = ACTIONS(1571), - [aux_sym__val_number_token1] = ACTIONS(1571), - [aux_sym__val_number_token2] = ACTIONS(1571), - [aux_sym__val_number_token3] = ACTIONS(1571), - [anon_sym_0b] = ACTIONS(1569), - [anon_sym_0o] = ACTIONS(1569), - [anon_sym_0x] = ACTIONS(1569), - [sym_val_date] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [sym__str_single_quotes] = ACTIONS(1571), - [sym__str_back_ticks] = ACTIONS(1571), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1571), - [anon_sym_err_GT] = ACTIONS(1569), - [anon_sym_out_GT] = ACTIONS(1569), - [anon_sym_e_GT] = ACTIONS(1569), - [anon_sym_o_GT] = ACTIONS(1569), - [anon_sym_err_PLUSout_GT] = ACTIONS(1569), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1569), - [anon_sym_o_PLUSe_GT] = ACTIONS(1569), - [anon_sym_e_PLUSo_GT] = ACTIONS(1569), - [anon_sym_err_GT_GT] = ACTIONS(1571), - [anon_sym_out_GT_GT] = ACTIONS(1571), - [anon_sym_e_GT_GT] = ACTIONS(1571), - [anon_sym_o_GT_GT] = ACTIONS(1571), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1571), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1571), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1571), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1571), - [aux_sym_unquoted_token1] = ACTIONS(1569), - [aux_sym_unquoted_token2] = ACTIONS(1569), - [anon_sym_POUND] = ACTIONS(247), - }, - [1458] = { - [sym_cell_path] = STATE(1937), - [sym_path] = STATE(1715), - [sym_comment] = STATE(1458), - [aux_sym_cell_path_repeat1] = STATE(1575), - [anon_sym_true] = ACTIONS(1745), - [anon_sym_false] = ACTIONS(1745), - [anon_sym_null] = ACTIONS(1745), - [aux_sym_cmd_identifier_token38] = ACTIONS(1745), - [aux_sym_cmd_identifier_token39] = ACTIONS(1745), - [aux_sym_cmd_identifier_token40] = ACTIONS(1745), - [sym__newline] = ACTIONS(1745), - [anon_sym_SEMI] = ACTIONS(1745), - [anon_sym_PIPE] = ACTIONS(1745), - [anon_sym_err_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_GT_PIPE] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1745), - [anon_sym_LBRACK] = ACTIONS(1745), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_RPAREN] = ACTIONS(1745), - [anon_sym_DOLLAR] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1741), - [aux_sym_ctrl_match_token1] = ACTIONS(1745), - [anon_sym_RBRACE] = ACTIONS(1745), - [anon_sym_DOT_DOT] = ACTIONS(1741), - [anon_sym_DOT] = ACTIONS(4763), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1745), - [anon_sym_DOT_DOT_LT] = ACTIONS(1745), - [aux_sym__val_number_decimal_token1] = ACTIONS(1741), - [aux_sym__val_number_decimal_token2] = ACTIONS(1745), - [aux_sym__val_number_decimal_token3] = ACTIONS(1745), - [aux_sym__val_number_decimal_token4] = ACTIONS(1745), - [aux_sym__val_number_token1] = ACTIONS(1745), - [aux_sym__val_number_token2] = ACTIONS(1745), - [aux_sym__val_number_token3] = ACTIONS(1745), - [anon_sym_0b] = ACTIONS(1741), - [anon_sym_0o] = ACTIONS(1741), - [anon_sym_0x] = ACTIONS(1741), - [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_err_GT] = ACTIONS(1741), - [anon_sym_out_GT] = ACTIONS(1741), - [anon_sym_e_GT] = ACTIONS(1741), - [anon_sym_o_GT] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT] = ACTIONS(1741), - [anon_sym_err_GT_GT] = ACTIONS(1745), - [anon_sym_out_GT_GT] = ACTIONS(1745), - [anon_sym_e_GT_GT] = ACTIONS(1745), - [anon_sym_o_GT_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1745), - [aux_sym_unquoted_token1] = ACTIONS(1741), - [anon_sym_POUND] = ACTIONS(247), - }, - [1459] = { - [sym_comment] = STATE(1459), - [sym__newline] = ACTIONS(1521), - [anon_sym_SEMI] = ACTIONS(1521), - [anon_sym_PIPE] = ACTIONS(1521), - [anon_sym_err_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_GT_PIPE] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), - [anon_sym_RPAREN] = ACTIONS(1521), - [anon_sym_RBRACE] = ACTIONS(1521), - [anon_sym_LPAREN2] = ACTIONS(1521), - [aux_sym_expr_binary_token1] = ACTIONS(1521), - [aux_sym_expr_binary_token2] = ACTIONS(1521), - [aux_sym_expr_binary_token3] = ACTIONS(1521), - [aux_sym_expr_binary_token4] = ACTIONS(1521), - [aux_sym_expr_binary_token5] = ACTIONS(1521), - [aux_sym_expr_binary_token6] = ACTIONS(1521), - [aux_sym_expr_binary_token7] = ACTIONS(1521), - [aux_sym_expr_binary_token8] = ACTIONS(1521), - [aux_sym_expr_binary_token9] = ACTIONS(1521), - [aux_sym_expr_binary_token10] = ACTIONS(1521), - [aux_sym_expr_binary_token11] = ACTIONS(1521), - [aux_sym_expr_binary_token12] = ACTIONS(1521), - [aux_sym_expr_binary_token13] = ACTIONS(1521), - [aux_sym_expr_binary_token14] = ACTIONS(1521), - [aux_sym_expr_binary_token15] = ACTIONS(1521), - [aux_sym_expr_binary_token16] = ACTIONS(1521), - [aux_sym_expr_binary_token17] = ACTIONS(1521), - [aux_sym_expr_binary_token18] = ACTIONS(1521), - [aux_sym_expr_binary_token19] = ACTIONS(1521), - [aux_sym_expr_binary_token20] = ACTIONS(1521), - [aux_sym_expr_binary_token21] = ACTIONS(1521), - [aux_sym_expr_binary_token22] = ACTIONS(1521), - [aux_sym_expr_binary_token23] = ACTIONS(1521), - [aux_sym_expr_binary_token24] = ACTIONS(1521), - [aux_sym_expr_binary_token25] = ACTIONS(1521), - [aux_sym_expr_binary_token26] = ACTIONS(1521), - [aux_sym_expr_binary_token27] = ACTIONS(1521), - [aux_sym_expr_binary_token28] = ACTIONS(1521), - [anon_sym_DOT_DOT2] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), - [aux_sym__immediate_decimal_token2] = ACTIONS(4781), - [sym_filesize_unit] = ACTIONS(1521), - [sym_duration_unit] = ACTIONS(1521), - [anon_sym_err_GT] = ACTIONS(1519), - [anon_sym_out_GT] = ACTIONS(1519), - [anon_sym_e_GT] = ACTIONS(1519), - [anon_sym_o_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT] = ACTIONS(1519), - [anon_sym_err_GT_GT] = ACTIONS(1521), - [anon_sym_out_GT_GT] = ACTIONS(1521), - [anon_sym_e_GT_GT] = ACTIONS(1521), - [anon_sym_o_GT_GT] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), - [aux_sym_unquoted_token2] = ACTIONS(1519), - [anon_sym_POUND] = ACTIONS(247), - }, - [1460] = { - [sym_cell_path] = STATE(1938), - [sym_path] = STATE(1715), - [sym_comment] = STATE(1460), - [aux_sym_cell_path_repeat1] = STATE(1575), - [anon_sym_true] = ACTIONS(1901), - [anon_sym_false] = ACTIONS(1901), - [anon_sym_null] = ACTIONS(1901), - [aux_sym_cmd_identifier_token38] = ACTIONS(1901), - [aux_sym_cmd_identifier_token39] = ACTIONS(1901), - [aux_sym_cmd_identifier_token40] = ACTIONS(1901), - [sym__newline] = ACTIONS(1901), - [anon_sym_SEMI] = ACTIONS(1901), - [anon_sym_PIPE] = ACTIONS(1901), - [anon_sym_err_GT_PIPE] = ACTIONS(1901), - [anon_sym_out_GT_PIPE] = ACTIONS(1901), - [anon_sym_e_GT_PIPE] = ACTIONS(1901), - [anon_sym_o_GT_PIPE] = ACTIONS(1901), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1901), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1901), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1901), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1901), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_RPAREN] = ACTIONS(1901), - [anon_sym_DOLLAR] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1899), - [aux_sym_ctrl_match_token1] = ACTIONS(1901), - [anon_sym_RBRACE] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1899), - [anon_sym_DOT] = ACTIONS(4763), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1901), - [anon_sym_DOT_DOT_LT] = ACTIONS(1901), - [aux_sym__val_number_decimal_token1] = ACTIONS(1899), - [aux_sym__val_number_decimal_token2] = ACTIONS(1901), - [aux_sym__val_number_decimal_token3] = ACTIONS(1901), - [aux_sym__val_number_decimal_token4] = ACTIONS(1901), - [aux_sym__val_number_token1] = ACTIONS(1901), - [aux_sym__val_number_token2] = ACTIONS(1901), - [aux_sym__val_number_token3] = ACTIONS(1901), - [anon_sym_0b] = ACTIONS(1899), - [anon_sym_0o] = ACTIONS(1899), - [anon_sym_0x] = ACTIONS(1899), - [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_err_GT] = ACTIONS(1899), - [anon_sym_out_GT] = ACTIONS(1899), - [anon_sym_e_GT] = ACTIONS(1899), - [anon_sym_o_GT] = ACTIONS(1899), - [anon_sym_err_PLUSout_GT] = ACTIONS(1899), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1899), - [anon_sym_o_PLUSe_GT] = ACTIONS(1899), - [anon_sym_e_PLUSo_GT] = ACTIONS(1899), - [anon_sym_err_GT_GT] = ACTIONS(1901), - [anon_sym_out_GT_GT] = ACTIONS(1901), - [anon_sym_e_GT_GT] = ACTIONS(1901), - [anon_sym_o_GT_GT] = ACTIONS(1901), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1901), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1901), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1901), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1901), - [aux_sym_unquoted_token1] = ACTIONS(1899), - [anon_sym_POUND] = ACTIONS(247), - }, - [1461] = { - [sym_comment] = STATE(1461), - [ts_builtin_sym_end] = ACTIONS(1723), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1723), - [aux_sym_cmd_identifier_token38] = ACTIONS(1723), - [aux_sym_cmd_identifier_token39] = ACTIONS(1723), - [aux_sym_cmd_identifier_token40] = ACTIONS(1723), - [sym__newline] = ACTIONS(1723), - [anon_sym_SEMI] = ACTIONS(1723), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_err_GT_PIPE] = ACTIONS(1723), - [anon_sym_out_GT_PIPE] = ACTIONS(1723), - [anon_sym_e_GT_PIPE] = ACTIONS(1723), - [anon_sym_o_GT_PIPE] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), - [anon_sym_LBRACK] = ACTIONS(1723), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1721), - [anon_sym_DASH_DASH] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1721), - [aux_sym_ctrl_match_token1] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1721), - [anon_sym_LPAREN2] = ACTIONS(1723), - [anon_sym_DOT_DOT2] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token3] = ACTIONS(1723), - [aux_sym__val_number_decimal_token4] = ACTIONS(1723), - [aux_sym__val_number_token1] = ACTIONS(1723), - [aux_sym__val_number_token2] = ACTIONS(1723), - [aux_sym__val_number_token3] = ACTIONS(1723), - [anon_sym_0b] = ACTIONS(1721), - [anon_sym_0o] = ACTIONS(1721), - [anon_sym_0x] = ACTIONS(1721), - [sym_val_date] = ACTIONS(1723), - [anon_sym_DQUOTE] = ACTIONS(1723), - [sym__str_single_quotes] = ACTIONS(1723), - [sym__str_back_ticks] = ACTIONS(1723), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1723), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1723), - [anon_sym_err_GT] = ACTIONS(1721), - [anon_sym_out_GT] = ACTIONS(1721), - [anon_sym_e_GT] = ACTIONS(1721), - [anon_sym_o_GT] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT] = ACTIONS(1721), - [anon_sym_err_GT_GT] = ACTIONS(1723), - [anon_sym_out_GT_GT] = ACTIONS(1723), - [anon_sym_e_GT_GT] = ACTIONS(1723), - [anon_sym_o_GT_GT] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), - [aux_sym_unquoted_token1] = ACTIONS(1721), - [aux_sym_unquoted_token2] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(247), - }, - [1462] = { - [sym_comment] = STATE(1462), - [aux_sym_cmd_identifier_token41] = ACTIONS(1473), - [sym__newline] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_err_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_GT_PIPE] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), - [anon_sym_RPAREN] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [aux_sym_expr_binary_token1] = ACTIONS(1475), - [aux_sym_expr_binary_token2] = ACTIONS(1475), - [aux_sym_expr_binary_token3] = ACTIONS(1475), - [aux_sym_expr_binary_token4] = ACTIONS(1475), - [aux_sym_expr_binary_token5] = ACTIONS(1475), - [aux_sym_expr_binary_token6] = ACTIONS(1475), - [aux_sym_expr_binary_token7] = ACTIONS(1475), - [aux_sym_expr_binary_token8] = ACTIONS(1475), - [aux_sym_expr_binary_token9] = ACTIONS(1475), - [aux_sym_expr_binary_token10] = ACTIONS(1475), - [aux_sym_expr_binary_token11] = ACTIONS(1475), - [aux_sym_expr_binary_token12] = ACTIONS(1475), - [aux_sym_expr_binary_token13] = ACTIONS(1475), - [aux_sym_expr_binary_token14] = ACTIONS(1475), - [aux_sym_expr_binary_token15] = ACTIONS(1475), - [aux_sym_expr_binary_token16] = ACTIONS(1475), - [aux_sym_expr_binary_token17] = ACTIONS(1475), - [aux_sym_expr_binary_token18] = ACTIONS(1475), - [aux_sym_expr_binary_token19] = ACTIONS(1475), - [aux_sym_expr_binary_token20] = ACTIONS(1475), - [aux_sym_expr_binary_token21] = ACTIONS(1475), - [aux_sym_expr_binary_token22] = ACTIONS(1475), - [aux_sym_expr_binary_token23] = ACTIONS(1475), - [aux_sym_expr_binary_token24] = ACTIONS(1475), - [aux_sym_expr_binary_token25] = ACTIONS(1475), - [aux_sym_expr_binary_token26] = ACTIONS(1475), - [aux_sym_expr_binary_token27] = ACTIONS(1475), - [aux_sym_expr_binary_token28] = ACTIONS(1475), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT] = ACTIONS(4783), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [aux_sym__immediate_decimal_token2] = ACTIONS(4785), - [sym_filesize_unit] = ACTIONS(1475), - [sym_duration_unit] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1473), - [anon_sym_out_GT] = ACTIONS(1473), - [anon_sym_e_GT] = ACTIONS(1473), - [anon_sym_o_GT] = ACTIONS(1473), - [anon_sym_err_PLUSout_GT] = ACTIONS(1473), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), - [anon_sym_o_PLUSe_GT] = ACTIONS(1473), - [anon_sym_e_PLUSo_GT] = ACTIONS(1473), - [anon_sym_err_GT_GT] = ACTIONS(1475), - [anon_sym_out_GT_GT] = ACTIONS(1475), - [anon_sym_e_GT_GT] = ACTIONS(1475), - [anon_sym_o_GT_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), - [anon_sym_POUND] = ACTIONS(247), - }, - [1463] = { - [sym_cell_path] = STATE(1930), - [sym_path] = STATE(1715), - [sym_comment] = STATE(1463), - [aux_sym_cell_path_repeat1] = STATE(1575), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_null] = ACTIONS(1826), - [aux_sym_cmd_identifier_token38] = ACTIONS(1826), - [aux_sym_cmd_identifier_token39] = ACTIONS(1826), - [aux_sym_cmd_identifier_token40] = ACTIONS(1826), - [sym__newline] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1826), - [anon_sym_PIPE] = ACTIONS(1826), - [anon_sym_err_GT_PIPE] = ACTIONS(1826), - [anon_sym_out_GT_PIPE] = ACTIONS(1826), - [anon_sym_e_GT_PIPE] = ACTIONS(1826), - [anon_sym_o_GT_PIPE] = ACTIONS(1826), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1826), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1826), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1826), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1826), - [anon_sym_LBRACK] = ACTIONS(1826), - [anon_sym_LPAREN] = ACTIONS(1826), - [anon_sym_RPAREN] = ACTIONS(1826), - [anon_sym_DOLLAR] = ACTIONS(1824), - [anon_sym_DASH_DASH] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1824), - [aux_sym_ctrl_match_token1] = ACTIONS(1826), - [anon_sym_RBRACE] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1824), - [anon_sym_DOT] = ACTIONS(4763), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1826), - [anon_sym_DOT_DOT_LT] = ACTIONS(1826), - [aux_sym__val_number_decimal_token1] = ACTIONS(1824), - [aux_sym__val_number_decimal_token2] = ACTIONS(1826), - [aux_sym__val_number_decimal_token3] = ACTIONS(1826), - [aux_sym__val_number_decimal_token4] = ACTIONS(1826), - [aux_sym__val_number_token1] = ACTIONS(1826), - [aux_sym__val_number_token2] = ACTIONS(1826), - [aux_sym__val_number_token3] = ACTIONS(1826), - [anon_sym_0b] = ACTIONS(1824), - [anon_sym_0o] = ACTIONS(1824), - [anon_sym_0x] = ACTIONS(1824), - [sym_val_date] = ACTIONS(1826), - [anon_sym_DQUOTE] = ACTIONS(1826), - [sym__str_single_quotes] = ACTIONS(1826), - [sym__str_back_ticks] = ACTIONS(1826), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1826), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1826), - [anon_sym_err_GT] = ACTIONS(1824), - [anon_sym_out_GT] = ACTIONS(1824), - [anon_sym_e_GT] = ACTIONS(1824), - [anon_sym_o_GT] = ACTIONS(1824), - [anon_sym_err_PLUSout_GT] = ACTIONS(1824), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1824), - [anon_sym_o_PLUSe_GT] = ACTIONS(1824), - [anon_sym_e_PLUSo_GT] = ACTIONS(1824), - [anon_sym_err_GT_GT] = ACTIONS(1826), - [anon_sym_out_GT_GT] = ACTIONS(1826), - [anon_sym_e_GT_GT] = ACTIONS(1826), - [anon_sym_o_GT_GT] = ACTIONS(1826), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1826), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1826), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1826), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1826), - [aux_sym_unquoted_token1] = ACTIONS(1824), - [anon_sym_POUND] = ACTIONS(247), - }, - [1464] = { - [sym_cell_path] = STATE(1939), - [sym_path] = STATE(1715), - [sym_comment] = STATE(1464), - [aux_sym_cell_path_repeat1] = STATE(1575), - [anon_sym_true] = ACTIONS(1833), - [anon_sym_false] = ACTIONS(1833), - [anon_sym_null] = ACTIONS(1833), - [aux_sym_cmd_identifier_token38] = ACTIONS(1833), - [aux_sym_cmd_identifier_token39] = ACTIONS(1833), - [aux_sym_cmd_identifier_token40] = ACTIONS(1833), - [sym__newline] = ACTIONS(1833), - [anon_sym_SEMI] = ACTIONS(1833), - [anon_sym_PIPE] = ACTIONS(1833), - [anon_sym_err_GT_PIPE] = ACTIONS(1833), - [anon_sym_out_GT_PIPE] = ACTIONS(1833), - [anon_sym_e_GT_PIPE] = ACTIONS(1833), - [anon_sym_o_GT_PIPE] = ACTIONS(1833), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1833), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1833), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1833), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1833), - [anon_sym_LBRACK] = ACTIONS(1833), - [anon_sym_LPAREN] = ACTIONS(1833), - [anon_sym_RPAREN] = ACTIONS(1833), - [anon_sym_DOLLAR] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1831), - [aux_sym_ctrl_match_token1] = ACTIONS(1833), - [anon_sym_RBRACE] = ACTIONS(1833), - [anon_sym_DOT_DOT] = ACTIONS(1831), - [anon_sym_DOT] = ACTIONS(4763), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1833), - [anon_sym_DOT_DOT_LT] = ACTIONS(1833), - [aux_sym__val_number_decimal_token1] = ACTIONS(1831), - [aux_sym__val_number_decimal_token2] = ACTIONS(1833), - [aux_sym__val_number_decimal_token3] = ACTIONS(1833), - [aux_sym__val_number_decimal_token4] = ACTIONS(1833), - [aux_sym__val_number_token1] = ACTIONS(1833), - [aux_sym__val_number_token2] = ACTIONS(1833), - [aux_sym__val_number_token3] = ACTIONS(1833), - [anon_sym_0b] = ACTIONS(1831), - [anon_sym_0o] = ACTIONS(1831), - [anon_sym_0x] = ACTIONS(1831), - [sym_val_date] = ACTIONS(1833), - [anon_sym_DQUOTE] = ACTIONS(1833), - [sym__str_single_quotes] = ACTIONS(1833), - [sym__str_back_ticks] = ACTIONS(1833), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1833), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1833), - [anon_sym_err_GT] = ACTIONS(1831), - [anon_sym_out_GT] = ACTIONS(1831), - [anon_sym_e_GT] = ACTIONS(1831), - [anon_sym_o_GT] = ACTIONS(1831), - [anon_sym_err_PLUSout_GT] = ACTIONS(1831), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1831), - [anon_sym_o_PLUSe_GT] = ACTIONS(1831), - [anon_sym_e_PLUSo_GT] = ACTIONS(1831), - [anon_sym_err_GT_GT] = ACTIONS(1833), - [anon_sym_out_GT_GT] = ACTIONS(1833), - [anon_sym_e_GT_GT] = ACTIONS(1833), - [anon_sym_o_GT_GT] = ACTIONS(1833), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1833), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1833), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1833), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1833), - [aux_sym_unquoted_token1] = ACTIONS(1831), - [anon_sym_POUND] = ACTIONS(247), - }, - [1465] = { - [sym_comment] = STATE(1465), - [anon_sym_true] = ACTIONS(996), - [anon_sym_false] = ACTIONS(996), - [anon_sym_null] = ACTIONS(996), - [aux_sym_cmd_identifier_token38] = ACTIONS(996), - [aux_sym_cmd_identifier_token39] = ACTIONS(996), - [aux_sym_cmd_identifier_token40] = ACTIONS(996), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_LBRACK] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_RPAREN] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(994), - [anon_sym_DASH_DASH] = ACTIONS(996), - [anon_sym_DASH] = ACTIONS(994), - [aux_sym_ctrl_match_token1] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_DOT_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT2] = ACTIONS(994), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_EQ] = ACTIONS(994), - [anon_sym_DOT_DOT_LT] = ACTIONS(994), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), - [anon_sym_DOT_DOT_LT2] = ACTIONS(996), - [aux_sym__val_number_decimal_token1] = ACTIONS(994), - [aux_sym__val_number_decimal_token2] = ACTIONS(996), - [aux_sym__val_number_decimal_token3] = ACTIONS(996), - [aux_sym__val_number_decimal_token4] = ACTIONS(996), - [aux_sym__val_number_token1] = ACTIONS(996), - [aux_sym__val_number_token2] = ACTIONS(996), - [aux_sym__val_number_token3] = ACTIONS(996), - [anon_sym_0b] = ACTIONS(994), - [anon_sym_0o] = ACTIONS(994), - [anon_sym_0x] = ACTIONS(994), - [sym_val_date] = ACTIONS(996), - [anon_sym_DQUOTE] = ACTIONS(996), - [sym__str_single_quotes] = ACTIONS(996), - [sym__str_back_ticks] = ACTIONS(996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(994), - [anon_sym_out_GT] = ACTIONS(994), - [anon_sym_e_GT] = ACTIONS(994), - [anon_sym_o_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT] = ACTIONS(994), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), - [aux_sym_unquoted_token1] = ACTIONS(994), - [anon_sym_POUND] = ACTIONS(247), - }, - [1466] = { - [sym_cell_path] = STATE(1896), - [sym_path] = STATE(1715), - [sym_comment] = STATE(1466), - [aux_sym_cell_path_repeat1] = STATE(1575), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_null] = ACTIONS(1764), - [aux_sym_cmd_identifier_token38] = ACTIONS(1764), - [aux_sym_cmd_identifier_token39] = ACTIONS(1764), - [aux_sym_cmd_identifier_token40] = ACTIONS(1764), - [sym__newline] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1764), - [anon_sym_PIPE] = ACTIONS(1764), - [anon_sym_err_GT_PIPE] = ACTIONS(1764), - [anon_sym_out_GT_PIPE] = ACTIONS(1764), - [anon_sym_e_GT_PIPE] = ACTIONS(1764), - [anon_sym_o_GT_PIPE] = ACTIONS(1764), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1764), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1764), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1764), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1764), - [anon_sym_LBRACK] = ACTIONS(1764), - [anon_sym_LPAREN] = ACTIONS(1764), - [anon_sym_RPAREN] = ACTIONS(1764), - [anon_sym_DOLLAR] = ACTIONS(1762), - [anon_sym_DASH_DASH] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1762), - [aux_sym_ctrl_match_token1] = ACTIONS(1764), - [anon_sym_RBRACE] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1762), - [anon_sym_DOT] = ACTIONS(4763), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1764), - [anon_sym_DOT_DOT_LT] = ACTIONS(1764), - [aux_sym__val_number_decimal_token1] = ACTIONS(1762), - [aux_sym__val_number_decimal_token2] = ACTIONS(1764), - [aux_sym__val_number_decimal_token3] = ACTIONS(1764), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), - [aux_sym__val_number_token1] = ACTIONS(1764), - [aux_sym__val_number_token2] = ACTIONS(1764), - [aux_sym__val_number_token3] = ACTIONS(1764), - [anon_sym_0b] = ACTIONS(1762), - [anon_sym_0o] = ACTIONS(1762), - [anon_sym_0x] = ACTIONS(1762), - [sym_val_date] = ACTIONS(1764), - [anon_sym_DQUOTE] = ACTIONS(1764), - [sym__str_single_quotes] = ACTIONS(1764), - [sym__str_back_ticks] = ACTIONS(1764), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1764), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1764), - [anon_sym_err_GT] = ACTIONS(1762), - [anon_sym_out_GT] = ACTIONS(1762), - [anon_sym_e_GT] = ACTIONS(1762), - [anon_sym_o_GT] = ACTIONS(1762), - [anon_sym_err_PLUSout_GT] = ACTIONS(1762), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1762), - [anon_sym_o_PLUSe_GT] = ACTIONS(1762), - [anon_sym_e_PLUSo_GT] = ACTIONS(1762), - [anon_sym_err_GT_GT] = ACTIONS(1764), - [anon_sym_out_GT_GT] = ACTIONS(1764), - [anon_sym_e_GT_GT] = ACTIONS(1764), - [anon_sym_o_GT_GT] = ACTIONS(1764), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1764), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1764), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1764), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1764), - [aux_sym_unquoted_token1] = ACTIONS(1762), - [anon_sym_POUND] = ACTIONS(247), - }, - [1467] = { - [sym_cell_path] = STATE(1925), - [sym_path] = STATE(1715), - [sym_comment] = STATE(1467), - [aux_sym_cell_path_repeat1] = STATE(1575), - [anon_sym_true] = ACTIONS(1881), - [anon_sym_false] = ACTIONS(1881), - [anon_sym_null] = ACTIONS(1881), - [aux_sym_cmd_identifier_token38] = ACTIONS(1881), - [aux_sym_cmd_identifier_token39] = ACTIONS(1881), - [aux_sym_cmd_identifier_token40] = ACTIONS(1881), - [sym__newline] = ACTIONS(1881), - [anon_sym_SEMI] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_err_GT_PIPE] = ACTIONS(1881), - [anon_sym_out_GT_PIPE] = ACTIONS(1881), - [anon_sym_e_GT_PIPE] = ACTIONS(1881), - [anon_sym_o_GT_PIPE] = ACTIONS(1881), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1881), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1881), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1881), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_RPAREN] = ACTIONS(1881), - [anon_sym_DOLLAR] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1879), - [aux_sym_ctrl_match_token1] = ACTIONS(1881), - [anon_sym_RBRACE] = ACTIONS(1881), - [anon_sym_DOT_DOT] = ACTIONS(1879), - [anon_sym_DOT] = ACTIONS(4763), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1881), - [anon_sym_DOT_DOT_LT] = ACTIONS(1881), - [aux_sym__val_number_decimal_token1] = ACTIONS(1879), - [aux_sym__val_number_decimal_token2] = ACTIONS(1881), - [aux_sym__val_number_decimal_token3] = ACTIONS(1881), - [aux_sym__val_number_decimal_token4] = ACTIONS(1881), - [aux_sym__val_number_token1] = ACTIONS(1881), - [aux_sym__val_number_token2] = ACTIONS(1881), - [aux_sym__val_number_token3] = ACTIONS(1881), - [anon_sym_0b] = ACTIONS(1879), - [anon_sym_0o] = ACTIONS(1879), - [anon_sym_0x] = ACTIONS(1879), - [sym_val_date] = ACTIONS(1881), - [anon_sym_DQUOTE] = ACTIONS(1881), - [sym__str_single_quotes] = ACTIONS(1881), - [sym__str_back_ticks] = ACTIONS(1881), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1881), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1881), - [anon_sym_err_GT] = ACTIONS(1879), - [anon_sym_out_GT] = ACTIONS(1879), - [anon_sym_e_GT] = ACTIONS(1879), - [anon_sym_o_GT] = ACTIONS(1879), - [anon_sym_err_PLUSout_GT] = ACTIONS(1879), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1879), - [anon_sym_o_PLUSe_GT] = ACTIONS(1879), - [anon_sym_e_PLUSo_GT] = ACTIONS(1879), - [anon_sym_err_GT_GT] = ACTIONS(1881), - [anon_sym_out_GT_GT] = ACTIONS(1881), - [anon_sym_e_GT_GT] = ACTIONS(1881), - [anon_sym_o_GT_GT] = ACTIONS(1881), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1881), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1881), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1881), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1881), - [aux_sym_unquoted_token1] = ACTIONS(1879), - [anon_sym_POUND] = ACTIONS(247), - }, - [1468] = { - [sym_comment] = STATE(1468), - [aux_sym_cmd_identifier_token41] = ACTIONS(1481), - [sym__newline] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_err_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_GT_PIPE] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), - [anon_sym_RPAREN] = ACTIONS(1483), - [anon_sym_RBRACE] = ACTIONS(1483), - [aux_sym_expr_binary_token1] = ACTIONS(1483), - [aux_sym_expr_binary_token2] = ACTIONS(1483), - [aux_sym_expr_binary_token3] = ACTIONS(1483), - [aux_sym_expr_binary_token4] = ACTIONS(1483), - [aux_sym_expr_binary_token5] = ACTIONS(1483), - [aux_sym_expr_binary_token6] = ACTIONS(1483), - [aux_sym_expr_binary_token7] = ACTIONS(1483), - [aux_sym_expr_binary_token8] = ACTIONS(1483), - [aux_sym_expr_binary_token9] = ACTIONS(1483), - [aux_sym_expr_binary_token10] = ACTIONS(1483), - [aux_sym_expr_binary_token11] = ACTIONS(1483), - [aux_sym_expr_binary_token12] = ACTIONS(1483), - [aux_sym_expr_binary_token13] = ACTIONS(1483), - [aux_sym_expr_binary_token14] = ACTIONS(1483), - [aux_sym_expr_binary_token15] = ACTIONS(1483), - [aux_sym_expr_binary_token16] = ACTIONS(1483), - [aux_sym_expr_binary_token17] = ACTIONS(1483), - [aux_sym_expr_binary_token18] = ACTIONS(1483), - [aux_sym_expr_binary_token19] = ACTIONS(1483), - [aux_sym_expr_binary_token20] = ACTIONS(1483), - [aux_sym_expr_binary_token21] = ACTIONS(1483), - [aux_sym_expr_binary_token22] = ACTIONS(1483), - [aux_sym_expr_binary_token23] = ACTIONS(1483), - [aux_sym_expr_binary_token24] = ACTIONS(1483), - [aux_sym_expr_binary_token25] = ACTIONS(1483), - [aux_sym_expr_binary_token26] = ACTIONS(1483), - [aux_sym_expr_binary_token27] = ACTIONS(1483), - [aux_sym_expr_binary_token28] = ACTIONS(1483), - [anon_sym_DOT_DOT2] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), - [aux_sym__immediate_decimal_token1] = ACTIONS(4787), - [aux_sym__immediate_decimal_token2] = ACTIONS(4789), - [sym_filesize_unit] = ACTIONS(1483), - [sym_duration_unit] = ACTIONS(1483), - [anon_sym_err_GT] = ACTIONS(1481), - [anon_sym_out_GT] = ACTIONS(1481), - [anon_sym_e_GT] = ACTIONS(1481), - [anon_sym_o_GT] = ACTIONS(1481), - [anon_sym_err_PLUSout_GT] = ACTIONS(1481), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), - [anon_sym_o_PLUSe_GT] = ACTIONS(1481), - [anon_sym_e_PLUSo_GT] = ACTIONS(1481), - [anon_sym_err_GT_GT] = ACTIONS(1483), - [anon_sym_out_GT_GT] = ACTIONS(1483), - [anon_sym_e_GT_GT] = ACTIONS(1483), - [anon_sym_o_GT_GT] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), - [anon_sym_POUND] = ACTIONS(247), - }, - [1469] = { - [sym_cell_path] = STATE(1941), - [sym_path] = STATE(1715), - [sym_comment] = STATE(1469), - [aux_sym_cell_path_repeat1] = STATE(1575), - [anon_sym_true] = ACTIONS(1837), - [anon_sym_false] = ACTIONS(1837), - [anon_sym_null] = ACTIONS(1837), - [aux_sym_cmd_identifier_token38] = ACTIONS(1837), - [aux_sym_cmd_identifier_token39] = ACTIONS(1837), - [aux_sym_cmd_identifier_token40] = ACTIONS(1837), - [sym__newline] = ACTIONS(1837), - [anon_sym_SEMI] = ACTIONS(1837), - [anon_sym_PIPE] = ACTIONS(1837), - [anon_sym_err_GT_PIPE] = ACTIONS(1837), - [anon_sym_out_GT_PIPE] = ACTIONS(1837), - [anon_sym_e_GT_PIPE] = ACTIONS(1837), - [anon_sym_o_GT_PIPE] = ACTIONS(1837), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1837), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1837), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1837), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1837), - [anon_sym_DASH] = ACTIONS(1835), - [aux_sym_ctrl_match_token1] = ACTIONS(1837), - [anon_sym_RBRACE] = ACTIONS(1837), - [anon_sym_DOT_DOT] = ACTIONS(1835), - [anon_sym_DOT] = ACTIONS(4763), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1837), - [anon_sym_DOT_DOT_LT] = ACTIONS(1837), - [aux_sym__val_number_decimal_token1] = ACTIONS(1835), - [aux_sym__val_number_decimal_token2] = ACTIONS(1837), - [aux_sym__val_number_decimal_token3] = ACTIONS(1837), - [aux_sym__val_number_decimal_token4] = ACTIONS(1837), - [aux_sym__val_number_token1] = ACTIONS(1837), - [aux_sym__val_number_token2] = ACTIONS(1837), - [aux_sym__val_number_token3] = ACTIONS(1837), - [anon_sym_0b] = ACTIONS(1835), - [anon_sym_0o] = ACTIONS(1835), - [anon_sym_0x] = ACTIONS(1835), - [sym_val_date] = ACTIONS(1837), - [anon_sym_DQUOTE] = ACTIONS(1837), - [sym__str_single_quotes] = ACTIONS(1837), - [sym__str_back_ticks] = ACTIONS(1837), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1837), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1837), - [anon_sym_err_GT] = ACTIONS(1835), - [anon_sym_out_GT] = ACTIONS(1835), - [anon_sym_e_GT] = ACTIONS(1835), - [anon_sym_o_GT] = ACTIONS(1835), - [anon_sym_err_PLUSout_GT] = ACTIONS(1835), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1835), - [anon_sym_o_PLUSe_GT] = ACTIONS(1835), - [anon_sym_e_PLUSo_GT] = ACTIONS(1835), - [anon_sym_err_GT_GT] = ACTIONS(1837), - [anon_sym_out_GT_GT] = ACTIONS(1837), - [anon_sym_e_GT_GT] = ACTIONS(1837), - [anon_sym_o_GT_GT] = ACTIONS(1837), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1837), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1837), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1837), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1837), - [aux_sym_unquoted_token1] = ACTIONS(1835), - [anon_sym_POUND] = ACTIONS(247), - }, - [1470] = { - [sym_comment] = STATE(1470), - [anon_sym_true] = ACTIONS(988), - [anon_sym_false] = ACTIONS(988), - [anon_sym_null] = ACTIONS(988), - [aux_sym_cmd_identifier_token38] = ACTIONS(988), - [aux_sym_cmd_identifier_token39] = ACTIONS(988), - [aux_sym_cmd_identifier_token40] = ACTIONS(988), - [sym__newline] = ACTIONS(988), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_PIPE] = ACTIONS(988), - [anon_sym_err_GT_PIPE] = ACTIONS(988), - [anon_sym_out_GT_PIPE] = ACTIONS(988), - [anon_sym_e_GT_PIPE] = ACTIONS(988), - [anon_sym_o_GT_PIPE] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(988), - [anon_sym_LBRACK] = ACTIONS(988), - [anon_sym_LPAREN] = ACTIONS(988), - [anon_sym_RPAREN] = ACTIONS(988), - [anon_sym_DOLLAR] = ACTIONS(986), - [anon_sym_DASH_DASH] = ACTIONS(988), - [anon_sym_DASH] = ACTIONS(986), - [aux_sym_ctrl_match_token1] = ACTIONS(988), - [anon_sym_RBRACE] = ACTIONS(988), - [anon_sym_DOT_DOT] = ACTIONS(986), - [anon_sym_DOT_DOT2] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(986), - [anon_sym_DOT_DOT_EQ] = ACTIONS(986), - [anon_sym_DOT_DOT_LT] = ACTIONS(986), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), - [anon_sym_DOT_DOT_LT2] = ACTIONS(988), - [aux_sym__val_number_decimal_token1] = ACTIONS(986), - [aux_sym__val_number_decimal_token2] = ACTIONS(988), - [aux_sym__val_number_decimal_token3] = ACTIONS(988), - [aux_sym__val_number_decimal_token4] = ACTIONS(988), - [aux_sym__val_number_token1] = ACTIONS(988), - [aux_sym__val_number_token2] = ACTIONS(988), - [aux_sym__val_number_token3] = ACTIONS(988), - [anon_sym_0b] = ACTIONS(986), - [anon_sym_0o] = ACTIONS(986), - [anon_sym_0x] = ACTIONS(986), - [sym_val_date] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym__str_single_quotes] = ACTIONS(988), - [sym__str_back_ticks] = ACTIONS(988), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(986), - [anon_sym_out_GT] = ACTIONS(986), - [anon_sym_e_GT] = ACTIONS(986), - [anon_sym_o_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT] = ACTIONS(986), - [anon_sym_err_GT_GT] = ACTIONS(988), - [anon_sym_out_GT_GT] = ACTIONS(988), - [anon_sym_e_GT_GT] = ACTIONS(988), - [anon_sym_o_GT_GT] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), - [aux_sym_unquoted_token1] = ACTIONS(986), - [anon_sym_POUND] = ACTIONS(247), - }, - [1471] = { - [sym_comment] = STATE(1471), - [anon_sym_true] = ACTIONS(992), - [anon_sym_false] = ACTIONS(992), - [anon_sym_null] = ACTIONS(992), - [aux_sym_cmd_identifier_token38] = ACTIONS(992), - [aux_sym_cmd_identifier_token39] = ACTIONS(992), - [aux_sym_cmd_identifier_token40] = ACTIONS(992), - [sym__newline] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(992), - [anon_sym_err_GT_PIPE] = ACTIONS(992), - [anon_sym_out_GT_PIPE] = ACTIONS(992), - [anon_sym_e_GT_PIPE] = ACTIONS(992), - [anon_sym_o_GT_PIPE] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), - [anon_sym_LBRACK] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_RPAREN] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(992), - [anon_sym_DASH] = ACTIONS(990), - [aux_sym_ctrl_match_token1] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_DOT_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT2] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ] = ACTIONS(990), - [anon_sym_DOT_DOT_LT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), - [anon_sym_DOT_DOT_LT2] = ACTIONS(992), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(992), - [aux_sym__val_number_decimal_token3] = ACTIONS(992), - [aux_sym__val_number_decimal_token4] = ACTIONS(992), - [aux_sym__val_number_token1] = ACTIONS(992), - [aux_sym__val_number_token2] = ACTIONS(992), - [aux_sym__val_number_token3] = ACTIONS(992), - [anon_sym_0b] = ACTIONS(990), - [anon_sym_0o] = ACTIONS(990), - [anon_sym_0x] = ACTIONS(990), - [sym_val_date] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(990), - [anon_sym_out_GT] = ACTIONS(990), - [anon_sym_e_GT] = ACTIONS(990), - [anon_sym_o_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT] = ACTIONS(990), - [anon_sym_err_GT_GT] = ACTIONS(992), - [anon_sym_out_GT_GT] = ACTIONS(992), - [anon_sym_e_GT_GT] = ACTIONS(992), - [anon_sym_o_GT_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), - [aux_sym_unquoted_token1] = ACTIONS(990), - [anon_sym_POUND] = ACTIONS(247), - }, - [1472] = { - [sym_comment] = STATE(1472), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [anon_sym_null] = ACTIONS(1591), - [aux_sym_cmd_identifier_token38] = ACTIONS(1591), - [aux_sym_cmd_identifier_token39] = ACTIONS(1591), - [aux_sym_cmd_identifier_token40] = ACTIONS(1591), - [sym__newline] = ACTIONS(1591), - [anon_sym_SEMI] = ACTIONS(1591), - [anon_sym_PIPE] = ACTIONS(1591), - [anon_sym_err_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_GT_PIPE] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), - [anon_sym_LBRACK] = ACTIONS(1591), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_RPAREN] = ACTIONS(1591), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_DASH] = ACTIONS(1589), - [aux_sym_ctrl_match_token1] = ACTIONS(1591), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1591), - [anon_sym_DOT] = ACTIONS(4791), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1591), - [anon_sym_DOT_DOT_LT] = ACTIONS(1591), - [aux_sym__immediate_decimal_token2] = ACTIONS(4793), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token3] = ACTIONS(1591), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(1591), - [aux_sym__val_number_token2] = ACTIONS(1591), - [aux_sym__val_number_token3] = ACTIONS(1591), - [anon_sym_0b] = ACTIONS(1589), - [anon_sym_0o] = ACTIONS(1589), - [anon_sym_0x] = ACTIONS(1589), - [sym_val_date] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym__str_single_quotes] = ACTIONS(1591), - [sym__str_back_ticks] = ACTIONS(1591), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), - [anon_sym_err_GT] = ACTIONS(1589), - [anon_sym_out_GT] = ACTIONS(1589), - [anon_sym_e_GT] = ACTIONS(1589), - [anon_sym_o_GT] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT] = ACTIONS(1589), - [anon_sym_err_GT_GT] = ACTIONS(1591), - [anon_sym_out_GT_GT] = ACTIONS(1591), - [anon_sym_e_GT_GT] = ACTIONS(1591), - [anon_sym_o_GT_GT] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), - [aux_sym_unquoted_token1] = ACTIONS(1589), - [aux_sym_unquoted_token2] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(247), - }, - [1473] = { - [sym_cell_path] = STATE(1942), - [sym_path] = STATE(1715), - [sym_comment] = STATE(1473), - [aux_sym_cell_path_repeat1] = STATE(1575), - [anon_sym_true] = ACTIONS(1841), - [anon_sym_false] = ACTIONS(1841), - [anon_sym_null] = ACTIONS(1841), - [aux_sym_cmd_identifier_token38] = ACTIONS(1841), - [aux_sym_cmd_identifier_token39] = ACTIONS(1841), - [aux_sym_cmd_identifier_token40] = ACTIONS(1841), - [sym__newline] = ACTIONS(1841), - [anon_sym_SEMI] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_err_GT_PIPE] = ACTIONS(1841), - [anon_sym_out_GT_PIPE] = ACTIONS(1841), - [anon_sym_e_GT_PIPE] = ACTIONS(1841), - [anon_sym_o_GT_PIPE] = ACTIONS(1841), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1841), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1841), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1841), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1841), - [anon_sym_LBRACK] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_RPAREN] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1839), - [anon_sym_DASH_DASH] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1839), - [aux_sym_ctrl_match_token1] = ACTIONS(1841), - [anon_sym_RBRACE] = ACTIONS(1841), - [anon_sym_DOT_DOT] = ACTIONS(1839), - [anon_sym_DOT] = ACTIONS(4763), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1841), - [anon_sym_DOT_DOT_LT] = ACTIONS(1841), - [aux_sym__val_number_decimal_token1] = ACTIONS(1839), - [aux_sym__val_number_decimal_token2] = ACTIONS(1841), - [aux_sym__val_number_decimal_token3] = ACTIONS(1841), - [aux_sym__val_number_decimal_token4] = ACTIONS(1841), - [aux_sym__val_number_token1] = ACTIONS(1841), - [aux_sym__val_number_token2] = ACTIONS(1841), - [aux_sym__val_number_token3] = ACTIONS(1841), - [anon_sym_0b] = ACTIONS(1839), - [anon_sym_0o] = ACTIONS(1839), - [anon_sym_0x] = ACTIONS(1839), - [sym_val_date] = ACTIONS(1841), - [anon_sym_DQUOTE] = ACTIONS(1841), - [sym__str_single_quotes] = ACTIONS(1841), - [sym__str_back_ticks] = ACTIONS(1841), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1841), - [anon_sym_err_GT] = ACTIONS(1839), - [anon_sym_out_GT] = ACTIONS(1839), - [anon_sym_e_GT] = ACTIONS(1839), - [anon_sym_o_GT] = ACTIONS(1839), - [anon_sym_err_PLUSout_GT] = ACTIONS(1839), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1839), - [anon_sym_o_PLUSe_GT] = ACTIONS(1839), - [anon_sym_e_PLUSo_GT] = ACTIONS(1839), - [anon_sym_err_GT_GT] = ACTIONS(1841), - [anon_sym_out_GT_GT] = ACTIONS(1841), - [anon_sym_e_GT_GT] = ACTIONS(1841), - [anon_sym_o_GT_GT] = ACTIONS(1841), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1841), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1841), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1841), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1841), - [aux_sym_unquoted_token1] = ACTIONS(1839), - [anon_sym_POUND] = ACTIONS(247), - }, - [1474] = { - [sym_cell_path] = STATE(1528), - [sym_path] = STATE(1299), - [sym_comment] = STATE(1474), - [aux_sym_cell_path_repeat1] = STATE(1259), - [sym__newline] = ACTIONS(1599), - [anon_sym_SEMI] = ACTIONS(1603), - [anon_sym_PIPE] = ACTIONS(1603), - [anon_sym_err_GT_PIPE] = ACTIONS(1603), - [anon_sym_out_GT_PIPE] = ACTIONS(1603), - [anon_sym_e_GT_PIPE] = ACTIONS(1603), - [anon_sym_o_GT_PIPE] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1603), - [aux_sym_ctrl_match_token1] = ACTIONS(1603), - [anon_sym_RBRACE] = ACTIONS(1603), - [aux_sym_expr_binary_token1] = ACTIONS(1603), - [aux_sym_expr_binary_token2] = ACTIONS(1603), - [aux_sym_expr_binary_token3] = ACTIONS(1603), - [aux_sym_expr_binary_token4] = ACTIONS(1603), - [aux_sym_expr_binary_token5] = ACTIONS(1603), - [aux_sym_expr_binary_token6] = ACTIONS(1603), - [aux_sym_expr_binary_token7] = ACTIONS(1603), - [aux_sym_expr_binary_token8] = ACTIONS(1603), - [aux_sym_expr_binary_token9] = ACTIONS(1603), - [aux_sym_expr_binary_token10] = ACTIONS(1603), - [aux_sym_expr_binary_token11] = ACTIONS(1603), - [aux_sym_expr_binary_token12] = ACTIONS(1603), - [aux_sym_expr_binary_token13] = ACTIONS(1603), - [aux_sym_expr_binary_token14] = ACTIONS(1603), - [aux_sym_expr_binary_token15] = ACTIONS(1603), - [aux_sym_expr_binary_token16] = ACTIONS(1603), - [aux_sym_expr_binary_token17] = ACTIONS(1603), - [aux_sym_expr_binary_token18] = ACTIONS(1603), - [aux_sym_expr_binary_token19] = ACTIONS(1603), - [aux_sym_expr_binary_token20] = ACTIONS(1603), - [aux_sym_expr_binary_token21] = ACTIONS(1603), - [aux_sym_expr_binary_token22] = ACTIONS(1603), - [aux_sym_expr_binary_token23] = ACTIONS(1603), - [aux_sym_expr_binary_token24] = ACTIONS(1603), - [aux_sym_expr_binary_token25] = ACTIONS(1603), - [aux_sym_expr_binary_token26] = ACTIONS(1603), - [aux_sym_expr_binary_token27] = ACTIONS(1603), - [aux_sym_expr_binary_token28] = ACTIONS(1603), - [anon_sym_DOT_DOT2] = ACTIONS(1599), - [anon_sym_DOT] = ACTIONS(4021), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1603), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1603), - [aux_sym_record_entry_token1] = ACTIONS(1603), - [anon_sym_err_GT] = ACTIONS(1599), - [anon_sym_out_GT] = ACTIONS(1599), - [anon_sym_e_GT] = ACTIONS(1599), - [anon_sym_o_GT] = ACTIONS(1599), - [anon_sym_err_PLUSout_GT] = ACTIONS(1599), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), - [anon_sym_o_PLUSe_GT] = ACTIONS(1599), - [anon_sym_e_PLUSo_GT] = ACTIONS(1599), - [anon_sym_err_GT_GT] = ACTIONS(1603), - [anon_sym_out_GT_GT] = ACTIONS(1603), - [anon_sym_e_GT_GT] = ACTIONS(1603), - [anon_sym_o_GT_GT] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1603), - [anon_sym_POUND] = ACTIONS(247), - }, - [1475] = { - [sym_cell_path] = STATE(1831), - [sym_path] = STATE(1328), - [sym_comment] = STATE(1475), - [aux_sym_cell_path_repeat1] = STATE(1255), - [sym__newline] = ACTIONS(1603), - [anon_sym_SEMI] = ACTIONS(1603), - [anon_sym_PIPE] = ACTIONS(1603), - [anon_sym_err_GT_PIPE] = ACTIONS(1603), - [anon_sym_out_GT_PIPE] = ACTIONS(1603), - [anon_sym_e_GT_PIPE] = ACTIONS(1603), - [anon_sym_o_GT_PIPE] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1603), - [anon_sym_RPAREN] = ACTIONS(1603), - [anon_sym_COMMA] = ACTIONS(1603), - [anon_sym_RBRACE] = ACTIONS(1603), - [aux_sym_expr_binary_token1] = ACTIONS(1603), - [aux_sym_expr_binary_token2] = ACTIONS(1603), - [aux_sym_expr_binary_token3] = ACTIONS(1603), - [aux_sym_expr_binary_token4] = ACTIONS(1603), - [aux_sym_expr_binary_token5] = ACTIONS(1603), - [aux_sym_expr_binary_token6] = ACTIONS(1603), - [aux_sym_expr_binary_token7] = ACTIONS(1603), - [aux_sym_expr_binary_token8] = ACTIONS(1603), - [aux_sym_expr_binary_token9] = ACTIONS(1603), - [aux_sym_expr_binary_token10] = ACTIONS(1603), - [aux_sym_expr_binary_token11] = ACTIONS(1603), - [aux_sym_expr_binary_token12] = ACTIONS(1603), - [aux_sym_expr_binary_token13] = ACTIONS(1603), - [aux_sym_expr_binary_token14] = ACTIONS(1603), - [aux_sym_expr_binary_token15] = ACTIONS(1603), - [aux_sym_expr_binary_token16] = ACTIONS(1603), - [aux_sym_expr_binary_token17] = ACTIONS(1603), - [aux_sym_expr_binary_token18] = ACTIONS(1603), - [aux_sym_expr_binary_token19] = ACTIONS(1603), - [aux_sym_expr_binary_token20] = ACTIONS(1603), - [aux_sym_expr_binary_token21] = ACTIONS(1603), - [aux_sym_expr_binary_token22] = ACTIONS(1603), - [aux_sym_expr_binary_token23] = ACTIONS(1603), - [aux_sym_expr_binary_token24] = ACTIONS(1603), - [aux_sym_expr_binary_token25] = ACTIONS(1603), - [aux_sym_expr_binary_token26] = ACTIONS(1603), - [aux_sym_expr_binary_token27] = ACTIONS(1603), - [aux_sym_expr_binary_token28] = ACTIONS(1603), - [anon_sym_DOT_DOT2] = ACTIONS(1599), - [anon_sym_DOT] = ACTIONS(4014), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1603), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1603), - [anon_sym_err_GT] = ACTIONS(1599), - [anon_sym_out_GT] = ACTIONS(1599), - [anon_sym_e_GT] = ACTIONS(1599), - [anon_sym_o_GT] = ACTIONS(1599), - [anon_sym_err_PLUSout_GT] = ACTIONS(1599), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), - [anon_sym_o_PLUSe_GT] = ACTIONS(1599), - [anon_sym_e_PLUSo_GT] = ACTIONS(1599), - [anon_sym_err_GT_GT] = ACTIONS(1603), - [anon_sym_out_GT_GT] = ACTIONS(1603), - [anon_sym_e_GT_GT] = ACTIONS(1603), - [anon_sym_o_GT_GT] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1603), - [anon_sym_POUND] = ACTIONS(247), - }, - [1476] = { - [sym_cell_path] = STATE(1932), - [sym_path] = STATE(1715), - [sym_comment] = STATE(1476), - [aux_sym_cell_path_repeat1] = STATE(1575), - [anon_sym_true] = ACTIONS(1798), - [anon_sym_false] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1798), - [aux_sym_cmd_identifier_token38] = ACTIONS(1798), - [aux_sym_cmd_identifier_token39] = ACTIONS(1798), - [aux_sym_cmd_identifier_token40] = ACTIONS(1798), - [sym__newline] = ACTIONS(1798), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1798), - [anon_sym_err_GT_PIPE] = ACTIONS(1798), - [anon_sym_out_GT_PIPE] = ACTIONS(1798), - [anon_sym_e_GT_PIPE] = ACTIONS(1798), - [anon_sym_o_GT_PIPE] = ACTIONS(1798), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1798), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1798), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1798), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1798), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_DOLLAR] = ACTIONS(1796), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1796), - [aux_sym_ctrl_match_token1] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_DOT_DOT] = ACTIONS(1796), - [anon_sym_DOT] = ACTIONS(4763), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1798), - [anon_sym_DOT_DOT_LT] = ACTIONS(1798), - [aux_sym__val_number_decimal_token1] = ACTIONS(1796), - [aux_sym__val_number_decimal_token2] = ACTIONS(1798), - [aux_sym__val_number_decimal_token3] = ACTIONS(1798), - [aux_sym__val_number_decimal_token4] = ACTIONS(1798), - [aux_sym__val_number_token1] = ACTIONS(1798), - [aux_sym__val_number_token2] = ACTIONS(1798), - [aux_sym__val_number_token3] = ACTIONS(1798), - [anon_sym_0b] = ACTIONS(1796), - [anon_sym_0o] = ACTIONS(1796), - [anon_sym_0x] = ACTIONS(1796), - [sym_val_date] = ACTIONS(1798), - [anon_sym_DQUOTE] = ACTIONS(1798), - [sym__str_single_quotes] = ACTIONS(1798), - [sym__str_back_ticks] = ACTIONS(1798), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1798), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1798), - [anon_sym_err_GT] = ACTIONS(1796), - [anon_sym_out_GT] = ACTIONS(1796), - [anon_sym_e_GT] = ACTIONS(1796), - [anon_sym_o_GT] = ACTIONS(1796), - [anon_sym_err_PLUSout_GT] = ACTIONS(1796), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1796), - [anon_sym_o_PLUSe_GT] = ACTIONS(1796), - [anon_sym_e_PLUSo_GT] = ACTIONS(1796), - [anon_sym_err_GT_GT] = ACTIONS(1798), - [anon_sym_out_GT_GT] = ACTIONS(1798), - [anon_sym_e_GT_GT] = ACTIONS(1798), - [anon_sym_o_GT_GT] = ACTIONS(1798), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1798), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1798), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1798), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1798), - [aux_sym_unquoted_token1] = ACTIONS(1796), - [anon_sym_POUND] = ACTIONS(247), - }, - [1477] = { - [sym_comment] = STATE(1477), - [ts_builtin_sym_end] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1717), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [sym__newline] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_err_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_GT_PIPE] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1709), - [aux_sym_ctrl_match_token1] = ACTIONS(1717), - [anon_sym_DOT_DOT] = ACTIONS(1709), - [anon_sym_LPAREN2] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(4795), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1709), - [anon_sym_DOT_DOT_LT] = ACTIONS(1709), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4797), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4797), - [aux_sym__val_number_decimal_token1] = ACTIONS(1709), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [anon_sym_0b] = ACTIONS(1709), - [anon_sym_0o] = ACTIONS(1709), - [anon_sym_0x] = ACTIONS(1709), - [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_err_GT] = ACTIONS(1709), - [anon_sym_out_GT] = ACTIONS(1709), - [anon_sym_e_GT] = ACTIONS(1709), - [anon_sym_o_GT] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT] = ACTIONS(1709), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), - [anon_sym_o_PLUSe_GT] = ACTIONS(1709), - [anon_sym_e_PLUSo_GT] = ACTIONS(1709), - [anon_sym_err_GT_GT] = ACTIONS(1717), - [anon_sym_out_GT_GT] = ACTIONS(1717), - [anon_sym_e_GT_GT] = ACTIONS(1717), - [anon_sym_o_GT_GT] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), - [aux_sym_unquoted_token1] = ACTIONS(1709), - [aux_sym_unquoted_token2] = ACTIONS(1719), - [anon_sym_POUND] = ACTIONS(247), - }, - [1478] = { - [sym_comment] = STATE(1478), - [ts_builtin_sym_end] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1571), - [anon_sym_false] = ACTIONS(1571), - [anon_sym_null] = ACTIONS(1571), - [aux_sym_cmd_identifier_token38] = ACTIONS(1571), - [aux_sym_cmd_identifier_token39] = ACTIONS(1571), - [aux_sym_cmd_identifier_token40] = ACTIONS(1571), - [sym__newline] = ACTIONS(1571), - [anon_sym_SEMI] = ACTIONS(1571), - [anon_sym_PIPE] = ACTIONS(1571), - [anon_sym_err_GT_PIPE] = ACTIONS(1571), - [anon_sym_out_GT_PIPE] = ACTIONS(1571), - [anon_sym_e_GT_PIPE] = ACTIONS(1571), - [anon_sym_o_GT_PIPE] = ACTIONS(1571), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1571), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1571), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1571), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1571), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_LPAREN] = ACTIONS(1571), - [anon_sym_DOLLAR] = ACTIONS(1569), - [anon_sym_DASH_DASH] = ACTIONS(1571), - [anon_sym_DASH] = ACTIONS(1569), - [aux_sym_ctrl_match_token1] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1569), - [anon_sym_DOT_DOT2] = ACTIONS(1569), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1569), - [anon_sym_DOT_DOT_LT] = ACTIONS(1569), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1571), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1571), - [aux_sym__immediate_decimal_token1] = ACTIONS(4799), - [aux_sym__immediate_decimal_token2] = ACTIONS(4801), - [aux_sym__val_number_decimal_token1] = ACTIONS(1569), - [aux_sym__val_number_decimal_token2] = ACTIONS(1571), - [aux_sym__val_number_decimal_token3] = ACTIONS(1571), - [aux_sym__val_number_decimal_token4] = ACTIONS(1571), - [aux_sym__val_number_token1] = ACTIONS(1571), - [aux_sym__val_number_token2] = ACTIONS(1571), - [aux_sym__val_number_token3] = ACTIONS(1571), - [anon_sym_0b] = ACTIONS(1569), - [anon_sym_0o] = ACTIONS(1569), - [anon_sym_0x] = ACTIONS(1569), - [sym_val_date] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [sym__str_single_quotes] = ACTIONS(1571), - [sym__str_back_ticks] = ACTIONS(1571), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1571), - [anon_sym_err_GT] = ACTIONS(1569), - [anon_sym_out_GT] = ACTIONS(1569), - [anon_sym_e_GT] = ACTIONS(1569), - [anon_sym_o_GT] = ACTIONS(1569), - [anon_sym_err_PLUSout_GT] = ACTIONS(1569), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1569), - [anon_sym_o_PLUSe_GT] = ACTIONS(1569), - [anon_sym_e_PLUSo_GT] = ACTIONS(1569), - [anon_sym_err_GT_GT] = ACTIONS(1571), - [anon_sym_out_GT_GT] = ACTIONS(1571), - [anon_sym_e_GT_GT] = ACTIONS(1571), - [anon_sym_o_GT_GT] = ACTIONS(1571), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1571), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1571), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1571), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1571), - [aux_sym_unquoted_token1] = ACTIONS(1569), - [anon_sym_POUND] = ACTIONS(247), - }, - [1479] = { - [sym_cell_path] = STATE(1936), - [sym_path] = STATE(1715), - [sym_comment] = STATE(1479), - [aux_sym_cell_path_repeat1] = STATE(1575), - [anon_sym_true] = ACTIONS(1822), - [anon_sym_false] = ACTIONS(1822), - [anon_sym_null] = ACTIONS(1822), - [aux_sym_cmd_identifier_token38] = ACTIONS(1822), - [aux_sym_cmd_identifier_token39] = ACTIONS(1822), - [aux_sym_cmd_identifier_token40] = ACTIONS(1822), - [sym__newline] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1822), - [anon_sym_PIPE] = ACTIONS(1822), - [anon_sym_err_GT_PIPE] = ACTIONS(1822), - [anon_sym_out_GT_PIPE] = ACTIONS(1822), - [anon_sym_e_GT_PIPE] = ACTIONS(1822), - [anon_sym_o_GT_PIPE] = ACTIONS(1822), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1822), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1822), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1822), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1822), - [anon_sym_LBRACK] = ACTIONS(1822), - [anon_sym_LPAREN] = ACTIONS(1822), - [anon_sym_RPAREN] = ACTIONS(1822), - [anon_sym_DOLLAR] = ACTIONS(1820), - [anon_sym_DASH_DASH] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1820), - [aux_sym_ctrl_match_token1] = ACTIONS(1822), - [anon_sym_RBRACE] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1820), - [anon_sym_DOT] = ACTIONS(4763), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1822), - [anon_sym_DOT_DOT_LT] = ACTIONS(1822), - [aux_sym__val_number_decimal_token1] = ACTIONS(1820), - [aux_sym__val_number_decimal_token2] = ACTIONS(1822), - [aux_sym__val_number_decimal_token3] = ACTIONS(1822), - [aux_sym__val_number_decimal_token4] = ACTIONS(1822), - [aux_sym__val_number_token1] = ACTIONS(1822), - [aux_sym__val_number_token2] = ACTIONS(1822), - [aux_sym__val_number_token3] = ACTIONS(1822), - [anon_sym_0b] = ACTIONS(1820), - [anon_sym_0o] = ACTIONS(1820), - [anon_sym_0x] = ACTIONS(1820), - [sym_val_date] = ACTIONS(1822), - [anon_sym_DQUOTE] = ACTIONS(1822), - [sym__str_single_quotes] = ACTIONS(1822), - [sym__str_back_ticks] = ACTIONS(1822), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1822), - [anon_sym_err_GT] = ACTIONS(1820), - [anon_sym_out_GT] = ACTIONS(1820), - [anon_sym_e_GT] = ACTIONS(1820), - [anon_sym_o_GT] = ACTIONS(1820), - [anon_sym_err_PLUSout_GT] = ACTIONS(1820), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1820), - [anon_sym_o_PLUSe_GT] = ACTIONS(1820), - [anon_sym_e_PLUSo_GT] = ACTIONS(1820), - [anon_sym_err_GT_GT] = ACTIONS(1822), - [anon_sym_out_GT_GT] = ACTIONS(1822), - [anon_sym_e_GT_GT] = ACTIONS(1822), - [anon_sym_o_GT_GT] = ACTIONS(1822), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1822), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1822), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1822), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1822), - [aux_sym_unquoted_token1] = ACTIONS(1820), - [anon_sym_POUND] = ACTIONS(247), - }, - [1480] = { - [sym_cell_path] = STATE(1927), - [sym_path] = STATE(1715), - [sym_comment] = STATE(1480), - [aux_sym_cell_path_repeat1] = STATE(1575), - [anon_sym_true] = ACTIONS(1893), - [anon_sym_false] = ACTIONS(1893), - [anon_sym_null] = ACTIONS(1893), - [aux_sym_cmd_identifier_token38] = ACTIONS(1893), - [aux_sym_cmd_identifier_token39] = ACTIONS(1893), - [aux_sym_cmd_identifier_token40] = ACTIONS(1893), - [sym__newline] = ACTIONS(1893), - [anon_sym_SEMI] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_err_GT_PIPE] = ACTIONS(1893), - [anon_sym_out_GT_PIPE] = ACTIONS(1893), - [anon_sym_e_GT_PIPE] = ACTIONS(1893), - [anon_sym_o_GT_PIPE] = ACTIONS(1893), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1893), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1893), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1893), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1893), - [anon_sym_LBRACK] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1893), - [anon_sym_RPAREN] = ACTIONS(1893), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_DASH_DASH] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1891), - [aux_sym_ctrl_match_token1] = ACTIONS(1893), - [anon_sym_RBRACE] = ACTIONS(1893), - [anon_sym_DOT_DOT] = ACTIONS(1891), - [anon_sym_DOT] = ACTIONS(4763), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1893), - [anon_sym_DOT_DOT_LT] = ACTIONS(1893), - [aux_sym__val_number_decimal_token1] = ACTIONS(1891), - [aux_sym__val_number_decimal_token2] = ACTIONS(1893), - [aux_sym__val_number_decimal_token3] = ACTIONS(1893), - [aux_sym__val_number_decimal_token4] = ACTIONS(1893), - [aux_sym__val_number_token1] = ACTIONS(1893), - [aux_sym__val_number_token2] = ACTIONS(1893), - [aux_sym__val_number_token3] = ACTIONS(1893), - [anon_sym_0b] = ACTIONS(1891), - [anon_sym_0o] = ACTIONS(1891), - [anon_sym_0x] = ACTIONS(1891), - [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_err_GT] = ACTIONS(1891), - [anon_sym_out_GT] = ACTIONS(1891), - [anon_sym_e_GT] = ACTIONS(1891), - [anon_sym_o_GT] = ACTIONS(1891), - [anon_sym_err_PLUSout_GT] = ACTIONS(1891), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1891), - [anon_sym_o_PLUSe_GT] = ACTIONS(1891), - [anon_sym_e_PLUSo_GT] = ACTIONS(1891), - [anon_sym_err_GT_GT] = ACTIONS(1893), - [anon_sym_out_GT_GT] = ACTIONS(1893), - [anon_sym_e_GT_GT] = ACTIONS(1893), - [anon_sym_o_GT_GT] = ACTIONS(1893), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1893), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1893), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1893), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1893), - [aux_sym_unquoted_token1] = ACTIONS(1891), - [anon_sym_POUND] = ACTIONS(247), - }, - [1481] = { - [sym_cell_path] = STATE(1928), - [sym_path] = STATE(1715), - [sym_comment] = STATE(1481), - [aux_sym_cell_path_repeat1] = STATE(1575), - [anon_sym_true] = ACTIONS(1897), - [anon_sym_false] = ACTIONS(1897), - [anon_sym_null] = ACTIONS(1897), - [aux_sym_cmd_identifier_token38] = ACTIONS(1897), - [aux_sym_cmd_identifier_token39] = ACTIONS(1897), - [aux_sym_cmd_identifier_token40] = ACTIONS(1897), - [sym__newline] = ACTIONS(1897), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_PIPE] = ACTIONS(1897), - [anon_sym_err_GT_PIPE] = ACTIONS(1897), - [anon_sym_out_GT_PIPE] = ACTIONS(1897), - [anon_sym_e_GT_PIPE] = ACTIONS(1897), - [anon_sym_o_GT_PIPE] = ACTIONS(1897), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1897), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1897), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1897), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1897), - [anon_sym_LBRACK] = ACTIONS(1897), - [anon_sym_LPAREN] = ACTIONS(1897), - [anon_sym_RPAREN] = ACTIONS(1897), - [anon_sym_DOLLAR] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1897), - [anon_sym_DASH] = ACTIONS(1895), - [aux_sym_ctrl_match_token1] = ACTIONS(1897), - [anon_sym_RBRACE] = ACTIONS(1897), - [anon_sym_DOT_DOT] = ACTIONS(1895), - [anon_sym_DOT] = ACTIONS(4763), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1897), - [anon_sym_DOT_DOT_LT] = ACTIONS(1897), - [aux_sym__val_number_decimal_token1] = ACTIONS(1895), - [aux_sym__val_number_decimal_token2] = ACTIONS(1897), - [aux_sym__val_number_decimal_token3] = ACTIONS(1897), - [aux_sym__val_number_decimal_token4] = ACTIONS(1897), - [aux_sym__val_number_token1] = ACTIONS(1897), - [aux_sym__val_number_token2] = ACTIONS(1897), - [aux_sym__val_number_token3] = ACTIONS(1897), - [anon_sym_0b] = ACTIONS(1895), - [anon_sym_0o] = ACTIONS(1895), - [anon_sym_0x] = ACTIONS(1895), - [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_err_GT] = ACTIONS(1895), - [anon_sym_out_GT] = ACTIONS(1895), - [anon_sym_e_GT] = ACTIONS(1895), - [anon_sym_o_GT] = ACTIONS(1895), - [anon_sym_err_PLUSout_GT] = ACTIONS(1895), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1895), - [anon_sym_o_PLUSe_GT] = ACTIONS(1895), - [anon_sym_e_PLUSo_GT] = ACTIONS(1895), - [anon_sym_err_GT_GT] = ACTIONS(1897), - [anon_sym_out_GT_GT] = ACTIONS(1897), - [anon_sym_e_GT_GT] = ACTIONS(1897), - [anon_sym_o_GT_GT] = ACTIONS(1897), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1897), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1897), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1897), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1897), - [aux_sym_unquoted_token1] = ACTIONS(1895), - [anon_sym_POUND] = ACTIONS(247), - }, - [1482] = { - [sym_comment] = STATE(1482), - [ts_builtin_sym_end] = ACTIONS(1475), - [sym__newline] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_err_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_GT_PIPE] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), - [anon_sym_LPAREN2] = ACTIONS(1475), - [aux_sym_expr_binary_token1] = ACTIONS(1475), - [aux_sym_expr_binary_token2] = ACTIONS(1475), - [aux_sym_expr_binary_token3] = ACTIONS(1475), - [aux_sym_expr_binary_token4] = ACTIONS(1475), - [aux_sym_expr_binary_token5] = ACTIONS(1475), - [aux_sym_expr_binary_token6] = ACTIONS(1475), - [aux_sym_expr_binary_token7] = ACTIONS(1475), - [aux_sym_expr_binary_token8] = ACTIONS(1475), - [aux_sym_expr_binary_token9] = ACTIONS(1475), - [aux_sym_expr_binary_token10] = ACTIONS(1475), - [aux_sym_expr_binary_token11] = ACTIONS(1475), - [aux_sym_expr_binary_token12] = ACTIONS(1475), - [aux_sym_expr_binary_token13] = ACTIONS(1475), - [aux_sym_expr_binary_token14] = ACTIONS(1475), - [aux_sym_expr_binary_token15] = ACTIONS(1475), - [aux_sym_expr_binary_token16] = ACTIONS(1475), - [aux_sym_expr_binary_token17] = ACTIONS(1475), - [aux_sym_expr_binary_token18] = ACTIONS(1475), - [aux_sym_expr_binary_token19] = ACTIONS(1475), - [aux_sym_expr_binary_token20] = ACTIONS(1475), - [aux_sym_expr_binary_token21] = ACTIONS(1475), - [aux_sym_expr_binary_token22] = ACTIONS(1475), - [aux_sym_expr_binary_token23] = ACTIONS(1475), - [aux_sym_expr_binary_token24] = ACTIONS(1475), - [aux_sym_expr_binary_token25] = ACTIONS(1475), - [aux_sym_expr_binary_token26] = ACTIONS(1475), - [aux_sym_expr_binary_token27] = ACTIONS(1475), - [aux_sym_expr_binary_token28] = ACTIONS(1475), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT] = ACTIONS(4803), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [aux_sym__immediate_decimal_token2] = ACTIONS(4805), - [sym_filesize_unit] = ACTIONS(1475), - [sym_duration_unit] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1473), - [anon_sym_out_GT] = ACTIONS(1473), - [anon_sym_e_GT] = ACTIONS(1473), - [anon_sym_o_GT] = ACTIONS(1473), - [anon_sym_err_PLUSout_GT] = ACTIONS(1473), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), - [anon_sym_o_PLUSe_GT] = ACTIONS(1473), - [anon_sym_e_PLUSo_GT] = ACTIONS(1473), - [anon_sym_err_GT_GT] = ACTIONS(1475), - [anon_sym_out_GT_GT] = ACTIONS(1475), - [anon_sym_e_GT_GT] = ACTIONS(1475), - [anon_sym_o_GT_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), - [aux_sym_unquoted_token2] = ACTIONS(1473), - [anon_sym_POUND] = ACTIONS(247), - }, - [1483] = { - [sym_cell_path] = STATE(1926), - [sym_path] = STATE(1715), - [sym_comment] = STATE(1483), - [aux_sym_cell_path_repeat1] = STATE(1575), - [anon_sym_true] = ACTIONS(1885), - [anon_sym_false] = ACTIONS(1885), - [anon_sym_null] = ACTIONS(1885), - [aux_sym_cmd_identifier_token38] = ACTIONS(1885), - [aux_sym_cmd_identifier_token39] = ACTIONS(1885), - [aux_sym_cmd_identifier_token40] = ACTIONS(1885), - [sym__newline] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_PIPE] = ACTIONS(1885), - [anon_sym_err_GT_PIPE] = ACTIONS(1885), - [anon_sym_out_GT_PIPE] = ACTIONS(1885), - [anon_sym_e_GT_PIPE] = ACTIONS(1885), - [anon_sym_o_GT_PIPE] = ACTIONS(1885), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1885), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1885), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1885), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1885), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_RPAREN] = ACTIONS(1885), - [anon_sym_DOLLAR] = ACTIONS(1883), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1883), - [aux_sym_ctrl_match_token1] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1883), - [anon_sym_DOT] = ACTIONS(4763), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1885), - [anon_sym_DOT_DOT_LT] = ACTIONS(1885), - [aux_sym__val_number_decimal_token1] = ACTIONS(1883), - [aux_sym__val_number_decimal_token2] = ACTIONS(1885), - [aux_sym__val_number_decimal_token3] = ACTIONS(1885), - [aux_sym__val_number_decimal_token4] = ACTIONS(1885), - [aux_sym__val_number_token1] = ACTIONS(1885), - [aux_sym__val_number_token2] = ACTIONS(1885), - [aux_sym__val_number_token3] = ACTIONS(1885), - [anon_sym_0b] = ACTIONS(1883), - [anon_sym_0o] = ACTIONS(1883), - [anon_sym_0x] = ACTIONS(1883), - [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_err_GT] = ACTIONS(1883), - [anon_sym_out_GT] = ACTIONS(1883), - [anon_sym_e_GT] = ACTIONS(1883), - [anon_sym_o_GT] = ACTIONS(1883), - [anon_sym_err_PLUSout_GT] = ACTIONS(1883), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1883), - [anon_sym_o_PLUSe_GT] = ACTIONS(1883), - [anon_sym_e_PLUSo_GT] = ACTIONS(1883), - [anon_sym_err_GT_GT] = ACTIONS(1885), - [anon_sym_out_GT_GT] = ACTIONS(1885), - [anon_sym_e_GT_GT] = ACTIONS(1885), - [anon_sym_o_GT_GT] = ACTIONS(1885), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1885), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1885), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1885), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1885), - [aux_sym_unquoted_token1] = ACTIONS(1883), - [anon_sym_POUND] = ACTIONS(247), - }, - [1484] = { - [sym_comment] = STATE(1484), - [ts_builtin_sym_end] = ACTIONS(1650), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [anon_sym_null] = ACTIONS(1650), - [aux_sym_cmd_identifier_token38] = ACTIONS(1650), - [aux_sym_cmd_identifier_token39] = ACTIONS(1650), - [aux_sym_cmd_identifier_token40] = ACTIONS(1650), - [sym__newline] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_err_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_GT_PIPE] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_DASH] = ACTIONS(1648), - [aux_sym_ctrl_match_token1] = ACTIONS(1650), - [anon_sym_DOT_DOT] = ACTIONS(1648), - [anon_sym_LPAREN2] = ACTIONS(1650), - [anon_sym_DOT_DOT2] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1648), - [anon_sym_DOT_DOT_LT] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token3] = ACTIONS(1650), - [aux_sym__val_number_decimal_token4] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [anon_sym_0b] = ACTIONS(1648), - [anon_sym_0o] = ACTIONS(1648), - [anon_sym_0x] = ACTIONS(1648), - [sym_val_date] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), - [anon_sym_err_GT] = ACTIONS(1648), - [anon_sym_out_GT] = ACTIONS(1648), - [anon_sym_e_GT] = ACTIONS(1648), - [anon_sym_o_GT] = ACTIONS(1648), - [anon_sym_err_PLUSout_GT] = ACTIONS(1648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1648), - [anon_sym_o_PLUSe_GT] = ACTIONS(1648), - [anon_sym_e_PLUSo_GT] = ACTIONS(1648), - [anon_sym_err_GT_GT] = ACTIONS(1650), - [anon_sym_out_GT_GT] = ACTIONS(1650), - [anon_sym_e_GT_GT] = ACTIONS(1650), - [anon_sym_o_GT_GT] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1650), - [aux_sym_unquoted_token1] = ACTIONS(1648), - [aux_sym_unquoted_token2] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(247), - }, - [1485] = { - [sym_comment] = STATE(1485), - [ts_builtin_sym_end] = ACTIONS(1698), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1698), - [anon_sym_null] = ACTIONS(1698), - [aux_sym_cmd_identifier_token38] = ACTIONS(1698), - [aux_sym_cmd_identifier_token39] = ACTIONS(1698), - [aux_sym_cmd_identifier_token40] = ACTIONS(1698), - [sym__newline] = ACTIONS(1698), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_PIPE] = ACTIONS(1698), - [anon_sym_err_GT_PIPE] = ACTIONS(1698), - [anon_sym_out_GT_PIPE] = ACTIONS(1698), - [anon_sym_e_GT_PIPE] = ACTIONS(1698), - [anon_sym_o_GT_PIPE] = ACTIONS(1698), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1698), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1698), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1698), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1698), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_DOLLAR] = ACTIONS(1690), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_DASH] = ACTIONS(1690), - [aux_sym_ctrl_match_token1] = ACTIONS(1698), - [anon_sym_DOT_DOT] = ACTIONS(1690), - [anon_sym_LPAREN2] = ACTIONS(1692), - [anon_sym_DOT_DOT2] = ACTIONS(4807), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1690), - [anon_sym_DOT_DOT_LT] = ACTIONS(1690), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4809), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4809), - [aux_sym__val_number_decimal_token1] = ACTIONS(1690), - [aux_sym__val_number_decimal_token2] = ACTIONS(1698), - [aux_sym__val_number_decimal_token3] = ACTIONS(1698), - [aux_sym__val_number_decimal_token4] = ACTIONS(1698), - [aux_sym__val_number_token1] = ACTIONS(1698), - [aux_sym__val_number_token2] = ACTIONS(1698), - [aux_sym__val_number_token3] = ACTIONS(1698), - [anon_sym_0b] = ACTIONS(1690), - [anon_sym_0o] = ACTIONS(1690), - [anon_sym_0x] = ACTIONS(1690), - [sym_val_date] = ACTIONS(1698), - [anon_sym_DQUOTE] = ACTIONS(1698), - [sym__str_single_quotes] = ACTIONS(1698), - [sym__str_back_ticks] = ACTIONS(1698), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1698), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1698), - [anon_sym_err_GT] = ACTIONS(1690), - [anon_sym_out_GT] = ACTIONS(1690), - [anon_sym_e_GT] = ACTIONS(1690), - [anon_sym_o_GT] = ACTIONS(1690), - [anon_sym_err_PLUSout_GT] = ACTIONS(1690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1690), - [anon_sym_o_PLUSe_GT] = ACTIONS(1690), - [anon_sym_e_PLUSo_GT] = ACTIONS(1690), - [anon_sym_err_GT_GT] = ACTIONS(1698), - [anon_sym_out_GT_GT] = ACTIONS(1698), - [anon_sym_e_GT_GT] = ACTIONS(1698), - [anon_sym_o_GT_GT] = ACTIONS(1698), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1698), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1698), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1698), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1698), - [aux_sym_unquoted_token1] = ACTIONS(1690), - [aux_sym_unquoted_token2] = ACTIONS(1429), - [anon_sym_POUND] = ACTIONS(247), - }, - [1486] = { - [sym_comment] = STATE(1486), - [aux_sym_cmd_identifier_token41] = ACTIONS(1519), - [sym__newline] = ACTIONS(1519), - [anon_sym_SEMI] = ACTIONS(1521), - [anon_sym_PIPE] = ACTIONS(1521), - [anon_sym_err_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_GT_PIPE] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), - [anon_sym_RBRACE] = ACTIONS(1521), - [anon_sym_EQ_GT] = ACTIONS(1521), - [aux_sym_expr_binary_token1] = ACTIONS(1521), - [aux_sym_expr_binary_token2] = ACTIONS(1521), - [aux_sym_expr_binary_token3] = ACTIONS(1521), - [aux_sym_expr_binary_token4] = ACTIONS(1521), - [aux_sym_expr_binary_token5] = ACTIONS(1521), - [aux_sym_expr_binary_token6] = ACTIONS(1521), - [aux_sym_expr_binary_token7] = ACTIONS(1521), - [aux_sym_expr_binary_token8] = ACTIONS(1521), - [aux_sym_expr_binary_token9] = ACTIONS(1521), - [aux_sym_expr_binary_token10] = ACTIONS(1521), - [aux_sym_expr_binary_token11] = ACTIONS(1521), - [aux_sym_expr_binary_token12] = ACTIONS(1521), - [aux_sym_expr_binary_token13] = ACTIONS(1521), - [aux_sym_expr_binary_token14] = ACTIONS(1521), - [aux_sym_expr_binary_token15] = ACTIONS(1521), - [aux_sym_expr_binary_token16] = ACTIONS(1521), - [aux_sym_expr_binary_token17] = ACTIONS(1521), - [aux_sym_expr_binary_token18] = ACTIONS(1521), - [aux_sym_expr_binary_token19] = ACTIONS(1521), - [aux_sym_expr_binary_token20] = ACTIONS(1521), - [aux_sym_expr_binary_token21] = ACTIONS(1521), - [aux_sym_expr_binary_token22] = ACTIONS(1521), - [aux_sym_expr_binary_token23] = ACTIONS(1521), - [aux_sym_expr_binary_token24] = ACTIONS(1521), - [aux_sym_expr_binary_token25] = ACTIONS(1521), - [aux_sym_expr_binary_token26] = ACTIONS(1521), - [aux_sym_expr_binary_token27] = ACTIONS(1521), - [aux_sym_expr_binary_token28] = ACTIONS(1521), - [anon_sym_DOT_DOT2] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), - [aux_sym__immediate_decimal_token2] = ACTIONS(4811), - [sym_filesize_unit] = ACTIONS(1521), - [sym_duration_unit] = ACTIONS(1521), - [aux_sym_record_entry_token1] = ACTIONS(1521), - [anon_sym_err_GT] = ACTIONS(1519), - [anon_sym_out_GT] = ACTIONS(1519), - [anon_sym_e_GT] = ACTIONS(1519), - [anon_sym_o_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT] = ACTIONS(1519), - [anon_sym_err_GT_GT] = ACTIONS(1521), - [anon_sym_out_GT_GT] = ACTIONS(1521), - [anon_sym_e_GT_GT] = ACTIONS(1521), - [anon_sym_o_GT_GT] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), - [anon_sym_POUND] = ACTIONS(247), - }, - [1487] = { - [sym_cell_path] = STATE(1908), - [sym_path] = STATE(1715), - [sym_comment] = STATE(1487), - [aux_sym_cell_path_repeat1] = STATE(1575), - [anon_sym_true] = ACTIONS(1772), - [anon_sym_false] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1772), - [aux_sym_cmd_identifier_token38] = ACTIONS(1772), - [aux_sym_cmd_identifier_token39] = ACTIONS(1772), - [aux_sym_cmd_identifier_token40] = ACTIONS(1772), - [sym__newline] = ACTIONS(1772), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1772), - [anon_sym_err_GT_PIPE] = ACTIONS(1772), - [anon_sym_out_GT_PIPE] = ACTIONS(1772), - [anon_sym_e_GT_PIPE] = ACTIONS(1772), - [anon_sym_o_GT_PIPE] = ACTIONS(1772), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1772), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1772), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1772), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1772), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_DOLLAR] = ACTIONS(1770), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_DASH] = ACTIONS(1770), - [aux_sym_ctrl_match_token1] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_DOT_DOT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(4763), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1772), - [anon_sym_DOT_DOT_LT] = ACTIONS(1772), - [aux_sym__val_number_decimal_token1] = ACTIONS(1770), - [aux_sym__val_number_decimal_token2] = ACTIONS(1772), - [aux_sym__val_number_decimal_token3] = ACTIONS(1772), - [aux_sym__val_number_decimal_token4] = ACTIONS(1772), - [aux_sym__val_number_token1] = ACTIONS(1772), - [aux_sym__val_number_token2] = ACTIONS(1772), - [aux_sym__val_number_token3] = ACTIONS(1772), - [anon_sym_0b] = ACTIONS(1770), - [anon_sym_0o] = ACTIONS(1770), - [anon_sym_0x] = ACTIONS(1770), - [sym_val_date] = ACTIONS(1772), - [anon_sym_DQUOTE] = ACTIONS(1772), - [sym__str_single_quotes] = ACTIONS(1772), - [sym__str_back_ticks] = ACTIONS(1772), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1772), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1772), - [anon_sym_err_GT] = ACTIONS(1770), - [anon_sym_out_GT] = ACTIONS(1770), - [anon_sym_e_GT] = ACTIONS(1770), - [anon_sym_o_GT] = ACTIONS(1770), - [anon_sym_err_PLUSout_GT] = ACTIONS(1770), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1770), - [anon_sym_o_PLUSe_GT] = ACTIONS(1770), - [anon_sym_e_PLUSo_GT] = ACTIONS(1770), - [anon_sym_err_GT_GT] = ACTIONS(1772), - [anon_sym_out_GT_GT] = ACTIONS(1772), - [anon_sym_e_GT_GT] = ACTIONS(1772), - [anon_sym_o_GT_GT] = ACTIONS(1772), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1772), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1772), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1772), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1772), - [aux_sym_unquoted_token1] = ACTIONS(1770), - [anon_sym_POUND] = ACTIONS(247), - }, - [1488] = { - [sym_comment] = STATE(1488), - [aux_sym_cmd_identifier_token41] = ACTIONS(1473), - [sym__newline] = ACTIONS(1473), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_err_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_GT_PIPE] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_EQ_GT] = ACTIONS(1475), - [aux_sym_expr_binary_token1] = ACTIONS(1475), - [aux_sym_expr_binary_token2] = ACTIONS(1475), - [aux_sym_expr_binary_token3] = ACTIONS(1475), - [aux_sym_expr_binary_token4] = ACTIONS(1475), - [aux_sym_expr_binary_token5] = ACTIONS(1475), - [aux_sym_expr_binary_token6] = ACTIONS(1475), - [aux_sym_expr_binary_token7] = ACTIONS(1475), - [aux_sym_expr_binary_token8] = ACTIONS(1475), - [aux_sym_expr_binary_token9] = ACTIONS(1475), - [aux_sym_expr_binary_token10] = ACTIONS(1475), - [aux_sym_expr_binary_token11] = ACTIONS(1475), - [aux_sym_expr_binary_token12] = ACTIONS(1475), - [aux_sym_expr_binary_token13] = ACTIONS(1475), - [aux_sym_expr_binary_token14] = ACTIONS(1475), - [aux_sym_expr_binary_token15] = ACTIONS(1475), - [aux_sym_expr_binary_token16] = ACTIONS(1475), - [aux_sym_expr_binary_token17] = ACTIONS(1475), - [aux_sym_expr_binary_token18] = ACTIONS(1475), - [aux_sym_expr_binary_token19] = ACTIONS(1475), - [aux_sym_expr_binary_token20] = ACTIONS(1475), - [aux_sym_expr_binary_token21] = ACTIONS(1475), - [aux_sym_expr_binary_token22] = ACTIONS(1475), - [aux_sym_expr_binary_token23] = ACTIONS(1475), - [aux_sym_expr_binary_token24] = ACTIONS(1475), - [aux_sym_expr_binary_token25] = ACTIONS(1475), - [aux_sym_expr_binary_token26] = ACTIONS(1475), - [aux_sym_expr_binary_token27] = ACTIONS(1475), - [aux_sym_expr_binary_token28] = ACTIONS(1475), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [aux_sym__immediate_decimal_token2] = ACTIONS(4744), - [sym_filesize_unit] = ACTIONS(1475), - [sym_duration_unit] = ACTIONS(1475), - [aux_sym_record_entry_token1] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1473), - [anon_sym_out_GT] = ACTIONS(1473), - [anon_sym_e_GT] = ACTIONS(1473), - [anon_sym_o_GT] = ACTIONS(1473), - [anon_sym_err_PLUSout_GT] = ACTIONS(1473), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), - [anon_sym_o_PLUSe_GT] = ACTIONS(1473), - [anon_sym_e_PLUSo_GT] = ACTIONS(1473), - [anon_sym_err_GT_GT] = ACTIONS(1475), - [anon_sym_out_GT_GT] = ACTIONS(1475), - [anon_sym_e_GT_GT] = ACTIONS(1475), - [anon_sym_o_GT_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), - [anon_sym_POUND] = ACTIONS(247), - }, - [1489] = { - [sym__expr_parenthesized_immediate] = STATE(7615), - [sym_comment] = STATE(1489), - [sym__newline] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_RPAREN] = ACTIONS(1537), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_LPAREN2] = ACTIONS(2947), - [aux_sym_expr_binary_token1] = ACTIONS(1537), - [aux_sym_expr_binary_token2] = ACTIONS(1537), - [aux_sym_expr_binary_token3] = ACTIONS(1537), - [aux_sym_expr_binary_token4] = ACTIONS(1537), - [aux_sym_expr_binary_token5] = ACTIONS(1537), - [aux_sym_expr_binary_token6] = ACTIONS(1537), - [aux_sym_expr_binary_token7] = ACTIONS(1537), - [aux_sym_expr_binary_token8] = ACTIONS(1537), - [aux_sym_expr_binary_token9] = ACTIONS(1537), - [aux_sym_expr_binary_token10] = ACTIONS(1537), - [aux_sym_expr_binary_token11] = ACTIONS(1537), - [aux_sym_expr_binary_token12] = ACTIONS(1537), - [aux_sym_expr_binary_token13] = ACTIONS(1537), - [aux_sym_expr_binary_token14] = ACTIONS(1537), - [aux_sym_expr_binary_token15] = ACTIONS(1537), - [aux_sym_expr_binary_token16] = ACTIONS(1537), - [aux_sym_expr_binary_token17] = ACTIONS(1537), - [aux_sym_expr_binary_token18] = ACTIONS(1537), - [aux_sym_expr_binary_token19] = ACTIONS(1537), - [aux_sym_expr_binary_token20] = ACTIONS(1537), - [aux_sym_expr_binary_token21] = ACTIONS(1537), - [aux_sym_expr_binary_token22] = ACTIONS(1537), - [aux_sym_expr_binary_token23] = ACTIONS(1537), - [aux_sym_expr_binary_token24] = ACTIONS(1537), - [aux_sym_expr_binary_token25] = ACTIONS(1537), - [aux_sym_expr_binary_token26] = ACTIONS(1537), - [aux_sym_expr_binary_token27] = ACTIONS(1537), - [aux_sym_expr_binary_token28] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(2949), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2951), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2951), - [sym_filesize_unit] = ACTIONS(4813), - [sym_duration_unit] = ACTIONS(4815), - [anon_sym_err_GT] = ACTIONS(1525), - [anon_sym_out_GT] = ACTIONS(1525), - [anon_sym_e_GT] = ACTIONS(1525), - [anon_sym_o_GT] = ACTIONS(1525), - [anon_sym_err_PLUSout_GT] = ACTIONS(1525), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), - [anon_sym_o_PLUSe_GT] = ACTIONS(1525), - [anon_sym_e_PLUSo_GT] = ACTIONS(1525), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), - [aux_sym_unquoted_token2] = ACTIONS(4817), - [anon_sym_POUND] = ACTIONS(247), - }, - [1490] = { - [sym_cell_path] = STATE(1948), - [sym_path] = STATE(1715), - [sym_comment] = STATE(1490), - [aux_sym_cell_path_repeat1] = STATE(1575), - [anon_sym_true] = ACTIONS(1776), - [anon_sym_false] = ACTIONS(1776), - [anon_sym_null] = ACTIONS(1776), - [aux_sym_cmd_identifier_token38] = ACTIONS(1776), - [aux_sym_cmd_identifier_token39] = ACTIONS(1776), - [aux_sym_cmd_identifier_token40] = ACTIONS(1776), - [sym__newline] = ACTIONS(1776), - [anon_sym_SEMI] = ACTIONS(1776), - [anon_sym_PIPE] = ACTIONS(1776), - [anon_sym_err_GT_PIPE] = ACTIONS(1776), - [anon_sym_out_GT_PIPE] = ACTIONS(1776), - [anon_sym_e_GT_PIPE] = ACTIONS(1776), - [anon_sym_o_GT_PIPE] = ACTIONS(1776), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1776), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1776), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1776), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1776), - [anon_sym_LBRACK] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1776), - [anon_sym_RPAREN] = ACTIONS(1776), - [anon_sym_DOLLAR] = ACTIONS(1774), - [anon_sym_DASH_DASH] = ACTIONS(1776), - [anon_sym_DASH] = ACTIONS(1774), - [aux_sym_ctrl_match_token1] = ACTIONS(1776), - [anon_sym_RBRACE] = ACTIONS(1776), - [anon_sym_DOT_DOT] = ACTIONS(1774), - [anon_sym_DOT] = ACTIONS(4763), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1776), - [anon_sym_DOT_DOT_LT] = ACTIONS(1776), - [aux_sym__val_number_decimal_token1] = ACTIONS(1774), - [aux_sym__val_number_decimal_token2] = ACTIONS(1776), - [aux_sym__val_number_decimal_token3] = ACTIONS(1776), - [aux_sym__val_number_decimal_token4] = ACTIONS(1776), - [aux_sym__val_number_token1] = ACTIONS(1776), - [aux_sym__val_number_token2] = ACTIONS(1776), - [aux_sym__val_number_token3] = ACTIONS(1776), - [anon_sym_0b] = ACTIONS(1774), - [anon_sym_0o] = ACTIONS(1774), - [anon_sym_0x] = ACTIONS(1774), - [sym_val_date] = ACTIONS(1776), - [anon_sym_DQUOTE] = ACTIONS(1776), - [sym__str_single_quotes] = ACTIONS(1776), - [sym__str_back_ticks] = ACTIONS(1776), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1776), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1776), - [anon_sym_err_GT] = ACTIONS(1774), - [anon_sym_out_GT] = ACTIONS(1774), - [anon_sym_e_GT] = ACTIONS(1774), - [anon_sym_o_GT] = ACTIONS(1774), - [anon_sym_err_PLUSout_GT] = ACTIONS(1774), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1774), - [anon_sym_o_PLUSe_GT] = ACTIONS(1774), - [anon_sym_e_PLUSo_GT] = ACTIONS(1774), - [anon_sym_err_GT_GT] = ACTIONS(1776), - [anon_sym_out_GT_GT] = ACTIONS(1776), - [anon_sym_e_GT_GT] = ACTIONS(1776), - [anon_sym_o_GT_GT] = ACTIONS(1776), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1776), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1776), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1776), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1776), - [aux_sym_unquoted_token1] = ACTIONS(1774), - [anon_sym_POUND] = ACTIONS(247), - }, - [1491] = { - [sym_comment] = STATE(1491), - [ts_builtin_sym_end] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [anon_sym_null] = ACTIONS(1591), - [aux_sym_cmd_identifier_token38] = ACTIONS(1591), - [aux_sym_cmd_identifier_token39] = ACTIONS(1591), - [aux_sym_cmd_identifier_token40] = ACTIONS(1591), - [sym__newline] = ACTIONS(1591), - [anon_sym_SEMI] = ACTIONS(1591), - [anon_sym_PIPE] = ACTIONS(1591), - [anon_sym_err_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_GT_PIPE] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), - [anon_sym_LBRACK] = ACTIONS(1591), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_DASH] = ACTIONS(1589), - [aux_sym_ctrl_match_token1] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1591), - [anon_sym_DOT_DOT2] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token3] = ACTIONS(1591), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(1591), - [aux_sym__val_number_token2] = ACTIONS(1591), - [aux_sym__val_number_token3] = ACTIONS(1591), - [anon_sym_0b] = ACTIONS(1589), - [anon_sym_0o] = ACTIONS(1589), - [anon_sym_0x] = ACTIONS(1589), - [sym_val_date] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym__str_single_quotes] = ACTIONS(1591), - [sym__str_back_ticks] = ACTIONS(1591), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), - [anon_sym_err_GT] = ACTIONS(1589), - [anon_sym_out_GT] = ACTIONS(1589), - [anon_sym_e_GT] = ACTIONS(1589), - [anon_sym_o_GT] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT] = ACTIONS(1589), - [anon_sym_err_GT_GT] = ACTIONS(1591), - [anon_sym_out_GT_GT] = ACTIONS(1591), - [anon_sym_e_GT_GT] = ACTIONS(1591), - [anon_sym_o_GT_GT] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), - [aux_sym_unquoted_token1] = ACTIONS(1589), - [aux_sym_unquoted_token2] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(247), - }, - [1492] = { - [sym_comment] = STATE(1492), - [sym__newline] = ACTIONS(1473), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_err_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_GT_PIPE] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), - [anon_sym_RPAREN] = ACTIONS(1475), - [anon_sym_LPAREN2] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1475), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT] = ACTIONS(4819), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [aux_sym__immediate_decimal_token2] = ACTIONS(4821), - [sym_filesize_unit] = ACTIONS(1475), - [sym_duration_unit] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1473), - [anon_sym_out_GT] = ACTIONS(1473), - [anon_sym_e_GT] = ACTIONS(1473), - [anon_sym_o_GT] = ACTIONS(1473), - [anon_sym_err_PLUSout_GT] = ACTIONS(1473), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), - [anon_sym_o_PLUSe_GT] = ACTIONS(1473), - [anon_sym_e_PLUSo_GT] = ACTIONS(1473), - [anon_sym_err_GT_GT] = ACTIONS(1475), - [anon_sym_out_GT_GT] = ACTIONS(1475), - [anon_sym_e_GT_GT] = ACTIONS(1475), - [anon_sym_o_GT_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), - [aux_sym_unquoted_token2] = ACTIONS(1473), - [anon_sym_POUND] = ACTIONS(247), - }, - [1493] = { - [sym_cell_path] = STATE(1914), - [sym_path] = STATE(1715), - [sym_comment] = STATE(1493), - [aux_sym_cell_path_repeat1] = STATE(1575), - [anon_sym_true] = ACTIONS(1849), - [anon_sym_false] = ACTIONS(1849), - [anon_sym_null] = ACTIONS(1849), - [aux_sym_cmd_identifier_token38] = ACTIONS(1849), - [aux_sym_cmd_identifier_token39] = ACTIONS(1849), - [aux_sym_cmd_identifier_token40] = ACTIONS(1849), - [sym__newline] = ACTIONS(1849), - [anon_sym_SEMI] = ACTIONS(1849), - [anon_sym_PIPE] = ACTIONS(1849), - [anon_sym_err_GT_PIPE] = ACTIONS(1849), - [anon_sym_out_GT_PIPE] = ACTIONS(1849), - [anon_sym_e_GT_PIPE] = ACTIONS(1849), - [anon_sym_o_GT_PIPE] = ACTIONS(1849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1849), - [anon_sym_LPAREN] = ACTIONS(1849), - [anon_sym_RPAREN] = ACTIONS(1849), - [anon_sym_DOLLAR] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_DASH] = ACTIONS(1847), - [aux_sym_ctrl_match_token1] = ACTIONS(1849), - [anon_sym_RBRACE] = ACTIONS(1849), - [anon_sym_DOT_DOT] = ACTIONS(1847), - [anon_sym_DOT] = ACTIONS(4763), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1849), - [anon_sym_DOT_DOT_LT] = ACTIONS(1849), - [aux_sym__val_number_decimal_token1] = ACTIONS(1847), - [aux_sym__val_number_decimal_token2] = ACTIONS(1849), - [aux_sym__val_number_decimal_token3] = ACTIONS(1849), - [aux_sym__val_number_decimal_token4] = ACTIONS(1849), - [aux_sym__val_number_token1] = ACTIONS(1849), - [aux_sym__val_number_token2] = ACTIONS(1849), - [aux_sym__val_number_token3] = ACTIONS(1849), - [anon_sym_0b] = ACTIONS(1847), - [anon_sym_0o] = ACTIONS(1847), - [anon_sym_0x] = ACTIONS(1847), - [sym_val_date] = ACTIONS(1849), - [anon_sym_DQUOTE] = ACTIONS(1849), - [sym__str_single_quotes] = ACTIONS(1849), - [sym__str_back_ticks] = ACTIONS(1849), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1849), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1849), - [anon_sym_err_GT] = ACTIONS(1847), - [anon_sym_out_GT] = ACTIONS(1847), - [anon_sym_e_GT] = ACTIONS(1847), - [anon_sym_o_GT] = ACTIONS(1847), - [anon_sym_err_PLUSout_GT] = ACTIONS(1847), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1847), - [anon_sym_o_PLUSe_GT] = ACTIONS(1847), - [anon_sym_e_PLUSo_GT] = ACTIONS(1847), - [anon_sym_err_GT_GT] = ACTIONS(1849), - [anon_sym_out_GT_GT] = ACTIONS(1849), - [anon_sym_e_GT_GT] = ACTIONS(1849), - [anon_sym_o_GT_GT] = ACTIONS(1849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1849), - [aux_sym_unquoted_token1] = ACTIONS(1847), - [anon_sym_POUND] = ACTIONS(247), - }, - [1494] = { - [sym_comment] = STATE(1494), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [anon_sym_null] = ACTIONS(1591), - [aux_sym_cmd_identifier_token38] = ACTIONS(1591), - [aux_sym_cmd_identifier_token39] = ACTIONS(1591), - [aux_sym_cmd_identifier_token40] = ACTIONS(1591), - [sym__newline] = ACTIONS(1591), - [anon_sym_SEMI] = ACTIONS(1591), - [anon_sym_PIPE] = ACTIONS(1591), - [anon_sym_err_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_GT_PIPE] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), - [anon_sym_LBRACK] = ACTIONS(1591), - [anon_sym_LPAREN] = ACTIONS(1591), - [anon_sym_RPAREN] = ACTIONS(1591), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_DASH] = ACTIONS(1589), - [aux_sym_ctrl_match_token1] = ACTIONS(1591), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_DOT_DOT2] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), - [aux_sym__immediate_decimal_token2] = ACTIONS(4708), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token3] = ACTIONS(1591), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(1591), - [aux_sym__val_number_token2] = ACTIONS(1591), - [aux_sym__val_number_token3] = ACTIONS(1591), - [anon_sym_0b] = ACTIONS(1589), - [anon_sym_0o] = ACTIONS(1589), - [anon_sym_0x] = ACTIONS(1589), - [sym_val_date] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym__str_single_quotes] = ACTIONS(1591), - [sym__str_back_ticks] = ACTIONS(1591), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), - [anon_sym_err_GT] = ACTIONS(1589), - [anon_sym_out_GT] = ACTIONS(1589), - [anon_sym_e_GT] = ACTIONS(1589), - [anon_sym_o_GT] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT] = ACTIONS(1589), - [anon_sym_err_GT_GT] = ACTIONS(1591), - [anon_sym_out_GT_GT] = ACTIONS(1591), - [anon_sym_e_GT_GT] = ACTIONS(1591), - [anon_sym_o_GT_GT] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), - [aux_sym_unquoted_token1] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(247), - }, - [1495] = { - [sym_comment] = STATE(1495), - [ts_builtin_sym_end] = ACTIONS(1008), - [anon_sym_EQ] = ACTIONS(4823), - [anon_sym_PLUS_EQ] = ACTIONS(4825), - [anon_sym_DASH_EQ] = ACTIONS(4825), - [anon_sym_STAR_EQ] = ACTIONS(4825), - [anon_sym_SLASH_EQ] = ACTIONS(4825), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4825), - [sym__newline] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_err_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_GT_PIPE] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), - [aux_sym_expr_binary_token1] = ACTIONS(1008), - [aux_sym_expr_binary_token2] = ACTIONS(1008), - [aux_sym_expr_binary_token3] = ACTIONS(1008), - [aux_sym_expr_binary_token4] = ACTIONS(1008), - [aux_sym_expr_binary_token5] = ACTIONS(1008), - [aux_sym_expr_binary_token6] = ACTIONS(1008), - [aux_sym_expr_binary_token7] = ACTIONS(1008), - [aux_sym_expr_binary_token8] = ACTIONS(1008), - [aux_sym_expr_binary_token9] = ACTIONS(1008), - [aux_sym_expr_binary_token10] = ACTIONS(1008), - [aux_sym_expr_binary_token11] = ACTIONS(1008), - [aux_sym_expr_binary_token12] = ACTIONS(1008), - [aux_sym_expr_binary_token13] = ACTIONS(1008), - [aux_sym_expr_binary_token14] = ACTIONS(1008), - [aux_sym_expr_binary_token15] = ACTIONS(1008), - [aux_sym_expr_binary_token16] = ACTIONS(1008), - [aux_sym_expr_binary_token17] = ACTIONS(1008), - [aux_sym_expr_binary_token18] = ACTIONS(1008), - [aux_sym_expr_binary_token19] = ACTIONS(1008), - [aux_sym_expr_binary_token20] = ACTIONS(1008), - [aux_sym_expr_binary_token21] = ACTIONS(1008), - [aux_sym_expr_binary_token22] = ACTIONS(1008), - [aux_sym_expr_binary_token23] = ACTIONS(1008), - [aux_sym_expr_binary_token24] = ACTIONS(1008), - [aux_sym_expr_binary_token25] = ACTIONS(1008), - [aux_sym_expr_binary_token26] = ACTIONS(1008), - [aux_sym_expr_binary_token27] = ACTIONS(1008), - [aux_sym_expr_binary_token28] = ACTIONS(1008), - [anon_sym_DOT_DOT2] = ACTIONS(4827), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4829), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4829), - [anon_sym_err_GT] = ACTIONS(1006), - [anon_sym_out_GT] = ACTIONS(1006), - [anon_sym_e_GT] = ACTIONS(1006), - [anon_sym_o_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT] = ACTIONS(1006), - [anon_sym_err_GT_GT] = ACTIONS(1008), - [anon_sym_out_GT_GT] = ACTIONS(1008), - [anon_sym_e_GT_GT] = ACTIONS(1008), - [anon_sym_o_GT_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), - [anon_sym_POUND] = ACTIONS(247), - }, - [1496] = { - [sym_cell_path] = STATE(1916), - [sym_path] = STATE(1715), - [sym_comment] = STATE(1496), - [aux_sym_cell_path_repeat1] = STATE(1575), - [anon_sym_true] = ACTIONS(1873), - [anon_sym_false] = ACTIONS(1873), - [anon_sym_null] = ACTIONS(1873), - [aux_sym_cmd_identifier_token38] = ACTIONS(1873), - [aux_sym_cmd_identifier_token39] = ACTIONS(1873), - [aux_sym_cmd_identifier_token40] = ACTIONS(1873), - [sym__newline] = ACTIONS(1873), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym_PIPE] = ACTIONS(1873), - [anon_sym_err_GT_PIPE] = ACTIONS(1873), - [anon_sym_out_GT_PIPE] = ACTIONS(1873), - [anon_sym_e_GT_PIPE] = ACTIONS(1873), - [anon_sym_o_GT_PIPE] = ACTIONS(1873), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1873), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1873), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1873), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1873), - [anon_sym_LBRACK] = ACTIONS(1873), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_RPAREN] = ACTIONS(1873), - [anon_sym_DOLLAR] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1871), - [aux_sym_ctrl_match_token1] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(1873), - [anon_sym_DOT_DOT] = ACTIONS(1871), - [anon_sym_DOT] = ACTIONS(4763), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1873), - [anon_sym_DOT_DOT_LT] = ACTIONS(1873), - [aux_sym__val_number_decimal_token1] = ACTIONS(1871), - [aux_sym__val_number_decimal_token2] = ACTIONS(1873), - [aux_sym__val_number_decimal_token3] = ACTIONS(1873), - [aux_sym__val_number_decimal_token4] = ACTIONS(1873), - [aux_sym__val_number_token1] = ACTIONS(1873), - [aux_sym__val_number_token2] = ACTIONS(1873), - [aux_sym__val_number_token3] = ACTIONS(1873), - [anon_sym_0b] = ACTIONS(1871), - [anon_sym_0o] = ACTIONS(1871), - [anon_sym_0x] = ACTIONS(1871), - [sym_val_date] = ACTIONS(1873), - [anon_sym_DQUOTE] = ACTIONS(1873), - [sym__str_single_quotes] = ACTIONS(1873), - [sym__str_back_ticks] = ACTIONS(1873), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1873), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1873), - [anon_sym_err_GT] = ACTIONS(1871), - [anon_sym_out_GT] = ACTIONS(1871), - [anon_sym_e_GT] = ACTIONS(1871), - [anon_sym_o_GT] = ACTIONS(1871), - [anon_sym_err_PLUSout_GT] = ACTIONS(1871), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1871), - [anon_sym_o_PLUSe_GT] = ACTIONS(1871), - [anon_sym_e_PLUSo_GT] = ACTIONS(1871), - [anon_sym_err_GT_GT] = ACTIONS(1873), - [anon_sym_out_GT_GT] = ACTIONS(1873), - [anon_sym_e_GT_GT] = ACTIONS(1873), - [anon_sym_o_GT_GT] = ACTIONS(1873), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1873), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1873), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1873), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1873), - [aux_sym_unquoted_token1] = ACTIONS(1871), - [anon_sym_POUND] = ACTIONS(247), - }, - [1497] = { - [sym_comment] = STATE(1497), - [ts_builtin_sym_end] = ACTIONS(1483), - [sym__newline] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_err_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_GT_PIPE] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), - [anon_sym_LPAREN2] = ACTIONS(1483), - [aux_sym_expr_binary_token1] = ACTIONS(1483), - [aux_sym_expr_binary_token2] = ACTIONS(1483), - [aux_sym_expr_binary_token3] = ACTIONS(1483), - [aux_sym_expr_binary_token4] = ACTIONS(1483), - [aux_sym_expr_binary_token5] = ACTIONS(1483), - [aux_sym_expr_binary_token6] = ACTIONS(1483), - [aux_sym_expr_binary_token7] = ACTIONS(1483), - [aux_sym_expr_binary_token8] = ACTIONS(1483), - [aux_sym_expr_binary_token9] = ACTIONS(1483), - [aux_sym_expr_binary_token10] = ACTIONS(1483), - [aux_sym_expr_binary_token11] = ACTIONS(1483), - [aux_sym_expr_binary_token12] = ACTIONS(1483), - [aux_sym_expr_binary_token13] = ACTIONS(1483), - [aux_sym_expr_binary_token14] = ACTIONS(1483), - [aux_sym_expr_binary_token15] = ACTIONS(1483), - [aux_sym_expr_binary_token16] = ACTIONS(1483), - [aux_sym_expr_binary_token17] = ACTIONS(1483), - [aux_sym_expr_binary_token18] = ACTIONS(1483), - [aux_sym_expr_binary_token19] = ACTIONS(1483), - [aux_sym_expr_binary_token20] = ACTIONS(1483), - [aux_sym_expr_binary_token21] = ACTIONS(1483), - [aux_sym_expr_binary_token22] = ACTIONS(1483), - [aux_sym_expr_binary_token23] = ACTIONS(1483), - [aux_sym_expr_binary_token24] = ACTIONS(1483), - [aux_sym_expr_binary_token25] = ACTIONS(1483), - [aux_sym_expr_binary_token26] = ACTIONS(1483), - [aux_sym_expr_binary_token27] = ACTIONS(1483), - [aux_sym_expr_binary_token28] = ACTIONS(1483), - [anon_sym_DOT_DOT2] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), - [aux_sym__immediate_decimal_token1] = ACTIONS(4831), - [aux_sym__immediate_decimal_token2] = ACTIONS(4833), - [sym_filesize_unit] = ACTIONS(1483), - [sym_duration_unit] = ACTIONS(1483), - [anon_sym_err_GT] = ACTIONS(1481), - [anon_sym_out_GT] = ACTIONS(1481), - [anon_sym_e_GT] = ACTIONS(1481), - [anon_sym_o_GT] = ACTIONS(1481), - [anon_sym_err_PLUSout_GT] = ACTIONS(1481), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), - [anon_sym_o_PLUSe_GT] = ACTIONS(1481), - [anon_sym_e_PLUSo_GT] = ACTIONS(1481), - [anon_sym_err_GT_GT] = ACTIONS(1483), - [anon_sym_out_GT_GT] = ACTIONS(1483), - [anon_sym_e_GT_GT] = ACTIONS(1483), - [anon_sym_o_GT_GT] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), - [aux_sym_unquoted_token2] = ACTIONS(1481), - [anon_sym_POUND] = ACTIONS(247), - }, - [1498] = { - [sym_cell_path] = STATE(1923), - [sym_path] = STATE(1715), - [sym_comment] = STATE(1498), - [aux_sym_cell_path_repeat1] = STATE(1575), - [anon_sym_true] = ACTIONS(1877), - [anon_sym_false] = ACTIONS(1877), - [anon_sym_null] = ACTIONS(1877), - [aux_sym_cmd_identifier_token38] = ACTIONS(1877), - [aux_sym_cmd_identifier_token39] = ACTIONS(1877), - [aux_sym_cmd_identifier_token40] = ACTIONS(1877), - [sym__newline] = ACTIONS(1877), - [anon_sym_SEMI] = ACTIONS(1877), - [anon_sym_PIPE] = ACTIONS(1877), - [anon_sym_err_GT_PIPE] = ACTIONS(1877), - [anon_sym_out_GT_PIPE] = ACTIONS(1877), - [anon_sym_e_GT_PIPE] = ACTIONS(1877), - [anon_sym_o_GT_PIPE] = ACTIONS(1877), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1877), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1877), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1877), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1877), - [anon_sym_LBRACK] = ACTIONS(1877), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_RPAREN] = ACTIONS(1877), - [anon_sym_DOLLAR] = ACTIONS(1875), - [anon_sym_DASH_DASH] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1875), - [aux_sym_ctrl_match_token1] = ACTIONS(1877), - [anon_sym_RBRACE] = ACTIONS(1877), - [anon_sym_DOT_DOT] = ACTIONS(1875), - [anon_sym_DOT] = ACTIONS(4763), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1877), - [anon_sym_DOT_DOT_LT] = ACTIONS(1877), - [aux_sym__val_number_decimal_token1] = ACTIONS(1875), - [aux_sym__val_number_decimal_token2] = ACTIONS(1877), - [aux_sym__val_number_decimal_token3] = ACTIONS(1877), - [aux_sym__val_number_decimal_token4] = ACTIONS(1877), - [aux_sym__val_number_token1] = ACTIONS(1877), - [aux_sym__val_number_token2] = ACTIONS(1877), - [aux_sym__val_number_token3] = ACTIONS(1877), - [anon_sym_0b] = ACTIONS(1875), - [anon_sym_0o] = ACTIONS(1875), - [anon_sym_0x] = ACTIONS(1875), - [sym_val_date] = ACTIONS(1877), - [anon_sym_DQUOTE] = ACTIONS(1877), - [sym__str_single_quotes] = ACTIONS(1877), - [sym__str_back_ticks] = ACTIONS(1877), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1877), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1877), - [anon_sym_err_GT] = ACTIONS(1875), - [anon_sym_out_GT] = ACTIONS(1875), - [anon_sym_e_GT] = ACTIONS(1875), - [anon_sym_o_GT] = ACTIONS(1875), - [anon_sym_err_PLUSout_GT] = ACTIONS(1875), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1875), - [anon_sym_o_PLUSe_GT] = ACTIONS(1875), - [anon_sym_e_PLUSo_GT] = ACTIONS(1875), - [anon_sym_err_GT_GT] = ACTIONS(1877), - [anon_sym_out_GT_GT] = ACTIONS(1877), - [anon_sym_e_GT_GT] = ACTIONS(1877), - [anon_sym_o_GT_GT] = ACTIONS(1877), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1877), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1877), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1877), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1877), - [aux_sym_unquoted_token1] = ACTIONS(1875), - [anon_sym_POUND] = ACTIONS(247), - }, - [1499] = { - [sym_comment] = STATE(1499), - [aux_sym_cmd_identifier_token41] = ACTIONS(1481), - [sym__newline] = ACTIONS(1481), - [anon_sym_SEMI] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_err_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_GT_PIPE] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), - [anon_sym_RPAREN] = ACTIONS(1483), - [aux_sym_ctrl_match_token1] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1483), - [anon_sym_DOT_DOT2] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), - [aux_sym__immediate_decimal_token1] = ACTIONS(4835), - [aux_sym__immediate_decimal_token2] = ACTIONS(4837), - [sym_filesize_unit] = ACTIONS(1483), - [sym_duration_unit] = ACTIONS(1483), - [anon_sym_err_GT] = ACTIONS(1481), - [anon_sym_out_GT] = ACTIONS(1481), - [anon_sym_e_GT] = ACTIONS(1481), - [anon_sym_o_GT] = ACTIONS(1481), - [anon_sym_err_PLUSout_GT] = ACTIONS(1481), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), - [anon_sym_o_PLUSe_GT] = ACTIONS(1481), - [anon_sym_e_PLUSo_GT] = ACTIONS(1481), - [anon_sym_err_GT_GT] = ACTIONS(1483), - [anon_sym_out_GT_GT] = ACTIONS(1483), - [anon_sym_e_GT_GT] = ACTIONS(1483), - [anon_sym_o_GT_GT] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), - [anon_sym_POUND] = ACTIONS(247), - }, - [1500] = { - [sym_comment] = STATE(1500), - [aux_sym_cmd_identifier_token41] = ACTIONS(1473), - [sym__newline] = ACTIONS(1473), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_err_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_GT_PIPE] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), - [anon_sym_RPAREN] = ACTIONS(1475), - [aux_sym_ctrl_match_token1] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1475), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT] = ACTIONS(4839), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [aux_sym__immediate_decimal_token2] = ACTIONS(4841), - [sym_filesize_unit] = ACTIONS(1475), - [sym_duration_unit] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1473), - [anon_sym_out_GT] = ACTIONS(1473), - [anon_sym_e_GT] = ACTIONS(1473), - [anon_sym_o_GT] = ACTIONS(1473), - [anon_sym_err_PLUSout_GT] = ACTIONS(1473), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), - [anon_sym_o_PLUSe_GT] = ACTIONS(1473), - [anon_sym_e_PLUSo_GT] = ACTIONS(1473), - [anon_sym_err_GT_GT] = ACTIONS(1475), - [anon_sym_out_GT_GT] = ACTIONS(1475), - [anon_sym_e_GT_GT] = ACTIONS(1475), - [anon_sym_o_GT_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), - [anon_sym_POUND] = ACTIONS(247), - }, - [1501] = { - [sym_comment] = STATE(1501), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [anon_sym_null] = ACTIONS(1650), - [aux_sym_cmd_identifier_token38] = ACTIONS(1650), - [aux_sym_cmd_identifier_token39] = ACTIONS(1650), - [aux_sym_cmd_identifier_token40] = ACTIONS(1650), - [sym__newline] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_err_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_GT_PIPE] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_RPAREN] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_DASH] = ACTIONS(1648), - [aux_sym_ctrl_match_token1] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_DOT_DOT] = ACTIONS(1648), - [anon_sym_DOT_DOT2] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1648), - [anon_sym_DOT_DOT_LT] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), - [aux_sym__immediate_decimal_token2] = ACTIONS(4843), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token3] = ACTIONS(1650), - [aux_sym__val_number_decimal_token4] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [anon_sym_0b] = ACTIONS(1648), - [anon_sym_0o] = ACTIONS(1648), - [anon_sym_0x] = ACTIONS(1648), - [sym_val_date] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), - [anon_sym_err_GT] = ACTIONS(1648), - [anon_sym_out_GT] = ACTIONS(1648), - [anon_sym_e_GT] = ACTIONS(1648), - [anon_sym_o_GT] = ACTIONS(1648), - [anon_sym_err_PLUSout_GT] = ACTIONS(1648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1648), - [anon_sym_o_PLUSe_GT] = ACTIONS(1648), - [anon_sym_e_PLUSo_GT] = ACTIONS(1648), - [anon_sym_err_GT_GT] = ACTIONS(1650), - [anon_sym_out_GT_GT] = ACTIONS(1650), - [anon_sym_e_GT_GT] = ACTIONS(1650), - [anon_sym_o_GT_GT] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1650), - [aux_sym_unquoted_token1] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(247), - }, - [1502] = { - [sym_comment] = STATE(1502), - [ts_builtin_sym_end] = ACTIONS(964), - [anon_sym_true] = ACTIONS(964), - [anon_sym_false] = ACTIONS(964), - [anon_sym_null] = ACTIONS(964), - [aux_sym_cmd_identifier_token38] = ACTIONS(964), - [aux_sym_cmd_identifier_token39] = ACTIONS(964), - [aux_sym_cmd_identifier_token40] = ACTIONS(964), - [sym__newline] = ACTIONS(964), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_PIPE] = ACTIONS(964), - [anon_sym_err_GT_PIPE] = ACTIONS(964), - [anon_sym_out_GT_PIPE] = ACTIONS(964), - [anon_sym_e_GT_PIPE] = ACTIONS(964), - [anon_sym_o_GT_PIPE] = ACTIONS(964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(964), - [anon_sym_LBRACK] = ACTIONS(964), - [anon_sym_LPAREN] = ACTIONS(964), - [anon_sym_DOLLAR] = ACTIONS(962), - [anon_sym_DASH_DASH] = ACTIONS(964), - [anon_sym_DASH] = ACTIONS(962), - [aux_sym_ctrl_match_token1] = ACTIONS(964), - [anon_sym_DOT_DOT] = ACTIONS(962), - [anon_sym_QMARK2] = ACTIONS(964), - [anon_sym_DOT_DOT2] = ACTIONS(962), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_DOT_DOT_EQ] = ACTIONS(962), - [anon_sym_DOT_DOT_LT] = ACTIONS(962), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(964), - [anon_sym_DOT_DOT_LT2] = ACTIONS(964), - [aux_sym__val_number_decimal_token1] = ACTIONS(962), - [aux_sym__val_number_decimal_token2] = ACTIONS(964), - [aux_sym__val_number_decimal_token3] = ACTIONS(964), - [aux_sym__val_number_decimal_token4] = ACTIONS(964), - [aux_sym__val_number_token1] = ACTIONS(964), - [aux_sym__val_number_token2] = ACTIONS(964), - [aux_sym__val_number_token3] = ACTIONS(964), - [anon_sym_0b] = ACTIONS(962), - [anon_sym_0o] = ACTIONS(962), - [anon_sym_0x] = ACTIONS(962), - [sym_val_date] = ACTIONS(964), - [anon_sym_DQUOTE] = ACTIONS(964), - [sym__str_single_quotes] = ACTIONS(964), - [sym__str_back_ticks] = ACTIONS(964), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(964), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(964), - [anon_sym_err_GT] = ACTIONS(962), - [anon_sym_out_GT] = ACTIONS(962), - [anon_sym_e_GT] = ACTIONS(962), - [anon_sym_o_GT] = ACTIONS(962), - [anon_sym_err_PLUSout_GT] = ACTIONS(962), - [anon_sym_out_PLUSerr_GT] = ACTIONS(962), - [anon_sym_o_PLUSe_GT] = ACTIONS(962), - [anon_sym_e_PLUSo_GT] = ACTIONS(962), - [anon_sym_err_GT_GT] = ACTIONS(964), - [anon_sym_out_GT_GT] = ACTIONS(964), - [anon_sym_e_GT_GT] = ACTIONS(964), - [anon_sym_o_GT_GT] = ACTIONS(964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(964), - [aux_sym_unquoted_token1] = ACTIONS(962), - [anon_sym_POUND] = ACTIONS(247), - }, - [1503] = { - [sym_cell_path] = STATE(1819), - [sym_path] = STATE(1715), - [sym_comment] = STATE(1503), - [aux_sym_cell_path_repeat1] = STATE(1575), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_null] = ACTIONS(1780), - [aux_sym_cmd_identifier_token38] = ACTIONS(1780), - [aux_sym_cmd_identifier_token39] = ACTIONS(1780), - [aux_sym_cmd_identifier_token40] = ACTIONS(1780), - [sym__newline] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_PIPE] = ACTIONS(1780), - [anon_sym_err_GT_PIPE] = ACTIONS(1780), - [anon_sym_out_GT_PIPE] = ACTIONS(1780), - [anon_sym_e_GT_PIPE] = ACTIONS(1780), - [anon_sym_o_GT_PIPE] = ACTIONS(1780), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1780), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1780), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1780), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_RPAREN] = ACTIONS(1780), - [anon_sym_DOLLAR] = ACTIONS(1778), - [anon_sym_DASH_DASH] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1778), - [aux_sym_ctrl_match_token1] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(4763), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1780), - [anon_sym_DOT_DOT_LT] = ACTIONS(1780), - [aux_sym__val_number_decimal_token1] = ACTIONS(1778), - [aux_sym__val_number_decimal_token2] = ACTIONS(1780), - [aux_sym__val_number_decimal_token3] = ACTIONS(1780), - [aux_sym__val_number_decimal_token4] = ACTIONS(1780), - [aux_sym__val_number_token1] = ACTIONS(1780), - [aux_sym__val_number_token2] = ACTIONS(1780), - [aux_sym__val_number_token3] = ACTIONS(1780), - [anon_sym_0b] = ACTIONS(1778), - [anon_sym_0o] = ACTIONS(1778), - [anon_sym_0x] = ACTIONS(1778), - [sym_val_date] = ACTIONS(1780), - [anon_sym_DQUOTE] = ACTIONS(1780), - [sym__str_single_quotes] = ACTIONS(1780), - [sym__str_back_ticks] = ACTIONS(1780), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1780), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1780), - [anon_sym_err_GT] = ACTIONS(1778), - [anon_sym_out_GT] = ACTIONS(1778), - [anon_sym_e_GT] = ACTIONS(1778), - [anon_sym_o_GT] = ACTIONS(1778), - [anon_sym_err_PLUSout_GT] = ACTIONS(1778), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1778), - [anon_sym_o_PLUSe_GT] = ACTIONS(1778), - [anon_sym_e_PLUSo_GT] = ACTIONS(1778), - [anon_sym_err_GT_GT] = ACTIONS(1780), - [anon_sym_out_GT_GT] = ACTIONS(1780), - [anon_sym_e_GT_GT] = ACTIONS(1780), - [anon_sym_o_GT_GT] = ACTIONS(1780), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1780), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1780), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1780), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1780), - [aux_sym_unquoted_token1] = ACTIONS(1778), - [anon_sym_POUND] = ACTIONS(247), - }, - [1504] = { - [sym_comment] = STATE(1504), - [ts_builtin_sym_end] = ACTIONS(968), - [anon_sym_true] = ACTIONS(968), - [anon_sym_false] = ACTIONS(968), - [anon_sym_null] = ACTIONS(968), - [aux_sym_cmd_identifier_token38] = ACTIONS(968), - [aux_sym_cmd_identifier_token39] = ACTIONS(968), - [aux_sym_cmd_identifier_token40] = ACTIONS(968), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_LBRACK] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_DOLLAR] = ACTIONS(966), - [anon_sym_DASH_DASH] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(966), - [aux_sym_ctrl_match_token1] = ACTIONS(968), - [anon_sym_DOT_DOT] = ACTIONS(966), - [anon_sym_QMARK2] = ACTIONS(968), - [anon_sym_DOT_DOT2] = ACTIONS(966), - [anon_sym_DOT] = ACTIONS(966), - [anon_sym_DOT_DOT_EQ] = ACTIONS(966), - [anon_sym_DOT_DOT_LT] = ACTIONS(966), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(968), - [anon_sym_DOT_DOT_LT2] = ACTIONS(968), - [aux_sym__val_number_decimal_token1] = ACTIONS(966), - [aux_sym__val_number_decimal_token2] = ACTIONS(968), - [aux_sym__val_number_decimal_token3] = ACTIONS(968), - [aux_sym__val_number_decimal_token4] = ACTIONS(968), - [aux_sym__val_number_token1] = ACTIONS(968), - [aux_sym__val_number_token2] = ACTIONS(968), - [aux_sym__val_number_token3] = ACTIONS(968), - [anon_sym_0b] = ACTIONS(966), - [anon_sym_0o] = ACTIONS(966), - [anon_sym_0x] = ACTIONS(966), - [sym_val_date] = ACTIONS(968), - [anon_sym_DQUOTE] = ACTIONS(968), - [sym__str_single_quotes] = ACTIONS(968), - [sym__str_back_ticks] = ACTIONS(968), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(968), - [anon_sym_err_GT] = ACTIONS(966), - [anon_sym_out_GT] = ACTIONS(966), - [anon_sym_e_GT] = ACTIONS(966), - [anon_sym_o_GT] = ACTIONS(966), - [anon_sym_err_PLUSout_GT] = ACTIONS(966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(966), - [anon_sym_o_PLUSe_GT] = ACTIONS(966), - [anon_sym_e_PLUSo_GT] = ACTIONS(966), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [aux_sym_unquoted_token1] = ACTIONS(966), - [anon_sym_POUND] = ACTIONS(247), - }, - [1505] = { - [sym_cell_path] = STATE(1840), - [sym_path] = STATE(1715), - [sym_comment] = STATE(1505), - [aux_sym_cell_path_repeat1] = STATE(1575), - [anon_sym_true] = ACTIONS(947), - [anon_sym_false] = ACTIONS(947), - [anon_sym_null] = ACTIONS(947), - [aux_sym_cmd_identifier_token38] = ACTIONS(947), - [aux_sym_cmd_identifier_token39] = ACTIONS(947), - [aux_sym_cmd_identifier_token40] = ACTIONS(947), - [sym__newline] = ACTIONS(947), - [anon_sym_SEMI] = ACTIONS(947), - [anon_sym_PIPE] = ACTIONS(947), - [anon_sym_err_GT_PIPE] = ACTIONS(947), - [anon_sym_out_GT_PIPE] = ACTIONS(947), - [anon_sym_e_GT_PIPE] = ACTIONS(947), - [anon_sym_o_GT_PIPE] = ACTIONS(947), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(947), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(947), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(947), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(947), - [anon_sym_DOLLAR] = ACTIONS(945), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(945), - [aux_sym_ctrl_match_token1] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(947), - [anon_sym_DOT_DOT] = ACTIONS(945), - [anon_sym_DOT] = ACTIONS(4763), - [anon_sym_DOT_DOT_EQ] = ACTIONS(947), - [anon_sym_DOT_DOT_LT] = ACTIONS(947), - [aux_sym__val_number_decimal_token1] = ACTIONS(945), - [aux_sym__val_number_decimal_token2] = ACTIONS(947), - [aux_sym__val_number_decimal_token3] = ACTIONS(947), - [aux_sym__val_number_decimal_token4] = ACTIONS(947), - [aux_sym__val_number_token1] = ACTIONS(947), - [aux_sym__val_number_token2] = ACTIONS(947), - [aux_sym__val_number_token3] = ACTIONS(947), - [anon_sym_0b] = ACTIONS(945), - [anon_sym_0o] = ACTIONS(945), - [anon_sym_0x] = ACTIONS(945), - [sym_val_date] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(947), - [sym__str_single_quotes] = ACTIONS(947), - [sym__str_back_ticks] = ACTIONS(947), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(947), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(947), - [anon_sym_err_GT] = ACTIONS(945), - [anon_sym_out_GT] = ACTIONS(945), - [anon_sym_e_GT] = ACTIONS(945), - [anon_sym_o_GT] = ACTIONS(945), - [anon_sym_err_PLUSout_GT] = ACTIONS(945), - [anon_sym_out_PLUSerr_GT] = ACTIONS(945), - [anon_sym_o_PLUSe_GT] = ACTIONS(945), - [anon_sym_e_PLUSo_GT] = ACTIONS(945), - [anon_sym_err_GT_GT] = ACTIONS(947), - [anon_sym_out_GT_GT] = ACTIONS(947), - [anon_sym_e_GT_GT] = ACTIONS(947), - [anon_sym_o_GT_GT] = ACTIONS(947), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(947), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(947), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(947), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(947), - [aux_sym_unquoted_token1] = ACTIONS(945), - [anon_sym_POUND] = ACTIONS(247), - }, - [1506] = { - [sym_comment] = STATE(1506), - [ts_builtin_sym_end] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [anon_sym_null] = ACTIONS(1591), - [aux_sym_cmd_identifier_token38] = ACTIONS(1591), - [aux_sym_cmd_identifier_token39] = ACTIONS(1591), - [aux_sym_cmd_identifier_token40] = ACTIONS(1591), - [sym__newline] = ACTIONS(1591), - [anon_sym_SEMI] = ACTIONS(1591), - [anon_sym_PIPE] = ACTIONS(1591), - [anon_sym_err_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_GT_PIPE] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), - [anon_sym_LBRACK] = ACTIONS(1591), - [anon_sym_LPAREN] = ACTIONS(1591), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_DASH] = ACTIONS(1589), - [aux_sym_ctrl_match_token1] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_DOT_DOT2] = ACTIONS(1589), - [anon_sym_DOT] = ACTIONS(4845), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), - [aux_sym__immediate_decimal_token2] = ACTIONS(4847), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token3] = ACTIONS(1591), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(1591), - [aux_sym__val_number_token2] = ACTIONS(1591), - [aux_sym__val_number_token3] = ACTIONS(1591), - [anon_sym_0b] = ACTIONS(1589), - [anon_sym_0o] = ACTIONS(1589), - [anon_sym_0x] = ACTIONS(1589), - [sym_val_date] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym__str_single_quotes] = ACTIONS(1591), - [sym__str_back_ticks] = ACTIONS(1591), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), - [anon_sym_err_GT] = ACTIONS(1589), - [anon_sym_out_GT] = ACTIONS(1589), - [anon_sym_e_GT] = ACTIONS(1589), - [anon_sym_o_GT] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT] = ACTIONS(1589), - [anon_sym_err_GT_GT] = ACTIONS(1591), - [anon_sym_out_GT_GT] = ACTIONS(1591), - [anon_sym_e_GT_GT] = ACTIONS(1591), - [anon_sym_o_GT_GT] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), - [aux_sym_unquoted_token1] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(247), - }, - [1507] = { - [sym_comment] = STATE(1507), - [ts_builtin_sym_end] = ACTIONS(978), - [anon_sym_true] = ACTIONS(978), - [anon_sym_false] = ACTIONS(978), - [anon_sym_null] = ACTIONS(978), - [aux_sym_cmd_identifier_token38] = ACTIONS(978), - [aux_sym_cmd_identifier_token39] = ACTIONS(978), - [aux_sym_cmd_identifier_token40] = ACTIONS(978), - [sym__newline] = ACTIONS(978), - [anon_sym_SEMI] = ACTIONS(978), - [anon_sym_PIPE] = ACTIONS(978), - [anon_sym_err_GT_PIPE] = ACTIONS(978), - [anon_sym_out_GT_PIPE] = ACTIONS(978), - [anon_sym_e_GT_PIPE] = ACTIONS(978), - [anon_sym_o_GT_PIPE] = ACTIONS(978), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(978), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(978), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(978), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(978), - [anon_sym_LBRACK] = ACTIONS(978), - [anon_sym_LPAREN] = ACTIONS(978), - [anon_sym_DOLLAR] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(976), - [aux_sym_ctrl_match_token1] = ACTIONS(978), - [anon_sym_DOT_DOT] = ACTIONS(976), - [anon_sym_QMARK2] = ACTIONS(978), - [anon_sym_DOT_DOT2] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ] = ACTIONS(976), - [anon_sym_DOT_DOT_LT] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), - [anon_sym_DOT_DOT_LT2] = ACTIONS(978), - [aux_sym__val_number_decimal_token1] = ACTIONS(976), - [aux_sym__val_number_decimal_token2] = ACTIONS(978), - [aux_sym__val_number_decimal_token3] = ACTIONS(978), - [aux_sym__val_number_decimal_token4] = ACTIONS(978), - [aux_sym__val_number_token1] = ACTIONS(978), - [aux_sym__val_number_token2] = ACTIONS(978), - [aux_sym__val_number_token3] = ACTIONS(978), - [anon_sym_0b] = ACTIONS(976), - [anon_sym_0o] = ACTIONS(976), - [anon_sym_0x] = ACTIONS(976), - [sym_val_date] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(978), - [sym__str_single_quotes] = ACTIONS(978), - [sym__str_back_ticks] = ACTIONS(978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(978), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(978), - [anon_sym_err_GT] = ACTIONS(976), - [anon_sym_out_GT] = ACTIONS(976), - [anon_sym_e_GT] = ACTIONS(976), - [anon_sym_o_GT] = ACTIONS(976), - [anon_sym_err_PLUSout_GT] = ACTIONS(976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(976), - [anon_sym_o_PLUSe_GT] = ACTIONS(976), - [anon_sym_e_PLUSo_GT] = ACTIONS(976), - [anon_sym_err_GT_GT] = ACTIONS(978), - [anon_sym_out_GT_GT] = ACTIONS(978), - [anon_sym_e_GT_GT] = ACTIONS(978), - [anon_sym_o_GT_GT] = ACTIONS(978), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(978), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(978), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(978), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(978), - [aux_sym_unquoted_token1] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(247), - }, - [1508] = { - [sym_cell_path] = STATE(1935), - [sym_path] = STATE(1715), - [sym_comment] = STATE(1508), - [aux_sym_cell_path_repeat1] = STATE(1575), - [anon_sym_true] = ACTIONS(1810), - [anon_sym_false] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1810), - [aux_sym_cmd_identifier_token38] = ACTIONS(1810), - [aux_sym_cmd_identifier_token39] = ACTIONS(1810), - [aux_sym_cmd_identifier_token40] = ACTIONS(1810), - [sym__newline] = ACTIONS(1810), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_PIPE] = ACTIONS(1810), - [anon_sym_err_GT_PIPE] = ACTIONS(1810), - [anon_sym_out_GT_PIPE] = ACTIONS(1810), - [anon_sym_e_GT_PIPE] = ACTIONS(1810), - [anon_sym_o_GT_PIPE] = ACTIONS(1810), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1810), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1810), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1810), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_DOLLAR] = ACTIONS(1808), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_DASH] = ACTIONS(1808), - [aux_sym_ctrl_match_token1] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(4763), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1810), - [anon_sym_DOT_DOT_LT] = ACTIONS(1810), - [aux_sym__val_number_decimal_token1] = ACTIONS(1808), - [aux_sym__val_number_decimal_token2] = ACTIONS(1810), - [aux_sym__val_number_decimal_token3] = ACTIONS(1810), - [aux_sym__val_number_decimal_token4] = ACTIONS(1810), - [aux_sym__val_number_token1] = ACTIONS(1810), - [aux_sym__val_number_token2] = ACTIONS(1810), - [aux_sym__val_number_token3] = ACTIONS(1810), - [anon_sym_0b] = ACTIONS(1808), - [anon_sym_0o] = ACTIONS(1808), - [anon_sym_0x] = ACTIONS(1808), - [sym_val_date] = ACTIONS(1810), - [anon_sym_DQUOTE] = ACTIONS(1810), - [sym__str_single_quotes] = ACTIONS(1810), - [sym__str_back_ticks] = ACTIONS(1810), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1810), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1810), - [anon_sym_err_GT] = ACTIONS(1808), - [anon_sym_out_GT] = ACTIONS(1808), - [anon_sym_e_GT] = ACTIONS(1808), - [anon_sym_o_GT] = ACTIONS(1808), - [anon_sym_err_PLUSout_GT] = ACTIONS(1808), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1808), - [anon_sym_o_PLUSe_GT] = ACTIONS(1808), - [anon_sym_e_PLUSo_GT] = ACTIONS(1808), - [anon_sym_err_GT_GT] = ACTIONS(1810), - [anon_sym_out_GT_GT] = ACTIONS(1810), - [anon_sym_e_GT_GT] = ACTIONS(1810), - [anon_sym_o_GT_GT] = ACTIONS(1810), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1810), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1810), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1810), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1810), - [aux_sym_unquoted_token1] = ACTIONS(1808), - [anon_sym_POUND] = ACTIONS(247), - }, - [1509] = { - [sym_cell_path] = STATE(2032), - [sym_path] = STATE(1868), - [sym_comment] = STATE(1509), - [aux_sym_cell_path_repeat1] = STATE(1651), - [ts_builtin_sym_end] = ACTIONS(1901), - [anon_sym_true] = ACTIONS(1901), - [anon_sym_false] = ACTIONS(1901), - [anon_sym_null] = ACTIONS(1901), - [aux_sym_cmd_identifier_token38] = ACTIONS(1901), - [aux_sym_cmd_identifier_token39] = ACTIONS(1901), - [aux_sym_cmd_identifier_token40] = ACTIONS(1901), - [sym__newline] = ACTIONS(1901), - [anon_sym_SEMI] = ACTIONS(1901), - [anon_sym_PIPE] = ACTIONS(1901), - [anon_sym_err_GT_PIPE] = ACTIONS(1901), - [anon_sym_out_GT_PIPE] = ACTIONS(1901), - [anon_sym_e_GT_PIPE] = ACTIONS(1901), - [anon_sym_o_GT_PIPE] = ACTIONS(1901), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1901), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1901), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1901), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1901), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_DOLLAR] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1899), - [aux_sym_ctrl_match_token1] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1899), - [anon_sym_DOT] = ACTIONS(4849), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1901), - [anon_sym_DOT_DOT_LT] = ACTIONS(1901), - [aux_sym__val_number_decimal_token1] = ACTIONS(1899), - [aux_sym__val_number_decimal_token2] = ACTIONS(1901), - [aux_sym__val_number_decimal_token3] = ACTIONS(1901), - [aux_sym__val_number_decimal_token4] = ACTIONS(1901), - [aux_sym__val_number_token1] = ACTIONS(1901), - [aux_sym__val_number_token2] = ACTIONS(1901), - [aux_sym__val_number_token3] = ACTIONS(1901), - [anon_sym_0b] = ACTIONS(1899), - [anon_sym_0o] = ACTIONS(1899), - [anon_sym_0x] = ACTIONS(1899), - [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_err_GT] = ACTIONS(1899), - [anon_sym_out_GT] = ACTIONS(1899), - [anon_sym_e_GT] = ACTIONS(1899), - [anon_sym_o_GT] = ACTIONS(1899), - [anon_sym_err_PLUSout_GT] = ACTIONS(1899), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1899), - [anon_sym_o_PLUSe_GT] = ACTIONS(1899), - [anon_sym_e_PLUSo_GT] = ACTIONS(1899), - [anon_sym_err_GT_GT] = ACTIONS(1901), - [anon_sym_out_GT_GT] = ACTIONS(1901), - [anon_sym_e_GT_GT] = ACTIONS(1901), - [anon_sym_o_GT_GT] = ACTIONS(1901), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1901), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1901), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1901), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1901), - [aux_sym_unquoted_token1] = ACTIONS(1899), - [anon_sym_POUND] = ACTIONS(247), - }, - [1510] = { - [sym_comment] = STATE(1510), - [ts_builtin_sym_end] = ACTIONS(1650), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [anon_sym_null] = ACTIONS(1650), - [aux_sym_cmd_identifier_token38] = ACTIONS(1650), - [aux_sym_cmd_identifier_token39] = ACTIONS(1650), - [aux_sym_cmd_identifier_token40] = ACTIONS(1650), - [sym__newline] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_err_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_GT_PIPE] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_DASH] = ACTIONS(1648), - [aux_sym_ctrl_match_token1] = ACTIONS(1650), - [anon_sym_DOT_DOT] = ACTIONS(1648), - [anon_sym_DOT_DOT2] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1648), - [anon_sym_DOT_DOT_LT] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), - [aux_sym__immediate_decimal_token2] = ACTIONS(4851), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token3] = ACTIONS(1650), - [aux_sym__val_number_decimal_token4] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [anon_sym_0b] = ACTIONS(1648), - [anon_sym_0o] = ACTIONS(1648), - [anon_sym_0x] = ACTIONS(1648), - [sym_val_date] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), - [anon_sym_err_GT] = ACTIONS(1648), - [anon_sym_out_GT] = ACTIONS(1648), - [anon_sym_e_GT] = ACTIONS(1648), - [anon_sym_o_GT] = ACTIONS(1648), - [anon_sym_err_PLUSout_GT] = ACTIONS(1648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1648), - [anon_sym_o_PLUSe_GT] = ACTIONS(1648), - [anon_sym_e_PLUSo_GT] = ACTIONS(1648), - [anon_sym_err_GT_GT] = ACTIONS(1650), - [anon_sym_out_GT_GT] = ACTIONS(1650), - [anon_sym_e_GT_GT] = ACTIONS(1650), - [anon_sym_o_GT_GT] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1650), - [aux_sym_unquoted_token1] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(247), - }, - [1511] = { - [sym_comment] = STATE(1511), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [anon_sym_null] = ACTIONS(1591), - [aux_sym_cmd_identifier_token38] = ACTIONS(1591), - [aux_sym_cmd_identifier_token39] = ACTIONS(1591), - [aux_sym_cmd_identifier_token40] = ACTIONS(1591), - [sym__newline] = ACTIONS(1591), - [anon_sym_SEMI] = ACTIONS(1591), - [anon_sym_PIPE] = ACTIONS(1591), - [anon_sym_err_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_GT_PIPE] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), - [anon_sym_LBRACK] = ACTIONS(1591), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_RPAREN] = ACTIONS(1591), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_DASH] = ACTIONS(1589), - [aux_sym_ctrl_match_token1] = ACTIONS(1591), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1591), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1591), - [anon_sym_DOT_DOT_LT] = ACTIONS(1591), - [aux_sym__immediate_decimal_token2] = ACTIONS(4793), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token3] = ACTIONS(1591), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(1591), - [aux_sym__val_number_token2] = ACTIONS(1591), - [aux_sym__val_number_token3] = ACTIONS(1591), - [anon_sym_0b] = ACTIONS(1589), - [anon_sym_0o] = ACTIONS(1589), - [anon_sym_0x] = ACTIONS(1589), - [sym_val_date] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym__str_single_quotes] = ACTIONS(1591), - [sym__str_back_ticks] = ACTIONS(1591), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), - [anon_sym_err_GT] = ACTIONS(1589), - [anon_sym_out_GT] = ACTIONS(1589), - [anon_sym_e_GT] = ACTIONS(1589), - [anon_sym_o_GT] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT] = ACTIONS(1589), - [anon_sym_err_GT_GT] = ACTIONS(1591), - [anon_sym_out_GT_GT] = ACTIONS(1591), - [anon_sym_e_GT_GT] = ACTIONS(1591), - [anon_sym_o_GT_GT] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), - [aux_sym_unquoted_token1] = ACTIONS(1589), - [aux_sym_unquoted_token2] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(247), - }, - [1512] = { - [sym_comment] = STATE(1512), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1966), - [aux_sym_cmd_identifier_token38] = ACTIONS(1966), - [aux_sym_cmd_identifier_token39] = ACTIONS(1966), - [aux_sym_cmd_identifier_token40] = ACTIONS(1966), - [sym__newline] = ACTIONS(1966), - [anon_sym_SEMI] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_err_GT_PIPE] = ACTIONS(1966), - [anon_sym_out_GT_PIPE] = ACTIONS(1966), - [anon_sym_e_GT_PIPE] = ACTIONS(1966), - [anon_sym_o_GT_PIPE] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1966), - [anon_sym_LPAREN] = ACTIONS(1966), - [anon_sym_RPAREN] = ACTIONS(1966), - [anon_sym_DOLLAR] = ACTIONS(1960), - [anon_sym_DASH_DASH] = ACTIONS(1966), - [anon_sym_DASH] = ACTIONS(1960), - [aux_sym_ctrl_match_token1] = ACTIONS(1966), - [anon_sym_RBRACE] = ACTIONS(1966), - [anon_sym_DOT_DOT] = ACTIONS(1960), - [anon_sym_DOT_DOT2] = ACTIONS(4853), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1960), - [anon_sym_DOT_DOT_LT] = ACTIONS(1960), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4855), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4855), - [aux_sym__val_number_decimal_token1] = ACTIONS(1960), - [aux_sym__val_number_decimal_token2] = ACTIONS(1966), - [aux_sym__val_number_decimal_token3] = ACTIONS(1966), - [aux_sym__val_number_decimal_token4] = ACTIONS(1966), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [anon_sym_0b] = ACTIONS(1960), - [anon_sym_0o] = ACTIONS(1960), - [anon_sym_0x] = ACTIONS(1960), - [sym_val_date] = ACTIONS(1966), - [anon_sym_DQUOTE] = ACTIONS(1966), - [sym__str_single_quotes] = ACTIONS(1966), - [sym__str_back_ticks] = ACTIONS(1966), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1966), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1966), - [anon_sym_err_GT] = ACTIONS(1960), - [anon_sym_out_GT] = ACTIONS(1960), - [anon_sym_e_GT] = ACTIONS(1960), - [anon_sym_o_GT] = ACTIONS(1960), - [anon_sym_err_PLUSout_GT] = ACTIONS(1960), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1960), - [anon_sym_o_PLUSe_GT] = ACTIONS(1960), - [anon_sym_e_PLUSo_GT] = ACTIONS(1960), - [anon_sym_err_GT_GT] = ACTIONS(1966), - [anon_sym_out_GT_GT] = ACTIONS(1966), - [anon_sym_e_GT_GT] = ACTIONS(1966), - [anon_sym_o_GT_GT] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1966), - [aux_sym_unquoted_token1] = ACTIONS(1960), - [anon_sym_POUND] = ACTIONS(247), - }, - [1513] = { - [sym_cell_path] = STATE(1965), - [sym_path] = STATE(1868), - [sym_comment] = STATE(1513), - [aux_sym_cell_path_repeat1] = STATE(1651), - [ts_builtin_sym_end] = ACTIONS(1873), - [anon_sym_true] = ACTIONS(1873), - [anon_sym_false] = ACTIONS(1873), - [anon_sym_null] = ACTIONS(1873), - [aux_sym_cmd_identifier_token38] = ACTIONS(1873), - [aux_sym_cmd_identifier_token39] = ACTIONS(1873), - [aux_sym_cmd_identifier_token40] = ACTIONS(1873), - [sym__newline] = ACTIONS(1873), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym_PIPE] = ACTIONS(1873), - [anon_sym_err_GT_PIPE] = ACTIONS(1873), - [anon_sym_out_GT_PIPE] = ACTIONS(1873), - [anon_sym_e_GT_PIPE] = ACTIONS(1873), - [anon_sym_o_GT_PIPE] = ACTIONS(1873), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1873), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1873), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1873), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1873), - [anon_sym_LBRACK] = ACTIONS(1873), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_DOLLAR] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1871), - [aux_sym_ctrl_match_token1] = ACTIONS(1873), - [anon_sym_DOT_DOT] = ACTIONS(1871), - [anon_sym_DOT] = ACTIONS(4849), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1873), - [anon_sym_DOT_DOT_LT] = ACTIONS(1873), - [aux_sym__val_number_decimal_token1] = ACTIONS(1871), - [aux_sym__val_number_decimal_token2] = ACTIONS(1873), - [aux_sym__val_number_decimal_token3] = ACTIONS(1873), - [aux_sym__val_number_decimal_token4] = ACTIONS(1873), - [aux_sym__val_number_token1] = ACTIONS(1873), - [aux_sym__val_number_token2] = ACTIONS(1873), - [aux_sym__val_number_token3] = ACTIONS(1873), - [anon_sym_0b] = ACTIONS(1871), - [anon_sym_0o] = ACTIONS(1871), - [anon_sym_0x] = ACTIONS(1871), - [sym_val_date] = ACTIONS(1873), - [anon_sym_DQUOTE] = ACTIONS(1873), - [sym__str_single_quotes] = ACTIONS(1873), - [sym__str_back_ticks] = ACTIONS(1873), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1873), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1873), - [anon_sym_err_GT] = ACTIONS(1871), - [anon_sym_out_GT] = ACTIONS(1871), - [anon_sym_e_GT] = ACTIONS(1871), - [anon_sym_o_GT] = ACTIONS(1871), - [anon_sym_err_PLUSout_GT] = ACTIONS(1871), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1871), - [anon_sym_o_PLUSe_GT] = ACTIONS(1871), - [anon_sym_e_PLUSo_GT] = ACTIONS(1871), - [anon_sym_err_GT_GT] = ACTIONS(1873), - [anon_sym_out_GT_GT] = ACTIONS(1873), - [anon_sym_e_GT_GT] = ACTIONS(1873), - [anon_sym_o_GT_GT] = ACTIONS(1873), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1873), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1873), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1873), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1873), - [aux_sym_unquoted_token1] = ACTIONS(1871), - [anon_sym_POUND] = ACTIONS(247), - }, - [1514] = { - [sym_comment] = STATE(1514), - [anon_sym_true] = ACTIONS(1955), - [anon_sym_false] = ACTIONS(1955), - [anon_sym_null] = ACTIONS(1955), - [aux_sym_cmd_identifier_token38] = ACTIONS(1955), - [aux_sym_cmd_identifier_token39] = ACTIONS(1955), - [aux_sym_cmd_identifier_token40] = ACTIONS(1955), - [sym__newline] = ACTIONS(1955), - [anon_sym_SEMI] = ACTIONS(1955), - [anon_sym_PIPE] = ACTIONS(1955), - [anon_sym_err_GT_PIPE] = ACTIONS(1955), - [anon_sym_out_GT_PIPE] = ACTIONS(1955), - [anon_sym_e_GT_PIPE] = ACTIONS(1955), - [anon_sym_o_GT_PIPE] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1955), - [anon_sym_LBRACK] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_RPAREN] = ACTIONS(1955), - [anon_sym_DOLLAR] = ACTIONS(1953), - [anon_sym_DASH_DASH] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1953), - [aux_sym_ctrl_match_token1] = ACTIONS(1955), - [anon_sym_RBRACE] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1953), - [anon_sym_DOT_DOT2] = ACTIONS(1953), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1955), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1955), - [aux_sym__val_number_decimal_token1] = ACTIONS(1953), - [aux_sym__val_number_decimal_token2] = ACTIONS(1955), - [aux_sym__val_number_decimal_token3] = ACTIONS(1955), - [aux_sym__val_number_decimal_token4] = ACTIONS(1955), - [aux_sym__val_number_token1] = ACTIONS(1955), - [aux_sym__val_number_token2] = ACTIONS(1955), - [aux_sym__val_number_token3] = ACTIONS(1955), - [anon_sym_0b] = ACTIONS(1953), - [anon_sym_0o] = ACTIONS(1953), - [anon_sym_0x] = ACTIONS(1953), - [sym_val_date] = ACTIONS(1955), - [anon_sym_DQUOTE] = ACTIONS(1955), - [sym__str_single_quotes] = ACTIONS(1955), - [sym__str_back_ticks] = ACTIONS(1955), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1955), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1955), - [anon_sym_err_GT] = ACTIONS(1953), - [anon_sym_out_GT] = ACTIONS(1953), - [anon_sym_e_GT] = ACTIONS(1953), - [anon_sym_o_GT] = ACTIONS(1953), - [anon_sym_err_PLUSout_GT] = ACTIONS(1953), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1953), - [anon_sym_o_PLUSe_GT] = ACTIONS(1953), - [anon_sym_e_PLUSo_GT] = ACTIONS(1953), - [anon_sym_err_GT_GT] = ACTIONS(1955), - [anon_sym_out_GT_GT] = ACTIONS(1955), - [anon_sym_e_GT_GT] = ACTIONS(1955), - [anon_sym_o_GT_GT] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1955), - [aux_sym_unquoted_token1] = ACTIONS(1953), - [anon_sym_POUND] = ACTIONS(247), - }, - [1515] = { - [sym_cell_path] = STATE(2075), - [sym_path] = STATE(1868), - [sym_comment] = STATE(1515), - [aux_sym_cell_path_repeat1] = STATE(1651), - [ts_builtin_sym_end] = ACTIONS(1857), - [anon_sym_true] = ACTIONS(1857), - [anon_sym_false] = ACTIONS(1857), - [anon_sym_null] = ACTIONS(1857), - [aux_sym_cmd_identifier_token38] = ACTIONS(1857), - [aux_sym_cmd_identifier_token39] = ACTIONS(1857), - [aux_sym_cmd_identifier_token40] = ACTIONS(1857), - [sym__newline] = ACTIONS(1857), - [anon_sym_SEMI] = ACTIONS(1857), - [anon_sym_PIPE] = ACTIONS(1857), - [anon_sym_err_GT_PIPE] = ACTIONS(1857), - [anon_sym_out_GT_PIPE] = ACTIONS(1857), - [anon_sym_e_GT_PIPE] = ACTIONS(1857), - [anon_sym_o_GT_PIPE] = ACTIONS(1857), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1857), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1857), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1857), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1857), - [anon_sym_LBRACK] = ACTIONS(1857), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_DOLLAR] = ACTIONS(1855), - [anon_sym_DASH_DASH] = ACTIONS(1857), - [anon_sym_DASH] = ACTIONS(1855), - [aux_sym_ctrl_match_token1] = ACTIONS(1857), - [anon_sym_DOT_DOT] = ACTIONS(1855), - [anon_sym_DOT] = ACTIONS(4849), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1857), - [anon_sym_DOT_DOT_LT] = ACTIONS(1857), - [aux_sym__val_number_decimal_token1] = ACTIONS(1855), - [aux_sym__val_number_decimal_token2] = ACTIONS(1857), - [aux_sym__val_number_decimal_token3] = ACTIONS(1857), - [aux_sym__val_number_decimal_token4] = ACTIONS(1857), - [aux_sym__val_number_token1] = ACTIONS(1857), - [aux_sym__val_number_token2] = ACTIONS(1857), - [aux_sym__val_number_token3] = ACTIONS(1857), - [anon_sym_0b] = ACTIONS(1855), - [anon_sym_0o] = ACTIONS(1855), - [anon_sym_0x] = ACTIONS(1855), - [sym_val_date] = ACTIONS(1857), - [anon_sym_DQUOTE] = ACTIONS(1857), - [sym__str_single_quotes] = ACTIONS(1857), - [sym__str_back_ticks] = ACTIONS(1857), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1857), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1857), - [anon_sym_err_GT] = ACTIONS(1855), - [anon_sym_out_GT] = ACTIONS(1855), - [anon_sym_e_GT] = ACTIONS(1855), - [anon_sym_o_GT] = ACTIONS(1855), - [anon_sym_err_PLUSout_GT] = ACTIONS(1855), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1855), - [anon_sym_o_PLUSe_GT] = ACTIONS(1855), - [anon_sym_e_PLUSo_GT] = ACTIONS(1855), - [anon_sym_err_GT_GT] = ACTIONS(1857), - [anon_sym_out_GT_GT] = ACTIONS(1857), - [anon_sym_e_GT_GT] = ACTIONS(1857), - [anon_sym_o_GT_GT] = ACTIONS(1857), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1857), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1857), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1857), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1857), - [aux_sym_unquoted_token1] = ACTIONS(1855), - [anon_sym_POUND] = ACTIONS(247), - }, - [1516] = { - [sym__expr_parenthesized_immediate] = STATE(7616), - [sym_comment] = STATE(1516), - [sym__newline] = ACTIONS(3199), - [anon_sym_SEMI] = ACTIONS(3199), - [anon_sym_PIPE] = ACTIONS(3199), - [anon_sym_err_GT_PIPE] = ACTIONS(3199), - [anon_sym_out_GT_PIPE] = ACTIONS(3199), - [anon_sym_e_GT_PIPE] = ACTIONS(3199), - [anon_sym_o_GT_PIPE] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3199), - [anon_sym_RPAREN] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_DASH_DASH] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3201), - [aux_sym_ctrl_match_token1] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym_EQ_GT] = ACTIONS(3199), - [anon_sym_LPAREN2] = ACTIONS(2947), - [aux_sym_expr_binary_token1] = ACTIONS(3199), - [aux_sym_expr_binary_token2] = ACTIONS(3199), - [aux_sym_expr_binary_token3] = ACTIONS(3199), - [aux_sym_expr_binary_token4] = ACTIONS(3199), - [aux_sym_expr_binary_token5] = ACTIONS(3199), - [aux_sym_expr_binary_token6] = ACTIONS(3199), - [aux_sym_expr_binary_token7] = ACTIONS(3199), - [aux_sym_expr_binary_token8] = ACTIONS(3199), - [aux_sym_expr_binary_token9] = ACTIONS(3199), - [aux_sym_expr_binary_token10] = ACTIONS(3199), - [aux_sym_expr_binary_token11] = ACTIONS(3199), - [aux_sym_expr_binary_token12] = ACTIONS(3199), - [aux_sym_expr_binary_token13] = ACTIONS(3199), - [aux_sym_expr_binary_token14] = ACTIONS(3199), - [aux_sym_expr_binary_token15] = ACTIONS(3199), - [aux_sym_expr_binary_token16] = ACTIONS(3199), - [aux_sym_expr_binary_token17] = ACTIONS(3199), - [aux_sym_expr_binary_token18] = ACTIONS(3199), - [aux_sym_expr_binary_token19] = ACTIONS(3199), - [aux_sym_expr_binary_token20] = ACTIONS(3199), - [aux_sym_expr_binary_token21] = ACTIONS(3199), - [aux_sym_expr_binary_token22] = ACTIONS(3199), - [aux_sym_expr_binary_token23] = ACTIONS(3199), - [aux_sym_expr_binary_token24] = ACTIONS(3199), - [aux_sym_expr_binary_token25] = ACTIONS(3199), - [aux_sym_expr_binary_token26] = ACTIONS(3199), - [aux_sym_expr_binary_token27] = ACTIONS(3199), - [aux_sym_expr_binary_token28] = ACTIONS(3199), - [anon_sym_err_GT] = ACTIONS(3201), - [anon_sym_out_GT] = ACTIONS(3201), - [anon_sym_e_GT] = ACTIONS(3201), - [anon_sym_o_GT] = ACTIONS(3201), - [anon_sym_err_PLUSout_GT] = ACTIONS(3201), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), - [anon_sym_o_PLUSe_GT] = ACTIONS(3201), - [anon_sym_e_PLUSo_GT] = ACTIONS(3201), - [anon_sym_err_GT_GT] = ACTIONS(3199), - [anon_sym_out_GT_GT] = ACTIONS(3199), - [anon_sym_e_GT_GT] = ACTIONS(3199), - [anon_sym_o_GT_GT] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), - [anon_sym_POUND] = ACTIONS(247), - }, - [1517] = { - [sym_cell_path] = STATE(1970), - [sym_path] = STATE(1868), - [sym_comment] = STATE(1517), - [aux_sym_cell_path_repeat1] = STATE(1651), - [ts_builtin_sym_end] = ACTIONS(1764), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [anon_sym_null] = ACTIONS(1764), - [aux_sym_cmd_identifier_token38] = ACTIONS(1764), - [aux_sym_cmd_identifier_token39] = ACTIONS(1764), - [aux_sym_cmd_identifier_token40] = ACTIONS(1764), - [sym__newline] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1764), - [anon_sym_PIPE] = ACTIONS(1764), - [anon_sym_err_GT_PIPE] = ACTIONS(1764), - [anon_sym_out_GT_PIPE] = ACTIONS(1764), - [anon_sym_e_GT_PIPE] = ACTIONS(1764), - [anon_sym_o_GT_PIPE] = ACTIONS(1764), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1764), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1764), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1764), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1764), - [anon_sym_LBRACK] = ACTIONS(1764), - [anon_sym_LPAREN] = ACTIONS(1764), - [anon_sym_DOLLAR] = ACTIONS(1762), - [anon_sym_DASH_DASH] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1762), - [aux_sym_ctrl_match_token1] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1762), - [anon_sym_DOT] = ACTIONS(4849), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1764), - [anon_sym_DOT_DOT_LT] = ACTIONS(1764), - [aux_sym__val_number_decimal_token1] = ACTIONS(1762), - [aux_sym__val_number_decimal_token2] = ACTIONS(1764), - [aux_sym__val_number_decimal_token3] = ACTIONS(1764), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), - [aux_sym__val_number_token1] = ACTIONS(1764), - [aux_sym__val_number_token2] = ACTIONS(1764), - [aux_sym__val_number_token3] = ACTIONS(1764), - [anon_sym_0b] = ACTIONS(1762), - [anon_sym_0o] = ACTIONS(1762), - [anon_sym_0x] = ACTIONS(1762), - [sym_val_date] = ACTIONS(1764), - [anon_sym_DQUOTE] = ACTIONS(1764), - [sym__str_single_quotes] = ACTIONS(1764), - [sym__str_back_ticks] = ACTIONS(1764), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1764), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1764), - [anon_sym_err_GT] = ACTIONS(1762), - [anon_sym_out_GT] = ACTIONS(1762), - [anon_sym_e_GT] = ACTIONS(1762), - [anon_sym_o_GT] = ACTIONS(1762), - [anon_sym_err_PLUSout_GT] = ACTIONS(1762), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1762), - [anon_sym_o_PLUSe_GT] = ACTIONS(1762), - [anon_sym_e_PLUSo_GT] = ACTIONS(1762), - [anon_sym_err_GT_GT] = ACTIONS(1764), - [anon_sym_out_GT_GT] = ACTIONS(1764), - [anon_sym_e_GT_GT] = ACTIONS(1764), - [anon_sym_o_GT_GT] = ACTIONS(1764), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1764), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1764), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1764), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1764), - [aux_sym_unquoted_token1] = ACTIONS(1762), - [anon_sym_POUND] = ACTIONS(247), - }, - [1518] = { - [sym_comment] = STATE(1518), - [ts_builtin_sym_end] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1571), - [anon_sym_false] = ACTIONS(1571), - [anon_sym_null] = ACTIONS(1571), - [aux_sym_cmd_identifier_token38] = ACTIONS(1571), - [aux_sym_cmd_identifier_token39] = ACTIONS(1571), - [aux_sym_cmd_identifier_token40] = ACTIONS(1571), - [sym__newline] = ACTIONS(1571), - [anon_sym_SEMI] = ACTIONS(1571), - [anon_sym_PIPE] = ACTIONS(1571), - [anon_sym_err_GT_PIPE] = ACTIONS(1571), - [anon_sym_out_GT_PIPE] = ACTIONS(1571), - [anon_sym_e_GT_PIPE] = ACTIONS(1571), - [anon_sym_o_GT_PIPE] = ACTIONS(1571), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1571), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1571), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1571), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1571), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_DOLLAR] = ACTIONS(1569), - [anon_sym_DASH_DASH] = ACTIONS(1571), - [anon_sym_DASH] = ACTIONS(1569), - [aux_sym_ctrl_match_token1] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1569), - [anon_sym_LPAREN2] = ACTIONS(1571), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1571), - [anon_sym_DOT_DOT_LT] = ACTIONS(1571), - [aux_sym__immediate_decimal_token1] = ACTIONS(4857), - [aux_sym__immediate_decimal_token2] = ACTIONS(4859), - [aux_sym__val_number_decimal_token1] = ACTIONS(1569), - [aux_sym__val_number_decimal_token2] = ACTIONS(1571), - [aux_sym__val_number_decimal_token3] = ACTIONS(1571), - [aux_sym__val_number_decimal_token4] = ACTIONS(1571), - [aux_sym__val_number_token1] = ACTIONS(1571), - [aux_sym__val_number_token2] = ACTIONS(1571), - [aux_sym__val_number_token3] = ACTIONS(1571), - [anon_sym_0b] = ACTIONS(1569), - [anon_sym_0o] = ACTIONS(1569), - [anon_sym_0x] = ACTIONS(1569), - [sym_val_date] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [sym__str_single_quotes] = ACTIONS(1571), - [sym__str_back_ticks] = ACTIONS(1571), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1571), - [anon_sym_err_GT] = ACTIONS(1569), - [anon_sym_out_GT] = ACTIONS(1569), - [anon_sym_e_GT] = ACTIONS(1569), - [anon_sym_o_GT] = ACTIONS(1569), - [anon_sym_err_PLUSout_GT] = ACTIONS(1569), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1569), - [anon_sym_o_PLUSe_GT] = ACTIONS(1569), - [anon_sym_e_PLUSo_GT] = ACTIONS(1569), - [anon_sym_err_GT_GT] = ACTIONS(1571), - [anon_sym_out_GT_GT] = ACTIONS(1571), - [anon_sym_e_GT_GT] = ACTIONS(1571), - [anon_sym_o_GT_GT] = ACTIONS(1571), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1571), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1571), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1571), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1571), - [aux_sym_unquoted_token1] = ACTIONS(1569), - [aux_sym_unquoted_token2] = ACTIONS(1569), - [anon_sym_POUND] = ACTIONS(247), - }, - [1519] = { - [sym_comment] = STATE(1519), - [aux_sym_cmd_identifier_token41] = ACTIONS(1519), - [sym__newline] = ACTIONS(1519), - [anon_sym_SEMI] = ACTIONS(1521), - [anon_sym_PIPE] = ACTIONS(1521), - [anon_sym_err_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_GT_PIPE] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), - [anon_sym_RPAREN] = ACTIONS(1521), - [aux_sym_ctrl_match_token1] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1521), - [anon_sym_DOT_DOT2] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), - [aux_sym__immediate_decimal_token2] = ACTIONS(4861), - [sym_filesize_unit] = ACTIONS(1521), - [sym_duration_unit] = ACTIONS(1521), - [anon_sym_err_GT] = ACTIONS(1519), - [anon_sym_out_GT] = ACTIONS(1519), - [anon_sym_e_GT] = ACTIONS(1519), - [anon_sym_o_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT] = ACTIONS(1519), - [anon_sym_err_GT_GT] = ACTIONS(1521), - [anon_sym_out_GT_GT] = ACTIONS(1521), - [anon_sym_e_GT_GT] = ACTIONS(1521), - [anon_sym_o_GT_GT] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), - [anon_sym_POUND] = ACTIONS(247), - }, - [1520] = { - [sym_comment] = STATE(1520), - [anon_sym_true] = ACTIONS(1984), - [anon_sym_false] = ACTIONS(1984), - [anon_sym_null] = ACTIONS(1984), - [aux_sym_cmd_identifier_token38] = ACTIONS(1984), - [aux_sym_cmd_identifier_token39] = ACTIONS(1984), - [aux_sym_cmd_identifier_token40] = ACTIONS(1984), - [sym__newline] = ACTIONS(1984), - [anon_sym_SEMI] = ACTIONS(1984), - [anon_sym_PIPE] = ACTIONS(1984), - [anon_sym_err_GT_PIPE] = ACTIONS(1984), - [anon_sym_out_GT_PIPE] = ACTIONS(1984), - [anon_sym_e_GT_PIPE] = ACTIONS(1984), - [anon_sym_o_GT_PIPE] = ACTIONS(1984), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1984), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1984), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1984), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1984), - [anon_sym_LBRACK] = ACTIONS(1984), - [anon_sym_LPAREN] = ACTIONS(1984), - [anon_sym_RPAREN] = ACTIONS(1984), - [anon_sym_DOLLAR] = ACTIONS(1982), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_DASH] = ACTIONS(1982), - [aux_sym_ctrl_match_token1] = ACTIONS(1984), - [anon_sym_RBRACE] = ACTIONS(1984), - [anon_sym_DOT_DOT] = ACTIONS(1982), - [anon_sym_DOT_DOT2] = ACTIONS(1982), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1982), - [anon_sym_DOT_DOT_LT] = ACTIONS(1982), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1984), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1984), - [aux_sym__val_number_decimal_token1] = ACTIONS(1982), - [aux_sym__val_number_decimal_token2] = ACTIONS(1984), - [aux_sym__val_number_decimal_token3] = ACTIONS(1984), - [aux_sym__val_number_decimal_token4] = ACTIONS(1984), - [aux_sym__val_number_token1] = ACTIONS(1984), - [aux_sym__val_number_token2] = ACTIONS(1984), - [aux_sym__val_number_token3] = ACTIONS(1984), - [anon_sym_0b] = ACTIONS(1982), - [anon_sym_0o] = ACTIONS(1982), - [anon_sym_0x] = ACTIONS(1982), - [sym_val_date] = ACTIONS(1984), - [anon_sym_DQUOTE] = ACTIONS(1984), - [sym__str_single_quotes] = ACTIONS(1984), - [sym__str_back_ticks] = ACTIONS(1984), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1984), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1984), - [anon_sym_err_GT] = ACTIONS(1982), - [anon_sym_out_GT] = ACTIONS(1982), - [anon_sym_e_GT] = ACTIONS(1982), - [anon_sym_o_GT] = ACTIONS(1982), - [anon_sym_err_PLUSout_GT] = ACTIONS(1982), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1982), - [anon_sym_o_PLUSe_GT] = ACTIONS(1982), - [anon_sym_e_PLUSo_GT] = ACTIONS(1982), - [anon_sym_err_GT_GT] = ACTIONS(1984), - [anon_sym_out_GT_GT] = ACTIONS(1984), - [anon_sym_e_GT_GT] = ACTIONS(1984), - [anon_sym_o_GT_GT] = ACTIONS(1984), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1984), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1984), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1984), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1984), - [aux_sym_unquoted_token1] = ACTIONS(1982), - [anon_sym_POUND] = ACTIONS(247), - }, - [1521] = { - [sym_comment] = STATE(1521), - [sym__newline] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_err_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_GT_PIPE] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), - [anon_sym_RPAREN] = ACTIONS(1483), - [anon_sym_RBRACE] = ACTIONS(1483), - [anon_sym_LPAREN2] = ACTIONS(1483), - [aux_sym_expr_binary_token1] = ACTIONS(1483), - [aux_sym_expr_binary_token2] = ACTIONS(1483), - [aux_sym_expr_binary_token3] = ACTIONS(1483), - [aux_sym_expr_binary_token4] = ACTIONS(1483), - [aux_sym_expr_binary_token5] = ACTIONS(1483), - [aux_sym_expr_binary_token6] = ACTIONS(1483), - [aux_sym_expr_binary_token7] = ACTIONS(1483), - [aux_sym_expr_binary_token8] = ACTIONS(1483), - [aux_sym_expr_binary_token9] = ACTIONS(1483), - [aux_sym_expr_binary_token10] = ACTIONS(1483), - [aux_sym_expr_binary_token11] = ACTIONS(1483), - [aux_sym_expr_binary_token12] = ACTIONS(1483), - [aux_sym_expr_binary_token13] = ACTIONS(1483), - [aux_sym_expr_binary_token14] = ACTIONS(1483), - [aux_sym_expr_binary_token15] = ACTIONS(1483), - [aux_sym_expr_binary_token16] = ACTIONS(1483), - [aux_sym_expr_binary_token17] = ACTIONS(1483), - [aux_sym_expr_binary_token18] = ACTIONS(1483), - [aux_sym_expr_binary_token19] = ACTIONS(1483), - [aux_sym_expr_binary_token20] = ACTIONS(1483), - [aux_sym_expr_binary_token21] = ACTIONS(1483), - [aux_sym_expr_binary_token22] = ACTIONS(1483), - [aux_sym_expr_binary_token23] = ACTIONS(1483), - [aux_sym_expr_binary_token24] = ACTIONS(1483), - [aux_sym_expr_binary_token25] = ACTIONS(1483), - [aux_sym_expr_binary_token26] = ACTIONS(1483), - [aux_sym_expr_binary_token27] = ACTIONS(1483), - [aux_sym_expr_binary_token28] = ACTIONS(1483), - [anon_sym_DOT_DOT2] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), - [sym_filesize_unit] = ACTIONS(1483), - [sym_duration_unit] = ACTIONS(1483), - [anon_sym_err_GT] = ACTIONS(1481), - [anon_sym_out_GT] = ACTIONS(1481), - [anon_sym_e_GT] = ACTIONS(1481), - [anon_sym_o_GT] = ACTIONS(1481), - [anon_sym_err_PLUSout_GT] = ACTIONS(1481), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), - [anon_sym_o_PLUSe_GT] = ACTIONS(1481), - [anon_sym_e_PLUSo_GT] = ACTIONS(1481), - [anon_sym_err_GT_GT] = ACTIONS(1483), - [anon_sym_out_GT_GT] = ACTIONS(1483), - [anon_sym_e_GT_GT] = ACTIONS(1483), - [anon_sym_o_GT_GT] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), - [aux_sym_unquoted_token2] = ACTIONS(1481), - [anon_sym_POUND] = ACTIONS(247), - }, - [1522] = { - [sym_cell_path] = STATE(2041), - [sym_path] = STATE(1868), - [sym_comment] = STATE(1522), - [aux_sym_cell_path_repeat1] = STATE(1651), - [ts_builtin_sym_end] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1885), - [anon_sym_false] = ACTIONS(1885), - [anon_sym_null] = ACTIONS(1885), - [aux_sym_cmd_identifier_token38] = ACTIONS(1885), - [aux_sym_cmd_identifier_token39] = ACTIONS(1885), - [aux_sym_cmd_identifier_token40] = ACTIONS(1885), - [sym__newline] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_PIPE] = ACTIONS(1885), - [anon_sym_err_GT_PIPE] = ACTIONS(1885), - [anon_sym_out_GT_PIPE] = ACTIONS(1885), - [anon_sym_e_GT_PIPE] = ACTIONS(1885), - [anon_sym_o_GT_PIPE] = ACTIONS(1885), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1885), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1885), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1885), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1885), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_DOLLAR] = ACTIONS(1883), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1883), - [aux_sym_ctrl_match_token1] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1883), - [anon_sym_DOT] = ACTIONS(4849), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1885), - [anon_sym_DOT_DOT_LT] = ACTIONS(1885), - [aux_sym__val_number_decimal_token1] = ACTIONS(1883), - [aux_sym__val_number_decimal_token2] = ACTIONS(1885), - [aux_sym__val_number_decimal_token3] = ACTIONS(1885), - [aux_sym__val_number_decimal_token4] = ACTIONS(1885), - [aux_sym__val_number_token1] = ACTIONS(1885), - [aux_sym__val_number_token2] = ACTIONS(1885), - [aux_sym__val_number_token3] = ACTIONS(1885), - [anon_sym_0b] = ACTIONS(1883), - [anon_sym_0o] = ACTIONS(1883), - [anon_sym_0x] = ACTIONS(1883), - [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_err_GT] = ACTIONS(1883), - [anon_sym_out_GT] = ACTIONS(1883), - [anon_sym_e_GT] = ACTIONS(1883), - [anon_sym_o_GT] = ACTIONS(1883), - [anon_sym_err_PLUSout_GT] = ACTIONS(1883), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1883), - [anon_sym_o_PLUSe_GT] = ACTIONS(1883), - [anon_sym_e_PLUSo_GT] = ACTIONS(1883), - [anon_sym_err_GT_GT] = ACTIONS(1885), - [anon_sym_out_GT_GT] = ACTIONS(1885), - [anon_sym_e_GT_GT] = ACTIONS(1885), - [anon_sym_o_GT_GT] = ACTIONS(1885), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1885), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1885), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1885), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1885), - [aux_sym_unquoted_token1] = ACTIONS(1883), - [anon_sym_POUND] = ACTIONS(247), - }, - [1523] = { - [sym_cell_path] = STATE(1960), - [sym_path] = STATE(1868), - [sym_comment] = STATE(1523), - [aux_sym_cell_path_repeat1] = STATE(1651), - [ts_builtin_sym_end] = ACTIONS(1849), - [anon_sym_true] = ACTIONS(1849), - [anon_sym_false] = ACTIONS(1849), - [anon_sym_null] = ACTIONS(1849), - [aux_sym_cmd_identifier_token38] = ACTIONS(1849), - [aux_sym_cmd_identifier_token39] = ACTIONS(1849), - [aux_sym_cmd_identifier_token40] = ACTIONS(1849), - [sym__newline] = ACTIONS(1849), - [anon_sym_SEMI] = ACTIONS(1849), - [anon_sym_PIPE] = ACTIONS(1849), - [anon_sym_err_GT_PIPE] = ACTIONS(1849), - [anon_sym_out_GT_PIPE] = ACTIONS(1849), - [anon_sym_e_GT_PIPE] = ACTIONS(1849), - [anon_sym_o_GT_PIPE] = ACTIONS(1849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1849), - [anon_sym_LPAREN] = ACTIONS(1849), - [anon_sym_DOLLAR] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_DASH] = ACTIONS(1847), - [aux_sym_ctrl_match_token1] = ACTIONS(1849), - [anon_sym_DOT_DOT] = ACTIONS(1847), - [anon_sym_DOT] = ACTIONS(4849), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1849), - [anon_sym_DOT_DOT_LT] = ACTIONS(1849), - [aux_sym__val_number_decimal_token1] = ACTIONS(1847), - [aux_sym__val_number_decimal_token2] = ACTIONS(1849), - [aux_sym__val_number_decimal_token3] = ACTIONS(1849), - [aux_sym__val_number_decimal_token4] = ACTIONS(1849), - [aux_sym__val_number_token1] = ACTIONS(1849), - [aux_sym__val_number_token2] = ACTIONS(1849), - [aux_sym__val_number_token3] = ACTIONS(1849), - [anon_sym_0b] = ACTIONS(1847), - [anon_sym_0o] = ACTIONS(1847), - [anon_sym_0x] = ACTIONS(1847), - [sym_val_date] = ACTIONS(1849), - [anon_sym_DQUOTE] = ACTIONS(1849), - [sym__str_single_quotes] = ACTIONS(1849), - [sym__str_back_ticks] = ACTIONS(1849), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1849), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1849), - [anon_sym_err_GT] = ACTIONS(1847), - [anon_sym_out_GT] = ACTIONS(1847), - [anon_sym_e_GT] = ACTIONS(1847), - [anon_sym_o_GT] = ACTIONS(1847), - [anon_sym_err_PLUSout_GT] = ACTIONS(1847), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1847), - [anon_sym_o_PLUSe_GT] = ACTIONS(1847), - [anon_sym_e_PLUSo_GT] = ACTIONS(1847), - [anon_sym_err_GT_GT] = ACTIONS(1849), - [anon_sym_out_GT_GT] = ACTIONS(1849), - [anon_sym_e_GT_GT] = ACTIONS(1849), - [anon_sym_o_GT_GT] = ACTIONS(1849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1849), - [aux_sym_unquoted_token1] = ACTIONS(1847), - [anon_sym_POUND] = ACTIONS(247), - }, - [1524] = { - [sym_comment] = STATE(1524), - [ts_builtin_sym_end] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [anon_sym_null] = ACTIONS(1591), - [aux_sym_cmd_identifier_token38] = ACTIONS(1591), - [aux_sym_cmd_identifier_token39] = ACTIONS(1591), - [aux_sym_cmd_identifier_token40] = ACTIONS(1591), - [sym__newline] = ACTIONS(1591), - [anon_sym_SEMI] = ACTIONS(1591), - [anon_sym_PIPE] = ACTIONS(1591), - [anon_sym_err_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_GT_PIPE] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), - [anon_sym_LBRACK] = ACTIONS(1591), - [anon_sym_LPAREN] = ACTIONS(1591), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_DASH] = ACTIONS(1589), - [aux_sym_ctrl_match_token1] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_DOT_DOT2] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), - [aux_sym__immediate_decimal_token2] = ACTIONS(4847), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token3] = ACTIONS(1591), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(1591), - [aux_sym__val_number_token2] = ACTIONS(1591), - [aux_sym__val_number_token3] = ACTIONS(1591), - [anon_sym_0b] = ACTIONS(1589), - [anon_sym_0o] = ACTIONS(1589), - [anon_sym_0x] = ACTIONS(1589), - [sym_val_date] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym__str_single_quotes] = ACTIONS(1591), - [sym__str_back_ticks] = ACTIONS(1591), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), - [anon_sym_err_GT] = ACTIONS(1589), - [anon_sym_out_GT] = ACTIONS(1589), - [anon_sym_e_GT] = ACTIONS(1589), - [anon_sym_o_GT] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT] = ACTIONS(1589), - [anon_sym_err_GT_GT] = ACTIONS(1591), - [anon_sym_out_GT_GT] = ACTIONS(1591), - [anon_sym_e_GT_GT] = ACTIONS(1591), - [anon_sym_o_GT_GT] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), - [aux_sym_unquoted_token1] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(247), - }, - [1525] = { - [sym_cell_path] = STATE(2077), - [sym_path] = STATE(1868), - [sym_comment] = STATE(1525), - [aux_sym_cell_path_repeat1] = STATE(1651), - [ts_builtin_sym_end] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1798), - [anon_sym_false] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1798), - [aux_sym_cmd_identifier_token38] = ACTIONS(1798), - [aux_sym_cmd_identifier_token39] = ACTIONS(1798), - [aux_sym_cmd_identifier_token40] = ACTIONS(1798), - [sym__newline] = ACTIONS(1798), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1798), - [anon_sym_err_GT_PIPE] = ACTIONS(1798), - [anon_sym_out_GT_PIPE] = ACTIONS(1798), - [anon_sym_e_GT_PIPE] = ACTIONS(1798), - [anon_sym_o_GT_PIPE] = ACTIONS(1798), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1798), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1798), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1798), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1798), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_DOLLAR] = ACTIONS(1796), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1796), - [aux_sym_ctrl_match_token1] = ACTIONS(1798), - [anon_sym_DOT_DOT] = ACTIONS(1796), - [anon_sym_DOT] = ACTIONS(4849), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1798), - [anon_sym_DOT_DOT_LT] = ACTIONS(1798), - [aux_sym__val_number_decimal_token1] = ACTIONS(1796), - [aux_sym__val_number_decimal_token2] = ACTIONS(1798), - [aux_sym__val_number_decimal_token3] = ACTIONS(1798), - [aux_sym__val_number_decimal_token4] = ACTIONS(1798), - [aux_sym__val_number_token1] = ACTIONS(1798), - [aux_sym__val_number_token2] = ACTIONS(1798), - [aux_sym__val_number_token3] = ACTIONS(1798), - [anon_sym_0b] = ACTIONS(1796), - [anon_sym_0o] = ACTIONS(1796), - [anon_sym_0x] = ACTIONS(1796), - [sym_val_date] = ACTIONS(1798), - [anon_sym_DQUOTE] = ACTIONS(1798), - [sym__str_single_quotes] = ACTIONS(1798), - [sym__str_back_ticks] = ACTIONS(1798), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1798), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1798), - [anon_sym_err_GT] = ACTIONS(1796), - [anon_sym_out_GT] = ACTIONS(1796), - [anon_sym_e_GT] = ACTIONS(1796), - [anon_sym_o_GT] = ACTIONS(1796), - [anon_sym_err_PLUSout_GT] = ACTIONS(1796), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1796), - [anon_sym_o_PLUSe_GT] = ACTIONS(1796), - [anon_sym_e_PLUSo_GT] = ACTIONS(1796), - [anon_sym_err_GT_GT] = ACTIONS(1798), - [anon_sym_out_GT_GT] = ACTIONS(1798), - [anon_sym_e_GT_GT] = ACTIONS(1798), - [anon_sym_o_GT_GT] = ACTIONS(1798), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1798), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1798), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1798), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1798), - [aux_sym_unquoted_token1] = ACTIONS(1796), - [anon_sym_POUND] = ACTIONS(247), - }, - [1526] = { - [sym_comment] = STATE(1526), - [aux_sym_cmd_identifier_token41] = ACTIONS(1519), - [sym__newline] = ACTIONS(1521), - [anon_sym_SEMI] = ACTIONS(1521), - [anon_sym_PIPE] = ACTIONS(1521), - [anon_sym_err_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_GT_PIPE] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), - [anon_sym_RPAREN] = ACTIONS(1521), - [anon_sym_RBRACE] = ACTIONS(1521), - [aux_sym_expr_binary_token1] = ACTIONS(1521), - [aux_sym_expr_binary_token2] = ACTIONS(1521), - [aux_sym_expr_binary_token3] = ACTIONS(1521), - [aux_sym_expr_binary_token4] = ACTIONS(1521), - [aux_sym_expr_binary_token5] = ACTIONS(1521), - [aux_sym_expr_binary_token6] = ACTIONS(1521), - [aux_sym_expr_binary_token7] = ACTIONS(1521), - [aux_sym_expr_binary_token8] = ACTIONS(1521), - [aux_sym_expr_binary_token9] = ACTIONS(1521), - [aux_sym_expr_binary_token10] = ACTIONS(1521), - [aux_sym_expr_binary_token11] = ACTIONS(1521), - [aux_sym_expr_binary_token12] = ACTIONS(1521), - [aux_sym_expr_binary_token13] = ACTIONS(1521), - [aux_sym_expr_binary_token14] = ACTIONS(1521), - [aux_sym_expr_binary_token15] = ACTIONS(1521), - [aux_sym_expr_binary_token16] = ACTIONS(1521), - [aux_sym_expr_binary_token17] = ACTIONS(1521), - [aux_sym_expr_binary_token18] = ACTIONS(1521), - [aux_sym_expr_binary_token19] = ACTIONS(1521), - [aux_sym_expr_binary_token20] = ACTIONS(1521), - [aux_sym_expr_binary_token21] = ACTIONS(1521), - [aux_sym_expr_binary_token22] = ACTIONS(1521), - [aux_sym_expr_binary_token23] = ACTIONS(1521), - [aux_sym_expr_binary_token24] = ACTIONS(1521), - [aux_sym_expr_binary_token25] = ACTIONS(1521), - [aux_sym_expr_binary_token26] = ACTIONS(1521), - [aux_sym_expr_binary_token27] = ACTIONS(1521), - [aux_sym_expr_binary_token28] = ACTIONS(1521), - [anon_sym_DOT_DOT2] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), - [aux_sym__immediate_decimal_token2] = ACTIONS(4863), - [sym_filesize_unit] = ACTIONS(1521), - [sym_duration_unit] = ACTIONS(1521), - [anon_sym_err_GT] = ACTIONS(1519), - [anon_sym_out_GT] = ACTIONS(1519), - [anon_sym_e_GT] = ACTIONS(1519), - [anon_sym_o_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT] = ACTIONS(1519), - [anon_sym_err_GT_GT] = ACTIONS(1521), - [anon_sym_out_GT_GT] = ACTIONS(1521), - [anon_sym_e_GT_GT] = ACTIONS(1521), - [anon_sym_o_GT_GT] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), - [anon_sym_POUND] = ACTIONS(247), - }, - [1527] = { - [sym_comment] = STATE(1527), - [sym__newline] = ACTIONS(1521), - [anon_sym_SEMI] = ACTIONS(1521), - [anon_sym_PIPE] = ACTIONS(1521), - [anon_sym_err_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_GT_PIPE] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), - [anon_sym_RPAREN] = ACTIONS(1521), - [anon_sym_RBRACE] = ACTIONS(1521), - [anon_sym_LPAREN2] = ACTIONS(1521), - [aux_sym_expr_binary_token1] = ACTIONS(1521), - [aux_sym_expr_binary_token2] = ACTIONS(1521), - [aux_sym_expr_binary_token3] = ACTIONS(1521), - [aux_sym_expr_binary_token4] = ACTIONS(1521), - [aux_sym_expr_binary_token5] = ACTIONS(1521), - [aux_sym_expr_binary_token6] = ACTIONS(1521), - [aux_sym_expr_binary_token7] = ACTIONS(1521), - [aux_sym_expr_binary_token8] = ACTIONS(1521), - [aux_sym_expr_binary_token9] = ACTIONS(1521), - [aux_sym_expr_binary_token10] = ACTIONS(1521), - [aux_sym_expr_binary_token11] = ACTIONS(1521), - [aux_sym_expr_binary_token12] = ACTIONS(1521), - [aux_sym_expr_binary_token13] = ACTIONS(1521), - [aux_sym_expr_binary_token14] = ACTIONS(1521), - [aux_sym_expr_binary_token15] = ACTIONS(1521), - [aux_sym_expr_binary_token16] = ACTIONS(1521), - [aux_sym_expr_binary_token17] = ACTIONS(1521), - [aux_sym_expr_binary_token18] = ACTIONS(1521), - [aux_sym_expr_binary_token19] = ACTIONS(1521), - [aux_sym_expr_binary_token20] = ACTIONS(1521), - [aux_sym_expr_binary_token21] = ACTIONS(1521), - [aux_sym_expr_binary_token22] = ACTIONS(1521), - [aux_sym_expr_binary_token23] = ACTIONS(1521), - [aux_sym_expr_binary_token24] = ACTIONS(1521), - [aux_sym_expr_binary_token25] = ACTIONS(1521), - [aux_sym_expr_binary_token26] = ACTIONS(1521), - [aux_sym_expr_binary_token27] = ACTIONS(1521), - [aux_sym_expr_binary_token28] = ACTIONS(1521), - [anon_sym_DOT_DOT2] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), - [sym_filesize_unit] = ACTIONS(1521), - [sym_duration_unit] = ACTIONS(1521), - [anon_sym_err_GT] = ACTIONS(1519), - [anon_sym_out_GT] = ACTIONS(1519), - [anon_sym_e_GT] = ACTIONS(1519), - [anon_sym_o_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT] = ACTIONS(1519), - [anon_sym_err_GT_GT] = ACTIONS(1521), - [anon_sym_out_GT_GT] = ACTIONS(1521), - [anon_sym_e_GT_GT] = ACTIONS(1521), - [anon_sym_o_GT_GT] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), - [aux_sym_unquoted_token2] = ACTIONS(1519), - [anon_sym_POUND] = ACTIONS(247), - }, - [1528] = { - [sym_comment] = STATE(1528), - [sym__newline] = ACTIONS(1982), - [anon_sym_SEMI] = ACTIONS(1984), - [anon_sym_PIPE] = ACTIONS(1984), - [anon_sym_err_GT_PIPE] = ACTIONS(1984), - [anon_sym_out_GT_PIPE] = ACTIONS(1984), - [anon_sym_e_GT_PIPE] = ACTIONS(1984), - [anon_sym_o_GT_PIPE] = ACTIONS(1984), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1984), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1984), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1984), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1984), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_DASH] = ACTIONS(1982), - [aux_sym_ctrl_match_token1] = ACTIONS(1984), - [anon_sym_RBRACE] = ACTIONS(1984), - [anon_sym_EQ_GT] = ACTIONS(1984), - [aux_sym_expr_binary_token1] = ACTIONS(1984), - [aux_sym_expr_binary_token2] = ACTIONS(1984), - [aux_sym_expr_binary_token3] = ACTIONS(1984), - [aux_sym_expr_binary_token4] = ACTIONS(1984), - [aux_sym_expr_binary_token5] = ACTIONS(1984), - [aux_sym_expr_binary_token6] = ACTIONS(1984), - [aux_sym_expr_binary_token7] = ACTIONS(1984), - [aux_sym_expr_binary_token8] = ACTIONS(1984), - [aux_sym_expr_binary_token9] = ACTIONS(1984), - [aux_sym_expr_binary_token10] = ACTIONS(1984), - [aux_sym_expr_binary_token11] = ACTIONS(1984), - [aux_sym_expr_binary_token12] = ACTIONS(1984), - [aux_sym_expr_binary_token13] = ACTIONS(1984), - [aux_sym_expr_binary_token14] = ACTIONS(1984), - [aux_sym_expr_binary_token15] = ACTIONS(1984), - [aux_sym_expr_binary_token16] = ACTIONS(1984), - [aux_sym_expr_binary_token17] = ACTIONS(1984), - [aux_sym_expr_binary_token18] = ACTIONS(1984), - [aux_sym_expr_binary_token19] = ACTIONS(1984), - [aux_sym_expr_binary_token20] = ACTIONS(1984), - [aux_sym_expr_binary_token21] = ACTIONS(1984), - [aux_sym_expr_binary_token22] = ACTIONS(1984), - [aux_sym_expr_binary_token23] = ACTIONS(1984), - [aux_sym_expr_binary_token24] = ACTIONS(1984), - [aux_sym_expr_binary_token25] = ACTIONS(1984), - [aux_sym_expr_binary_token26] = ACTIONS(1984), - [aux_sym_expr_binary_token27] = ACTIONS(1984), - [aux_sym_expr_binary_token28] = ACTIONS(1984), - [anon_sym_DOT_DOT2] = ACTIONS(1982), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1984), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1984), - [aux_sym_record_entry_token1] = ACTIONS(1984), - [anon_sym_err_GT] = ACTIONS(1982), - [anon_sym_out_GT] = ACTIONS(1982), - [anon_sym_e_GT] = ACTIONS(1982), - [anon_sym_o_GT] = ACTIONS(1982), - [anon_sym_err_PLUSout_GT] = ACTIONS(1982), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1982), - [anon_sym_o_PLUSe_GT] = ACTIONS(1982), - [anon_sym_e_PLUSo_GT] = ACTIONS(1982), - [anon_sym_err_GT_GT] = ACTIONS(1984), - [anon_sym_out_GT_GT] = ACTIONS(1984), - [anon_sym_e_GT_GT] = ACTIONS(1984), - [anon_sym_o_GT_GT] = ACTIONS(1984), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1984), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1984), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1984), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1984), - [anon_sym_POUND] = ACTIONS(247), - }, - [1529] = { - [sym_cell_path] = STATE(2089), - [sym_path] = STATE(1868), - [sym_comment] = STATE(1529), - [aux_sym_cell_path_repeat1] = STATE(1651), - [ts_builtin_sym_end] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1810), - [anon_sym_false] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1810), - [aux_sym_cmd_identifier_token38] = ACTIONS(1810), - [aux_sym_cmd_identifier_token39] = ACTIONS(1810), - [aux_sym_cmd_identifier_token40] = ACTIONS(1810), - [sym__newline] = ACTIONS(1810), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_PIPE] = ACTIONS(1810), - [anon_sym_err_GT_PIPE] = ACTIONS(1810), - [anon_sym_out_GT_PIPE] = ACTIONS(1810), - [anon_sym_e_GT_PIPE] = ACTIONS(1810), - [anon_sym_o_GT_PIPE] = ACTIONS(1810), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1810), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1810), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1810), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_DOLLAR] = ACTIONS(1808), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_DASH] = ACTIONS(1808), - [aux_sym_ctrl_match_token1] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(4849), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1810), - [anon_sym_DOT_DOT_LT] = ACTIONS(1810), - [aux_sym__val_number_decimal_token1] = ACTIONS(1808), - [aux_sym__val_number_decimal_token2] = ACTIONS(1810), - [aux_sym__val_number_decimal_token3] = ACTIONS(1810), - [aux_sym__val_number_decimal_token4] = ACTIONS(1810), - [aux_sym__val_number_token1] = ACTIONS(1810), - [aux_sym__val_number_token2] = ACTIONS(1810), - [aux_sym__val_number_token3] = ACTIONS(1810), - [anon_sym_0b] = ACTIONS(1808), - [anon_sym_0o] = ACTIONS(1808), - [anon_sym_0x] = ACTIONS(1808), - [sym_val_date] = ACTIONS(1810), - [anon_sym_DQUOTE] = ACTIONS(1810), - [sym__str_single_quotes] = ACTIONS(1810), - [sym__str_back_ticks] = ACTIONS(1810), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1810), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1810), - [anon_sym_err_GT] = ACTIONS(1808), - [anon_sym_out_GT] = ACTIONS(1808), - [anon_sym_e_GT] = ACTIONS(1808), - [anon_sym_o_GT] = ACTIONS(1808), - [anon_sym_err_PLUSout_GT] = ACTIONS(1808), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1808), - [anon_sym_o_PLUSe_GT] = ACTIONS(1808), - [anon_sym_e_PLUSo_GT] = ACTIONS(1808), - [anon_sym_err_GT_GT] = ACTIONS(1810), - [anon_sym_out_GT_GT] = ACTIONS(1810), - [anon_sym_e_GT_GT] = ACTIONS(1810), - [anon_sym_o_GT_GT] = ACTIONS(1810), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1810), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1810), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1810), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1810), - [aux_sym_unquoted_token1] = ACTIONS(1808), - [anon_sym_POUND] = ACTIONS(247), - }, - [1530] = { - [sym_cell_path] = STATE(1979), - [sym_path] = STATE(1868), - [sym_comment] = STATE(1530), - [aux_sym_cell_path_repeat1] = STATE(1651), - [ts_builtin_sym_end] = ACTIONS(1822), - [anon_sym_true] = ACTIONS(1822), - [anon_sym_false] = ACTIONS(1822), - [anon_sym_null] = ACTIONS(1822), - [aux_sym_cmd_identifier_token38] = ACTIONS(1822), - [aux_sym_cmd_identifier_token39] = ACTIONS(1822), - [aux_sym_cmd_identifier_token40] = ACTIONS(1822), - [sym__newline] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1822), - [anon_sym_PIPE] = ACTIONS(1822), - [anon_sym_err_GT_PIPE] = ACTIONS(1822), - [anon_sym_out_GT_PIPE] = ACTIONS(1822), - [anon_sym_e_GT_PIPE] = ACTIONS(1822), - [anon_sym_o_GT_PIPE] = ACTIONS(1822), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1822), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1822), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1822), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1822), - [anon_sym_LBRACK] = ACTIONS(1822), - [anon_sym_LPAREN] = ACTIONS(1822), - [anon_sym_DOLLAR] = ACTIONS(1820), - [anon_sym_DASH_DASH] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1820), - [aux_sym_ctrl_match_token1] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1820), - [anon_sym_DOT] = ACTIONS(4849), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1822), - [anon_sym_DOT_DOT_LT] = ACTIONS(1822), - [aux_sym__val_number_decimal_token1] = ACTIONS(1820), - [aux_sym__val_number_decimal_token2] = ACTIONS(1822), - [aux_sym__val_number_decimal_token3] = ACTIONS(1822), - [aux_sym__val_number_decimal_token4] = ACTIONS(1822), - [aux_sym__val_number_token1] = ACTIONS(1822), - [aux_sym__val_number_token2] = ACTIONS(1822), - [aux_sym__val_number_token3] = ACTIONS(1822), - [anon_sym_0b] = ACTIONS(1820), - [anon_sym_0o] = ACTIONS(1820), - [anon_sym_0x] = ACTIONS(1820), - [sym_val_date] = ACTIONS(1822), - [anon_sym_DQUOTE] = ACTIONS(1822), - [sym__str_single_quotes] = ACTIONS(1822), - [sym__str_back_ticks] = ACTIONS(1822), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1822), - [anon_sym_err_GT] = ACTIONS(1820), - [anon_sym_out_GT] = ACTIONS(1820), - [anon_sym_e_GT] = ACTIONS(1820), - [anon_sym_o_GT] = ACTIONS(1820), - [anon_sym_err_PLUSout_GT] = ACTIONS(1820), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1820), - [anon_sym_o_PLUSe_GT] = ACTIONS(1820), - [anon_sym_e_PLUSo_GT] = ACTIONS(1820), - [anon_sym_err_GT_GT] = ACTIONS(1822), - [anon_sym_out_GT_GT] = ACTIONS(1822), - [anon_sym_e_GT_GT] = ACTIONS(1822), - [anon_sym_o_GT_GT] = ACTIONS(1822), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1822), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1822), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1822), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1822), - [aux_sym_unquoted_token1] = ACTIONS(1820), - [anon_sym_POUND] = ACTIONS(247), - }, - [1531] = { - [sym_comment] = STATE(1531), - [anon_sym_true] = ACTIONS(1978), - [anon_sym_false] = ACTIONS(1978), - [anon_sym_null] = ACTIONS(1978), - [aux_sym_cmd_identifier_token38] = ACTIONS(1978), - [aux_sym_cmd_identifier_token39] = ACTIONS(1978), - [aux_sym_cmd_identifier_token40] = ACTIONS(1978), - [sym__newline] = ACTIONS(1978), - [anon_sym_SEMI] = ACTIONS(1978), - [anon_sym_PIPE] = ACTIONS(1978), - [anon_sym_err_GT_PIPE] = ACTIONS(1978), - [anon_sym_out_GT_PIPE] = ACTIONS(1978), - [anon_sym_e_GT_PIPE] = ACTIONS(1978), - [anon_sym_o_GT_PIPE] = ACTIONS(1978), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1978), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1978), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1978), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1978), - [anon_sym_LBRACK] = ACTIONS(1978), - [anon_sym_LPAREN] = ACTIONS(1978), - [anon_sym_RPAREN] = ACTIONS(1978), - [anon_sym_DOLLAR] = ACTIONS(1972), - [anon_sym_DASH_DASH] = ACTIONS(1978), - [anon_sym_DASH] = ACTIONS(1972), - [aux_sym_ctrl_match_token1] = ACTIONS(1978), - [anon_sym_RBRACE] = ACTIONS(1978), - [anon_sym_DOT_DOT] = ACTIONS(1972), - [anon_sym_DOT_DOT2] = ACTIONS(4865), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1972), - [anon_sym_DOT_DOT_LT] = ACTIONS(1972), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4867), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4867), - [aux_sym__val_number_decimal_token1] = ACTIONS(1972), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1978), - [aux_sym__val_number_decimal_token4] = ACTIONS(1978), - [aux_sym__val_number_token1] = ACTIONS(1978), - [aux_sym__val_number_token2] = ACTIONS(1978), - [aux_sym__val_number_token3] = ACTIONS(1978), - [anon_sym_0b] = ACTIONS(1972), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1978), - [anon_sym_DQUOTE] = ACTIONS(1978), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1978), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1978), - [anon_sym_err_GT] = ACTIONS(1972), - [anon_sym_out_GT] = ACTIONS(1972), - [anon_sym_e_GT] = ACTIONS(1972), - [anon_sym_o_GT] = ACTIONS(1972), - [anon_sym_err_PLUSout_GT] = ACTIONS(1972), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1972), - [anon_sym_o_PLUSe_GT] = ACTIONS(1972), - [anon_sym_e_PLUSo_GT] = ACTIONS(1972), - [anon_sym_err_GT_GT] = ACTIONS(1978), - [anon_sym_out_GT_GT] = ACTIONS(1978), - [anon_sym_e_GT_GT] = ACTIONS(1978), - [anon_sym_o_GT_GT] = ACTIONS(1978), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1978), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1978), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1978), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1978), - [aux_sym_unquoted_token1] = ACTIONS(1972), - [anon_sym_POUND] = ACTIONS(247), - }, - [1532] = { - [sym__expr_parenthesized_immediate] = STATE(7616), - [sym_comment] = STATE(1532), - [sym__newline] = ACTIONS(3199), - [anon_sym_SEMI] = ACTIONS(3199), - [anon_sym_PIPE] = ACTIONS(3199), - [anon_sym_err_GT_PIPE] = ACTIONS(3199), - [anon_sym_out_GT_PIPE] = ACTIONS(3199), - [anon_sym_e_GT_PIPE] = ACTIONS(3199), - [anon_sym_o_GT_PIPE] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3199), - [anon_sym_RPAREN] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_DASH_DASH] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3201), - [aux_sym_ctrl_match_token1] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym_EQ_GT] = ACTIONS(3199), - [anon_sym_LPAREN2] = ACTIONS(2947), - [aux_sym_expr_binary_token1] = ACTIONS(3199), - [aux_sym_expr_binary_token2] = ACTIONS(3199), - [aux_sym_expr_binary_token3] = ACTIONS(3199), - [aux_sym_expr_binary_token4] = ACTIONS(3199), - [aux_sym_expr_binary_token5] = ACTIONS(3199), - [aux_sym_expr_binary_token6] = ACTIONS(3199), - [aux_sym_expr_binary_token7] = ACTIONS(3199), - [aux_sym_expr_binary_token8] = ACTIONS(3199), - [aux_sym_expr_binary_token9] = ACTIONS(3199), - [aux_sym_expr_binary_token10] = ACTIONS(3199), - [aux_sym_expr_binary_token11] = ACTIONS(3199), - [aux_sym_expr_binary_token12] = ACTIONS(3199), - [aux_sym_expr_binary_token13] = ACTIONS(3199), - [aux_sym_expr_binary_token14] = ACTIONS(3199), - [aux_sym_expr_binary_token15] = ACTIONS(3199), - [aux_sym_expr_binary_token16] = ACTIONS(3199), - [aux_sym_expr_binary_token17] = ACTIONS(3199), - [aux_sym_expr_binary_token18] = ACTIONS(3199), - [aux_sym_expr_binary_token19] = ACTIONS(3199), - [aux_sym_expr_binary_token20] = ACTIONS(3199), - [aux_sym_expr_binary_token21] = ACTIONS(3199), - [aux_sym_expr_binary_token22] = ACTIONS(3199), - [aux_sym_expr_binary_token23] = ACTIONS(3199), - [aux_sym_expr_binary_token24] = ACTIONS(3199), - [aux_sym_expr_binary_token25] = ACTIONS(3199), - [aux_sym_expr_binary_token26] = ACTIONS(3199), - [aux_sym_expr_binary_token27] = ACTIONS(3199), - [aux_sym_expr_binary_token28] = ACTIONS(3199), - [anon_sym_err_GT] = ACTIONS(3201), - [anon_sym_out_GT] = ACTIONS(3201), - [anon_sym_e_GT] = ACTIONS(3201), - [anon_sym_o_GT] = ACTIONS(3201), - [anon_sym_err_PLUSout_GT] = ACTIONS(3201), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), - [anon_sym_o_PLUSe_GT] = ACTIONS(3201), - [anon_sym_e_PLUSo_GT] = ACTIONS(3201), - [anon_sym_err_GT_GT] = ACTIONS(3199), - [anon_sym_out_GT_GT] = ACTIONS(3199), - [anon_sym_e_GT_GT] = ACTIONS(3199), - [anon_sym_o_GT_GT] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), - [anon_sym_POUND] = ACTIONS(247), - }, - [1533] = { - [sym_comment] = STATE(1533), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_RPAREN] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1587), - [anon_sym_LPAREN2] = ACTIONS(1587), - [aux_sym_expr_binary_token1] = ACTIONS(1587), - [aux_sym_expr_binary_token2] = ACTIONS(1587), - [aux_sym_expr_binary_token3] = ACTIONS(1587), - [aux_sym_expr_binary_token4] = ACTIONS(1587), - [aux_sym_expr_binary_token5] = ACTIONS(1587), - [aux_sym_expr_binary_token6] = ACTIONS(1587), - [aux_sym_expr_binary_token7] = ACTIONS(1587), - [aux_sym_expr_binary_token8] = ACTIONS(1587), - [aux_sym_expr_binary_token9] = ACTIONS(1587), - [aux_sym_expr_binary_token10] = ACTIONS(1587), - [aux_sym_expr_binary_token11] = ACTIONS(1587), - [aux_sym_expr_binary_token12] = ACTIONS(1587), - [aux_sym_expr_binary_token13] = ACTIONS(1587), - [aux_sym_expr_binary_token14] = ACTIONS(1587), - [aux_sym_expr_binary_token15] = ACTIONS(1587), - [aux_sym_expr_binary_token16] = ACTIONS(1587), - [aux_sym_expr_binary_token17] = ACTIONS(1587), - [aux_sym_expr_binary_token18] = ACTIONS(1587), - [aux_sym_expr_binary_token19] = ACTIONS(1587), - [aux_sym_expr_binary_token20] = ACTIONS(1587), - [aux_sym_expr_binary_token21] = ACTIONS(1587), - [aux_sym_expr_binary_token22] = ACTIONS(1587), - [aux_sym_expr_binary_token23] = ACTIONS(1587), - [aux_sym_expr_binary_token24] = ACTIONS(1587), - [aux_sym_expr_binary_token25] = ACTIONS(1587), - [aux_sym_expr_binary_token26] = ACTIONS(1587), - [aux_sym_expr_binary_token27] = ACTIONS(1587), - [aux_sym_expr_binary_token28] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1585), - [anon_sym_out_GT] = ACTIONS(1585), - [anon_sym_e_GT] = ACTIONS(1585), - [anon_sym_o_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT] = ACTIONS(1585), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), - [aux_sym_unquoted_token2] = ACTIONS(1585), - [anon_sym_POUND] = ACTIONS(247), - }, - [1534] = { - [sym_cell_path] = STATE(2023), - [sym_path] = STATE(1868), - [sym_comment] = STATE(1534), - [aux_sym_cell_path_repeat1] = STATE(1651), - [ts_builtin_sym_end] = ACTIONS(1745), - [anon_sym_true] = ACTIONS(1745), - [anon_sym_false] = ACTIONS(1745), - [anon_sym_null] = ACTIONS(1745), - [aux_sym_cmd_identifier_token38] = ACTIONS(1745), - [aux_sym_cmd_identifier_token39] = ACTIONS(1745), - [aux_sym_cmd_identifier_token40] = ACTIONS(1745), - [sym__newline] = ACTIONS(1745), - [anon_sym_SEMI] = ACTIONS(1745), - [anon_sym_PIPE] = ACTIONS(1745), - [anon_sym_err_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_GT_PIPE] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1745), - [anon_sym_LBRACK] = ACTIONS(1745), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_DOLLAR] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1741), - [aux_sym_ctrl_match_token1] = ACTIONS(1745), - [anon_sym_DOT_DOT] = ACTIONS(1741), - [anon_sym_DOT] = ACTIONS(4849), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1745), - [anon_sym_DOT_DOT_LT] = ACTIONS(1745), - [aux_sym__val_number_decimal_token1] = ACTIONS(1741), - [aux_sym__val_number_decimal_token2] = ACTIONS(1745), - [aux_sym__val_number_decimal_token3] = ACTIONS(1745), - [aux_sym__val_number_decimal_token4] = ACTIONS(1745), - [aux_sym__val_number_token1] = ACTIONS(1745), - [aux_sym__val_number_token2] = ACTIONS(1745), - [aux_sym__val_number_token3] = ACTIONS(1745), - [anon_sym_0b] = ACTIONS(1741), - [anon_sym_0o] = ACTIONS(1741), - [anon_sym_0x] = ACTIONS(1741), - [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_err_GT] = ACTIONS(1741), - [anon_sym_out_GT] = ACTIONS(1741), - [anon_sym_e_GT] = ACTIONS(1741), - [anon_sym_o_GT] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT] = ACTIONS(1741), - [anon_sym_err_GT_GT] = ACTIONS(1745), - [anon_sym_out_GT_GT] = ACTIONS(1745), - [anon_sym_e_GT_GT] = ACTIONS(1745), - [anon_sym_o_GT_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1745), - [aux_sym_unquoted_token1] = ACTIONS(1741), - [anon_sym_POUND] = ACTIONS(247), - }, - [1535] = { - [sym__expr_parenthesized_immediate] = STATE(7616), - [sym_comment] = STATE(1535), - [sym__newline] = ACTIONS(3199), - [anon_sym_SEMI] = ACTIONS(3199), - [anon_sym_PIPE] = ACTIONS(3199), - [anon_sym_err_GT_PIPE] = ACTIONS(3199), - [anon_sym_out_GT_PIPE] = ACTIONS(3199), - [anon_sym_e_GT_PIPE] = ACTIONS(3199), - [anon_sym_o_GT_PIPE] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3199), - [anon_sym_RPAREN] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_DASH_DASH] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3201), - [aux_sym_ctrl_match_token1] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym_EQ_GT] = ACTIONS(3199), - [anon_sym_LPAREN2] = ACTIONS(2947), - [aux_sym_expr_binary_token1] = ACTIONS(3199), - [aux_sym_expr_binary_token2] = ACTIONS(3199), - [aux_sym_expr_binary_token3] = ACTIONS(3199), - [aux_sym_expr_binary_token4] = ACTIONS(3199), - [aux_sym_expr_binary_token5] = ACTIONS(3199), - [aux_sym_expr_binary_token6] = ACTIONS(3199), - [aux_sym_expr_binary_token7] = ACTIONS(3199), - [aux_sym_expr_binary_token8] = ACTIONS(3199), - [aux_sym_expr_binary_token9] = ACTIONS(3199), - [aux_sym_expr_binary_token10] = ACTIONS(3199), - [aux_sym_expr_binary_token11] = ACTIONS(3199), - [aux_sym_expr_binary_token12] = ACTIONS(3199), - [aux_sym_expr_binary_token13] = ACTIONS(3199), - [aux_sym_expr_binary_token14] = ACTIONS(3199), - [aux_sym_expr_binary_token15] = ACTIONS(3199), - [aux_sym_expr_binary_token16] = ACTIONS(3199), - [aux_sym_expr_binary_token17] = ACTIONS(3199), - [aux_sym_expr_binary_token18] = ACTIONS(3199), - [aux_sym_expr_binary_token19] = ACTIONS(3199), - [aux_sym_expr_binary_token20] = ACTIONS(3199), - [aux_sym_expr_binary_token21] = ACTIONS(3199), - [aux_sym_expr_binary_token22] = ACTIONS(3199), - [aux_sym_expr_binary_token23] = ACTIONS(3199), - [aux_sym_expr_binary_token24] = ACTIONS(3199), - [aux_sym_expr_binary_token25] = ACTIONS(3199), - [aux_sym_expr_binary_token26] = ACTIONS(3199), - [aux_sym_expr_binary_token27] = ACTIONS(3199), - [aux_sym_expr_binary_token28] = ACTIONS(3199), - [anon_sym_err_GT] = ACTIONS(3201), - [anon_sym_out_GT] = ACTIONS(3201), - [anon_sym_e_GT] = ACTIONS(3201), - [anon_sym_o_GT] = ACTIONS(3201), - [anon_sym_err_PLUSout_GT] = ACTIONS(3201), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), - [anon_sym_o_PLUSe_GT] = ACTIONS(3201), - [anon_sym_e_PLUSo_GT] = ACTIONS(3201), - [anon_sym_err_GT_GT] = ACTIONS(3199), - [anon_sym_out_GT_GT] = ACTIONS(3199), - [anon_sym_e_GT_GT] = ACTIONS(3199), - [anon_sym_o_GT_GT] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), - [anon_sym_POUND] = ACTIONS(247), - }, - [1536] = { - [sym__expr_parenthesized_immediate] = STATE(7616), - [sym_comment] = STATE(1536), - [sym__newline] = ACTIONS(3199), - [anon_sym_SEMI] = ACTIONS(3199), - [anon_sym_PIPE] = ACTIONS(3199), - [anon_sym_err_GT_PIPE] = ACTIONS(3199), - [anon_sym_out_GT_PIPE] = ACTIONS(3199), - [anon_sym_e_GT_PIPE] = ACTIONS(3199), - [anon_sym_o_GT_PIPE] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3199), - [anon_sym_RPAREN] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_DASH_DASH] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3201), - [aux_sym_ctrl_match_token1] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym_EQ_GT] = ACTIONS(3199), - [anon_sym_LPAREN2] = ACTIONS(2947), - [aux_sym_expr_binary_token1] = ACTIONS(3199), - [aux_sym_expr_binary_token2] = ACTIONS(3199), - [aux_sym_expr_binary_token3] = ACTIONS(3199), - [aux_sym_expr_binary_token4] = ACTIONS(3199), - [aux_sym_expr_binary_token5] = ACTIONS(3199), - [aux_sym_expr_binary_token6] = ACTIONS(3199), - [aux_sym_expr_binary_token7] = ACTIONS(3199), - [aux_sym_expr_binary_token8] = ACTIONS(3199), - [aux_sym_expr_binary_token9] = ACTIONS(3199), - [aux_sym_expr_binary_token10] = ACTIONS(3199), - [aux_sym_expr_binary_token11] = ACTIONS(3199), - [aux_sym_expr_binary_token12] = ACTIONS(3199), - [aux_sym_expr_binary_token13] = ACTIONS(3199), - [aux_sym_expr_binary_token14] = ACTIONS(3199), - [aux_sym_expr_binary_token15] = ACTIONS(3199), - [aux_sym_expr_binary_token16] = ACTIONS(3199), - [aux_sym_expr_binary_token17] = ACTIONS(3199), - [aux_sym_expr_binary_token18] = ACTIONS(3199), - [aux_sym_expr_binary_token19] = ACTIONS(3199), - [aux_sym_expr_binary_token20] = ACTIONS(3199), - [aux_sym_expr_binary_token21] = ACTIONS(3199), - [aux_sym_expr_binary_token22] = ACTIONS(3199), - [aux_sym_expr_binary_token23] = ACTIONS(3199), - [aux_sym_expr_binary_token24] = ACTIONS(3199), - [aux_sym_expr_binary_token25] = ACTIONS(3199), - [aux_sym_expr_binary_token26] = ACTIONS(3199), - [aux_sym_expr_binary_token27] = ACTIONS(3199), - [aux_sym_expr_binary_token28] = ACTIONS(3199), - [anon_sym_err_GT] = ACTIONS(3201), - [anon_sym_out_GT] = ACTIONS(3201), - [anon_sym_e_GT] = ACTIONS(3201), - [anon_sym_o_GT] = ACTIONS(3201), - [anon_sym_err_PLUSout_GT] = ACTIONS(3201), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), - [anon_sym_o_PLUSe_GT] = ACTIONS(3201), - [anon_sym_e_PLUSo_GT] = ACTIONS(3201), - [anon_sym_err_GT_GT] = ACTIONS(3199), - [anon_sym_out_GT_GT] = ACTIONS(3199), - [anon_sym_e_GT_GT] = ACTIONS(3199), - [anon_sym_o_GT_GT] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), - [anon_sym_POUND] = ACTIONS(247), - }, - [1537] = { - [sym__expr_parenthesized_immediate] = STATE(7616), - [sym_comment] = STATE(1537), - [sym__newline] = ACTIONS(3199), - [anon_sym_SEMI] = ACTIONS(3199), - [anon_sym_PIPE] = ACTIONS(3199), - [anon_sym_err_GT_PIPE] = ACTIONS(3199), - [anon_sym_out_GT_PIPE] = ACTIONS(3199), - [anon_sym_e_GT_PIPE] = ACTIONS(3199), - [anon_sym_o_GT_PIPE] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3199), - [anon_sym_RPAREN] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_DASH_DASH] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3201), - [aux_sym_ctrl_match_token1] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym_EQ_GT] = ACTIONS(3199), - [anon_sym_LPAREN2] = ACTIONS(2947), - [aux_sym_expr_binary_token1] = ACTIONS(3199), - [aux_sym_expr_binary_token2] = ACTIONS(3199), - [aux_sym_expr_binary_token3] = ACTIONS(3199), - [aux_sym_expr_binary_token4] = ACTIONS(3199), - [aux_sym_expr_binary_token5] = ACTIONS(3199), - [aux_sym_expr_binary_token6] = ACTIONS(3199), - [aux_sym_expr_binary_token7] = ACTIONS(3199), - [aux_sym_expr_binary_token8] = ACTIONS(3199), - [aux_sym_expr_binary_token9] = ACTIONS(3199), - [aux_sym_expr_binary_token10] = ACTIONS(3199), - [aux_sym_expr_binary_token11] = ACTIONS(3199), - [aux_sym_expr_binary_token12] = ACTIONS(3199), - [aux_sym_expr_binary_token13] = ACTIONS(3199), - [aux_sym_expr_binary_token14] = ACTIONS(3199), - [aux_sym_expr_binary_token15] = ACTIONS(3199), - [aux_sym_expr_binary_token16] = ACTIONS(3199), - [aux_sym_expr_binary_token17] = ACTIONS(3199), - [aux_sym_expr_binary_token18] = ACTIONS(3199), - [aux_sym_expr_binary_token19] = ACTIONS(3199), - [aux_sym_expr_binary_token20] = ACTIONS(3199), - [aux_sym_expr_binary_token21] = ACTIONS(3199), - [aux_sym_expr_binary_token22] = ACTIONS(3199), - [aux_sym_expr_binary_token23] = ACTIONS(3199), - [aux_sym_expr_binary_token24] = ACTIONS(3199), - [aux_sym_expr_binary_token25] = ACTIONS(3199), - [aux_sym_expr_binary_token26] = ACTIONS(3199), - [aux_sym_expr_binary_token27] = ACTIONS(3199), - [aux_sym_expr_binary_token28] = ACTIONS(3199), - [anon_sym_err_GT] = ACTIONS(3201), - [anon_sym_out_GT] = ACTIONS(3201), - [anon_sym_e_GT] = ACTIONS(3201), - [anon_sym_o_GT] = ACTIONS(3201), - [anon_sym_err_PLUSout_GT] = ACTIONS(3201), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), - [anon_sym_o_PLUSe_GT] = ACTIONS(3201), - [anon_sym_e_PLUSo_GT] = ACTIONS(3201), - [anon_sym_err_GT_GT] = ACTIONS(3199), - [anon_sym_out_GT_GT] = ACTIONS(3199), - [anon_sym_e_GT_GT] = ACTIONS(3199), - [anon_sym_o_GT_GT] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), - [anon_sym_POUND] = ACTIONS(247), - }, - [1538] = { - [sym_cell_path] = STATE(2037), - [sym_path] = STATE(1868), - [sym_comment] = STATE(1538), - [aux_sym_cell_path_repeat1] = STATE(1651), - [ts_builtin_sym_end] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1772), - [anon_sym_false] = ACTIONS(1772), - [anon_sym_null] = ACTIONS(1772), - [aux_sym_cmd_identifier_token38] = ACTIONS(1772), - [aux_sym_cmd_identifier_token39] = ACTIONS(1772), - [aux_sym_cmd_identifier_token40] = ACTIONS(1772), - [sym__newline] = ACTIONS(1772), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1772), - [anon_sym_err_GT_PIPE] = ACTIONS(1772), - [anon_sym_out_GT_PIPE] = ACTIONS(1772), - [anon_sym_e_GT_PIPE] = ACTIONS(1772), - [anon_sym_o_GT_PIPE] = ACTIONS(1772), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1772), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1772), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1772), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1772), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_DOLLAR] = ACTIONS(1770), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_DASH] = ACTIONS(1770), - [aux_sym_ctrl_match_token1] = ACTIONS(1772), - [anon_sym_DOT_DOT] = ACTIONS(1770), - [anon_sym_DOT] = ACTIONS(4849), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1772), - [anon_sym_DOT_DOT_LT] = ACTIONS(1772), - [aux_sym__val_number_decimal_token1] = ACTIONS(1770), - [aux_sym__val_number_decimal_token2] = ACTIONS(1772), - [aux_sym__val_number_decimal_token3] = ACTIONS(1772), - [aux_sym__val_number_decimal_token4] = ACTIONS(1772), - [aux_sym__val_number_token1] = ACTIONS(1772), - [aux_sym__val_number_token2] = ACTIONS(1772), - [aux_sym__val_number_token3] = ACTIONS(1772), - [anon_sym_0b] = ACTIONS(1770), - [anon_sym_0o] = ACTIONS(1770), - [anon_sym_0x] = ACTIONS(1770), - [sym_val_date] = ACTIONS(1772), - [anon_sym_DQUOTE] = ACTIONS(1772), - [sym__str_single_quotes] = ACTIONS(1772), - [sym__str_back_ticks] = ACTIONS(1772), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1772), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1772), - [anon_sym_err_GT] = ACTIONS(1770), - [anon_sym_out_GT] = ACTIONS(1770), - [anon_sym_e_GT] = ACTIONS(1770), - [anon_sym_o_GT] = ACTIONS(1770), - [anon_sym_err_PLUSout_GT] = ACTIONS(1770), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1770), - [anon_sym_o_PLUSe_GT] = ACTIONS(1770), - [anon_sym_e_PLUSo_GT] = ACTIONS(1770), - [anon_sym_err_GT_GT] = ACTIONS(1772), - [anon_sym_out_GT_GT] = ACTIONS(1772), - [anon_sym_e_GT_GT] = ACTIONS(1772), - [anon_sym_o_GT_GT] = ACTIONS(1772), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1772), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1772), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1772), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1772), - [aux_sym_unquoted_token1] = ACTIONS(1770), - [anon_sym_POUND] = ACTIONS(247), - }, - [1539] = { - [sym_comment] = STATE(1539), - [anon_sym_true] = ACTIONS(2072), - [anon_sym_false] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2072), - [aux_sym_cmd_identifier_token38] = ACTIONS(2072), - [aux_sym_cmd_identifier_token39] = ACTIONS(2072), - [aux_sym_cmd_identifier_token40] = ACTIONS(2072), - [sym__newline] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_PIPE] = ACTIONS(2072), - [anon_sym_err_GT_PIPE] = ACTIONS(2072), - [anon_sym_out_GT_PIPE] = ACTIONS(2072), - [anon_sym_e_GT_PIPE] = ACTIONS(2072), - [anon_sym_o_GT_PIPE] = ACTIONS(2072), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2072), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2072), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2072), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2072), - [anon_sym_LBRACK] = ACTIONS(2072), - [anon_sym_LPAREN] = ACTIONS(2072), - [anon_sym_RPAREN] = ACTIONS(2072), - [anon_sym_DOLLAR] = ACTIONS(2066), - [anon_sym_DASH_DASH] = ACTIONS(2072), - [anon_sym_DASH] = ACTIONS(2066), - [aux_sym_ctrl_match_token1] = ACTIONS(2072), - [anon_sym_RBRACE] = ACTIONS(2072), - [anon_sym_DOT_DOT] = ACTIONS(2066), - [anon_sym_DOT_DOT2] = ACTIONS(4869), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2066), - [anon_sym_DOT_DOT_LT] = ACTIONS(2066), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4871), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4871), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2072), - [aux_sym__val_number_decimal_token3] = ACTIONS(2072), - [aux_sym__val_number_decimal_token4] = ACTIONS(2072), - [aux_sym__val_number_token1] = ACTIONS(2072), - [aux_sym__val_number_token2] = ACTIONS(2072), - [aux_sym__val_number_token3] = ACTIONS(2072), - [anon_sym_0b] = ACTIONS(2066), - [anon_sym_0o] = ACTIONS(2066), - [anon_sym_0x] = ACTIONS(2066), - [sym_val_date] = ACTIONS(2072), - [anon_sym_DQUOTE] = ACTIONS(2072), - [sym__str_single_quotes] = ACTIONS(2072), - [sym__str_back_ticks] = ACTIONS(2072), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2072), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2072), - [anon_sym_err_GT] = ACTIONS(2066), - [anon_sym_out_GT] = ACTIONS(2066), - [anon_sym_e_GT] = ACTIONS(2066), - [anon_sym_o_GT] = ACTIONS(2066), - [anon_sym_err_PLUSout_GT] = ACTIONS(2066), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2066), - [anon_sym_o_PLUSe_GT] = ACTIONS(2066), - [anon_sym_e_PLUSo_GT] = ACTIONS(2066), - [anon_sym_err_GT_GT] = ACTIONS(2072), - [anon_sym_out_GT_GT] = ACTIONS(2072), - [anon_sym_e_GT_GT] = ACTIONS(2072), - [anon_sym_o_GT_GT] = ACTIONS(2072), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2072), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2072), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2072), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2072), - [aux_sym_unquoted_token1] = ACTIONS(2066), - [anon_sym_POUND] = ACTIONS(247), - }, - [1540] = { - [sym_comment] = STATE(1540), - [sym__newline] = ACTIONS(3173), - [anon_sym_SEMI] = ACTIONS(3173), - [anon_sym_PIPE] = ACTIONS(3173), - [anon_sym_err_GT_PIPE] = ACTIONS(3173), - [anon_sym_out_GT_PIPE] = ACTIONS(3173), - [anon_sym_e_GT_PIPE] = ACTIONS(3173), - [anon_sym_o_GT_PIPE] = ACTIONS(3173), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3173), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3173), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3173), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3173), - [anon_sym_RPAREN] = ACTIONS(3173), - [anon_sym_COMMA] = ACTIONS(3173), - [anon_sym_DASH_DASH] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3175), - [aux_sym_ctrl_match_token1] = ACTIONS(3173), - [anon_sym_RBRACE] = ACTIONS(3173), - [aux_sym_expr_binary_token1] = ACTIONS(3177), - [aux_sym_expr_binary_token2] = ACTIONS(3177), - [aux_sym_expr_binary_token3] = ACTIONS(3177), - [aux_sym_expr_binary_token4] = ACTIONS(3177), - [aux_sym_expr_binary_token5] = ACTIONS(3177), - [aux_sym_expr_binary_token6] = ACTIONS(3177), - [aux_sym_expr_binary_token7] = ACTIONS(3177), - [aux_sym_expr_binary_token8] = ACTIONS(3177), - [aux_sym_expr_binary_token9] = ACTIONS(3177), - [aux_sym_expr_binary_token10] = ACTIONS(3177), - [aux_sym_expr_binary_token11] = ACTIONS(3177), - [aux_sym_expr_binary_token12] = ACTIONS(3177), - [aux_sym_expr_binary_token13] = ACTIONS(3177), - [aux_sym_expr_binary_token14] = ACTIONS(3177), - [aux_sym_expr_binary_token15] = ACTIONS(3177), - [aux_sym_expr_binary_token16] = ACTIONS(3177), - [aux_sym_expr_binary_token17] = ACTIONS(3177), - [aux_sym_expr_binary_token18] = ACTIONS(3177), - [aux_sym_expr_binary_token19] = ACTIONS(3177), - [aux_sym_expr_binary_token20] = ACTIONS(3177), - [aux_sym_expr_binary_token21] = ACTIONS(3177), - [aux_sym_expr_binary_token22] = ACTIONS(3177), - [aux_sym_expr_binary_token23] = ACTIONS(3177), - [aux_sym_expr_binary_token24] = ACTIONS(3177), - [aux_sym_expr_binary_token25] = ACTIONS(3177), - [aux_sym_expr_binary_token26] = ACTIONS(3177), - [aux_sym_expr_binary_token27] = ACTIONS(3177), - [aux_sym_expr_binary_token28] = ACTIONS(3177), - [anon_sym_DOT_DOT2] = ACTIONS(1015), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1017), - [anon_sym_err_GT] = ACTIONS(3175), - [anon_sym_out_GT] = ACTIONS(3175), - [anon_sym_e_GT] = ACTIONS(3175), - [anon_sym_o_GT] = ACTIONS(3175), - [anon_sym_err_PLUSout_GT] = ACTIONS(3175), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3175), - [anon_sym_o_PLUSe_GT] = ACTIONS(3175), - [anon_sym_e_PLUSo_GT] = ACTIONS(3175), - [anon_sym_err_GT_GT] = ACTIONS(3173), - [anon_sym_out_GT_GT] = ACTIONS(3173), - [anon_sym_e_GT_GT] = ACTIONS(3173), - [anon_sym_o_GT_GT] = ACTIONS(3173), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3173), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3173), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3173), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3173), - [anon_sym_POUND] = ACTIONS(247), - }, - [1541] = { - [sym_comment] = STATE(1541), - [sym__newline] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_err_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_GT_PIPE] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), - [anon_sym_RPAREN] = ACTIONS(1008), - [anon_sym_COMMA] = ACTIONS(1008), - [anon_sym_DASH_DASH] = ACTIONS(1008), - [anon_sym_DASH] = ACTIONS(1006), - [aux_sym_ctrl_match_token1] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1008), - [aux_sym_expr_binary_token1] = ACTIONS(1008), - [aux_sym_expr_binary_token2] = ACTIONS(1008), - [aux_sym_expr_binary_token3] = ACTIONS(1008), - [aux_sym_expr_binary_token4] = ACTIONS(1008), - [aux_sym_expr_binary_token5] = ACTIONS(1008), - [aux_sym_expr_binary_token6] = ACTIONS(1008), - [aux_sym_expr_binary_token7] = ACTIONS(1008), - [aux_sym_expr_binary_token8] = ACTIONS(1008), - [aux_sym_expr_binary_token9] = ACTIONS(1008), - [aux_sym_expr_binary_token10] = ACTIONS(1008), - [aux_sym_expr_binary_token11] = ACTIONS(1008), - [aux_sym_expr_binary_token12] = ACTIONS(1008), - [aux_sym_expr_binary_token13] = ACTIONS(1008), - [aux_sym_expr_binary_token14] = ACTIONS(1008), - [aux_sym_expr_binary_token15] = ACTIONS(1008), - [aux_sym_expr_binary_token16] = ACTIONS(1008), - [aux_sym_expr_binary_token17] = ACTIONS(1008), - [aux_sym_expr_binary_token18] = ACTIONS(1008), - [aux_sym_expr_binary_token19] = ACTIONS(1008), - [aux_sym_expr_binary_token20] = ACTIONS(1008), - [aux_sym_expr_binary_token21] = ACTIONS(1008), - [aux_sym_expr_binary_token22] = ACTIONS(1008), - [aux_sym_expr_binary_token23] = ACTIONS(1008), - [aux_sym_expr_binary_token24] = ACTIONS(1008), - [aux_sym_expr_binary_token25] = ACTIONS(1008), - [aux_sym_expr_binary_token26] = ACTIONS(1008), - [aux_sym_expr_binary_token27] = ACTIONS(1008), - [aux_sym_expr_binary_token28] = ACTIONS(1008), - [anon_sym_DOT_DOT2] = ACTIONS(1015), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1017), - [anon_sym_err_GT] = ACTIONS(1006), - [anon_sym_out_GT] = ACTIONS(1006), - [anon_sym_e_GT] = ACTIONS(1006), - [anon_sym_o_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT] = ACTIONS(1006), - [anon_sym_err_GT_GT] = ACTIONS(1008), - [anon_sym_out_GT_GT] = ACTIONS(1008), - [anon_sym_e_GT_GT] = ACTIONS(1008), - [anon_sym_o_GT_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), - [anon_sym_POUND] = ACTIONS(247), - }, - [1542] = { - [sym_comment] = STATE(1542), - [anon_sym_true] = ACTIONS(1008), - [anon_sym_false] = ACTIONS(1008), - [anon_sym_null] = ACTIONS(1008), - [aux_sym_cmd_identifier_token38] = ACTIONS(1008), - [aux_sym_cmd_identifier_token39] = ACTIONS(1008), - [aux_sym_cmd_identifier_token40] = ACTIONS(1008), - [sym__newline] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_err_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_GT_PIPE] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), - [anon_sym_LBRACK] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_RPAREN] = ACTIONS(1008), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DASH_DASH] = ACTIONS(1008), - [anon_sym_DASH] = ACTIONS(1006), - [aux_sym_ctrl_match_token1] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1008), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT2] = ACTIONS(4873), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4875), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4875), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1008), - [aux_sym__val_number_decimal_token3] = ACTIONS(1008), - [aux_sym__val_number_decimal_token4] = ACTIONS(1008), - [aux_sym__val_number_token1] = ACTIONS(1008), - [aux_sym__val_number_token2] = ACTIONS(1008), - [aux_sym__val_number_token3] = ACTIONS(1008), - [anon_sym_0b] = ACTIONS(1006), - [anon_sym_0o] = ACTIONS(1006), - [anon_sym_0x] = ACTIONS(1006), - [sym_val_date] = ACTIONS(1008), - [anon_sym_DQUOTE] = ACTIONS(1008), - [sym__str_single_quotes] = ACTIONS(1008), - [sym__str_back_ticks] = ACTIONS(1008), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1008), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1008), - [anon_sym_err_GT] = ACTIONS(1006), - [anon_sym_out_GT] = ACTIONS(1006), - [anon_sym_e_GT] = ACTIONS(1006), - [anon_sym_o_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT] = ACTIONS(1006), - [anon_sym_err_GT_GT] = ACTIONS(1008), - [anon_sym_out_GT_GT] = ACTIONS(1008), - [anon_sym_e_GT_GT] = ACTIONS(1008), - [anon_sym_o_GT_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), - [aux_sym_unquoted_token1] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(247), - }, - [1543] = { - [sym_comment] = STATE(1543), - [anon_sym_true] = ACTIONS(4877), - [anon_sym_false] = ACTIONS(4877), - [anon_sym_null] = ACTIONS(4877), - [aux_sym_cmd_identifier_token38] = ACTIONS(4877), - [aux_sym_cmd_identifier_token39] = ACTIONS(4877), - [aux_sym_cmd_identifier_token40] = ACTIONS(4877), - [sym__newline] = ACTIONS(4877), - [anon_sym_SEMI] = ACTIONS(4877), - [anon_sym_PIPE] = ACTIONS(4877), - [anon_sym_err_GT_PIPE] = ACTIONS(4877), - [anon_sym_out_GT_PIPE] = ACTIONS(4877), - [anon_sym_e_GT_PIPE] = ACTIONS(4877), - [anon_sym_o_GT_PIPE] = ACTIONS(4877), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4877), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4877), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4877), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4877), - [anon_sym_LBRACK] = ACTIONS(4877), - [anon_sym_LPAREN] = ACTIONS(4877), - [anon_sym_RPAREN] = ACTIONS(4877), - [anon_sym_DOLLAR] = ACTIONS(4879), - [anon_sym_DASH_DASH] = ACTIONS(4877), - [anon_sym_DASH] = ACTIONS(4879), - [aux_sym_ctrl_match_token1] = ACTIONS(4877), - [anon_sym_RBRACE] = ACTIONS(4877), - [anon_sym_DOT_DOT] = ACTIONS(4879), - [anon_sym_DOT_DOT2] = ACTIONS(4873), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4879), - [anon_sym_DOT_DOT_LT] = ACTIONS(4879), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4875), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4875), - [aux_sym__val_number_decimal_token1] = ACTIONS(4879), - [aux_sym__val_number_decimal_token2] = ACTIONS(4877), - [aux_sym__val_number_decimal_token3] = ACTIONS(4877), - [aux_sym__val_number_decimal_token4] = ACTIONS(4877), - [aux_sym__val_number_token1] = ACTIONS(4877), - [aux_sym__val_number_token2] = ACTIONS(4877), - [aux_sym__val_number_token3] = ACTIONS(4877), - [anon_sym_0b] = ACTIONS(4879), - [anon_sym_0o] = ACTIONS(4879), - [anon_sym_0x] = ACTIONS(4879), - [sym_val_date] = ACTIONS(4877), - [anon_sym_DQUOTE] = ACTIONS(4877), - [sym__str_single_quotes] = ACTIONS(4877), - [sym__str_back_ticks] = ACTIONS(4877), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4877), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4877), - [anon_sym_err_GT] = ACTIONS(4879), - [anon_sym_out_GT] = ACTIONS(4879), - [anon_sym_e_GT] = ACTIONS(4879), - [anon_sym_o_GT] = ACTIONS(4879), - [anon_sym_err_PLUSout_GT] = ACTIONS(4879), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4879), - [anon_sym_o_PLUSe_GT] = ACTIONS(4879), - [anon_sym_e_PLUSo_GT] = ACTIONS(4879), - [anon_sym_err_GT_GT] = ACTIONS(4877), - [anon_sym_out_GT_GT] = ACTIONS(4877), - [anon_sym_e_GT_GT] = ACTIONS(4877), - [anon_sym_o_GT_GT] = ACTIONS(4877), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4877), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4877), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4877), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4877), - [aux_sym_unquoted_token1] = ACTIONS(4879), - [anon_sym_POUND] = ACTIONS(247), - }, - [1544] = { - [sym_cell_path] = STATE(2034), - [sym_path] = STATE(1868), - [sym_comment] = STATE(1544), - [aux_sym_cell_path_repeat1] = STATE(1651), - [ts_builtin_sym_end] = ACTIONS(1833), - [anon_sym_true] = ACTIONS(1833), - [anon_sym_false] = ACTIONS(1833), - [anon_sym_null] = ACTIONS(1833), - [aux_sym_cmd_identifier_token38] = ACTIONS(1833), - [aux_sym_cmd_identifier_token39] = ACTIONS(1833), - [aux_sym_cmd_identifier_token40] = ACTIONS(1833), - [sym__newline] = ACTIONS(1833), - [anon_sym_SEMI] = ACTIONS(1833), - [anon_sym_PIPE] = ACTIONS(1833), - [anon_sym_err_GT_PIPE] = ACTIONS(1833), - [anon_sym_out_GT_PIPE] = ACTIONS(1833), - [anon_sym_e_GT_PIPE] = ACTIONS(1833), - [anon_sym_o_GT_PIPE] = ACTIONS(1833), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1833), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1833), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1833), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1833), - [anon_sym_LBRACK] = ACTIONS(1833), - [anon_sym_LPAREN] = ACTIONS(1833), - [anon_sym_DOLLAR] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1831), - [aux_sym_ctrl_match_token1] = ACTIONS(1833), - [anon_sym_DOT_DOT] = ACTIONS(1831), - [anon_sym_DOT] = ACTIONS(4849), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1833), - [anon_sym_DOT_DOT_LT] = ACTIONS(1833), - [aux_sym__val_number_decimal_token1] = ACTIONS(1831), - [aux_sym__val_number_decimal_token2] = ACTIONS(1833), - [aux_sym__val_number_decimal_token3] = ACTIONS(1833), - [aux_sym__val_number_decimal_token4] = ACTIONS(1833), - [aux_sym__val_number_token1] = ACTIONS(1833), - [aux_sym__val_number_token2] = ACTIONS(1833), - [aux_sym__val_number_token3] = ACTIONS(1833), - [anon_sym_0b] = ACTIONS(1831), - [anon_sym_0o] = ACTIONS(1831), - [anon_sym_0x] = ACTIONS(1831), - [sym_val_date] = ACTIONS(1833), - [anon_sym_DQUOTE] = ACTIONS(1833), - [sym__str_single_quotes] = ACTIONS(1833), - [sym__str_back_ticks] = ACTIONS(1833), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1833), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1833), - [anon_sym_err_GT] = ACTIONS(1831), - [anon_sym_out_GT] = ACTIONS(1831), - [anon_sym_e_GT] = ACTIONS(1831), - [anon_sym_o_GT] = ACTIONS(1831), - [anon_sym_err_PLUSout_GT] = ACTIONS(1831), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1831), - [anon_sym_o_PLUSe_GT] = ACTIONS(1831), - [anon_sym_e_PLUSo_GT] = ACTIONS(1831), - [anon_sym_err_GT_GT] = ACTIONS(1833), - [anon_sym_out_GT_GT] = ACTIONS(1833), - [anon_sym_e_GT_GT] = ACTIONS(1833), - [anon_sym_o_GT_GT] = ACTIONS(1833), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1833), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1833), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1833), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1833), - [aux_sym_unquoted_token1] = ACTIONS(1831), - [anon_sym_POUND] = ACTIONS(247), - }, - [1545] = { - [sym__expr_parenthesized_immediate] = STATE(7616), - [sym_comment] = STATE(1545), - [sym__newline] = ACTIONS(3199), - [anon_sym_SEMI] = ACTIONS(3199), - [anon_sym_PIPE] = ACTIONS(3199), - [anon_sym_err_GT_PIPE] = ACTIONS(3199), - [anon_sym_out_GT_PIPE] = ACTIONS(3199), - [anon_sym_e_GT_PIPE] = ACTIONS(3199), - [anon_sym_o_GT_PIPE] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3199), - [anon_sym_RPAREN] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_DASH_DASH] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3201), - [aux_sym_ctrl_match_token1] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym_EQ_GT] = ACTIONS(3199), - [anon_sym_LPAREN2] = ACTIONS(2947), - [aux_sym_expr_binary_token1] = ACTIONS(3199), - [aux_sym_expr_binary_token2] = ACTIONS(3199), - [aux_sym_expr_binary_token3] = ACTIONS(3199), - [aux_sym_expr_binary_token4] = ACTIONS(3199), - [aux_sym_expr_binary_token5] = ACTIONS(3199), - [aux_sym_expr_binary_token6] = ACTIONS(3199), - [aux_sym_expr_binary_token7] = ACTIONS(3199), - [aux_sym_expr_binary_token8] = ACTIONS(3199), - [aux_sym_expr_binary_token9] = ACTIONS(3199), - [aux_sym_expr_binary_token10] = ACTIONS(3199), - [aux_sym_expr_binary_token11] = ACTIONS(3199), - [aux_sym_expr_binary_token12] = ACTIONS(3199), - [aux_sym_expr_binary_token13] = ACTIONS(3199), - [aux_sym_expr_binary_token14] = ACTIONS(3199), - [aux_sym_expr_binary_token15] = ACTIONS(3199), - [aux_sym_expr_binary_token16] = ACTIONS(3199), - [aux_sym_expr_binary_token17] = ACTIONS(3199), - [aux_sym_expr_binary_token18] = ACTIONS(3199), - [aux_sym_expr_binary_token19] = ACTIONS(3199), - [aux_sym_expr_binary_token20] = ACTIONS(3199), - [aux_sym_expr_binary_token21] = ACTIONS(3199), - [aux_sym_expr_binary_token22] = ACTIONS(3199), - [aux_sym_expr_binary_token23] = ACTIONS(3199), - [aux_sym_expr_binary_token24] = ACTIONS(3199), - [aux_sym_expr_binary_token25] = ACTIONS(3199), - [aux_sym_expr_binary_token26] = ACTIONS(3199), - [aux_sym_expr_binary_token27] = ACTIONS(3199), - [aux_sym_expr_binary_token28] = ACTIONS(3199), - [anon_sym_err_GT] = ACTIONS(3201), - [anon_sym_out_GT] = ACTIONS(3201), - [anon_sym_e_GT] = ACTIONS(3201), - [anon_sym_o_GT] = ACTIONS(3201), - [anon_sym_err_PLUSout_GT] = ACTIONS(3201), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), - [anon_sym_o_PLUSe_GT] = ACTIONS(3201), - [anon_sym_e_PLUSo_GT] = ACTIONS(3201), - [anon_sym_err_GT_GT] = ACTIONS(3199), - [anon_sym_out_GT_GT] = ACTIONS(3199), - [anon_sym_e_GT_GT] = ACTIONS(3199), - [anon_sym_o_GT_GT] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), - [anon_sym_POUND] = ACTIONS(247), - }, - [1546] = { - [sym__expr_parenthesized_immediate] = STATE(7887), - [sym_comment] = STATE(1546), - [sym__newline] = ACTIONS(3205), - [anon_sym_SEMI] = ACTIONS(3205), - [anon_sym_PIPE] = ACTIONS(3205), - [anon_sym_err_GT_PIPE] = ACTIONS(3205), - [anon_sym_out_GT_PIPE] = ACTIONS(3205), - [anon_sym_e_GT_PIPE] = ACTIONS(3205), - [anon_sym_o_GT_PIPE] = ACTIONS(3205), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3205), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3205), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3205), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3205), - [anon_sym_RPAREN] = ACTIONS(3205), - [anon_sym_COMMA] = ACTIONS(3205), - [anon_sym_DASH_DASH] = ACTIONS(3205), - [anon_sym_DASH] = ACTIONS(3207), - [aux_sym_ctrl_match_token1] = ACTIONS(3205), - [anon_sym_RBRACE] = ACTIONS(3205), - [anon_sym_EQ_GT] = ACTIONS(3205), - [anon_sym_LPAREN2] = ACTIONS(2947), - [aux_sym_expr_binary_token1] = ACTIONS(3205), - [aux_sym_expr_binary_token2] = ACTIONS(3205), - [aux_sym_expr_binary_token3] = ACTIONS(3205), - [aux_sym_expr_binary_token4] = ACTIONS(3205), - [aux_sym_expr_binary_token5] = ACTIONS(3205), - [aux_sym_expr_binary_token6] = ACTIONS(3205), - [aux_sym_expr_binary_token7] = ACTIONS(3205), - [aux_sym_expr_binary_token8] = ACTIONS(3205), - [aux_sym_expr_binary_token9] = ACTIONS(3205), - [aux_sym_expr_binary_token10] = ACTIONS(3205), - [aux_sym_expr_binary_token11] = ACTIONS(3205), - [aux_sym_expr_binary_token12] = ACTIONS(3205), - [aux_sym_expr_binary_token13] = ACTIONS(3205), - [aux_sym_expr_binary_token14] = ACTIONS(3205), - [aux_sym_expr_binary_token15] = ACTIONS(3205), - [aux_sym_expr_binary_token16] = ACTIONS(3205), - [aux_sym_expr_binary_token17] = ACTIONS(3205), - [aux_sym_expr_binary_token18] = ACTIONS(3205), - [aux_sym_expr_binary_token19] = ACTIONS(3205), - [aux_sym_expr_binary_token20] = ACTIONS(3205), - [aux_sym_expr_binary_token21] = ACTIONS(3205), - [aux_sym_expr_binary_token22] = ACTIONS(3205), - [aux_sym_expr_binary_token23] = ACTIONS(3205), - [aux_sym_expr_binary_token24] = ACTIONS(3205), - [aux_sym_expr_binary_token25] = ACTIONS(3205), - [aux_sym_expr_binary_token26] = ACTIONS(3205), - [aux_sym_expr_binary_token27] = ACTIONS(3205), - [aux_sym_expr_binary_token28] = ACTIONS(3205), - [anon_sym_err_GT] = ACTIONS(3207), - [anon_sym_out_GT] = ACTIONS(3207), - [anon_sym_e_GT] = ACTIONS(3207), - [anon_sym_o_GT] = ACTIONS(3207), - [anon_sym_err_PLUSout_GT] = ACTIONS(3207), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3207), - [anon_sym_o_PLUSe_GT] = ACTIONS(3207), - [anon_sym_e_PLUSo_GT] = ACTIONS(3207), - [anon_sym_err_GT_GT] = ACTIONS(3205), - [anon_sym_out_GT_GT] = ACTIONS(3205), - [anon_sym_e_GT_GT] = ACTIONS(3205), - [anon_sym_o_GT_GT] = ACTIONS(3205), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3205), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3205), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3205), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3205), - [anon_sym_POUND] = ACTIONS(247), - }, - [1547] = { - [sym_cell_path] = STATE(2071), - [sym_path] = STATE(1868), - [sym_comment] = STATE(1547), - [aux_sym_cell_path_repeat1] = STATE(1651), - [ts_builtin_sym_end] = ACTIONS(1837), - [anon_sym_true] = ACTIONS(1837), - [anon_sym_false] = ACTIONS(1837), - [anon_sym_null] = ACTIONS(1837), - [aux_sym_cmd_identifier_token38] = ACTIONS(1837), - [aux_sym_cmd_identifier_token39] = ACTIONS(1837), - [aux_sym_cmd_identifier_token40] = ACTIONS(1837), - [sym__newline] = ACTIONS(1837), - [anon_sym_SEMI] = ACTIONS(1837), - [anon_sym_PIPE] = ACTIONS(1837), - [anon_sym_err_GT_PIPE] = ACTIONS(1837), - [anon_sym_out_GT_PIPE] = ACTIONS(1837), - [anon_sym_e_GT_PIPE] = ACTIONS(1837), - [anon_sym_o_GT_PIPE] = ACTIONS(1837), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1837), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1837), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1837), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1837), - [anon_sym_DASH] = ACTIONS(1835), - [aux_sym_ctrl_match_token1] = ACTIONS(1837), - [anon_sym_DOT_DOT] = ACTIONS(1835), - [anon_sym_DOT] = ACTIONS(4849), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1837), - [anon_sym_DOT_DOT_LT] = ACTIONS(1837), - [aux_sym__val_number_decimal_token1] = ACTIONS(1835), - [aux_sym__val_number_decimal_token2] = ACTIONS(1837), - [aux_sym__val_number_decimal_token3] = ACTIONS(1837), - [aux_sym__val_number_decimal_token4] = ACTIONS(1837), - [aux_sym__val_number_token1] = ACTIONS(1837), - [aux_sym__val_number_token2] = ACTIONS(1837), - [aux_sym__val_number_token3] = ACTIONS(1837), - [anon_sym_0b] = ACTIONS(1835), - [anon_sym_0o] = ACTIONS(1835), - [anon_sym_0x] = ACTIONS(1835), - [sym_val_date] = ACTIONS(1837), - [anon_sym_DQUOTE] = ACTIONS(1837), - [sym__str_single_quotes] = ACTIONS(1837), - [sym__str_back_ticks] = ACTIONS(1837), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1837), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1837), - [anon_sym_err_GT] = ACTIONS(1835), - [anon_sym_out_GT] = ACTIONS(1835), - [anon_sym_e_GT] = ACTIONS(1835), - [anon_sym_o_GT] = ACTIONS(1835), - [anon_sym_err_PLUSout_GT] = ACTIONS(1835), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1835), - [anon_sym_o_PLUSe_GT] = ACTIONS(1835), - [anon_sym_e_PLUSo_GT] = ACTIONS(1835), - [anon_sym_err_GT_GT] = ACTIONS(1837), - [anon_sym_out_GT_GT] = ACTIONS(1837), - [anon_sym_e_GT_GT] = ACTIONS(1837), - [anon_sym_o_GT_GT] = ACTIONS(1837), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1837), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1837), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1837), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1837), - [aux_sym_unquoted_token1] = ACTIONS(1835), - [anon_sym_POUND] = ACTIONS(247), - }, - [1548] = { - [sym_comment] = STATE(1548), - [sym__newline] = ACTIONS(972), - [anon_sym_SEMI] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_err_GT_PIPE] = ACTIONS(972), - [anon_sym_out_GT_PIPE] = ACTIONS(972), - [anon_sym_e_GT_PIPE] = ACTIONS(972), - [anon_sym_o_GT_PIPE] = ACTIONS(972), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(972), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(972), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(972), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(972), - [anon_sym_COMMA] = ACTIONS(972), - [anon_sym_DASH_DASH] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(970), - [aux_sym_ctrl_match_token1] = ACTIONS(972), - [anon_sym_RBRACE] = ACTIONS(972), - [anon_sym_EQ_GT] = ACTIONS(972), - [anon_sym_QMARK2] = ACTIONS(4881), - [aux_sym_expr_binary_token1] = ACTIONS(972), - [aux_sym_expr_binary_token2] = ACTIONS(972), - [aux_sym_expr_binary_token3] = ACTIONS(972), - [aux_sym_expr_binary_token4] = ACTIONS(972), - [aux_sym_expr_binary_token5] = ACTIONS(972), - [aux_sym_expr_binary_token6] = ACTIONS(972), - [aux_sym_expr_binary_token7] = ACTIONS(972), - [aux_sym_expr_binary_token8] = ACTIONS(972), - [aux_sym_expr_binary_token9] = ACTIONS(972), - [aux_sym_expr_binary_token10] = ACTIONS(972), - [aux_sym_expr_binary_token11] = ACTIONS(972), - [aux_sym_expr_binary_token12] = ACTIONS(972), - [aux_sym_expr_binary_token13] = ACTIONS(972), - [aux_sym_expr_binary_token14] = ACTIONS(972), - [aux_sym_expr_binary_token15] = ACTIONS(972), - [aux_sym_expr_binary_token16] = ACTIONS(972), - [aux_sym_expr_binary_token17] = ACTIONS(972), - [aux_sym_expr_binary_token18] = ACTIONS(972), - [aux_sym_expr_binary_token19] = ACTIONS(972), - [aux_sym_expr_binary_token20] = ACTIONS(972), - [aux_sym_expr_binary_token21] = ACTIONS(972), - [aux_sym_expr_binary_token22] = ACTIONS(972), - [aux_sym_expr_binary_token23] = ACTIONS(972), - [aux_sym_expr_binary_token24] = ACTIONS(972), - [aux_sym_expr_binary_token25] = ACTIONS(972), - [aux_sym_expr_binary_token26] = ACTIONS(972), - [aux_sym_expr_binary_token27] = ACTIONS(972), - [aux_sym_expr_binary_token28] = ACTIONS(972), - [anon_sym_DOT] = ACTIONS(972), - [anon_sym_err_GT] = ACTIONS(970), - [anon_sym_out_GT] = ACTIONS(970), - [anon_sym_e_GT] = ACTIONS(970), - [anon_sym_o_GT] = ACTIONS(970), - [anon_sym_err_PLUSout_GT] = ACTIONS(970), - [anon_sym_out_PLUSerr_GT] = ACTIONS(970), - [anon_sym_o_PLUSe_GT] = ACTIONS(970), - [anon_sym_e_PLUSo_GT] = ACTIONS(970), - [anon_sym_err_GT_GT] = ACTIONS(972), - [anon_sym_out_GT_GT] = ACTIONS(972), - [anon_sym_e_GT_GT] = ACTIONS(972), - [anon_sym_o_GT_GT] = ACTIONS(972), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(972), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(972), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(972), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(972), - [anon_sym_POUND] = ACTIONS(247), - }, - [1549] = { - [sym_cell_path] = STATE(1961), - [sym_path] = STATE(1868), - [sym_comment] = STATE(1549), - [aux_sym_cell_path_repeat1] = STATE(1651), - [ts_builtin_sym_end] = ACTIONS(1841), - [anon_sym_true] = ACTIONS(1841), - [anon_sym_false] = ACTIONS(1841), - [anon_sym_null] = ACTIONS(1841), - [aux_sym_cmd_identifier_token38] = ACTIONS(1841), - [aux_sym_cmd_identifier_token39] = ACTIONS(1841), - [aux_sym_cmd_identifier_token40] = ACTIONS(1841), - [sym__newline] = ACTIONS(1841), - [anon_sym_SEMI] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_err_GT_PIPE] = ACTIONS(1841), - [anon_sym_out_GT_PIPE] = ACTIONS(1841), - [anon_sym_e_GT_PIPE] = ACTIONS(1841), - [anon_sym_o_GT_PIPE] = ACTIONS(1841), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1841), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1841), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1841), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1841), - [anon_sym_LBRACK] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1839), - [anon_sym_DASH_DASH] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1839), - [aux_sym_ctrl_match_token1] = ACTIONS(1841), - [anon_sym_DOT_DOT] = ACTIONS(1839), - [anon_sym_DOT] = ACTIONS(4849), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1841), - [anon_sym_DOT_DOT_LT] = ACTIONS(1841), - [aux_sym__val_number_decimal_token1] = ACTIONS(1839), - [aux_sym__val_number_decimal_token2] = ACTIONS(1841), - [aux_sym__val_number_decimal_token3] = ACTIONS(1841), - [aux_sym__val_number_decimal_token4] = ACTIONS(1841), - [aux_sym__val_number_token1] = ACTIONS(1841), - [aux_sym__val_number_token2] = ACTIONS(1841), - [aux_sym__val_number_token3] = ACTIONS(1841), - [anon_sym_0b] = ACTIONS(1839), - [anon_sym_0o] = ACTIONS(1839), - [anon_sym_0x] = ACTIONS(1839), - [sym_val_date] = ACTIONS(1841), - [anon_sym_DQUOTE] = ACTIONS(1841), - [sym__str_single_quotes] = ACTIONS(1841), - [sym__str_back_ticks] = ACTIONS(1841), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1841), - [anon_sym_err_GT] = ACTIONS(1839), - [anon_sym_out_GT] = ACTIONS(1839), - [anon_sym_e_GT] = ACTIONS(1839), - [anon_sym_o_GT] = ACTIONS(1839), - [anon_sym_err_PLUSout_GT] = ACTIONS(1839), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1839), - [anon_sym_o_PLUSe_GT] = ACTIONS(1839), - [anon_sym_e_PLUSo_GT] = ACTIONS(1839), - [anon_sym_err_GT_GT] = ACTIONS(1841), - [anon_sym_out_GT_GT] = ACTIONS(1841), - [anon_sym_e_GT_GT] = ACTIONS(1841), - [anon_sym_o_GT_GT] = ACTIONS(1841), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1841), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1841), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1841), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1841), - [aux_sym_unquoted_token1] = ACTIONS(1839), - [anon_sym_POUND] = ACTIONS(247), - }, - [1550] = { - [sym_comment] = STATE(1550), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [anon_sym_null] = ACTIONS(1650), - [aux_sym_cmd_identifier_token38] = ACTIONS(1650), - [aux_sym_cmd_identifier_token39] = ACTIONS(1650), - [aux_sym_cmd_identifier_token40] = ACTIONS(1650), - [sym__newline] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_err_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_GT_PIPE] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_RPAREN] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_DASH] = ACTIONS(1648), - [aux_sym_ctrl_match_token1] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_DOT_DOT] = ACTIONS(1648), - [anon_sym_LPAREN2] = ACTIONS(1650), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT] = ACTIONS(1650), - [aux_sym__immediate_decimal_token2] = ACTIONS(4883), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token3] = ACTIONS(1650), - [aux_sym__val_number_decimal_token4] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [anon_sym_0b] = ACTIONS(1648), - [anon_sym_0o] = ACTIONS(1648), - [anon_sym_0x] = ACTIONS(1648), - [sym_val_date] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), - [anon_sym_err_GT] = ACTIONS(1648), - [anon_sym_out_GT] = ACTIONS(1648), - [anon_sym_e_GT] = ACTIONS(1648), - [anon_sym_o_GT] = ACTIONS(1648), - [anon_sym_err_PLUSout_GT] = ACTIONS(1648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1648), - [anon_sym_o_PLUSe_GT] = ACTIONS(1648), - [anon_sym_e_PLUSo_GT] = ACTIONS(1648), - [anon_sym_err_GT_GT] = ACTIONS(1650), - [anon_sym_out_GT_GT] = ACTIONS(1650), - [anon_sym_e_GT_GT] = ACTIONS(1650), - [anon_sym_o_GT_GT] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1650), - [aux_sym_unquoted_token1] = ACTIONS(1648), - [aux_sym_unquoted_token2] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(247), - }, - [1551] = { - [sym_cell_path] = STATE(2001), - [sym_path] = STATE(1868), - [sym_comment] = STATE(1551), - [aux_sym_cell_path_repeat1] = STATE(1651), - [ts_builtin_sym_end] = ACTIONS(1877), - [anon_sym_true] = ACTIONS(1877), - [anon_sym_false] = ACTIONS(1877), - [anon_sym_null] = ACTIONS(1877), - [aux_sym_cmd_identifier_token38] = ACTIONS(1877), - [aux_sym_cmd_identifier_token39] = ACTIONS(1877), - [aux_sym_cmd_identifier_token40] = ACTIONS(1877), - [sym__newline] = ACTIONS(1877), - [anon_sym_SEMI] = ACTIONS(1877), - [anon_sym_PIPE] = ACTIONS(1877), - [anon_sym_err_GT_PIPE] = ACTIONS(1877), - [anon_sym_out_GT_PIPE] = ACTIONS(1877), - [anon_sym_e_GT_PIPE] = ACTIONS(1877), - [anon_sym_o_GT_PIPE] = ACTIONS(1877), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1877), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1877), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1877), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1877), - [anon_sym_LBRACK] = ACTIONS(1877), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_DOLLAR] = ACTIONS(1875), - [anon_sym_DASH_DASH] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1875), - [aux_sym_ctrl_match_token1] = ACTIONS(1877), - [anon_sym_DOT_DOT] = ACTIONS(1875), - [anon_sym_DOT] = ACTIONS(4849), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1877), - [anon_sym_DOT_DOT_LT] = ACTIONS(1877), - [aux_sym__val_number_decimal_token1] = ACTIONS(1875), - [aux_sym__val_number_decimal_token2] = ACTIONS(1877), - [aux_sym__val_number_decimal_token3] = ACTIONS(1877), - [aux_sym__val_number_decimal_token4] = ACTIONS(1877), - [aux_sym__val_number_token1] = ACTIONS(1877), - [aux_sym__val_number_token2] = ACTIONS(1877), - [aux_sym__val_number_token3] = ACTIONS(1877), - [anon_sym_0b] = ACTIONS(1875), - [anon_sym_0o] = ACTIONS(1875), - [anon_sym_0x] = ACTIONS(1875), - [sym_val_date] = ACTIONS(1877), - [anon_sym_DQUOTE] = ACTIONS(1877), - [sym__str_single_quotes] = ACTIONS(1877), - [sym__str_back_ticks] = ACTIONS(1877), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1877), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1877), - [anon_sym_err_GT] = ACTIONS(1875), - [anon_sym_out_GT] = ACTIONS(1875), - [anon_sym_e_GT] = ACTIONS(1875), - [anon_sym_o_GT] = ACTIONS(1875), - [anon_sym_err_PLUSout_GT] = ACTIONS(1875), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1875), - [anon_sym_o_PLUSe_GT] = ACTIONS(1875), - [anon_sym_e_PLUSo_GT] = ACTIONS(1875), - [anon_sym_err_GT_GT] = ACTIONS(1877), - [anon_sym_out_GT_GT] = ACTIONS(1877), - [anon_sym_e_GT_GT] = ACTIONS(1877), - [anon_sym_o_GT_GT] = ACTIONS(1877), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1877), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1877), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1877), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1877), - [aux_sym_unquoted_token1] = ACTIONS(1875), - [anon_sym_POUND] = ACTIONS(247), - }, - [1552] = { - [sym_comment] = STATE(1552), - [ts_builtin_sym_end] = ACTIONS(1475), - [sym__newline] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_err_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_GT_PIPE] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), - [anon_sym_LPAREN2] = ACTIONS(1475), - [aux_sym_expr_binary_token1] = ACTIONS(1475), - [aux_sym_expr_binary_token2] = ACTIONS(1475), - [aux_sym_expr_binary_token3] = ACTIONS(1475), - [aux_sym_expr_binary_token4] = ACTIONS(1475), - [aux_sym_expr_binary_token5] = ACTIONS(1475), - [aux_sym_expr_binary_token6] = ACTIONS(1475), - [aux_sym_expr_binary_token7] = ACTIONS(1475), - [aux_sym_expr_binary_token8] = ACTIONS(1475), - [aux_sym_expr_binary_token9] = ACTIONS(1475), - [aux_sym_expr_binary_token10] = ACTIONS(1475), - [aux_sym_expr_binary_token11] = ACTIONS(1475), - [aux_sym_expr_binary_token12] = ACTIONS(1475), - [aux_sym_expr_binary_token13] = ACTIONS(1475), - [aux_sym_expr_binary_token14] = ACTIONS(1475), - [aux_sym_expr_binary_token15] = ACTIONS(1475), - [aux_sym_expr_binary_token16] = ACTIONS(1475), - [aux_sym_expr_binary_token17] = ACTIONS(1475), - [aux_sym_expr_binary_token18] = ACTIONS(1475), - [aux_sym_expr_binary_token19] = ACTIONS(1475), - [aux_sym_expr_binary_token20] = ACTIONS(1475), - [aux_sym_expr_binary_token21] = ACTIONS(1475), - [aux_sym_expr_binary_token22] = ACTIONS(1475), - [aux_sym_expr_binary_token23] = ACTIONS(1475), - [aux_sym_expr_binary_token24] = ACTIONS(1475), - [aux_sym_expr_binary_token25] = ACTIONS(1475), - [aux_sym_expr_binary_token26] = ACTIONS(1475), - [aux_sym_expr_binary_token27] = ACTIONS(1475), - [aux_sym_expr_binary_token28] = ACTIONS(1475), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [aux_sym__immediate_decimal_token2] = ACTIONS(4805), - [sym_filesize_unit] = ACTIONS(1475), - [sym_duration_unit] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1473), - [anon_sym_out_GT] = ACTIONS(1473), - [anon_sym_e_GT] = ACTIONS(1473), - [anon_sym_o_GT] = ACTIONS(1473), - [anon_sym_err_PLUSout_GT] = ACTIONS(1473), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), - [anon_sym_o_PLUSe_GT] = ACTIONS(1473), - [anon_sym_e_PLUSo_GT] = ACTIONS(1473), - [anon_sym_err_GT_GT] = ACTIONS(1475), - [anon_sym_out_GT_GT] = ACTIONS(1475), - [anon_sym_e_GT_GT] = ACTIONS(1475), - [anon_sym_o_GT_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), - [aux_sym_unquoted_token2] = ACTIONS(1473), - [anon_sym_POUND] = ACTIONS(247), - }, - [1553] = { - [sym_cell_path] = STATE(1780), - [sym_path] = STATE(1399), - [sym_comment] = STATE(1553), - [aux_sym_cell_path_repeat1] = STATE(1288), - [sym__newline] = ACTIONS(1599), - [anon_sym_SEMI] = ACTIONS(1603), - [anon_sym_PIPE] = ACTIONS(1603), - [anon_sym_err_GT_PIPE] = ACTIONS(1603), - [anon_sym_out_GT_PIPE] = ACTIONS(1603), - [anon_sym_e_GT_PIPE] = ACTIONS(1603), - [anon_sym_o_GT_PIPE] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1603), - [anon_sym_RPAREN] = ACTIONS(1603), - [aux_sym_ctrl_match_token1] = ACTIONS(1603), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1603), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1603), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1603), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1603), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1603), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1603), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1603), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1603), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1603), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1603), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1603), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1603), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1603), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1603), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1603), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1603), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1603), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1603), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1603), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1603), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1603), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1603), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1603), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1603), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1603), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1603), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1603), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1603), - [anon_sym_DOT_DOT2] = ACTIONS(1599), - [anon_sym_DOT] = ACTIONS(4075), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1603), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1603), - [anon_sym_err_GT] = ACTIONS(1599), - [anon_sym_out_GT] = ACTIONS(1599), - [anon_sym_e_GT] = ACTIONS(1599), - [anon_sym_o_GT] = ACTIONS(1599), - [anon_sym_err_PLUSout_GT] = ACTIONS(1599), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), - [anon_sym_o_PLUSe_GT] = ACTIONS(1599), - [anon_sym_e_PLUSo_GT] = ACTIONS(1599), - [anon_sym_err_GT_GT] = ACTIONS(1603), - [anon_sym_out_GT_GT] = ACTIONS(1603), - [anon_sym_e_GT_GT] = ACTIONS(1603), - [anon_sym_o_GT_GT] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1603), - [anon_sym_POUND] = ACTIONS(247), - }, - [1554] = { - [sym_comment] = STATE(1554), - [aux_sym_cmd_identifier_token41] = ACTIONS(1473), - [sym__newline] = ACTIONS(1473), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_err_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_GT_PIPE] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_EQ_GT] = ACTIONS(1475), - [aux_sym_expr_binary_token1] = ACTIONS(1475), - [aux_sym_expr_binary_token2] = ACTIONS(1475), - [aux_sym_expr_binary_token3] = ACTIONS(1475), - [aux_sym_expr_binary_token4] = ACTIONS(1475), - [aux_sym_expr_binary_token5] = ACTIONS(1475), - [aux_sym_expr_binary_token6] = ACTIONS(1475), - [aux_sym_expr_binary_token7] = ACTIONS(1475), - [aux_sym_expr_binary_token8] = ACTIONS(1475), - [aux_sym_expr_binary_token9] = ACTIONS(1475), - [aux_sym_expr_binary_token10] = ACTIONS(1475), - [aux_sym_expr_binary_token11] = ACTIONS(1475), - [aux_sym_expr_binary_token12] = ACTIONS(1475), - [aux_sym_expr_binary_token13] = ACTIONS(1475), - [aux_sym_expr_binary_token14] = ACTIONS(1475), - [aux_sym_expr_binary_token15] = ACTIONS(1475), - [aux_sym_expr_binary_token16] = ACTIONS(1475), - [aux_sym_expr_binary_token17] = ACTIONS(1475), - [aux_sym_expr_binary_token18] = ACTIONS(1475), - [aux_sym_expr_binary_token19] = ACTIONS(1475), - [aux_sym_expr_binary_token20] = ACTIONS(1475), - [aux_sym_expr_binary_token21] = ACTIONS(1475), - [aux_sym_expr_binary_token22] = ACTIONS(1475), - [aux_sym_expr_binary_token23] = ACTIONS(1475), - [aux_sym_expr_binary_token24] = ACTIONS(1475), - [aux_sym_expr_binary_token25] = ACTIONS(1475), - [aux_sym_expr_binary_token26] = ACTIONS(1475), - [aux_sym_expr_binary_token27] = ACTIONS(1475), - [aux_sym_expr_binary_token28] = ACTIONS(1475), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [sym_filesize_unit] = ACTIONS(1475), - [sym_duration_unit] = ACTIONS(1475), - [aux_sym_record_entry_token1] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1473), - [anon_sym_out_GT] = ACTIONS(1473), - [anon_sym_e_GT] = ACTIONS(1473), - [anon_sym_o_GT] = ACTIONS(1473), - [anon_sym_err_PLUSout_GT] = ACTIONS(1473), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), - [anon_sym_o_PLUSe_GT] = ACTIONS(1473), - [anon_sym_e_PLUSo_GT] = ACTIONS(1473), - [anon_sym_err_GT_GT] = ACTIONS(1475), - [anon_sym_out_GT_GT] = ACTIONS(1475), - [anon_sym_e_GT_GT] = ACTIONS(1475), - [anon_sym_o_GT_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), - [anon_sym_POUND] = ACTIONS(247), - }, - [1555] = { - [sym__expr_parenthesized_immediate] = STATE(7561), - [sym_comment] = STATE(1555), - [sym__newline] = ACTIONS(1525), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_RPAREN] = ACTIONS(1537), - [anon_sym_LPAREN2] = ACTIONS(2947), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1537), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1537), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1537), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1537), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1537), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1537), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1537), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1537), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1537), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1537), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1537), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1537), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1537), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1537), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1537), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1537), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1537), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1537), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1537), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1537), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1537), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1537), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1537), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1537), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1537), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1537), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1537), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(2949), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2951), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2951), - [sym_filesize_unit] = ACTIONS(4885), - [sym_duration_unit] = ACTIONS(4887), - [anon_sym_err_GT] = ACTIONS(1525), - [anon_sym_out_GT] = ACTIONS(1525), - [anon_sym_e_GT] = ACTIONS(1525), - [anon_sym_o_GT] = ACTIONS(1525), - [anon_sym_err_PLUSout_GT] = ACTIONS(1525), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), - [anon_sym_o_PLUSe_GT] = ACTIONS(1525), - [anon_sym_e_PLUSo_GT] = ACTIONS(1525), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), - [aux_sym_unquoted_token2] = ACTIONS(4889), - [anon_sym_POUND] = ACTIONS(247), - }, - [1556] = { - [sym_comment] = STATE(1556), - [aux_sym_cmd_identifier_token41] = ACTIONS(1473), - [sym__newline] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_err_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_GT_PIPE] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), - [anon_sym_RPAREN] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [aux_sym_expr_binary_token1] = ACTIONS(1475), - [aux_sym_expr_binary_token2] = ACTIONS(1475), - [aux_sym_expr_binary_token3] = ACTIONS(1475), - [aux_sym_expr_binary_token4] = ACTIONS(1475), - [aux_sym_expr_binary_token5] = ACTIONS(1475), - [aux_sym_expr_binary_token6] = ACTIONS(1475), - [aux_sym_expr_binary_token7] = ACTIONS(1475), - [aux_sym_expr_binary_token8] = ACTIONS(1475), - [aux_sym_expr_binary_token9] = ACTIONS(1475), - [aux_sym_expr_binary_token10] = ACTIONS(1475), - [aux_sym_expr_binary_token11] = ACTIONS(1475), - [aux_sym_expr_binary_token12] = ACTIONS(1475), - [aux_sym_expr_binary_token13] = ACTIONS(1475), - [aux_sym_expr_binary_token14] = ACTIONS(1475), - [aux_sym_expr_binary_token15] = ACTIONS(1475), - [aux_sym_expr_binary_token16] = ACTIONS(1475), - [aux_sym_expr_binary_token17] = ACTIONS(1475), - [aux_sym_expr_binary_token18] = ACTIONS(1475), - [aux_sym_expr_binary_token19] = ACTIONS(1475), - [aux_sym_expr_binary_token20] = ACTIONS(1475), - [aux_sym_expr_binary_token21] = ACTIONS(1475), - [aux_sym_expr_binary_token22] = ACTIONS(1475), - [aux_sym_expr_binary_token23] = ACTIONS(1475), - [aux_sym_expr_binary_token24] = ACTIONS(1475), - [aux_sym_expr_binary_token25] = ACTIONS(1475), - [aux_sym_expr_binary_token26] = ACTIONS(1475), - [aux_sym_expr_binary_token27] = ACTIONS(1475), - [aux_sym_expr_binary_token28] = ACTIONS(1475), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [aux_sym__immediate_decimal_token2] = ACTIONS(4785), - [sym_filesize_unit] = ACTIONS(1475), - [sym_duration_unit] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1473), - [anon_sym_out_GT] = ACTIONS(1473), - [anon_sym_e_GT] = ACTIONS(1473), - [anon_sym_o_GT] = ACTIONS(1473), - [anon_sym_err_PLUSout_GT] = ACTIONS(1473), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), - [anon_sym_o_PLUSe_GT] = ACTIONS(1473), - [anon_sym_e_PLUSo_GT] = ACTIONS(1473), - [anon_sym_err_GT_GT] = ACTIONS(1475), - [anon_sym_out_GT_GT] = ACTIONS(1475), - [anon_sym_e_GT_GT] = ACTIONS(1475), - [anon_sym_o_GT_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), - [anon_sym_POUND] = ACTIONS(247), - }, - [1557] = { - [sym_cell_path] = STATE(2039), - [sym_path] = STATE(1868), - [sym_comment] = STATE(1557), - [aux_sym_cell_path_repeat1] = STATE(1651), - [ts_builtin_sym_end] = ACTIONS(1881), - [anon_sym_true] = ACTIONS(1881), - [anon_sym_false] = ACTIONS(1881), - [anon_sym_null] = ACTIONS(1881), - [aux_sym_cmd_identifier_token38] = ACTIONS(1881), - [aux_sym_cmd_identifier_token39] = ACTIONS(1881), - [aux_sym_cmd_identifier_token40] = ACTIONS(1881), - [sym__newline] = ACTIONS(1881), - [anon_sym_SEMI] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_err_GT_PIPE] = ACTIONS(1881), - [anon_sym_out_GT_PIPE] = ACTIONS(1881), - [anon_sym_e_GT_PIPE] = ACTIONS(1881), - [anon_sym_o_GT_PIPE] = ACTIONS(1881), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1881), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1881), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1881), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_DOLLAR] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1879), - [aux_sym_ctrl_match_token1] = ACTIONS(1881), - [anon_sym_DOT_DOT] = ACTIONS(1879), - [anon_sym_DOT] = ACTIONS(4849), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1881), - [anon_sym_DOT_DOT_LT] = ACTIONS(1881), - [aux_sym__val_number_decimal_token1] = ACTIONS(1879), - [aux_sym__val_number_decimal_token2] = ACTIONS(1881), - [aux_sym__val_number_decimal_token3] = ACTIONS(1881), - [aux_sym__val_number_decimal_token4] = ACTIONS(1881), - [aux_sym__val_number_token1] = ACTIONS(1881), - [aux_sym__val_number_token2] = ACTIONS(1881), - [aux_sym__val_number_token3] = ACTIONS(1881), - [anon_sym_0b] = ACTIONS(1879), - [anon_sym_0o] = ACTIONS(1879), - [anon_sym_0x] = ACTIONS(1879), - [sym_val_date] = ACTIONS(1881), - [anon_sym_DQUOTE] = ACTIONS(1881), - [sym__str_single_quotes] = ACTIONS(1881), - [sym__str_back_ticks] = ACTIONS(1881), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1881), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1881), - [anon_sym_err_GT] = ACTIONS(1879), - [anon_sym_out_GT] = ACTIONS(1879), - [anon_sym_e_GT] = ACTIONS(1879), - [anon_sym_o_GT] = ACTIONS(1879), - [anon_sym_err_PLUSout_GT] = ACTIONS(1879), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1879), - [anon_sym_o_PLUSe_GT] = ACTIONS(1879), - [anon_sym_e_PLUSo_GT] = ACTIONS(1879), - [anon_sym_err_GT_GT] = ACTIONS(1881), - [anon_sym_out_GT_GT] = ACTIONS(1881), - [anon_sym_e_GT_GT] = ACTIONS(1881), - [anon_sym_o_GT_GT] = ACTIONS(1881), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1881), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1881), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1881), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1881), - [aux_sym_unquoted_token1] = ACTIONS(1879), - [anon_sym_POUND] = ACTIONS(247), - }, - [1558] = { - [sym_comment] = STATE(1558), - [ts_builtin_sym_end] = ACTIONS(1483), - [aux_sym_cmd_identifier_token41] = ACTIONS(1481), - [sym__newline] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_err_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_GT_PIPE] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), - [aux_sym_expr_binary_token1] = ACTIONS(1483), - [aux_sym_expr_binary_token2] = ACTIONS(1483), - [aux_sym_expr_binary_token3] = ACTIONS(1483), - [aux_sym_expr_binary_token4] = ACTIONS(1483), - [aux_sym_expr_binary_token5] = ACTIONS(1483), - [aux_sym_expr_binary_token6] = ACTIONS(1483), - [aux_sym_expr_binary_token7] = ACTIONS(1483), - [aux_sym_expr_binary_token8] = ACTIONS(1483), - [aux_sym_expr_binary_token9] = ACTIONS(1483), - [aux_sym_expr_binary_token10] = ACTIONS(1483), - [aux_sym_expr_binary_token11] = ACTIONS(1483), - [aux_sym_expr_binary_token12] = ACTIONS(1483), - [aux_sym_expr_binary_token13] = ACTIONS(1483), - [aux_sym_expr_binary_token14] = ACTIONS(1483), - [aux_sym_expr_binary_token15] = ACTIONS(1483), - [aux_sym_expr_binary_token16] = ACTIONS(1483), - [aux_sym_expr_binary_token17] = ACTIONS(1483), - [aux_sym_expr_binary_token18] = ACTIONS(1483), - [aux_sym_expr_binary_token19] = ACTIONS(1483), - [aux_sym_expr_binary_token20] = ACTIONS(1483), - [aux_sym_expr_binary_token21] = ACTIONS(1483), - [aux_sym_expr_binary_token22] = ACTIONS(1483), - [aux_sym_expr_binary_token23] = ACTIONS(1483), - [aux_sym_expr_binary_token24] = ACTIONS(1483), - [aux_sym_expr_binary_token25] = ACTIONS(1483), - [aux_sym_expr_binary_token26] = ACTIONS(1483), - [aux_sym_expr_binary_token27] = ACTIONS(1483), - [aux_sym_expr_binary_token28] = ACTIONS(1483), - [anon_sym_DOT_DOT2] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), - [aux_sym__immediate_decimal_token1] = ACTIONS(4891), - [aux_sym__immediate_decimal_token2] = ACTIONS(4893), - [sym_filesize_unit] = ACTIONS(1483), - [sym_duration_unit] = ACTIONS(1483), - [anon_sym_err_GT] = ACTIONS(1481), - [anon_sym_out_GT] = ACTIONS(1481), - [anon_sym_e_GT] = ACTIONS(1481), - [anon_sym_o_GT] = ACTIONS(1481), - [anon_sym_err_PLUSout_GT] = ACTIONS(1481), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), - [anon_sym_o_PLUSe_GT] = ACTIONS(1481), - [anon_sym_e_PLUSo_GT] = ACTIONS(1481), - [anon_sym_err_GT_GT] = ACTIONS(1483), - [anon_sym_out_GT_GT] = ACTIONS(1483), - [anon_sym_e_GT_GT] = ACTIONS(1483), - [anon_sym_o_GT_GT] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), - [anon_sym_POUND] = ACTIONS(247), - }, - [1559] = { - [sym_comment] = STATE(1559), - [anon_sym_true] = ACTIONS(1941), - [anon_sym_false] = ACTIONS(1941), - [anon_sym_null] = ACTIONS(1941), - [aux_sym_cmd_identifier_token38] = ACTIONS(1941), - [aux_sym_cmd_identifier_token39] = ACTIONS(1941), - [aux_sym_cmd_identifier_token40] = ACTIONS(1941), - [sym__newline] = ACTIONS(1941), - [anon_sym_SEMI] = ACTIONS(1941), - [anon_sym_PIPE] = ACTIONS(1941), - [anon_sym_err_GT_PIPE] = ACTIONS(1941), - [anon_sym_out_GT_PIPE] = ACTIONS(1941), - [anon_sym_e_GT_PIPE] = ACTIONS(1941), - [anon_sym_o_GT_PIPE] = ACTIONS(1941), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1941), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1941), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1941), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(1941), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_RPAREN] = ACTIONS(1941), - [anon_sym_DOLLAR] = ACTIONS(1935), - [anon_sym_DASH_DASH] = ACTIONS(1941), - [anon_sym_DASH] = ACTIONS(1935), - [aux_sym_ctrl_match_token1] = ACTIONS(1941), - [anon_sym_RBRACE] = ACTIONS(1941), - [anon_sym_DOT_DOT] = ACTIONS(1935), - [anon_sym_DOT_DOT2] = ACTIONS(4895), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1935), - [anon_sym_DOT_DOT_LT] = ACTIONS(1935), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4897), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4897), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1941), - [aux_sym__val_number_decimal_token3] = ACTIONS(1941), - [aux_sym__val_number_decimal_token4] = ACTIONS(1941), - [aux_sym__val_number_token1] = ACTIONS(1941), - [aux_sym__val_number_token2] = ACTIONS(1941), - [aux_sym__val_number_token3] = ACTIONS(1941), - [anon_sym_0b] = ACTIONS(1935), - [anon_sym_0o] = ACTIONS(1935), - [anon_sym_0x] = ACTIONS(1935), - [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_err_GT] = ACTIONS(1935), - [anon_sym_out_GT] = ACTIONS(1935), - [anon_sym_e_GT] = ACTIONS(1935), - [anon_sym_o_GT] = ACTIONS(1935), - [anon_sym_err_PLUSout_GT] = ACTIONS(1935), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1935), - [anon_sym_o_PLUSe_GT] = ACTIONS(1935), - [anon_sym_e_PLUSo_GT] = ACTIONS(1935), - [anon_sym_err_GT_GT] = ACTIONS(1941), - [anon_sym_out_GT_GT] = ACTIONS(1941), - [anon_sym_e_GT_GT] = ACTIONS(1941), - [anon_sym_o_GT_GT] = ACTIONS(1941), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1941), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1941), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1941), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1941), - [aux_sym_unquoted_token1] = ACTIONS(1935), - [anon_sym_POUND] = ACTIONS(247), - }, - [1560] = { - [sym_comment] = STATE(1560), - [sym__newline] = ACTIONS(982), - [anon_sym_SEMI] = ACTIONS(982), - [anon_sym_PIPE] = ACTIONS(982), - [anon_sym_err_GT_PIPE] = ACTIONS(982), - [anon_sym_out_GT_PIPE] = ACTIONS(982), - [anon_sym_e_GT_PIPE] = ACTIONS(982), - [anon_sym_o_GT_PIPE] = ACTIONS(982), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(982), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(982), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(982), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(982), - [anon_sym_RPAREN] = ACTIONS(982), - [anon_sym_COMMA] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(980), - [aux_sym_ctrl_match_token1] = ACTIONS(982), - [anon_sym_RBRACE] = ACTIONS(982), - [anon_sym_EQ_GT] = ACTIONS(982), - [anon_sym_QMARK2] = ACTIONS(4899), - [aux_sym_expr_binary_token1] = ACTIONS(982), - [aux_sym_expr_binary_token2] = ACTIONS(982), - [aux_sym_expr_binary_token3] = ACTIONS(982), - [aux_sym_expr_binary_token4] = ACTIONS(982), - [aux_sym_expr_binary_token5] = ACTIONS(982), - [aux_sym_expr_binary_token6] = ACTIONS(982), - [aux_sym_expr_binary_token7] = ACTIONS(982), - [aux_sym_expr_binary_token8] = ACTIONS(982), - [aux_sym_expr_binary_token9] = ACTIONS(982), - [aux_sym_expr_binary_token10] = ACTIONS(982), - [aux_sym_expr_binary_token11] = ACTIONS(982), - [aux_sym_expr_binary_token12] = ACTIONS(982), - [aux_sym_expr_binary_token13] = ACTIONS(982), - [aux_sym_expr_binary_token14] = ACTIONS(982), - [aux_sym_expr_binary_token15] = ACTIONS(982), - [aux_sym_expr_binary_token16] = ACTIONS(982), - [aux_sym_expr_binary_token17] = ACTIONS(982), - [aux_sym_expr_binary_token18] = ACTIONS(982), - [aux_sym_expr_binary_token19] = ACTIONS(982), - [aux_sym_expr_binary_token20] = ACTIONS(982), - [aux_sym_expr_binary_token21] = ACTIONS(982), - [aux_sym_expr_binary_token22] = ACTIONS(982), - [aux_sym_expr_binary_token23] = ACTIONS(982), - [aux_sym_expr_binary_token24] = ACTIONS(982), - [aux_sym_expr_binary_token25] = ACTIONS(982), - [aux_sym_expr_binary_token26] = ACTIONS(982), - [aux_sym_expr_binary_token27] = ACTIONS(982), - [aux_sym_expr_binary_token28] = ACTIONS(982), - [anon_sym_DOT] = ACTIONS(982), - [anon_sym_err_GT] = ACTIONS(980), - [anon_sym_out_GT] = ACTIONS(980), - [anon_sym_e_GT] = ACTIONS(980), - [anon_sym_o_GT] = ACTIONS(980), - [anon_sym_err_PLUSout_GT] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT] = ACTIONS(980), - [anon_sym_o_PLUSe_GT] = ACTIONS(980), - [anon_sym_e_PLUSo_GT] = ACTIONS(980), - [anon_sym_err_GT_GT] = ACTIONS(982), - [anon_sym_out_GT_GT] = ACTIONS(982), - [anon_sym_e_GT_GT] = ACTIONS(982), - [anon_sym_o_GT_GT] = ACTIONS(982), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(982), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(982), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(982), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(982), - [anon_sym_POUND] = ACTIONS(247), - }, - [1561] = { - [sym_comment] = STATE(1561), - [sym__newline] = ACTIONS(1519), - [anon_sym_SEMI] = ACTIONS(1521), - [anon_sym_PIPE] = ACTIONS(1521), - [anon_sym_err_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_GT_PIPE] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), - [anon_sym_RPAREN] = ACTIONS(1521), - [anon_sym_LPAREN2] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1521), - [anon_sym_DOT_DOT2] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), - [aux_sym__immediate_decimal_token2] = ACTIONS(4901), - [sym_filesize_unit] = ACTIONS(1521), - [sym_duration_unit] = ACTIONS(1521), - [anon_sym_err_GT] = ACTIONS(1519), - [anon_sym_out_GT] = ACTIONS(1519), - [anon_sym_e_GT] = ACTIONS(1519), - [anon_sym_o_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT] = ACTIONS(1519), - [anon_sym_err_GT_GT] = ACTIONS(1521), - [anon_sym_out_GT_GT] = ACTIONS(1521), - [anon_sym_e_GT_GT] = ACTIONS(1521), - [anon_sym_o_GT_GT] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), - [aux_sym_unquoted_token2] = ACTIONS(1519), - [anon_sym_POUND] = ACTIONS(247), - }, - [1562] = { - [sym_comment] = STATE(1562), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [anon_sym_null] = ACTIONS(1591), - [aux_sym_cmd_identifier_token38] = ACTIONS(1591), - [aux_sym_cmd_identifier_token39] = ACTIONS(1591), - [aux_sym_cmd_identifier_token40] = ACTIONS(1591), - [sym__newline] = ACTIONS(1591), - [anon_sym_SEMI] = ACTIONS(1591), - [anon_sym_PIPE] = ACTIONS(1591), - [anon_sym_err_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_GT_PIPE] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), - [anon_sym_LBRACK] = ACTIONS(1591), - [anon_sym_LPAREN] = ACTIONS(1591), - [anon_sym_RPAREN] = ACTIONS(1591), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_DASH] = ACTIONS(1589), - [aux_sym_ctrl_match_token1] = ACTIONS(1591), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_DOT_DOT2] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token3] = ACTIONS(1591), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(1591), - [aux_sym__val_number_token2] = ACTIONS(1591), - [aux_sym__val_number_token3] = ACTIONS(1591), - [anon_sym_0b] = ACTIONS(1589), - [anon_sym_0o] = ACTIONS(1589), - [anon_sym_0x] = ACTIONS(1589), - [sym_val_date] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym__str_single_quotes] = ACTIONS(1591), - [sym__str_back_ticks] = ACTIONS(1591), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), - [anon_sym_err_GT] = ACTIONS(1589), - [anon_sym_out_GT] = ACTIONS(1589), - [anon_sym_e_GT] = ACTIONS(1589), - [anon_sym_o_GT] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT] = ACTIONS(1589), - [anon_sym_err_GT_GT] = ACTIONS(1591), - [anon_sym_out_GT_GT] = ACTIONS(1591), - [anon_sym_e_GT_GT] = ACTIONS(1591), - [anon_sym_o_GT_GT] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), - [aux_sym_unquoted_token1] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(247), - }, - [1563] = { - [sym__expr_parenthesized_immediate] = STATE(7887), - [sym_comment] = STATE(1563), - [sym__newline] = ACTIONS(3259), - [anon_sym_SEMI] = ACTIONS(3259), - [anon_sym_PIPE] = ACTIONS(3259), - [anon_sym_err_GT_PIPE] = ACTIONS(3259), - [anon_sym_out_GT_PIPE] = ACTIONS(3259), - [anon_sym_e_GT_PIPE] = ACTIONS(3259), - [anon_sym_o_GT_PIPE] = ACTIONS(3259), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3259), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3259), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3259), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3259), - [anon_sym_RPAREN] = ACTIONS(3259), - [anon_sym_COMMA] = ACTIONS(3259), - [anon_sym_DASH_DASH] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3261), - [aux_sym_ctrl_match_token1] = ACTIONS(3259), - [anon_sym_RBRACE] = ACTIONS(3259), - [anon_sym_EQ_GT] = ACTIONS(3259), - [anon_sym_LPAREN2] = ACTIONS(2947), - [aux_sym_expr_binary_token1] = ACTIONS(3259), - [aux_sym_expr_binary_token2] = ACTIONS(3259), - [aux_sym_expr_binary_token3] = ACTIONS(3259), - [aux_sym_expr_binary_token4] = ACTIONS(3259), - [aux_sym_expr_binary_token5] = ACTIONS(3259), - [aux_sym_expr_binary_token6] = ACTIONS(3259), - [aux_sym_expr_binary_token7] = ACTIONS(3259), - [aux_sym_expr_binary_token8] = ACTIONS(3259), - [aux_sym_expr_binary_token9] = ACTIONS(3259), - [aux_sym_expr_binary_token10] = ACTIONS(3259), - [aux_sym_expr_binary_token11] = ACTIONS(3259), - [aux_sym_expr_binary_token12] = ACTIONS(3259), - [aux_sym_expr_binary_token13] = ACTIONS(3259), - [aux_sym_expr_binary_token14] = ACTIONS(3259), - [aux_sym_expr_binary_token15] = ACTIONS(3259), - [aux_sym_expr_binary_token16] = ACTIONS(3259), - [aux_sym_expr_binary_token17] = ACTIONS(3259), - [aux_sym_expr_binary_token18] = ACTIONS(3259), - [aux_sym_expr_binary_token19] = ACTIONS(3259), - [aux_sym_expr_binary_token20] = ACTIONS(3259), - [aux_sym_expr_binary_token21] = ACTIONS(3259), - [aux_sym_expr_binary_token22] = ACTIONS(3259), - [aux_sym_expr_binary_token23] = ACTIONS(3259), - [aux_sym_expr_binary_token24] = ACTIONS(3259), - [aux_sym_expr_binary_token25] = ACTIONS(3259), - [aux_sym_expr_binary_token26] = ACTIONS(3259), - [aux_sym_expr_binary_token27] = ACTIONS(3259), - [aux_sym_expr_binary_token28] = ACTIONS(3259), - [anon_sym_err_GT] = ACTIONS(3261), - [anon_sym_out_GT] = ACTIONS(3261), - [anon_sym_e_GT] = ACTIONS(3261), - [anon_sym_o_GT] = ACTIONS(3261), - [anon_sym_err_PLUSout_GT] = ACTIONS(3261), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3261), - [anon_sym_o_PLUSe_GT] = ACTIONS(3261), - [anon_sym_e_PLUSo_GT] = ACTIONS(3261), - [anon_sym_err_GT_GT] = ACTIONS(3259), - [anon_sym_out_GT_GT] = ACTIONS(3259), - [anon_sym_e_GT_GT] = ACTIONS(3259), - [anon_sym_o_GT_GT] = ACTIONS(3259), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3259), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3259), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3259), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3259), - [anon_sym_POUND] = ACTIONS(247), - }, - [1564] = { - [sym_comment] = STATE(1564), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1945), - [aux_sym_cmd_identifier_token38] = ACTIONS(1945), - [aux_sym_cmd_identifier_token39] = ACTIONS(1945), - [aux_sym_cmd_identifier_token40] = ACTIONS(1945), - [sym__newline] = ACTIONS(1945), - [anon_sym_SEMI] = ACTIONS(1945), - [anon_sym_PIPE] = ACTIONS(1945), - [anon_sym_err_GT_PIPE] = ACTIONS(1945), - [anon_sym_out_GT_PIPE] = ACTIONS(1945), - [anon_sym_e_GT_PIPE] = ACTIONS(1945), - [anon_sym_o_GT_PIPE] = ACTIONS(1945), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1945), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1945), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1945), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1945), - [anon_sym_LBRACK] = ACTIONS(1945), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_RPAREN] = ACTIONS(1945), - [anon_sym_DOLLAR] = ACTIONS(1943), - [anon_sym_DASH_DASH] = ACTIONS(1945), - [anon_sym_DASH] = ACTIONS(1943), - [aux_sym_ctrl_match_token1] = ACTIONS(1945), - [anon_sym_RBRACE] = ACTIONS(1945), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [anon_sym_DOT_DOT2] = ACTIONS(1943), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1943), - [anon_sym_DOT_DOT_LT] = ACTIONS(1943), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1945), - [aux_sym__val_number_decimal_token4] = ACTIONS(1945), - [aux_sym__val_number_token1] = ACTIONS(1945), - [aux_sym__val_number_token2] = ACTIONS(1945), - [aux_sym__val_number_token3] = ACTIONS(1945), - [anon_sym_0b] = ACTIONS(1943), - [anon_sym_0o] = ACTIONS(1943), - [anon_sym_0x] = ACTIONS(1943), - [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_err_GT] = ACTIONS(1943), - [anon_sym_out_GT] = ACTIONS(1943), - [anon_sym_e_GT] = ACTIONS(1943), - [anon_sym_o_GT] = ACTIONS(1943), - [anon_sym_err_PLUSout_GT] = ACTIONS(1943), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1943), - [anon_sym_o_PLUSe_GT] = ACTIONS(1943), - [anon_sym_e_PLUSo_GT] = ACTIONS(1943), - [anon_sym_err_GT_GT] = ACTIONS(1945), - [anon_sym_out_GT_GT] = ACTIONS(1945), - [anon_sym_e_GT_GT] = ACTIONS(1945), - [anon_sym_o_GT_GT] = ACTIONS(1945), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1945), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1945), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1945), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1945), - [aux_sym_unquoted_token1] = ACTIONS(1943), - [anon_sym_POUND] = ACTIONS(247), - }, - [1565] = { - [sym_comment] = STATE(1565), - [ts_builtin_sym_end] = ACTIONS(1475), - [aux_sym_cmd_identifier_token41] = ACTIONS(1473), - [sym__newline] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_err_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_GT_PIPE] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), - [aux_sym_expr_binary_token1] = ACTIONS(1475), - [aux_sym_expr_binary_token2] = ACTIONS(1475), - [aux_sym_expr_binary_token3] = ACTIONS(1475), - [aux_sym_expr_binary_token4] = ACTIONS(1475), - [aux_sym_expr_binary_token5] = ACTIONS(1475), - [aux_sym_expr_binary_token6] = ACTIONS(1475), - [aux_sym_expr_binary_token7] = ACTIONS(1475), - [aux_sym_expr_binary_token8] = ACTIONS(1475), - [aux_sym_expr_binary_token9] = ACTIONS(1475), - [aux_sym_expr_binary_token10] = ACTIONS(1475), - [aux_sym_expr_binary_token11] = ACTIONS(1475), - [aux_sym_expr_binary_token12] = ACTIONS(1475), - [aux_sym_expr_binary_token13] = ACTIONS(1475), - [aux_sym_expr_binary_token14] = ACTIONS(1475), - [aux_sym_expr_binary_token15] = ACTIONS(1475), - [aux_sym_expr_binary_token16] = ACTIONS(1475), - [aux_sym_expr_binary_token17] = ACTIONS(1475), - [aux_sym_expr_binary_token18] = ACTIONS(1475), - [aux_sym_expr_binary_token19] = ACTIONS(1475), - [aux_sym_expr_binary_token20] = ACTIONS(1475), - [aux_sym_expr_binary_token21] = ACTIONS(1475), - [aux_sym_expr_binary_token22] = ACTIONS(1475), - [aux_sym_expr_binary_token23] = ACTIONS(1475), - [aux_sym_expr_binary_token24] = ACTIONS(1475), - [aux_sym_expr_binary_token25] = ACTIONS(1475), - [aux_sym_expr_binary_token26] = ACTIONS(1475), - [aux_sym_expr_binary_token27] = ACTIONS(1475), - [aux_sym_expr_binary_token28] = ACTIONS(1475), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT] = ACTIONS(4903), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [aux_sym__immediate_decimal_token2] = ACTIONS(4905), - [sym_filesize_unit] = ACTIONS(1475), - [sym_duration_unit] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1473), - [anon_sym_out_GT] = ACTIONS(1473), - [anon_sym_e_GT] = ACTIONS(1473), - [anon_sym_o_GT] = ACTIONS(1473), - [anon_sym_err_PLUSout_GT] = ACTIONS(1473), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), - [anon_sym_o_PLUSe_GT] = ACTIONS(1473), - [anon_sym_e_PLUSo_GT] = ACTIONS(1473), - [anon_sym_err_GT_GT] = ACTIONS(1475), - [anon_sym_out_GT_GT] = ACTIONS(1475), - [anon_sym_e_GT_GT] = ACTIONS(1475), - [anon_sym_o_GT_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), - [anon_sym_POUND] = ACTIONS(247), - }, - [1566] = { - [sym_comment] = STATE(1566), - [sym__newline] = ACTIONS(1473), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_err_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_GT_PIPE] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), - [anon_sym_RPAREN] = ACTIONS(1475), - [anon_sym_LPAREN2] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1475), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [aux_sym__immediate_decimal_token2] = ACTIONS(4821), - [sym_filesize_unit] = ACTIONS(1475), - [sym_duration_unit] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1473), - [anon_sym_out_GT] = ACTIONS(1473), - [anon_sym_e_GT] = ACTIONS(1473), - [anon_sym_o_GT] = ACTIONS(1473), - [anon_sym_err_PLUSout_GT] = ACTIONS(1473), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), - [anon_sym_o_PLUSe_GT] = ACTIONS(1473), - [anon_sym_e_PLUSo_GT] = ACTIONS(1473), - [anon_sym_err_GT_GT] = ACTIONS(1475), - [anon_sym_out_GT_GT] = ACTIONS(1475), - [anon_sym_e_GT_GT] = ACTIONS(1475), - [anon_sym_o_GT_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), - [aux_sym_unquoted_token2] = ACTIONS(1473), - [anon_sym_POUND] = ACTIONS(247), - }, - [1567] = { - [sym__expr_parenthesized_immediate] = STATE(7887), - [sym_comment] = STATE(1567), - [sym__newline] = ACTIONS(3263), - [anon_sym_SEMI] = ACTIONS(3263), - [anon_sym_PIPE] = ACTIONS(3263), - [anon_sym_err_GT_PIPE] = ACTIONS(3263), - [anon_sym_out_GT_PIPE] = ACTIONS(3263), - [anon_sym_e_GT_PIPE] = ACTIONS(3263), - [anon_sym_o_GT_PIPE] = ACTIONS(3263), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3263), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3263), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3263), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3263), - [anon_sym_RPAREN] = ACTIONS(3263), - [anon_sym_COMMA] = ACTIONS(3263), - [anon_sym_DASH_DASH] = ACTIONS(3263), - [anon_sym_DASH] = ACTIONS(3265), - [aux_sym_ctrl_match_token1] = ACTIONS(3263), - [anon_sym_RBRACE] = ACTIONS(3263), - [anon_sym_EQ_GT] = ACTIONS(3263), - [anon_sym_LPAREN2] = ACTIONS(2947), - [aux_sym_expr_binary_token1] = ACTIONS(3263), - [aux_sym_expr_binary_token2] = ACTIONS(3263), - [aux_sym_expr_binary_token3] = ACTIONS(3263), - [aux_sym_expr_binary_token4] = ACTIONS(3263), - [aux_sym_expr_binary_token5] = ACTIONS(3263), - [aux_sym_expr_binary_token6] = ACTIONS(3263), - [aux_sym_expr_binary_token7] = ACTIONS(3263), - [aux_sym_expr_binary_token8] = ACTIONS(3263), - [aux_sym_expr_binary_token9] = ACTIONS(3263), - [aux_sym_expr_binary_token10] = ACTIONS(3263), - [aux_sym_expr_binary_token11] = ACTIONS(3263), - [aux_sym_expr_binary_token12] = ACTIONS(3263), - [aux_sym_expr_binary_token13] = ACTIONS(3263), - [aux_sym_expr_binary_token14] = ACTIONS(3263), - [aux_sym_expr_binary_token15] = ACTIONS(3263), - [aux_sym_expr_binary_token16] = ACTIONS(3263), - [aux_sym_expr_binary_token17] = ACTIONS(3263), - [aux_sym_expr_binary_token18] = ACTIONS(3263), - [aux_sym_expr_binary_token19] = ACTIONS(3263), - [aux_sym_expr_binary_token20] = ACTIONS(3263), - [aux_sym_expr_binary_token21] = ACTIONS(3263), - [aux_sym_expr_binary_token22] = ACTIONS(3263), - [aux_sym_expr_binary_token23] = ACTIONS(3263), - [aux_sym_expr_binary_token24] = ACTIONS(3263), - [aux_sym_expr_binary_token25] = ACTIONS(3263), - [aux_sym_expr_binary_token26] = ACTIONS(3263), - [aux_sym_expr_binary_token27] = ACTIONS(3263), - [aux_sym_expr_binary_token28] = ACTIONS(3263), - [anon_sym_err_GT] = ACTIONS(3265), - [anon_sym_out_GT] = ACTIONS(3265), - [anon_sym_e_GT] = ACTIONS(3265), - [anon_sym_o_GT] = ACTIONS(3265), - [anon_sym_err_PLUSout_GT] = ACTIONS(3265), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3265), - [anon_sym_o_PLUSe_GT] = ACTIONS(3265), - [anon_sym_e_PLUSo_GT] = ACTIONS(3265), - [anon_sym_err_GT_GT] = ACTIONS(3263), - [anon_sym_out_GT_GT] = ACTIONS(3263), - [anon_sym_e_GT_GT] = ACTIONS(3263), - [anon_sym_o_GT_GT] = ACTIONS(3263), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3263), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3263), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3263), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3263), - [anon_sym_POUND] = ACTIONS(247), - }, - [1568] = { - [sym__expr_parenthesized_immediate] = STATE(7616), - [sym_comment] = STATE(1568), - [sym__newline] = ACTIONS(3199), - [anon_sym_SEMI] = ACTIONS(3199), - [anon_sym_PIPE] = ACTIONS(3199), - [anon_sym_err_GT_PIPE] = ACTIONS(3199), - [anon_sym_out_GT_PIPE] = ACTIONS(3199), - [anon_sym_e_GT_PIPE] = ACTIONS(3199), - [anon_sym_o_GT_PIPE] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3199), - [anon_sym_RPAREN] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_DASH_DASH] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3201), - [aux_sym_ctrl_match_token1] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym_EQ_GT] = ACTIONS(3199), - [anon_sym_LPAREN2] = ACTIONS(2947), - [aux_sym_expr_binary_token1] = ACTIONS(3199), - [aux_sym_expr_binary_token2] = ACTIONS(3199), - [aux_sym_expr_binary_token3] = ACTIONS(3199), - [aux_sym_expr_binary_token4] = ACTIONS(3199), - [aux_sym_expr_binary_token5] = ACTIONS(3199), - [aux_sym_expr_binary_token6] = ACTIONS(3199), - [aux_sym_expr_binary_token7] = ACTIONS(3199), - [aux_sym_expr_binary_token8] = ACTIONS(3199), - [aux_sym_expr_binary_token9] = ACTIONS(3199), - [aux_sym_expr_binary_token10] = ACTIONS(3199), - [aux_sym_expr_binary_token11] = ACTIONS(3199), - [aux_sym_expr_binary_token12] = ACTIONS(3199), - [aux_sym_expr_binary_token13] = ACTIONS(3199), - [aux_sym_expr_binary_token14] = ACTIONS(3199), - [aux_sym_expr_binary_token15] = ACTIONS(3199), - [aux_sym_expr_binary_token16] = ACTIONS(3199), - [aux_sym_expr_binary_token17] = ACTIONS(3199), - [aux_sym_expr_binary_token18] = ACTIONS(3199), - [aux_sym_expr_binary_token19] = ACTIONS(3199), - [aux_sym_expr_binary_token20] = ACTIONS(3199), - [aux_sym_expr_binary_token21] = ACTIONS(3199), - [aux_sym_expr_binary_token22] = ACTIONS(3199), - [aux_sym_expr_binary_token23] = ACTIONS(3199), - [aux_sym_expr_binary_token24] = ACTIONS(3199), - [aux_sym_expr_binary_token25] = ACTIONS(3199), - [aux_sym_expr_binary_token26] = ACTIONS(3199), - [aux_sym_expr_binary_token27] = ACTIONS(3199), - [aux_sym_expr_binary_token28] = ACTIONS(3199), - [anon_sym_err_GT] = ACTIONS(3201), - [anon_sym_out_GT] = ACTIONS(3201), - [anon_sym_e_GT] = ACTIONS(3201), - [anon_sym_o_GT] = ACTIONS(3201), - [anon_sym_err_PLUSout_GT] = ACTIONS(3201), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), - [anon_sym_o_PLUSe_GT] = ACTIONS(3201), - [anon_sym_e_PLUSo_GT] = ACTIONS(3201), - [anon_sym_err_GT_GT] = ACTIONS(3199), - [anon_sym_out_GT_GT] = ACTIONS(3199), - [anon_sym_e_GT_GT] = ACTIONS(3199), - [anon_sym_o_GT_GT] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), - [anon_sym_POUND] = ACTIONS(247), - }, - [1569] = { - [sym_cell_path] = STATE(2060), - [sym_path] = STATE(1868), - [sym_comment] = STATE(1569), - [aux_sym_cell_path_repeat1] = STATE(1651), - [ts_builtin_sym_end] = ACTIONS(947), - [anon_sym_true] = ACTIONS(947), - [anon_sym_false] = ACTIONS(947), - [anon_sym_null] = ACTIONS(947), - [aux_sym_cmd_identifier_token38] = ACTIONS(947), - [aux_sym_cmd_identifier_token39] = ACTIONS(947), - [aux_sym_cmd_identifier_token40] = ACTIONS(947), - [sym__newline] = ACTIONS(947), - [anon_sym_SEMI] = ACTIONS(947), - [anon_sym_PIPE] = ACTIONS(947), - [anon_sym_err_GT_PIPE] = ACTIONS(947), - [anon_sym_out_GT_PIPE] = ACTIONS(947), - [anon_sym_e_GT_PIPE] = ACTIONS(947), - [anon_sym_o_GT_PIPE] = ACTIONS(947), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(947), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(947), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(947), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_DOLLAR] = ACTIONS(945), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(945), - [aux_sym_ctrl_match_token1] = ACTIONS(947), - [anon_sym_DOT_DOT] = ACTIONS(945), - [anon_sym_DOT] = ACTIONS(4849), - [anon_sym_DOT_DOT_EQ] = ACTIONS(947), - [anon_sym_DOT_DOT_LT] = ACTIONS(947), - [aux_sym__val_number_decimal_token1] = ACTIONS(945), - [aux_sym__val_number_decimal_token2] = ACTIONS(947), - [aux_sym__val_number_decimal_token3] = ACTIONS(947), - [aux_sym__val_number_decimal_token4] = ACTIONS(947), - [aux_sym__val_number_token1] = ACTIONS(947), - [aux_sym__val_number_token2] = ACTIONS(947), - [aux_sym__val_number_token3] = ACTIONS(947), - [anon_sym_0b] = ACTIONS(945), - [anon_sym_0o] = ACTIONS(945), - [anon_sym_0x] = ACTIONS(945), - [sym_val_date] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(947), - [sym__str_single_quotes] = ACTIONS(947), - [sym__str_back_ticks] = ACTIONS(947), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(947), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(947), - [anon_sym_err_GT] = ACTIONS(945), - [anon_sym_out_GT] = ACTIONS(945), - [anon_sym_e_GT] = ACTIONS(945), - [anon_sym_o_GT] = ACTIONS(945), - [anon_sym_err_PLUSout_GT] = ACTIONS(945), - [anon_sym_out_PLUSerr_GT] = ACTIONS(945), - [anon_sym_o_PLUSe_GT] = ACTIONS(945), - [anon_sym_e_PLUSo_GT] = ACTIONS(945), - [anon_sym_err_GT_GT] = ACTIONS(947), - [anon_sym_out_GT_GT] = ACTIONS(947), - [anon_sym_e_GT_GT] = ACTIONS(947), - [anon_sym_o_GT_GT] = ACTIONS(947), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(947), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(947), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(947), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(947), - [aux_sym_unquoted_token1] = ACTIONS(945), - [anon_sym_POUND] = ACTIONS(247), - }, - [1570] = { - [sym_cell_path] = STATE(2055), - [sym_path] = STATE(1868), - [sym_comment] = STATE(1570), - [aux_sym_cell_path_repeat1] = STATE(1651), - [ts_builtin_sym_end] = ACTIONS(1897), - [anon_sym_true] = ACTIONS(1897), - [anon_sym_false] = ACTIONS(1897), - [anon_sym_null] = ACTIONS(1897), - [aux_sym_cmd_identifier_token38] = ACTIONS(1897), - [aux_sym_cmd_identifier_token39] = ACTIONS(1897), - [aux_sym_cmd_identifier_token40] = ACTIONS(1897), - [sym__newline] = ACTIONS(1897), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_PIPE] = ACTIONS(1897), - [anon_sym_err_GT_PIPE] = ACTIONS(1897), - [anon_sym_out_GT_PIPE] = ACTIONS(1897), - [anon_sym_e_GT_PIPE] = ACTIONS(1897), - [anon_sym_o_GT_PIPE] = ACTIONS(1897), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1897), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1897), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1897), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1897), - [anon_sym_LBRACK] = ACTIONS(1897), - [anon_sym_LPAREN] = ACTIONS(1897), - [anon_sym_DOLLAR] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1897), - [anon_sym_DASH] = ACTIONS(1895), - [aux_sym_ctrl_match_token1] = ACTIONS(1897), - [anon_sym_DOT_DOT] = ACTIONS(1895), - [anon_sym_DOT] = ACTIONS(4849), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1897), - [anon_sym_DOT_DOT_LT] = ACTIONS(1897), - [aux_sym__val_number_decimal_token1] = ACTIONS(1895), - [aux_sym__val_number_decimal_token2] = ACTIONS(1897), - [aux_sym__val_number_decimal_token3] = ACTIONS(1897), - [aux_sym__val_number_decimal_token4] = ACTIONS(1897), - [aux_sym__val_number_token1] = ACTIONS(1897), - [aux_sym__val_number_token2] = ACTIONS(1897), - [aux_sym__val_number_token3] = ACTIONS(1897), - [anon_sym_0b] = ACTIONS(1895), - [anon_sym_0o] = ACTIONS(1895), - [anon_sym_0x] = ACTIONS(1895), - [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_err_GT] = ACTIONS(1895), - [anon_sym_out_GT] = ACTIONS(1895), - [anon_sym_e_GT] = ACTIONS(1895), - [anon_sym_o_GT] = ACTIONS(1895), - [anon_sym_err_PLUSout_GT] = ACTIONS(1895), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1895), - [anon_sym_o_PLUSe_GT] = ACTIONS(1895), - [anon_sym_e_PLUSo_GT] = ACTIONS(1895), - [anon_sym_err_GT_GT] = ACTIONS(1897), - [anon_sym_out_GT_GT] = ACTIONS(1897), - [anon_sym_e_GT_GT] = ACTIONS(1897), - [anon_sym_o_GT_GT] = ACTIONS(1897), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1897), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1897), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1897), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1897), - [aux_sym_unquoted_token1] = ACTIONS(1895), - [anon_sym_POUND] = ACTIONS(247), - }, - [1571] = { - [sym__expr_parenthesized_immediate] = STATE(7616), - [sym_comment] = STATE(1571), - [sym__newline] = ACTIONS(3199), - [anon_sym_SEMI] = ACTIONS(3199), - [anon_sym_PIPE] = ACTIONS(3199), - [anon_sym_err_GT_PIPE] = ACTIONS(3199), - [anon_sym_out_GT_PIPE] = ACTIONS(3199), - [anon_sym_e_GT_PIPE] = ACTIONS(3199), - [anon_sym_o_GT_PIPE] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3199), - [anon_sym_RPAREN] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_DASH_DASH] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3201), - [aux_sym_ctrl_match_token1] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym_EQ_GT] = ACTIONS(3199), - [anon_sym_LPAREN2] = ACTIONS(2947), - [aux_sym_expr_binary_token1] = ACTIONS(3199), - [aux_sym_expr_binary_token2] = ACTIONS(3199), - [aux_sym_expr_binary_token3] = ACTIONS(3199), - [aux_sym_expr_binary_token4] = ACTIONS(3199), - [aux_sym_expr_binary_token5] = ACTIONS(3199), - [aux_sym_expr_binary_token6] = ACTIONS(3199), - [aux_sym_expr_binary_token7] = ACTIONS(3199), - [aux_sym_expr_binary_token8] = ACTIONS(3199), - [aux_sym_expr_binary_token9] = ACTIONS(3199), - [aux_sym_expr_binary_token10] = ACTIONS(3199), - [aux_sym_expr_binary_token11] = ACTIONS(3199), - [aux_sym_expr_binary_token12] = ACTIONS(3199), - [aux_sym_expr_binary_token13] = ACTIONS(3199), - [aux_sym_expr_binary_token14] = ACTIONS(3199), - [aux_sym_expr_binary_token15] = ACTIONS(3199), - [aux_sym_expr_binary_token16] = ACTIONS(3199), - [aux_sym_expr_binary_token17] = ACTIONS(3199), - [aux_sym_expr_binary_token18] = ACTIONS(3199), - [aux_sym_expr_binary_token19] = ACTIONS(3199), - [aux_sym_expr_binary_token20] = ACTIONS(3199), - [aux_sym_expr_binary_token21] = ACTIONS(3199), - [aux_sym_expr_binary_token22] = ACTIONS(3199), - [aux_sym_expr_binary_token23] = ACTIONS(3199), - [aux_sym_expr_binary_token24] = ACTIONS(3199), - [aux_sym_expr_binary_token25] = ACTIONS(3199), - [aux_sym_expr_binary_token26] = ACTIONS(3199), - [aux_sym_expr_binary_token27] = ACTIONS(3199), - [aux_sym_expr_binary_token28] = ACTIONS(3199), - [anon_sym_err_GT] = ACTIONS(3201), - [anon_sym_out_GT] = ACTIONS(3201), - [anon_sym_e_GT] = ACTIONS(3201), - [anon_sym_o_GT] = ACTIONS(3201), - [anon_sym_err_PLUSout_GT] = ACTIONS(3201), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), - [anon_sym_o_PLUSe_GT] = ACTIONS(3201), - [anon_sym_e_PLUSo_GT] = ACTIONS(3201), - [anon_sym_err_GT_GT] = ACTIONS(3199), - [anon_sym_out_GT_GT] = ACTIONS(3199), - [anon_sym_e_GT_GT] = ACTIONS(3199), - [anon_sym_o_GT_GT] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), - [anon_sym_POUND] = ACTIONS(247), - }, - [1572] = { - [sym_comment] = STATE(1572), - [anon_sym_true] = ACTIONS(1571), - [anon_sym_false] = ACTIONS(1571), - [anon_sym_null] = ACTIONS(1571), - [aux_sym_cmd_identifier_token38] = ACTIONS(1571), - [aux_sym_cmd_identifier_token39] = ACTIONS(1571), - [aux_sym_cmd_identifier_token40] = ACTIONS(1571), - [sym__newline] = ACTIONS(1571), - [anon_sym_SEMI] = ACTIONS(1571), - [anon_sym_PIPE] = ACTIONS(1571), - [anon_sym_err_GT_PIPE] = ACTIONS(1571), - [anon_sym_out_GT_PIPE] = ACTIONS(1571), - [anon_sym_e_GT_PIPE] = ACTIONS(1571), - [anon_sym_o_GT_PIPE] = ACTIONS(1571), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1571), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1571), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1571), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1571), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_LPAREN] = ACTIONS(1571), - [anon_sym_RPAREN] = ACTIONS(1571), - [anon_sym_DOLLAR] = ACTIONS(1569), - [anon_sym_DASH_DASH] = ACTIONS(1571), - [anon_sym_DASH] = ACTIONS(1569), - [aux_sym_ctrl_match_token1] = ACTIONS(1571), - [anon_sym_RBRACE] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1569), - [anon_sym_DOT_DOT2] = ACTIONS(1569), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1569), - [anon_sym_DOT_DOT_LT] = ACTIONS(1569), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1571), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1571), - [aux_sym__val_number_decimal_token1] = ACTIONS(1569), - [aux_sym__val_number_decimal_token2] = ACTIONS(1571), - [aux_sym__val_number_decimal_token3] = ACTIONS(1571), - [aux_sym__val_number_decimal_token4] = ACTIONS(1571), - [aux_sym__val_number_token1] = ACTIONS(1571), - [aux_sym__val_number_token2] = ACTIONS(1571), - [aux_sym__val_number_token3] = ACTIONS(1571), - [anon_sym_0b] = ACTIONS(1569), - [anon_sym_0o] = ACTIONS(1569), - [anon_sym_0x] = ACTIONS(1569), - [sym_val_date] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [sym__str_single_quotes] = ACTIONS(1571), - [sym__str_back_ticks] = ACTIONS(1571), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1571), - [anon_sym_err_GT] = ACTIONS(1569), - [anon_sym_out_GT] = ACTIONS(1569), - [anon_sym_e_GT] = ACTIONS(1569), - [anon_sym_o_GT] = ACTIONS(1569), - [anon_sym_err_PLUSout_GT] = ACTIONS(1569), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1569), - [anon_sym_o_PLUSe_GT] = ACTIONS(1569), - [anon_sym_e_PLUSo_GT] = ACTIONS(1569), - [anon_sym_err_GT_GT] = ACTIONS(1571), - [anon_sym_out_GT_GT] = ACTIONS(1571), - [anon_sym_e_GT_GT] = ACTIONS(1571), - [anon_sym_o_GT_GT] = ACTIONS(1571), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1571), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1571), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1571), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1571), - [aux_sym_unquoted_token1] = ACTIONS(1569), - [anon_sym_POUND] = ACTIONS(247), - }, - [1573] = { - [sym__expr_parenthesized_immediate] = STATE(7616), - [sym_comment] = STATE(1573), - [sym__newline] = ACTIONS(3199), - [anon_sym_SEMI] = ACTIONS(3199), - [anon_sym_PIPE] = ACTIONS(3199), - [anon_sym_err_GT_PIPE] = ACTIONS(3199), - [anon_sym_out_GT_PIPE] = ACTIONS(3199), - [anon_sym_e_GT_PIPE] = ACTIONS(3199), - [anon_sym_o_GT_PIPE] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3199), - [anon_sym_RPAREN] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_DASH_DASH] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3201), - [aux_sym_ctrl_match_token1] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym_EQ_GT] = ACTIONS(3199), - [anon_sym_LPAREN2] = ACTIONS(2947), - [aux_sym_expr_binary_token1] = ACTIONS(3199), - [aux_sym_expr_binary_token2] = ACTIONS(3199), - [aux_sym_expr_binary_token3] = ACTIONS(3199), - [aux_sym_expr_binary_token4] = ACTIONS(3199), - [aux_sym_expr_binary_token5] = ACTIONS(3199), - [aux_sym_expr_binary_token6] = ACTIONS(3199), - [aux_sym_expr_binary_token7] = ACTIONS(3199), - [aux_sym_expr_binary_token8] = ACTIONS(3199), - [aux_sym_expr_binary_token9] = ACTIONS(3199), - [aux_sym_expr_binary_token10] = ACTIONS(3199), - [aux_sym_expr_binary_token11] = ACTIONS(3199), - [aux_sym_expr_binary_token12] = ACTIONS(3199), - [aux_sym_expr_binary_token13] = ACTIONS(3199), - [aux_sym_expr_binary_token14] = ACTIONS(3199), - [aux_sym_expr_binary_token15] = ACTIONS(3199), - [aux_sym_expr_binary_token16] = ACTIONS(3199), - [aux_sym_expr_binary_token17] = ACTIONS(3199), - [aux_sym_expr_binary_token18] = ACTIONS(3199), - [aux_sym_expr_binary_token19] = ACTIONS(3199), - [aux_sym_expr_binary_token20] = ACTIONS(3199), - [aux_sym_expr_binary_token21] = ACTIONS(3199), - [aux_sym_expr_binary_token22] = ACTIONS(3199), - [aux_sym_expr_binary_token23] = ACTIONS(3199), - [aux_sym_expr_binary_token24] = ACTIONS(3199), - [aux_sym_expr_binary_token25] = ACTIONS(3199), - [aux_sym_expr_binary_token26] = ACTIONS(3199), - [aux_sym_expr_binary_token27] = ACTIONS(3199), - [aux_sym_expr_binary_token28] = ACTIONS(3199), - [anon_sym_err_GT] = ACTIONS(3201), - [anon_sym_out_GT] = ACTIONS(3201), - [anon_sym_e_GT] = ACTIONS(3201), - [anon_sym_o_GT] = ACTIONS(3201), - [anon_sym_err_PLUSout_GT] = ACTIONS(3201), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), - [anon_sym_o_PLUSe_GT] = ACTIONS(3201), - [anon_sym_e_PLUSo_GT] = ACTIONS(3201), - [anon_sym_err_GT_GT] = ACTIONS(3199), - [anon_sym_out_GT_GT] = ACTIONS(3199), - [anon_sym_e_GT_GT] = ACTIONS(3199), - [anon_sym_o_GT_GT] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), - [anon_sym_POUND] = ACTIONS(247), - }, - [1574] = { - [sym_comment] = STATE(1574), - [ts_builtin_sym_end] = ACTIONS(988), - [anon_sym_true] = ACTIONS(988), - [anon_sym_false] = ACTIONS(988), - [anon_sym_null] = ACTIONS(988), - [aux_sym_cmd_identifier_token38] = ACTIONS(988), - [aux_sym_cmd_identifier_token39] = ACTIONS(988), - [aux_sym_cmd_identifier_token40] = ACTIONS(988), - [sym__newline] = ACTIONS(988), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_PIPE] = ACTIONS(988), - [anon_sym_err_GT_PIPE] = ACTIONS(988), - [anon_sym_out_GT_PIPE] = ACTIONS(988), - [anon_sym_e_GT_PIPE] = ACTIONS(988), - [anon_sym_o_GT_PIPE] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(988), - [anon_sym_LBRACK] = ACTIONS(988), - [anon_sym_LPAREN] = ACTIONS(988), - [anon_sym_DOLLAR] = ACTIONS(986), - [anon_sym_DASH_DASH] = ACTIONS(988), - [anon_sym_DASH] = ACTIONS(986), - [aux_sym_ctrl_match_token1] = ACTIONS(988), - [anon_sym_DOT_DOT] = ACTIONS(986), - [anon_sym_DOT_DOT2] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(986), - [anon_sym_DOT_DOT_EQ] = ACTIONS(986), - [anon_sym_DOT_DOT_LT] = ACTIONS(986), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), - [anon_sym_DOT_DOT_LT2] = ACTIONS(988), - [aux_sym__val_number_decimal_token1] = ACTIONS(986), - [aux_sym__val_number_decimal_token2] = ACTIONS(988), - [aux_sym__val_number_decimal_token3] = ACTIONS(988), - [aux_sym__val_number_decimal_token4] = ACTIONS(988), - [aux_sym__val_number_token1] = ACTIONS(988), - [aux_sym__val_number_token2] = ACTIONS(988), - [aux_sym__val_number_token3] = ACTIONS(988), - [anon_sym_0b] = ACTIONS(986), - [anon_sym_0o] = ACTIONS(986), - [anon_sym_0x] = ACTIONS(986), - [sym_val_date] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym__str_single_quotes] = ACTIONS(988), - [sym__str_back_ticks] = ACTIONS(988), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(986), - [anon_sym_out_GT] = ACTIONS(986), - [anon_sym_e_GT] = ACTIONS(986), - [anon_sym_o_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT] = ACTIONS(986), - [anon_sym_err_GT_GT] = ACTIONS(988), - [anon_sym_out_GT_GT] = ACTIONS(988), - [anon_sym_e_GT_GT] = ACTIONS(988), - [anon_sym_o_GT_GT] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), - [aux_sym_unquoted_token1] = ACTIONS(986), - [anon_sym_POUND] = ACTIONS(247), - }, - [1575] = { - [sym_path] = STATE(1715), - [sym_comment] = STATE(1575), - [aux_sym_cell_path_repeat1] = STATE(1576), - [anon_sym_true] = ACTIONS(953), - [anon_sym_false] = ACTIONS(953), - [anon_sym_null] = ACTIONS(953), - [aux_sym_cmd_identifier_token38] = ACTIONS(953), - [aux_sym_cmd_identifier_token39] = ACTIONS(953), - [aux_sym_cmd_identifier_token40] = ACTIONS(953), - [sym__newline] = ACTIONS(953), - [anon_sym_SEMI] = ACTIONS(953), - [anon_sym_PIPE] = ACTIONS(953), - [anon_sym_err_GT_PIPE] = ACTIONS(953), - [anon_sym_out_GT_PIPE] = ACTIONS(953), - [anon_sym_e_GT_PIPE] = ACTIONS(953), - [anon_sym_o_GT_PIPE] = ACTIONS(953), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(953), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(953), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(953), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_RPAREN] = ACTIONS(953), - [anon_sym_DOLLAR] = ACTIONS(951), - [anon_sym_DASH_DASH] = ACTIONS(953), - [anon_sym_DASH] = ACTIONS(951), - [aux_sym_ctrl_match_token1] = ACTIONS(953), - [anon_sym_RBRACE] = ACTIONS(953), - [anon_sym_DOT_DOT] = ACTIONS(951), - [anon_sym_DOT] = ACTIONS(4763), - [anon_sym_DOT_DOT_EQ] = ACTIONS(953), - [anon_sym_DOT_DOT_LT] = ACTIONS(953), - [aux_sym__val_number_decimal_token1] = ACTIONS(951), - [aux_sym__val_number_decimal_token2] = ACTIONS(953), - [aux_sym__val_number_decimal_token3] = ACTIONS(953), - [aux_sym__val_number_decimal_token4] = ACTIONS(953), - [aux_sym__val_number_token1] = ACTIONS(953), - [aux_sym__val_number_token2] = ACTIONS(953), - [aux_sym__val_number_token3] = ACTIONS(953), - [anon_sym_0b] = ACTIONS(951), - [anon_sym_0o] = ACTIONS(951), - [anon_sym_0x] = ACTIONS(951), - [sym_val_date] = ACTIONS(953), - [anon_sym_DQUOTE] = ACTIONS(953), - [sym__str_single_quotes] = ACTIONS(953), - [sym__str_back_ticks] = ACTIONS(953), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(953), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(953), - [anon_sym_err_GT] = ACTIONS(951), - [anon_sym_out_GT] = ACTIONS(951), - [anon_sym_e_GT] = ACTIONS(951), - [anon_sym_o_GT] = ACTIONS(951), - [anon_sym_err_PLUSout_GT] = ACTIONS(951), - [anon_sym_out_PLUSerr_GT] = ACTIONS(951), - [anon_sym_o_PLUSe_GT] = ACTIONS(951), - [anon_sym_e_PLUSo_GT] = ACTIONS(951), - [anon_sym_err_GT_GT] = ACTIONS(953), - [anon_sym_out_GT_GT] = ACTIONS(953), - [anon_sym_e_GT_GT] = ACTIONS(953), - [anon_sym_o_GT_GT] = ACTIONS(953), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(953), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(953), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(953), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(953), - [aux_sym_unquoted_token1] = ACTIONS(951), - [anon_sym_POUND] = ACTIONS(247), - }, - [1576] = { - [sym_path] = STATE(1715), - [sym_comment] = STATE(1576), - [aux_sym_cell_path_repeat1] = STATE(1576), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_null] = ACTIONS(957), - [aux_sym_cmd_identifier_token38] = ACTIONS(957), - [aux_sym_cmd_identifier_token39] = ACTIONS(957), - [aux_sym_cmd_identifier_token40] = ACTIONS(957), - [sym__newline] = ACTIONS(957), - [anon_sym_SEMI] = ACTIONS(957), - [anon_sym_PIPE] = ACTIONS(957), - [anon_sym_err_GT_PIPE] = ACTIONS(957), - [anon_sym_out_GT_PIPE] = ACTIONS(957), - [anon_sym_e_GT_PIPE] = ACTIONS(957), - [anon_sym_o_GT_PIPE] = ACTIONS(957), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(957), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(957), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(957), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(957), - [anon_sym_LBRACK] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(957), - [anon_sym_RPAREN] = ACTIONS(957), - [anon_sym_DOLLAR] = ACTIONS(955), - [anon_sym_DASH_DASH] = ACTIONS(957), - [anon_sym_DASH] = ACTIONS(955), - [aux_sym_ctrl_match_token1] = ACTIONS(957), - [anon_sym_RBRACE] = ACTIONS(957), - [anon_sym_DOT_DOT] = ACTIONS(955), - [anon_sym_DOT] = ACTIONS(4907), - [anon_sym_DOT_DOT_EQ] = ACTIONS(957), - [anon_sym_DOT_DOT_LT] = ACTIONS(957), - [aux_sym__val_number_decimal_token1] = ACTIONS(955), - [aux_sym__val_number_decimal_token2] = ACTIONS(957), - [aux_sym__val_number_decimal_token3] = ACTIONS(957), - [aux_sym__val_number_decimal_token4] = ACTIONS(957), - [aux_sym__val_number_token1] = ACTIONS(957), - [aux_sym__val_number_token2] = ACTIONS(957), - [aux_sym__val_number_token3] = ACTIONS(957), - [anon_sym_0b] = ACTIONS(955), - [anon_sym_0o] = ACTIONS(955), - [anon_sym_0x] = ACTIONS(955), - [sym_val_date] = ACTIONS(957), - [anon_sym_DQUOTE] = ACTIONS(957), - [sym__str_single_quotes] = ACTIONS(957), - [sym__str_back_ticks] = ACTIONS(957), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(957), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(957), - [anon_sym_err_GT] = ACTIONS(955), - [anon_sym_out_GT] = ACTIONS(955), - [anon_sym_e_GT] = ACTIONS(955), - [anon_sym_o_GT] = ACTIONS(955), - [anon_sym_err_PLUSout_GT] = ACTIONS(955), - [anon_sym_out_PLUSerr_GT] = ACTIONS(955), - [anon_sym_o_PLUSe_GT] = ACTIONS(955), - [anon_sym_e_PLUSo_GT] = ACTIONS(955), - [anon_sym_err_GT_GT] = ACTIONS(957), - [anon_sym_out_GT_GT] = ACTIONS(957), - [anon_sym_e_GT_GT] = ACTIONS(957), - [anon_sym_o_GT_GT] = ACTIONS(957), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(957), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(957), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(957), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(957), - [aux_sym_unquoted_token1] = ACTIONS(955), - [anon_sym_POUND] = ACTIONS(247), - }, - [1577] = { - [sym_cell_path] = STATE(2053), - [sym_path] = STATE(1868), - [sym_comment] = STATE(1577), - [aux_sym_cell_path_repeat1] = STATE(1651), - [ts_builtin_sym_end] = ACTIONS(1893), - [anon_sym_true] = ACTIONS(1893), - [anon_sym_false] = ACTIONS(1893), - [anon_sym_null] = ACTIONS(1893), - [aux_sym_cmd_identifier_token38] = ACTIONS(1893), - [aux_sym_cmd_identifier_token39] = ACTIONS(1893), - [aux_sym_cmd_identifier_token40] = ACTIONS(1893), - [sym__newline] = ACTIONS(1893), - [anon_sym_SEMI] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_err_GT_PIPE] = ACTIONS(1893), - [anon_sym_out_GT_PIPE] = ACTIONS(1893), - [anon_sym_e_GT_PIPE] = ACTIONS(1893), - [anon_sym_o_GT_PIPE] = ACTIONS(1893), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1893), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1893), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1893), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1893), - [anon_sym_LBRACK] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1893), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_DASH_DASH] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1891), - [aux_sym_ctrl_match_token1] = ACTIONS(1893), - [anon_sym_DOT_DOT] = ACTIONS(1891), - [anon_sym_DOT] = ACTIONS(4849), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1893), - [anon_sym_DOT_DOT_LT] = ACTIONS(1893), - [aux_sym__val_number_decimal_token1] = ACTIONS(1891), - [aux_sym__val_number_decimal_token2] = ACTIONS(1893), - [aux_sym__val_number_decimal_token3] = ACTIONS(1893), - [aux_sym__val_number_decimal_token4] = ACTIONS(1893), - [aux_sym__val_number_token1] = ACTIONS(1893), - [aux_sym__val_number_token2] = ACTIONS(1893), - [aux_sym__val_number_token3] = ACTIONS(1893), - [anon_sym_0b] = ACTIONS(1891), - [anon_sym_0o] = ACTIONS(1891), - [anon_sym_0x] = ACTIONS(1891), - [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_err_GT] = ACTIONS(1891), - [anon_sym_out_GT] = ACTIONS(1891), - [anon_sym_e_GT] = ACTIONS(1891), - [anon_sym_o_GT] = ACTIONS(1891), - [anon_sym_err_PLUSout_GT] = ACTIONS(1891), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1891), - [anon_sym_o_PLUSe_GT] = ACTIONS(1891), - [anon_sym_e_PLUSo_GT] = ACTIONS(1891), - [anon_sym_err_GT_GT] = ACTIONS(1893), - [anon_sym_out_GT_GT] = ACTIONS(1893), - [anon_sym_e_GT_GT] = ACTIONS(1893), - [anon_sym_o_GT_GT] = ACTIONS(1893), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1893), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1893), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1893), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1893), - [aux_sym_unquoted_token1] = ACTIONS(1891), - [anon_sym_POUND] = ACTIONS(247), - }, - [1578] = { - [sym_comment] = STATE(1578), - [aux_sym_cmd_identifier_token41] = ACTIONS(1473), - [sym__newline] = ACTIONS(1473), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_err_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_GT_PIPE] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), - [anon_sym_RPAREN] = ACTIONS(1475), - [aux_sym_ctrl_match_token1] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1475), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [aux_sym__immediate_decimal_token2] = ACTIONS(4841), - [sym_filesize_unit] = ACTIONS(1475), - [sym_duration_unit] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1473), - [anon_sym_out_GT] = ACTIONS(1473), - [anon_sym_e_GT] = ACTIONS(1473), - [anon_sym_o_GT] = ACTIONS(1473), - [anon_sym_err_PLUSout_GT] = ACTIONS(1473), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), - [anon_sym_o_PLUSe_GT] = ACTIONS(1473), - [anon_sym_e_PLUSo_GT] = ACTIONS(1473), - [anon_sym_err_GT_GT] = ACTIONS(1475), - [anon_sym_out_GT_GT] = ACTIONS(1475), - [anon_sym_e_GT_GT] = ACTIONS(1475), - [anon_sym_o_GT_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), - [anon_sym_POUND] = ACTIONS(247), - }, - [1579] = { - [sym_cell_path] = STATE(2064), - [sym_path] = STATE(1868), - [sym_comment] = STATE(1579), - [aux_sym_cell_path_repeat1] = STATE(1651), - [ts_builtin_sym_end] = ACTIONS(1749), - [anon_sym_true] = ACTIONS(1749), - [anon_sym_false] = ACTIONS(1749), - [anon_sym_null] = ACTIONS(1749), - [aux_sym_cmd_identifier_token38] = ACTIONS(1749), - [aux_sym_cmd_identifier_token39] = ACTIONS(1749), - [aux_sym_cmd_identifier_token40] = ACTIONS(1749), - [sym__newline] = ACTIONS(1749), - [anon_sym_SEMI] = ACTIONS(1749), - [anon_sym_PIPE] = ACTIONS(1749), - [anon_sym_err_GT_PIPE] = ACTIONS(1749), - [anon_sym_out_GT_PIPE] = ACTIONS(1749), - [anon_sym_e_GT_PIPE] = ACTIONS(1749), - [anon_sym_o_GT_PIPE] = ACTIONS(1749), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1749), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1749), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1749), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1749), - [anon_sym_LBRACK] = ACTIONS(1749), - [anon_sym_LPAREN] = ACTIONS(1749), - [anon_sym_DOLLAR] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1747), - [aux_sym_ctrl_match_token1] = ACTIONS(1749), - [anon_sym_DOT_DOT] = ACTIONS(1747), - [anon_sym_DOT] = ACTIONS(4849), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1749), - [anon_sym_DOT_DOT_LT] = ACTIONS(1749), - [aux_sym__val_number_decimal_token1] = ACTIONS(1747), - [aux_sym__val_number_decimal_token2] = ACTIONS(1749), - [aux_sym__val_number_decimal_token3] = ACTIONS(1749), - [aux_sym__val_number_decimal_token4] = ACTIONS(1749), - [aux_sym__val_number_token1] = ACTIONS(1749), - [aux_sym__val_number_token2] = ACTIONS(1749), - [aux_sym__val_number_token3] = ACTIONS(1749), - [anon_sym_0b] = ACTIONS(1747), - [anon_sym_0o] = ACTIONS(1747), - [anon_sym_0x] = ACTIONS(1747), - [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_err_GT] = ACTIONS(1747), - [anon_sym_out_GT] = ACTIONS(1747), - [anon_sym_e_GT] = ACTIONS(1747), - [anon_sym_o_GT] = ACTIONS(1747), - [anon_sym_err_PLUSout_GT] = ACTIONS(1747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1747), - [anon_sym_o_PLUSe_GT] = ACTIONS(1747), - [anon_sym_e_PLUSo_GT] = ACTIONS(1747), - [anon_sym_err_GT_GT] = ACTIONS(1749), - [anon_sym_out_GT_GT] = ACTIONS(1749), - [anon_sym_e_GT_GT] = ACTIONS(1749), - [anon_sym_o_GT_GT] = ACTIONS(1749), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1749), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1749), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1749), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1749), - [aux_sym_unquoted_token1] = ACTIONS(1747), - [anon_sym_POUND] = ACTIONS(247), - }, - [1580] = { - [sym_comment] = STATE(1580), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [anon_sym_null] = ACTIONS(1650), - [aux_sym_cmd_identifier_token38] = ACTIONS(1650), - [aux_sym_cmd_identifier_token39] = ACTIONS(1650), - [aux_sym_cmd_identifier_token40] = ACTIONS(1650), - [sym__newline] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_err_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_GT_PIPE] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_RPAREN] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_DASH] = ACTIONS(1648), - [aux_sym_ctrl_match_token1] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_DOT_DOT] = ACTIONS(1648), - [anon_sym_DOT_DOT2] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1648), - [anon_sym_DOT_DOT_LT] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token3] = ACTIONS(1650), - [aux_sym__val_number_decimal_token4] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [anon_sym_0b] = ACTIONS(1648), - [anon_sym_0o] = ACTIONS(1648), - [anon_sym_0x] = ACTIONS(1648), - [sym_val_date] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), - [anon_sym_err_GT] = ACTIONS(1648), - [anon_sym_out_GT] = ACTIONS(1648), - [anon_sym_e_GT] = ACTIONS(1648), - [anon_sym_o_GT] = ACTIONS(1648), - [anon_sym_err_PLUSout_GT] = ACTIONS(1648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1648), - [anon_sym_o_PLUSe_GT] = ACTIONS(1648), - [anon_sym_e_PLUSo_GT] = ACTIONS(1648), - [anon_sym_err_GT_GT] = ACTIONS(1650), - [anon_sym_out_GT_GT] = ACTIONS(1650), - [anon_sym_e_GT_GT] = ACTIONS(1650), - [anon_sym_o_GT_GT] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1650), - [aux_sym_unquoted_token1] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(247), - }, - [1581] = { - [sym_comment] = STATE(1581), - [ts_builtin_sym_end] = ACTIONS(992), - [anon_sym_true] = ACTIONS(992), - [anon_sym_false] = ACTIONS(992), - [anon_sym_null] = ACTIONS(992), - [aux_sym_cmd_identifier_token38] = ACTIONS(992), - [aux_sym_cmd_identifier_token39] = ACTIONS(992), - [aux_sym_cmd_identifier_token40] = ACTIONS(992), - [sym__newline] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(992), - [anon_sym_err_GT_PIPE] = ACTIONS(992), - [anon_sym_out_GT_PIPE] = ACTIONS(992), - [anon_sym_e_GT_PIPE] = ACTIONS(992), - [anon_sym_o_GT_PIPE] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), - [anon_sym_LBRACK] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(992), - [anon_sym_DASH] = ACTIONS(990), - [aux_sym_ctrl_match_token1] = ACTIONS(992), - [anon_sym_DOT_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT2] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ] = ACTIONS(990), - [anon_sym_DOT_DOT_LT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), - [anon_sym_DOT_DOT_LT2] = ACTIONS(992), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(992), - [aux_sym__val_number_decimal_token3] = ACTIONS(992), - [aux_sym__val_number_decimal_token4] = ACTIONS(992), - [aux_sym__val_number_token1] = ACTIONS(992), - [aux_sym__val_number_token2] = ACTIONS(992), - [aux_sym__val_number_token3] = ACTIONS(992), - [anon_sym_0b] = ACTIONS(990), - [anon_sym_0o] = ACTIONS(990), - [anon_sym_0x] = ACTIONS(990), - [sym_val_date] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(990), - [anon_sym_out_GT] = ACTIONS(990), - [anon_sym_e_GT] = ACTIONS(990), - [anon_sym_o_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT] = ACTIONS(990), - [anon_sym_err_GT_GT] = ACTIONS(992), - [anon_sym_out_GT_GT] = ACTIONS(992), - [anon_sym_e_GT_GT] = ACTIONS(992), - [anon_sym_o_GT_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), - [aux_sym_unquoted_token1] = ACTIONS(990), - [anon_sym_POUND] = ACTIONS(247), - }, - [1582] = { - [sym__expr_parenthesized_immediate] = STATE(7616), - [sym_comment] = STATE(1582), - [sym__newline] = ACTIONS(3199), - [anon_sym_SEMI] = ACTIONS(3199), - [anon_sym_PIPE] = ACTIONS(3199), - [anon_sym_err_GT_PIPE] = ACTIONS(3199), - [anon_sym_out_GT_PIPE] = ACTIONS(3199), - [anon_sym_e_GT_PIPE] = ACTIONS(3199), - [anon_sym_o_GT_PIPE] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3199), - [anon_sym_RPAREN] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_DASH_DASH] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3201), - [aux_sym_ctrl_match_token1] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym_EQ_GT] = ACTIONS(3199), - [anon_sym_LPAREN2] = ACTIONS(2947), - [aux_sym_expr_binary_token1] = ACTIONS(3199), - [aux_sym_expr_binary_token2] = ACTIONS(3199), - [aux_sym_expr_binary_token3] = ACTIONS(3199), - [aux_sym_expr_binary_token4] = ACTIONS(3199), - [aux_sym_expr_binary_token5] = ACTIONS(3199), - [aux_sym_expr_binary_token6] = ACTIONS(3199), - [aux_sym_expr_binary_token7] = ACTIONS(3199), - [aux_sym_expr_binary_token8] = ACTIONS(3199), - [aux_sym_expr_binary_token9] = ACTIONS(3199), - [aux_sym_expr_binary_token10] = ACTIONS(3199), - [aux_sym_expr_binary_token11] = ACTIONS(3199), - [aux_sym_expr_binary_token12] = ACTIONS(3199), - [aux_sym_expr_binary_token13] = ACTIONS(3199), - [aux_sym_expr_binary_token14] = ACTIONS(3199), - [aux_sym_expr_binary_token15] = ACTIONS(3199), - [aux_sym_expr_binary_token16] = ACTIONS(3199), - [aux_sym_expr_binary_token17] = ACTIONS(3199), - [aux_sym_expr_binary_token18] = ACTIONS(3199), - [aux_sym_expr_binary_token19] = ACTIONS(3199), - [aux_sym_expr_binary_token20] = ACTIONS(3199), - [aux_sym_expr_binary_token21] = ACTIONS(3199), - [aux_sym_expr_binary_token22] = ACTIONS(3199), - [aux_sym_expr_binary_token23] = ACTIONS(3199), - [aux_sym_expr_binary_token24] = ACTIONS(3199), - [aux_sym_expr_binary_token25] = ACTIONS(3199), - [aux_sym_expr_binary_token26] = ACTIONS(3199), - [aux_sym_expr_binary_token27] = ACTIONS(3199), - [aux_sym_expr_binary_token28] = ACTIONS(3199), - [anon_sym_err_GT] = ACTIONS(3201), - [anon_sym_out_GT] = ACTIONS(3201), - [anon_sym_e_GT] = ACTIONS(3201), - [anon_sym_o_GT] = ACTIONS(3201), - [anon_sym_err_PLUSout_GT] = ACTIONS(3201), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), - [anon_sym_o_PLUSe_GT] = ACTIONS(3201), - [anon_sym_e_PLUSo_GT] = ACTIONS(3201), - [anon_sym_err_GT_GT] = ACTIONS(3199), - [anon_sym_out_GT_GT] = ACTIONS(3199), - [anon_sym_e_GT_GT] = ACTIONS(3199), - [anon_sym_o_GT_GT] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), - [anon_sym_POUND] = ACTIONS(247), - }, - [1583] = { - [sym_comment] = STATE(1583), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1723), - [aux_sym_cmd_identifier_token38] = ACTIONS(1723), - [aux_sym_cmd_identifier_token39] = ACTIONS(1723), - [aux_sym_cmd_identifier_token40] = ACTIONS(1723), - [sym__newline] = ACTIONS(1723), - [anon_sym_SEMI] = ACTIONS(1723), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_err_GT_PIPE] = ACTIONS(1723), - [anon_sym_out_GT_PIPE] = ACTIONS(1723), - [anon_sym_e_GT_PIPE] = ACTIONS(1723), - [anon_sym_o_GT_PIPE] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), - [anon_sym_LBRACK] = ACTIONS(1723), - [anon_sym_LPAREN] = ACTIONS(1723), - [anon_sym_RPAREN] = ACTIONS(1723), - [anon_sym_DOLLAR] = ACTIONS(1721), - [anon_sym_DASH_DASH] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1721), - [aux_sym_ctrl_match_token1] = ACTIONS(1723), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1721), - [anon_sym_DOT_DOT2] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token3] = ACTIONS(1723), - [aux_sym__val_number_decimal_token4] = ACTIONS(1723), - [aux_sym__val_number_token1] = ACTIONS(1723), - [aux_sym__val_number_token2] = ACTIONS(1723), - [aux_sym__val_number_token3] = ACTIONS(1723), - [anon_sym_0b] = ACTIONS(1721), - [anon_sym_0o] = ACTIONS(1721), - [anon_sym_0x] = ACTIONS(1721), - [sym_val_date] = ACTIONS(1723), - [anon_sym_DQUOTE] = ACTIONS(1723), - [sym__str_single_quotes] = ACTIONS(1723), - [sym__str_back_ticks] = ACTIONS(1723), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1723), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1723), - [anon_sym_err_GT] = ACTIONS(1721), - [anon_sym_out_GT] = ACTIONS(1721), - [anon_sym_e_GT] = ACTIONS(1721), - [anon_sym_o_GT] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT] = ACTIONS(1721), - [anon_sym_err_GT_GT] = ACTIONS(1723), - [anon_sym_out_GT_GT] = ACTIONS(1723), - [anon_sym_e_GT_GT] = ACTIONS(1723), - [anon_sym_o_GT_GT] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), - [aux_sym_unquoted_token1] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(247), - }, - [1584] = { - [sym_comment] = STATE(1584), - [aux_sym_cmd_identifier_token41] = ACTIONS(1519), - [sym__newline] = ACTIONS(1519), - [anon_sym_SEMI] = ACTIONS(1521), - [anon_sym_PIPE] = ACTIONS(1521), - [anon_sym_err_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_GT_PIPE] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), - [anon_sym_RBRACE] = ACTIONS(1521), - [anon_sym_EQ_GT] = ACTIONS(1521), - [aux_sym_expr_binary_token1] = ACTIONS(1521), - [aux_sym_expr_binary_token2] = ACTIONS(1521), - [aux_sym_expr_binary_token3] = ACTIONS(1521), - [aux_sym_expr_binary_token4] = ACTIONS(1521), - [aux_sym_expr_binary_token5] = ACTIONS(1521), - [aux_sym_expr_binary_token6] = ACTIONS(1521), - [aux_sym_expr_binary_token7] = ACTIONS(1521), - [aux_sym_expr_binary_token8] = ACTIONS(1521), - [aux_sym_expr_binary_token9] = ACTIONS(1521), - [aux_sym_expr_binary_token10] = ACTIONS(1521), - [aux_sym_expr_binary_token11] = ACTIONS(1521), - [aux_sym_expr_binary_token12] = ACTIONS(1521), - [aux_sym_expr_binary_token13] = ACTIONS(1521), - [aux_sym_expr_binary_token14] = ACTIONS(1521), - [aux_sym_expr_binary_token15] = ACTIONS(1521), - [aux_sym_expr_binary_token16] = ACTIONS(1521), - [aux_sym_expr_binary_token17] = ACTIONS(1521), - [aux_sym_expr_binary_token18] = ACTIONS(1521), - [aux_sym_expr_binary_token19] = ACTIONS(1521), - [aux_sym_expr_binary_token20] = ACTIONS(1521), - [aux_sym_expr_binary_token21] = ACTIONS(1521), - [aux_sym_expr_binary_token22] = ACTIONS(1521), - [aux_sym_expr_binary_token23] = ACTIONS(1521), - [aux_sym_expr_binary_token24] = ACTIONS(1521), - [aux_sym_expr_binary_token25] = ACTIONS(1521), - [aux_sym_expr_binary_token26] = ACTIONS(1521), - [aux_sym_expr_binary_token27] = ACTIONS(1521), - [aux_sym_expr_binary_token28] = ACTIONS(1521), - [anon_sym_DOT_DOT2] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), - [sym_filesize_unit] = ACTIONS(1521), - [sym_duration_unit] = ACTIONS(1521), - [aux_sym_record_entry_token1] = ACTIONS(1521), - [anon_sym_err_GT] = ACTIONS(1519), - [anon_sym_out_GT] = ACTIONS(1519), - [anon_sym_e_GT] = ACTIONS(1519), - [anon_sym_o_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT] = ACTIONS(1519), - [anon_sym_err_GT_GT] = ACTIONS(1521), - [anon_sym_out_GT_GT] = ACTIONS(1521), - [anon_sym_e_GT_GT] = ACTIONS(1521), - [anon_sym_o_GT_GT] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), - [anon_sym_POUND] = ACTIONS(247), - }, - [1585] = { - [sym_comment] = STATE(1585), - [ts_builtin_sym_end] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [anon_sym_null] = ACTIONS(1591), - [aux_sym_cmd_identifier_token38] = ACTIONS(1591), - [aux_sym_cmd_identifier_token39] = ACTIONS(1591), - [aux_sym_cmd_identifier_token40] = ACTIONS(1591), - [sym__newline] = ACTIONS(1591), - [anon_sym_SEMI] = ACTIONS(1591), - [anon_sym_PIPE] = ACTIONS(1591), - [anon_sym_err_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_GT_PIPE] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), - [anon_sym_LBRACK] = ACTIONS(1591), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_DASH] = ACTIONS(1589), - [aux_sym_ctrl_match_token1] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1591), - [anon_sym_DOT] = ACTIONS(4910), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1591), - [anon_sym_DOT_DOT_LT] = ACTIONS(1591), - [aux_sym__immediate_decimal_token2] = ACTIONS(4912), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token3] = ACTIONS(1591), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(1591), - [aux_sym__val_number_token2] = ACTIONS(1591), - [aux_sym__val_number_token3] = ACTIONS(1591), - [anon_sym_0b] = ACTIONS(1589), - [anon_sym_0o] = ACTIONS(1589), - [anon_sym_0x] = ACTIONS(1589), - [sym_val_date] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym__str_single_quotes] = ACTIONS(1591), - [sym__str_back_ticks] = ACTIONS(1591), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), - [anon_sym_err_GT] = ACTIONS(1589), - [anon_sym_out_GT] = ACTIONS(1589), - [anon_sym_e_GT] = ACTIONS(1589), - [anon_sym_o_GT] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT] = ACTIONS(1589), - [anon_sym_err_GT_GT] = ACTIONS(1591), - [anon_sym_out_GT_GT] = ACTIONS(1591), - [anon_sym_e_GT_GT] = ACTIONS(1591), - [anon_sym_o_GT_GT] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), - [aux_sym_unquoted_token1] = ACTIONS(1589), - [aux_sym_unquoted_token2] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(247), - }, - [1586] = { - [sym_cell_path] = STATE(2027), - [sym_path] = STATE(1868), - [sym_comment] = STATE(1586), - [aux_sym_cell_path_repeat1] = STATE(1651), - [ts_builtin_sym_end] = ACTIONS(1780), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_null] = ACTIONS(1780), - [aux_sym_cmd_identifier_token38] = ACTIONS(1780), - [aux_sym_cmd_identifier_token39] = ACTIONS(1780), - [aux_sym_cmd_identifier_token40] = ACTIONS(1780), - [sym__newline] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_PIPE] = ACTIONS(1780), - [anon_sym_err_GT_PIPE] = ACTIONS(1780), - [anon_sym_out_GT_PIPE] = ACTIONS(1780), - [anon_sym_e_GT_PIPE] = ACTIONS(1780), - [anon_sym_o_GT_PIPE] = ACTIONS(1780), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1780), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1780), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1780), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_DOLLAR] = ACTIONS(1778), - [anon_sym_DASH_DASH] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1778), - [aux_sym_ctrl_match_token1] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1778), - [anon_sym_DOT] = ACTIONS(4849), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1780), - [anon_sym_DOT_DOT_LT] = ACTIONS(1780), - [aux_sym__val_number_decimal_token1] = ACTIONS(1778), - [aux_sym__val_number_decimal_token2] = ACTIONS(1780), - [aux_sym__val_number_decimal_token3] = ACTIONS(1780), - [aux_sym__val_number_decimal_token4] = ACTIONS(1780), - [aux_sym__val_number_token1] = ACTIONS(1780), - [aux_sym__val_number_token2] = ACTIONS(1780), - [aux_sym__val_number_token3] = ACTIONS(1780), - [anon_sym_0b] = ACTIONS(1778), - [anon_sym_0o] = ACTIONS(1778), - [anon_sym_0x] = ACTIONS(1778), - [sym_val_date] = ACTIONS(1780), - [anon_sym_DQUOTE] = ACTIONS(1780), - [sym__str_single_quotes] = ACTIONS(1780), - [sym__str_back_ticks] = ACTIONS(1780), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1780), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1780), - [anon_sym_err_GT] = ACTIONS(1778), - [anon_sym_out_GT] = ACTIONS(1778), - [anon_sym_e_GT] = ACTIONS(1778), - [anon_sym_o_GT] = ACTIONS(1778), - [anon_sym_err_PLUSout_GT] = ACTIONS(1778), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1778), - [anon_sym_o_PLUSe_GT] = ACTIONS(1778), - [anon_sym_e_PLUSo_GT] = ACTIONS(1778), - [anon_sym_err_GT_GT] = ACTIONS(1780), - [anon_sym_out_GT_GT] = ACTIONS(1780), - [anon_sym_e_GT_GT] = ACTIONS(1780), - [anon_sym_o_GT_GT] = ACTIONS(1780), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1780), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1780), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1780), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1780), - [aux_sym_unquoted_token1] = ACTIONS(1778), - [anon_sym_POUND] = ACTIONS(247), - }, - [1587] = { - [sym_cell_path] = STATE(2067), - [sym_path] = STATE(1868), - [sym_comment] = STATE(1587), - [aux_sym_cell_path_repeat1] = STATE(1651), - [ts_builtin_sym_end] = ACTIONS(1826), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_null] = ACTIONS(1826), - [aux_sym_cmd_identifier_token38] = ACTIONS(1826), - [aux_sym_cmd_identifier_token39] = ACTIONS(1826), - [aux_sym_cmd_identifier_token40] = ACTIONS(1826), - [sym__newline] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1826), - [anon_sym_PIPE] = ACTIONS(1826), - [anon_sym_err_GT_PIPE] = ACTIONS(1826), - [anon_sym_out_GT_PIPE] = ACTIONS(1826), - [anon_sym_e_GT_PIPE] = ACTIONS(1826), - [anon_sym_o_GT_PIPE] = ACTIONS(1826), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1826), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1826), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1826), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1826), - [anon_sym_LBRACK] = ACTIONS(1826), - [anon_sym_LPAREN] = ACTIONS(1826), - [anon_sym_DOLLAR] = ACTIONS(1824), - [anon_sym_DASH_DASH] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1824), - [aux_sym_ctrl_match_token1] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1824), - [anon_sym_DOT] = ACTIONS(4849), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1826), - [anon_sym_DOT_DOT_LT] = ACTIONS(1826), - [aux_sym__val_number_decimal_token1] = ACTIONS(1824), - [aux_sym__val_number_decimal_token2] = ACTIONS(1826), - [aux_sym__val_number_decimal_token3] = ACTIONS(1826), - [aux_sym__val_number_decimal_token4] = ACTIONS(1826), - [aux_sym__val_number_token1] = ACTIONS(1826), - [aux_sym__val_number_token2] = ACTIONS(1826), - [aux_sym__val_number_token3] = ACTIONS(1826), - [anon_sym_0b] = ACTIONS(1824), - [anon_sym_0o] = ACTIONS(1824), - [anon_sym_0x] = ACTIONS(1824), - [sym_val_date] = ACTIONS(1826), - [anon_sym_DQUOTE] = ACTIONS(1826), - [sym__str_single_quotes] = ACTIONS(1826), - [sym__str_back_ticks] = ACTIONS(1826), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1826), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1826), - [anon_sym_err_GT] = ACTIONS(1824), - [anon_sym_out_GT] = ACTIONS(1824), - [anon_sym_e_GT] = ACTIONS(1824), - [anon_sym_o_GT] = ACTIONS(1824), - [anon_sym_err_PLUSout_GT] = ACTIONS(1824), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1824), - [anon_sym_o_PLUSe_GT] = ACTIONS(1824), - [anon_sym_e_PLUSo_GT] = ACTIONS(1824), - [anon_sym_err_GT_GT] = ACTIONS(1826), - [anon_sym_out_GT_GT] = ACTIONS(1826), - [anon_sym_e_GT_GT] = ACTIONS(1826), - [anon_sym_o_GT_GT] = ACTIONS(1826), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1826), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1826), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1826), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1826), - [aux_sym_unquoted_token1] = ACTIONS(1824), - [anon_sym_POUND] = ACTIONS(247), - }, - [1588] = { - [sym__expr_parenthesized_immediate] = STATE(7616), - [sym_comment] = STATE(1588), - [sym__newline] = ACTIONS(3199), - [anon_sym_SEMI] = ACTIONS(3199), - [anon_sym_PIPE] = ACTIONS(3199), - [anon_sym_err_GT_PIPE] = ACTIONS(3199), - [anon_sym_out_GT_PIPE] = ACTIONS(3199), - [anon_sym_e_GT_PIPE] = ACTIONS(3199), - [anon_sym_o_GT_PIPE] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3199), - [anon_sym_RPAREN] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_DASH_DASH] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3201), - [aux_sym_ctrl_match_token1] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym_EQ_GT] = ACTIONS(3199), - [anon_sym_LPAREN2] = ACTIONS(2947), - [aux_sym_expr_binary_token1] = ACTIONS(3199), - [aux_sym_expr_binary_token2] = ACTIONS(3199), - [aux_sym_expr_binary_token3] = ACTIONS(3199), - [aux_sym_expr_binary_token4] = ACTIONS(3199), - [aux_sym_expr_binary_token5] = ACTIONS(3199), - [aux_sym_expr_binary_token6] = ACTIONS(3199), - [aux_sym_expr_binary_token7] = ACTIONS(3199), - [aux_sym_expr_binary_token8] = ACTIONS(3199), - [aux_sym_expr_binary_token9] = ACTIONS(3199), - [aux_sym_expr_binary_token10] = ACTIONS(3199), - [aux_sym_expr_binary_token11] = ACTIONS(3199), - [aux_sym_expr_binary_token12] = ACTIONS(3199), - [aux_sym_expr_binary_token13] = ACTIONS(3199), - [aux_sym_expr_binary_token14] = ACTIONS(3199), - [aux_sym_expr_binary_token15] = ACTIONS(3199), - [aux_sym_expr_binary_token16] = ACTIONS(3199), - [aux_sym_expr_binary_token17] = ACTIONS(3199), - [aux_sym_expr_binary_token18] = ACTIONS(3199), - [aux_sym_expr_binary_token19] = ACTIONS(3199), - [aux_sym_expr_binary_token20] = ACTIONS(3199), - [aux_sym_expr_binary_token21] = ACTIONS(3199), - [aux_sym_expr_binary_token22] = ACTIONS(3199), - [aux_sym_expr_binary_token23] = ACTIONS(3199), - [aux_sym_expr_binary_token24] = ACTIONS(3199), - [aux_sym_expr_binary_token25] = ACTIONS(3199), - [aux_sym_expr_binary_token26] = ACTIONS(3199), - [aux_sym_expr_binary_token27] = ACTIONS(3199), - [aux_sym_expr_binary_token28] = ACTIONS(3199), - [anon_sym_err_GT] = ACTIONS(3201), - [anon_sym_out_GT] = ACTIONS(3201), - [anon_sym_e_GT] = ACTIONS(3201), - [anon_sym_o_GT] = ACTIONS(3201), - [anon_sym_err_PLUSout_GT] = ACTIONS(3201), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), - [anon_sym_o_PLUSe_GT] = ACTIONS(3201), - [anon_sym_e_PLUSo_GT] = ACTIONS(3201), - [anon_sym_err_GT_GT] = ACTIONS(3199), - [anon_sym_out_GT_GT] = ACTIONS(3199), - [anon_sym_e_GT_GT] = ACTIONS(3199), - [anon_sym_o_GT_GT] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), - [anon_sym_POUND] = ACTIONS(247), - }, - [1589] = { - [sym_comment] = STATE(1589), - [ts_builtin_sym_end] = ACTIONS(1521), - [sym__newline] = ACTIONS(1521), - [anon_sym_SEMI] = ACTIONS(1521), - [anon_sym_PIPE] = ACTIONS(1521), - [anon_sym_err_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_GT_PIPE] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), - [anon_sym_LPAREN2] = ACTIONS(1521), - [aux_sym_expr_binary_token1] = ACTIONS(1521), - [aux_sym_expr_binary_token2] = ACTIONS(1521), - [aux_sym_expr_binary_token3] = ACTIONS(1521), - [aux_sym_expr_binary_token4] = ACTIONS(1521), - [aux_sym_expr_binary_token5] = ACTIONS(1521), - [aux_sym_expr_binary_token6] = ACTIONS(1521), - [aux_sym_expr_binary_token7] = ACTIONS(1521), - [aux_sym_expr_binary_token8] = ACTIONS(1521), - [aux_sym_expr_binary_token9] = ACTIONS(1521), - [aux_sym_expr_binary_token10] = ACTIONS(1521), - [aux_sym_expr_binary_token11] = ACTIONS(1521), - [aux_sym_expr_binary_token12] = ACTIONS(1521), - [aux_sym_expr_binary_token13] = ACTIONS(1521), - [aux_sym_expr_binary_token14] = ACTIONS(1521), - [aux_sym_expr_binary_token15] = ACTIONS(1521), - [aux_sym_expr_binary_token16] = ACTIONS(1521), - [aux_sym_expr_binary_token17] = ACTIONS(1521), - [aux_sym_expr_binary_token18] = ACTIONS(1521), - [aux_sym_expr_binary_token19] = ACTIONS(1521), - [aux_sym_expr_binary_token20] = ACTIONS(1521), - [aux_sym_expr_binary_token21] = ACTIONS(1521), - [aux_sym_expr_binary_token22] = ACTIONS(1521), - [aux_sym_expr_binary_token23] = ACTIONS(1521), - [aux_sym_expr_binary_token24] = ACTIONS(1521), - [aux_sym_expr_binary_token25] = ACTIONS(1521), - [aux_sym_expr_binary_token26] = ACTIONS(1521), - [aux_sym_expr_binary_token27] = ACTIONS(1521), - [aux_sym_expr_binary_token28] = ACTIONS(1521), - [anon_sym_DOT_DOT2] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), - [aux_sym__immediate_decimal_token2] = ACTIONS(4914), - [sym_filesize_unit] = ACTIONS(1521), - [sym_duration_unit] = ACTIONS(1521), - [anon_sym_err_GT] = ACTIONS(1519), - [anon_sym_out_GT] = ACTIONS(1519), - [anon_sym_e_GT] = ACTIONS(1519), - [anon_sym_o_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT] = ACTIONS(1519), - [anon_sym_err_GT_GT] = ACTIONS(1521), - [anon_sym_out_GT_GT] = ACTIONS(1521), - [anon_sym_e_GT_GT] = ACTIONS(1521), - [anon_sym_o_GT_GT] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), - [aux_sym_unquoted_token2] = ACTIONS(1519), - [anon_sym_POUND] = ACTIONS(247), - }, - [1590] = { - [sym__expr_parenthesized_immediate] = STATE(7583), - [sym_comment] = STATE(1590), - [ts_builtin_sym_end] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_LPAREN2] = ACTIONS(2947), - [aux_sym_expr_binary_token1] = ACTIONS(1537), - [aux_sym_expr_binary_token2] = ACTIONS(1537), - [aux_sym_expr_binary_token3] = ACTIONS(1537), - [aux_sym_expr_binary_token4] = ACTIONS(1537), - [aux_sym_expr_binary_token5] = ACTIONS(1537), - [aux_sym_expr_binary_token6] = ACTIONS(1537), - [aux_sym_expr_binary_token7] = ACTIONS(1537), - [aux_sym_expr_binary_token8] = ACTIONS(1537), - [aux_sym_expr_binary_token9] = ACTIONS(1537), - [aux_sym_expr_binary_token10] = ACTIONS(1537), - [aux_sym_expr_binary_token11] = ACTIONS(1537), - [aux_sym_expr_binary_token12] = ACTIONS(1537), - [aux_sym_expr_binary_token13] = ACTIONS(1537), - [aux_sym_expr_binary_token14] = ACTIONS(1537), - [aux_sym_expr_binary_token15] = ACTIONS(1537), - [aux_sym_expr_binary_token16] = ACTIONS(1537), - [aux_sym_expr_binary_token17] = ACTIONS(1537), - [aux_sym_expr_binary_token18] = ACTIONS(1537), - [aux_sym_expr_binary_token19] = ACTIONS(1537), - [aux_sym_expr_binary_token20] = ACTIONS(1537), - [aux_sym_expr_binary_token21] = ACTIONS(1537), - [aux_sym_expr_binary_token22] = ACTIONS(1537), - [aux_sym_expr_binary_token23] = ACTIONS(1537), - [aux_sym_expr_binary_token24] = ACTIONS(1537), - [aux_sym_expr_binary_token25] = ACTIONS(1537), - [aux_sym_expr_binary_token26] = ACTIONS(1537), - [aux_sym_expr_binary_token27] = ACTIONS(1537), - [aux_sym_expr_binary_token28] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(2949), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2951), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2951), - [sym_filesize_unit] = ACTIONS(4916), - [sym_duration_unit] = ACTIONS(4918), - [anon_sym_err_GT] = ACTIONS(1525), - [anon_sym_out_GT] = ACTIONS(1525), - [anon_sym_e_GT] = ACTIONS(1525), - [anon_sym_o_GT] = ACTIONS(1525), - [anon_sym_err_PLUSout_GT] = ACTIONS(1525), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), - [anon_sym_o_PLUSe_GT] = ACTIONS(1525), - [anon_sym_e_PLUSo_GT] = ACTIONS(1525), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), - [aux_sym_unquoted_token2] = ACTIONS(4920), - [anon_sym_POUND] = ACTIONS(247), - }, - [1591] = { - [sym_cell_path] = STATE(2102), - [sym_path] = STATE(1868), - [sym_comment] = STATE(1591), - [aux_sym_cell_path_repeat1] = STATE(1651), - [ts_builtin_sym_end] = ACTIONS(1776), - [anon_sym_true] = ACTIONS(1776), - [anon_sym_false] = ACTIONS(1776), - [anon_sym_null] = ACTIONS(1776), - [aux_sym_cmd_identifier_token38] = ACTIONS(1776), - [aux_sym_cmd_identifier_token39] = ACTIONS(1776), - [aux_sym_cmd_identifier_token40] = ACTIONS(1776), - [sym__newline] = ACTIONS(1776), - [anon_sym_SEMI] = ACTIONS(1776), - [anon_sym_PIPE] = ACTIONS(1776), - [anon_sym_err_GT_PIPE] = ACTIONS(1776), - [anon_sym_out_GT_PIPE] = ACTIONS(1776), - [anon_sym_e_GT_PIPE] = ACTIONS(1776), - [anon_sym_o_GT_PIPE] = ACTIONS(1776), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1776), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1776), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1776), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1776), - [anon_sym_LBRACK] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1776), - [anon_sym_DOLLAR] = ACTIONS(1774), - [anon_sym_DASH_DASH] = ACTIONS(1776), - [anon_sym_DASH] = ACTIONS(1774), - [aux_sym_ctrl_match_token1] = ACTIONS(1776), - [anon_sym_DOT_DOT] = ACTIONS(1774), - [anon_sym_DOT] = ACTIONS(4849), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1776), - [anon_sym_DOT_DOT_LT] = ACTIONS(1776), - [aux_sym__val_number_decimal_token1] = ACTIONS(1774), - [aux_sym__val_number_decimal_token2] = ACTIONS(1776), - [aux_sym__val_number_decimal_token3] = ACTIONS(1776), - [aux_sym__val_number_decimal_token4] = ACTIONS(1776), - [aux_sym__val_number_token1] = ACTIONS(1776), - [aux_sym__val_number_token2] = ACTIONS(1776), - [aux_sym__val_number_token3] = ACTIONS(1776), - [anon_sym_0b] = ACTIONS(1774), - [anon_sym_0o] = ACTIONS(1774), - [anon_sym_0x] = ACTIONS(1774), - [sym_val_date] = ACTIONS(1776), - [anon_sym_DQUOTE] = ACTIONS(1776), - [sym__str_single_quotes] = ACTIONS(1776), - [sym__str_back_ticks] = ACTIONS(1776), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1776), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1776), - [anon_sym_err_GT] = ACTIONS(1774), - [anon_sym_out_GT] = ACTIONS(1774), - [anon_sym_e_GT] = ACTIONS(1774), - [anon_sym_o_GT] = ACTIONS(1774), - [anon_sym_err_PLUSout_GT] = ACTIONS(1774), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1774), - [anon_sym_o_PLUSe_GT] = ACTIONS(1774), - [anon_sym_e_PLUSo_GT] = ACTIONS(1774), - [anon_sym_err_GT_GT] = ACTIONS(1776), - [anon_sym_out_GT_GT] = ACTIONS(1776), - [anon_sym_e_GT_GT] = ACTIONS(1776), - [anon_sym_o_GT_GT] = ACTIONS(1776), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1776), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1776), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1776), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1776), - [aux_sym_unquoted_token1] = ACTIONS(1774), - [anon_sym_POUND] = ACTIONS(247), - }, - [1592] = { - [sym_comment] = STATE(1592), - [anon_sym_true] = ACTIONS(1023), - [anon_sym_false] = ACTIONS(1023), - [anon_sym_null] = ACTIONS(1023), - [aux_sym_cmd_identifier_token38] = ACTIONS(1023), - [aux_sym_cmd_identifier_token39] = ACTIONS(1023), - [aux_sym_cmd_identifier_token40] = ACTIONS(1023), - [sym__newline] = ACTIONS(1023), - [anon_sym_SEMI] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(1023), - [anon_sym_err_GT_PIPE] = ACTIONS(1023), - [anon_sym_out_GT_PIPE] = ACTIONS(1023), - [anon_sym_e_GT_PIPE] = ACTIONS(1023), - [anon_sym_o_GT_PIPE] = ACTIONS(1023), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1023), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1023), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1023), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1023), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_LPAREN] = ACTIONS(1023), - [anon_sym_RPAREN] = ACTIONS(1023), - [anon_sym_DOLLAR] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [anon_sym_DASH] = ACTIONS(1021), - [aux_sym_ctrl_match_token1] = ACTIONS(1023), - [anon_sym_RBRACE] = ACTIONS(1023), - [anon_sym_DOT_DOT] = ACTIONS(1021), - [anon_sym_DOT_DOT2] = ACTIONS(1021), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1021), - [anon_sym_DOT_DOT_LT] = ACTIONS(1021), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), - [aux_sym__val_number_decimal_token1] = ACTIONS(1021), - [aux_sym__val_number_decimal_token2] = ACTIONS(1023), - [aux_sym__val_number_decimal_token3] = ACTIONS(1023), - [aux_sym__val_number_decimal_token4] = ACTIONS(1023), - [aux_sym__val_number_token1] = ACTIONS(1023), - [aux_sym__val_number_token2] = ACTIONS(1023), - [aux_sym__val_number_token3] = ACTIONS(1023), - [anon_sym_0b] = ACTIONS(1021), - [anon_sym_0o] = ACTIONS(1021), - [anon_sym_0x] = ACTIONS(1021), - [sym_val_date] = ACTIONS(1023), - [anon_sym_DQUOTE] = ACTIONS(1023), - [sym__str_single_quotes] = ACTIONS(1023), - [sym__str_back_ticks] = ACTIONS(1023), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1023), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1023), - [anon_sym_err_GT] = ACTIONS(1021), - [anon_sym_out_GT] = ACTIONS(1021), - [anon_sym_e_GT] = ACTIONS(1021), - [anon_sym_o_GT] = ACTIONS(1021), - [anon_sym_err_PLUSout_GT] = ACTIONS(1021), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), - [anon_sym_o_PLUSe_GT] = ACTIONS(1021), - [anon_sym_e_PLUSo_GT] = ACTIONS(1021), - [anon_sym_err_GT_GT] = ACTIONS(1023), - [anon_sym_out_GT_GT] = ACTIONS(1023), - [anon_sym_e_GT_GT] = ACTIONS(1023), - [anon_sym_o_GT_GT] = ACTIONS(1023), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), - [aux_sym_unquoted_token1] = ACTIONS(1021), - [anon_sym_POUND] = ACTIONS(247), - }, - [1593] = { - [sym_comment] = STATE(1593), - [aux_sym_cmd_identifier_token41] = ACTIONS(1481), - [sym__newline] = ACTIONS(1481), - [anon_sym_SEMI] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_err_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_GT_PIPE] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), - [anon_sym_RBRACE] = ACTIONS(1483), - [anon_sym_EQ_GT] = ACTIONS(1483), - [aux_sym_expr_binary_token1] = ACTIONS(1483), - [aux_sym_expr_binary_token2] = ACTIONS(1483), - [aux_sym_expr_binary_token3] = ACTIONS(1483), - [aux_sym_expr_binary_token4] = ACTIONS(1483), - [aux_sym_expr_binary_token5] = ACTIONS(1483), - [aux_sym_expr_binary_token6] = ACTIONS(1483), - [aux_sym_expr_binary_token7] = ACTIONS(1483), - [aux_sym_expr_binary_token8] = ACTIONS(1483), - [aux_sym_expr_binary_token9] = ACTIONS(1483), - [aux_sym_expr_binary_token10] = ACTIONS(1483), - [aux_sym_expr_binary_token11] = ACTIONS(1483), - [aux_sym_expr_binary_token12] = ACTIONS(1483), - [aux_sym_expr_binary_token13] = ACTIONS(1483), - [aux_sym_expr_binary_token14] = ACTIONS(1483), - [aux_sym_expr_binary_token15] = ACTIONS(1483), - [aux_sym_expr_binary_token16] = ACTIONS(1483), - [aux_sym_expr_binary_token17] = ACTIONS(1483), - [aux_sym_expr_binary_token18] = ACTIONS(1483), - [aux_sym_expr_binary_token19] = ACTIONS(1483), - [aux_sym_expr_binary_token20] = ACTIONS(1483), - [aux_sym_expr_binary_token21] = ACTIONS(1483), - [aux_sym_expr_binary_token22] = ACTIONS(1483), - [aux_sym_expr_binary_token23] = ACTIONS(1483), - [aux_sym_expr_binary_token24] = ACTIONS(1483), - [aux_sym_expr_binary_token25] = ACTIONS(1483), - [aux_sym_expr_binary_token26] = ACTIONS(1483), - [aux_sym_expr_binary_token27] = ACTIONS(1483), - [aux_sym_expr_binary_token28] = ACTIONS(1483), - [anon_sym_DOT_DOT2] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), - [sym_filesize_unit] = ACTIONS(1483), - [sym_duration_unit] = ACTIONS(1483), - [aux_sym_record_entry_token1] = ACTIONS(1483), - [anon_sym_err_GT] = ACTIONS(1481), - [anon_sym_out_GT] = ACTIONS(1481), - [anon_sym_e_GT] = ACTIONS(1481), - [anon_sym_o_GT] = ACTIONS(1481), - [anon_sym_err_PLUSout_GT] = ACTIONS(1481), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), - [anon_sym_o_PLUSe_GT] = ACTIONS(1481), - [anon_sym_e_PLUSo_GT] = ACTIONS(1481), - [anon_sym_err_GT_GT] = ACTIONS(1483), - [anon_sym_out_GT_GT] = ACTIONS(1483), - [anon_sym_e_GT_GT] = ACTIONS(1483), - [anon_sym_o_GT_GT] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), - [anon_sym_POUND] = ACTIONS(247), - }, - [1594] = { - [sym_comment] = STATE(1594), - [sym__newline] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_err_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_GT_PIPE] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), - [anon_sym_RPAREN] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_LPAREN2] = ACTIONS(1475), - [aux_sym_expr_binary_token1] = ACTIONS(1475), - [aux_sym_expr_binary_token2] = ACTIONS(1475), - [aux_sym_expr_binary_token3] = ACTIONS(1475), - [aux_sym_expr_binary_token4] = ACTIONS(1475), - [aux_sym_expr_binary_token5] = ACTIONS(1475), - [aux_sym_expr_binary_token6] = ACTIONS(1475), - [aux_sym_expr_binary_token7] = ACTIONS(1475), - [aux_sym_expr_binary_token8] = ACTIONS(1475), - [aux_sym_expr_binary_token9] = ACTIONS(1475), - [aux_sym_expr_binary_token10] = ACTIONS(1475), - [aux_sym_expr_binary_token11] = ACTIONS(1475), - [aux_sym_expr_binary_token12] = ACTIONS(1475), - [aux_sym_expr_binary_token13] = ACTIONS(1475), - [aux_sym_expr_binary_token14] = ACTIONS(1475), - [aux_sym_expr_binary_token15] = ACTIONS(1475), - [aux_sym_expr_binary_token16] = ACTIONS(1475), - [aux_sym_expr_binary_token17] = ACTIONS(1475), - [aux_sym_expr_binary_token18] = ACTIONS(1475), - [aux_sym_expr_binary_token19] = ACTIONS(1475), - [aux_sym_expr_binary_token20] = ACTIONS(1475), - [aux_sym_expr_binary_token21] = ACTIONS(1475), - [aux_sym_expr_binary_token22] = ACTIONS(1475), - [aux_sym_expr_binary_token23] = ACTIONS(1475), - [aux_sym_expr_binary_token24] = ACTIONS(1475), - [aux_sym_expr_binary_token25] = ACTIONS(1475), - [aux_sym_expr_binary_token26] = ACTIONS(1475), - [aux_sym_expr_binary_token27] = ACTIONS(1475), - [aux_sym_expr_binary_token28] = ACTIONS(1475), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [sym_filesize_unit] = ACTIONS(1475), - [sym_duration_unit] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1473), - [anon_sym_out_GT] = ACTIONS(1473), - [anon_sym_e_GT] = ACTIONS(1473), - [anon_sym_o_GT] = ACTIONS(1473), - [anon_sym_err_PLUSout_GT] = ACTIONS(1473), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), - [anon_sym_o_PLUSe_GT] = ACTIONS(1473), - [anon_sym_e_PLUSo_GT] = ACTIONS(1473), - [anon_sym_err_GT_GT] = ACTIONS(1475), - [anon_sym_out_GT_GT] = ACTIONS(1475), - [anon_sym_e_GT_GT] = ACTIONS(1475), - [anon_sym_o_GT_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), - [aux_sym_unquoted_token2] = ACTIONS(1473), - [anon_sym_POUND] = ACTIONS(247), - }, - [1595] = { - [sym__expr_parenthesized_immediate] = STATE(7616), - [sym_comment] = STATE(1595), - [sym__newline] = ACTIONS(3199), - [anon_sym_SEMI] = ACTIONS(3199), - [anon_sym_PIPE] = ACTIONS(3199), - [anon_sym_err_GT_PIPE] = ACTIONS(3199), - [anon_sym_out_GT_PIPE] = ACTIONS(3199), - [anon_sym_e_GT_PIPE] = ACTIONS(3199), - [anon_sym_o_GT_PIPE] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3199), - [anon_sym_RPAREN] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_DASH_DASH] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3201), - [aux_sym_ctrl_match_token1] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym_EQ_GT] = ACTIONS(3199), - [anon_sym_LPAREN2] = ACTIONS(2947), - [aux_sym_expr_binary_token1] = ACTIONS(3199), - [aux_sym_expr_binary_token2] = ACTIONS(3199), - [aux_sym_expr_binary_token3] = ACTIONS(3199), - [aux_sym_expr_binary_token4] = ACTIONS(3199), - [aux_sym_expr_binary_token5] = ACTIONS(3199), - [aux_sym_expr_binary_token6] = ACTIONS(3199), - [aux_sym_expr_binary_token7] = ACTIONS(3199), - [aux_sym_expr_binary_token8] = ACTIONS(3199), - [aux_sym_expr_binary_token9] = ACTIONS(3199), - [aux_sym_expr_binary_token10] = ACTIONS(3199), - [aux_sym_expr_binary_token11] = ACTIONS(3199), - [aux_sym_expr_binary_token12] = ACTIONS(3199), - [aux_sym_expr_binary_token13] = ACTIONS(3199), - [aux_sym_expr_binary_token14] = ACTIONS(3199), - [aux_sym_expr_binary_token15] = ACTIONS(3199), - [aux_sym_expr_binary_token16] = ACTIONS(3199), - [aux_sym_expr_binary_token17] = ACTIONS(3199), - [aux_sym_expr_binary_token18] = ACTIONS(3199), - [aux_sym_expr_binary_token19] = ACTIONS(3199), - [aux_sym_expr_binary_token20] = ACTIONS(3199), - [aux_sym_expr_binary_token21] = ACTIONS(3199), - [aux_sym_expr_binary_token22] = ACTIONS(3199), - [aux_sym_expr_binary_token23] = ACTIONS(3199), - [aux_sym_expr_binary_token24] = ACTIONS(3199), - [aux_sym_expr_binary_token25] = ACTIONS(3199), - [aux_sym_expr_binary_token26] = ACTIONS(3199), - [aux_sym_expr_binary_token27] = ACTIONS(3199), - [aux_sym_expr_binary_token28] = ACTIONS(3199), - [anon_sym_err_GT] = ACTIONS(3201), - [anon_sym_out_GT] = ACTIONS(3201), - [anon_sym_e_GT] = ACTIONS(3201), - [anon_sym_o_GT] = ACTIONS(3201), - [anon_sym_err_PLUSout_GT] = ACTIONS(3201), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), - [anon_sym_o_PLUSe_GT] = ACTIONS(3201), - [anon_sym_e_PLUSo_GT] = ACTIONS(3201), - [anon_sym_err_GT_GT] = ACTIONS(3199), - [anon_sym_out_GT_GT] = ACTIONS(3199), - [anon_sym_e_GT_GT] = ACTIONS(3199), - [anon_sym_o_GT_GT] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), - [anon_sym_POUND] = ACTIONS(247), - }, - [1596] = { - [sym__expr_parenthesized_immediate] = STATE(7616), - [sym_comment] = STATE(1596), - [sym__newline] = ACTIONS(3199), - [anon_sym_SEMI] = ACTIONS(3199), - [anon_sym_PIPE] = ACTIONS(3199), - [anon_sym_err_GT_PIPE] = ACTIONS(3199), - [anon_sym_out_GT_PIPE] = ACTIONS(3199), - [anon_sym_e_GT_PIPE] = ACTIONS(3199), - [anon_sym_o_GT_PIPE] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3199), - [anon_sym_RPAREN] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_DASH_DASH] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3201), - [aux_sym_ctrl_match_token1] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym_EQ_GT] = ACTIONS(3199), - [anon_sym_LPAREN2] = ACTIONS(2947), - [aux_sym_expr_binary_token1] = ACTIONS(3199), - [aux_sym_expr_binary_token2] = ACTIONS(3199), - [aux_sym_expr_binary_token3] = ACTIONS(3199), - [aux_sym_expr_binary_token4] = ACTIONS(3199), - [aux_sym_expr_binary_token5] = ACTIONS(3199), - [aux_sym_expr_binary_token6] = ACTIONS(3199), - [aux_sym_expr_binary_token7] = ACTIONS(3199), - [aux_sym_expr_binary_token8] = ACTIONS(3199), - [aux_sym_expr_binary_token9] = ACTIONS(3199), - [aux_sym_expr_binary_token10] = ACTIONS(3199), - [aux_sym_expr_binary_token11] = ACTIONS(3199), - [aux_sym_expr_binary_token12] = ACTIONS(3199), - [aux_sym_expr_binary_token13] = ACTIONS(3199), - [aux_sym_expr_binary_token14] = ACTIONS(3199), - [aux_sym_expr_binary_token15] = ACTIONS(3199), - [aux_sym_expr_binary_token16] = ACTIONS(3199), - [aux_sym_expr_binary_token17] = ACTIONS(3199), - [aux_sym_expr_binary_token18] = ACTIONS(3199), - [aux_sym_expr_binary_token19] = ACTIONS(3199), - [aux_sym_expr_binary_token20] = ACTIONS(3199), - [aux_sym_expr_binary_token21] = ACTIONS(3199), - [aux_sym_expr_binary_token22] = ACTIONS(3199), - [aux_sym_expr_binary_token23] = ACTIONS(3199), - [aux_sym_expr_binary_token24] = ACTIONS(3199), - [aux_sym_expr_binary_token25] = ACTIONS(3199), - [aux_sym_expr_binary_token26] = ACTIONS(3199), - [aux_sym_expr_binary_token27] = ACTIONS(3199), - [aux_sym_expr_binary_token28] = ACTIONS(3199), - [anon_sym_err_GT] = ACTIONS(3201), - [anon_sym_out_GT] = ACTIONS(3201), - [anon_sym_e_GT] = ACTIONS(3201), - [anon_sym_o_GT] = ACTIONS(3201), - [anon_sym_err_PLUSout_GT] = ACTIONS(3201), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3201), - [anon_sym_o_PLUSe_GT] = ACTIONS(3201), - [anon_sym_e_PLUSo_GT] = ACTIONS(3201), - [anon_sym_err_GT_GT] = ACTIONS(3199), - [anon_sym_out_GT_GT] = ACTIONS(3199), - [anon_sym_e_GT_GT] = ACTIONS(3199), - [anon_sym_o_GT_GT] = ACTIONS(3199), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3199), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3199), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3199), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3199), - [anon_sym_POUND] = ACTIONS(247), - }, - [1597] = { - [sym_comment] = STATE(1597), - [ts_builtin_sym_end] = ACTIONS(996), - [anon_sym_true] = ACTIONS(996), - [anon_sym_false] = ACTIONS(996), - [anon_sym_null] = ACTIONS(996), - [aux_sym_cmd_identifier_token38] = ACTIONS(996), - [aux_sym_cmd_identifier_token39] = ACTIONS(996), - [aux_sym_cmd_identifier_token40] = ACTIONS(996), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_LBRACK] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(994), - [anon_sym_DASH_DASH] = ACTIONS(996), - [anon_sym_DASH] = ACTIONS(994), - [aux_sym_ctrl_match_token1] = ACTIONS(996), - [anon_sym_DOT_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT2] = ACTIONS(994), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_EQ] = ACTIONS(994), - [anon_sym_DOT_DOT_LT] = ACTIONS(994), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), - [anon_sym_DOT_DOT_LT2] = ACTIONS(996), - [aux_sym__val_number_decimal_token1] = ACTIONS(994), - [aux_sym__val_number_decimal_token2] = ACTIONS(996), - [aux_sym__val_number_decimal_token3] = ACTIONS(996), - [aux_sym__val_number_decimal_token4] = ACTIONS(996), - [aux_sym__val_number_token1] = ACTIONS(996), - [aux_sym__val_number_token2] = ACTIONS(996), - [aux_sym__val_number_token3] = ACTIONS(996), - [anon_sym_0b] = ACTIONS(994), - [anon_sym_0o] = ACTIONS(994), - [anon_sym_0x] = ACTIONS(994), - [sym_val_date] = ACTIONS(996), - [anon_sym_DQUOTE] = ACTIONS(996), - [sym__str_single_quotes] = ACTIONS(996), - [sym__str_back_ticks] = ACTIONS(996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(994), - [anon_sym_out_GT] = ACTIONS(994), - [anon_sym_e_GT] = ACTIONS(994), - [anon_sym_o_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT] = ACTIONS(994), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), - [aux_sym_unquoted_token1] = ACTIONS(994), - [anon_sym_POUND] = ACTIONS(247), - }, - [1598] = { - [sym_comment] = STATE(1598), - [aux_sym_cmd_identifier_token41] = ACTIONS(1585), - [sym__newline] = ACTIONS(1585), + [aux_sym_cmd_identifier_token41] = ACTIONS(4799), + [sym__newline] = ACTIONS(1575), [anon_sym_SEMI] = ACTIONS(1587), [anon_sym_PIPE] = ACTIONS(1587), [anon_sym_err_GT_PIPE] = ACTIONS(1587), @@ -223376,7089 +205802,1945 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), [anon_sym_RBRACE] = ACTIONS(1587), - [anon_sym_EQ_GT] = ACTIONS(1587), [aux_sym_expr_binary_token1] = ACTIONS(1587), [aux_sym_expr_binary_token2] = ACTIONS(1587), [aux_sym_expr_binary_token3] = ACTIONS(1587), [aux_sym_expr_binary_token4] = ACTIONS(1587), [aux_sym_expr_binary_token5] = ACTIONS(1587), - [aux_sym_expr_binary_token6] = ACTIONS(1587), - [aux_sym_expr_binary_token7] = ACTIONS(1587), - [aux_sym_expr_binary_token8] = ACTIONS(1587), - [aux_sym_expr_binary_token9] = ACTIONS(1587), - [aux_sym_expr_binary_token10] = ACTIONS(1587), - [aux_sym_expr_binary_token11] = ACTIONS(1587), - [aux_sym_expr_binary_token12] = ACTIONS(1587), - [aux_sym_expr_binary_token13] = ACTIONS(1587), - [aux_sym_expr_binary_token14] = ACTIONS(1587), - [aux_sym_expr_binary_token15] = ACTIONS(1587), - [aux_sym_expr_binary_token16] = ACTIONS(1587), - [aux_sym_expr_binary_token17] = ACTIONS(1587), - [aux_sym_expr_binary_token18] = ACTIONS(1587), - [aux_sym_expr_binary_token19] = ACTIONS(1587), - [aux_sym_expr_binary_token20] = ACTIONS(1587), - [aux_sym_expr_binary_token21] = ACTIONS(1587), - [aux_sym_expr_binary_token22] = ACTIONS(1587), - [aux_sym_expr_binary_token23] = ACTIONS(1587), - [aux_sym_expr_binary_token24] = ACTIONS(1587), - [aux_sym_expr_binary_token25] = ACTIONS(1587), - [aux_sym_expr_binary_token26] = ACTIONS(1587), - [aux_sym_expr_binary_token27] = ACTIONS(1587), - [aux_sym_expr_binary_token28] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1587), - [aux_sym_record_entry_token1] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1585), - [anon_sym_out_GT] = ACTIONS(1585), - [anon_sym_e_GT] = ACTIONS(1585), - [anon_sym_o_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT] = ACTIONS(1585), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), - [anon_sym_POUND] = ACTIONS(247), - }, - [1599] = { - [sym__expr_parenthesized_immediate] = STATE(7887), - [sym_comment] = STATE(1599), - [sym__newline] = ACTIONS(3209), - [anon_sym_SEMI] = ACTIONS(3209), - [anon_sym_PIPE] = ACTIONS(3209), - [anon_sym_err_GT_PIPE] = ACTIONS(3209), - [anon_sym_out_GT_PIPE] = ACTIONS(3209), - [anon_sym_e_GT_PIPE] = ACTIONS(3209), - [anon_sym_o_GT_PIPE] = ACTIONS(3209), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3209), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3209), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3209), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3209), - [anon_sym_RPAREN] = ACTIONS(3209), - [anon_sym_COMMA] = ACTIONS(3209), - [anon_sym_DASH_DASH] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3211), - [aux_sym_ctrl_match_token1] = ACTIONS(3209), - [anon_sym_RBRACE] = ACTIONS(3209), - [anon_sym_EQ_GT] = ACTIONS(3209), - [anon_sym_LPAREN2] = ACTIONS(2947), - [aux_sym_expr_binary_token1] = ACTIONS(3209), - [aux_sym_expr_binary_token2] = ACTIONS(3209), - [aux_sym_expr_binary_token3] = ACTIONS(3209), - [aux_sym_expr_binary_token4] = ACTIONS(3209), - [aux_sym_expr_binary_token5] = ACTIONS(3209), - [aux_sym_expr_binary_token6] = ACTIONS(3209), - [aux_sym_expr_binary_token7] = ACTIONS(3209), - [aux_sym_expr_binary_token8] = ACTIONS(3209), - [aux_sym_expr_binary_token9] = ACTIONS(3209), - [aux_sym_expr_binary_token10] = ACTIONS(3209), - [aux_sym_expr_binary_token11] = ACTIONS(3209), - [aux_sym_expr_binary_token12] = ACTIONS(3209), - [aux_sym_expr_binary_token13] = ACTIONS(3209), - [aux_sym_expr_binary_token14] = ACTIONS(3209), - [aux_sym_expr_binary_token15] = ACTIONS(3209), - [aux_sym_expr_binary_token16] = ACTIONS(3209), - [aux_sym_expr_binary_token17] = ACTIONS(3209), - [aux_sym_expr_binary_token18] = ACTIONS(3209), - [aux_sym_expr_binary_token19] = ACTIONS(3209), - [aux_sym_expr_binary_token20] = ACTIONS(3209), - [aux_sym_expr_binary_token21] = ACTIONS(3209), - [aux_sym_expr_binary_token22] = ACTIONS(3209), - [aux_sym_expr_binary_token23] = ACTIONS(3209), - [aux_sym_expr_binary_token24] = ACTIONS(3209), - [aux_sym_expr_binary_token25] = ACTIONS(3209), - [aux_sym_expr_binary_token26] = ACTIONS(3209), - [aux_sym_expr_binary_token27] = ACTIONS(3209), - [aux_sym_expr_binary_token28] = ACTIONS(3209), - [anon_sym_err_GT] = ACTIONS(3211), - [anon_sym_out_GT] = ACTIONS(3211), - [anon_sym_e_GT] = ACTIONS(3211), - [anon_sym_o_GT] = ACTIONS(3211), - [anon_sym_err_PLUSout_GT] = ACTIONS(3211), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3211), - [anon_sym_o_PLUSe_GT] = ACTIONS(3211), - [anon_sym_e_PLUSo_GT] = ACTIONS(3211), - [anon_sym_err_GT_GT] = ACTIONS(3209), - [anon_sym_out_GT_GT] = ACTIONS(3209), - [anon_sym_e_GT_GT] = ACTIONS(3209), - [anon_sym_o_GT_GT] = ACTIONS(3209), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3209), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3209), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3209), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3209), - [anon_sym_POUND] = ACTIONS(247), - }, - [1600] = { - [sym_comment] = STATE(1600), - [ts_builtin_sym_end] = ACTIONS(1941), - [anon_sym_true] = ACTIONS(1941), - [anon_sym_false] = ACTIONS(1941), - [anon_sym_null] = ACTIONS(1941), - [aux_sym_cmd_identifier_token38] = ACTIONS(1941), - [aux_sym_cmd_identifier_token39] = ACTIONS(1941), - [aux_sym_cmd_identifier_token40] = ACTIONS(1941), - [sym__newline] = ACTIONS(1941), - [anon_sym_SEMI] = ACTIONS(1941), - [anon_sym_PIPE] = ACTIONS(1941), - [anon_sym_err_GT_PIPE] = ACTIONS(1941), - [anon_sym_out_GT_PIPE] = ACTIONS(1941), - [anon_sym_e_GT_PIPE] = ACTIONS(1941), - [anon_sym_o_GT_PIPE] = ACTIONS(1941), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1941), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1941), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1941), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(1941), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_DOLLAR] = ACTIONS(1935), - [anon_sym_DASH_DASH] = ACTIONS(1941), - [anon_sym_DASH] = ACTIONS(1935), - [aux_sym_ctrl_match_token1] = ACTIONS(1941), - [anon_sym_DOT_DOT] = ACTIONS(1935), - [anon_sym_DOT_DOT2] = ACTIONS(4922), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1935), - [anon_sym_DOT_DOT_LT] = ACTIONS(1935), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4924), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1941), - [aux_sym__val_number_decimal_token3] = ACTIONS(1941), - [aux_sym__val_number_decimal_token4] = ACTIONS(1941), - [aux_sym__val_number_token1] = ACTIONS(1941), - [aux_sym__val_number_token2] = ACTIONS(1941), - [aux_sym__val_number_token3] = ACTIONS(1941), - [anon_sym_0b] = ACTIONS(1935), - [anon_sym_0o] = ACTIONS(1935), - [anon_sym_0x] = ACTIONS(1935), - [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_err_GT] = ACTIONS(1935), - [anon_sym_out_GT] = ACTIONS(1935), - [anon_sym_e_GT] = ACTIONS(1935), - [anon_sym_o_GT] = ACTIONS(1935), - [anon_sym_err_PLUSout_GT] = ACTIONS(1935), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1935), - [anon_sym_o_PLUSe_GT] = ACTIONS(1935), - [anon_sym_e_PLUSo_GT] = ACTIONS(1935), - [anon_sym_err_GT_GT] = ACTIONS(1941), - [anon_sym_out_GT_GT] = ACTIONS(1941), - [anon_sym_e_GT_GT] = ACTIONS(1941), - [anon_sym_o_GT_GT] = ACTIONS(1941), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1941), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1941), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1941), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1941), - [aux_sym_unquoted_token1] = ACTIONS(1935), - [anon_sym_POUND] = ACTIONS(247), - }, - [1601] = { - [sym_comment] = STATE(1601), - [ts_builtin_sym_end] = ACTIONS(1008), - [anon_sym_true] = ACTIONS(1008), - [anon_sym_false] = ACTIONS(1008), - [anon_sym_null] = ACTIONS(1008), - [aux_sym_cmd_identifier_token38] = ACTIONS(1008), - [aux_sym_cmd_identifier_token39] = ACTIONS(1008), - [aux_sym_cmd_identifier_token40] = ACTIONS(1008), - [sym__newline] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_err_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_GT_PIPE] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), - [anon_sym_LBRACK] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DASH_DASH] = ACTIONS(1008), - [anon_sym_DASH] = ACTIONS(1006), - [aux_sym_ctrl_match_token1] = ACTIONS(1008), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT2] = ACTIONS(4926), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4928), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4928), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1008), - [aux_sym__val_number_decimal_token3] = ACTIONS(1008), - [aux_sym__val_number_decimal_token4] = ACTIONS(1008), - [aux_sym__val_number_token1] = ACTIONS(1008), - [aux_sym__val_number_token2] = ACTIONS(1008), - [aux_sym__val_number_token3] = ACTIONS(1008), - [anon_sym_0b] = ACTIONS(1006), - [anon_sym_0o] = ACTIONS(1006), - [anon_sym_0x] = ACTIONS(1006), - [sym_val_date] = ACTIONS(1008), - [anon_sym_DQUOTE] = ACTIONS(1008), - [sym__str_single_quotes] = ACTIONS(1008), - [sym__str_back_ticks] = ACTIONS(1008), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1008), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1008), - [anon_sym_err_GT] = ACTIONS(1006), - [anon_sym_out_GT] = ACTIONS(1006), - [anon_sym_e_GT] = ACTIONS(1006), - [anon_sym_o_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT] = ACTIONS(1006), - [anon_sym_err_GT_GT] = ACTIONS(1008), - [anon_sym_out_GT_GT] = ACTIONS(1008), - [anon_sym_e_GT_GT] = ACTIONS(1008), - [anon_sym_o_GT_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), - [aux_sym_unquoted_token1] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(247), - }, - [1602] = { - [sym_comment] = STATE(1602), - [sym__newline] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(978), - [anon_sym_PIPE] = ACTIONS(978), - [anon_sym_err_GT_PIPE] = ACTIONS(978), - [anon_sym_out_GT_PIPE] = ACTIONS(978), - [anon_sym_e_GT_PIPE] = ACTIONS(978), - [anon_sym_o_GT_PIPE] = ACTIONS(978), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(978), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(978), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(978), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(976), - [aux_sym_ctrl_match_token1] = ACTIONS(978), - [anon_sym_RBRACE] = ACTIONS(978), - [anon_sym_EQ_GT] = ACTIONS(978), - [anon_sym_QMARK2] = ACTIONS(978), - [aux_sym_expr_binary_token1] = ACTIONS(978), - [aux_sym_expr_binary_token2] = ACTIONS(978), - [aux_sym_expr_binary_token3] = ACTIONS(978), - [aux_sym_expr_binary_token4] = ACTIONS(978), - [aux_sym_expr_binary_token5] = ACTIONS(978), - [aux_sym_expr_binary_token6] = ACTIONS(978), - [aux_sym_expr_binary_token7] = ACTIONS(978), - [aux_sym_expr_binary_token8] = ACTIONS(978), - [aux_sym_expr_binary_token9] = ACTIONS(978), - [aux_sym_expr_binary_token10] = ACTIONS(978), - [aux_sym_expr_binary_token11] = ACTIONS(978), - [aux_sym_expr_binary_token12] = ACTIONS(978), - [aux_sym_expr_binary_token13] = ACTIONS(978), - [aux_sym_expr_binary_token14] = ACTIONS(978), - [aux_sym_expr_binary_token15] = ACTIONS(978), - [aux_sym_expr_binary_token16] = ACTIONS(978), - [aux_sym_expr_binary_token17] = ACTIONS(978), - [aux_sym_expr_binary_token18] = ACTIONS(978), - [aux_sym_expr_binary_token19] = ACTIONS(978), - [aux_sym_expr_binary_token20] = ACTIONS(978), - [aux_sym_expr_binary_token21] = ACTIONS(978), - [aux_sym_expr_binary_token22] = ACTIONS(978), - [aux_sym_expr_binary_token23] = ACTIONS(978), - [aux_sym_expr_binary_token24] = ACTIONS(978), - [aux_sym_expr_binary_token25] = ACTIONS(978), - [aux_sym_expr_binary_token26] = ACTIONS(978), - [aux_sym_expr_binary_token27] = ACTIONS(978), - [aux_sym_expr_binary_token28] = ACTIONS(978), - [anon_sym_DOT] = ACTIONS(978), - [aux_sym_record_entry_token1] = ACTIONS(978), - [anon_sym_err_GT] = ACTIONS(976), - [anon_sym_out_GT] = ACTIONS(976), - [anon_sym_e_GT] = ACTIONS(976), - [anon_sym_o_GT] = ACTIONS(976), - [anon_sym_err_PLUSout_GT] = ACTIONS(976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(976), - [anon_sym_o_PLUSe_GT] = ACTIONS(976), - [anon_sym_e_PLUSo_GT] = ACTIONS(976), - [anon_sym_err_GT_GT] = ACTIONS(978), - [anon_sym_out_GT_GT] = ACTIONS(978), - [anon_sym_e_GT_GT] = ACTIONS(978), - [anon_sym_o_GT_GT] = ACTIONS(978), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(978), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(978), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(978), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(978), - [anon_sym_POUND] = ACTIONS(247), - }, - [1603] = { - [sym_comment] = STATE(1603), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1698), - [anon_sym_null] = ACTIONS(1698), - [aux_sym_cmd_identifier_token38] = ACTIONS(1698), - [aux_sym_cmd_identifier_token39] = ACTIONS(1698), - [aux_sym_cmd_identifier_token40] = ACTIONS(1698), - [sym__newline] = ACTIONS(1698), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_PIPE] = ACTIONS(1698), - [anon_sym_err_GT_PIPE] = ACTIONS(1698), - [anon_sym_out_GT_PIPE] = ACTIONS(1698), - [anon_sym_e_GT_PIPE] = ACTIONS(1698), - [anon_sym_o_GT_PIPE] = ACTIONS(1698), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1698), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1698), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1698), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1698), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_RPAREN] = ACTIONS(1698), - [anon_sym_DOLLAR] = ACTIONS(1690), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_DASH] = ACTIONS(1690), - [aux_sym_ctrl_match_token1] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_DOT_DOT] = ACTIONS(1690), - [anon_sym_LPAREN2] = ACTIONS(1692), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1698), - [anon_sym_DOT_DOT_LT] = ACTIONS(1698), - [aux_sym__val_number_decimal_token1] = ACTIONS(1690), - [aux_sym__val_number_decimal_token2] = ACTIONS(1698), - [aux_sym__val_number_decimal_token3] = ACTIONS(1698), - [aux_sym__val_number_decimal_token4] = ACTIONS(1698), - [aux_sym__val_number_token1] = ACTIONS(1698), - [aux_sym__val_number_token2] = ACTIONS(1698), - [aux_sym__val_number_token3] = ACTIONS(1698), - [anon_sym_0b] = ACTIONS(1690), - [anon_sym_0o] = ACTIONS(1690), - [anon_sym_0x] = ACTIONS(1690), - [sym_val_date] = ACTIONS(1698), - [anon_sym_DQUOTE] = ACTIONS(1698), - [sym__str_single_quotes] = ACTIONS(1698), - [sym__str_back_ticks] = ACTIONS(1698), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1698), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1698), - [anon_sym_err_GT] = ACTIONS(1690), - [anon_sym_out_GT] = ACTIONS(1690), - [anon_sym_e_GT] = ACTIONS(1690), - [anon_sym_o_GT] = ACTIONS(1690), - [anon_sym_err_PLUSout_GT] = ACTIONS(1690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1690), - [anon_sym_o_PLUSe_GT] = ACTIONS(1690), - [anon_sym_e_PLUSo_GT] = ACTIONS(1690), - [anon_sym_err_GT_GT] = ACTIONS(1698), - [anon_sym_out_GT_GT] = ACTIONS(1698), - [anon_sym_e_GT_GT] = ACTIONS(1698), - [anon_sym_o_GT_GT] = ACTIONS(1698), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1698), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1698), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1698), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1698), - [aux_sym_unquoted_token1] = ACTIONS(1690), - [aux_sym_unquoted_token2] = ACTIONS(1429), - [anon_sym_POUND] = ACTIONS(247), - }, - [1604] = { - [sym_comment] = STATE(1604), - [anon_sym_true] = ACTIONS(2613), - [anon_sym_false] = ACTIONS(2613), - [anon_sym_null] = ACTIONS(2613), - [aux_sym_cmd_identifier_token38] = ACTIONS(2613), - [aux_sym_cmd_identifier_token39] = ACTIONS(2613), - [aux_sym_cmd_identifier_token40] = ACTIONS(2613), - [sym__newline] = ACTIONS(2613), - [anon_sym_SEMI] = ACTIONS(2613), - [anon_sym_PIPE] = ACTIONS(2613), - [anon_sym_err_GT_PIPE] = ACTIONS(2613), - [anon_sym_out_GT_PIPE] = ACTIONS(2613), - [anon_sym_e_GT_PIPE] = ACTIONS(2613), - [anon_sym_o_GT_PIPE] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2613), - [anon_sym_LPAREN] = ACTIONS(2613), - [anon_sym_RPAREN] = ACTIONS(2613), - [anon_sym_DOLLAR] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(2613), - [anon_sym_DASH] = ACTIONS(4930), - [aux_sym_ctrl_match_token1] = ACTIONS(2613), - [anon_sym_DOT_DOT] = ACTIONS(4930), - [anon_sym_DOT_DOT2] = ACTIONS(4873), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4930), - [anon_sym_DOT_DOT_LT] = ACTIONS(4930), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4875), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4875), - [aux_sym__val_number_decimal_token1] = ACTIONS(4930), - [aux_sym__val_number_decimal_token2] = ACTIONS(2613), - [aux_sym__val_number_decimal_token3] = ACTIONS(2613), - [aux_sym__val_number_decimal_token4] = ACTIONS(2613), - [aux_sym__val_number_token1] = ACTIONS(2613), - [aux_sym__val_number_token2] = ACTIONS(2613), - [aux_sym__val_number_token3] = ACTIONS(2613), - [anon_sym_0b] = ACTIONS(4930), - [anon_sym_0o] = ACTIONS(4930), - [anon_sym_0x] = ACTIONS(4930), - [sym_val_date] = ACTIONS(2613), - [anon_sym_DQUOTE] = ACTIONS(2613), - [sym__str_single_quotes] = ACTIONS(2613), - [sym__str_back_ticks] = ACTIONS(2613), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2613), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2613), - [anon_sym_err_GT] = ACTIONS(4930), - [anon_sym_out_GT] = ACTIONS(4930), - [anon_sym_e_GT] = ACTIONS(4930), - [anon_sym_o_GT] = ACTIONS(4930), - [anon_sym_err_PLUSout_GT] = ACTIONS(4930), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4930), - [anon_sym_o_PLUSe_GT] = ACTIONS(4930), - [anon_sym_e_PLUSo_GT] = ACTIONS(4930), - [anon_sym_err_GT_GT] = ACTIONS(2613), - [anon_sym_out_GT_GT] = ACTIONS(2613), - [anon_sym_e_GT_GT] = ACTIONS(2613), - [anon_sym_o_GT_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2613), - [aux_sym_unquoted_token1] = ACTIONS(4930), - [anon_sym_POUND] = ACTIONS(247), - }, - [1605] = { - [sym_comment] = STATE(1605), - [ts_builtin_sym_end] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1955), - [anon_sym_false] = ACTIONS(1955), - [anon_sym_null] = ACTIONS(1955), - [aux_sym_cmd_identifier_token38] = ACTIONS(1955), - [aux_sym_cmd_identifier_token39] = ACTIONS(1955), - [aux_sym_cmd_identifier_token40] = ACTIONS(1955), - [sym__newline] = ACTIONS(1955), - [anon_sym_SEMI] = ACTIONS(1955), - [anon_sym_PIPE] = ACTIONS(1955), - [anon_sym_err_GT_PIPE] = ACTIONS(1955), - [anon_sym_out_GT_PIPE] = ACTIONS(1955), - [anon_sym_e_GT_PIPE] = ACTIONS(1955), - [anon_sym_o_GT_PIPE] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1955), - [anon_sym_LBRACK] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_DOLLAR] = ACTIONS(1953), - [anon_sym_DASH_DASH] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1953), - [aux_sym_ctrl_match_token1] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1953), - [anon_sym_DOT_DOT2] = ACTIONS(1953), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1955), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1955), - [aux_sym__val_number_decimal_token1] = ACTIONS(1953), - [aux_sym__val_number_decimal_token2] = ACTIONS(1955), - [aux_sym__val_number_decimal_token3] = ACTIONS(1955), - [aux_sym__val_number_decimal_token4] = ACTIONS(1955), - [aux_sym__val_number_token1] = ACTIONS(1955), - [aux_sym__val_number_token2] = ACTIONS(1955), - [aux_sym__val_number_token3] = ACTIONS(1955), - [anon_sym_0b] = ACTIONS(1953), - [anon_sym_0o] = ACTIONS(1953), - [anon_sym_0x] = ACTIONS(1953), - [sym_val_date] = ACTIONS(1955), - [anon_sym_DQUOTE] = ACTIONS(1955), - [sym__str_single_quotes] = ACTIONS(1955), - [sym__str_back_ticks] = ACTIONS(1955), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1955), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1955), - [anon_sym_err_GT] = ACTIONS(1953), - [anon_sym_out_GT] = ACTIONS(1953), - [anon_sym_e_GT] = ACTIONS(1953), - [anon_sym_o_GT] = ACTIONS(1953), - [anon_sym_err_PLUSout_GT] = ACTIONS(1953), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1953), - [anon_sym_o_PLUSe_GT] = ACTIONS(1953), - [anon_sym_e_PLUSo_GT] = ACTIONS(1953), - [anon_sym_err_GT_GT] = ACTIONS(1955), - [anon_sym_out_GT_GT] = ACTIONS(1955), - [anon_sym_e_GT_GT] = ACTIONS(1955), - [anon_sym_o_GT_GT] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1955), - [aux_sym_unquoted_token1] = ACTIONS(1953), - [anon_sym_POUND] = ACTIONS(247), - }, - [1606] = { - [sym_comment] = STATE(1606), - [aux_sym_cmd_identifier_token41] = ACTIONS(4932), - [sym__newline] = ACTIONS(1525), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_RBRACE] = ACTIONS(1537), - [aux_sym_expr_binary_token1] = ACTIONS(1537), - [aux_sym_expr_binary_token2] = ACTIONS(1537), - [aux_sym_expr_binary_token3] = ACTIONS(1537), - [aux_sym_expr_binary_token4] = ACTIONS(1537), - [aux_sym_expr_binary_token5] = ACTIONS(1537), - [aux_sym_expr_binary_token6] = ACTIONS(1537), - [aux_sym_expr_binary_token7] = ACTIONS(1537), - [aux_sym_expr_binary_token8] = ACTIONS(1537), - [aux_sym_expr_binary_token9] = ACTIONS(1537), - [aux_sym_expr_binary_token10] = ACTIONS(1537), - [aux_sym_expr_binary_token11] = ACTIONS(1537), - [aux_sym_expr_binary_token12] = ACTIONS(1537), - [aux_sym_expr_binary_token13] = ACTIONS(1537), - [aux_sym_expr_binary_token14] = ACTIONS(1537), - [aux_sym_expr_binary_token15] = ACTIONS(1537), - [aux_sym_expr_binary_token16] = ACTIONS(1537), - [aux_sym_expr_binary_token17] = ACTIONS(1537), - [aux_sym_expr_binary_token18] = ACTIONS(1537), - [aux_sym_expr_binary_token19] = ACTIONS(1537), - [aux_sym_expr_binary_token20] = ACTIONS(1537), - [aux_sym_expr_binary_token21] = ACTIONS(1537), - [aux_sym_expr_binary_token22] = ACTIONS(1537), - [aux_sym_expr_binary_token23] = ACTIONS(1537), - [aux_sym_expr_binary_token24] = ACTIONS(1537), - [aux_sym_expr_binary_token25] = ACTIONS(1537), - [aux_sym_expr_binary_token26] = ACTIONS(1537), - [aux_sym_expr_binary_token27] = ACTIONS(1537), - [aux_sym_expr_binary_token28] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(4934), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4936), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4936), - [sym_filesize_unit] = ACTIONS(4938), - [sym_duration_unit] = ACTIONS(4940), - [aux_sym_record_entry_token1] = ACTIONS(1537), - [anon_sym_err_GT] = ACTIONS(1525), - [anon_sym_out_GT] = ACTIONS(1525), - [anon_sym_e_GT] = ACTIONS(1525), - [anon_sym_o_GT] = ACTIONS(1525), - [anon_sym_err_PLUSout_GT] = ACTIONS(1525), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), - [anon_sym_o_PLUSe_GT] = ACTIONS(1525), - [anon_sym_e_PLUSo_GT] = ACTIONS(1525), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), - [anon_sym_POUND] = ACTIONS(247), - }, - [1607] = { - [sym_comment] = STATE(1607), - [anon_sym_true] = ACTIONS(4942), - [anon_sym_false] = ACTIONS(4942), - [anon_sym_null] = ACTIONS(4942), - [aux_sym_cmd_identifier_token38] = ACTIONS(4942), - [aux_sym_cmd_identifier_token39] = ACTIONS(4942), - [aux_sym_cmd_identifier_token40] = ACTIONS(4942), - [sym__newline] = ACTIONS(4944), - [anon_sym_SEMI] = ACTIONS(4944), - [anon_sym_PIPE] = ACTIONS(4944), - [anon_sym_err_GT_PIPE] = ACTIONS(4944), - [anon_sym_out_GT_PIPE] = ACTIONS(4944), - [anon_sym_e_GT_PIPE] = ACTIONS(4944), - [anon_sym_o_GT_PIPE] = ACTIONS(4944), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4944), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4944), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4944), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4944), - [anon_sym_LBRACK] = ACTIONS(4944), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4944), - [anon_sym_DOLLAR] = ACTIONS(4942), - [anon_sym_DASH_DASH] = ACTIONS(4942), - [anon_sym_DASH] = ACTIONS(4942), - [aux_sym_ctrl_match_token1] = ACTIONS(4944), - [anon_sym_RBRACE] = ACTIONS(4944), - [anon_sym_DOT_DOT] = ACTIONS(4942), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4944), - [anon_sym_DOT_DOT_LT] = ACTIONS(4944), - [aux_sym__val_number_decimal_token1] = ACTIONS(4942), - [aux_sym__val_number_decimal_token2] = ACTIONS(4942), - [aux_sym__val_number_decimal_token3] = ACTIONS(4944), - [aux_sym__val_number_decimal_token4] = ACTIONS(4944), - [aux_sym__val_number_token1] = ACTIONS(4942), - [aux_sym__val_number_token2] = ACTIONS(4942), - [aux_sym__val_number_token3] = ACTIONS(4942), - [anon_sym_0b] = ACTIONS(4942), - [anon_sym_0o] = ACTIONS(4942), - [anon_sym_0x] = ACTIONS(4942), - [sym_val_date] = ACTIONS(4942), - [anon_sym_DQUOTE] = ACTIONS(4944), - [sym__str_single_quotes] = ACTIONS(4944), - [sym__str_back_ticks] = ACTIONS(4944), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4944), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4944), - [anon_sym_err_GT] = ACTIONS(4942), - [anon_sym_out_GT] = ACTIONS(4942), - [anon_sym_e_GT] = ACTIONS(4942), - [anon_sym_o_GT] = ACTIONS(4942), - [anon_sym_err_PLUSout_GT] = ACTIONS(4942), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4942), - [anon_sym_o_PLUSe_GT] = ACTIONS(4942), - [anon_sym_e_PLUSo_GT] = ACTIONS(4942), - [anon_sym_err_GT_GT] = ACTIONS(4944), - [anon_sym_out_GT_GT] = ACTIONS(4944), - [anon_sym_e_GT_GT] = ACTIONS(4944), - [anon_sym_o_GT_GT] = ACTIONS(4944), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4944), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4944), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4944), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4944), - [anon_sym_EQ2] = ACTIONS(4946), - [sym_short_flag_identifier] = ACTIONS(4948), - [aux_sym_unquoted_token1] = ACTIONS(4942), - [anon_sym_POUND] = ACTIONS(247), - }, - [1608] = { - [sym_comment] = STATE(1608), - [aux_sym_cmd_identifier_token41] = ACTIONS(1519), - [sym__newline] = ACTIONS(1519), - [anon_sym_SEMI] = ACTIONS(1521), - [anon_sym_PIPE] = ACTIONS(1521), - [anon_sym_err_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_GT_PIPE] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), - [anon_sym_RPAREN] = ACTIONS(1521), - [aux_sym_ctrl_match_token1] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1521), - [anon_sym_DOT_DOT2] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), - [sym_filesize_unit] = ACTIONS(1521), - [sym_duration_unit] = ACTIONS(1521), - [anon_sym_err_GT] = ACTIONS(1519), - [anon_sym_out_GT] = ACTIONS(1519), - [anon_sym_e_GT] = ACTIONS(1519), - [anon_sym_o_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT] = ACTIONS(1519), - [anon_sym_err_GT_GT] = ACTIONS(1521), - [anon_sym_out_GT_GT] = ACTIONS(1521), - [anon_sym_e_GT_GT] = ACTIONS(1521), - [anon_sym_o_GT_GT] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), - [anon_sym_POUND] = ACTIONS(247), - }, - [1609] = { - [sym_comment] = STATE(1609), - [sym__newline] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_PIPE] = ACTIONS(964), - [anon_sym_err_GT_PIPE] = ACTIONS(964), - [anon_sym_out_GT_PIPE] = ACTIONS(964), - [anon_sym_e_GT_PIPE] = ACTIONS(964), - [anon_sym_o_GT_PIPE] = ACTIONS(964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(964), - [anon_sym_DASH_DASH] = ACTIONS(964), - [anon_sym_DASH] = ACTIONS(962), - [aux_sym_ctrl_match_token1] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_EQ_GT] = ACTIONS(964), - [anon_sym_QMARK2] = ACTIONS(964), - [aux_sym_expr_binary_token1] = ACTIONS(964), - [aux_sym_expr_binary_token2] = ACTIONS(964), - [aux_sym_expr_binary_token3] = ACTIONS(964), - [aux_sym_expr_binary_token4] = ACTIONS(964), - [aux_sym_expr_binary_token5] = ACTIONS(964), - [aux_sym_expr_binary_token6] = ACTIONS(964), - [aux_sym_expr_binary_token7] = ACTIONS(964), - [aux_sym_expr_binary_token8] = ACTIONS(964), - [aux_sym_expr_binary_token9] = ACTIONS(964), - [aux_sym_expr_binary_token10] = ACTIONS(964), - [aux_sym_expr_binary_token11] = ACTIONS(964), - [aux_sym_expr_binary_token12] = ACTIONS(964), - [aux_sym_expr_binary_token13] = ACTIONS(964), - [aux_sym_expr_binary_token14] = ACTIONS(964), - [aux_sym_expr_binary_token15] = ACTIONS(964), - [aux_sym_expr_binary_token16] = ACTIONS(964), - [aux_sym_expr_binary_token17] = ACTIONS(964), - [aux_sym_expr_binary_token18] = ACTIONS(964), - [aux_sym_expr_binary_token19] = ACTIONS(964), - [aux_sym_expr_binary_token20] = ACTIONS(964), - [aux_sym_expr_binary_token21] = ACTIONS(964), - [aux_sym_expr_binary_token22] = ACTIONS(964), - [aux_sym_expr_binary_token23] = ACTIONS(964), - [aux_sym_expr_binary_token24] = ACTIONS(964), - [aux_sym_expr_binary_token25] = ACTIONS(964), - [aux_sym_expr_binary_token26] = ACTIONS(964), - [aux_sym_expr_binary_token27] = ACTIONS(964), - [aux_sym_expr_binary_token28] = ACTIONS(964), - [anon_sym_DOT] = ACTIONS(964), - [aux_sym_record_entry_token1] = ACTIONS(964), - [anon_sym_err_GT] = ACTIONS(962), - [anon_sym_out_GT] = ACTIONS(962), - [anon_sym_e_GT] = ACTIONS(962), - [anon_sym_o_GT] = ACTIONS(962), - [anon_sym_err_PLUSout_GT] = ACTIONS(962), - [anon_sym_out_PLUSerr_GT] = ACTIONS(962), - [anon_sym_o_PLUSe_GT] = ACTIONS(962), - [anon_sym_e_PLUSo_GT] = ACTIONS(962), - [anon_sym_err_GT_GT] = ACTIONS(964), - [anon_sym_out_GT_GT] = ACTIONS(964), - [anon_sym_e_GT_GT] = ACTIONS(964), - [anon_sym_o_GT_GT] = ACTIONS(964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(964), - [anon_sym_POUND] = ACTIONS(247), - }, - [1610] = { - [sym_comment] = STATE(1610), - [anon_sym_true] = ACTIONS(2087), - [anon_sym_false] = ACTIONS(2087), - [anon_sym_null] = ACTIONS(2087), - [aux_sym_cmd_identifier_token38] = ACTIONS(2087), - [aux_sym_cmd_identifier_token39] = ACTIONS(2087), - [aux_sym_cmd_identifier_token40] = ACTIONS(2087), - [sym__newline] = ACTIONS(2087), - [anon_sym_SEMI] = ACTIONS(2087), - [anon_sym_PIPE] = ACTIONS(2087), - [anon_sym_err_GT_PIPE] = ACTIONS(2087), - [anon_sym_out_GT_PIPE] = ACTIONS(2087), - [anon_sym_e_GT_PIPE] = ACTIONS(2087), - [anon_sym_o_GT_PIPE] = ACTIONS(2087), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2087), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2087), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2087), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2087), - [anon_sym_LBRACK] = ACTIONS(2087), - [anon_sym_LPAREN] = ACTIONS(2085), - [anon_sym_RPAREN] = ACTIONS(2087), - [anon_sym_DOLLAR] = ACTIONS(2085), - [anon_sym_DASH_DASH] = ACTIONS(2087), - [anon_sym_DASH] = ACTIONS(2085), - [aux_sym_ctrl_match_token1] = ACTIONS(2087), - [anon_sym_RBRACE] = ACTIONS(2087), - [anon_sym_DOT_DOT] = ACTIONS(2085), - [anon_sym_LPAREN2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2087), - [anon_sym_DOT_DOT_LT] = ACTIONS(2087), - [aux_sym__val_number_decimal_token1] = ACTIONS(2085), - [aux_sym__val_number_decimal_token2] = ACTIONS(2087), - [aux_sym__val_number_decimal_token3] = ACTIONS(2087), - [aux_sym__val_number_decimal_token4] = ACTIONS(2087), - [aux_sym__val_number_token1] = ACTIONS(2087), - [aux_sym__val_number_token2] = ACTIONS(2087), - [aux_sym__val_number_token3] = ACTIONS(2087), - [anon_sym_0b] = ACTIONS(2085), - [anon_sym_0o] = ACTIONS(2085), - [anon_sym_0x] = ACTIONS(2085), - [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_err_GT] = ACTIONS(2085), - [anon_sym_out_GT] = ACTIONS(2085), - [anon_sym_e_GT] = ACTIONS(2085), - [anon_sym_o_GT] = ACTIONS(2085), - [anon_sym_err_PLUSout_GT] = ACTIONS(2085), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2085), - [anon_sym_o_PLUSe_GT] = ACTIONS(2085), - [anon_sym_e_PLUSo_GT] = ACTIONS(2085), - [anon_sym_err_GT_GT] = ACTIONS(2087), - [anon_sym_out_GT_GT] = ACTIONS(2087), - [anon_sym_e_GT_GT] = ACTIONS(2087), - [anon_sym_o_GT_GT] = ACTIONS(2087), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2087), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2087), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2087), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2087), - [aux_sym_unquoted_token1] = ACTIONS(2085), - [aux_sym_unquoted_token2] = ACTIONS(1719), - [anon_sym_POUND] = ACTIONS(247), - }, - [1611] = { - [sym_comment] = STATE(1611), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1717), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [sym__newline] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_err_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_GT_PIPE] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_RPAREN] = ACTIONS(1717), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1709), - [aux_sym_ctrl_match_token1] = ACTIONS(1717), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_DOT_DOT] = ACTIONS(1709), - [anon_sym_LPAREN2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT] = ACTIONS(1717), - [aux_sym__val_number_decimal_token1] = ACTIONS(1709), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [anon_sym_0b] = ACTIONS(1709), - [anon_sym_0o] = ACTIONS(1709), - [anon_sym_0x] = ACTIONS(1709), - [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_err_GT] = ACTIONS(1709), - [anon_sym_out_GT] = ACTIONS(1709), - [anon_sym_e_GT] = ACTIONS(1709), - [anon_sym_o_GT] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT] = ACTIONS(1709), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), - [anon_sym_o_PLUSe_GT] = ACTIONS(1709), - [anon_sym_e_PLUSo_GT] = ACTIONS(1709), - [anon_sym_err_GT_GT] = ACTIONS(1717), - [anon_sym_out_GT_GT] = ACTIONS(1717), - [anon_sym_e_GT_GT] = ACTIONS(1717), - [anon_sym_o_GT_GT] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), - [aux_sym_unquoted_token1] = ACTIONS(1709), - [aux_sym_unquoted_token2] = ACTIONS(1719), - [anon_sym_POUND] = ACTIONS(247), - }, - [1612] = { - [sym_comment] = STATE(1612), - [anon_sym_true] = ACTIONS(2121), - [anon_sym_false] = ACTIONS(2121), - [anon_sym_null] = ACTIONS(2121), - [aux_sym_cmd_identifier_token38] = ACTIONS(2121), - [aux_sym_cmd_identifier_token39] = ACTIONS(2121), - [aux_sym_cmd_identifier_token40] = ACTIONS(2121), - [sym__newline] = ACTIONS(2121), - [anon_sym_SEMI] = ACTIONS(2121), - [anon_sym_PIPE] = ACTIONS(2121), - [anon_sym_err_GT_PIPE] = ACTIONS(2121), - [anon_sym_out_GT_PIPE] = ACTIONS(2121), - [anon_sym_e_GT_PIPE] = ACTIONS(2121), - [anon_sym_o_GT_PIPE] = ACTIONS(2121), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2121), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2121), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2121), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2121), - [anon_sym_LBRACK] = ACTIONS(2121), - [anon_sym_LPAREN] = ACTIONS(2117), - [anon_sym_RPAREN] = ACTIONS(2121), - [anon_sym_DOLLAR] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2117), - [aux_sym_ctrl_match_token1] = ACTIONS(2121), - [anon_sym_RBRACE] = ACTIONS(2121), - [anon_sym_DOT_DOT] = ACTIONS(2117), - [anon_sym_LPAREN2] = ACTIONS(2119), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2121), - [anon_sym_DOT_DOT_LT] = ACTIONS(2121), - [aux_sym__val_number_decimal_token1] = ACTIONS(2117), - [aux_sym__val_number_decimal_token2] = ACTIONS(2121), - [aux_sym__val_number_decimal_token3] = ACTIONS(2121), - [aux_sym__val_number_decimal_token4] = ACTIONS(2121), - [aux_sym__val_number_token1] = ACTIONS(2121), - [aux_sym__val_number_token2] = ACTIONS(2121), - [aux_sym__val_number_token3] = ACTIONS(2121), - [anon_sym_0b] = ACTIONS(2117), - [anon_sym_0o] = ACTIONS(2117), - [anon_sym_0x] = ACTIONS(2117), - [sym_val_date] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(2121), - [sym__str_single_quotes] = ACTIONS(2121), - [sym__str_back_ticks] = ACTIONS(2121), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2121), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2121), - [anon_sym_err_GT] = ACTIONS(2117), - [anon_sym_out_GT] = ACTIONS(2117), - [anon_sym_e_GT] = ACTIONS(2117), - [anon_sym_o_GT] = ACTIONS(2117), - [anon_sym_err_PLUSout_GT] = ACTIONS(2117), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2117), - [anon_sym_o_PLUSe_GT] = ACTIONS(2117), - [anon_sym_e_PLUSo_GT] = ACTIONS(2117), - [anon_sym_err_GT_GT] = ACTIONS(2121), - [anon_sym_out_GT_GT] = ACTIONS(2121), - [anon_sym_e_GT_GT] = ACTIONS(2121), - [anon_sym_o_GT_GT] = ACTIONS(2121), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2121), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2121), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2121), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2121), - [aux_sym_unquoted_token1] = ACTIONS(2117), - [aux_sym_unquoted_token2] = ACTIONS(1457), - [anon_sym_POUND] = ACTIONS(247), - }, - [1613] = { - [sym_comment] = STATE(1613), - [anon_sym_true] = ACTIONS(2127), - [anon_sym_false] = ACTIONS(2127), - [anon_sym_null] = ACTIONS(2127), - [aux_sym_cmd_identifier_token38] = ACTIONS(2127), - [aux_sym_cmd_identifier_token39] = ACTIONS(2127), - [aux_sym_cmd_identifier_token40] = ACTIONS(2127), - [sym__newline] = ACTIONS(2127), - [anon_sym_SEMI] = ACTIONS(2127), - [anon_sym_PIPE] = ACTIONS(2127), - [anon_sym_err_GT_PIPE] = ACTIONS(2127), - [anon_sym_out_GT_PIPE] = ACTIONS(2127), - [anon_sym_e_GT_PIPE] = ACTIONS(2127), - [anon_sym_o_GT_PIPE] = ACTIONS(2127), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2127), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2127), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2127), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2127), - [anon_sym_LBRACK] = ACTIONS(2127), - [anon_sym_LPAREN] = ACTIONS(2123), - [anon_sym_RPAREN] = ACTIONS(2127), - [anon_sym_DOLLAR] = ACTIONS(2123), - [anon_sym_DASH_DASH] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2123), - [aux_sym_ctrl_match_token1] = ACTIONS(2127), - [anon_sym_RBRACE] = ACTIONS(2127), - [anon_sym_DOT_DOT] = ACTIONS(2123), - [anon_sym_LPAREN2] = ACTIONS(2125), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2127), - [anon_sym_DOT_DOT_LT] = ACTIONS(2127), - [aux_sym__val_number_decimal_token1] = ACTIONS(2123), - [aux_sym__val_number_decimal_token2] = ACTIONS(2127), - [aux_sym__val_number_decimal_token3] = ACTIONS(2127), - [aux_sym__val_number_decimal_token4] = ACTIONS(2127), - [aux_sym__val_number_token1] = ACTIONS(2127), - [aux_sym__val_number_token2] = ACTIONS(2127), - [aux_sym__val_number_token3] = ACTIONS(2127), - [anon_sym_0b] = ACTIONS(2123), - [anon_sym_0o] = ACTIONS(2123), - [anon_sym_0x] = ACTIONS(2123), - [sym_val_date] = ACTIONS(2127), - [anon_sym_DQUOTE] = ACTIONS(2127), - [sym__str_single_quotes] = ACTIONS(2127), - [sym__str_back_ticks] = ACTIONS(2127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2127), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2127), - [anon_sym_err_GT] = ACTIONS(2123), - [anon_sym_out_GT] = ACTIONS(2123), - [anon_sym_e_GT] = ACTIONS(2123), - [anon_sym_o_GT] = ACTIONS(2123), - [anon_sym_err_PLUSout_GT] = ACTIONS(2123), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2123), - [anon_sym_o_PLUSe_GT] = ACTIONS(2123), - [anon_sym_e_PLUSo_GT] = ACTIONS(2123), - [anon_sym_err_GT_GT] = ACTIONS(2127), - [anon_sym_out_GT_GT] = ACTIONS(2127), - [anon_sym_e_GT_GT] = ACTIONS(2127), - [anon_sym_o_GT_GT] = ACTIONS(2127), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2127), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2127), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2127), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2127), - [aux_sym_unquoted_token1] = ACTIONS(2123), - [aux_sym_unquoted_token2] = ACTIONS(2129), - [anon_sym_POUND] = ACTIONS(247), - }, - [1614] = { - [sym_cell_path] = STATE(2179), - [sym_path] = STATE(1426), - [sym_comment] = STATE(1614), - [aux_sym_cell_path_repeat1] = STATE(1297), - [ts_builtin_sym_end] = ACTIONS(1603), - [sym__newline] = ACTIONS(1603), - [anon_sym_SEMI] = ACTIONS(1603), - [anon_sym_PIPE] = ACTIONS(1603), - [anon_sym_err_GT_PIPE] = ACTIONS(1603), - [anon_sym_out_GT_PIPE] = ACTIONS(1603), - [anon_sym_e_GT_PIPE] = ACTIONS(1603), - [anon_sym_o_GT_PIPE] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1603), - [aux_sym_expr_binary_token1] = ACTIONS(1603), - [aux_sym_expr_binary_token2] = ACTIONS(1603), - [aux_sym_expr_binary_token3] = ACTIONS(1603), - [aux_sym_expr_binary_token4] = ACTIONS(1603), - [aux_sym_expr_binary_token5] = ACTIONS(1603), - [aux_sym_expr_binary_token6] = ACTIONS(1603), - [aux_sym_expr_binary_token7] = ACTIONS(1603), - [aux_sym_expr_binary_token8] = ACTIONS(1603), - [aux_sym_expr_binary_token9] = ACTIONS(1603), - [aux_sym_expr_binary_token10] = ACTIONS(1603), - [aux_sym_expr_binary_token11] = ACTIONS(1603), - [aux_sym_expr_binary_token12] = ACTIONS(1603), - [aux_sym_expr_binary_token13] = ACTIONS(1603), - [aux_sym_expr_binary_token14] = ACTIONS(1603), - [aux_sym_expr_binary_token15] = ACTIONS(1603), - [aux_sym_expr_binary_token16] = ACTIONS(1603), - [aux_sym_expr_binary_token17] = ACTIONS(1603), - [aux_sym_expr_binary_token18] = ACTIONS(1603), - [aux_sym_expr_binary_token19] = ACTIONS(1603), - [aux_sym_expr_binary_token20] = ACTIONS(1603), - [aux_sym_expr_binary_token21] = ACTIONS(1603), - [aux_sym_expr_binary_token22] = ACTIONS(1603), - [aux_sym_expr_binary_token23] = ACTIONS(1603), - [aux_sym_expr_binary_token24] = ACTIONS(1603), - [aux_sym_expr_binary_token25] = ACTIONS(1603), - [aux_sym_expr_binary_token26] = ACTIONS(1603), - [aux_sym_expr_binary_token27] = ACTIONS(1603), - [aux_sym_expr_binary_token28] = ACTIONS(1603), - [anon_sym_DOT_DOT2] = ACTIONS(1599), - [anon_sym_DOT] = ACTIONS(4138), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1603), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1603), - [anon_sym_err_GT] = ACTIONS(1599), - [anon_sym_out_GT] = ACTIONS(1599), - [anon_sym_e_GT] = ACTIONS(1599), - [anon_sym_o_GT] = ACTIONS(1599), - [anon_sym_err_PLUSout_GT] = ACTIONS(1599), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), - [anon_sym_o_PLUSe_GT] = ACTIONS(1599), - [anon_sym_e_PLUSo_GT] = ACTIONS(1599), - [anon_sym_err_GT_GT] = ACTIONS(1603), - [anon_sym_out_GT_GT] = ACTIONS(1603), - [anon_sym_e_GT_GT] = ACTIONS(1603), - [anon_sym_o_GT_GT] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1603), - [anon_sym_POUND] = ACTIONS(247), - }, - [1615] = { - [sym_comment] = STATE(1615), - [ts_builtin_sym_end] = ACTIONS(1475), - [sym__newline] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_err_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_GT_PIPE] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), - [anon_sym_LPAREN2] = ACTIONS(1475), - [aux_sym_expr_binary_token1] = ACTIONS(1475), - [aux_sym_expr_binary_token2] = ACTIONS(1475), - [aux_sym_expr_binary_token3] = ACTIONS(1475), - [aux_sym_expr_binary_token4] = ACTIONS(1475), - [aux_sym_expr_binary_token5] = ACTIONS(1475), - [aux_sym_expr_binary_token6] = ACTIONS(1475), - [aux_sym_expr_binary_token7] = ACTIONS(1475), - [aux_sym_expr_binary_token8] = ACTIONS(1475), - [aux_sym_expr_binary_token9] = ACTIONS(1475), - [aux_sym_expr_binary_token10] = ACTIONS(1475), - [aux_sym_expr_binary_token11] = ACTIONS(1475), - [aux_sym_expr_binary_token12] = ACTIONS(1475), - [aux_sym_expr_binary_token13] = ACTIONS(1475), - [aux_sym_expr_binary_token14] = ACTIONS(1475), - [aux_sym_expr_binary_token15] = ACTIONS(1475), - [aux_sym_expr_binary_token16] = ACTIONS(1475), - [aux_sym_expr_binary_token17] = ACTIONS(1475), - [aux_sym_expr_binary_token18] = ACTIONS(1475), - [aux_sym_expr_binary_token19] = ACTIONS(1475), - [aux_sym_expr_binary_token20] = ACTIONS(1475), - [aux_sym_expr_binary_token21] = ACTIONS(1475), - [aux_sym_expr_binary_token22] = ACTIONS(1475), - [aux_sym_expr_binary_token23] = ACTIONS(1475), - [aux_sym_expr_binary_token24] = ACTIONS(1475), - [aux_sym_expr_binary_token25] = ACTIONS(1475), - [aux_sym_expr_binary_token26] = ACTIONS(1475), - [aux_sym_expr_binary_token27] = ACTIONS(1475), - [aux_sym_expr_binary_token28] = ACTIONS(1475), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [sym_filesize_unit] = ACTIONS(1475), - [sym_duration_unit] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1473), - [anon_sym_out_GT] = ACTIONS(1473), - [anon_sym_e_GT] = ACTIONS(1473), - [anon_sym_o_GT] = ACTIONS(1473), - [anon_sym_err_PLUSout_GT] = ACTIONS(1473), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), - [anon_sym_o_PLUSe_GT] = ACTIONS(1473), - [anon_sym_e_PLUSo_GT] = ACTIONS(1473), - [anon_sym_err_GT_GT] = ACTIONS(1475), - [anon_sym_out_GT_GT] = ACTIONS(1475), - [anon_sym_e_GT_GT] = ACTIONS(1475), - [anon_sym_o_GT_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), - [aux_sym_unquoted_token2] = ACTIONS(1473), - [anon_sym_POUND] = ACTIONS(247), - }, - [1616] = { - [sym_comment] = STATE(1616), - [anon_sym_true] = ACTIONS(4950), - [anon_sym_false] = ACTIONS(4950), - [anon_sym_null] = ACTIONS(4950), - [aux_sym_cmd_identifier_token38] = ACTIONS(4950), - [aux_sym_cmd_identifier_token39] = ACTIONS(4952), - [aux_sym_cmd_identifier_token40] = ACTIONS(4950), - [sym_long_flag_identifier] = ACTIONS(4954), - [sym__newline] = ACTIONS(4952), - [anon_sym_SEMI] = ACTIONS(4952), - [anon_sym_PIPE] = ACTIONS(4952), - [anon_sym_err_GT_PIPE] = ACTIONS(4952), - [anon_sym_out_GT_PIPE] = ACTIONS(4952), - [anon_sym_e_GT_PIPE] = ACTIONS(4952), - [anon_sym_o_GT_PIPE] = ACTIONS(4952), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4952), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4952), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4952), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4952), - [anon_sym_LBRACK] = ACTIONS(4952), - [anon_sym_LPAREN] = ACTIONS(4952), - [anon_sym_RPAREN] = ACTIONS(4952), - [anon_sym_DOLLAR] = ACTIONS(4950), - [anon_sym_DASH_DASH] = ACTIONS(4952), - [anon_sym_DASH] = ACTIONS(4950), - [aux_sym_ctrl_match_token1] = ACTIONS(4952), - [anon_sym_RBRACE] = ACTIONS(4952), - [anon_sym_DOT_DOT] = ACTIONS(4950), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4952), - [anon_sym_DOT_DOT_LT] = ACTIONS(4952), - [aux_sym__val_number_decimal_token1] = ACTIONS(4950), - [aux_sym__val_number_decimal_token2] = ACTIONS(4952), - [aux_sym__val_number_decimal_token3] = ACTIONS(4952), - [aux_sym__val_number_decimal_token4] = ACTIONS(4952), - [aux_sym__val_number_token1] = ACTIONS(4950), - [aux_sym__val_number_token2] = ACTIONS(4950), - [aux_sym__val_number_token3] = ACTIONS(4950), - [anon_sym_0b] = ACTIONS(4950), - [anon_sym_0o] = ACTIONS(4950), - [anon_sym_0x] = ACTIONS(4950), - [sym_val_date] = ACTIONS(4950), - [anon_sym_DQUOTE] = ACTIONS(4952), - [sym__str_single_quotes] = ACTIONS(4952), - [sym__str_back_ticks] = ACTIONS(4952), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4952), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4952), - [anon_sym_err_GT] = ACTIONS(4950), - [anon_sym_out_GT] = ACTIONS(4950), - [anon_sym_e_GT] = ACTIONS(4950), - [anon_sym_o_GT] = ACTIONS(4950), - [anon_sym_err_PLUSout_GT] = ACTIONS(4950), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4950), - [anon_sym_o_PLUSe_GT] = ACTIONS(4950), - [anon_sym_e_PLUSo_GT] = ACTIONS(4950), - [anon_sym_err_GT_GT] = ACTIONS(4952), - [anon_sym_out_GT_GT] = ACTIONS(4952), - [anon_sym_e_GT_GT] = ACTIONS(4952), - [anon_sym_o_GT_GT] = ACTIONS(4952), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4952), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4952), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4952), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4952), - [anon_sym_EQ2] = ACTIONS(4956), - [aux_sym_unquoted_token1] = ACTIONS(4950), - [anon_sym_POUND] = ACTIONS(247), - }, - [1617] = { - [sym_comment] = STATE(1617), - [anon_sym_true] = ACTIONS(968), - [anon_sym_false] = ACTIONS(968), - [anon_sym_null] = ACTIONS(968), - [aux_sym_cmd_identifier_token38] = ACTIONS(968), - [aux_sym_cmd_identifier_token39] = ACTIONS(968), - [aux_sym_cmd_identifier_token40] = ACTIONS(968), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_LBRACK] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(968), - [anon_sym_DOLLAR] = ACTIONS(966), - [anon_sym_DASH_DASH] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(966), - [aux_sym_ctrl_match_token1] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_DOT_DOT] = ACTIONS(966), - [anon_sym_QMARK2] = ACTIONS(968), - [anon_sym_DOT] = ACTIONS(966), - [anon_sym_DOT_DOT_EQ] = ACTIONS(968), - [anon_sym_DOT_DOT_LT] = ACTIONS(968), - [aux_sym__val_number_decimal_token1] = ACTIONS(966), - [aux_sym__val_number_decimal_token2] = ACTIONS(968), - [aux_sym__val_number_decimal_token3] = ACTIONS(968), - [aux_sym__val_number_decimal_token4] = ACTIONS(968), - [aux_sym__val_number_token1] = ACTIONS(968), - [aux_sym__val_number_token2] = ACTIONS(968), - [aux_sym__val_number_token3] = ACTIONS(968), - [anon_sym_0b] = ACTIONS(966), - [anon_sym_0o] = ACTIONS(966), - [anon_sym_0x] = ACTIONS(966), - [sym_val_date] = ACTIONS(968), - [anon_sym_DQUOTE] = ACTIONS(968), - [sym__str_single_quotes] = ACTIONS(968), - [sym__str_back_ticks] = ACTIONS(968), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(968), - [anon_sym_err_GT] = ACTIONS(966), - [anon_sym_out_GT] = ACTIONS(966), - [anon_sym_e_GT] = ACTIONS(966), - [anon_sym_o_GT] = ACTIONS(966), - [anon_sym_err_PLUSout_GT] = ACTIONS(966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(966), - [anon_sym_o_PLUSe_GT] = ACTIONS(966), - [anon_sym_e_PLUSo_GT] = ACTIONS(966), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [aux_sym_unquoted_token1] = ACTIONS(966), - [anon_sym_POUND] = ACTIONS(247), - }, - [1618] = { - [sym_comment] = STATE(1618), - [anon_sym_true] = ACTIONS(2131), - [anon_sym_false] = ACTIONS(2131), - [anon_sym_null] = ACTIONS(2131), - [aux_sym_cmd_identifier_token38] = ACTIONS(2131), - [aux_sym_cmd_identifier_token39] = ACTIONS(2131), - [aux_sym_cmd_identifier_token40] = ACTIONS(2131), - [sym__newline] = ACTIONS(2133), - [anon_sym_SEMI] = ACTIONS(2133), - [anon_sym_PIPE] = ACTIONS(2133), - [anon_sym_err_GT_PIPE] = ACTIONS(2133), - [anon_sym_out_GT_PIPE] = ACTIONS(2133), - [anon_sym_e_GT_PIPE] = ACTIONS(2133), - [anon_sym_o_GT_PIPE] = ACTIONS(2133), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2133), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2133), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2133), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(2133), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_RPAREN] = ACTIONS(2133), - [anon_sym_DOLLAR] = ACTIONS(2131), - [anon_sym_DASH_DASH] = ACTIONS(2131), - [anon_sym_DASH] = ACTIONS(2131), - [aux_sym_ctrl_match_token1] = ACTIONS(2133), - [anon_sym_RBRACE] = ACTIONS(2133), - [anon_sym_DOT_DOT] = ACTIONS(2131), - [anon_sym_LPAREN2] = ACTIONS(2133), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2131), - [anon_sym_DOT_DOT_LT] = ACTIONS(2131), - [aux_sym__val_number_decimal_token1] = ACTIONS(2131), - [aux_sym__val_number_decimal_token2] = ACTIONS(2131), - [aux_sym__val_number_decimal_token3] = ACTIONS(2131), - [aux_sym__val_number_decimal_token4] = ACTIONS(2131), - [aux_sym__val_number_token1] = ACTIONS(2131), - [aux_sym__val_number_token2] = ACTIONS(2131), - [aux_sym__val_number_token3] = ACTIONS(2131), - [anon_sym_0b] = ACTIONS(2131), - [anon_sym_0o] = ACTIONS(2131), - [anon_sym_0x] = ACTIONS(2131), - [sym_val_date] = ACTIONS(2131), - [anon_sym_DQUOTE] = ACTIONS(2133), - [sym__str_single_quotes] = ACTIONS(2133), - [sym__str_back_ticks] = ACTIONS(2133), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2133), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2133), - [anon_sym_err_GT] = ACTIONS(2131), - [anon_sym_out_GT] = ACTIONS(2131), - [anon_sym_e_GT] = ACTIONS(2131), - [anon_sym_o_GT] = ACTIONS(2131), - [anon_sym_err_PLUSout_GT] = ACTIONS(2131), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2131), - [anon_sym_o_PLUSe_GT] = ACTIONS(2131), - [anon_sym_e_PLUSo_GT] = ACTIONS(2131), - [anon_sym_err_GT_GT] = ACTIONS(2131), - [anon_sym_out_GT_GT] = ACTIONS(2131), - [anon_sym_e_GT_GT] = ACTIONS(2131), - [anon_sym_o_GT_GT] = ACTIONS(2131), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2131), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2131), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2131), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2131), - [aux_sym_unquoted_token1] = ACTIONS(2131), - [aux_sym_unquoted_token4] = ACTIONS(2131), - [anon_sym_POUND] = ACTIONS(3), - }, - [1619] = { - [sym__expr_parenthesized_immediate] = STATE(7887), - [sym_comment] = STATE(1619), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [anon_sym_null] = ACTIONS(3205), - [aux_sym_cmd_identifier_token38] = ACTIONS(3205), - [aux_sym_cmd_identifier_token39] = ACTIONS(3205), - [aux_sym_cmd_identifier_token40] = ACTIONS(3205), - [sym__newline] = ACTIONS(3205), - [anon_sym_SEMI] = ACTIONS(3205), - [anon_sym_PIPE] = ACTIONS(3205), - [anon_sym_err_GT_PIPE] = ACTIONS(3205), - [anon_sym_out_GT_PIPE] = ACTIONS(3205), - [anon_sym_e_GT_PIPE] = ACTIONS(3205), - [anon_sym_o_GT_PIPE] = ACTIONS(3205), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3205), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3205), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3205), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3205), - [anon_sym_LBRACK] = ACTIONS(3205), - [anon_sym_LPAREN] = ACTIONS(3207), - [anon_sym_RPAREN] = ACTIONS(3205), - [anon_sym_DOLLAR] = ACTIONS(3207), - [anon_sym_DASH_DASH] = ACTIONS(3205), - [anon_sym_DASH] = ACTIONS(3207), - [aux_sym_ctrl_match_token1] = ACTIONS(3205), - [anon_sym_RBRACE] = ACTIONS(3205), - [anon_sym_DOT_DOT] = ACTIONS(3207), - [anon_sym_LPAREN2] = ACTIONS(2947), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3205), - [anon_sym_DOT_DOT_LT] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3205), - [aux_sym__val_number_decimal_token4] = ACTIONS(3205), - [aux_sym__val_number_token1] = ACTIONS(3205), - [aux_sym__val_number_token2] = ACTIONS(3205), - [aux_sym__val_number_token3] = ACTIONS(3205), - [anon_sym_0b] = ACTIONS(3207), - [anon_sym_0o] = ACTIONS(3207), - [anon_sym_0x] = ACTIONS(3207), - [sym_val_date] = ACTIONS(3205), - [anon_sym_DQUOTE] = ACTIONS(3205), - [sym__str_single_quotes] = ACTIONS(3205), - [sym__str_back_ticks] = ACTIONS(3205), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3205), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3205), - [anon_sym_err_GT] = ACTIONS(3207), - [anon_sym_out_GT] = ACTIONS(3207), - [anon_sym_e_GT] = ACTIONS(3207), - [anon_sym_o_GT] = ACTIONS(3207), - [anon_sym_err_PLUSout_GT] = ACTIONS(3207), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3207), - [anon_sym_o_PLUSe_GT] = ACTIONS(3207), - [anon_sym_e_PLUSo_GT] = ACTIONS(3207), - [anon_sym_err_GT_GT] = ACTIONS(3205), - [anon_sym_out_GT_GT] = ACTIONS(3205), - [anon_sym_e_GT_GT] = ACTIONS(3205), - [anon_sym_o_GT_GT] = ACTIONS(3205), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3205), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3205), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3205), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3205), - [aux_sym_unquoted_token1] = ACTIONS(3207), - [anon_sym_POUND] = ACTIONS(247), - }, - [1620] = { - [sym_comment] = STATE(1620), - [anon_sym_true] = ACTIONS(978), - [anon_sym_false] = ACTIONS(978), - [anon_sym_null] = ACTIONS(978), - [aux_sym_cmd_identifier_token38] = ACTIONS(978), - [aux_sym_cmd_identifier_token39] = ACTIONS(978), - [aux_sym_cmd_identifier_token40] = ACTIONS(978), - [sym__newline] = ACTIONS(978), - [anon_sym_SEMI] = ACTIONS(978), - [anon_sym_PIPE] = ACTIONS(978), - [anon_sym_err_GT_PIPE] = ACTIONS(978), - [anon_sym_out_GT_PIPE] = ACTIONS(978), - [anon_sym_e_GT_PIPE] = ACTIONS(978), - [anon_sym_o_GT_PIPE] = ACTIONS(978), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(978), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(978), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(978), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(978), - [anon_sym_LBRACK] = ACTIONS(978), - [anon_sym_LPAREN] = ACTIONS(978), - [anon_sym_RPAREN] = ACTIONS(978), - [anon_sym_DOLLAR] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(976), - [aux_sym_ctrl_match_token1] = ACTIONS(978), - [anon_sym_RBRACE] = ACTIONS(978), - [anon_sym_DOT_DOT] = ACTIONS(976), - [anon_sym_QMARK2] = ACTIONS(978), - [anon_sym_DOT] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ] = ACTIONS(978), - [anon_sym_DOT_DOT_LT] = ACTIONS(978), - [aux_sym__val_number_decimal_token1] = ACTIONS(976), - [aux_sym__val_number_decimal_token2] = ACTIONS(978), - [aux_sym__val_number_decimal_token3] = ACTIONS(978), - [aux_sym__val_number_decimal_token4] = ACTIONS(978), - [aux_sym__val_number_token1] = ACTIONS(978), - [aux_sym__val_number_token2] = ACTIONS(978), - [aux_sym__val_number_token3] = ACTIONS(978), - [anon_sym_0b] = ACTIONS(976), - [anon_sym_0o] = ACTIONS(976), - [anon_sym_0x] = ACTIONS(976), - [sym_val_date] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(978), - [sym__str_single_quotes] = ACTIONS(978), - [sym__str_back_ticks] = ACTIONS(978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(978), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(978), - [anon_sym_err_GT] = ACTIONS(976), - [anon_sym_out_GT] = ACTIONS(976), - [anon_sym_e_GT] = ACTIONS(976), - [anon_sym_o_GT] = ACTIONS(976), - [anon_sym_err_PLUSout_GT] = ACTIONS(976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(976), - [anon_sym_o_PLUSe_GT] = ACTIONS(976), - [anon_sym_e_PLUSo_GT] = ACTIONS(976), - [anon_sym_err_GT_GT] = ACTIONS(978), - [anon_sym_out_GT_GT] = ACTIONS(978), - [anon_sym_e_GT_GT] = ACTIONS(978), - [anon_sym_o_GT_GT] = ACTIONS(978), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(978), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(978), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(978), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(978), - [aux_sym_unquoted_token1] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(247), - }, - [1621] = { - [sym_comment] = STATE(1621), - [ts_builtin_sym_end] = ACTIONS(1483), - [sym__newline] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_err_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_GT_PIPE] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), - [anon_sym_LPAREN2] = ACTIONS(1483), - [aux_sym_expr_binary_token1] = ACTIONS(1483), - [aux_sym_expr_binary_token2] = ACTIONS(1483), - [aux_sym_expr_binary_token3] = ACTIONS(1483), - [aux_sym_expr_binary_token4] = ACTIONS(1483), - [aux_sym_expr_binary_token5] = ACTIONS(1483), - [aux_sym_expr_binary_token6] = ACTIONS(1483), - [aux_sym_expr_binary_token7] = ACTIONS(1483), - [aux_sym_expr_binary_token8] = ACTIONS(1483), - [aux_sym_expr_binary_token9] = ACTIONS(1483), - [aux_sym_expr_binary_token10] = ACTIONS(1483), - [aux_sym_expr_binary_token11] = ACTIONS(1483), - [aux_sym_expr_binary_token12] = ACTIONS(1483), - [aux_sym_expr_binary_token13] = ACTIONS(1483), - [aux_sym_expr_binary_token14] = ACTIONS(1483), - [aux_sym_expr_binary_token15] = ACTIONS(1483), - [aux_sym_expr_binary_token16] = ACTIONS(1483), - [aux_sym_expr_binary_token17] = ACTIONS(1483), - [aux_sym_expr_binary_token18] = ACTIONS(1483), - [aux_sym_expr_binary_token19] = ACTIONS(1483), - [aux_sym_expr_binary_token20] = ACTIONS(1483), - [aux_sym_expr_binary_token21] = ACTIONS(1483), - [aux_sym_expr_binary_token22] = ACTIONS(1483), - [aux_sym_expr_binary_token23] = ACTIONS(1483), - [aux_sym_expr_binary_token24] = ACTIONS(1483), - [aux_sym_expr_binary_token25] = ACTIONS(1483), - [aux_sym_expr_binary_token26] = ACTIONS(1483), - [aux_sym_expr_binary_token27] = ACTIONS(1483), - [aux_sym_expr_binary_token28] = ACTIONS(1483), - [anon_sym_DOT_DOT2] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), - [sym_filesize_unit] = ACTIONS(1483), - [sym_duration_unit] = ACTIONS(1483), - [anon_sym_err_GT] = ACTIONS(1481), - [anon_sym_out_GT] = ACTIONS(1481), - [anon_sym_e_GT] = ACTIONS(1481), - [anon_sym_o_GT] = ACTIONS(1481), - [anon_sym_err_PLUSout_GT] = ACTIONS(1481), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), - [anon_sym_o_PLUSe_GT] = ACTIONS(1481), - [anon_sym_e_PLUSo_GT] = ACTIONS(1481), - [anon_sym_err_GT_GT] = ACTIONS(1483), - [anon_sym_out_GT_GT] = ACTIONS(1483), - [anon_sym_e_GT_GT] = ACTIONS(1483), - [anon_sym_o_GT_GT] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), - [aux_sym_unquoted_token2] = ACTIONS(1481), - [anon_sym_POUND] = ACTIONS(247), - }, - [1622] = { - [sym_comment] = STATE(1622), - [anon_sym_true] = ACTIONS(964), - [anon_sym_false] = ACTIONS(964), - [anon_sym_null] = ACTIONS(964), - [aux_sym_cmd_identifier_token38] = ACTIONS(964), - [aux_sym_cmd_identifier_token39] = ACTIONS(964), - [aux_sym_cmd_identifier_token40] = ACTIONS(964), - [sym__newline] = ACTIONS(964), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_PIPE] = ACTIONS(964), - [anon_sym_err_GT_PIPE] = ACTIONS(964), - [anon_sym_out_GT_PIPE] = ACTIONS(964), - [anon_sym_e_GT_PIPE] = ACTIONS(964), - [anon_sym_o_GT_PIPE] = ACTIONS(964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(964), - [anon_sym_LBRACK] = ACTIONS(964), - [anon_sym_LPAREN] = ACTIONS(964), - [anon_sym_RPAREN] = ACTIONS(964), - [anon_sym_DOLLAR] = ACTIONS(962), - [anon_sym_DASH_DASH] = ACTIONS(964), - [anon_sym_DASH] = ACTIONS(962), - [aux_sym_ctrl_match_token1] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_DOT_DOT] = ACTIONS(962), - [anon_sym_QMARK2] = ACTIONS(964), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_DOT_DOT_EQ] = ACTIONS(964), - [anon_sym_DOT_DOT_LT] = ACTIONS(964), - [aux_sym__val_number_decimal_token1] = ACTIONS(962), - [aux_sym__val_number_decimal_token2] = ACTIONS(964), - [aux_sym__val_number_decimal_token3] = ACTIONS(964), - [aux_sym__val_number_decimal_token4] = ACTIONS(964), - [aux_sym__val_number_token1] = ACTIONS(964), - [aux_sym__val_number_token2] = ACTIONS(964), - [aux_sym__val_number_token3] = ACTIONS(964), - [anon_sym_0b] = ACTIONS(962), - [anon_sym_0o] = ACTIONS(962), - [anon_sym_0x] = ACTIONS(962), - [sym_val_date] = ACTIONS(964), - [anon_sym_DQUOTE] = ACTIONS(964), - [sym__str_single_quotes] = ACTIONS(964), - [sym__str_back_ticks] = ACTIONS(964), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(964), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(964), - [anon_sym_err_GT] = ACTIONS(962), - [anon_sym_out_GT] = ACTIONS(962), - [anon_sym_e_GT] = ACTIONS(962), - [anon_sym_o_GT] = ACTIONS(962), - [anon_sym_err_PLUSout_GT] = ACTIONS(962), - [anon_sym_out_PLUSerr_GT] = ACTIONS(962), - [anon_sym_o_PLUSe_GT] = ACTIONS(962), - [anon_sym_e_PLUSo_GT] = ACTIONS(962), - [anon_sym_err_GT_GT] = ACTIONS(964), - [anon_sym_out_GT_GT] = ACTIONS(964), - [anon_sym_e_GT_GT] = ACTIONS(964), - [anon_sym_o_GT_GT] = ACTIONS(964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(964), - [aux_sym_unquoted_token1] = ACTIONS(962), - [anon_sym_POUND] = ACTIONS(247), - }, - [1623] = { - [sym_comment] = STATE(1623), - [anon_sym_true] = ACTIONS(972), - [anon_sym_false] = ACTIONS(972), - [anon_sym_null] = ACTIONS(972), - [aux_sym_cmd_identifier_token38] = ACTIONS(972), - [aux_sym_cmd_identifier_token39] = ACTIONS(972), - [aux_sym_cmd_identifier_token40] = ACTIONS(972), - [sym__newline] = ACTIONS(972), - [anon_sym_SEMI] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_err_GT_PIPE] = ACTIONS(972), - [anon_sym_out_GT_PIPE] = ACTIONS(972), - [anon_sym_e_GT_PIPE] = ACTIONS(972), - [anon_sym_o_GT_PIPE] = ACTIONS(972), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(972), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(972), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(972), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(972), - [anon_sym_DOLLAR] = ACTIONS(970), - [anon_sym_DASH_DASH] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(970), - [aux_sym_ctrl_match_token1] = ACTIONS(972), - [anon_sym_RBRACE] = ACTIONS(972), - [anon_sym_DOT_DOT] = ACTIONS(970), - [anon_sym_QMARK2] = ACTIONS(4958), - [anon_sym_DOT] = ACTIONS(970), - [anon_sym_DOT_DOT_EQ] = ACTIONS(972), - [anon_sym_DOT_DOT_LT] = ACTIONS(972), - [aux_sym__val_number_decimal_token1] = ACTIONS(970), - [aux_sym__val_number_decimal_token2] = ACTIONS(972), - [aux_sym__val_number_decimal_token3] = ACTIONS(972), - [aux_sym__val_number_decimal_token4] = ACTIONS(972), - [aux_sym__val_number_token1] = ACTIONS(972), - [aux_sym__val_number_token2] = ACTIONS(972), - [aux_sym__val_number_token3] = ACTIONS(972), - [anon_sym_0b] = ACTIONS(970), - [anon_sym_0o] = ACTIONS(970), - [anon_sym_0x] = ACTIONS(970), - [sym_val_date] = ACTIONS(972), - [anon_sym_DQUOTE] = ACTIONS(972), - [sym__str_single_quotes] = ACTIONS(972), - [sym__str_back_ticks] = ACTIONS(972), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(972), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(972), - [anon_sym_err_GT] = ACTIONS(970), - [anon_sym_out_GT] = ACTIONS(970), - [anon_sym_e_GT] = ACTIONS(970), - [anon_sym_o_GT] = ACTIONS(970), - [anon_sym_err_PLUSout_GT] = ACTIONS(970), - [anon_sym_out_PLUSerr_GT] = ACTIONS(970), - [anon_sym_o_PLUSe_GT] = ACTIONS(970), - [anon_sym_e_PLUSo_GT] = ACTIONS(970), - [anon_sym_err_GT_GT] = ACTIONS(972), - [anon_sym_out_GT_GT] = ACTIONS(972), - [anon_sym_e_GT_GT] = ACTIONS(972), - [anon_sym_o_GT_GT] = ACTIONS(972), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(972), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(972), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(972), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(972), - [aux_sym_unquoted_token1] = ACTIONS(970), - [anon_sym_POUND] = ACTIONS(247), - }, - [1624] = { - [sym_comment] = STATE(1624), - [anon_sym_true] = ACTIONS(982), - [anon_sym_false] = ACTIONS(982), - [anon_sym_null] = ACTIONS(982), - [aux_sym_cmd_identifier_token38] = ACTIONS(982), - [aux_sym_cmd_identifier_token39] = ACTIONS(982), - [aux_sym_cmd_identifier_token40] = ACTIONS(982), - [sym__newline] = ACTIONS(982), - [anon_sym_SEMI] = ACTIONS(982), - [anon_sym_PIPE] = ACTIONS(982), - [anon_sym_err_GT_PIPE] = ACTIONS(982), - [anon_sym_out_GT_PIPE] = ACTIONS(982), - [anon_sym_e_GT_PIPE] = ACTIONS(982), - [anon_sym_o_GT_PIPE] = ACTIONS(982), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(982), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(982), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(982), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(982), - [anon_sym_LBRACK] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(982), - [anon_sym_RPAREN] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(980), - [anon_sym_DASH_DASH] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(980), - [aux_sym_ctrl_match_token1] = ACTIONS(982), - [anon_sym_RBRACE] = ACTIONS(982), - [anon_sym_DOT_DOT] = ACTIONS(980), - [anon_sym_QMARK2] = ACTIONS(4960), - [anon_sym_DOT] = ACTIONS(980), - [anon_sym_DOT_DOT_EQ] = ACTIONS(982), - [anon_sym_DOT_DOT_LT] = ACTIONS(982), - [aux_sym__val_number_decimal_token1] = ACTIONS(980), - [aux_sym__val_number_decimal_token2] = ACTIONS(982), - [aux_sym__val_number_decimal_token3] = ACTIONS(982), - [aux_sym__val_number_decimal_token4] = ACTIONS(982), - [aux_sym__val_number_token1] = ACTIONS(982), - [aux_sym__val_number_token2] = ACTIONS(982), - [aux_sym__val_number_token3] = ACTIONS(982), - [anon_sym_0b] = ACTIONS(980), - [anon_sym_0o] = ACTIONS(980), - [anon_sym_0x] = ACTIONS(980), - [sym_val_date] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(982), - [sym__str_single_quotes] = ACTIONS(982), - [sym__str_back_ticks] = ACTIONS(982), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(982), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(982), - [anon_sym_err_GT] = ACTIONS(980), - [anon_sym_out_GT] = ACTIONS(980), - [anon_sym_e_GT] = ACTIONS(980), - [anon_sym_o_GT] = ACTIONS(980), - [anon_sym_err_PLUSout_GT] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT] = ACTIONS(980), - [anon_sym_o_PLUSe_GT] = ACTIONS(980), - [anon_sym_e_PLUSo_GT] = ACTIONS(980), - [anon_sym_err_GT_GT] = ACTIONS(982), - [anon_sym_out_GT_GT] = ACTIONS(982), - [anon_sym_e_GT_GT] = ACTIONS(982), - [anon_sym_o_GT_GT] = ACTIONS(982), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(982), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(982), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(982), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(982), - [aux_sym_unquoted_token1] = ACTIONS(980), - [anon_sym_POUND] = ACTIONS(247), - }, - [1625] = { - [sym_comment] = STATE(1625), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_RPAREN] = ACTIONS(996), - [anon_sym_COMMA] = ACTIONS(996), - [anon_sym_DASH_DASH] = ACTIONS(996), - [anon_sym_DASH] = ACTIONS(994), - [aux_sym_ctrl_match_token1] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_EQ_GT] = ACTIONS(996), - [aux_sym_expr_binary_token1] = ACTIONS(996), - [aux_sym_expr_binary_token2] = ACTIONS(996), - [aux_sym_expr_binary_token3] = ACTIONS(996), - [aux_sym_expr_binary_token4] = ACTIONS(996), - [aux_sym_expr_binary_token5] = ACTIONS(996), - [aux_sym_expr_binary_token6] = ACTIONS(996), - [aux_sym_expr_binary_token7] = ACTIONS(996), - [aux_sym_expr_binary_token8] = ACTIONS(996), - [aux_sym_expr_binary_token9] = ACTIONS(996), - [aux_sym_expr_binary_token10] = ACTIONS(996), - [aux_sym_expr_binary_token11] = ACTIONS(996), - [aux_sym_expr_binary_token12] = ACTIONS(996), - [aux_sym_expr_binary_token13] = ACTIONS(996), - [aux_sym_expr_binary_token14] = ACTIONS(996), - [aux_sym_expr_binary_token15] = ACTIONS(996), - [aux_sym_expr_binary_token16] = ACTIONS(996), - [aux_sym_expr_binary_token17] = ACTIONS(996), - [aux_sym_expr_binary_token18] = ACTIONS(996), - [aux_sym_expr_binary_token19] = ACTIONS(996), - [aux_sym_expr_binary_token20] = ACTIONS(996), - [aux_sym_expr_binary_token21] = ACTIONS(996), - [aux_sym_expr_binary_token22] = ACTIONS(996), - [aux_sym_expr_binary_token23] = ACTIONS(996), - [aux_sym_expr_binary_token24] = ACTIONS(996), - [aux_sym_expr_binary_token25] = ACTIONS(996), - [aux_sym_expr_binary_token26] = ACTIONS(996), - [aux_sym_expr_binary_token27] = ACTIONS(996), - [aux_sym_expr_binary_token28] = ACTIONS(996), - [anon_sym_DOT] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(994), - [anon_sym_out_GT] = ACTIONS(994), - [anon_sym_e_GT] = ACTIONS(994), - [anon_sym_o_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT] = ACTIONS(994), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(247), - }, - [1626] = { - [sym__expr_parenthesized_immediate] = STATE(7887), - [sym_comment] = STATE(1626), - [anon_sym_true] = ACTIONS(3209), - [anon_sym_false] = ACTIONS(3209), - [anon_sym_null] = ACTIONS(3209), - [aux_sym_cmd_identifier_token38] = ACTIONS(3209), - [aux_sym_cmd_identifier_token39] = ACTIONS(3209), - [aux_sym_cmd_identifier_token40] = ACTIONS(3209), - [sym__newline] = ACTIONS(3209), - [anon_sym_SEMI] = ACTIONS(3209), - [anon_sym_PIPE] = ACTIONS(3209), - [anon_sym_err_GT_PIPE] = ACTIONS(3209), - [anon_sym_out_GT_PIPE] = ACTIONS(3209), - [anon_sym_e_GT_PIPE] = ACTIONS(3209), - [anon_sym_o_GT_PIPE] = ACTIONS(3209), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3209), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3209), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3209), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3209), - [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_LPAREN] = ACTIONS(3211), - [anon_sym_RPAREN] = ACTIONS(3209), - [anon_sym_DOLLAR] = ACTIONS(3211), - [anon_sym_DASH_DASH] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3211), - [aux_sym_ctrl_match_token1] = ACTIONS(3209), - [anon_sym_RBRACE] = ACTIONS(3209), - [anon_sym_DOT_DOT] = ACTIONS(3211), - [anon_sym_LPAREN2] = ACTIONS(2947), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3209), - [anon_sym_DOT_DOT_LT] = ACTIONS(3209), - [aux_sym__val_number_decimal_token1] = ACTIONS(3211), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3209), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(3209), - [aux_sym__val_number_token2] = ACTIONS(3209), - [aux_sym__val_number_token3] = ACTIONS(3209), - [anon_sym_0b] = ACTIONS(3211), - [anon_sym_0o] = ACTIONS(3211), - [anon_sym_0x] = ACTIONS(3211), - [sym_val_date] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(3209), - [sym__str_single_quotes] = ACTIONS(3209), - [sym__str_back_ticks] = ACTIONS(3209), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3209), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3209), - [anon_sym_err_GT] = ACTIONS(3211), - [anon_sym_out_GT] = ACTIONS(3211), - [anon_sym_e_GT] = ACTIONS(3211), - [anon_sym_o_GT] = ACTIONS(3211), - [anon_sym_err_PLUSout_GT] = ACTIONS(3211), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3211), - [anon_sym_o_PLUSe_GT] = ACTIONS(3211), - [anon_sym_e_PLUSo_GT] = ACTIONS(3211), - [anon_sym_err_GT_GT] = ACTIONS(3209), - [anon_sym_out_GT_GT] = ACTIONS(3209), - [anon_sym_e_GT_GT] = ACTIONS(3209), - [anon_sym_o_GT_GT] = ACTIONS(3209), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3209), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3209), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3209), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3209), - [aux_sym_unquoted_token1] = ACTIONS(3211), - [anon_sym_POUND] = ACTIONS(247), - }, - [1627] = { - [sym_comment] = STATE(1627), - [ts_builtin_sym_end] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1023), - [anon_sym_false] = ACTIONS(1023), - [anon_sym_null] = ACTIONS(1023), - [aux_sym_cmd_identifier_token38] = ACTIONS(1023), - [aux_sym_cmd_identifier_token39] = ACTIONS(1023), - [aux_sym_cmd_identifier_token40] = ACTIONS(1023), - [sym__newline] = ACTIONS(1023), - [anon_sym_SEMI] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(1023), - [anon_sym_err_GT_PIPE] = ACTIONS(1023), - [anon_sym_out_GT_PIPE] = ACTIONS(1023), - [anon_sym_e_GT_PIPE] = ACTIONS(1023), - [anon_sym_o_GT_PIPE] = ACTIONS(1023), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1023), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1023), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1023), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1023), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_LPAREN] = ACTIONS(1023), - [anon_sym_DOLLAR] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [anon_sym_DASH] = ACTIONS(1021), - [aux_sym_ctrl_match_token1] = ACTIONS(1023), - [anon_sym_DOT_DOT] = ACTIONS(1021), - [anon_sym_DOT_DOT2] = ACTIONS(1021), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1021), - [anon_sym_DOT_DOT_LT] = ACTIONS(1021), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), - [aux_sym__val_number_decimal_token1] = ACTIONS(1021), - [aux_sym__val_number_decimal_token2] = ACTIONS(1023), - [aux_sym__val_number_decimal_token3] = ACTIONS(1023), - [aux_sym__val_number_decimal_token4] = ACTIONS(1023), - [aux_sym__val_number_token1] = ACTIONS(1023), - [aux_sym__val_number_token2] = ACTIONS(1023), - [aux_sym__val_number_token3] = ACTIONS(1023), - [anon_sym_0b] = ACTIONS(1021), - [anon_sym_0o] = ACTIONS(1021), - [anon_sym_0x] = ACTIONS(1021), - [sym_val_date] = ACTIONS(1023), - [anon_sym_DQUOTE] = ACTIONS(1023), - [sym__str_single_quotes] = ACTIONS(1023), - [sym__str_back_ticks] = ACTIONS(1023), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1023), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1023), - [anon_sym_err_GT] = ACTIONS(1021), - [anon_sym_out_GT] = ACTIONS(1021), - [anon_sym_e_GT] = ACTIONS(1021), - [anon_sym_o_GT] = ACTIONS(1021), - [anon_sym_err_PLUSout_GT] = ACTIONS(1021), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), - [anon_sym_o_PLUSe_GT] = ACTIONS(1021), - [anon_sym_e_PLUSo_GT] = ACTIONS(1021), - [anon_sym_err_GT_GT] = ACTIONS(1023), - [anon_sym_out_GT_GT] = ACTIONS(1023), - [anon_sym_e_GT_GT] = ACTIONS(1023), - [anon_sym_o_GT_GT] = ACTIONS(1023), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), - [aux_sym_unquoted_token1] = ACTIONS(1021), - [anon_sym_POUND] = ACTIONS(247), - }, - [1628] = { - [sym__expr_parenthesized_immediate] = STATE(7887), - [sym_comment] = STATE(1628), - [anon_sym_true] = ACTIONS(3259), - [anon_sym_false] = ACTIONS(3259), - [anon_sym_null] = ACTIONS(3259), - [aux_sym_cmd_identifier_token38] = ACTIONS(3259), - [aux_sym_cmd_identifier_token39] = ACTIONS(3259), - [aux_sym_cmd_identifier_token40] = ACTIONS(3259), - [sym__newline] = ACTIONS(3259), - [anon_sym_SEMI] = ACTIONS(3259), - [anon_sym_PIPE] = ACTIONS(3259), - [anon_sym_err_GT_PIPE] = ACTIONS(3259), - [anon_sym_out_GT_PIPE] = ACTIONS(3259), - [anon_sym_e_GT_PIPE] = ACTIONS(3259), - [anon_sym_o_GT_PIPE] = ACTIONS(3259), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3259), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3259), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3259), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3259), - [anon_sym_LBRACK] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3261), - [anon_sym_RPAREN] = ACTIONS(3259), - [anon_sym_DOLLAR] = ACTIONS(3261), - [anon_sym_DASH_DASH] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3261), - [aux_sym_ctrl_match_token1] = ACTIONS(3259), - [anon_sym_RBRACE] = ACTIONS(3259), - [anon_sym_DOT_DOT] = ACTIONS(3261), - [anon_sym_LPAREN2] = ACTIONS(2947), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3259), - [anon_sym_DOT_DOT_LT] = ACTIONS(3259), - [aux_sym__val_number_decimal_token1] = ACTIONS(3261), - [aux_sym__val_number_decimal_token2] = ACTIONS(3259), - [aux_sym__val_number_decimal_token3] = ACTIONS(3259), - [aux_sym__val_number_decimal_token4] = ACTIONS(3259), - [aux_sym__val_number_token1] = ACTIONS(3259), - [aux_sym__val_number_token2] = ACTIONS(3259), - [aux_sym__val_number_token3] = ACTIONS(3259), - [anon_sym_0b] = ACTIONS(3261), - [anon_sym_0o] = ACTIONS(3261), - [anon_sym_0x] = ACTIONS(3261), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(3259), - [sym__str_single_quotes] = ACTIONS(3259), - [sym__str_back_ticks] = ACTIONS(3259), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3259), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3259), - [anon_sym_err_GT] = ACTIONS(3261), - [anon_sym_out_GT] = ACTIONS(3261), - [anon_sym_e_GT] = ACTIONS(3261), - [anon_sym_o_GT] = ACTIONS(3261), - [anon_sym_err_PLUSout_GT] = ACTIONS(3261), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3261), - [anon_sym_o_PLUSe_GT] = ACTIONS(3261), - [anon_sym_e_PLUSo_GT] = ACTIONS(3261), - [anon_sym_err_GT_GT] = ACTIONS(3259), - [anon_sym_out_GT_GT] = ACTIONS(3259), - [anon_sym_e_GT_GT] = ACTIONS(3259), - [anon_sym_o_GT_GT] = ACTIONS(3259), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3259), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3259), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3259), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3259), - [aux_sym_unquoted_token1] = ACTIONS(3261), - [anon_sym_POUND] = ACTIONS(247), - }, - [1629] = { - [sym_comment] = STATE(1629), - [ts_builtin_sym_end] = ACTIONS(1521), - [sym__newline] = ACTIONS(1521), - [anon_sym_SEMI] = ACTIONS(1521), - [anon_sym_PIPE] = ACTIONS(1521), - [anon_sym_err_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_GT_PIPE] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), - [anon_sym_LPAREN2] = ACTIONS(1521), - [aux_sym_expr_binary_token1] = ACTIONS(1521), - [aux_sym_expr_binary_token2] = ACTIONS(1521), - [aux_sym_expr_binary_token3] = ACTIONS(1521), - [aux_sym_expr_binary_token4] = ACTIONS(1521), - [aux_sym_expr_binary_token5] = ACTIONS(1521), - [aux_sym_expr_binary_token6] = ACTIONS(1521), - [aux_sym_expr_binary_token7] = ACTIONS(1521), - [aux_sym_expr_binary_token8] = ACTIONS(1521), - [aux_sym_expr_binary_token9] = ACTIONS(1521), - [aux_sym_expr_binary_token10] = ACTIONS(1521), - [aux_sym_expr_binary_token11] = ACTIONS(1521), - [aux_sym_expr_binary_token12] = ACTIONS(1521), - [aux_sym_expr_binary_token13] = ACTIONS(1521), - [aux_sym_expr_binary_token14] = ACTIONS(1521), - [aux_sym_expr_binary_token15] = ACTIONS(1521), - [aux_sym_expr_binary_token16] = ACTIONS(1521), - [aux_sym_expr_binary_token17] = ACTIONS(1521), - [aux_sym_expr_binary_token18] = ACTIONS(1521), - [aux_sym_expr_binary_token19] = ACTIONS(1521), - [aux_sym_expr_binary_token20] = ACTIONS(1521), - [aux_sym_expr_binary_token21] = ACTIONS(1521), - [aux_sym_expr_binary_token22] = ACTIONS(1521), - [aux_sym_expr_binary_token23] = ACTIONS(1521), - [aux_sym_expr_binary_token24] = ACTIONS(1521), - [aux_sym_expr_binary_token25] = ACTIONS(1521), - [aux_sym_expr_binary_token26] = ACTIONS(1521), - [aux_sym_expr_binary_token27] = ACTIONS(1521), - [aux_sym_expr_binary_token28] = ACTIONS(1521), - [anon_sym_DOT_DOT2] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), - [sym_filesize_unit] = ACTIONS(1521), - [sym_duration_unit] = ACTIONS(1521), - [anon_sym_err_GT] = ACTIONS(1519), - [anon_sym_out_GT] = ACTIONS(1519), - [anon_sym_e_GT] = ACTIONS(1519), - [anon_sym_o_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT] = ACTIONS(1519), - [anon_sym_err_GT_GT] = ACTIONS(1521), - [anon_sym_out_GT_GT] = ACTIONS(1521), - [anon_sym_e_GT_GT] = ACTIONS(1521), - [anon_sym_o_GT_GT] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), - [aux_sym_unquoted_token2] = ACTIONS(1519), - [anon_sym_POUND] = ACTIONS(247), - }, - [1630] = { - [sym_comment] = STATE(1630), - [ts_builtin_sym_end] = ACTIONS(4877), - [anon_sym_true] = ACTIONS(4877), - [anon_sym_false] = ACTIONS(4877), - [anon_sym_null] = ACTIONS(4877), - [aux_sym_cmd_identifier_token38] = ACTIONS(4877), - [aux_sym_cmd_identifier_token39] = ACTIONS(4877), - [aux_sym_cmd_identifier_token40] = ACTIONS(4877), - [sym__newline] = ACTIONS(4877), - [anon_sym_SEMI] = ACTIONS(4877), - [anon_sym_PIPE] = ACTIONS(4877), - [anon_sym_err_GT_PIPE] = ACTIONS(4877), - [anon_sym_out_GT_PIPE] = ACTIONS(4877), - [anon_sym_e_GT_PIPE] = ACTIONS(4877), - [anon_sym_o_GT_PIPE] = ACTIONS(4877), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4877), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4877), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4877), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4877), - [anon_sym_LBRACK] = ACTIONS(4877), - [anon_sym_LPAREN] = ACTIONS(4877), - [anon_sym_DOLLAR] = ACTIONS(4879), - [anon_sym_DASH_DASH] = ACTIONS(4877), - [anon_sym_DASH] = ACTIONS(4879), - [aux_sym_ctrl_match_token1] = ACTIONS(4877), - [anon_sym_DOT_DOT] = ACTIONS(4879), - [anon_sym_DOT_DOT2] = ACTIONS(4926), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4879), - [anon_sym_DOT_DOT_LT] = ACTIONS(4879), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4928), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4928), - [aux_sym__val_number_decimal_token1] = ACTIONS(4879), - [aux_sym__val_number_decimal_token2] = ACTIONS(4877), - [aux_sym__val_number_decimal_token3] = ACTIONS(4877), - [aux_sym__val_number_decimal_token4] = ACTIONS(4877), - [aux_sym__val_number_token1] = ACTIONS(4877), - [aux_sym__val_number_token2] = ACTIONS(4877), - [aux_sym__val_number_token3] = ACTIONS(4877), - [anon_sym_0b] = ACTIONS(4879), - [anon_sym_0o] = ACTIONS(4879), - [anon_sym_0x] = ACTIONS(4879), - [sym_val_date] = ACTIONS(4877), - [anon_sym_DQUOTE] = ACTIONS(4877), - [sym__str_single_quotes] = ACTIONS(4877), - [sym__str_back_ticks] = ACTIONS(4877), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4877), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4877), - [anon_sym_err_GT] = ACTIONS(4879), - [anon_sym_out_GT] = ACTIONS(4879), - [anon_sym_e_GT] = ACTIONS(4879), - [anon_sym_o_GT] = ACTIONS(4879), - [anon_sym_err_PLUSout_GT] = ACTIONS(4879), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4879), - [anon_sym_o_PLUSe_GT] = ACTIONS(4879), - [anon_sym_e_PLUSo_GT] = ACTIONS(4879), - [anon_sym_err_GT_GT] = ACTIONS(4877), - [anon_sym_out_GT_GT] = ACTIONS(4877), - [anon_sym_e_GT_GT] = ACTIONS(4877), - [anon_sym_o_GT_GT] = ACTIONS(4877), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4877), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4877), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4877), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4877), - [aux_sym_unquoted_token1] = ACTIONS(4879), - [anon_sym_POUND] = ACTIONS(247), - }, - [1631] = { - [sym_comment] = STATE(1631), - [ts_builtin_sym_end] = ACTIONS(1475), - [aux_sym_cmd_identifier_token41] = ACTIONS(1473), - [sym__newline] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_err_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_GT_PIPE] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), - [aux_sym_expr_binary_token1] = ACTIONS(1475), - [aux_sym_expr_binary_token2] = ACTIONS(1475), - [aux_sym_expr_binary_token3] = ACTIONS(1475), - [aux_sym_expr_binary_token4] = ACTIONS(1475), - [aux_sym_expr_binary_token5] = ACTIONS(1475), - [aux_sym_expr_binary_token6] = ACTIONS(1475), - [aux_sym_expr_binary_token7] = ACTIONS(1475), - [aux_sym_expr_binary_token8] = ACTIONS(1475), - [aux_sym_expr_binary_token9] = ACTIONS(1475), - [aux_sym_expr_binary_token10] = ACTIONS(1475), - [aux_sym_expr_binary_token11] = ACTIONS(1475), - [aux_sym_expr_binary_token12] = ACTIONS(1475), - [aux_sym_expr_binary_token13] = ACTIONS(1475), - [aux_sym_expr_binary_token14] = ACTIONS(1475), - [aux_sym_expr_binary_token15] = ACTIONS(1475), - [aux_sym_expr_binary_token16] = ACTIONS(1475), - [aux_sym_expr_binary_token17] = ACTIONS(1475), - [aux_sym_expr_binary_token18] = ACTIONS(1475), - [aux_sym_expr_binary_token19] = ACTIONS(1475), - [aux_sym_expr_binary_token20] = ACTIONS(1475), - [aux_sym_expr_binary_token21] = ACTIONS(1475), - [aux_sym_expr_binary_token22] = ACTIONS(1475), - [aux_sym_expr_binary_token23] = ACTIONS(1475), - [aux_sym_expr_binary_token24] = ACTIONS(1475), - [aux_sym_expr_binary_token25] = ACTIONS(1475), - [aux_sym_expr_binary_token26] = ACTIONS(1475), - [aux_sym_expr_binary_token27] = ACTIONS(1475), - [aux_sym_expr_binary_token28] = ACTIONS(1475), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [aux_sym__immediate_decimal_token2] = ACTIONS(4905), - [sym_filesize_unit] = ACTIONS(1475), - [sym_duration_unit] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1473), - [anon_sym_out_GT] = ACTIONS(1473), - [anon_sym_e_GT] = ACTIONS(1473), - [anon_sym_o_GT] = ACTIONS(1473), - [anon_sym_err_PLUSout_GT] = ACTIONS(1473), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), - [anon_sym_o_PLUSe_GT] = ACTIONS(1473), - [anon_sym_e_PLUSo_GT] = ACTIONS(1473), - [anon_sym_err_GT_GT] = ACTIONS(1475), - [anon_sym_out_GT_GT] = ACTIONS(1475), - [anon_sym_e_GT_GT] = ACTIONS(1475), - [anon_sym_o_GT_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), - [anon_sym_POUND] = ACTIONS(247), - }, - [1632] = { - [sym__expr_parenthesized_immediate] = STATE(7887), - [sym_comment] = STATE(1632), - [anon_sym_true] = ACTIONS(3263), - [anon_sym_false] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3263), - [aux_sym_cmd_identifier_token38] = ACTIONS(3263), - [aux_sym_cmd_identifier_token39] = ACTIONS(3263), - [aux_sym_cmd_identifier_token40] = ACTIONS(3263), - [sym__newline] = ACTIONS(3263), - [anon_sym_SEMI] = ACTIONS(3263), - [anon_sym_PIPE] = ACTIONS(3263), - [anon_sym_err_GT_PIPE] = ACTIONS(3263), - [anon_sym_out_GT_PIPE] = ACTIONS(3263), - [anon_sym_e_GT_PIPE] = ACTIONS(3263), - [anon_sym_o_GT_PIPE] = ACTIONS(3263), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3263), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3263), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3263), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3263), - [anon_sym_LBRACK] = ACTIONS(3263), - [anon_sym_LPAREN] = ACTIONS(3265), - [anon_sym_RPAREN] = ACTIONS(3263), - [anon_sym_DOLLAR] = ACTIONS(3265), - [anon_sym_DASH_DASH] = ACTIONS(3263), - [anon_sym_DASH] = ACTIONS(3265), - [aux_sym_ctrl_match_token1] = ACTIONS(3263), - [anon_sym_RBRACE] = ACTIONS(3263), - [anon_sym_DOT_DOT] = ACTIONS(3265), - [anon_sym_LPAREN2] = ACTIONS(2947), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [aux_sym__val_number_decimal_token1] = ACTIONS(3265), - [aux_sym__val_number_decimal_token2] = ACTIONS(3263), - [aux_sym__val_number_decimal_token3] = ACTIONS(3263), - [aux_sym__val_number_decimal_token4] = ACTIONS(3263), - [aux_sym__val_number_token1] = ACTIONS(3263), - [aux_sym__val_number_token2] = ACTIONS(3263), - [aux_sym__val_number_token3] = ACTIONS(3263), - [anon_sym_0b] = ACTIONS(3265), - [anon_sym_0o] = ACTIONS(3265), - [anon_sym_0x] = ACTIONS(3265), - [sym_val_date] = ACTIONS(3263), - [anon_sym_DQUOTE] = ACTIONS(3263), - [sym__str_single_quotes] = ACTIONS(3263), - [sym__str_back_ticks] = ACTIONS(3263), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3263), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3263), - [anon_sym_err_GT] = ACTIONS(3265), - [anon_sym_out_GT] = ACTIONS(3265), - [anon_sym_e_GT] = ACTIONS(3265), - [anon_sym_o_GT] = ACTIONS(3265), - [anon_sym_err_PLUSout_GT] = ACTIONS(3265), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3265), - [anon_sym_o_PLUSe_GT] = ACTIONS(3265), - [anon_sym_e_PLUSo_GT] = ACTIONS(3265), - [anon_sym_err_GT_GT] = ACTIONS(3263), - [anon_sym_out_GT_GT] = ACTIONS(3263), - [anon_sym_e_GT_GT] = ACTIONS(3263), - [anon_sym_o_GT_GT] = ACTIONS(3263), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3263), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3263), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3263), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3263), - [aux_sym_unquoted_token1] = ACTIONS(3265), - [anon_sym_POUND] = ACTIONS(247), - }, - [1633] = { - [sym_comment] = STATE(1633), - [aux_sym_cmd_identifier_token41] = ACTIONS(1473), - [sym__newline] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_err_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_GT_PIPE] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), - [anon_sym_RPAREN] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [aux_sym_expr_binary_token1] = ACTIONS(1475), - [aux_sym_expr_binary_token2] = ACTIONS(1475), - [aux_sym_expr_binary_token3] = ACTIONS(1475), - [aux_sym_expr_binary_token4] = ACTIONS(1475), - [aux_sym_expr_binary_token5] = ACTIONS(1475), - [aux_sym_expr_binary_token6] = ACTIONS(1475), - [aux_sym_expr_binary_token7] = ACTIONS(1475), - [aux_sym_expr_binary_token8] = ACTIONS(1475), - [aux_sym_expr_binary_token9] = ACTIONS(1475), - [aux_sym_expr_binary_token10] = ACTIONS(1475), - [aux_sym_expr_binary_token11] = ACTIONS(1475), - [aux_sym_expr_binary_token12] = ACTIONS(1475), - [aux_sym_expr_binary_token13] = ACTIONS(1475), - [aux_sym_expr_binary_token14] = ACTIONS(1475), - [aux_sym_expr_binary_token15] = ACTIONS(1475), - [aux_sym_expr_binary_token16] = ACTIONS(1475), - [aux_sym_expr_binary_token17] = ACTIONS(1475), - [aux_sym_expr_binary_token18] = ACTIONS(1475), - [aux_sym_expr_binary_token19] = ACTIONS(1475), - [aux_sym_expr_binary_token20] = ACTIONS(1475), - [aux_sym_expr_binary_token21] = ACTIONS(1475), - [aux_sym_expr_binary_token22] = ACTIONS(1475), - [aux_sym_expr_binary_token23] = ACTIONS(1475), - [aux_sym_expr_binary_token24] = ACTIONS(1475), - [aux_sym_expr_binary_token25] = ACTIONS(1475), - [aux_sym_expr_binary_token26] = ACTIONS(1475), - [aux_sym_expr_binary_token27] = ACTIONS(1475), - [aux_sym_expr_binary_token28] = ACTIONS(1475), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [sym_filesize_unit] = ACTIONS(1475), - [sym_duration_unit] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1473), - [anon_sym_out_GT] = ACTIONS(1473), - [anon_sym_e_GT] = ACTIONS(1473), - [anon_sym_o_GT] = ACTIONS(1473), - [anon_sym_err_PLUSout_GT] = ACTIONS(1473), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), - [anon_sym_o_PLUSe_GT] = ACTIONS(1473), - [anon_sym_e_PLUSo_GT] = ACTIONS(1473), - [anon_sym_err_GT_GT] = ACTIONS(1475), - [anon_sym_out_GT_GT] = ACTIONS(1475), - [anon_sym_e_GT_GT] = ACTIONS(1475), - [anon_sym_o_GT_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), - [anon_sym_POUND] = ACTIONS(247), - }, - [1634] = { - [sym_comment] = STATE(1634), - [ts_builtin_sym_end] = ACTIONS(1984), - [anon_sym_true] = ACTIONS(1984), - [anon_sym_false] = ACTIONS(1984), - [anon_sym_null] = ACTIONS(1984), - [aux_sym_cmd_identifier_token38] = ACTIONS(1984), - [aux_sym_cmd_identifier_token39] = ACTIONS(1984), - [aux_sym_cmd_identifier_token40] = ACTIONS(1984), - [sym__newline] = ACTIONS(1984), - [anon_sym_SEMI] = ACTIONS(1984), - [anon_sym_PIPE] = ACTIONS(1984), - [anon_sym_err_GT_PIPE] = ACTIONS(1984), - [anon_sym_out_GT_PIPE] = ACTIONS(1984), - [anon_sym_e_GT_PIPE] = ACTIONS(1984), - [anon_sym_o_GT_PIPE] = ACTIONS(1984), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1984), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1984), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1984), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1984), - [anon_sym_LBRACK] = ACTIONS(1984), - [anon_sym_LPAREN] = ACTIONS(1984), - [anon_sym_DOLLAR] = ACTIONS(1982), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_DASH] = ACTIONS(1982), - [aux_sym_ctrl_match_token1] = ACTIONS(1984), - [anon_sym_DOT_DOT] = ACTIONS(1982), - [anon_sym_DOT_DOT2] = ACTIONS(1982), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1982), - [anon_sym_DOT_DOT_LT] = ACTIONS(1982), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1984), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1984), - [aux_sym__val_number_decimal_token1] = ACTIONS(1982), - [aux_sym__val_number_decimal_token2] = ACTIONS(1984), - [aux_sym__val_number_decimal_token3] = ACTIONS(1984), - [aux_sym__val_number_decimal_token4] = ACTIONS(1984), - [aux_sym__val_number_token1] = ACTIONS(1984), - [aux_sym__val_number_token2] = ACTIONS(1984), - [aux_sym__val_number_token3] = ACTIONS(1984), - [anon_sym_0b] = ACTIONS(1982), - [anon_sym_0o] = ACTIONS(1982), - [anon_sym_0x] = ACTIONS(1982), - [sym_val_date] = ACTIONS(1984), - [anon_sym_DQUOTE] = ACTIONS(1984), - [sym__str_single_quotes] = ACTIONS(1984), - [sym__str_back_ticks] = ACTIONS(1984), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1984), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1984), - [anon_sym_err_GT] = ACTIONS(1982), - [anon_sym_out_GT] = ACTIONS(1982), - [anon_sym_e_GT] = ACTIONS(1982), - [anon_sym_o_GT] = ACTIONS(1982), - [anon_sym_err_PLUSout_GT] = ACTIONS(1982), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1982), - [anon_sym_o_PLUSe_GT] = ACTIONS(1982), - [anon_sym_e_PLUSo_GT] = ACTIONS(1982), - [anon_sym_err_GT_GT] = ACTIONS(1984), - [anon_sym_out_GT_GT] = ACTIONS(1984), - [anon_sym_e_GT_GT] = ACTIONS(1984), - [anon_sym_o_GT_GT] = ACTIONS(1984), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1984), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1984), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1984), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1984), - [aux_sym_unquoted_token1] = ACTIONS(1982), - [anon_sym_POUND] = ACTIONS(247), - }, - [1635] = { - [sym_comment] = STATE(1635), - [ts_builtin_sym_end] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_LPAREN2] = ACTIONS(1587), - [aux_sym_expr_binary_token1] = ACTIONS(1587), - [aux_sym_expr_binary_token2] = ACTIONS(1587), - [aux_sym_expr_binary_token3] = ACTIONS(1587), - [aux_sym_expr_binary_token4] = ACTIONS(1587), - [aux_sym_expr_binary_token5] = ACTIONS(1587), - [aux_sym_expr_binary_token6] = ACTIONS(1587), - [aux_sym_expr_binary_token7] = ACTIONS(1587), - [aux_sym_expr_binary_token8] = ACTIONS(1587), - [aux_sym_expr_binary_token9] = ACTIONS(1587), - [aux_sym_expr_binary_token10] = ACTIONS(1587), - [aux_sym_expr_binary_token11] = ACTIONS(1587), - [aux_sym_expr_binary_token12] = ACTIONS(1587), - [aux_sym_expr_binary_token13] = ACTIONS(1587), - [aux_sym_expr_binary_token14] = ACTIONS(1587), - [aux_sym_expr_binary_token15] = ACTIONS(1587), - [aux_sym_expr_binary_token16] = ACTIONS(1587), - [aux_sym_expr_binary_token17] = ACTIONS(1587), - [aux_sym_expr_binary_token18] = ACTIONS(1587), - [aux_sym_expr_binary_token19] = ACTIONS(1587), - [aux_sym_expr_binary_token20] = ACTIONS(1587), - [aux_sym_expr_binary_token21] = ACTIONS(1587), - [aux_sym_expr_binary_token22] = ACTIONS(1587), - [aux_sym_expr_binary_token23] = ACTIONS(1587), - [aux_sym_expr_binary_token24] = ACTIONS(1587), - [aux_sym_expr_binary_token25] = ACTIONS(1587), - [aux_sym_expr_binary_token26] = ACTIONS(1587), - [aux_sym_expr_binary_token27] = ACTIONS(1587), - [aux_sym_expr_binary_token28] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1585), - [anon_sym_out_GT] = ACTIONS(1585), - [anon_sym_e_GT] = ACTIONS(1585), - [anon_sym_o_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT] = ACTIONS(1585), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), - [aux_sym_unquoted_token2] = ACTIONS(1585), - [anon_sym_POUND] = ACTIONS(247), - }, - [1636] = { - [sym_comment] = STATE(1636), - [sym__newline] = ACTIONS(988), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_PIPE] = ACTIONS(988), - [anon_sym_err_GT_PIPE] = ACTIONS(988), - [anon_sym_out_GT_PIPE] = ACTIONS(988), - [anon_sym_e_GT_PIPE] = ACTIONS(988), - [anon_sym_o_GT_PIPE] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(988), - [anon_sym_RPAREN] = ACTIONS(988), - [anon_sym_COMMA] = ACTIONS(988), - [anon_sym_DASH_DASH] = ACTIONS(988), - [anon_sym_DASH] = ACTIONS(986), - [aux_sym_ctrl_match_token1] = ACTIONS(988), - [anon_sym_RBRACE] = ACTIONS(988), - [anon_sym_EQ_GT] = ACTIONS(988), - [aux_sym_expr_binary_token1] = ACTIONS(988), - [aux_sym_expr_binary_token2] = ACTIONS(988), - [aux_sym_expr_binary_token3] = ACTIONS(988), - [aux_sym_expr_binary_token4] = ACTIONS(988), - [aux_sym_expr_binary_token5] = ACTIONS(988), - [aux_sym_expr_binary_token6] = ACTIONS(988), - [aux_sym_expr_binary_token7] = ACTIONS(988), - [aux_sym_expr_binary_token8] = ACTIONS(988), - [aux_sym_expr_binary_token9] = ACTIONS(988), - [aux_sym_expr_binary_token10] = ACTIONS(988), - [aux_sym_expr_binary_token11] = ACTIONS(988), - [aux_sym_expr_binary_token12] = ACTIONS(988), - [aux_sym_expr_binary_token13] = ACTIONS(988), - [aux_sym_expr_binary_token14] = ACTIONS(988), - [aux_sym_expr_binary_token15] = ACTIONS(988), - [aux_sym_expr_binary_token16] = ACTIONS(988), - [aux_sym_expr_binary_token17] = ACTIONS(988), - [aux_sym_expr_binary_token18] = ACTIONS(988), - [aux_sym_expr_binary_token19] = ACTIONS(988), - [aux_sym_expr_binary_token20] = ACTIONS(988), - [aux_sym_expr_binary_token21] = ACTIONS(988), - [aux_sym_expr_binary_token22] = ACTIONS(988), - [aux_sym_expr_binary_token23] = ACTIONS(988), - [aux_sym_expr_binary_token24] = ACTIONS(988), - [aux_sym_expr_binary_token25] = ACTIONS(988), - [aux_sym_expr_binary_token26] = ACTIONS(988), - [aux_sym_expr_binary_token27] = ACTIONS(988), - [aux_sym_expr_binary_token28] = ACTIONS(988), - [anon_sym_DOT] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(986), - [anon_sym_out_GT] = ACTIONS(986), - [anon_sym_e_GT] = ACTIONS(986), - [anon_sym_o_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT] = ACTIONS(986), - [anon_sym_err_GT_GT] = ACTIONS(988), - [anon_sym_out_GT_GT] = ACTIONS(988), - [anon_sym_e_GT_GT] = ACTIONS(988), - [anon_sym_o_GT_GT] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), - [anon_sym_POUND] = ACTIONS(247), - }, - [1637] = { - [sym_comment] = STATE(1637), - [sym__newline] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(992), - [anon_sym_err_GT_PIPE] = ACTIONS(992), - [anon_sym_out_GT_PIPE] = ACTIONS(992), - [anon_sym_e_GT_PIPE] = ACTIONS(992), - [anon_sym_o_GT_PIPE] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), - [anon_sym_RPAREN] = ACTIONS(992), - [anon_sym_COMMA] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [anon_sym_DASH] = ACTIONS(990), - [aux_sym_ctrl_match_token1] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_EQ_GT] = ACTIONS(992), - [aux_sym_expr_binary_token1] = ACTIONS(992), - [aux_sym_expr_binary_token2] = ACTIONS(992), - [aux_sym_expr_binary_token3] = ACTIONS(992), - [aux_sym_expr_binary_token4] = ACTIONS(992), - [aux_sym_expr_binary_token5] = ACTIONS(992), - [aux_sym_expr_binary_token6] = ACTIONS(992), - [aux_sym_expr_binary_token7] = ACTIONS(992), - [aux_sym_expr_binary_token8] = ACTIONS(992), - [aux_sym_expr_binary_token9] = ACTIONS(992), - [aux_sym_expr_binary_token10] = ACTIONS(992), - [aux_sym_expr_binary_token11] = ACTIONS(992), - [aux_sym_expr_binary_token12] = ACTIONS(992), - [aux_sym_expr_binary_token13] = ACTIONS(992), - [aux_sym_expr_binary_token14] = ACTIONS(992), - [aux_sym_expr_binary_token15] = ACTIONS(992), - [aux_sym_expr_binary_token16] = ACTIONS(992), - [aux_sym_expr_binary_token17] = ACTIONS(992), - [aux_sym_expr_binary_token18] = ACTIONS(992), - [aux_sym_expr_binary_token19] = ACTIONS(992), - [aux_sym_expr_binary_token20] = ACTIONS(992), - [aux_sym_expr_binary_token21] = ACTIONS(992), - [aux_sym_expr_binary_token22] = ACTIONS(992), - [aux_sym_expr_binary_token23] = ACTIONS(992), - [aux_sym_expr_binary_token24] = ACTIONS(992), - [aux_sym_expr_binary_token25] = ACTIONS(992), - [aux_sym_expr_binary_token26] = ACTIONS(992), - [aux_sym_expr_binary_token27] = ACTIONS(992), - [aux_sym_expr_binary_token28] = ACTIONS(992), - [anon_sym_DOT] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(990), - [anon_sym_out_GT] = ACTIONS(990), - [anon_sym_e_GT] = ACTIONS(990), - [anon_sym_o_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT] = ACTIONS(990), - [anon_sym_err_GT_GT] = ACTIONS(992), - [anon_sym_out_GT_GT] = ACTIONS(992), - [anon_sym_e_GT_GT] = ACTIONS(992), - [anon_sym_o_GT_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(247), - }, - [1638] = { - [sym_comment] = STATE(1638), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [anon_sym_null] = ACTIONS(1591), - [aux_sym_cmd_identifier_token38] = ACTIONS(1591), - [aux_sym_cmd_identifier_token39] = ACTIONS(1591), - [aux_sym_cmd_identifier_token40] = ACTIONS(1591), - [sym__newline] = ACTIONS(1591), - [anon_sym_SEMI] = ACTIONS(1591), - [anon_sym_PIPE] = ACTIONS(1591), - [anon_sym_err_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_GT_PIPE] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), - [anon_sym_LBRACK] = ACTIONS(1591), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_RPAREN] = ACTIONS(1591), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_DASH] = ACTIONS(1589), - [aux_sym_ctrl_match_token1] = ACTIONS(1591), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1591), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1591), - [anon_sym_DOT_DOT_LT] = ACTIONS(1591), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token3] = ACTIONS(1591), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(1591), - [aux_sym__val_number_token2] = ACTIONS(1591), - [aux_sym__val_number_token3] = ACTIONS(1591), - [anon_sym_0b] = ACTIONS(1589), - [anon_sym_0o] = ACTIONS(1589), - [anon_sym_0x] = ACTIONS(1589), - [sym_val_date] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym__str_single_quotes] = ACTIONS(1591), - [sym__str_back_ticks] = ACTIONS(1591), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), - [anon_sym_err_GT] = ACTIONS(1589), - [anon_sym_out_GT] = ACTIONS(1589), - [anon_sym_e_GT] = ACTIONS(1589), - [anon_sym_o_GT] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT] = ACTIONS(1589), - [anon_sym_err_GT_GT] = ACTIONS(1591), - [anon_sym_out_GT_GT] = ACTIONS(1591), - [anon_sym_e_GT_GT] = ACTIONS(1591), - [anon_sym_o_GT_GT] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), - [aux_sym_unquoted_token1] = ACTIONS(1589), - [aux_sym_unquoted_token2] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(247), - }, - [1639] = { - [sym_comment] = STATE(1639), - [sym__newline] = ACTIONS(3485), - [anon_sym_SEMI] = ACTIONS(3485), - [anon_sym_PIPE] = ACTIONS(3485), - [anon_sym_err_GT_PIPE] = ACTIONS(3485), - [anon_sym_out_GT_PIPE] = ACTIONS(3485), - [anon_sym_e_GT_PIPE] = ACTIONS(3485), - [anon_sym_o_GT_PIPE] = ACTIONS(3485), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3485), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3485), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3485), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3485), - [anon_sym_RPAREN] = ACTIONS(3485), - [anon_sym_COMMA] = ACTIONS(3485), - [anon_sym_DASH_DASH] = ACTIONS(3485), - [anon_sym_DASH] = ACTIONS(3487), - [aux_sym_ctrl_match_token1] = ACTIONS(3485), - [anon_sym_RBRACE] = ACTIONS(3485), - [anon_sym_EQ_GT] = ACTIONS(3485), - [anon_sym_LPAREN2] = ACTIONS(3485), - [aux_sym_expr_binary_token1] = ACTIONS(3485), - [aux_sym_expr_binary_token2] = ACTIONS(3485), - [aux_sym_expr_binary_token3] = ACTIONS(3485), - [aux_sym_expr_binary_token4] = ACTIONS(3485), - [aux_sym_expr_binary_token5] = ACTIONS(3485), - [aux_sym_expr_binary_token6] = ACTIONS(3485), - [aux_sym_expr_binary_token7] = ACTIONS(3485), - [aux_sym_expr_binary_token8] = ACTIONS(3485), - [aux_sym_expr_binary_token9] = ACTIONS(3485), - [aux_sym_expr_binary_token10] = ACTIONS(3485), - [aux_sym_expr_binary_token11] = ACTIONS(3485), - [aux_sym_expr_binary_token12] = ACTIONS(3485), - [aux_sym_expr_binary_token13] = ACTIONS(3485), - [aux_sym_expr_binary_token14] = ACTIONS(3485), - [aux_sym_expr_binary_token15] = ACTIONS(3485), - [aux_sym_expr_binary_token16] = ACTIONS(3485), - [aux_sym_expr_binary_token17] = ACTIONS(3485), - [aux_sym_expr_binary_token18] = ACTIONS(3485), - [aux_sym_expr_binary_token19] = ACTIONS(3485), - [aux_sym_expr_binary_token20] = ACTIONS(3485), - [aux_sym_expr_binary_token21] = ACTIONS(3485), - [aux_sym_expr_binary_token22] = ACTIONS(3485), - [aux_sym_expr_binary_token23] = ACTIONS(3485), - [aux_sym_expr_binary_token24] = ACTIONS(3485), - [aux_sym_expr_binary_token25] = ACTIONS(3485), - [aux_sym_expr_binary_token26] = ACTIONS(3485), - [aux_sym_expr_binary_token27] = ACTIONS(3485), - [aux_sym_expr_binary_token28] = ACTIONS(3485), - [anon_sym_err_GT] = ACTIONS(3487), - [anon_sym_out_GT] = ACTIONS(3487), - [anon_sym_e_GT] = ACTIONS(3487), - [anon_sym_o_GT] = ACTIONS(3487), - [anon_sym_err_PLUSout_GT] = ACTIONS(3487), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3487), - [anon_sym_o_PLUSe_GT] = ACTIONS(3487), - [anon_sym_e_PLUSo_GT] = ACTIONS(3487), - [anon_sym_err_GT_GT] = ACTIONS(3485), - [anon_sym_out_GT_GT] = ACTIONS(3485), - [anon_sym_e_GT_GT] = ACTIONS(3485), - [anon_sym_o_GT_GT] = ACTIONS(3485), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3485), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3485), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3485), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3485), - [anon_sym_POUND] = ACTIONS(247), - }, - [1640] = { - [sym_comment] = STATE(1640), - [sym__newline] = ACTIONS(1585), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_RPAREN] = ACTIONS(1587), - [anon_sym_LPAREN2] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1585), - [anon_sym_out_GT] = ACTIONS(1585), - [anon_sym_e_GT] = ACTIONS(1585), - [anon_sym_o_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT] = ACTIONS(1585), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), - [aux_sym_unquoted_token2] = ACTIONS(1585), - [anon_sym_POUND] = ACTIONS(247), - }, - [1641] = { - [sym_comment] = STATE(1641), - [anon_sym_true] = ACTIONS(1571), - [anon_sym_false] = ACTIONS(1571), - [anon_sym_null] = ACTIONS(1571), - [aux_sym_cmd_identifier_token38] = ACTIONS(1571), - [aux_sym_cmd_identifier_token39] = ACTIONS(1571), - [aux_sym_cmd_identifier_token40] = ACTIONS(1571), - [sym__newline] = ACTIONS(1571), - [anon_sym_SEMI] = ACTIONS(1571), - [anon_sym_PIPE] = ACTIONS(1571), - [anon_sym_err_GT_PIPE] = ACTIONS(1571), - [anon_sym_out_GT_PIPE] = ACTIONS(1571), - [anon_sym_e_GT_PIPE] = ACTIONS(1571), - [anon_sym_o_GT_PIPE] = ACTIONS(1571), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1571), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1571), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1571), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1571), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_RPAREN] = ACTIONS(1571), - [anon_sym_DOLLAR] = ACTIONS(1569), - [anon_sym_DASH_DASH] = ACTIONS(1571), - [anon_sym_DASH] = ACTIONS(1569), - [aux_sym_ctrl_match_token1] = ACTIONS(1571), - [anon_sym_RBRACE] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1569), - [anon_sym_LPAREN2] = ACTIONS(1571), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1571), - [anon_sym_DOT_DOT_LT] = ACTIONS(1571), - [aux_sym__val_number_decimal_token1] = ACTIONS(1569), - [aux_sym__val_number_decimal_token2] = ACTIONS(1571), - [aux_sym__val_number_decimal_token3] = ACTIONS(1571), - [aux_sym__val_number_decimal_token4] = ACTIONS(1571), - [aux_sym__val_number_token1] = ACTIONS(1571), - [aux_sym__val_number_token2] = ACTIONS(1571), - [aux_sym__val_number_token3] = ACTIONS(1571), - [anon_sym_0b] = ACTIONS(1569), - [anon_sym_0o] = ACTIONS(1569), - [anon_sym_0x] = ACTIONS(1569), - [sym_val_date] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [sym__str_single_quotes] = ACTIONS(1571), - [sym__str_back_ticks] = ACTIONS(1571), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1571), - [anon_sym_err_GT] = ACTIONS(1569), - [anon_sym_out_GT] = ACTIONS(1569), - [anon_sym_e_GT] = ACTIONS(1569), - [anon_sym_o_GT] = ACTIONS(1569), - [anon_sym_err_PLUSout_GT] = ACTIONS(1569), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1569), - [anon_sym_o_PLUSe_GT] = ACTIONS(1569), - [anon_sym_e_PLUSo_GT] = ACTIONS(1569), - [anon_sym_err_GT_GT] = ACTIONS(1571), - [anon_sym_out_GT_GT] = ACTIONS(1571), - [anon_sym_e_GT_GT] = ACTIONS(1571), - [anon_sym_o_GT_GT] = ACTIONS(1571), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1571), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1571), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1571), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1571), - [aux_sym_unquoted_token1] = ACTIONS(1569), - [aux_sym_unquoted_token2] = ACTIONS(1569), - [anon_sym_POUND] = ACTIONS(247), - }, - [1642] = { - [sym_comment] = STATE(1642), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [anon_sym_null] = ACTIONS(1650), - [aux_sym_cmd_identifier_token38] = ACTIONS(1650), - [aux_sym_cmd_identifier_token39] = ACTIONS(1650), - [aux_sym_cmd_identifier_token40] = ACTIONS(1650), - [sym__newline] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_err_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_GT_PIPE] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_RPAREN] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_DASH] = ACTIONS(1648), - [aux_sym_ctrl_match_token1] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_DOT_DOT] = ACTIONS(1648), - [anon_sym_LPAREN2] = ACTIONS(1650), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token3] = ACTIONS(1650), - [aux_sym__val_number_decimal_token4] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [anon_sym_0b] = ACTIONS(1648), - [anon_sym_0o] = ACTIONS(1648), - [anon_sym_0x] = ACTIONS(1648), - [sym_val_date] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), - [anon_sym_err_GT] = ACTIONS(1648), - [anon_sym_out_GT] = ACTIONS(1648), - [anon_sym_e_GT] = ACTIONS(1648), - [anon_sym_o_GT] = ACTIONS(1648), - [anon_sym_err_PLUSout_GT] = ACTIONS(1648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1648), - [anon_sym_o_PLUSe_GT] = ACTIONS(1648), - [anon_sym_e_PLUSo_GT] = ACTIONS(1648), - [anon_sym_err_GT_GT] = ACTIONS(1650), - [anon_sym_out_GT_GT] = ACTIONS(1650), - [anon_sym_e_GT_GT] = ACTIONS(1650), - [anon_sym_o_GT_GT] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1650), - [aux_sym_unquoted_token1] = ACTIONS(1648), - [aux_sym_unquoted_token2] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(247), - }, - [1643] = { - [sym_comment] = STATE(1643), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1723), - [aux_sym_cmd_identifier_token38] = ACTIONS(1723), - [aux_sym_cmd_identifier_token39] = ACTIONS(1723), - [aux_sym_cmd_identifier_token40] = ACTIONS(1723), - [sym__newline] = ACTIONS(1723), - [anon_sym_SEMI] = ACTIONS(1723), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_err_GT_PIPE] = ACTIONS(1723), - [anon_sym_out_GT_PIPE] = ACTIONS(1723), - [anon_sym_e_GT_PIPE] = ACTIONS(1723), - [anon_sym_o_GT_PIPE] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), - [anon_sym_LBRACK] = ACTIONS(1723), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_RPAREN] = ACTIONS(1723), - [anon_sym_DOLLAR] = ACTIONS(1721), - [anon_sym_DASH_DASH] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1721), - [aux_sym_ctrl_match_token1] = ACTIONS(1723), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1721), - [anon_sym_LPAREN2] = ACTIONS(1723), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1723), - [anon_sym_DOT_DOT_LT] = ACTIONS(1723), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token3] = ACTIONS(1723), - [aux_sym__val_number_decimal_token4] = ACTIONS(1723), - [aux_sym__val_number_token1] = ACTIONS(1723), - [aux_sym__val_number_token2] = ACTIONS(1723), - [aux_sym__val_number_token3] = ACTIONS(1723), - [anon_sym_0b] = ACTIONS(1721), - [anon_sym_0o] = ACTIONS(1721), - [anon_sym_0x] = ACTIONS(1721), - [sym_val_date] = ACTIONS(1723), - [anon_sym_DQUOTE] = ACTIONS(1723), - [sym__str_single_quotes] = ACTIONS(1723), - [sym__str_back_ticks] = ACTIONS(1723), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1723), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1723), - [anon_sym_err_GT] = ACTIONS(1721), - [anon_sym_out_GT] = ACTIONS(1721), - [anon_sym_e_GT] = ACTIONS(1721), - [anon_sym_o_GT] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT] = ACTIONS(1721), - [anon_sym_err_GT_GT] = ACTIONS(1723), - [anon_sym_out_GT_GT] = ACTIONS(1723), - [anon_sym_e_GT_GT] = ACTIONS(1723), - [anon_sym_o_GT_GT] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), - [aux_sym_unquoted_token1] = ACTIONS(1721), - [aux_sym_unquoted_token2] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(247), - }, - [1644] = { - [sym_comment] = STATE(1644), - [sym__newline] = ACTIONS(3373), - [anon_sym_SEMI] = ACTIONS(3373), - [anon_sym_PIPE] = ACTIONS(3373), - [anon_sym_err_GT_PIPE] = ACTIONS(3373), - [anon_sym_out_GT_PIPE] = ACTIONS(3373), - [anon_sym_e_GT_PIPE] = ACTIONS(3373), - [anon_sym_o_GT_PIPE] = ACTIONS(3373), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3373), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3373), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3373), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3373), - [anon_sym_RPAREN] = ACTIONS(3373), - [anon_sym_COMMA] = ACTIONS(3373), - [anon_sym_DASH_DASH] = ACTIONS(3373), - [anon_sym_DASH] = ACTIONS(3375), - [aux_sym_ctrl_match_token1] = ACTIONS(3373), - [anon_sym_RBRACE] = ACTIONS(3373), - [anon_sym_EQ_GT] = ACTIONS(3373), - [anon_sym_LPAREN2] = ACTIONS(3373), - [aux_sym_expr_binary_token1] = ACTIONS(3373), - [aux_sym_expr_binary_token2] = ACTIONS(3373), - [aux_sym_expr_binary_token3] = ACTIONS(3373), - [aux_sym_expr_binary_token4] = ACTIONS(3373), - [aux_sym_expr_binary_token5] = ACTIONS(3373), - [aux_sym_expr_binary_token6] = ACTIONS(3373), - [aux_sym_expr_binary_token7] = ACTIONS(3373), - [aux_sym_expr_binary_token8] = ACTIONS(3373), - [aux_sym_expr_binary_token9] = ACTIONS(3373), - [aux_sym_expr_binary_token10] = ACTIONS(3373), - [aux_sym_expr_binary_token11] = ACTIONS(3373), - [aux_sym_expr_binary_token12] = ACTIONS(3373), - [aux_sym_expr_binary_token13] = ACTIONS(3373), - [aux_sym_expr_binary_token14] = ACTIONS(3373), - [aux_sym_expr_binary_token15] = ACTIONS(3373), - [aux_sym_expr_binary_token16] = ACTIONS(3373), - [aux_sym_expr_binary_token17] = ACTIONS(3373), - [aux_sym_expr_binary_token18] = ACTIONS(3373), - [aux_sym_expr_binary_token19] = ACTIONS(3373), - [aux_sym_expr_binary_token20] = ACTIONS(3373), - [aux_sym_expr_binary_token21] = ACTIONS(3373), - [aux_sym_expr_binary_token22] = ACTIONS(3373), - [aux_sym_expr_binary_token23] = ACTIONS(3373), - [aux_sym_expr_binary_token24] = ACTIONS(3373), - [aux_sym_expr_binary_token25] = ACTIONS(3373), - [aux_sym_expr_binary_token26] = ACTIONS(3373), - [aux_sym_expr_binary_token27] = ACTIONS(3373), - [aux_sym_expr_binary_token28] = ACTIONS(3373), - [anon_sym_err_GT] = ACTIONS(3375), - [anon_sym_out_GT] = ACTIONS(3375), - [anon_sym_e_GT] = ACTIONS(3375), - [anon_sym_o_GT] = ACTIONS(3375), - [anon_sym_err_PLUSout_GT] = ACTIONS(3375), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3375), - [anon_sym_o_PLUSe_GT] = ACTIONS(3375), - [anon_sym_e_PLUSo_GT] = ACTIONS(3375), - [anon_sym_err_GT_GT] = ACTIONS(3373), - [anon_sym_out_GT_GT] = ACTIONS(3373), - [anon_sym_e_GT_GT] = ACTIONS(3373), - [anon_sym_o_GT_GT] = ACTIONS(3373), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3373), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3373), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3373), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3373), - [anon_sym_POUND] = ACTIONS(247), - }, - [1645] = { - [sym_comment] = STATE(1645), - [ts_builtin_sym_end] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [anon_sym_null] = ACTIONS(1591), - [aux_sym_cmd_identifier_token38] = ACTIONS(1591), - [aux_sym_cmd_identifier_token39] = ACTIONS(1591), - [aux_sym_cmd_identifier_token40] = ACTIONS(1591), - [sym__newline] = ACTIONS(1591), - [anon_sym_SEMI] = ACTIONS(1591), - [anon_sym_PIPE] = ACTIONS(1591), - [anon_sym_err_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_GT_PIPE] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), - [anon_sym_LBRACK] = ACTIONS(1591), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_DASH] = ACTIONS(1589), - [aux_sym_ctrl_match_token1] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1591), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1591), - [anon_sym_DOT_DOT_LT] = ACTIONS(1591), - [aux_sym__immediate_decimal_token2] = ACTIONS(4912), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token3] = ACTIONS(1591), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(1591), - [aux_sym__val_number_token2] = ACTIONS(1591), - [aux_sym__val_number_token3] = ACTIONS(1591), - [anon_sym_0b] = ACTIONS(1589), - [anon_sym_0o] = ACTIONS(1589), - [anon_sym_0x] = ACTIONS(1589), - [sym_val_date] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym__str_single_quotes] = ACTIONS(1591), - [sym__str_back_ticks] = ACTIONS(1591), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), - [anon_sym_err_GT] = ACTIONS(1589), - [anon_sym_out_GT] = ACTIONS(1589), - [anon_sym_e_GT] = ACTIONS(1589), - [anon_sym_o_GT] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT] = ACTIONS(1589), - [anon_sym_err_GT_GT] = ACTIONS(1591), - [anon_sym_out_GT_GT] = ACTIONS(1591), - [anon_sym_e_GT_GT] = ACTIONS(1591), - [anon_sym_o_GT_GT] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), - [aux_sym_unquoted_token1] = ACTIONS(1589), - [aux_sym_unquoted_token2] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(247), - }, - [1646] = { - [sym_comment] = STATE(1646), - [anon_sym_true] = ACTIONS(4962), - [anon_sym_false] = ACTIONS(4962), - [anon_sym_null] = ACTIONS(4962), - [aux_sym_cmd_identifier_token38] = ACTIONS(4962), - [aux_sym_cmd_identifier_token39] = ACTIONS(4962), - [aux_sym_cmd_identifier_token40] = ACTIONS(4962), - [sym__newline] = ACTIONS(4962), - [anon_sym_SEMI] = ACTIONS(4962), - [anon_sym_PIPE] = ACTIONS(4962), - [anon_sym_err_GT_PIPE] = ACTIONS(4962), - [anon_sym_out_GT_PIPE] = ACTIONS(4962), - [anon_sym_e_GT_PIPE] = ACTIONS(4962), - [anon_sym_o_GT_PIPE] = ACTIONS(4962), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4962), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4962), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4962), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4962), - [anon_sym_LBRACK] = ACTIONS(4962), - [anon_sym_LPAREN] = ACTIONS(4962), - [anon_sym_RPAREN] = ACTIONS(4962), - [anon_sym_DOLLAR] = ACTIONS(4964), - [anon_sym_DASH_DASH] = ACTIONS(4962), - [anon_sym_DASH] = ACTIONS(4964), - [aux_sym_ctrl_match_token1] = ACTIONS(4962), - [anon_sym_DOT_DOT] = ACTIONS(4964), - [anon_sym_DOT_DOT2] = ACTIONS(4873), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4964), - [anon_sym_DOT_DOT_LT] = ACTIONS(4964), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4875), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4875), - [aux_sym__val_number_decimal_token1] = ACTIONS(4964), - [aux_sym__val_number_decimal_token2] = ACTIONS(4962), - [aux_sym__val_number_decimal_token3] = ACTIONS(4962), - [aux_sym__val_number_decimal_token4] = ACTIONS(4962), - [aux_sym__val_number_token1] = ACTIONS(4962), - [aux_sym__val_number_token2] = ACTIONS(4962), - [aux_sym__val_number_token3] = ACTIONS(4962), - [anon_sym_0b] = ACTIONS(4964), - [anon_sym_0o] = ACTIONS(4964), - [anon_sym_0x] = ACTIONS(4964), - [sym_val_date] = ACTIONS(4962), - [anon_sym_DQUOTE] = ACTIONS(4962), - [sym__str_single_quotes] = ACTIONS(4962), - [sym__str_back_ticks] = ACTIONS(4962), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4962), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4962), - [anon_sym_err_GT] = ACTIONS(4964), - [anon_sym_out_GT] = ACTIONS(4964), - [anon_sym_e_GT] = ACTIONS(4964), - [anon_sym_o_GT] = ACTIONS(4964), - [anon_sym_err_PLUSout_GT] = ACTIONS(4964), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4964), - [anon_sym_o_PLUSe_GT] = ACTIONS(4964), - [anon_sym_e_PLUSo_GT] = ACTIONS(4964), - [anon_sym_err_GT_GT] = ACTIONS(4962), - [anon_sym_out_GT_GT] = ACTIONS(4962), - [anon_sym_e_GT_GT] = ACTIONS(4962), - [anon_sym_o_GT_GT] = ACTIONS(4962), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4962), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4962), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4962), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4962), - [aux_sym_unquoted_token1] = ACTIONS(4964), - [anon_sym_POUND] = ACTIONS(247), - }, - [1647] = { - [sym_comment] = STATE(1647), - [ts_builtin_sym_end] = ACTIONS(1521), - [aux_sym_cmd_identifier_token41] = ACTIONS(1519), - [sym__newline] = ACTIONS(1521), - [anon_sym_SEMI] = ACTIONS(1521), - [anon_sym_PIPE] = ACTIONS(1521), - [anon_sym_err_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_GT_PIPE] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), - [aux_sym_expr_binary_token1] = ACTIONS(1521), - [aux_sym_expr_binary_token2] = ACTIONS(1521), - [aux_sym_expr_binary_token3] = ACTIONS(1521), - [aux_sym_expr_binary_token4] = ACTIONS(1521), - [aux_sym_expr_binary_token5] = ACTIONS(1521), - [aux_sym_expr_binary_token6] = ACTIONS(1521), - [aux_sym_expr_binary_token7] = ACTIONS(1521), - [aux_sym_expr_binary_token8] = ACTIONS(1521), - [aux_sym_expr_binary_token9] = ACTIONS(1521), - [aux_sym_expr_binary_token10] = ACTIONS(1521), - [aux_sym_expr_binary_token11] = ACTIONS(1521), - [aux_sym_expr_binary_token12] = ACTIONS(1521), - [aux_sym_expr_binary_token13] = ACTIONS(1521), - [aux_sym_expr_binary_token14] = ACTIONS(1521), - [aux_sym_expr_binary_token15] = ACTIONS(1521), - [aux_sym_expr_binary_token16] = ACTIONS(1521), - [aux_sym_expr_binary_token17] = ACTIONS(1521), - [aux_sym_expr_binary_token18] = ACTIONS(1521), - [aux_sym_expr_binary_token19] = ACTIONS(1521), - [aux_sym_expr_binary_token20] = ACTIONS(1521), - [aux_sym_expr_binary_token21] = ACTIONS(1521), - [aux_sym_expr_binary_token22] = ACTIONS(1521), - [aux_sym_expr_binary_token23] = ACTIONS(1521), - [aux_sym_expr_binary_token24] = ACTIONS(1521), - [aux_sym_expr_binary_token25] = ACTIONS(1521), - [aux_sym_expr_binary_token26] = ACTIONS(1521), - [aux_sym_expr_binary_token27] = ACTIONS(1521), - [aux_sym_expr_binary_token28] = ACTIONS(1521), - [anon_sym_DOT_DOT2] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), - [aux_sym__immediate_decimal_token2] = ACTIONS(4966), - [sym_filesize_unit] = ACTIONS(1521), - [sym_duration_unit] = ACTIONS(1521), - [anon_sym_err_GT] = ACTIONS(1519), - [anon_sym_out_GT] = ACTIONS(1519), - [anon_sym_e_GT] = ACTIONS(1519), - [anon_sym_o_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT] = ACTIONS(1519), - [anon_sym_err_GT_GT] = ACTIONS(1521), - [anon_sym_out_GT_GT] = ACTIONS(1521), - [anon_sym_e_GT_GT] = ACTIONS(1521), - [anon_sym_o_GT_GT] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), - [anon_sym_POUND] = ACTIONS(247), - }, - [1648] = { - [sym_comment] = STATE(1648), - [aux_sym_cmd_identifier_token41] = ACTIONS(1481), - [sym__newline] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_err_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_GT_PIPE] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), - [anon_sym_RPAREN] = ACTIONS(1483), - [anon_sym_RBRACE] = ACTIONS(1483), - [aux_sym_expr_binary_token1] = ACTIONS(1483), - [aux_sym_expr_binary_token2] = ACTIONS(1483), - [aux_sym_expr_binary_token3] = ACTIONS(1483), - [aux_sym_expr_binary_token4] = ACTIONS(1483), - [aux_sym_expr_binary_token5] = ACTIONS(1483), - [aux_sym_expr_binary_token6] = ACTIONS(1483), - [aux_sym_expr_binary_token7] = ACTIONS(1483), - [aux_sym_expr_binary_token8] = ACTIONS(1483), - [aux_sym_expr_binary_token9] = ACTIONS(1483), - [aux_sym_expr_binary_token10] = ACTIONS(1483), - [aux_sym_expr_binary_token11] = ACTIONS(1483), - [aux_sym_expr_binary_token12] = ACTIONS(1483), - [aux_sym_expr_binary_token13] = ACTIONS(1483), - [aux_sym_expr_binary_token14] = ACTIONS(1483), - [aux_sym_expr_binary_token15] = ACTIONS(1483), - [aux_sym_expr_binary_token16] = ACTIONS(1483), - [aux_sym_expr_binary_token17] = ACTIONS(1483), - [aux_sym_expr_binary_token18] = ACTIONS(1483), - [aux_sym_expr_binary_token19] = ACTIONS(1483), - [aux_sym_expr_binary_token20] = ACTIONS(1483), - [aux_sym_expr_binary_token21] = ACTIONS(1483), - [aux_sym_expr_binary_token22] = ACTIONS(1483), - [aux_sym_expr_binary_token23] = ACTIONS(1483), - [aux_sym_expr_binary_token24] = ACTIONS(1483), - [aux_sym_expr_binary_token25] = ACTIONS(1483), - [aux_sym_expr_binary_token26] = ACTIONS(1483), - [aux_sym_expr_binary_token27] = ACTIONS(1483), - [aux_sym_expr_binary_token28] = ACTIONS(1483), - [anon_sym_DOT_DOT2] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), - [sym_filesize_unit] = ACTIONS(1483), - [sym_duration_unit] = ACTIONS(1483), - [anon_sym_err_GT] = ACTIONS(1481), - [anon_sym_out_GT] = ACTIONS(1481), - [anon_sym_e_GT] = ACTIONS(1481), - [anon_sym_o_GT] = ACTIONS(1481), - [anon_sym_err_PLUSout_GT] = ACTIONS(1481), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), - [anon_sym_o_PLUSe_GT] = ACTIONS(1481), - [anon_sym_e_PLUSo_GT] = ACTIONS(1481), - [anon_sym_err_GT_GT] = ACTIONS(1483), - [anon_sym_out_GT_GT] = ACTIONS(1483), - [anon_sym_e_GT_GT] = ACTIONS(1483), - [anon_sym_o_GT_GT] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), - [anon_sym_POUND] = ACTIONS(247), - }, - [1649] = { - [sym_comment] = STATE(1649), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [anon_sym_null] = ACTIONS(2089), - [aux_sym_cmd_identifier_token38] = ACTIONS(2089), - [aux_sym_cmd_identifier_token39] = ACTIONS(2089), - [aux_sym_cmd_identifier_token40] = ACTIONS(2089), - [sym__newline] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_PIPE] = ACTIONS(2093), - [anon_sym_err_GT_PIPE] = ACTIONS(2093), - [anon_sym_out_GT_PIPE] = ACTIONS(2093), - [anon_sym_e_GT_PIPE] = ACTIONS(2093), - [anon_sym_o_GT_PIPE] = ACTIONS(2093), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2093), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2093), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2093), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2089), - [anon_sym_RPAREN] = ACTIONS(2093), - [anon_sym_DOLLAR] = ACTIONS(2089), - [anon_sym_DASH_DASH] = ACTIONS(2089), - [anon_sym_DASH] = ACTIONS(2089), - [aux_sym_ctrl_match_token1] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_DOT_DOT] = ACTIONS(2089), - [anon_sym_LPAREN2] = ACTIONS(2091), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2089), - [anon_sym_DOT_DOT_LT] = ACTIONS(2089), - [aux_sym__val_number_decimal_token1] = ACTIONS(2089), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2089), - [aux_sym__val_number_decimal_token4] = ACTIONS(2089), - [aux_sym__val_number_token1] = ACTIONS(2089), - [aux_sym__val_number_token2] = ACTIONS(2089), - [aux_sym__val_number_token3] = ACTIONS(2089), - [anon_sym_0b] = ACTIONS(2089), - [anon_sym_0o] = ACTIONS(2089), - [anon_sym_0x] = ACTIONS(2089), - [sym_val_date] = ACTIONS(2089), - [anon_sym_DQUOTE] = ACTIONS(2093), - [sym__str_single_quotes] = ACTIONS(2093), - [sym__str_back_ticks] = ACTIONS(2093), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2093), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2093), - [anon_sym_err_GT] = ACTIONS(2089), - [anon_sym_out_GT] = ACTIONS(2089), - [anon_sym_e_GT] = ACTIONS(2089), - [anon_sym_o_GT] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT] = ACTIONS(2089), - [anon_sym_err_GT_GT] = ACTIONS(2089), - [anon_sym_out_GT_GT] = ACTIONS(2089), - [anon_sym_e_GT_GT] = ACTIONS(2089), - [anon_sym_o_GT_GT] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2089), - [aux_sym_unquoted_token1] = ACTIONS(2089), - [aux_sym_unquoted_token4] = ACTIONS(2095), - [anon_sym_POUND] = ACTIONS(3), - }, - [1650] = { - [sym_comment] = STATE(1650), - [ts_builtin_sym_end] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [anon_sym_null] = ACTIONS(1591), - [aux_sym_cmd_identifier_token38] = ACTIONS(1591), - [aux_sym_cmd_identifier_token39] = ACTIONS(1591), - [aux_sym_cmd_identifier_token40] = ACTIONS(1591), - [sym__newline] = ACTIONS(1591), - [anon_sym_SEMI] = ACTIONS(1591), - [anon_sym_PIPE] = ACTIONS(1591), - [anon_sym_err_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_GT_PIPE] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), - [anon_sym_LBRACK] = ACTIONS(1591), - [anon_sym_LPAREN] = ACTIONS(1591), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_DASH] = ACTIONS(1589), - [aux_sym_ctrl_match_token1] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_DOT_DOT2] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1591), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token3] = ACTIONS(1591), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(1591), - [aux_sym__val_number_token2] = ACTIONS(1591), - [aux_sym__val_number_token3] = ACTIONS(1591), - [anon_sym_0b] = ACTIONS(1589), - [anon_sym_0o] = ACTIONS(1589), - [anon_sym_0x] = ACTIONS(1589), - [sym_val_date] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym__str_single_quotes] = ACTIONS(1591), - [sym__str_back_ticks] = ACTIONS(1591), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), - [anon_sym_err_GT] = ACTIONS(1589), - [anon_sym_out_GT] = ACTIONS(1589), - [anon_sym_e_GT] = ACTIONS(1589), - [anon_sym_o_GT] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT] = ACTIONS(1589), - [anon_sym_err_GT_GT] = ACTIONS(1591), - [anon_sym_out_GT_GT] = ACTIONS(1591), - [anon_sym_e_GT_GT] = ACTIONS(1591), - [anon_sym_o_GT_GT] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), - [aux_sym_unquoted_token1] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(247), - }, - [1651] = { - [sym_path] = STATE(1868), - [sym_comment] = STATE(1651), - [aux_sym_cell_path_repeat1] = STATE(1658), - [ts_builtin_sym_end] = ACTIONS(953), - [anon_sym_true] = ACTIONS(953), - [anon_sym_false] = ACTIONS(953), - [anon_sym_null] = ACTIONS(953), - [aux_sym_cmd_identifier_token38] = ACTIONS(953), - [aux_sym_cmd_identifier_token39] = ACTIONS(953), - [aux_sym_cmd_identifier_token40] = ACTIONS(953), - [sym__newline] = ACTIONS(953), - [anon_sym_SEMI] = ACTIONS(953), - [anon_sym_PIPE] = ACTIONS(953), - [anon_sym_err_GT_PIPE] = ACTIONS(953), - [anon_sym_out_GT_PIPE] = ACTIONS(953), - [anon_sym_e_GT_PIPE] = ACTIONS(953), - [anon_sym_o_GT_PIPE] = ACTIONS(953), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(953), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(953), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(953), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_DOLLAR] = ACTIONS(951), - [anon_sym_DASH_DASH] = ACTIONS(953), - [anon_sym_DASH] = ACTIONS(951), - [aux_sym_ctrl_match_token1] = ACTIONS(953), - [anon_sym_DOT_DOT] = ACTIONS(951), - [anon_sym_DOT] = ACTIONS(4849), - [anon_sym_DOT_DOT_EQ] = ACTIONS(953), - [anon_sym_DOT_DOT_LT] = ACTIONS(953), - [aux_sym__val_number_decimal_token1] = ACTIONS(951), - [aux_sym__val_number_decimal_token2] = ACTIONS(953), - [aux_sym__val_number_decimal_token3] = ACTIONS(953), - [aux_sym__val_number_decimal_token4] = ACTIONS(953), - [aux_sym__val_number_token1] = ACTIONS(953), - [aux_sym__val_number_token2] = ACTIONS(953), - [aux_sym__val_number_token3] = ACTIONS(953), - [anon_sym_0b] = ACTIONS(951), - [anon_sym_0o] = ACTIONS(951), - [anon_sym_0x] = ACTIONS(951), - [sym_val_date] = ACTIONS(953), - [anon_sym_DQUOTE] = ACTIONS(953), - [sym__str_single_quotes] = ACTIONS(953), - [sym__str_back_ticks] = ACTIONS(953), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(953), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(953), - [anon_sym_err_GT] = ACTIONS(951), - [anon_sym_out_GT] = ACTIONS(951), - [anon_sym_e_GT] = ACTIONS(951), - [anon_sym_o_GT] = ACTIONS(951), - [anon_sym_err_PLUSout_GT] = ACTIONS(951), - [anon_sym_out_PLUSerr_GT] = ACTIONS(951), - [anon_sym_o_PLUSe_GT] = ACTIONS(951), - [anon_sym_e_PLUSo_GT] = ACTIONS(951), - [anon_sym_err_GT_GT] = ACTIONS(953), - [anon_sym_out_GT_GT] = ACTIONS(953), - [anon_sym_e_GT_GT] = ACTIONS(953), - [anon_sym_o_GT_GT] = ACTIONS(953), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(953), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(953), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(953), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(953), - [aux_sym_unquoted_token1] = ACTIONS(951), - [anon_sym_POUND] = ACTIONS(247), - }, - [1652] = { - [sym_comment] = STATE(1652), - [anon_sym_true] = ACTIONS(1571), - [anon_sym_false] = ACTIONS(1571), - [anon_sym_null] = ACTIONS(1571), - [aux_sym_cmd_identifier_token38] = ACTIONS(1571), - [aux_sym_cmd_identifier_token39] = ACTIONS(1571), - [aux_sym_cmd_identifier_token40] = ACTIONS(1571), - [sym__newline] = ACTIONS(1571), - [anon_sym_SEMI] = ACTIONS(1571), - [anon_sym_PIPE] = ACTIONS(1571), - [anon_sym_err_GT_PIPE] = ACTIONS(1571), - [anon_sym_out_GT_PIPE] = ACTIONS(1571), - [anon_sym_e_GT_PIPE] = ACTIONS(1571), - [anon_sym_o_GT_PIPE] = ACTIONS(1571), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1571), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1571), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1571), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1571), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_LPAREN] = ACTIONS(1571), - [anon_sym_RPAREN] = ACTIONS(1571), - [anon_sym_DOLLAR] = ACTIONS(1569), - [anon_sym_DASH_DASH] = ACTIONS(1571), - [anon_sym_DASH] = ACTIONS(1569), - [aux_sym_ctrl_match_token1] = ACTIONS(1571), - [anon_sym_RBRACE] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1569), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1571), - [anon_sym_DOT_DOT_LT] = ACTIONS(1571), - [aux_sym__immediate_decimal_token1] = ACTIONS(4968), - [aux_sym__immediate_decimal_token2] = ACTIONS(4970), - [aux_sym__val_number_decimal_token1] = ACTIONS(1569), - [aux_sym__val_number_decimal_token2] = ACTIONS(1571), - [aux_sym__val_number_decimal_token3] = ACTIONS(1571), - [aux_sym__val_number_decimal_token4] = ACTIONS(1571), - [aux_sym__val_number_token1] = ACTIONS(1571), - [aux_sym__val_number_token2] = ACTIONS(1571), - [aux_sym__val_number_token3] = ACTIONS(1571), - [anon_sym_0b] = ACTIONS(1569), - [anon_sym_0o] = ACTIONS(1569), - [anon_sym_0x] = ACTIONS(1569), - [sym_val_date] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [sym__str_single_quotes] = ACTIONS(1571), - [sym__str_back_ticks] = ACTIONS(1571), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1571), - [anon_sym_err_GT] = ACTIONS(1569), - [anon_sym_out_GT] = ACTIONS(1569), - [anon_sym_e_GT] = ACTIONS(1569), - [anon_sym_o_GT] = ACTIONS(1569), - [anon_sym_err_PLUSout_GT] = ACTIONS(1569), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1569), - [anon_sym_o_PLUSe_GT] = ACTIONS(1569), - [anon_sym_e_PLUSo_GT] = ACTIONS(1569), - [anon_sym_err_GT_GT] = ACTIONS(1571), - [anon_sym_out_GT_GT] = ACTIONS(1571), - [anon_sym_e_GT_GT] = ACTIONS(1571), - [anon_sym_o_GT_GT] = ACTIONS(1571), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1571), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1571), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1571), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1571), - [aux_sym_unquoted_token1] = ACTIONS(1569), - [anon_sym_POUND] = ACTIONS(247), - }, - [1653] = { - [sym_comment] = STATE(1653), - [anon_sym_true] = ACTIONS(2097), - [anon_sym_false] = ACTIONS(2097), - [anon_sym_null] = ACTIONS(2097), - [aux_sym_cmd_identifier_token38] = ACTIONS(2097), - [aux_sym_cmd_identifier_token39] = ACTIONS(2097), - [aux_sym_cmd_identifier_token40] = ACTIONS(2097), - [sym__newline] = ACTIONS(2101), - [anon_sym_SEMI] = ACTIONS(2101), - [anon_sym_PIPE] = ACTIONS(2101), - [anon_sym_err_GT_PIPE] = ACTIONS(2101), - [anon_sym_out_GT_PIPE] = ACTIONS(2101), - [anon_sym_e_GT_PIPE] = ACTIONS(2101), - [anon_sym_o_GT_PIPE] = ACTIONS(2101), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2101), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2101), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2101), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2101), - [anon_sym_LBRACK] = ACTIONS(2101), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym_RPAREN] = ACTIONS(2101), - [anon_sym_DOLLAR] = ACTIONS(2097), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [aux_sym_ctrl_match_token1] = ACTIONS(2101), - [anon_sym_RBRACE] = ACTIONS(2101), - [anon_sym_DOT_DOT] = ACTIONS(2097), - [anon_sym_LPAREN2] = ACTIONS(2099), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2097), - [anon_sym_DOT_DOT_LT] = ACTIONS(2097), - [aux_sym__val_number_decimal_token1] = ACTIONS(2097), - [aux_sym__val_number_decimal_token2] = ACTIONS(2097), - [aux_sym__val_number_decimal_token3] = ACTIONS(2097), - [aux_sym__val_number_decimal_token4] = ACTIONS(2097), - [aux_sym__val_number_token1] = ACTIONS(2097), - [aux_sym__val_number_token2] = ACTIONS(2097), - [aux_sym__val_number_token3] = ACTIONS(2097), - [anon_sym_0b] = ACTIONS(2097), - [anon_sym_0o] = ACTIONS(2097), - [anon_sym_0x] = ACTIONS(2097), - [sym_val_date] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(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_err_GT] = ACTIONS(2097), - [anon_sym_out_GT] = ACTIONS(2097), - [anon_sym_e_GT] = ACTIONS(2097), - [anon_sym_o_GT] = ACTIONS(2097), - [anon_sym_err_PLUSout_GT] = ACTIONS(2097), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2097), - [anon_sym_o_PLUSe_GT] = ACTIONS(2097), - [anon_sym_e_PLUSo_GT] = ACTIONS(2097), - [anon_sym_err_GT_GT] = ACTIONS(2097), - [anon_sym_out_GT_GT] = ACTIONS(2097), - [anon_sym_e_GT_GT] = ACTIONS(2097), - [anon_sym_o_GT_GT] = ACTIONS(2097), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2097), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2097), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2097), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2097), - [aux_sym_unquoted_token1] = ACTIONS(2097), - [aux_sym_unquoted_token4] = ACTIONS(2103), - [anon_sym_POUND] = ACTIONS(3), - }, - [1654] = { - [sym_comment] = STATE(1654), - [anon_sym_true] = ACTIONS(2105), - [anon_sym_false] = ACTIONS(2105), - [anon_sym_null] = ACTIONS(2105), - [aux_sym_cmd_identifier_token38] = ACTIONS(2105), - [aux_sym_cmd_identifier_token39] = ACTIONS(2105), - [aux_sym_cmd_identifier_token40] = ACTIONS(2105), - [sym__newline] = ACTIONS(2107), - [anon_sym_SEMI] = ACTIONS(2107), - [anon_sym_PIPE] = ACTIONS(2107), - [anon_sym_err_GT_PIPE] = ACTIONS(2107), - [anon_sym_out_GT_PIPE] = ACTIONS(2107), - [anon_sym_e_GT_PIPE] = ACTIONS(2107), - [anon_sym_o_GT_PIPE] = ACTIONS(2107), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2107), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2107), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2107), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2107), - [anon_sym_LBRACK] = ACTIONS(2107), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_RPAREN] = ACTIONS(2107), - [anon_sym_DOLLAR] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [aux_sym_ctrl_match_token1] = ACTIONS(2107), - [anon_sym_RBRACE] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2105), - [anon_sym_LPAREN2] = ACTIONS(2099), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2105), - [anon_sym_DOT_DOT_LT] = ACTIONS(2105), - [aux_sym__val_number_decimal_token1] = ACTIONS(2105), - [aux_sym__val_number_decimal_token2] = ACTIONS(2105), - [aux_sym__val_number_decimal_token3] = ACTIONS(2105), - [aux_sym__val_number_decimal_token4] = ACTIONS(2105), - [aux_sym__val_number_token1] = ACTIONS(2105), - [aux_sym__val_number_token2] = ACTIONS(2105), - [aux_sym__val_number_token3] = ACTIONS(2105), - [anon_sym_0b] = ACTIONS(2105), - [anon_sym_0o] = ACTIONS(2105), - [anon_sym_0x] = ACTIONS(2105), - [sym_val_date] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(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_err_GT] = ACTIONS(2105), - [anon_sym_out_GT] = ACTIONS(2105), - [anon_sym_e_GT] = ACTIONS(2105), - [anon_sym_o_GT] = ACTIONS(2105), - [anon_sym_err_PLUSout_GT] = ACTIONS(2105), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2105), - [anon_sym_o_PLUSe_GT] = ACTIONS(2105), - [anon_sym_e_PLUSo_GT] = ACTIONS(2105), - [anon_sym_err_GT_GT] = ACTIONS(2105), - [anon_sym_out_GT_GT] = ACTIONS(2105), - [anon_sym_e_GT_GT] = ACTIONS(2105), - [anon_sym_o_GT_GT] = ACTIONS(2105), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2105), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2105), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2105), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2105), - [aux_sym_unquoted_token1] = ACTIONS(2105), - [aux_sym_unquoted_token4] = ACTIONS(2103), - [anon_sym_POUND] = ACTIONS(3), - }, - [1655] = { - [sym_comment] = STATE(1655), - [aux_sym_cmd_identifier_token41] = ACTIONS(1519), - [sym__newline] = ACTIONS(1521), - [anon_sym_SEMI] = ACTIONS(1521), - [anon_sym_PIPE] = ACTIONS(1521), - [anon_sym_err_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_GT_PIPE] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), - [anon_sym_RPAREN] = ACTIONS(1521), - [anon_sym_RBRACE] = ACTIONS(1521), - [aux_sym_expr_binary_token1] = ACTIONS(1521), - [aux_sym_expr_binary_token2] = ACTIONS(1521), - [aux_sym_expr_binary_token3] = ACTIONS(1521), - [aux_sym_expr_binary_token4] = ACTIONS(1521), - [aux_sym_expr_binary_token5] = ACTIONS(1521), - [aux_sym_expr_binary_token6] = ACTIONS(1521), - [aux_sym_expr_binary_token7] = ACTIONS(1521), - [aux_sym_expr_binary_token8] = ACTIONS(1521), - [aux_sym_expr_binary_token9] = ACTIONS(1521), - [aux_sym_expr_binary_token10] = ACTIONS(1521), - [aux_sym_expr_binary_token11] = ACTIONS(1521), - [aux_sym_expr_binary_token12] = ACTIONS(1521), - [aux_sym_expr_binary_token13] = ACTIONS(1521), - [aux_sym_expr_binary_token14] = ACTIONS(1521), - [aux_sym_expr_binary_token15] = ACTIONS(1521), - [aux_sym_expr_binary_token16] = ACTIONS(1521), - [aux_sym_expr_binary_token17] = ACTIONS(1521), - [aux_sym_expr_binary_token18] = ACTIONS(1521), - [aux_sym_expr_binary_token19] = ACTIONS(1521), - [aux_sym_expr_binary_token20] = ACTIONS(1521), - [aux_sym_expr_binary_token21] = ACTIONS(1521), - [aux_sym_expr_binary_token22] = ACTIONS(1521), - [aux_sym_expr_binary_token23] = ACTIONS(1521), - [aux_sym_expr_binary_token24] = ACTIONS(1521), - [aux_sym_expr_binary_token25] = ACTIONS(1521), - [aux_sym_expr_binary_token26] = ACTIONS(1521), - [aux_sym_expr_binary_token27] = ACTIONS(1521), - [aux_sym_expr_binary_token28] = ACTIONS(1521), - [anon_sym_DOT_DOT2] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), - [sym_filesize_unit] = ACTIONS(1521), - [sym_duration_unit] = ACTIONS(1521), - [anon_sym_err_GT] = ACTIONS(1519), - [anon_sym_out_GT] = ACTIONS(1519), - [anon_sym_e_GT] = ACTIONS(1519), - [anon_sym_o_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT] = ACTIONS(1519), - [anon_sym_err_GT_GT] = ACTIONS(1521), - [anon_sym_out_GT_GT] = ACTIONS(1521), - [anon_sym_e_GT_GT] = ACTIONS(1521), - [anon_sym_o_GT_GT] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), - [anon_sym_POUND] = ACTIONS(247), - }, - [1656] = { - [sym_comment] = STATE(1656), - [ts_builtin_sym_end] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1571), - [anon_sym_false] = ACTIONS(1571), - [anon_sym_null] = ACTIONS(1571), - [aux_sym_cmd_identifier_token38] = ACTIONS(1571), - [aux_sym_cmd_identifier_token39] = ACTIONS(1571), - [aux_sym_cmd_identifier_token40] = ACTIONS(1571), - [sym__newline] = ACTIONS(1571), - [anon_sym_SEMI] = ACTIONS(1571), - [anon_sym_PIPE] = ACTIONS(1571), - [anon_sym_err_GT_PIPE] = ACTIONS(1571), - [anon_sym_out_GT_PIPE] = ACTIONS(1571), - [anon_sym_e_GT_PIPE] = ACTIONS(1571), - [anon_sym_o_GT_PIPE] = ACTIONS(1571), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1571), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1571), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1571), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1571), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_LPAREN] = ACTIONS(1571), - [anon_sym_DOLLAR] = ACTIONS(1569), - [anon_sym_DASH_DASH] = ACTIONS(1571), - [anon_sym_DASH] = ACTIONS(1569), - [aux_sym_ctrl_match_token1] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1569), - [anon_sym_DOT_DOT2] = ACTIONS(1569), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1569), - [anon_sym_DOT_DOT_LT] = ACTIONS(1569), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1571), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1571), - [aux_sym__val_number_decimal_token1] = ACTIONS(1569), - [aux_sym__val_number_decimal_token2] = ACTIONS(1571), - [aux_sym__val_number_decimal_token3] = ACTIONS(1571), - [aux_sym__val_number_decimal_token4] = ACTIONS(1571), - [aux_sym__val_number_token1] = ACTIONS(1571), - [aux_sym__val_number_token2] = ACTIONS(1571), - [aux_sym__val_number_token3] = ACTIONS(1571), - [anon_sym_0b] = ACTIONS(1569), - [anon_sym_0o] = ACTIONS(1569), - [anon_sym_0x] = ACTIONS(1569), - [sym_val_date] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [sym__str_single_quotes] = ACTIONS(1571), - [sym__str_back_ticks] = ACTIONS(1571), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1571), - [anon_sym_err_GT] = ACTIONS(1569), - [anon_sym_out_GT] = ACTIONS(1569), - [anon_sym_e_GT] = ACTIONS(1569), - [anon_sym_o_GT] = ACTIONS(1569), - [anon_sym_err_PLUSout_GT] = ACTIONS(1569), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1569), - [anon_sym_o_PLUSe_GT] = ACTIONS(1569), - [anon_sym_e_PLUSo_GT] = ACTIONS(1569), - [anon_sym_err_GT_GT] = ACTIONS(1571), - [anon_sym_out_GT_GT] = ACTIONS(1571), - [anon_sym_e_GT_GT] = ACTIONS(1571), - [anon_sym_o_GT_GT] = ACTIONS(1571), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1571), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1571), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1571), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1571), - [aux_sym_unquoted_token1] = ACTIONS(1569), - [anon_sym_POUND] = ACTIONS(247), - }, - [1657] = { - [sym_comment] = STATE(1657), - [ts_builtin_sym_end] = ACTIONS(1650), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [anon_sym_null] = ACTIONS(1650), - [aux_sym_cmd_identifier_token38] = ACTIONS(1650), - [aux_sym_cmd_identifier_token39] = ACTIONS(1650), - [aux_sym_cmd_identifier_token40] = ACTIONS(1650), - [sym__newline] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_err_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_GT_PIPE] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_DASH] = ACTIONS(1648), - [aux_sym_ctrl_match_token1] = ACTIONS(1650), - [anon_sym_DOT_DOT] = ACTIONS(1648), - [anon_sym_LPAREN2] = ACTIONS(1650), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT] = ACTIONS(1650), - [aux_sym__immediate_decimal_token2] = ACTIONS(4972), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token3] = ACTIONS(1650), - [aux_sym__val_number_decimal_token4] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [anon_sym_0b] = ACTIONS(1648), - [anon_sym_0o] = ACTIONS(1648), - [anon_sym_0x] = ACTIONS(1648), - [sym_val_date] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), - [anon_sym_err_GT] = ACTIONS(1648), - [anon_sym_out_GT] = ACTIONS(1648), - [anon_sym_e_GT] = ACTIONS(1648), - [anon_sym_o_GT] = ACTIONS(1648), - [anon_sym_err_PLUSout_GT] = ACTIONS(1648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1648), - [anon_sym_o_PLUSe_GT] = ACTIONS(1648), - [anon_sym_e_PLUSo_GT] = ACTIONS(1648), - [anon_sym_err_GT_GT] = ACTIONS(1650), - [anon_sym_out_GT_GT] = ACTIONS(1650), - [anon_sym_e_GT_GT] = ACTIONS(1650), - [anon_sym_o_GT_GT] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1650), - [aux_sym_unquoted_token1] = ACTIONS(1648), - [aux_sym_unquoted_token2] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(247), - }, - [1658] = { - [sym_path] = STATE(1868), - [sym_comment] = STATE(1658), - [aux_sym_cell_path_repeat1] = STATE(1658), - [ts_builtin_sym_end] = ACTIONS(957), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_null] = ACTIONS(957), - [aux_sym_cmd_identifier_token38] = ACTIONS(957), - [aux_sym_cmd_identifier_token39] = ACTIONS(957), - [aux_sym_cmd_identifier_token40] = ACTIONS(957), - [sym__newline] = ACTIONS(957), - [anon_sym_SEMI] = ACTIONS(957), - [anon_sym_PIPE] = ACTIONS(957), - [anon_sym_err_GT_PIPE] = ACTIONS(957), - [anon_sym_out_GT_PIPE] = ACTIONS(957), - [anon_sym_e_GT_PIPE] = ACTIONS(957), - [anon_sym_o_GT_PIPE] = ACTIONS(957), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(957), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(957), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(957), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(957), - [anon_sym_LBRACK] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(957), - [anon_sym_DOLLAR] = ACTIONS(955), - [anon_sym_DASH_DASH] = ACTIONS(957), - [anon_sym_DASH] = ACTIONS(955), - [aux_sym_ctrl_match_token1] = ACTIONS(957), - [anon_sym_DOT_DOT] = ACTIONS(955), - [anon_sym_DOT] = ACTIONS(4974), - [anon_sym_DOT_DOT_EQ] = ACTIONS(957), - [anon_sym_DOT_DOT_LT] = ACTIONS(957), - [aux_sym__val_number_decimal_token1] = ACTIONS(955), - [aux_sym__val_number_decimal_token2] = ACTIONS(957), - [aux_sym__val_number_decimal_token3] = ACTIONS(957), - [aux_sym__val_number_decimal_token4] = ACTIONS(957), - [aux_sym__val_number_token1] = ACTIONS(957), - [aux_sym__val_number_token2] = ACTIONS(957), - [aux_sym__val_number_token3] = ACTIONS(957), - [anon_sym_0b] = ACTIONS(955), - [anon_sym_0o] = ACTIONS(955), - [anon_sym_0x] = ACTIONS(955), - [sym_val_date] = ACTIONS(957), - [anon_sym_DQUOTE] = ACTIONS(957), - [sym__str_single_quotes] = ACTIONS(957), - [sym__str_back_ticks] = ACTIONS(957), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(957), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(957), - [anon_sym_err_GT] = ACTIONS(955), - [anon_sym_out_GT] = ACTIONS(955), - [anon_sym_e_GT] = ACTIONS(955), - [anon_sym_o_GT] = ACTIONS(955), - [anon_sym_err_PLUSout_GT] = ACTIONS(955), - [anon_sym_out_PLUSerr_GT] = ACTIONS(955), - [anon_sym_o_PLUSe_GT] = ACTIONS(955), - [anon_sym_e_PLUSo_GT] = ACTIONS(955), - [anon_sym_err_GT_GT] = ACTIONS(957), - [anon_sym_out_GT_GT] = ACTIONS(957), - [anon_sym_e_GT_GT] = ACTIONS(957), - [anon_sym_o_GT_GT] = ACTIONS(957), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(957), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(957), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(957), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(957), - [aux_sym_unquoted_token1] = ACTIONS(955), - [anon_sym_POUND] = ACTIONS(247), - }, - [1659] = { - [sym_comment] = STATE(1659), - [aux_sym_cmd_identifier_token41] = ACTIONS(1585), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_RPAREN] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1587), - [aux_sym_expr_binary_token1] = ACTIONS(1587), - [aux_sym_expr_binary_token2] = ACTIONS(1587), - [aux_sym_expr_binary_token3] = ACTIONS(1587), - [aux_sym_expr_binary_token4] = ACTIONS(1587), - [aux_sym_expr_binary_token5] = ACTIONS(1587), - [aux_sym_expr_binary_token6] = ACTIONS(1587), - [aux_sym_expr_binary_token7] = ACTIONS(1587), - [aux_sym_expr_binary_token8] = ACTIONS(1587), - [aux_sym_expr_binary_token9] = ACTIONS(1587), - [aux_sym_expr_binary_token10] = ACTIONS(1587), - [aux_sym_expr_binary_token11] = ACTIONS(1587), - [aux_sym_expr_binary_token12] = ACTIONS(1587), - [aux_sym_expr_binary_token13] = ACTIONS(1587), - [aux_sym_expr_binary_token14] = ACTIONS(1587), - [aux_sym_expr_binary_token15] = ACTIONS(1587), - [aux_sym_expr_binary_token16] = ACTIONS(1587), - [aux_sym_expr_binary_token17] = ACTIONS(1587), - [aux_sym_expr_binary_token18] = ACTIONS(1587), - [aux_sym_expr_binary_token19] = ACTIONS(1587), - [aux_sym_expr_binary_token20] = ACTIONS(1587), - [aux_sym_expr_binary_token21] = ACTIONS(1587), - [aux_sym_expr_binary_token22] = ACTIONS(1587), - [aux_sym_expr_binary_token23] = ACTIONS(1587), - [aux_sym_expr_binary_token24] = ACTIONS(1587), - [aux_sym_expr_binary_token25] = ACTIONS(1587), - [aux_sym_expr_binary_token26] = ACTIONS(1587), - [aux_sym_expr_binary_token27] = ACTIONS(1587), - [aux_sym_expr_binary_token28] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1585), - [anon_sym_out_GT] = ACTIONS(1585), - [anon_sym_e_GT] = ACTIONS(1585), - [anon_sym_o_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT] = ACTIONS(1585), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), - [anon_sym_POUND] = ACTIONS(247), - }, - [1660] = { - [sym_comment] = STATE(1660), - [ts_builtin_sym_end] = ACTIONS(1945), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1945), - [aux_sym_cmd_identifier_token38] = ACTIONS(1945), - [aux_sym_cmd_identifier_token39] = ACTIONS(1945), - [aux_sym_cmd_identifier_token40] = ACTIONS(1945), - [sym__newline] = ACTIONS(1945), - [anon_sym_SEMI] = ACTIONS(1945), - [anon_sym_PIPE] = ACTIONS(1945), - [anon_sym_err_GT_PIPE] = ACTIONS(1945), - [anon_sym_out_GT_PIPE] = ACTIONS(1945), - [anon_sym_e_GT_PIPE] = ACTIONS(1945), - [anon_sym_o_GT_PIPE] = ACTIONS(1945), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1945), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1945), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1945), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1945), - [anon_sym_LBRACK] = ACTIONS(1945), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_DOLLAR] = ACTIONS(1943), - [anon_sym_DASH_DASH] = ACTIONS(1945), - [anon_sym_DASH] = ACTIONS(1943), - [aux_sym_ctrl_match_token1] = ACTIONS(1945), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [anon_sym_DOT_DOT2] = ACTIONS(1943), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1943), - [anon_sym_DOT_DOT_LT] = ACTIONS(1943), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1945), - [aux_sym__val_number_decimal_token4] = ACTIONS(1945), - [aux_sym__val_number_token1] = ACTIONS(1945), - [aux_sym__val_number_token2] = ACTIONS(1945), - [aux_sym__val_number_token3] = ACTIONS(1945), - [anon_sym_0b] = ACTIONS(1943), - [anon_sym_0o] = ACTIONS(1943), - [anon_sym_0x] = ACTIONS(1943), - [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_err_GT] = ACTIONS(1943), - [anon_sym_out_GT] = ACTIONS(1943), - [anon_sym_e_GT] = ACTIONS(1943), - [anon_sym_o_GT] = ACTIONS(1943), - [anon_sym_err_PLUSout_GT] = ACTIONS(1943), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1943), - [anon_sym_o_PLUSe_GT] = ACTIONS(1943), - [anon_sym_e_PLUSo_GT] = ACTIONS(1943), - [anon_sym_err_GT_GT] = ACTIONS(1945), - [anon_sym_out_GT_GT] = ACTIONS(1945), - [anon_sym_e_GT_GT] = ACTIONS(1945), - [anon_sym_o_GT_GT] = ACTIONS(1945), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1945), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1945), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1945), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1945), - [aux_sym_unquoted_token1] = ACTIONS(1943), - [anon_sym_POUND] = ACTIONS(247), - }, - [1661] = { - [sym_comment] = STATE(1661), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [anon_sym_null] = ACTIONS(1591), - [aux_sym_cmd_identifier_token38] = ACTIONS(1591), - [aux_sym_cmd_identifier_token39] = ACTIONS(1591), - [aux_sym_cmd_identifier_token40] = ACTIONS(1591), - [sym__newline] = ACTIONS(1591), - [anon_sym_SEMI] = ACTIONS(1591), - [anon_sym_PIPE] = ACTIONS(1591), - [anon_sym_err_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_GT_PIPE] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), - [anon_sym_LBRACK] = ACTIONS(1591), - [anon_sym_LPAREN] = ACTIONS(1591), - [anon_sym_RPAREN] = ACTIONS(1591), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_DASH] = ACTIONS(1589), - [aux_sym_ctrl_match_token1] = ACTIONS(1591), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_DOT] = ACTIONS(4977), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1591), - [anon_sym_DOT_DOT_LT] = ACTIONS(1591), - [aux_sym__immediate_decimal_token2] = ACTIONS(4979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token3] = ACTIONS(1591), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [aux_sym__val_number_token1] = ACTIONS(1591), - [aux_sym__val_number_token2] = ACTIONS(1591), - [aux_sym__val_number_token3] = ACTIONS(1591), - [anon_sym_0b] = ACTIONS(1589), - [anon_sym_0o] = ACTIONS(1589), - [anon_sym_0x] = ACTIONS(1589), - [sym_val_date] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym__str_single_quotes] = ACTIONS(1591), - [sym__str_back_ticks] = ACTIONS(1591), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), - [anon_sym_err_GT] = ACTIONS(1589), - [anon_sym_out_GT] = ACTIONS(1589), - [anon_sym_e_GT] = ACTIONS(1589), - [anon_sym_o_GT] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT] = ACTIONS(1589), - [anon_sym_err_GT_GT] = ACTIONS(1591), - [anon_sym_out_GT_GT] = ACTIONS(1591), - [anon_sym_e_GT_GT] = ACTIONS(1591), - [anon_sym_o_GT_GT] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), - [aux_sym_unquoted_token1] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(247), - }, - [1662] = { - [sym_comment] = STATE(1662), - [aux_sym_cmd_identifier_token41] = ACTIONS(1585), - [sym__newline] = ACTIONS(1585), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_RPAREN] = ACTIONS(1587), - [aux_sym_ctrl_match_token1] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1587), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1585), - [anon_sym_out_GT] = ACTIONS(1585), - [anon_sym_e_GT] = ACTIONS(1585), - [anon_sym_o_GT] = ACTIONS(1585), - [anon_sym_err_PLUSout_GT] = ACTIONS(1585), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), - [anon_sym_o_PLUSe_GT] = ACTIONS(1585), - [anon_sym_e_PLUSo_GT] = ACTIONS(1585), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), - [anon_sym_POUND] = ACTIONS(247), - }, - [1663] = { - [sym_comment] = STATE(1663), - [ts_builtin_sym_end] = ACTIONS(1650), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [anon_sym_null] = ACTIONS(1650), - [aux_sym_cmd_identifier_token38] = ACTIONS(1650), - [aux_sym_cmd_identifier_token39] = ACTIONS(1650), - [aux_sym_cmd_identifier_token40] = ACTIONS(1650), - [sym__newline] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_err_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_GT_PIPE] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_DASH] = ACTIONS(1648), - [aux_sym_ctrl_match_token1] = ACTIONS(1650), - [anon_sym_DOT_DOT] = ACTIONS(1648), - [anon_sym_DOT_DOT2] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1648), - [anon_sym_DOT_DOT_LT] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token3] = ACTIONS(1650), - [aux_sym__val_number_decimal_token4] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [anon_sym_0b] = ACTIONS(1648), - [anon_sym_0o] = ACTIONS(1648), - [anon_sym_0x] = ACTIONS(1648), - [sym_val_date] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), - [anon_sym_err_GT] = ACTIONS(1648), - [anon_sym_out_GT] = ACTIONS(1648), - [anon_sym_e_GT] = ACTIONS(1648), - [anon_sym_o_GT] = ACTIONS(1648), - [anon_sym_err_PLUSout_GT] = ACTIONS(1648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1648), - [anon_sym_o_PLUSe_GT] = ACTIONS(1648), - [anon_sym_e_PLUSo_GT] = ACTIONS(1648), - [anon_sym_err_GT_GT] = ACTIONS(1650), - [anon_sym_out_GT_GT] = ACTIONS(1650), - [anon_sym_e_GT_GT] = ACTIONS(1650), - [anon_sym_o_GT_GT] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1650), - [aux_sym_unquoted_token1] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(247), - }, - [1664] = { - [sym_comment] = STATE(1664), - [ts_builtin_sym_end] = ACTIONS(1723), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1723), - [aux_sym_cmd_identifier_token38] = ACTIONS(1723), - [aux_sym_cmd_identifier_token39] = ACTIONS(1723), - [aux_sym_cmd_identifier_token40] = ACTIONS(1723), - [sym__newline] = ACTIONS(1723), - [anon_sym_SEMI] = ACTIONS(1723), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_err_GT_PIPE] = ACTIONS(1723), - [anon_sym_out_GT_PIPE] = ACTIONS(1723), - [anon_sym_e_GT_PIPE] = ACTIONS(1723), - [anon_sym_o_GT_PIPE] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), - [anon_sym_LBRACK] = ACTIONS(1723), - [anon_sym_LPAREN] = ACTIONS(1723), - [anon_sym_DOLLAR] = ACTIONS(1721), - [anon_sym_DASH_DASH] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1721), - [aux_sym_ctrl_match_token1] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1721), - [anon_sym_DOT_DOT2] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token3] = ACTIONS(1723), - [aux_sym__val_number_decimal_token4] = ACTIONS(1723), - [aux_sym__val_number_token1] = ACTIONS(1723), - [aux_sym__val_number_token2] = ACTIONS(1723), - [aux_sym__val_number_token3] = ACTIONS(1723), - [anon_sym_0b] = ACTIONS(1721), - [anon_sym_0o] = ACTIONS(1721), - [anon_sym_0x] = ACTIONS(1721), - [sym_val_date] = ACTIONS(1723), - [anon_sym_DQUOTE] = ACTIONS(1723), - [sym__str_single_quotes] = ACTIONS(1723), - [sym__str_back_ticks] = ACTIONS(1723), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1723), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1723), - [anon_sym_err_GT] = ACTIONS(1721), - [anon_sym_out_GT] = ACTIONS(1721), - [anon_sym_e_GT] = ACTIONS(1721), - [anon_sym_o_GT] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT] = ACTIONS(1721), - [anon_sym_err_GT_GT] = ACTIONS(1723), - [anon_sym_out_GT_GT] = ACTIONS(1723), - [anon_sym_e_GT_GT] = ACTIONS(1723), - [anon_sym_o_GT_GT] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), - [aux_sym_unquoted_token1] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(247), - }, - [1665] = { - [sym_comment] = STATE(1665), - [sym__newline] = ACTIONS(2239), - [anon_sym_SEMI] = ACTIONS(2239), - [anon_sym_PIPE] = ACTIONS(2239), - [anon_sym_err_GT_PIPE] = ACTIONS(2239), - [anon_sym_out_GT_PIPE] = ACTIONS(2239), - [anon_sym_e_GT_PIPE] = ACTIONS(2239), - [anon_sym_o_GT_PIPE] = ACTIONS(2239), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2239), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2239), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2239), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2239), - [anon_sym_RPAREN] = ACTIONS(2239), - [anon_sym_COMMA] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2235), - [aux_sym_ctrl_match_token1] = ACTIONS(2239), - [anon_sym_RBRACE] = ACTIONS(2239), - [anon_sym_EQ_GT] = ACTIONS(2239), - [aux_sym_expr_binary_token1] = ACTIONS(2239), - [aux_sym_expr_binary_token2] = ACTIONS(2239), - [aux_sym_expr_binary_token3] = ACTIONS(2239), - [aux_sym_expr_binary_token4] = ACTIONS(2239), - [aux_sym_expr_binary_token5] = ACTIONS(2239), - [aux_sym_expr_binary_token6] = ACTIONS(2239), - [aux_sym_expr_binary_token7] = ACTIONS(2239), - [aux_sym_expr_binary_token8] = ACTIONS(2239), - [aux_sym_expr_binary_token9] = ACTIONS(2239), - [aux_sym_expr_binary_token10] = ACTIONS(2239), - [aux_sym_expr_binary_token11] = ACTIONS(2239), - [aux_sym_expr_binary_token12] = ACTIONS(2239), - [aux_sym_expr_binary_token13] = ACTIONS(2239), - [aux_sym_expr_binary_token14] = ACTIONS(2239), - [aux_sym_expr_binary_token15] = ACTIONS(2239), - [aux_sym_expr_binary_token16] = ACTIONS(2239), - [aux_sym_expr_binary_token17] = ACTIONS(2239), - [aux_sym_expr_binary_token18] = ACTIONS(2239), - [aux_sym_expr_binary_token19] = ACTIONS(2239), - [aux_sym_expr_binary_token20] = ACTIONS(2239), - [aux_sym_expr_binary_token21] = ACTIONS(2239), - [aux_sym_expr_binary_token22] = ACTIONS(2239), - [aux_sym_expr_binary_token23] = ACTIONS(2239), - [aux_sym_expr_binary_token24] = ACTIONS(2239), - [aux_sym_expr_binary_token25] = ACTIONS(2239), - [aux_sym_expr_binary_token26] = ACTIONS(2239), - [aux_sym_expr_binary_token27] = ACTIONS(2239), - [aux_sym_expr_binary_token28] = ACTIONS(2239), - [anon_sym_LBRACK2] = ACTIONS(4981), - [anon_sym_err_GT] = ACTIONS(2235), - [anon_sym_out_GT] = ACTIONS(2235), - [anon_sym_e_GT] = ACTIONS(2235), - [anon_sym_o_GT] = ACTIONS(2235), - [anon_sym_err_PLUSout_GT] = ACTIONS(2235), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2235), - [anon_sym_o_PLUSe_GT] = ACTIONS(2235), - [anon_sym_e_PLUSo_GT] = ACTIONS(2235), - [anon_sym_err_GT_GT] = ACTIONS(2239), - [anon_sym_out_GT_GT] = ACTIONS(2239), - [anon_sym_e_GT_GT] = ACTIONS(2239), - [anon_sym_o_GT_GT] = ACTIONS(2239), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2239), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2239), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2239), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2239), - [anon_sym_POUND] = ACTIONS(247), - }, - [1666] = { - [sym_comment] = STATE(1666), - [aux_sym_cmd_identifier_token41] = ACTIONS(4983), - [sym__newline] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_RPAREN] = ACTIONS(1537), - [anon_sym_RBRACE] = ACTIONS(1537), - [aux_sym_expr_binary_token1] = ACTIONS(1537), - [aux_sym_expr_binary_token2] = ACTIONS(1537), - [aux_sym_expr_binary_token3] = ACTIONS(1537), - [aux_sym_expr_binary_token4] = ACTIONS(1537), - [aux_sym_expr_binary_token5] = ACTIONS(1537), - [aux_sym_expr_binary_token6] = ACTIONS(1537), - [aux_sym_expr_binary_token7] = ACTIONS(1537), - [aux_sym_expr_binary_token8] = ACTIONS(1537), - [aux_sym_expr_binary_token9] = ACTIONS(1537), - [aux_sym_expr_binary_token10] = ACTIONS(1537), - [aux_sym_expr_binary_token11] = ACTIONS(1537), - [aux_sym_expr_binary_token12] = ACTIONS(1537), - [aux_sym_expr_binary_token13] = ACTIONS(1537), - [aux_sym_expr_binary_token14] = ACTIONS(1537), - [aux_sym_expr_binary_token15] = ACTIONS(1537), - [aux_sym_expr_binary_token16] = ACTIONS(1537), - [aux_sym_expr_binary_token17] = ACTIONS(1537), - [aux_sym_expr_binary_token18] = ACTIONS(1537), - [aux_sym_expr_binary_token19] = ACTIONS(1537), - [aux_sym_expr_binary_token20] = ACTIONS(1537), - [aux_sym_expr_binary_token21] = ACTIONS(1537), - [aux_sym_expr_binary_token22] = ACTIONS(1537), - [aux_sym_expr_binary_token23] = ACTIONS(1537), - [aux_sym_expr_binary_token24] = ACTIONS(1537), - [aux_sym_expr_binary_token25] = ACTIONS(1537), - [aux_sym_expr_binary_token26] = ACTIONS(1537), - [aux_sym_expr_binary_token27] = ACTIONS(1537), - [aux_sym_expr_binary_token28] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(4934), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4936), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4936), - [sym_filesize_unit] = ACTIONS(4985), - [sym_duration_unit] = ACTIONS(4987), - [anon_sym_err_GT] = ACTIONS(1525), - [anon_sym_out_GT] = ACTIONS(1525), - [anon_sym_e_GT] = ACTIONS(1525), - [anon_sym_o_GT] = ACTIONS(1525), - [anon_sym_err_PLUSout_GT] = ACTIONS(1525), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), - [anon_sym_o_PLUSe_GT] = ACTIONS(1525), - [anon_sym_e_PLUSo_GT] = ACTIONS(1525), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), - [anon_sym_POUND] = ACTIONS(247), - }, - [1667] = { - [sym_comment] = STATE(1667), - [sym__newline] = ACTIONS(1473), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_err_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_GT_PIPE] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), - [anon_sym_RPAREN] = ACTIONS(1475), - [anon_sym_LPAREN2] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1475), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [sym_filesize_unit] = ACTIONS(1475), - [sym_duration_unit] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1473), - [anon_sym_out_GT] = ACTIONS(1473), - [anon_sym_e_GT] = ACTIONS(1473), - [anon_sym_o_GT] = ACTIONS(1473), - [anon_sym_err_PLUSout_GT] = ACTIONS(1473), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), - [anon_sym_o_PLUSe_GT] = ACTIONS(1473), - [anon_sym_e_PLUSo_GT] = ACTIONS(1473), - [anon_sym_err_GT_GT] = ACTIONS(1475), - [anon_sym_out_GT_GT] = ACTIONS(1475), - [anon_sym_e_GT_GT] = ACTIONS(1475), - [anon_sym_o_GT_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), - [aux_sym_unquoted_token2] = ACTIONS(1473), - [anon_sym_POUND] = ACTIONS(247), - }, - [1668] = { - [sym_comment] = STATE(1668), - [sym__newline] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_DASH_DASH] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(966), - [aux_sym_ctrl_match_token1] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_EQ_GT] = ACTIONS(968), - [anon_sym_QMARK2] = ACTIONS(968), - [aux_sym_expr_binary_token1] = ACTIONS(968), - [aux_sym_expr_binary_token2] = ACTIONS(968), - [aux_sym_expr_binary_token3] = ACTIONS(968), - [aux_sym_expr_binary_token4] = ACTIONS(968), - [aux_sym_expr_binary_token5] = ACTIONS(968), - [aux_sym_expr_binary_token6] = ACTIONS(968), - [aux_sym_expr_binary_token7] = ACTIONS(968), - [aux_sym_expr_binary_token8] = ACTIONS(968), - [aux_sym_expr_binary_token9] = ACTIONS(968), - [aux_sym_expr_binary_token10] = ACTIONS(968), - [aux_sym_expr_binary_token11] = ACTIONS(968), - [aux_sym_expr_binary_token12] = ACTIONS(968), - [aux_sym_expr_binary_token13] = ACTIONS(968), - [aux_sym_expr_binary_token14] = ACTIONS(968), - [aux_sym_expr_binary_token15] = ACTIONS(968), - [aux_sym_expr_binary_token16] = ACTIONS(968), - [aux_sym_expr_binary_token17] = ACTIONS(968), - [aux_sym_expr_binary_token18] = ACTIONS(968), - [aux_sym_expr_binary_token19] = ACTIONS(968), - [aux_sym_expr_binary_token20] = ACTIONS(968), - [aux_sym_expr_binary_token21] = ACTIONS(968), - [aux_sym_expr_binary_token22] = ACTIONS(968), - [aux_sym_expr_binary_token23] = ACTIONS(968), - [aux_sym_expr_binary_token24] = ACTIONS(968), - [aux_sym_expr_binary_token25] = ACTIONS(968), - [aux_sym_expr_binary_token26] = ACTIONS(968), - [aux_sym_expr_binary_token27] = ACTIONS(968), - [aux_sym_expr_binary_token28] = ACTIONS(968), - [anon_sym_DOT] = ACTIONS(968), - [aux_sym_record_entry_token1] = ACTIONS(968), - [anon_sym_err_GT] = ACTIONS(966), - [anon_sym_out_GT] = ACTIONS(966), - [anon_sym_e_GT] = ACTIONS(966), - [anon_sym_o_GT] = ACTIONS(966), - [anon_sym_err_PLUSout_GT] = ACTIONS(966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(966), - [anon_sym_o_PLUSe_GT] = ACTIONS(966), - [anon_sym_e_PLUSo_GT] = ACTIONS(966), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(247), - }, - [1669] = { - [sym_comment] = STATE(1669), - [aux_sym_cmd_identifier_token41] = ACTIONS(1481), - [sym__newline] = ACTIONS(1481), - [anon_sym_SEMI] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_err_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_GT_PIPE] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), - [anon_sym_RPAREN] = ACTIONS(1483), - [aux_sym_ctrl_match_token1] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1483), - [anon_sym_DOT_DOT2] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), - [sym_filesize_unit] = ACTIONS(1483), - [sym_duration_unit] = ACTIONS(1483), - [anon_sym_err_GT] = ACTIONS(1481), - [anon_sym_out_GT] = ACTIONS(1481), - [anon_sym_e_GT] = ACTIONS(1481), - [anon_sym_o_GT] = ACTIONS(1481), - [anon_sym_err_PLUSout_GT] = ACTIONS(1481), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), - [anon_sym_o_PLUSe_GT] = ACTIONS(1481), - [anon_sym_e_PLUSo_GT] = ACTIONS(1481), - [anon_sym_err_GT_GT] = ACTIONS(1483), - [anon_sym_out_GT_GT] = ACTIONS(1483), - [anon_sym_e_GT_GT] = ACTIONS(1483), - [anon_sym_o_GT_GT] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), - [anon_sym_POUND] = ACTIONS(247), - }, - [1670] = { - [sym__expr_parenthesized_immediate] = STATE(7678), - [sym_comment] = STATE(1670), - [anon_sym_true] = ACTIONS(4989), - [anon_sym_false] = ACTIONS(4989), - [anon_sym_null] = ACTIONS(4989), - [aux_sym_cmd_identifier_token38] = ACTIONS(4989), - [aux_sym_cmd_identifier_token39] = ACTIONS(4989), - [aux_sym_cmd_identifier_token40] = ACTIONS(4989), - [sym__newline] = ACTIONS(4989), - [anon_sym_SEMI] = ACTIONS(4989), - [anon_sym_PIPE] = ACTIONS(4989), - [anon_sym_err_GT_PIPE] = ACTIONS(4989), - [anon_sym_out_GT_PIPE] = ACTIONS(4989), - [anon_sym_e_GT_PIPE] = ACTIONS(4989), - [anon_sym_o_GT_PIPE] = ACTIONS(4989), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4989), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4989), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4989), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4989), - [anon_sym_LBRACK] = ACTIONS(4989), - [anon_sym_LPAREN] = ACTIONS(4991), - [anon_sym_RPAREN] = ACTIONS(4989), - [anon_sym_DOLLAR] = ACTIONS(4991), - [anon_sym_DASH_DASH] = ACTIONS(4989), - [anon_sym_DASH] = ACTIONS(4991), - [aux_sym_ctrl_match_token1] = ACTIONS(4989), - [anon_sym_RBRACE] = ACTIONS(4989), - [anon_sym_DOT_DOT] = ACTIONS(4991), - [anon_sym_LPAREN2] = ACTIONS(2947), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4989), - [anon_sym_DOT_DOT_LT] = ACTIONS(4989), - [aux_sym__val_number_decimal_token1] = ACTIONS(4991), - [aux_sym__val_number_decimal_token2] = ACTIONS(4989), - [aux_sym__val_number_decimal_token3] = ACTIONS(4989), - [aux_sym__val_number_decimal_token4] = ACTIONS(4989), - [aux_sym__val_number_token1] = ACTIONS(4989), - [aux_sym__val_number_token2] = ACTIONS(4989), - [aux_sym__val_number_token3] = ACTIONS(4989), - [anon_sym_0b] = ACTIONS(4991), - [anon_sym_0o] = ACTIONS(4991), - [anon_sym_0x] = ACTIONS(4991), - [sym_val_date] = ACTIONS(4989), - [anon_sym_DQUOTE] = ACTIONS(4989), - [sym__str_single_quotes] = ACTIONS(4989), - [sym__str_back_ticks] = ACTIONS(4989), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4989), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4989), - [anon_sym_err_GT] = ACTIONS(4991), - [anon_sym_out_GT] = ACTIONS(4991), - [anon_sym_e_GT] = ACTIONS(4991), - [anon_sym_o_GT] = ACTIONS(4991), - [anon_sym_err_PLUSout_GT] = ACTIONS(4991), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4991), - [anon_sym_o_PLUSe_GT] = ACTIONS(4991), - [anon_sym_e_PLUSo_GT] = ACTIONS(4991), - [anon_sym_err_GT_GT] = ACTIONS(4989), - [anon_sym_out_GT_GT] = ACTIONS(4989), - [anon_sym_e_GT_GT] = ACTIONS(4989), - [anon_sym_o_GT_GT] = ACTIONS(4989), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4989), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4989), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4989), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4989), - [aux_sym_unquoted_token1] = ACTIONS(4991), - [anon_sym_POUND] = ACTIONS(247), - }, - [1671] = { - [sym_comment] = STATE(1671), - [ts_builtin_sym_end] = ACTIONS(2072), - [anon_sym_true] = ACTIONS(2072), - [anon_sym_false] = ACTIONS(2072), - [anon_sym_null] = ACTIONS(2072), - [aux_sym_cmd_identifier_token38] = ACTIONS(2072), - [aux_sym_cmd_identifier_token39] = ACTIONS(2072), - [aux_sym_cmd_identifier_token40] = ACTIONS(2072), - [sym__newline] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_PIPE] = ACTIONS(2072), - [anon_sym_err_GT_PIPE] = ACTIONS(2072), - [anon_sym_out_GT_PIPE] = ACTIONS(2072), - [anon_sym_e_GT_PIPE] = ACTIONS(2072), - [anon_sym_o_GT_PIPE] = ACTIONS(2072), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2072), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2072), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2072), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2072), - [anon_sym_LBRACK] = ACTIONS(2072), - [anon_sym_LPAREN] = ACTIONS(2072), - [anon_sym_DOLLAR] = ACTIONS(2066), - [anon_sym_DASH_DASH] = ACTIONS(2072), - [anon_sym_DASH] = ACTIONS(2066), - [aux_sym_ctrl_match_token1] = ACTIONS(2072), - [anon_sym_DOT_DOT] = ACTIONS(2066), - [anon_sym_DOT_DOT2] = ACTIONS(4993), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2066), - [anon_sym_DOT_DOT_LT] = ACTIONS(2066), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4995), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4995), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2072), - [aux_sym__val_number_decimal_token3] = ACTIONS(2072), - [aux_sym__val_number_decimal_token4] = ACTIONS(2072), - [aux_sym__val_number_token1] = ACTIONS(2072), - [aux_sym__val_number_token2] = ACTIONS(2072), - [aux_sym__val_number_token3] = ACTIONS(2072), - [anon_sym_0b] = ACTIONS(2066), - [anon_sym_0o] = ACTIONS(2066), - [anon_sym_0x] = ACTIONS(2066), - [sym_val_date] = ACTIONS(2072), - [anon_sym_DQUOTE] = ACTIONS(2072), - [sym__str_single_quotes] = ACTIONS(2072), - [sym__str_back_ticks] = ACTIONS(2072), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2072), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2072), - [anon_sym_err_GT] = ACTIONS(2066), - [anon_sym_out_GT] = ACTIONS(2066), - [anon_sym_e_GT] = ACTIONS(2066), - [anon_sym_o_GT] = ACTIONS(2066), - [anon_sym_err_PLUSout_GT] = ACTIONS(2066), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2066), - [anon_sym_o_PLUSe_GT] = ACTIONS(2066), - [anon_sym_e_PLUSo_GT] = ACTIONS(2066), - [anon_sym_err_GT_GT] = ACTIONS(2072), - [anon_sym_out_GT_GT] = ACTIONS(2072), - [anon_sym_e_GT_GT] = ACTIONS(2072), - [anon_sym_o_GT_GT] = ACTIONS(2072), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2072), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2072), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2072), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2072), - [aux_sym_unquoted_token1] = ACTIONS(2066), - [anon_sym_POUND] = ACTIONS(247), - }, - [1672] = { - [sym_comment] = STATE(1672), - [ts_builtin_sym_end] = ACTIONS(1978), - [anon_sym_true] = ACTIONS(1978), - [anon_sym_false] = ACTIONS(1978), - [anon_sym_null] = ACTIONS(1978), - [aux_sym_cmd_identifier_token38] = ACTIONS(1978), - [aux_sym_cmd_identifier_token39] = ACTIONS(1978), - [aux_sym_cmd_identifier_token40] = ACTIONS(1978), - [sym__newline] = ACTIONS(1978), - [anon_sym_SEMI] = ACTIONS(1978), - [anon_sym_PIPE] = ACTIONS(1978), - [anon_sym_err_GT_PIPE] = ACTIONS(1978), - [anon_sym_out_GT_PIPE] = ACTIONS(1978), - [anon_sym_e_GT_PIPE] = ACTIONS(1978), - [anon_sym_o_GT_PIPE] = ACTIONS(1978), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1978), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1978), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1978), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1978), - [anon_sym_LBRACK] = ACTIONS(1978), - [anon_sym_LPAREN] = ACTIONS(1978), - [anon_sym_DOLLAR] = ACTIONS(1972), - [anon_sym_DASH_DASH] = ACTIONS(1978), - [anon_sym_DASH] = ACTIONS(1972), - [aux_sym_ctrl_match_token1] = ACTIONS(1978), - [anon_sym_DOT_DOT] = ACTIONS(1972), - [anon_sym_DOT_DOT2] = ACTIONS(4997), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1972), - [anon_sym_DOT_DOT_LT] = ACTIONS(1972), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4999), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4999), - [aux_sym__val_number_decimal_token1] = ACTIONS(1972), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1978), - [aux_sym__val_number_decimal_token4] = ACTIONS(1978), - [aux_sym__val_number_token1] = ACTIONS(1978), - [aux_sym__val_number_token2] = ACTIONS(1978), - [aux_sym__val_number_token3] = ACTIONS(1978), - [anon_sym_0b] = ACTIONS(1972), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1978), - [anon_sym_DQUOTE] = ACTIONS(1978), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1978), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1978), - [anon_sym_err_GT] = ACTIONS(1972), - [anon_sym_out_GT] = ACTIONS(1972), - [anon_sym_e_GT] = ACTIONS(1972), - [anon_sym_o_GT] = ACTIONS(1972), - [anon_sym_err_PLUSout_GT] = ACTIONS(1972), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1972), - [anon_sym_o_PLUSe_GT] = ACTIONS(1972), - [anon_sym_e_PLUSo_GT] = ACTIONS(1972), - [anon_sym_err_GT_GT] = ACTIONS(1978), - [anon_sym_out_GT_GT] = ACTIONS(1978), - [anon_sym_e_GT_GT] = ACTIONS(1978), - [anon_sym_o_GT_GT] = ACTIONS(1978), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1978), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1978), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1978), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1978), - [aux_sym_unquoted_token1] = ACTIONS(1972), - [anon_sym_POUND] = ACTIONS(247), - }, - [1673] = { - [sym_comment] = STATE(1673), - [ts_builtin_sym_end] = ACTIONS(1966), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1966), - [aux_sym_cmd_identifier_token38] = ACTIONS(1966), - [aux_sym_cmd_identifier_token39] = ACTIONS(1966), - [aux_sym_cmd_identifier_token40] = ACTIONS(1966), - [sym__newline] = ACTIONS(1966), - [anon_sym_SEMI] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_err_GT_PIPE] = ACTIONS(1966), - [anon_sym_out_GT_PIPE] = ACTIONS(1966), - [anon_sym_e_GT_PIPE] = ACTIONS(1966), - [anon_sym_o_GT_PIPE] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1966), - [anon_sym_LPAREN] = ACTIONS(1966), - [anon_sym_DOLLAR] = ACTIONS(1960), - [anon_sym_DASH_DASH] = ACTIONS(1966), - [anon_sym_DASH] = ACTIONS(1960), - [aux_sym_ctrl_match_token1] = ACTIONS(1966), - [anon_sym_DOT_DOT] = ACTIONS(1960), - [anon_sym_DOT_DOT2] = ACTIONS(5001), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1960), - [anon_sym_DOT_DOT_LT] = ACTIONS(1960), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(5003), - [anon_sym_DOT_DOT_LT2] = ACTIONS(5003), - [aux_sym__val_number_decimal_token1] = ACTIONS(1960), - [aux_sym__val_number_decimal_token2] = ACTIONS(1966), - [aux_sym__val_number_decimal_token3] = ACTIONS(1966), - [aux_sym__val_number_decimal_token4] = ACTIONS(1966), - [aux_sym__val_number_token1] = ACTIONS(1966), - [aux_sym__val_number_token2] = ACTIONS(1966), - [aux_sym__val_number_token3] = ACTIONS(1966), - [anon_sym_0b] = ACTIONS(1960), - [anon_sym_0o] = ACTIONS(1960), - [anon_sym_0x] = ACTIONS(1960), - [sym_val_date] = ACTIONS(1966), - [anon_sym_DQUOTE] = ACTIONS(1966), - [sym__str_single_quotes] = ACTIONS(1966), - [sym__str_back_ticks] = ACTIONS(1966), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1966), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1966), - [anon_sym_err_GT] = ACTIONS(1960), - [anon_sym_out_GT] = ACTIONS(1960), - [anon_sym_e_GT] = ACTIONS(1960), - [anon_sym_o_GT] = ACTIONS(1960), - [anon_sym_err_PLUSout_GT] = ACTIONS(1960), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1960), - [anon_sym_o_PLUSe_GT] = ACTIONS(1960), - [anon_sym_e_PLUSo_GT] = ACTIONS(1960), - [anon_sym_err_GT_GT] = ACTIONS(1966), - [anon_sym_out_GT_GT] = ACTIONS(1966), - [anon_sym_e_GT_GT] = ACTIONS(1966), - [anon_sym_o_GT_GT] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1966), - [aux_sym_unquoted_token1] = ACTIONS(1960), - [anon_sym_POUND] = ACTIONS(247), - }, - [1674] = { - [sym_comment] = STATE(1674), - [sym__newline] = ACTIONS(1481), - [anon_sym_SEMI] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_err_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_GT_PIPE] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1483), - [anon_sym_RPAREN] = ACTIONS(1483), - [anon_sym_LPAREN2] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1483), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1483), - [anon_sym_DOT_DOT2] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1483), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1483), - [sym_filesize_unit] = ACTIONS(1483), - [sym_duration_unit] = ACTIONS(1483), - [anon_sym_err_GT] = ACTIONS(1481), - [anon_sym_out_GT] = ACTIONS(1481), - [anon_sym_e_GT] = ACTIONS(1481), - [anon_sym_o_GT] = ACTIONS(1481), - [anon_sym_err_PLUSout_GT] = ACTIONS(1481), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1481), - [anon_sym_o_PLUSe_GT] = ACTIONS(1481), - [anon_sym_e_PLUSo_GT] = ACTIONS(1481), - [anon_sym_err_GT_GT] = ACTIONS(1483), - [anon_sym_out_GT_GT] = ACTIONS(1483), - [anon_sym_e_GT_GT] = ACTIONS(1483), - [anon_sym_o_GT_GT] = ACTIONS(1483), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1483), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1483), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1483), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1483), - [aux_sym_unquoted_token2] = ACTIONS(1481), - [anon_sym_POUND] = ACTIONS(247), - }, - [1675] = { - [sym_comment] = STATE(1675), - [aux_sym_cmd_identifier_token41] = ACTIONS(1473), - [sym__newline] = ACTIONS(1473), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_err_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_GT_PIPE] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), - [anon_sym_RPAREN] = ACTIONS(1475), - [aux_sym_ctrl_match_token1] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1475), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1475), - [anon_sym_DOT_DOT2] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1475), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1475), - [sym_filesize_unit] = ACTIONS(1475), - [sym_duration_unit] = ACTIONS(1475), - [anon_sym_err_GT] = ACTIONS(1473), - [anon_sym_out_GT] = ACTIONS(1473), - [anon_sym_e_GT] = ACTIONS(1473), - [anon_sym_o_GT] = ACTIONS(1473), - [anon_sym_err_PLUSout_GT] = ACTIONS(1473), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), - [anon_sym_o_PLUSe_GT] = ACTIONS(1473), - [anon_sym_e_PLUSo_GT] = ACTIONS(1473), - [anon_sym_err_GT_GT] = ACTIONS(1475), - [anon_sym_out_GT_GT] = ACTIONS(1475), - [anon_sym_e_GT_GT] = ACTIONS(1475), - [anon_sym_o_GT_GT] = ACTIONS(1475), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), - [anon_sym_POUND] = ACTIONS(247), - }, - [1676] = { - [sym_comment] = STATE(1676), - [sym__newline] = ACTIONS(1519), - [anon_sym_SEMI] = ACTIONS(1521), - [anon_sym_PIPE] = ACTIONS(1521), - [anon_sym_err_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_GT_PIPE] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), - [anon_sym_RPAREN] = ACTIONS(1521), - [anon_sym_LPAREN2] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1521), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1521), - [anon_sym_DOT_DOT2] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1521), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1521), - [sym_filesize_unit] = ACTIONS(1521), - [sym_duration_unit] = ACTIONS(1521), - [anon_sym_err_GT] = ACTIONS(1519), - [anon_sym_out_GT] = ACTIONS(1519), - [anon_sym_e_GT] = ACTIONS(1519), - [anon_sym_o_GT] = ACTIONS(1519), - [anon_sym_err_PLUSout_GT] = ACTIONS(1519), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1519), - [anon_sym_o_PLUSe_GT] = ACTIONS(1519), - [anon_sym_e_PLUSo_GT] = ACTIONS(1519), - [anon_sym_err_GT_GT] = ACTIONS(1521), - [anon_sym_out_GT_GT] = ACTIONS(1521), - [anon_sym_e_GT_GT] = ACTIONS(1521), - [anon_sym_o_GT_GT] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), - [aux_sym_unquoted_token2] = ACTIONS(1519), - [anon_sym_POUND] = ACTIONS(247), - }, - [1677] = { - [sym_comment] = STATE(1677), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [anon_sym_null] = ACTIONS(1006), - [aux_sym_cmd_identifier_token38] = ACTIONS(1006), - [aux_sym_cmd_identifier_token39] = ACTIONS(1006), - [aux_sym_cmd_identifier_token40] = ACTIONS(1006), - [sym__newline] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_err_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_GT_PIPE] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), - [anon_sym_LBRACK] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_RPAREN] = ACTIONS(1008), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [aux_sym_ctrl_match_token1] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1008), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_LPAREN2] = ACTIONS(2081), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT] = ACTIONS(1006), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1006), - [aux_sym__val_number_decimal_token4] = ACTIONS(1006), - [aux_sym__val_number_token1] = ACTIONS(1006), - [aux_sym__val_number_token2] = ACTIONS(1006), - [aux_sym__val_number_token3] = ACTIONS(1006), - [anon_sym_0b] = ACTIONS(1006), - [anon_sym_0o] = ACTIONS(1006), - [anon_sym_0x] = ACTIONS(1006), - [sym_val_date] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1008), - [sym__str_single_quotes] = ACTIONS(1008), - [sym__str_back_ticks] = ACTIONS(1008), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1008), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1008), - [anon_sym_err_GT] = ACTIONS(1006), - [anon_sym_out_GT] = ACTIONS(1006), - [anon_sym_e_GT] = ACTIONS(1006), - [anon_sym_o_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT] = ACTIONS(1006), - [anon_sym_err_GT_GT] = ACTIONS(1006), - [anon_sym_out_GT_GT] = ACTIONS(1006), - [anon_sym_e_GT_GT] = ACTIONS(1006), - [anon_sym_o_GT_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1006), - [aux_sym_unquoted_token1] = ACTIONS(1006), - [aux_sym_unquoted_token4] = ACTIONS(2083), - [anon_sym_POUND] = ACTIONS(3), - }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1678), 1, - sym_comment, - ACTIONS(2363), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2365), 53, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [73] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1679), 1, - sym_comment, - ACTIONS(3593), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(3591), 53, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [146] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1680), 1, - sym_comment, - ACTIONS(1585), 10, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1587), 52, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [219] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1457), 1, - aux_sym_unquoted_token2, - ACTIONS(2119), 1, - anon_sym_LPAREN2, - STATE(1681), 1, - sym_comment, - ACTIONS(2117), 17, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2121), 43, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [296] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1682), 1, - sym_comment, - ACTIONS(2263), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2265), 53, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [369] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1683), 1, - sym_comment, - ACTIONS(2295), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2297), 53, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [442] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5009), 1, - anon_sym_EQ2, - STATE(1684), 1, - sym_comment, - ACTIONS(5007), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5005), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [517] = 20, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4449), 1, - anon_sym_DOLLAR, - ACTIONS(4469), 1, - anon_sym_DQUOTE, - ACTIONS(4473), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4475), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5013), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5015), 1, - anon_sym_LPAREN, - STATE(1685), 1, - sym_comment, - STATE(4660), 1, - sym__str_double_quotes, - STATE(4902), 1, - sym__inter_single_quotes, - STATE(4928), 1, - sym__inter_double_quotes, - STATE(7214), 1, - sym__val_number_decimal, - ACTIONS(1259), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4471), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(369), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5011), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(4822), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(371), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [622] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1686), 1, - sym_comment, - ACTIONS(2311), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2313), 53, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [695] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(1687), 1, - sym_comment, - STATE(7887), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3207), 17, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(3205), 43, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [772] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1688), 1, - sym_comment, - ACTIONS(2311), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2313), 53, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [845] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1689), 1, - sym_comment, - ACTIONS(1589), 18, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - aux_sym_unquoted_token2, - ACTIONS(1591), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [918] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1690), 1, - sym_comment, - ACTIONS(3175), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(3173), 25, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(3177), 28, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [993] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(1691), 1, - sym_comment, - STATE(7887), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3211), 17, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(3209), 43, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [1070] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1692), 1, - sym_comment, - ACTIONS(962), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(964), 45, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [1143] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4934), 1, - anon_sym_DOT_DOT2, - ACTIONS(4983), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(5017), 1, - sym_filesize_unit, - ACTIONS(5019), 1, - sym_duration_unit, - STATE(1693), 1, - sym_comment, - ACTIONS(4936), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1525), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1537), 47, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [1226] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(1694), 1, - sym_comment, - STATE(7678), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5023), 17, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5021), 43, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [1303] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4122), 1, - aux_sym_unquoted_token2, - STATE(1695), 1, - sym_comment, - ACTIONS(1525), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1537), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [1378] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2125), 1, - anon_sym_LPAREN2, - ACTIONS(2129), 1, - aux_sym_unquoted_token2, - STATE(1696), 1, - sym_comment, - ACTIONS(2123), 17, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2127), 43, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [1455] = 21, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4260), 1, - anon_sym_DQUOTE, - ACTIONS(5031), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5035), 1, - anon_sym_LBRACK, - ACTIONS(5037), 1, - sym_wild_card, - STATE(1697), 1, - sym_comment, - STATE(2132), 1, - sym_val_string, - STATE(2155), 1, - sym_cmd_identifier, - STATE(2158), 1, - sym__str_double_quotes, - STATE(6435), 1, - sym__command_name, - STATE(6443), 1, - sym_scope_pattern, - STATE(6452), 1, - sym_command_list, - STATE(7482), 1, - sym__val_number_decimal, - ACTIONS(1259), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4262), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5033), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(5025), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5029), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5027), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [1562] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5043), 1, - anon_sym_EQ2, - STATE(1698), 1, - sym_comment, - ACTIONS(5041), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5039), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [1637] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1699), 1, - sym_comment, - ACTIONS(1519), 10, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1521), 52, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [1710] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2083), 1, - aux_sym_unquoted_token4, - STATE(1700), 1, - sym_comment, - ACTIONS(1008), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1006), 40, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [1785] = 21, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4260), 1, - anon_sym_DQUOTE, - ACTIONS(5031), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5035), 1, - anon_sym_LBRACK, - ACTIONS(5037), 1, - sym_wild_card, - STATE(1701), 1, - sym_comment, - STATE(2132), 1, - sym_val_string, - STATE(2155), 1, - sym_cmd_identifier, - STATE(2158), 1, - sym__str_double_quotes, - STATE(6435), 1, - sym__command_name, - STATE(6452), 1, - sym_command_list, - STATE(6602), 1, - sym_scope_pattern, - STATE(7482), 1, - sym__val_number_decimal, - ACTIONS(1259), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4262), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5045), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(5025), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5029), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5027), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [1892] = 4, + [aux_sym_expr_binary_token6] = ACTIONS(1587), + [aux_sym_expr_binary_token7] = ACTIONS(1587), + [aux_sym_expr_binary_token8] = ACTIONS(1587), + [aux_sym_expr_binary_token9] = ACTIONS(1587), + [aux_sym_expr_binary_token10] = ACTIONS(1587), + [aux_sym_expr_binary_token11] = ACTIONS(1587), + [aux_sym_expr_binary_token12] = ACTIONS(1587), + [aux_sym_expr_binary_token13] = ACTIONS(1587), + [aux_sym_expr_binary_token14] = ACTIONS(1587), + [aux_sym_expr_binary_token15] = ACTIONS(1587), + [aux_sym_expr_binary_token16] = ACTIONS(1587), + [aux_sym_expr_binary_token17] = ACTIONS(1587), + [aux_sym_expr_binary_token18] = ACTIONS(1587), + [aux_sym_expr_binary_token19] = ACTIONS(1587), + [aux_sym_expr_binary_token20] = ACTIONS(1587), + [aux_sym_expr_binary_token21] = ACTIONS(1587), + [aux_sym_expr_binary_token22] = ACTIONS(1587), + [aux_sym_expr_binary_token23] = ACTIONS(1587), + [aux_sym_expr_binary_token24] = ACTIONS(1587), + [aux_sym_expr_binary_token25] = ACTIONS(1587), + [aux_sym_expr_binary_token26] = ACTIONS(1587), + [aux_sym_expr_binary_token27] = ACTIONS(1587), + [aux_sym_expr_binary_token28] = ACTIONS(1587), + [anon_sym_DOT_DOT2] = ACTIONS(4787), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4789), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4789), + [sym_filesize_unit] = ACTIONS(4801), + [sym_duration_unit] = ACTIONS(4803), + [aux_sym_record_entry_token1] = ACTIONS(1587), + [anon_sym_err_GT] = ACTIONS(1575), + [anon_sym_out_GT] = ACTIONS(1575), + [anon_sym_e_GT] = ACTIONS(1575), + [anon_sym_o_GT] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT] = ACTIONS(1575), + [anon_sym_err_GT_GT] = ACTIONS(1587), + [anon_sym_out_GT_GT] = ACTIONS(1587), + [anon_sym_e_GT_GT] = ACTIONS(1587), + [anon_sym_o_GT_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [anon_sym_POUND] = ACTIONS(247), + }, + [1446] = { + [sym_path] = STATE(1599), + [sym_comment] = STATE(1446), + [aux_sym_cell_path_repeat1] = STATE(1446), + [ts_builtin_sym_end] = ACTIONS(1023), + [anon_sym_true] = ACTIONS(1023), + [anon_sym_false] = ACTIONS(1023), + [anon_sym_null] = ACTIONS(1023), + [aux_sym_cmd_identifier_token38] = ACTIONS(1023), + [aux_sym_cmd_identifier_token39] = ACTIONS(1023), + [aux_sym_cmd_identifier_token40] = ACTIONS(1023), + [sym__newline] = ACTIONS(1023), + [anon_sym_SEMI] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(1023), + [anon_sym_err_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_GT_PIPE] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1023), + [anon_sym_DOLLAR] = ACTIONS(1021), + [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_DASH] = ACTIONS(1021), + [aux_sym_ctrl_match_token1] = ACTIONS(1023), + [anon_sym_DOT_DOT] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(4805), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1023), + [anon_sym_DOT_DOT_LT] = ACTIONS(1023), + [aux_sym__val_number_decimal_token1] = ACTIONS(1021), + [aux_sym__val_number_decimal_token2] = ACTIONS(1023), + [aux_sym__val_number_decimal_token3] = ACTIONS(1023), + [aux_sym__val_number_decimal_token4] = ACTIONS(1023), + [aux_sym__val_number_token1] = ACTIONS(1023), + [aux_sym__val_number_token2] = ACTIONS(1023), + [aux_sym__val_number_token3] = ACTIONS(1023), + [anon_sym_0b] = ACTIONS(1021), + [anon_sym_0o] = ACTIONS(1021), + [anon_sym_0x] = ACTIONS(1021), + [sym_val_date] = ACTIONS(1023), + [anon_sym_DQUOTE] = ACTIONS(1023), + [sym__str_single_quotes] = ACTIONS(1023), + [sym__str_back_ticks] = ACTIONS(1023), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1023), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1023), + [anon_sym_err_GT] = ACTIONS(1021), + [anon_sym_out_GT] = ACTIONS(1021), + [anon_sym_e_GT] = ACTIONS(1021), + [anon_sym_o_GT] = ACTIONS(1021), + [anon_sym_err_PLUSout_GT] = ACTIONS(1021), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), + [anon_sym_o_PLUSe_GT] = ACTIONS(1021), + [anon_sym_e_PLUSo_GT] = ACTIONS(1021), + [anon_sym_err_GT_GT] = ACTIONS(1023), + [anon_sym_out_GT_GT] = ACTIONS(1023), + [anon_sym_e_GT_GT] = ACTIONS(1023), + [anon_sym_o_GT_GT] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), + [aux_sym_unquoted_token1] = ACTIONS(1021), + [anon_sym_POUND] = ACTIONS(247), + }, + [1447] = { + [sym__expr_parenthesized_immediate] = STATE(7570), + [sym_comment] = STATE(1447), + [sym__newline] = ACTIONS(4769), + [anon_sym_SEMI] = ACTIONS(4769), + [anon_sym_PIPE] = ACTIONS(4769), + [anon_sym_err_GT_PIPE] = ACTIONS(4769), + [anon_sym_out_GT_PIPE] = ACTIONS(4769), + [anon_sym_e_GT_PIPE] = ACTIONS(4769), + [anon_sym_o_GT_PIPE] = ACTIONS(4769), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4769), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4769), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4769), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4769), + [anon_sym_RPAREN] = ACTIONS(4769), + [anon_sym_DASH_DASH] = ACTIONS(4769), + [anon_sym_DASH] = ACTIONS(4771), + [aux_sym_ctrl_match_token1] = ACTIONS(4769), + [anon_sym_RBRACE] = ACTIONS(4769), + [anon_sym_EQ_GT] = ACTIONS(4769), + [anon_sym_LPAREN2] = ACTIONS(3914), + [aux_sym_expr_binary_token1] = ACTIONS(4769), + [aux_sym_expr_binary_token2] = ACTIONS(4769), + [aux_sym_expr_binary_token3] = ACTIONS(4769), + [aux_sym_expr_binary_token4] = ACTIONS(4769), + [aux_sym_expr_binary_token5] = ACTIONS(4769), + [aux_sym_expr_binary_token6] = ACTIONS(4769), + [aux_sym_expr_binary_token7] = ACTIONS(4769), + [aux_sym_expr_binary_token8] = ACTIONS(4769), + [aux_sym_expr_binary_token9] = ACTIONS(4769), + [aux_sym_expr_binary_token10] = ACTIONS(4769), + [aux_sym_expr_binary_token11] = ACTIONS(4769), + [aux_sym_expr_binary_token12] = ACTIONS(4769), + [aux_sym_expr_binary_token13] = ACTIONS(4769), + [aux_sym_expr_binary_token14] = ACTIONS(4769), + [aux_sym_expr_binary_token15] = ACTIONS(4769), + [aux_sym_expr_binary_token16] = ACTIONS(4769), + [aux_sym_expr_binary_token17] = ACTIONS(4769), + [aux_sym_expr_binary_token18] = ACTIONS(4769), + [aux_sym_expr_binary_token19] = ACTIONS(4769), + [aux_sym_expr_binary_token20] = ACTIONS(4769), + [aux_sym_expr_binary_token21] = ACTIONS(4769), + [aux_sym_expr_binary_token22] = ACTIONS(4769), + [aux_sym_expr_binary_token23] = ACTIONS(4769), + [aux_sym_expr_binary_token24] = ACTIONS(4769), + [aux_sym_expr_binary_token25] = ACTIONS(4769), + [aux_sym_expr_binary_token26] = ACTIONS(4769), + [aux_sym_expr_binary_token27] = ACTIONS(4769), + [aux_sym_expr_binary_token28] = ACTIONS(4769), + [anon_sym_err_GT] = ACTIONS(4771), + [anon_sym_out_GT] = ACTIONS(4771), + [anon_sym_e_GT] = ACTIONS(4771), + [anon_sym_o_GT] = ACTIONS(4771), + [anon_sym_err_PLUSout_GT] = ACTIONS(4771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4771), + [anon_sym_o_PLUSe_GT] = ACTIONS(4771), + [anon_sym_e_PLUSo_GT] = ACTIONS(4771), + [anon_sym_err_GT_GT] = ACTIONS(4769), + [anon_sym_out_GT_GT] = ACTIONS(4769), + [anon_sym_e_GT_GT] = ACTIONS(4769), + [anon_sym_o_GT_GT] = ACTIONS(4769), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4769), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4769), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4769), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4769), + [anon_sym_POUND] = ACTIONS(247), + }, + [1448] = { + [sym_comment] = STATE(1448), + [anon_sym_true] = ACTIONS(2671), + [anon_sym_false] = ACTIONS(2671), + [anon_sym_null] = ACTIONS(2671), + [aux_sym_cmd_identifier_token38] = ACTIONS(2671), + [aux_sym_cmd_identifier_token39] = ACTIONS(2671), + [aux_sym_cmd_identifier_token40] = ACTIONS(2671), + [sym__newline] = ACTIONS(2671), + [anon_sym_SEMI] = ACTIONS(2671), + [anon_sym_PIPE] = ACTIONS(2671), + [anon_sym_err_GT_PIPE] = ACTIONS(2671), + [anon_sym_out_GT_PIPE] = ACTIONS(2671), + [anon_sym_e_GT_PIPE] = ACTIONS(2671), + [anon_sym_o_GT_PIPE] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2671), + [anon_sym_LBRACK] = ACTIONS(2671), + [anon_sym_LPAREN] = ACTIONS(2671), + [anon_sym_RPAREN] = ACTIONS(2671), + [anon_sym_DOLLAR] = ACTIONS(4808), + [anon_sym_DASH_DASH] = ACTIONS(2671), + [anon_sym_DASH] = ACTIONS(4808), + [aux_sym_ctrl_match_token1] = ACTIONS(2671), + [anon_sym_DOT_DOT] = ACTIONS(4808), + [anon_sym_DOT_DOT2] = ACTIONS(4670), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4808), + [anon_sym_DOT_DOT_LT] = ACTIONS(4808), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4672), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4672), + [aux_sym__val_number_decimal_token1] = ACTIONS(4808), + [aux_sym__val_number_decimal_token2] = ACTIONS(2671), + [aux_sym__val_number_decimal_token3] = ACTIONS(2671), + [aux_sym__val_number_decimal_token4] = ACTIONS(2671), + [aux_sym__val_number_token1] = ACTIONS(2671), + [aux_sym__val_number_token2] = ACTIONS(2671), + [aux_sym__val_number_token3] = ACTIONS(2671), + [anon_sym_0b] = ACTIONS(4808), + [anon_sym_0o] = ACTIONS(4808), + [anon_sym_0x] = ACTIONS(4808), + [sym_val_date] = ACTIONS(2671), + [anon_sym_DQUOTE] = ACTIONS(2671), + [sym__str_single_quotes] = ACTIONS(2671), + [sym__str_back_ticks] = ACTIONS(2671), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2671), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2671), + [anon_sym_err_GT] = ACTIONS(4808), + [anon_sym_out_GT] = ACTIONS(4808), + [anon_sym_e_GT] = ACTIONS(4808), + [anon_sym_o_GT] = ACTIONS(4808), + [anon_sym_err_PLUSout_GT] = ACTIONS(4808), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4808), + [anon_sym_o_PLUSe_GT] = ACTIONS(4808), + [anon_sym_e_PLUSo_GT] = ACTIONS(4808), + [anon_sym_err_GT_GT] = ACTIONS(2671), + [anon_sym_out_GT_GT] = ACTIONS(2671), + [anon_sym_e_GT_GT] = ACTIONS(2671), + [anon_sym_o_GT_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2671), + [aux_sym_unquoted_token1] = ACTIONS(4808), + [anon_sym_POUND] = ACTIONS(247), + }, + [1449] = { + [sym_comment] = STATE(1449), + [ts_builtin_sym_end] = ACTIONS(2041), + [anon_sym_true] = ACTIONS(2041), + [anon_sym_false] = ACTIONS(2041), + [anon_sym_null] = ACTIONS(2041), + [aux_sym_cmd_identifier_token38] = ACTIONS(2041), + [aux_sym_cmd_identifier_token39] = ACTIONS(2041), + [aux_sym_cmd_identifier_token40] = ACTIONS(2041), + [sym__newline] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(2041), + [anon_sym_PIPE] = ACTIONS(2041), + [anon_sym_err_GT_PIPE] = ACTIONS(2041), + [anon_sym_out_GT_PIPE] = ACTIONS(2041), + [anon_sym_e_GT_PIPE] = ACTIONS(2041), + [anon_sym_o_GT_PIPE] = ACTIONS(2041), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2041), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2041), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2041), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_DOLLAR] = ACTIONS(2035), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_DASH] = ACTIONS(2035), + [aux_sym_ctrl_match_token1] = ACTIONS(2041), + [anon_sym_DOT_DOT] = ACTIONS(2035), + [anon_sym_DOT_DOT2] = ACTIONS(4810), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2035), + [anon_sym_DOT_DOT_LT] = ACTIONS(2035), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4812), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4812), + [aux_sym__val_number_decimal_token1] = ACTIONS(2035), + [aux_sym__val_number_decimal_token2] = ACTIONS(2041), + [aux_sym__val_number_decimal_token3] = ACTIONS(2041), + [aux_sym__val_number_decimal_token4] = ACTIONS(2041), + [aux_sym__val_number_token1] = ACTIONS(2041), + [aux_sym__val_number_token2] = ACTIONS(2041), + [aux_sym__val_number_token3] = ACTIONS(2041), + [anon_sym_0b] = ACTIONS(2035), + [anon_sym_0o] = ACTIONS(2035), + [anon_sym_0x] = ACTIONS(2035), + [sym_val_date] = ACTIONS(2041), + [anon_sym_DQUOTE] = ACTIONS(2041), + [sym__str_single_quotes] = ACTIONS(2041), + [sym__str_back_ticks] = ACTIONS(2041), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2041), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2041), + [anon_sym_err_GT] = ACTIONS(2035), + [anon_sym_out_GT] = ACTIONS(2035), + [anon_sym_e_GT] = ACTIONS(2035), + [anon_sym_o_GT] = ACTIONS(2035), + [anon_sym_err_PLUSout_GT] = ACTIONS(2035), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2035), + [anon_sym_o_PLUSe_GT] = ACTIONS(2035), + [anon_sym_e_PLUSo_GT] = ACTIONS(2035), + [anon_sym_err_GT_GT] = ACTIONS(2041), + [anon_sym_out_GT_GT] = ACTIONS(2041), + [anon_sym_e_GT_GT] = ACTIONS(2041), + [anon_sym_o_GT_GT] = ACTIONS(2041), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2041), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2041), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2041), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2041), + [aux_sym_unquoted_token1] = ACTIONS(2035), + [anon_sym_POUND] = ACTIONS(247), + }, + [1450] = { + [sym_comment] = STATE(1450), + [ts_builtin_sym_end] = ACTIONS(1707), + [anon_sym_true] = ACTIONS(1707), + [anon_sym_false] = ACTIONS(1707), + [anon_sym_null] = ACTIONS(1707), + [aux_sym_cmd_identifier_token38] = ACTIONS(1707), + [aux_sym_cmd_identifier_token39] = ACTIONS(1707), + [aux_sym_cmd_identifier_token40] = ACTIONS(1707), + [sym__newline] = ACTIONS(1707), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_err_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_GT_PIPE] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), + [anon_sym_LBRACK] = ACTIONS(1707), + [anon_sym_LPAREN] = ACTIONS(1707), + [anon_sym_DOLLAR] = ACTIONS(1705), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1705), + [aux_sym_ctrl_match_token1] = ACTIONS(1707), + [anon_sym_DOT_DOT] = ACTIONS(1705), + [anon_sym_DOT_DOT2] = ACTIONS(1705), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1705), + [anon_sym_DOT_DOT_LT] = ACTIONS(1705), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1707), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1707), + [aux_sym__val_number_decimal_token1] = ACTIONS(1705), + [aux_sym__val_number_decimal_token2] = ACTIONS(1707), + [aux_sym__val_number_decimal_token3] = ACTIONS(1707), + [aux_sym__val_number_decimal_token4] = ACTIONS(1707), + [aux_sym__val_number_token1] = ACTIONS(1707), + [aux_sym__val_number_token2] = ACTIONS(1707), + [aux_sym__val_number_token3] = ACTIONS(1707), + [anon_sym_0b] = ACTIONS(1705), + [anon_sym_0o] = ACTIONS(1705), + [anon_sym_0x] = ACTIONS(1705), + [sym_val_date] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1707), + [sym__str_single_quotes] = ACTIONS(1707), + [sym__str_back_ticks] = ACTIONS(1707), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1707), + [anon_sym_err_GT] = ACTIONS(1705), + [anon_sym_out_GT] = ACTIONS(1705), + [anon_sym_e_GT] = ACTIONS(1705), + [anon_sym_o_GT] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT] = ACTIONS(1705), + [anon_sym_err_GT_GT] = ACTIONS(1707), + [anon_sym_out_GT_GT] = ACTIONS(1707), + [anon_sym_e_GT_GT] = ACTIONS(1707), + [anon_sym_o_GT_GT] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), + [aux_sym_unquoted_token1] = ACTIONS(1705), + [anon_sym_POUND] = ACTIONS(247), + }, + [1451] = { + [sym_comment] = STATE(1451), + [ts_builtin_sym_end] = ACTIONS(1567), + [sym__newline] = ACTIONS(1567), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_err_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_GT_PIPE] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), + [anon_sym_LPAREN2] = ACTIONS(1567), + [aux_sym_expr_binary_token1] = ACTIONS(1567), + [aux_sym_expr_binary_token2] = ACTIONS(1567), + [aux_sym_expr_binary_token3] = ACTIONS(1567), + [aux_sym_expr_binary_token4] = ACTIONS(1567), + [aux_sym_expr_binary_token5] = ACTIONS(1567), + [aux_sym_expr_binary_token6] = ACTIONS(1567), + [aux_sym_expr_binary_token7] = ACTIONS(1567), + [aux_sym_expr_binary_token8] = ACTIONS(1567), + [aux_sym_expr_binary_token9] = ACTIONS(1567), + [aux_sym_expr_binary_token10] = ACTIONS(1567), + [aux_sym_expr_binary_token11] = ACTIONS(1567), + [aux_sym_expr_binary_token12] = ACTIONS(1567), + [aux_sym_expr_binary_token13] = ACTIONS(1567), + [aux_sym_expr_binary_token14] = ACTIONS(1567), + [aux_sym_expr_binary_token15] = ACTIONS(1567), + [aux_sym_expr_binary_token16] = ACTIONS(1567), + [aux_sym_expr_binary_token17] = ACTIONS(1567), + [aux_sym_expr_binary_token18] = ACTIONS(1567), + [aux_sym_expr_binary_token19] = ACTIONS(1567), + [aux_sym_expr_binary_token20] = ACTIONS(1567), + [aux_sym_expr_binary_token21] = ACTIONS(1567), + [aux_sym_expr_binary_token22] = ACTIONS(1567), + [aux_sym_expr_binary_token23] = ACTIONS(1567), + [aux_sym_expr_binary_token24] = ACTIONS(1567), + [aux_sym_expr_binary_token25] = ACTIONS(1567), + [aux_sym_expr_binary_token26] = ACTIONS(1567), + [aux_sym_expr_binary_token27] = ACTIONS(1567), + [aux_sym_expr_binary_token28] = ACTIONS(1567), + [anon_sym_DOT_DOT2] = ACTIONS(1565), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), + [sym_filesize_unit] = ACTIONS(1567), + [sym_duration_unit] = ACTIONS(1567), + [anon_sym_err_GT] = ACTIONS(1565), + [anon_sym_out_GT] = ACTIONS(1565), + [anon_sym_e_GT] = ACTIONS(1565), + [anon_sym_o_GT] = ACTIONS(1565), + [anon_sym_err_PLUSout_GT] = ACTIONS(1565), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), + [anon_sym_o_PLUSe_GT] = ACTIONS(1565), + [anon_sym_e_PLUSo_GT] = ACTIONS(1565), + [anon_sym_err_GT_GT] = ACTIONS(1567), + [anon_sym_out_GT_GT] = ACTIONS(1567), + [anon_sym_e_GT_GT] = ACTIONS(1567), + [anon_sym_o_GT_GT] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), + [aux_sym_unquoted_token2] = ACTIONS(1565), + [anon_sym_POUND] = ACTIONS(247), + }, + [1452] = { + [sym_comment] = STATE(1452), + [ts_builtin_sym_end] = ACTIONS(1757), + [anon_sym_true] = ACTIONS(1757), + [anon_sym_false] = ACTIONS(1757), + [anon_sym_null] = ACTIONS(1757), + [aux_sym_cmd_identifier_token38] = ACTIONS(1757), + [aux_sym_cmd_identifier_token39] = ACTIONS(1757), + [aux_sym_cmd_identifier_token40] = ACTIONS(1757), + [sym__newline] = ACTIONS(1757), + [anon_sym_SEMI] = ACTIONS(1757), + [anon_sym_PIPE] = ACTIONS(1757), + [anon_sym_err_GT_PIPE] = ACTIONS(1757), + [anon_sym_out_GT_PIPE] = ACTIONS(1757), + [anon_sym_e_GT_PIPE] = ACTIONS(1757), + [anon_sym_o_GT_PIPE] = ACTIONS(1757), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1757), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1757), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1757), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1757), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_DOLLAR] = ACTIONS(1755), + [anon_sym_DASH_DASH] = ACTIONS(1757), + [anon_sym_DASH] = ACTIONS(1755), + [aux_sym_ctrl_match_token1] = ACTIONS(1757), + [anon_sym_DOT_DOT] = ACTIONS(1755), + [anon_sym_DOT_DOT2] = ACTIONS(1755), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1755), + [anon_sym_DOT_DOT_LT] = ACTIONS(1755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), + [aux_sym__val_number_decimal_token1] = ACTIONS(1755), + [aux_sym__val_number_decimal_token2] = ACTIONS(1757), + [aux_sym__val_number_decimal_token3] = ACTIONS(1757), + [aux_sym__val_number_decimal_token4] = ACTIONS(1757), + [aux_sym__val_number_token1] = ACTIONS(1757), + [aux_sym__val_number_token2] = ACTIONS(1757), + [aux_sym__val_number_token3] = ACTIONS(1757), + [anon_sym_0b] = ACTIONS(1755), + [anon_sym_0o] = ACTIONS(1755), + [anon_sym_0x] = ACTIONS(1755), + [sym_val_date] = ACTIONS(1757), + [anon_sym_DQUOTE] = ACTIONS(1757), + [sym__str_single_quotes] = ACTIONS(1757), + [sym__str_back_ticks] = ACTIONS(1757), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), + [anon_sym_err_GT] = ACTIONS(1755), + [anon_sym_out_GT] = ACTIONS(1755), + [anon_sym_e_GT] = ACTIONS(1755), + [anon_sym_o_GT] = ACTIONS(1755), + [anon_sym_err_PLUSout_GT] = ACTIONS(1755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), + [anon_sym_o_PLUSe_GT] = ACTIONS(1755), + [anon_sym_e_PLUSo_GT] = ACTIONS(1755), + [anon_sym_err_GT_GT] = ACTIONS(1757), + [anon_sym_out_GT_GT] = ACTIONS(1757), + [anon_sym_e_GT_GT] = ACTIONS(1757), + [anon_sym_o_GT_GT] = ACTIONS(1757), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), + [aux_sym_unquoted_token1] = ACTIONS(1755), + [anon_sym_POUND] = ACTIONS(247), + }, + [1453] = { + [sym_comment] = STATE(1453), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [aux_sym_cmd_identifier_token38] = ACTIONS(1645), + [aux_sym_cmd_identifier_token39] = ACTIONS(1645), + [aux_sym_cmd_identifier_token40] = ACTIONS(1645), + [sym__newline] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_err_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_GT_PIPE] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), + [anon_sym_LBRACK] = ACTIONS(1645), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_RPAREN] = ACTIONS(1645), + [anon_sym_DOLLAR] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1645), + [anon_sym_DASH] = ACTIONS(1643), + [aux_sym_ctrl_match_token1] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(1645), + [anon_sym_DOT_DOT] = ACTIONS(1643), + [anon_sym_LPAREN2] = ACTIONS(1645), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1645), + [anon_sym_DOT_DOT_LT] = ACTIONS(1645), + [aux_sym__val_number_decimal_token1] = ACTIONS(1643), + [aux_sym__val_number_decimal_token2] = ACTIONS(1645), + [aux_sym__val_number_decimal_token3] = ACTIONS(1645), + [aux_sym__val_number_decimal_token4] = ACTIONS(1645), + [aux_sym__val_number_token1] = ACTIONS(1645), + [aux_sym__val_number_token2] = ACTIONS(1645), + [aux_sym__val_number_token3] = ACTIONS(1645), + [anon_sym_0b] = ACTIONS(1643), + [anon_sym_0o] = ACTIONS(1643), + [anon_sym_0x] = ACTIONS(1643), + [sym_val_date] = ACTIONS(1645), + [anon_sym_DQUOTE] = ACTIONS(1645), + [sym__str_single_quotes] = ACTIONS(1645), + [sym__str_back_ticks] = ACTIONS(1645), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1645), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1645), + [anon_sym_err_GT] = ACTIONS(1643), + [anon_sym_out_GT] = ACTIONS(1643), + [anon_sym_e_GT] = ACTIONS(1643), + [anon_sym_o_GT] = ACTIONS(1643), + [anon_sym_err_PLUSout_GT] = ACTIONS(1643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), + [anon_sym_o_PLUSe_GT] = ACTIONS(1643), + [anon_sym_e_PLUSo_GT] = ACTIONS(1643), + [anon_sym_err_GT_GT] = ACTIONS(1645), + [anon_sym_out_GT_GT] = ACTIONS(1645), + [anon_sym_e_GT_GT] = ACTIONS(1645), + [anon_sym_o_GT_GT] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [aux_sym_unquoted_token1] = ACTIONS(1643), + [aux_sym_unquoted_token2] = ACTIONS(1643), + [anon_sym_POUND] = ACTIONS(247), + }, + [1454] = { + [sym_comment] = STATE(1454), + [anon_sym_true] = ACTIONS(1030), + [anon_sym_false] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1030), + [aux_sym_cmd_identifier_token38] = ACTIONS(1030), + [aux_sym_cmd_identifier_token39] = ACTIONS(1030), + [aux_sym_cmd_identifier_token40] = ACTIONS(1030), + [sym__newline] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_err_GT_PIPE] = ACTIONS(1030), + [anon_sym_out_GT_PIPE] = ACTIONS(1030), + [anon_sym_e_GT_PIPE] = ACTIONS(1030), + [anon_sym_o_GT_PIPE] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1030), + [anon_sym_LBRACK] = ACTIONS(1030), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_RPAREN] = ACTIONS(1030), + [anon_sym_DOLLAR] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1028), + [aux_sym_ctrl_match_token1] = ACTIONS(1030), + [anon_sym_RBRACE] = ACTIONS(1030), + [anon_sym_DOT_DOT] = ACTIONS(1028), + [anon_sym_QMARK2] = ACTIONS(4814), + [anon_sym_DOT] = ACTIONS(1028), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1030), + [anon_sym_DOT_DOT_LT] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1028), + [aux_sym__val_number_decimal_token2] = ACTIONS(1030), + [aux_sym__val_number_decimal_token3] = ACTIONS(1030), + [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_token1] = ACTIONS(1030), + [aux_sym__val_number_token2] = ACTIONS(1030), + [aux_sym__val_number_token3] = ACTIONS(1030), + [anon_sym_0b] = ACTIONS(1028), + [anon_sym_0o] = ACTIONS(1028), + [anon_sym_0x] = ACTIONS(1028), + [sym_val_date] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym__str_single_quotes] = ACTIONS(1030), + [sym__str_back_ticks] = ACTIONS(1030), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1030), + [anon_sym_err_GT] = ACTIONS(1028), + [anon_sym_out_GT] = ACTIONS(1028), + [anon_sym_e_GT] = ACTIONS(1028), + [anon_sym_o_GT] = ACTIONS(1028), + [anon_sym_err_PLUSout_GT] = ACTIONS(1028), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1028), + [anon_sym_o_PLUSe_GT] = ACTIONS(1028), + [anon_sym_e_PLUSo_GT] = ACTIONS(1028), + [anon_sym_err_GT_GT] = ACTIONS(1030), + [anon_sym_out_GT_GT] = ACTIONS(1030), + [anon_sym_e_GT_GT] = ACTIONS(1030), + [anon_sym_o_GT_GT] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1030), + [aux_sym_unquoted_token1] = ACTIONS(1028), + [anon_sym_POUND] = ACTIONS(247), + }, + [1455] = { + [sym_comment] = STATE(1455), + [sym__newline] = ACTIONS(1497), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_RPAREN] = ACTIONS(1499), + [anon_sym_LPAREN2] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1499), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1499), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), + [aux_sym_unquoted_token2] = ACTIONS(1497), + [anon_sym_POUND] = ACTIONS(247), + }, + [1456] = { + [sym_comment] = STATE(1456), + [sym__newline] = ACTIONS(1044), + [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_err_GT_PIPE] = ACTIONS(1046), + [anon_sym_out_GT_PIPE] = ACTIONS(1046), + [anon_sym_e_GT_PIPE] = ACTIONS(1046), + [anon_sym_o_GT_PIPE] = ACTIONS(1046), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1046), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1046), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1046), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1046), + [anon_sym_DASH_DASH] = ACTIONS(1046), + [anon_sym_DASH] = ACTIONS(1044), + [aux_sym_ctrl_match_token1] = ACTIONS(1046), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_EQ_GT] = ACTIONS(1046), + [anon_sym_QMARK2] = ACTIONS(1046), + [aux_sym_expr_binary_token1] = ACTIONS(1046), + [aux_sym_expr_binary_token2] = ACTIONS(1046), + [aux_sym_expr_binary_token3] = ACTIONS(1046), + [aux_sym_expr_binary_token4] = ACTIONS(1046), + [aux_sym_expr_binary_token5] = ACTIONS(1046), + [aux_sym_expr_binary_token6] = ACTIONS(1046), + [aux_sym_expr_binary_token7] = ACTIONS(1046), + [aux_sym_expr_binary_token8] = ACTIONS(1046), + [aux_sym_expr_binary_token9] = ACTIONS(1046), + [aux_sym_expr_binary_token10] = ACTIONS(1046), + [aux_sym_expr_binary_token11] = ACTIONS(1046), + [aux_sym_expr_binary_token12] = ACTIONS(1046), + [aux_sym_expr_binary_token13] = ACTIONS(1046), + [aux_sym_expr_binary_token14] = ACTIONS(1046), + [aux_sym_expr_binary_token15] = ACTIONS(1046), + [aux_sym_expr_binary_token16] = ACTIONS(1046), + [aux_sym_expr_binary_token17] = ACTIONS(1046), + [aux_sym_expr_binary_token18] = ACTIONS(1046), + [aux_sym_expr_binary_token19] = ACTIONS(1046), + [aux_sym_expr_binary_token20] = ACTIONS(1046), + [aux_sym_expr_binary_token21] = ACTIONS(1046), + [aux_sym_expr_binary_token22] = ACTIONS(1046), + [aux_sym_expr_binary_token23] = ACTIONS(1046), + [aux_sym_expr_binary_token24] = ACTIONS(1046), + [aux_sym_expr_binary_token25] = ACTIONS(1046), + [aux_sym_expr_binary_token26] = ACTIONS(1046), + [aux_sym_expr_binary_token27] = ACTIONS(1046), + [aux_sym_expr_binary_token28] = ACTIONS(1046), + [anon_sym_DOT] = ACTIONS(1046), + [aux_sym_record_entry_token1] = ACTIONS(1046), + [anon_sym_err_GT] = ACTIONS(1044), + [anon_sym_out_GT] = ACTIONS(1044), + [anon_sym_e_GT] = ACTIONS(1044), + [anon_sym_o_GT] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT] = ACTIONS(1044), + [anon_sym_err_GT_GT] = ACTIONS(1046), + [anon_sym_out_GT_GT] = ACTIONS(1046), + [anon_sym_e_GT_GT] = ACTIONS(1046), + [anon_sym_o_GT_GT] = ACTIONS(1046), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1046), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1046), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1046), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1046), + [anon_sym_POUND] = ACTIONS(247), + }, + [1457] = { + [sym_cell_path] = STATE(1953), + [sym_path] = STATE(1238), + [sym_comment] = STATE(1457), + [aux_sym_cell_path_repeat1] = STATE(1105), + [ts_builtin_sym_end] = ACTIONS(1688), + [sym__newline] = ACTIONS(1688), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_err_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_GT_PIPE] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1688), + [aux_sym_expr_binary_token1] = ACTIONS(1688), + [aux_sym_expr_binary_token2] = ACTIONS(1688), + [aux_sym_expr_binary_token3] = ACTIONS(1688), + [aux_sym_expr_binary_token4] = ACTIONS(1688), + [aux_sym_expr_binary_token5] = ACTIONS(1688), + [aux_sym_expr_binary_token6] = ACTIONS(1688), + [aux_sym_expr_binary_token7] = ACTIONS(1688), + [aux_sym_expr_binary_token8] = ACTIONS(1688), + [aux_sym_expr_binary_token9] = ACTIONS(1688), + [aux_sym_expr_binary_token10] = ACTIONS(1688), + [aux_sym_expr_binary_token11] = ACTIONS(1688), + [aux_sym_expr_binary_token12] = ACTIONS(1688), + [aux_sym_expr_binary_token13] = ACTIONS(1688), + [aux_sym_expr_binary_token14] = ACTIONS(1688), + [aux_sym_expr_binary_token15] = ACTIONS(1688), + [aux_sym_expr_binary_token16] = ACTIONS(1688), + [aux_sym_expr_binary_token17] = ACTIONS(1688), + [aux_sym_expr_binary_token18] = ACTIONS(1688), + [aux_sym_expr_binary_token19] = ACTIONS(1688), + [aux_sym_expr_binary_token20] = ACTIONS(1688), + [aux_sym_expr_binary_token21] = ACTIONS(1688), + [aux_sym_expr_binary_token22] = ACTIONS(1688), + [aux_sym_expr_binary_token23] = ACTIONS(1688), + [aux_sym_expr_binary_token24] = ACTIONS(1688), + [aux_sym_expr_binary_token25] = ACTIONS(1688), + [aux_sym_expr_binary_token26] = ACTIONS(1688), + [aux_sym_expr_binary_token27] = ACTIONS(1688), + [aux_sym_expr_binary_token28] = ACTIONS(1688), + [anon_sym_DOT_DOT2] = ACTIONS(1686), + [anon_sym_DOT] = ACTIONS(3950), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1688), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1688), + [anon_sym_err_GT] = ACTIONS(1686), + [anon_sym_out_GT] = ACTIONS(1686), + [anon_sym_e_GT] = ACTIONS(1686), + [anon_sym_o_GT] = ACTIONS(1686), + [anon_sym_err_PLUSout_GT] = ACTIONS(1686), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1686), + [anon_sym_o_PLUSe_GT] = ACTIONS(1686), + [anon_sym_e_PLUSo_GT] = ACTIONS(1686), + [anon_sym_err_GT_GT] = ACTIONS(1688), + [anon_sym_out_GT_GT] = ACTIONS(1688), + [anon_sym_e_GT_GT] = ACTIONS(1688), + [anon_sym_o_GT_GT] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1688), + [anon_sym_POUND] = ACTIONS(247), + }, + [1458] = { + [sym_comment] = STATE(1458), + [sym__newline] = ACTIONS(4816), + [anon_sym_SEMI] = ACTIONS(4816), + [anon_sym_PIPE] = ACTIONS(4816), + [anon_sym_err_GT_PIPE] = ACTIONS(4816), + [anon_sym_out_GT_PIPE] = ACTIONS(4816), + [anon_sym_e_GT_PIPE] = ACTIONS(4816), + [anon_sym_o_GT_PIPE] = ACTIONS(4816), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4816), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4816), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4816), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4816), + [anon_sym_RPAREN] = ACTIONS(4816), + [anon_sym_DASH_DASH] = ACTIONS(4816), + [anon_sym_DASH] = ACTIONS(4818), + [aux_sym_ctrl_match_token1] = ACTIONS(4816), + [anon_sym_RBRACE] = ACTIONS(4816), + [aux_sym_expr_binary_token1] = ACTIONS(4820), + [aux_sym_expr_binary_token2] = ACTIONS(4820), + [aux_sym_expr_binary_token3] = ACTIONS(4820), + [aux_sym_expr_binary_token4] = ACTIONS(4820), + [aux_sym_expr_binary_token5] = ACTIONS(4820), + [aux_sym_expr_binary_token6] = ACTIONS(4820), + [aux_sym_expr_binary_token7] = ACTIONS(4820), + [aux_sym_expr_binary_token8] = ACTIONS(4820), + [aux_sym_expr_binary_token9] = ACTIONS(4820), + [aux_sym_expr_binary_token10] = ACTIONS(4820), + [aux_sym_expr_binary_token11] = ACTIONS(4820), + [aux_sym_expr_binary_token12] = ACTIONS(4820), + [aux_sym_expr_binary_token13] = ACTIONS(4820), + [aux_sym_expr_binary_token14] = ACTIONS(4820), + [aux_sym_expr_binary_token15] = ACTIONS(4820), + [aux_sym_expr_binary_token16] = ACTIONS(4820), + [aux_sym_expr_binary_token17] = ACTIONS(4820), + [aux_sym_expr_binary_token18] = ACTIONS(4820), + [aux_sym_expr_binary_token19] = ACTIONS(4820), + [aux_sym_expr_binary_token20] = ACTIONS(4820), + [aux_sym_expr_binary_token21] = ACTIONS(4820), + [aux_sym_expr_binary_token22] = ACTIONS(4820), + [aux_sym_expr_binary_token23] = ACTIONS(4820), + [aux_sym_expr_binary_token24] = ACTIONS(4820), + [aux_sym_expr_binary_token25] = ACTIONS(4820), + [aux_sym_expr_binary_token26] = ACTIONS(4820), + [aux_sym_expr_binary_token27] = ACTIONS(4820), + [aux_sym_expr_binary_token28] = ACTIONS(4820), + [anon_sym_DOT_DOT2] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1087), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1087), + [anon_sym_err_GT] = ACTIONS(4818), + [anon_sym_out_GT] = ACTIONS(4818), + [anon_sym_e_GT] = ACTIONS(4818), + [anon_sym_o_GT] = ACTIONS(4818), + [anon_sym_err_PLUSout_GT] = ACTIONS(4818), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4818), + [anon_sym_o_PLUSe_GT] = ACTIONS(4818), + [anon_sym_e_PLUSo_GT] = ACTIONS(4818), + [anon_sym_err_GT_GT] = ACTIONS(4816), + [anon_sym_out_GT_GT] = ACTIONS(4816), + [anon_sym_e_GT_GT] = ACTIONS(4816), + [anon_sym_o_GT_GT] = ACTIONS(4816), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4816), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4816), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4816), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4816), + [anon_sym_POUND] = ACTIONS(247), + }, + [1459] = { + [sym_cell_path] = STATE(1982), + [sym_path] = STATE(1238), + [sym_comment] = STATE(1459), + [aux_sym_cell_path_repeat1] = STATE(1105), + [ts_builtin_sym_end] = ACTIONS(1629), + [sym__newline] = ACTIONS(1629), + [anon_sym_SEMI] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1629), + [anon_sym_err_GT_PIPE] = ACTIONS(1629), + [anon_sym_out_GT_PIPE] = ACTIONS(1629), + [anon_sym_e_GT_PIPE] = ACTIONS(1629), + [anon_sym_o_GT_PIPE] = ACTIONS(1629), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1629), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1629), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1629), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1629), + [aux_sym_expr_binary_token1] = ACTIONS(1629), + [aux_sym_expr_binary_token2] = ACTIONS(1629), + [aux_sym_expr_binary_token3] = ACTIONS(1629), + [aux_sym_expr_binary_token4] = ACTIONS(1629), + [aux_sym_expr_binary_token5] = ACTIONS(1629), + [aux_sym_expr_binary_token6] = ACTIONS(1629), + [aux_sym_expr_binary_token7] = ACTIONS(1629), + [aux_sym_expr_binary_token8] = ACTIONS(1629), + [aux_sym_expr_binary_token9] = ACTIONS(1629), + [aux_sym_expr_binary_token10] = ACTIONS(1629), + [aux_sym_expr_binary_token11] = ACTIONS(1629), + [aux_sym_expr_binary_token12] = ACTIONS(1629), + [aux_sym_expr_binary_token13] = ACTIONS(1629), + [aux_sym_expr_binary_token14] = ACTIONS(1629), + [aux_sym_expr_binary_token15] = ACTIONS(1629), + [aux_sym_expr_binary_token16] = ACTIONS(1629), + [aux_sym_expr_binary_token17] = ACTIONS(1629), + [aux_sym_expr_binary_token18] = ACTIONS(1629), + [aux_sym_expr_binary_token19] = ACTIONS(1629), + [aux_sym_expr_binary_token20] = ACTIONS(1629), + [aux_sym_expr_binary_token21] = ACTIONS(1629), + [aux_sym_expr_binary_token22] = ACTIONS(1629), + [aux_sym_expr_binary_token23] = ACTIONS(1629), + [aux_sym_expr_binary_token24] = ACTIONS(1629), + [aux_sym_expr_binary_token25] = ACTIONS(1629), + [aux_sym_expr_binary_token26] = ACTIONS(1629), + [aux_sym_expr_binary_token27] = ACTIONS(1629), + [aux_sym_expr_binary_token28] = ACTIONS(1629), + [anon_sym_DOT_DOT2] = ACTIONS(1625), + [anon_sym_DOT] = ACTIONS(3950), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1629), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1629), + [anon_sym_err_GT] = ACTIONS(1625), + [anon_sym_out_GT] = ACTIONS(1625), + [anon_sym_e_GT] = ACTIONS(1625), + [anon_sym_o_GT] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT] = ACTIONS(1625), + [anon_sym_err_GT_GT] = ACTIONS(1629), + [anon_sym_out_GT_GT] = ACTIONS(1629), + [anon_sym_e_GT_GT] = ACTIONS(1629), + [anon_sym_o_GT_GT] = ACTIONS(1629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1629), + [anon_sym_POUND] = ACTIONS(247), + }, + [1460] = { + [sym_comment] = STATE(1460), + [anon_sym_true] = ACTIONS(1794), + [anon_sym_false] = ACTIONS(1794), + [anon_sym_null] = ACTIONS(1794), + [aux_sym_cmd_identifier_token38] = ACTIONS(1794), + [aux_sym_cmd_identifier_token39] = ACTIONS(1794), + [aux_sym_cmd_identifier_token40] = ACTIONS(1794), + [sym__newline] = ACTIONS(1794), + [anon_sym_SEMI] = ACTIONS(1794), + [anon_sym_PIPE] = ACTIONS(1794), + [anon_sym_err_GT_PIPE] = ACTIONS(1794), + [anon_sym_out_GT_PIPE] = ACTIONS(1794), + [anon_sym_e_GT_PIPE] = ACTIONS(1794), + [anon_sym_o_GT_PIPE] = ACTIONS(1794), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1794), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1794), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1794), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_RPAREN] = ACTIONS(1794), + [anon_sym_DOLLAR] = ACTIONS(1786), + [anon_sym_DASH_DASH] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1786), + [aux_sym_ctrl_match_token1] = ACTIONS(1794), + [anon_sym_RBRACE] = ACTIONS(1794), + [anon_sym_DOT_DOT] = ACTIONS(1786), + [anon_sym_LPAREN2] = ACTIONS(1788), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1794), + [anon_sym_DOT_DOT_LT] = ACTIONS(1794), + [aux_sym__val_number_decimal_token1] = ACTIONS(1786), + [aux_sym__val_number_decimal_token2] = ACTIONS(1794), + [aux_sym__val_number_decimal_token3] = ACTIONS(1794), + [aux_sym__val_number_decimal_token4] = ACTIONS(1794), + [aux_sym__val_number_token1] = ACTIONS(1794), + [aux_sym__val_number_token2] = ACTIONS(1794), + [aux_sym__val_number_token3] = ACTIONS(1794), + [anon_sym_0b] = ACTIONS(1786), + [anon_sym_0o] = ACTIONS(1786), + [anon_sym_0x] = ACTIONS(1786), + [sym_val_date] = ACTIONS(1794), + [anon_sym_DQUOTE] = ACTIONS(1794), + [sym__str_single_quotes] = ACTIONS(1794), + [sym__str_back_ticks] = ACTIONS(1794), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1794), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1794), + [anon_sym_err_GT] = ACTIONS(1786), + [anon_sym_out_GT] = ACTIONS(1786), + [anon_sym_e_GT] = ACTIONS(1786), + [anon_sym_o_GT] = ACTIONS(1786), + [anon_sym_err_PLUSout_GT] = ACTIONS(1786), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1786), + [anon_sym_o_PLUSe_GT] = ACTIONS(1786), + [anon_sym_e_PLUSo_GT] = ACTIONS(1786), + [anon_sym_err_GT_GT] = ACTIONS(1794), + [anon_sym_out_GT_GT] = ACTIONS(1794), + [anon_sym_e_GT_GT] = ACTIONS(1794), + [anon_sym_o_GT_GT] = ACTIONS(1794), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1794), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1794), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1794), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1794), + [aux_sym_unquoted_token1] = ACTIONS(1786), + [aux_sym_unquoted_token2] = ACTIONS(1495), + [anon_sym_POUND] = ACTIONS(247), + }, + [1461] = { + [sym_comment] = STATE(1461), + [sym__newline] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_err_GT_PIPE] = ACTIONS(1078), + [anon_sym_out_GT_PIPE] = ACTIONS(1078), + [anon_sym_e_GT_PIPE] = ACTIONS(1078), + [anon_sym_o_GT_PIPE] = ACTIONS(1078), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1078), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1078), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1078), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1076), + [aux_sym_ctrl_match_token1] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1078), + [aux_sym_expr_binary_token1] = ACTIONS(1078), + [aux_sym_expr_binary_token2] = ACTIONS(1078), + [aux_sym_expr_binary_token3] = ACTIONS(1078), + [aux_sym_expr_binary_token4] = ACTIONS(1078), + [aux_sym_expr_binary_token5] = ACTIONS(1078), + [aux_sym_expr_binary_token6] = ACTIONS(1078), + [aux_sym_expr_binary_token7] = ACTIONS(1078), + [aux_sym_expr_binary_token8] = ACTIONS(1078), + [aux_sym_expr_binary_token9] = ACTIONS(1078), + [aux_sym_expr_binary_token10] = ACTIONS(1078), + [aux_sym_expr_binary_token11] = ACTIONS(1078), + [aux_sym_expr_binary_token12] = ACTIONS(1078), + [aux_sym_expr_binary_token13] = ACTIONS(1078), + [aux_sym_expr_binary_token14] = ACTIONS(1078), + [aux_sym_expr_binary_token15] = ACTIONS(1078), + [aux_sym_expr_binary_token16] = ACTIONS(1078), + [aux_sym_expr_binary_token17] = ACTIONS(1078), + [aux_sym_expr_binary_token18] = ACTIONS(1078), + [aux_sym_expr_binary_token19] = ACTIONS(1078), + [aux_sym_expr_binary_token20] = ACTIONS(1078), + [aux_sym_expr_binary_token21] = ACTIONS(1078), + [aux_sym_expr_binary_token22] = ACTIONS(1078), + [aux_sym_expr_binary_token23] = ACTIONS(1078), + [aux_sym_expr_binary_token24] = ACTIONS(1078), + [aux_sym_expr_binary_token25] = ACTIONS(1078), + [aux_sym_expr_binary_token26] = ACTIONS(1078), + [aux_sym_expr_binary_token27] = ACTIONS(1078), + [aux_sym_expr_binary_token28] = ACTIONS(1078), + [anon_sym_DOT_DOT2] = ACTIONS(1085), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1087), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1087), + [anon_sym_err_GT] = ACTIONS(1076), + [anon_sym_out_GT] = ACTIONS(1076), + [anon_sym_e_GT] = ACTIONS(1076), + [anon_sym_o_GT] = ACTIONS(1076), + [anon_sym_err_PLUSout_GT] = ACTIONS(1076), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1076), + [anon_sym_o_PLUSe_GT] = ACTIONS(1076), + [anon_sym_e_PLUSo_GT] = ACTIONS(1076), + [anon_sym_err_GT_GT] = ACTIONS(1078), + [anon_sym_out_GT_GT] = ACTIONS(1078), + [anon_sym_e_GT_GT] = ACTIONS(1078), + [anon_sym_o_GT_GT] = ACTIONS(1078), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1078), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1078), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1078), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1078), + [anon_sym_POUND] = ACTIONS(247), + }, + [1462] = { + [sym_comment] = STATE(1462), + [sym__newline] = ACTIONS(1036), + [anon_sym_SEMI] = ACTIONS(1036), + [anon_sym_PIPE] = ACTIONS(1036), + [anon_sym_err_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_GT_PIPE] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), + [anon_sym_RPAREN] = ACTIONS(1036), + [anon_sym_DASH_DASH] = ACTIONS(1036), + [anon_sym_DASH] = ACTIONS(1034), + [aux_sym_ctrl_match_token1] = ACTIONS(1036), + [anon_sym_RBRACE] = ACTIONS(1036), + [anon_sym_EQ_GT] = ACTIONS(1036), + [anon_sym_QMARK2] = ACTIONS(4822), + [aux_sym_expr_binary_token1] = ACTIONS(1036), + [aux_sym_expr_binary_token2] = ACTIONS(1036), + [aux_sym_expr_binary_token3] = ACTIONS(1036), + [aux_sym_expr_binary_token4] = ACTIONS(1036), + [aux_sym_expr_binary_token5] = ACTIONS(1036), + [aux_sym_expr_binary_token6] = ACTIONS(1036), + [aux_sym_expr_binary_token7] = ACTIONS(1036), + [aux_sym_expr_binary_token8] = ACTIONS(1036), + [aux_sym_expr_binary_token9] = ACTIONS(1036), + [aux_sym_expr_binary_token10] = ACTIONS(1036), + [aux_sym_expr_binary_token11] = ACTIONS(1036), + [aux_sym_expr_binary_token12] = ACTIONS(1036), + [aux_sym_expr_binary_token13] = ACTIONS(1036), + [aux_sym_expr_binary_token14] = ACTIONS(1036), + [aux_sym_expr_binary_token15] = ACTIONS(1036), + [aux_sym_expr_binary_token16] = ACTIONS(1036), + [aux_sym_expr_binary_token17] = ACTIONS(1036), + [aux_sym_expr_binary_token18] = ACTIONS(1036), + [aux_sym_expr_binary_token19] = ACTIONS(1036), + [aux_sym_expr_binary_token20] = ACTIONS(1036), + [aux_sym_expr_binary_token21] = ACTIONS(1036), + [aux_sym_expr_binary_token22] = ACTIONS(1036), + [aux_sym_expr_binary_token23] = ACTIONS(1036), + [aux_sym_expr_binary_token24] = ACTIONS(1036), + [aux_sym_expr_binary_token25] = ACTIONS(1036), + [aux_sym_expr_binary_token26] = ACTIONS(1036), + [aux_sym_expr_binary_token27] = ACTIONS(1036), + [aux_sym_expr_binary_token28] = ACTIONS(1036), + [anon_sym_DOT] = ACTIONS(1036), + [anon_sym_err_GT] = ACTIONS(1034), + [anon_sym_out_GT] = ACTIONS(1034), + [anon_sym_e_GT] = ACTIONS(1034), + [anon_sym_o_GT] = ACTIONS(1034), + [anon_sym_err_PLUSout_GT] = ACTIONS(1034), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), + [anon_sym_o_PLUSe_GT] = ACTIONS(1034), + [anon_sym_e_PLUSo_GT] = ACTIONS(1034), + [anon_sym_err_GT_GT] = ACTIONS(1036), + [anon_sym_out_GT_GT] = ACTIONS(1036), + [anon_sym_e_GT_GT] = ACTIONS(1036), + [anon_sym_o_GT_GT] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), + [anon_sym_POUND] = ACTIONS(247), + }, + [1463] = { + [sym_comment] = STATE(1463), + [sym__newline] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1030), + [anon_sym_err_GT_PIPE] = ACTIONS(1030), + [anon_sym_out_GT_PIPE] = ACTIONS(1030), + [anon_sym_e_GT_PIPE] = ACTIONS(1030), + [anon_sym_o_GT_PIPE] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1030), + [anon_sym_RPAREN] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1028), + [aux_sym_ctrl_match_token1] = ACTIONS(1030), + [anon_sym_RBRACE] = ACTIONS(1030), + [anon_sym_EQ_GT] = ACTIONS(1030), + [anon_sym_QMARK2] = ACTIONS(4824), + [aux_sym_expr_binary_token1] = ACTIONS(1030), + [aux_sym_expr_binary_token2] = ACTIONS(1030), + [aux_sym_expr_binary_token3] = ACTIONS(1030), + [aux_sym_expr_binary_token4] = ACTIONS(1030), + [aux_sym_expr_binary_token5] = ACTIONS(1030), + [aux_sym_expr_binary_token6] = ACTIONS(1030), + [aux_sym_expr_binary_token7] = ACTIONS(1030), + [aux_sym_expr_binary_token8] = ACTIONS(1030), + [aux_sym_expr_binary_token9] = ACTIONS(1030), + [aux_sym_expr_binary_token10] = ACTIONS(1030), + [aux_sym_expr_binary_token11] = ACTIONS(1030), + [aux_sym_expr_binary_token12] = ACTIONS(1030), + [aux_sym_expr_binary_token13] = ACTIONS(1030), + [aux_sym_expr_binary_token14] = ACTIONS(1030), + [aux_sym_expr_binary_token15] = ACTIONS(1030), + [aux_sym_expr_binary_token16] = ACTIONS(1030), + [aux_sym_expr_binary_token17] = ACTIONS(1030), + [aux_sym_expr_binary_token18] = ACTIONS(1030), + [aux_sym_expr_binary_token19] = ACTIONS(1030), + [aux_sym_expr_binary_token20] = ACTIONS(1030), + [aux_sym_expr_binary_token21] = ACTIONS(1030), + [aux_sym_expr_binary_token22] = ACTIONS(1030), + [aux_sym_expr_binary_token23] = ACTIONS(1030), + [aux_sym_expr_binary_token24] = ACTIONS(1030), + [aux_sym_expr_binary_token25] = ACTIONS(1030), + [aux_sym_expr_binary_token26] = ACTIONS(1030), + [aux_sym_expr_binary_token27] = ACTIONS(1030), + [aux_sym_expr_binary_token28] = ACTIONS(1030), + [anon_sym_DOT] = ACTIONS(1030), + [anon_sym_err_GT] = ACTIONS(1028), + [anon_sym_out_GT] = ACTIONS(1028), + [anon_sym_e_GT] = ACTIONS(1028), + [anon_sym_o_GT] = ACTIONS(1028), + [anon_sym_err_PLUSout_GT] = ACTIONS(1028), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1028), + [anon_sym_o_PLUSe_GT] = ACTIONS(1028), + [anon_sym_e_PLUSo_GT] = ACTIONS(1028), + [anon_sym_err_GT_GT] = ACTIONS(1030), + [anon_sym_out_GT_GT] = ACTIONS(1030), + [anon_sym_e_GT_GT] = ACTIONS(1030), + [anon_sym_o_GT_GT] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1030), + [anon_sym_POUND] = ACTIONS(247), + }, + [1464] = { + [sym_comment] = STATE(1464), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [aux_sym_cmd_identifier_token38] = ACTIONS(1633), + [aux_sym_cmd_identifier_token39] = ACTIONS(1633), + [aux_sym_cmd_identifier_token40] = ACTIONS(1633), + [sym__newline] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1633), + [anon_sym_err_GT_PIPE] = ACTIONS(1633), + [anon_sym_out_GT_PIPE] = ACTIONS(1633), + [anon_sym_e_GT_PIPE] = ACTIONS(1633), + [anon_sym_o_GT_PIPE] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1633), + [anon_sym_LBRACK] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1633), + [anon_sym_RPAREN] = ACTIONS(1633), + [anon_sym_DOLLAR] = ACTIONS(1631), + [anon_sym_DASH_DASH] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1631), + [aux_sym_ctrl_match_token1] = ACTIONS(1633), + [anon_sym_RBRACE] = ACTIONS(1633), + [anon_sym_DOT_DOT] = ACTIONS(1631), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1633), + [anon_sym_DOT_DOT_LT] = ACTIONS(1633), + [aux_sym__immediate_decimal_token1] = ACTIONS(4826), + [aux_sym__immediate_decimal_token2] = ACTIONS(4828), + [aux_sym__val_number_decimal_token1] = ACTIONS(1631), + [aux_sym__val_number_decimal_token2] = ACTIONS(1633), + [aux_sym__val_number_decimal_token3] = ACTIONS(1633), + [aux_sym__val_number_decimal_token4] = ACTIONS(1633), + [aux_sym__val_number_token1] = ACTIONS(1633), + [aux_sym__val_number_token2] = ACTIONS(1633), + [aux_sym__val_number_token3] = ACTIONS(1633), + [anon_sym_0b] = ACTIONS(1631), + [anon_sym_0o] = ACTIONS(1631), + [anon_sym_0x] = ACTIONS(1631), + [sym_val_date] = ACTIONS(1633), + [anon_sym_DQUOTE] = ACTIONS(1633), + [sym__str_single_quotes] = ACTIONS(1633), + [sym__str_back_ticks] = ACTIONS(1633), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1633), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1633), + [anon_sym_err_GT] = ACTIONS(1631), + [anon_sym_out_GT] = ACTIONS(1631), + [anon_sym_e_GT] = ACTIONS(1631), + [anon_sym_o_GT] = ACTIONS(1631), + [anon_sym_err_PLUSout_GT] = ACTIONS(1631), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1631), + [anon_sym_o_PLUSe_GT] = ACTIONS(1631), + [anon_sym_e_PLUSo_GT] = ACTIONS(1631), + [anon_sym_err_GT_GT] = ACTIONS(1633), + [anon_sym_out_GT_GT] = ACTIONS(1633), + [anon_sym_e_GT_GT] = ACTIONS(1633), + [anon_sym_o_GT_GT] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1633), + [aux_sym_unquoted_token1] = ACTIONS(1631), + [anon_sym_POUND] = ACTIONS(247), + }, + [1465] = { + [sym_comment] = STATE(1465), + [ts_builtin_sym_end] = ACTIONS(2049), + [anon_sym_true] = ACTIONS(2049), + [anon_sym_false] = ACTIONS(2049), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token38] = ACTIONS(2049), + [aux_sym_cmd_identifier_token39] = ACTIONS(2049), + [aux_sym_cmd_identifier_token40] = ACTIONS(2049), + [sym__newline] = ACTIONS(2049), + [anon_sym_SEMI] = ACTIONS(2049), + [anon_sym_PIPE] = ACTIONS(2049), + [anon_sym_err_GT_PIPE] = ACTIONS(2049), + [anon_sym_out_GT_PIPE] = ACTIONS(2049), + [anon_sym_e_GT_PIPE] = ACTIONS(2049), + [anon_sym_o_GT_PIPE] = ACTIONS(2049), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2049), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2049), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2049), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(2049), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_DOLLAR] = ACTIONS(2043), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_DASH] = ACTIONS(2043), + [aux_sym_ctrl_match_token1] = ACTIONS(2049), + [anon_sym_DOT_DOT] = ACTIONS(2043), + [anon_sym_DOT_DOT2] = ACTIONS(4830), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2043), + [anon_sym_DOT_DOT_LT] = ACTIONS(2043), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4832), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4832), + [aux_sym__val_number_decimal_token1] = ACTIONS(2043), + [aux_sym__val_number_decimal_token2] = ACTIONS(2049), + [aux_sym__val_number_decimal_token3] = ACTIONS(2049), + [aux_sym__val_number_decimal_token4] = ACTIONS(2049), + [aux_sym__val_number_token1] = ACTIONS(2049), + [aux_sym__val_number_token2] = ACTIONS(2049), + [aux_sym__val_number_token3] = ACTIONS(2049), + [anon_sym_0b] = ACTIONS(2043), + [anon_sym_0o] = ACTIONS(2043), + [anon_sym_0x] = ACTIONS(2043), + [sym_val_date] = ACTIONS(2049), + [anon_sym_DQUOTE] = ACTIONS(2049), + [sym__str_single_quotes] = ACTIONS(2049), + [sym__str_back_ticks] = ACTIONS(2049), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2049), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2049), + [anon_sym_err_GT] = ACTIONS(2043), + [anon_sym_out_GT] = ACTIONS(2043), + [anon_sym_e_GT] = ACTIONS(2043), + [anon_sym_o_GT] = ACTIONS(2043), + [anon_sym_err_PLUSout_GT] = ACTIONS(2043), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2043), + [anon_sym_o_PLUSe_GT] = ACTIONS(2043), + [anon_sym_e_PLUSo_GT] = ACTIONS(2043), + [anon_sym_err_GT_GT] = ACTIONS(2049), + [anon_sym_out_GT_GT] = ACTIONS(2049), + [anon_sym_e_GT_GT] = ACTIONS(2049), + [anon_sym_o_GT_GT] = ACTIONS(2049), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2049), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2049), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2049), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2049), + [aux_sym_unquoted_token1] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(247), + }, + [1466] = { + [sym__expr_parenthesized_immediate] = STATE(7570), + [sym_comment] = STATE(1466), + [anon_sym_true] = ACTIONS(4781), + [anon_sym_false] = ACTIONS(4781), + [anon_sym_null] = ACTIONS(4781), + [aux_sym_cmd_identifier_token38] = ACTIONS(4781), + [aux_sym_cmd_identifier_token39] = ACTIONS(4781), + [aux_sym_cmd_identifier_token40] = ACTIONS(4781), + [sym__newline] = ACTIONS(4781), + [anon_sym_SEMI] = ACTIONS(4781), + [anon_sym_PIPE] = ACTIONS(4781), + [anon_sym_err_GT_PIPE] = ACTIONS(4781), + [anon_sym_out_GT_PIPE] = ACTIONS(4781), + [anon_sym_e_GT_PIPE] = ACTIONS(4781), + [anon_sym_o_GT_PIPE] = ACTIONS(4781), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4781), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4781), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4781), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4781), + [anon_sym_LBRACK] = ACTIONS(4781), + [anon_sym_LPAREN] = ACTIONS(4783), + [anon_sym_RPAREN] = ACTIONS(4781), + [anon_sym_DOLLAR] = ACTIONS(4783), + [anon_sym_DASH_DASH] = ACTIONS(4781), + [anon_sym_DASH] = ACTIONS(4783), + [aux_sym_ctrl_match_token1] = ACTIONS(4781), + [anon_sym_RBRACE] = ACTIONS(4781), + [anon_sym_DOT_DOT] = ACTIONS(4783), + [anon_sym_LPAREN2] = ACTIONS(3914), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4781), + [anon_sym_DOT_DOT_LT] = ACTIONS(4781), + [aux_sym__val_number_decimal_token1] = ACTIONS(4783), + [aux_sym__val_number_decimal_token2] = ACTIONS(4781), + [aux_sym__val_number_decimal_token3] = ACTIONS(4781), + [aux_sym__val_number_decimal_token4] = ACTIONS(4781), + [aux_sym__val_number_token1] = ACTIONS(4781), + [aux_sym__val_number_token2] = ACTIONS(4781), + [aux_sym__val_number_token3] = ACTIONS(4781), + [anon_sym_0b] = ACTIONS(4783), + [anon_sym_0o] = ACTIONS(4783), + [anon_sym_0x] = ACTIONS(4783), + [sym_val_date] = ACTIONS(4781), + [anon_sym_DQUOTE] = ACTIONS(4781), + [sym__str_single_quotes] = ACTIONS(4781), + [sym__str_back_ticks] = ACTIONS(4781), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4781), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4781), + [anon_sym_err_GT] = ACTIONS(4783), + [anon_sym_out_GT] = ACTIONS(4783), + [anon_sym_e_GT] = ACTIONS(4783), + [anon_sym_o_GT] = ACTIONS(4783), + [anon_sym_err_PLUSout_GT] = ACTIONS(4783), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4783), + [anon_sym_o_PLUSe_GT] = ACTIONS(4783), + [anon_sym_e_PLUSo_GT] = ACTIONS(4783), + [anon_sym_err_GT_GT] = ACTIONS(4781), + [anon_sym_out_GT_GT] = ACTIONS(4781), + [anon_sym_e_GT_GT] = ACTIONS(4781), + [anon_sym_o_GT_GT] = ACTIONS(4781), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4781), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4781), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4781), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4781), + [aux_sym_unquoted_token1] = ACTIONS(4783), + [anon_sym_POUND] = ACTIONS(247), + }, + [1467] = { + [sym_comment] = STATE(1467), + [sym__newline] = ACTIONS(1517), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1519), + [anon_sym_err_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_GT_PIPE] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), + [anon_sym_RPAREN] = ACTIONS(1519), + [anon_sym_LPAREN2] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1519), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1519), + [anon_sym_DOT_DOT2] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), + [sym_filesize_unit] = ACTIONS(1519), + [sym_duration_unit] = ACTIONS(1519), + [anon_sym_err_GT] = ACTIONS(1517), + [anon_sym_out_GT] = ACTIONS(1517), + [anon_sym_e_GT] = ACTIONS(1517), + [anon_sym_o_GT] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT] = ACTIONS(1517), + [anon_sym_err_GT_GT] = ACTIONS(1519), + [anon_sym_out_GT_GT] = ACTIONS(1519), + [anon_sym_e_GT_GT] = ACTIONS(1519), + [anon_sym_o_GT_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), + [aux_sym_unquoted_token2] = ACTIONS(1517), + [anon_sym_POUND] = ACTIONS(247), + }, + [1468] = { + [sym_comment] = STATE(1468), + [ts_builtin_sym_end] = ACTIONS(2057), + [anon_sym_true] = ACTIONS(2057), + [anon_sym_false] = ACTIONS(2057), + [anon_sym_null] = ACTIONS(2057), + [aux_sym_cmd_identifier_token38] = ACTIONS(2057), + [aux_sym_cmd_identifier_token39] = ACTIONS(2057), + [aux_sym_cmd_identifier_token40] = ACTIONS(2057), + [sym__newline] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_PIPE] = ACTIONS(2057), + [anon_sym_err_GT_PIPE] = ACTIONS(2057), + [anon_sym_out_GT_PIPE] = ACTIONS(2057), + [anon_sym_e_GT_PIPE] = ACTIONS(2057), + [anon_sym_o_GT_PIPE] = ACTIONS(2057), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2057), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2057), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2057), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_DOLLAR] = ACTIONS(2051), + [anon_sym_DASH_DASH] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2051), + [aux_sym_ctrl_match_token1] = ACTIONS(2057), + [anon_sym_DOT_DOT] = ACTIONS(2051), + [anon_sym_DOT_DOT2] = ACTIONS(4834), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2051), + [anon_sym_DOT_DOT_LT] = ACTIONS(2051), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4836), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4836), + [aux_sym__val_number_decimal_token1] = ACTIONS(2051), + [aux_sym__val_number_decimal_token2] = ACTIONS(2057), + [aux_sym__val_number_decimal_token3] = ACTIONS(2057), + [aux_sym__val_number_decimal_token4] = ACTIONS(2057), + [aux_sym__val_number_token1] = ACTIONS(2057), + [aux_sym__val_number_token2] = ACTIONS(2057), + [aux_sym__val_number_token3] = ACTIONS(2057), + [anon_sym_0b] = ACTIONS(2051), + [anon_sym_0o] = ACTIONS(2051), + [anon_sym_0x] = ACTIONS(2051), + [sym_val_date] = ACTIONS(2057), + [anon_sym_DQUOTE] = ACTIONS(2057), + [sym__str_single_quotes] = ACTIONS(2057), + [sym__str_back_ticks] = ACTIONS(2057), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2057), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2057), + [anon_sym_err_GT] = ACTIONS(2051), + [anon_sym_out_GT] = ACTIONS(2051), + [anon_sym_e_GT] = ACTIONS(2051), + [anon_sym_o_GT] = ACTIONS(2051), + [anon_sym_err_PLUSout_GT] = ACTIONS(2051), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2051), + [anon_sym_o_PLUSe_GT] = ACTIONS(2051), + [anon_sym_e_PLUSo_GT] = ACTIONS(2051), + [anon_sym_err_GT_GT] = ACTIONS(2057), + [anon_sym_out_GT_GT] = ACTIONS(2057), + [anon_sym_e_GT_GT] = ACTIONS(2057), + [anon_sym_o_GT_GT] = ACTIONS(2057), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2057), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2057), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2057), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2057), + [aux_sym_unquoted_token1] = ACTIONS(2051), + [anon_sym_POUND] = ACTIONS(247), + }, + [1469] = { + [sym_comment] = STATE(1469), + [aux_sym_cmd_identifier_token41] = ACTIONS(1497), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_RPAREN] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1499), + [aux_sym_expr_binary_token1] = ACTIONS(1499), + [aux_sym_expr_binary_token2] = ACTIONS(1499), + [aux_sym_expr_binary_token3] = ACTIONS(1499), + [aux_sym_expr_binary_token4] = ACTIONS(1499), + [aux_sym_expr_binary_token5] = ACTIONS(1499), + [aux_sym_expr_binary_token6] = ACTIONS(1499), + [aux_sym_expr_binary_token7] = ACTIONS(1499), + [aux_sym_expr_binary_token8] = ACTIONS(1499), + [aux_sym_expr_binary_token9] = ACTIONS(1499), + [aux_sym_expr_binary_token10] = ACTIONS(1499), + [aux_sym_expr_binary_token11] = ACTIONS(1499), + [aux_sym_expr_binary_token12] = ACTIONS(1499), + [aux_sym_expr_binary_token13] = ACTIONS(1499), + [aux_sym_expr_binary_token14] = ACTIONS(1499), + [aux_sym_expr_binary_token15] = ACTIONS(1499), + [aux_sym_expr_binary_token16] = ACTIONS(1499), + [aux_sym_expr_binary_token17] = ACTIONS(1499), + [aux_sym_expr_binary_token18] = ACTIONS(1499), + [aux_sym_expr_binary_token19] = ACTIONS(1499), + [aux_sym_expr_binary_token20] = ACTIONS(1499), + [aux_sym_expr_binary_token21] = ACTIONS(1499), + [aux_sym_expr_binary_token22] = ACTIONS(1499), + [aux_sym_expr_binary_token23] = ACTIONS(1499), + [aux_sym_expr_binary_token24] = ACTIONS(1499), + [aux_sym_expr_binary_token25] = ACTIONS(1499), + [aux_sym_expr_binary_token26] = ACTIONS(1499), + [aux_sym_expr_binary_token27] = ACTIONS(1499), + [aux_sym_expr_binary_token28] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1497), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1499), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1499), + [anon_sym_err_GT] = ACTIONS(1497), + [anon_sym_out_GT] = ACTIONS(1497), + [anon_sym_e_GT] = ACTIONS(1497), + [anon_sym_o_GT] = ACTIONS(1497), + [anon_sym_err_PLUSout_GT] = ACTIONS(1497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1497), + [anon_sym_o_PLUSe_GT] = ACTIONS(1497), + [anon_sym_e_PLUSo_GT] = ACTIONS(1497), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(247), + }, + [1470] = { + [sym_comment] = STATE(1470), + [anon_sym_true] = ACTIONS(4838), + [anon_sym_false] = ACTIONS(4838), + [anon_sym_null] = ACTIONS(4838), + [aux_sym_cmd_identifier_token38] = ACTIONS(4838), + [aux_sym_cmd_identifier_token39] = ACTIONS(4838), + [aux_sym_cmd_identifier_token40] = ACTIONS(4838), + [sym__newline] = ACTIONS(4838), + [anon_sym_SEMI] = ACTIONS(4838), + [anon_sym_PIPE] = ACTIONS(4838), + [anon_sym_err_GT_PIPE] = ACTIONS(4838), + [anon_sym_out_GT_PIPE] = ACTIONS(4838), + [anon_sym_e_GT_PIPE] = ACTIONS(4838), + [anon_sym_o_GT_PIPE] = ACTIONS(4838), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4838), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4838), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4838), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4838), + [anon_sym_LBRACK] = ACTIONS(4838), + [anon_sym_LPAREN] = ACTIONS(4838), + [anon_sym_RPAREN] = ACTIONS(4838), + [anon_sym_DOLLAR] = ACTIONS(4840), + [anon_sym_DASH_DASH] = ACTIONS(4838), + [anon_sym_DASH] = ACTIONS(4840), + [aux_sym_ctrl_match_token1] = ACTIONS(4838), + [anon_sym_DOT_DOT] = ACTIONS(4840), + [anon_sym_DOT_DOT2] = ACTIONS(4670), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4840), + [anon_sym_DOT_DOT_LT] = ACTIONS(4840), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4672), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4672), + [aux_sym__val_number_decimal_token1] = ACTIONS(4840), + [aux_sym__val_number_decimal_token2] = ACTIONS(4838), + [aux_sym__val_number_decimal_token3] = ACTIONS(4838), + [aux_sym__val_number_decimal_token4] = ACTIONS(4838), + [aux_sym__val_number_token1] = ACTIONS(4838), + [aux_sym__val_number_token2] = ACTIONS(4838), + [aux_sym__val_number_token3] = ACTIONS(4838), + [anon_sym_0b] = ACTIONS(4840), + [anon_sym_0o] = ACTIONS(4840), + [anon_sym_0x] = ACTIONS(4840), + [sym_val_date] = ACTIONS(4838), + [anon_sym_DQUOTE] = ACTIONS(4838), + [sym__str_single_quotes] = ACTIONS(4838), + [sym__str_back_ticks] = ACTIONS(4838), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4838), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4838), + [anon_sym_err_GT] = ACTIONS(4840), + [anon_sym_out_GT] = ACTIONS(4840), + [anon_sym_e_GT] = ACTIONS(4840), + [anon_sym_o_GT] = ACTIONS(4840), + [anon_sym_err_PLUSout_GT] = ACTIONS(4840), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4840), + [anon_sym_o_PLUSe_GT] = ACTIONS(4840), + [anon_sym_e_PLUSo_GT] = ACTIONS(4840), + [anon_sym_err_GT_GT] = ACTIONS(4838), + [anon_sym_out_GT_GT] = ACTIONS(4838), + [anon_sym_e_GT_GT] = ACTIONS(4838), + [anon_sym_o_GT_GT] = ACTIONS(4838), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4838), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4838), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4838), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4838), + [aux_sym_unquoted_token1] = ACTIONS(4840), + [anon_sym_POUND] = ACTIONS(247), + }, + [1471] = { + [sym_comment] = STATE(1471), + [sym__newline] = ACTIONS(1565), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_err_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_GT_PIPE] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1567), + [anon_sym_RPAREN] = ACTIONS(1567), + [anon_sym_LPAREN2] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1567), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1567), + [anon_sym_DOT_DOT2] = ACTIONS(1565), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1567), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1567), + [sym_filesize_unit] = ACTIONS(1567), + [sym_duration_unit] = ACTIONS(1567), + [anon_sym_err_GT] = ACTIONS(1565), + [anon_sym_out_GT] = ACTIONS(1565), + [anon_sym_e_GT] = ACTIONS(1565), + [anon_sym_o_GT] = ACTIONS(1565), + [anon_sym_err_PLUSout_GT] = ACTIONS(1565), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), + [anon_sym_o_PLUSe_GT] = ACTIONS(1565), + [anon_sym_e_PLUSo_GT] = ACTIONS(1565), + [anon_sym_err_GT_GT] = ACTIONS(1567), + [anon_sym_out_GT_GT] = ACTIONS(1567), + [anon_sym_e_GT_GT] = ACTIONS(1567), + [anon_sym_o_GT_GT] = ACTIONS(1567), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1567), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1567), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1567), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1567), + [aux_sym_unquoted_token2] = ACTIONS(1565), + [anon_sym_POUND] = ACTIONS(247), + }, + [1472] = { + [sym__expr_parenthesized_immediate] = STATE(7570), + [sym_comment] = STATE(1472), + [anon_sym_true] = ACTIONS(4842), + [anon_sym_false] = ACTIONS(4842), + [anon_sym_null] = ACTIONS(4842), + [aux_sym_cmd_identifier_token38] = ACTIONS(4842), + [aux_sym_cmd_identifier_token39] = ACTIONS(4842), + [aux_sym_cmd_identifier_token40] = ACTIONS(4842), + [sym__newline] = ACTIONS(4842), + [anon_sym_SEMI] = ACTIONS(4842), + [anon_sym_PIPE] = ACTIONS(4842), + [anon_sym_err_GT_PIPE] = ACTIONS(4842), + [anon_sym_out_GT_PIPE] = ACTIONS(4842), + [anon_sym_e_GT_PIPE] = ACTIONS(4842), + [anon_sym_o_GT_PIPE] = ACTIONS(4842), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4842), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4842), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4842), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4842), + [anon_sym_LBRACK] = ACTIONS(4842), + [anon_sym_LPAREN] = ACTIONS(4844), + [anon_sym_RPAREN] = ACTIONS(4842), + [anon_sym_DOLLAR] = ACTIONS(4844), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_DASH] = ACTIONS(4844), + [aux_sym_ctrl_match_token1] = ACTIONS(4842), + [anon_sym_RBRACE] = ACTIONS(4842), + [anon_sym_DOT_DOT] = ACTIONS(4844), + [anon_sym_LPAREN2] = ACTIONS(3914), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4842), + [anon_sym_DOT_DOT_LT] = ACTIONS(4842), + [aux_sym__val_number_decimal_token1] = ACTIONS(4844), + [aux_sym__val_number_decimal_token2] = ACTIONS(4842), + [aux_sym__val_number_decimal_token3] = ACTIONS(4842), + [aux_sym__val_number_decimal_token4] = ACTIONS(4842), + [aux_sym__val_number_token1] = ACTIONS(4842), + [aux_sym__val_number_token2] = ACTIONS(4842), + [aux_sym__val_number_token3] = ACTIONS(4842), + [anon_sym_0b] = ACTIONS(4844), + [anon_sym_0o] = ACTIONS(4844), + [anon_sym_0x] = ACTIONS(4844), + [sym_val_date] = ACTIONS(4842), + [anon_sym_DQUOTE] = ACTIONS(4842), + [sym__str_single_quotes] = ACTIONS(4842), + [sym__str_back_ticks] = ACTIONS(4842), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4842), + [anon_sym_err_GT] = ACTIONS(4844), + [anon_sym_out_GT] = ACTIONS(4844), + [anon_sym_e_GT] = ACTIONS(4844), + [anon_sym_o_GT] = ACTIONS(4844), + [anon_sym_err_PLUSout_GT] = ACTIONS(4844), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4844), + [anon_sym_o_PLUSe_GT] = ACTIONS(4844), + [anon_sym_e_PLUSo_GT] = ACTIONS(4844), + [anon_sym_err_GT_GT] = ACTIONS(4842), + [anon_sym_out_GT_GT] = ACTIONS(4842), + [anon_sym_e_GT_GT] = ACTIONS(4842), + [anon_sym_o_GT_GT] = ACTIONS(4842), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4842), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4842), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4842), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4842), + [aux_sym_unquoted_token1] = ACTIONS(4844), + [anon_sym_POUND] = ACTIONS(247), + }, + [1473] = { + [sym__expr_parenthesized_immediate] = STATE(7570), + [sym_comment] = STATE(1473), + [sym__newline] = ACTIONS(4842), + [anon_sym_SEMI] = ACTIONS(4842), + [anon_sym_PIPE] = ACTIONS(4842), + [anon_sym_err_GT_PIPE] = ACTIONS(4842), + [anon_sym_out_GT_PIPE] = ACTIONS(4842), + [anon_sym_e_GT_PIPE] = ACTIONS(4842), + [anon_sym_o_GT_PIPE] = ACTIONS(4842), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4842), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4842), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4842), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4842), + [anon_sym_RPAREN] = ACTIONS(4842), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_DASH] = ACTIONS(4844), + [aux_sym_ctrl_match_token1] = ACTIONS(4842), + [anon_sym_RBRACE] = ACTIONS(4842), + [anon_sym_EQ_GT] = ACTIONS(4842), + [anon_sym_LPAREN2] = ACTIONS(3914), + [aux_sym_expr_binary_token1] = ACTIONS(4842), + [aux_sym_expr_binary_token2] = ACTIONS(4842), + [aux_sym_expr_binary_token3] = ACTIONS(4842), + [aux_sym_expr_binary_token4] = ACTIONS(4842), + [aux_sym_expr_binary_token5] = ACTIONS(4842), + [aux_sym_expr_binary_token6] = ACTIONS(4842), + [aux_sym_expr_binary_token7] = ACTIONS(4842), + [aux_sym_expr_binary_token8] = ACTIONS(4842), + [aux_sym_expr_binary_token9] = ACTIONS(4842), + [aux_sym_expr_binary_token10] = ACTIONS(4842), + [aux_sym_expr_binary_token11] = ACTIONS(4842), + [aux_sym_expr_binary_token12] = ACTIONS(4842), + [aux_sym_expr_binary_token13] = ACTIONS(4842), + [aux_sym_expr_binary_token14] = ACTIONS(4842), + [aux_sym_expr_binary_token15] = ACTIONS(4842), + [aux_sym_expr_binary_token16] = ACTIONS(4842), + [aux_sym_expr_binary_token17] = ACTIONS(4842), + [aux_sym_expr_binary_token18] = ACTIONS(4842), + [aux_sym_expr_binary_token19] = ACTIONS(4842), + [aux_sym_expr_binary_token20] = ACTIONS(4842), + [aux_sym_expr_binary_token21] = ACTIONS(4842), + [aux_sym_expr_binary_token22] = ACTIONS(4842), + [aux_sym_expr_binary_token23] = ACTIONS(4842), + [aux_sym_expr_binary_token24] = ACTIONS(4842), + [aux_sym_expr_binary_token25] = ACTIONS(4842), + [aux_sym_expr_binary_token26] = ACTIONS(4842), + [aux_sym_expr_binary_token27] = ACTIONS(4842), + [aux_sym_expr_binary_token28] = ACTIONS(4842), + [anon_sym_err_GT] = ACTIONS(4844), + [anon_sym_out_GT] = ACTIONS(4844), + [anon_sym_e_GT] = ACTIONS(4844), + [anon_sym_o_GT] = ACTIONS(4844), + [anon_sym_err_PLUSout_GT] = ACTIONS(4844), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4844), + [anon_sym_o_PLUSe_GT] = ACTIONS(4844), + [anon_sym_e_PLUSo_GT] = ACTIONS(4844), + [anon_sym_err_GT_GT] = ACTIONS(4842), + [anon_sym_out_GT_GT] = ACTIONS(4842), + [anon_sym_e_GT_GT] = ACTIONS(4842), + [anon_sym_o_GT_GT] = ACTIONS(4842), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4842), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4842), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4842), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4842), + [anon_sym_POUND] = ACTIONS(247), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1702), 1, + ACTIONS(3924), 1, + aux_sym_unquoted_token2, + STATE(1474), 1, sym_comment, - ACTIONS(3487), 17, - anon_sym_LPAREN, + ACTIONS(1575), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -230475,7 +207757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(3485), 45, + ACTIONS(1587), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -230494,82 +207776,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [1965] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(1703), 1, - sym_comment, - STATE(7678), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5049), 17, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5047), 43, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -230592,12 +207803,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2042] = 4, + [75] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1704), 1, + STATE(1475), 1, sym_comment, - ACTIONS(1569), 18, + ACTIONS(1631), 18, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, @@ -230616,7 +207827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, aux_sym_unquoted_token2, - ACTIONS(1571), 44, + ACTIONS(1633), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -230661,689 +207872,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2115] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1705), 1, - sym_comment, - ACTIONS(2241), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2243), 53, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [2188] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1706), 1, - sym_comment, - ACTIONS(3375), 17, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(3373), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [2261] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5051), 1, - anon_sym_DOT, - ACTIONS(5053), 1, - aux_sym__immediate_decimal_token2, - STATE(1707), 1, - sym_comment, - ACTIONS(1589), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1591), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [2338] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4979), 1, - aux_sym__immediate_decimal_token2, - STATE(1708), 1, - sym_comment, - ACTIONS(1589), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1591), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [2413] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1709), 1, - sym_comment, - ACTIONS(3597), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(3595), 53, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [2486] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5055), 1, - aux_sym__immediate_decimal_token2, - STATE(1710), 1, - sym_comment, - ACTIONS(1648), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1650), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [2561] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(1711), 1, - sym_comment, - ACTIONS(2093), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2089), 40, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [2636] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - STATE(1712), 1, - sym_comment, - ACTIONS(2101), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2097), 40, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [2711] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - STATE(1713), 1, - sym_comment, - ACTIONS(2107), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2105), 40, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [2786] = 21, + [148] = 21, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1261), 1, + ACTIONS(1325), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, + ACTIONS(1327), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4260), 1, + ACTIONS(3700), 1, anon_sym_DQUOTE, - ACTIONS(5031), 1, + ACTIONS(4852), 1, aux_sym_cmd_identifier_token38, - ACTIONS(5035), 1, + ACTIONS(4856), 1, anon_sym_LBRACK, - ACTIONS(5037), 1, + ACTIONS(4858), 1, sym_wild_card, - STATE(1714), 1, + STATE(1476), 1, sym_comment, - STATE(2132), 1, - sym_val_string, - STATE(2155), 1, + STATE(1929), 1, sym_cmd_identifier, - STATE(2158), 1, + STATE(1930), 1, + sym_val_string, + STATE(1972), 1, sym__str_double_quotes, - STATE(6435), 1, + STATE(6348), 1, sym__command_name, - STATE(6452), 1, + STATE(6352), 1, sym_command_list, - STATE(6768), 1, + STATE(6554), 1, sym_scope_pattern, - STATE(7482), 1, + STATE(6953), 1, sym__val_number_decimal, - ACTIONS(1259), 2, + ACTIONS(1323), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4262), 2, + ACTIONS(3702), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5057), 4, + ACTIONS(4854), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(5025), 5, + ACTIONS(4846), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5029), 5, + ACTIONS(4850), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5027), 31, + ACTIONS(4848), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -231375,16 +207958,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [2893] = 4, + [255] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(1715), 1, + ACTIONS(2226), 1, + anon_sym_LPAREN2, + ACTIONS(2230), 1, + aux_sym_unquoted_token2, + STATE(1477), 1, sym_comment, - ACTIONS(994), 17, + ACTIONS(2224), 17, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -231398,7 +207985,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(996), 45, + ACTIONS(2228), 43, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -231417,11 +208005,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -231444,85 +208029,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2966] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1716), 1, - sym_comment, - ACTIONS(3201), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(3199), 53, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [3039] = 6, + [332] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1711), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - ACTIONS(1719), 1, - aux_sym_unquoted_token2, - STATE(1717), 1, + STATE(1478), 1, sym_comment, - ACTIONS(2085), 17, + STATE(7570), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4761), 17, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, @@ -231540,7 +208056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2087), 43, + ACTIONS(4759), 43, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -231584,17 +208100,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3116] = 6, + [409] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1429), 1, - aux_sym_unquoted_token2, - ACTIONS(1692), 1, - anon_sym_LPAREN2, - STATE(1718), 1, + ACTIONS(4860), 1, + anon_sym_DOT, + ACTIONS(4862), 1, + aux_sym__immediate_decimal_token2, + STATE(1479), 1, sym_comment, - ACTIONS(1690), 17, - anon_sym_LPAREN, + ACTIONS(1643), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -231611,7 +208126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1698), 43, + ACTIONS(1645), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -231631,6 +208146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT_EQ, @@ -231655,15 +208171,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3193] = 5, + [486] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5059), 1, - anon_sym_LBRACK2, - STATE(1719), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(1480), 1, sym_comment, - ACTIONS(2235), 17, - anon_sym_LBRACK, + STATE(7405), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4797), 17, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -231680,7 +208198,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2239), 44, + ACTIONS(4795), 43, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -231698,11 +208217,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -231725,57 +208242,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3268] = 4, - ACTIONS(3), 1, + [563] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1720), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(1481), 1, sym_comment, - ACTIONS(2133), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, + STATE(7390), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4866), 17, anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2131), 41, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -231784,32 +208268,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - aux_sym_unquoted_token4, - [3341] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1721), 1, - sym_comment, - ACTIONS(2131), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2133), 53, + ACTIONS(4864), 43, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231821,40 +208287,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -231863,13 +208313,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3414] = 4, + [640] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1722), 1, + ACTIONS(4868), 1, + anon_sym_LBRACK2, + STATE(1482), 1, sym_comment, - ACTIONS(1648), 18, - anon_sym_LPAREN, + ACTIONS(2303), 17, + anon_sym_LBRACK, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -231886,9 +208338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - aux_sym_unquoted_token2, - ACTIONS(1650), 44, - ts_builtin_sym_end, + ACTIONS(2307), 44, anon_sym_true, anon_sym_false, anon_sym_null, @@ -231906,10 +208356,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -231932,14 +208383,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3487] = 5, + [715] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5061), 1, + ACTIONS(4870), 1, anon_sym_QMARK2, - STATE(1723), 1, + STATE(1483), 1, sym_comment, - ACTIONS(970), 17, + ACTIONS(1034), 17, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -231957,7 +208408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(972), 44, + ACTIONS(1036), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -232002,22 +208453,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3562] = 5, + [790] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5063), 1, - anon_sym_QMARK2, - STATE(1724), 1, + STATE(1484), 1, sym_comment, - ACTIONS(980), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1625), 10, + sym__newline, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -232026,15 +208469,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(982), 44, + ACTIONS(1629), 52, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [863] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(1485), 1, + sym_comment, + ACTIONS(2297), 19, ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232047,23 +208545,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, + aux_sym_ctrl_match_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2293), 41, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_DASH, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -232072,16 +208592,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3637] = 6, + aux_sym_unquoted_token1, + [940] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2091), 1, + ACTIONS(2239), 1, anon_sym_LPAREN2, - ACTIONS(2095), 1, + ACTIONS(2241), 1, aux_sym_unquoted_token4, - STATE(1725), 1, + STATE(1486), 1, sym_comment, - ACTIONS(2093), 19, + ACTIONS(1078), 19, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -232101,7 +208622,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2089), 41, + ACTIONS(1076), 41, anon_sym_true, anon_sym_false, anon_sym_null, @@ -232143,12 +208664,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [3714] = 4, + [1017] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1726), 1, + ACTIONS(4872), 1, + anon_sym_QMARK2, + STATE(1487), 1, sym_comment, - ACTIONS(986), 17, + ACTIONS(1028), 17, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -232166,7 +208689,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(988), 45, + ACTIONS(1030), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -232186,10 +208710,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -232212,12 +208734,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3787] = 4, + [1092] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1727), 1, + STATE(1488), 1, sym_comment, - ACTIONS(990), 17, + ACTIONS(1052), 17, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -232235,7 +208757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(992), 45, + ACTIONS(1054), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -232281,17 +208803,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3860] = 6, + [1165] = 20, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1325), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4263), 1, + anon_sym_DOLLAR, + ACTIONS(4283), 1, + anon_sym_DQUOTE, + ACTIONS(4287), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4289), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4876), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(4878), 1, + anon_sym_LPAREN, + STATE(1489), 1, + sym_comment, + STATE(4321), 1, + sym__str_double_quotes, + STATE(4619), 1, + sym__inter_single_quotes, + STATE(4620), 1, + sym__inter_double_quotes, + STATE(6962), 1, + sym__val_number_decimal, + ACTIONS(1323), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4285), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(367), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4874), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + STATE(4593), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(369), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [1270] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2081), 1, - anon_sym_LPAREN2, - ACTIONS(2083), 1, - aux_sym_unquoted_token4, - STATE(1728), 1, + STATE(1490), 1, sym_comment, - ACTIONS(1008), 19, - ts_builtin_sym_end, + ACTIONS(2261), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232304,20 +208906,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1006), 41, + ACTIONS(2259), 41, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, @@ -232352,39 +208956,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [3937] = 20, + aux_sym_unquoted_token4, + [1343] = 20, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1261), 1, + ACTIONS(1325), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, + ACTIONS(1327), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4413), 1, + ACTIONS(4227), 1, anon_sym_DOLLAR, - ACTIONS(4431), 1, + ACTIONS(4245), 1, anon_sym_DQUOTE, - ACTIONS(4435), 1, + ACTIONS(4249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4437), 1, + ACTIONS(4251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5067), 1, + ACTIONS(4882), 1, aux_sym_cmd_identifier_token38, - ACTIONS(5069), 1, + ACTIONS(4884), 1, anon_sym_LPAREN, - STATE(1729), 1, + STATE(1491), 1, sym_comment, - STATE(4755), 1, + STATE(4462), 1, sym__str_double_quotes, - STATE(5023), 1, - sym__inter_double_quotes, - STATE(5169), 1, + STATE(4775), 1, sym__inter_single_quotes, - STATE(7527), 1, + STATE(4778), 1, + sym__inter_double_quotes, + STATE(7035), 1, sym__val_number_decimal, - ACTIONS(1259), 2, + ACTIONS(1323), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4433), 2, + ACTIONS(4247), 2, sym__str_single_quotes, sym__str_back_ticks, ACTIONS(19), 5, @@ -232393,13 +208998,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5065), 5, + ACTIONS(4880), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - STATE(4948), 5, + STATE(4709), 5, sym_cmd_identifier, sym_expr_parenthesized, sym_val_variable, @@ -232437,22 +209042,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [4042] = 4, - ACTIONS(247), 1, + [1448] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1730), 1, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(1492), 1, sym_comment, - ACTIONS(3607), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(3605), 53, + ACTIONS(2297), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232464,40 +209061,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2293), 40, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -232506,14 +209111,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4115] = 4, + aux_sym_unquoted_token1, + [1523] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1731), 1, + STATE(1493), 1, sym_comment, - ACTIONS(1481), 10, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, + ACTIONS(4888), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -232522,8 +209127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1483), 52, - ts_builtin_sym_end, + ACTIONS(4886), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232535,6 +209139,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -232563,10 +209173,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -232575,16 +209181,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4188] = 6, + [1596] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - STATE(1732), 1, + STATE(1494), 1, sym_comment, - STATE(7887), 1, + STATE(7390), 1, sym__expr_parenthesized_immediate, - ACTIONS(3261), 17, + ACTIONS(4892), 17, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, @@ -232602,8 +209208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(3259), 43, - ts_builtin_sym_end, + ACTIONS(4890), 43, anon_sym_true, anon_sym_false, anon_sym_null, @@ -232622,6 +209227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT_EQ, @@ -232646,83 +209252,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4265] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2099), 1, - anon_sym_LPAREN2, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - STATE(1733), 1, - sym_comment, - ACTIONS(2101), 19, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2097), 41, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [4342] = 4, + [1673] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1734), 1, + STATE(1495), 1, sym_comment, - ACTIONS(1006), 9, + ACTIONS(1052), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -232732,7 +209267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1008), 53, + ACTIONS(1054), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232745,7 +209280,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, @@ -232778,6 +209312,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -232786,83 +209321,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4415] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2099), 1, - anon_sym_LPAREN2, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - STATE(1735), 1, - sym_comment, - ACTIONS(2107), 19, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2105), 41, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [4492] = 4, + [1746] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1736), 1, + STATE(1496), 1, sym_comment, - ACTIONS(1721), 18, + ACTIONS(4888), 17, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, @@ -232880,9 +209344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - aux_sym_unquoted_token2, - ACTIONS(1723), 44, - ts_builtin_sym_end, + ACTIONS(4886), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -232901,8 +209363,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -232926,13 +209390,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4565] = 4, + [1819] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(1737), 1, + ACTIONS(4894), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(4896), 1, + anon_sym_DOT_DOT2, + ACTIONS(4900), 1, + sym_filesize_unit, + ACTIONS(4902), 1, + sym_duration_unit, + STATE(1497), 1, sym_comment, - ACTIONS(2332), 9, - anon_sym_DASH, + ACTIONS(4898), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1575), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -232941,7 +209415,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2334), 53, + ACTIONS(1587), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232953,12 +209428,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -232995,14 +209464,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4638] = 4, + [1902] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1738), 1, + ACTIONS(4908), 1, + anon_sym_EQ2, + STATE(1498), 1, sym_comment, - ACTIONS(1473), 10, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, + ACTIONS(4906), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -233011,8 +209487,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1475), 52, - ts_builtin_sym_end, + aux_sym_unquoted_token1, + ACTIONS(4904), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233024,38 +209506,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -233064,16 +209534,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4711] = 6, + [1977] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(1798), 1, anon_sym_LPAREN2, - STATE(1739), 1, + ACTIONS(1806), 1, + aux_sym_unquoted_token2, + STATE(1499), 1, sym_comment, - STATE(7887), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3265), 17, + ACTIONS(2160), 17, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, @@ -233091,7 +209561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(3263), 43, + ACTIONS(2162), 43, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -233135,12 +209605,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4788] = 4, + [2054] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1740), 1, + STATE(1500), 1, sym_comment, - ACTIONS(1778), 9, + ACTIONS(1060), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -233150,7 +209620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1780), 53, + ACTIONS(1062), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233163,7 +209633,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, @@ -233196,6 +209665,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -233204,16 +209674,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4861] = 6, + [2127] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1711), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - ACTIONS(1719), 1, - aux_sym_unquoted_token2, - STATE(1741), 1, + STATE(1501), 1, sym_comment, - ACTIONS(1709), 17, + STATE(7570), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4783), 17, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, @@ -233231,7 +209701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1717), 43, + ACTIONS(4781), 43, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -233275,23 +209745,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4938] = 9, + [2204] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5071), 1, + STATE(1502), 1, + sym_comment, + ACTIONS(1565), 10, aux_sym_cmd_identifier_token41, - ACTIONS(5073), 1, anon_sym_DOT_DOT2, - ACTIONS(5077), 1, - sym_filesize_unit, - ACTIONS(5079), 1, - sym_duration_unit, - STATE(1742), 1, - sym_comment, - ACTIONS(5075), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1525), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -233300,7 +209761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1537), 48, + ACTIONS(1567), 52, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -233341,6 +209802,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -233349,13 +209814,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5021] = 4, + [2277] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1743), 1, + STATE(1503), 1, sym_comment, - ACTIONS(1770), 9, + ACTIONS(1048), 17, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -233364,7 +209836,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1772), 53, + aux_sym_unquoted_token1, + ACTIONS(1050), 45, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233376,40 +209856,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -233418,13 +209883,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5094] = 4, + [2350] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1744), 1, + STATE(1504), 1, sym_comment, - ACTIONS(2315), 9, - anon_sym_DASH, + ACTIONS(1517), 10, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -233433,7 +209899,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2317), 53, + ACTIONS(1519), 52, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233445,12 +209912,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -233479,6 +209940,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -233487,13 +209952,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5167] = 4, + [2423] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(1745), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(1505), 1, sym_comment, - ACTIONS(2336), 9, + STATE(7570), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4771), 17, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -233502,7 +209978,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2338), 53, + aux_sym_unquoted_token1, + ACTIONS(4769), 43, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233514,40 +209998,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -233556,98 +210023,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5240] = 20, + [2500] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4449), 1, - anon_sym_DOLLAR, - ACTIONS(4469), 1, - anon_sym_DQUOTE, - ACTIONS(4473), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4475), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5013), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5015), 1, - anon_sym_LPAREN, - STATE(1746), 1, + ACTIONS(4910), 1, + anon_sym_EQ2, + ACTIONS(4912), 1, + sym_short_flag_identifier, + STATE(1506), 1, sym_comment, - STATE(4660), 1, - sym__str_double_quotes, - STATE(4902), 1, - sym__inter_single_quotes, - STATE(4928), 1, - sym__inter_double_quotes, - STATE(7214), 1, - sym__val_number_decimal, - ACTIONS(1259), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4471), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(369), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5011), 5, + ACTIONS(4747), 28, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - STATE(4937), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(371), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [5345] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1747), 1, - sym_comment, - ACTIONS(3599), 9, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -233656,7 +210060,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3177), 53, + aux_sym_unquoted_token1, + ACTIONS(4749), 32, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233668,40 +210074,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_LPAREN, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -233710,13 +210094,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5418] = 4, + [2577] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1748), 1, + ACTIONS(4441), 1, + aux_sym_unquoted_token2, + STATE(1507), 1, sym_comment, - ACTIONS(3603), 9, + ACTIONS(1575), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -233725,7 +210117,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3601), 53, + aux_sym_unquoted_token1, + ACTIONS(1587), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233737,40 +210136,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -233779,13 +210164,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5491] = 4, + [2652] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1749), 1, + STATE(1508), 1, sym_comment, - ACTIONS(3201), 9, + ACTIONS(1755), 18, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -233794,7 +210186,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3199), 53, + aux_sym_unquoted_token1, + aux_sym_unquoted_token2, + ACTIONS(1757), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233806,40 +210207,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -233848,13 +210233,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5564] = 4, + [2725] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1750), 1, + ACTIONS(4918), 1, + anon_sym_EQ2, + STATE(1509), 1, sym_comment, - ACTIONS(2271), 9, + ACTIONS(4916), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -233863,7 +210256,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2273), 53, + aux_sym_unquoted_token1, + ACTIONS(4914), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233875,40 +210275,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -233917,20 +210303,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5637] = 8, + [2800] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5081), 1, - anon_sym_DOT, - STATE(1625), 1, - sym_path, - STATE(1743), 1, - sym_cell_path, - STATE(1751), 1, + STATE(1510), 1, sym_comment, - STATE(1933), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1762), 8, + ACTIONS(1643), 18, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -233939,7 +210325,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1764), 50, + aux_sym_unquoted_token1, + aux_sym_unquoted_token2, + ACTIONS(1645), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233951,37 +210346,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -233990,29 +210372,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5718] = 8, - ACTIONS(247), 1, + [2873] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5081), 1, - anon_sym_DOT, - STATE(1625), 1, - sym_path, - STATE(1752), 1, + ACTIONS(2245), 1, + anon_sym_LPAREN2, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + STATE(1511), 1, sym_comment, - STATE(1779), 1, - sym_cell_path, - STATE(1933), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1778), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1780), 50, + ACTIONS(2253), 19, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -234024,37 +210394,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACK, + aux_sym_ctrl_match_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2251), 41, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -234063,20 +210442,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5799] = 8, + aux_sym_unquoted_token1, + [2950] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5081), 1, - anon_sym_DOT, - STATE(1625), 1, - sym_path, - STATE(1753), 1, + ACTIONS(4785), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(4787), 1, + anon_sym_DOT_DOT2, + ACTIONS(4920), 1, + sym_filesize_unit, + ACTIONS(4922), 1, + sym_duration_unit, + STATE(1512), 1, sym_comment, - STATE(1782), 1, - sym_cell_path, - STATE(1933), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1770), 8, + ACTIONS(4789), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1575), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -234085,8 +210469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1772), 50, - sym__newline, + ACTIONS(1587), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -234098,36 +210481,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -234136,20 +210517,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5880] = 8, + [3033] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5081), 1, - anon_sym_DOT, - STATE(1625), 1, - sym_path, - STATE(1754), 1, + STATE(1513), 1, sym_comment, - STATE(1785), 1, - sym_cell_path, - STATE(1933), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1847), 8, + ACTIONS(1639), 10, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -234158,7 +210533,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1849), 50, + ACTIONS(1641), 52, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -234170,9 +210546,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -234201,6 +210574,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -234209,20 +210586,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5961] = 8, + [3106] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5081), 1, - anon_sym_DOT, - STATE(1625), 1, - sym_path, - STATE(1755), 1, + STATE(1514), 1, sym_comment, - STATE(1786), 1, - sym_cell_path, - STATE(1933), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1871), 8, + ACTIONS(4926), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -234231,7 +210601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1873), 50, + ACTIONS(4924), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -234244,8 +210614,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -234282,20 +210655,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6042] = 8, + [3179] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5081), 1, - anon_sym_DOT, - STATE(1625), 1, - sym_path, - STATE(1756), 1, + STATE(1515), 1, sym_comment, - STATE(1787), 1, - sym_cell_path, - STATE(1933), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1875), 8, + ACTIONS(1705), 18, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -234304,7 +210677,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1877), 50, + aux_sym_unquoted_token1, + aux_sym_unquoted_token2, + ACTIONS(1707), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -234316,37 +210698,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -234355,20 +210724,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6123] = 8, + [3252] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5081), 1, - anon_sym_DOT, - STATE(1625), 1, - sym_path, - STATE(1757), 1, + STATE(1516), 1, sym_comment, - STATE(1788), 1, - sym_cell_path, - STATE(1933), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1879), 8, + ACTIONS(1040), 17, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -234377,7 +210746,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1881), 50, + aux_sym_unquoted_token1, + ACTIONS(1042), 45, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -234389,37 +210766,266 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [3325] = 21, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1325), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3700), 1, + anon_sym_DQUOTE, + ACTIONS(4852), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(4856), 1, + anon_sym_LBRACK, + ACTIONS(4858), 1, + sym_wild_card, + STATE(1517), 1, + sym_comment, + STATE(1929), 1, + sym_cmd_identifier, + STATE(1930), 1, + sym_val_string, + STATE(1972), 1, + sym__str_double_quotes, + STATE(6331), 1, + sym_scope_pattern, + STATE(6348), 1, + sym__command_name, + STATE(6352), 1, + sym_command_list, + STATE(6953), 1, + sym__val_number_decimal, + ACTIONS(1323), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3702), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4928), 4, + sym__newline, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + ACTIONS(4846), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4850), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4848), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [3432] = 21, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1325), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3700), 1, + anon_sym_DQUOTE, + ACTIONS(4852), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(4856), 1, + anon_sym_LBRACK, + ACTIONS(4858), 1, + sym_wild_card, + STATE(1518), 1, + sym_comment, + STATE(1929), 1, + sym_cmd_identifier, + STATE(1930), 1, + sym_val_string, + STATE(1972), 1, + sym__str_double_quotes, + STATE(6348), 1, + sym__command_name, + STATE(6351), 1, + sym_scope_pattern, + STATE(6352), 1, + sym_command_list, + STATE(6953), 1, + sym__val_number_decimal, + ACTIONS(1323), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3702), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4930), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(4846), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4850), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4848), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [3539] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + STATE(1519), 1, + sym_comment, + ACTIONS(2247), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2243), 40, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -234428,20 +211034,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6204] = 8, + aux_sym_unquoted_token1, + [3614] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5081), 1, - anon_sym_DOT, - STATE(1625), 1, - sym_path, - STATE(1758), 1, + ACTIONS(4932), 1, + anon_sym_LBRACK2, + STATE(1520), 1, sym_comment, - STATE(1789), 1, - sym_cell_path, - STATE(1933), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1883), 8, + ACTIONS(2303), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -234450,7 +211052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1885), 50, + ACTIONS(2307), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -234463,8 +211065,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, anon_sym_RBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -234501,20 +211105,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6285] = 8, - ACTIONS(247), 1, + [3689] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5081), 1, - anon_sym_DOT, - STATE(1625), 1, - sym_path, - STATE(1759), 1, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + STATE(1521), 1, sym_comment, - STATE(1790), 1, - sym_cell_path, - STATE(1933), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1891), 8, + ACTIONS(2253), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2251), 40, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -234523,7 +211166,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1893), 50, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym_unquoted_token1, + [3764] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1522), 1, + sym_comment, + ACTIONS(2261), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -234535,37 +211193,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACK, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2259), 42, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -234574,20 +211242,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6366] = 8, + aux_sym_unquoted_token1, + aux_sym_unquoted_token4, + [3837] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5081), 1, - anon_sym_DOT, - STATE(1625), 1, - sym_path, - STATE(1760), 1, + ACTIONS(4779), 1, + aux_sym__immediate_decimal_token2, + STATE(1523), 1, sym_comment, - STATE(1791), 1, - sym_cell_path, - STATE(1933), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1895), 8, + ACTIONS(1643), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -234596,7 +211267,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1897), 50, + aux_sym_unquoted_token1, + ACTIONS(1645), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -234608,37 +211286,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -234647,20 +211314,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6447] = 8, + [3912] = 20, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5081), 1, - anon_sym_DOT, - STATE(1625), 1, - sym_path, - STATE(1761), 1, + ACTIONS(1325), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4263), 1, + anon_sym_DOLLAR, + ACTIONS(4283), 1, + anon_sym_DQUOTE, + ACTIONS(4287), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4289), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4876), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(4878), 1, + anon_sym_LPAREN, + STATE(1524), 1, sym_comment, - STATE(1792), 1, - sym_cell_path, - STATE(1933), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1747), 8, + STATE(4321), 1, + sym__str_double_quotes, + STATE(4619), 1, + sym__inter_single_quotes, + STATE(4620), 1, + sym__inter_double_quotes, + STATE(6962), 1, + sym__val_number_decimal, + ACTIONS(1323), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4285), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(367), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4874), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + STATE(4517), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(369), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [4017] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4934), 1, + aux_sym__immediate_decimal_token2, + STATE(1525), 1, + sym_comment, + ACTIONS(1705), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -234669,7 +211422,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1749), 50, + aux_sym_unquoted_token1, + ACTIONS(1707), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -234681,37 +211441,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -234720,20 +211469,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6528] = 8, + [4092] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5081), 1, + STATE(1526), 1, + sym_comment, + ACTIONS(1044), 17, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, anon_sym_DOT, - STATE(1625), 1, - sym_path, - STATE(1762), 1, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1046), 45, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [4165] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1798), 1, + anon_sym_LPAREN2, + ACTIONS(1806), 1, + aux_sym_unquoted_token2, + STATE(1527), 1, sym_comment, - STATE(1793), 1, - sym_cell_path, - STATE(1933), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1824), 8, + ACTIONS(1796), 17, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -234742,7 +211564,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1826), 50, + aux_sym_unquoted_token1, + ACTIONS(1804), 43, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -234754,37 +211584,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -234793,20 +211609,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6609] = 8, + [4242] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5081), 1, - anon_sym_DOT, - STATE(1625), 1, - sym_path, - STATE(1678), 1, - sym_cell_path, - STATE(1763), 1, + ACTIONS(4936), 1, + sym_long_flag_identifier, + ACTIONS(4938), 1, + anon_sym_EQ2, + STATE(1528), 1, sym_comment, - STATE(1933), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1855), 8, + ACTIONS(4735), 25, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -234815,7 +211643,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1857), 50, + aux_sym_unquoted_token1, + ACTIONS(4737), 35, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -234827,37 +211658,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -234866,20 +211680,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6690] = 8, + [4319] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5081), 1, - anon_sym_DOT, - STATE(1625), 1, - sym_path, - STATE(1764), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(1529), 1, sym_comment, - STATE(1795), 1, - sym_cell_path, - STATE(1933), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1796), 8, + STATE(7570), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4844), 17, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -234888,7 +211706,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1798), 50, + aux_sym_unquoted_token1, + ACTIONS(4842), 43, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -234900,37 +211726,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -234939,20 +211751,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6771] = 8, + [4396] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5081), 1, - anon_sym_DOT, - STATE(1625), 1, - sym_path, - STATE(1765), 1, + STATE(1530), 1, sym_comment, - STATE(1796), 1, - sym_cell_path, - STATE(1933), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1808), 8, + ACTIONS(1056), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -234961,7 +211766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1810), 50, + ACTIONS(1058), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -234974,8 +211779,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, anon_sym_RBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -235004,6 +211811,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -235012,20 +211820,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6852] = 8, + [4469] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5081), 1, - anon_sym_DOT, - STATE(1625), 1, - sym_path, - STATE(1766), 1, + STATE(1531), 1, sym_comment, - STATE(1797), 1, - sym_cell_path, - STATE(1933), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1820), 8, + ACTIONS(1497), 10, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -235034,7 +211836,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1822), 50, + ACTIONS(1499), 52, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -235046,9 +211849,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -235077,6 +211877,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -235085,20 +211889,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6933] = 8, + [4542] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5081), 1, - anon_sym_DOT, - STATE(1625), 1, - sym_path, - STATE(1767), 1, + STATE(1532), 1, sym_comment, - STATE(1798), 1, - sym_cell_path, - STATE(1933), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1741), 8, + ACTIONS(1056), 17, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -235107,7 +211911,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1745), 50, + aux_sym_unquoted_token1, + ACTIONS(1058), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -235119,37 +211930,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -235158,20 +211958,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7014] = 8, + [4615] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5081), 1, - anon_sym_DOT, - STATE(1625), 1, - sym_path, - STATE(1768), 1, + STATE(1533), 1, sym_comment, - STATE(1799), 1, - sym_cell_path, - STATE(1933), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1899), 8, + ACTIONS(2137), 10, + sym__newline, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -235180,7 +211974,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1901), 50, + ACTIONS(2139), 52, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [4688] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2241), 1, + aux_sym_unquoted_token4, + STATE(1534), 1, + sym_comment, + ACTIONS(1078), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -235192,37 +212046,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, + aux_sym_ctrl_match_token1, anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1076), 40, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -235231,20 +212096,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7095] = 8, + aux_sym_unquoted_token1, + [4763] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5081), 1, - anon_sym_DOT, - STATE(1625), 1, - sym_path, - STATE(1769), 1, + ACTIONS(1495), 1, + aux_sym_unquoted_token2, + ACTIONS(1788), 1, + anon_sym_LPAREN2, + STATE(1535), 1, sym_comment, - STATE(1800), 1, - sym_cell_path, - STATE(1933), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1831), 8, + ACTIONS(1786), 17, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -235253,7 +212123,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1833), 50, + aux_sym_unquoted_token1, + ACTIONS(1794), 43, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -235265,37 +212143,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -235304,20 +212168,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7176] = 8, + [4840] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5081), 1, - anon_sym_DOT, - STATE(1625), 1, - sym_path, - STATE(1770), 1, + ACTIONS(4940), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4942), 1, + aux_sym__immediate_decimal_token2, + STATE(1536), 1, sym_comment, - STATE(1801), 1, - sym_cell_path, - STATE(1933), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1835), 8, + ACTIONS(1631), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -235326,7 +212193,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1837), 50, + aux_sym_unquoted_token1, + ACTIONS(1633), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -235338,37 +212213,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -235377,20 +212239,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7257] = 8, + [4917] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5081), 1, - anon_sym_DOT, - STATE(1625), 1, - sym_path, - STATE(1771), 1, + STATE(1537), 1, sym_comment, - STATE(1802), 1, - sym_cell_path, - STATE(1933), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1839), 8, + ACTIONS(4926), 17, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -235399,7 +212261,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1841), 50, + aux_sym_unquoted_token1, + ACTIONS(4924), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -235411,37 +212280,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -235450,13 +212308,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7338] = 4, + [4990] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1772), 1, + STATE(1538), 1, sym_comment, - ACTIONS(3201), 9, + ACTIONS(1060), 17, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -235465,7 +212330,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3199), 53, + aux_sym_unquoted_token1, + ACTIONS(1062), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -235477,40 +212349,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -235519,13 +212377,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7411] = 4, + [5063] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(1773), 1, + ACTIONS(1553), 1, + aux_sym_unquoted_token2, + ACTIONS(2220), 1, + anon_sym_LPAREN2, + STATE(1539), 1, sym_comment, - ACTIONS(3201), 9, + ACTIONS(2218), 17, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -235534,7 +212403,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3199), 53, + aux_sym_unquoted_token1, + ACTIONS(2222), 43, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -235546,12 +212423,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [5140] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2245), 1, + anon_sym_LPAREN2, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + STATE(1540), 1, + sym_comment, + ACTIONS(2247), 19, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + aux_sym_ctrl_match_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2243), 41, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym_unquoted_token1, + [5217] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4944), 1, + anon_sym_DOT, + STATE(1530), 1, + sym_path, + STATE(1541), 1, + sym_comment, + STATE(1698), 1, + sym_cell_path, + STATE(1908), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1871), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1873), 49, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -235588,35 +212591,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7484] = 6, + [5297] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5083), 1, - anon_sym_EQ2, - ACTIONS(5085), 1, - sym_short_flag_identifier, - STATE(1774), 1, + STATE(1542), 1, sym_comment, - ACTIONS(4942), 28, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2368), 16, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -235626,8 +212613,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4944), 32, - ts_builtin_sym_end, + ACTIONS(2370), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -235641,11 +212633,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, @@ -235659,13 +212659,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7561] = 4, - ACTIONS(3), 1, + [5369] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1775), 1, + STATE(1543), 1, sym_comment, - ACTIONS(2133), 20, - ts_builtin_sym_end, + ACTIONS(1044), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1046), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -235678,46 +212700,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2131), 42, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [5441] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1544), 1, + sym_comment, + ACTIONS(1961), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1963), 45, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -235726,19 +212795,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - aux_sym_unquoted_token4, - [7634] = 6, + [5513] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(1776), 1, + STATE(1545), 1, sym_comment, - STATE(7634), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4991), 17, - anon_sym_LPAREN, + ACTIONS(2355), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -235755,8 +212817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4989), 43, - ts_builtin_sym_end, + ACTIONS(2357), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -235775,8 +212836,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -235799,13 +212863,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7711] = 4, + [5585] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1777), 1, + STATE(1546), 1, sym_comment, - ACTIONS(3201), 9, + ACTIONS(2380), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -235814,7 +212884,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3199), 53, + aux_sym_unquoted_token1, + ACTIONS(2382), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -235826,40 +212903,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -235868,16 +212931,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7784] = 4, + [5657] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1778), 1, + STATE(1547), 1, sym_comment, - ACTIONS(966), 17, + ACTIONS(1048), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -235891,8 +212953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(968), 45, - ts_builtin_sym_end, + ACTIONS(1050), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -235912,9 +212973,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_QMARK2, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -235937,13 +212999,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7857] = 4, + [5729] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1779), 1, + STATE(1548), 1, sym_comment, - ACTIONS(2255), 9, + ACTIONS(2457), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -235952,7 +213020,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2257), 53, + aux_sym_unquoted_token1, + ACTIONS(2459), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -235964,40 +213039,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236006,14 +213067,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7930] = 4, + [5801] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1780), 1, + STATE(1549), 1, sym_comment, - ACTIONS(1982), 10, - sym__newline, - anon_sym_DOT_DOT2, + ACTIONS(2392), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236022,7 +213088,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1984), 52, + aux_sym_unquoted_token1, + ACTIONS(2394), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -236033,40 +213107,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_if, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236075,13 +213135,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8003] = 4, + [5873] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1781), 1, + STATE(1550), 1, sym_comment, - ACTIONS(2251), 9, + ACTIONS(2396), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236090,7 +213156,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2253), 53, + aux_sym_unquoted_token1, + ACTIONS(2398), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236102,40 +213175,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236144,13 +213203,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8076] = 4, + [5945] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1782), 1, + STATE(1551), 1, sym_comment, - ACTIONS(2303), 9, + ACTIONS(1843), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236159,7 +213224,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2305), 53, + aux_sym_unquoted_token1, + ACTIONS(1845), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236171,40 +213243,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236213,13 +213271,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8149] = 4, + [6017] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1783), 1, + STATE(1552), 1, sym_comment, - ACTIONS(2340), 9, + ACTIONS(2400), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236228,7 +213292,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2342), 53, + aux_sym_unquoted_token1, + ACTIONS(2402), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236240,40 +213311,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236282,13 +213339,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8222] = 4, + [6089] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1784), 1, + STATE(1553), 1, sym_comment, - ACTIONS(3201), 9, + ACTIONS(2404), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236297,7 +213360,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3199), 53, + aux_sym_unquoted_token1, + ACTIONS(2406), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236309,40 +213379,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236351,13 +213407,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8295] = 4, + [6161] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1785), 1, + STATE(1554), 1, sym_comment, - ACTIONS(2344), 9, + ACTIONS(1859), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236366,7 +213428,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2346), 53, + aux_sym_unquoted_token1, + ACTIONS(1861), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236378,40 +213447,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236420,13 +213475,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8368] = 4, + [6233] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1786), 1, + STATE(1555), 1, sym_comment, - ACTIONS(1879), 9, + ACTIONS(1867), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236435,7 +213496,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1881), 53, + aux_sym_unquoted_token1, + ACTIONS(1869), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236447,40 +213515,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236489,13 +213543,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8441] = 4, + [6305] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1787), 1, + STATE(1556), 1, sym_comment, - ACTIONS(2348), 9, + ACTIONS(1871), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236504,7 +213564,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2350), 53, + aux_sym_unquoted_token1, + ACTIONS(1873), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236516,40 +213583,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236558,13 +213611,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8514] = 4, + [6377] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1788), 1, + STATE(1557), 1, sym_comment, - ACTIONS(2352), 9, + ACTIONS(2408), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236573,7 +213632,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2354), 53, + aux_sym_unquoted_token1, + ACTIONS(2410), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236585,40 +213651,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236627,13 +213679,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8587] = 4, + [6449] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1789), 1, + STATE(1558), 1, sym_comment, - ACTIONS(1747), 9, + ACTIONS(1890), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236642,7 +213700,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1749), 53, + aux_sym_unquoted_token1, + ACTIONS(1892), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236654,40 +213719,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236696,13 +213747,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8660] = 4, + [6521] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1790), 1, + STATE(1559), 1, sym_comment, - ACTIONS(1855), 9, + ACTIONS(2412), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236711,7 +213768,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1857), 53, + aux_sym_unquoted_token1, + ACTIONS(2414), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236723,40 +213787,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236765,13 +213815,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8733] = 4, + [6593] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1791), 1, + STATE(1560), 1, sym_comment, - ACTIONS(1796), 9, + ACTIONS(2416), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236780,7 +213836,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1798), 53, + aux_sym_unquoted_token1, + ACTIONS(2418), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236792,40 +213855,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236834,13 +213883,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8806] = 4, + [6665] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1792), 1, + STATE(1561), 1, sym_comment, - ACTIONS(2359), 9, + ACTIONS(1894), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236849,7 +213904,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2361), 53, + aux_sym_unquoted_token1, + ACTIONS(1896), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236861,40 +213923,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236903,13 +213951,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8879] = 4, + [6737] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1793), 1, + STATE(1562), 1, sym_comment, - ACTIONS(1741), 9, + ACTIONS(1945), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236918,7 +213972,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1745), 53, + aux_sym_unquoted_token1, + ACTIONS(1947), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236930,40 +213991,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236972,13 +214019,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8952] = 4, + [6809] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1794), 1, + STATE(1563), 1, sym_comment, - ACTIONS(3201), 9, + ACTIONS(2420), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236987,7 +214040,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3199), 53, + aux_sym_unquoted_token1, + ACTIONS(2422), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236999,40 +214059,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -237041,13 +214087,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9025] = 4, + [6881] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1795), 1, + STATE(1564), 1, sym_comment, - ACTIONS(2367), 9, + ACTIONS(2424), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -237056,7 +214108,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2369), 53, + aux_sym_unquoted_token1, + ACTIONS(2426), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -237068,40 +214127,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -237110,13 +214155,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9098] = 4, + [6953] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1796), 1, + STATE(1565), 1, sym_comment, - ACTIONS(1899), 9, + ACTIONS(1949), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -237125,7 +214176,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1901), 53, + aux_sym_unquoted_token1, + ACTIONS(1951), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -237137,40 +214195,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -237179,13 +214223,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9171] = 4, + [7025] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1797), 1, + STATE(1566), 1, sym_comment, - ACTIONS(1835), 9, + ACTIONS(2428), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -237194,7 +214244,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1837), 53, + aux_sym_unquoted_token1, + ACTIONS(2430), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -237206,40 +214263,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -237248,13 +214291,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9244] = 4, + [7097] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1798), 1, + STATE(1567), 1, sym_comment, - ACTIONS(2371), 9, + ACTIONS(2432), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -237263,7 +214312,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2373), 53, + aux_sym_unquoted_token1, + ACTIONS(2434), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -237275,40 +214331,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -237317,13 +214359,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9317] = 4, + [7169] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1799), 1, + STATE(1568), 1, sym_comment, - ACTIONS(2379), 9, + ACTIONS(1575), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -237332,7 +214380,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2381), 53, + aux_sym_unquoted_token1, + ACTIONS(1587), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -237344,40 +214399,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -237386,13 +214427,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9390] = 4, + [7241] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1569), 1, sym_comment, - ACTIONS(1839), 9, + ACTIONS(2436), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -237401,7 +214448,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1841), 53, + aux_sym_unquoted_token1, + ACTIONS(2438), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -237413,40 +214467,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -237455,13 +214495,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9463] = 4, + [7313] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1801), 1, + ACTIONS(4946), 1, + anon_sym_DOT, + STATE(1484), 1, + sym_cell_path, + STATE(1570), 1, sym_comment, - ACTIONS(2383), 9, - anon_sym_DASH, + STATE(1917), 1, + aux_sym_cell_path_repeat1, + STATE(2141), 1, + sym_path, + ACTIONS(1686), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -237470,8 +214518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2385), 53, - sym__newline, + ACTIONS(1688), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -237483,39 +214530,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -237524,13 +214567,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9536] = 4, + [7393] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1802), 1, + STATE(1571), 1, sym_comment, - ACTIONS(2326), 9, + ACTIONS(1879), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -237539,7 +214588,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2328), 53, + aux_sym_unquoted_token1, + ACTIONS(1881), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -237551,40 +214607,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -237593,13 +214635,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9609] = 4, + [7465] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1803), 1, + ACTIONS(4946), 1, + anon_sym_DOT, + STATE(1533), 1, + sym_cell_path, + STATE(1572), 1, sym_comment, - ACTIONS(3201), 9, - anon_sym_DASH, + STATE(1917), 1, + aux_sym_cell_path_repeat1, + STATE(2141), 1, + sym_path, + ACTIONS(1625), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -237608,8 +214658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3199), 53, - sym__newline, + ACTIONS(1629), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -237621,39 +214670,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -237662,14 +214707,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9682] = 5, + [7545] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4702), 1, - aux_sym_unquoted_token2, - STATE(1804), 1, + STATE(1573), 1, sym_comment, - ACTIONS(1525), 16, + ACTIONS(2443), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -237686,7 +214729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1537), 45, + ACTIONS(2445), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -237732,13 +214775,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9757] = 4, + [7617] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1805), 1, + STATE(1574), 1, sym_comment, - ACTIONS(3201), 9, + ACTIONS(2364), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -237747,7 +214796,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3199), 53, + aux_sym_unquoted_token1, + ACTIONS(2366), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -237759,40 +214815,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -237801,13 +214843,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9830] = 4, + [7689] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1806), 1, + STATE(1575), 1, sym_comment, - ACTIONS(3201), 9, + ACTIONS(2364), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -237816,7 +214864,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3199), 53, + aux_sym_unquoted_token1, + ACTIONS(2366), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -237828,40 +214883,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -237870,32 +214911,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9903] = 6, + [7761] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5087), 1, - sym_long_flag_identifier, - ACTIONS(5089), 1, - anon_sym_EQ2, - STATE(1807), 1, + STATE(1576), 1, sym_comment, - ACTIONS(4950), 25, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, + ACTIONS(2061), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -237905,9 +214933,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4952), 35, - ts_builtin_sym_end, + ACTIONS(2067), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -237921,13 +214953,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, @@ -237941,13 +214979,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9980] = 4, + [7833] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1808), 1, + STATE(1577), 1, sym_comment, - ACTIONS(3201), 9, + ACTIONS(2372), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -237956,7 +215000,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3199), 53, + aux_sym_unquoted_token1, + ACTIONS(2374), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -237968,40 +215019,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238010,16 +215047,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10053] = 6, + [7905] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5091), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5093), 1, - aux_sym__immediate_decimal_token2, - STATE(1809), 1, + STATE(1578), 1, sym_comment, - ACTIONS(1569), 16, + ACTIONS(2376), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -238036,8 +215069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1571), 44, - ts_builtin_sym_end, + ACTIONS(2378), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -238057,8 +215089,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -238081,16 +215115,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10130] = 4, + [7977] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1810), 1, + STATE(1579), 1, sym_comment, - ACTIONS(976), 17, + ACTIONS(1064), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -238104,8 +215137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(978), 45, - ts_builtin_sym_end, + ACTIONS(1066), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -238125,9 +215157,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_QMARK2, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -238150,13 +215183,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10203] = 4, + [8049] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1811), 1, + STATE(1580), 1, sym_comment, - ACTIONS(3201), 9, + ACTIONS(2019), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238165,7 +215204,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3199), 53, + aux_sym_unquoted_token1, + ACTIONS(2021), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238177,40 +215223,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238219,13 +215251,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10276] = 4, + [8121] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1812), 1, + STATE(1581), 1, sym_comment, - ACTIONS(3201), 9, + ACTIONS(2384), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238234,7 +215272,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3199), 53, + aux_sym_unquoted_token1, + ACTIONS(2386), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238246,40 +215291,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238288,20 +215319,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10349] = 8, + [8193] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5081), 1, - anon_sym_DOT, - STATE(1625), 1, - sym_path, - STATE(1740), 1, - sym_cell_path, - STATE(1813), 1, + STATE(1582), 1, sym_comment, - STATE(1933), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1774), 8, + ACTIONS(2388), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238310,7 +215340,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1776), 50, + aux_sym_unquoted_token1, + ACTIONS(2390), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238322,37 +215359,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238361,12 +215387,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10430] = 4, + [8265] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1814), 1, + STATE(1583), 1, sym_comment, - ACTIONS(5097), 16, + ACTIONS(2449), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -238383,7 +215409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5095), 45, + ACTIONS(2451), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -238429,21 +215455,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10502] = 8, + [8337] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5099), 1, - anon_sym_DOT, - STATE(1780), 1, - sym_cell_path, - STATE(1815), 1, + STATE(1584), 1, sym_comment, - STATE(2120), 1, - aux_sym_cell_path_repeat1, - STATE(2197), 1, - sym_path, - ACTIONS(1599), 9, - sym__newline, + ACTIONS(2035), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238452,7 +215476,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1603), 48, + aux_sym_unquoted_token1, + ACTIONS(2041), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -238463,36 +215495,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238501,203 +215523,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10582] = 21, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5107), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5109), 1, - anon_sym_LBRACK, - ACTIONS(5111), 1, - sym_wild_card, - STATE(1816), 1, - sym_comment, - STATE(2144), 1, - sym__str_double_quotes, - STATE(2640), 1, - sym_val_string, - STATE(2651), 1, - sym_cmd_identifier, - STATE(7112), 1, - sym__val_number_decimal, - STATE(7170), 1, - sym__command_name, - STATE(7177), 1, - sym_scope_pattern, - STATE(7178), 1, - sym_command_list, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1259), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5033), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - ACTIONS(5101), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5105), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5103), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [10688] = 40, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3219), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3245), 1, - anon_sym_null, - ACTIONS(3387), 1, - aux_sym_expr_unary_token1, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3393), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3395), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5113), 1, - anon_sym_LPAREN, - ACTIONS(5115), 1, - anon_sym_DOLLAR, - ACTIONS(5117), 1, - anon_sym_DASH_DASH, - ACTIONS(5119), 1, - anon_sym_DASH, - STATE(1540), 1, - sym_expr_parenthesized, - STATE(1541), 1, - sym_val_variable, - STATE(1668), 1, - sym__str_double_quotes, - STATE(1686), 1, - sym__inter_single_quotes, - STATE(1688), 1, - sym__inter_double_quotes, - STATE(1709), 1, - sym__expr_unary_minus, - STATE(1817), 1, - sym_comment, - STATE(1907), 1, - sym__val_number, - STATE(2427), 1, - sym__flag, - STATE(2941), 1, - sym__val_number_decimal, - STATE(3727), 1, - sym_val_range, - STATE(4050), 1, - sym__expr_binary_expression, - STATE(5905), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3243), 2, - anon_sym_true, - anon_sym_false, - STATE(3878), 2, - sym_short_flag, - sym_long_flag, - STATE(1690), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1734), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [10832] = 5, + [8409] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4722), 1, - aux_sym_unquoted_token2, - STATE(1818), 1, + STATE(1585), 1, sym_comment, - ACTIONS(1525), 16, + ACTIONS(2043), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -238714,8 +215545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1537), 44, - ts_builtin_sym_end, + ACTIONS(2049), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -238735,8 +215565,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -238759,12 +215591,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10906] = 4, + [8481] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1819), 1, + STATE(1586), 1, sym_comment, - ACTIONS(2255), 16, + ACTIONS(2051), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -238781,7 +215613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2257), 45, + ACTIONS(2057), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -238827,97 +215659,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10978] = 21, - ACTIONS(111), 1, - anon_sym_DQUOTE, + [8553] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5107), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5109), 1, - anon_sym_LBRACK, - ACTIONS(5111), 1, - sym_wild_card, - STATE(1820), 1, + STATE(1587), 1, sym_comment, - STATE(2144), 1, - sym__str_double_quotes, - STATE(2640), 1, - sym_val_string, - STATE(2651), 1, - sym_cmd_identifier, - STATE(6981), 1, - sym_scope_pattern, - STATE(7112), 1, - sym__val_number_decimal, - STATE(7170), 1, - sym__command_name, - STATE(7178), 1, - sym_command_list, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1259), 2, + ACTIONS(2133), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5057), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - ACTIONS(5101), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5105), 5, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2135), 45, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5103), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [11084] = 4, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [8625] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1821), 1, + STATE(1588), 1, sym_comment, - ACTIONS(3540), 16, + ACTIONS(2465), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -238934,7 +215749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(3537), 45, + ACTIONS(2467), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -238980,20 +215795,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11156] = 8, + [8697] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5081), 1, - anon_sym_DOT, - STATE(1385), 1, - sym_cell_path, - STATE(1625), 1, - sym_path, - STATE(1822), 1, + STATE(1589), 1, sym_comment, - STATE(1933), 1, - aux_sym_cell_path_repeat1, - ACTIONS(945), 8, + ACTIONS(2469), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239002,7 +215816,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(947), 49, + aux_sym_unquoted_token1, + ACTIONS(2471), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239014,36 +215835,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239052,21 +215863,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11236] = 8, + [8769] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5099), 1, - anon_sym_DOT, - STATE(1823), 1, + STATE(1590), 1, sym_comment, - STATE(2120), 1, - aux_sym_cell_path_repeat1, - STATE(2128), 1, - sym_cell_path, - STATE(2197), 1, - sym_path, - ACTIONS(1847), 9, - sym__newline, + ACTIONS(2473), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239075,7 +215884,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1849), 48, + aux_sym_unquoted_token1, + ACTIONS(2475), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -239086,36 +215903,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239124,12 +215931,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11316] = 4, + [8841] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1824), 1, + STATE(1591), 1, sym_comment, - ACTIONS(2311), 16, + ACTIONS(2477), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -239146,7 +215953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2313), 45, + ACTIONS(2479), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -239192,15 +215999,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11388] = 5, - ACTIONS(3), 1, + [8913] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2083), 1, - aux_sym_unquoted_token4, - STATE(1825), 1, + STATE(1592), 1, sym_comment, - ACTIONS(1008), 20, - ts_builtin_sym_end, + ACTIONS(2481), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2483), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239214,36 +216041,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1006), 40, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [8985] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1593), 1, + sym_comment, + ACTIONS(2485), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2487), 45, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [9057] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1594), 1, + sym_comment, + ACTIONS(2489), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239252,6 +216156,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2491), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239260,13 +216203,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [11462] = 4, + [9129] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1826), 1, + STATE(1595), 1, sym_comment, - ACTIONS(2311), 16, + ACTIONS(2493), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -239283,7 +216225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2313), 45, + ACTIONS(2495), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -239329,13 +216271,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11534] = 4, + [9201] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1827), 1, + STATE(1596), 1, sym_comment, - ACTIONS(3487), 17, - anon_sym_LPAREN, + ACTIONS(2497), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -239352,8 +216293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(3485), 44, - ts_builtin_sym_end, + ACTIONS(2499), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -239372,9 +216312,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -239397,105 +216339,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11606] = 21, - ACTIONS(111), 1, - anon_sym_DQUOTE, + [9273] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5107), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5109), 1, - anon_sym_LBRACK, - ACTIONS(5111), 1, - sym_wild_card, - STATE(1828), 1, + STATE(1597), 1, sym_comment, - STATE(2144), 1, - sym__str_double_quotes, - STATE(2640), 1, - sym_val_string, - STATE(2651), 1, - sym_cmd_identifier, - STATE(7112), 1, - sym__val_number_decimal, - STATE(7170), 1, - sym__command_name, - STATE(7178), 1, - sym_command_list, - STATE(7330), 1, - sym_scope_pattern, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1259), 2, + ACTIONS(2501), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5045), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - ACTIONS(5101), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5105), 5, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2503), 45, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5103), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [11712] = 8, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [9345] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5099), 1, + ACTIONS(4946), 1, anon_sym_DOT, - STATE(1829), 1, + STATE(1224), 1, + sym_cell_path, + STATE(1598), 1, sym_comment, - STATE(2120), 1, + STATE(1917), 1, aux_sym_cell_path_repeat1, - STATE(2197), 1, + STATE(2141), 1, sym_path, - STATE(2435), 1, - sym_cell_path, - ACTIONS(1774), 9, + ACTIONS(1011), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -239505,7 +216430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1776), 48, + ACTIONS(1013), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -239554,117 +216479,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11792] = 40, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, + [9425] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3219), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3245), 1, - anon_sym_null, - ACTIONS(3387), 1, - aux_sym_expr_unary_token1, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3393), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3395), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5113), 1, - anon_sym_LPAREN, - ACTIONS(5115), 1, + STATE(1599), 1, + sym_comment, + ACTIONS(1056), 17, anon_sym_DOLLAR, - ACTIONS(5117), 1, - anon_sym_DASH_DASH, - ACTIONS(5119), 1, anon_sym_DASH, - STATE(1540), 1, - sym_expr_parenthesized, - STATE(1541), 1, - sym_val_variable, - STATE(1668), 1, - sym__str_double_quotes, - STATE(1686), 1, - sym__inter_single_quotes, - STATE(1688), 1, - sym__inter_double_quotes, - STATE(1709), 1, - sym__expr_unary_minus, - STATE(1830), 1, - sym_comment, - STATE(1907), 1, - sym__val_number, - STATE(2461), 1, - sym__flag, - STATE(2941), 1, - sym__val_number_decimal, - STATE(3727), 1, - sym_val_range, - STATE(4050), 1, - sym__expr_binary_expression, - STATE(5900), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3243), 2, - anon_sym_true, - anon_sym_false, - STATE(3878), 2, - sym_short_flag, - sym_long_flag, - STATE(1690), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1734), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [11936] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1831), 1, - sym_comment, - ACTIONS(1982), 9, - anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239673,7 +216501,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1984), 52, + aux_sym_unquoted_token1, + ACTIONS(1058), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239685,39 +216521,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239726,15 +216547,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12008] = 4, + [9497] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1832), 1, + STATE(1600), 1, sym_comment, - ACTIONS(1935), 16, + ACTIONS(1060), 17, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -239748,7 +216570,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1941), 45, + ACTIONS(1062), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -239768,10 +216591,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -239794,15 +216615,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12080] = 4, + [9569] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1833), 1, + STATE(1601), 1, sym_comment, - ACTIONS(2271), 16, + ACTIONS(1052), 17, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -239816,7 +216638,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2273), 45, + ACTIONS(1054), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -239836,10 +216659,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -239862,12 +216683,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12152] = 4, + [9641] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1834), 1, + ACTIONS(4862), 1, + aux_sym__immediate_decimal_token2, + STATE(1602), 1, sym_comment, - ACTIONS(2241), 16, + ACTIONS(1643), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -239884,7 +216707,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2243), 45, + ACTIONS(1645), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -239904,10 +216728,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -239930,20 +216752,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12224] = 8, + [9715] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5121), 1, - anon_sym_DOT, - STATE(1446), 1, - sym_cell_path, - STATE(1835), 1, + ACTIONS(4948), 1, + aux_sym__immediate_decimal_token2, + STATE(1603), 1, sym_comment, - STATE(1999), 1, - aux_sym_cell_path_repeat1, - STATE(2297), 1, - sym_path, - ACTIONS(945), 8, + ACTIONS(1705), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239952,8 +216775,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(947), 49, + aux_sym_unquoted_token1, + ACTIONS(1707), 44, ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239965,35 +216795,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240002,15 +216821,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12304] = 5, - ACTIONS(3), 1, + [9789] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(1836), 1, + STATE(1604), 1, sym_comment, - ACTIONS(2093), 20, - ts_builtin_sym_end, + ACTIONS(4888), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(4886), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240024,44 +216863,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2089), 40, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240070,22 +216889,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [12378] = 8, + [9861] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5099), 1, - anon_sym_DOT, - STATE(1837), 1, + STATE(1605), 1, sym_comment, - STATE(2120), 1, - aux_sym_cell_path_repeat1, - STATE(2197), 1, - sym_path, - STATE(2436), 1, - sym_cell_path, - ACTIONS(1762), 9, - sym__newline, + ACTIONS(4926), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240094,7 +216910,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1764), 48, + aux_sym_unquoted_token1, + ACTIONS(4924), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -240105,36 +216929,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240143,15 +216957,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12458] = 5, - ACTIONS(3), 1, + [9933] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - STATE(1838), 1, + STATE(1606), 1, sym_comment, - ACTIONS(2101), 20, - ts_builtin_sym_end, + ACTIONS(4818), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4816), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240163,38 +216984,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(4820), 28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [10007] = 21, + ACTIONS(111), 1, anon_sym_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1325), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4956), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(4958), 1, + anon_sym_LBRACK, + ACTIONS(4960), 1, + sym_wild_card, + STATE(1607), 1, + sym_comment, + STATE(1984), 1, + sym__str_double_quotes, + STATE(2445), 1, + sym_cmd_identifier, + STATE(2446), 1, + sym_val_string, + STATE(6720), 1, + sym_scope_pattern, + STATE(7005), 1, + sym__command_name, + STATE(7016), 1, + sym__val_number_decimal, + STATE(7118), 1, + sym_command_list, + ACTIONS(113), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2097), 40, + ACTIONS(1323), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4928), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + ACTIONS(4950), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4954), 5, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + ACTIONS(4952), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [10113] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1608), 1, + sym_comment, + ACTIONS(4964), 16, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240203,24 +217132,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [12532] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - STATE(1839), 1, - sym_comment, - ACTIONS(2107), 20, - ts_builtin_sym_end, + ACTIONS(4962), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240234,44 +217153,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2105), 40, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240280,13 +217179,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [12606] = 4, + [10185] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1840), 1, + STATE(1609), 1, sym_comment, - ACTIONS(1021), 16, + ACTIONS(4968), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -240303,7 +217201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1023), 45, + ACTIONS(4966), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -240349,12 +217247,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12678] = 4, + [10257] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1841), 1, + ACTIONS(4299), 1, + aux_sym_unquoted_token2, + STATE(1610), 1, sym_comment, - ACTIONS(1953), 16, + ACTIONS(1575), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -240371,7 +217271,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1955), 45, + ACTIONS(1587), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -240391,10 +217292,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -240417,12 +217316,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12750] = 4, + [10331] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1842), 1, + STATE(1611), 1, sym_comment, - ACTIONS(2263), 16, + ACTIONS(4706), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -240439,7 +217338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2265), 45, + ACTIONS(4704), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -240485,12 +217384,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12822] = 4, + [10403] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1843), 1, + STATE(1612), 1, sym_comment, - ACTIONS(2295), 16, + ACTIONS(4797), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -240507,7 +217406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2297), 45, + ACTIONS(4795), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -240553,19 +217452,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12894] = 4, - ACTIONS(247), 1, + [10475] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1844), 1, + ACTIONS(2241), 1, + aux_sym_unquoted_token4, + STATE(1613), 1, sym_comment, - ACTIONS(2401), 16, + ACTIONS(1078), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1076), 40, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240574,14 +217512,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - ACTIONS(2403), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + [10549] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1614), 1, + sym_comment, + ACTIONS(4970), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4820), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240593,26 +217548,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240621,19 +217589,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12966] = 4, + [10621] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1845), 1, + STATE(1615), 1, sym_comment, - ACTIONS(2066), 16, - anon_sym_DOLLAR, + ACTIONS(4974), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240642,14 +217604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2072), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(4972), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240661,26 +217616,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240689,19 +217657,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13038] = 4, + [10693] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1846), 1, + STATE(1616), 1, sym_comment, - ACTIONS(1972), 16, - anon_sym_DOLLAR, + ACTIONS(4745), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240710,14 +217672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1978), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(4743), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240729,26 +217684,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240757,19 +217725,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13110] = 4, + [10765] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1847), 1, + STATE(1617), 1, sym_comment, - ACTIONS(1960), 16, - anon_sym_DOLLAR, + ACTIONS(4745), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240778,14 +217740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1966), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(4743), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240797,26 +217752,243 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [10837] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1618), 1, + sym_comment, + ACTIONS(4745), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4743), 52, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [10909] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1619), 1, + sym_comment, + ACTIONS(4745), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4743), 52, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [10981] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1620), 1, + sym_comment, + ACTIONS(4745), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4743), 52, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240825,12 +217997,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13182] = 4, + [11053] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1848), 1, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(1621), 1, sym_comment, - ACTIONS(2133), 20, + ACTIONS(2297), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -240851,7 +218025,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2131), 41, + ACTIONS(2293), 40, anon_sym_true, anon_sym_false, anon_sym_null, @@ -240892,20 +218066,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - aux_sym_unquoted_token4, - [13254] = 4, + [11127] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1849), 1, + STATE(1622), 1, sym_comment, - ACTIONS(1943), 16, - anon_sym_DOLLAR, + ACTIONS(4745), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240914,14 +218081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1945), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(4743), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240933,26 +218093,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240961,19 +218134,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13326] = 4, + [11199] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1850), 1, + STATE(1623), 1, sym_comment, - ACTIONS(5125), 16, - anon_sym_DOLLAR, + ACTIONS(4745), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240982,14 +218149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5123), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(4743), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241001,26 +218161,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241029,22 +218202,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13398] = 4, - ACTIONS(247), 1, + [11271] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1851), 1, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + STATE(1624), 1, sym_comment, - ACTIONS(966), 9, + ACTIONS(2247), 20, + ts_builtin_sym_end, sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(968), 52, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -241055,63 +218222,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_if, + anon_sym_LBRACK, + anon_sym_LPAREN, aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - anon_sym_QMARK2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [13470] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4302), 1, - aux_sym_unquoted_token2, - STATE(1852), 1, - sym_comment, - ACTIONS(1525), 16, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2243), 40, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241120,15 +218262,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - ACTIONS(1537), 44, + [11345] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + STATE(1625), 1, + sym_comment, + ACTIONS(2253), 20, ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241142,22 +218293,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2251), 40, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241166,19 +218339,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13544] = 4, + aux_sym_unquoted_token1, + [11419] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1853), 1, + STATE(1626), 1, sym_comment, - ACTIONS(2405), 16, - anon_sym_DOLLAR, + ACTIONS(4745), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241187,14 +218355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2407), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(4743), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241206,26 +218367,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241234,19 +218408,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13616] = 4, + [11491] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1854), 1, + STATE(1627), 1, sym_comment, - ACTIONS(2409), 16, - anon_sym_DOLLAR, + ACTIONS(4745), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241255,14 +218423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2411), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(4743), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241274,26 +218435,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241302,19 +218476,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13688] = 4, + [11563] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1855), 1, + STATE(1628), 1, sym_comment, - ACTIONS(2413), 16, - anon_sym_DOLLAR, + ACTIONS(4745), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241323,14 +218491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2415), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(4743), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241342,26 +218503,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241370,20 +218544,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13760] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5081), 1, - anon_sym_DOT, - STATE(1625), 1, - sym_path, - STATE(1831), 1, - sym_cell_path, - STATE(1856), 1, + [11635] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1629), 1, sym_comment, - STATE(1933), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1599), 8, + ACTIONS(4745), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241392,7 +218559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1603), 49, + ACTIONS(4743), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241405,7 +218572,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, anon_sym_RBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -241442,19 +218612,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13840] = 4, + [11707] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1857), 1, + STATE(1630), 1, sym_comment, - ACTIONS(2417), 16, - anon_sym_DOLLAR, + ACTIONS(4745), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241463,14 +218627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2419), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(4743), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241482,26 +218639,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241510,19 +218680,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13912] = 4, + [11779] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1858), 1, + STATE(1631), 1, sym_comment, - ACTIONS(2421), 16, - anon_sym_DOLLAR, + ACTIONS(4745), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241531,14 +218695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2423), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(4743), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241550,26 +218707,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241578,12 +218748,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13984] = 4, + [11851] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1859), 1, + STATE(1632), 1, sym_comment, - ACTIONS(2425), 16, + ACTIONS(4979), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -241600,7 +218770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2427), 45, + ACTIONS(4976), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -241646,35 +218816,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14056] = 4, - ACTIONS(247), 1, + [11923] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1860), 1, + STATE(1633), 1, sym_comment, - ACTIONS(2429), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2431), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2261), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241688,92 +218836,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [14128] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1861), 1, - sym_comment, - ACTIONS(2433), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2435), 45, + ACTIONS(2259), 41, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241782,157 +218882,230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14200] = 4, + aux_sym_unquoted_token1, + aux_sym_unquoted_token4, + [11995] = 40, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - STATE(1862), 1, - sym_comment, - ACTIONS(2437), 16, + ACTIONS(3199), 1, + anon_sym_null, + ACTIONS(3249), 1, + anon_sym_LBRACK, + ACTIONS(3255), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3299), 1, + aux_sym_expr_unary_token1, + ACTIONS(3301), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3303), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3305), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3307), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4982), 1, + anon_sym_LPAREN, + ACTIONS(4984), 1, anon_sym_DOLLAR, + ACTIONS(4986), 1, + anon_sym_DASH_DASH, + ACTIONS(4988), 1, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, + STATE(1389), 1, + sym__str_double_quotes, + STATE(1458), 1, + sym_expr_parenthesized, + STATE(1461), 1, + sym_val_variable, + STATE(1634), 1, + sym_comment, + STATE(1644), 1, + sym__expr_unary_minus, + STATE(1676), 1, + sym__val_number, + STATE(1708), 1, + sym__inter_single_quotes, + STATE(1709), 1, + sym__inter_double_quotes, + STATE(2320), 1, + sym__flag, + STATE(2837), 1, + sym__val_number_decimal, + STATE(3484), 1, + sym_val_range, + STATE(3785), 1, + sym__expr_binary_expression, + STATE(5532), 1, + sym__expression, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, anon_sym_0o, anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2439), 45, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3197), 2, anon_sym_true, anon_sym_false, - anon_sym_null, + STATE(3689), 2, + sym_short_flag, + sym_long_flag, + STATE(1606), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + STATE(1675), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [12139] = 40, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, sym_val_date, + ACTIONS(233), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(237), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [14272] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1863), 1, - sym_comment, - ACTIONS(2441), 16, + ACTIONS(3199), 1, + anon_sym_null, + ACTIONS(3249), 1, + anon_sym_LBRACK, + ACTIONS(3255), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3299), 1, + aux_sym_expr_unary_token1, + ACTIONS(3301), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3303), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3305), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3307), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4982), 1, + anon_sym_LPAREN, + ACTIONS(4984), 1, anon_sym_DOLLAR, + ACTIONS(4986), 1, + anon_sym_DASH_DASH, + ACTIONS(4988), 1, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, + STATE(1389), 1, + sym__str_double_quotes, + STATE(1458), 1, + sym_expr_parenthesized, + STATE(1461), 1, + sym_val_variable, + STATE(1635), 1, + sym_comment, + STATE(1644), 1, + sym__expr_unary_minus, + STATE(1676), 1, + sym__val_number, + STATE(1708), 1, + sym__inter_single_quotes, + STATE(1709), 1, + sym__inter_double_quotes, + STATE(2321), 1, + sym__flag, + STATE(2837), 1, + sym__val_number_decimal, + STATE(3484), 1, + sym_val_range, + STATE(3785), 1, + sym__expr_binary_expression, + STATE(5538), 1, + sym__expression, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, anon_sym_0o, anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2443), 45, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3197), 2, anon_sym_true, anon_sym_false, - anon_sym_null, + STATE(3689), 2, + sym_short_flag, + sym_long_flag, + STATE(1606), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [14344] = 8, + STATE(1675), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [12283] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5099), 1, + ACTIONS(4944), 1, anon_sym_DOT, - STATE(1864), 1, + STATE(1530), 1, + sym_path, + STATE(1636), 1, sym_comment, - STATE(2120), 1, - aux_sym_cell_path_repeat1, - STATE(2131), 1, + STATE(1904), 1, sym_cell_path, - STATE(2197), 1, - sym_path, - ACTIONS(1871), 9, - sym__newline, + STATE(1908), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1686), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241941,7 +219114,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1873), 48, + ACTIONS(1688), 49, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -241953,35 +219127,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241990,21 +219164,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14424] = 8, + [12363] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5099), 1, + ACTIONS(4944), 1, anon_sym_DOT, - STATE(1865), 1, + STATE(1530), 1, + sym_path, + STATE(1637), 1, sym_comment, - STATE(2120), 1, - aux_sym_cell_path_repeat1, - STATE(2147), 1, + STATE(1906), 1, sym_cell_path, - STATE(2197), 1, - sym_path, - ACTIONS(1875), 9, - sym__newline, + STATE(1908), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1625), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242013,7 +219186,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1877), 48, + ACTIONS(1629), 49, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -242025,35 +219199,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242062,156 +219236,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14504] = 8, + [12443] = 21, + ACTIONS(111), 1, + anon_sym_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5099), 1, - anon_sym_DOT, - STATE(1420), 1, - sym_cell_path, - STATE(1866), 1, + ACTIONS(1325), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4956), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(4958), 1, + anon_sym_LBRACK, + ACTIONS(4960), 1, + sym_wild_card, + STATE(1638), 1, sym_comment, - STATE(2120), 1, - aux_sym_cell_path_repeat1, - STATE(2197), 1, - sym_path, - ACTIONS(945), 9, + STATE(1984), 1, + sym__str_double_quotes, + STATE(2445), 1, + sym_cmd_identifier, + STATE(2446), 1, + sym_val_string, + STATE(7005), 1, + sym__command_name, + STATE(7016), 1, + sym__val_number_decimal, + STATE(7037), 1, + sym_scope_pattern, + STATE(7118), 1, + sym_command_list, + ACTIONS(113), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1323), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4854), 3, + ts_builtin_sym_end, sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(947), 48, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [14584] = 4, + ACTIONS(4950), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4954), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4952), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [12549] = 40, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - STATE(1867), 1, - sym_comment, - ACTIONS(1006), 16, + ACTIONS(3199), 1, + anon_sym_null, + ACTIONS(3249), 1, + anon_sym_LBRACK, + ACTIONS(3255), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3299), 1, + aux_sym_expr_unary_token1, + ACTIONS(3301), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3303), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3305), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3307), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4982), 1, + anon_sym_LPAREN, + ACTIONS(4984), 1, anon_sym_DOLLAR, + ACTIONS(4986), 1, + anon_sym_DASH_DASH, + ACTIONS(4988), 1, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, + STATE(1389), 1, + sym__str_double_quotes, + STATE(1458), 1, + sym_expr_parenthesized, + STATE(1461), 1, + sym_val_variable, + STATE(1639), 1, + sym_comment, + STATE(1644), 1, + sym__expr_unary_minus, + STATE(1676), 1, + sym__val_number, + STATE(1708), 1, + sym__inter_single_quotes, + STATE(1709), 1, + sym__inter_double_quotes, + STATE(2336), 1, + sym__flag, + STATE(2837), 1, + sym__val_number_decimal, + STATE(3484), 1, + sym_val_range, + STATE(3785), 1, + sym__expr_binary_expression, + STATE(5585), 1, + sym__expression, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, anon_sym_0o, anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1008), 45, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3197), 2, anon_sym_true, anon_sym_false, - anon_sym_null, + STATE(3689), 2, + sym_short_flag, + sym_long_flag, + STATE(1606), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [14656] = 4, + STATE(1675), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [12693] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1868), 1, + STATE(1640), 1, sym_comment, - ACTIONS(994), 17, + ACTIONS(1643), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -242225,8 +219447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(996), 44, - ts_builtin_sym_end, + ACTIONS(1645), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -242246,8 +219467,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -242270,13 +219493,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14728] = 4, + [12765] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1869), 1, + STATE(1641), 1, sym_comment, - ACTIONS(3375), 17, - anon_sym_LPAREN, + ACTIONS(1631), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -242293,8 +219515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(3373), 44, - ts_builtin_sym_end, + ACTIONS(1633), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -242313,9 +219534,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -242338,12 +219561,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14800] = 4, + [12837] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1870), 1, + STATE(1642), 1, sym_comment, - ACTIONS(1589), 16, + ACTIONS(1705), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -242360,7 +219583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1591), 45, + ACTIONS(1707), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -242406,12 +219629,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14872] = 4, + [12909] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1871), 1, + STATE(1643), 1, sym_comment, - ACTIONS(1569), 16, + ACTIONS(1755), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -242428,7 +219651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1571), 45, + ACTIONS(1757), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -242474,21 +219697,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14944] = 8, + [12981] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5099), 1, - anon_sym_DOT, - STATE(1872), 1, + STATE(1644), 1, sym_comment, - STATE(2120), 1, - aux_sym_cell_path_repeat1, - STATE(2197), 1, - sym_path, - STATE(2538), 1, - sym_cell_path, - ACTIONS(1778), 9, - sym__newline, + ACTIONS(4992), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242497,7 +219712,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1780), 48, + ACTIONS(4990), 52, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -242509,35 +219725,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242546,19 +219765,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15024] = 4, + [13053] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1873), 1, + STATE(1645), 1, sym_comment, - ACTIONS(1648), 16, - anon_sym_DOLLAR, + ACTIONS(2259), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242567,14 +219780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1650), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2261), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242586,26 +219792,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242614,12 +219833,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15096] = 4, + [13125] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1874), 1, + STATE(1646), 1, sym_comment, - ACTIONS(1721), 16, + ACTIONS(4888), 17, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -242636,7 +219856,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1723), 45, + ACTIONS(4886), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -242655,11 +219876,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -242682,20 +219901,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15168] = 8, + [13197] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5099), 1, + ACTIONS(4946), 1, anon_sym_DOT, - STATE(1875), 1, + STATE(1647), 1, sym_comment, - STATE(2120), 1, + STATE(1917), 1, aux_sym_cell_path_repeat1, - STATE(2166), 1, - sym_cell_path, - STATE(2197), 1, + STATE(2141), 1, sym_path, - ACTIONS(1879), 9, + STATE(2182), 1, + sym_cell_path, + ACTIONS(1965), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -242705,7 +219924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1881), 48, + ACTIONS(1967), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -242754,20 +219973,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15248] = 8, + [13277] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5099), 1, + ACTIONS(4946), 1, anon_sym_DOT, - STATE(1876), 1, + STATE(1648), 1, sym_comment, - STATE(2120), 1, + STATE(1917), 1, aux_sym_cell_path_repeat1, - STATE(2172), 1, - sym_cell_path, - STATE(2197), 1, + STATE(2141), 1, sym_path, - ACTIONS(1883), 9, + STATE(2184), 1, + sym_cell_path, + ACTIONS(1957), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -242777,7 +219996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1885), 48, + ACTIONS(1959), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -242826,21 +220045,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15328] = 8, + [13357] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5099), 1, - anon_sym_DOT, - STATE(1877), 1, + STATE(1649), 1, sym_comment, - STATE(2120), 1, - aux_sym_cell_path_repeat1, - STATE(2145), 1, - sym_cell_path, - STATE(2197), 1, - sym_path, - ACTIONS(1891), 9, - sym__newline, + ACTIONS(4996), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242849,7 +220060,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1893), 48, + ACTIONS(4994), 52, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -242861,35 +220073,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242898,14 +220113,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15408] = 5, + [13429] = 21, + ACTIONS(111), 1, + anon_sym_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5127), 1, - anon_sym_EQ2, - STATE(1878), 1, + ACTIONS(1325), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4956), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(4958), 1, + anon_sym_LBRACK, + ACTIONS(4960), 1, + sym_wild_card, + STATE(1650), 1, sym_comment, - ACTIONS(5007), 16, + STATE(1984), 1, + sym__str_double_quotes, + STATE(2445), 1, + sym_cmd_identifier, + STATE(2446), 1, + sym_val_string, + STATE(7005), 1, + sym__command_name, + STATE(7016), 1, + sym__val_number_decimal, + STATE(7021), 1, + sym_scope_pattern, + STATE(7118), 1, + sym_command_list, + ACTIONS(113), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1323), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4930), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + ACTIONS(4950), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4954), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4952), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [13535] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1651), 1, + sym_comment, + ACTIONS(4926), 17, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -242922,7 +220221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5005), 44, + ACTIONS(4924), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -242942,9 +220241,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -242967,20 +220266,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15482] = 8, + [13607] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5099), 1, + ACTIONS(4946), 1, anon_sym_DOT, - STATE(1879), 1, + STATE(1652), 1, sym_comment, - STATE(2120), 1, + STATE(1917), 1, aux_sym_cell_path_repeat1, - STATE(2197), 1, + STATE(2141), 1, sym_path, - STATE(2456), 1, + STATE(2201), 1, sym_cell_path, - ACTIONS(1770), 9, + ACTIONS(1879), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -242990,7 +220289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1772), 48, + ACTIONS(1881), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243039,12 +220338,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15562] = 4, + [13687] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1880), 1, + ACTIONS(4998), 1, + anon_sym_EQ2, + STATE(1653), 1, sym_comment, - ACTIONS(5131), 16, + ACTIONS(4906), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -243061,7 +220362,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5129), 45, + ACTIONS(4904), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -243081,10 +220383,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -243107,20 +220407,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15634] = 8, + [13761] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5099), 1, + ACTIONS(4946), 1, anon_sym_DOT, - STATE(1881), 1, + STATE(1654), 1, sym_comment, - STATE(2120), 1, + STATE(1917), 1, aux_sym_cell_path_repeat1, - STATE(2124), 1, - sym_cell_path, - STATE(2197), 1, + STATE(2141), 1, sym_path, - ACTIONS(1895), 9, + STATE(2207), 1, + sym_cell_path, + ACTIONS(1961), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -243130,7 +220430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1897), 48, + ACTIONS(1963), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243179,20 +220479,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15714] = 8, + [13841] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5099), 1, + ACTIONS(4946), 1, anon_sym_DOT, - STATE(1882), 1, + STATE(1655), 1, sym_comment, - STATE(2120), 1, + STATE(1917), 1, aux_sym_cell_path_repeat1, - STATE(2173), 1, + STATE(1951), 1, sym_cell_path, - STATE(2197), 1, + STATE(2141), 1, sym_path, - ACTIONS(1747), 9, + ACTIONS(1829), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -243202,7 +220502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1749), 48, + ACTIONS(1833), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243251,19 +220551,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15794] = 4, + [13921] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1883), 1, + STATE(1656), 1, sym_comment, - ACTIONS(5135), 16, - anon_sym_DOLLAR, + ACTIONS(5002), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243272,14 +220566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5133), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(5000), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -243291,26 +220578,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243319,12 +220619,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15866] = 4, + [13993] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1884), 1, + STATE(1657), 1, sym_comment, - ACTIONS(3487), 16, + ACTIONS(1040), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -243341,7 +220641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(3485), 45, + ACTIONS(1042), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -243387,20 +220687,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15938] = 8, + [14065] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5099), 1, + ACTIONS(4946), 1, anon_sym_DOT, - STATE(1885), 1, + STATE(1658), 1, sym_comment, - STATE(2120), 1, + STATE(1917), 1, aux_sym_cell_path_repeat1, - STATE(2133), 1, + STATE(1954), 1, sym_cell_path, - STATE(2197), 1, + STATE(2141), 1, sym_path, - ACTIONS(1824), 9, + ACTIONS(1839), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -243410,7 +220710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1826), 48, + ACTIONS(1841), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243459,20 +220759,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16018] = 8, + [14145] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5099), 1, + ACTIONS(4946), 1, anon_sym_DOT, - STATE(1886), 1, + STATE(1659), 1, sym_comment, - STATE(2120), 1, + STATE(1917), 1, aux_sym_cell_path_repeat1, - STATE(2136), 1, + STATE(1955), 1, sym_cell_path, - STATE(2197), 1, + STATE(2141), 1, sym_path, - ACTIONS(1855), 9, + ACTIONS(1843), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -243482,7 +220782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1857), 48, + ACTIONS(1845), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243531,19 +220831,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16098] = 4, + [14225] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1887), 1, + ACTIONS(4946), 1, + anon_sym_DOT, + STATE(1660), 1, sym_comment, - ACTIONS(2332), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1917), 1, + aux_sym_cell_path_repeat1, + STATE(1988), 1, + sym_cell_path, + STATE(2141), 1, + sym_path, + ACTIONS(1847), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243552,15 +220854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2334), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(1849), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243571,26 +220865,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243599,20 +220903,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16170] = 8, + [14305] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5099), 1, + ACTIONS(4946), 1, anon_sym_DOT, - STATE(1888), 1, + STATE(1661), 1, sym_comment, - STATE(2120), 1, + STATE(1917), 1, aux_sym_cell_path_repeat1, - STATE(2138), 1, + STATE(1958), 1, sym_cell_path, - STATE(2197), 1, + STATE(2141), 1, sym_path, - ACTIONS(1796), 9, + ACTIONS(1851), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -243622,7 +220926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1798), 48, + ACTIONS(1853), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243671,20 +220975,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16250] = 8, + [14385] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5099), 1, + ACTIONS(4946), 1, anon_sym_DOT, - STATE(1889), 1, + STATE(1662), 1, sym_comment, - STATE(2120), 1, + STATE(1917), 1, aux_sym_cell_path_repeat1, - STATE(2150), 1, + STATE(1959), 1, sym_cell_path, - STATE(2197), 1, + STATE(2141), 1, sym_path, - ACTIONS(1808), 9, + ACTIONS(1855), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -243694,7 +220998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1810), 48, + ACTIONS(1857), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243743,20 +221047,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16330] = 8, + [14465] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5099), 1, + ACTIONS(4946), 1, anon_sym_DOT, - STATE(1890), 1, + STATE(1663), 1, sym_comment, - STATE(2120), 1, + STATE(1917), 1, aux_sym_cell_path_repeat1, - STATE(2156), 1, + STATE(1963), 1, sym_cell_path, - STATE(2197), 1, + STATE(2141), 1, sym_path, - ACTIONS(1820), 9, + ACTIONS(1859), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -243766,7 +221070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1822), 48, + ACTIONS(1861), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243815,87 +221119,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16410] = 4, + [14545] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1891), 1, + ACTIONS(4946), 1, + anon_sym_DOT, + STATE(1664), 1, sym_comment, - ACTIONS(976), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(978), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + STATE(1917), 1, + aux_sym_cell_path_repeat1, + STATE(1964), 1, + sym_cell_path, + STATE(2141), 1, + sym_path, + ACTIONS(1863), 9, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [16482] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1892), 1, - sym_comment, - ACTIONS(3375), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243904,15 +221142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(3373), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(1865), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243923,26 +221153,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243951,20 +221191,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16554] = 8, + [14625] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5099), 1, + ACTIONS(4946), 1, anon_sym_DOT, - STATE(1893), 1, + STATE(1665), 1, sym_comment, - STATE(2120), 1, + STATE(1917), 1, aux_sym_cell_path_repeat1, - STATE(2167), 1, + STATE(1966), 1, sym_cell_path, - STATE(2197), 1, + STATE(2141), 1, sym_path, - ACTIONS(1741), 9, + ACTIONS(1867), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -243974,7 +221214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1745), 48, + ACTIONS(1869), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244023,20 +221263,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16634] = 8, + [14705] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5099), 1, + ACTIONS(4946), 1, anon_sym_DOT, - STATE(1894), 1, + STATE(1666), 1, sym_comment, - STATE(2120), 1, + STATE(1917), 1, aux_sym_cell_path_repeat1, - STATE(2169), 1, + STATE(1968), 1, sym_cell_path, - STATE(2197), 1, + STATE(2141), 1, sym_path, - ACTIONS(1899), 9, + ACTIONS(1871), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -244046,7 +221286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1901), 48, + ACTIONS(1873), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244095,20 +221335,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16714] = 8, + [14785] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5099), 1, + ACTIONS(4946), 1, anon_sym_DOT, - STATE(1895), 1, + STATE(1667), 1, sym_comment, - STATE(2120), 1, + STATE(1917), 1, aux_sym_cell_path_repeat1, - STATE(2171), 1, + STATE(1969), 1, sym_cell_path, - STATE(2197), 1, + STATE(2141), 1, sym_path, - ACTIONS(1831), 9, + ACTIONS(1875), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -244118,7 +221358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1833), 48, + ACTIONS(1877), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244167,19 +221407,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16794] = 4, + [14865] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1896), 1, + ACTIONS(4946), 1, + anon_sym_DOT, + STATE(1668), 1, sym_comment, - ACTIONS(1770), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1917), 1, + aux_sym_cell_path_repeat1, + STATE(1973), 1, + sym_cell_path, + STATE(2141), 1, + sym_path, + ACTIONS(1969), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244188,15 +221430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1772), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(1971), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244207,26 +221441,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244235,19 +221479,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16866] = 4, + [14945] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1897), 1, + ACTIONS(4946), 1, + anon_sym_DOT, + STATE(1669), 1, sym_comment, - ACTIONS(2315), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1917), 1, + aux_sym_cell_path_repeat1, + STATE(1975), 1, + sym_cell_path, + STATE(2141), 1, + sym_path, + ACTIONS(1890), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244256,15 +221502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2317), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(1892), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244275,26 +221513,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244303,20 +221551,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16938] = 8, + [15025] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5099), 1, + ACTIONS(4946), 1, anon_sym_DOT, - STATE(1898), 1, + STATE(1670), 1, sym_comment, - STATE(2120), 1, + STATE(1917), 1, aux_sym_cell_path_repeat1, - STATE(2127), 1, + STATE(1976), 1, sym_cell_path, - STATE(2197), 1, + STATE(2141), 1, sym_path, - ACTIONS(1835), 9, + ACTIONS(1894), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -244326,7 +221574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1837), 48, + ACTIONS(1896), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244375,19 +221623,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17018] = 4, + [15105] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1899), 1, + ACTIONS(4946), 1, + anon_sym_DOT, + STATE(1671), 1, sym_comment, - ACTIONS(5139), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1917), 1, + aux_sym_cell_path_repeat1, + STATE(1977), 1, + sym_cell_path, + STATE(2141), 1, + sym_path, + ACTIONS(1937), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244396,15 +221646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5137), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(1939), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244415,26 +221657,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244443,20 +221695,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17090] = 4, + [15185] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1900), 1, - sym_comment, - ACTIONS(986), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, + ACTIONS(4946), 1, anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1672), 1, + sym_comment, + STATE(1917), 1, + aux_sym_cell_path_repeat1, + STATE(1978), 1, + sym_cell_path, + STATE(2141), 1, + sym_path, + ACTIONS(1945), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244465,16 +221718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(988), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(1947), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244485,24 +221729,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244511,20 +221767,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17162] = 8, + [15265] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5099), 1, + ACTIONS(4946), 1, anon_sym_DOT, - STATE(1901), 1, + STATE(1673), 1, sym_comment, - STATE(2120), 1, + STATE(1917), 1, aux_sym_cell_path_repeat1, - STATE(2129), 1, + STATE(1980), 1, sym_cell_path, - STATE(2197), 1, + STATE(2141), 1, sym_path, - ACTIONS(1839), 9, + ACTIONS(1949), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -244534,7 +221790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1841), 48, + ACTIONS(1951), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244583,12 +221839,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17242] = 4, + [15345] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1902), 1, + STATE(1674), 1, sym_comment, - ACTIONS(1525), 10, + ACTIONS(1575), 10, sym__newline, anon_sym_DASH, anon_sym_err_GT, @@ -244599,7 +221855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1537), 51, + ACTIONS(1587), 51, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244651,20 +221907,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17314] = 4, + [15417] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1903), 1, + STATE(1675), 1, sym_comment, - ACTIONS(990), 17, - anon_sym_DOLLAR, + ACTIONS(1076), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244673,15 +221922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(992), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1078), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244693,24 +221934,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244719,19 +221975,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17386] = 4, + [15489] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1904), 1, + STATE(1676), 1, sym_comment, - ACTIONS(5143), 16, - anon_sym_DOLLAR, + ACTIONS(2436), 10, + sym__newline, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244740,15 +221991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5141), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(2438), 51, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244759,26 +222002,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244787,19 +222043,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17458] = 4, + [15561] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1905), 1, + STATE(1677), 1, sym_comment, - ACTIONS(2336), 16, - anon_sym_DOLLAR, + ACTIONS(2368), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244808,14 +222058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2338), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2370), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244827,26 +222070,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244855,12 +222111,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17530] = 4, + [15633] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1906), 1, + ACTIONS(5004), 1, + anon_sym_EQ2, + STATE(1678), 1, sym_comment, - ACTIONS(962), 16, + ACTIONS(4916), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -244877,7 +222135,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(964), 45, + ACTIONS(4914), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -244897,10 +222156,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -244923,80 +222180,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17602] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1907), 1, - sym_comment, - ACTIONS(2389), 10, - sym__newline, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2391), 51, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - aux_sym_record_entry_token1, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [17674] = 4, + [15707] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1908), 1, + STATE(1679), 1, sym_comment, - ACTIONS(2303), 16, + ACTIONS(5008), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -245013,7 +222202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2305), 45, + ACTIONS(5006), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -245059,19 +222248,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17746] = 4, + [15779] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1909), 1, + STATE(1680), 1, sym_comment, - ACTIONS(4879), 16, - anon_sym_DOLLAR, + ACTIONS(1879), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245080,14 +222263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4877), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1881), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245099,26 +222275,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245127,19 +222316,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17818] = 4, + [15851] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1910), 1, + STATE(1681), 1, sym_comment, - ACTIONS(2340), 16, - anon_sym_DOLLAR, + ACTIONS(1961), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245148,14 +222331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2342), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1963), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245167,26 +222343,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245195,21 +222384,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17890] = 5, + [15923] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5145), 1, - anon_sym_EQ2, - STATE(1911), 1, + STATE(1682), 1, sym_comment, - ACTIONS(5041), 16, - anon_sym_DOLLAR, + ACTIONS(2355), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245218,15 +222399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5039), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2357), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245238,24 +222411,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245264,19 +222452,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17964] = 4, + [15995] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1912), 1, + STATE(1683), 1, sym_comment, - ACTIONS(5149), 16, - anon_sym_DOLLAR, + ACTIONS(2380), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245285,14 +222467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5147), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2382), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245304,26 +222479,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245332,19 +222520,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18036] = 4, + [16067] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1913), 1, + STATE(1684), 1, sym_comment, - ACTIONS(2251), 16, - anon_sym_DOLLAR, + ACTIONS(2443), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245353,14 +222535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2253), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2445), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245372,26 +222547,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245400,19 +222588,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18108] = 4, + [16139] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1914), 1, + STATE(1685), 1, sym_comment, - ACTIONS(2344), 16, - anon_sym_DOLLAR, + ACTIONS(2453), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245421,14 +222603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2346), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2455), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245440,26 +222615,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245468,19 +222656,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18180] = 4, + [16211] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1915), 1, + STATE(1686), 1, sym_comment, - ACTIONS(4991), 16, - anon_sym_DOLLAR, + ACTIONS(2457), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245489,14 +222671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4989), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2459), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245508,26 +222683,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245536,19 +222724,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18252] = 4, + [16283] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1916), 1, + STATE(1687), 1, sym_comment, - ACTIONS(1879), 16, - anon_sym_DOLLAR, + ACTIONS(2392), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245557,14 +222739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1881), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2394), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245576,26 +222751,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245604,13 +222792,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18324] = 4, + [16355] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1917), 1, + STATE(1688), 1, sym_comment, - ACTIONS(962), 9, - sym__newline, + ACTIONS(2396), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245619,7 +222807,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(964), 52, + ACTIONS(2398), 52, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -245631,39 +222820,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_QMARK2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245672,21 +222860,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18396] = 5, + [16427] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5053), 1, - aux_sym__immediate_decimal_token2, - STATE(1918), 1, + STATE(1689), 1, sym_comment, - ACTIONS(1589), 16, - anon_sym_DOLLAR, + ACTIONS(1843), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245695,15 +222875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1591), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1845), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245715,24 +222887,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245741,435 +222928,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18470] = 40, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3219), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3245), 1, - anon_sym_null, - ACTIONS(3387), 1, - aux_sym_expr_unary_token1, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3393), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3395), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5113), 1, - anon_sym_LPAREN, - ACTIONS(5115), 1, - anon_sym_DOLLAR, - ACTIONS(5117), 1, - anon_sym_DASH_DASH, - ACTIONS(5119), 1, - anon_sym_DASH, - STATE(1540), 1, - sym_expr_parenthesized, - STATE(1541), 1, - sym_val_variable, - STATE(1668), 1, - sym__str_double_quotes, - STATE(1686), 1, - sym__inter_single_quotes, - STATE(1688), 1, - sym__inter_double_quotes, - STATE(1709), 1, - sym__expr_unary_minus, - STATE(1907), 1, - sym__val_number, - STATE(1919), 1, - sym_comment, - STATE(2502), 1, - sym__flag, - STATE(2941), 1, - sym__val_number_decimal, - STATE(3727), 1, - sym_val_range, - STATE(4050), 1, - sym__expr_binary_expression, - STATE(5865), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3243), 2, - anon_sym_true, - anon_sym_false, - STATE(3878), 2, - sym_short_flag, - sym_long_flag, - STATE(1690), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1734), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [18614] = 40, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3219), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3245), 1, - anon_sym_null, - ACTIONS(3387), 1, - aux_sym_expr_unary_token1, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3393), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3395), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5113), 1, - anon_sym_LPAREN, - ACTIONS(5115), 1, - anon_sym_DOLLAR, - ACTIONS(5117), 1, - anon_sym_DASH_DASH, - ACTIONS(5119), 1, - anon_sym_DASH, - STATE(1540), 1, - sym_expr_parenthesized, - STATE(1541), 1, - sym_val_variable, - STATE(1668), 1, - sym__str_double_quotes, - STATE(1686), 1, - sym__inter_single_quotes, - STATE(1688), 1, - sym__inter_double_quotes, - STATE(1709), 1, - sym__expr_unary_minus, - STATE(1907), 1, - sym__val_number, - STATE(1920), 1, - sym_comment, - STATE(2504), 1, - sym__flag, - STATE(2941), 1, - sym__val_number_decimal, - STATE(3727), 1, - sym_val_range, - STATE(4050), 1, - sym__expr_binary_expression, - STATE(5937), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3243), 2, - anon_sym_true, - anon_sym_false, - STATE(3878), 2, - sym_short_flag, - sym_long_flag, - STATE(1690), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1734), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [18758] = 40, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3219), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3245), 1, - anon_sym_null, - ACTIONS(3387), 1, - aux_sym_expr_unary_token1, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3393), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3395), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5113), 1, - anon_sym_LPAREN, - ACTIONS(5115), 1, - anon_sym_DOLLAR, - ACTIONS(5117), 1, - anon_sym_DASH_DASH, - ACTIONS(5119), 1, - anon_sym_DASH, - STATE(1540), 1, - sym_expr_parenthesized, - STATE(1541), 1, - sym_val_variable, - STATE(1668), 1, - sym__str_double_quotes, - STATE(1686), 1, - sym__inter_single_quotes, - STATE(1688), 1, - sym__inter_double_quotes, - STATE(1709), 1, - sym__expr_unary_minus, - STATE(1907), 1, - sym__val_number, - STATE(1921), 1, - sym_comment, - STATE(2505), 1, - sym__flag, - STATE(2941), 1, - sym__val_number_decimal, - STATE(3727), 1, - sym_val_range, - STATE(4050), 1, - sym__expr_binary_expression, - STATE(5938), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3243), 2, - anon_sym_true, - anon_sym_false, - STATE(3878), 2, - sym_short_flag, - sym_long_flag, - STATE(1690), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1734), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [18902] = 40, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3219), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3245), 1, - anon_sym_null, - ACTIONS(3387), 1, - aux_sym_expr_unary_token1, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3393), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3395), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5113), 1, - anon_sym_LPAREN, - ACTIONS(5115), 1, - anon_sym_DOLLAR, - ACTIONS(5117), 1, - anon_sym_DASH_DASH, - ACTIONS(5119), 1, - anon_sym_DASH, - STATE(1540), 1, - sym_expr_parenthesized, - STATE(1541), 1, - sym_val_variable, - STATE(1668), 1, - sym__str_double_quotes, - STATE(1686), 1, - sym__inter_single_quotes, - STATE(1688), 1, - sym__inter_double_quotes, - STATE(1709), 1, - sym__expr_unary_minus, - STATE(1907), 1, - sym__val_number, - STATE(1922), 1, - sym_comment, - STATE(2506), 1, - sym__flag, - STATE(2941), 1, - sym__val_number_decimal, - STATE(3727), 1, - sym_val_range, - STATE(4050), 1, - sym__expr_binary_expression, - STATE(5857), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3243), 2, - anon_sym_true, - anon_sym_false, - STATE(3878), 2, - sym_short_flag, - sym_long_flag, - STATE(1690), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1734), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [19046] = 4, + [16499] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1923), 1, + STATE(1690), 1, sym_comment, - ACTIONS(2348), 16, - anon_sym_DOLLAR, + ACTIONS(2400), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246178,14 +222943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2350), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2402), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246197,26 +222955,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246225,19 +222996,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19118] = 4, + [16571] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1924), 1, + STATE(1691), 1, sym_comment, - ACTIONS(5153), 16, - anon_sym_DOLLAR, + ACTIONS(2404), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246246,14 +223011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5151), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2406), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246265,26 +223023,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246293,19 +223064,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19190] = 4, + [16643] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1925), 1, + STATE(1692), 1, sym_comment, - ACTIONS(2352), 16, - anon_sym_DOLLAR, + ACTIONS(1859), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246314,14 +223079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2354), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1861), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246333,26 +223091,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246361,19 +223132,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19262] = 4, + [16715] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1926), 1, + STATE(1693), 1, sym_comment, - ACTIONS(1747), 16, - anon_sym_DOLLAR, + ACTIONS(1867), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246382,14 +223147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1749), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1869), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246401,26 +223159,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246429,19 +223200,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19334] = 4, + [16787] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1927), 1, + STATE(1694), 1, sym_comment, - ACTIONS(1855), 16, - anon_sym_DOLLAR, + ACTIONS(1871), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246450,14 +223215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1857), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1873), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246469,26 +223227,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246497,19 +223268,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19406] = 4, + [16859] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1928), 1, + STATE(1695), 1, sym_comment, - ACTIONS(1796), 16, - anon_sym_DOLLAR, + ACTIONS(2408), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246518,14 +223283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1798), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2410), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246537,26 +223295,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246565,19 +223336,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19478] = 4, + [16931] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1929), 1, + STATE(1696), 1, sym_comment, - ACTIONS(2359), 16, - anon_sym_DOLLAR, + ACTIONS(1890), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246586,14 +223351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2361), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1892), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246605,26 +223363,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246633,19 +223404,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19550] = 4, + [17003] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1930), 1, + STATE(1697), 1, sym_comment, - ACTIONS(1741), 16, - anon_sym_DOLLAR, + ACTIONS(2412), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246654,14 +223419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1745), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2414), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246673,26 +223431,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246701,19 +223472,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19622] = 4, + [17075] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1931), 1, + STATE(1698), 1, sym_comment, - ACTIONS(2363), 16, - anon_sym_DOLLAR, + ACTIONS(2416), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246722,14 +223487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2365), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2418), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246741,26 +223499,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246769,19 +223540,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19694] = 4, + [17147] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1932), 1, + STATE(1699), 1, sym_comment, - ACTIONS(2367), 16, - anon_sym_DOLLAR, + ACTIONS(1894), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246790,14 +223555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2369), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1896), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246809,26 +223567,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246837,18 +223608,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19766] = 7, + [17219] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5081), 1, - anon_sym_DOT, - STATE(1625), 1, - sym_path, - STATE(1933), 1, + STATE(1700), 1, sym_comment, - STATE(1934), 1, - aux_sym_cell_path_repeat1, - ACTIONS(951), 8, + ACTIONS(1945), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246857,7 +223623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(953), 50, + ACTIONS(1947), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246870,8 +223636,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, anon_sym_RBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -246908,17 +223676,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19844] = 6, + [17291] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5155), 1, - anon_sym_DOT, - STATE(1625), 1, - sym_path, - STATE(1934), 2, + STATE(1701), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(955), 8, + ACTIONS(2420), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246927,7 +223691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(957), 50, + ACTIONS(2422), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246940,8 +223704,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, anon_sym_RBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -246978,19 +223744,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19920] = 4, + [17363] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1935), 1, + STATE(1702), 1, sym_comment, - ACTIONS(1899), 16, - anon_sym_DOLLAR, + ACTIONS(2424), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246999,14 +223759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1901), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2426), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247018,26 +223771,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247046,19 +223812,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19992] = 4, + [17435] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1936), 1, + STATE(1703), 1, sym_comment, - ACTIONS(1835), 16, - anon_sym_DOLLAR, + ACTIONS(1949), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247067,14 +223827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1837), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1951), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247086,26 +223839,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247114,19 +223880,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20064] = 4, + [17507] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1937), 1, + STATE(1704), 1, sym_comment, - ACTIONS(2371), 16, - anon_sym_DOLLAR, + ACTIONS(2428), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247135,14 +223895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2373), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2430), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247154,26 +223907,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247182,19 +223948,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20136] = 4, + [17579] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1938), 1, + STATE(1705), 1, sym_comment, - ACTIONS(2379), 16, - anon_sym_DOLLAR, + ACTIONS(2432), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247203,14 +223963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2381), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2434), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247222,26 +223975,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247250,12 +224016,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20208] = 4, + [17651] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1939), 1, + ACTIONS(5010), 1, + anon_sym_LBRACK2, + STATE(1706), 1, sym_comment, - ACTIONS(1839), 16, + ACTIONS(2303), 17, + anon_sym_LBRACK, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -247272,7 +224041,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1841), 45, + ACTIONS(2307), 43, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -247290,12 +224060,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -247318,19 +224085,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20280] = 4, + [17725] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1940), 1, + STATE(1707), 1, sym_comment, - ACTIONS(5160), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1040), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247339,15 +224100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5158), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(1042), 52, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -247358,26 +224111,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_if, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247386,19 +224153,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20352] = 4, + [17797] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1941), 1, + STATE(1708), 1, sym_comment, - ACTIONS(2383), 16, - anon_sym_DOLLAR, + ACTIONS(2364), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247407,14 +224168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2385), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2366), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247426,26 +224180,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247454,19 +224221,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20424] = 4, + [17869] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1942), 1, + STATE(1709), 1, sym_comment, - ACTIONS(2326), 16, - anon_sym_DOLLAR, + ACTIONS(2364), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247475,14 +224236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2328), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2366), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247494,26 +224248,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247522,19 +224289,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20496] = 4, + [17941] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1943), 1, + STATE(1710), 1, sym_comment, - ACTIONS(5164), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1044), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247543,15 +224304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5162), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(1046), 52, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -247562,26 +224315,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_if, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247590,19 +224357,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20568] = 4, + [18013] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1944), 1, + STATE(1711), 1, sym_comment, - ACTIONS(1525), 16, - anon_sym_DOLLAR, + ACTIONS(2372), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247611,14 +224372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1537), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2374), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247630,26 +224384,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247658,19 +224425,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20640] = 4, + [18085] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1945), 1, + STATE(1712), 1, sym_comment, - ACTIONS(2389), 16, - anon_sym_DOLLAR, + ACTIONS(2376), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247679,14 +224440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2391), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2378), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247698,26 +224452,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247726,19 +224493,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20712] = 4, + [18157] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1946), 1, + STATE(1713), 1, sym_comment, - ACTIONS(5168), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1048), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247747,15 +224508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5166), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(1050), 52, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -247766,26 +224519,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_if, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247794,19 +224561,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20784] = 4, + [18229] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1947), 1, + STATE(1714), 1, sym_comment, - ACTIONS(5172), 16, - anon_sym_DOLLAR, + ACTIONS(2384), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247815,14 +224576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5170), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2386), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247834,26 +224588,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247862,19 +224629,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20856] = 4, + [18301] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1948), 1, + STATE(1715), 1, sym_comment, - ACTIONS(1778), 16, - anon_sym_DOLLAR, + ACTIONS(2388), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247883,14 +224644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1780), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2390), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247902,26 +224656,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247930,119 +224697,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20928] = 40, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3219), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3245), 1, - anon_sym_null, - ACTIONS(3387), 1, - aux_sym_expr_unary_token1, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3393), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3395), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5113), 1, - anon_sym_LPAREN, - ACTIONS(5115), 1, - anon_sym_DOLLAR, - ACTIONS(5117), 1, - anon_sym_DASH_DASH, - ACTIONS(5119), 1, - anon_sym_DASH, - STATE(1540), 1, - sym_expr_parenthesized, - STATE(1541), 1, - sym_val_variable, - STATE(1668), 1, - sym__str_double_quotes, - STATE(1686), 1, - sym__inter_single_quotes, - STATE(1688), 1, - sym__inter_double_quotes, - STATE(1709), 1, - sym__expr_unary_minus, - STATE(1907), 1, - sym__val_number, - STATE(1949), 1, - sym_comment, - STATE(2464), 1, - sym__flag, - STATE(2941), 1, - sym__val_number_decimal, - STATE(3727), 1, - sym_val_range, - STATE(4050), 1, - sym__expr_binary_expression, - STATE(5919), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3243), 2, - anon_sym_true, - anon_sym_false, - STATE(3878), 2, - sym_short_flag, - sym_long_flag, - STATE(1690), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1734), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [21072] = 5, + [18373] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5174), 1, - anon_sym_LBRACK2, - STATE(1950), 1, + ACTIONS(4568), 1, + aux_sym_unquoted_token2, + STATE(1716), 1, sym_comment, - ACTIONS(2235), 17, - anon_sym_LBRACK, + ACTIONS(1575), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -248059,7 +224721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2239), 43, + ACTIONS(1587), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -248078,6 +224740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, @@ -248103,13 +224766,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21146] = 4, + [18447] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1951), 1, + ACTIONS(4944), 1, + anon_sym_DOT, + STATE(1225), 1, + sym_cell_path, + STATE(1530), 1, + sym_path, + STATE(1717), 1, sym_comment, - ACTIONS(976), 9, - sym__newline, + STATE(1908), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1011), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248118,7 +224788,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(978), 52, + ACTIONS(1013), 49, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -248130,39 +224801,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - anon_sym_QMARK2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248171,118 +224838,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21218] = 40, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3219), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3245), 1, - anon_sym_null, - ACTIONS(3387), 1, - aux_sym_expr_unary_token1, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3393), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3395), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5113), 1, - anon_sym_LPAREN, - ACTIONS(5115), 1, - anon_sym_DOLLAR, - ACTIONS(5117), 1, - anon_sym_DASH_DASH, - ACTIONS(5119), 1, - anon_sym_DASH, - STATE(1540), 1, - sym_expr_parenthesized, - STATE(1541), 1, - sym_val_variable, - STATE(1668), 1, - sym__str_double_quotes, - STATE(1686), 1, - sym__inter_single_quotes, - STATE(1688), 1, - sym__inter_double_quotes, - STATE(1709), 1, - sym__expr_unary_minus, - STATE(1907), 1, - sym__val_number, - STATE(1952), 1, - sym_comment, - STATE(2493), 1, - sym__flag, - STATE(2941), 1, - sym__val_number_decimal, - STATE(3727), 1, - sym_val_range, - STATE(4050), 1, - sym__expr_binary_expression, - STATE(5861), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3243), 2, - anon_sym_true, - anon_sym_false, - STATE(3878), 2, - sym_short_flag, - sym_long_flag, - STATE(1690), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1734), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [21362] = 5, + [18527] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5176), 1, - aux_sym__immediate_decimal_token2, - STATE(1953), 1, + STATE(1718), 1, sym_comment, - ACTIONS(1648), 16, + ACTIONS(2453), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -248299,8 +224860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1650), 44, - ts_builtin_sym_end, + ACTIONS(2455), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -248320,8 +224880,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -248344,12 +224906,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21436] = 4, + [18599] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1954), 1, + STATE(1719), 1, sym_comment, - ACTIONS(966), 16, + ACTIONS(5014), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -248366,7 +224928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(968), 45, + ACTIONS(5012), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -248412,12 +224974,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21508] = 4, + [18671] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1955), 1, + STATE(1720), 1, sym_comment, - ACTIONS(2311), 16, + ACTIONS(5018), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -248434,8 +224996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2313), 44, - ts_builtin_sym_end, + ACTIONS(5016), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -248455,8 +225016,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -248479,12 +225042,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21579] = 4, + [18743] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1956), 1, + STATE(1721), 1, sym_comment, - ACTIONS(5168), 16, + ACTIONS(5022), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -248501,8 +225064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5166), 44, - ts_builtin_sym_end, + ACTIONS(5020), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -248522,8 +225084,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -248546,12 +225110,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21650] = 4, + [18815] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1957), 1, + STATE(1722), 1, sym_comment, - ACTIONS(5172), 16, + ACTIONS(5026), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -248568,8 +225132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5170), 44, - ts_builtin_sym_end, + ACTIONS(5024), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -248589,8 +225152,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -248613,19 +225178,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21721] = 7, + [18887] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(1958), 1, + STATE(1723), 1, sym_comment, - STATE(2272), 1, - aux_sym_shebang_repeat1, - STATE(7562), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5178), 9, - sym__newline, + ACTIONS(5030), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248634,7 +225199,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 48, + aux_sym_unquoted_token1, + ACTIONS(5028), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -248645,36 +225218,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248683,20 +225246,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21798] = 8, + [18959] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5121), 1, + ACTIONS(5032), 1, anon_sym_DOT, - STATE(1959), 1, + STATE(1240), 1, + sym_cell_path, + STATE(1724), 1, sym_comment, - STATE(1999), 1, + STATE(1926), 1, aux_sym_cell_path_repeat1, - STATE(2297), 1, + STATE(2126), 1, sym_path, - STATE(2594), 1, - sym_cell_path, - ACTIONS(1875), 8, + ACTIONS(1011), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248705,7 +225268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1877), 48, + ACTIONS(1013), 49, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -248718,6 +225281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -248754,12 +225318,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21877] = 4, + [19039] = 40, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - STATE(1960), 1, + ACTIONS(3199), 1, + anon_sym_null, + ACTIONS(3249), 1, + anon_sym_LBRACK, + ACTIONS(3255), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3299), 1, + aux_sym_expr_unary_token1, + ACTIONS(3301), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3303), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3305), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3307), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4982), 1, + anon_sym_LPAREN, + ACTIONS(4984), 1, + anon_sym_DOLLAR, + ACTIONS(4986), 1, + anon_sym_DASH_DASH, + ACTIONS(4988), 1, + anon_sym_DASH, + STATE(1389), 1, + sym__str_double_quotes, + STATE(1458), 1, + sym_expr_parenthesized, + STATE(1461), 1, + sym_val_variable, + STATE(1644), 1, + sym__expr_unary_minus, + STATE(1676), 1, + sym__val_number, + STATE(1708), 1, + sym__inter_single_quotes, + STATE(1709), 1, + sym__inter_double_quotes, + STATE(1725), 1, + sym_comment, + STATE(2277), 1, + sym__flag, + STATE(2837), 1, + sym__val_number_decimal, + STATE(3484), 1, + sym_val_range, + STATE(3785), 1, + sym__expr_binary_expression, + STATE(5607), 1, + sym__expression, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3197), 2, + anon_sym_true, + anon_sym_false, + STATE(3689), 2, + sym_short_flag, + sym_long_flag, + STATE(1606), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1675), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [19183] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1726), 1, sym_comment, - ACTIONS(2344), 16, + ACTIONS(5036), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -248776,8 +225444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2346), 44, - ts_builtin_sym_end, + ACTIONS(5034), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -248797,8 +225464,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -248821,12 +225490,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21948] = 4, + [19255] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1961), 1, + STATE(1727), 1, sym_comment, - ACTIONS(2326), 16, + ACTIONS(5040), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -248843,8 +225512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2328), 44, - ts_builtin_sym_end, + ACTIONS(5038), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -248864,8 +225532,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -248888,19 +225558,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22019] = 7, + [19327] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(1962), 1, + STATE(1728), 1, sym_comment, - STATE(2208), 1, - aux_sym_shebang_repeat1, - STATE(7562), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5182), 9, - sym__newline, + ACTIONS(5044), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248909,7 +225579,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5184), 48, + aux_sym_unquoted_token1, + ACTIONS(5042), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -248920,36 +225598,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248958,19 +225626,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22096] = 7, + [19399] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(1963), 1, + STATE(1729), 1, sym_comment, - STATE(2209), 1, - aux_sym_shebang_repeat1, - STATE(7562), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5182), 9, - sym__newline, + ACTIONS(5048), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248979,7 +225647,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5184), 48, + aux_sym_unquoted_token1, + ACTIONS(5046), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -248990,36 +225666,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249028,19 +225694,436 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22173] = 7, + [19471] = 40, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(1964), 1, + ACTIONS(3199), 1, + anon_sym_null, + ACTIONS(3249), 1, + anon_sym_LBRACK, + ACTIONS(3255), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3299), 1, + aux_sym_expr_unary_token1, + ACTIONS(3301), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3303), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3305), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3307), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4982), 1, + anon_sym_LPAREN, + ACTIONS(4984), 1, + anon_sym_DOLLAR, + ACTIONS(4986), 1, + anon_sym_DASH_DASH, + ACTIONS(4988), 1, + anon_sym_DASH, + STATE(1389), 1, + sym__str_double_quotes, + STATE(1458), 1, + sym_expr_parenthesized, + STATE(1461), 1, + sym_val_variable, + STATE(1644), 1, + sym__expr_unary_minus, + STATE(1676), 1, + sym__val_number, + STATE(1708), 1, + sym__inter_single_quotes, + STATE(1709), 1, + sym__inter_double_quotes, + STATE(1730), 1, sym_comment, - STATE(2210), 1, - aux_sym_shebang_repeat1, - STATE(7562), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5182), 9, - sym__newline, + STATE(2329), 1, + sym__flag, + STATE(2837), 1, + sym__val_number_decimal, + STATE(3484), 1, + sym_val_range, + STATE(3785), 1, + sym__expr_binary_expression, + STATE(5569), 1, + sym__expression, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3197), 2, + anon_sym_true, + anon_sym_false, + STATE(3689), 2, + sym_short_flag, + sym_long_flag, + STATE(1606), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1675), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [19615] = 40, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3199), 1, + anon_sym_null, + ACTIONS(3249), 1, + anon_sym_LBRACK, + ACTIONS(3255), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3299), 1, + aux_sym_expr_unary_token1, + ACTIONS(3301), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3303), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3305), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3307), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4982), 1, + anon_sym_LPAREN, + ACTIONS(4984), 1, + anon_sym_DOLLAR, + ACTIONS(4986), 1, + anon_sym_DASH_DASH, + ACTIONS(4988), 1, + anon_sym_DASH, + STATE(1389), 1, + sym__str_double_quotes, + STATE(1458), 1, + sym_expr_parenthesized, + STATE(1461), 1, + sym_val_variable, + STATE(1644), 1, + sym__expr_unary_minus, + STATE(1676), 1, + sym__val_number, + STATE(1708), 1, + sym__inter_single_quotes, + STATE(1709), 1, + sym__inter_double_quotes, + STATE(1731), 1, + sym_comment, + STATE(2330), 1, + sym__flag, + STATE(2837), 1, + sym__val_number_decimal, + STATE(3484), 1, + sym_val_range, + STATE(3785), 1, + sym__expr_binary_expression, + STATE(5610), 1, + sym__expression, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3197), 2, + anon_sym_true, + anon_sym_false, + STATE(3689), 2, + sym_short_flag, + sym_long_flag, + STATE(1606), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1675), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [19759] = 40, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3199), 1, + anon_sym_null, + ACTIONS(3249), 1, + anon_sym_LBRACK, + ACTIONS(3255), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3299), 1, + aux_sym_expr_unary_token1, + ACTIONS(3301), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3303), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3305), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3307), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4982), 1, + anon_sym_LPAREN, + ACTIONS(4984), 1, + anon_sym_DOLLAR, + ACTIONS(4986), 1, + anon_sym_DASH_DASH, + ACTIONS(4988), 1, + anon_sym_DASH, + STATE(1389), 1, + sym__str_double_quotes, + STATE(1458), 1, + sym_expr_parenthesized, + STATE(1461), 1, + sym_val_variable, + STATE(1644), 1, + sym__expr_unary_minus, + STATE(1676), 1, + sym__val_number, + STATE(1708), 1, + sym__inter_single_quotes, + STATE(1709), 1, + sym__inter_double_quotes, + STATE(1732), 1, + sym_comment, + STATE(2331), 1, + sym__flag, + STATE(2837), 1, + sym__val_number_decimal, + STATE(3484), 1, + sym_val_range, + STATE(3785), 1, + sym__expr_binary_expression, + STATE(5611), 1, + sym__expression, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3197), 2, + anon_sym_true, + anon_sym_false, + STATE(3689), 2, + sym_short_flag, + sym_long_flag, + STATE(1606), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1675), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [19903] = 40, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3199), 1, + anon_sym_null, + ACTIONS(3249), 1, + anon_sym_LBRACK, + ACTIONS(3255), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3299), 1, + aux_sym_expr_unary_token1, + ACTIONS(3301), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3303), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3305), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3307), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4982), 1, + anon_sym_LPAREN, + ACTIONS(4984), 1, + anon_sym_DOLLAR, + ACTIONS(4986), 1, + anon_sym_DASH_DASH, + ACTIONS(4988), 1, + anon_sym_DASH, + STATE(1389), 1, + sym__str_double_quotes, + STATE(1458), 1, + sym_expr_parenthesized, + STATE(1461), 1, + sym_val_variable, + STATE(1644), 1, + sym__expr_unary_minus, + STATE(1676), 1, + sym__val_number, + STATE(1708), 1, + sym__inter_single_quotes, + STATE(1709), 1, + sym__inter_double_quotes, + STATE(1733), 1, + sym_comment, + STATE(2332), 1, + sym__flag, + STATE(2837), 1, + sym__val_number_decimal, + STATE(3484), 1, + sym_val_range, + STATE(3785), 1, + sym__expr_binary_expression, + STATE(5523), 1, + sym__expression, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3197), 2, + anon_sym_true, + anon_sym_false, + STATE(3689), 2, + sym_short_flag, + sym_long_flag, + STATE(1606), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1675), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [20047] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4944), 1, + anon_sym_DOT, + STATE(1530), 1, + sym_path, + STATE(1680), 1, + sym_cell_path, + STATE(1734), 1, + sym_comment, + STATE(1908), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1965), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249049,7 +226132,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5184), 48, + ACTIONS(1967), 49, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -249061,35 +226145,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249098,19 +226182,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22250] = 4, + [20127] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1965), 1, + ACTIONS(4944), 1, + anon_sym_DOT, + STATE(1530), 1, + sym_path, + STATE(1681), 1, + sym_cell_path, + STATE(1735), 1, sym_comment, - ACTIONS(1879), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1908), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1957), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249119,15 +226204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1881), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1959), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249139,24 +226216,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249165,20 +226254,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22321] = 8, + [20207] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5121), 1, + ACTIONS(4944), 1, anon_sym_DOT, - STATE(1966), 1, - sym_comment, - STATE(1999), 1, - aux_sym_cell_path_repeat1, - STATE(2297), 1, + STATE(1530), 1, sym_path, - STATE(2577), 1, + STATE(1684), 1, sym_cell_path, - ACTIONS(1741), 8, + STATE(1736), 1, + sym_comment, + STATE(1908), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1879), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249187,8 +226276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1745), 48, - ts_builtin_sym_end, + ACTIONS(1881), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249200,6 +226288,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -249236,19 +226326,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22400] = 4, + [20287] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1967), 1, + ACTIONS(4944), 1, + anon_sym_DOT, + STATE(1530), 1, + sym_path, + STATE(1686), 1, + sym_cell_path, + STATE(1737), 1, sym_comment, - ACTIONS(2263), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1908), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1961), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249257,15 +226348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2265), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1963), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249277,24 +226360,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [20367] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4944), 1, + anon_sym_DOT, + STATE(1530), 1, + sym_path, + STATE(1688), 1, + sym_cell_path, + STATE(1738), 1, + sym_comment, + STATE(1908), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1829), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1833), 49, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249303,20 +226470,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22471] = 8, + [20447] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5121), 1, + ACTIONS(4944), 1, anon_sym_DOT, - STATE(1968), 1, - sym_comment, - STATE(1999), 1, - aux_sym_cell_path_repeat1, - STATE(2297), 1, + STATE(1530), 1, sym_path, - STATE(2578), 1, + STATE(1689), 1, sym_cell_path, - ACTIONS(1899), 8, + STATE(1739), 1, + sym_comment, + STATE(1908), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1835), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249325,8 +226492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1901), 48, - ts_builtin_sym_end, + ACTIONS(1837), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249338,6 +226504,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -249374,12 +226542,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22550] = 4, + [20527] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1969), 1, + ACTIONS(4944), 1, + anon_sym_DOT, + STATE(1530), 1, + sym_path, + STATE(1690), 1, + sym_cell_path, + STATE(1740), 1, sym_comment, - ACTIONS(966), 8, + STATE(1908), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1839), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249388,7 +226564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(968), 52, + ACTIONS(1841), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249401,9 +226577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_QMARK2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -249432,7 +226606,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249441,19 +226614,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22621] = 4, + [20607] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1970), 1, + ACTIONS(4944), 1, + anon_sym_DOT, + STATE(1530), 1, + sym_path, + STATE(1691), 1, + sym_cell_path, + STATE(1741), 1, sym_comment, - ACTIONS(1770), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1908), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1843), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249462,15 +226636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1772), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1845), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249482,24 +226648,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249508,19 +226686,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22692] = 7, + [20687] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(1971), 1, + ACTIONS(4944), 1, + anon_sym_DOT, + STATE(1530), 1, + sym_path, + STATE(1692), 1, + sym_cell_path, + STATE(1742), 1, sym_comment, - STATE(2334), 1, - aux_sym_shebang_repeat1, - STATE(7562), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5186), 9, - sym__newline, + STATE(1908), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1847), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249529,7 +226708,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5188), 48, + ACTIONS(1849), 49, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -249541,35 +226721,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249578,20 +226758,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22769] = 8, + [20767] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5121), 1, + ACTIONS(4944), 1, anon_sym_DOT, - STATE(1972), 1, - sym_comment, - STATE(1999), 1, - aux_sym_cell_path_repeat1, - STATE(2297), 1, + STATE(1530), 1, sym_path, - STATE(2551), 1, + STATE(1693), 1, sym_cell_path, - ACTIONS(1847), 8, + STATE(1743), 1, + sym_comment, + STATE(1908), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1851), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249600,8 +226780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1849), 48, - ts_builtin_sym_end, + ACTIONS(1853), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249613,6 +226792,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -249649,19 +226830,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22848] = 4, + [20847] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1973), 1, + ACTIONS(4944), 1, + anon_sym_DOT, + STATE(1530), 1, + sym_path, + STATE(1694), 1, + sym_cell_path, + STATE(1744), 1, sym_comment, - ACTIONS(5149), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1908), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1855), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249670,15 +226852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5147), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1857), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249690,24 +226864,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249716,19 +226902,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22919] = 7, + [20927] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(1974), 1, + ACTIONS(4944), 1, + anon_sym_DOT, + STATE(1530), 1, + sym_path, + STATE(1695), 1, + sym_cell_path, + STATE(1745), 1, sym_comment, - STATE(2211), 1, - aux_sym_shebang_repeat1, - STATE(7562), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5182), 9, - sym__newline, + STATE(1908), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1859), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249737,7 +226924,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5184), 48, + ACTIONS(1861), 49, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -249749,35 +226937,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249786,19 +226974,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22996] = 4, + [21007] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1975), 1, + ACTIONS(4944), 1, + anon_sym_DOT, + STATE(1530), 1, + sym_path, + STATE(1696), 1, + sym_cell_path, + STATE(1746), 1, sym_comment, - ACTIONS(5049), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1908), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1863), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249807,14 +226996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5047), 44, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1865), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249826,25 +227008,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249853,19 +227046,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23067] = 7, + [21087] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(1976), 1, + ACTIONS(4944), 1, + anon_sym_DOT, + STATE(1530), 1, + sym_path, + STATE(1697), 1, + sym_cell_path, + STATE(1747), 1, sym_comment, - STATE(2212), 1, - aux_sym_shebang_repeat1, - STATE(7562), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5182), 9, - sym__newline, + STATE(1908), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1867), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249874,7 +227068,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5184), 48, + ACTIONS(1869), 49, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -249886,35 +227081,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249923,19 +227118,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23144] = 7, + [21167] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(1977), 1, + ACTIONS(4944), 1, + anon_sym_DOT, + STATE(1530), 1, + sym_path, + STATE(1699), 1, + sym_cell_path, + STATE(1748), 1, sym_comment, - STATE(2213), 1, - aux_sym_shebang_repeat1, - STATE(7562), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5182), 9, - sym__newline, + STATE(1908), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1875), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249944,7 +227140,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5184), 48, + ACTIONS(1877), 49, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -249956,35 +227153,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249993,19 +227190,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23221] = 7, + [21247] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(1978), 1, + ACTIONS(4944), 1, + anon_sym_DOT, + STATE(1530), 1, + sym_path, + STATE(1700), 1, + sym_cell_path, + STATE(1749), 1, sym_comment, - STATE(2342), 1, - aux_sym_shebang_repeat1, - STATE(7562), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5186), 9, - sym__newline, + STATE(1908), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1969), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250014,7 +227212,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5188), 48, + ACTIONS(1971), 49, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -250026,35 +227225,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250063,19 +227262,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23298] = 4, + [21327] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1979), 1, + ACTIONS(4944), 1, + anon_sym_DOT, + STATE(1530), 1, + sym_path, + STATE(1701), 1, + sym_cell_path, + STATE(1750), 1, sym_comment, - ACTIONS(1835), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1908), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1890), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250084,15 +227284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1837), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1892), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250104,24 +227296,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250130,19 +227334,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23369] = 7, + [21407] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(1980), 1, + ACTIONS(4944), 1, + anon_sym_DOT, + STATE(1530), 1, + sym_path, + STATE(1702), 1, + sym_cell_path, + STATE(1751), 1, sym_comment, - STATE(2214), 1, - aux_sym_shebang_repeat1, - STATE(7562), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5182), 9, - sym__newline, + STATE(1908), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1894), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250151,7 +227356,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5184), 48, + ACTIONS(1896), 49, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -250163,35 +227369,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250200,19 +227406,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23446] = 4, + [21487] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1981), 1, + ACTIONS(4944), 1, + anon_sym_DOT, + STATE(1530), 1, + sym_path, + STATE(1703), 1, + sym_cell_path, + STATE(1752), 1, sym_comment, - ACTIONS(2401), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1908), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1937), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250221,15 +227428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2403), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1939), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250241,24 +227440,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250267,19 +227478,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23517] = 4, + [21567] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1982), 1, + ACTIONS(4944), 1, + anon_sym_DOT, + STATE(1530), 1, + sym_path, + STATE(1704), 1, + sym_cell_path, + STATE(1753), 1, sym_comment, - ACTIONS(2066), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1908), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1945), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250288,15 +227500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2072), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1947), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250308,24 +227512,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250334,19 +227550,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23588] = 4, + [21647] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1983), 1, + ACTIONS(4944), 1, + anon_sym_DOT, + STATE(1530), 1, + sym_path, + STATE(1705), 1, + sym_cell_path, + STATE(1754), 1, sym_comment, - ACTIONS(1972), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1908), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1949), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250355,15 +227572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1978), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1951), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250375,24 +227584,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250401,12 +227622,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23659] = 4, + [21727] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1984), 1, + STATE(1755), 1, sym_comment, - ACTIONS(1960), 16, + ACTIONS(1076), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -250423,8 +227644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1966), 44, - ts_builtin_sym_end, + ACTIONS(1078), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -250444,8 +227664,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -250468,18 +227690,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23730] = 7, + [21799] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(1985), 1, + ACTIONS(4946), 1, + anon_sym_DOT, + STATE(1756), 1, sym_comment, - STATE(2344), 1, - aux_sym_shebang_repeat1, - STATE(7562), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5186), 9, + STATE(1917), 1, + aux_sym_cell_path_repeat1, + STATE(1952), 1, + sym_cell_path, + STATE(2141), 1, + sym_path, + ACTIONS(1835), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -250489,7 +227713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5188), 48, + ACTIONS(1837), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -250538,12 +227762,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23807] = 4, + [21879] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1986), 1, + STATE(1757), 1, sym_comment, - ACTIONS(1648), 16, + ACTIONS(2501), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -250560,7 +227784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1650), 44, + ACTIONS(2503), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -250605,18 +227829,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23878] = 7, + [21950] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - STATE(1987), 1, + STATE(1758), 1, sym_comment, - STATE(2216), 1, + STATE(1991), 1, aux_sym_shebang_repeat1, - STATE(7562), 1, + STATE(7338), 1, sym__expr_parenthesized_immediate, - ACTIONS(5190), 9, + ACTIONS(5050), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -250626,7 +227850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 48, + ACTIONS(5052), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -250675,19 +227899,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23955] = 4, + [22027] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1988), 1, + ACTIONS(5032), 1, + anon_sym_DOT, + STATE(1759), 1, sym_comment, - ACTIONS(2295), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1926), 1, + aux_sym_cell_path_repeat1, + STATE(2126), 1, + sym_path, + STATE(2372), 1, + sym_cell_path, + ACTIONS(1879), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250696,15 +227921,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2297), 44, + ACTIONS(1881), 48, ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250716,24 +227934,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250742,14 +227970,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24026] = 5, + [22106] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5194), 1, - anon_sym_LBRACK2, - STATE(1989), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(1760), 1, sym_comment, - ACTIONS(2235), 9, + STATE(1999), 1, + aux_sym_shebang_repeat1, + STATE(7338), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5050), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -250759,7 +227991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2239), 50, + ACTIONS(5052), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -250771,9 +228003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -250810,19 +228040,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24099] = 4, + [22183] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(1990), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(1761), 1, sym_comment, - ACTIONS(2251), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1992), 1, + aux_sym_shebang_repeat1, + STATE(7338), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5054), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250831,16 +228061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2253), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(5056), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -250851,24 +228072,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250877,12 +228110,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24170] = 4, + [22260] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(1991), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(1762), 1, sym_comment, - ACTIONS(3487), 9, + STATE(2006), 1, + aux_sym_shebang_repeat1, + STATE(7338), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5050), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -250892,7 +228131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3485), 51, + ACTIONS(5052), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -250904,10 +228143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - anon_sym_LPAREN2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -250944,18 +228180,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24241] = 7, + [22337] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - STATE(1992), 1, + STATE(1763), 1, sym_comment, - STATE(2219), 1, + STATE(2001), 1, aux_sym_shebang_repeat1, - STATE(7562), 1, + STATE(7338), 1, sym__expr_parenthesized_immediate, - ACTIONS(5190), 9, + ACTIONS(5054), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -250965,7 +228201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 48, + ACTIONS(5056), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251014,19 +228250,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24318] = 4, + [22414] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(1993), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(1764), 1, sym_comment, - ACTIONS(5153), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2015), 1, + aux_sym_shebang_repeat1, + STATE(7338), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5050), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251035,16 +228271,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5151), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(5052), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [22491] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(1765), 1, + sym_comment, + STATE(2007), 1, + aux_sym_shebang_repeat1, + STATE(7338), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5054), 9, sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5056), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251055,24 +228352,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251081,19 +228390,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24389] = 8, + [22568] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1015), 1, - anon_sym_DOT_DOT2, - ACTIONS(4728), 1, - aux_sym_record_entry_token1, - STATE(1994), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(1766), 1, sym_comment, - ACTIONS(1017), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3175), 9, + STATE(2024), 1, + aux_sym_shebang_repeat1, + STATE(7338), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5050), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -251103,7 +228411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3173), 19, + ACTIONS(5052), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251114,7 +228422,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251123,47 +228460,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(3177), 28, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [24468] = 7, + [22645] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - STATE(1995), 1, + STATE(1767), 1, sym_comment, - STATE(2221), 1, + STATE(2008), 1, aux_sym_shebang_repeat1, - STATE(7562), 1, + STATE(7338), 1, sym__expr_parenthesized_immediate, - ACTIONS(5190), 9, + ACTIONS(5054), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -251173,7 +228481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 48, + ACTIONS(5056), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251222,12 +228530,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24545] = 4, + [22722] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1996), 1, + STATE(1768), 1, sym_comment, - ACTIONS(1953), 16, + ACTIONS(4808), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -251244,8 +228552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1955), 44, - ts_builtin_sym_end, + ACTIONS(2671), 44, anon_sym_true, anon_sym_false, anon_sym_null, @@ -251265,6 +228572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT_EQ, @@ -251289,12 +228597,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24616] = 4, + [22793] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(1997), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(1769), 1, + sym_comment, + STATE(2033), 1, + aux_sym_shebang_repeat1, + STATE(7338), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5050), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5052), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [22870] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1770), 1, sym_comment, - ACTIONS(5125), 16, + ACTIONS(4892), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -251311,8 +228689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5123), 44, - ts_builtin_sym_end, + ACTIONS(4890), 44, anon_sym_true, anon_sym_false, anon_sym_null, @@ -251332,6 +228709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT_EQ, @@ -251356,20 +228734,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24687] = 8, + [22941] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5121), 1, - anon_sym_DOT, - STATE(1998), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(1771), 1, sym_comment, - STATE(1999), 1, - aux_sym_cell_path_repeat1, - STATE(2297), 1, - sym_path, - STATE(2580), 1, - sym_cell_path, - ACTIONS(1831), 8, + STATE(2038), 1, + aux_sym_shebang_repeat1, + STATE(7338), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5050), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251378,9 +228755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1833), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5052), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251391,34 +228766,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251427,18 +228804,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24766] = 7, + [23018] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5121), 1, - anon_sym_DOT, - STATE(1999), 1, + STATE(1772), 1, sym_comment, - STATE(2099), 1, - aux_sym_cell_path_repeat1, - STATE(2297), 1, - sym_path, - ACTIONS(951), 8, + ACTIONS(4888), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251447,9 +228819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(953), 49, - ts_builtin_sym_end, - sym__newline, + ACTIONS(4886), 51, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251460,35 +228830,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_if, aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_EQ_GT, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251497,20 +228871,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24843] = 8, + [23089] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5121), 1, + ACTIONS(5032), 1, anon_sym_DOT, - STATE(1999), 1, - aux_sym_cell_path_repeat1, - STATE(2000), 1, + STATE(1773), 1, sym_comment, - STATE(2297), 1, + STATE(1926), 1, + aux_sym_cell_path_repeat1, + STATE(2126), 1, sym_path, - STATE(2581), 1, + STATE(2355), 1, sym_cell_path, - ACTIONS(1835), 8, + ACTIONS(1957), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251519,7 +228893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1837), 48, + ACTIONS(1959), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -251568,19 +228942,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24922] = 4, + [23168] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2001), 1, + ACTIONS(1085), 1, + anon_sym_DOT_DOT2, + ACTIONS(4552), 1, + aux_sym_record_entry_token1, + STATE(1774), 1, sym_comment, - ACTIONS(2348), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1087), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(4818), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251589,16 +228964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2350), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(4816), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251609,24 +228975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251635,12 +228984,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24993] = 4, + ACTIONS(4820), 28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [23247] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(2002), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(1775), 1, sym_comment, - ACTIONS(3375), 9, + STATE(2017), 1, + aux_sym_shebang_repeat1, + STATE(7338), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5054), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -251650,7 +229034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3373), 51, + ACTIONS(5056), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251662,10 +229046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - anon_sym_LPAREN2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -251702,12 +229083,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25064] = 4, + [23324] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2003), 1, + STATE(1776), 1, sym_comment, - ACTIONS(3540), 16, + ACTIONS(4979), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -251724,7 +229105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(3537), 44, + ACTIONS(4976), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -251769,18 +229150,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25135] = 7, + [23395] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - STATE(2004), 1, + STATE(1777), 1, sym_comment, - STATE(2223), 1, + STATE(2025), 1, aux_sym_shebang_repeat1, - STATE(7562), 1, + STATE(7338), 1, sym__expr_parenthesized_immediate, - ACTIONS(5190), 9, + ACTIONS(5054), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -251790,7 +229171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 48, + ACTIONS(5056), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251839,18 +229220,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25212] = 6, + [23472] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5196), 1, - anon_sym_DOT, - STATE(2197), 1, - sym_path, - STATE(2005), 2, + STATE(1778), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(955), 9, - sym__newline, + ACTIONS(2061), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251859,7 +229241,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(957), 48, + aux_sym_unquoted_token1, + ACTIONS(2067), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251870,36 +229261,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251908,19 +229287,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25287] = 7, + [23543] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(2006), 1, + ACTIONS(5032), 1, + anon_sym_DOT, + STATE(1779), 1, sym_comment, - STATE(2225), 1, - aux_sym_shebang_repeat1, - STATE(7562), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5190), 9, + STATE(1926), 1, + aux_sym_cell_path_repeat1, + STATE(2126), 1, + sym_path, + STATE(2376), 1, + sym_cell_path, + ACTIONS(1847), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1849), 48, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [23622] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5032), 1, + anon_sym_DOT, + STATE(1780), 1, + sym_comment, + STATE(1926), 1, + aux_sym_cell_path_repeat1, + STATE(2126), 1, + sym_path, + STATE(2343), 1, + sym_cell_path, + ACTIONS(1851), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251929,7 +229380,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 48, + ACTIONS(1853), 48, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251940,36 +229393,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251978,19 +229429,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25364] = 4, + [23701] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2007), 1, + ACTIONS(5032), 1, + anon_sym_DOT, + STATE(1781), 1, sym_comment, - ACTIONS(2315), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1926), 1, + aux_sym_cell_path_repeat1, + STATE(2126), 1, + sym_path, + STATE(2388), 1, + sym_cell_path, + ACTIONS(1855), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251999,15 +229451,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2317), 44, + ACTIONS(1857), 48, ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252019,24 +229464,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -252045,18 +229500,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25435] = 7, + [23780] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(2008), 1, + ACTIONS(5058), 1, + anon_sym_LBRACK2, + STATE(1782), 1, sym_comment, - STATE(2260), 1, - aux_sym_shebang_repeat1, - STATE(7562), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5178), 9, + ACTIONS(2303), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -252066,7 +229517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 48, + ACTIONS(2307), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -252078,7 +229529,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_if, aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -252115,18 +229568,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25512] = 7, + [23853] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - STATE(2009), 1, + STATE(1783), 1, sym_comment, - STATE(2340), 1, + STATE(2026), 1, aux_sym_shebang_repeat1, - STATE(7562), 1, + STATE(7338), 1, sym__expr_parenthesized_immediate, - ACTIONS(5186), 9, + ACTIONS(5054), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -252136,7 +229589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5188), 48, + ACTIONS(5056), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -252185,12 +229638,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25589] = 4, + [23930] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2010), 1, + STATE(1784), 1, sym_comment, - ACTIONS(4964), 16, + ACTIONS(4706), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -252207,7 +229660,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4962), 44, + ACTIONS(4704), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -252227,7 +229681,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT_EQ, @@ -252252,12 +229705,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25660] = 4, + [24001] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2011), 1, + STATE(1785), 1, sym_comment, - ACTIONS(2340), 16, + ACTIONS(2497), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -252274,7 +229727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2342), 44, + ACTIONS(2499), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -252319,12 +229772,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25731] = 4, + [24072] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2012), 1, + STATE(1786), 1, sym_comment, - ACTIONS(962), 16, + ACTIONS(5014), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -252341,7 +229794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(964), 44, + ACTIONS(5012), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -252386,82 +229839,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25802] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(2013), 1, - sym_comment, - STATE(2227), 1, - aux_sym_shebang_repeat1, - STATE(7562), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5190), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5192), 48, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [25879] = 4, + [24143] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2014), 1, + STATE(1787), 1, sym_comment, - ACTIONS(4879), 16, + ACTIONS(2465), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -252478,7 +229861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4877), 44, + ACTIONS(2467), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -252523,19 +229906,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25950] = 7, + [24214] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(2015), 1, + STATE(1788), 1, sym_comment, - STATE(2261), 1, - aux_sym_shebang_repeat1, - STATE(7562), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5178), 9, - sym__newline, + ACTIONS(2469), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252544,77 +229927,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 48, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [26027] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(2016), 1, - sym_comment, - STATE(2230), 1, - aux_sym_shebang_repeat1, - STATE(7562), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5190), 9, + aux_sym_unquoted_token1, + ACTIONS(2471), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5192), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -252625,36 +229947,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -252663,12 +229973,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26104] = 4, + [24285] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2017), 1, + STATE(1789), 1, sym_comment, - ACTIONS(2405), 16, + ACTIONS(2473), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -252685,7 +229995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2407), 44, + ACTIONS(2475), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -252730,12 +230040,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26175] = 4, + [24356] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2018), 1, + STATE(1790), 1, sym_comment, - ACTIONS(2409), 16, + ACTIONS(4797), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -252752,7 +230062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2411), 44, + ACTIONS(4795), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -252797,18 +230107,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26246] = 7, + [24427] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - STATE(2019), 1, + STATE(1791), 1, sym_comment, - STATE(2262), 1, + STATE(2042), 1, aux_sym_shebang_repeat1, - STATE(7562), 1, + STATE(7338), 1, sym__expr_parenthesized_immediate, - ACTIONS(5178), 9, + ACTIONS(5054), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -252818,7 +230128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 48, + ACTIONS(5056), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -252867,12 +230177,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26323] = 4, + [24504] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2020), 1, + ACTIONS(5032), 1, + anon_sym_DOT, + STATE(1792), 1, + sym_comment, + STATE(1926), 1, + aux_sym_cell_path_repeat1, + STATE(2126), 1, + sym_path, + STATE(2375), 1, + sym_cell_path, + ACTIONS(1843), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1845), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [24583] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1793), 1, sym_comment, - ACTIONS(4930), 16, + ACTIONS(5018), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -252889,7 +230270,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2613), 44, + ACTIONS(5016), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -252909,7 +230291,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT_EQ, @@ -252934,12 +230315,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26394] = 4, + [24654] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2021), 1, + STATE(1794), 1, sym_comment, - ACTIONS(5023), 16, + ACTIONS(5022), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -252956,7 +230337,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5021), 44, + ACTIONS(5020), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -252976,7 +230358,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT_EQ, @@ -253001,18 +230382,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26465] = 7, + [24725] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5032), 1, + anon_sym_DOT, + STATE(1795), 1, + sym_comment, + STATE(1926), 1, + aux_sym_cell_path_repeat1, + STATE(2126), 1, + sym_path, + STATE(2371), 1, + sym_cell_path, + ACTIONS(1835), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1837), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [24804] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5032), 1, + anon_sym_DOT, + STATE(1796), 1, + sym_comment, + STATE(1926), 1, + aux_sym_cell_path_repeat1, + STATE(2126), 1, + sym_path, + STATE(2399), 1, + sym_cell_path, + ACTIONS(1839), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1841), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [24883] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - STATE(2022), 1, + STATE(1797), 1, sym_comment, - STATE(2232), 1, + STATE(2051), 1, aux_sym_shebang_repeat1, - STATE(7562), 1, + STATE(7338), 1, sym__expr_parenthesized_immediate, - ACTIONS(5190), 9, + ACTIONS(5054), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -253022,7 +230545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 48, + ACTIONS(5056), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253071,12 +230594,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26542] = 4, + [24960] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2023), 1, + STATE(1798), 1, sym_comment, - ACTIONS(2371), 16, + ACTIONS(5026), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -253093,7 +230616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2373), 44, + ACTIONS(5024), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -253138,12 +230661,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26613] = 4, + [25031] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2024), 1, + STATE(1799), 1, sym_comment, - ACTIONS(4991), 16, + ACTIONS(5030), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -253160,7 +230683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4989), 44, + ACTIONS(5028), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -253205,19 +230728,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26684] = 4, + [25102] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(2025), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(1800), 1, sym_comment, - ACTIONS(2417), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2052), 1, + aux_sym_shebang_repeat1, + STATE(7338), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5054), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253226,16 +230749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2419), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(5056), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253246,24 +230760,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -253272,20 +230798,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26755] = 8, + [25179] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5121), 1, + ACTIONS(5032), 1, anon_sym_DOT, - STATE(1999), 1, - aux_sym_cell_path_repeat1, - STATE(2026), 1, + STATE(1801), 1, sym_comment, - STATE(2297), 1, + STATE(1926), 1, + aux_sym_cell_path_repeat1, + STATE(2126), 1, sym_path, - STATE(2590), 1, + STATE(2428), 1, sym_cell_path, - ACTIONS(1774), 8, + ACTIONS(1965), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253294,7 +230820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1776), 48, + ACTIONS(1967), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -253343,19 +230869,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26834] = 4, + [25258] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2027), 1, + ACTIONS(5032), 1, + anon_sym_DOT, + STATE(1802), 1, sym_comment, - ACTIONS(2255), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1926), 1, + aux_sym_cell_path_repeat1, + STATE(2126), 1, + sym_path, + STATE(2383), 1, + sym_cell_path, + ACTIONS(1859), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253364,15 +230891,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2257), 44, + ACTIONS(1861), 48, ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253384,24 +230904,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -253410,19 +230940,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26905] = 4, + [25337] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2028), 1, + ACTIONS(5032), 1, + anon_sym_DOT, + STATE(1803), 1, sym_comment, - ACTIONS(1525), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1926), 1, + aux_sym_cell_path_repeat1, + STATE(2126), 1, + sym_path, + STATE(2385), 1, + sym_cell_path, + ACTIONS(1863), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253431,15 +230962,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1537), 44, + ACTIONS(1865), 48, ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253451,24 +230975,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -253477,20 +231011,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26976] = 8, + [25416] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5121), 1, + ACTIONS(5032), 1, anon_sym_DOT, - STATE(1999), 1, - aux_sym_cell_path_repeat1, - STATE(2029), 1, + STATE(1804), 1, sym_comment, - STATE(2297), 1, + STATE(1926), 1, + aux_sym_cell_path_repeat1, + STATE(2126), 1, sym_path, - STATE(2617), 1, + STATE(2390), 1, sym_cell_path, - ACTIONS(1778), 8, + ACTIONS(1867), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253499,7 +231033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1780), 48, + ACTIONS(1869), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -253548,20 +231082,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27055] = 8, + [25495] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5121), 1, + ACTIONS(5032), 1, anon_sym_DOT, - STATE(1999), 1, - aux_sym_cell_path_repeat1, - STATE(2030), 1, + STATE(1805), 1, sym_comment, - STATE(2179), 1, - sym_cell_path, - STATE(2297), 1, + STATE(1926), 1, + aux_sym_cell_path_repeat1, + STATE(2126), 1, sym_path, - ACTIONS(1599), 8, + STATE(2429), 1, + sym_cell_path, + ACTIONS(1871), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253570,7 +231104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1603), 48, + ACTIONS(1873), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -253619,19 +231153,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27134] = 7, + [25574] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(2031), 1, + ACTIONS(5032), 1, + anon_sym_DOT, + STATE(1806), 1, sym_comment, - STATE(2263), 1, - aux_sym_shebang_repeat1, - STATE(7562), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5178), 9, - sym__newline, + STATE(1926), 1, + aux_sym_cell_path_repeat1, + STATE(2126), 1, + sym_path, + STATE(2393), 1, + sym_cell_path, + ACTIONS(1875), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253640,7 +231175,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 48, + ACTIONS(1877), 48, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253651,36 +231188,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -253689,12 +231224,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27211] = 4, + [25653] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2032), 1, + STATE(1807), 1, sym_comment, - ACTIONS(2379), 16, + ACTIONS(4840), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -253711,8 +231246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2381), 44, - ts_builtin_sym_end, + ACTIONS(4838), 44, anon_sym_true, anon_sym_false, anon_sym_null, @@ -253732,6 +231266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT_EQ, @@ -253756,82 +231291,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27282] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(2033), 1, - sym_comment, - STATE(2264), 1, - aux_sym_shebang_repeat1, - STATE(7562), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5178), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5180), 48, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [27359] = 4, + [25724] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2034), 1, + STATE(1808), 1, sym_comment, - ACTIONS(1839), 16, + ACTIONS(4866), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -253848,8 +231313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1841), 44, - ts_builtin_sym_end, + ACTIONS(4864), 44, anon_sym_true, anon_sym_false, anon_sym_null, @@ -253869,6 +231333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT_EQ, @@ -253893,19 +231358,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27430] = 7, + [25795] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(2035), 1, + ACTIONS(5032), 1, + anon_sym_DOT, + STATE(1809), 1, sym_comment, - STATE(2234), 1, - aux_sym_shebang_repeat1, - STATE(7562), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5190), 9, + STATE(1926), 1, + aux_sym_cell_path_repeat1, + STATE(2126), 1, + sym_path, + STATE(2397), 1, + sym_cell_path, + ACTIONS(1969), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1971), 48, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [25874] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5032), 1, + anon_sym_DOT, + STATE(1810), 1, + sym_comment, + STATE(1926), 1, + aux_sym_cell_path_repeat1, + STATE(2126), 1, + sym_path, + STATE(2380), 1, + sym_cell_path, + ACTIONS(1961), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253914,7 +231451,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 48, + ACTIONS(1963), 48, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253925,36 +231464,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -253963,12 +231500,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27507] = 4, + [25953] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2036), 1, + STATE(1811), 1, sym_comment, - ACTIONS(1943), 16, + ACTIONS(5036), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -253985,7 +231522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1945), 44, + ACTIONS(5034), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -254030,12 +231567,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27578] = 4, + [26024] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2037), 1, + STATE(1812), 1, sym_comment, - ACTIONS(2303), 16, + ACTIONS(5040), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -254052,7 +231589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2305), 44, + ACTIONS(5038), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -254097,18 +231634,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27649] = 7, + [26095] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - STATE(2038), 1, + STATE(1813), 1, sym_comment, - STATE(2201), 1, + STATE(2019), 1, aux_sym_shebang_repeat1, - STATE(7562), 1, + STATE(7338), 1, sym__expr_parenthesized_immediate, - ACTIONS(5182), 9, + ACTIONS(5060), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -254118,7 +231655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5184), 48, + ACTIONS(5062), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254167,12 +231704,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27726] = 4, + [26172] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2039), 1, + STATE(1814), 1, sym_comment, - ACTIONS(2352), 16, + ACTIONS(5044), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -254189,7 +231726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2354), 44, + ACTIONS(5042), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -254234,12 +231771,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27797] = 4, + [26243] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2040), 1, + STATE(1815), 1, sym_comment, - ACTIONS(2421), 16, + ACTIONS(5048), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -254256,7 +231793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2423), 44, + ACTIONS(5046), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -254301,12 +231838,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27868] = 4, + [26314] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2041), 1, + STATE(1816), 1, sym_comment, - ACTIONS(1747), 16, + ACTIONS(1643), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -254323,7 +231860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1749), 44, + ACTIONS(1645), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -254368,86 +231905,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27939] = 4, + [26385] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(2042), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(1817), 1, sym_comment, - ACTIONS(966), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(968), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + STATE(2000), 1, + aux_sym_shebang_repeat1, + STATE(7338), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5054), 9, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [28010] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2043), 1, - sym_comment, - ACTIONS(2336), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -254456,16 +231926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2338), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(5056), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254476,24 +231937,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -254502,12 +231975,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28081] = 4, + [26462] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2044), 1, + STATE(1818), 1, sym_comment, - ACTIONS(3487), 16, + ACTIONS(1631), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -254524,7 +231997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(3485), 44, + ACTIONS(1633), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -254569,152 +232042,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28152] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(2045), 1, - sym_comment, - STATE(2202), 1, - aux_sym_shebang_repeat1, - STATE(7562), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5182), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5184), 48, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [28229] = 7, + [26533] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(2046), 1, - sym_comment, - STATE(2237), 1, - aux_sym_shebang_repeat1, - STATE(7562), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5190), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5192), 48, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [28306] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2047), 1, + STATE(1819), 1, sym_comment, - ACTIONS(1589), 16, + ACTIONS(1705), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -254731,7 +232064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1591), 44, + ACTIONS(1707), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -254776,12 +232109,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28377] = 4, + [26604] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2048), 1, + STATE(1820), 1, sym_comment, - ACTIONS(2425), 16, + ACTIONS(1755), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -254798,7 +232131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2427), 44, + ACTIONS(1757), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -254843,89 +232176,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28448] = 8, + [26675] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1015), 1, - anon_sym_DOT_DOT2, - ACTIONS(1019), 1, - aux_sym_record_entry_token1, - STATE(2049), 1, - sym_comment, - ACTIONS(1017), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3175), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(3173), 19, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(3177), 28, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [28527] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - STATE(2050), 1, + STATE(1821), 1, sym_comment, - STATE(2265), 1, + STATE(2054), 1, aux_sym_shebang_repeat1, - STATE(7562), 1, + STATE(7338), 1, sym__expr_parenthesized_immediate, - ACTIONS(5178), 9, + ACTIONS(5060), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -254935,7 +232197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 48, + ACTIONS(5062), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254984,19 +232246,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28604] = 7, + [26752] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(2051), 1, + STATE(1822), 1, sym_comment, - STATE(2266), 1, - aux_sym_shebang_repeat1, - STATE(7562), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5178), 9, - sym__newline, + ACTIONS(1076), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -255005,7 +232267,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 48, + aux_sym_unquoted_token1, + ACTIONS(1078), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255016,36 +232287,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -255054,19 +232313,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28681] = 7, + [26823] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(2052), 1, + STATE(1823), 1, sym_comment, - STATE(2329), 1, - aux_sym_shebang_repeat1, - STATE(7562), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5186), 9, - sym__newline, + ACTIONS(2449), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -255075,7 +232334,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5188), 48, + aux_sym_unquoted_token1, + ACTIONS(2451), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255086,36 +232354,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -255124,12 +232380,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28758] = 4, + [26894] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2053), 1, + STATE(1824), 1, sym_comment, - ACTIONS(1855), 16, + ACTIONS(2368), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -255146,7 +232402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1857), 44, + ACTIONS(2370), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -255191,18 +232447,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28829] = 7, + [26965] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - STATE(2054), 1, + STATE(1825), 1, sym_comment, - STATE(2267), 1, + STATE(2028), 1, aux_sym_shebang_repeat1, - STATE(7562), 1, + STATE(7338), 1, sym__expr_parenthesized_immediate, - ACTIONS(5178), 9, + ACTIONS(5060), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -255212,7 +232468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 48, + ACTIONS(5062), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255261,12 +232517,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28906] = 4, + [27042] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2055), 1, + STATE(1826), 1, sym_comment, - ACTIONS(1796), 16, + ACTIONS(2035), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -255283,7 +232539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1798), 44, + ACTIONS(2041), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -255328,20 +232584,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28977] = 8, + [27113] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5121), 1, - anon_sym_DOT, - STATE(1999), 1, - aux_sym_cell_path_repeat1, - STATE(2056), 1, + STATE(1827), 1, sym_comment, - STATE(2297), 1, - sym_path, - STATE(2588), 1, - sym_cell_path, - ACTIONS(1839), 8, + ACTIONS(2043), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -255350,8 +232605,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1841), 48, + aux_sym_unquoted_token1, + ACTIONS(2049), 44, ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255363,34 +232625,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -255399,12 +232651,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29056] = 4, + [27184] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2057), 1, + STATE(1828), 1, sym_comment, - ACTIONS(2332), 16, + ACTIONS(2051), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -255421,7 +232673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2334), 44, + ACTIONS(2057), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -255466,18 +232718,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29127] = 7, + [27255] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - STATE(2058), 1, + STATE(1829), 1, sym_comment, - STATE(2314), 1, + STATE(2014), 1, aux_sym_shebang_repeat1, - STATE(7562), 1, + STATE(7338), 1, sym__expr_parenthesized_immediate, - ACTIONS(5186), 9, + ACTIONS(5060), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -255487,7 +232739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5188), 48, + ACTIONS(5062), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255536,18 +232788,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29204] = 7, + [27332] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - STATE(2059), 1, + STATE(1830), 1, sym_comment, - STATE(2268), 1, + STATE(2109), 1, aux_sym_shebang_repeat1, - STATE(7562), 1, + STATE(7338), 1, sym__expr_parenthesized_immediate, - ACTIONS(5178), 9, + ACTIONS(5060), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -255557,7 +232809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 48, + ACTIONS(5062), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255606,12 +232858,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29281] = 4, + [27409] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2060), 1, + STATE(1831), 1, sym_comment, - ACTIONS(1021), 16, + ACTIONS(1961), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -255628,7 +232880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1023), 44, + ACTIONS(1963), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -255673,12 +232925,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29352] = 4, + [27480] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2061), 1, + STATE(1832), 1, sym_comment, - ACTIONS(2413), 16, + ACTIONS(2355), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -255695,7 +232947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2415), 44, + ACTIONS(2357), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -255740,12 +232992,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29423] = 4, + [27551] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2062), 1, + STATE(1833), 1, sym_comment, - ACTIONS(2429), 16, + ACTIONS(2380), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -255762,7 +233014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2431), 44, + ACTIONS(2382), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -255807,18 +233059,302 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29494] = 7, + [27622] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(5032), 1, + anon_sym_DOT, + STATE(1834), 1, + sym_comment, + STATE(1926), 1, + aux_sym_cell_path_repeat1, + STATE(2126), 1, + sym_path, + STATE(2408), 1, + sym_cell_path, + ACTIONS(1890), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1892), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [27701] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5032), 1, + anon_sym_DOT, + STATE(1835), 1, + sym_comment, + STATE(1926), 1, + aux_sym_cell_path_repeat1, + STATE(2126), 1, + sym_path, + STATE(2410), 1, + sym_cell_path, + ACTIONS(1894), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1896), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [27780] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5032), 1, + anon_sym_DOT, + STATE(1836), 1, + sym_comment, + STATE(1926), 1, + aux_sym_cell_path_repeat1, + STATE(2126), 1, + sym_path, + STATE(2415), 1, + sym_cell_path, + ACTIONS(1937), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1939), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [27859] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5032), 1, + anon_sym_DOT, + STATE(1837), 1, + sym_comment, + STATE(1926), 1, + aux_sym_cell_path_repeat1, + STATE(2126), 1, + sym_path, + STATE(2419), 1, + sym_cell_path, + ACTIONS(1945), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1947), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [27938] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3914), 1, anon_sym_LPAREN2, - STATE(2063), 1, + STATE(1838), 1, sym_comment, - STATE(2317), 1, + STATE(2136), 1, aux_sym_shebang_repeat1, - STATE(7562), 1, + STATE(7338), 1, sym__expr_parenthesized_immediate, - ACTIONS(5186), 9, + ACTIONS(5060), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -255828,7 +233364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5188), 48, + ACTIONS(5062), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255877,12 +233413,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29571] = 4, + [28015] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2064), 1, + STATE(1839), 1, sym_comment, - ACTIONS(2359), 16, + ACTIONS(2453), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -255899,7 +233435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2361), 44, + ACTIONS(2455), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -255944,12 +233480,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29642] = 4, + [28086] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2065), 1, + STATE(1840), 1, sym_comment, - ACTIONS(2433), 16, + ACTIONS(2457), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -255966,7 +233502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2435), 44, + ACTIONS(2459), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -256011,82 +233547,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29713] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(2066), 1, - sym_comment, - STATE(2326), 1, - aux_sym_shebang_repeat1, - STATE(7562), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5186), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5188), 48, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [29790] = 4, + [28157] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2067), 1, + STATE(1841), 1, sym_comment, - ACTIONS(1741), 16, + ACTIONS(2392), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -256103,7 +233569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1745), 44, + ACTIONS(2394), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -256148,18 +233614,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29861] = 7, + [28228] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - STATE(2068), 1, + STATE(1842), 1, sym_comment, - STATE(2348), 1, + STATE(2016), 1, aux_sym_shebang_repeat1, - STATE(7562), 1, + STATE(7338), 1, sym__expr_parenthesized_immediate, - ACTIONS(5186), 9, + ACTIONS(5060), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -256169,7 +233635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5188), 48, + ACTIONS(5062), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256218,12 +233684,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29938] = 4, + [28305] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2069), 1, + STATE(1843), 1, sym_comment, - ACTIONS(3375), 16, + ACTIONS(2396), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -256240,7 +233706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(3373), 44, + ACTIONS(2398), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -256285,83 +233751,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30009] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5121), 1, - anon_sym_DOT, - STATE(1999), 1, - aux_sym_cell_path_repeat1, - STATE(2070), 1, - sym_comment, - STATE(2297), 1, - sym_path, - STATE(2544), 1, - sym_cell_path, - ACTIONS(1762), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1764), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [30088] = 4, + [28376] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2071), 1, + STATE(1844), 1, sym_comment, - ACTIONS(2383), 16, + ACTIONS(1843), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -256378,7 +233773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2385), 44, + ACTIONS(1845), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -256423,18 +233818,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30159] = 7, + [28447] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - STATE(2072), 1, + STATE(1845), 1, sym_comment, - STATE(2204), 1, + STATE(2046), 1, aux_sym_shebang_repeat1, - STATE(7562), 1, + STATE(7338), 1, sym__expr_parenthesized_immediate, - ACTIONS(5182), 9, + ACTIONS(5060), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -256444,7 +233839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5184), 48, + ACTIONS(5062), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256493,12 +233888,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30236] = 4, + [28524] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2073), 1, + STATE(1846), 1, sym_comment, - ACTIONS(2311), 16, + ACTIONS(2400), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -256515,7 +233910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2313), 44, + ACTIONS(2402), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -256560,12 +233955,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30307] = 4, + [28595] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2074), 1, + STATE(1847), 1, sym_comment, - ACTIONS(2437), 16, + ACTIONS(2404), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -256582,7 +233977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2439), 44, + ACTIONS(2406), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -256627,12 +234022,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30378] = 4, + [28666] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2075), 1, + STATE(1848), 1, sym_comment, - ACTIONS(2363), 16, + ACTIONS(1859), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -256649,7 +234044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2365), 44, + ACTIONS(1861), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -256694,18 +234089,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30449] = 7, + [28737] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - STATE(2076), 1, + STATE(1849), 1, sym_comment, - STATE(2205), 1, + STATE(2113), 1, aux_sym_shebang_repeat1, - STATE(7562), 1, + STATE(7338), 1, sym__expr_parenthesized_immediate, - ACTIONS(5182), 9, + ACTIONS(5050), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -256715,7 +234110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5184), 48, + ACTIONS(5052), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256764,12 +234159,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30526] = 4, + [28814] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2077), 1, + STATE(1850), 1, sym_comment, - ACTIONS(2367), 16, + ACTIONS(1867), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -256786,7 +234181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2369), 44, + ACTIONS(1869), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -256831,12 +234226,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30597] = 4, + [28885] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2078), 1, + STATE(1851), 1, sym_comment, - ACTIONS(5131), 16, + ACTIONS(1871), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -256853,7 +234248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5129), 44, + ACTIONS(1873), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -256898,12 +234293,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30668] = 4, + [28956] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2079), 1, + STATE(1852), 1, sym_comment, - ACTIONS(5135), 16, + ACTIONS(2408), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -256920,7 +234315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5133), 44, + ACTIONS(2410), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -256965,12 +234360,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30739] = 4, + [29027] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2080), 1, + STATE(1853), 1, sym_comment, - ACTIONS(2389), 16, + ACTIONS(1890), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -256987,7 +234382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2391), 44, + ACTIONS(1892), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -257032,88 +234427,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30810] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(2081), 1, - sym_comment, - STATE(2269), 1, - aux_sym_shebang_repeat1, - STATE(7562), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5178), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5180), 48, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [30887] = 7, + [29098] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - STATE(2082), 1, + STATE(1854), 1, sym_comment, - STATE(2336), 1, + STATE(2059), 1, aux_sym_shebang_repeat1, - STATE(7562), 1, + STATE(7338), 1, sym__expr_parenthesized_immediate, - ACTIONS(5186), 9, + ACTIONS(5060), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -257123,7 +234448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5188), 48, + ACTIONS(5062), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257172,12 +234497,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30964] = 4, + [29175] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2083), 1, + STATE(1855), 1, sym_comment, - ACTIONS(5160), 16, + ACTIONS(2412), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -257194,7 +234519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5158), 44, + ACTIONS(2414), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -257239,12 +234564,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31035] = 4, + [29246] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2084), 1, + STATE(1856), 1, sym_comment, - ACTIONS(5164), 16, + ACTIONS(2416), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -257261,7 +234586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5162), 44, + ACTIONS(2418), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -257306,12 +234631,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31106] = 4, + [29317] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2085), 1, + STATE(1857), 1, sym_comment, - ACTIONS(1935), 16, + ACTIONS(1894), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -257328,7 +234653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1941), 44, + ACTIONS(1896), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -257373,12 +234698,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31177] = 4, + [29388] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2086), 1, + STATE(1858), 1, sym_comment, - ACTIONS(5139), 16, + ACTIONS(1945), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -257395,7 +234720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5137), 44, + ACTIONS(1947), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -257440,12 +234765,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31248] = 4, + [29459] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2087), 1, + STATE(1859), 1, sym_comment, - ACTIONS(5143), 16, + ACTIONS(2420), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -257462,7 +234787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5141), 44, + ACTIONS(2422), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -257507,12 +234832,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31319] = 4, + [29530] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2088), 1, + STATE(1860), 1, sym_comment, - ACTIONS(2441), 16, + ACTIONS(2424), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -257529,7 +234854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2443), 44, + ACTIONS(2426), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -257574,12 +234899,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31390] = 4, + [29601] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2089), 1, + STATE(1861), 1, sym_comment, - ACTIONS(1899), 16, + ACTIONS(1949), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -257596,7 +234921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1901), 44, + ACTIONS(1951), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -257641,12 +234966,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31461] = 4, + [29672] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2090), 1, + STATE(1862), 1, sym_comment, - ACTIONS(5097), 16, + ACTIONS(2428), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -257663,7 +234988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5095), 44, + ACTIONS(2430), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -257708,224 +235033,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31532] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5121), 1, - anon_sym_DOT, - STATE(1999), 1, - aux_sym_cell_path_repeat1, - STATE(2091), 1, - sym_comment, - STATE(2297), 1, - sym_path, - STATE(2602), 1, - sym_cell_path, - ACTIONS(1770), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1772), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [31611] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(2092), 1, - sym_comment, - STATE(2239), 1, - aux_sym_shebang_repeat1, - STATE(7562), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5190), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5192), 48, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [31688] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5121), 1, - anon_sym_DOT, - STATE(1999), 1, - aux_sym_cell_path_repeat1, - STATE(2093), 1, - sym_comment, - STATE(2297), 1, - sym_path, - STATE(2619), 1, - sym_cell_path, - ACTIONS(1879), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1881), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [31767] = 4, + [29743] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2094), 1, + STATE(1863), 1, sym_comment, - ACTIONS(1006), 16, + ACTIONS(2432), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -257942,7 +235055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1008), 44, + ACTIONS(2434), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -257987,230 +235100,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31838] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(2095), 1, - sym_comment, - STATE(2319), 1, - aux_sym_shebang_repeat1, - STATE(7562), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5186), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5188), 48, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [31915] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5121), 1, - anon_sym_DOT, - STATE(1999), 1, - aux_sym_cell_path_repeat1, - STATE(2096), 1, - sym_comment, - STATE(2297), 1, - sym_path, - STATE(2627), 1, - sym_cell_path, - ACTIONS(1883), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1885), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [31994] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5121), 1, - anon_sym_DOT, - STATE(1999), 1, - aux_sym_cell_path_repeat1, - STATE(2097), 1, - sym_comment, - STATE(2297), 1, - sym_path, - STATE(2572), 1, - sym_cell_path, - ACTIONS(1891), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1893), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [32073] = 7, + [29814] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - STATE(2098), 1, + STATE(1864), 1, sym_comment, - STATE(2321), 1, + STATE(2063), 1, aux_sym_shebang_repeat1, - STATE(7562), 1, + STATE(7338), 1, sym__expr_parenthesized_immediate, - ACTIONS(5186), 9, + ACTIONS(5060), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -258220,7 +235121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5188), 48, + ACTIONS(5062), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258269,152 +235170,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32150] = 6, + [29891] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5199), 1, - anon_sym_DOT, - STATE(2297), 1, - sym_path, - STATE(2099), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(955), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(957), 49, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [32225] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5121), 1, - anon_sym_DOT, - STATE(1999), 1, - aux_sym_cell_path_repeat1, - STATE(2100), 1, - sym_comment, - STATE(2297), 1, - sym_path, - STATE(2591), 1, - sym_cell_path, - ACTIONS(1895), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1897), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [32304] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2101), 1, + STATE(1865), 1, sym_comment, - ACTIONS(1721), 16, + ACTIONS(1575), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -258431,7 +235192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1723), 44, + ACTIONS(1587), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -258476,12 +235237,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32375] = 4, + [29962] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2102), 1, + STATE(1866), 1, sym_comment, - ACTIONS(1778), 16, + ACTIONS(2436), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -258498,7 +235259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1780), 44, + ACTIONS(2438), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -258543,156 +235304,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32446] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5121), 1, - anon_sym_DOT, - STATE(1999), 1, - aux_sym_cell_path_repeat1, - STATE(2103), 1, - sym_comment, - STATE(2297), 1, - sym_path, - STATE(2556), 1, - sym_cell_path, - ACTIONS(1747), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1749), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [32525] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2104), 1, - sym_comment, - ACTIONS(976), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(978), 52, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [32596] = 7, + [30033] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - STATE(2105), 1, + STATE(1867), 1, sym_comment, - STATE(2206), 1, + STATE(2064), 1, aux_sym_shebang_repeat1, - STATE(7562), 1, + STATE(7338), 1, sym__expr_parenthesized_immediate, - ACTIONS(5182), 9, + ACTIONS(5060), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -258702,7 +235325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5184), 48, + ACTIONS(5062), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258751,20 +235374,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32673] = 8, + [30110] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5121), 1, + ACTIONS(5032), 1, anon_sym_DOT, - STATE(1999), 1, - aux_sym_cell_path_repeat1, - STATE(2106), 1, + STATE(1868), 1, sym_comment, - STATE(2297), 1, - sym_path, - STATE(2557), 1, + STATE(1926), 1, + aux_sym_cell_path_repeat1, + STATE(1953), 1, sym_cell_path, - ACTIONS(1824), 8, + STATE(2126), 1, + sym_path, + ACTIONS(1686), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258773,7 +235396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1826), 48, + ACTIONS(1688), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -258822,18 +235445,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32752] = 7, + [30189] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - STATE(2107), 1, + STATE(1869), 1, sym_comment, - STATE(2241), 1, + STATE(2066), 1, aux_sym_shebang_repeat1, - STATE(7562), 1, + STATE(7338), 1, sym__expr_parenthesized_immediate, - ACTIONS(5190), 9, + ACTIONS(5060), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -258843,7 +235466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 48, + ACTIONS(5062), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258892,19 +235515,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32829] = 7, + [30266] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(2108), 1, + STATE(1870), 1, sym_comment, - STATE(2207), 1, - aux_sym_shebang_repeat1, - STATE(7562), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5182), 9, - sym__newline, + ACTIONS(1879), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258913,77 +235536,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5184), 48, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [32906] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(2109), 1, - sym_comment, - STATE(2324), 1, - aux_sym_shebang_repeat1, - STATE(7562), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5186), 9, + aux_sym_unquoted_token1, + ACTIONS(1881), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5188), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258994,36 +235556,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259032,18 +235582,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32983] = 7, + [30337] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - STATE(2110), 1, + STATE(1871), 1, sym_comment, - STATE(2270), 1, + STATE(2137), 1, aux_sym_shebang_repeat1, - STATE(7562), 1, + STATE(7338), 1, sym__expr_parenthesized_immediate, - ACTIONS(5178), 9, + ACTIONS(5064), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -259053,7 +235603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 48, + ACTIONS(5066), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259102,86 +235652,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33060] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2111), 1, - sym_comment, - ACTIONS(962), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(964), 52, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [33131] = 4, + [30414] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(2112), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(1872), 1, sym_comment, - ACTIONS(976), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1997), 1, + aux_sym_shebang_repeat1, + STATE(7338), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5064), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259190,16 +235673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(978), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(5066), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259210,24 +235684,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259236,20 +235722,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33202] = 8, + [30491] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5121), 1, + ACTIONS(5032), 1, anon_sym_DOT, - STATE(1999), 1, - aux_sym_cell_path_repeat1, - STATE(2113), 1, + STATE(1873), 1, sym_comment, - STATE(2297), 1, - sym_path, - STATE(2560), 1, + STATE(1926), 1, + aux_sym_cell_path_repeat1, + STATE(1982), 1, sym_cell_path, - ACTIONS(1855), 8, + STATE(2126), 1, + sym_path, + ACTIONS(1625), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259258,7 +235744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1857), 48, + ACTIONS(1629), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -259307,12 +235793,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33281] = 4, + [30570] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2114), 1, + STATE(1874), 1, sym_comment, - ACTIONS(1569), 16, + ACTIONS(2019), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -259329,7 +235815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1571), 44, + ACTIONS(2021), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -259374,12 +235860,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33352] = 4, + [30641] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(2115), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(1875), 1, + sym_comment, + STATE(2100), 1, + aux_sym_shebang_repeat1, + STATE(7338), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5064), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5066), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [30718] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1876), 1, sym_comment, - ACTIONS(2271), 16, + ACTIONS(2443), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -259396,7 +235952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2273), 44, + ACTIONS(2445), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -259441,91 +235997,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33423] = 8, + [30789] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5121), 1, + ACTIONS(5032), 1, anon_sym_DOT, - STATE(1999), 1, - aux_sym_cell_path_repeat1, - STATE(2116), 1, + STATE(1877), 1, sym_comment, - STATE(2297), 1, - sym_path, - STATE(2561), 1, - sym_cell_path, - ACTIONS(1796), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1798), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [33502] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5121), 1, - anon_sym_DOT, - STATE(1999), 1, + STATE(1926), 1, aux_sym_cell_path_repeat1, - STATE(2117), 1, - sym_comment, - STATE(2297), 1, + STATE(2126), 1, sym_path, - STATE(2563), 1, + STATE(2426), 1, sym_cell_path, - ACTIONS(1808), 8, + ACTIONS(1949), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259534,7 +236019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1810), 48, + ACTIONS(1951), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -259583,12 +236068,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33581] = 4, + [30868] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2118), 1, + STATE(1878), 1, sym_comment, - ACTIONS(2241), 16, + ACTIONS(2133), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -259605,7 +236090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2243), 44, + ACTIONS(2135), 44, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -259650,18 +236135,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33652] = 7, + [30939] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - STATE(2119), 1, + STATE(1879), 1, sym_comment, - STATE(2244), 1, + STATE(2018), 1, aux_sym_shebang_repeat1, - STATE(7562), 1, + STATE(7338), 1, sym__expr_parenthesized_immediate, - ACTIONS(5190), 9, + ACTIONS(5064), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -259671,7 +236156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 48, + ACTIONS(5066), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259720,18 +236205,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33729] = 7, + [31016] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5099), 1, - anon_sym_DOT, - STATE(2005), 1, - aux_sym_cell_path_repeat1, - STATE(2120), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(1880), 1, sym_comment, - STATE(2197), 1, - sym_path, - ACTIONS(951), 9, + STATE(2030), 1, + aux_sym_shebang_repeat1, + STATE(7338), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5064), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -259741,7 +236226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(953), 48, + ACTIONS(5066), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259790,20 +236275,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33806] = 8, + [31093] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5121), 1, - anon_sym_DOT, - STATE(1999), 1, - aux_sym_cell_path_repeat1, - STATE(2121), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(1881), 1, sym_comment, - STATE(2297), 1, - sym_path, - STATE(2567), 1, - sym_cell_path, - ACTIONS(1820), 8, + STATE(2147), 1, + aux_sym_shebang_repeat1, + STATE(7338), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5064), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259812,9 +236296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1822), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5066), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259825,34 +236307,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259861,18 +236345,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33885] = 7, + [31170] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - STATE(2122), 1, + STATE(1882), 1, sym_comment, - STATE(2271), 1, + STATE(2083), 1, aux_sym_shebang_repeat1, - STATE(7562), 1, + STATE(7338), 1, sym__expr_parenthesized_immediate, - ACTIONS(5178), 9, + ACTIONS(5054), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -259882,7 +236366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 48, + ACTIONS(5056), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259931,20 +236415,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33962] = 8, + [31247] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5121), 1, - anon_sym_DOT, - STATE(1999), 1, - aux_sym_cell_path_repeat1, - STATE(2123), 1, + STATE(1883), 1, sym_comment, - STATE(2297), 1, - sym_path, - STATE(2549), 1, - sym_cell_path, - ACTIONS(1871), 8, + ACTIONS(1064), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259953,8 +236436,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1873), 48, + aux_sym_unquoted_token1, + ACTIONS(1066), 44, ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259966,34 +236456,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260002,12 +236482,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34041] = 4, + [31318] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(2124), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(1884), 1, sym_comment, - ACTIONS(1796), 9, + STATE(2077), 1, + aux_sym_shebang_repeat1, + STATE(7338), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5064), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -260017,7 +236503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1798), 50, + ACTIONS(5066), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260029,9 +236515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -260068,78 +236552,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34111] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2125), 1, - sym_comment, - ACTIONS(5204), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(5202), 53, - anon_sym_EQ, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [34181] = 4, + [31395] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(2126), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(1885), 1, sym_comment, - ACTIONS(1525), 9, + STATE(2020), 1, + aux_sym_shebang_repeat1, + STATE(7338), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5064), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -260149,7 +236573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1537), 50, + ACTIONS(5066), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260161,9 +236585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -260200,12 +236622,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34251] = 4, + [31472] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(2127), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(1886), 1, sym_comment, - ACTIONS(2383), 9, + STATE(2140), 1, + aux_sym_shebang_repeat1, + STATE(7338), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5064), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -260215,7 +236643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2385), 50, + ACTIONS(5066), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260227,9 +236655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -260266,12 +236692,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34321] = 4, + [31549] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(2128), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(1887), 1, sym_comment, - ACTIONS(2344), 9, + STATE(2069), 1, + aux_sym_shebang_repeat1, + STATE(7338), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5064), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -260281,7 +236713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2346), 50, + ACTIONS(5066), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260293,9 +236725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -260332,12 +236762,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34391] = 4, + [31626] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(2129), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(1888), 1, sym_comment, - ACTIONS(2326), 9, + STATE(2149), 1, + aux_sym_shebang_repeat1, + STATE(7338), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5064), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -260347,7 +236783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2328), 50, + ACTIONS(5066), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260359,9 +236795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -260398,78 +236832,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34461] = 4, + [31703] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2130), 1, + STATE(1889), 1, sym_comment, - ACTIONS(976), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(978), 53, - anon_sym_EQ, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + ACTIONS(4888), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(4886), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [34531] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [31774] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(2131), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(1890), 1, sym_comment, - ACTIONS(1879), 9, + STATE(2005), 1, + aux_sym_shebang_repeat1, + STATE(7338), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5064), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -260479,7 +236920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1881), 50, + ACTIONS(5066), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260491,9 +236932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -260530,78 +236969,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34601] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2132), 1, - sym_comment, - ACTIONS(5208), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(5206), 53, - anon_sym_EQ, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [34671] = 4, + [31851] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(2133), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(1891), 1, sym_comment, - ACTIONS(1741), 9, + STATE(2039), 1, + aux_sym_shebang_repeat1, + STATE(7338), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5064), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -260611,7 +236990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1745), 50, + ACTIONS(5066), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260623,9 +237002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -260662,78 +237039,363 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34741] = 4, + [31928] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2134), 1, + STATE(1892), 1, sym_comment, - ACTIONS(5212), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(5210), 53, - anon_sym_EQ, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + ACTIONS(4926), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(4924), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [31999] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5068), 1, + anon_sym_DOT, + STATE(2126), 1, + sym_path, + STATE(1893), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(1021), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1023), 49, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [32074] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5032), 1, + anon_sym_DOT, + STATE(1894), 1, + sym_comment, + STATE(1926), 1, + aux_sym_cell_path_repeat1, + STATE(2126), 1, + sym_path, + STATE(2368), 1, + sym_cell_path, + ACTIONS(1829), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1833), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [32153] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1085), 1, + anon_sym_DOT_DOT2, + ACTIONS(1089), 1, + aux_sym_record_entry_token1, + STATE(1895), 1, + sym_comment, + ACTIONS(1087), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(4818), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4816), 19, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RBRACE, - sym_wild_card, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(4820), 28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [32232] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1896), 1, + sym_comment, + ACTIONS(4964), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(4962), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [34811] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [32303] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(2135), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(1897), 1, sym_comment, - ACTIONS(2332), 9, + STATE(2116), 1, + aux_sym_shebang_repeat1, + STATE(7338), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5054), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -260743,7 +237405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2334), 50, + ACTIONS(5056), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260755,9 +237417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -260794,12 +237454,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34881] = 4, + [32380] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2136), 1, + STATE(1898), 1, sym_comment, - ACTIONS(2363), 9, + ACTIONS(4926), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -260809,7 +237469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2365), 50, + ACTIONS(4924), 51, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260824,6 +237484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, aux_sym_ctrl_match_token1, anon_sym_EQ_GT, + anon_sym_LPAREN2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -260860,13 +237521,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34951] = 4, + [32451] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2137), 1, + STATE(1899), 1, sym_comment, - ACTIONS(2389), 9, - sym__newline, + ACTIONS(4968), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260875,7 +237542,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2391), 50, + aux_sym_unquoted_token1, + ACTIONS(4966), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260886,38 +237562,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_if, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260926,13 +237588,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35021] = 4, + [32522] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2138), 1, + STATE(1900), 1, sym_comment, - ACTIONS(2367), 9, - sym__newline, + ACTIONS(5008), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260941,7 +237609,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2369), 50, + aux_sym_unquoted_token1, + ACTIONS(5006), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260952,38 +237629,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_if, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260992,16 +237655,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35091] = 6, + [32593] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - STATE(2139), 1, + STATE(1901), 1, sym_comment, - STATE(7887), 1, + STATE(2145), 1, + aux_sym_shebang_repeat1, + STATE(7338), 1, sym__expr_parenthesized_immediate, - ACTIONS(3261), 9, + ACTIONS(5050), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -261011,7 +237676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3259), 48, + ACTIONS(5052), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -261060,81 +237725,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35165] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5214), 1, - anon_sym_QMARK2, - STATE(2140), 1, - sym_comment, - ACTIONS(980), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(982), 50, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [35237] = 5, + [32670] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5216), 1, - anon_sym_QMARK2, - STATE(2141), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(1902), 1, sym_comment, - ACTIONS(970), 9, + STATE(2114), 1, + aux_sym_shebang_repeat1, + STATE(7338), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5050), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -261144,7 +237746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(972), 49, + ACTIONS(5052), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -261185,7 +237787,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261194,83 +237795,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35309] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2142), 1, - sym_comment, - ACTIONS(5220), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(5218), 53, - anon_sym_EQ, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [35379] = 6, + [32747] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1015), 1, - anon_sym_DOT_DOT2, - STATE(2143), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(1903), 1, sym_comment, - ACTIONS(1017), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1006), 9, + STATE(2071), 1, + aux_sym_shebang_repeat1, + STATE(7338), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5050), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -261280,7 +237816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1008), 47, + ACTIONS(5052), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -261292,6 +237828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -261328,12 +237865,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35453] = 4, + [32824] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2144), 1, + STATE(1904), 1, sym_comment, - ACTIONS(966), 8, + ACTIONS(1625), 9, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261342,8 +237880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(968), 51, - ts_builtin_sym_end, + ACTIONS(1629), 51, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261355,8 +237892,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_ctrl_match_token1, - anon_sym_QMARK2, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -261385,7 +237922,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261394,12 +237932,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35523] = 4, + [32895] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(2145), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(1905), 1, sym_comment, - ACTIONS(1855), 9, + STATE(2084), 1, + aux_sym_shebang_repeat1, + STATE(7338), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5050), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -261409,7 +237953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1857), 50, + ACTIONS(5052), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -261421,9 +237965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -261460,12 +238002,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35593] = 4, + [32972] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2146), 1, + STATE(1906), 1, sym_comment, - ACTIONS(962), 8, + ACTIONS(2137), 9, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261474,8 +238017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(964), 51, - ts_builtin_sym_end, + ACTIONS(2139), 51, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261487,8 +238029,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_ctrl_match_token1, - anon_sym_QMARK2, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -261517,73 +238059,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [35663] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2147), 1, - sym_comment, - ACTIONS(2348), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2350), 50, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261592,146 +238069,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35733] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2148), 1, - sym_comment, - ACTIONS(962), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(964), 53, - anon_sym_EQ, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [35803] = 6, + [33043] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - STATE(2149), 1, + STATE(1907), 1, sym_comment, - STATE(7887), 1, + STATE(2101), 1, + aux_sym_shebang_repeat1, + STATE(7338), 1, sym__expr_parenthesized_immediate, - ACTIONS(3265), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(3263), 48, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [35877] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2150), 1, - sym_comment, - ACTIONS(1899), 9, + ACTIONS(5050), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -261741,7 +238090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1901), 50, + ACTIONS(5052), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -261753,9 +238102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -261792,14 +238139,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35947] = 5, + [33120] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5222), 1, - anon_sym_QMARK2, - STATE(2151), 1, + ACTIONS(4944), 1, + anon_sym_DOT, + STATE(1530), 1, + sym_path, + STATE(1908), 1, sym_comment, - ACTIONS(970), 8, + STATE(1909), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1017), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261808,8 +238159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(972), 50, - ts_builtin_sym_end, + ACTIONS(1019), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261821,7 +238171,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_ctrl_match_token1, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -261850,7 +238201,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261859,12 +238209,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36019] = 4, - ACTIONS(3), 1, + [33197] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2152), 1, + ACTIONS(5071), 1, + anon_sym_DOT, + STATE(1530), 1, + sym_path, + STATE(1909), 2, sym_comment, - ACTIONS(2131), 17, + aux_sym_cell_path_repeat1, + ACTIONS(1021), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261873,16 +238228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token4, - ACTIONS(2133), 42, + ACTIONS(1023), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261896,7 +238242,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -261925,66 +238270,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [36089] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(2153), 1, - sym_comment, - STATE(7887), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3211), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(3209), 48, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261993,19 +238278,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36163] = 8, + [33272] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1015), 1, - anon_sym_DOT_DOT2, - ACTIONS(5224), 1, - sym__newline, - STATE(2154), 1, + STATE(1910), 1, sym_comment, - ACTIONS(1017), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5231), 8, + ACTIONS(1040), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262014,7 +238299,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5227), 19, + aux_sym_unquoted_token1, + ACTIONS(1042), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -262025,168 +238319,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(5229), 28, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [36241] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2155), 1, - sym_comment, - ACTIONS(5235), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(5233), 53, - anon_sym_EQ, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [36311] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2156), 1, - sym_comment, - ACTIONS(1835), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1837), 50, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -262195,15 +238345,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36381] = 5, + [33343] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5237), 1, - anon_sym_QMARK2, - STATE(2157), 1, + STATE(1911), 1, sym_comment, - ACTIONS(980), 9, - sym__newline, + ACTIONS(2364), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262212,145 +238366,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(982), 49, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [36453] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2158), 1, - sym_comment, - ACTIONS(966), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(968), 53, - anon_sym_EQ, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + aux_sym_unquoted_token1, + ACTIONS(2366), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [36523] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4827), 1, - anon_sym_DOT_DOT2, - STATE(2159), 1, - sym_comment, - ACTIONS(4829), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3175), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(3173), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -262359,124 +238385,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_err_PLUSout_GT_PIPE, anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(3177), 28, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [36599] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5239), 1, - anon_sym_DOT, - STATE(2160), 1, - sym_comment, - STATE(2275), 1, - aux_sym_cell_path_repeat1, - STATE(2568), 1, - sym_path, - STATE(2653), 1, - sym_cell_path, - ACTIONS(945), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(947), 49, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [36677] = 6, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [33414] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2099), 1, - anon_sym_LPAREN2, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - STATE(2161), 1, + STATE(1912), 1, sym_comment, - ACTIONS(2097), 16, + ACTIONS(2364), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262485,15 +238433,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(2101), 41, + aux_sym_unquoted_token1, + ACTIONS(2366), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262505,46 +238453,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [36751] = 6, - ACTIONS(3), 1, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [33485] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2099), 1, - anon_sym_LPAREN2, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - STATE(2162), 1, + STATE(1913), 1, sym_comment, - ACTIONS(2105), 16, + ACTIONS(2477), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262553,15 +238500,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(2107), 41, + aux_sym_unquoted_token1, + ACTIONS(2479), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262573,144 +238520,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [36825] = 39, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(469), 1, anon_sym_LBRACK, - ACTIONS(471), 1, anon_sym_LPAREN, - ACTIONS(475), 1, - anon_sym_DOLLAR, - ACTIONS(477), 1, - anon_sym_DASH, - ACTIONS(487), 1, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - ACTIONS(493), 1, - aux_sym_expr_unary_token1, - ACTIONS(495), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(497), 1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, - ACTIONS(499), 1, aux_sym__val_number_decimal_token3, - ACTIONS(501), 1, aux_sym__val_number_decimal_token4, - ACTIONS(505), 1, - anon_sym_0b, - ACTIONS(509), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, sym_val_date, - ACTIONS(511), 1, anon_sym_DQUOTE, - ACTIONS(515), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(517), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5243), 1, - anon_sym_null, - ACTIONS(5245), 1, - sym__newline, - ACTIONS(5247), 1, - anon_sym_DOT_DOT, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(1851), 1, - sym__str_double_quotes, - STATE(2137), 1, - sym__val_number, - STATE(2163), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [33556] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1914), 1, sym_comment, - STATE(2384), 1, - sym__expr_unary_minus, - STATE(2465), 1, - sym__inter_single_quotes, - STATE(2466), 1, - sym__inter_double_quotes, - STATE(3699), 1, - sym__val_number_decimal, - STATE(3740), 1, - sym_val_variable, - STATE(3746), 1, - sym_expr_parenthesized, - STATE(4007), 1, - sym__expr_binary_expression_parenthesized, - STATE(4041), 1, - sym_val_range, - STATE(6640), 1, - sym__expression_parenthesized, - ACTIONS(507), 2, + ACTIONS(1044), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(513), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5241), 2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1046), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, - ACTIONS(5249), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2425), 3, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym__value, - ACTIONS(503), 6, + anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(2431), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [36965] = 4, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [33627] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2164), 1, + STATE(1915), 1, sym_comment, - ACTIONS(2336), 9, - sym__newline, + ACTIONS(2372), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262719,7 +238634,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2338), 50, + aux_sym_unquoted_token1, + ACTIONS(2374), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -262730,38 +238654,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_if, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -262770,16 +238680,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37035] = 6, - ACTIONS(3), 1, + [33698] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2091), 1, - anon_sym_LPAREN2, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(2165), 1, + STATE(1916), 1, sym_comment, - ACTIONS(2089), 16, + ACTIONS(2376), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262788,15 +238701,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(2093), 41, + aux_sym_unquoted_token1, + ACTIONS(2378), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262808,42 +238721,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [37109] = 4, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [33769] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(2166), 1, + ACTIONS(4946), 1, + anon_sym_DOT, + STATE(1917), 1, sym_comment, - ACTIONS(2352), 9, + STATE(1923), 1, + aux_sym_cell_path_repeat1, + STATE(2141), 1, + sym_path, + ACTIONS(1017), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -262853,7 +238768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2354), 50, + ACTIONS(1019), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -262865,9 +238780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -262904,13 +238817,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37179] = 4, + [33846] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2167), 1, + STATE(1918), 1, sym_comment, - ACTIONS(2371), 9, - sym__newline, + ACTIONS(2481), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262919,7 +238838,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2373), 50, + aux_sym_unquoted_token1, + ACTIONS(2483), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -262930,38 +238858,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_if, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -262970,12 +238884,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37249] = 4, + [33917] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2168), 1, + STATE(1919), 1, sym_comment, - ACTIONS(976), 8, + ACTIONS(2485), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262984,8 +238905,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(978), 51, + aux_sym_unquoted_token1, + ACTIONS(2487), 44, ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262997,37 +238925,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_QMARK2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263036,13 +238951,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37319] = 4, + [33988] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2169), 1, + STATE(1920), 1, sym_comment, - ACTIONS(2379), 9, - sym__newline, + ACTIONS(1048), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263051,7 +238972,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2381), 50, + aux_sym_unquoted_token1, + ACTIONS(1050), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263062,38 +238992,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_if, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263102,13 +239018,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37389] = 4, + [34059] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2170), 1, + STATE(1921), 1, sym_comment, - ACTIONS(2340), 9, - sym__newline, + ACTIONS(2384), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263117,7 +239039,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2342), 50, + aux_sym_unquoted_token1, + ACTIONS(2386), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263128,38 +239059,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_if, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263168,13 +239085,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37459] = 4, + [34130] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2171), 1, + STATE(1922), 1, sym_comment, - ACTIONS(1839), 9, - sym__newline, + ACTIONS(2388), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263183,7 +239106,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1841), 50, + aux_sym_unquoted_token1, + ACTIONS(2390), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263194,38 +239126,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_if, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263234,12 +239152,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37529] = 4, + [34201] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2172), 1, + ACTIONS(5074), 1, + anon_sym_DOT, + STATE(2141), 1, + sym_path, + STATE(1923), 2, sym_comment, - ACTIONS(1747), 9, + aux_sym_cell_path_repeat1, + ACTIONS(1021), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -263249,7 +239172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1749), 50, + ACTIONS(1023), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263261,9 +239184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -263300,13 +239221,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37599] = 4, + [34276] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2173), 1, + STATE(1924), 1, sym_comment, - ACTIONS(2359), 9, - sym__newline, + ACTIONS(2489), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263315,7 +239242,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2361), 50, + aux_sym_unquoted_token1, + ACTIONS(2491), 44, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263326,38 +239262,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_if, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263366,118 +239288,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37669] = 39, + [34347] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(469), 1, - anon_sym_LBRACK, - ACTIONS(471), 1, - anon_sym_LPAREN, - ACTIONS(475), 1, + STATE(1925), 1, + sym_comment, + ACTIONS(2493), 16, anon_sym_DOLLAR, - ACTIONS(477), 1, anon_sym_DASH, - ACTIONS(487), 1, - aux_sym_ctrl_match_token1, - ACTIONS(493), 1, - aux_sym_expr_unary_token1, - ACTIONS(495), 1, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - ACTIONS(497), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(499), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(501), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(505), 1, anon_sym_0b, - ACTIONS(509), 1, - sym_val_date, - ACTIONS(511), 1, - anon_sym_DQUOTE, - ACTIONS(515), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(517), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5243), 1, - anon_sym_null, - ACTIONS(5245), 1, - sym__newline, - ACTIONS(5247), 1, - anon_sym_DOT_DOT, - STATE(1851), 1, - sym__str_double_quotes, - STATE(2137), 1, - sym__val_number, - STATE(2163), 1, - aux_sym_shebang_repeat1, - STATE(2174), 1, - sym_comment, - STATE(2384), 1, - sym__expr_unary_minus, - STATE(2465), 1, - sym__inter_single_quotes, - STATE(2466), 1, - sym__inter_double_quotes, - STATE(3699), 1, - sym__val_number_decimal, - STATE(3740), 1, - sym_val_variable, - STATE(3746), 1, - sym_expr_parenthesized, - STATE(4007), 1, - sym__expr_binary_expression_parenthesized, - STATE(4041), 1, - sym_val_range, - STATE(6783), 1, - sym__expression_parenthesized, - ACTIONS(507), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(513), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5241), 2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2495), 44, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, - ACTIONS(5249), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2425), 3, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym__value, - ACTIONS(503), 6, + anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(2431), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [37809] = 6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [34418] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4827), 1, - anon_sym_DOT_DOT2, - STATE(2175), 1, + ACTIONS(5032), 1, + anon_sym_DOT, + STATE(1893), 1, + aux_sym_cell_path_repeat1, + STATE(1926), 1, sym_comment, - ACTIONS(4829), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1006), 8, + STATE(2126), 1, + sym_path, + ACTIONS(1017), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263486,7 +239375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1008), 48, + ACTIONS(1019), 49, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -263499,6 +239388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -263535,27 +239425,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37883] = 8, + [34495] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(1927), 1, + sym_comment, + STATE(2053), 1, + aux_sym_shebang_repeat1, + STATE(7338), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5060), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5062), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [34572] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5239), 1, - anon_sym_DOT, - STATE(2176), 1, + STATE(1928), 1, sym_comment, - STATE(2275), 1, - aux_sym_cell_path_repeat1, - STATE(2568), 1, - sym_path, - STATE(2649), 1, - sym_cell_path, - ACTIONS(1599), 6, + ACTIONS(5079), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1603), 49, + ACTIONS(5077), 53, + anon_sym_EQ, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -263595,7 +239548,10 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_GT, + aux_sym_ctrl_match_token1, anon_sym_RBRACE, sym_wild_card, aux_sym__val_number_decimal_token1, @@ -263605,84 +239561,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [37961] = 6, + [34642] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(2177), 1, + STATE(1929), 1, sym_comment, - STATE(7887), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3207), 9, + ACTIONS(5083), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(5081), 53, + anon_sym_EQ, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(3205), 48, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_GT, aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [38035] = 6, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [34712] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1930), 1, + sym_comment, + ACTIONS(5087), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(5085), 53, + anon_sym_EQ, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [34782] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2081), 1, + ACTIONS(2245), 1, anon_sym_LPAREN2, - ACTIONS(2083), 1, + ACTIONS(2249), 1, aux_sym_unquoted_token4, - STATE(2178), 1, + STATE(1931), 1, sym_comment, - ACTIONS(1006), 16, + ACTIONS(2243), 16, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263699,7 +239719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(1008), 41, + ACTIONS(2247), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263741,13 +239761,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [38109] = 4, - ACTIONS(247), 1, + [34856] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2179), 1, + ACTIONS(2245), 1, + anon_sym_LPAREN2, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + STATE(1932), 1, sym_comment, - ACTIONS(1982), 9, - anon_sym_DOT_DOT2, + ACTIONS(2251), 16, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263756,8 +239779,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1984), 50, - ts_builtin_sym_end, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(2253), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263769,6 +239799,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -263797,24 +239829,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [38179] = 5, + [34930] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4817), 1, - aux_sym_unquoted_token2, - STATE(2180), 1, + STATE(1933), 1, sym_comment, - ACTIONS(1525), 8, + ACTIONS(1044), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263823,7 +239843,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1537), 49, + ACTIONS(1046), 51, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263835,8 +239856,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + aux_sym_ctrl_match_token1, + anon_sym_QMARK2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -263865,6 +239886,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263873,14 +239895,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38250] = 5, + [35000] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2181), 1, + ACTIONS(1085), 1, + anon_sym_DOT_DOT2, + STATE(1934), 1, sym_comment, - STATE(2223), 1, - aux_sym_shebang_repeat1, - ACTIONS(5190), 9, + ACTIONS(1087), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1076), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -263890,7 +239915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 48, + ACTIONS(1078), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263902,7 +239927,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -263939,14 +239963,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38321] = 5, + [35074] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2182), 1, + STATE(1935), 1, sym_comment, - STATE(2227), 1, - aux_sym_shebang_repeat1, - ACTIONS(5190), 9, + ACTIONS(1575), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -263956,7 +239978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 48, + ACTIONS(1587), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263968,7 +239990,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_if, aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -264005,14 +240029,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38392] = 5, + [35144] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1936), 1, + sym_comment, + ACTIONS(2259), 17, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym_unquoted_token4, + ACTIONS(2261), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [35214] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2183), 1, + STATE(1937), 1, sym_comment, - STATE(2230), 1, - aux_sym_shebang_repeat1, - ACTIONS(5190), 9, + ACTIONS(2436), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -264022,7 +240110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 48, + ACTIONS(2438), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264034,7 +240122,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_if, aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -264071,15 +240161,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38463] = 5, + [35284] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2184), 1, + ACTIONS(4624), 1, + anon_sym_DOT_DOT2, + STATE(1938), 1, sym_comment, - STATE(2232), 1, - aux_sym_shebang_repeat1, - ACTIONS(5190), 9, - sym__newline, + ACTIONS(4626), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1076), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264088,7 +240180,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 48, + ACTIONS(1078), 48, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264099,36 +240193,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264137,14 +240229,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38534] = 5, + [35358] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2185), 1, + STATE(1939), 1, sym_comment, - STATE(2234), 1, - aux_sym_shebang_repeat1, - ACTIONS(5190), 9, + ACTIONS(2368), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -264154,7 +240244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 48, + ACTIONS(2370), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264166,7 +240256,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_if, aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -264203,14 +240295,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38605] = 5, + [35428] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2186), 1, + ACTIONS(5089), 1, + anon_sym_DOT, + STATE(1940), 1, sym_comment, - STATE(2237), 1, - aux_sym_shebang_repeat1, - ACTIONS(5190), 9, + STATE(2068), 1, + aux_sym_cell_path_repeat1, + STATE(2425), 1, + sym_path, + STATE(2460), 1, + sym_cell_path, + ACTIONS(1011), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1013), 49, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [35506] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(1941), 1, + sym_comment, + STATE(7570), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4844), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -264220,7 +240384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 48, + ACTIONS(4842), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264269,14 +240433,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38676] = 5, + [35580] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2187), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(1942), 1, sym_comment, - STATE(2239), 1, - aux_sym_shebang_repeat1, - ACTIONS(5190), 9, + STATE(7570), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4761), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -264286,7 +240452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 48, + ACTIONS(4759), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264335,14 +240501,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38747] = 5, + [35654] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2188), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(1943), 1, sym_comment, - STATE(2241), 1, - aux_sym_shebang_repeat1, - ACTIONS(5190), 9, + STATE(7570), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4783), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -264352,7 +240520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 48, + ACTIONS(4781), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264401,14 +240569,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38818] = 5, + [35728] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2189), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(1944), 1, sym_comment, - STATE(2244), 1, - aux_sym_shebang_repeat1, - ACTIONS(5190), 9, + STATE(7570), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4771), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -264418,7 +240588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 48, + ACTIONS(4769), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264467,213 +240637,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38889] = 38, - ACTIONS(159), 1, - anon_sym_LBRACK, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(391), 1, - anon_sym_LPAREN, - ACTIONS(393), 1, - anon_sym_DOLLAR, - ACTIONS(397), 1, - anon_sym_DASH, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(3245), 1, - anon_sym_null, - ACTIONS(3425), 1, - aux_sym_expr_unary_token1, - ACTIONS(3427), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3429), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3431), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3433), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5251), 1, - aux_sym_ctrl_match_token1, - STATE(1540), 1, - sym_expr_parenthesized, - STATE(1541), 1, - sym_val_variable, - STATE(1686), 1, - sym__inter_single_quotes, - STATE(1688), 1, - sym__inter_double_quotes, - STATE(1709), 1, - sym__expr_unary_minus, - STATE(1969), 1, - sym__str_double_quotes, - STATE(2190), 1, - sym_comment, - STATE(2278), 1, - sym__val_number, - STATE(2941), 1, - sym__val_number_decimal, - STATE(3727), 1, - sym_val_range, - STATE(4055), 1, - sym__expr_binary_expression, - STATE(7195), 1, - sym_block, - STATE(7213), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(443), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3243), 2, - anon_sym_true, - anon_sym_false, - STATE(1690), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(439), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1734), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [39026] = 38, + [35802] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3443), 1, - anon_sym_LBRACK, - ACTIONS(3449), 1, - anon_sym_DASH, - ACTIONS(3455), 1, - aux_sym_expr_unary_token1, - ACTIONS(3469), 1, - anon_sym_0b, - ACTIONS(3475), 1, - anon_sym_DQUOTE, - ACTIONS(3479), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3481), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5255), 1, - anon_sym_null, - ACTIONS(5257), 1, - anon_sym_LPAREN, - ACTIONS(5259), 1, - anon_sym_DOLLAR, - ACTIONS(5261), 1, - aux_sym_ctrl_match_token1, - ACTIONS(5263), 1, - anon_sym_DOT_DOT, - ACTIONS(5267), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5269), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(5271), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5273), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5275), 1, - sym_val_date, - STATE(762), 1, - sym__val_number_decimal, - STATE(828), 1, - sym_expr_parenthesized, - STATE(941), 1, - sym_val_variable, - STATE(1126), 1, - sym__str_double_quotes, - STATE(1140), 1, - sym__val_number, - STATE(1152), 1, - sym__inter_single_quotes, - STATE(1153), 1, - sym__inter_double_quotes, - STATE(1154), 1, - sym__expr_unary_minus, - STATE(2191), 1, + STATE(1945), 1, sym_comment, - STATE(3107), 1, - sym_val_range, - STATE(3110), 1, - sym_block, - STATE(3112), 1, - sym__expression, - STATE(4056), 1, - sym__expr_binary_expression, - ACTIONS(3471), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3477), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5253), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5265), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1159), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3467), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1145), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [39163] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5277), 1, + ACTIONS(2380), 9, sym__newline, - STATE(2192), 2, - sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1755), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264682,7 +240652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1757), 48, + ACTIONS(2382), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264694,7 +240664,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_if, aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -264731,17 +240703,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39234] = 6, - ACTIONS(3), 1, + [35872] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2091), 1, - anon_sym_LPAREN2, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(2193), 1, + STATE(1946), 1, sym_comment, - ACTIONS(2089), 17, - sym__newline, + ACTIONS(1040), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264750,15 +240717,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(2093), 39, + ACTIONS(1042), 51, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264770,45 +240730,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [39307] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + anon_sym_QMARK2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [35942] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2081), 1, - anon_sym_LPAREN2, - ACTIONS(2083), 1, - aux_sym_unquoted_token4, - STATE(2194), 1, + STATE(1947), 1, sym_comment, - ACTIONS(1006), 17, - sym__newline, + ACTIONS(1044), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264817,15 +240783,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(1008), 39, + ACTIONS(1046), 51, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264837,45 +240796,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [39380] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + anon_sym_QMARK2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [36012] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2099), 1, - anon_sym_LPAREN2, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - STATE(2195), 1, + STATE(1948), 1, sym_comment, - ACTIONS(2097), 17, - sym__newline, + ACTIONS(1048), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264884,15 +240849,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(2101), 39, + ACTIONS(1050), 51, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264904,44 +240862,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [39453] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + anon_sym_QMARK2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [36082] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2099), 1, - anon_sym_LPAREN2, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - STATE(2196), 1, + STATE(1949), 1, + sym_comment, + ACTIONS(1048), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1050), 53, + anon_sym_EQ, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [36152] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1950), 1, sym_comment, - ACTIONS(2105), 17, + ACTIONS(2392), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -264951,15 +240982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(2107), 39, + ACTIONS(2394), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264971,6 +240994,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -264999,63 +241025,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [39526] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2197), 1, - sym_comment, - ACTIONS(994), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(996), 49, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -265064,12 +241033,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39595] = 4, + [36222] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2198), 1, + STATE(1951), 1, sym_comment, - ACTIONS(986), 9, + ACTIONS(2396), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -265079,7 +241048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(988), 49, + ACTIONS(2398), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265091,7 +241060,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_if, aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -265120,7 +241091,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -265129,12 +241099,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39664] = 4, + [36292] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2199), 1, + STATE(1952), 1, sym_comment, - ACTIONS(990), 9, + ACTIONS(1843), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -265144,7 +241114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(992), 49, + ACTIONS(1845), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265156,7 +241126,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_if, aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -265185,7 +241157,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -265194,15 +241165,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39733] = 5, + [36362] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2200), 1, + STATE(1953), 1, sym_comment, - ACTIONS(5280), 9, - sym__newline, + ACTIONS(1625), 9, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265211,7 +241180,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5282), 48, + ACTIONS(1629), 50, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265222,36 +241193,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -265260,14 +241231,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39804] = 5, + [36432] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2201), 1, + STATE(1954), 1, sym_comment, - ACTIONS(5284), 9, + ACTIONS(2400), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -265277,7 +241246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5286), 48, + ACTIONS(2402), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265289,7 +241258,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_if, aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -265326,14 +241297,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39875] = 5, + [36502] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2202), 1, + STATE(1955), 1, sym_comment, - ACTIONS(5284), 9, + ACTIONS(2404), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -265343,7 +241312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5286), 48, + ACTIONS(2406), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265355,7 +241324,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_if, aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -265392,12 +241363,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39946] = 4, + [36572] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2203), 1, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(1956), 1, sym_comment, - ACTIONS(2131), 17, + ACTIONS(2293), 16, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265414,9 +241389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token4, - ACTIONS(2133), 41, - ts_builtin_sym_end, + ACTIONS(2297), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265428,7 +241401,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN2, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -265457,14 +241431,113 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [40015] = 5, + [36646] = 39, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, + ACTIONS(463), 1, + anon_sym_LBRACK, + ACTIONS(465), 1, + anon_sym_LPAREN, + ACTIONS(469), 1, + anon_sym_DOLLAR, + ACTIONS(471), 1, + anon_sym_DASH, + ACTIONS(481), 1, + aux_sym_ctrl_match_token1, + ACTIONS(487), 1, + aux_sym_expr_unary_token1, + ACTIONS(491), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(493), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(495), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(497), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(501), 1, + anon_sym_0b, + ACTIONS(505), 1, + sym_val_date, + ACTIONS(507), 1, + anon_sym_DQUOTE, + ACTIONS(511), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(513), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5093), 1, + anon_sym_null, + ACTIONS(5095), 1, + sym__newline, + ACTIONS(5097), 1, + anon_sym_DOT_DOT, + STATE(1707), 1, + sym__str_double_quotes, + STATE(1937), 1, + sym__val_number, + STATE(1957), 1, + sym_comment, + STATE(1981), 1, aux_sym_shebang_repeat1, - STATE(2204), 1, + STATE(2218), 1, + sym__inter_single_quotes, + STATE(2219), 1, + sym__inter_double_quotes, + STATE(2236), 1, + sym__expr_unary_minus, + STATE(3422), 1, + sym__val_number_decimal, + STATE(3465), 1, + sym_val_variable, + STATE(3481), 1, + sym_expr_parenthesized, + STATE(3728), 1, + sym__expr_binary_expression_parenthesized, + STATE(3744), 1, + sym_val_range, + STATE(6271), 1, + sym__expression_parenthesized, + ACTIONS(503), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(509), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5091), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5099), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2310), 3, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym__value, + ACTIONS(499), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(2168), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [36786] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1958), 1, sym_comment, - ACTIONS(5284), 9, + ACTIONS(1867), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -265474,7 +241547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5286), 48, + ACTIONS(1869), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265486,7 +241559,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_if, aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -265523,14 +241598,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40086] = 5, + [36856] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2205), 1, + STATE(1959), 1, sym_comment, - ACTIONS(5284), 9, + ACTIONS(1871), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -265540,7 +241613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5286), 48, + ACTIONS(1873), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265552,7 +241625,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_if, aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -265589,15 +241664,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40157] = 5, + [36926] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2206), 1, + ACTIONS(5101), 1, + anon_sym_QMARK2, + STATE(1960), 1, sym_comment, - ACTIONS(5284), 9, - sym__newline, + ACTIONS(1034), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265606,7 +241680,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5286), 48, + ACTIONS(1036), 50, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265617,36 +241693,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -265655,15 +241731,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40228] = 5, + [36998] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2207), 1, - sym_comment, - ACTIONS(5284), 9, + ACTIONS(1085), 1, + anon_sym_DOT_DOT2, + ACTIONS(5103), 1, sym__newline, + STATE(1961), 1, + sym_comment, + ACTIONS(1087), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5110), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265672,7 +241752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5286), 48, + ACTIONS(5106), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265684,7 +241764,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(5108), 28, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -265713,22 +241801,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [40299] = 5, + [37076] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2208), 1, + STATE(1962), 1, + sym_comment, + ACTIONS(5114), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(5112), 53, + anon_sym_EQ, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [37146] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1963), 1, sym_comment, - ACTIONS(5284), 9, + ACTIONS(2408), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -265738,7 +241882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5286), 48, + ACTIONS(2410), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265750,7 +241894,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_if, aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -265787,14 +241933,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40370] = 5, + [37216] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2209), 1, + STATE(1964), 1, sym_comment, - ACTIONS(5284), 9, + ACTIONS(1890), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -265804,7 +241948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5286), 48, + ACTIONS(1892), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265816,7 +241960,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_if, aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -265853,15 +241999,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40441] = 5, + [37286] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2210), 1, + STATE(1965), 1, sym_comment, - ACTIONS(5284), 9, - sym__newline, + ACTIONS(1048), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265870,7 +242013,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5286), 48, + ACTIONS(1050), 51, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265881,36 +242026,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_QMARK2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -265919,14 +242065,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40512] = 5, + [37356] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2211), 1, + STATE(1966), 1, sym_comment, - ACTIONS(5284), 9, + ACTIONS(2412), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -265936,7 +242080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5286), 48, + ACTIONS(2414), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265948,7 +242092,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_if, aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -265985,15 +242131,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40583] = 5, + [37426] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2212), 1, + ACTIONS(5116), 1, + anon_sym_QMARK2, + STATE(1967), 1, sym_comment, - ACTIONS(5284), 9, - sym__newline, + ACTIONS(1028), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266002,7 +242147,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5286), 48, + ACTIONS(1030), 50, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266013,36 +242160,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -266051,14 +242198,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40654] = 5, + [37498] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2213), 1, + STATE(1968), 1, sym_comment, - ACTIONS(5284), 9, + ACTIONS(2416), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -266068,7 +242213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5286), 48, + ACTIONS(2418), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266080,7 +242225,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_if, aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -266117,14 +242264,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40725] = 5, + [37568] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2214), 1, + STATE(1969), 1, sym_comment, - ACTIONS(5284), 9, + ACTIONS(1894), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -266134,7 +242279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5286), 48, + ACTIONS(1896), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266146,7 +242291,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_if, aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -266183,15 +242330,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40796] = 5, - ACTIONS(247), 1, + [37638] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2215), 1, + ACTIONS(2239), 1, + anon_sym_LPAREN2, + ACTIONS(2241), 1, + aux_sym_unquoted_token4, + STATE(1970), 1, sym_comment, - ACTIONS(5288), 9, - sym__newline, + ACTIONS(1076), 16, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266200,7 +242348,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5290), 48, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(1078), 41, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266212,52 +242369,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [40867] = 5, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [37712] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2216), 1, + ACTIONS(4624), 1, + anon_sym_DOT_DOT2, + STATE(1971), 1, sym_comment, - ACTIONS(5292), 9, - sym__newline, + ACTIONS(4626), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(4818), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266266,7 +242417,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5294), 48, + ACTIONS(4816), 20, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266277,36 +242430,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -266315,14 +242438,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40938] = 5, + ACTIONS(4820), 28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [37788] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2217), 1, + STATE(1972), 1, sym_comment, - STATE(2259), 1, - aux_sym_shebang_repeat1, - ACTIONS(5296), 9, + ACTIONS(1040), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1042), 53, + anon_sym_EQ, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [37858] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1973), 1, + sym_comment, + ACTIONS(1945), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -266332,7 +242548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5298), 48, + ACTIONS(1947), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266344,7 +242560,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_if, aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -266381,14 +242599,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41009] = 5, + [37928] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2218), 1, + STATE(1974), 1, sym_comment, - STATE(2260), 1, - aux_sym_shebang_repeat1, - ACTIONS(5178), 9, + ACTIONS(5120), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(5118), 53, + anon_sym_EQ, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [37998] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1975), 1, + sym_comment, + ACTIONS(2420), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -266398,7 +242680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 48, + ACTIONS(2422), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266410,7 +242692,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_if, aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -266447,14 +242731,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41080] = 5, + [38068] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2219), 1, + STATE(1976), 1, sym_comment, - ACTIONS(5292), 9, + ACTIONS(2424), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -266464,7 +242746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5294), 48, + ACTIONS(2426), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266476,7 +242758,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_if, aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -266513,14 +242797,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41151] = 5, + [38138] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2220), 1, + STATE(1977), 1, sym_comment, - STATE(2261), 1, - aux_sym_shebang_repeat1, - ACTIONS(5178), 9, + ACTIONS(1949), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -266530,7 +242812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 48, + ACTIONS(1951), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266542,7 +242824,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_if, aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -266579,14 +242863,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41222] = 5, + [38208] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2221), 1, + STATE(1978), 1, sym_comment, - ACTIONS(5292), 9, + ACTIONS(2428), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -266596,7 +242878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5294), 48, + ACTIONS(2430), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266608,7 +242890,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_if, aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -266645,14 +242929,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41293] = 5, + [38278] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2222), 1, + STATE(1979), 1, sym_comment, - STATE(2262), 1, - aux_sym_shebang_repeat1, - ACTIONS(5178), 9, + ACTIONS(1044), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1046), 53, + anon_sym_EQ, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [38348] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1980), 1, + sym_comment, + ACTIONS(2432), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -266662,7 +243010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 48, + ACTIONS(2434), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266674,7 +243022,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_if, aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -266711,15 +243061,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41364] = 5, + [38418] = 39, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, + ACTIONS(463), 1, + anon_sym_LBRACK, + ACTIONS(465), 1, + anon_sym_LPAREN, + ACTIONS(469), 1, + anon_sym_DOLLAR, + ACTIONS(471), 1, + anon_sym_DASH, + ACTIONS(481), 1, + aux_sym_ctrl_match_token1, + ACTIONS(487), 1, + aux_sym_expr_unary_token1, + ACTIONS(491), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(493), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(495), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(497), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(501), 1, + anon_sym_0b, + ACTIONS(505), 1, + sym_val_date, + ACTIONS(507), 1, + anon_sym_DQUOTE, + ACTIONS(511), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(513), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5093), 1, + anon_sym_null, + ACTIONS(5095), 1, + sym__newline, + ACTIONS(5097), 1, + anon_sym_DOT_DOT, + STATE(690), 1, aux_sym_shebang_repeat1, - STATE(2223), 1, + STATE(1707), 1, + sym__str_double_quotes, + STATE(1937), 1, + sym__val_number, + STATE(1981), 1, sym_comment, - ACTIONS(5292), 9, - sym__newline, + STATE(2218), 1, + sym__inter_single_quotes, + STATE(2219), 1, + sym__inter_double_quotes, + STATE(2236), 1, + sym__expr_unary_minus, + STATE(3422), 1, + sym__val_number_decimal, + STATE(3465), 1, + sym_val_variable, + STATE(3481), 1, + sym_expr_parenthesized, + STATE(3728), 1, + sym__expr_binary_expression_parenthesized, + STATE(3744), 1, + sym_val_range, + STATE(6186), 1, + sym__expression_parenthesized, + ACTIONS(503), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(509), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5091), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5099), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2310), 3, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym__value, + ACTIONS(499), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(2168), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [38558] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1982), 1, + sym_comment, + ACTIONS(2137), 9, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266728,7 +243177,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5294), 48, + ACTIONS(2139), 50, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266739,36 +243190,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -266777,15 +243228,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41435] = 5, + [38628] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2224), 1, + ACTIONS(5089), 1, + anon_sym_DOT, + STATE(1983), 1, sym_comment, - STATE(2263), 1, - aux_sym_shebang_repeat1, - ACTIONS(5178), 9, + STATE(2068), 1, + aux_sym_cell_path_repeat1, + STATE(2425), 1, + sym_path, + STATE(2466), 1, + sym_cell_path, + ACTIONS(1686), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1688), 49, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [38706] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1984), 1, + sym_comment, + ACTIONS(1040), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266794,7 +243312,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 48, + ACTIONS(1042), 51, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266805,36 +243325,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_QMARK2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -266843,14 +243364,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41506] = 5, + [38776] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2225), 1, + ACTIONS(5089), 1, + anon_sym_DOT, + STATE(1985), 1, + sym_comment, + STATE(2068), 1, + aux_sym_cell_path_repeat1, + STATE(2425), 1, + sym_path, + STATE(2432), 1, + sym_cell_path, + ACTIONS(1625), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1629), 49, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [38854] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5122), 1, + anon_sym_QMARK2, + STATE(1986), 1, sym_comment, - ACTIONS(5292), 9, + ACTIONS(1034), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -266860,7 +243451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5294), 48, + ACTIONS(1036), 49, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266901,6 +243492,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -266909,14 +243501,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41577] = 5, + [38926] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2226), 1, - sym_comment, - STATE(2264), 1, - aux_sym_shebang_repeat1, - ACTIONS(5178), 9, + ACTIONS(5124), 1, + anon_sym_QMARK2, + STATE(1987), 1, + sym_comment, + ACTIONS(1028), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -266926,7 +243518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 48, + ACTIONS(1030), 49, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266967,6 +243559,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -266975,14 +243568,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41648] = 5, + [38998] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2227), 1, + STATE(1988), 1, sym_comment, - ACTIONS(5292), 9, + ACTIONS(1859), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -266992,7 +243583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5294), 48, + ACTIONS(1861), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267004,7 +243595,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_if, aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -267041,81 +243634,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41719] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(2228), 1, - sym_comment, - STATE(7586), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3201), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(3199), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [41792] = 5, + [39068] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2229), 1, + STATE(1989), 1, sym_comment, - STATE(2265), 1, + STATE(2147), 1, aux_sym_shebang_repeat1, - ACTIONS(5178), 9, + ACTIONS(5064), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -267125,7 +243651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 48, + ACTIONS(5066), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267174,14 +243700,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41863] = 5, + [39139] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2230), 1, + STATE(1990), 1, sym_comment, - ACTIONS(5292), 9, + STATE(2008), 1, + aux_sym_shebang_repeat1, + ACTIONS(5054), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -267191,7 +243717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5294), 48, + ACTIONS(5056), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267240,14 +243766,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41934] = 5, + [39210] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2231), 1, + STATE(1991), 1, sym_comment, - STATE(2266), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - ACTIONS(5178), 9, + ACTIONS(5126), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -267257,7 +243783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 48, + ACTIONS(5128), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267306,14 +243832,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42005] = 5, + [39281] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2232), 1, + STATE(1992), 1, sym_comment, - ACTIONS(5292), 9, + STATE(2062), 1, + aux_sym_shebang_repeat1, + ACTIONS(5130), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -267323,7 +243849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5294), 48, + ACTIONS(5132), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267372,14 +243898,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42076] = 5, + [39352] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2233), 1, + ACTIONS(5134), 1, + anon_sym_DOT, + STATE(1993), 1, sym_comment, - STATE(2267), 1, + STATE(2251), 1, + aux_sym_cell_path_repeat1, + STATE(2455), 1, + sym_path, + STATE(2541), 1, + sym_cell_path, + ACTIONS(1625), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1629), 48, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [39429] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1994), 1, + sym_comment, + STATE(2016), 1, aux_sym_shebang_repeat1, - ACTIONS(5178), 9, + ACTIONS(5060), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -267389,7 +243984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 48, + ACTIONS(5062), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267438,15 +244033,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42147] = 5, + [39500] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2234), 1, + ACTIONS(5136), 1, + aux_sym_cmd_identifier_token41, + STATE(1995), 1, sym_comment, - ACTIONS(5292), 9, - sym__newline, + ACTIONS(2243), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -267455,7 +244049,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5294), 48, + ACTIONS(2247), 49, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267467,35 +244062,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267504,16 +244099,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42218] = 6, + [39571] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(2235), 1, + ACTIONS(5136), 1, + aux_sym_cmd_identifier_token41, + STATE(1996), 1, sym_comment, - STATE(7586), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3201), 8, + ACTIONS(2251), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -267522,8 +244115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3199), 48, - ts_builtin_sym_end, + ACTIONS(2253), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267535,6 +244127,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -267571,14 +244165,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42291] = 5, + [39642] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2236), 1, + STATE(1997), 1, sym_comment, - STATE(2268), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - ACTIONS(5178), 9, + ACTIONS(5138), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -267588,7 +244182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 48, + ACTIONS(5140), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267637,15 +244231,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42362] = 5, + [39713] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2237), 1, + ACTIONS(4618), 1, + aux_sym_unquoted_token2, + STATE(1998), 1, sym_comment, - ACTIONS(5292), 9, - sym__newline, + ACTIONS(1575), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -267654,7 +244247,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5294), 48, + ACTIONS(1587), 49, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267666,35 +244260,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267703,14 +244297,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42433] = 5, + [39784] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2238), 1, + STATE(1999), 1, sym_comment, - STATE(2269), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - ACTIONS(5178), 9, + ACTIONS(5126), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -267720,7 +244314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 48, + ACTIONS(5128), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267769,14 +244363,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42504] = 5, + [39855] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2239), 1, + STATE(2000), 1, sym_comment, - ACTIONS(5292), 9, + STATE(2062), 1, + aux_sym_shebang_repeat1, + ACTIONS(5130), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -267786,7 +244380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5294), 48, + ACTIONS(5132), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267835,14 +244429,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42575] = 5, + [39926] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2240), 1, + STATE(2001), 1, sym_comment, - STATE(2270), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - ACTIONS(5178), 9, + ACTIONS(5130), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -267852,7 +244446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 48, + ACTIONS(5132), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267901,14 +244495,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42646] = 5, + [39997] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2241), 1, + STATE(2002), 1, sym_comment, - ACTIONS(5292), 9, + STATE(2042), 1, + aux_sym_shebang_repeat1, + ACTIONS(5054), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -267918,7 +244512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5294), 48, + ACTIONS(5056), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267967,16 +244561,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42717] = 6, + [40068] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(2242), 1, + STATE(2003), 1, sym_comment, - STATE(7586), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3201), 8, + ACTIONS(1060), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -267985,7 +244575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3199), 48, + ACTIONS(1062), 50, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -267998,6 +244588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -268026,6 +244617,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -268034,14 +244626,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42790] = 5, + [40137] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2243), 1, + STATE(2004), 1, sym_comment, - STATE(2271), 1, + STATE(2046), 1, aux_sym_shebang_repeat1, - ACTIONS(5178), 9, + ACTIONS(5060), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -268051,7 +244643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 48, + ACTIONS(5062), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -268100,14 +244692,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42861] = 5, + [40208] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2244), 1, + STATE(2005), 1, sym_comment, - ACTIONS(5292), 9, + STATE(2062), 1, + aux_sym_shebang_repeat1, + ACTIONS(5138), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -268117,7 +244709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5294), 48, + ACTIONS(5140), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -268166,14 +244758,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42932] = 5, + [40279] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2245), 1, + STATE(2006), 1, sym_comment, - STATE(2272), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - ACTIONS(5178), 9, + ACTIONS(5126), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -268183,7 +244775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5180), 48, + ACTIONS(5128), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -268232,83 +244824,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43003] = 6, + [40350] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(2246), 1, + STATE(2007), 1, sym_comment, - STATE(7586), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3201), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(3199), 48, - ts_builtin_sym_end, + STATE(2062), 1, + aux_sym_shebang_repeat1, + ACTIONS(5130), 9, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [43076] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(2247), 1, - sym_comment, - STATE(7586), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3201), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -268317,9 +244841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3199), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5132), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -268330,433 +244852,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [43149] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5300), 1, - anon_sym_DOT, - ACTIONS(5302), 1, - aux_sym__immediate_decimal_token2, - STATE(2248), 1, - sym_comment, - ACTIONS(1473), 10, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1475), 46, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [43222] = 38, - ACTIONS(159), 1, - anon_sym_LBRACK, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(391), 1, - anon_sym_LPAREN, - ACTIONS(393), 1, - anon_sym_DOLLAR, - ACTIONS(397), 1, - anon_sym_DASH, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(3245), 1, - anon_sym_null, - ACTIONS(3425), 1, - aux_sym_expr_unary_token1, - ACTIONS(3427), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3429), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3431), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3433), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5251), 1, - aux_sym_ctrl_match_token1, - STATE(1540), 1, - sym_expr_parenthesized, - STATE(1541), 1, - sym_val_variable, - STATE(1686), 1, - sym__inter_single_quotes, - STATE(1688), 1, - sym__inter_double_quotes, - STATE(1709), 1, - sym__expr_unary_minus, - STATE(1969), 1, - sym__str_double_quotes, - STATE(2249), 1, - sym_comment, - STATE(2278), 1, - sym__val_number, - STATE(2941), 1, - sym__val_number_decimal, - STATE(3727), 1, - sym_val_range, - STATE(4055), 1, - sym__expr_binary_expression, - STATE(7196), 1, - sym_block, - STATE(7204), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(443), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3243), 2, - anon_sym_true, - anon_sym_false, - STATE(1690), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(439), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1734), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [43359] = 38, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3443), 1, - anon_sym_LBRACK, - ACTIONS(3449), 1, - anon_sym_DASH, - ACTIONS(3455), 1, - aux_sym_expr_unary_token1, - ACTIONS(3469), 1, - anon_sym_0b, - ACTIONS(3475), 1, - anon_sym_DQUOTE, - ACTIONS(3479), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3481), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5255), 1, - anon_sym_null, - ACTIONS(5257), 1, - anon_sym_LPAREN, - ACTIONS(5259), 1, - anon_sym_DOLLAR, - ACTIONS(5261), 1, + anon_sym_RPAREN, aux_sym_ctrl_match_token1, - ACTIONS(5263), 1, - anon_sym_DOT_DOT, - ACTIONS(5267), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5269), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(5271), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5273), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5275), 1, - sym_val_date, - STATE(762), 1, - sym__val_number_decimal, - STATE(828), 1, - sym_expr_parenthesized, - STATE(941), 1, - sym_val_variable, - STATE(1126), 1, - sym__str_double_quotes, - STATE(1140), 1, - sym__val_number, - STATE(1152), 1, - sym__inter_single_quotes, - STATE(1153), 1, - sym__inter_double_quotes, - STATE(1154), 1, - sym__expr_unary_minus, - STATE(2250), 1, - sym_comment, - STATE(3107), 1, - sym_val_range, - STATE(3151), 1, - sym_block, - STATE(3152), 1, - sym__expression, - STATE(4056), 1, - sym__expr_binary_expression, - ACTIONS(3471), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3477), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5253), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5265), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1159), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3467), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1145), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [43496] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5304), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5306), 1, - aux_sym__immediate_decimal_token2, - STATE(2251), 1, - sym_comment, - ACTIONS(1481), 11, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1483), 45, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [43569] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(2252), 1, - sym_comment, - STATE(7586), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3201), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(3199), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -268765,83 +244890,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43642] = 6, + [40421] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(2253), 1, + STATE(2008), 1, sym_comment, - STATE(7586), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3201), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(3199), 48, - ts_builtin_sym_end, + STATE(2062), 1, + aux_sym_shebang_repeat1, + ACTIONS(5130), 9, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [43715] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(2254), 1, - sym_comment, - STATE(7586), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3201), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -268850,9 +244907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3199), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5132), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -268863,34 +244918,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -268899,79 +244956,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43788] = 6, + [40492] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(2255), 1, - sym_comment, - STATE(7586), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3201), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(3199), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [43861] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2256), 1, + STATE(2009), 1, sym_comment, - ACTIONS(2131), 18, + STATE(2062), 1, + aux_sym_shebang_repeat1, + ACTIONS(5142), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -268981,16 +244973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token4, - ACTIONS(2133), 40, + ACTIONS(5144), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269002,7 +244985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LPAREN2, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -269031,16 +245014,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [43930] = 6, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [40563] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(2257), 1, + STATE(2010), 1, sym_comment, - STATE(7586), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3201), 8, + ACTIONS(1052), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -269049,7 +245036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3199), 48, + ACTIONS(1054), 50, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -269062,6 +245049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -269090,6 +245078,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -269098,16 +245087,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44003] = 6, + [40632] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(2258), 1, + STATE(2011), 1, sym_comment, - STATE(7586), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3201), 8, + STATE(2033), 1, + aux_sym_shebang_repeat1, + ACTIONS(5050), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -269116,9 +245104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3199), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5052), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269129,34 +245115,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -269165,14 +245153,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44076] = 5, + [40703] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, + STATE(2000), 1, aux_sym_shebang_repeat1, - STATE(2259), 1, + STATE(2012), 1, sym_comment, - ACTIONS(5308), 9, + ACTIONS(5054), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -269182,7 +245170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5310), 48, + ACTIONS(5056), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269231,14 +245219,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44147] = 5, + [40774] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2260), 1, + STATE(2013), 1, sym_comment, - ACTIONS(5312), 9, + STATE(2053), 1, + aux_sym_shebang_repeat1, + ACTIONS(5060), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -269248,7 +245236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5314), 48, + ACTIONS(5062), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269297,14 +245285,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44218] = 5, + [40845] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2261), 1, + STATE(2014), 1, sym_comment, - ACTIONS(5312), 9, + STATE(2062), 1, + aux_sym_shebang_repeat1, + ACTIONS(5146), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -269314,7 +245302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5314), 48, + ACTIONS(5148), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269363,14 +245351,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44289] = 5, + [40916] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2262), 1, + STATE(2015), 1, sym_comment, - ACTIONS(5312), 9, + STATE(2062), 1, + aux_sym_shebang_repeat1, + ACTIONS(5126), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -269380,7 +245368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5314), 48, + ACTIONS(5128), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269429,14 +245417,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44360] = 5, + [40987] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2263), 1, + STATE(2016), 1, sym_comment, - ACTIONS(5312), 9, + STATE(2062), 1, + aux_sym_shebang_repeat1, + ACTIONS(5146), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -269446,7 +245434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5314), 48, + ACTIONS(5148), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269495,14 +245483,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44431] = 5, + [41058] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2264), 1, + STATE(2017), 1, sym_comment, - ACTIONS(5312), 9, + STATE(2062), 1, + aux_sym_shebang_repeat1, + ACTIONS(5130), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -269512,7 +245500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5314), 48, + ACTIONS(5132), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269561,14 +245549,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44502] = 5, + [41129] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2265), 1, + STATE(2018), 1, sym_comment, - ACTIONS(5312), 9, + STATE(2062), 1, + aux_sym_shebang_repeat1, + ACTIONS(5138), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -269578,7 +245566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5314), 48, + ACTIONS(5140), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269627,14 +245615,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44573] = 5, + [41200] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2266), 1, + STATE(2019), 1, sym_comment, - ACTIONS(5312), 9, + STATE(2062), 1, + aux_sym_shebang_repeat1, + ACTIONS(5146), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -269644,7 +245632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5314), 48, + ACTIONS(5148), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269693,14 +245681,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44644] = 5, + [41271] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2267), 1, + STATE(2020), 1, sym_comment, - ACTIONS(5312), 9, + STATE(2062), 1, + aux_sym_shebang_repeat1, + ACTIONS(5138), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -269710,7 +245698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5314), 48, + ACTIONS(5140), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269759,14 +245747,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44715] = 5, + [41342] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, + STATE(2006), 1, aux_sym_shebang_repeat1, - STATE(2268), 1, + STATE(2021), 1, sym_comment, - ACTIONS(5312), 9, + ACTIONS(5050), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -269776,7 +245764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5314), 48, + ACTIONS(5052), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269825,14 +245813,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44786] = 5, + [41413] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2269), 1, + STATE(2022), 1, sym_comment, - ACTIONS(5312), 9, + STATE(2059), 1, + aux_sym_shebang_repeat1, + ACTIONS(5060), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -269842,7 +245830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5314), 48, + ACTIONS(5062), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269891,14 +245879,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44857] = 5, + [41484] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2270), 1, + ACTIONS(5150), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5152), 1, + aux_sym__immediate_decimal_token2, + STATE(2023), 1, sym_comment, - ACTIONS(5312), 9, + ACTIONS(1517), 11, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT_DOT2, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1519), 45, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [41557] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2024), 1, + sym_comment, + STATE(2062), 1, + aux_sym_shebang_repeat1, + ACTIONS(5126), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -269908,7 +245963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5314), 48, + ACTIONS(5128), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269957,14 +246012,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44928] = 5, + [41628] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2271), 1, + STATE(2025), 1, sym_comment, - ACTIONS(5312), 9, + STATE(2062), 1, + aux_sym_shebang_repeat1, + ACTIONS(5130), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -269974,7 +246029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5314), 48, + ACTIONS(5132), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -270023,14 +246078,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44999] = 5, + [41699] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2272), 1, + STATE(2026), 1, sym_comment, - ACTIONS(5312), 9, + STATE(2062), 1, + aux_sym_shebang_repeat1, + ACTIONS(5130), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -270040,7 +246095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5314), 48, + ACTIONS(5132), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -270089,16 +246144,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45070] = 6, + [41770] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(2273), 1, + STATE(2007), 1, + aux_sym_shebang_repeat1, + STATE(2027), 1, sym_comment, - STATE(7586), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3201), 8, + ACTIONS(5054), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270107,9 +246161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3199), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5056), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -270120,34 +246172,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -270156,16 +246210,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45143] = 6, + [41841] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(2274), 1, + STATE(2028), 1, sym_comment, - STATE(7586), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3201), 8, + STATE(2062), 1, + aux_sym_shebang_repeat1, + ACTIONS(5146), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270174,9 +246227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3199), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5148), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -270187,34 +246238,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -270223,147 +246276,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45216] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5239), 1, - anon_sym_DOT, - STATE(2275), 1, - sym_comment, - STATE(2276), 1, - aux_sym_cell_path_repeat1, - STATE(2568), 1, - sym_path, - ACTIONS(951), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(953), 49, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [45291] = 6, + [41912] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5316), 1, - anon_sym_DOT, - STATE(2568), 1, - sym_path, - STATE(2276), 2, + STATE(2029), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(955), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(957), 49, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + STATE(2051), 1, + aux_sym_shebang_repeat1, + ACTIONS(5054), 9, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [45364] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2277), 1, - sym_comment, - ACTIONS(1525), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270372,8 +246293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1537), 50, - sym__newline, + ACTIONS(5056), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -270385,36 +246305,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -270423,12 +246342,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45433] = 4, + [41983] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2278), 1, + STATE(2030), 1, sym_comment, - ACTIONS(2389), 8, + STATE(2062), 1, + aux_sym_shebang_repeat1, + ACTIONS(5138), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270437,8 +246359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2391), 50, - sym__newline, + ACTIONS(5140), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -270450,36 +246371,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -270488,213 +246408,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45502] = 4, + [42054] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2279), 1, - sym_comment, - ACTIONS(3487), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(3485), 52, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [45571] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2280), 1, + STATE(2031), 1, sym_comment, - ACTIONS(3375), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(3373), 52, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + STATE(2063), 1, + aux_sym_shebang_repeat1, + ACTIONS(5060), 9, sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5062), 48, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_LBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [45640] = 8, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [42125] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5319), 1, - anon_sym_DOT, - STATE(2281), 1, + STATE(2032), 1, sym_comment, - STATE(2523), 1, - aux_sym_cell_path_repeat1, - STATE(2645), 1, - sym_path, - STATE(2691), 1, - sym_cell_path, - ACTIONS(1599), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1603), 48, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [45717] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2225), 1, + STATE(2038), 1, aux_sym_shebang_repeat1, - STATE(2282), 1, - sym_comment, - ACTIONS(5190), 9, + ACTIONS(5050), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -270704,7 +246491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 48, + ACTIONS(5052), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -270753,14 +246540,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45788] = 5, + [42196] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2283), 1, + STATE(2033), 1, sym_comment, - STATE(2314), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - ACTIONS(5186), 9, + ACTIONS(5126), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -270770,7 +246557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5188), 48, + ACTIONS(5128), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -270819,14 +246606,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45859] = 5, + [42267] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2284), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(2034), 1, sym_comment, - STATE(2317), 1, + STATE(7570), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4844), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4842), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [42340] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(2035), 1, + sym_comment, + STATE(7570), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4761), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4759), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [42413] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2036), 1, + sym_comment, + STATE(2064), 1, aux_sym_shebang_repeat1, - ACTIONS(5186), 9, + ACTIONS(5060), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -270836,7 +246757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5188), 48, + ACTIONS(5062), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -270885,14 +246806,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45930] = 5, + [42484] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2285), 1, + STATE(2037), 1, sym_comment, - STATE(2319), 1, + STATE(2054), 1, aux_sym_shebang_repeat1, - ACTIONS(5186), 9, + ACTIONS(5060), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -270902,7 +246823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5188), 48, + ACTIONS(5062), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -270951,14 +246872,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46001] = 5, + [42555] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2286), 1, + STATE(2038), 1, sym_comment, - STATE(2321), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - ACTIONS(5186), 9, + ACTIONS(5126), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -270968,7 +246889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5188), 48, + ACTIONS(5128), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271017,14 +246938,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46072] = 5, + [42626] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2287), 1, + STATE(2039), 1, sym_comment, - STATE(2324), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - ACTIONS(5186), 9, + ACTIONS(5138), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -271034,7 +246955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5188), 48, + ACTIONS(5140), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271083,14 +247004,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46143] = 5, + [42697] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2288), 1, + STATE(2040), 1, sym_comment, - STATE(2326), 1, + STATE(2066), 1, aux_sym_shebang_repeat1, - ACTIONS(5186), 9, + ACTIONS(5060), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -271100,7 +247021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5188), 48, + ACTIONS(5062), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271149,14 +247070,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46214] = 5, + [42768] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2289), 1, + STATE(2041), 1, sym_comment, - STATE(2329), 1, + STATE(2112), 1, aux_sym_shebang_repeat1, - ACTIONS(5186), 9, + ACTIONS(5154), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -271166,7 +247087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5188), 48, + ACTIONS(5156), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271215,14 +247136,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46285] = 5, + [42839] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2290), 1, + STATE(2042), 1, sym_comment, - STATE(2334), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - ACTIONS(5186), 9, + ACTIONS(5130), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -271232,7 +247153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5188), 48, + ACTIONS(5132), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271281,14 +247202,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46356] = 5, + [42910] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2291), 1, + STATE(2043), 1, sym_comment, - STATE(2336), 1, + STATE(2052), 1, aux_sym_shebang_repeat1, - ACTIONS(5186), 9, + ACTIONS(5054), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -271298,7 +247219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5188), 48, + ACTIONS(5056), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271347,14 +247268,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46427] = 5, + [42981] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2292), 1, + STATE(2044), 1, sym_comment, - STATE(2340), 1, + STATE(2137), 1, aux_sym_shebang_repeat1, - ACTIONS(5186), 9, + ACTIONS(5064), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -271364,7 +247285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5188), 48, + ACTIONS(5066), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271413,14 +247334,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46498] = 5, + [43052] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2293), 1, + STATE(2045), 1, sym_comment, - STATE(2342), 1, + STATE(2113), 1, aux_sym_shebang_repeat1, - ACTIONS(5186), 9, + ACTIONS(5050), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -271430,7 +247351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5188), 48, + ACTIONS(5052), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271479,14 +247400,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46569] = 5, + [43123] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2294), 1, + STATE(2046), 1, sym_comment, - STATE(2344), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - ACTIONS(5186), 9, + ACTIONS(5146), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -271496,7 +247417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5188), 48, + ACTIONS(5148), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271545,14 +247466,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46640] = 5, + [43194] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2295), 1, - sym_comment, - STATE(2348), 1, + STATE(1997), 1, aux_sym_shebang_repeat1, - ACTIONS(5186), 9, + STATE(2047), 1, + sym_comment, + ACTIONS(5064), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -271562,7 +247483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5188), 48, + ACTIONS(5066), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271611,93 +247532,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46711] = 20, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(2939), 1, - anon_sym_DQUOTE, - ACTIONS(5327), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5329), 1, - sym__newline, - ACTIONS(5331), 1, - anon_sym_RBRACK, - STATE(2296), 1, - sym_comment, - STATE(2385), 1, - aux_sym_shebang_repeat1, - STATE(2647), 1, - aux_sym_command_list_repeat1, - STATE(5801), 1, - sym__str_double_quotes, - STATE(7263), 1, - sym__val_number_decimal, - STATE(7328), 1, - sym__command_name, - STATE(7548), 1, - sym_cmd_identifier, - STATE(7691), 1, - sym_val_string, - ACTIONS(1259), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(2941), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5321), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5325), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5323), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [46812] = 4, + [43265] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2297), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(2048), 1, sym_comment, - ACTIONS(994), 8, + STATE(7570), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4783), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271706,7 +247550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(996), 50, + ACTIONS(4781), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -271719,7 +247563,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_ctrl_match_token1, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -271748,7 +247591,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -271757,15 +247599,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46881] = 5, - ACTIONS(3), 1, + [43338] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4932), 1, - aux_sym_cmd_identifier_token37, - STATE(2298), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(2049), 1, sym_comment, - ACTIONS(1525), 9, - sym__newline, + STATE(7570), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4771), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271774,7 +247617,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1537), 48, + ACTIONS(4769), 48, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271785,7 +247630,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -271814,7 +247658,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -271823,164 +247666,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46952] = 8, + [43411] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5319), 1, - anon_sym_DOT, - STATE(2299), 1, + STATE(2050), 1, sym_comment, - STATE(2523), 1, - aux_sym_cell_path_repeat1, - STATE(2645), 1, - sym_path, - STATE(2716), 1, - sym_cell_path, - ACTIONS(945), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(947), 48, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + STATE(2100), 1, + aux_sym_shebang_repeat1, + ACTIONS(5064), 9, sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5066), 48, anon_sym_SEMI, - anon_sym_LBRACK, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [47029] = 20, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [43482] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(2939), 1, - anon_sym_DQUOTE, - ACTIONS(5327), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5329), 1, - sym__newline, - ACTIONS(5333), 1, - anon_sym_RBRACK, - STATE(2300), 1, + STATE(2051), 1, sym_comment, - STATE(2501), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(2632), 1, - aux_sym_command_list_repeat1, - STATE(5801), 1, - sym__str_double_quotes, - STATE(7263), 1, - sym__val_number_decimal, - STATE(7412), 1, - sym__command_name, - STATE(7548), 1, - sym_cmd_identifier, - STATE(7691), 1, - sym_val_string, - ACTIONS(1259), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(2941), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5321), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5325), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5323), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [47130] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4983), 1, - aux_sym_cmd_identifier_token37, - STATE(2301), 1, - sym_comment, - ACTIONS(2131), 8, + ACTIONS(5130), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271989,8 +247749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2133), 49, - sym__newline, + ACTIONS(5132), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272002,35 +247761,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272039,14 +247798,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47201] = 5, - ACTIONS(3), 1, + [43553] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4983), 1, - aux_sym_cmd_identifier_token37, - STATE(2302), 1, + STATE(2052), 1, sym_comment, - ACTIONS(2089), 8, + STATE(2062), 1, + aux_sym_shebang_repeat1, + ACTIONS(5130), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272055,8 +247815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2093), 49, - sym__newline, + ACTIONS(5132), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272068,35 +247827,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272105,14 +247864,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47272] = 5, + [43624] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5335), 1, - aux_sym_cmd_identifier_token41, - STATE(2303), 1, + STATE(2053), 1, sym_comment, - ACTIONS(2097), 8, + STATE(2062), 1, + aux_sym_shebang_repeat1, + ACTIONS(5146), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272121,8 +247881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2101), 49, - sym__newline, + ACTIONS(5148), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272134,35 +247893,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272171,14 +247930,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47343] = 5, + [43695] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5335), 1, - aux_sym_cmd_identifier_token41, - STATE(2304), 1, + STATE(2054), 1, sym_comment, - ACTIONS(2105), 8, + STATE(2062), 1, + aux_sym_shebang_repeat1, + ACTIONS(5146), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272187,8 +247947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2107), 49, - sym__newline, + ACTIONS(5148), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272200,35 +247959,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272237,16 +247996,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47414] = 6, + [43766] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(2305), 1, + STATE(2018), 1, + aux_sym_shebang_repeat1, + STATE(2055), 1, sym_comment, - STATE(7887), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3207), 8, + ACTIONS(5064), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272255,9 +248013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3205), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5066), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272268,34 +248024,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272304,16 +248062,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47487] = 6, + [43837] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - STATE(2306), 1, + STATE(2056), 1, sym_comment, - STATE(7887), 1, + STATE(7428), 1, sym__expr_parenthesized_immediate, - ACTIONS(3211), 8, + ACTIONS(4745), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272322,7 +248080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3209), 48, + ACTIONS(4743), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -272371,16 +248129,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47560] = 6, - ACTIONS(247), 1, + [43910] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(2295), 1, anon_sym_LPAREN2, - STATE(2307), 1, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(2057), 1, sym_comment, - STATE(7887), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3261), 8, + ACTIONS(2293), 16, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272389,7 +248147,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3259), 48, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(2297), 40, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -272430,24 +248196,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [47633] = 6, + [43983] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(2308), 1, + STATE(2030), 1, + aux_sym_shebang_repeat1, + STATE(2058), 1, sym_comment, - STATE(7887), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3265), 8, + ACTIONS(5064), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272456,9 +248213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3263), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5066), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272469,34 +248224,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272505,12 +248262,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47706] = 4, + [44054] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2309), 1, + STATE(2059), 1, sym_comment, - ACTIONS(986), 8, + STATE(2062), 1, + aux_sym_shebang_repeat1, + ACTIONS(5146), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272519,9 +248279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(988), 50, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5148), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272532,36 +248290,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272570,12 +248328,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47775] = 4, - ACTIONS(247), 1, + [44125] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2310), 1, + ACTIONS(2239), 1, + anon_sym_LPAREN2, + ACTIONS(2241), 1, + aux_sym_unquoted_token4, + STATE(2060), 1, sym_comment, - ACTIONS(990), 8, + ACTIONS(1076), 16, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272584,7 +248346,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(992), 50, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(1078), 40, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -272597,7 +248367,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_ctrl_match_token1, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -272626,65 +248395,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [47844] = 20, + [44198] = 20, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1261), 1, + ACTIONS(1325), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, + ACTIONS(1327), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3269), 1, - aux_sym_record_entry_token1, - ACTIONS(4260), 1, + ACTIONS(3004), 1, anon_sym_DQUOTE, - ACTIONS(5031), 1, + ACTIONS(5164), 1, aux_sym_cmd_identifier_token38, - ACTIONS(5337), 1, - anon_sym_DASH_DASH, - STATE(2132), 1, - sym_val_string, - STATE(2155), 1, - sym_cmd_identifier, - STATE(2158), 1, - sym__str_double_quotes, - STATE(2311), 1, + ACTIONS(5166), 1, + sym__newline, + ACTIONS(5168), 1, + anon_sym_RBRACK, + STATE(2061), 1, sym_comment, - STATE(2532), 1, - aux_sym_decl_def_repeat1, - STATE(2997), 1, - sym_long_flag, - STATE(6723), 1, + STATE(2328), 1, + aux_sym_shebang_repeat1, + STATE(2447), 1, + aux_sym_command_list_repeat1, + STATE(5345), 1, + sym__str_double_quotes, + STATE(6922), 1, sym__command_name, - STATE(7482), 1, + STATE(7022), 1, sym__val_number_decimal, - ACTIONS(1259), 2, + STATE(7334), 1, + sym_cmd_identifier, + STATE(7335), 1, + sym_val_string, + ACTIONS(1323), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4262), 2, + ACTIONS(3006), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5025), 5, + ACTIONS(5158), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5029), 5, + ACTIONS(5162), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5027), 31, + ACTIONS(5160), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -272716,14 +248476,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [47945] = 5, - ACTIONS(3), 1, + [44299] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4983), 1, - aux_sym_cmd_identifier_token37, - STATE(2312), 1, + ACTIONS(5170), 1, + sym__newline, + STATE(2062), 2, sym_comment, - ACTIONS(1525), 8, + aux_sym_shebang_repeat1, + ACTIONS(1898), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272732,8 +248493,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1537), 49, + ACTIONS(1900), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [44370] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2062), 1, + aux_sym_shebang_repeat1, + STATE(2063), 1, + sym_comment, + ACTIONS(5146), 9, sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5148), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272745,35 +248571,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272782,14 +248608,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48016] = 5, + [44441] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(2313), 1, + STATE(2064), 1, sym_comment, - ACTIONS(5339), 9, + ACTIONS(5146), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -272799,7 +248625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5341), 48, + ACTIONS(5148), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272848,14 +248674,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48087] = 5, + [44512] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, + STATE(2065), 1, + sym_comment, + STATE(2077), 1, aux_sym_shebang_repeat1, - STATE(2314), 1, + ACTIONS(5064), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5066), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [44583] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2062), 1, + aux_sym_shebang_repeat1, + STATE(2066), 1, sym_comment, - ACTIONS(5343), 9, + ACTIONS(5146), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -272865,7 +248757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5345), 48, + ACTIONS(5148), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272914,14 +248806,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48158] = 5, + [44654] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2200), 1, + STATE(2020), 1, aux_sym_shebang_repeat1, - STATE(2315), 1, + STATE(2067), 1, sym_comment, - ACTIONS(5347), 9, + ACTIONS(5064), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -272931,7 +248823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5349), 48, + ACTIONS(5066), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272980,14 +248872,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48229] = 5, + [44725] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(2201), 1, + ACTIONS(5089), 1, + anon_sym_DOT, + STATE(2068), 1, + sym_comment, + STATE(2072), 1, + aux_sym_cell_path_repeat1, + STATE(2425), 1, + sym_path, + ACTIONS(1017), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1019), 49, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [44800] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(2316), 1, + STATE(2069), 1, sym_comment, - ACTIONS(5182), 9, + ACTIONS(5138), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -272997,7 +248957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5184), 48, + ACTIONS(5140), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273046,14 +249006,360 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48300] = 5, + [44871] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4799), 1, + aux_sym_cmd_identifier_token37, + STATE(2070), 1, + sym_comment, + ACTIONS(1575), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1587), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + aux_sym_record_entry_token1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [44942] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(2317), 1, + STATE(2071), 1, + sym_comment, + ACTIONS(5126), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5128), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [45013] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5173), 1, + anon_sym_DOT, + STATE(2425), 1, + sym_path, + STATE(2072), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(1021), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1023), 49, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [45086] = 20, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1325), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3213), 1, + aux_sym_record_entry_token1, + ACTIONS(3700), 1, + anon_sym_DQUOTE, + ACTIONS(4852), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5176), 1, + anon_sym_DASH_DASH, + STATE(1929), 1, + sym_cmd_identifier, + STATE(1930), 1, + sym_val_string, + STATE(1972), 1, + sym__str_double_quotes, + STATE(2073), 1, + sym_comment, + STATE(2339), 1, + aux_sym_decl_def_repeat1, + STATE(2743), 1, + sym_long_flag, + STATE(6523), 1, + sym__command_name, + STATE(6953), 1, + sym__val_number_decimal, + ACTIONS(1323), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3702), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4846), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4850), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4848), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [45187] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2074), 1, + sym_comment, + STATE(2140), 1, + aux_sym_shebang_repeat1, + ACTIONS(5064), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5066), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [45258] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2028), 1, + aux_sym_shebang_repeat1, + STATE(2075), 1, sym_comment, - ACTIONS(5343), 9, + ACTIONS(5060), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -273063,7 +249369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5345), 48, + ACTIONS(5062), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273112,14 +249418,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48371] = 5, + [45329] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2202), 1, + STATE(2069), 1, aux_sym_shebang_repeat1, - STATE(2318), 1, + STATE(2076), 1, sym_comment, - ACTIONS(5182), 9, + ACTIONS(5064), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -273129,7 +249435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5184), 48, + ACTIONS(5066), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273178,14 +249484,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48442] = 5, + [45400] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(2319), 1, + STATE(2077), 1, sym_comment, - ACTIONS(5343), 9, + ACTIONS(5138), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -273195,7 +249501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5345), 48, + ACTIONS(5140), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273244,14 +249550,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48513] = 5, - ACTIONS(247), 1, + [45471] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2204), 1, - aux_sym_shebang_repeat1, - STATE(2320), 1, + STATE(2078), 1, sym_comment, - ACTIONS(5182), 9, + ACTIONS(2259), 18, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -273261,7 +249565,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5184), 48, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym_unquoted_token4, + ACTIONS(2261), 40, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273273,7 +249586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -273302,22 +249615,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [48584] = 5, + [45540] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, + STATE(2024), 1, aux_sym_shebang_repeat1, - STATE(2321), 1, + STATE(2079), 1, sym_comment, - ACTIONS(5343), 9, + ACTIONS(5050), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -273327,7 +249632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5345), 48, + ACTIONS(5052), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273376,113 +249681,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48655] = 38, - ACTIONS(161), 1, - anon_sym_LPAREN, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(269), 1, - anon_sym_DOLLAR, - ACTIONS(397), 1, - anon_sym_DASH, - ACTIONS(3219), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3225), 1, - aux_sym_expr_unary_token1, - ACTIONS(3229), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3231), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3233), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3235), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3245), 1, - anon_sym_null, - ACTIONS(3269), 1, - aux_sym_record_entry_token1, - ACTIONS(5351), 1, - anon_sym_DOT_DOT, - STATE(1668), 1, - sym__str_double_quotes, - STATE(1686), 1, - sym__inter_single_quotes, - STATE(1688), 1, - sym__inter_double_quotes, - STATE(1709), 1, - sym__expr_unary_minus, - STATE(1907), 1, - sym__val_number, - STATE(2322), 1, - sym_comment, - STATE(3727), 1, - sym_val_range, - STATE(3730), 1, - sym__val_number_decimal, - STATE(3758), 1, - sym_val_variable, - STATE(3761), 1, - sym_expr_parenthesized, - STATE(4067), 1, - sym__expr_binary_expression, - STATE(7606), 1, - sym__expression, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3243), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5353), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1690), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1734), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [48792] = 5, - ACTIONS(247), 1, + [45611] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2205), 1, - aux_sym_shebang_repeat1, - STATE(2323), 1, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(2080), 1, sym_comment, - ACTIONS(5182), 9, + ACTIONS(2293), 17, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -273492,7 +249700,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5184), 48, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(2297), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273504,7 +249720,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -273533,6 +249748,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, + [45684] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2081), 1, + sym_comment, + ACTIONS(2259), 17, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -273541,14 +249770,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48863] = 5, - ACTIONS(247), 1, + aux_sym_unquoted_token4, + ACTIONS(2261), 41, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [45753] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2324), 1, + ACTIONS(2239), 1, + anon_sym_LPAREN2, + ACTIONS(2241), 1, + aux_sym_unquoted_token4, + STATE(2082), 1, sym_comment, - ACTIONS(5343), 9, + ACTIONS(1076), 17, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -273558,7 +249832,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5345), 48, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(1078), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273570,7 +249852,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -273599,22 +249880,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [48934] = 5, + [45826] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2206), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(2325), 1, + STATE(2083), 1, sym_comment, - ACTIONS(5182), 9, + ACTIONS(5130), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -273624,7 +249897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5184), 48, + ACTIONS(5132), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273673,14 +249946,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49005] = 5, + [45897] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(2326), 1, + STATE(2084), 1, sym_comment, - ACTIONS(5343), 9, + ACTIONS(5126), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -273690,7 +249963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5345), 48, + ACTIONS(5128), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273739,113 +250012,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49076] = 38, - ACTIONS(161), 1, - anon_sym_LPAREN, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(269), 1, - anon_sym_DOLLAR, - ACTIONS(397), 1, - anon_sym_DASH, - ACTIONS(3219), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3225), 1, - aux_sym_expr_unary_token1, - ACTIONS(3229), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3231), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3233), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3235), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3245), 1, - anon_sym_null, - ACTIONS(3269), 1, - aux_sym_record_entry_token1, - ACTIONS(5351), 1, - anon_sym_DOT_DOT, - STATE(1668), 1, - sym__str_double_quotes, - STATE(1686), 1, - sym__inter_single_quotes, - STATE(1688), 1, - sym__inter_double_quotes, - STATE(1709), 1, - sym__expr_unary_minus, - STATE(1907), 1, - sym__val_number, - STATE(2327), 1, - sym_comment, - STATE(3727), 1, - sym_val_range, - STATE(3730), 1, - sym__val_number_decimal, - STATE(3758), 1, - sym_val_variable, - STATE(3761), 1, - sym_expr_parenthesized, - STATE(4067), 1, - sym__expr_binary_expression, - STATE(7633), 1, - sym__expression, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3243), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5353), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1690), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1734), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [49213] = 5, + [45968] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2207), 1, + STATE(2005), 1, aux_sym_shebang_repeat1, - STATE(2328), 1, + STATE(2085), 1, sym_comment, - ACTIONS(5182), 9, + ACTIONS(5064), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -273855,7 +250029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5184), 48, + ACTIONS(5066), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273904,14 +250078,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49284] = 5, + [46039] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(2329), 1, + STATE(2086), 1, sym_comment, - ACTIONS(5343), 9, + ACTIONS(5178), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -273921,7 +250095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5345), 48, + ACTIONS(5180), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273970,293 +250144,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49355] = 20, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3239), 1, - aux_sym_record_entry_token1, - ACTIONS(4260), 1, - anon_sym_DQUOTE, - ACTIONS(5031), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5337), 1, - anon_sym_DASH_DASH, - STATE(2132), 1, - sym_val_string, - STATE(2155), 1, - sym_cmd_identifier, - STATE(2158), 1, - sym__str_double_quotes, - STATE(2330), 1, - sym_comment, - STATE(2532), 1, - aux_sym_decl_def_repeat1, - STATE(2997), 1, - sym_long_flag, - STATE(6723), 1, - sym__command_name, - STATE(7482), 1, - sym__val_number_decimal, - ACTIONS(1259), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4262), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5025), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5029), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5027), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [49456] = 38, - ACTIONS(161), 1, - anon_sym_LPAREN, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(269), 1, - anon_sym_DOLLAR, - ACTIONS(397), 1, - anon_sym_DASH, - ACTIONS(3219), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3225), 1, - aux_sym_expr_unary_token1, - ACTIONS(3229), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3231), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3233), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3235), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3239), 1, - aux_sym_record_entry_token1, - ACTIONS(3245), 1, - anon_sym_null, - ACTIONS(5351), 1, - anon_sym_DOT_DOT, - STATE(1668), 1, - sym__str_double_quotes, - STATE(1686), 1, - sym__inter_single_quotes, - STATE(1688), 1, - sym__inter_double_quotes, - STATE(1709), 1, - sym__expr_unary_minus, - STATE(1907), 1, - sym__val_number, - STATE(2331), 1, - sym_comment, - STATE(3727), 1, - sym_val_range, - STATE(3730), 1, - sym__val_number_decimal, - STATE(3758), 1, - sym_val_variable, - STATE(3761), 1, - sym_expr_parenthesized, - STATE(4067), 1, - sym__expr_binary_expression, - STATE(7606), 1, - sym__expression, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3243), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5353), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1690), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1734), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [49593] = 38, - ACTIONS(161), 1, - anon_sym_LPAREN, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(269), 1, - anon_sym_DOLLAR, - ACTIONS(397), 1, - anon_sym_DASH, - ACTIONS(3219), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3225), 1, - aux_sym_expr_unary_token1, - ACTIONS(3229), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3231), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3233), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3235), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3239), 1, - aux_sym_record_entry_token1, - ACTIONS(3245), 1, - anon_sym_null, - ACTIONS(5351), 1, - anon_sym_DOT_DOT, - STATE(1668), 1, - sym__str_double_quotes, - STATE(1686), 1, - sym__inter_single_quotes, - STATE(1688), 1, - sym__inter_double_quotes, - STATE(1709), 1, - sym__expr_unary_minus, - STATE(1907), 1, - sym__val_number, - STATE(2332), 1, - sym_comment, - STATE(3727), 1, - sym_val_range, - STATE(3730), 1, - sym__val_number_decimal, - STATE(3758), 1, - sym_val_variable, - STATE(3761), 1, - sym_expr_parenthesized, - STATE(4067), 1, - sym__expr_binary_expression, - STATE(7633), 1, - sym__expression, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3243), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5353), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1690), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1734), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [49730] = 5, + [46110] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2208), 1, + STATE(2039), 1, aux_sym_shebang_repeat1, - STATE(2333), 1, + STATE(2087), 1, sym_comment, - ACTIONS(5182), 9, + ACTIONS(5064), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -274266,7 +250161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5184), 48, + ACTIONS(5066), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274315,14 +250210,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49801] = 5, + [46181] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, + STATE(2014), 1, aux_sym_shebang_repeat1, - STATE(2334), 1, + STATE(2088), 1, sym_comment, - ACTIONS(5343), 9, + ACTIONS(5060), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -274332,7 +250227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5345), 48, + ACTIONS(5062), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274381,14 +250276,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49872] = 5, - ACTIONS(247), 1, + [46252] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2209), 1, - aux_sym_shebang_repeat1, - STATE(2335), 1, + ACTIONS(2245), 1, + anon_sym_LPAREN2, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + STATE(2089), 1, sym_comment, - ACTIONS(5182), 9, + ACTIONS(2243), 17, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -274398,7 +250295,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5184), 48, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(2247), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274410,7 +250315,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -274439,22 +250343,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [49943] = 5, - ACTIONS(247), 1, + [46325] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2336), 1, + ACTIONS(2245), 1, + anon_sym_LPAREN2, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + STATE(2090), 1, sym_comment, - ACTIONS(5343), 9, + ACTIONS(2251), 17, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -274464,7 +250362,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5345), 48, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(2253), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274476,7 +250382,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -274505,6 +250410,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, + [46398] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(2091), 1, + sym_comment, + STATE(7428), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4745), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4743), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274513,16 +250477,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50014] = 6, + [46471] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2091), 1, + ACTIONS(2245), 1, anon_sym_LPAREN2, - ACTIONS(2095), 1, + ACTIONS(2249), 1, aux_sym_unquoted_token4, - STATE(2337), 1, + STATE(2092), 1, sym_comment, - ACTIONS(2089), 16, + ACTIONS(2243), 16, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274539,7 +250503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(2093), 40, + ACTIONS(2247), 40, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -274580,16 +250544,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [50087] = 6, + [46544] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2081), 1, + ACTIONS(2245), 1, anon_sym_LPAREN2, - ACTIONS(2083), 1, + ACTIONS(2249), 1, aux_sym_unquoted_token4, - STATE(2338), 1, + STATE(2093), 1, sym_comment, - ACTIONS(1006), 16, + ACTIONS(2251), 16, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274606,7 +250570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(1008), 40, + ACTIONS(2253), 40, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -274647,14 +250611,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [50160] = 5, + [46617] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2210), 1, + STATE(2083), 1, aux_sym_shebang_repeat1, - STATE(2339), 1, + STATE(2094), 1, sym_comment, - ACTIONS(5182), 9, + ACTIONS(5054), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -274664,7 +250628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5184), 48, + ACTIONS(5056), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274713,15 +250677,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50231] = 5, + [46688] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2340), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(2095), 1, sym_comment, - ACTIONS(5343), 9, - sym__newline, + STATE(7428), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4745), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274730,7 +250695,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5345), 48, + ACTIONS(4743), 48, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274741,36 +250708,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274779,15 +250744,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50302] = 5, + [46761] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2211), 1, - aux_sym_shebang_repeat1, - STATE(2341), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(2096), 1, sym_comment, - ACTIONS(5182), 9, - sym__newline, + STATE(7428), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4745), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274796,7 +250762,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5184), 48, + ACTIONS(4743), 48, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274807,36 +250775,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274845,14 +250811,293 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50373] = 5, + [46834] = 20, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1325), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3215), 1, + aux_sym_record_entry_token1, + ACTIONS(3700), 1, + anon_sym_DQUOTE, + ACTIONS(4852), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5176), 1, + anon_sym_DASH_DASH, + STATE(1929), 1, + sym_cmd_identifier, + STATE(1930), 1, + sym_val_string, + STATE(1972), 1, + sym__str_double_quotes, + STATE(2097), 1, + sym_comment, + STATE(2339), 1, + aux_sym_decl_def_repeat1, + STATE(2743), 1, + sym_long_flag, + STATE(6523), 1, + sym__command_name, + STATE(6953), 1, + sym__val_number_decimal, + ACTIONS(1323), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3702), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4846), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4850), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4848), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [46935] = 38, + ACTIONS(161), 1, + anon_sym_LPAREN, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(269), 1, + anon_sym_DOLLAR, + ACTIONS(395), 1, + anon_sym_DASH, + ACTIONS(3199), 1, + anon_sym_null, + ACTIONS(3215), 1, + aux_sym_record_entry_token1, + ACTIONS(3249), 1, + anon_sym_LBRACK, + ACTIONS(3255), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3259), 1, + aux_sym_expr_unary_token1, + ACTIONS(3263), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3265), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3267), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3269), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5182), 1, + anon_sym_DOT_DOT, + STATE(1389), 1, + sym__str_double_quotes, + STATE(1644), 1, + sym__expr_unary_minus, + STATE(1676), 1, + sym__val_number, + STATE(1708), 1, + sym__inter_single_quotes, + STATE(1709), 1, + sym__inter_double_quotes, + STATE(2098), 1, + sym_comment, + STATE(3464), 1, + sym__val_number_decimal, + STATE(3484), 1, + sym_val_range, + STATE(3505), 1, + sym_val_variable, + STATE(3512), 1, + sym_expr_parenthesized, + STATE(3776), 1, + sym__expr_binary_expression, + STATE(7373), 1, + sym__expression, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3197), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5184), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1606), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1675), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [47072] = 38, + ACTIONS(161), 1, + anon_sym_LPAREN, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(269), 1, + anon_sym_DOLLAR, + ACTIONS(395), 1, + anon_sym_DASH, + ACTIONS(3199), 1, + anon_sym_null, + ACTIONS(3215), 1, + aux_sym_record_entry_token1, + ACTIONS(3249), 1, + anon_sym_LBRACK, + ACTIONS(3255), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3259), 1, + aux_sym_expr_unary_token1, + ACTIONS(3263), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3265), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3267), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3269), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5182), 1, + anon_sym_DOT_DOT, + STATE(1389), 1, + sym__str_double_quotes, + STATE(1644), 1, + sym__expr_unary_minus, + STATE(1676), 1, + sym__val_number, + STATE(1708), 1, + sym__inter_single_quotes, + STATE(1709), 1, + sym__inter_double_quotes, + STATE(2099), 1, + sym_comment, + STATE(3464), 1, + sym__val_number_decimal, + STATE(3484), 1, + sym_val_range, + STATE(3505), 1, + sym_val_variable, + STATE(3512), 1, + sym_expr_parenthesized, + STATE(3776), 1, + sym__expr_binary_expression, + STATE(7387), 1, + sym__expression, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3197), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5184), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1606), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1675), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [47209] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(2342), 1, + STATE(2100), 1, sym_comment, - ACTIONS(5343), 9, + ACTIONS(5138), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -274862,7 +251107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5345), 48, + ACTIONS(5140), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274911,14 +251156,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50444] = 5, + [47280] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2212), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(2343), 1, + STATE(2101), 1, sym_comment, - ACTIONS(5182), 9, + ACTIONS(5126), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -274928,7 +251173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5184), 48, + ACTIONS(5128), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274977,15 +251222,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50515] = 5, + [47351] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2344), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(2102), 1, sym_comment, - ACTIONS(5343), 9, - sym__newline, + STATE(7428), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4745), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274994,7 +251240,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5345), 48, + ACTIONS(4743), 48, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275005,36 +251253,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -275043,14 +251289,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50586] = 5, + [47424] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2213), 1, + STATE(2026), 1, aux_sym_shebang_repeat1, - STATE(2345), 1, + STATE(2103), 1, sym_comment, - ACTIONS(5182), 9, + ACTIONS(5054), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -275060,7 +251306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5184), 48, + ACTIONS(5056), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275109,16 +251355,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50657] = 6, - ACTIONS(3), 1, + [47495] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2104), 1, + sym_comment, + ACTIONS(4888), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(4886), 52, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_LBRACK, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [47564] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5186), 1, + anon_sym_DOT, + ACTIONS(5188), 1, + aux_sym__immediate_decimal_token2, + STATE(2105), 1, + sym_comment, + ACTIONS(1497), 10, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1499), 46, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [47637] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2099), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - STATE(2346), 1, + STATE(2106), 1, sym_comment, - ACTIONS(2097), 16, + STATE(7428), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4745), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275127,15 +251505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(2101), 40, + ACTIONS(4743), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -275176,16 +251546,93 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [50730] = 6, - ACTIONS(3), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [47710] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5134), 1, + anon_sym_DOT, + STATE(2107), 1, + sym_comment, + STATE(2251), 1, + aux_sym_cell_path_repeat1, + STATE(2455), 1, + sym_path, + STATE(2498), 1, + sym_cell_path, + ACTIONS(1686), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1688), 48, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [47787] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2099), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - STATE(2347), 1, + STATE(2108), 1, sym_comment, - ACTIONS(2105), 16, + STATE(7428), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4745), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275194,15 +251641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(2107), 40, + ACTIONS(4743), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -275243,14 +251682,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [50803] = 5, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [47860] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(2348), 1, + STATE(2109), 1, sym_comment, - ACTIONS(5343), 9, + ACTIONS(5146), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -275260,7 +251707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5345), 48, + ACTIONS(5148), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275309,14 +251756,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50874] = 5, + [47931] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2214), 1, - aux_sym_shebang_repeat1, - STATE(2349), 1, + STATE(2110), 1, sym_comment, - ACTIONS(5182), 9, + STATE(2116), 1, + aux_sym_shebang_repeat1, + ACTIONS(5054), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -275326,7 +251773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5184), 48, + ACTIONS(5056), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275375,14 +251822,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50945] = 5, + [48002] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2215), 1, + STATE(2109), 1, aux_sym_shebang_repeat1, - STATE(2350), 1, + STATE(2111), 1, sym_comment, - ACTIONS(5355), 9, + ACTIONS(5060), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -275392,7 +251839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5357), 48, + ACTIONS(5062), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275441,12 +251888,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51016] = 5, + [48073] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2216), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(2351), 1, + STATE(2112), 1, sym_comment, ACTIONS(5190), 9, sym__newline, @@ -275507,14 +251954,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51087] = 5, + [48144] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2219), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(2352), 1, + STATE(2113), 1, sym_comment, - ACTIONS(5190), 9, + ACTIONS(5126), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -275524,7 +251971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 48, + ACTIONS(5128), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275573,14 +252020,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51158] = 5, + [48215] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2221), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(2353), 1, + STATE(2114), 1, sym_comment, - ACTIONS(5190), 9, + ACTIONS(5126), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -275590,7 +252037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5192), 48, + ACTIONS(5128), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275639,14 +252086,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51229] = 5, + [48286] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2313), 1, - aux_sym_shebang_repeat1, - STATE(2354), 1, + STATE(2115), 1, sym_comment, - ACTIONS(5359), 9, + STATE(2144), 1, + aux_sym_shebang_repeat1, + ACTIONS(5194), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -275656,7 +252103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5361), 48, + ACTIONS(5196), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275705,14 +252152,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51300] = 5, + [48357] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4728), 1, - aux_sym_record_entry_token1, - STATE(2355), 1, + STATE(2062), 1, + aux_sym_shebang_repeat1, + STATE(2116), 1, sym_comment, - ACTIONS(1006), 9, + ACTIONS(5130), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -275722,7 +252169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1008), 47, + ACTIONS(5132), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275733,112 +252180,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [51370] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5373), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5375), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5377), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5379), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5381), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2356), 1, - sym_comment, - ACTIONS(5363), 2, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5367), 2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5369), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5371), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5365), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5383), 4, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5385), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5280), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5282), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -275847,14 +252218,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51464] = 5, + [48428] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4889), 1, - aux_sym_unquoted_token2, - STATE(2357), 1, + STATE(2117), 1, sym_comment, - ACTIONS(1525), 9, + STATE(2145), 1, + aux_sym_shebang_repeat1, + ACTIONS(5050), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -275864,7 +252235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1537), 47, + ACTIONS(5052), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275876,6 +252247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -275912,36 +252284,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51534] = 10, + [48499] = 20, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, + ACTIONS(1325), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3004), 1, + anon_sym_DQUOTE, + ACTIONS(5164), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5166), 1, + sym__newline, + ACTIONS(5198), 1, + anon_sym_RBRACK, + STATE(2118), 1, + sym_comment, + STATE(2215), 1, aux_sym_shebang_repeat1, - STATE(2358), 1, + STATE(2467), 1, + aux_sym_command_list_repeat1, + STATE(5345), 1, + sym__str_double_quotes, + STATE(6752), 1, + sym__command_name, + STATE(7022), 1, + sym__val_number_decimal, + STATE(7334), 1, + sym_cmd_identifier, + STATE(7335), 1, + sym_val_string, + ACTIONS(1323), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3006), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5158), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(5162), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5160), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [48600] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4785), 1, + aux_sym_cmd_identifier_token37, + STATE(2119), 1, sym_comment, - ACTIONS(5363), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5367), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5369), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5365), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5385), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5280), 9, - sym__newline, + ACTIONS(1575), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275950,7 +252381,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5282), 31, + ACTIONS(1587), 49, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275962,18 +252394,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -275982,28 +252431,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51614] = 9, + [48671] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, + STATE(2114), 1, aux_sym_shebang_repeat1, - STATE(2359), 1, + STATE(2120), 1, sym_comment, - ACTIONS(5363), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5367), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5369), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5365), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5280), 9, + ACTIONS(5050), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -276013,7 +252448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5282), 37, + ACTIONS(5052), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276025,64 +252460,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [51692] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2360), 1, - sym_comment, - ACTIONS(5363), 2, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5308), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5310), 45, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, @@ -276117,23 +252497,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51764] = 7, + [48742] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2361), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(2121), 1, sym_comment, - ACTIONS(5363), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5365), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5308), 9, - sym__newline, + STATE(7428), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4745), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276142,7 +252515,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5310), 41, + ACTIONS(4743), 48, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276153,29 +252528,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276184,25 +252564,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51838] = 8, + [48815] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, + STATE(2071), 1, aux_sym_shebang_repeat1, - STATE(2362), 1, + STATE(2122), 1, sym_comment, - ACTIONS(5363), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5367), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5365), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5308), 9, + ACTIONS(5050), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -276212,7 +252581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5310), 39, + ACTIONS(5052), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276224,89 +252593,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [51914] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2363), 1, - sym_comment, - ACTIONS(5363), 2, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5367), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5369), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5365), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5383), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5385), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5308), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5310), 27, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -276315,78 +252612,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [51996] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2364), 1, - sym_comment, - ACTIONS(5363), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5367), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5369), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5371), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5365), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5383), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5385), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5308), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5310), 25, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276395,46 +252630,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52080] = 13, + [48886] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5373), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2365), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(2123), 1, sym_comment, - ACTIONS(5363), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5367), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5369), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5371), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5365), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5383), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5385), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5308), 9, - sym__newline, + STATE(7428), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4745), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276443,7 +252648,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5310), 24, + ACTIONS(4743), 48, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276454,12 +252661,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276468,91 +252697,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52166] = 14, + [48959] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5373), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5375), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2366), 1, + ACTIONS(5134), 1, + anon_sym_DOT, + STATE(2124), 1, sym_comment, - ACTIONS(5363), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5367), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5369), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5371), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5365), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5383), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5385), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5308), 9, + STATE(2251), 1, + aux_sym_cell_path_repeat1, + STATE(2455), 1, + sym_path, + STATE(2503), 1, + sym_cell_path, + ACTIONS(1011), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1013), 48, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5310), 23, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [52254] = 6, + anon_sym_LBRACK, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [49036] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, + STATE(2084), 1, aux_sym_shebang_repeat1, - STATE(2367), 1, + STATE(2125), 1, sym_comment, - ACTIONS(5363), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5288), 9, + ACTIONS(5050), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -276562,7 +252783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5290), 45, + ACTIONS(5052), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276574,6 +252795,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, @@ -276608,50 +252832,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52326] = 15, + [49107] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5373), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5375), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5377), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2368), 1, + STATE(2126), 1, sym_comment, - ACTIONS(5363), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5367), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5369), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5371), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5365), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5383), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5385), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5308), 9, - sym__newline, + ACTIONS(1056), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276660,7 +252846,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5310), 22, + ACTIONS(1058), 50, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276671,10 +252859,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276683,51 +252897,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52416] = 16, + [49176] = 38, + ACTIONS(161), 1, + anon_sym_LPAREN, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5373), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5375), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5377), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5379), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(2192), 1, + ACTIONS(269), 1, + anon_sym_DOLLAR, + ACTIONS(395), 1, + anon_sym_DASH, + ACTIONS(3199), 1, + anon_sym_null, + ACTIONS(3213), 1, + aux_sym_record_entry_token1, + ACTIONS(3249), 1, + anon_sym_LBRACK, + ACTIONS(3255), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3259), 1, + aux_sym_expr_unary_token1, + ACTIONS(3263), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3265), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3267), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3269), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5182), 1, + anon_sym_DOT_DOT, + STATE(1389), 1, + sym__str_double_quotes, + STATE(1644), 1, + sym__expr_unary_minus, + STATE(1676), 1, + sym__val_number, + STATE(1708), 1, + sym__inter_single_quotes, + STATE(1709), 1, + sym__inter_double_quotes, + STATE(2127), 1, + sym_comment, + STATE(3464), 1, + sym__val_number_decimal, + STATE(3484), 1, + sym_val_range, + STATE(3505), 1, + sym_val_variable, + STATE(3512), 1, + sym_expr_parenthesized, + STATE(3776), 1, + sym__expr_binary_expression, + STATE(7373), 1, + sym__expression, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3197), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5184), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1606), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1675), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [49313] = 38, + ACTIONS(161), 1, + anon_sym_LPAREN, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(269), 1, + anon_sym_DOLLAR, + ACTIONS(395), 1, + anon_sym_DASH, + ACTIONS(3199), 1, + anon_sym_null, + ACTIONS(3213), 1, + aux_sym_record_entry_token1, + ACTIONS(3249), 1, + anon_sym_LBRACK, + ACTIONS(3255), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3259), 1, + aux_sym_expr_unary_token1, + ACTIONS(3263), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3265), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3267), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3269), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5182), 1, + anon_sym_DOT_DOT, + STATE(1389), 1, + sym__str_double_quotes, + STATE(1644), 1, + sym__expr_unary_minus, + STATE(1676), 1, + sym__val_number, + STATE(1708), 1, + sym__inter_single_quotes, + STATE(1709), 1, + sym__inter_double_quotes, + STATE(2128), 1, + sym_comment, + STATE(3464), 1, + sym__val_number_decimal, + STATE(3484), 1, + sym_val_range, + STATE(3505), 1, + sym_val_variable, + STATE(3512), 1, + sym_expr_parenthesized, + STATE(3776), 1, + sym__expr_binary_expression, + STATE(7387), 1, + sym__expression, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3197), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5184), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1606), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1675), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [49450] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2101), 1, aux_sym_shebang_repeat1, - STATE(2369), 1, + STATE(2129), 1, sym_comment, - ACTIONS(5363), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5367), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5369), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5371), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5365), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5383), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5385), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5308), 9, + ACTIONS(5050), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -276737,7 +253112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5310), 21, + ACTIONS(5052), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276749,8 +253124,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276759,19 +253161,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52508] = 7, + [49521] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5387), 1, - sym__newline, - STATE(2360), 1, + STATE(1991), 1, aux_sym_shebang_repeat1, - STATE(2370), 1, + STATE(2130), 1, sym_comment, - ACTIONS(5390), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5296), 8, + ACTIONS(5050), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276780,7 +253178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5298), 45, + ACTIONS(5052), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276792,6 +253190,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, @@ -276826,54 +253227,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52582] = 17, + [49592] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5373), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5375), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5377), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5379), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5381), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2371), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(2131), 1, sym_comment, - ACTIONS(5363), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5367), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5369), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5371), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5365), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5383), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5385), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5308), 9, - sym__newline, + STATE(7428), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4745), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276882,7 +253245,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5310), 20, + ACTIONS(4743), 48, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276893,8 +253258,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276903,14 +253294,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52676] = 5, - ACTIONS(3), 1, + [49665] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5071), 1, - aux_sym_cmd_identifier_token37, - STATE(2372), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(2132), 1, sym_comment, - ACTIONS(2131), 8, + STATE(7428), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4745), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276919,7 +253312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2133), 48, + ACTIONS(4743), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -276968,35 +253361,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52746] = 10, + [49738] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, + STATE(1999), 1, aux_sym_shebang_repeat1, - STATE(2373), 1, + STATE(2133), 1, sym_comment, - ACTIONS(5363), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5367), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5369), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5365), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5385), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5308), 9, + ACTIONS(5050), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -277006,7 +253378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5310), 31, + ACTIONS(5052), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277018,6 +253390,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -277030,6 +253413,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -277038,22 +253427,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52826] = 7, + [49809] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, + STATE(1992), 1, aux_sym_shebang_repeat1, - STATE(2374), 1, + STATE(2134), 1, sym_comment, - ACTIONS(5363), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5365), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5288), 9, + ACTIONS(5054), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -277063,7 +253444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5290), 41, + ACTIONS(5056), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277075,6 +253456,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, @@ -277105,28 +253493,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52900] = 9, + [49880] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, + STATE(2001), 1, aux_sym_shebang_repeat1, - STATE(2375), 1, + STATE(2135), 1, sym_comment, - ACTIONS(5363), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5367), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5369), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5365), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5308), 9, + ACTIONS(5054), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -277136,7 +253510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5310), 37, + ACTIONS(5056), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277148,6 +253522,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -277174,24 +253559,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52978] = 8, + [49951] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5387), 1, - sym__newline, - STATE(2361), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(2376), 1, + STATE(2136), 1, sym_comment, - ACTIONS(5390), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5392), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5296), 8, + ACTIONS(5146), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277200,7 +253576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5298), 41, + ACTIONS(5148), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277212,6 +253588,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, @@ -277242,155 +253625,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53054] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5394), 1, - anon_sym_QMARK2, - STATE(2377), 1, - sym_comment, - ACTIONS(970), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(972), 49, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [53124] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5396), 1, - anon_sym_QMARK2, - STATE(2378), 1, - sym_comment, - ACTIONS(980), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(982), 49, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [53194] = 8, + [50022] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(2379), 1, + STATE(2137), 1, sym_comment, - ACTIONS(5363), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5367), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5365), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5288), 9, + ACTIONS(5138), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -277400,7 +253642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5290), 39, + ACTIONS(5140), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277412,6 +253654,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, @@ -277440,14 +253691,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53270] = 5, - ACTIONS(3), 1, + [50093] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4983), 1, - aux_sym_cmd_identifier_token37, - STATE(2380), 1, + STATE(2086), 1, + aux_sym_shebang_repeat1, + STATE(2138), 1, sym_comment, - ACTIONS(2131), 9, + ACTIONS(5200), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -277457,7 +253708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2133), 47, + ACTIONS(5202), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277469,6 +253720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -277505,14 +253757,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53340] = 5, - ACTIONS(3), 1, + [50164] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4983), 1, - aux_sym_cmd_identifier_token37, - STATE(2381), 1, + STATE(2017), 1, + aux_sym_shebang_repeat1, + STATE(2139), 1, sym_comment, - ACTIONS(2089), 9, + ACTIONS(5054), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -277522,7 +253774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2093), 47, + ACTIONS(5056), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277534,6 +253786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -277570,14 +253823,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53410] = 5, - ACTIONS(3), 1, + [50235] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4983), 1, - aux_sym_cmd_identifier_token37, - STATE(2382), 1, + STATE(2062), 1, + aux_sym_shebang_repeat1, + STATE(2140), 1, sym_comment, - ACTIONS(1525), 9, + ACTIONS(5138), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -277587,7 +253840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1537), 47, + ACTIONS(5140), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277599,6 +253852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -277635,27 +253889,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53480] = 9, + [50306] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5387), 1, - sym__newline, - STATE(2362), 1, - aux_sym_shebang_repeat1, - STATE(2383), 1, + STATE(2141), 1, sym_comment, - ACTIONS(5390), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5398), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5392), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5296), 8, + ACTIONS(1056), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277664,7 +253904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5298), 39, + ACTIONS(1058), 49, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277676,6 +253916,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, @@ -277696,6 +253945,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -277704,13 +253954,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53558] = 4, - ACTIONS(247), 1, + [50375] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2384), 1, + ACTIONS(4785), 1, + aux_sym_cmd_identifier_token37, + STATE(2142), 1, sym_comment, - ACTIONS(3597), 9, - sym__newline, + ACTIONS(2259), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277719,7 +253970,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3595), 48, + ACTIONS(2261), 49, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277731,35 +253983,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -277768,92 +254020,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53626] = 19, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(2939), 1, - anon_sym_DQUOTE, - ACTIONS(5327), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5329), 1, - sym__newline, - STATE(2385), 1, - sym_comment, - STATE(2661), 1, - aux_sym_command_list_repeat1, - STATE(2899), 1, - aux_sym_shebang_repeat1, - STATE(5801), 1, - sym__str_double_quotes, - STATE(7263), 1, - sym__val_number_decimal, - STATE(7265), 1, - sym__command_name, - STATE(7548), 1, - sym_cmd_identifier, - STATE(7691), 1, - sym_val_string, - ACTIONS(1259), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(2941), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5321), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5325), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5323), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [53724] = 4, - ACTIONS(247), 1, + [50446] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2386), 1, + ACTIONS(4785), 1, + aux_sym_cmd_identifier_token37, + STATE(2143), 1, sym_comment, - ACTIONS(3607), 9, - sym__newline, + ACTIONS(2293), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277862,7 +254036,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3605), 48, + ACTIONS(2297), 49, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277874,35 +254049,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -277911,93 +254086,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53792] = 19, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4260), 1, - anon_sym_DQUOTE, - ACTIONS(5031), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5337), 1, - anon_sym_DASH_DASH, - STATE(2132), 1, - sym_val_string, - STATE(2155), 1, - sym_cmd_identifier, - STATE(2158), 1, - sym__str_double_quotes, - STATE(2387), 1, - sym_comment, - STATE(2811), 1, - aux_sym_decl_def_repeat1, - STATE(2997), 1, - sym_long_flag, - STATE(6608), 1, - sym__command_name, - STATE(7482), 1, - sym__val_number_decimal, - ACTIONS(1259), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4262), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5025), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5029), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5027), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [53890] = 5, + [50517] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5335), 1, - aux_sym_cmd_identifier_token41, - STATE(2388), 1, + STATE(2062), 1, + aux_sym_shebang_repeat1, + STATE(2144), 1, sym_comment, - ACTIONS(2097), 9, + ACTIONS(5204), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -278007,7 +254103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2101), 47, + ACTIONS(5206), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278019,6 +254115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -278055,14 +254152,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53960] = 5, + [50588] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5335), 1, - aux_sym_cmd_identifier_token41, - STATE(2389), 1, + STATE(2062), 1, + aux_sym_shebang_repeat1, + STATE(2145), 1, sym_comment, - ACTIONS(2105), 9, + ACTIONS(5126), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -278072,7 +254169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2107), 47, + ACTIONS(5128), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278084,6 +254181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -278120,119 +254218,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54030] = 19, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4260), 1, - anon_sym_DQUOTE, - ACTIONS(5031), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5337), 1, - anon_sym_DASH_DASH, - STATE(2132), 1, - sym_val_string, - STATE(2155), 1, - sym_cmd_identifier, - STATE(2158), 1, - sym__str_double_quotes, - STATE(2390), 1, - sym_comment, - STATE(2424), 1, - aux_sym_decl_def_repeat1, - STATE(2997), 1, - sym_long_flag, - STATE(6499), 1, - sym__command_name, - STATE(7482), 1, - sym__val_number_decimal, - ACTIONS(1259), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4262), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5025), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5029), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5027), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [54128] = 11, + [50659] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, + STATE(2015), 1, aux_sym_shebang_repeat1, - STATE(2391), 1, + STATE(2146), 1, sym_comment, - ACTIONS(5363), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5367), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5369), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5365), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5383), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5385), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5288), 9, + ACTIONS(5050), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -278242,7 +254235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5290), 27, + ACTIONS(5052), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278254,6 +254247,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -278262,6 +254266,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -278270,12 +254284,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54210] = 4, + [50730] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2392), 1, + STATE(2062), 1, + aux_sym_shebang_repeat1, + STATE(2147), 1, sym_comment, - ACTIONS(5400), 9, + ACTIONS(5138), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -278285,7 +254301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5229), 48, + ACTIONS(5140), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278334,53 +254350,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54278] = 17, + [50801] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5402), 1, - sym__newline, - ACTIONS(5409), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5411), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5413), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5415), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(2393), 1, - sym_comment, - STATE(2458), 1, + STATE(2009), 1, aux_sym_shebang_repeat1, - ACTIONS(5390), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5398), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5405), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5407), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5392), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5417), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5419), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5355), 8, + STATE(2148), 1, + sym_comment, + ACTIONS(5208), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278389,7 +254367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5357), 21, + ACTIONS(5210), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278401,80 +254379,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [54372] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5387), 1, - sym__newline, - STATE(2363), 1, - aux_sym_shebang_repeat1, - STATE(2394), 1, - sym_comment, - ACTIONS(5390), 2, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5398), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5405), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5392), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5417), 4, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5419), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5296), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5298), 27, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -278483,19 +254416,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54456] = 7, + [50872] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5421), 1, - sym__newline, - STATE(2395), 1, - sym_comment, - STATE(2475), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - ACTIONS(5390), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5359), 8, + STATE(2149), 1, + sym_comment, + ACTIONS(5138), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278504,7 +254433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5361), 45, + ACTIONS(5140), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278516,6 +254445,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, @@ -278550,47 +254482,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54530] = 14, + [50943] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5402), 1, - sym__newline, - ACTIONS(5409), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(2396), 1, - sym_comment, - STATE(2411), 1, + STATE(2136), 1, aux_sym_shebang_repeat1, - ACTIONS(5390), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5398), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5405), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5407), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5392), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5417), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5419), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5355), 8, + STATE(2150), 1, + sym_comment, + ACTIONS(5060), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278599,7 +254499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5357), 24, + ACTIONS(5062), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278611,57 +254511,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [54618] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5421), 1, - sym__newline, - STATE(2397), 1, - sym_comment, - STATE(2478), 1, - aux_sym_shebang_repeat1, - ACTIONS(5390), 2, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5392), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5359), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5361), 41, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, @@ -278692,43 +254548,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54694] = 12, + [51014] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, + STATE(2025), 1, aux_sym_shebang_repeat1, - STATE(2398), 1, + STATE(2151), 1, sym_comment, - ACTIONS(5363), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5367), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5369), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5371), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5365), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5383), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5385), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5288), 9, + ACTIONS(5054), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -278738,7 +254565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5290), 25, + ACTIONS(5056), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278750,12 +254577,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -278764,14 +254614,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54778] = 5, + [51085] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_LBRACK2, - STATE(2399), 1, + STATE(2019), 1, + aux_sym_shebang_repeat1, + STATE(2152), 1, sym_comment, - ACTIONS(2235), 8, + ACTIONS(5060), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278780,9 +254631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2239), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5062), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278793,83 +254642,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [54848] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5421), 1, - sym__newline, - STATE(2400), 1, - sym_comment, - STATE(2482), 1, - aux_sym_shebang_repeat1, - ACTIONS(5390), 2, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5398), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5392), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5359), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5361), 39, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, @@ -278898,55 +254680,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54926] = 18, + [51156] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5409), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5411), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5413), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5415), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5426), 1, - sym__newline, - ACTIONS(5428), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2401), 1, + STATE(2153), 1, sym_comment, - STATE(2462), 1, - aux_sym_shebang_repeat1, - ACTIONS(5390), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5398), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5405), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5407), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5392), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5417), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5419), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5355), 8, + ACTIONS(1060), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278955,7 +254695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5357), 20, + ACTIONS(1062), 49, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278967,79 +254707,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [55022] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5421), 1, - sym__newline, - STATE(2402), 1, - sym_comment, - STATE(2487), 1, - aux_sym_shebang_repeat1, - ACTIONS(5390), 2, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5398), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5405), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5392), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5417), 4, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5419), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5359), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5361), 27, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -279048,45 +254745,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55106] = 13, + [51225] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5387), 1, - sym__newline, - STATE(2364), 1, - aux_sym_shebang_repeat1, - STATE(2403), 1, + STATE(2154), 1, sym_comment, - ACTIONS(5390), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5398), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5405), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5407), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5392), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5417), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5419), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5296), 8, + ACTIONS(1052), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279095,7 +254760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5298), 25, + ACTIONS(1054), 49, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279107,59 +254772,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [55192] = 13, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5421), 1, - sym__newline, - STATE(2404), 1, - sym_comment, - STATE(2490), 1, - aux_sym_shebang_repeat1, - ACTIONS(5390), 2, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5405), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5407), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5392), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5417), 4, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5419), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5359), 8, + anon_sym_DOT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [51294] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(2155), 1, + sym_comment, + STATE(7428), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4745), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279168,7 +254828,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5361), 25, + ACTIONS(4743), 48, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279179,13 +254841,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -279194,78 +254877,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55278] = 4, + [51367] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2405), 1, - sym_comment, - ACTIONS(966), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(968), 50, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, - anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [55346] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5071), 1, - aux_sym_cmd_identifier_token37, - STATE(2406), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(2156), 1, sym_comment, - ACTIONS(2089), 8, + STATE(7428), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4745), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279274,7 +254895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2093), 48, + ACTIONS(4743), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -279323,20 +254944,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55416] = 4, + [51440] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2407), 1, + STATE(2157), 1, sym_comment, - ACTIONS(976), 7, + ACTIONS(4926), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(978), 50, + ACTIONS(4924), 52, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -279375,11 +254995,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, + anon_sym_PIPE, anon_sym_LBRACK, anon_sym_RPAREN, + aux_sym_ctrl_match_token1, anon_sym_RBRACE, + anon_sym_EQ_GT, sym_wild_card, - anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -279387,47 +255009,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [55484] = 14, + [51509] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5409), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5421), 1, - sym__newline, - STATE(2408), 1, - sym_comment, - STATE(2494), 1, + STATE(2149), 1, aux_sym_shebang_repeat1, - ACTIONS(5390), 2, + STATE(2158), 1, + sym_comment, + ACTIONS(5064), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5066), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5405), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5407), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5392), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5417), 4, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5419), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5359), 8, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [51580] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5212), 1, + aux_sym_cmd_identifier_token41, + STATE(2159), 1, + sym_comment, + ACTIONS(2243), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279436,7 +255091,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5361), 24, + ACTIONS(2247), 48, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279447,12 +255103,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -279461,12 +255140,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55572] = 4, + [51650] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2409), 1, + STATE(2160), 1, sym_comment, - ACTIONS(962), 7, + ACTIONS(1048), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, @@ -279474,7 +255153,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, anon_sym_DOT, - ACTIONS(964), 50, + ACTIONS(1050), 50, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -279501,262 +255180,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token28, aux_sym_cmd_identifier_token29, aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, - anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [55640] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5409), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5411), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5421), 1, - sym__newline, - STATE(2410), 1, - sym_comment, - STATE(2499), 1, - aux_sym_shebang_repeat1, - ACTIONS(5390), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5398), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5405), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5407), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5392), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5417), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5419), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5359), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5361), 23, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [55730] = 13, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5373), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2411), 1, - sym_comment, - ACTIONS(5363), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5367), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5369), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5371), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5365), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5383), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5385), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5288), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5290), 24, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [55816] = 16, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5409), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5411), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5413), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5421), 1, - sym__newline, - STATE(2412), 1, - sym_comment, - STATE(2508), 1, - aux_sym_shebang_repeat1, - ACTIONS(5390), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5398), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5405), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5407), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5392), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5417), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5419), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5359), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5361), 22, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [55908] = 5, + anon_sym_RBRACE, + sym_wild_card, + anon_sym_QMARK2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [51718] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, - aux_sym_cmd_identifier_token41, - STATE(2413), 1, + ACTIONS(4552), 1, + aux_sym_record_entry_token1, + STATE(2161), 1, sym_comment, - ACTIONS(2097), 8, + ACTIONS(1076), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279765,9 +255221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2101), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(1078), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279778,6 +255232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -279814,14 +255269,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55978] = 5, + [51788] = 19, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, - aux_sym_cmd_identifier_token41, - STATE(2414), 1, + ACTIONS(1325), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3700), 1, + anon_sym_DQUOTE, + ACTIONS(4852), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5176), 1, + anon_sym_DASH_DASH, + STATE(1929), 1, + sym_cmd_identifier, + STATE(1930), 1, + sym_val_string, + STATE(1972), 1, + sym__str_double_quotes, + STATE(2162), 1, + sym_comment, + STATE(2572), 1, + aux_sym_decl_def_repeat1, + STATE(2743), 1, + sym_long_flag, + STATE(6412), 1, + sym__command_name, + STATE(6953), 1, + sym__val_number_decimal, + ACTIONS(1323), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3702), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4846), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4850), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4848), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [51886] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4894), 1, + aux_sym_cmd_identifier_token37, + STATE(2163), 1, sym_comment, - ACTIONS(2105), 8, + ACTIONS(1575), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279830,7 +255364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2107), 48, + ACTIONS(1587), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -279879,53 +255413,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56048] = 17, + [51956] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5409), 1, + ACTIONS(5224), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5411), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5413), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5415), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5421), 1, - sym__newline, - STATE(2415), 1, - sym_comment, - STATE(2514), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - ACTIONS(5390), 2, + STATE(2164), 1, + sym_comment, + ACTIONS(5214), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5398), 2, + ACTIONS(5218), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5405), 2, + ACTIONS(5220), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5407), 2, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5392), 4, + ACTIONS(5216), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5417), 4, + ACTIONS(5226), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5419), 6, + ACTIONS(5228), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5359), 8, + ACTIONS(5142), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279934,7 +255461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5361), 21, + ACTIONS(5144), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279946,6 +255473,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, @@ -279956,47 +255486,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56142] = 14, + [52042] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5387), 1, - sym__newline, - ACTIONS(5409), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(2365), 1, - aux_sym_shebang_repeat1, - STATE(2416), 1, + ACTIONS(5188), 1, + aux_sym__immediate_decimal_token2, + STATE(2165), 1, sym_comment, - ACTIONS(5390), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5398), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5405), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5407), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5392), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5417), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5419), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5296), 8, + ACTIONS(1497), 10, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1499), 46, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [52112] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4799), 1, + aux_sym_cmd_identifier_token37, + STATE(2166), 1, + sym_comment, + ACTIONS(2259), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280005,7 +255567,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5298), 24, + ACTIONS(2261), 48, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280016,12 +255579,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -280030,14 +255616,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56230] = 5, + [52182] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5071), 1, + ACTIONS(4799), 1, aux_sym_cmd_identifier_token37, - STATE(2417), 1, + STATE(2167), 1, sym_comment, - ACTIONS(1525), 8, + ACTIONS(2293), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280046,8 +255632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1537), 48, - ts_builtin_sym_end, + ACTIONS(2297), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280059,6 +255644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -280095,55 +255681,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56300] = 18, + [52252] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5409), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5411), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5413), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5415), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5426), 1, - sym__newline, - ACTIONS(5428), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2418), 1, + STATE(2168), 1, sym_comment, - STATE(2517), 1, - aux_sym_shebang_repeat1, - ACTIONS(5390), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5398), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5405), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5407), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5392), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5417), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5419), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5359), 8, + ACTIONS(1076), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280152,7 +255696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5361), 20, + ACTIONS(1078), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280164,66 +255708,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [56396] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5421), 1, - sym__newline, - STATE(2419), 1, - sym_comment, - STATE(2520), 1, - aux_sym_shebang_repeat1, - ACTIONS(5390), 2, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5398), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5405), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5392), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5419), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5359), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5361), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -280236,6 +255731,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -280244,12 +255745,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56478] = 4, + [52320] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2420), 1, + STATE(2062), 1, + aux_sym_shebang_repeat1, + STATE(2169), 1, sym_comment, - ACTIONS(3593), 9, + ACTIONS(5214), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5178), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -280259,7 +255765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3591), 48, + ACTIONS(5180), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280271,9 +255777,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, @@ -280308,37 +255811,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56546] = 11, + [52392] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5402), 1, - sym__newline, - STATE(2421), 1, - sym_comment, - STATE(2476), 1, + ACTIONS(5224), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5230), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(2062), 1, aux_sym_shebang_repeat1, - ACTIONS(5390), 2, + STATE(2170), 1, + sym_comment, + ACTIONS(5214), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5398), 2, + ACTIONS(5218), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5405), 2, + ACTIONS(5220), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5392), 4, + ACTIONS(5222), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5216), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5419), 6, + ACTIONS(5226), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5228), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5355), 8, + ACTIONS(5190), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280347,7 +255861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5357), 31, + ACTIONS(5192), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280359,18 +255873,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -280379,30 +255885,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56628] = 10, + [52480] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5421), 1, - sym__newline, - STATE(2422), 1, - sym_comment, - STATE(2526), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - ACTIONS(5390), 2, + STATE(2171), 1, + sym_comment, + ACTIONS(5214), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5398), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5405), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5392), 4, + ACTIONS(5216), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5359), 8, + ACTIONS(5178), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280411,7 +255910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5361), 37, + ACTIONS(5180), 41, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280423,6 +255922,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -280449,47 +255952,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56708] = 14, + [52554] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5373), 1, + ACTIONS(5224), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5375), 1, + ACTIONS(5230), 1, aux_sym_expr_binary_parenthesized_token14, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(2423), 1, + STATE(2172), 1, sym_comment, - ACTIONS(5363), 2, + ACTIONS(5214), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5367), 2, + ACTIONS(5218), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5369), 2, + ACTIONS(5220), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5371), 2, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5365), 4, + ACTIONS(5216), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5383), 4, + ACTIONS(5226), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5385), 6, + ACTIONS(5228), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5288), 9, + ACTIONS(5142), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -280499,7 +256002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5290), 23, + ACTIONS(5144), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280523,93 +256026,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56796] = 19, + [52642] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4260), 1, - anon_sym_DQUOTE, - ACTIONS(5031), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5337), 1, - anon_sym_DASH_DASH, - STATE(2132), 1, - sym_val_string, - STATE(2155), 1, - sym_cmd_identifier, - STATE(2158), 1, - sym__str_double_quotes, - STATE(2424), 1, + STATE(2062), 1, + aux_sym_shebang_repeat1, + STATE(2173), 1, sym_comment, - STATE(2811), 1, - aux_sym_decl_def_repeat1, - STATE(2997), 1, - sym_long_flag, - STATE(6632), 1, - sym__command_name, - STATE(7482), 1, - sym__val_number_decimal, - ACTIONS(1259), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4262), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5025), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5029), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5027), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [56894] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5224), 1, + ACTIONS(5214), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5218), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5216), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5178), 9, sym__newline, - STATE(2425), 1, - sym_comment, - ACTIONS(5231), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280618,7 +256054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5227), 20, + ACTIONS(5180), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280630,24 +256066,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(5229), 28, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, @@ -280668,49 +256086,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [56966] = 15, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [52718] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5402), 1, + ACTIONS(5232), 1, sym__newline, - ACTIONS(5409), 1, + ACTIONS(5245), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5411), 1, + ACTIONS(5247), 1, aux_sym_expr_binary_parenthesized_token14, - STATE(2423), 1, - aux_sym_shebang_repeat1, - STATE(2426), 1, + STATE(2174), 1, sym_comment, - ACTIONS(5390), 2, + STATE(2183), 1, + aux_sym_shebang_repeat1, + ACTIONS(5235), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5398), 2, + ACTIONS(5239), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5405), 2, + ACTIONS(5241), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5407), 2, + ACTIONS(5243), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5392), 4, + ACTIONS(5237), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5417), 4, + ACTIONS(5249), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5419), 6, + ACTIONS(5251), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5355), 8, + ACTIONS(5200), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280719,7 +256145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5357), 23, + ACTIONS(5202), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280743,146 +256169,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57056] = 37, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_DASH, - ACTIONS(3219), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3245), 1, - anon_sym_null, - ACTIONS(3387), 1, - aux_sym_expr_unary_token1, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3393), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3395), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5113), 1, - anon_sym_LPAREN, - ACTIONS(5115), 1, - anon_sym_DOLLAR, - STATE(1540), 1, - sym_expr_parenthesized, - STATE(1541), 1, - sym_val_variable, - STATE(1668), 1, - sym__str_double_quotes, - STATE(1686), 1, - sym__inter_single_quotes, - STATE(1688), 1, - sym__inter_double_quotes, - STATE(1709), 1, - sym__expr_unary_minus, - STATE(1907), 1, - sym__val_number, - STATE(2427), 1, - sym_comment, - STATE(2941), 1, - sym__val_number_decimal, - STATE(3727), 1, - sym_val_range, - STATE(4050), 1, - sym__expr_binary_expression, - STATE(5890), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3243), 2, - anon_sym_true, - anon_sym_false, - STATE(1690), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1734), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [57190] = 15, + [52808] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5387), 1, - sym__newline, - ACTIONS(5409), 1, + ACTIONS(5224), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5411), 1, + ACTIONS(5230), 1, aux_sym_expr_binary_parenthesized_token14, - STATE(2366), 1, + ACTIONS(5253), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(2428), 1, + STATE(2175), 1, sym_comment, - ACTIONS(5390), 2, + ACTIONS(5214), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5398), 2, + ACTIONS(5218), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5405), 2, + ACTIONS(5220), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5407), 2, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5392), 4, + ACTIONS(5216), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5417), 4, + ACTIONS(5226), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5419), 6, + ACTIONS(5228), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5296), 8, + ACTIONS(5142), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280891,7 +256221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5298), 23, + ACTIONS(5144), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280903,7 +256233,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, @@ -280915,79 +256244,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57280] = 5, - ACTIONS(3), 1, + [52898] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4932), 1, - aux_sym_cmd_identifier_token37, - STATE(2429), 1, + STATE(2062), 1, + aux_sym_shebang_repeat1, + STATE(2176), 1, sym_comment, - ACTIONS(2131), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2133), 48, + ACTIONS(5214), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5218), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5220), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5216), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5226), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5228), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5178), 9, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [57350] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4932), 1, - aux_sym_cmd_identifier_token37, - STATE(2430), 1, - sym_comment, - ACTIONS(2089), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280996,8 +256287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2093), 48, - sym__newline, + ACTIONS(5180), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281008,35 +256298,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -281045,12 +256315,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57420] = 4, + [52980] = 12, ACTIONS(247), 1, anon_sym_POUND, - STATE(2431), 1, + STATE(2062), 1, + aux_sym_shebang_repeat1, + STATE(2177), 1, sym_comment, - ACTIONS(1006), 9, + ACTIONS(5214), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5218), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5220), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5222), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5216), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5226), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5228), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5178), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -281060,7 +256361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1008), 48, + ACTIONS(5180), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281072,35 +256373,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -281109,30 +256387,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57488] = 10, + [53064] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5402), 1, - sym__newline, - STATE(2432), 1, - sym_comment, - STATE(2485), 1, + ACTIONS(5224), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(2062), 1, aux_sym_shebang_repeat1, - ACTIONS(5390), 2, + STATE(2178), 1, + sym_comment, + ACTIONS(5214), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5398), 2, + ACTIONS(5218), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5405), 2, + ACTIONS(5220), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5392), 4, + ACTIONS(5222), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5216), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5355), 8, + ACTIONS(5226), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5228), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5178), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281141,7 +256435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5357), 37, + ACTIONS(5180), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281153,24 +256447,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -281179,14 +256460,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57568] = 5, - ACTIONS(247), 1, + [53150] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5432), 1, - aux_sym_cmd_identifier_token41, - STATE(2433), 1, + ACTIONS(4894), 1, + aux_sym_cmd_identifier_token37, + STATE(2179), 1, sym_comment, - ACTIONS(2097), 8, + ACTIONS(2259), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281195,7 +256476,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2101), 48, + ACTIONS(2261), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281207,7 +256489,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -281244,14 +256525,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57638] = 5, + [53220] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5432), 1, + ACTIONS(5212), 1, aux_sym_cmd_identifier_token41, - STATE(2434), 1, + STATE(2180), 1, sym_comment, - ACTIONS(2105), 8, + ACTIONS(2251), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281260,7 +256541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2107), 48, + ACTIONS(2253), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281309,12 +256590,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57708] = 4, + [53290] = 16, ACTIONS(247), 1, anon_sym_POUND, - STATE(2435), 1, + ACTIONS(5224), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5230), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5253), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5255), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(2062), 1, + aux_sym_shebang_repeat1, + STATE(2181), 1, sym_comment, - ACTIONS(1778), 9, + ACTIONS(5214), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5218), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5220), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5222), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5216), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5226), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5228), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5142), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5144), 21, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [53382] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2182), 1, + sym_comment, + ACTIONS(1879), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -281324,7 +256681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1780), 48, + ACTIONS(1881), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281373,12 +256730,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57776] = 4, + [53450] = 14, ACTIONS(247), 1, anon_sym_POUND, - STATE(2436), 1, + ACTIONS(5224), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5230), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(2062), 1, + aux_sym_shebang_repeat1, + STATE(2183), 1, + sym_comment, + ACTIONS(5214), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5218), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5220), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5222), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5216), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5226), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5228), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5178), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5180), 23, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [53538] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2184), 1, sym_comment, - ACTIONS(1770), 9, + ACTIONS(1961), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -281388,7 +256819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1772), 48, + ACTIONS(1963), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281437,12 +256868,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57844] = 4, + [53606] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2437), 1, + STATE(2185), 1, sym_comment, - ACTIONS(2315), 9, + ACTIONS(2355), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -281452,7 +256883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2317), 48, + ACTIONS(2357), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281501,49 +256932,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57912] = 15, + [53674] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5373), 1, + ACTIONS(5224), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5375), 1, + ACTIONS(5230), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5377), 1, + ACTIONS(5253), 1, aux_sym_expr_binary_parenthesized_token15, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(2438), 1, + STATE(2186), 1, sym_comment, - ACTIONS(5363), 2, + ACTIONS(5214), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5367), 2, + ACTIONS(5218), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5369), 2, + ACTIONS(5220), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5371), 2, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5365), 4, + ACTIONS(5216), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5383), 4, + ACTIONS(5226), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5385), 6, + ACTIONS(5228), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5288), 9, + ACTIONS(5178), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -281553,7 +256984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5290), 22, + ACTIONS(5180), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281576,15 +257007,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58002] = 5, + [53764] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2439), 1, + STATE(2187), 1, sym_comment, - ACTIONS(5434), 2, + ACTIONS(5257), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(3603), 8, + ACTIONS(4974), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281593,7 +257024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3601), 47, + ACTIONS(4972), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281641,20 +257072,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58072] = 6, + [53834] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2440), 1, + STATE(2188), 1, sym_comment, - ACTIONS(5434), 2, + ACTIONS(5257), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(5436), 4, + ACTIONS(5259), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(3603), 8, + ACTIONS(4974), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281663,7 +257094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3601), 43, + ACTIONS(4972), 43, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281707,23 +257138,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58144] = 7, + [53906] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(2441), 1, + STATE(2189), 1, sym_comment, - ACTIONS(5434), 2, + ACTIONS(5257), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(5438), 2, + ACTIONS(5261), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(5436), 4, + ACTIONS(5259), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(3603), 8, + ACTIONS(4974), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281732,7 +257163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3601), 41, + ACTIONS(4972), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281774,38 +257205,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58218] = 10, + [53980] = 10, ACTIONS(247), 1, anon_sym_POUND, - STATE(2442), 1, + STATE(2190), 1, sym_comment, - ACTIONS(5434), 2, + ACTIONS(5257), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(5438), 2, + ACTIONS(5261), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(5440), 2, + ACTIONS(5263), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(5436), 4, + ACTIONS(5259), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(5442), 4, + ACTIONS(5265), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(5444), 6, + ACTIONS(5267), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(3603), 8, + ACTIONS(4974), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281814,7 +257245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3601), 29, + ACTIONS(4972), 29, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281844,41 +257275,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58298] = 11, + [54060] = 11, ACTIONS(247), 1, anon_sym_POUND, - STATE(2443), 1, + STATE(2191), 1, sym_comment, - ACTIONS(5434), 2, + ACTIONS(5257), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(5438), 2, + ACTIONS(5261), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(5440), 2, + ACTIONS(5263), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(5446), 2, + ACTIONS(5269), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(5436), 4, + ACTIONS(5259), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(5442), 4, + ACTIONS(5265), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(5444), 6, + ACTIONS(5267), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(3603), 8, + ACTIONS(4974), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281887,7 +257318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3601), 27, + ACTIONS(4972), 27, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281915,43 +257346,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58380] = 12, + [54142] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5448), 1, + ACTIONS(5271), 1, aux_sym_expr_binary_token13, - STATE(2444), 1, + STATE(2192), 1, sym_comment, - ACTIONS(5434), 2, + ACTIONS(5257), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(5438), 2, + ACTIONS(5261), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(5440), 2, + ACTIONS(5263), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(5446), 2, + ACTIONS(5269), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(5436), 4, + ACTIONS(5259), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(5442), 4, + ACTIONS(5265), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(5444), 6, + ACTIONS(5267), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(3603), 8, + ACTIONS(4974), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281960,7 +257391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3601), 26, + ACTIONS(4972), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281987,45 +257418,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58464] = 13, + [54226] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5448), 1, + ACTIONS(5271), 1, aux_sym_expr_binary_token13, - ACTIONS(5450), 1, + ACTIONS(5273), 1, aux_sym_expr_binary_token14, - STATE(2445), 1, + STATE(2193), 1, sym_comment, - ACTIONS(5434), 2, + ACTIONS(5257), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(5438), 2, + ACTIONS(5261), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(5440), 2, + ACTIONS(5263), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(5446), 2, + ACTIONS(5269), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(5436), 4, + ACTIONS(5259), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(5442), 4, + ACTIONS(5265), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(5444), 6, + ACTIONS(5267), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(3603), 8, + ACTIONS(4974), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282034,7 +257465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3601), 25, + ACTIONS(4972), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282060,47 +257491,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58550] = 14, + [54312] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5448), 1, + ACTIONS(5271), 1, aux_sym_expr_binary_token13, - ACTIONS(5450), 1, + ACTIONS(5273), 1, aux_sym_expr_binary_token14, - ACTIONS(5452), 1, + ACTIONS(5275), 1, aux_sym_expr_binary_token15, - STATE(2446), 1, + STATE(2194), 1, sym_comment, - ACTIONS(5434), 2, + ACTIONS(5257), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(5438), 2, + ACTIONS(5261), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(5440), 2, + ACTIONS(5263), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(5446), 2, + ACTIONS(5269), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(5436), 4, + ACTIONS(5259), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(5442), 4, + ACTIONS(5265), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(5444), 6, + ACTIONS(5267), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(3603), 8, + ACTIONS(4974), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282109,7 +257540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3601), 24, + ACTIONS(4972), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282134,49 +257565,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58638] = 15, + [54400] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5448), 1, + ACTIONS(5271), 1, aux_sym_expr_binary_token13, - ACTIONS(5450), 1, + ACTIONS(5273), 1, aux_sym_expr_binary_token14, - ACTIONS(5452), 1, + ACTIONS(5275), 1, aux_sym_expr_binary_token15, - ACTIONS(5454), 1, + ACTIONS(5277), 1, aux_sym_expr_binary_token16, - STATE(2447), 1, + STATE(2195), 1, sym_comment, - ACTIONS(5434), 2, + ACTIONS(5257), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(5438), 2, + ACTIONS(5261), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(5440), 2, + ACTIONS(5263), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(5446), 2, + ACTIONS(5269), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(5436), 4, + ACTIONS(5259), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(5442), 4, + ACTIONS(5265), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(5444), 6, + ACTIONS(5267), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(3603), 8, + ACTIONS(4974), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282185,7 +257616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3601), 23, + ACTIONS(4972), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282209,51 +257640,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58728] = 16, + [54490] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5448), 1, + ACTIONS(5271), 1, aux_sym_expr_binary_token13, - ACTIONS(5450), 1, + ACTIONS(5273), 1, aux_sym_expr_binary_token14, - ACTIONS(5452), 1, + ACTIONS(5275), 1, aux_sym_expr_binary_token15, - ACTIONS(5454), 1, + ACTIONS(5277), 1, aux_sym_expr_binary_token16, - ACTIONS(5456), 1, + ACTIONS(5279), 1, aux_sym_expr_binary_token17, - STATE(2448), 1, + STATE(2196), 1, sym_comment, - ACTIONS(5434), 2, + ACTIONS(5257), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(5438), 2, + ACTIONS(5261), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(5440), 2, + ACTIONS(5263), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(5446), 2, + ACTIONS(5269), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(5436), 4, + ACTIONS(5259), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(5442), 4, + ACTIONS(5265), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(5444), 6, + ACTIONS(5267), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(3603), 8, + ACTIONS(4974), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282262,7 +257693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3601), 22, + ACTIONS(4972), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282285,33 +257716,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58820] = 9, + [54582] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(2449), 1, + STATE(2197), 1, sym_comment, - ACTIONS(5434), 2, + ACTIONS(5257), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(5438), 2, + ACTIONS(5261), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(5440), 2, + ACTIONS(5263), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(5436), 4, + ACTIONS(5259), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(5444), 6, + ACTIONS(5267), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(3603), 8, + ACTIONS(4974), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282320,7 +257751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3601), 33, + ACTIONS(4972), 33, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282354,26 +257785,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58898] = 8, + [54660] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2450), 1, + STATE(2198), 1, sym_comment, - ACTIONS(5434), 2, + ACTIONS(5257), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(5438), 2, + ACTIONS(5261), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(5440), 2, + ACTIONS(5263), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(5436), 4, + ACTIONS(5259), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(3603), 8, + ACTIONS(4974), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282382,7 +257813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3601), 39, + ACTIONS(4972), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282422,261 +257853,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58974] = 16, + [54736] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5373), 1, + ACTIONS(5224), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5375), 1, + ACTIONS(5230), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5377), 1, + ACTIONS(5253), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5379), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(2451), 1, - sym_comment, - ACTIONS(5363), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5367), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5369), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5371), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5365), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5383), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5385), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5280), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5282), 21, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [59066] = 19, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4260), 1, - anon_sym_DQUOTE, - ACTIONS(5031), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5337), 1, - anon_sym_DASH_DASH, - STATE(2132), 1, - sym_val_string, - STATE(2155), 1, - sym_cmd_identifier, - STATE(2158), 1, - sym__str_double_quotes, - STATE(2387), 1, - aux_sym_decl_def_repeat1, - STATE(2452), 1, - sym_comment, - STATE(2997), 1, - sym_long_flag, - STATE(6474), 1, - sym__command_name, - STATE(7482), 1, - sym__val_number_decimal, - ACTIONS(1259), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4262), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5025), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5029), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5027), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [59164] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2453), 1, + STATE(2199), 1, sym_comment, - ACTIONS(2251), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2253), 48, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + ACTIONS(5214), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5218), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5220), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [59232] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5402), 1, - sym__newline, - STATE(2391), 1, - aux_sym_shebang_repeat1, - STATE(2454), 1, - sym_comment, - ACTIONS(5390), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5398), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5405), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5392), 4, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5216), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5417), 4, + ACTIONS(5226), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5419), 6, + ACTIONS(5228), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5355), 8, + ACTIONS(5190), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282685,7 +257905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5357), 27, + ACTIONS(5192), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -282697,11 +257917,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, @@ -282713,51 +257928,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59316] = 16, + [54826] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5387), 1, - sym__newline, - ACTIONS(5409), 1, + ACTIONS(5224), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5411), 1, + ACTIONS(5230), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5413), 1, + ACTIONS(5253), 1, aux_sym_expr_binary_parenthesized_token15, - STATE(2368), 1, + ACTIONS(5255), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(2455), 1, + STATE(2200), 1, sym_comment, - ACTIONS(5390), 2, + ACTIONS(5214), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5398), 2, + ACTIONS(5218), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5405), 2, + ACTIONS(5220), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5407), 2, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5392), 4, + ACTIONS(5216), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5417), 4, + ACTIONS(5226), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5419), 6, + ACTIONS(5228), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5296), 8, + ACTIONS(5178), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282766,7 +257982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5298), 22, + ACTIONS(5180), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -282778,7 +257994,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, @@ -282789,12 +258004,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59408] = 4, + [54918] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2456), 1, + STATE(2201), 1, sym_comment, - ACTIONS(2303), 9, + ACTIONS(2443), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -282804,7 +258019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2305), 48, + ACTIONS(2445), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -282853,17 +258068,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59476] = 6, + [54986] = 17, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, + ACTIONS(5224), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5230), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5253), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5255), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5281), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(2457), 1, + STATE(2202), 1, sym_comment, - ACTIONS(5363), 2, + ACTIONS(5214), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5280), 9, + ACTIONS(5218), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5220), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5222), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5216), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5226), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5228), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5178), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -282873,7 +258124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5282), 45, + ACTIONS(5180), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -282885,32 +258136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -282919,52 +258145,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59548] = 16, + [55080] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5373), 1, + ACTIONS(5232), 1, + sym__newline, + ACTIONS(5245), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5375), 1, + ACTIONS(5247), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5377), 1, + ACTIONS(5283), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5379), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(2192), 1, + STATE(2186), 1, aux_sym_shebang_repeat1, - STATE(2458), 1, + STATE(2203), 1, sym_comment, - ACTIONS(5363), 2, + ACTIONS(5235), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5367), 2, + ACTIONS(5239), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5369), 2, + ACTIONS(5241), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5371), 2, + ACTIONS(5243), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5365), 4, + ACTIONS(5237), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5383), 4, + ACTIONS(5249), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5385), 6, + ACTIONS(5251), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5288), 9, - sym__newline, + ACTIONS(5200), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282973,7 +258198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5290), 21, + ACTIONS(5202), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -282985,6 +258210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, @@ -282995,22 +258221,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59640] = 7, + [55172] = 10, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(2459), 1, + STATE(2204), 1, sym_comment, - ACTIONS(5363), 2, + ACTIONS(5214), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5365), 4, + ACTIONS(5218), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5220), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5216), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5280), 9, + ACTIONS(5228), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5178), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -283020,7 +258259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5282), 41, + ACTIONS(5180), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -283032,10 +258271,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -283048,12 +258283,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -283062,53 +258291,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59714] = 17, + [55252] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5387), 1, - sym__newline, - ACTIONS(5409), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5411), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5413), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5415), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(2369), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(2460), 1, + STATE(2205), 1, sym_comment, - ACTIONS(5390), 2, + ACTIONS(5214), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5398), 2, + ACTIONS(5218), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5405), 2, + ACTIONS(5220), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5407), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5392), 4, + ACTIONS(5216), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5417), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5419), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5296), 8, + ACTIONS(5178), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283117,7 +258322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5298), 21, + ACTIONS(5180), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -283129,182 +258334,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [59808] = 37, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_DASH, - ACTIONS(3219), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3245), 1, - anon_sym_null, - ACTIONS(3387), 1, - aux_sym_expr_unary_token1, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3393), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3395), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5113), 1, - anon_sym_LPAREN, - ACTIONS(5115), 1, - anon_sym_DOLLAR, - STATE(1540), 1, - sym_expr_parenthesized, - STATE(1541), 1, - sym_val_variable, - STATE(1668), 1, - sym__str_double_quotes, - STATE(1686), 1, - sym__inter_single_quotes, - STATE(1688), 1, - sym__inter_double_quotes, - STATE(1709), 1, - sym__expr_unary_minus, - STATE(1907), 1, - sym__val_number, - STATE(2461), 1, - sym_comment, - STATE(2941), 1, - sym__val_number_decimal, - STATE(3727), 1, - sym_val_range, - STATE(4050), 1, - sym__expr_binary_expression, - STATE(5858), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3243), 2, - anon_sym_true, - anon_sym_false, - STATE(1690), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1734), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [59942] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5373), 1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5375), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5377), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5379), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5381), 1, aux_sym_expr_binary_parenthesized_token17, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2462), 1, - sym_comment, - ACTIONS(5363), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5367), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5369), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5371), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5365), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5383), 4, + aux_sym_expr_binary_parenthesized_token18, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5385), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5288), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5290), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -283313,206 +258360,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60036] = 37, - ACTIONS(161), 1, - anon_sym_LPAREN, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(269), 1, - anon_sym_DOLLAR, - ACTIONS(397), 1, - anon_sym_DASH, - ACTIONS(3219), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3225), 1, - aux_sym_expr_unary_token1, - ACTIONS(3229), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3231), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3233), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3235), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3245), 1, - anon_sym_null, - ACTIONS(5351), 1, - anon_sym_DOT_DOT, - STATE(1668), 1, - sym__str_double_quotes, - STATE(1686), 1, - sym__inter_single_quotes, - STATE(1688), 1, - sym__inter_double_quotes, - STATE(1709), 1, - sym__expr_unary_minus, - STATE(1907), 1, - sym__val_number, - STATE(2463), 1, - sym_comment, - STATE(3727), 1, - sym_val_range, - STATE(3730), 1, - sym__val_number_decimal, - STATE(3758), 1, - sym_val_variable, - STATE(3761), 1, - sym_expr_parenthesized, - STATE(4067), 1, - sym__expr_binary_expression, - STATE(7555), 1, - sym__expression, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3243), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5353), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1690), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1734), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [60170] = 37, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_DASH, - ACTIONS(3219), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3245), 1, - anon_sym_null, - ACTIONS(3387), 1, - aux_sym_expr_unary_token1, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3393), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3395), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5113), 1, - anon_sym_LPAREN, - ACTIONS(5115), 1, - anon_sym_DOLLAR, - STATE(1540), 1, - sym_expr_parenthesized, - STATE(1541), 1, - sym_val_variable, - STATE(1668), 1, - sym__str_double_quotes, - STATE(1686), 1, - sym__inter_single_quotes, - STATE(1688), 1, - sym__inter_double_quotes, - STATE(1709), 1, - sym__expr_unary_minus, - STATE(1907), 1, - sym__val_number, - STATE(2464), 1, - sym_comment, - STATE(2941), 1, - sym__val_number_decimal, - STATE(3727), 1, - sym_val_range, - STATE(4050), 1, - sym__expr_binary_expression, - STATE(5860), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3243), 2, - anon_sym_true, - anon_sym_false, - STATE(1690), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1734), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [60304] = 4, + [55330] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2465), 1, + STATE(2206), 1, sym_comment, - ACTIONS(2311), 9, + ACTIONS(2453), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -283522,7 +258375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2313), 48, + ACTIONS(2455), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -283571,12 +258424,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60372] = 4, + [55398] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2466), 1, + STATE(2207), 1, sym_comment, - ACTIONS(2311), 9, + ACTIONS(2457), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -283586,7 +258439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2313), 48, + ACTIONS(2459), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -283635,14 +258488,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60440] = 5, + [55466] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4920), 1, - aux_sym_unquoted_token2, - STATE(2467), 1, + ACTIONS(5224), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5230), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5253), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5255), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(2062), 1, + aux_sym_shebang_repeat1, + STATE(2208), 1, sym_comment, - ACTIONS(1525), 8, + ACTIONS(5214), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5218), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5220), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5222), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5216), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5226), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5228), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5190), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283651,9 +258542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1537), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5192), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -283664,34 +258553,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -283700,76 +258564,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60510] = 4, + [55558] = 17, ACTIONS(247), 1, anon_sym_POUND, - STATE(2468), 1, + ACTIONS(5224), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5230), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5253), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5255), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5281), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2062), 1, + aux_sym_shebang_repeat1, + STATE(2209), 1, sym_comment, - ACTIONS(2271), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2273), 48, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + ACTIONS(5214), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5218), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5220), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + ACTIONS(5216), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5226), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5228), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [60578] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2469), 1, - sym_comment, - ACTIONS(2241), 9, + ACTIONS(5142), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -283779,7 +258620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2243), 48, + ACTIONS(5144), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -283791,35 +258632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -283828,150 +258641,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60646] = 13, + [55652] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5458), 1, - anon_sym_DOLLAR, - ACTIONS(5460), 1, - anon_sym_LPAREN2, - ACTIONS(5462), 1, - anon_sym_DOT, - ACTIONS(5464), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5466), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5468), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5470), 1, - aux_sym__immediate_decimal_token5, - STATE(2470), 1, - sym_comment, - STATE(2847), 1, - sym__immediate_decimal, - STATE(2905), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1413), 19, - anon_sym_LPAREN, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1427), 28, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(5232), 1, sym__newline, - anon_sym_LBRACK, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [60732] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2471), 1, + ACTIONS(5245), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5247), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5283), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5285), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(2200), 1, + aux_sym_shebang_repeat1, + STATE(2210), 1, sym_comment, - ACTIONS(2263), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2265), 48, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, + ACTIONS(5235), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5239), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5241), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5243), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + ACTIONS(5237), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5249), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5251), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [60800] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2472), 1, - sym_comment, - ACTIONS(2295), 9, - sym__newline, + ACTIONS(5200), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283980,7 +258696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2297), 48, + ACTIONS(5202), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -283992,35 +258708,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -284029,55 +258718,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60868] = 18, + [55746] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5409), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5411), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5413), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5415), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5426), 1, - sym__newline, - ACTIONS(5428), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2371), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(2473), 1, + STATE(2211), 1, sym_comment, - ACTIONS(5390), 2, + ACTIONS(5214), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5398), 2, + ACTIONS(5218), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5405), 2, + ACTIONS(5220), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5407), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5392), 4, + ACTIONS(5216), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5417), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5419), 6, + ACTIONS(5228), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5296), 8, + ACTIONS(5142), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284086,7 +258756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5298), 20, + ACTIONS(5144), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -284098,7 +258768,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -284107,25 +258788,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60964] = 8, + [55826] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, + ACTIONS(5287), 1, + aux_sym__immediate_decimal_token2, + STATE(2212), 1, + sym_comment, + ACTIONS(1565), 10, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1567), 46, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [55896] = 19, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1325), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3700), 1, + anon_sym_DQUOTE, + ACTIONS(4852), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5176), 1, + anon_sym_DASH_DASH, + STATE(1929), 1, + sym_cmd_identifier, + STATE(1930), 1, + sym_val_string, + STATE(1972), 1, + sym__str_double_quotes, + STATE(2162), 1, + aux_sym_decl_def_repeat1, + STATE(2213), 1, + sym_comment, + STATE(2743), 1, + sym_long_flag, + STATE(6564), 1, + sym__command_name, + STATE(6953), 1, + sym__val_number_decimal, + ACTIONS(1323), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3702), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4846), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4850), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4848), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [55994] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(2474), 1, + STATE(2214), 1, sym_comment, - ACTIONS(5363), 2, + ACTIONS(5214), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5367), 2, + ACTIONS(5218), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5365), 4, + ACTIONS(5220), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5216), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5280), 9, + ACTIONS(5142), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -284135,7 +258963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5282), 39, + ACTIONS(5144), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -284147,8 +258975,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -284175,17 +259001,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61040] = 6, + [56072] = 19, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1325), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3004), 1, + anon_sym_DQUOTE, + ACTIONS(5164), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5166), 1, + sym__newline, + STATE(2215), 1, + sym_comment, + STATE(2450), 1, + aux_sym_command_list_repeat1, + STATE(2680), 1, + aux_sym_shebang_repeat1, + STATE(5345), 1, + sym__str_double_quotes, + STATE(7022), 1, + sym__val_number_decimal, + STATE(7033), 1, + sym__command_name, + STATE(7334), 1, + sym_cmd_identifier, + STATE(7335), 1, + sym_val_string, + ACTIONS(1323), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3006), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5158), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(5162), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5160), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [56170] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(2475), 1, + STATE(2216), 1, sym_comment, - ACTIONS(5363), 2, + ACTIONS(5214), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5339), 9, + ACTIONS(5142), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -284195,7 +259100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5341), 45, + ACTIONS(5144), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -284241,35 +259146,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61112] = 10, - ACTIONS(247), 1, + [56242] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2476), 1, + ACTIONS(4785), 1, + aux_sym_cmd_identifier_token37, + STATE(2217), 1, sym_comment, - ACTIONS(5363), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5367), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5369), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5365), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5385), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5288), 9, + ACTIONS(2259), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -284279,7 +259163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5290), 31, + ACTIONS(2261), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -284291,6 +259175,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -284303,6 +259197,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -284311,19 +259211,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61192] = 7, + [56312] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5472), 1, - sym__newline, - STATE(2457), 1, - aux_sym_shebang_repeat1, - STATE(2477), 1, + STATE(2218), 1, sym_comment, - ACTIONS(5390), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5347), 8, + ACTIONS(2364), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284332,7 +259226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5349), 45, + ACTIONS(2366), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -284344,6 +259238,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, @@ -284378,22 +259275,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61266] = 7, + [56380] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2478), 1, + STATE(2219), 1, sym_comment, - ACTIONS(5363), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5365), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5339), 9, + ACTIONS(2364), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -284403,7 +259290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5341), 41, + ACTIONS(2366), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -284415,6 +259302,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, @@ -284445,37 +259339,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61340] = 11, + [56448] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5387), 1, - sym__newline, - STATE(2373), 1, - aux_sym_shebang_repeat1, - STATE(2479), 1, + ACTIONS(5289), 1, + anon_sym_LBRACK2, + STATE(2220), 1, sym_comment, - ACTIONS(5390), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5398), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5405), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5392), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5419), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5296), 8, + ACTIONS(2303), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284484,7 +259355,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5298), 31, + ACTIONS(2307), 48, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -284495,19 +259368,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -284516,24 +259404,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61422] = 8, - ACTIONS(247), 1, + [56518] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5472), 1, - sym__newline, - STATE(2459), 1, - aux_sym_shebang_repeat1, - STATE(2480), 1, + ACTIONS(4785), 1, + aux_sym_cmd_identifier_token37, + STATE(2221), 1, sym_comment, - ACTIONS(5390), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5392), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5347), 8, + ACTIONS(2293), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284542,7 +259421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5349), 41, + ACTIONS(2297), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -284554,6 +259433,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, @@ -284584,41 +259469,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61498] = 11, + [56588] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2481), 1, + ACTIONS(4712), 1, + aux_sym_unquoted_token2, + STATE(2222), 1, sym_comment, - ACTIONS(5363), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5367), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5369), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5365), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5383), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5385), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5280), 9, - sym__newline, + ACTIONS(1575), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284627,7 +259485,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5282), 27, + ACTIONS(1587), 48, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -284638,15 +259498,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -284655,25 +259534,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61580] = 8, + [56658] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2482), 1, + STATE(2223), 1, sym_comment, - ACTIONS(5363), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5367), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5365), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5339), 9, + ACTIONS(2372), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -284683,7 +259549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5341), 39, + ACTIONS(2374), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -284695,6 +259561,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, @@ -284723,12 +259598,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61656] = 4, + [56726] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2483), 1, + STATE(2224), 1, sym_comment, - ACTIONS(2131), 9, + ACTIONS(2376), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -284738,7 +259613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2133), 48, + ACTIONS(2378), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -284787,27 +259662,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61724] = 9, - ACTIONS(247), 1, + [56794] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5472), 1, - sym__newline, - STATE(2474), 1, - aux_sym_shebang_repeat1, - STATE(2484), 1, + ACTIONS(4785), 1, + aux_sym_cmd_identifier_token37, + STATE(2225), 1, sym_comment, - ACTIONS(5390), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5398), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5392), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5347), 8, + ACTIONS(1575), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284816,7 +259679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5349), 39, + ACTIONS(1587), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -284828,6 +259691,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, @@ -284856,28 +259727,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61802] = 9, + [56864] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, + ACTIONS(5291), 1, + anon_sym_QMARK2, + STATE(2226), 1, + sym_comment, + ACTIONS(1034), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1036), 49, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [56934] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5293), 1, + anon_sym_QMARK2, + STATE(2227), 1, + sym_comment, + ACTIONS(1028), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1030), 49, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [57004] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5224), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5230), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5253), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5255), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5281), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(2485), 1, + STATE(2228), 1, sym_comment, - ACTIONS(5363), 2, + ACTIONS(5214), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5367), 2, + ACTIONS(5218), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5369), 2, + ACTIONS(5220), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5365), 4, + ACTIONS(5222), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5216), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5288), 9, + ACTIONS(5226), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5228), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5190), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -284887,7 +259913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5290), 37, + ACTIONS(5192), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -284899,24 +259925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -284925,43 +259934,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61880] = 12, + [57098] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(2486), 1, + STATE(2229), 1, sym_comment, - ACTIONS(5363), 2, + ACTIONS(5214), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5367), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5369), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5371), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5365), 4, + ACTIONS(5216), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5383), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5385), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5280), 9, + ACTIONS(5142), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -284971,7 +259959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5282), 25, + ACTIONS(5144), 41, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -284983,12 +259971,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -284997,40 +260001,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61964] = 11, + [57172] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2487), 1, + STATE(2230), 1, sym_comment, - ACTIONS(5363), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5367), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5369), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5365), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5383), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5385), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5339), 9, + ACTIONS(2384), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -285040,7 +260016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5341), 27, + ACTIONS(2386), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -285052,6 +260028,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -285060,6 +260047,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -285068,30 +260065,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62046] = 10, + [57240] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5387), 1, - sym__newline, - STATE(2375), 1, - aux_sym_shebang_repeat1, - STATE(2488), 1, + STATE(2231), 1, sym_comment, - ACTIONS(5390), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5398), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5405), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5392), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5296), 8, + ACTIONS(2388), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285100,7 +260080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5298), 37, + ACTIONS(2390), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -285112,6 +260092,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -285138,42 +260129,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62126] = 12, + [57308] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5472), 1, - sym__newline, - STATE(2481), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(2489), 1, + STATE(2232), 1, sym_comment, - ACTIONS(5390), 2, + ACTIONS(5214), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5398), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5405), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5392), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5417), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5419), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5347), 8, + ACTIONS(5204), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285182,7 +260149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5349), 27, + ACTIONS(5206), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -285194,6 +260161,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -285202,6 +260177,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -285210,44 +260195,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62210] = 12, + [57380] = 18, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, + ACTIONS(5245), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5247), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5283), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5285), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5295), 1, + sym__newline, + ACTIONS(5297), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2202), 1, aux_sym_shebang_repeat1, - STATE(2490), 1, + STATE(2233), 1, sym_comment, - ACTIONS(5363), 2, + ACTIONS(5235), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5367), 2, + ACTIONS(5239), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5369), 2, + ACTIONS(5241), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5371), 2, + ACTIONS(5243), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5365), 4, + ACTIONS(5237), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5383), 4, + ACTIONS(5249), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5385), 6, + ACTIONS(5251), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5339), 9, - sym__newline, + ACTIONS(5200), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285256,7 +260252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5341), 25, + ACTIONS(5202), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -285268,11 +260264,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -285282,142 +260273,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62294] = 37, - ACTIONS(217), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(219), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(221), 1, + [57476] = 19, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1325), 1, aux_sym__val_number_decimal_token3, - ACTIONS(223), 1, + ACTIONS(1327), 1, aux_sym__val_number_decimal_token4, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, + ACTIONS(3700), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_DASH, - ACTIONS(3219), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3245), 1, - anon_sym_null, - ACTIONS(3387), 1, - aux_sym_expr_unary_token1, - ACTIONS(5113), 1, - anon_sym_LPAREN, - ACTIONS(5115), 1, - anon_sym_DOLLAR, - ACTIONS(5475), 1, - anon_sym_DOT_DOT, - STATE(1668), 1, + ACTIONS(4852), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5176), 1, + anon_sym_DASH_DASH, + STATE(1929), 1, + sym_cmd_identifier, + STATE(1930), 1, + sym_val_string, + STATE(1972), 1, sym__str_double_quotes, - STATE(1686), 1, - sym__inter_single_quotes, - STATE(1688), 1, - sym__inter_double_quotes, - STATE(1709), 1, - sym__expr_unary_minus, - STATE(1907), 1, - sym__val_number, - STATE(2491), 1, + STATE(2234), 1, sym_comment, - STATE(3727), 1, - sym_val_range, - STATE(3728), 1, + STATE(2572), 1, + aux_sym_decl_def_repeat1, + STATE(2743), 1, + sym_long_flag, + STATE(6604), 1, + sym__command_name, + STATE(6953), 1, sym__val_number_decimal, - STATE(3755), 1, - sym_val_variable, - STATE(3781), 1, - sym_expr_parenthesized, - STATE(4048), 1, - sym__expr_binary_expression, - STATE(7817), 1, - sym__expression, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, + ACTIONS(1323), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3702), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3243), 2, + ACTIONS(4846), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4850), 5, anon_sym_true, anon_sym_false, - ACTIONS(5477), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1690), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4848), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [57574] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1493), 1, + sym__entry_separator, + ACTIONS(1495), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2816), 1, + anon_sym_DOLLAR, + ACTIONS(5299), 1, + anon_sym_LPAREN2, + ACTIONS(5301), 1, + anon_sym_DOT, + ACTIONS(5305), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5307), 1, + aux_sym__immediate_decimal_token5, + STATE(2235), 1, + sym_comment, + STATE(2584), 1, + sym__immediate_decimal, + ACTIONS(5303), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2739), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1479), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(1734), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [62428] = 13, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [57660] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5472), 1, - sym__newline, - STATE(2486), 1, - aux_sym_shebang_repeat1, - STATE(2492), 1, + STATE(2236), 1, sym_comment, - ACTIONS(5390), 2, + ACTIONS(4992), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4990), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5405), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5407), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5392), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5417), 4, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5419), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5347), 8, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [57728] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2062), 1, + aux_sym_shebang_repeat1, + STATE(2237), 1, + sym_comment, + ACTIONS(5214), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5190), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285426,7 +260509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5349), 25, + ACTIONS(5192), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -285438,12 +260521,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -285452,142 +260555,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62514] = 37, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_DASH, - ACTIONS(3219), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3245), 1, - anon_sym_null, - ACTIONS(3387), 1, - aux_sym_expr_unary_token1, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3393), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3395), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5113), 1, - anon_sym_LPAREN, - ACTIONS(5115), 1, - anon_sym_DOLLAR, - STATE(1540), 1, - sym_expr_parenthesized, - STATE(1541), 1, - sym_val_variable, - STATE(1668), 1, - sym__str_double_quotes, - STATE(1686), 1, - sym__inter_single_quotes, - STATE(1688), 1, - sym__inter_double_quotes, - STATE(1709), 1, - sym__expr_unary_minus, - STATE(1907), 1, - sym__val_number, - STATE(2493), 1, - sym_comment, - STATE(2941), 1, - sym__val_number_decimal, - STATE(3727), 1, - sym_val_range, - STATE(4050), 1, - sym__expr_binary_expression, - STATE(5894), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3243), 2, - anon_sym_true, - anon_sym_false, - STATE(1690), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1734), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [62648] = 13, + [57800] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5373), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(2494), 1, + STATE(2238), 1, sym_comment, - ACTIONS(5363), 2, + ACTIONS(5214), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5367), 2, + ACTIONS(5218), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5369), 2, + ACTIONS(5220), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5371), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5365), 4, + ACTIONS(5216), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5383), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5385), 6, + ACTIONS(5228), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5339), 9, + ACTIONS(5190), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -285597,7 +260593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5341), 24, + ACTIONS(5192), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -285609,59 +260605,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [62734] = 13, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5373), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2495), 1, - sym_comment, - ACTIONS(5363), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5367), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5369), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5371), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5365), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5383), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5385), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5280), 9, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [57880] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5309), 1, sym__newline, + STATE(2216), 1, + aux_sym_shebang_repeat1, + STATE(2239), 1, + sym_comment, + ACTIONS(5235), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5208), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285670,7 +260646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5282), 24, + ACTIONS(5210), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -285682,11 +260658,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -285695,47 +260692,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62820] = 14, + [57954] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5409), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5472), 1, + ACTIONS(5232), 1, sym__newline, - STATE(2495), 1, + STATE(2204), 1, aux_sym_shebang_repeat1, - STATE(2496), 1, + STATE(2240), 1, sym_comment, - ACTIONS(5390), 2, + ACTIONS(5235), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5398), 2, + ACTIONS(5239), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5405), 2, + ACTIONS(5241), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5407), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5392), 4, + ACTIONS(5237), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5417), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5419), 6, + ACTIONS(5251), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5347), 8, + ACTIONS(5200), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285744,7 +260731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5349), 24, + ACTIONS(5202), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -285756,11 +260743,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -285769,242 +260763,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62908] = 37, - ACTIONS(161), 1, - anon_sym_LPAREN, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(269), 1, - anon_sym_DOLLAR, - ACTIONS(397), 1, - anon_sym_DASH, - ACTIONS(3219), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3225), 1, - aux_sym_expr_unary_token1, - ACTIONS(3229), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3231), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3233), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3235), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3245), 1, - anon_sym_null, - ACTIONS(5351), 1, - anon_sym_DOT_DOT, - STATE(1668), 1, - sym__str_double_quotes, - STATE(1686), 1, - sym__inter_single_quotes, - STATE(1688), 1, - sym__inter_double_quotes, - STATE(1709), 1, - sym__expr_unary_minus, - STATE(1907), 1, - sym__val_number, - STATE(2497), 1, - sym_comment, - STATE(3727), 1, - sym_val_range, - STATE(3730), 1, - sym__val_number_decimal, - STATE(3758), 1, - sym_val_variable, - STATE(3761), 1, - sym_expr_parenthesized, - STATE(4067), 1, - sym__expr_binary_expression, - STATE(7606), 1, - sym__expression, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3243), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5353), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1690), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1734), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [63042] = 37, - ACTIONS(161), 1, - anon_sym_LPAREN, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(269), 1, - anon_sym_DOLLAR, - ACTIONS(397), 1, - anon_sym_DASH, - ACTIONS(3219), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3225), 1, - aux_sym_expr_unary_token1, - ACTIONS(3229), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3231), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3233), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3235), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3245), 1, - anon_sym_null, - ACTIONS(5351), 1, - anon_sym_DOT_DOT, - STATE(1668), 1, - sym__str_double_quotes, - STATE(1686), 1, - sym__inter_single_quotes, - STATE(1688), 1, - sym__inter_double_quotes, - STATE(1709), 1, - sym__expr_unary_minus, - STATE(1907), 1, - sym__val_number, - STATE(2498), 1, - sym_comment, - STATE(3727), 1, - sym_val_range, - STATE(3730), 1, - sym__val_number_decimal, - STATE(3758), 1, - sym_val_variable, - STATE(3761), 1, - sym_expr_parenthesized, - STATE(4067), 1, - sym__expr_binary_expression, - STATE(7633), 1, - sym__expression, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3243), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5353), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1690), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1734), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [63176] = 14, + [58036] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5373), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5375), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(2192), 1, + ACTIONS(5232), 1, + sym__newline, + STATE(2169), 1, aux_sym_shebang_repeat1, - STATE(2499), 1, + STATE(2241), 1, sym_comment, - ACTIONS(5363), 2, + ACTIONS(5235), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5367), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5369), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5371), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5365), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5383), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5385), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5339), 9, - sym__newline, + ACTIONS(5200), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286013,7 +260784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5341), 23, + ACTIONS(5202), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -286025,10 +260796,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -286037,15 +260830,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63264] = 5, + [58110] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1019), 1, - aux_sym_record_entry_token1, - STATE(2500), 1, + STATE(2242), 1, sym_comment, - ACTIONS(1006), 9, - sym__newline, + ACTIONS(4888), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286054,7 +260844,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1008), 47, + ACTIONS(4886), 49, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -286065,7 +260857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -286102,225 +260894,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63334] = 19, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(2939), 1, - anon_sym_DQUOTE, - ACTIONS(5327), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5329), 1, - sym__newline, - STATE(2501), 1, - sym_comment, - STATE(2656), 1, - aux_sym_command_list_repeat1, - STATE(2899), 1, - aux_sym_shebang_repeat1, - STATE(5801), 1, - sym__str_double_quotes, - STATE(7035), 1, - sym__command_name, - STATE(7263), 1, - sym__val_number_decimal, - STATE(7548), 1, - sym_cmd_identifier, - STATE(7691), 1, - sym_val_string, - ACTIONS(1259), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(2941), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5321), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5325), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5323), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [63432] = 37, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, + [58178] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_DASH, - ACTIONS(3219), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3245), 1, - anon_sym_null, - ACTIONS(3387), 1, - aux_sym_expr_unary_token1, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3393), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3395), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5113), 1, - anon_sym_LPAREN, - ACTIONS(5115), 1, - anon_sym_DOLLAR, - STATE(1540), 1, - sym_expr_parenthesized, - STATE(1541), 1, - sym_val_variable, - STATE(1668), 1, - sym__str_double_quotes, - STATE(1686), 1, - sym__inter_single_quotes, - STATE(1688), 1, - sym__inter_double_quotes, - STATE(1709), 1, - sym__expr_unary_minus, - STATE(1907), 1, - sym__val_number, - STATE(2502), 1, + STATE(2243), 1, sym_comment, - STATE(2941), 1, - sym__val_number_decimal, - STATE(3727), 1, - sym_val_range, - STATE(4050), 1, - sym__expr_binary_expression, - STATE(5936), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3243), 2, - anon_sym_true, - anon_sym_false, - STATE(1690), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1734), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [63566] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5409), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5411), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5472), 1, + ACTIONS(1345), 9, sym__newline, - STATE(2503), 1, - sym_comment, - STATE(2516), 1, - aux_sym_shebang_repeat1, - ACTIONS(5390), 2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1349), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5405), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5407), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5392), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5417), 4, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5419), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5347), 8, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [58246] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2062), 1, + aux_sym_shebang_repeat1, + STATE(2244), 1, + sym_comment, + ACTIONS(5214), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5216), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5204), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286329,7 +260983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5349), 23, + ACTIONS(5206), 41, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -286341,10 +260995,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -286353,336 +261025,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63656] = 37, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_DASH, - ACTIONS(3219), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3245), 1, - anon_sym_null, - ACTIONS(3387), 1, - aux_sym_expr_unary_token1, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3393), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3395), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5113), 1, - anon_sym_LPAREN, - ACTIONS(5115), 1, - anon_sym_DOLLAR, - STATE(1540), 1, - sym_expr_parenthesized, - STATE(1541), 1, - sym_val_variable, - STATE(1668), 1, - sym__str_double_quotes, - STATE(1686), 1, - sym__inter_single_quotes, - STATE(1688), 1, - sym__inter_double_quotes, - STATE(1709), 1, - sym__expr_unary_minus, - STATE(1907), 1, - sym__val_number, - STATE(2504), 1, - sym_comment, - STATE(2941), 1, - sym__val_number_decimal, - STATE(3727), 1, - sym_val_range, - STATE(4050), 1, - sym__expr_binary_expression, - STATE(5850), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3243), 2, - anon_sym_true, - anon_sym_false, - STATE(1690), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1734), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [63790] = 37, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_DASH, - ACTIONS(3219), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3245), 1, - anon_sym_null, - ACTIONS(3387), 1, - aux_sym_expr_unary_token1, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3393), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3395), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5113), 1, - anon_sym_LPAREN, - ACTIONS(5115), 1, - anon_sym_DOLLAR, - STATE(1540), 1, - sym_expr_parenthesized, - STATE(1541), 1, - sym_val_variable, - STATE(1668), 1, - sym__str_double_quotes, - STATE(1686), 1, - sym__inter_single_quotes, - STATE(1688), 1, - sym__inter_double_quotes, - STATE(1709), 1, - sym__expr_unary_minus, - STATE(1907), 1, - sym__val_number, - STATE(2505), 1, - sym_comment, - STATE(2941), 1, - sym__val_number_decimal, - STATE(3727), 1, - sym_val_range, - STATE(4050), 1, - sym__expr_binary_expression, - STATE(5854), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3243), 2, - anon_sym_true, - anon_sym_false, - STATE(1690), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1734), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [63924] = 37, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_DASH, - ACTIONS(3219), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3245), 1, - anon_sym_null, - ACTIONS(3387), 1, - aux_sym_expr_unary_token1, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3393), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3395), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5113), 1, - anon_sym_LPAREN, - ACTIONS(5115), 1, - anon_sym_DOLLAR, - STATE(1540), 1, - sym_expr_parenthesized, - STATE(1541), 1, - sym_val_variable, - STATE(1668), 1, - sym__str_double_quotes, - STATE(1686), 1, - sym__inter_single_quotes, - STATE(1688), 1, - sym__inter_double_quotes, - STATE(1709), 1, - sym__expr_unary_minus, - STATE(1907), 1, - sym__val_number, - STATE(2506), 1, - sym_comment, - STATE(2941), 1, - sym__val_number_decimal, - STATE(3727), 1, - sym_val_range, - STATE(4050), 1, - sym__expr_binary_expression, - STATE(5844), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3243), 2, - anon_sym_true, - anon_sym_false, - STATE(1690), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1734), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [64058] = 13, + [58320] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5402), 1, + ACTIONS(5309), 1, sym__newline, - STATE(2398), 1, + STATE(2229), 1, aux_sym_shebang_repeat1, - STATE(2507), 1, + STATE(2245), 1, sym_comment, - ACTIONS(5390), 2, + ACTIONS(5235), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5398), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5405), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5407), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5392), 4, + ACTIONS(5237), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5417), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5419), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5355), 8, + ACTIONS(5208), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286691,7 +261051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5357), 25, + ACTIONS(5210), 41, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -286703,12 +261063,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -286717,49 +261093,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64144] = 15, + [58396] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5373), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5375), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5377), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(2508), 1, + STATE(2246), 1, sym_comment, - ACTIONS(5363), 2, + ACTIONS(5214), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5367), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5369), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5371), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5365), 4, + ACTIONS(5216), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5383), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5385), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5339), 9, + ACTIONS(5190), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -286769,7 +261118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5341), 22, + ACTIONS(5192), 41, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -286781,9 +261130,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -286792,62 +261160,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64234] = 13, - ACTIONS(3), 1, + [58470] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1427), 1, - sym__entry_separator, - ACTIONS(1429), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2746), 1, - anon_sym_DOLLAR, - ACTIONS(5479), 1, - anon_sym_LPAREN2, - ACTIONS(5481), 1, - anon_sym_DOT, - ACTIONS(5485), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5487), 1, - aux_sym__immediate_decimal_token5, - STATE(2509), 1, + STATE(2062), 1, + aux_sym_shebang_repeat1, + STATE(2247), 1, sym_comment, - STATE(2804), 1, - sym__immediate_decimal, - ACTIONS(5483), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3008), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1413), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(5214), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5218), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5216), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5204), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286856,6 +261188,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5206), 39, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -286864,52 +261228,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [64320] = 16, + [58546] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5409), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5411), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5413), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5472), 1, - sym__newline, - STATE(2510), 1, - sym_comment, - STATE(2524), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - ACTIONS(5390), 2, + STATE(2248), 1, + sym_comment, + ACTIONS(5214), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5398), 2, + ACTIONS(5218), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5405), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5407), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5392), 4, + ACTIONS(5216), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5417), 4, + ACTIONS(5142), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5144), 39, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5419), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5347), 8, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [58622] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5309), 1, + sym__newline, + STATE(2248), 1, + aux_sym_shebang_repeat1, + STATE(2249), 1, + sym_comment, + ACTIONS(5235), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5237), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5208), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286918,7 +261325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5349), 22, + ACTIONS(5210), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -286930,9 +261337,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -286941,12 +261365,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64412] = 4, + [58700] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2511), 1, + STATE(2250), 1, sym_comment, - ACTIONS(3487), 8, + ACTIONS(4926), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286955,7 +261379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3485), 49, + ACTIONS(4924), 49, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287005,89 +261429,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64480] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2512), 1, - sym_comment, - ACTIONS(1273), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1277), 48, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [64548] = 5, + [58768] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5302), 1, - aux_sym__immediate_decimal_token2, - STATE(2513), 1, + ACTIONS(5134), 1, + anon_sym_DOT, + STATE(2251), 1, sym_comment, - ACTIONS(1473), 10, + STATE(2263), 1, + aux_sym_cell_path_repeat1, + STATE(2455), 1, + sym_path, + ACTIONS(1017), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1475), 46, + ACTIONS(1019), 48, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -287124,9 +261485,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -287134,52 +261496,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [64618] = 16, + [58842] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5373), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5375), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5377), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5379), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(2192), 1, + ACTIONS(5232), 1, + sym__newline, + STATE(2171), 1, aux_sym_shebang_repeat1, - STATE(2514), 1, + STATE(2252), 1, sym_comment, - ACTIONS(5363), 2, + ACTIONS(5235), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5367), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5369), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5371), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5365), 4, + ACTIONS(5237), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5383), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5385), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5339), 9, - sym__newline, + ACTIONS(5200), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287188,7 +261522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5341), 21, + ACTIONS(5202), 41, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -287200,85 +261534,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [64710] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5409), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5411), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5413), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5415), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5472), 1, - sym__newline, - STATE(2451), 1, - aux_sym_shebang_repeat1, - STATE(2515), 1, - sym_comment, - ACTIONS(5390), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5398), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5405), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5407), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5392), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5417), 4, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5419), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5347), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5349), 21, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -287287,47 +261564,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64804] = 14, + [58918] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5373), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5375), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(2516), 1, + STATE(2253), 1, sym_comment, - ACTIONS(5363), 2, + ACTIONS(5214), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5367), 2, + ACTIONS(5218), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5369), 2, + ACTIONS(5220), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5371), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5365), 4, + ACTIONS(5216), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5383), 4, + ACTIONS(5226), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5385), 6, + ACTIONS(5228), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5280), 9, + ACTIONS(5204), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -287337,7 +261607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5282), 23, + ACTIONS(5206), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -287349,6 +261619,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, @@ -287361,53 +261635,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64892] = 17, + [59000] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5373), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5375), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5377), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5379), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5381), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2517), 1, + STATE(2254), 1, sym_comment, - ACTIONS(5363), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5367), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5369), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5371), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5365), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5383), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5385), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5339), 9, + ACTIONS(4996), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -287417,7 +261650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5341), 20, + ACTIONS(4994), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -287429,85 +261662,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [64986] = 18, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5409), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5411), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5413), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5415), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5426), 1, - sym__newline, - ACTIONS(5428), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2356), 1, - aux_sym_shebang_repeat1, - STATE(2518), 1, - sym_comment, - ACTIONS(5390), 2, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5405), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5407), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5392), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5417), 4, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5419), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5347), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5349), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -287516,51 +261699,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65082] = 16, + [59068] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5402), 1, + ACTIONS(5309), 1, sym__newline, - ACTIONS(5409), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5411), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5413), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(2438), 1, - aux_sym_shebang_repeat1, - STATE(2519), 1, + STATE(2255), 1, sym_comment, - ACTIONS(5390), 2, + STATE(2271), 1, + aux_sym_shebang_repeat1, + ACTIONS(5235), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5398), 2, + ACTIONS(5239), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5405), 2, + ACTIONS(5241), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5407), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5392), 4, + ACTIONS(5237), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5417), 4, + ACTIONS(5249), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5419), 6, + ACTIONS(5251), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5355), 8, + ACTIONS(5208), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287569,7 +261743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5357), 22, + ACTIONS(5210), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -287581,6 +261755,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, @@ -287592,35 +261771,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65174] = 10, + [59152] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(2520), 1, + STATE(2256), 1, sym_comment, - ACTIONS(5363), 2, + ACTIONS(5214), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5367), 2, + ACTIONS(5218), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5369), 2, + ACTIONS(5220), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5365), 4, + ACTIONS(5216), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5385), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5339), 9, + ACTIONS(5190), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -287630,7 +261802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5341), 31, + ACTIONS(5192), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -287654,6 +261826,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -287662,101 +261840,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65254] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2521), 1, - sym_comment, - ACTIONS(3375), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(3373), 49, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [65322] = 11, + [59230] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5472), 1, - sym__newline, - STATE(2358), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(2522), 1, + STATE(2257), 1, sym_comment, - ACTIONS(5390), 2, + ACTIONS(5214), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5398), 2, + ACTIONS(5218), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5405), 2, + ACTIONS(5220), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5392), 4, + ACTIONS(5222), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5216), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5419), 6, + ACTIONS(5226), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5228), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5347), 8, + ACTIONS(5204), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287765,7 +261886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5349), 31, + ACTIONS(5206), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -287777,18 +261898,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -287797,117 +261912,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65404] = 7, + [59314] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5319), 1, - anon_sym_DOT, - STATE(2523), 1, - sym_comment, - STATE(2534), 1, - aux_sym_cell_path_repeat1, - STATE(2645), 1, - sym_path, - ACTIONS(951), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(953), 48, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(5309), 1, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [65478] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5373), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5375), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5377), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(2524), 1, + STATE(2258), 1, sym_comment, - ACTIONS(5363), 2, + STATE(2307), 1, + aux_sym_shebang_repeat1, + ACTIONS(5235), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5367), 2, + ACTIONS(5239), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5369), 2, + ACTIONS(5241), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5371), 2, + ACTIONS(5243), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5365), 4, + ACTIONS(5237), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5383), 4, + ACTIONS(5249), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5385), 6, + ACTIONS(5251), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5280), 9, - sym__newline, + ACTIONS(5208), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287916,7 +261959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5282), 22, + ACTIONS(5210), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -287928,6 +261971,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, @@ -287939,41 +261985,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65568] = 13, + [59400] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5458), 1, - anon_sym_DOLLAR, - ACTIONS(5460), 1, - anon_sym_LPAREN2, - ACTIONS(5464), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5466), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5468), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5470), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(5489), 1, - anon_sym_DOT, - STATE(2525), 1, + STATE(2259), 1, sym_comment, - STATE(2902), 1, - sym__immediate_decimal, - STATE(2901), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1431), 19, - anon_sym_LPAREN, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(5312), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287982,28 +262000,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1441), 28, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(5108), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -288012,29 +262049,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65654] = 9, + [59468] = 10, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, + ACTIONS(5232), 1, + sym__newline, + STATE(2205), 1, aux_sym_shebang_repeat1, - STATE(2526), 1, + STATE(2260), 1, sym_comment, - ACTIONS(5363), 2, + ACTIONS(5235), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5367), 2, + ACTIONS(5239), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5369), 2, + ACTIONS(5241), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5365), 4, + ACTIONS(5237), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5339), 9, - sym__newline, + ACTIONS(5200), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288043,7 +262081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5341), 37, + ACTIONS(5202), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -288081,30 +262119,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65732] = 10, + [59548] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5472), 1, - sym__newline, - STATE(2359), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(2527), 1, + STATE(2261), 1, sym_comment, - ACTIONS(5390), 2, + ACTIONS(5214), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5398), 2, + ACTIONS(5218), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5405), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5392), 4, + ACTIONS(5216), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5347), 8, + ACTIONS(5190), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288113,7 +262147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5349), 37, + ACTIONS(5192), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -288125,6 +262159,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -288151,84 +262187,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65812] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5491), 1, - aux_sym__immediate_decimal_token2, - STATE(2528), 1, - sym_comment, - ACTIONS(1519), 10, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1521), 46, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [65882] = 7, + [59624] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5402), 1, + ACTIONS(5314), 1, sym__newline, - STATE(2367), 1, + STATE(2232), 1, aux_sym_shebang_repeat1, - STATE(2529), 1, + STATE(2262), 1, sym_comment, - ACTIONS(5390), 2, + ACTIONS(5235), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 8, + ACTIONS(5194), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288237,7 +262208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5357), 45, + ACTIONS(5196), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -288283,340 +262254,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65956] = 19, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4260), 1, - anon_sym_DQUOTE, - ACTIONS(5031), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5337), 1, - anon_sym_DASH_DASH, - STATE(2132), 1, - sym_val_string, - STATE(2155), 1, - sym_cmd_identifier, - STATE(2158), 1, - sym__str_double_quotes, - STATE(2530), 1, - sym_comment, - STATE(2532), 1, - aux_sym_decl_def_repeat1, - STATE(2997), 1, - sym_long_flag, - STATE(6723), 1, - sym__command_name, - STATE(7482), 1, - sym__val_number_decimal, - ACTIONS(1259), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4262), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5025), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5029), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5027), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [66054] = 19, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4260), 1, - anon_sym_DQUOTE, - ACTIONS(5031), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5337), 1, - anon_sym_DASH_DASH, - STATE(2132), 1, - sym_val_string, - STATE(2155), 1, - sym_cmd_identifier, - STATE(2158), 1, - sym__str_double_quotes, - STATE(2531), 1, - sym_comment, - STATE(2533), 1, - aux_sym_decl_def_repeat1, - STATE(2997), 1, - sym_long_flag, - STATE(6745), 1, - sym__command_name, - STATE(7482), 1, - sym__val_number_decimal, - ACTIONS(1259), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4262), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5025), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5029), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5027), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [66152] = 19, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4260), 1, - anon_sym_DQUOTE, - ACTIONS(5031), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5337), 1, - anon_sym_DASH_DASH, - STATE(2132), 1, - sym_val_string, - STATE(2155), 1, - sym_cmd_identifier, - STATE(2158), 1, - sym__str_double_quotes, - STATE(2532), 1, - sym_comment, - STATE(2811), 1, - aux_sym_decl_def_repeat1, - STATE(2997), 1, - sym_long_flag, - STATE(6746), 1, - sym__command_name, - STATE(7482), 1, - sym__val_number_decimal, - ACTIONS(1259), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4262), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5025), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5029), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5027), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [66250] = 19, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4260), 1, - anon_sym_DQUOTE, - ACTIONS(5031), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5337), 1, - anon_sym_DASH_DASH, - STATE(2132), 1, - sym_val_string, - STATE(2155), 1, - sym_cmd_identifier, - STATE(2158), 1, - sym__str_double_quotes, - STATE(2533), 1, - sym_comment, - STATE(2811), 1, - aux_sym_decl_def_repeat1, - STATE(2997), 1, - sym_long_flag, - STATE(6753), 1, - sym__command_name, - STATE(7482), 1, - sym__val_number_decimal, - ACTIONS(1259), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4262), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5025), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5029), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5027), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [66348] = 6, + [59698] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5493), 1, + ACTIONS(5317), 1, anon_sym_DOT, - STATE(2645), 1, + STATE(2455), 1, sym_path, - STATE(2534), 2, + STATE(2263), 2, sym_comment, aux_sym_cell_path_repeat1, - ACTIONS(955), 6, + ACTIONS(1021), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(957), 48, + ACTIONS(1023), 48, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -288665,24 +262320,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [66420] = 8, + [59770] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5402), 1, + STATE(2264), 1, + sym_comment, + ACTIONS(1575), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1587), 49, sym__newline, - STATE(2374), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [59838] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5224), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(2535), 1, + STATE(2265), 1, sym_comment, - ACTIONS(5390), 2, + ACTIONS(5214), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5392), 4, + ACTIONS(5218), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5220), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5222), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5216), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5355), 8, + ACTIONS(5226), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5228), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5204), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288691,7 +262432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5357), 41, + ACTIONS(5206), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -288703,28 +262444,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -288733,27 +262457,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [66496] = 9, + [59924] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5402), 1, + STATE(2266), 1, + sym_comment, + ACTIONS(2436), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2438), 49, sym__newline, - STATE(2379), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [59992] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5314), 1, + sym__newline, + STATE(2244), 1, aux_sym_shebang_repeat1, - STATE(2536), 1, + STATE(2267), 1, sym_comment, - ACTIONS(5390), 2, + ACTIONS(5235), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5398), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5392), 4, + ACTIONS(5237), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5355), 8, + ACTIONS(5194), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288762,7 +262547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5357), 39, + ACTIONS(5196), 41, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -288774,6 +262559,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, @@ -288802,110 +262589,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [66574] = 37, - ACTIONS(161), 1, - anon_sym_LPAREN, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(269), 1, - anon_sym_DOLLAR, - ACTIONS(397), 1, - anon_sym_DASH, - ACTIONS(3219), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - aux_sym_ctrl_match_token1, - ACTIONS(3225), 1, - aux_sym_expr_unary_token1, - ACTIONS(3229), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3231), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3233), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3235), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3245), 1, - anon_sym_null, - ACTIONS(5351), 1, - anon_sym_DOT_DOT, - STATE(1668), 1, - sym__str_double_quotes, - STATE(1686), 1, - sym__inter_single_quotes, - STATE(1688), 1, - sym__inter_double_quotes, - STATE(1709), 1, - sym__expr_unary_minus, - STATE(1907), 1, - sym__val_number, - STATE(2537), 1, - sym_comment, - STATE(3727), 1, - sym_val_range, - STATE(3730), 1, - sym__val_number_decimal, - STATE(3758), 1, - sym_val_variable, - STATE(3761), 1, - sym_expr_parenthesized, - STATE(4067), 1, - sym__expr_binary_expression, - STATE(7687), 1, - sym__expression, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3243), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5353), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1690), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1734), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [66708] = 4, + [60068] = 14, ACTIONS(247), 1, anon_sym_POUND, - STATE(2538), 1, - sym_comment, - ACTIONS(2255), 9, + ACTIONS(5245), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5309), 1, sym__newline, + STATE(2164), 1, + aux_sym_shebang_repeat1, + STATE(2268), 1, + sym_comment, + ACTIONS(5235), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5241), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5243), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5237), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5249), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5251), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5208), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288914,7 +262638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2257), 48, + ACTIONS(5210), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -288926,35 +262650,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -288963,12 +262663,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [66776] = 4, + [60156] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(2539), 1, + ACTIONS(5232), 1, + sym__newline, + STATE(2173), 1, + aux_sym_shebang_repeat1, + STATE(2269), 1, sym_comment, - ACTIONS(2340), 8, + ACTIONS(5235), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5237), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5200), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288977,9 +262692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2342), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5202), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -288990,34 +262703,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -289026,12 +262732,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [66843] = 4, + [60234] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(2540), 1, + ACTIONS(5314), 1, + sym__newline, + STATE(2247), 1, + aux_sym_shebang_repeat1, + STATE(2270), 1, sym_comment, - ACTIONS(3201), 8, + ACTIONS(5235), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5237), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5194), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289040,9 +262761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3199), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5196), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -289053,34 +262772,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -289089,12 +262801,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [66910] = 4, + [60312] = 11, ACTIONS(247), 1, anon_sym_POUND, - STATE(2541), 1, + STATE(2062), 1, + aux_sym_shebang_repeat1, + STATE(2271), 1, sym_comment, - ACTIONS(1525), 8, + ACTIONS(5214), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5218), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5220), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5216), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5226), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5228), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5142), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289103,9 +262844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1537), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5144), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -289116,34 +262855,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -289152,51 +262872,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [66977] = 16, + [60394] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5506), 1, - aux_sym_expr_binary_token13, - ACTIONS(5508), 1, - aux_sym_expr_binary_token14, - ACTIONS(5510), 1, - aux_sym_expr_binary_token15, - ACTIONS(5512), 1, - aux_sym_expr_binary_token16, - ACTIONS(5514), 1, - aux_sym_expr_binary_token17, - STATE(2542), 1, + ACTIONS(5224), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5230), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(2062), 1, + aux_sym_shebang_repeat1, + STATE(2272), 1, sym_comment, - ACTIONS(5496), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5500), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5502), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5504), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5498), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5516), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5518), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(3603), 8, + ACTIONS(5214), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5218), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5220), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5222), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5216), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5226), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5228), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5204), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289205,9 +262922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3601), 21, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5206), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -289218,7 +262933,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token18, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -289227,75 +262946,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67068] = 4, + [60482] = 11, ACTIONS(247), 1, anon_sym_POUND, - STATE(2543), 1, + STATE(2062), 1, + aux_sym_shebang_repeat1, + STATE(2273), 1, sym_comment, - ACTIONS(976), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(978), 49, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(5214), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5218), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5220), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5216), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5226), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5228), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5190), 9, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_wild_card, - anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [67135] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2544), 1, - sym_comment, - ACTIONS(1770), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289304,9 +262989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1772), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5192), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -289317,34 +263000,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -289353,12 +263017,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67202] = 4, + [60564] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2545), 1, + ACTIONS(5136), 1, + aux_sym_cmd_identifier_token41, + STATE(2274), 1, sym_comment, - ACTIONS(3201), 8, + ACTIONS(2243), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289367,9 +263034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3199), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(2247), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -289380,34 +263045,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -289416,75 +263082,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67269] = 4, + [60634] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2546), 1, + ACTIONS(5136), 1, + aux_sym_cmd_identifier_token41, + STATE(2275), 1, sym_comment, - ACTIONS(962), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(964), 49, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2251), 9, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_wild_card, - anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [67336] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2547), 1, - sym_comment, - ACTIONS(1006), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289493,9 +263099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1008), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(2253), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -289506,34 +263110,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -289542,12 +263147,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67403] = 4, + [60704] = 15, ACTIONS(247), 1, anon_sym_POUND, - STATE(2548), 1, + ACTIONS(5245), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5247), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5309), 1, + sym__newline, + STATE(2172), 1, + aux_sym_shebang_repeat1, + STATE(2276), 1, sym_comment, - ACTIONS(3201), 8, + ACTIONS(5235), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5241), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5243), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5237), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5249), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5251), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5208), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289556,9 +263198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3199), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5210), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -289569,34 +263209,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -289605,12 +263222,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67470] = 4, + [60794] = 37, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - STATE(2549), 1, + ACTIONS(395), 1, + anon_sym_DASH, + ACTIONS(3199), 1, + anon_sym_null, + ACTIONS(3249), 1, + anon_sym_LBRACK, + ACTIONS(3255), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3299), 1, + aux_sym_expr_unary_token1, + ACTIONS(3301), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3303), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3305), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3307), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4982), 1, + anon_sym_LPAREN, + ACTIONS(4984), 1, + anon_sym_DOLLAR, + STATE(1389), 1, + sym__str_double_quotes, + STATE(1458), 1, + sym_expr_parenthesized, + STATE(1461), 1, + sym_val_variable, + STATE(1644), 1, + sym__expr_unary_minus, + STATE(1676), 1, + sym__val_number, + STATE(1708), 1, + sym__inter_single_quotes, + STATE(1709), 1, + sym__inter_double_quotes, + STATE(2277), 1, sym_comment, - ACTIONS(1879), 8, + STATE(2837), 1, + sym__val_number_decimal, + STATE(3484), 1, + sym_val_range, + STATE(3785), 1, + sym__expr_binary_expression, + STATE(5579), 1, + sym__expression, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3197), 2, + anon_sym_true, + anon_sym_false, + STATE(1606), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1675), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [60928] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5314), 1, + sym__newline, + STATE(2253), 1, + aux_sym_shebang_repeat1, + STATE(2278), 1, + sym_comment, + ACTIONS(5235), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5241), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5237), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5249), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5251), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5194), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289619,9 +263363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1881), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5196), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -289632,34 +263374,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -289668,12 +263391,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67537] = 4, + [61012] = 15, ACTIONS(247), 1, anon_sym_POUND, - STATE(2550), 1, + ACTIONS(5224), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5230), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5253), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(2062), 1, + aux_sym_shebang_repeat1, + STATE(2279), 1, sym_comment, - ACTIONS(3201), 8, + ACTIONS(5214), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5218), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5220), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5222), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5216), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5226), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5228), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5204), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289682,9 +263443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3199), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5206), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -289695,34 +263454,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -289731,12 +263466,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67604] = 4, + [61102] = 13, ACTIONS(247), 1, anon_sym_POUND, - STATE(2551), 1, + ACTIONS(5314), 1, + sym__newline, + STATE(2257), 1, + aux_sym_shebang_repeat1, + STATE(2280), 1, sym_comment, - ACTIONS(2344), 8, + ACTIONS(5235), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5241), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5243), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5237), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5249), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5251), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5194), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289745,9 +263513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2346), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5196), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -289758,34 +263524,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -289794,33 +263539,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67671] = 9, + [61188] = 16, ACTIONS(247), 1, anon_sym_POUND, - STATE(2552), 1, + ACTIONS(5245), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5247), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5283), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5309), 1, + sym__newline, + STATE(2175), 1, + aux_sym_shebang_repeat1, + STATE(2281), 1, sym_comment, - ACTIONS(5496), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5500), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5502), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5498), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5518), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(3603), 8, + ACTIONS(5235), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5241), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5243), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5237), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5249), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5251), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5208), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289829,9 +263592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3601), 32, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5210), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -289842,18 +263603,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -289862,60 +263615,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67748] = 12, - ACTIONS(3), 1, + [61280] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1441), 1, - sym__entry_separator, - ACTIONS(2746), 1, - anon_sym_DOLLAR, - ACTIONS(5479), 1, - anon_sym_LPAREN2, - ACTIONS(5520), 1, - anon_sym_DOT, - ACTIONS(5524), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5526), 1, - aux_sym__immediate_decimal_token5, - STATE(2553), 1, + ACTIONS(5245), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5314), 1, + sym__newline, + STATE(2265), 1, + aux_sym_shebang_repeat1, + STATE(2282), 1, sym_comment, - STATE(2976), 1, - sym__immediate_decimal, - ACTIONS(5522), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2932), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1431), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(5235), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5241), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5243), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5237), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5249), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5251), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5194), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289924,6 +263664,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5196), 24, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -289932,13 +263689,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [67831] = 4, + [61368] = 16, ACTIONS(247), 1, anon_sym_POUND, - STATE(2554), 1, + ACTIONS(5224), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5230), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5253), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5255), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(2062), 1, + aux_sym_shebang_repeat1, + STATE(2283), 1, sym_comment, - ACTIONS(3201), 8, + ACTIONS(5214), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5218), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5220), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5222), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5216), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5226), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5228), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5204), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289947,9 +263743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3199), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5206), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -289960,34 +263754,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -289996,12 +263765,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67898] = 4, + [61460] = 17, ACTIONS(247), 1, anon_sym_POUND, - STATE(2555), 1, + ACTIONS(5245), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5247), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5283), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5285), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5309), 1, + sym__newline, + STATE(2181), 1, + aux_sym_shebang_repeat1, + STATE(2284), 1, sym_comment, - ACTIONS(2131), 8, + ACTIONS(5235), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5241), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5243), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5237), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5249), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5251), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5208), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290010,9 +263820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2133), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5210), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -290023,34 +263831,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -290059,12 +263842,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67965] = 4, + [61554] = 12, ACTIONS(247), 1, anon_sym_POUND, - STATE(2556), 1, + ACTIONS(5232), 1, + sym__newline, + STATE(2176), 1, + aux_sym_shebang_repeat1, + STATE(2285), 1, sym_comment, - ACTIONS(2359), 8, + ACTIONS(5235), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5241), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5237), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5249), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5251), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5200), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290073,9 +263886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2361), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5202), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -290086,34 +263897,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -290122,12 +263914,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68032] = 4, + [61638] = 15, ACTIONS(247), 1, anon_sym_POUND, - STATE(2557), 1, + ACTIONS(5245), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5247), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5314), 1, + sym__newline, + STATE(2272), 1, + aux_sym_shebang_repeat1, + STATE(2286), 1, sym_comment, - ACTIONS(1741), 8, + ACTIONS(5235), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5241), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5243), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5237), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5249), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5251), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5194), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290136,9 +263965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1745), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5196), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -290149,34 +263976,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -290185,26 +263989,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68099] = 8, + [61728] = 17, ACTIONS(247), 1, anon_sym_POUND, - STATE(2558), 1, + ACTIONS(5224), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5230), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5253), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5255), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5281), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2062), 1, + aux_sym_shebang_repeat1, + STATE(2287), 1, sym_comment, - ACTIONS(5496), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5500), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5502), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5498), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(3603), 8, + ACTIONS(5214), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5218), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5220), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5222), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5216), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5226), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5228), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5204), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290213,9 +264045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3601), 38, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5206), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -290226,24 +264056,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -290252,39 +264066,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68174] = 12, + [61822] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5528), 1, - anon_sym_DOLLAR, - ACTIONS(5530), 1, - anon_sym_LPAREN2, - ACTIONS(5532), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5534), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5536), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5538), 1, - aux_sym__immediate_decimal_token5, - STATE(2559), 1, + ACTIONS(5245), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5247), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5283), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5314), 1, + sym__newline, + STATE(2279), 1, + aux_sym_shebang_repeat1, + STATE(2288), 1, sym_comment, - STATE(3172), 1, - sym__immediate_decimal, - STATE(3135), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1413), 19, - anon_sym_LPAREN, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(5235), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5241), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5243), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5237), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5249), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5251), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5194), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290293,28 +264119,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1427), 28, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_LBRACK, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(5196), 22, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -290323,12 +264142,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68257] = 4, + [61914] = 18, ACTIONS(247), 1, anon_sym_POUND, - STATE(2560), 1, + ACTIONS(5245), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5247), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5283), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5285), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5295), 1, + sym__newline, + ACTIONS(5297), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2209), 1, + aux_sym_shebang_repeat1, + STATE(2289), 1, sym_comment, - ACTIONS(2363), 8, + ACTIONS(5235), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5241), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5243), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5237), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5249), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5251), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5208), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290337,9 +264199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2365), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5210), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -290350,34 +264210,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -290386,12 +264220,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68324] = 4, + [62010] = 10, ACTIONS(247), 1, anon_sym_POUND, - STATE(2561), 1, + STATE(2062), 1, + aux_sym_shebang_repeat1, + STATE(2290), 1, sym_comment, - ACTIONS(2367), 8, + ACTIONS(5214), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5218), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5220), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5216), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5228), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5204), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290400,9 +264258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2369), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5206), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -290413,34 +264269,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -290449,20 +264290,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68391] = 6, + [62090] = 11, ACTIONS(247), 1, anon_sym_POUND, - STATE(2562), 1, + ACTIONS(5309), 1, + sym__newline, + STATE(2211), 1, + aux_sym_shebang_repeat1, + STATE(2291), 1, sym_comment, - ACTIONS(5496), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5498), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(3603), 8, + ACTIONS(5235), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5241), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5237), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5251), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5208), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290471,9 +264329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3601), 42, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5210), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -290484,28 +264340,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -290514,12 +264361,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68462] = 4, + [62172] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2563), 1, + STATE(2292), 1, sym_comment, - ACTIONS(1899), 8, + ACTIONS(2259), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290528,9 +264376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1901), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(2261), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -290541,34 +264387,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -290577,12 +264425,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68529] = 4, + [62240] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(2564), 1, + STATE(2062), 1, + aux_sym_shebang_repeat1, + STATE(2293), 1, sym_comment, - ACTIONS(3599), 8, + ACTIONS(5214), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5218), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5220), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5216), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5204), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290591,9 +264456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3177), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5206), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -290604,34 +264467,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -290640,12 +264494,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68596] = 4, + [62318] = 17, ACTIONS(247), 1, anon_sym_POUND, - STATE(2565), 1, + ACTIONS(5245), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5247), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5283), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5285), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5314), 1, + sym__newline, + STATE(2283), 1, + aux_sym_shebang_repeat1, + STATE(2294), 1, sym_comment, - ACTIONS(3201), 8, + ACTIONS(5235), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5241), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5243), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5237), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5249), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5251), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5194), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290654,9 +264549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3199), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5196), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -290667,34 +264560,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -290703,12 +264571,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68663] = 4, + [62412] = 10, ACTIONS(247), 1, anon_sym_POUND, - STATE(2566), 1, + ACTIONS(5309), 1, + sym__newline, + STATE(2214), 1, + aux_sym_shebang_repeat1, + STATE(2295), 1, sym_comment, - ACTIONS(2315), 8, + ACTIONS(5235), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5241), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5237), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5208), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290717,9 +264603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2317), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5210), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -290730,34 +264614,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -290766,12 +264641,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68730] = 4, + [62492] = 18, ACTIONS(247), 1, anon_sym_POUND, - STATE(2567), 1, + ACTIONS(5245), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5247), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5283), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5285), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5295), 1, + sym__newline, + ACTIONS(5297), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2287), 1, + aux_sym_shebang_repeat1, + STATE(2296), 1, sym_comment, - ACTIONS(1835), 8, + ACTIONS(5235), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5241), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5243), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5237), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5249), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5251), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5194), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290780,9 +264698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1837), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5196), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -290793,34 +264709,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -290829,75 +264719,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68797] = 4, + [62588] = 37, + ACTIONS(161), 1, + anon_sym_LPAREN, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - STATE(2568), 1, - sym_comment, - ACTIONS(994), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(996), 49, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, + ACTIONS(269), 1, + anon_sym_DOLLAR, + ACTIONS(395), 1, + anon_sym_DASH, + ACTIONS(3199), 1, anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, + ACTIONS(3249), 1, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, + ACTIONS(3255), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3259), 1, + aux_sym_expr_unary_token1, + ACTIONS(3263), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3265), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3267), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3269), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + ACTIONS(5182), 1, + anon_sym_DOT_DOT, + STATE(1389), 1, + sym__str_double_quotes, + STATE(1644), 1, + sym__expr_unary_minus, + STATE(1676), 1, + sym__val_number, + STATE(1708), 1, + sym__inter_single_quotes, + STATE(1709), 1, + sym__inter_double_quotes, + STATE(2297), 1, + sym_comment, + STATE(3464), 1, + sym__val_number_decimal, + STATE(3484), 1, + sym_val_range, + STATE(3505), 1, + sym_val_variable, + STATE(3512), 1, + sym_expr_parenthesized, + STATE(3776), 1, + sym__expr_binary_expression, + STATE(7467), 1, + sym__expression, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, sym__str_single_quotes, sym__str_back_ticks, - [68864] = 4, + ACTIONS(3197), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5184), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1606), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1675), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [62722] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(2569), 1, + ACTIONS(5320), 1, + sym__newline, + STATE(2237), 1, + aux_sym_shebang_repeat1, + STATE(2298), 1, sym_comment, - ACTIONS(2332), 8, + ACTIONS(5235), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5154), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290906,9 +264837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2334), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5156), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -290919,34 +264848,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -290955,39 +264883,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68931] = 12, + [62796] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5528), 1, - anon_sym_DOLLAR, - ACTIONS(5530), 1, - anon_sym_LPAREN2, - ACTIONS(5532), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5534), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5536), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5538), 1, - aux_sym__immediate_decimal_token5, - STATE(2570), 1, + STATE(2062), 1, + aux_sym_shebang_repeat1, + STATE(2299), 1, sym_comment, - STATE(3181), 1, - sym__immediate_decimal, - STATE(3128), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1443), 19, - anon_sym_LPAREN, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(5214), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5218), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5220), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5222), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5216), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5226), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5228), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5190), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290996,28 +264929,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1455), 28, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_LBRACK, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(5192), 25, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -291026,12 +264955,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [69014] = 4, + [62880] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2571), 1, + ACTIONS(5320), 1, + sym__newline, + STATE(2246), 1, + aux_sym_shebang_repeat1, + STATE(2300), 1, sym_comment, - ACTIONS(2295), 8, + ACTIONS(5235), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5237), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5154), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291040,9 +264981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2297), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5156), 41, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -291053,34 +264992,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -291089,12 +265023,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [69081] = 4, + [62956] = 37, + ACTIONS(161), 1, + anon_sym_LPAREN, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - STATE(2572), 1, + ACTIONS(269), 1, + anon_sym_DOLLAR, + ACTIONS(395), 1, + anon_sym_DASH, + ACTIONS(3199), 1, + anon_sym_null, + ACTIONS(3249), 1, + anon_sym_LBRACK, + ACTIONS(3255), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3259), 1, + aux_sym_expr_unary_token1, + ACTIONS(3263), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3265), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3267), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3269), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5182), 1, + anon_sym_DOT_DOT, + STATE(1389), 1, + sym__str_double_quotes, + STATE(1644), 1, + sym__expr_unary_minus, + STATE(1676), 1, + sym__val_number, + STATE(1708), 1, + sym__inter_single_quotes, + STATE(1709), 1, + sym__inter_double_quotes, + STATE(2301), 1, sym_comment, - ACTIONS(1855), 8, + STATE(3464), 1, + sym__val_number_decimal, + STATE(3484), 1, + sym_val_range, + STATE(3505), 1, + sym_val_variable, + STATE(3512), 1, + sym_expr_parenthesized, + STATE(3776), 1, + sym__expr_binary_expression, + STATE(7444), 1, + sym__expression, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3197), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5184), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1606), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1675), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [63090] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5320), 1, + sym__newline, + STATE(2261), 1, + aux_sym_shebang_repeat1, + STATE(2302), 1, + sym_comment, + ACTIONS(5235), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5237), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5154), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291103,9 +265149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1857), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5156), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -291116,34 +265160,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -291152,45 +265189,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [69148] = 13, + [63168] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5506), 1, - aux_sym_expr_binary_token13, - ACTIONS(5508), 1, - aux_sym_expr_binary_token14, - STATE(2573), 1, + ACTIONS(5314), 1, + sym__newline, + STATE(2290), 1, + aux_sym_shebang_repeat1, + STATE(2303), 1, sym_comment, - ACTIONS(5496), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5500), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5502), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5504), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5498), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5516), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5518), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(3603), 8, + ACTIONS(5235), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5241), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5237), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5251), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5194), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291199,9 +265228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3601), 24, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5196), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -291212,10 +265239,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -291224,12 +265260,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [69233] = 4, + [63250] = 12, ACTIONS(247), 1, anon_sym_POUND, - STATE(2574), 1, + ACTIONS(5320), 1, + sym__newline, + STATE(2273), 1, + aux_sym_shebang_repeat1, + STATE(2304), 1, sym_comment, - ACTIONS(3201), 8, + ACTIONS(5235), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5241), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5237), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5249), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5251), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5154), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291238,9 +265304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3199), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5156), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -291251,34 +265315,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -291287,138 +265332,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [69300] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2575), 1, - sym_comment, - ACTIONS(986), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(988), 49, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [69367] = 4, + [63334] = 13, ACTIONS(247), 1, anon_sym_POUND, - STATE(2576), 1, - sym_comment, - ACTIONS(990), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(992), 49, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(5320), 1, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [69434] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2577), 1, + STATE(2299), 1, + aux_sym_shebang_repeat1, + STATE(2305), 1, sym_comment, - ACTIONS(2371), 8, + ACTIONS(5235), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5241), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5243), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5237), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5249), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5251), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5154), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291427,9 +265379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2373), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5156), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -291440,34 +265390,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -291476,12 +265405,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [69501] = 4, + [63420] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2578), 1, + ACTIONS(4680), 1, + aux_sym_unquoted_token2, + STATE(2306), 1, sym_comment, - ACTIONS(2379), 8, + ACTIONS(1575), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291490,9 +265422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2381), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(1587), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -291503,34 +265433,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -291539,12 +265470,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [69568] = 4, + [63490] = 12, ACTIONS(247), 1, anon_sym_POUND, - STATE(2579), 1, + STATE(2062), 1, + aux_sym_shebang_repeat1, + STATE(2307), 1, sym_comment, - ACTIONS(3201), 8, + ACTIONS(5214), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5218), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5220), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5222), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5216), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5226), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5228), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5142), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291553,9 +265516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3199), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5144), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -291566,34 +265527,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -291602,12 +265542,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [69635] = 4, + [63574] = 13, ACTIONS(247), 1, anon_sym_POUND, - STATE(2580), 1, + ACTIONS(5232), 1, + sym__newline, + STATE(2177), 1, + aux_sym_shebang_repeat1, + STATE(2308), 1, sym_comment, - ACTIONS(1839), 8, + ACTIONS(5235), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5241), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5243), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5237), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5249), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5251), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5200), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291616,9 +265589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1841), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5202), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -291629,34 +265600,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -291665,12 +265615,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [69702] = 4, + [63660] = 14, ACTIONS(247), 1, anon_sym_POUND, - STATE(2581), 1, + ACTIONS(5245), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5320), 1, + sym__newline, + STATE(2309), 1, sym_comment, - ACTIONS(2383), 8, + STATE(2314), 1, + aux_sym_shebang_repeat1, + ACTIONS(5235), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5241), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5243), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5237), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5249), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5251), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5154), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291679,9 +265664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2385), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5156), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -291692,34 +265675,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -291728,53 +265689,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [69769] = 6, - ACTIONS(3), 1, + [63748] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5540), 1, - anon_sym_DOT, - ACTIONS(5542), 1, - aux_sym__immediate_decimal_token2, - STATE(2582), 1, + ACTIONS(5103), 1, + sym__newline, + STATE(2310), 1, sym_comment, - ACTIONS(1475), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1473), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(5110), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291783,6 +265705,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5106), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -291791,25 +265726,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [69840] = 7, + ACTIONS(5108), 28, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [63820] = 15, ACTIONS(247), 1, anon_sym_POUND, - STATE(2583), 1, + ACTIONS(5245), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5247), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5320), 1, + sym__newline, + STATE(2170), 1, + aux_sym_shebang_repeat1, + STATE(2311), 1, sym_comment, - ACTIONS(5496), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5500), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5498), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(3603), 8, + ACTIONS(5235), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5241), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5243), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5237), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5249), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5251), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5154), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291818,9 +265806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3601), 40, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5156), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -291831,26 +265817,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -291859,53 +265830,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [69913] = 6, - ACTIONS(3), 1, + [63910] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5544), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5546), 1, - aux_sym__immediate_decimal_token2, - STATE(2584), 1, + ACTIONS(5314), 1, + sym__newline, + STATE(2293), 1, + aux_sym_shebang_repeat1, + STATE(2312), 1, sym_comment, - ACTIONS(1483), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1481), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(5235), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5241), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5237), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5194), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291914,6 +265862,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5196), 37, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -291922,14 +265900,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [69984] = 4, + [63990] = 16, ACTIONS(247), 1, anon_sym_POUND, - STATE(2585), 1, + ACTIONS(5245), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5247), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5283), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5320), 1, + sym__newline, + STATE(2199), 1, + aux_sym_shebang_repeat1, + STATE(2313), 1, sym_comment, - ACTIONS(3593), 8, + ACTIONS(5235), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5241), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5243), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5237), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5249), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5251), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5154), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291938,9 +265953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3591), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5156), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -291951,34 +265964,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -291987,12 +265976,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [70051] = 4, + [64082] = 13, ACTIONS(247), 1, anon_sym_POUND, - STATE(2586), 1, + ACTIONS(5224), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(2062), 1, + aux_sym_shebang_repeat1, + STATE(2314), 1, sym_comment, - ACTIONS(3201), 8, + ACTIONS(5214), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5218), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5220), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5222), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5216), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5226), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5228), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5190), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -292001,9 +266024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3199), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5192), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -292014,34 +266035,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -292050,12 +266049,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [70118] = 4, + [64168] = 17, ACTIONS(247), 1, anon_sym_POUND, - STATE(2587), 1, + ACTIONS(5245), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5247), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5283), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5285), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5320), 1, + sym__newline, + STATE(2208), 1, + aux_sym_shebang_repeat1, + STATE(2315), 1, sym_comment, - ACTIONS(3607), 8, + ACTIONS(5235), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5241), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5243), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5237), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5249), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5251), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5154), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -292064,9 +266104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3605), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5156), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -292077,34 +266115,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -292113,12 +266126,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [70185] = 4, + [64262] = 18, ACTIONS(247), 1, anon_sym_POUND, - STATE(2588), 1, + ACTIONS(5245), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5247), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5283), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5285), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5295), 1, + sym__newline, + ACTIONS(5297), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2228), 1, + aux_sym_shebang_repeat1, + STATE(2316), 1, sym_comment, - ACTIONS(2326), 8, + ACTIONS(5235), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5241), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5243), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5237), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5249), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5251), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5154), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -292127,9 +266183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2328), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5156), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -292140,34 +266194,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -292176,38 +266204,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [70252] = 10, + [64358] = 11, ACTIONS(247), 1, anon_sym_POUND, - STATE(2589), 1, + ACTIONS(5320), 1, + sym__newline, + STATE(2238), 1, + aux_sym_shebang_repeat1, + STATE(2317), 1, sym_comment, - ACTIONS(5496), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5500), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5502), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5498), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5516), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5518), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(3603), 8, + ACTIONS(5235), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5241), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5237), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5251), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5154), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -292216,9 +266243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3601), 28, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5156), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -292229,14 +266254,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -292245,12 +266275,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [70331] = 4, + [64440] = 14, ACTIONS(247), 1, anon_sym_POUND, - STATE(2590), 1, + ACTIONS(5232), 1, + sym__newline, + ACTIONS(5245), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(2178), 1, + aux_sym_shebang_repeat1, + STATE(2318), 1, sym_comment, - ACTIONS(1778), 8, + ACTIONS(5235), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5241), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5243), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5237), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5249), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5251), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5200), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -292259,9 +266324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1780), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5202), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -292272,34 +266335,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -292308,12 +266349,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [70398] = 4, + [64528] = 10, ACTIONS(247), 1, anon_sym_POUND, - STATE(2591), 1, + ACTIONS(5320), 1, + sym__newline, + STATE(2256), 1, + aux_sym_shebang_repeat1, + STATE(2319), 1, sym_comment, - ACTIONS(1796), 8, + ACTIONS(5235), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5239), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5241), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5237), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5154), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -292322,9 +266381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1798), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5156), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -292335,34 +266392,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -292371,86 +266419,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [70465] = 12, + [64608] = 37, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(395), 1, + anon_sym_DASH, + ACTIONS(3199), 1, + anon_sym_null, + ACTIONS(3249), 1, + anon_sym_LBRACK, + ACTIONS(3255), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3299), 1, + aux_sym_expr_unary_token1, + ACTIONS(3301), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3303), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3305), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3307), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4982), 1, + anon_sym_LPAREN, + ACTIONS(4984), 1, + anon_sym_DOLLAR, + STATE(1389), 1, + sym__str_double_quotes, + STATE(1458), 1, + sym_expr_parenthesized, + STATE(1461), 1, + sym_val_variable, + STATE(1644), 1, + sym__expr_unary_minus, + STATE(1676), 1, + sym__val_number, + STATE(1708), 1, + sym__inter_single_quotes, + STATE(1709), 1, + sym__inter_double_quotes, + STATE(2320), 1, + sym_comment, + STATE(2837), 1, + sym__val_number_decimal, + STATE(3484), 1, + sym_val_range, + STATE(3785), 1, + sym__expr_binary_expression, + STATE(5597), 1, + sym__expression, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3197), 2, + anon_sym_true, + anon_sym_false, + STATE(1606), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1675), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [64742] = 37, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5528), 1, - anon_sym_DOLLAR, - ACTIONS(5530), 1, - anon_sym_LPAREN2, - ACTIONS(5532), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5534), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5536), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5538), 1, - aux_sym__immediate_decimal_token5, - STATE(2592), 1, - sym_comment, - STATE(3115), 1, - sym__immediate_decimal, - STATE(3094), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1555), 19, - anon_sym_LPAREN, - anon_sym__, - anon_sym_DOT_DOT, + ACTIONS(395), 1, + anon_sym_DASH, + ACTIONS(3199), 1, + anon_sym_null, + ACTIONS(3249), 1, + anon_sym_LBRACK, + ACTIONS(3255), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3299), 1, + aux_sym_expr_unary_token1, + ACTIONS(3301), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3303), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3305), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3307), 1, aux_sym__val_number_decimal_token4, - anon_sym_0b, + ACTIONS(4982), 1, + anon_sym_LPAREN, + ACTIONS(4984), 1, + anon_sym_DOLLAR, + STATE(1389), 1, + sym__str_double_quotes, + STATE(1458), 1, + sym_expr_parenthesized, + STATE(1461), 1, + sym_val_variable, + STATE(1644), 1, + sym__expr_unary_minus, + STATE(1676), 1, + sym__val_number, + STATE(1708), 1, + sym__inter_single_quotes, + STATE(1709), 1, + sym__inter_double_quotes, + STATE(2321), 1, + sym_comment, + STATE(2837), 1, + sym__val_number_decimal, + STATE(3484), 1, + sym_val_range, + STATE(3785), 1, + sym__expr_binary_expression, + STATE(5599), 1, + sym__expression, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, anon_sym_0o, anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1557), 28, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3197), 2, anon_sym_true, anon_sym_false, - anon_sym_null, + STATE(1606), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_LBRACK, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [70548] = 5, + STATE(1675), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [64876] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2593), 1, + ACTIONS(5323), 1, + aux_sym_cmd_identifier_token41, + STATE(2322), 1, sym_comment, - ACTIONS(5496), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(3603), 8, + ACTIONS(2243), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -292459,7 +266629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3601), 46, + ACTIONS(2247), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -292472,6 +266642,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, @@ -292506,12 +266678,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [70617] = 4, + [64946] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2594), 1, + ACTIONS(5323), 1, + aux_sym_cmd_identifier_token41, + STATE(2323), 1, sym_comment, - ACTIONS(2348), 8, + ACTIONS(2251), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -292520,7 +266694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2350), 48, + ACTIONS(2253), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -292569,83 +266743,306 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [70684] = 12, - ACTIONS(3), 1, + [65016] = 37, + ACTIONS(217), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(219), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(221), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(223), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1455), 1, - sym__entry_separator, - ACTIONS(1457), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5548), 1, + ACTIONS(395), 1, + anon_sym_DASH, + ACTIONS(3199), 1, + anon_sym_null, + ACTIONS(3249), 1, + anon_sym_LBRACK, + ACTIONS(3255), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3299), 1, + aux_sym_expr_unary_token1, + ACTIONS(4982), 1, + anon_sym_LPAREN, + ACTIONS(4984), 1, anon_sym_DOLLAR, - ACTIONS(5550), 1, - anon_sym_LPAREN2, - ACTIONS(5554), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5556), 1, - aux_sym__immediate_decimal_token5, - STATE(2595), 1, + ACTIONS(5325), 1, + anon_sym_DOT_DOT, + STATE(1389), 1, + sym__str_double_quotes, + STATE(1644), 1, + sym__expr_unary_minus, + STATE(1676), 1, + sym__val_number, + STATE(1708), 1, + sym__inter_single_quotes, + STATE(1709), 1, + sym__inter_double_quotes, + STATE(2324), 1, sym_comment, - STATE(3025), 1, - sym__immediate_decimal, - ACTIONS(5552), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3121), 2, - sym__expr_parenthesized_immediate, + STATE(3454), 1, + sym__val_number_decimal, + STATE(3484), 1, + sym_val_range, + STATE(3518), 1, + sym_expr_parenthesized, + STATE(3519), 1, sym_val_variable, - ACTIONS(1443), 45, + STATE(3786), 1, + sym__expr_binary_expression, + STATE(7808), 1, + sym__expression, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3197), 2, anon_sym_true, anon_sym_false, - anon_sym_null, + ACTIONS(5327), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1606), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1675), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [65150] = 37, + ACTIONS(161), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(269), 1, + anon_sym_DOLLAR, + ACTIONS(395), 1, + anon_sym_DASH, + ACTIONS(3199), 1, + anon_sym_null, + ACTIONS(3249), 1, + anon_sym_LBRACK, + ACTIONS(3255), 1, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + ACTIONS(3259), 1, + aux_sym_expr_unary_token1, + ACTIONS(3263), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3265), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3267), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3269), 1, aux_sym__val_number_decimal_token4, + ACTIONS(5182), 1, + anon_sym_DOT_DOT, + STATE(1389), 1, + sym__str_double_quotes, + STATE(1644), 1, + sym__expr_unary_minus, + STATE(1676), 1, + sym__val_number, + STATE(1708), 1, + sym__inter_single_quotes, + STATE(1709), 1, + sym__inter_double_quotes, + STATE(2325), 1, + sym_comment, + STATE(3464), 1, + sym__val_number_decimal, + STATE(3484), 1, + sym_val_range, + STATE(3505), 1, + sym_val_variable, + STATE(3512), 1, + sym_expr_parenthesized, + STATE(3776), 1, + sym__expr_binary_expression, + STATE(7373), 1, + sym__expression, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3197), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5184), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1606), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + STATE(1675), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [65284] = 37, + ACTIONS(161), 1, + anon_sym_LPAREN, + ACTIONS(227), 1, anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(231), 1, sym_val_date, + ACTIONS(233), 1, anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(269), 1, + anon_sym_DOLLAR, + ACTIONS(395), 1, + anon_sym_DASH, + ACTIONS(3199), 1, + anon_sym_null, + ACTIONS(3249), 1, + anon_sym_LBRACK, + ACTIONS(3255), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3259), 1, + aux_sym_expr_unary_token1, + ACTIONS(3263), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3265), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3267), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3269), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5182), 1, + anon_sym_DOT_DOT, + STATE(1389), 1, + sym__str_double_quotes, + STATE(1644), 1, + sym__expr_unary_minus, + STATE(1676), 1, + sym__val_number, + STATE(1708), 1, + sym__inter_single_quotes, + STATE(1709), 1, + sym__inter_double_quotes, + STATE(2326), 1, + sym_comment, + STATE(3464), 1, + sym__val_number_decimal, + STATE(3484), 1, + sym_val_range, + STATE(3505), 1, + sym_val_variable, + STATE(3512), 1, + sym_expr_parenthesized, + STATE(3776), 1, + sym__expr_binary_expression, + STATE(7387), 1, + sym__expression, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [70767] = 4, + ACTIONS(3197), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5184), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1606), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1675), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [65418] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2596), 1, + ACTIONS(1089), 1, + aux_sym_record_entry_token1, + STATE(2327), 1, sym_comment, - ACTIONS(3201), 8, + ACTIONS(1076), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -292654,9 +267051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3199), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(1078), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -292667,6 +267062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -292703,93 +267099,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [70834] = 4, + [65488] = 19, ACTIONS(247), 1, anon_sym_POUND, - STATE(2597), 1, + ACTIONS(1325), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3004), 1, + anon_sym_DQUOTE, + ACTIONS(5164), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5166), 1, + sym__newline, + STATE(2328), 1, sym_comment, - ACTIONS(1473), 10, + STATE(2451), 1, + aux_sym_command_list_repeat1, + STATE(2680), 1, + aux_sym_shebang_repeat1, + STATE(5345), 1, + sym__str_double_quotes, + STATE(7022), 1, + sym__val_number_decimal, + STATE(7072), 1, + sym__command_name, + STATE(7334), 1, + sym_cmd_identifier, + STATE(7335), 1, + sym_val_string, + ACTIONS(1323), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3006), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5158), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1475), 46, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + ACTIONS(5162), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [70901] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4694), 1, - anon_sym_DOT_DOT2, - ACTIONS(5558), 1, - sym_filesize_unit, - ACTIONS(5560), 1, - sym_duration_unit, - ACTIONS(5562), 1, - aux_sym_unquoted_token2, - STATE(2598), 1, - sym_comment, - ACTIONS(4696), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1525), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1537), 44, + ACTIONS(5160), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292821,555 +267178,402 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, + [65586] = 37, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(395), 1, + anon_sym_DASH, + ACTIONS(3199), 1, anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + ACTIONS(3249), 1, + anon_sym_LBRACK, + ACTIONS(3255), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3299), 1, + aux_sym_expr_unary_token1, + ACTIONS(3301), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3303), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3305), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3307), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [70978] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2599), 1, - sym_comment, - ACTIONS(2251), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2253), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [71045] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2600), 1, - sym_comment, - ACTIONS(3201), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(3199), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [71112] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1427), 1, - sym__entry_separator, - ACTIONS(1429), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5548), 1, + ACTIONS(4982), 1, + anon_sym_LPAREN, + ACTIONS(4984), 1, anon_sym_DOLLAR, - ACTIONS(5550), 1, - anon_sym_LPAREN2, - ACTIONS(5554), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5556), 1, - aux_sym__immediate_decimal_token5, - STATE(2601), 1, - sym_comment, - STATE(3043), 1, - sym__immediate_decimal, - ACTIONS(5552), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3169), 2, - sym__expr_parenthesized_immediate, + STATE(1389), 1, + sym__str_double_quotes, + STATE(1458), 1, + sym_expr_parenthesized, + STATE(1461), 1, sym_val_variable, - ACTIONS(1413), 45, + STATE(1644), 1, + sym__expr_unary_minus, + STATE(1676), 1, + sym__val_number, + STATE(1708), 1, + sym__inter_single_quotes, + STATE(1709), 1, + sym__inter_double_quotes, + STATE(2329), 1, + sym_comment, + STATE(2837), 1, + sym__val_number_decimal, + STATE(3484), 1, + sym_val_range, + STATE(3785), 1, + sym__expr_binary_expression, + STATE(5609), 1, + sym__expression, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3197), 2, anon_sym_true, anon_sym_false, - anon_sym_null, + STATE(1606), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1675), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [65720] = 37, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(395), 1, + anon_sym_DASH, + ACTIONS(3199), 1, + anon_sym_null, + ACTIONS(3249), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(3255), 1, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + ACTIONS(3299), 1, + aux_sym_expr_unary_token1, + ACTIONS(3301), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3303), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3305), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3307), 1, aux_sym__val_number_decimal_token4, + ACTIONS(4982), 1, + anon_sym_LPAREN, + ACTIONS(4984), 1, + anon_sym_DOLLAR, + STATE(1389), 1, + sym__str_double_quotes, + STATE(1458), 1, + sym_expr_parenthesized, + STATE(1461), 1, + sym_val_variable, + STATE(1644), 1, + sym__expr_unary_minus, + STATE(1676), 1, + sym__val_number, + STATE(1708), 1, + sym__inter_single_quotes, + STATE(1709), 1, + sym__inter_double_quotes, + STATE(2330), 1, + sym_comment, + STATE(2837), 1, + sym__val_number_decimal, + STATE(3484), 1, + sym_val_range, + STATE(3785), 1, + sym__expr_binary_expression, + STATE(5574), 1, + sym__expression, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3197), 2, + anon_sym_true, + anon_sym_false, + STATE(1606), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + STATE(1675), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [65854] = 37, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(231), 1, sym_val_date, + ACTIONS(233), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [71195] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2602), 1, - sym_comment, - ACTIONS(2303), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2305), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [71262] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2603), 1, - sym_comment, - ACTIONS(2389), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2391), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [71329] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2604), 1, - sym_comment, - ACTIONS(3175), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(3173), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(3177), 28, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [71398] = 14, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1429), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(3968), 1, - anon_sym_DOLLAR, - ACTIONS(5564), 1, - anon_sym_LPAREN2, - ACTIONS(5566), 1, - anon_sym_DOT, - ACTIONS(5568), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5570), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5572), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5574), 1, - aux_sym__immediate_decimal_token5, - STATE(2605), 1, - sym_comment, - STATE(2991), 1, - sym__immediate_decimal, - STATE(3039), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1413), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, + ACTIONS(395), 1, + anon_sym_DASH, + ACTIONS(3199), 1, + anon_sym_null, + ACTIONS(3249), 1, + anon_sym_LBRACK, + ACTIONS(3255), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3299), 1, + aux_sym_expr_unary_token1, + ACTIONS(3301), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3303), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3305), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3307), 1, aux_sym__val_number_decimal_token4, - anon_sym_0b, + ACTIONS(4982), 1, + anon_sym_LPAREN, + ACTIONS(4984), 1, + anon_sym_DOLLAR, + STATE(1389), 1, + sym__str_double_quotes, + STATE(1458), 1, + sym_expr_parenthesized, + STATE(1461), 1, + sym_val_variable, + STATE(1644), 1, + sym__expr_unary_minus, + STATE(1676), 1, + sym__val_number, + STATE(1708), 1, + sym__inter_single_quotes, + STATE(1709), 1, + sym__inter_double_quotes, + STATE(2331), 1, + sym_comment, + STATE(2837), 1, + sym__val_number_decimal, + STATE(3484), 1, + sym_val_range, + STATE(3785), 1, + sym__expr_binary_expression, + STATE(5504), 1, + sym__expression, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, anon_sym_0o, anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1427), 27, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3197), 2, anon_sym_true, anon_sym_false, - anon_sym_null, + STATE(1606), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + STATE(1675), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [65988] = 37, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, sym_val_date, + ACTIONS(233), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [71485] = 11, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - STATE(2606), 1, + ACTIONS(395), 1, + anon_sym_DASH, + ACTIONS(3199), 1, + anon_sym_null, + ACTIONS(3249), 1, + anon_sym_LBRACK, + ACTIONS(3255), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3299), 1, + aux_sym_expr_unary_token1, + ACTIONS(3301), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3303), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3305), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3307), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4982), 1, + anon_sym_LPAREN, + ACTIONS(4984), 1, + anon_sym_DOLLAR, + STATE(1389), 1, + sym__str_double_quotes, + STATE(1458), 1, + sym_expr_parenthesized, + STATE(1461), 1, + sym_val_variable, + STATE(1644), 1, + sym__expr_unary_minus, + STATE(1676), 1, + sym__val_number, + STATE(1708), 1, + sym__inter_single_quotes, + STATE(1709), 1, + sym__inter_double_quotes, + STATE(2332), 1, sym_comment, - ACTIONS(5496), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5500), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5502), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5504), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5498), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5516), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5518), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(3603), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(3601), 26, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [71566] = 4, - ACTIONS(247), 1, + STATE(2837), 1, + sym__val_number_decimal, + STATE(3484), 1, + sym_val_range, + STATE(3785), 1, + sym__expr_binary_expression, + STATE(5510), 1, + sym__expression, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3197), 2, + anon_sym_true, + anon_sym_false, + STATE(1606), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1675), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [66122] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2607), 1, + ACTIONS(4894), 1, + aux_sym_cmd_identifier_token37, + STATE(2333), 1, sym_comment, - ACTIONS(2311), 8, + ACTIONS(2293), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -293378,7 +267582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2313), 48, + ACTIONS(2297), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -293427,12 +267631,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [71633] = 4, + [66192] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2608), 1, + STATE(2334), 1, sym_comment, - ACTIONS(3603), 8, + ACTIONS(5002), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -293441,9 +267646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3601), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5000), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -293454,34 +267657,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -293490,23 +267695,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [71700] = 4, + [66260] = 19, ACTIONS(247), 1, anon_sym_POUND, - STATE(2609), 1, + ACTIONS(1325), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3700), 1, + anon_sym_DQUOTE, + ACTIONS(4852), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5176), 1, + anon_sym_DASH_DASH, + STATE(1929), 1, + sym_cmd_identifier, + STATE(1930), 1, + sym_val_string, + STATE(1972), 1, + sym__str_double_quotes, + STATE(2234), 1, + aux_sym_decl_def_repeat1, + STATE(2335), 1, sym_comment, - ACTIONS(1481), 10, + STATE(2743), 1, + sym_long_flag, + STATE(6132), 1, + sym__command_name, + STATE(6953), 1, + sym__val_number_decimal, + ACTIONS(1323), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3702), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4846), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1483), 46, + ACTIONS(4850), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4848), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293538,289 +267774,553 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, + [66358] = 37, + ACTIONS(191), 1, + anon_sym_DOT_DOT, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(395), 1, + anon_sym_DASH, + ACTIONS(3199), 1, + anon_sym_null, + ACTIONS(3249), 1, + anon_sym_LBRACK, + ACTIONS(3255), 1, + aux_sym_ctrl_match_token1, + ACTIONS(3299), 1, + aux_sym_expr_unary_token1, + ACTIONS(3301), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3303), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3305), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3307), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4982), 1, + anon_sym_LPAREN, + ACTIONS(4984), 1, + anon_sym_DOLLAR, + STATE(1389), 1, + sym__str_double_quotes, + STATE(1458), 1, + sym_expr_parenthesized, + STATE(1461), 1, + sym_val_variable, + STATE(1644), 1, + sym__expr_unary_minus, + STATE(1676), 1, + sym__val_number, + STATE(1708), 1, + sym__inter_single_quotes, + STATE(1709), 1, + sym__inter_double_quotes, + STATE(2336), 1, + sym_comment, + STATE(2837), 1, + sym__val_number_decimal, + STATE(3484), 1, + sym_val_range, + STATE(3785), 1, + sym__expr_binary_expression, + STATE(5531), 1, + sym__expression, + ACTIONS(213), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3197), 2, anon_sym_true, anon_sym_false, - anon_sym_null, + STATE(1606), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(225), 6, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1675), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [66492] = 19, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1325), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3700), 1, + anon_sym_DQUOTE, + ACTIONS(4852), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5176), 1, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + STATE(1929), 1, + sym_cmd_identifier, + STATE(1930), 1, + sym_val_string, + STATE(1972), 1, + sym__str_double_quotes, + STATE(2337), 1, + sym_comment, + STATE(2339), 1, + aux_sym_decl_def_repeat1, + STATE(2743), 1, + sym_long_flag, + STATE(6523), 1, + sym__command_name, + STATE(6953), 1, + sym__val_number_decimal, + ACTIONS(1323), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + ACTIONS(3702), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4846), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4850), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4848), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [66590] = 19, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1325), 1, aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, aux_sym__val_number_decimal_token4, + ACTIONS(3700), 1, anon_sym_DQUOTE, + ACTIONS(4852), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5176), 1, + anon_sym_DASH_DASH, + STATE(1929), 1, + sym_cmd_identifier, + STATE(1930), 1, + sym_val_string, + STATE(1972), 1, + sym__str_double_quotes, + STATE(2338), 1, + sym_comment, + STATE(2340), 1, + aux_sym_decl_def_repeat1, + STATE(2743), 1, + sym_long_flag, + STATE(6532), 1, + sym__command_name, + STATE(6953), 1, + sym__val_number_decimal, + ACTIONS(1323), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3702), 2, sym__str_single_quotes, sym__str_back_ticks, - [71767] = 4, + ACTIONS(4846), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4850), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4848), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [66688] = 19, ACTIONS(247), 1, anon_sym_POUND, - STATE(2610), 1, + ACTIONS(1325), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3700), 1, + anon_sym_DQUOTE, + ACTIONS(4852), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5176), 1, + anon_sym_DASH_DASH, + STATE(1929), 1, + sym_cmd_identifier, + STATE(1930), 1, + sym_val_string, + STATE(1972), 1, + sym__str_double_quotes, + STATE(2339), 1, sym_comment, - ACTIONS(3597), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(3595), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [71834] = 14, + STATE(2572), 1, + aux_sym_decl_def_repeat1, + STATE(2743), 1, + sym_long_flag, + STATE(6533), 1, + sym__command_name, + STATE(6953), 1, + sym__val_number_decimal, + ACTIONS(1323), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3702), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4846), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4850), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4848), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [66786] = 19, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5506), 1, - aux_sym_expr_binary_token13, - ACTIONS(5508), 1, - aux_sym_expr_binary_token14, - ACTIONS(5510), 1, - aux_sym_expr_binary_token15, - STATE(2611), 1, + ACTIONS(1325), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3700), 1, + anon_sym_DQUOTE, + ACTIONS(4852), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5176), 1, + anon_sym_DASH_DASH, + STATE(1929), 1, + sym_cmd_identifier, + STATE(1930), 1, + sym_val_string, + STATE(1972), 1, + sym__str_double_quotes, + STATE(2340), 1, sym_comment, - ACTIONS(5496), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5500), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5502), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5504), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5498), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5516), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5518), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(3603), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(3601), 23, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [71921] = 4, + STATE(2572), 1, + aux_sym_decl_def_repeat1, + STATE(2743), 1, + sym_long_flag, + STATE(6535), 1, + sym__command_name, + STATE(6953), 1, + sym__val_number_decimal, + ACTIONS(1323), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3702), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4846), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4850), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4848), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [66884] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2612), 1, + STATE(2341), 1, sym_comment, - ACTIONS(3201), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(3199), 48, - ts_builtin_sym_end, + ACTIONS(1040), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1042), 50, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [71988] = 4, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + anon_sym_QMARK2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [66952] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2613), 1, + STATE(2342), 1, sym_comment, - ACTIONS(2271), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2273), 48, - ts_builtin_sym_end, + ACTIONS(1044), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1046), 50, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [72055] = 4, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + anon_sym_QMARK2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [67020] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2614), 1, + STATE(2343), 1, sym_comment, - ACTIONS(2241), 8, + ACTIONS(1867), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -293829,7 +268329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2243), 48, + ACTIONS(1869), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -293878,69 +268378,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [72122] = 12, - ACTIONS(247), 1, + [67087] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5528), 1, - anon_sym_DOLLAR, - ACTIONS(5530), 1, - anon_sym_LPAREN2, - ACTIONS(5532), 1, + ACTIONS(5329), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5534), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5536), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5538), 1, - aux_sym__immediate_decimal_token5, - STATE(2615), 1, + ACTIONS(5331), 1, + aux_sym__immediate_decimal_token2, + STATE(2344), 1, sym_comment, - STATE(3179), 1, - sym__immediate_decimal, - STATE(3175), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1431), 19, - anon_sym_LPAREN, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1441), 28, + ACTIONS(1519), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1517), 48, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -293949,43 +268441,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [72205] = 12, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [67158] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5506), 1, - aux_sym_expr_binary_token13, - STATE(2616), 1, + STATE(2345), 1, sym_comment, - ACTIONS(5496), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5500), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5502), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5504), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5498), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5516), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5518), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(3603), 8, + ACTIONS(2259), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -293994,7 +268457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3601), 25, + ACTIONS(2261), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -294007,11 +268470,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, aux_sym_expr_binary_token14, aux_sym_expr_binary_token15, aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -294020,12 +268506,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [72288] = 4, + [67225] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(2617), 1, + STATE(2346), 1, sym_comment, - ACTIONS(2255), 8, + ACTIONS(5333), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5337), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5339), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5335), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5341), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(4974), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -294034,7 +268541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2257), 48, + ACTIONS(4972), 32, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -294047,16 +268554,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, aux_sym_expr_binary_token13, @@ -294069,12 +268566,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -294083,75 +268574,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [72355] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2618), 1, - sym_comment, - ACTIONS(1519), 10, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1521), 46, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [72422] = 4, + [67302] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2619), 1, + STATE(2347), 1, sym_comment, - ACTIONS(2352), 8, + ACTIONS(4996), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -294160,7 +268588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2354), 48, + ACTIONS(4994), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -294209,12 +268637,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [72489] = 4, + [67369] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2620), 1, + STATE(2348), 1, sym_comment, - ACTIONS(2336), 8, + ACTIONS(1076), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -294223,7 +268651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2338), 48, + ACTIONS(1078), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -294272,12 +268700,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [72556] = 4, + [67436] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2621), 1, + STATE(2349), 1, sym_comment, - ACTIONS(3201), 8, + ACTIONS(4745), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -294286,7 +268714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(3199), 48, + ACTIONS(4743), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -294335,77 +268763,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [72623] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2622), 1, - sym_comment, - ACTIONS(966), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(968), 49, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_wild_card, - anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [72690] = 5, + [67503] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5576), 1, - anon_sym_QMARK2, - STATE(2623), 1, + STATE(2350), 1, sym_comment, - ACTIONS(970), 7, + ACTIONS(1040), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, @@ -294413,7 +268776,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, anon_sym_DOT, - ACTIONS(972), 48, + ACTIONS(1042), 49, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -294455,154 +268818,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [72759] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5578), 1, anon_sym_QMARK2, - STATE(2624), 1, - sym_comment, - ACTIONS(980), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(982), 48, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [72828] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5528), 1, - anon_sym_DOLLAR, - ACTIONS(5530), 1, - anon_sym_LPAREN2, - ACTIONS(5532), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5534), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5536), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5538), 1, - aux_sym__immediate_decimal_token5, - STATE(2625), 1, - sym_comment, - STATE(3126), 1, - sym__immediate_decimal, - STATE(3118), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1501), 19, - anon_sym_LPAREN, - anon_sym__, - anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1509), 28, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_LBRACK, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [72911] = 4, + [67570] = 14, ACTIONS(247), 1, anon_sym_POUND, - STATE(2626), 1, + ACTIONS(5345), 1, + aux_sym_expr_binary_token13, + ACTIONS(5347), 1, + aux_sym_expr_binary_token14, + ACTIONS(5349), 1, + aux_sym_expr_binary_token15, + STATE(2351), 1, sym_comment, - ACTIONS(2311), 8, + ACTIONS(5333), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5337), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5339), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5343), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(5335), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5351), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5341), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(4974), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -294611,7 +268875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2313), 48, + ACTIONS(4972), 23, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -294624,34 +268888,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -294660,12 +268899,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [72978] = 4, + [67657] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2627), 1, + STATE(2352), 1, sym_comment, - ACTIONS(1747), 8, + ACTIONS(2376), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -294674,7 +268913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1749), 48, + ACTIONS(2378), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -294723,12 +268962,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [73045] = 4, + [67724] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2628), 1, + STATE(2353), 1, sym_comment, - ACTIONS(2263), 8, + ACTIONS(4745), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -294737,7 +268976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2265), 48, + ACTIONS(4743), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -294786,722 +269025,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [73112] = 15, + [67791] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5506), 1, + ACTIONS(5345), 1, aux_sym_expr_binary_token13, - ACTIONS(5508), 1, + ACTIONS(5347), 1, aux_sym_expr_binary_token14, - ACTIONS(5510), 1, - aux_sym_expr_binary_token15, - ACTIONS(5512), 1, - aux_sym_expr_binary_token16, - STATE(2629), 1, + STATE(2354), 1, sym_comment, - ACTIONS(5496), 2, + ACTIONS(5333), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(5500), 2, + ACTIONS(5337), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(5502), 2, + ACTIONS(5339), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(5504), 2, + ACTIONS(5343), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(5498), 4, + ACTIONS(5335), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(5516), 4, + ACTIONS(5351), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(5518), 6, + ACTIONS(5341), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(3603), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(3601), 22, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [73201] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2630), 1, - sym_comment, - ACTIONS(1585), 10, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1587), 46, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [73268] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5528), 1, - anon_sym_DOLLAR, - ACTIONS(5530), 1, - anon_sym_LPAREN2, - ACTIONS(5532), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5534), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5536), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5538), 1, - aux_sym__immediate_decimal_token5, - STATE(2631), 1, - sym_comment, - STATE(3092), 1, - sym__immediate_decimal, - STATE(3091), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1551), 19, - anon_sym_LPAREN, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1553), 28, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_LBRACK, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [73351] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(2939), 1, - anon_sym_DQUOTE, - ACTIONS(5327), 1, - aux_sym_cmd_identifier_token38, - STATE(2632), 1, - sym_comment, - STATE(2633), 1, - aux_sym_command_list_repeat1, - STATE(5801), 1, - sym__str_double_quotes, - STATE(7036), 1, - sym__command_name, - STATE(7263), 1, - sym__val_number_decimal, - STATE(7548), 1, - sym_cmd_identifier, - STATE(7691), 1, - sym_val_string, - ACTIONS(1259), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(2941), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5321), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5325), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5323), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [73443] = 16, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5589), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5595), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5598), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5601), 1, - anon_sym_DQUOTE, - STATE(5801), 1, - sym__str_double_quotes, - STATE(7263), 1, - sym__val_number_decimal, - STATE(7548), 1, - sym_cmd_identifier, - STATE(7595), 1, - sym__command_name, - STATE(7691), 1, - sym_val_string, - ACTIONS(5592), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5604), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2633), 2, - sym_comment, - aux_sym_command_list_repeat1, - ACTIONS(5580), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5586), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5583), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [73533] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3239), 1, - aux_sym_record_entry_token1, - ACTIONS(4260), 1, - anon_sym_DQUOTE, - ACTIONS(5031), 1, - aux_sym_cmd_identifier_token38, - STATE(2132), 1, - sym_val_string, - STATE(2155), 1, - sym_cmd_identifier, - STATE(2158), 1, - sym__str_double_quotes, - STATE(2634), 1, - sym_comment, - STATE(7482), 1, - sym__val_number_decimal, - STATE(7900), 1, - sym__command_name, - ACTIONS(1259), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4262), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5025), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5029), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5027), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [73625] = 13, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1457), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5607), 1, - anon_sym_DOLLAR, - ACTIONS(5609), 1, - anon_sym_LPAREN2, - ACTIONS(5611), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5613), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5615), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5617), 1, - aux_sym__immediate_decimal_token5, - STATE(2635), 1, - sym_comment, - STATE(3240), 1, - sym__immediate_decimal, - STATE(3290), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1443), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1455), 27, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [73709] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3239), 1, - aux_sym_record_entry_token1, - ACTIONS(4260), 1, - anon_sym_DQUOTE, - ACTIONS(5031), 1, - aux_sym_cmd_identifier_token38, - STATE(2132), 1, - sym_val_string, - STATE(2155), 1, - sym_cmd_identifier, - STATE(2158), 1, - sym__str_double_quotes, - STATE(2636), 1, - sym_comment, - STATE(6732), 1, - sym__command_name, - STATE(7482), 1, - sym__val_number_decimal, - ACTIONS(1259), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4262), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5025), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5029), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5027), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [73801] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3239), 1, - aux_sym_record_entry_token1, - ACTIONS(4260), 1, - anon_sym_DQUOTE, - ACTIONS(5031), 1, - aux_sym_cmd_identifier_token38, - STATE(2132), 1, - sym_val_string, - STATE(2155), 1, - sym_cmd_identifier, - STATE(2158), 1, - sym__str_double_quotes, - STATE(2637), 1, - sym_comment, - STATE(6132), 1, - sym__command_name, - STATE(7482), 1, - sym__val_number_decimal, - ACTIONS(1259), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4262), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5025), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5029), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5027), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [73893] = 13, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1429), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5607), 1, - anon_sym_DOLLAR, - ACTIONS(5609), 1, - anon_sym_LPAREN2, - ACTIONS(5611), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5613), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5615), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5617), 1, - aux_sym__immediate_decimal_token5, - STATE(2638), 1, - sym_comment, - STATE(3237), 1, - sym__immediate_decimal, - STATE(3245), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1413), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1427), 27, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(4974), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4972), 24, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -295510,58 +269097,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [73977] = 11, - ACTIONS(3), 1, + [67876] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1553), 1, - sym__entry_separator, - ACTIONS(5548), 1, - anon_sym_DOLLAR, - ACTIONS(5550), 1, - anon_sym_LPAREN2, - ACTIONS(5621), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5623), 1, - aux_sym__immediate_decimal_token5, - STATE(2639), 1, + STATE(2355), 1, sym_comment, - STATE(3109), 1, - sym__immediate_decimal, - ACTIONS(5619), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3106), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1551), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(1961), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -295570,6 +269111,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(1963), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -295578,121 +269160,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [74057] = 4, + [67943] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2640), 1, - sym_comment, - ACTIONS(5208), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(5206), 49, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - aux_sym_ctrl_match_token1, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [74123] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1557), 1, - sym__entry_separator, - ACTIONS(5548), 1, - anon_sym_DOLLAR, - ACTIONS(5550), 1, - anon_sym_LPAREN2, - ACTIONS(5621), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5623), 1, - aux_sym__immediate_decimal_token5, - STATE(2641), 1, + STATE(2356), 1, sym_comment, - STATE(3113), 1, - sym__immediate_decimal, - ACTIONS(5619), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3111), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1555), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(1575), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -295701,6 +269174,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(1587), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -295709,59 +269223,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [74203] = 11, - ACTIONS(3), 1, + [68010] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1509), 1, - sym__entry_separator, - ACTIONS(5548), 1, - anon_sym_DOLLAR, - ACTIONS(5550), 1, - anon_sym_LPAREN2, - ACTIONS(5621), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5623), 1, - aux_sym__immediate_decimal_token5, - STATE(2642), 1, + STATE(2357), 1, sym_comment, - STATE(3120), 1, - sym__immediate_decimal, - ACTIONS(5619), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3114), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1501), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(2355), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -295770,6 +269237,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(2357), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -295778,20 +269286,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [74283] = 4, + [68077] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2643), 1, + STATE(2358), 1, sym_comment, - ACTIONS(2241), 6, + ACTIONS(1517), 10, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2243), 49, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1519), 46, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295828,12 +269339,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -295841,19 +269349,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [74349] = 4, + [68144] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2644), 1, + STATE(2359), 1, sym_comment, - ACTIONS(2263), 6, + ACTIONS(1044), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2265), 49, + anon_sym_DOT, + ACTIONS(1046), 49, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295893,9 +269403,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, sym_wild_card, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -295903,12 +269412,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [74415] = 4, + [68211] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2645), 1, + STATE(2360), 1, + sym_comment, + ACTIONS(2392), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2394), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [68278] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2361), 1, sym_comment, - ACTIONS(994), 7, + ACTIONS(1060), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, @@ -295916,8 +269488,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, anon_sym_DOT, - ACTIONS(996), 48, - ts_builtin_sym_end, + ACTIONS(1062), 49, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295957,6 +269528,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -295965,50 +269538,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [74481] = 17, + [68345] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3239), 1, - aux_sym_record_entry_token1, - ACTIONS(4260), 1, - anon_sym_DQUOTE, - ACTIONS(5031), 1, - aux_sym_cmd_identifier_token38, - STATE(1701), 1, - sym__command_name, - STATE(2132), 1, - sym_val_string, - STATE(2155), 1, - sym_cmd_identifier, - STATE(2158), 1, - sym__str_double_quotes, - STATE(2646), 1, + STATE(2362), 1, sym_comment, - STATE(7482), 1, - sym__val_number_decimal, - ACTIONS(1259), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4262), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5025), 5, + ACTIONS(4745), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4743), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [68412] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2363), 1, + sym_comment, + ACTIONS(1052), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5029), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5027), 31, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1054), 49, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296040,224 +269646,620 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [74573] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(2939), 1, - anon_sym_DQUOTE, - ACTIONS(5327), 1, - aux_sym_cmd_identifier_token38, - STATE(2633), 1, - aux_sym_command_list_repeat1, - STATE(2647), 1, - sym_comment, - STATE(5801), 1, - sym__str_double_quotes, - STATE(7263), 1, - sym__val_number_decimal, - STATE(7268), 1, - sym__command_name, - STATE(7548), 1, - sym_cmd_identifier, - STATE(7691), 1, - sym_val_string, - ACTIONS(1259), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(2941), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5321), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5325), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5323), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [74665] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1261), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3269), 1, - aux_sym_record_entry_token1, - ACTIONS(4260), 1, anon_sym_DQUOTE, - ACTIONS(5031), 1, - aux_sym_cmd_identifier_token38, - STATE(2132), 1, - sym_val_string, - STATE(2155), 1, - sym_cmd_identifier, - STATE(2158), 1, - sym__str_double_quotes, - STATE(2648), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [68479] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2364), 1, + sym_comment, + ACTIONS(4745), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4743), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [68546] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5345), 1, + aux_sym_expr_binary_token13, + ACTIONS(5347), 1, + aux_sym_expr_binary_token14, + ACTIONS(5349), 1, + aux_sym_expr_binary_token15, + ACTIONS(5353), 1, + aux_sym_expr_binary_token16, + STATE(2365), 1, + sym_comment, + ACTIONS(5333), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5337), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5339), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5343), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(5335), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5351), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5341), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(4974), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4972), 22, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [68635] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2366), 1, + sym_comment, + ACTIONS(4745), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4743), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [68702] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2367), 1, + sym_comment, + ACTIONS(2453), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2455), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [68769] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2368), 1, + sym_comment, + ACTIONS(2396), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2398), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [68836] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2369), 1, + sym_comment, + ACTIONS(4745), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4743), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [68903] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5345), 1, + aux_sym_expr_binary_token13, + ACTIONS(5347), 1, + aux_sym_expr_binary_token14, + ACTIONS(5349), 1, + aux_sym_expr_binary_token15, + ACTIONS(5353), 1, + aux_sym_expr_binary_token16, + ACTIONS(5355), 1, + aux_sym_expr_binary_token17, + STATE(2370), 1, + sym_comment, + ACTIONS(5333), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5337), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5339), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5343), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(5335), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5351), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5341), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(4974), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4972), 21, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [68994] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2371), 1, sym_comment, - STATE(7482), 1, - sym__val_number_decimal, - STATE(7900), 1, - sym__command_name, - ACTIONS(1259), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4262), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5025), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5029), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5027), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [74757] = 4, + ACTIONS(1843), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1845), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [69061] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2649), 1, + STATE(2372), 1, sym_comment, - ACTIONS(1982), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1984), 49, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2443), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2445), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [74823] = 4, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [69128] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2650), 1, + STATE(2373), 1, sym_comment, - ACTIONS(990), 7, + ACTIONS(1048), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, @@ -296265,7 +270267,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, anon_sym_DOT, - ACTIONS(992), 48, + ACTIONS(1050), 49, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -296307,6 +270309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, sym_wild_card, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -296314,572 +270317,1014 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [74889] = 4, - ACTIONS(247), 1, + [69195] = 12, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2651), 1, + ACTIONS(1493), 1, + sym__entry_separator, + ACTIONS(1495), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5357), 1, + anon_sym_DOLLAR, + ACTIONS(5359), 1, + anon_sym_LPAREN2, + ACTIONS(5363), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5365), 1, + aux_sym__immediate_decimal_token5, + STATE(2374), 1, sym_comment, - ACTIONS(5235), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(5233), 49, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + STATE(2790), 1, + sym__immediate_decimal, + ACTIONS(5361), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2901), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1479), 45, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, aux_sym_ctrl_match_token1, - sym_wild_card, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [74955] = 4, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [69278] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2652), 1, + STATE(2375), 1, sym_comment, - ACTIONS(3375), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(3373), 49, + ACTIONS(2404), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2406), 48, ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [69345] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2376), 1, + sym_comment, + ACTIONS(1859), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1861), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [69412] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2377), 1, + sym_comment, + ACTIONS(5333), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5337), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5339), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5335), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(4974), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4972), 38, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [69487] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2378), 1, + sym_comment, + ACTIONS(2368), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2370), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [69554] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1515), 1, + sym__entry_separator, + ACTIONS(2816), 1, + anon_sym_DOLLAR, + ACTIONS(5299), 1, + anon_sym_LPAREN2, + ACTIONS(5367), 1, + anon_sym_DOT, + ACTIONS(5371), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5373), 1, + aux_sym__immediate_decimal_token5, + STATE(2379), 1, + sym_comment, + STATE(2751), 1, + sym__immediate_decimal, + ACTIONS(5369), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2730), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1505), 45, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, aux_sym_ctrl_match_token1, - sym_wild_card, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75021] = 4, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [69637] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2653), 1, + STATE(2380), 1, sym_comment, - ACTIONS(1021), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1023), 49, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2457), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2459), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [75087] = 4, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [69704] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2654), 1, + STATE(2381), 1, sym_comment, - ACTIONS(5220), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(5218), 49, + ACTIONS(4818), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4816), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(4820), 28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [69773] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2382), 1, + sym_comment, + ACTIONS(5333), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5337), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5339), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5343), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(5335), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5351), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5341), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(4974), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4972), 26, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [69854] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2383), 1, + sym_comment, + ACTIONS(2408), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2410), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [69921] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2384), 1, + sym_comment, + ACTIONS(2372), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2374), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [69988] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2385), 1, + sym_comment, + ACTIONS(1890), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1892), 48, ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - aux_sym_ctrl_match_token1, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [75153] = 17, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [70055] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3269), 1, - aux_sym_record_entry_token1, - ACTIONS(4260), 1, - anon_sym_DQUOTE, - ACTIONS(5031), 1, - aux_sym_cmd_identifier_token38, - STATE(1701), 1, - sym__command_name, - STATE(2132), 1, - sym_val_string, - STATE(2155), 1, - sym_cmd_identifier, - STATE(2158), 1, - sym__str_double_quotes, - STATE(2655), 1, + ACTIONS(1495), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(3730), 1, + anon_sym_DOLLAR, + ACTIONS(5375), 1, + anon_sym_LPAREN2, + ACTIONS(5377), 1, + anon_sym_DOT, + ACTIONS(5379), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5381), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5383), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5385), 1, + aux_sym__immediate_decimal_token5, + STATE(2386), 1, sym_comment, - STATE(7482), 1, - sym__val_number_decimal, - ACTIONS(1259), 2, + STATE(2742), 1, + sym__immediate_decimal, + STATE(2827), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1479), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4262), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5025), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5029), 5, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1493), 27, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5027), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [75245] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(2939), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(5327), 1, - aux_sym_cmd_identifier_token38, - STATE(2633), 1, - aux_sym_command_list_repeat1, - STATE(2656), 1, - sym_comment, - STATE(5801), 1, - sym__str_double_quotes, - STATE(7174), 1, - sym__command_name, - STATE(7263), 1, - sym__val_number_decimal, - STATE(7548), 1, - sym_cmd_identifier, - STATE(7691), 1, - sym_val_string, - ACTIONS(1259), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(2941), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5321), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5325), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5323), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [75337] = 4, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [70142] = 12, ACTIONS(247), 1, anon_sym_POUND, - STATE(2657), 1, + ACTIONS(5345), 1, + aux_sym_expr_binary_token13, + STATE(2387), 1, sym_comment, - ACTIONS(2311), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2313), 49, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(5333), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5337), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5339), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5343), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(5335), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5351), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5341), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(4974), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4972), 25, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [75403] = 4, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [70225] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2658), 1, + STATE(2388), 1, sym_comment, - ACTIONS(986), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(988), 48, + ACTIONS(1871), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1873), 48, ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [75469] = 17, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [70292] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3269), 1, - aux_sym_record_entry_token1, - ACTIONS(4260), 1, - anon_sym_DQUOTE, - ACTIONS(5031), 1, - aux_sym_cmd_identifier_token38, - STATE(2132), 1, - sym_val_string, - STATE(2155), 1, - sym_cmd_identifier, - STATE(2158), 1, - sym__str_double_quotes, - STATE(2659), 1, + STATE(2389), 1, sym_comment, - STATE(6732), 1, - sym__command_name, - STATE(7482), 1, - sym__val_number_decimal, - ACTIONS(1259), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4262), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5025), 5, + ACTIONS(1639), 10, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5029), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5027), 31, + aux_sym_cmd_identifier_token38, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1641), 46, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296911,332 +271356,153 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [75561] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3269), 1, - aux_sym_record_entry_token1, - ACTIONS(4260), 1, - anon_sym_DQUOTE, - ACTIONS(5031), 1, - aux_sym_cmd_identifier_token38, - STATE(2132), 1, - sym_val_string, - STATE(2155), 1, - sym_cmd_identifier, - STATE(2158), 1, - sym__str_double_quotes, - STATE(2660), 1, - sym_comment, - STATE(6132), 1, - sym__command_name, - STATE(7482), 1, - sym__val_number_decimal, - ACTIONS(1259), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4262), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5025), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5029), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5027), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [75653] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1261), 1, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, aux_sym__val_number_decimal_token4, - ACTIONS(2939), 1, anon_sym_DQUOTE, - ACTIONS(5327), 1, - aux_sym_cmd_identifier_token38, - STATE(2633), 1, - aux_sym_command_list_repeat1, - STATE(2661), 1, - sym_comment, - STATE(5801), 1, - sym__str_double_quotes, - STATE(7263), 1, - sym__val_number_decimal, - STATE(7299), 1, - sym__command_name, - STATE(7548), 1, - sym_cmd_identifier, - STATE(7691), 1, - sym_val_string, - ACTIONS(1259), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(2941), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5321), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5325), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5323), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [75745] = 4, + [70359] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2662), 1, + STATE(2390), 1, sym_comment, - ACTIONS(3487), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(3485), 49, + ACTIONS(2412), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2414), 48, ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - aux_sym_ctrl_match_token1, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [75811] = 4, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [70426] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2663), 1, + STATE(2391), 1, sym_comment, - ACTIONS(5204), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(5202), 49, + ACTIONS(4745), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4743), 48, ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - aux_sym_ctrl_match_token1, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [75877] = 11, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [70493] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1537), 1, - sym__entry_separator, - ACTIONS(5625), 1, - anon_sym_LPAREN2, - ACTIONS(5627), 1, - anon_sym_DOT_DOT2, - ACTIONS(5631), 1, - sym_filesize_unit, - ACTIONS(5633), 1, - sym_duration_unit, - ACTIONS(5635), 1, - aux_sym__unquoted_in_list_token2, - STATE(2664), 1, + STATE(2392), 1, sym_comment, - STATE(7640), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5629), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1525), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(2380), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -297245,6 +271511,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(2382), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -297253,41 +271560,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [75957] = 13, + [70560] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3968), 1, - anon_sym_DOLLAR, - ACTIONS(5564), 1, - anon_sym_LPAREN2, - ACTIONS(5637), 1, - anon_sym_DOT, - ACTIONS(5639), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5641), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5643), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5645), 1, - aux_sym__immediate_decimal_token5, - STATE(2665), 1, + STATE(2393), 1, sym_comment, - STATE(3038), 1, - sym__immediate_decimal, - STATE(3037), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1431), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1894), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -297296,27 +271574,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1441), 27, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(1896), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [70627] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2394), 1, + sym_comment, + ACTIONS(2384), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2386), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -297325,20 +271686,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [76041] = 4, + [70694] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2666), 1, + STATE(2395), 1, sym_comment, - ACTIONS(5212), 6, + ACTIONS(1565), 10, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(5210), 49, - ts_builtin_sym_end, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1567), 46, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297375,63 +271739,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - aux_sym_ctrl_match_token1, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [76107] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5542), 1, - aux_sym__immediate_decimal_token2, - STATE(2667), 1, - sym_comment, - ACTIONS(1475), 6, - anon_sym_LPAREN2, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1473), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + [70761] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2396), 1, + sym_comment, + ACTIONS(2388), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -297440,6 +271763,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(2390), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -297448,60 +271812,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [76175] = 11, - ACTIONS(3), 1, + [70828] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1441), 1, - sym__entry_separator, - ACTIONS(5548), 1, - anon_sym_DOLLAR, - ACTIONS(5550), 1, - anon_sym_LPAREN2, - ACTIONS(5621), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5623), 1, - aux_sym__immediate_decimal_token5, - STATE(2668), 1, + STATE(2397), 1, sym_comment, - STATE(3167), 1, - sym__immediate_decimal, - ACTIONS(5619), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3166), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1431), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(1945), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -297510,6 +271826,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(1947), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -297518,30 +271875,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [76255] = 8, + [70895] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5647), 1, - anon_sym_DOT, - STATE(2669), 1, + STATE(2398), 1, sym_comment, - STATE(2702), 1, - aux_sym_cell_path_repeat1, - STATE(2812), 1, - sym_path, - STATE(2885), 1, - sym_cell_path, - ACTIONS(945), 18, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(4992), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -297550,33 +271889,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(947), 33, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(4990), 48, + ts_builtin_sym_end, sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -297585,83 +271938,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [76329] = 4, + [70962] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2670), 1, + STATE(2399), 1, sym_comment, - ACTIONS(2271), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2273), 49, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2400), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2402), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [76395] = 5, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [71029] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5649), 1, + ACTIONS(5387), 1, + anon_sym_DOT, + ACTIONS(5389), 1, aux_sym__immediate_decimal_token2, - STATE(2671), 1, + STATE(2400), 1, sym_comment, - ACTIONS(1521), 6, + ACTIONS(1499), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - ACTIONS(1519), 48, + ACTIONS(1497), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -297710,408 +272066,728 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - [76463] = 4, + [71100] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2672), 1, + STATE(2401), 1, sym_comment, - ACTIONS(2311), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2313), 49, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2436), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2438), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [76529] = 4, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [71167] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2673), 1, + STATE(2402), 1, sym_comment, - ACTIONS(2295), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2297), 49, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(4970), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4820), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [76595] = 8, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [71234] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5651), 1, - anon_sym_DOT, - STATE(2674), 1, + STATE(2403), 1, sym_comment, - STATE(2758), 1, - aux_sym_cell_path_repeat1, - STATE(2841), 1, - sym_path, - STATE(3012), 1, - sym_cell_path, - ACTIONS(1871), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1873), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [76668] = 4, + ACTIONS(4974), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4972), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [71301] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2404), 1, + sym_comment, + ACTIONS(2364), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2366), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [71368] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2405), 1, + sym_comment, + ACTIONS(4745), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4743), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [71435] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2406), 1, + sym_comment, + ACTIONS(5333), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(4974), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4972), 46, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [71504] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2407), 1, + sym_comment, + ACTIONS(2364), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2366), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [71571] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2408), 1, + sym_comment, + ACTIONS(2420), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2422), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [71638] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2675), 1, + STATE(2409), 1, sym_comment, - ACTIONS(2263), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2265), 48, + ACTIONS(4745), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4743), 48, ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [76733] = 4, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [71705] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2676), 1, + STATE(2410), 1, sym_comment, - ACTIONS(2295), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2297), 48, + ACTIONS(2424), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2426), 48, ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [76798] = 16, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [71772] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4260), 1, - anon_sym_DQUOTE, - ACTIONS(5031), 1, - aux_sym_cmd_identifier_token38, - STATE(2132), 1, - sym_val_string, - STATE(2155), 1, - sym_cmd_identifier, - STATE(2158), 1, - sym__str_double_quotes, - STATE(2677), 1, + STATE(2411), 1, sym_comment, - STATE(7482), 1, - sym__val_number_decimal, - STATE(7948), 1, - sym__command_name, - ACTIONS(1259), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4262), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5025), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5029), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5027), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [76887] = 8, + ACTIONS(5333), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5335), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(4974), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4972), 42, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [71843] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5653), 1, - anon_sym_DOT, - STATE(2678), 1, - sym_comment, - STATE(2764), 1, - aux_sym_cell_path_repeat1, - STATE(2840), 1, - sym_path, - STATE(2945), 1, - sym_cell_path, - ACTIONS(1603), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(1551), 1, sym__entry_separator, - ACTIONS(1599), 47, + ACTIONS(1553), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5357), 1, + anon_sym_DOLLAR, + ACTIONS(5359), 1, + anon_sym_LPAREN2, + ACTIONS(5363), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5365), 1, + aux_sym__immediate_decimal_token5, + STATE(2412), 1, + sym_comment, + STATE(2832), 1, + sym__immediate_decimal, + ACTIONS(5361), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2898), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1549), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -298122,10 +272798,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -298159,411 +272833,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [76960] = 16, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5107), 1, - aux_sym_cmd_identifier_token38, - STATE(2144), 1, - sym__str_double_quotes, - STATE(2640), 1, - sym_val_string, - STATE(2651), 1, - sym_cmd_identifier, - STATE(2679), 1, - sym_comment, - STATE(6269), 1, - sym__command_name, - STATE(7112), 1, - sym__val_number_decimal, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1259), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5101), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5105), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5103), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [77049] = 16, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4260), 1, - anon_sym_DQUOTE, - ACTIONS(5031), 1, - aux_sym_cmd_identifier_token38, - STATE(2132), 1, - sym_val_string, - STATE(2155), 1, - sym_cmd_identifier, - STATE(2158), 1, - sym__str_double_quotes, - STATE(2680), 1, - sym_comment, - STATE(7482), 1, - sym__val_number_decimal, - STATE(7944), 1, - sym__command_name, - ACTIONS(1259), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4262), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5025), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5029), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5027), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [77138] = 16, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5107), 1, - aux_sym_cmd_identifier_token38, - STATE(2144), 1, - sym__str_double_quotes, - STATE(2640), 1, - sym_val_string, - STATE(2651), 1, - sym_cmd_identifier, - STATE(2681), 1, - sym_comment, - STATE(7112), 1, - sym__val_number_decimal, - STATE(7385), 1, - sym__command_name, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1259), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5101), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5105), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5103), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [77227] = 8, + [71926] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5651), 1, - anon_sym_DOT, - STATE(2682), 1, + STATE(2413), 1, sym_comment, - STATE(2758), 1, - aux_sym_cell_path_repeat1, - STATE(2841), 1, - sym_path, - STATE(2939), 1, - sym_cell_path, - ACTIONS(1847), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1849), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [77300] = 16, - ACTIONS(111), 1, - anon_sym_DQUOTE, + ACTIONS(4745), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4743), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [71993] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5107), 1, - aux_sym_cmd_identifier_token38, - STATE(2144), 1, - sym__str_double_quotes, - STATE(2640), 1, - sym_val_string, - STATE(2651), 1, - sym_cmd_identifier, - STATE(2683), 1, - sym_comment, - STATE(7112), 1, - sym__val_number_decimal, - STATE(7410), 1, - sym__command_name, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1259), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5101), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5105), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5103), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [77389] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5653), 1, - anon_sym_DOT, - STATE(2684), 1, + STATE(2414), 1, sym_comment, - STATE(2764), 1, - aux_sym_cell_path_repeat1, - STATE(2840), 1, - sym_path, - STATE(2977), 1, - sym_cell_path, - ACTIONS(947), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(945), 47, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(5333), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5337), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5335), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(4974), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -298572,6 +272921,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(4972), 40, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -298580,25 +272962,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [77462] = 6, + [72066] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5655), 1, - anon_sym_DOT, - ACTIONS(5657), 1, - aux_sym__immediate_decimal_token2, - STATE(2685), 1, + STATE(2415), 1, sym_comment, - ACTIONS(1473), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1949), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -298607,35 +272976,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1475), 34, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(1951), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -298644,48 +273025,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [77531] = 16, + [72133] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4260), 1, - anon_sym_DQUOTE, - ACTIONS(5031), 1, - aux_sym_cmd_identifier_token38, - STATE(2132), 1, - sym_val_string, - STATE(2155), 1, - sym_cmd_identifier, - STATE(2158), 1, - sym__str_double_quotes, - STATE(2686), 1, + ACTIONS(5391), 1, + anon_sym_QMARK2, + STATE(2416), 1, sym_comment, - STATE(7482), 1, - sym__val_number_decimal, - STATE(7878), 1, - sym__command_name, - ACTIONS(1259), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4262), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5025), 5, + ACTIONS(1034), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5029), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5027), 31, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1036), 48, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298717,61 +273073,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [77620] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5659), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5661), 1, - aux_sym__immediate_decimal_token2, - STATE(2687), 1, - sym_comment, - ACTIONS(1481), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1483), 34, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + sym_wild_card, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + [72202] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2417), 1, + sym_comment, + ACTIONS(4745), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4743), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -298780,27 +273152,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [77689] = 8, + [72269] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5651), 1, - anon_sym_DOT, - STATE(2688), 1, + ACTIONS(5393), 1, + anon_sym_QMARK2, + STATE(2418), 1, sym_comment, - STATE(2758), 1, - aux_sym_cell_path_repeat1, - STATE(2841), 1, - sym_path, - STATE(3006), 1, - sym_cell_path, - ACTIONS(1875), 6, + ACTIONS(1028), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1877), 44, + anon_sym_DOT, + ACTIONS(1030), 48, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298837,7 +273205,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -298845,48 +273216,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77762] = 16, - ACTIONS(111), 1, - anon_sym_DQUOTE, + [72338] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5107), 1, - aux_sym_cmd_identifier_token38, - STATE(2144), 1, - sym__str_double_quotes, - STATE(2640), 1, - sym_val_string, - STATE(2651), 1, - sym_cmd_identifier, - STATE(2689), 1, + STATE(2419), 1, sym_comment, - STATE(7112), 1, - sym__val_number_decimal, - STATE(7331), 1, - sym__command_name, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1259), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5101), 5, + ACTIONS(2428), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2430), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [72405] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4433), 1, + anon_sym_DOT_DOT2, + ACTIONS(5395), 1, + sym_filesize_unit, + ACTIONS(5397), 1, + sym_duration_unit, + ACTIONS(5399), 1, + aux_sym_unquoted_token2, + STATE(2420), 1, + sym_comment, + ACTIONS(4435), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1575), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5105), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5103), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(1587), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298918,51 +273334,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [77851] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5663), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5665), 1, - aux_sym__immediate_decimal_token2, - STATE(2690), 1, - sym_comment, - ACTIONS(1571), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1569), 48, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + [72482] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2421), 1, + sym_comment, + ACTIONS(5002), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -298971,6 +273361,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5000), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -298979,22 +273410,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [77920] = 4, + [72549] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2691), 1, + STATE(2422), 1, sym_comment, - ACTIONS(1982), 6, + ACTIONS(1497), 10, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1984), 48, - ts_builtin_sym_end, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1499), 46, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299031,10 +273463,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_wild_card, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -299042,27 +273473,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77985] = 8, + [72616] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5651), 1, - anon_sym_DOT, - STATE(2692), 1, + STATE(2423), 1, sym_comment, - STATE(2758), 1, - aux_sym_cell_path_repeat1, - STATE(2841), 1, - sym_path, - STATE(2936), 1, - sym_cell_path, - ACTIONS(1879), 6, + ACTIONS(5333), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5337), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5339), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5335), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5351), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5341), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(4974), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4972), 28, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [72695] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2424), 1, + sym_comment, + ACTIONS(4745), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4743), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [72762] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2425), 1, + sym_comment, + ACTIONS(1056), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1881), 44, + anon_sym_DOT, + ACTIONS(1058), 49, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299099,7 +273655,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -299107,27 +273668,272 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78058] = 8, + [72829] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5651), 1, - anon_sym_DOT, - STATE(2693), 1, + STATE(2426), 1, sym_comment, - STATE(2758), 1, - aux_sym_cell_path_repeat1, - STATE(2841), 1, - sym_path, - STATE(2979), 1, - sym_cell_path, - ACTIONS(1883), 6, + ACTIONS(2432), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2434), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [72896] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2427), 1, + sym_comment, + ACTIONS(4745), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4743), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [72963] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2428), 1, + sym_comment, + ACTIONS(1879), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1881), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [73030] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2429), 1, + sym_comment, + ACTIONS(2416), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2418), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [73097] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2430), 1, + sym_comment, + ACTIONS(4888), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1885), 44, + ACTIONS(4886), 49, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299164,7 +273970,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + aux_sym_ctrl_match_token1, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -299172,27 +273982,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78131] = 8, + [73163] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5651), 1, - anon_sym_DOT, - STATE(2694), 1, + ACTIONS(1325), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3213), 1, + aux_sym_record_entry_token1, + ACTIONS(3700), 1, + anon_sym_DQUOTE, + ACTIONS(4852), 1, + aux_sym_cmd_identifier_token38, + STATE(1929), 1, + sym_cmd_identifier, + STATE(1930), 1, + sym_val_string, + STATE(1972), 1, + sym__str_double_quotes, + STATE(2431), 1, sym_comment, - STATE(2758), 1, - aux_sym_cell_path_repeat1, - STATE(2841), 1, - sym_path, - STATE(2924), 1, - sym_cell_path, - ACTIONS(1891), 6, + STATE(5681), 1, + sym__command_name, + STATE(6953), 1, + sym__val_number_decimal, + ACTIONS(1323), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3702), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4846), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1893), 44, + ACTIONS(4850), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4848), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299224,40 +274057,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [78204] = 8, + [73255] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5651), 1, - anon_sym_DOT, - STATE(2695), 1, + STATE(2432), 1, sym_comment, - STATE(2758), 1, - aux_sym_cell_path_repeat1, - STATE(2841), 1, - sym_path, - STATE(2973), 1, - sym_cell_path, - ACTIONS(1895), 6, + ACTIONS(2137), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1897), 44, + ACTIONS(2139), 49, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299294,7 +274106,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -299302,49 +274119,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78277] = 4, - ACTIONS(3), 1, + [73321] = 13, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2696), 1, - sym_comment, - ACTIONS(1475), 6, + ACTIONS(1553), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5401), 1, + anon_sym_DOLLAR, + ACTIONS(5403), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1473), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5405), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5407), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5409), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5411), 1, + aux_sym__immediate_decimal_token5, + STATE(2433), 1, + sym_comment, + STATE(2956), 1, + sym__immediate_decimal, + STATE(3027), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1549), 18, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -299353,29 +274161,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [78342] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2697), 1, - sym_comment, - ACTIONS(1483), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1481), 48, + ACTIONS(1551), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -299384,36 +274171,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -299422,21 +274190,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [78407] = 4, + [73405] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2698), 1, + ACTIONS(5413), 1, + aux_sym__immediate_decimal_token2, + STATE(2434), 1, sym_comment, - ACTIONS(1521), 6, + ACTIONS(1567), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - ACTIONS(1519), 48, + ACTIONS(1565), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -299485,19 +274253,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - [78472] = 4, + [73473] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(2699), 1, - sym_comment, - ACTIONS(1587), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, + ACTIONS(1623), 1, sym__entry_separator, - ACTIONS(1585), 48, + ACTIONS(5357), 1, + anon_sym_DOLLAR, + ACTIONS(5359), 1, + anon_sym_LPAREN2, + ACTIONS(5417), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5419), 1, + aux_sym__immediate_decimal_token5, + STATE(2435), 1, + sym_comment, + STATE(2884), 1, + sym__immediate_decimal, + ACTIONS(5415), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2876), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1621), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -299508,10 +274287,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -299545,49 +274322,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [78537] = 16, + [73553] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4260), 1, - anon_sym_DQUOTE, - ACTIONS(5031), 1, - aux_sym_cmd_identifier_token38, - STATE(2132), 1, - sym_val_string, - STATE(2155), 1, - sym_cmd_identifier, - STATE(2158), 1, - sym__str_double_quotes, - STATE(2700), 1, + STATE(2436), 1, sym_comment, - STATE(6794), 1, - sym__command_name, - STATE(7482), 1, - sym__val_number_decimal, - ACTIONS(1259), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4262), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5025), 5, + ACTIONS(4926), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5029), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5027), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(4924), 49, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299619,238 +274367,191 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [78626] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5667), 1, - anon_sym_DOT, - ACTIONS(5669), 1, - aux_sym__immediate_decimal_token2, - STATE(2701), 1, - sym_comment, - ACTIONS(1591), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1589), 48, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [78695] = 7, + [73619] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5647), 1, - anon_sym_DOT, - STATE(2702), 1, + STATE(2437), 1, sym_comment, - STATE(2703), 1, - aux_sym_cell_path_repeat1, - STATE(2812), 1, - sym_path, - ACTIONS(951), 18, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(953), 33, + ACTIONS(2384), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2386), 49, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + sym_wild_card, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [78766] = 6, + [73685] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5671), 1, - anon_sym_DOT, - STATE(2812), 1, - sym_path, - STATE(2703), 2, + STATE(2438), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(955), 18, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(957), 33, + ACTIONS(2388), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2390), 49, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + sym_wild_card, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [78835] = 16, + [73751] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1261), 1, + ACTIONS(1325), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, + ACTIONS(1327), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4260), 1, + ACTIONS(3215), 1, + aux_sym_record_entry_token1, + ACTIONS(3700), 1, anon_sym_DQUOTE, - ACTIONS(5031), 1, + ACTIONS(4852), 1, aux_sym_cmd_identifier_token38, - STATE(2132), 1, - sym_val_string, - STATE(2155), 1, + STATE(1929), 1, sym_cmd_identifier, - STATE(2158), 1, + STATE(1930), 1, + sym_val_string, + STATE(1972), 1, sym__str_double_quotes, - STATE(2704), 1, + STATE(2439), 1, sym_comment, - STATE(6906), 1, - sym__command_name, - STATE(7482), 1, + STATE(6953), 1, sym__val_number_decimal, - ACTIONS(1259), 2, + STATE(7635), 1, + sym__command_name, + ACTIONS(1323), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4262), 2, + ACTIONS(3702), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5025), 5, + ACTIONS(4846), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5029), 5, + ACTIONS(4850), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5027), 31, + ACTIONS(4848), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299882,48 +274583,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [78924] = 16, + [73843] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1261), 1, + ACTIONS(1325), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, + ACTIONS(1327), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4260), 1, + ACTIONS(3215), 1, + aux_sym_record_entry_token1, + ACTIONS(3700), 1, anon_sym_DQUOTE, - ACTIONS(5031), 1, + ACTIONS(4852), 1, aux_sym_cmd_identifier_token38, - STATE(2132), 1, - sym_val_string, - STATE(2155), 1, + STATE(1929), 1, sym_cmd_identifier, - STATE(2158), 1, + STATE(1930), 1, + sym_val_string, + STATE(1972), 1, sym__str_double_quotes, - STATE(2705), 1, + STATE(2440), 1, sym_comment, - STATE(6907), 1, + STATE(6127), 1, sym__command_name, - STATE(7482), 1, + STATE(6953), 1, sym__val_number_decimal, - ACTIONS(1259), 2, + ACTIONS(1323), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4262), 2, + ACTIONS(3702), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5025), 5, + ACTIONS(4846), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5029), 5, + ACTIONS(4850), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5027), 31, + ACTIONS(4848), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299955,48 +274658,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [79013] = 16, + [73935] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1261), 1, + ACTIONS(1325), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, + ACTIONS(1327), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4260), 1, + ACTIONS(3215), 1, + aux_sym_record_entry_token1, + ACTIONS(3700), 1, anon_sym_DQUOTE, - ACTIONS(5031), 1, + ACTIONS(4852), 1, aux_sym_cmd_identifier_token38, - STATE(2132), 1, - sym_val_string, - STATE(2155), 1, + STATE(1929), 1, sym_cmd_identifier, - STATE(2158), 1, + STATE(1930), 1, + sym_val_string, + STATE(1972), 1, sym__str_double_quotes, - STATE(2706), 1, + STATE(2441), 1, sym_comment, - STATE(6438), 1, + STATE(5681), 1, sym__command_name, - STATE(7482), 1, + STATE(6953), 1, sym__val_number_decimal, - ACTIONS(1259), 2, + ACTIONS(1323), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4262), 2, + ACTIONS(3702), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5025), 5, + ACTIONS(4846), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5029), 5, + ACTIONS(4850), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5027), 31, + ACTIONS(4848), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300028,48 +274733,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [79102] = 16, - ACTIONS(111), 1, - anon_sym_DQUOTE, + [74027] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1261), 1, + ACTIONS(1325), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, + ACTIONS(1327), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5107), 1, + ACTIONS(3215), 1, + aux_sym_record_entry_token1, + ACTIONS(3700), 1, + anon_sym_DQUOTE, + ACTIONS(4852), 1, aux_sym_cmd_identifier_token38, - STATE(2144), 1, - sym__str_double_quotes, - STATE(2640), 1, - sym_val_string, - STATE(2651), 1, + STATE(1476), 1, + sym__command_name, + STATE(1929), 1, sym_cmd_identifier, - STATE(2707), 1, + STATE(1930), 1, + sym_val_string, + STATE(1972), 1, + sym__str_double_quotes, + STATE(2442), 1, sym_comment, - STATE(6285), 1, - sym__command_name, - STATE(7112), 1, + STATE(6953), 1, sym__val_number_decimal, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1259), 2, + ACTIONS(1323), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(5101), 5, + ACTIONS(3702), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4846), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5105), 5, + ACTIONS(4850), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5103), 31, + ACTIONS(4848), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300101,27 +274808,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [79191] = 8, + [74119] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5651), 1, - anon_sym_DOT, - STATE(2708), 1, + STATE(2443), 1, sym_comment, - STATE(2758), 1, - aux_sym_cell_path_repeat1, - STATE(2841), 1, - sym_path, - STATE(2988), 1, - sym_cell_path, - ACTIONS(1824), 6, + ACTIONS(5120), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1826), 44, + ACTIONS(5118), 49, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300158,7 +274858,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + aux_sym_ctrl_match_token1, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -300166,19 +274870,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79264] = 4, + [74185] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2709), 1, + STATE(2444), 1, sym_comment, - ACTIONS(966), 6, + ACTIONS(5114), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(968), 48, + ACTIONS(5112), 49, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -300219,6 +274923,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + aux_sym_ctrl_match_token1, sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -300227,27 +274932,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79329] = 8, + [74251] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5651), 1, - anon_sym_DOT, - STATE(2710), 1, + STATE(2445), 1, sym_comment, - STATE(2758), 1, - aux_sym_cell_path_repeat1, - STATE(2841), 1, - sym_path, - STATE(3003), 1, - sym_cell_path, - ACTIONS(1855), 6, + ACTIONS(5083), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1857), 44, + ACTIONS(5081), 49, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300284,7 +274982,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + aux_sym_ctrl_match_token1, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [74317] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2446), 1, + sym_comment, + ACTIONS(5087), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(5085), 49, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + aux_sym_ctrl_match_token1, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -300292,48 +275056,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79402] = 16, + [74383] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1261), 1, + ACTIONS(1325), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, + ACTIONS(1327), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4260), 1, + ACTIONS(3004), 1, anon_sym_DQUOTE, - ACTIONS(5031), 1, + ACTIONS(5164), 1, aux_sym_cmd_identifier_token38, - STATE(2132), 1, - sym_val_string, - STATE(2155), 1, - sym_cmd_identifier, - STATE(2158), 1, - sym__str_double_quotes, - STATE(2711), 1, + STATE(2447), 1, sym_comment, - STATE(7482), 1, + STATE(2456), 1, + aux_sym_command_list_repeat1, + STATE(5345), 1, + sym__str_double_quotes, + STATE(7022), 1, sym__val_number_decimal, - STATE(7998), 1, + STATE(7073), 1, sym__command_name, - ACTIONS(1259), 2, + STATE(7334), 1, + sym_cmd_identifier, + STATE(7335), 1, + sym_val_string, + ACTIONS(1323), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4262), 2, + ACTIONS(3006), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5025), 5, + ACTIONS(5158), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5029), 5, + ACTIONS(5162), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5027), 31, + ACTIONS(5160), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300365,20 +275131,88 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [79491] = 4, + [74475] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1515), 1, + sym__entry_separator, + ACTIONS(5357), 1, + anon_sym_DOLLAR, + ACTIONS(5359), 1, + anon_sym_LPAREN2, + ACTIONS(5417), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5419), 1, + aux_sym__immediate_decimal_token5, + STATE(2448), 1, + sym_comment, + STATE(2900), 1, + sym__immediate_decimal, + ACTIONS(5415), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2875), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1505), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [74555] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2712), 1, + STATE(2449), 1, sym_comment, - ACTIONS(976), 6, + ACTIONS(2376), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(978), 48, - ts_builtin_sym_end, + ACTIONS(2378), 49, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300418,6 +275252,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -300426,27 +275262,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79556] = 8, + [74621] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5651), 1, - anon_sym_DOT, - STATE(2713), 1, + ACTIONS(1325), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3004), 1, + anon_sym_DQUOTE, + ACTIONS(5164), 1, + aux_sym_cmd_identifier_token38, + STATE(2450), 1, sym_comment, - STATE(2758), 1, - aux_sym_cell_path_repeat1, - STATE(2841), 1, - sym_path, - STATE(3004), 1, - sym_cell_path, - ACTIONS(1796), 6, + STATE(2456), 1, + aux_sym_command_list_repeat1, + STATE(5345), 1, + sym__str_double_quotes, + STATE(6724), 1, + sym__command_name, + STATE(7022), 1, + sym__val_number_decimal, + STATE(7334), 1, + sym_cmd_identifier, + STATE(7335), 1, + sym_val_string, + ACTIONS(1323), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3006), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5158), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1798), 44, + ACTIONS(5162), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5160), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300478,61 +275337,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [79629] = 16, + [74713] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1261), 1, + ACTIONS(1325), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, + ACTIONS(1327), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4260), 1, + ACTIONS(3004), 1, anon_sym_DQUOTE, - ACTIONS(5031), 1, + ACTIONS(5164), 1, aux_sym_cmd_identifier_token38, - STATE(2132), 1, - sym_val_string, - STATE(2155), 1, - sym_cmd_identifier, - STATE(2158), 1, - sym__str_double_quotes, - STATE(2714), 1, + STATE(2451), 1, sym_comment, - STATE(6132), 1, + STATE(2456), 1, + aux_sym_command_list_repeat1, + STATE(5345), 1, + sym__str_double_quotes, + STATE(6977), 1, sym__command_name, - STATE(7482), 1, + STATE(7022), 1, sym__val_number_decimal, - ACTIONS(1259), 2, + STATE(7334), 1, + sym_cmd_identifier, + STATE(7335), 1, + sym_val_string, + ACTIONS(1323), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4262), 2, + ACTIONS(3006), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5025), 5, + ACTIONS(5158), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5029), 5, + ACTIONS(5162), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5027), 31, + ACTIONS(5160), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300564,48 +275412,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [79718] = 16, + [74805] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1261), 1, + ACTIONS(1325), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, + ACTIONS(1327), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4260), 1, + ACTIONS(3213), 1, + aux_sym_record_entry_token1, + ACTIONS(3700), 1, anon_sym_DQUOTE, - ACTIONS(5031), 1, + ACTIONS(4852), 1, aux_sym_cmd_identifier_token38, - STATE(1701), 1, - sym__command_name, - STATE(2132), 1, - sym_val_string, - STATE(2155), 1, + STATE(1929), 1, sym_cmd_identifier, - STATE(2158), 1, + STATE(1930), 1, + sym_val_string, + STATE(1972), 1, sym__str_double_quotes, - STATE(2715), 1, + STATE(2452), 1, sym_comment, - STATE(7482), 1, + STATE(6127), 1, + sym__command_name, + STATE(6953), 1, sym__val_number_decimal, - ACTIONS(1259), 2, + ACTIONS(1323), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4262), 2, + ACTIONS(3702), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5025), 5, + ACTIONS(4846), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5029), 5, + ACTIONS(4850), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5027), 31, + ACTIONS(4848), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300637,19 +275487,89 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [79807] = 4, + [74897] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1619), 1, + sym__entry_separator, + ACTIONS(5357), 1, + anon_sym_DOLLAR, + ACTIONS(5359), 1, + anon_sym_LPAREN2, + ACTIONS(5417), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5419), 1, + aux_sym__immediate_decimal_token5, + STATE(2453), 1, + sym_comment, + STATE(2863), 1, + sym__immediate_decimal, + ACTIONS(5415), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2918), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1617), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [74977] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2716), 1, + STATE(2454), 1, sym_comment, - ACTIONS(1021), 6, + ACTIONS(1060), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1023), 48, + anon_sym_DOT, + ACTIONS(1062), 48, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -300698,19 +275618,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79872] = 4, + [75043] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2717), 1, + STATE(2455), 1, sym_comment, - ACTIONS(962), 6, + ACTIONS(1056), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(964), 48, + anon_sym_DOT, + ACTIONS(1058), 48, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -300759,48 +275680,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79937] = 16, - ACTIONS(111), 1, - anon_sym_DQUOTE, + [75109] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1261), 1, + ACTIONS(5430), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5436), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, + ACTIONS(5439), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5107), 1, - aux_sym_cmd_identifier_token38, - STATE(2144), 1, + ACTIONS(5442), 1, + anon_sym_DQUOTE, + STATE(5345), 1, sym__str_double_quotes, - STATE(2640), 1, - sym_val_string, - STATE(2651), 1, + STATE(7022), 1, + sym__val_number_decimal, + STATE(7334), 1, sym_cmd_identifier, - STATE(2718), 1, - sym_comment, - STATE(7005), 1, + STATE(7335), 1, + sym_val_string, + STATE(7350), 1, sym__command_name, - STATE(7112), 1, - sym__val_number_decimal, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1259), 2, + ACTIONS(5433), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(5101), 5, + ACTIONS(5445), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2456), 2, + sym_comment, + aux_sym_command_list_repeat1, + ACTIONS(5421), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5105), 5, + ACTIONS(5427), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5103), 31, + ACTIONS(5424), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300832,27 +275754,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [80026] = 8, + [75199] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5651), 1, - anon_sym_DOT, - STATE(2719), 1, + ACTIONS(1325), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3213), 1, + aux_sym_record_entry_token1, + ACTIONS(3700), 1, + anon_sym_DQUOTE, + ACTIONS(4852), 1, + aux_sym_cmd_identifier_token38, + STATE(1476), 1, + sym__command_name, + STATE(1929), 1, + sym_cmd_identifier, + STATE(1930), 1, + sym_val_string, + STATE(1972), 1, + sym__str_double_quotes, + STATE(2457), 1, sym_comment, - STATE(2758), 1, - aux_sym_cell_path_repeat1, - STATE(2841), 1, - sym_path, - STATE(3009), 1, - sym_cell_path, - ACTIONS(1808), 6, + STATE(6953), 1, + sym__val_number_decimal, + ACTIONS(1323), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3702), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4846), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1810), 44, + ACTIONS(4850), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4848), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300884,40 +275829,153 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, + [75291] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1495), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5401), 1, + anon_sym_DOLLAR, + ACTIONS(5403), 1, + anon_sym_LPAREN2, + ACTIONS(5405), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5407), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5409), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5411), 1, + aux_sym__immediate_decimal_token5, + STATE(2458), 1, + sym_comment, + STATE(2951), 1, + sym__immediate_decimal, + STATE(3017), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1479), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1493), 27, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [75375] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5389), 1, + aux_sym__immediate_decimal_token2, + STATE(2459), 1, + sym_comment, + ACTIONS(1499), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1497), 48, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [80099] = 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [75443] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5651), 1, - anon_sym_DOT, - STATE(2720), 1, + STATE(2460), 1, sym_comment, - STATE(2758), 1, - aux_sym_cell_path_repeat1, - STATE(2841), 1, - sym_path, - STATE(3020), 1, - sym_cell_path, - ACTIONS(1820), 6, + ACTIONS(1064), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1822), 44, + ACTIONS(1066), 49, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300954,7 +276012,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -300962,110 +276025,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [80172] = 5, + [75509] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5674), 1, - anon_sym_QMARK2, - STATE(2721), 1, + STATE(2461), 1, sym_comment, - ACTIONS(970), 11, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(972), 42, + ACTIONS(5079), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(5077), 49, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, + anon_sym_LBRACK, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [80239] = 16, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1261), 1, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3705), 1, anon_sym_DQUOTE, - ACTIONS(5682), 1, - aux_sym_cmd_identifier_token38, - STATE(2722), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [75575] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2462), 1, sym_comment, - STATE(4798), 1, - sym_cmd_identifier, - STATE(4799), 1, - sym_val_string, - STATE(4826), 1, - sym__command_name, - STATE(4919), 1, - sym__str_double_quotes, - STATE(7318), 1, - sym__val_number_decimal, - ACTIONS(1259), 2, + ACTIONS(1052), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1054), 48, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3707), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5676), 5, + [75641] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2463), 1, + sym_comment, + ACTIONS(2364), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5680), 5, + aux_sym_cmd_identifier_token38, + ACTIONS(2366), 49, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5678), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [75707] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2464), 1, + sym_comment, + ACTIONS(2364), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2366), 49, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301097,17 +276255,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [80328] = 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [75773] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5684), 1, - anon_sym_QMARK2, - STATE(2723), 1, + ACTIONS(3730), 1, + anon_sym_DOLLAR, + ACTIONS(5375), 1, + anon_sym_LPAREN2, + ACTIONS(5448), 1, + anon_sym_DOT, + ACTIONS(5450), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5452), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5454), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5456), 1, + aux_sym__immediate_decimal_token5, + STATE(2465), 1, sym_comment, - ACTIONS(980), 11, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, + STATE(2823), 1, + sym__immediate_decimal, + STATE(2822), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1505), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -301116,41 +276315,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(982), 42, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + aux_sym__unquoted_in_list_token1, + ACTIONS(1515), 27, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -301159,27 +276344,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [80395] = 8, + [75857] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5651), 1, - anon_sym_DOT, - STATE(2724), 1, + STATE(2466), 1, sym_comment, - STATE(2758), 1, - aux_sym_cell_path_repeat1, - STATE(2841), 1, - sym_path, - STATE(2916), 1, - sym_cell_path, - ACTIONS(1741), 6, + ACTIONS(1625), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1745), 44, + ACTIONS(1629), 49, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301216,35 +276393,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [75923] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1325), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3004), 1, + anon_sym_DQUOTE, + ACTIONS(5164), 1, + aux_sym_cmd_identifier_token38, + STATE(2456), 1, + aux_sym_command_list_repeat1, + STATE(2467), 1, + sym_comment, + STATE(5345), 1, + sym__str_double_quotes, + STATE(7022), 1, + sym__val_number_decimal, + STATE(7047), 1, + sym__command_name, + STATE(7334), 1, + sym_cmd_identifier, + STATE(7335), 1, + sym_val_string, + ACTIONS(1323), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + ACTIONS(3006), 2, sym__str_single_quotes, sym__str_back_ticks, - [80468] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5651), 1, - anon_sym_DOT, - STATE(2725), 1, - sym_comment, - STATE(2758), 1, - aux_sym_cell_path_repeat1, - STATE(2841), 1, - sym_path, - STATE(2918), 1, - sym_cell_path, - ACTIONS(1899), 6, + ACTIONS(5158), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1901), 44, + ACTIONS(5162), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5160), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301276,61 +276481,119 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, + [76015] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1587), 1, + sym__entry_separator, + ACTIONS(5458), 1, + anon_sym_LPAREN2, + ACTIONS(5460), 1, + anon_sym_DOT_DOT2, + ACTIONS(5464), 1, + sym_filesize_unit, + ACTIONS(5466), 1, + sym_duration_unit, + ACTIONS(5468), 1, + aux_sym__unquoted_in_list_token2, + STATE(2468), 1, + sym_comment, + STATE(7357), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5462), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1575), 46, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [80541] = 16, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [76095] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1261), 1, + ACTIONS(1325), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, + ACTIONS(1327), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4260), 1, + ACTIONS(3213), 1, + aux_sym_record_entry_token1, + ACTIONS(3700), 1, anon_sym_DQUOTE, - ACTIONS(5031), 1, + ACTIONS(4852), 1, aux_sym_cmd_identifier_token38, - STATE(2132), 1, - sym_val_string, - STATE(2155), 1, + STATE(1929), 1, sym_cmd_identifier, - STATE(2158), 1, + STATE(1930), 1, + sym_val_string, + STATE(1972), 1, sym__str_double_quotes, - STATE(2726), 1, + STATE(2469), 1, sym_comment, - STATE(4826), 1, - sym__command_name, - STATE(7482), 1, + STATE(6953), 1, sym__val_number_decimal, - ACTIONS(1259), 2, + STATE(7635), 1, + sym__command_name, + ACTIONS(1323), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4262), 2, + ACTIONS(3702), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5025), 5, + ACTIONS(4846), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5029), 5, + ACTIONS(4850), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5027), 31, + ACTIONS(4848), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301362,27 +276625,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [80630] = 8, + [76187] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5651), 1, - anon_sym_DOT, - STATE(2727), 1, + STATE(2470), 1, sym_comment, - STATE(2758), 1, - aux_sym_cell_path_repeat1, - STATE(2841), 1, - sym_path, - STATE(2919), 1, - sym_cell_path, - ACTIONS(1831), 6, + ACTIONS(2372), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1833), 44, + ACTIONS(2374), 49, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301419,7 +276674,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -301427,92 +276687,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [80703] = 8, - ACTIONS(247), 1, + [76253] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5651), 1, - anon_sym_DOT, - STATE(2728), 1, + ACTIONS(1563), 1, + sym__entry_separator, + ACTIONS(5357), 1, + anon_sym_DOLLAR, + ACTIONS(5359), 1, + anon_sym_LPAREN2, + ACTIONS(5417), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5419), 1, + aux_sym__immediate_decimal_token5, + STATE(2471), 1, sym_comment, - STATE(2758), 1, - aux_sym_cell_path_repeat1, - STATE(2841), 1, - sym_path, - STATE(2921), 1, - sym_cell_path, - ACTIONS(1835), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1837), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + STATE(2890), 1, + sym__immediate_decimal, + ACTIONS(5415), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2887), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1561), 45, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [80776] = 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [76333] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5651), 1, - anon_sym_DOT, - STATE(2729), 1, + ACTIONS(1325), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3700), 1, + anon_sym_DQUOTE, + ACTIONS(4852), 1, + aux_sym_cmd_identifier_token38, + STATE(1929), 1, + sym_cmd_identifier, + STATE(1930), 1, + sym_val_string, + STATE(1972), 1, + sym__str_double_quotes, + STATE(2472), 1, sym_comment, - STATE(2758), 1, - aux_sym_cell_path_repeat1, - STATE(2841), 1, - sym_path, - STATE(2922), 1, - sym_cell_path, - ACTIONS(1839), 6, + STATE(5678), 1, + sym__command_name, + STATE(6953), 1, + sym__val_number_decimal, + ACTIONS(1323), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3702), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4846), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1841), 44, + ACTIONS(4850), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4848), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301544,61 +276829,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [80849] = 16, + [76422] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1261), 1, + ACTIONS(1325), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, + ACTIONS(1327), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4286), 1, + ACTIONS(3700), 1, anon_sym_DQUOTE, - ACTIONS(5688), 1, + ACTIONS(4852), 1, aux_sym_cmd_identifier_token38, - STATE(2730), 1, - sym_comment, - STATE(4798), 1, + STATE(1929), 1, sym_cmd_identifier, - STATE(4799), 1, + STATE(1930), 1, sym_val_string, - STATE(4826), 1, - sym__command_name, - STATE(4863), 1, + STATE(1972), 1, sym__str_double_quotes, - STATE(7381), 1, + STATE(2473), 1, + sym_comment, + STATE(6573), 1, + sym__command_name, + STATE(6953), 1, sym__val_number_decimal, - ACTIONS(1259), 2, + ACTIONS(1323), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4288), 2, + ACTIONS(3702), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1241), 5, + ACTIONS(4846), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(1243), 5, + ACTIONS(4850), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5686), 31, + ACTIONS(4848), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301630,27 +276902,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [80938] = 8, + [76511] = 16, + ACTIONS(111), 1, + anon_sym_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5651), 1, - anon_sym_DOT, - STATE(2731), 1, + ACTIONS(1325), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4956), 1, + aux_sym_cmd_identifier_token38, + STATE(1984), 1, + sym__str_double_quotes, + STATE(2445), 1, + sym_cmd_identifier, + STATE(2446), 1, + sym_val_string, + STATE(2474), 1, sym_comment, - STATE(2758), 1, - aux_sym_cell_path_repeat1, - STATE(2841), 1, - sym_path, - STATE(2985), 1, - sym_cell_path, - ACTIONS(1762), 6, + STATE(6094), 1, + sym__command_name, + STATE(7016), 1, + sym__val_number_decimal, + ACTIONS(113), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1323), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4950), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1764), 44, + ACTIONS(4954), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4952), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301682,40 +276975,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + [76600] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1325), 1, aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, aux_sym__val_number_decimal_token4, + ACTIONS(3700), 1, anon_sym_DQUOTE, + ACTIONS(4852), 1, + aux_sym_cmd_identifier_token38, + STATE(1929), 1, + sym_cmd_identifier, + STATE(1930), 1, + sym_val_string, + STATE(1972), 1, + sym__str_double_quotes, + STATE(2475), 1, + sym_comment, + STATE(5681), 1, + sym__command_name, + STATE(6953), 1, + sym__val_number_decimal, + ACTIONS(1323), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3702), 2, sym__str_single_quotes, sym__str_back_ticks, - [81011] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5651), 1, - anon_sym_DOT, - STATE(2732), 1, - sym_comment, - STATE(2758), 1, - aux_sym_cell_path_repeat1, - STATE(2841), 1, - sym_path, - STATE(2864), 1, - sym_cell_path, - ACTIONS(1774), 6, + ACTIONS(4846), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1776), 44, + ACTIONS(4850), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4848), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301747,61 +277048,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [81084] = 16, + [76689] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1261), 1, + ACTIONS(1325), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, + ACTIONS(1327), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4260), 1, + ACTIONS(3700), 1, anon_sym_DQUOTE, - ACTIONS(5031), 1, + ACTIONS(4852), 1, aux_sym_cmd_identifier_token38, - STATE(2132), 1, - sym_val_string, - STATE(2155), 1, + STATE(1476), 1, + sym__command_name, + STATE(1929), 1, sym_cmd_identifier, - STATE(2158), 1, + STATE(1930), 1, + sym_val_string, + STATE(1972), 1, sym__str_double_quotes, - STATE(2733), 1, + STATE(2476), 1, sym_comment, - STATE(6504), 1, - sym__command_name, - STATE(7482), 1, + STATE(6953), 1, sym__val_number_decimal, - ACTIONS(1259), 2, + ACTIONS(1323), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4262), 2, + ACTIONS(3702), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5025), 5, + ACTIONS(4846), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5029), 5, + ACTIONS(4850), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5027), 31, + ACTIONS(4848), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301833,27 +277121,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [81173] = 8, + [76778] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5651), 1, - anon_sym_DOT, - STATE(2734), 1, + STATE(2477), 1, sym_comment, - STATE(2758), 1, - aux_sym_cell_path_repeat1, - STATE(2841), 1, - sym_path, - STATE(2866), 1, - sym_cell_path, - ACTIONS(1778), 6, + ACTIONS(2364), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1780), 44, + ACTIONS(2366), 48, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301890,7 +277171,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -301898,48 +277182,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [81246] = 16, - ACTIONS(111), 1, - anon_sym_DQUOTE, + [76843] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5107), 1, - aux_sym_cmd_identifier_token38, - STATE(2144), 1, - sym__str_double_quotes, - STATE(2640), 1, - sym_val_string, - STATE(2651), 1, - sym_cmd_identifier, - STATE(2735), 1, + STATE(2478), 1, sym_comment, - STATE(7112), 1, - sym__val_number_decimal, - STATE(7338), 1, - sym__command_name, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1259), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5101), 5, + ACTIONS(2364), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5105), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5103), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(2366), 48, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301971,48 +277227,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [81335] = 16, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [76908] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1261), 1, + ACTIONS(1325), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, + ACTIONS(1327), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4260), 1, - anon_sym_DQUOTE, - ACTIONS(5031), 1, + ACTIONS(4956), 1, aux_sym_cmd_identifier_token38, - STATE(2132), 1, - sym_val_string, - STATE(2155), 1, + ACTIONS(5470), 1, + anon_sym_DQUOTE, + STATE(1638), 1, + sym__command_name, + STATE(2445), 1, sym_cmd_identifier, - STATE(2158), 1, - sym__str_double_quotes, - STATE(2736), 1, + STATE(2446), 1, + sym_val_string, + STATE(2479), 1, sym_comment, - STATE(7482), 1, + STATE(2480), 1, + sym__str_double_quotes, + STATE(7016), 1, sym__val_number_decimal, - STATE(7900), 1, - sym__command_name, - ACTIONS(1259), 2, + ACTIONS(1323), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4262), 2, + ACTIONS(5472), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5025), 5, + ACTIONS(4950), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5029), 5, + ACTIONS(4954), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5027), 31, + ACTIONS(4952), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302044,48 +277316,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [81424] = 16, + [76997] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4260), 1, - anon_sym_DQUOTE, - ACTIONS(5031), 1, - aux_sym_cmd_identifier_token38, - STATE(2132), 1, - sym_val_string, - STATE(2155), 1, - sym_cmd_identifier, - STATE(2158), 1, - sym__str_double_quotes, - STATE(2737), 1, + STATE(2480), 1, sym_comment, - STATE(6732), 1, - sym__command_name, - STATE(7482), 1, - sym__val_number_decimal, - ACTIONS(1259), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4262), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5025), 5, + ACTIONS(1040), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5029), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5027), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(1042), 48, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302117,48 +277361,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [81513] = 16, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [77062] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1261), 1, + ACTIONS(1325), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, + ACTIONS(1327), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4260), 1, + ACTIONS(3547), 1, anon_sym_DQUOTE, - ACTIONS(5031), 1, + ACTIONS(5480), 1, aux_sym_cmd_identifier_token38, - STATE(2132), 1, - sym_val_string, - STATE(2155), 1, + STATE(2481), 1, + sym_comment, + STATE(4401), 1, sym_cmd_identifier, - STATE(2158), 1, + STATE(4402), 1, + sym_val_string, + STATE(4403), 1, + sym__command_name, + STATE(4690), 1, sym__str_double_quotes, - STATE(2738), 1, - sym_comment, - STATE(7482), 1, + STATE(7104), 1, sym__val_number_decimal, - STATE(8019), 1, - sym__command_name, - ACTIONS(1259), 2, + ACTIONS(1323), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4262), 2, + ACTIONS(3549), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5025), 5, + ACTIONS(5474), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5029), 5, + ACTIONS(5478), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5027), 31, + ACTIONS(5476), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302190,48 +277450,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [81602] = 16, + [77151] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1261), 1, + ACTIONS(1325), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, + ACTIONS(1327), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4260), 1, + ACTIONS(3700), 1, anon_sym_DQUOTE, - ACTIONS(5031), 1, + ACTIONS(4852), 1, aux_sym_cmd_identifier_token38, - STATE(2132), 1, - sym_val_string, - STATE(2155), 1, + STATE(1929), 1, sym_cmd_identifier, - STATE(2158), 1, + STATE(1930), 1, + sym_val_string, + STATE(1972), 1, sym__str_double_quotes, - STATE(2739), 1, + STATE(2482), 1, sym_comment, - STATE(6921), 1, + STATE(6557), 1, sym__command_name, - STATE(7482), 1, + STATE(6953), 1, sym__val_number_decimal, - ACTIONS(1259), 2, + ACTIONS(1323), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4262), 2, + ACTIONS(3702), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5025), 5, + ACTIONS(4846), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5029), 5, + ACTIONS(4850), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5027), 31, + ACTIONS(4848), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302263,48 +277523,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [81691] = 16, + [77240] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1261), 1, + ACTIONS(1325), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, + ACTIONS(1327), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5107), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5690), 1, + ACTIONS(3700), 1, anon_sym_DQUOTE, - STATE(1828), 1, - sym__command_name, - STATE(2640), 1, - sym_val_string, - STATE(2651), 1, + ACTIONS(4852), 1, + aux_sym_cmd_identifier_token38, + STATE(1929), 1, sym_cmd_identifier, - STATE(2709), 1, + STATE(1930), 1, + sym_val_string, + STATE(1972), 1, sym__str_double_quotes, - STATE(2740), 1, + STATE(2483), 1, sym_comment, - STATE(7112), 1, + STATE(6558), 1, + sym__command_name, + STATE(6953), 1, sym__val_number_decimal, - ACTIONS(1259), 2, + ACTIONS(1323), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(5692), 2, + ACTIONS(3702), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5101), 5, + ACTIONS(4846), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5105), 5, + ACTIONS(4850), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5103), 31, + ACTIONS(4848), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302336,19 +277596,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [81780] = 4, + [77329] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2741), 1, + STATE(2484), 1, sym_comment, - ACTIONS(2311), 6, + ACTIONS(2372), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2313), 48, + ACTIONS(2374), 48, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -302397,19 +277657,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [81845] = 4, + [77394] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2742), 1, + STATE(2485), 1, sym_comment, - ACTIONS(2311), 6, + ACTIONS(2376), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2313), 48, + ACTIONS(2378), 48, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -302458,111 +277718,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [81910] = 16, - ACTIONS(247), 1, + [77459] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4260), 1, - anon_sym_DQUOTE, - ACTIONS(5031), 1, - aux_sym_cmd_identifier_token38, - STATE(2132), 1, - sym_val_string, - STATE(2155), 1, - sym_cmd_identifier, - STATE(2158), 1, - sym__str_double_quotes, - STATE(2743), 1, + STATE(2486), 1, sym_comment, - STATE(5952), 1, - sym__command_name, - STATE(7482), 1, - sym__val_number_decimal, - ACTIONS(1259), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4262), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5025), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5029), 5, + ACTIONS(1499), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1497), 48, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5027), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [81999] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5607), 1, - anon_sym_DOLLAR, - ACTIONS(5609), 1, - anon_sym_LPAREN2, - ACTIONS(5694), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5696), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5698), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5700), 1, - aux_sym__immediate_decimal_token5, - STATE(2744), 1, - sym_comment, - STATE(3244), 1, - sym__immediate_decimal, - STATE(3309), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1431), 18, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -302571,8 +277769,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1441), 27, + aux_sym__unquoted_in_list_token2, + [77524] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2487), 1, + sym_comment, + ACTIONS(1519), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1517), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -302581,17 +277800,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -302600,48 +277838,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [82080] = 16, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [77589] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1261), 1, + ACTIONS(1325), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, + ACTIONS(1327), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4260), 1, + ACTIONS(3700), 1, anon_sym_DQUOTE, - ACTIONS(5031), 1, + ACTIONS(4852), 1, aux_sym_cmd_identifier_token38, - STATE(2132), 1, - sym_val_string, - STATE(2155), 1, + STATE(1929), 1, sym_cmd_identifier, - STATE(2158), 1, + STATE(1930), 1, + sym_val_string, + STATE(1972), 1, sym__str_double_quotes, - STATE(2745), 1, + STATE(2488), 1, sym_comment, - STATE(6612), 1, + STATE(6113), 1, sym__command_name, - STATE(7482), 1, + STATE(6953), 1, sym__val_number_decimal, - ACTIONS(1259), 2, + ACTIONS(1323), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4262), 2, + ACTIONS(3702), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5025), 5, + ACTIONS(4846), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5029), 5, + ACTIONS(4850), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5027), 31, + ACTIONS(4848), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302673,48 +277913,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [82169] = 16, - ACTIONS(247), 1, + [77678] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1261), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4260), 1, - anon_sym_DQUOTE, - ACTIONS(5031), 1, - aux_sym_cmd_identifier_token38, - STATE(2132), 1, - sym_val_string, - STATE(2155), 1, - sym_cmd_identifier, - STATE(2158), 1, - sym__str_double_quotes, - STATE(2746), 1, + STATE(2489), 1, sym_comment, - STATE(6616), 1, - sym__command_name, - STATE(7482), 1, - sym__val_number_decimal, - ACTIONS(1259), 2, + ACTIONS(1567), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1565), 48, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4262), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5025), 5, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [77743] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2490), 1, + sym_comment, + ACTIONS(1044), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5029), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5027), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(1046), 48, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302746,20 +278019,125 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [82258] = 4, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [77808] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2491), 1, + sym_comment, + ACTIONS(1641), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1639), 48, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [77873] = 16, + ACTIONS(111), 1, + anon_sym_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - STATE(2747), 1, + ACTIONS(1325), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4956), 1, + aux_sym_cmd_identifier_token38, + STATE(1984), 1, + sym__str_double_quotes, + STATE(2445), 1, + sym_cmd_identifier, + STATE(2446), 1, + sym_val_string, + STATE(2492), 1, sym_comment, - ACTIONS(2271), 6, + STATE(7016), 1, + sym__val_number_decimal, + STATE(7042), 1, + sym__command_name, + ACTIONS(113), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1323), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4950), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2273), 48, - ts_builtin_sym_end, + ACTIONS(4954), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4952), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302791,36 +278169,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + [77962] = 16, + ACTIONS(111), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [82323] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2748), 1, + ACTIONS(1325), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4956), 1, + aux_sym_cmd_identifier_token38, + STATE(1984), 1, + sym__str_double_quotes, + STATE(2445), 1, + sym_cmd_identifier, + STATE(2446), 1, + sym_val_string, + STATE(2493), 1, sym_comment, - ACTIONS(2241), 6, + STATE(7016), 1, + sym__val_number_decimal, + STATE(7043), 1, + sym__command_name, + ACTIONS(113), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1323), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4950), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2243), 48, - ts_builtin_sym_end, + ACTIONS(4954), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4952), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302852,54 +278242,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, + [78051] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5482), 1, + anon_sym_DOT, + ACTIONS(5484), 1, + aux_sym__immediate_decimal_token2, + STATE(2494), 1, + sym_comment, + ACTIONS(1645), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1643), 48, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, anon_sym_LBRACK, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [82388] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5607), 1, - anon_sym_DOLLAR, - ACTIONS(5609), 1, - anon_sym_LPAREN2, - ACTIONS(5694), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5696), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5698), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5700), 1, - aux_sym__immediate_decimal_token5, - STATE(2749), 1, - sym_comment, - STATE(3279), 1, - sym__immediate_decimal, - STATE(3278), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1551), 18, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -302908,56 +278295,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1553), 27, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, + aux_sym__unquoted_in_list_token2, + [78120] = 16, + ACTIONS(111), 1, anon_sym_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1325), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4956), 1, + aux_sym_cmd_identifier_token38, + STATE(1984), 1, + sym__str_double_quotes, + STATE(2445), 1, + sym_cmd_identifier, + STATE(2446), 1, + sym_val_string, + STATE(2495), 1, + sym_comment, + STATE(7016), 1, + sym__val_number_decimal, + STATE(7110), 1, + sym__command_name, + ACTIONS(113), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [82469] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5651), 1, - anon_sym_DOT, - STATE(2750), 1, - sym_comment, - STATE(2758), 1, - aux_sym_cell_path_repeat1, - STATE(2841), 1, - sym_path, - STATE(2970), 1, - sym_cell_path, - ACTIONS(945), 6, + ACTIONS(1323), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4950), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(947), 44, + ACTIONS(4954), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4952), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302989,199 +278378,121 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [82542] = 12, + [78209] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5607), 1, - anon_sym_DOLLAR, - ACTIONS(5609), 1, - anon_sym_LPAREN2, - ACTIONS(5694), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5696), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5698), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5700), 1, - aux_sym__immediate_decimal_token5, - STATE(2751), 1, - sym_comment, - STATE(3284), 1, - sym__immediate_decimal, - STATE(3280), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1555), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + ACTIONS(1325), 1, aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1557), 27, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, + ACTIONS(3700), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [82623] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5607), 1, - anon_sym_DOLLAR, - ACTIONS(5609), 1, - anon_sym_LPAREN2, - ACTIONS(5694), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5696), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5698), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5700), 1, - aux_sym__immediate_decimal_token5, - STATE(2752), 1, + ACTIONS(4852), 1, + aux_sym_cmd_identifier_token38, + STATE(1929), 1, + sym_cmd_identifier, + STATE(1930), 1, + sym_val_string, + STATE(1972), 1, + sym__str_double_quotes, + STATE(2496), 1, sym_comment, - STATE(3289), 1, - sym__immediate_decimal, - STATE(3285), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1501), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, + STATE(4403), 1, + sym__command_name, + STATE(6953), 1, + sym__val_number_decimal, + ACTIONS(1323), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1509), 27, + ACTIONS(3702), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4846), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4850), 5, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [82704] = 16, + ACTIONS(4848), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [78298] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1261), 1, + ACTIONS(1325), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, + ACTIONS(1327), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4260), 1, + ACTIONS(3700), 1, anon_sym_DQUOTE, - ACTIONS(5031), 1, + ACTIONS(4852), 1, aux_sym_cmd_identifier_token38, - STATE(2132), 1, - sym_val_string, - STATE(2155), 1, + STATE(1929), 1, sym_cmd_identifier, - STATE(2158), 1, + STATE(1930), 1, + sym_val_string, + STATE(1972), 1, sym__str_double_quotes, - STATE(2753), 1, + STATE(2497), 1, sym_comment, - STATE(6644), 1, + STATE(6243), 1, sym__command_name, - STATE(7482), 1, + STATE(6953), 1, sym__val_number_decimal, - ACTIONS(1259), 2, + ACTIONS(1323), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4262), 2, + ACTIONS(3702), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5025), 5, + ACTIONS(4846), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5029), 5, + ACTIONS(4850), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5027), 31, + ACTIONS(4848), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -303213,27 +278524,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [82793] = 8, + [78387] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5651), 1, - anon_sym_DOT, - STATE(2754), 1, + STATE(2498), 1, sym_comment, - STATE(2758), 1, - aux_sym_cell_path_repeat1, - STATE(2841), 1, - sym_path, - STATE(3000), 1, - sym_cell_path, - ACTIONS(1770), 6, + ACTIONS(1625), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1772), 44, + ACTIONS(1629), 48, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -303270,7 +278574,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -303278,48 +278585,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [82866] = 16, - ACTIONS(111), 1, - anon_sym_DQUOTE, + [78452] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1261), 1, + ACTIONS(1325), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1263), 1, + ACTIONS(1327), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5107), 1, + ACTIONS(3700), 1, + anon_sym_DQUOTE, + ACTIONS(4852), 1, aux_sym_cmd_identifier_token38, - STATE(2144), 1, - sym__str_double_quotes, - STATE(2640), 1, - sym_val_string, - STATE(2651), 1, + STATE(1929), 1, sym_cmd_identifier, - STATE(2755), 1, + STATE(1930), 1, + sym_val_string, + STATE(1972), 1, + sym__str_double_quotes, + STATE(2499), 1, sym_comment, - STATE(7112), 1, - sym__val_number_decimal, - STATE(7341), 1, + STATE(6252), 1, sym__command_name, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1259), 2, + STATE(6953), 1, + sym__val_number_decimal, + ACTIONS(1323), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(5101), 5, + ACTIONS(3702), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4846), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5105), 5, + ACTIONS(4850), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5103), 31, + ACTIONS(4848), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -303351,27 +278658,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [82955] = 8, + [78541] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5651), 1, - anon_sym_DOT, - STATE(2756), 1, + STATE(2500), 1, sym_comment, - STATE(2758), 1, - aux_sym_cell_path_repeat1, - STATE(2841), 1, - sym_path, - STATE(2986), 1, - sym_cell_path, - ACTIONS(1747), 6, + ACTIONS(2384), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1749), 44, + ACTIONS(2386), 48, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -303408,94 +278708,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [83028] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5702), 1, - aux_sym__immediate_decimal_token2, - STATE(2757), 1, - sym_comment, - ACTIONS(1519), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1521), 34, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + sym_wild_card, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [83094] = 7, + [78606] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5651), 1, - anon_sym_DOT, - STATE(2758), 1, + STATE(2501), 1, sym_comment, - STATE(2773), 1, - aux_sym_cell_path_repeat1, - STATE(2841), 1, - sym_path, - ACTIONS(951), 6, + ACTIONS(2388), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(953), 44, + ACTIONS(2390), 48, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -303532,780 +278769,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [83164] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5669), 1, - aux_sym__immediate_decimal_token2, - STATE(2759), 1, - sym_comment, - ACTIONS(1591), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1589), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [83230] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2760), 1, - sym_comment, - ACTIONS(994), 11, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(996), 42, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [83294] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5704), 1, - anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(2761), 1, - sym_comment, - STATE(2766), 1, - aux_sym_cell_path_repeat1, - ACTIONS(951), 11, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(953), 39, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [83364] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5706), 1, - aux_sym__immediate_decimal_token2, - STATE(2762), 1, - sym_comment, - ACTIONS(1650), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1648), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [83430] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2763), 1, - sym_comment, - ACTIONS(976), 19, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(978), 34, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [83494] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5653), 1, - anon_sym_DOT, - STATE(2764), 1, - sym_comment, - STATE(2765), 1, - aux_sym_cell_path_repeat1, - STATE(2840), 1, - sym_path, - ACTIONS(953), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(951), 47, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [83564] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5708), 1, - anon_sym_DOT, - STATE(2840), 1, - sym_path, - STATE(2765), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(957), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(955), 47, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [83632] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5711), 1, - anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(2766), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(955), 11, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(957), 39, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [83700] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2767), 1, - sym_comment, - ACTIONS(986), 11, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(988), 42, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [83764] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2768), 1, - sym_comment, - ACTIONS(990), 11, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(992), 42, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [83828] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5714), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5716), 1, - aux_sym__immediate_decimal_token2, - STATE(2769), 1, - sym_comment, - ACTIONS(1569), 18, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1571), 33, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [83896] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2770), 1, - sym_comment, - ACTIONS(962), 19, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(964), 34, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [83960] = 8, - ACTIONS(247), 1, + [78671] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5718), 1, + ACTIONS(5486), 1, anon_sym_DOT, - STATE(2771), 1, + STATE(2502), 1, sym_comment, - STATE(2781), 1, + STATE(2561), 1, aux_sym_cell_path_repeat1, - STATE(3018), 1, + STATE(2639), 1, sym_path, - STATE(3040), 1, + STATE(2747), 1, sym_cell_path, - ACTIONS(945), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(947), 32, + ACTIONS(1013), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1011), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -304318,42 +278810,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [84032] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5657), 1, - aux_sym__immediate_decimal_token2, - STATE(2772), 1, - sym_comment, - ACTIONS(1473), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -304362,35 +278836,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1475), 34, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -304399,24 +278844,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [84098] = 6, + aux_sym__unquoted_in_list_token1, + [78744] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5720), 1, - anon_sym_DOT, - STATE(2841), 1, - sym_path, - STATE(2773), 2, + STATE(2503), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(955), 6, + ACTIONS(1064), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(957), 44, + ACTIONS(1066), 48, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -304453,7 +278895,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -304461,453 +278906,721 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [84166] = 5, + [78809] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5723), 1, - anon_sym_QMARK2, - STATE(2774), 1, + ACTIONS(1325), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4051), 1, + anon_sym_DQUOTE, + ACTIONS(5490), 1, + aux_sym_cmd_identifier_token38, + STATE(2504), 1, sym_comment, - ACTIONS(970), 19, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + STATE(4401), 1, + sym_cmd_identifier, + STATE(4402), 1, + sym_val_string, + STATE(4403), 1, + sym__command_name, + STATE(4704), 1, + sym__str_double_quotes, + STATE(7249), 1, + sym__val_number_decimal, + ACTIONS(1323), 2, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(972), 33, + aux_sym__val_number_decimal_token2, + ACTIONS(4053), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1307), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(1309), 5, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, + ACTIONS(5488), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [78898] = 16, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1325), 1, aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, + ACTIONS(4956), 1, + aux_sym_cmd_identifier_token38, + STATE(1984), 1, + sym__str_double_quotes, + STATE(2445), 1, + sym_cmd_identifier, + STATE(2446), 1, + sym_val_string, + STATE(2505), 1, + sym_comment, + STATE(6812), 1, + sym__command_name, + STATE(7016), 1, + sym__val_number_decimal, + ACTIONS(113), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [84232] = 5, + ACTIONS(1323), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4950), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4954), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4952), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [78987] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5725), 1, - anon_sym_QMARK2, - STATE(2775), 1, + ACTIONS(1325), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3700), 1, + anon_sym_DQUOTE, + ACTIONS(4852), 1, + aux_sym_cmd_identifier_token38, + STATE(1929), 1, + sym_cmd_identifier, + STATE(1930), 1, + sym_val_string, + STATE(1972), 1, + sym__str_double_quotes, + STATE(2506), 1, sym_comment, - ACTIONS(980), 19, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + STATE(6953), 1, + sym__val_number_decimal, + STATE(7740), 1, + sym__command_name, + ACTIONS(1323), 2, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(982), 33, + aux_sym__val_number_decimal_token2, + ACTIONS(3702), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4846), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4850), 5, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4848), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [79076] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5492), 1, + anon_sym_DOT, + STATE(2507), 1, + sym_comment, + STATE(2564), 1, + aux_sym_cell_path_repeat1, + STATE(2649), 1, + sym_path, + STATE(2765), 1, + sym_cell_path, + ACTIONS(1011), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, + ACTIONS(1013), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [84298] = 4, + [79149] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2776), 1, - sym_comment, - ACTIONS(966), 19, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + ACTIONS(5492), 1, anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(968), 34, + STATE(2508), 1, + sym_comment, + STATE(2564), 1, + aux_sym_cell_path_repeat1, + STATE(2649), 1, + sym_path, + STATE(2690), 1, + sym_cell_path, + ACTIONS(1957), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1959), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [84362] = 5, + [79222] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5727), 1, - sym__newline, - STATE(2777), 2, + STATE(2509), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1755), 15, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1757), 36, + ACTIONS(1048), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1050), 48, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, + sym_wild_card, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [84428] = 6, + [79287] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5730), 1, + ACTIONS(5492), 1, anon_sym_DOT, - ACTIONS(5732), 1, - aux_sym__immediate_decimal_token2, - STATE(2778), 1, + STATE(2510), 1, sym_comment, - ACTIONS(1589), 18, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1591), 33, + STATE(2564), 1, + aux_sym_cell_path_repeat1, + STATE(2649), 1, + sym_path, + STATE(2697), 1, + sym_cell_path, + ACTIONS(1961), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1963), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [84496] = 8, + [79360] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5718), 1, + ACTIONS(5492), 1, anon_sym_DOT, - STATE(2779), 1, + STATE(2511), 1, sym_comment, - STATE(2781), 1, + STATE(2564), 1, aux_sym_cell_path_repeat1, - STATE(3018), 1, + STATE(2649), 1, sym_path, - STATE(3057), 1, + STATE(2700), 1, sym_cell_path, - ACTIONS(1599), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1603), 32, + ACTIONS(1829), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1833), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [84568] = 6, - ACTIONS(3), 1, + [79433] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5734), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5736), 1, - aux_sym__immediate_decimal_token2, - STATE(2780), 1, + ACTIONS(1325), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3700), 1, + anon_sym_DQUOTE, + ACTIONS(4852), 1, + aux_sym_cmd_identifier_token38, + STATE(1929), 1, + sym_cmd_identifier, + STATE(1930), 1, + sym_val_string, + STATE(1972), 1, + sym__str_double_quotes, + STATE(2512), 1, sym_comment, - ACTIONS(1571), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1569), 47, + STATE(6953), 1, + sym__val_number_decimal, + STATE(7617), 1, + sym__command_name, + ACTIONS(1323), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3702), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4846), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4850), 5, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + ACTIONS(4848), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [79522] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1325), 1, aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, + ACTIONS(3700), 1, anon_sym_DQUOTE, + ACTIONS(4852), 1, + aux_sym_cmd_identifier_token38, + STATE(1929), 1, + sym_cmd_identifier, + STATE(1930), 1, + sym_val_string, + STATE(1972), 1, + sym__str_double_quotes, + STATE(2513), 1, + sym_comment, + STATE(6377), 1, + sym__command_name, + STATE(6953), 1, + sym__val_number_decimal, + ACTIONS(1323), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3702), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [84635] = 7, + ACTIONS(4846), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4850), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4848), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [79611] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5718), 1, - anon_sym_DOT, - STATE(2781), 1, + ACTIONS(5401), 1, + anon_sym_DOLLAR, + ACTIONS(5403), 1, + anon_sym_LPAREN2, + ACTIONS(5494), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5496), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5498), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5500), 1, + aux_sym__immediate_decimal_token5, + STATE(2514), 1, sym_comment, - STATE(2787), 1, - aux_sym_cell_path_repeat1, - STATE(3018), 1, - sym_path, - ACTIONS(951), 17, + STATE(3026), 1, + sym__immediate_decimal, + STATE(3025), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1561), 18, + anon_sym_LPAREN, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -304920,7 +279633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(953), 32, + ACTIONS(1563), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -304929,15 +279642,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -304953,16 +279661,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [84704] = 4, - ACTIONS(3), 1, + [79692] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5492), 1, + anon_sym_DOT, + STATE(2515), 1, + sym_comment, + STATE(2564), 1, + aux_sym_cell_path_repeat1, + STATE(2649), 1, + sym_path, + STATE(2706), 1, + sym_cell_path, + ACTIONS(1839), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1841), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [79765] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5738), 1, - sym__entry_separator, - STATE(2782), 2, + ACTIONS(5492), 1, + anon_sym_DOT, + STATE(2516), 1, sym_comment, - aux_sym__multiple_types_repeat1, - ACTIONS(2319), 50, + STATE(2564), 1, + aux_sym_cell_path_repeat1, + STATE(2649), 1, + sym_path, + STATE(2707), 1, + sym_cell_path, + ACTIONS(1843), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1845), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -304970,13 +279754,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -304997,14 +279778,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_RBRACK, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -305012,19 +279791,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [84767] = 6, - ACTIONS(3), 1, + [79838] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5743), 1, - anon_sym_RBRACK, - ACTIONS(5745), 1, - sym__entry_separator, - STATE(2782), 1, - aux_sym__multiple_types_repeat1, - STATE(2783), 1, + ACTIONS(5492), 1, + anon_sym_DOT, + STATE(2517), 1, sym_comment, - ACTIONS(5741), 49, + STATE(2564), 1, + aux_sym_cell_path_repeat1, + STATE(2649), 1, + sym_path, + STATE(2708), 1, + sym_cell_path, + ACTIONS(1847), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1849), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -305032,13 +279819,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -305059,13 +279843,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -305073,19 +279856,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [84834] = 6, - ACTIONS(3), 1, + [79911] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5745), 1, - sym__entry_separator, - ACTIONS(5747), 1, - anon_sym_RBRACK, - STATE(2782), 1, - aux_sym__multiple_types_repeat1, - STATE(2784), 1, + ACTIONS(5492), 1, + anon_sym_DOT, + STATE(2518), 1, sym_comment, - ACTIONS(5741), 49, + STATE(2564), 1, + aux_sym_cell_path_repeat1, + STATE(2649), 1, + sym_path, + STATE(2711), 1, + sym_cell_path, + ACTIONS(1851), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1853), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -305093,13 +279884,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -305120,13 +279908,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -305134,19 +279921,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [84901] = 6, - ACTIONS(3), 1, + [79984] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5745), 1, - sym__entry_separator, - ACTIONS(5749), 1, - anon_sym_RBRACK, - STATE(2782), 1, - aux_sym__multiple_types_repeat1, - STATE(2785), 1, + ACTIONS(5492), 1, + anon_sym_DOT, + STATE(2519), 1, sym_comment, - ACTIONS(5741), 49, + STATE(2564), 1, + aux_sym_cell_path_repeat1, + STATE(2649), 1, + sym_path, + STATE(2712), 1, + sym_cell_path, + ACTIONS(1855), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1857), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -305154,13 +279949,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -305181,13 +279973,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -305195,22 +279986,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [84968] = 5, + [80057] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5751), 1, - anon_sym_QMARK2, - STATE(2786), 1, + ACTIONS(5492), 1, + anon_sym_DOT, + STATE(2520), 1, sym_comment, - ACTIONS(970), 7, + STATE(2564), 1, + aux_sym_cell_path_repeat1, + STATE(2649), 1, + sym_path, + STATE(2714), 1, + sym_cell_path, + ACTIONS(1859), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(972), 44, + ACTIONS(1861), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -305255,83 +280051,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [85033] = 6, + [80130] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5753), 1, + ACTIONS(5492), 1, anon_sym_DOT, - STATE(3018), 1, - sym_path, - STATE(2787), 2, + STATE(2521), 1, sym_comment, + STATE(2564), 1, aux_sym_cell_path_repeat1, - ACTIONS(955), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(957), 32, + STATE(2649), 1, + sym_path, + STATE(2715), 1, + sym_cell_path, + ACTIONS(1863), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1865), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [85100] = 5, + [80203] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5756), 1, - anon_sym_QMARK2, - STATE(2788), 1, + ACTIONS(5492), 1, + anon_sym_DOT, + STATE(2522), 1, sym_comment, - ACTIONS(980), 7, + STATE(2564), 1, + aux_sym_cell_path_repeat1, + STATE(2649), 1, + sym_path, + STATE(2717), 1, + sym_cell_path, + ACTIONS(1867), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(982), 44, + ACTIONS(1869), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -305376,141 +280181,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [85165] = 6, + [80276] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5758), 1, + ACTIONS(5492), 1, anon_sym_DOT, - ACTIONS(5760), 1, - aux_sym__immediate_decimal_token2, - STATE(2789), 1, + STATE(2523), 1, sym_comment, - ACTIONS(1589), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1591), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, + STATE(2564), 1, + aux_sym_cell_path_repeat1, + STATE(2649), 1, + sym_path, + STATE(2718), 1, + sym_cell_path, + ACTIONS(1871), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [85232] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5732), 1, - aux_sym__immediate_decimal_token2, - STATE(2790), 1, - sym_comment, - ACTIONS(1589), 18, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1591), 33, + ACTIONS(1873), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [85297] = 4, + [80349] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2791), 1, + ACTIONS(5492), 1, + anon_sym_DOT, + STATE(2524), 1, sym_comment, - ACTIONS(962), 7, + STATE(2564), 1, + aux_sym_cell_path_repeat1, + STATE(2649), 1, + sym_path, + STATE(2719), 1, + sym_cell_path, + ACTIONS(1875), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(964), 45, + ACTIONS(1877), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -305548,7 +280304,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, - anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -305556,78 +280311,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [85360] = 4, - ACTIONS(3), 1, + [80422] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2792), 1, + ACTIONS(5492), 1, + anon_sym_DOT, + STATE(2525), 1, sym_comment, - ACTIONS(1571), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1569), 48, + STATE(2564), 1, + aux_sym_cell_path_repeat1, + STATE(2649), 1, + sym_path, + STATE(2720), 1, + sym_cell_path, + ACTIONS(1969), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1971), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [85423] = 6, - ACTIONS(3), 1, + [80495] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5745), 1, - sym__entry_separator, - ACTIONS(5762), 1, - anon_sym_RBRACK, - STATE(2782), 1, - aux_sym__multiple_types_repeat1, - STATE(2793), 1, + ACTIONS(5492), 1, + anon_sym_DOT, + STATE(2526), 1, sym_comment, - ACTIONS(5741), 49, + STATE(2564), 1, + aux_sym_cell_path_repeat1, + STATE(2649), 1, + sym_path, + STATE(2721), 1, + sym_cell_path, + ACTIONS(1890), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1892), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -305635,13 +280404,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -305662,13 +280428,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -305676,140 +280441,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [85490] = 5, + [80568] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5764), 1, - aux_sym__immediate_decimal_token2, - STATE(2794), 1, + ACTIONS(5492), 1, + anon_sym_DOT, + STATE(2527), 1, sym_comment, - ACTIONS(1648), 18, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1650), 33, - anon_sym_true, - anon_sym_false, - anon_sym_null, + STATE(2564), 1, + aux_sym_cell_path_repeat1, + STATE(2649), 1, + sym_path, + STATE(2722), 1, + sym_cell_path, + ACTIONS(1894), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [85555] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5768), 1, - anon_sym_RBRACK, - ACTIONS(5770), 1, - sym__entry_separator, - STATE(2795), 1, - sym_comment, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5766), 49, + ACTIONS(1896), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [85622] = 6, - ACTIONS(3), 1, + [80641] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5745), 1, - sym__entry_separator, - ACTIONS(5772), 1, - anon_sym_RBRACK, - STATE(2782), 1, - aux_sym__multiple_types_repeat1, - STATE(2796), 1, + ACTIONS(5492), 1, + anon_sym_DOT, + STATE(2528), 1, sym_comment, - ACTIONS(5741), 49, + STATE(2564), 1, + aux_sym_cell_path_repeat1, + STATE(2649), 1, + sym_path, + STATE(2723), 1, + sym_cell_path, + ACTIONS(1937), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1939), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -305817,13 +280534,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -305844,13 +280558,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -305858,78 +280571,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [85689] = 4, + [80714] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2797), 1, + ACTIONS(5492), 1, + anon_sym_DOT, + STATE(2529), 1, sym_comment, - ACTIONS(1473), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1475), 34, + STATE(2564), 1, + aux_sym_cell_path_repeat1, + STATE(2649), 1, + sym_path, + STATE(2724), 1, + sym_cell_path, + ACTIONS(1945), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1947), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [85752] = 6, - ACTIONS(3), 1, + [80787] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5745), 1, - sym__entry_separator, - ACTIONS(5774), 1, - anon_sym_RBRACK, - STATE(2782), 1, - aux_sym__multiple_types_repeat1, - STATE(2798), 1, + ACTIONS(5492), 1, + anon_sym_DOT, + STATE(2530), 1, sym_comment, - ACTIONS(5741), 49, + STATE(2564), 1, + aux_sym_cell_path_repeat1, + STATE(2649), 1, + sym_path, + STATE(2725), 1, + sym_cell_path, + ACTIONS(1949), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1951), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -305937,13 +280664,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -305964,13 +280688,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -305978,85 +280701,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [85819] = 6, - ACTIONS(3), 1, + [80860] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(5776), 1, - anon_sym_RBRACK, - STATE(2799), 1, + ACTIONS(5492), 1, + anon_sym_DOT, + STATE(2531), 1, sym_comment, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5766), 49, + STATE(2564), 1, + aux_sym_cell_path_repeat1, + STATE(2649), 1, + sym_path, + STATE(2654), 1, + sym_cell_path, + ACTIONS(1965), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1967), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [85886] = 9, + [80933] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5778), 1, - anon_sym_DOT_DOT2, - ACTIONS(5782), 1, - sym_filesize_unit, - ACTIONS(5784), 1, - sym_duration_unit, - ACTIONS(5786), 1, - aux_sym__unquoted_in_list_token2, - STATE(2800), 1, + ACTIONS(5502), 1, + anon_sym_DOT, + ACTIONS(5504), 1, + aux_sym__immediate_decimal_token2, + STATE(2532), 1, sym_comment, - ACTIONS(5780), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1525), 16, + ACTIONS(1497), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -306072,7 +280793,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1537), 30, + aux_sym__unquoted_in_list_token2, + ACTIONS(1499), 34, anon_sym_true, anon_sym_false, anon_sym_null, @@ -306085,12 +280807,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -306103,20 +280829,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [85959] = 4, + [81002] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2801), 1, + ACTIONS(5492), 1, + anon_sym_DOT, + STATE(2533), 1, sym_comment, - ACTIONS(966), 7, + STATE(2564), 1, + aux_sym_cell_path_repeat1, + STATE(2649), 1, + sym_path, + STATE(2660), 1, + sym_cell_path, + ACTIONS(1879), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(968), 45, + ACTIONS(1881), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -306154,7 +280887,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, - anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -306162,197 +280894,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [86022] = 4, + [81075] = 16, ACTIONS(247), 1, - anon_sym_POUND, - STATE(2802), 1, - sym_comment, - ACTIONS(966), 11, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(968), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [86085] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2803), 1, - sym_comment, - ACTIONS(1650), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1648), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [86148] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1711), 1, - anon_sym_LPAREN2, - ACTIONS(1717), 1, - sym__entry_separator, - ACTIONS(1719), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5788), 1, - anon_sym_DOT_DOT2, - STATE(2804), 1, + anon_sym_POUND, + ACTIONS(1325), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3700), 1, + anon_sym_DQUOTE, + ACTIONS(4852), 1, + aux_sym_cmd_identifier_token38, + STATE(1929), 1, + sym_cmd_identifier, + STATE(1930), 1, + sym_val_string, + STATE(1972), 1, + sym__str_double_quotes, + STATE(2534), 1, sym_comment, - ACTIONS(5790), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1709), 46, + STATE(6953), 1, + sym__val_number_decimal, + STATE(7635), 1, + sym__command_name, + ACTIONS(1323), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3702), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4846), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4850), 5, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + ACTIONS(4848), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [81164] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1325), 1, aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, + ACTIONS(3700), 1, anon_sym_DQUOTE, + ACTIONS(4852), 1, + aux_sym_cmd_identifier_token38, + STATE(1929), 1, + sym_cmd_identifier, + STATE(1930), 1, + sym_val_string, + STATE(1972), 1, + sym__str_double_quotes, + STATE(2535), 1, + sym_comment, + STATE(6127), 1, + sym__command_name, + STATE(6953), 1, + sym__val_number_decimal, + ACTIONS(1323), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3702), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [86219] = 6, + ACTIONS(4846), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4850), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4848), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [81253] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5792), 1, + ACTIONS(5506), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5794), 1, + ACTIONS(5508), 1, aux_sym__immediate_decimal_token2, - STATE(2805), 1, + STATE(2536), 1, sym_comment, - ACTIONS(1569), 18, + ACTIONS(1517), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -306371,7 +281068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - ACTIONS(1571), 32, + ACTIONS(1519), 34, anon_sym_true, anon_sym_false, anon_sym_null, @@ -306392,6 +281089,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -306404,75 +281103,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86286] = 4, + [81322] = 16, ACTIONS(247), 1, anon_sym_POUND, - STATE(2806), 1, + ACTIONS(1325), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3700), 1, + anon_sym_DQUOTE, + ACTIONS(4852), 1, + aux_sym_cmd_identifier_token38, + STATE(1929), 1, + sym_cmd_identifier, + STATE(1930), 1, + sym_val_string, + STATE(1972), 1, + sym__str_double_quotes, + STATE(2537), 1, sym_comment, - ACTIONS(1481), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + STATE(6953), 1, + sym__val_number_decimal, + STATE(7561), 1, + sym__command_name, + ACTIONS(1323), 2, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1483), 34, + aux_sym__val_number_decimal_token2, + ACTIONS(3702), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4846), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4850), 5, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, + ACTIONS(4848), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [81411] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1325), 1, aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, + ACTIONS(3700), 1, anon_sym_DQUOTE, + ACTIONS(4852), 1, + aux_sym_cmd_identifier_token38, + STATE(1929), 1, + sym_cmd_identifier, + STATE(1930), 1, + sym_val_string, + STATE(1972), 1, + sym__str_double_quotes, + STATE(2538), 1, + sym_comment, + STATE(6201), 1, + sym__command_name, + STATE(6953), 1, + sym__val_number_decimal, + ACTIONS(1323), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3702), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [86349] = 4, + ACTIONS(4846), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4850), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4848), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [81500] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2807), 1, + ACTIONS(5486), 1, + anon_sym_DOT, + STATE(2539), 1, sym_comment, - ACTIONS(978), 3, + STATE(2561), 1, + aux_sym_cell_path_repeat1, + STATE(2639), 1, + sym_path, + STATE(2775), 1, + sym_cell_path, + ACTIONS(1688), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(976), 49, + ACTIONS(1686), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -306486,9 +281280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, - anon_sym_QMARK2, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -306522,75 +281314,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [86412] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2808), 1, - sym_comment, - ACTIONS(976), 11, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(978), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [86475] = 4, + [81573] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2809), 1, + ACTIONS(5486), 1, + anon_sym_DOT, + STATE(2540), 1, sym_comment, - ACTIONS(964), 3, + STATE(2561), 1, + aux_sym_cell_path_repeat1, + STATE(2639), 1, + sym_path, + STATE(2727), 1, + sym_cell_path, + ACTIONS(1629), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(962), 49, + ACTIONS(1625), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -306604,9 +281345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, - anon_sym_QMARK2, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -306640,87 +281379,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [86538] = 8, + [81646] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5796), 1, - anon_sym_DOT, - STATE(2810), 1, + STATE(2541), 1, sym_comment, - STATE(2904), 1, - aux_sym_cell_path_repeat1, - STATE(3050), 1, - sym_path, - STATE(3081), 1, - sym_cell_path, - ACTIONS(945), 15, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(947), 33, + ACTIONS(2137), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2139), 48, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + sym_wild_card, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [86609] = 6, + [81711] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5802), 1, - anon_sym_DASH_DASH, - STATE(2997), 1, - sym_long_flag, - STATE(2811), 2, + ACTIONS(1325), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3700), 1, + anon_sym_DQUOTE, + ACTIONS(4852), 1, + aux_sym_cmd_identifier_token38, + STATE(1929), 1, + sym_cmd_identifier, + STATE(1930), 1, + sym_val_string, + STATE(1972), 1, + sym__str_double_quotes, + STATE(2542), 1, sym_comment, - aux_sym_decl_def_repeat1, - ACTIONS(5798), 6, + STATE(6953), 1, + sym__val_number_decimal, + STATE(7644), 1, + sym__command_name, + ACTIONS(1323), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3702), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4846), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(5800), 43, + ACTIONS(4850), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4848), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -306752,91 +281513,267 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, + [81800] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1325), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3700), 1, + anon_sym_DQUOTE, + ACTIONS(4852), 1, + aux_sym_cmd_identifier_token38, + STATE(1929), 1, + sym_cmd_identifier, + STATE(1930), 1, + sym_val_string, + STATE(1972), 1, + sym__str_double_quotes, + STATE(2543), 1, + sym_comment, + STATE(6953), 1, + sym__val_number_decimal, + STATE(7612), 1, + sym__command_name, + ACTIONS(1323), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3702), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4846), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4850), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + ACTIONS(4848), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [81889] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1325), 1, aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, aux_sym__val_number_decimal_token4, + ACTIONS(3700), 1, anon_sym_DQUOTE, + ACTIONS(4852), 1, + aux_sym_cmd_identifier_token38, + STATE(1929), 1, + sym_cmd_identifier, + STATE(1930), 1, + sym_val_string, + STATE(1972), 1, + sym__str_double_quotes, + STATE(2544), 1, + sym_comment, + STATE(6228), 1, + sym__command_name, + STATE(6953), 1, + sym__val_number_decimal, + ACTIONS(1323), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3702), 2, sym__str_single_quotes, sym__str_back_ticks, - [86676] = 4, + ACTIONS(4846), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4850), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4848), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [81978] = 16, + ACTIONS(111), 1, + anon_sym_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - STATE(2812), 1, + ACTIONS(1325), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4956), 1, + aux_sym_cmd_identifier_token38, + STATE(1984), 1, + sym__str_double_quotes, + STATE(2445), 1, + sym_cmd_identifier, + STATE(2446), 1, + sym_val_string, + STATE(2545), 1, sym_comment, - ACTIONS(994), 19, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + STATE(5992), 1, + sym__command_name, + STATE(7016), 1, + sym__val_number_decimal, + ACTIONS(113), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1323), 2, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(996), 33, + aux_sym__val_number_decimal_token2, + ACTIONS(4950), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4954), 5, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, + ACTIONS(4952), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [82067] = 16, + ACTIONS(111), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [86739] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2813), 1, + ACTIONS(1325), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4956), 1, + aux_sym_cmd_identifier_token38, + STATE(1984), 1, + sym__str_double_quotes, + STATE(2445), 1, + sym_cmd_identifier, + STATE(2446), 1, + sym_val_string, + STATE(2546), 1, sym_comment, - ACTIONS(976), 7, + STATE(7016), 1, + sym__val_number_decimal, + STATE(7260), 1, + sym__command_name, + ACTIONS(113), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1323), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4950), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(978), 45, + ACTIONS(4954), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4952), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -306868,31 +281805,163 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, + [82156] = 16, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1325), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1327), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4956), 1, + aux_sym_cmd_identifier_token38, + STATE(1984), 1, + sym__str_double_quotes, + STATE(2445), 1, + sym_cmd_identifier, + STATE(2446), 1, + sym_val_string, + STATE(2547), 1, + sym_comment, + STATE(6751), 1, + sym__command_name, + STATE(7016), 1, + sym__val_number_decimal, + ACTIONS(113), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1323), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4950), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4954), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_QMARK2, + ACTIONS(4952), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [82245] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5401), 1, + anon_sym_DOLLAR, + ACTIONS(5403), 1, + anon_sym_LPAREN2, + ACTIONS(5494), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5496), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5498), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5500), 1, + aux_sym__immediate_decimal_token5, + STATE(2548), 1, + sym_comment, + STATE(3016), 1, + sym__immediate_decimal, + STATE(3015), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1505), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1515), 27, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [86802] = 4, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [82326] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2814), 1, + ACTIONS(5510), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5512), 1, + aux_sym__immediate_decimal_token2, + STATE(2549), 1, sym_comment, - ACTIONS(1723), 4, + ACTIONS(1633), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1721), 48, + ACTIONS(1631), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -306941,17 +282010,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - [86865] = 4, - ACTIONS(3), 1, + [82395] = 12, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2815), 1, - sym_comment, - ACTIONS(1591), 4, + ACTIONS(5401), 1, + anon_sym_DOLLAR, + ACTIONS(5403), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1589), 48, + ACTIONS(5494), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5496), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5498), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5500), 1, + aux_sym__immediate_decimal_token5, + STATE(2550), 1, + sym_comment, + STATE(3022), 1, + sym__immediate_decimal, + STATE(3021), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1617), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1619), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -306960,28 +282060,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [82476] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5401), 1, + anon_sym_DOLLAR, + ACTIONS(5403), 1, + anon_sym_LPAREN2, + ACTIONS(5494), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5496), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5498), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5500), 1, + aux_sym__immediate_decimal_token5, + STATE(2551), 1, + sym_comment, + STATE(3024), 1, + sym__immediate_decimal, + STATE(3055), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1621), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -306990,6 +282119,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1623), 27, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -306998,14 +282148,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [86928] = 4, + [82557] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5492), 1, + anon_sym_DOT, + STATE(2552), 1, + sym_comment, + STATE(2564), 1, + aux_sym_cell_path_repeat1, + STATE(2649), 1, + sym_path, + STATE(2703), 1, + sym_cell_path, + ACTIONS(1835), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1837), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [82630] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2816), 1, + ACTIONS(5514), 1, + anon_sym_QMARK2, + STATE(2553), 1, sym_comment, - ACTIONS(962), 11, + ACTIONS(1028), 11, anon_sym_GT, anon_sym_DASH, anon_sym_LT2, @@ -307017,7 +282232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(964), 41, + ACTIONS(1030), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -307030,14 +282245,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, + anon_sym_if, aux_sym_ctrl_match_token1, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_as, - anon_sym_QMARK2, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -307059,31 +282274,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86991] = 4, - ACTIONS(247), 1, + [82696] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2817), 1, + ACTIONS(5516), 1, + aux_sym__immediate_decimal_token2, + STATE(2554), 1, sym_comment, - ACTIONS(1585), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1587), 34, + ACTIONS(1707), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1705), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307096,20 +282299,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -307118,57 +282333,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [87054] = 4, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [82762] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2818), 1, - sym_comment, - ACTIONS(986), 19, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + ACTIONS(5518), 1, anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(988), 33, + STATE(2639), 1, + sym_path, + STATE(2555), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(1023), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1021), 47, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -307177,26 +282396,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [87117] = 6, + aux_sym__unquoted_in_list_token1, + [82830] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5805), 1, - sym_long_flag_identifier, - ACTIONS(5807), 1, - anon_sym_EQ2, - STATE(2819), 1, + ACTIONS(5521), 1, + anon_sym_DOT, + STATE(2649), 1, + sym_path, + STATE(2556), 2, sym_comment, - ACTIONS(4952), 8, - aux_sym_cmd_identifier_token39, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4950), 42, + aux_sym_cell_path_repeat1, + ACTIONS(1021), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1023), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -307204,13 +282422,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -307231,55 +282446,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, - [87184] = 4, - ACTIONS(3), 1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [82898] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5809), 1, - sym__entry_separator, - STATE(2820), 2, + ACTIONS(5504), 1, + aux_sym__immediate_decimal_token2, + STATE(2557), 1, sym_comment, - aux_sym__multiple_types_repeat1, - ACTIONS(2319), 50, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + ACTIONS(1497), 18, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -307288,27 +282483,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [87247] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(5812), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(2821), 1, - sym_comment, - ACTIONS(5766), 49, + aux_sym__unquoted_in_list_token2, + ACTIONS(1499), 34, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307316,39 +282493,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_filesize_unit, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -307357,19 +282520,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [87314] = 6, + [82964] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5524), 1, sym__entry_separator, - ACTIONS(5814), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(2822), 1, + STATE(2558), 2, sym_comment, - ACTIONS(5766), 49, + aux_sym__multiple_types_repeat1, + ACTIONS(2359), 51, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307377,9 +282536,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, @@ -307419,18 +282580,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [87381] = 5, + [83028] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5816), 1, - anon_sym_QMARK2, - STATE(2823), 1, + ACTIONS(5484), 1, + aux_sym__immediate_decimal_token2, + STATE(2559), 1, sym_comment, - ACTIONS(972), 3, + ACTIONS(1645), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(970), 48, + ACTIONS(1643), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307445,7 +282607,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -307479,16 +282640,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [87446] = 4, + aux_sym__unquoted_in_list_token2, + [83094] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2824), 1, + ACTIONS(5527), 1, + anon_sym_DOT, + STATE(2560), 1, sym_comment, - ACTIONS(990), 19, - anon_sym__, + STATE(2571), 1, + aux_sym_cell_path_repeat1, + STATE(2696), 1, + sym_path, + STATE(2853), 1, + sym_cell_path, + ACTIONS(1686), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -307503,21 +282671,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(992), 33, + aux_sym__unquoted_in_list_token1, + ACTIONS(1688), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, @@ -307538,18 +282705,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [87509] = 5, + [83166] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5818), 1, - anon_sym_QMARK2, - STATE(2825), 1, + ACTIONS(5486), 1, + anon_sym_DOT, + STATE(2555), 1, + aux_sym_cell_path_repeat1, + STATE(2561), 1, sym_comment, - ACTIONS(982), 3, + STATE(2639), 1, + sym_path, + ACTIONS(1019), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(980), 48, + ACTIONS(1017), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307564,7 +282735,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -307598,12 +282768,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [87574] = 4, + [83236] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2826), 1, + ACTIONS(5527), 1, + anon_sym_DOT, + STATE(2562), 1, sym_comment, - ACTIONS(1519), 18, + STATE(2571), 1, + aux_sym_cell_path_repeat1, + STATE(2696), 1, + sym_path, + STATE(2831), 1, + sym_cell_path, + ACTIONS(1011), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -307621,8 +282799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1521), 34, + ACTIONS(1013), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307643,8 +282820,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -307657,80 +282832,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [87637] = 6, - ACTIONS(3), 1, + [83308] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5745), 1, - sym__entry_separator, - ACTIONS(5820), 1, - anon_sym_RBRACK, - STATE(2782), 1, - aux_sym__multiple_types_repeat1, - STATE(2827), 1, + ACTIONS(5527), 1, + anon_sym_DOT, + STATE(2563), 1, sym_comment, - ACTIONS(5741), 49, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, + STATE(2571), 1, + aux_sym_cell_path_repeat1, + STATE(2696), 1, + sym_path, + STATE(2792), 1, + sym_cell_path, + ACTIONS(1625), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1629), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [87704] = 6, - ACTIONS(3), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [83380] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5745), 1, - sym__entry_separator, - ACTIONS(5822), 1, - anon_sym_RBRACK, - STATE(2782), 1, - aux_sym__multiple_types_repeat1, - STATE(2828), 1, + ACTIONS(5492), 1, + anon_sym_DOT, + STATE(2556), 1, + aux_sym_cell_path_repeat1, + STATE(2564), 1, sym_comment, - ACTIONS(5741), 49, + STATE(2649), 1, + sym_path, + ACTIONS(1017), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1019), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -307738,13 +282922,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -307765,13 +282946,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -307779,52 +282959,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [87771] = 8, - ACTIONS(3), 1, + [83450] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1429), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1692), 1, - anon_sym_LPAREN2, - ACTIONS(1698), 1, - sym__entry_separator, - ACTIONS(5824), 1, - anon_sym_DOT_DOT2, - STATE(2829), 1, + ACTIONS(5529), 1, + anon_sym_QMARK2, + STATE(2565), 1, sym_comment, - ACTIONS(5826), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1690), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(1034), 11, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -307833,6 +282978,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(1036), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -307841,21 +283020,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [87842] = 6, - ACTIONS(3), 1, + [83516] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5828), 1, - anon_sym_DOT, - ACTIONS(5830), 1, + ACTIONS(5531), 1, aux_sym__immediate_decimal_token2, - STATE(2830), 1, + STATE(2566), 1, sym_comment, - ACTIONS(1591), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1589), 47, + ACTIONS(1565), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1567), 34, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307868,32 +283059,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_filesize_unit, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -307902,26 +283081,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [87909] = 9, + [83582] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5834), 1, - anon_sym_RBRACK, - ACTIONS(5837), 1, - anon_sym_DOT, - STATE(2831), 1, + STATE(2567), 1, sym_comment, - STATE(6077), 1, - aux_sym_cell_path_repeat1, - STATE(6519), 1, - sym_path, - STATE(7056), 1, - sym_cell_path, - ACTIONS(1774), 2, + ACTIONS(1633), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - sym__table_head_separator, - ACTIONS(5832), 45, + ACTIONS(1631), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307929,11 +283099,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -307967,50 +283139,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [87982] = 4, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token2, + [83645] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2832), 1, + ACTIONS(5535), 1, + anon_sym_RBRACK, + ACTIONS(5537), 1, + sym__entry_separator, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(2568), 1, sym_comment, - ACTIONS(1273), 15, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1277), 37, + ACTIONS(5533), 49, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -308018,6 +283184,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -308026,16 +283200,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [88045] = 4, + aux_sym__unquoted_in_list_token1, + [83712] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2833), 1, - sym_comment, - ACTIONS(968), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(966), 49, + ACTIONS(5539), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(2569), 1, + sym_comment, + ACTIONS(5533), 49, anon_sym_true, anon_sym_false, anon_sym_null, @@ -308043,17 +283220,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -308068,6 +283242,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -308085,14 +283262,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [88108] = 4, + [83779] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2447), 1, - sym__entry_separator, - STATE(2834), 1, + STATE(2570), 1, sym_comment, - ACTIONS(2445), 50, + ACTIONS(1042), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1040), 49, anon_sym_true, anon_sym_false, anon_sym_null, @@ -308102,13 +283281,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -308123,9 +283304,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -308143,17 +283321,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [88170] = 5, + [83842] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5839), 1, - anon_sym_QMARK2, - STATE(2835), 1, + ACTIONS(5527), 1, + anon_sym_DOT, + STATE(2571), 1, sym_comment, - ACTIONS(970), 18, + STATE(2605), 1, + aux_sym_cell_path_repeat1, + STATE(2696), 1, + sym_path, + ACTIONS(1017), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -308169,7 +283350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(972), 32, + ACTIONS(1019), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -308202,78 +283383,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [88234] = 5, + [83911] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5841), 1, - anon_sym_QMARK2, - STATE(2836), 1, + ACTIONS(5545), 1, + anon_sym_DASH_DASH, + STATE(2743), 1, + sym_long_flag, + STATE(2572), 2, sym_comment, - ACTIONS(980), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(982), 32, + aux_sym_decl_def_repeat1, + ACTIONS(5541), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(5543), 43, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [88298] = 6, + [83978] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5843), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5845), 1, - aux_sym__immediate_decimal_token2, - STATE(2837), 1, + STATE(2573), 1, sym_comment, - ACTIONS(1571), 2, - anon_sym_LPAREN2, + ACTIONS(1046), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1569), 47, + ACTIONS(1044), 49, anon_sym_true, anon_sym_false, anon_sym_null, @@ -308287,6 +283467,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -308320,17 +283503,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [88364] = 5, + [84041] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5745), 1, + ACTIONS(5550), 1, + anon_sym_RBRACK, + ACTIONS(5552), 1, sym__entry_separator, - STATE(2782), 1, - aux_sym__multiple_types_repeat1, - STATE(2838), 1, + STATE(2574), 1, sym_comment, - ACTIONS(5741), 49, + STATE(2603), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5548), 49, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -308380,58 +283564,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [88428] = 6, - ACTIONS(247), 1, + [84108] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5847), 1, - anon_sym_DOT_DOT2, - STATE(2839), 1, + STATE(2575), 1, sym_comment, - ACTIONS(5849), 2, + ACTIONS(1050), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1690), 17, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1698), 31, + sym__entry_separator, + ACTIONS(1048), 49, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -308440,16 +283622,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [88494] = 4, + aux_sym__unquoted_in_list_token1, + [84171] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2840), 1, + ACTIONS(5554), 1, + anon_sym_DOT, + ACTIONS(5556), 1, + aux_sym__immediate_decimal_token2, + STATE(2576), 1, sym_comment, - ACTIONS(996), 3, + ACTIONS(1645), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(994), 48, + ACTIONS(1643), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -308464,7 +283651,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -308498,20 +283684,261 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [88556] = 4, + [84238] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5552), 1, + sym__entry_separator, + ACTIONS(5558), 1, + anon_sym_RBRACK, + STATE(2577), 1, + sym_comment, + STATE(2603), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5548), 49, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [84305] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5552), 1, + sym__entry_separator, + ACTIONS(5560), 1, + anon_sym_RBRACK, + STATE(2578), 1, + sym_comment, + STATE(2603), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5548), 49, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [84372] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5552), 1, + sym__entry_separator, + ACTIONS(5562), 1, + anon_sym_RBRACK, + STATE(2579), 1, + sym_comment, + STATE(2603), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5548), 49, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [84439] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2841), 1, + STATE(2580), 1, + sym_comment, + ACTIONS(1040), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1042), 45, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [84502] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5552), 1, + sym__entry_separator, + ACTIONS(5564), 1, + anon_sym_RBRACK, + STATE(2581), 1, sym_comment, - ACTIONS(994), 7, + STATE(2603), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5548), 49, aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(996), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -308519,10 +283946,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -308543,94 +283973,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [88618] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5851), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5853), 1, - aux_sym__immediate_decimal_token2, - STATE(2842), 1, - sym_comment, - ACTIONS(1569), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1571), 32, + aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [88684] = 5, + [84569] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5855), 1, - anon_sym_LBRACK2, - STATE(2843), 1, + STATE(2582), 1, sym_comment, - ACTIONS(2235), 6, + ACTIONS(1044), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2239), 44, + anon_sym_DOT, + ACTIONS(1046), 45, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -308668,6 +284038,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -308675,14 +284046,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [88748] = 4, - ACTIONS(3), 1, + [84632] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2447), 1, - sym__entry_separator, - STATE(2844), 1, + ACTIONS(5566), 1, + sym_long_flag_identifier, + ACTIONS(5568), 1, + anon_sym_EQ2, + STATE(2583), 1, sym_comment, - ACTIONS(2445), 50, + ACTIONS(4737), 8, + aux_sym_cmd_identifier_token39, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4735), 42, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -308723,26 +284105,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_RBRACK, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [88810] = 4, + [84699] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2845), 1, + ACTIONS(1798), 1, + anon_sym_LPAREN2, + ACTIONS(1804), 1, + sym__entry_separator, + ACTIONS(1806), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5570), 1, + anon_sym_DOT_DOT2, + STATE(2584), 1, sym_comment, - ACTIONS(988), 3, + ACTIONS(5572), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(986), 48, + ACTIONS(1796), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -308756,8 +284137,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -308791,79 +284170,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [88872] = 4, - ACTIONS(3), 1, + [84770] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2846), 1, + STATE(2585), 1, sym_comment, - ACTIONS(992), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(990), 48, + ACTIONS(1048), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1050), 45, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [88934] = 6, + [84833] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5857), 1, - anon_sym_DOT_DOT2, - STATE(2847), 1, + ACTIONS(5574), 1, + sym__newline, + STATE(2586), 2, sym_comment, - ACTIONS(5859), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1709), 17, - anon_sym__, + aux_sym_shebang_repeat1, + ACTIONS(1898), 15, + anon_sym_DOLLAR, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -308876,21 +284252,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1717), 31, + aux_sym__unquoted_in_list_token1, + ACTIONS(1900), 35, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -308901,6 +284278,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -308909,18 +284289,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [89000] = 5, + [84898] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - STATE(2848), 1, + ACTIONS(5552), 1, + sym__entry_separator, + ACTIONS(5577), 1, + anon_sym_RBRACK, + STATE(2587), 1, sym_comment, - ACTIONS(2101), 3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2097), 47, + STATE(2603), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5548), 49, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -308963,27 +284343,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - [89064] = 8, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [84965] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(947), 1, - sym__entry_separator, - ACTIONS(5861), 1, - anon_sym_DOT, - STATE(2849), 1, + ACTIONS(5579), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5581), 1, + aux_sym__immediate_decimal_token2, + STATE(2588), 1, sym_comment, - STATE(2974), 1, - aux_sym_cell_path_repeat1, - STATE(3138), 1, - sym_path, - STATE(3194), 1, - sym_cell_path, - ACTIONS(945), 46, + ACTIONS(1633), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1631), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -308997,6 +284377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -309030,56 +284411,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [89134] = 4, - ACTIONS(247), 1, + [85032] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2850), 1, + ACTIONS(2513), 1, + sym__entry_separator, + STATE(2589), 1, sym_comment, - ACTIONS(1589), 18, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1591), 33, + ACTIONS(2511), 51, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -309088,25 +284469,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [89196] = 6, + aux_sym__unquoted_in_list_token1, + [85095] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5863), 1, - anon_sym_DOT_DOT2, - STATE(2851), 1, + STATE(2590), 1, sym_comment, - ACTIONS(5865), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1935), 17, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1056), 11, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -309115,31 +284487,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1941), 31, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1058), 41, sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + anon_sym_EQ_GT, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -309148,13 +284529,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [89262] = 4, + [85158] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2852), 1, + ACTIONS(5583), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5585), 1, + aux_sym__immediate_decimal_token2, + STATE(2591), 1, sym_comment, - ACTIONS(1569), 18, - anon_sym__, + ACTIONS(1631), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -309171,21 +284555,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1571), 33, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1633), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, @@ -309206,138 +284590,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [89324] = 5, + [85225] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - STATE(2853), 1, - sym_comment, - ACTIONS(2107), 3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2105), 47, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - [89388] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2854), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(5587), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(2592), 1, sym_comment, - ACTIONS(1648), 18, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1650), 33, + ACTIONS(5533), 49, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [89450] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2855), 1, - sym_comment, - ACTIONS(1721), 18, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -309346,33 +284642,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1723), 33, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -309381,19 +284650,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [89512] = 4, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [85292] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2856), 1, + ACTIONS(5552), 1, + sym__entry_separator, + ACTIONS(5589), 1, + anon_sym_RBRACK, + STATE(2593), 1, sym_comment, - ACTIONS(5139), 6, + STATE(2603), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5548), 49, aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(5137), 45, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -309401,68 +284671,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [89574] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2857), 1, - sym_comment, - ACTIONS(5143), 6, - aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(5141), 45, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -309483,13 +284698,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -309497,18 +284712,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [89636] = 5, + [85359] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(2858), 1, + ACTIONS(5552), 1, + sym__entry_separator, + ACTIONS(5591), 1, + anon_sym_RBRACK, + STATE(2594), 1, sym_comment, - ACTIONS(2093), 3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2089), 47, + STATE(2603), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5548), 49, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -309551,80 +284766,89 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - [89700] = 5, - ACTIONS(247), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [85426] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5867), 1, - anon_sym_EQ2, - STATE(2859), 1, + ACTIONS(5595), 1, + anon_sym_RBRACK, + ACTIONS(5598), 1, + anon_sym_DOT, + STATE(2595), 1, sym_comment, - ACTIONS(5041), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(5039), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + STATE(5815), 1, + aux_sym_cell_path_repeat1, + STATE(6548), 1, + sym_path, + STATE(6938), 1, + sym_cell_path, + ACTIONS(1965), 2, + sym__entry_separator, + sym__table_head_separator, + ACTIONS(5593), 45, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [89764] = 5, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [85499] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(2860), 1, + ACTIONS(5600), 1, + anon_sym_QMARK2, + STATE(2596), 1, sym_comment, - ACTIONS(5766), 49, + ACTIONS(1036), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1034), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -309632,14 +284856,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -309654,9 +284880,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -309674,71 +284897,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [89828] = 29, - ACTIONS(247), 1, + [85564] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3229), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3231), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3233), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3235), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3241), 1, - aux_sym_unquoted_token1, - ACTIONS(3269), 1, - aux_sym_record_entry_token1, - ACTIONS(4256), 1, - anon_sym_DOT_DOT, - ACTIONS(4260), 1, - anon_sym_DQUOTE, - ACTIONS(5871), 1, - anon_sym_LPAREN, - ACTIONS(5873), 1, - anon_sym_DOLLAR, - ACTIONS(5875), 1, - sym_val_date, - ACTIONS(5877), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5879), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(2158), 1, - sym__str_double_quotes, - STATE(2657), 1, - sym__inter_double_quotes, - STATE(2672), 1, - sym__inter_single_quotes, - STATE(2861), 1, + ACTIONS(5602), 1, + anon_sym_QMARK2, + STATE(2597), 1, sym_comment, - STATE(6029), 1, - sym__val_number_decimal, - STATE(7765), 1, - sym__unquoted_anonymous_prefix, - STATE(7919), 1, - sym_val_bool, - STATE(8049), 1, - sym__val_range, - ACTIONS(3213), 2, + ACTIONS(1030), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1028), 48, anon_sym_true, anon_sym_false, - ACTIONS(4258), 2, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4262), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5869), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(1697), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2505), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -309747,8 +284948,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2507), 9, - anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -309757,24 +284956,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [89940] = 9, + aux_sym__unquoted_in_list_token1, + [85629] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1764), 1, - sym__entry_separator, - ACTIONS(5861), 1, - anon_sym_DOT, - ACTIONS(5883), 1, - anon_sym_RBRACK, - STATE(2862), 1, + STATE(2598), 1, sym_comment, - STATE(2974), 1, - aux_sym_cell_path_repeat1, - STATE(3138), 1, - sym_path, - STATE(3188), 1, - sym_cell_path, - ACTIONS(5881), 45, + ACTIONS(1707), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1705), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -309782,11 +284975,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -309820,78 +285015,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [90012] = 5, + aux_sym__unquoted_in_list_token2, + [85692] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2083), 1, - aux_sym_unquoted_token4, - STATE(2863), 1, + STATE(2599), 1, sym_comment, - ACTIONS(1008), 3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1006), 47, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, + ACTIONS(1757), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1755), 48, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - [90076] = 4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [85755] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2864), 1, + ACTIONS(5604), 1, + anon_sym_DOT, + STATE(2590), 1, + sym_path, + STATE(2600), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(1021), 11, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1023), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [85822] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5607), 1, + anon_sym_QMARK2, + STATE(2601), 1, sym_comment, - ACTIONS(1778), 6, + ACTIONS(1034), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1780), 45, + anon_sym_DOT, + ACTIONS(1036), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -309936,78 +285196,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - sym__table_head_separator, - [90138] = 4, + [85887] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2865), 1, + STATE(2602), 1, sym_comment, - ACTIONS(990), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(992), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + ACTIONS(1497), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1499), 34, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [90200] = 4, - ACTIONS(247), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [85950] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2866), 1, + ACTIONS(5609), 1, + sym__entry_separator, + STATE(2603), 2, sym_comment, - ACTIONS(2255), 6, + aux_sym__multiple_types_repeat1, + ACTIONS(2359), 50, aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2257), 45, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -310015,10 +285272,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -310039,12 +285299,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + anon_sym_RBRACK, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -310052,18 +285314,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - sym__table_head_separator, - [90262] = 4, - ACTIONS(3), 1, + [86013] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2867), 1, + ACTIONS(5612), 1, + anon_sym_QMARK2, + STATE(2604), 1, sym_comment, - ACTIONS(2133), 3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2131), 48, + ACTIONS(1028), 7, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1030), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -310071,13 +285337,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -310098,11 +285361,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -310110,23 +285371,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym_unquoted_token4, - [90324] = 8, - ACTIONS(3), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [86078] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1849), 1, - sym__entry_separator, - ACTIONS(5861), 1, + ACTIONS(5614), 1, anon_sym_DOT, - STATE(2868), 1, + STATE(2696), 1, + sym_path, + STATE(2605), 2, sym_comment, - STATE(2974), 1, aux_sym_cell_path_repeat1, - STATE(3138), 1, - sym_path, - STATE(3161), 1, - sym_cell_path, - ACTIONS(1847), 46, + ACTIONS(1021), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1023), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -310139,31 +285415,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -310172,23 +285435,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [90394] = 8, - ACTIONS(3), 1, + [86145] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1873), 1, - sym__entry_separator, - ACTIONS(5861), 1, - anon_sym_DOT, - STATE(2869), 1, + ACTIONS(5617), 1, + anon_sym_DOT_DOT2, + ACTIONS(5621), 1, + sym_filesize_unit, + ACTIONS(5623), 1, + sym_duration_unit, + ACTIONS(5625), 1, + aux_sym__unquoted_in_list_token2, + STATE(2606), 1, sym_comment, - STATE(2974), 1, - aux_sym_cell_path_repeat1, - STATE(3124), 1, - sym_cell_path, - STATE(3138), 1, - sym_path, - ACTIONS(1871), 46, + ACTIONS(5619), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1575), 16, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1587), 30, anon_sym_true, anon_sym_false, anon_sym_null, @@ -310201,31 +285481,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -310234,23 +285499,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [90464] = 8, - ACTIONS(3), 1, + [86218] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1877), 1, - sym__entry_separator, - ACTIONS(5861), 1, - anon_sym_DOT, - STATE(2870), 1, + STATE(2607), 1, sym_comment, - STATE(2974), 1, - aux_sym_cell_path_repeat1, - STATE(3127), 1, - sym_cell_path, - STATE(3138), 1, - sym_path, - ACTIONS(1875), 46, + ACTIONS(1517), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1519), 34, anon_sym_true, anon_sym_false, anon_sym_null, @@ -310263,31 +285536,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_filesize_unit, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -310296,23 +285558,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [90534] = 8, + [86281] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1881), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(5861), 1, - anon_sym_DOT, - STATE(2871), 1, + ACTIONS(5627), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(2608), 1, sym_comment, - STATE(2974), 1, - aux_sym_cell_path_repeat1, - STATE(3138), 1, - sym_path, - STATE(3142), 1, - sym_cell_path, - ACTIONS(1879), 46, + ACTIONS(5533), 49, anon_sym_true, anon_sym_false, anon_sym_null, @@ -310320,14 +285577,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -310342,6 +285599,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -310359,51 +285619,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [90604] = 8, - ACTIONS(3), 1, + [86348] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1885), 1, - sym__entry_separator, - ACTIONS(5861), 1, - anon_sym_DOT, - STATE(2872), 1, + STATE(2609), 1, sym_comment, - STATE(2974), 1, - aux_sym_cell_path_repeat1, - STATE(3138), 1, - sym_path, - STATE(3145), 1, - sym_cell_path, - ACTIONS(1883), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(1060), 11, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -310412,6 +285636,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(1062), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -310420,23 +285678,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [90674] = 5, + [86411] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5760), 1, - aux_sym__immediate_decimal_token2, - STATE(2873), 1, + STATE(2610), 1, sym_comment, - ACTIONS(1589), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1052), 11, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -310445,33 +285695,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1591), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(1054), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -310480,23 +285737,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [90738] = 9, + [86474] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1776), 1, - sym__table_head_separator, - ACTIONS(5888), 1, - anon_sym_DOT, - STATE(2864), 1, - sym_cell_path, - STATE(2874), 1, + STATE(2611), 1, sym_comment, - STATE(5525), 1, - aux_sym_cell_path_repeat1, - STATE(5711), 1, - sym_path, - ACTIONS(5832), 14, + ACTIONS(1565), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -310510,7 +285760,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5886), 32, + aux_sym__unquoted_in_list_token2, + ACTIONS(1567), 34, anon_sym_true, anon_sym_false, anon_sym_null, @@ -310523,14 +285774,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -310543,22 +285796,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [90810] = 8, + [86537] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1897), 1, + ACTIONS(1495), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1788), 1, + anon_sym_LPAREN2, + ACTIONS(1794), 1, sym__entry_separator, - ACTIONS(5861), 1, - anon_sym_DOT, - STATE(2875), 1, + ACTIONS(5629), 1, + anon_sym_DOT_DOT2, + STATE(2612), 1, sym_comment, - STATE(2974), 1, - aux_sym_cell_path_repeat1, - STATE(3138), 1, - sym_path, - STATE(3156), 1, - sym_cell_path, - ACTIONS(1895), 46, + ACTIONS(5631), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1786), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -310605,51 +285859,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [90880] = 8, - ACTIONS(3), 1, + [86608] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1749), 1, - sym__entry_separator, - ACTIONS(5861), 1, - anon_sym_DOT, - STATE(2876), 1, + STATE(2613), 1, sym_comment, - STATE(2974), 1, - aux_sym_cell_path_repeat1, - STATE(3138), 1, - sym_path, - STATE(3159), 1, - sym_cell_path, - ACTIONS(1747), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + ACTIONS(1639), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -310658,28 +285881,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [90950] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5890), 1, - anon_sym_DOT, - ACTIONS(5892), 1, - aux_sym__immediate_decimal_token2, - STATE(2877), 1, - sym_comment, - ACTIONS(1591), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1589), 47, + aux_sym__unquoted_in_list_token2, + ACTIONS(1641), 34, anon_sym_true, anon_sym_false, anon_sym_null, @@ -310692,31 +285896,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_filesize_unit, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -310725,18 +285918,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [91016] = 6, + [86671] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5894), 1, + ACTIONS(5633), 1, anon_sym_DOT, - ACTIONS(5896), 1, + ACTIONS(5635), 1, aux_sym__immediate_decimal_token2, - STATE(2878), 1, + STATE(2614), 1, sym_comment, - ACTIONS(1589), 17, + ACTIONS(1643), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -310754,7 +285945,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1591), 32, + aux_sym__unquoted_in_list_token2, + ACTIONS(1645), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -310787,22 +285979,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [91082] = 8, + [86738] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1826), 1, - sym__entry_separator, - ACTIONS(5861), 1, - anon_sym_DOT, - STATE(2879), 1, + STATE(2615), 1, sym_comment, - STATE(2974), 1, - aux_sym_cell_path_repeat1, - STATE(3080), 1, - sym_cell_path, - STATE(3138), 1, - sym_path, - ACTIONS(1824), 46, + ACTIONS(1645), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1643), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -310816,6 +286003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -310849,51 +286037,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [91152] = 8, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token2, + [86801] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1857), 1, - sym__entry_separator, - ACTIONS(5861), 1, + ACTIONS(5637), 1, anon_sym_DOT, - STATE(2880), 1, - sym_comment, - STATE(2974), 1, - aux_sym_cell_path_repeat1, - STATE(3082), 1, - sym_cell_path, - STATE(3138), 1, + STATE(2590), 1, sym_path, - ACTIONS(1855), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + STATE(2600), 1, + aux_sym_cell_path_repeat1, + STATE(2616), 1, + sym_comment, + ACTIONS(1017), 11, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -310902,6 +286061,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(1019), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -310910,23 +286100,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [91222] = 8, + [86870] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1798), 1, + ACTIONS(1947), 1, sym__entry_separator, - ACTIONS(5861), 1, + ACTIONS(5639), 1, anon_sym_DOT, - STATE(2881), 1, + STATE(2617), 1, sym_comment, - STATE(2974), 1, + STATE(2788), 1, aux_sym_cell_path_repeat1, - STATE(3083), 1, + STATE(2882), 1, sym_cell_path, - STATE(3138), 1, + STATE(2924), 1, sym_path, - ACTIONS(1796), 46, + ACTIONS(1945), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -310973,22 +286162,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [91292] = 8, + [86940] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1810), 1, - sym__entry_separator, - ACTIONS(5861), 1, - anon_sym_DOT, - STATE(2882), 1, + STATE(2618), 1, sym_comment, - STATE(2974), 1, - aux_sym_cell_path_repeat1, - STATE(3084), 1, - sym_cell_path, - STATE(3138), 1, - sym_path, - ACTIONS(1808), 46, + ACTIONS(2261), 3, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2259), 48, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym_unquoted_token4, + [87002] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5641), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5643), 1, + aux_sym__immediate_decimal_token2, + STATE(2619), 1, + sym_comment, + ACTIONS(1633), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1631), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -311035,105 +286279,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [91362] = 29, + aux_sym__unquoted_in_list_token2, + [87068] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3229), 1, + STATE(2620), 1, + sym_comment, + ACTIONS(5044), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(5042), 45, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, aux_sym__val_number_decimal_token1, - ACTIONS(3231), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3233), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3235), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3239), 1, - aux_sym_record_entry_token1, - ACTIONS(3241), 1, - aux_sym_unquoted_token1, - ACTIONS(4256), 1, - anon_sym_DOT_DOT, - ACTIONS(4260), 1, anon_sym_DQUOTE, - ACTIONS(5871), 1, - anon_sym_LPAREN, - ACTIONS(5873), 1, - anon_sym_DOLLAR, - ACTIONS(5875), 1, - sym_val_date, - ACTIONS(5877), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5879), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(2158), 1, - sym__str_double_quotes, - STATE(2657), 1, - sym__inter_double_quotes, - STATE(2672), 1, - sym__inter_single_quotes, - STATE(2883), 1, - sym_comment, - STATE(6029), 1, - sym__val_number_decimal, - STATE(7765), 1, - sym__unquoted_anonymous_prefix, - STATE(7919), 1, - sym_val_bool, - STATE(8049), 1, - sym__val_range, - ACTIONS(3213), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4258), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4262), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5869), 3, + [87130] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2621), 1, + sym_comment, + ACTIONS(5048), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, + ACTIONS(5046), 45, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - STATE(1697), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2505), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2507), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [91474] = 8, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [87192] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1822), 1, - sym__entry_separator, - ACTIONS(5861), 1, + ACTIONS(5645), 1, anon_sym_DOT, - STATE(2884), 1, + ACTIONS(5647), 1, + aux_sym__immediate_decimal_token2, + STATE(2622), 1, sym_comment, - STATE(2974), 1, - aux_sym_cell_path_repeat1, - STATE(3085), 1, - sym_cell_path, - STATE(3138), 1, - sym_path, - ACTIONS(1820), 46, + ACTIONS(1645), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1643), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -311180,17 +286455,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [91544] = 4, + aux_sym__unquoted_in_list_token2, + [87258] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(2885), 1, + ACTIONS(1967), 1, + sym__table_head_separator, + ACTIONS(5651), 1, + anon_sym_DOT, + STATE(2623), 1, sym_comment, - ACTIONS(1021), 18, - anon_sym__, + STATE(2654), 1, + sym_cell_path, + STATE(6566), 1, + aux_sym_cell_path_repeat1, + STATE(6721), 1, + sym_path, + ACTIONS(5593), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -311203,57 +286485,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1023), 33, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [91606] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1745), 1, - sym__entry_separator, - ACTIONS(5861), 1, - anon_sym_DOT, - STATE(2886), 1, - sym_comment, - STATE(2974), 1, - aux_sym_cell_path_repeat1, - STATE(3086), 1, - sym_cell_path, - STATE(3138), 1, - sym_path, - ACTIONS(1741), 46, + aux_sym__unquoted_in_list_token1, + ACTIONS(5649), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -311266,116 +286499,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [91676] = 30, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3229), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3231), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3233), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3235), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3239), 1, - aux_sym_record_entry_token1, - ACTIONS(3241), 1, - aux_sym_unquoted_token1, - ACTIONS(4228), 1, - anon_sym_DOLLAR, - ACTIONS(4256), 1, - anon_sym_DOT_DOT, - ACTIONS(4260), 1, - anon_sym_DQUOTE, - ACTIONS(5875), 1, - sym_val_date, - ACTIONS(5898), 1, - anon_sym_LPAREN, - STATE(1686), 1, - sym__inter_single_quotes, - STATE(1688), 1, - sym__inter_double_quotes, - STATE(2158), 1, - sym__str_double_quotes, - STATE(2887), 1, - sym_comment, - STATE(6029), 1, - sym__val_number_decimal, - STATE(6765), 1, - sym_unquoted, - STATE(7765), 1, - sym__unquoted_anonymous_prefix, - STATE(7919), 1, - sym_val_bool, - STATE(8049), 1, - sym__val_range, - ACTIONS(3213), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4258), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4262), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5869), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(6764), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(2505), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2507), 9, - anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -311384,22 +286519,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [91790] = 8, + [87330] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1901), 1, - sym__entry_separator, - ACTIONS(5861), 1, - anon_sym_DOT, - STATE(2888), 1, + ACTIONS(5556), 1, + aux_sym__immediate_decimal_token2, + STATE(2624), 1, sym_comment, - STATE(2974), 1, - aux_sym_cell_path_repeat1, - STATE(3090), 1, - sym_cell_path, - STATE(3138), 1, - sym_path, - ACTIONS(1899), 46, + ACTIONS(1645), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1643), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -311413,6 +286544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -311446,22 +286578,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [91860] = 8, + [87394] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1833), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(5861), 1, - anon_sym_DOT, - STATE(2889), 1, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(2625), 1, sym_comment, - STATE(2974), 1, - aux_sym_cell_path_repeat1, - STATE(3093), 1, - sym_cell_path, - STATE(3138), 1, - sym_path, - ACTIONS(1831), 46, + ACTIONS(5533), 49, anon_sym_true, anon_sym_false, anon_sym_null, @@ -311469,14 +286595,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -311491,6 +286617,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -311508,22 +286637,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [91930] = 8, + [87458] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1837), 1, - sym__entry_separator, - ACTIONS(5861), 1, - anon_sym_DOT, - STATE(2890), 1, + ACTIONS(5653), 1, + aux_sym__immediate_decimal_token2, + STATE(2626), 1, sym_comment, - STATE(2974), 1, - aux_sym_cell_path_repeat1, - STATE(3097), 1, - sym_cell_path, - STATE(3138), 1, - sym_path, - ACTIONS(1835), 46, + ACTIONS(1707), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1705), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -311537,6 +286662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -311570,51 +286696,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [92000] = 8, - ACTIONS(3), 1, + [87522] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1841), 1, - sym__entry_separator, - ACTIONS(5861), 1, - anon_sym_DOT, - STATE(2891), 1, + STATE(2627), 1, sym_comment, - STATE(2974), 1, - aux_sym_cell_path_repeat1, - STATE(3098), 1, - sym_cell_path, - STATE(3138), 1, - sym_path, - ACTIONS(1839), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(1044), 11, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -311623,6 +286713,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(1046), 40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -311631,20 +286754,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [92070] = 4, - ACTIONS(247), 1, + [87584] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2892), 1, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(2628), 1, sym_comment, - ACTIONS(5131), 6, + ACTIONS(2297), 3, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2293), 47, aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(5129), 45, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -311652,10 +286774,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -311676,34 +286801,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + [87648] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2241), 1, + aux_sym_unquoted_token4, + STATE(2629), 1, + sym_comment, + ACTIONS(1078), 3, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [92132] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2893), 1, - sym_comment, - ACTIONS(986), 7, + ACTIONS(1076), 47, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, + anon_sym_true, + anon_sym_false, + anon_sym_null, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(988), 44, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + [87712] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2513), 1, + sym__entry_separator, + STATE(2630), 1, + sym_comment, + ACTIONS(2511), 50, + aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -311711,10 +286888,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -311735,12 +286915,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + anon_sym_RBRACK, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -311748,19 +286930,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [92194] = 4, + [87774] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2894), 1, + ACTIONS(5655), 1, + anon_sym_DOT, + ACTIONS(5657), 1, + aux_sym__immediate_decimal_token2, + STATE(2631), 1, sym_comment, - ACTIONS(5135), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + ACTIONS(1643), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1645), 32, + anon_sym_true, + anon_sym_false, + anon_sym_null, aux_sym_cmd_identifier_token38, - ACTIONS(5133), 45, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [87840] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + STATE(2632), 1, + sym_comment, + ACTIONS(2247), 3, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2243), 47, + aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -311768,10 +287010,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -311792,35 +287037,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + [87904] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + STATE(2633), 1, + sym_comment, + ACTIONS(2253), 3, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [92256] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5562), 1, - aux_sym_unquoted_token2, - STATE(2895), 1, - sym_comment, - ACTIONS(1525), 6, + ACTIONS(2251), 47, aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1537), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -311828,10 +287069,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -311852,9 +287096,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -311862,36 +287108,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [92320] = 5, - ACTIONS(247), 1, + [87968] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5900), 1, - aux_sym__immediate_decimal_token2, - STATE(2896), 1, + ACTIONS(1013), 1, + sym__entry_separator, + ACTIONS(5639), 1, + anon_sym_DOT, + STATE(2634), 1, sym_comment, - ACTIONS(1648), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1650), 32, + STATE(2788), 1, + aux_sym_cell_path_repeat1, + STATE(2924), 1, + sym_path, + STATE(2955), 1, + sym_cell_path, + ACTIONS(1011), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -311904,41 +287136,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [92384] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2897), 1, - sym_comment, - ACTIONS(1953), 18, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -311947,33 +287161,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1955), 33, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -311982,15 +287169,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [92446] = 4, + aux_sym__unquoted_in_list_token1, + [88038] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2898), 1, + STATE(2635), 1, sym_comment, - ACTIONS(1943), 18, - anon_sym__, + ACTIONS(1040), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -312005,21 +287193,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1945), 33, + aux_sym__unquoted_in_list_token1, + ACTIONS(1042), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, @@ -312040,22 +287228,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [92508] = 5, - ACTIONS(247), 1, + [88100] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5902), 1, - sym__newline, - STATE(2899), 2, + ACTIONS(5552), 1, + sym__entry_separator, + STATE(2603), 1, + aux_sym__multiple_types_repeat1, + STATE(2636), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1755), 6, + ACTIONS(5548), 49, aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1757), 43, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -312063,10 +287246,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -312087,9 +287273,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, aux_sym__val_number_decimal_token1, @@ -312099,103 +287287,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [92572] = 30, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3229), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3231), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3233), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3235), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3241), 1, - aux_sym_unquoted_token1, - ACTIONS(3269), 1, - aux_sym_record_entry_token1, - ACTIONS(4228), 1, - anon_sym_DOLLAR, - ACTIONS(4256), 1, - anon_sym_DOT_DOT, - ACTIONS(4260), 1, - anon_sym_DQUOTE, - ACTIONS(5875), 1, - sym_val_date, - ACTIONS(5898), 1, - anon_sym_LPAREN, - STATE(1686), 1, - sym__inter_single_quotes, - STATE(1688), 1, - sym__inter_double_quotes, - STATE(2158), 1, - sym__str_double_quotes, - STATE(2900), 1, - sym_comment, - STATE(6029), 1, - sym__val_number_decimal, - STATE(6765), 1, - sym_unquoted, - STATE(7765), 1, - sym__unquoted_anonymous_prefix, - STATE(7919), 1, - sym_val_bool, - STATE(8049), 1, - sym__val_range, - ACTIONS(3213), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4258), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4262), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5869), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(6764), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(2505), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2507), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [92686] = 6, + [88164] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5905), 1, - anon_sym_DOT_DOT2, - STATE(2901), 1, + STATE(2637), 1, sym_comment, - ACTIONS(5907), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2066), 17, - anon_sym__, + ACTIONS(1044), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -312210,21 +287310,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2072), 31, + aux_sym__unquoted_in_list_token1, + ACTIONS(1046), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -312243,78 +287345,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [92752] = 6, + [88226] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5909), 1, - anon_sym_DOT_DOT2, - STATE(2902), 1, + ACTIONS(5659), 1, + anon_sym_LBRACK2, + STATE(2638), 1, sym_comment, - ACTIONS(5911), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1972), 17, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1978), 31, + ACTIONS(2303), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2307), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [92818] = 5, + [88290] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5830), 1, - aux_sym__immediate_decimal_token2, - STATE(2903), 1, + STATE(2639), 1, sym_comment, - ACTIONS(1591), 3, + ACTIONS(1058), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1589), 47, + ACTIONS(1056), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -312329,6 +287428,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -312362,80 +287462,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [92882] = 7, + [88352] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5796), 1, - anon_sym_DOT, - STATE(2904), 1, + ACTIONS(5661), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5663), 1, + aux_sym__immediate_decimal_token2, + STATE(2640), 1, sym_comment, - STATE(2908), 1, - aux_sym_cell_path_repeat1, - STATE(3050), 1, - sym_path, - ACTIONS(951), 15, - anon_sym__, + ACTIONS(1631), 17, anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(953), 33, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [92950] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5913), 1, anon_sym_DOT_DOT2, - STATE(2905), 1, - sym_comment, - ACTIONS(5915), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1960), 17, - anon_sym__, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -312450,21 +287488,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1966), 31, + aux_sym__unquoted_in_list_token1, + ACTIONS(1633), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -312483,12 +287522,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [93016] = 4, + [88418] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2906), 1, + STATE(2641), 1, sym_comment, - ACTIONS(966), 18, + ACTIONS(1048), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT, @@ -312507,7 +287546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(968), 33, + ACTIONS(1050), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -312541,12 +287580,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [93078] = 4, + [88480] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2907), 1, + ACTIONS(5665), 1, + anon_sym_QMARK2, + STATE(2642), 1, sym_comment, - ACTIONS(976), 18, + ACTIONS(1034), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT, @@ -312565,7 +287606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(978), 33, + ACTIONS(1036), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -312578,7 +287619,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, @@ -312599,23 +287639,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [93140] = 6, + [88544] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5917), 1, - anon_sym_DOT, - STATE(3050), 1, - sym_path, - STATE(2908), 2, + STATE(2643), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(955), 15, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1040), 11, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -312624,33 +287656,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(957), 33, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1042), 40, sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -312659,139 +287697,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [93206] = 4, + [88606] = 32, ACTIONS(247), 1, anon_sym_POUND, - STATE(2909), 1, - sym_comment, - ACTIONS(962), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + ACTIONS(2834), 1, anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(964), 33, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(2844), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2846), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2984), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(2986), 1, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(2994), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2996), 1, aux_sym__val_number_decimal_token2, + ACTIONS(2998), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3000), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, + ACTIONS(3004), 1, anon_sym_DQUOTE, + ACTIONS(3012), 1, + anon_sym_LBRACK, + ACTIONS(5669), 1, + anon_sym_null, + ACTIONS(5671), 1, + aux_sym_ctrl_match_token1, + ACTIONS(5673), 1, + anon_sym_DOT_DOT, + ACTIONS(5677), 1, + sym_val_date, + STATE(2644), 1, + sym_comment, + STATE(2907), 1, + sym__val_number, + STATE(5345), 1, + sym__str_double_quotes, + STATE(5628), 1, + sym__val_number_decimal, + STATE(5808), 1, + sym_val_variable, + STATE(6539), 1, + sym__inter_single_quotes, + STATE(6540), 1, + sym__inter_double_quotes, + STATE(6545), 1, + sym_expr_parenthesized, + STATE(6838), 1, + sym_block, + ACTIONS(2836), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3006), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [93268] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5920), 1, - aux_sym__immediate_decimal_token2, - STATE(2910), 1, - sym_comment, - ACTIONS(1650), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1648), 47, + ACTIONS(5667), 2, anon_sym_true, anon_sym_false, - anon_sym_null, + ACTIONS(5675), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(6923), 2, + sym_val_range, + sym__value, + ACTIONS(2832), 6, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [93332] = 8, + STATE(6275), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [88724] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1893), 1, + ACTIONS(1833), 1, sym__entry_separator, - ACTIONS(5861), 1, + ACTIONS(5639), 1, anon_sym_DOT, - STATE(2911), 1, + STATE(2645), 1, sym_comment, - STATE(2974), 1, + STATE(2788), 1, aux_sym_cell_path_repeat1, - STATE(3138), 1, + STATE(2924), 1, sym_path, - STATE(3154), 1, + STATE(2925), 1, sym_cell_path, - ACTIONS(1891), 46, + ACTIONS(1829), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -312838,69 +287845,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [93402] = 28, + [88794] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3229), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3231), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3233), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3235), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5690), 1, - anon_sym_DQUOTE, - ACTIONS(5875), 1, - sym_val_date, - ACTIONS(5924), 1, - anon_sym_LPAREN, - ACTIONS(5926), 1, - anon_sym_DOLLAR, - ACTIONS(5928), 1, - anon_sym_DOT_DOT, - ACTIONS(5932), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5934), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5936), 1, - aux_sym_unquoted_token1, - STATE(2709), 1, - sym__str_double_quotes, - STATE(2741), 1, - sym__inter_single_quotes, - STATE(2742), 1, - sym__inter_double_quotes, - STATE(2912), 1, + STATE(2646), 1, sym_comment, - STATE(6148), 1, - sym__val_number_decimal, - STATE(7735), 1, - sym__unquoted_anonymous_prefix, - STATE(7919), 1, - sym_val_bool, - STATE(7928), 1, - sym__val_range, - ACTIONS(3213), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5692), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5930), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5922), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(1820), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2505), 8, + ACTIONS(1048), 11, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -312909,102 +287862,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2507), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [93511] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2913), 1, - sym_comment, - ACTIONS(2263), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2265), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1050), 40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [93572] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5938), 1, + anon_sym_in, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_DOT, - STATE(2914), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [88856] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2647), 1, sym_comment, - STATE(3031), 1, - aux_sym_cell_path_repeat1, - STATE(3206), 1, - sym_path, - STATE(3296), 1, - sym_cell_path, - ACTIONS(1847), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1849), 32, + ACTIONS(1062), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1060), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -313017,18 +287925,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -313037,17 +287960,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [93641] = 5, + aux_sym__unquoted_in_list_token1, + [88918] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5892), 1, - aux_sym__immediate_decimal_token2, - STATE(2915), 1, + STATE(2648), 1, sym_comment, - ACTIONS(1591), 2, - anon_sym_LPAREN2, + ACTIONS(1054), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1589), 47, + ACTIONS(1052), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -313061,6 +287984,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -313094,191 +288019,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [93704] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2916), 1, - sym_comment, - ACTIONS(2371), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2373), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [93765] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2917), 1, - sym_comment, - ACTIONS(2295), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2297), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [93826] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2918), 1, - sym_comment, - ACTIONS(2379), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2381), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [93887] = 4, + [88980] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2919), 1, + STATE(2649), 1, sym_comment, - ACTIONS(1839), 6, + ACTIONS(1056), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1841), 44, + anon_sym_DOT, + ACTIONS(1058), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -313323,21 +288077,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93948] = 7, + [89042] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5942), 1, - anon_sym_RBRACK, - ACTIONS(5944), 1, - anon_sym_DOT_DOT2, - ACTIONS(5948), 1, + ACTIONS(1837), 1, sym__entry_separator, - STATE(2920), 1, + ACTIONS(5639), 1, + anon_sym_DOT, + STATE(2650), 1, sym_comment, - ACTIONS(5946), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5940), 45, + STATE(2788), 1, + aux_sym_cell_path_repeat1, + STATE(2915), 1, + sym_cell_path, + STATE(2924), 1, + sym_path, + ACTIONS(1835), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -313345,6 +288100,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -313383,297 +288139,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [94015] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2921), 1, - sym_comment, - ACTIONS(2383), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2385), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [94076] = 4, - ACTIONS(247), 1, + [89112] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2922), 1, + ACTIONS(1841), 1, + sym__entry_separator, + ACTIONS(5639), 1, + anon_sym_DOT, + STATE(2651), 1, sym_comment, - ACTIONS(2326), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2328), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [94137] = 4, - ACTIONS(247), 1, - anon_sym_POUND, + STATE(2788), 1, + aux_sym_cell_path_repeat1, STATE(2923), 1, - sym_comment, - ACTIONS(2336), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2338), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [94198] = 4, - ACTIONS(247), 1, - anon_sym_POUND, + sym_cell_path, STATE(2924), 1, - sym_comment, - ACTIONS(1855), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1857), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + sym_path, + ACTIONS(1839), 46, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [94259] = 28, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3229), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - ACTIONS(3231), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3233), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3235), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3241), 1, - aux_sym_unquoted_token1, - ACTIONS(4256), 1, - anon_sym_DOT_DOT, - ACTIONS(4260), 1, - anon_sym_DQUOTE, - ACTIONS(5871), 1, - anon_sym_LPAREN, - ACTIONS(5873), 1, - anon_sym_DOLLAR, - ACTIONS(5875), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - ACTIONS(5877), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5879), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(2158), 1, - sym__str_double_quotes, - STATE(2657), 1, - sym__inter_double_quotes, - STATE(2672), 1, - sym__inter_single_quotes, - STATE(2925), 1, - sym_comment, - STATE(6029), 1, - sym__val_number_decimal, - STATE(7765), 1, - sym__unquoted_anonymous_prefix, - STATE(7919), 1, - sym_val_bool, - STATE(8049), 1, - sym__val_range, - ACTIONS(3213), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4258), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4262), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5869), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(1697), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2505), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -313682,8 +288192,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2507), 9, - anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -313692,18 +288200,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [94368] = 6, + aux_sym__unquoted_in_list_token1, + [89182] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5950), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5952), 1, - aux_sym__immediate_decimal_token2, - STATE(2926), 1, + ACTIONS(5679), 1, + anon_sym_QMARK2, + STATE(2652), 1, sym_comment, - ACTIONS(1569), 15, - anon_sym__, + ACTIONS(1028), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -313716,33 +288226,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1571), 33, + aux_sym__unquoted_in_list_token1, + ACTIONS(1030), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [89246] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1939), 1, + sym__entry_separator, + ACTIONS(5639), 1, + anon_sym_DOT, + STATE(2653), 1, + sym_comment, + STATE(2788), 1, + aux_sym_cell_path_repeat1, + STATE(2921), 1, + sym_cell_path, + STATE(2924), 1, + sym_path, + ACTIONS(1937), 46, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -313751,19 +288321,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [94433] = 4, + aux_sym__unquoted_in_list_token1, + [89316] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2927), 1, + STATE(2654), 1, sym_comment, - ACTIONS(2332), 6, + ACTIONS(1879), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2334), 44, + ACTIONS(1881), 45, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -313808,76 +288379,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94494] = 4, - ACTIONS(247), 1, + sym__table_head_separator, + [89378] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2928), 1, + ACTIONS(1849), 1, + sym__entry_separator, + ACTIONS(5639), 1, + anon_sym_DOT, + STATE(2655), 1, sym_comment, - ACTIONS(1525), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1537), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + STATE(2788), 1, + aux_sym_cell_path_repeat1, + STATE(2869), 1, + sym_cell_path, + STATE(2924), 1, + sym_path, + ACTIONS(1847), 46, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94555] = 4, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [89448] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2929), 1, + ACTIONS(5681), 1, + anon_sym_EQ2, + STATE(2656), 1, sym_comment, - ACTIONS(2389), 6, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2391), 44, + ACTIONS(4914), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -313922,183 +288501,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94616] = 29, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(115), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(117), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3229), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3231), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3233), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3235), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3279), 1, - anon_sym_DOLLAR, - ACTIONS(5875), 1, - sym_val_date, - ACTIONS(5928), 1, - anon_sym_DOT_DOT, - ACTIONS(5936), 1, - aux_sym_unquoted_token1, - ACTIONS(5954), 1, - anon_sym_LPAREN, - STATE(2144), 1, - sym__str_double_quotes, - STATE(2607), 1, - sym__inter_single_quotes, - STATE(2626), 1, - sym__inter_double_quotes, - STATE(2930), 1, - sym_comment, - STATE(6148), 1, - sym__val_number_decimal, - STATE(7000), 1, - sym_unquoted, - STATE(7735), 1, - sym__unquoted_anonymous_prefix, - STATE(7919), 1, - sym_val_bool, - STATE(7928), 1, - sym__val_range, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3213), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5930), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5922), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(6994), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(2505), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2507), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [94727] = 29, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3229), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3231), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3233), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3235), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3241), 1, - aux_sym_unquoted_token1, - ACTIONS(4228), 1, - anon_sym_DOLLAR, - ACTIONS(4256), 1, - anon_sym_DOT_DOT, - ACTIONS(4260), 1, - anon_sym_DQUOTE, - ACTIONS(5875), 1, - sym_val_date, - ACTIONS(5898), 1, - anon_sym_LPAREN, - STATE(1686), 1, - sym__inter_single_quotes, - STATE(1688), 1, - sym__inter_double_quotes, - STATE(2158), 1, - sym__str_double_quotes, - STATE(2931), 1, - sym_comment, - STATE(6029), 1, - sym__val_number_decimal, - STATE(6765), 1, - sym_unquoted, - STATE(7765), 1, - sym__unquoted_anonymous_prefix, - STATE(7919), 1, - sym_val_bool, - STATE(8049), 1, - sym__val_range, - ACTIONS(3213), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4258), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4262), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5869), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(6764), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(2505), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2507), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [94838] = 6, + [89512] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2072), 1, + ACTIONS(1853), 1, sym__entry_separator, - ACTIONS(5956), 1, - anon_sym_DOT_DOT2, - STATE(2932), 1, + ACTIONS(5639), 1, + anon_sym_DOT, + STATE(2657), 1, sym_comment, - ACTIONS(5958), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2066), 46, + STATE(2788), 1, + aux_sym_cell_path_repeat1, + STATE(2874), 1, + sym_cell_path, + STATE(2924), 1, + sym_path, + ACTIONS(1851), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -314121,233 +288539,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [94903] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5960), 1, - anon_sym_DOT, - ACTIONS(5962), 1, - aux_sym__immediate_decimal_token2, - STATE(2933), 1, - sym_comment, - ACTIONS(1473), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1475), 46, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [94968] = 28, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3229), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3231), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3233), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3235), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5690), 1, - anon_sym_DQUOTE, - ACTIONS(5875), 1, - sym_val_date, - ACTIONS(5924), 1, - anon_sym_LPAREN, - ACTIONS(5926), 1, - anon_sym_DOLLAR, - ACTIONS(5928), 1, - anon_sym_DOT_DOT, - ACTIONS(5932), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5934), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5936), 1, - aux_sym_unquoted_token1, - STATE(2709), 1, - sym__str_double_quotes, - STATE(2741), 1, - sym__inter_single_quotes, - STATE(2742), 1, - sym__inter_double_quotes, - STATE(2934), 1, - sym_comment, - STATE(6148), 1, - sym__val_number_decimal, - STATE(7735), 1, - sym__unquoted_anonymous_prefix, - STATE(7919), 1, - sym_val_bool, - STATE(7928), 1, - sym__val_range, - ACTIONS(3213), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5692), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5930), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5922), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(1816), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2505), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2507), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [95077] = 28, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3229), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3231), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3233), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3235), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3241), 1, - aux_sym_unquoted_token1, - ACTIONS(4256), 1, - anon_sym_DOT_DOT, - ACTIONS(4260), 1, - anon_sym_DQUOTE, - ACTIONS(5871), 1, - anon_sym_LPAREN, - ACTIONS(5873), 1, - anon_sym_DOLLAR, - ACTIONS(5875), 1, - sym_val_date, - ACTIONS(5877), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5879), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(2158), 1, - sym__str_double_quotes, - STATE(2657), 1, - sym__inter_double_quotes, - STATE(2672), 1, - sym__inter_single_quotes, - STATE(2935), 1, - sym_comment, - STATE(6029), 1, - sym__val_number_decimal, - STATE(7765), 1, - sym__unquoted_anonymous_prefix, - STATE(7919), 1, - sym_val_bool, - STATE(8049), 1, - sym__val_range, - ACTIONS(3213), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4258), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4262), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5869), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(1714), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2505), 8, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -314356,8 +288554,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2507), 9, - anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -314366,19 +288562,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [95186] = 4, + aux_sym__unquoted_in_list_token1, + [89582] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2936), 1, + ACTIONS(5399), 1, + aux_sym_unquoted_token2, + STATE(2658), 1, sym_comment, - ACTIONS(2352), 6, + ACTIONS(1575), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2354), 44, + ACTIONS(1587), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -314423,49 +288622,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95247] = 7, - ACTIONS(3), 1, + [89646] = 29, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1008), 1, - sym__entry_separator, - ACTIONS(5944), 1, - anon_sym_DOT_DOT2, - ACTIONS(5966), 1, - anon_sym_RBRACK, - STATE(2937), 1, - sym_comment, - ACTIONS(5946), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5964), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + ACTIONS(3213), 1, + aux_sym_record_entry_token1, + ACTIONS(3263), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3265), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3267), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3269), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, + ACTIONS(3700), 1, anon_sym_DQUOTE, + ACTIONS(3704), 1, + aux_sym_unquoted_token1, + ACTIONS(4091), 1, + anon_sym_DOT_DOT, + ACTIONS(5685), 1, + anon_sym_LPAREN, + ACTIONS(5687), 1, + anon_sym_DOLLAR, + ACTIONS(5689), 1, + sym_val_date, + ACTIONS(5691), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5693), 1, + anon_sym_DOLLAR_DQUOTE, + STATE(1972), 1, + sym__str_double_quotes, + STATE(2463), 1, + sym__inter_single_quotes, + STATE(2464), 1, + sym__inter_double_quotes, + STATE(2659), 1, + sym_comment, + STATE(5847), 1, + sym__val_number_decimal, + STATE(7502), 1, + sym__unquoted_anonymous_prefix, + STATE(7703), 1, + sym_val_bool, + STATE(7774), 1, + sym__val_range, + ACTIONS(3243), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3702), 2, sym__str_single_quotes, sym__str_back_ticks, + ACTIONS(4093), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5683), 3, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + STATE(1518), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2573), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -314474,6 +288695,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(2575), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -314482,78 +288705,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [95314] = 5, + [89758] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5969), 1, - aux_sym__immediate_decimal_token2, - STATE(2938), 1, + STATE(2660), 1, sym_comment, - ACTIONS(1648), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1650), 32, + ACTIONS(2443), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2445), 45, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [95377] = 4, + sym__table_head_separator, + [89820] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2939), 1, + STATE(2661), 1, sym_comment, - ACTIONS(2344), 6, + ACTIONS(1060), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2346), 44, + anon_sym_DOT, + ACTIONS(1062), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -314598,17 +288821,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95438] = 6, + [89882] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5971), 1, - anon_sym_DOT, - ACTIONS(5973), 1, - aux_sym__immediate_decimal_token2, - STATE(2940), 1, + STATE(2662), 1, sym_comment, - ACTIONS(1589), 15, - anon_sym__, + ACTIONS(1345), 15, + anon_sym_DOLLAR, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -314622,8 +288841,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1591), 33, + aux_sym__unquoted_in_list_token1, + ACTIONS(1349), 36, anon_sym_true, anon_sym_false, anon_sym_null, @@ -314631,14 +288850,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -314649,6 +288868,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -314657,153 +288879,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [95503] = 8, + [89944] = 32, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1525), 1, - anon_sym_DASH, - ACTIONS(4934), 1, - anon_sym_DOT_DOT2, - ACTIONS(5975), 1, - sym_filesize_unit, - ACTIONS(5977), 1, - sym_duration_unit, - STATE(2941), 1, - sym_comment, - ACTIONS(4936), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1537), 44, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, + ACTIONS(2834), 1, + anon_sym_0b, + ACTIONS(2844), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2846), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2984), 1, + anon_sym_LPAREN, + ACTIONS(2986), 1, + anon_sym_DOLLAR, + ACTIONS(2994), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2996), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2998), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3000), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3004), 1, + anon_sym_DQUOTE, + ACTIONS(3012), 1, + anon_sym_LBRACK, + ACTIONS(5669), 1, + anon_sym_null, + ACTIONS(5671), 1, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [95572] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5938), 1, - anon_sym_DOT, - STATE(2942), 1, - sym_comment, - STATE(3031), 1, - aux_sym_cell_path_repeat1, - STATE(3206), 1, - sym_path, - STATE(3243), 1, - sym_cell_path, - ACTIONS(945), 14, + ACTIONS(5673), 1, anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, + ACTIONS(5677), 1, + sym_val_date, + STATE(2663), 1, + sym_comment, + STATE(2907), 1, + sym__val_number, + STATE(5345), 1, + sym__str_double_quotes, + STATE(5628), 1, + sym__val_number_decimal, + STATE(5808), 1, + sym_val_variable, + STATE(5894), 1, + sym_expr_parenthesized, + STATE(6539), 1, + sym__inter_single_quotes, + STATE(6540), 1, + sym__inter_double_quotes, + STATE(7291), 1, + sym_block, + ACTIONS(2836), 2, anon_sym_0o, anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(947), 32, + ACTIONS(3006), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5667), 2, anon_sym_true, anon_sym_false, - anon_sym_null, + ACTIONS(5675), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(7292), 2, + sym_val_range, + sym__value, + ACTIONS(2832), 6, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(6275), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [90062] = 32, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2844), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2846), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2986), 1, anon_sym_DOLLAR, + ACTIONS(3004), 1, + anon_sym_DQUOTE, + ACTIONS(5669), 1, + anon_sym_null, + ACTIONS(5671), 1, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + ACTIONS(5677), 1, + sym_val_date, + ACTIONS(5697), 1, + anon_sym_LBRACK, + ACTIONS(5699), 1, + anon_sym_LPAREN, + ACTIONS(5701), 1, + anon_sym_DOT_DOT, + ACTIONS(5705), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5707), 1, aux_sym__val_number_decimal_token2, + ACTIONS(5709), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5711), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, + ACTIONS(5713), 1, + anon_sym_0b, + STATE(2664), 1, + sym_comment, + STATE(5345), 1, + sym__str_double_quotes, + STATE(5358), 1, + sym__val_number_decimal, + STATE(5794), 1, + sym_val_variable, + STATE(5863), 1, + sym_expr_parenthesized, + STATE(6539), 1, + sym__inter_single_quotes, + STATE(6540), 1, + sym__inter_double_quotes, + STATE(6838), 1, + sym_block, + STATE(6882), 1, + sym__val_number, + ACTIONS(3006), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [95641] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2943), 1, - sym_comment, - ACTIONS(1589), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + ACTIONS(5667), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5703), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, + ACTIONS(5715), 2, anon_sym_0o, anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1591), 32, + STATE(6923), 2, + sym_val_range, + sym__value, + ACTIONS(5695), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(6275), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [90180] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1857), 1, + sym__entry_separator, + ACTIONS(5639), 1, + anon_sym_DOT, + STATE(2665), 1, + sym_comment, + STATE(2788), 1, + aux_sym_cell_path_repeat1, + STATE(2906), 1, + sym_cell_path, + STATE(2924), 1, + sym_path, + ACTIONS(1855), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -314816,18 +289079,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -314836,19 +289112,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [95702] = 4, + aux_sym__unquoted_in_list_token1, + [90250] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2944), 1, + STATE(2666), 1, sym_comment, - ACTIONS(2251), 6, + ACTIONS(1052), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2253), 44, + anon_sym_DOT, + ACTIONS(1054), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -314893,83 +289171,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95763] = 4, - ACTIONS(3), 1, + [90312] = 29, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2945), 1, - sym_comment, - ACTIONS(1984), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1982), 47, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + ACTIONS(3215), 1, + aux_sym_record_entry_token1, + ACTIONS(3263), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3265), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3267), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3269), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, + ACTIONS(3700), 1, anon_sym_DQUOTE, + ACTIONS(3704), 1, + aux_sym_unquoted_token1, + ACTIONS(4091), 1, + anon_sym_DOT_DOT, + ACTIONS(5685), 1, + anon_sym_LPAREN, + ACTIONS(5687), 1, + anon_sym_DOLLAR, + ACTIONS(5689), 1, + sym_val_date, + ACTIONS(5691), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5693), 1, + anon_sym_DOLLAR_DQUOTE, + STATE(1972), 1, + sym__str_double_quotes, + STATE(2463), 1, + sym__inter_single_quotes, + STATE(2464), 1, + sym__inter_double_quotes, + STATE(2667), 1, + sym_comment, + STATE(5847), 1, + sym__val_number_decimal, + STATE(7502), 1, + sym__unquoted_anonymous_prefix, + STATE(7703), 1, + sym_val_bool, + STATE(7774), 1, + sym__val_range, + ACTIONS(3243), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3702), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [95824] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1429), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5979), 1, - anon_sym_DOT_DOT2, - STATE(2946), 1, - sym_comment, - ACTIONS(5981), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1690), 16, - anon_sym_DOT_DOT, + ACTIONS(4093), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(5683), 3, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + STATE(1518), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2573), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -314978,30 +289244,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1698), 30, - anon_sym_true, - anon_sym_false, + ACTIONS(2575), 9, anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -315010,19 +289254,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [95891] = 6, + [90424] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1941), 1, + ACTIONS(1861), 1, sym__entry_separator, - ACTIONS(5983), 1, - anon_sym_DOT_DOT2, - STATE(2947), 1, + ACTIONS(5639), 1, + anon_sym_DOT, + STATE(2668), 1, sym_comment, - ACTIONS(5985), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1935), 46, + STATE(2788), 1, + aux_sym_cell_path_repeat1, + STATE(2867), 1, + sym_cell_path, + STATE(2924), 1, + sym_path, + ACTIONS(1859), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -315069,46 +289316,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [95956] = 4, - ACTIONS(3), 1, + [90494] = 30, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2948), 1, - sym_comment, - ACTIONS(1955), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1953), 47, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + ACTIONS(3215), 1, + aux_sym_record_entry_token1, + ACTIONS(3263), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3265), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3267), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3269), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, + ACTIONS(3700), 1, anon_sym_DQUOTE, + ACTIONS(3704), 1, + aux_sym_unquoted_token1, + ACTIONS(3991), 1, + anon_sym_DOLLAR, + ACTIONS(4091), 1, + anon_sym_DOT_DOT, + ACTIONS(5689), 1, + sym_val_date, + ACTIONS(5717), 1, + anon_sym_LPAREN, + STATE(1708), 1, + sym__inter_single_quotes, + STATE(1709), 1, + sym__inter_double_quotes, + STATE(1972), 1, + sym__str_double_quotes, + STATE(2669), 1, + sym_comment, + STATE(5847), 1, + sym__val_number_decimal, + STATE(6108), 1, + sym_unquoted, + STATE(7502), 1, + sym__unquoted_anonymous_prefix, + STATE(7703), 1, + sym_val_bool, + STATE(7774), 1, + sym__val_range, + ACTIONS(3243), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3702), 2, sym__str_single_quotes, sym__str_back_ticks, + ACTIONS(4093), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5683), 3, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + STATE(6100), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(2573), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -315117,6 +289390,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(2575), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -315125,78 +289400,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [96017] = 8, - ACTIONS(247), 1, + [90608] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5938), 1, + ACTIONS(1959), 1, + sym__entry_separator, + ACTIONS(5639), 1, anon_sym_DOT, - STATE(2949), 1, + ACTIONS(5721), 1, + anon_sym_RBRACK, + STATE(2670), 1, sym_comment, - STATE(3031), 1, + STATE(2788), 1, aux_sym_cell_path_repeat1, - STATE(3206), 1, + STATE(2924), 1, sym_path, - STATE(3307), 1, + STATE(2953), 1, sym_cell_path, - ACTIONS(1871), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1873), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [96086] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2950), 1, - sym_comment, - ACTIONS(1945), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1943), 47, + ACTIONS(5719), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -315204,13 +289425,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -315244,35 +289463,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [96147] = 8, - ACTIONS(247), 1, + [90680] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5938), 1, + ACTIONS(1865), 1, + sym__entry_separator, + ACTIONS(5639), 1, anon_sym_DOT, - STATE(2951), 1, + STATE(2671), 1, sym_comment, - STATE(3031), 1, + STATE(2788), 1, aux_sym_cell_path_repeat1, - STATE(3206), 1, - sym_path, - STATE(3311), 1, + STATE(2881), 1, sym_cell_path, - ACTIONS(1875), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1877), 32, + STATE(2924), 1, + sym_path, + ACTIONS(1863), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -315285,106 +289491,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [96216] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5938), 1, - anon_sym_DOT, - STATE(2952), 1, - sym_comment, - STATE(3031), 1, - aux_sym_cell_path_repeat1, - STATE(3206), 1, - sym_path, - STATE(3247), 1, - sym_cell_path, - ACTIONS(1879), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1881), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [96285] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5938), 1, - anon_sym_DOT, - STATE(2953), 1, - sym_comment, - STATE(3031), 1, - aux_sym_cell_path_repeat1, - STATE(3206), 1, - sym_path, - STATE(3242), 1, - sym_cell_path, - ACTIONS(1883), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -315393,32 +289516,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1885), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -315427,17 +289524,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [96354] = 5, + aux_sym__unquoted_in_list_token1, + [90750] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5987), 1, - aux_sym__immediate_decimal_token2, - STATE(2954), 1, - sym_comment, - ACTIONS(1650), 2, - anon_sym_LPAREN2, + ACTIONS(1951), 1, sym__entry_separator, - ACTIONS(1648), 47, + ACTIONS(5639), 1, + anon_sym_DOT, + STATE(2672), 1, + sym_comment, + STATE(2788), 1, + aux_sym_cell_path_repeat1, + STATE(2891), 1, + sym_cell_path, + STATE(2924), 1, + sym_path, + ACTIONS(1949), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -315484,146 +289587,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [96417] = 8, + [90820] = 30, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5938), 1, - anon_sym_DOT, - STATE(2955), 1, - sym_comment, - STATE(3031), 1, - aux_sym_cell_path_repeat1, - STATE(3206), 1, - sym_path, - STATE(3250), 1, - sym_cell_path, - ACTIONS(1891), 14, - anon_sym_DOT_DOT, + ACTIONS(3213), 1, + aux_sym_record_entry_token1, + ACTIONS(3263), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1893), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + ACTIONS(3265), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3267), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3269), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, + ACTIONS(3700), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [96486] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5989), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5991), 1, - aux_sym__immediate_decimal_token2, - STATE(2956), 1, - sym_comment, - ACTIONS(1481), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1483), 46, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [96551] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5938), 1, - anon_sym_DOT, - STATE(2957), 1, - sym_comment, - STATE(3031), 1, - aux_sym_cell_path_repeat1, - STATE(3206), 1, - sym_path, - STATE(3251), 1, - sym_cell_path, - ACTIONS(1895), 14, + ACTIONS(3704), 1, + aux_sym_unquoted_token1, + ACTIONS(3991), 1, + anon_sym_DOLLAR, + ACTIONS(4091), 1, anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(5689), 1, + sym_val_date, + ACTIONS(5717), 1, + anon_sym_LPAREN, + STATE(1708), 1, + sym__inter_single_quotes, + STATE(1709), 1, + sym__inter_double_quotes, + STATE(1972), 1, + sym__str_double_quotes, + STATE(2673), 1, + sym_comment, + STATE(5847), 1, + sym__val_number_decimal, + STATE(6108), 1, + sym_unquoted, + STATE(7502), 1, + sym__unquoted_anonymous_prefix, + STATE(7703), 1, + sym_val_bool, + STATE(7774), 1, + sym__val_range, + ACTIONS(3243), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3702), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4093), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5683), 3, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + STATE(6100), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(2573), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -315632,8 +289661,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1897), 32, + ACTIONS(2575), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [90934] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1869), 1, + sym__entry_separator, + ACTIONS(5639), 1, + anon_sym_DOT, + STATE(2674), 1, + sym_comment, + STATE(2788), 1, + aux_sym_cell_path_repeat1, + STATE(2886), 1, + sym_cell_path, + STATE(2924), 1, + sym_path, + ACTIONS(1867), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -315646,18 +289699,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -315666,92 +289732,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [96620] = 4, + aux_sym__unquoted_in_list_token1, + [91004] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2958), 1, + STATE(2675), 1, sym_comment, - ACTIONS(990), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(992), 32, + ACTIONS(5040), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(5038), 45, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [96681] = 8, - ACTIONS(247), 1, + [91066] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5938), 1, + ACTIONS(1873), 1, + sym__entry_separator, + ACTIONS(5639), 1, anon_sym_DOT, - STATE(2959), 1, + STATE(2676), 1, sym_comment, - STATE(3031), 1, + STATE(2788), 1, aux_sym_cell_path_repeat1, - STATE(3206), 1, + STATE(2924), 1, sym_path, - STATE(3252), 1, + STATE(2927), 1, sym_cell_path, - ACTIONS(1747), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1749), 32, + ACTIONS(1871), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -315764,18 +289819,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -315784,35 +289852,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [96750] = 8, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [91136] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5938), 1, + ACTIONS(1877), 1, + sym__entry_separator, + ACTIONS(5639), 1, anon_sym_DOT, - STATE(2960), 1, + STATE(2677), 1, sym_comment, - STATE(3031), 1, + STATE(2788), 1, aux_sym_cell_path_repeat1, - STATE(3206), 1, - sym_path, - STATE(3253), 1, + STATE(2897), 1, sym_cell_path, - ACTIONS(1824), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1826), 32, + STATE(2924), 1, + sym_path, + ACTIONS(1875), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -315825,18 +289881,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -315845,35 +289914,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [96819] = 8, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [91206] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5938), 1, + ACTIONS(1971), 1, + sym__entry_separator, + ACTIONS(5639), 1, anon_sym_DOT, - STATE(2961), 1, + STATE(2678), 1, sym_comment, - STATE(3031), 1, + STATE(2788), 1, aux_sym_cell_path_repeat1, - STATE(3206), 1, - sym_path, - STATE(3254), 1, + STATE(2916), 1, sym_cell_path, - ACTIONS(1855), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1857), 32, + STATE(2924), 1, + sym_path, + ACTIONS(1969), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -315886,18 +289943,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -315906,35 +289976,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [96888] = 8, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [91276] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5938), 1, + ACTIONS(1892), 1, + sym__entry_separator, + ACTIONS(5639), 1, anon_sym_DOT, - STATE(2962), 1, + STATE(2679), 1, sym_comment, - STATE(3031), 1, + STATE(2788), 1, aux_sym_cell_path_repeat1, - STATE(3206), 1, - sym_path, - STATE(3255), 1, + STATE(2878), 1, sym_cell_path, - ACTIONS(1796), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1798), 32, + STATE(2924), 1, + sym_path, + ACTIONS(1890), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -315947,18 +290005,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -315967,82 +290038,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [96957] = 8, + aux_sym__unquoted_in_list_token1, + [91346] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5938), 1, - anon_sym_DOT, - STATE(2963), 1, + ACTIONS(5724), 1, + sym__newline, + STATE(2680), 2, sym_comment, - STATE(3031), 1, - aux_sym_cell_path_repeat1, - STATE(3206), 1, - sym_path, - STATE(3256), 1, - sym_cell_path, - ACTIONS(1808), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1810), 32, + aux_sym_shebang_repeat1, + ACTIONS(1898), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1900), 43, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [91410] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2681), 1, + sym_comment, + ACTIONS(5036), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, + ACTIONS(5034), 45, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [97026] = 8, + [91472] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5938), 1, - anon_sym_DOT, - STATE(2964), 1, + ACTIONS(5635), 1, + aux_sym__immediate_decimal_token2, + STATE(2682), 1, sym_comment, - STATE(3031), 1, - aux_sym_cell_path_repeat1, - STATE(3206), 1, - sym_path, - STATE(3257), 1, - sym_cell_path, - ACTIONS(1820), 14, + ACTIONS(1643), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -316056,7 +290181,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1822), 32, + aux_sym__unquoted_in_list_token2, + ACTIONS(1645), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -316069,8 +290195,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -316089,21 +290215,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [97095] = 8, + [91536] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5938), 1, - anon_sym_DOT, - STATE(2965), 1, + ACTIONS(5727), 1, + aux_sym__immediate_decimal_token2, + STATE(2683), 1, sym_comment, - STATE(3031), 1, - aux_sym_cell_path_repeat1, - STATE(3206), 1, - sym_path, - STATE(3258), 1, - sym_cell_path, - ACTIONS(1741), 14, + ACTIONS(1705), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -316117,7 +290240,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1745), 32, + aux_sym__unquoted_in_list_token2, + ACTIONS(1707), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -316130,8 +290254,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -316150,35 +290274,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [97164] = 8, - ACTIONS(247), 1, + [91600] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5938), 1, + ACTIONS(1896), 1, + sym__entry_separator, + ACTIONS(5639), 1, anon_sym_DOT, - STATE(2966), 1, + STATE(2684), 1, sym_comment, - STATE(3031), 1, + STATE(2788), 1, aux_sym_cell_path_repeat1, - STATE(3206), 1, - sym_path, - STATE(3259), 1, + STATE(2919), 1, sym_cell_path, - ACTIONS(1899), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1901), 32, + STATE(2924), 1, + sym_path, + ACTIONS(1894), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -316191,18 +290302,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -316211,35 +290335,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [97233] = 8, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [91670] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5938), 1, + ACTIONS(1845), 1, + sym__entry_separator, + ACTIONS(5639), 1, anon_sym_DOT, - STATE(2967), 1, + STATE(2685), 1, sym_comment, - STATE(3031), 1, + STATE(2788), 1, aux_sym_cell_path_repeat1, - STATE(3206), 1, - sym_path, - STATE(3260), 1, + STATE(2866), 1, sym_cell_path, - ACTIONS(1831), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1833), 32, + STATE(2924), 1, + sym_path, + ACTIONS(1843), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -316252,18 +290364,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -316272,19 +290397,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [97302] = 4, + aux_sym__unquoted_in_list_token1, + [91740] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2968), 1, + STATE(2686), 1, sym_comment, - ACTIONS(962), 6, + ACTIONS(2436), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(964), 44, + ACTIONS(2438), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -316329,80 +290455,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97363] = 8, + [91801] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5938), 1, - anon_sym_DOT, - STATE(2969), 1, + STATE(2687), 1, sym_comment, - STATE(3031), 1, - aux_sym_cell_path_repeat1, - STATE(3206), 1, - sym_path, - STATE(3270), 1, - sym_cell_path, - ACTIONS(1839), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1841), 32, + ACTIONS(2364), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2366), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [97432] = 4, + [91862] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2970), 1, + STATE(2688), 1, sym_comment, - ACTIONS(1021), 6, + ACTIONS(1076), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1023), 44, + ACTIONS(1078), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -316447,138 +290569,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97493] = 5, + [91923] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5896), 1, - aux_sym__immediate_decimal_token2, - STATE(2971), 1, + STATE(2689), 1, sym_comment, - ACTIONS(1589), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1591), 32, + ACTIONS(2368), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2370), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [97556] = 8, + [91984] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5938), 1, - anon_sym_DOT, - STATE(2972), 1, + STATE(2690), 1, sym_comment, - STATE(3031), 1, - aux_sym_cell_path_repeat1, - STATE(3206), 1, - sym_path, - STATE(3305), 1, - sym_cell_path, - ACTIONS(5995), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(5993), 32, + ACTIONS(1961), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1963), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [97625] = 4, + [92045] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2973), 1, + STATE(2691), 1, sym_comment, - ACTIONS(1796), 6, + ACTIONS(2355), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1798), 44, + ACTIONS(2357), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -316623,77 +290740,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97686] = 7, - ACTIONS(3), 1, + [92106] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(953), 1, - sym__entry_separator, - ACTIONS(5861), 1, - anon_sym_DOT, - STATE(2974), 1, + STATE(2692), 1, sym_comment, - STATE(2978), 1, - aux_sym_cell_path_repeat1, - STATE(3138), 1, - sym_path, - ACTIONS(951), 46, + ACTIONS(2380), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2382), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [97753] = 5, + [92167] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5997), 1, - sym__newline, - STATE(2975), 2, + ACTIONS(5729), 1, + anon_sym_DOT, + STATE(2693), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1755), 16, - anon_sym_DOLLAR, - anon_sym_DASH, + STATE(2800), 1, + aux_sym_cell_path_repeat1, + STATE(2935), 1, + sym_path, + STATE(3001), 1, + sym_cell_path, + ACTIONS(1937), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -316707,8 +290824,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1757), 32, + aux_sym__unquoted_in_list_token1, + ACTIONS(1939), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -316716,9 +290833,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -316731,8 +290850,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -316741,19 +290858,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [97816] = 6, - ACTIONS(3), 1, + [92236] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1978), 1, - sym__entry_separator, - ACTIONS(6000), 1, - anon_sym_DOT_DOT2, - STATE(2976), 1, + ACTIONS(5729), 1, + anon_sym_DOT, + STATE(2694), 1, sym_comment, - ACTIONS(6002), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1972), 46, + STATE(2800), 1, + aux_sym_cell_path_repeat1, + STATE(2935), 1, + sym_path, + STATE(3050), 1, + sym_cell_path, + ACTIONS(5733), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(5731), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -316766,31 +290899,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -316799,47 +290919,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [97881] = 4, - ACTIONS(3), 1, + [92305] = 28, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2977), 1, - sym_comment, - ACTIONS(1023), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1021), 47, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + ACTIONS(3263), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3265), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3267), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3269), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, + ACTIONS(3700), 1, anon_sym_DQUOTE, + ACTIONS(3704), 1, + aux_sym_unquoted_token1, + ACTIONS(4091), 1, + anon_sym_DOT_DOT, + ACTIONS(5685), 1, + anon_sym_LPAREN, + ACTIONS(5687), 1, + anon_sym_DOLLAR, + ACTIONS(5689), 1, + sym_val_date, + ACTIONS(5691), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5693), 1, + anon_sym_DOLLAR_DQUOTE, + STATE(1972), 1, + sym__str_double_quotes, + STATE(2463), 1, + sym__inter_single_quotes, + STATE(2464), 1, + sym__inter_double_quotes, + STATE(2695), 1, + sym_comment, + STATE(5847), 1, + sym__val_number_decimal, + STATE(7502), 1, + sym__unquoted_anonymous_prefix, + STATE(7703), 1, + sym_val_bool, + STATE(7774), 1, + sym__val_range, + ACTIONS(3243), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3702), 2, sym__str_single_quotes, sym__str_back_ticks, + ACTIONS(4093), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5683), 3, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + STATE(1518), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2573), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -316848,6 +290990,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(2575), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -316856,20 +291000,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [97942] = 6, - ACTIONS(3), 1, + [92414] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(957), 1, - sym__entry_separator, - ACTIONS(6004), 1, - anon_sym_DOT, - STATE(3138), 1, - sym_path, - STATE(2978), 2, + STATE(2696), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(955), 46, + ACTIONS(1056), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1058), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -316882,31 +291037,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -316915,20 +291057,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [98007] = 4, + [92475] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2979), 1, + STATE(2697), 1, sym_comment, - ACTIONS(1747), 6, + ACTIONS(2457), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1749), 44, + ACTIONS(2459), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -316973,31 +291114,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [98068] = 4, - ACTIONS(247), 1, + [92536] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2980), 1, + STATE(2698), 1, sym_comment, - ACTIONS(1569), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1571), 32, + ACTIONS(1633), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1631), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -317010,18 +291136,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -317030,19 +291170,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [98129] = 4, + aux_sym__unquoted_in_list_token1, + [92597] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2981), 1, + STATE(2699), 1, sym_comment, - ACTIONS(3487), 6, + ACTIONS(2392), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(3485), 44, + ACTIONS(2394), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -317087,19 +291228,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [98190] = 4, + [92658] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2982), 1, + STATE(2700), 1, sym_comment, - ACTIONS(1006), 6, + ACTIONS(2396), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1008), 44, + ACTIONS(2398), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -317144,15 +291285,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [98251] = 4, + [92719] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2983), 1, + ACTIONS(5729), 1, + anon_sym_DOT, + STATE(2701), 1, sym_comment, - ACTIONS(966), 16, - anon_sym__, + STATE(2800), 1, + aux_sym_cell_path_repeat1, + STATE(2935), 1, + sym_path, + STATE(3002), 1, + sym_cell_path, + ACTIONS(1945), 14, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -317165,22 +291312,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(968), 34, + aux_sym__unquoted_in_list_token1, + ACTIONS(1947), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -317201,19 +291346,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [98312] = 4, + [92788] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2984), 1, + STATE(2702), 1, sym_comment, - ACTIONS(1273), 6, + ACTIONS(2384), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1277), 44, + ACTIONS(2386), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -317250,7 +291395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -317258,19 +291403,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [98373] = 4, + [92849] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2985), 1, + STATE(2703), 1, sym_comment, - ACTIONS(1770), 6, + ACTIONS(1843), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1772), 44, + ACTIONS(1845), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -317315,19 +291460,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [98434] = 4, + [92910] = 29, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - STATE(2986), 1, + ACTIONS(3263), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3265), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3267), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3269), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3700), 1, + anon_sym_DQUOTE, + ACTIONS(3704), 1, + aux_sym_unquoted_token1, + ACTIONS(3991), 1, + anon_sym_DOLLAR, + ACTIONS(4091), 1, + anon_sym_DOT_DOT, + ACTIONS(5689), 1, + sym_val_date, + ACTIONS(5717), 1, + anon_sym_LPAREN, + STATE(1708), 1, + sym__inter_single_quotes, + STATE(1709), 1, + sym__inter_double_quotes, + STATE(1972), 1, + sym__str_double_quotes, + STATE(2704), 1, + sym_comment, + STATE(5847), 1, + sym__val_number_decimal, + STATE(6108), 1, + sym_unquoted, + STATE(7502), 1, + sym__unquoted_anonymous_prefix, + STATE(7703), 1, + sym_val_bool, + STATE(7774), 1, + sym__val_range, + ACTIONS(3243), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3702), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4093), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5683), 3, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + STATE(6100), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(2573), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2575), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [93021] = 28, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3263), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3265), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3267), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3269), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3700), 1, + anon_sym_DQUOTE, + ACTIONS(3704), 1, + aux_sym_unquoted_token1, + ACTIONS(4091), 1, + anon_sym_DOT_DOT, + ACTIONS(5685), 1, + anon_sym_LPAREN, + ACTIONS(5687), 1, + anon_sym_DOLLAR, + ACTIONS(5689), 1, + sym_val_date, + ACTIONS(5691), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5693), 1, + anon_sym_DOLLAR_DQUOTE, + STATE(1972), 1, + sym__str_double_quotes, + STATE(2463), 1, + sym__inter_single_quotes, + STATE(2464), 1, + sym__inter_double_quotes, + STATE(2705), 1, + sym_comment, + STATE(5847), 1, + sym__val_number_decimal, + STATE(7502), 1, + sym__unquoted_anonymous_prefix, + STATE(7703), 1, + sym_val_bool, + STATE(7774), 1, + sym__val_range, + ACTIONS(3243), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3702), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4093), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5683), 3, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + STATE(1517), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2573), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2575), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [93130] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2706), 1, sym_comment, - ACTIONS(2359), 6, + ACTIONS(2400), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2361), 44, + ACTIONS(2402), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -317372,76 +291680,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [98495] = 4, + [93191] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2987), 1, + STATE(2707), 1, sym_comment, - ACTIONS(962), 16, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(964), 34, + ACTIONS(2404), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2406), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [98556] = 4, + [93252] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2988), 1, + STATE(2708), 1, sym_comment, - ACTIONS(1741), 6, + ACTIONS(1859), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1745), 44, + ACTIONS(1861), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -317486,12 +291794,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [98617] = 4, + [93313] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2989), 1, + ACTIONS(5735), 1, + aux_sym__immediate_decimal_token2, + STATE(2709), 1, sym_comment, - ACTIONS(1648), 18, + ACTIONS(1705), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -317509,8 +291819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1650), 32, + ACTIONS(1707), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -317543,31 +291852,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [98678] = 4, - ACTIONS(247), 1, + [93376] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2990), 1, - sym_comment, - ACTIONS(1721), 18, - anon_sym_DOT_DOT, + ACTIONS(5739), 1, + anon_sym_RBRACK, + ACTIONS(5741), 1, anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1723), 32, + ACTIONS(5745), 1, + sym__entry_separator, + STATE(2710), 1, + sym_comment, + ACTIONS(5743), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5737), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -317575,51 +291874,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [98739] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1719), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(6007), 1, - anon_sym_DOT_DOT2, - STATE(2991), 1, - sym_comment, - ACTIONS(6009), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1709), 16, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -317628,30 +291903,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1717), 30, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -317660,19 +291911,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [98806] = 4, + aux_sym__unquoted_in_list_token1, + [93443] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2992), 1, + STATE(2711), 1, sym_comment, - ACTIONS(2311), 6, + ACTIONS(1867), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2313), 44, + ACTIONS(1869), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -317717,19 +291969,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [98867] = 4, + [93504] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2993), 1, + STATE(2712), 1, sym_comment, - ACTIONS(966), 6, + ACTIONS(1871), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(968), 44, + ACTIONS(1873), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -317774,35 +292026,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [98928] = 8, - ACTIONS(247), 1, + [93565] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5938), 1, - anon_sym_DOT, - STATE(2994), 1, + STATE(2713), 1, sym_comment, - STATE(3031), 1, - aux_sym_cell_path_repeat1, - STATE(3206), 1, - sym_path, - STATE(3302), 1, - sym_cell_path, - ACTIONS(5881), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(6011), 32, + ACTIONS(2135), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(2133), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -317815,18 +292048,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -317835,19 +292082,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [98997] = 4, + aux_sym__unquoted_in_list_token1, + [93626] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2995), 1, + STATE(2714), 1, + sym_comment, + ACTIONS(2408), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2410), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [93687] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2715), 1, sym_comment, - ACTIONS(2311), 6, + ACTIONS(1890), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2313), 44, + ACTIONS(1892), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -317892,16 +292197,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [99058] = 4, + [93748] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2996), 1, + STATE(2716), 1, sym_comment, - ACTIONS(1591), 3, + ACTIONS(2021), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1589), 47, + ACTIONS(2019), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -317949,19 +292254,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [99119] = 4, + [93809] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2997), 1, + STATE(2717), 1, sym_comment, - ACTIONS(6013), 6, + ACTIONS(2412), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(6015), 44, + ACTIONS(2414), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -318006,19 +292311,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [99180] = 4, + [93870] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2998), 1, + STATE(2718), 1, sym_comment, - ACTIONS(3375), 6, + ACTIONS(2416), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(3373), 44, + ACTIONS(2418), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -318063,77 +292368,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [99241] = 5, + [93931] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6017), 1, - sym__newline, - STATE(2999), 2, + STATE(2719), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1755), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1757), 32, + ACTIONS(1894), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1896), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [99304] = 4, + [93992] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3000), 1, + STATE(2720), 1, sym_comment, - ACTIONS(2303), 6, + ACTIONS(1945), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2305), 44, + ACTIONS(1947), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -318178,76 +292482,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [99365] = 4, + [94053] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3001), 1, + STATE(2721), 1, sym_comment, - ACTIONS(986), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(988), 32, + ACTIONS(2420), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2422), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [99426] = 4, + [94114] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3002), 1, + STATE(2722), 1, sym_comment, - ACTIONS(2315), 6, + ACTIONS(2424), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2317), 44, + ACTIONS(2426), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -318292,19 +292596,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [99487] = 4, + [94175] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3003), 1, + STATE(2723), 1, sym_comment, - ACTIONS(2363), 6, + ACTIONS(1949), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2365), 44, + ACTIONS(1951), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -318349,19 +292653,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [99548] = 4, + [94236] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3004), 1, + STATE(2724), 1, sym_comment, - ACTIONS(2367), 6, + ACTIONS(2428), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2369), 44, + ACTIONS(2430), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -318406,19 +292710,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [99609] = 4, + [94297] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3005), 1, + STATE(2725), 1, sym_comment, - ACTIONS(976), 6, + ACTIONS(2432), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(978), 44, + ACTIONS(2434), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -318463,19 +292767,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [99670] = 4, + [94358] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3006), 1, + STATE(2726), 1, sym_comment, - ACTIONS(2348), 6, + ACTIONS(1575), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2350), 44, + ACTIONS(1587), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -318520,16 +292824,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [99731] = 4, + [94419] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3007), 1, + STATE(2727), 1, sym_comment, - ACTIONS(1571), 3, + ACTIONS(2139), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1569), 47, + ACTIONS(2137), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -318577,19 +292881,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [99792] = 6, + [94480] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1966), 1, + ACTIONS(1078), 1, sym__entry_separator, - ACTIONS(6020), 1, + ACTIONS(5741), 1, anon_sym_DOT_DOT2, - STATE(3008), 1, + ACTIONS(5749), 1, + anon_sym_RBRACK, + STATE(2728), 1, sym_comment, - ACTIONS(6022), 2, + ACTIONS(5743), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1960), 46, + ACTIONS(5747), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -318597,7 +292903,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -318636,74 +292941,280 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [99857] = 4, + [94547] = 29, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(115), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(117), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - STATE(3009), 1, + ACTIONS(3225), 1, + anon_sym_DOLLAR, + ACTIONS(3263), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3265), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3267), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3269), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5689), 1, + sym_val_date, + ACTIONS(5754), 1, + anon_sym_LPAREN, + ACTIONS(5756), 1, + anon_sym_DOT_DOT, + ACTIONS(5760), 1, + aux_sym_unquoted_token1, + STATE(1984), 1, + sym__str_double_quotes, + STATE(2404), 1, + sym__inter_single_quotes, + STATE(2407), 1, + sym__inter_double_quotes, + STATE(2729), 1, sym_comment, - ACTIONS(1899), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + STATE(5857), 1, + sym__val_number_decimal, + STATE(6797), 1, + sym_unquoted, + STATE(7653), 1, + sym__val_range, + STATE(7703), 1, + sym_val_bool, + STATE(7724), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(113), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3243), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5758), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5752), 3, aux_sym_cmd_identifier_token38, - ACTIONS(1901), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + STATE(6795), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(2573), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2575), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [94658] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2041), 1, + sym__entry_separator, + ACTIONS(5762), 1, + anon_sym_DOT_DOT2, + STATE(2730), 1, + sym_comment, + ACTIONS(5764), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2035), 46, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [94723] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2731), 1, + sym_comment, + ACTIONS(1707), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1705), 47, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [99918] = 5, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [94784] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6024), 1, - anon_sym_QMARK2, - STATE(3010), 1, + ACTIONS(5729), 1, + anon_sym_DOT, + STATE(2732), 1, sym_comment, - ACTIONS(970), 16, - anon_sym__, + STATE(2800), 1, + aux_sym_cell_path_repeat1, + STATE(2935), 1, + sym_path, + STATE(2987), 1, + sym_cell_path, + ACTIONS(1835), 14, anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1837), 32, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [94853] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5729), 1, anon_sym_DOT, + STATE(2733), 1, + sym_comment, + STATE(2800), 1, + aux_sym_cell_path_repeat1, + STATE(2935), 1, + sym_path, + STATE(2988), 1, + sym_cell_path, + ACTIONS(1839), 14, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -318716,21 +293227,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(972), 33, + aux_sym__unquoted_in_list_token1, + ACTIONS(1841), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -318751,17 +293261,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [99981] = 5, + [94922] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6026), 1, - anon_sym_QMARK2, - STATE(3011), 1, + ACTIONS(5766), 1, + sym__newline, + STATE(2734), 2, sym_comment, - ACTIONS(980), 16, - anon_sym__, + aux_sym_shebang_repeat1, + ACTIONS(1898), 16, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -318775,20 +293286,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(982), 33, + ACTIONS(1900), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -318801,6 +293309,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -318809,19 +293319,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [100044] = 4, + [94985] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3012), 1, + STATE(2735), 1, sym_comment, - ACTIONS(1879), 6, + ACTIONS(2388), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1881), 44, + ACTIONS(2390), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -318866,19 +293376,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [100105] = 4, + [95046] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3013), 1, + STATE(2736), 1, sym_comment, - ACTIONS(2271), 6, + ACTIONS(2372), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2273), 44, + ACTIONS(2374), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -318923,130 +293433,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [100166] = 4, + [95107] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3014), 1, + ACTIONS(5769), 1, + sym__newline, + STATE(2737), 2, sym_comment, - ACTIONS(2241), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2243), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + aux_sym_shebang_repeat1, + ACTIONS(1898), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1900), 32, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [100227] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [95170] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3015), 1, + ACTIONS(5729), 1, + anon_sym_DOT, + STATE(2738), 1, sym_comment, - ACTIONS(2340), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2342), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + STATE(2800), 1, + aux_sym_cell_path_repeat1, + STATE(2935), 1, + sym_path, + STATE(3011), 1, + sym_cell_path, + ACTIONS(1011), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1013), 32, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [100288] = 4, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [95239] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3016), 1, + ACTIONS(2057), 1, + sym__entry_separator, + ACTIONS(5772), 1, + anon_sym_DOT_DOT2, + STATE(2739), 1, sym_comment, - ACTIONS(1650), 3, + ACTIONS(5774), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1648), 47, + ACTIONS(2051), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -319060,7 +293578,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -319094,16 +293611,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [100349] = 4, + [95304] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3017), 1, + STATE(2740), 1, sym_comment, - ACTIONS(1723), 3, + ACTIONS(1757), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1721), 47, + ACTIONS(1755), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -319151,72 +293668,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [100410] = 4, + [95365] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3018), 1, + STATE(2741), 1, sym_comment, - ACTIONS(994), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(996), 32, + ACTIONS(2453), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2455), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [100471] = 4, + [95426] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(3019), 1, + ACTIONS(1806), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5776), 1, + anon_sym_DOT_DOT2, + STATE(2742), 1, sym_comment, - ACTIONS(976), 16, - anon_sym__, + ACTIONS(5778), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1796), 16, anon_sym_DOT_DOT, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -319229,24 +293753,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(978), 34, + aux_sym__unquoted_in_list_token1, + ACTIONS(1804), 30, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -319265,19 +293785,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [100532] = 4, + [95493] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3020), 1, + STATE(2743), 1, sym_comment, - ACTIONS(1835), 6, + ACTIONS(5780), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1837), 44, + ACTIONS(5782), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -319322,35 +293842,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [100593] = 8, - ACTIONS(247), 1, + [95554] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5938), 1, - anon_sym_DOT, - STATE(3021), 1, + ACTIONS(5784), 1, + aux_sym__immediate_decimal_token2, + STATE(2744), 1, sym_comment, - STATE(3031), 1, - aux_sym_cell_path_repeat1, - STATE(3206), 1, - sym_path, - STATE(3264), 1, - sym_cell_path, - ACTIONS(1835), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1837), 32, + ACTIONS(1707), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1705), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -319363,18 +293865,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -319383,16 +293898,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [100662] = 4, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [95617] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3022), 1, + ACTIONS(5729), 1, + anon_sym_DOT, + STATE(2745), 1, sym_comment, - ACTIONS(1953), 17, + STATE(2800), 1, + aux_sym_cell_path_repeat1, + STATE(2935), 1, + sym_path, + STATE(3047), 1, + sym_cell_path, + ACTIONS(5719), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -319406,7 +293928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1955), 32, + ACTIONS(5786), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -319419,8 +293941,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -319439,78 +293961,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [100722] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - ACTIONS(2949), 1, - anon_sym_DOT_DOT2, - ACTIONS(4817), 1, - aux_sym_unquoted_token2, - ACTIONS(6028), 1, - sym_filesize_unit, - ACTIONS(6030), 1, - sym_duration_unit, - STATE(3023), 1, - sym_comment, - STATE(7615), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2951), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1537), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [100794] = 4, + [95686] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3024), 1, + ACTIONS(5729), 1, + anon_sym_DOT, + STATE(2746), 1, sym_comment, - ACTIONS(1721), 17, + STATE(2800), 1, + aux_sym_cell_path_repeat1, + STATE(2935), 1, + sym_path, + STATE(3000), 1, + sym_cell_path, + ACTIONS(1894), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -319524,7 +293989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1723), 32, + ACTIONS(1896), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -319537,8 +294002,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -319557,18 +294022,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [100854] = 6, + [95755] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2125), 1, - anon_sym_LPAREN2, - ACTIONS(2127), 1, - sym__entry_separator, - ACTIONS(2129), 1, - aux_sym__unquoted_in_list_token2, - STATE(3025), 1, + STATE(2747), 1, sym_comment, - ACTIONS(2123), 46, + ACTIONS(1066), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1064), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -319582,6 +294045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -319615,72 +294079,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [100918] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6032), 1, - aux_sym__immediate_decimal_token2, - STATE(3026), 1, - sym_comment, - ACTIONS(1519), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1521), 46, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [100980] = 4, + [95816] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3027), 1, + ACTIONS(5729), 1, + anon_sym_DOT, + STATE(2748), 1, sym_comment, - ACTIONS(986), 16, - anon_sym__, + STATE(2800), 1, + aux_sym_cell_path_repeat1, + STATE(2935), 1, + sym_path, + STATE(2989), 1, + sym_cell_path, + ACTIONS(1843), 14, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -319693,21 +294106,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(988), 33, + aux_sym__unquoted_in_list_token1, + ACTIONS(1845), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -319728,15 +294140,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [101040] = 4, + [95885] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3028), 1, + STATE(2749), 1, sym_comment, - ACTIONS(990), 16, - anon_sym__, - anon_sym_DOT_DOT, + ACTIONS(2376), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2378), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [95946] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5729), 1, anon_sym_DOT, + STATE(2750), 1, + sym_comment, + STATE(2800), 1, + aux_sym_cell_path_repeat1, + STATE(2935), 1, + sym_path, + STATE(2990), 1, + sym_cell_path, + ACTIONS(1847), 14, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -319749,21 +294224,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(992), 33, + aux_sym__unquoted_in_list_token1, + ACTIONS(1849), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -319784,16 +294258,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [101100] = 5, + [96015] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(972), 1, + ACTIONS(2049), 1, sym__entry_separator, - ACTIONS(6034), 1, - anon_sym_QMARK2, - STATE(3029), 1, + ACTIONS(5788), 1, + anon_sym_DOT_DOT2, + STATE(2751), 1, sym_comment, - ACTIONS(970), 47, + ACTIONS(5790), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2043), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -319807,7 +294284,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -319841,16 +294317,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [101162] = 5, - ACTIONS(3), 1, + [96080] = 28, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(982), 1, - sym__entry_separator, - ACTIONS(6036), 1, - anon_sym_QMARK2, - STATE(3030), 1, + ACTIONS(3263), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3265), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3267), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3269), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5470), 1, + anon_sym_DQUOTE, + ACTIONS(5689), 1, + sym_val_date, + ACTIONS(5756), 1, + anon_sym_DOT_DOT, + ACTIONS(5760), 1, + aux_sym_unquoted_token1, + ACTIONS(5792), 1, + anon_sym_LPAREN, + ACTIONS(5794), 1, + anon_sym_DOLLAR, + ACTIONS(5796), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5798), 1, + anon_sym_DOLLAR_DQUOTE, + STATE(2477), 1, + sym__inter_single_quotes, + STATE(2478), 1, + sym__inter_double_quotes, + STATE(2480), 1, + sym__str_double_quotes, + STATE(2752), 1, + sym_comment, + STATE(5857), 1, + sym__val_number_decimal, + STATE(7653), 1, + sym__val_range, + STATE(7703), 1, + sym_val_bool, + STATE(7724), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3243), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5472), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5758), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5752), 3, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + STATE(1650), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2573), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2575), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [96189] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1495), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5800), 1, + anon_sym_DOT_DOT2, + STATE(2753), 1, sym_comment, - ACTIONS(980), 47, + ACTIONS(5802), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1786), 16, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1794), 30, anon_sym_true, anon_sym_false, anon_sym_null, @@ -319863,24 +294440,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [96256] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2754), 1, + sym_comment, + ACTIONS(1060), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -319889,6 +294481,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1062), 32, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -319897,19 +294515,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [101224] = 7, + [96317] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5938), 1, + ACTIONS(5729), 1, anon_sym_DOT, - STATE(3031), 1, + STATE(2755), 1, sym_comment, - STATE(3044), 1, + STATE(2800), 1, aux_sym_cell_path_repeat1, - STATE(3206), 1, + STATE(2935), 1, sym_path, - ACTIONS(951), 14, + STATE(2991), 1, + sym_cell_path, + ACTIONS(1851), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -319924,7 +294543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(953), 32, + ACTIONS(1853), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -319957,18 +294576,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [101290] = 6, + [96386] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1571), 1, + ACTIONS(2067), 1, sym__entry_separator, - ACTIONS(6038), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6040), 1, - aux_sym__immediate_decimal_token2, - STATE(3032), 1, + ACTIONS(5804), 1, + anon_sym_DOT_DOT2, + STATE(2756), 1, sym_comment, - ACTIONS(1569), 46, + ACTIONS(5806), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2061), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -320015,18 +294635,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [101354] = 6, + [96451] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6044), 1, - anon_sym_DOT_DOT2, - STATE(3033), 1, + STATE(2757), 1, sym_comment, - ACTIONS(6046), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5940), 16, + ACTIONS(1052), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -320042,7 +294659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6042), 30, + ACTIONS(1054), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -320055,6 +294672,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -320073,20 +294692,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [101418] = 6, + [96512] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6044), 1, - anon_sym_DOT_DOT2, - STATE(3034), 1, + ACTIONS(5729), 1, + anon_sym_DOT, + STATE(2758), 1, sym_comment, - ACTIONS(6046), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5964), 16, + STATE(2800), 1, + aux_sym_cell_path_repeat1, + STATE(2935), 1, + sym_path, + STATE(2992), 1, + sym_cell_path, + ACTIONS(1855), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -320100,7 +294720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6048), 30, + ACTIONS(1857), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -320113,6 +294733,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -320131,76 +294753,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [101482] = 6, - ACTIONS(247), 1, + [96581] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6050), 1, - anon_sym_DOT, - ACTIONS(6052), 1, + ACTIONS(5647), 1, aux_sym__immediate_decimal_token2, - STATE(3035), 1, + STATE(2759), 1, sym_comment, - ACTIONS(1473), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1475), 45, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [101546] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1711), 1, + ACTIONS(1645), 2, anon_sym_LPAREN2, - ACTIONS(1719), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2087), 1, sym__entry_separator, - STATE(3036), 1, - sym_comment, - ACTIONS(2085), 46, + ACTIONS(1643), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -320247,20 +294810,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [101610] = 6, + aux_sym__unquoted_in_list_token2, + [96644] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6054), 1, - anon_sym_DOT_DOT2, - STATE(3037), 1, + ACTIONS(5729), 1, + anon_sym_DOT, + STATE(2760), 1, sym_comment, - ACTIONS(6056), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2066), 16, + STATE(2800), 1, + aux_sym_cell_path_repeat1, + STATE(2935), 1, + sym_path, + STATE(2993), 1, + sym_cell_path, + ACTIONS(1859), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -320274,7 +294839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2072), 30, + ACTIONS(1861), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -320287,6 +294852,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -320305,20 +294872,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [101674] = 6, + [96713] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6058), 1, - anon_sym_DOT_DOT2, - STATE(3038), 1, + ACTIONS(5729), 1, + anon_sym_DOT, + STATE(2761), 1, sym_comment, - ACTIONS(6060), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1972), 16, + STATE(2800), 1, + aux_sym_cell_path_repeat1, + STATE(2935), 1, + sym_path, + STATE(2994), 1, + sym_cell_path, + ACTIONS(1863), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -320332,7 +294900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1978), 30, + ACTIONS(1865), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -320345,6 +294913,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -320363,24 +294933,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [101738] = 6, - ACTIONS(247), 1, + [96782] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6062), 1, - anon_sym_DOT_DOT2, - STATE(3039), 1, + ACTIONS(1023), 1, + sym__entry_separator, + ACTIONS(5808), 1, + anon_sym_DOT, + STATE(2924), 1, + sym_path, + STATE(2762), 2, sym_comment, - ACTIONS(6064), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1960), 16, + aux_sym_cell_path_repeat1, + ACTIONS(1021), 46, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -320389,108 +294983,257 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1966), 30, + [96847] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2763), 1, + sym_comment, + ACTIONS(1040), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1042), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [96908] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2764), 1, + sym_comment, + ACTIONS(1044), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1046), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [96969] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2765), 1, + sym_comment, + ACTIONS(1064), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1066), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [101802] = 4, + [97030] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3040), 1, + STATE(2766), 1, sym_comment, - ACTIONS(1021), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1023), 32, + ACTIONS(1048), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1050), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [101862] = 6, + [97091] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6066), 1, + ACTIONS(5811), 1, anon_sym_DOT, - ACTIONS(6068), 1, + ACTIONS(5813), 1, aux_sym__immediate_decimal_token2, - STATE(3041), 1, + STATE(2767), 1, sym_comment, - ACTIONS(1473), 3, - sym__newline, + ACTIONS(1497), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1475), 44, + ACTIONS(1499), 46, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -320502,166 +295245,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_LPAREN2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [101926] = 6, + [97156] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6070), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6072), 1, - aux_sym__immediate_decimal_token2, - STATE(3042), 1, + STATE(2768), 1, sym_comment, - ACTIONS(1481), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1483), 44, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LPAREN2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [101990] = 6, - ACTIONS(3), 1, + ACTIONS(4888), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(4886), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [97217] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1711), 1, - anon_sym_LPAREN2, - ACTIONS(1717), 1, - sym__entry_separator, - ACTIONS(1719), 1, - aux_sym__unquoted_in_list_token2, - STATE(3043), 1, + STATE(2769), 1, sym_comment, - ACTIONS(1709), 46, + ACTIONS(1345), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1349), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + sym__newline, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [102054] = 6, + [97278] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6074), 1, + ACTIONS(5729), 1, anon_sym_DOT, - STATE(3206), 1, - sym_path, - STATE(3044), 2, + STATE(2770), 1, sym_comment, + STATE(2800), 1, aux_sym_cell_path_repeat1, - ACTIONS(955), 14, + STATE(2935), 1, + sym_path, + STATE(2995), 1, + sym_cell_path, + ACTIONS(1867), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -320676,7 +295421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(957), 32, + ACTIONS(1869), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -320709,14 +295454,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [102118] = 4, + [97347] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3045), 1, + ACTIONS(5729), 1, + anon_sym_DOT, + STATE(2771), 1, sym_comment, - ACTIONS(1273), 16, - anon_sym_DOLLAR, - anon_sym_DASH, + STATE(2800), 1, + aux_sym_cell_path_repeat1, + STATE(2935), 1, + sym_path, + STATE(2983), 1, + sym_cell_path, + ACTIONS(1949), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -320730,19 +295481,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1277), 33, + aux_sym__unquoted_in_list_token1, + ACTIONS(1951), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -320755,8 +295507,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -320765,47 +295515,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [102178] = 6, - ACTIONS(3), 1, + [97416] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1429), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1692), 1, - anon_sym_LPAREN2, - ACTIONS(1698), 1, - sym__entry_separator, - STATE(3046), 1, + ACTIONS(5729), 1, + anon_sym_DOT, + STATE(2772), 1, sym_comment, - ACTIONS(1690), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + STATE(2800), 1, + aux_sym_cell_path_repeat1, + STATE(2935), 1, + sym_path, + STATE(2996), 1, + sym_cell_path, + ACTIONS(1871), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -320814,27 +295542,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [102242] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2091), 1, - anon_sym_LPAREN2, - ACTIONS(2093), 1, - sym__entry_separator, - ACTIONS(2095), 1, - aux_sym__unquoted_in_list_token4, - STATE(3047), 1, - sym_comment, - ACTIONS(2089), 46, + ACTIONS(1873), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -320847,31 +295556,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -320880,15 +295576,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [102306] = 4, + [97485] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3048), 1, + ACTIONS(5729), 1, + anon_sym_DOT, + STATE(2773), 1, sym_comment, - ACTIONS(1273), 16, - anon_sym_DOLLAR, - anon_sym_DASH, + STATE(2800), 1, + aux_sym_cell_path_repeat1, + STATE(2935), 1, + sym_path, + STATE(2997), 1, + sym_cell_path, + ACTIONS(1875), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -320902,53 +295603,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1277), 33, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [102366] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1457), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2119), 1, - anon_sym_LPAREN2, - ACTIONS(2121), 1, - sym__entry_separator, - STATE(3049), 1, - sym_comment, - ACTIONS(2117), 46, + aux_sym__unquoted_in_list_token1, + ACTIONS(1877), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -320961,31 +295617,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -320994,16 +295637,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [102430] = 4, + [97554] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3050), 1, + STATE(2774), 1, sym_comment, - ACTIONS(994), 16, - anon_sym__, + ACTIONS(1643), 18, anon_sym_DOT_DOT, - anon_sym_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -321016,23 +295659,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(996), 33, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1645), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -321051,18 +295694,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [102490] = 6, + [97615] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2099), 1, - anon_sym_LPAREN2, - ACTIONS(2103), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(2107), 1, - sym__entry_separator, - STATE(3051), 1, + STATE(2775), 1, sym_comment, - ACTIONS(2105), 46, + ACTIONS(1629), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1625), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -321076,6 +295717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -321109,18 +295751,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [102554] = 6, + [97676] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1591), 1, - sym__entry_separator, - ACTIONS(6077), 1, - anon_sym_DOT, - ACTIONS(6079), 1, - aux_sym__immediate_decimal_token2, - STATE(3052), 1, + STATE(2776), 1, sym_comment, - ACTIONS(1589), 46, + ACTIONS(1645), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1643), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -321134,6 +295774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -321167,16 +295808,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [102618] = 5, + [97737] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5973), 1, + STATE(2777), 1, + sym_comment, + ACTIONS(4926), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(4924), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [97798] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5657), 1, aux_sym__immediate_decimal_token2, - STATE(3053), 1, + STATE(2778), 1, sym_comment, - ACTIONS(1589), 15, - anon_sym__, + ACTIONS(1643), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -321189,51 +295889,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1591), 33, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [102680] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2239), 1, - sym__entry_separator, - ACTIONS(6081), 1, - anon_sym_LBRACK2, - STATE(3054), 1, - sym_comment, - ACTIONS(2235), 47, + aux_sym__unquoted_in_list_token1, + ACTIONS(1645), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -321246,32 +295903,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -321280,18 +295923,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [102742] = 5, + [97861] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5962), 1, + ACTIONS(5815), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5817), 1, aux_sym__immediate_decimal_token2, - STATE(3055), 1, + STATE(2779), 1, sym_comment, - ACTIONS(1473), 2, + ACTIONS(1517), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1475), 46, + ACTIONS(1519), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -321338,15 +295982,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [102804] = 4, - ACTIONS(3), 1, + [97926] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3056), 1, + ACTIONS(5729), 1, + anon_sym_DOT, + STATE(2780), 1, sym_comment, - ACTIONS(2133), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(2131), 47, + STATE(2800), 1, + aux_sym_cell_path_repeat1, + STATE(2935), 1, + sym_path, + STATE(2998), 1, + sym_cell_path, + ACTIONS(1969), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1971), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -321359,31 +296023,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -321392,14 +296043,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token4, - [102864] = 4, + [97995] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3057), 1, + STATE(2781), 1, sym_comment, - ACTIONS(1982), 17, + ACTIONS(1631), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -321417,7 +296066,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1984), 32, + aux_sym__unquoted_in_list_token2, + ACTIONS(1633), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -321450,16 +296100,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [102924] = 5, + [98056] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6083), 1, - aux_sym__immediate_decimal_token2, - STATE(3058), 1, + STATE(2782), 1, sym_comment, - ACTIONS(1648), 15, - anon_sym__, + ACTIONS(1705), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -321472,23 +296122,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1650), 33, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1707), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -321507,17 +296157,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [102986] = 6, + [98117] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6085), 1, - anon_sym_DOT, - ACTIONS(6087), 1, - aux_sym__immediate_decimal_token2, - STATE(3059), 1, + STATE(2783), 1, sym_comment, - ACTIONS(1589), 15, + ACTIONS(1755), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -321532,7 +296181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - ACTIONS(1591), 32, + ACTIONS(1757), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -321545,8 +296194,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -321565,20 +296214,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [103050] = 6, + [98178] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6089), 1, - anon_sym_DOT_DOT2, - STATE(3060), 1, + ACTIONS(5729), 1, + anon_sym_DOT, + STATE(2784), 1, sym_comment, - ACTIONS(6091), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1935), 16, + STATE(2800), 1, + aux_sym_cell_path_repeat1, + STATE(2935), 1, + sym_path, + STATE(2986), 1, + sym_cell_path, + ACTIONS(1829), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -321592,7 +296242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1941), 30, + ACTIONS(1833), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -321605,6 +296255,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -321623,16 +296275,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [103114] = 4, + [98247] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3061), 1, + ACTIONS(5729), 1, + anon_sym_DOT, + STATE(2785), 1, sym_comment, - ACTIONS(1943), 17, + STATE(2800), 1, + aux_sym_cell_path_repeat1, + STATE(2935), 1, + sym_path, + STATE(2999), 1, + sym_cell_path, + ACTIONS(1890), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -321646,7 +296303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1945), 32, + ACTIONS(1892), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -321659,8 +296316,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -321679,44 +296336,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [103174] = 4, - ACTIONS(3), 1, + [98316] = 28, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3062), 1, - sym_comment, - ACTIONS(1591), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1589), 47, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + ACTIONS(3263), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3265), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3267), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3269), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, + ACTIONS(5470), 1, anon_sym_DQUOTE, + ACTIONS(5689), 1, + sym_val_date, + ACTIONS(5756), 1, + anon_sym_DOT_DOT, + ACTIONS(5760), 1, + aux_sym_unquoted_token1, + ACTIONS(5792), 1, + anon_sym_LPAREN, + ACTIONS(5794), 1, + anon_sym_DOLLAR, + ACTIONS(5796), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5798), 1, + anon_sym_DOLLAR_DQUOTE, + STATE(2477), 1, + sym__inter_single_quotes, + STATE(2478), 1, + sym__inter_double_quotes, + STATE(2480), 1, + sym__str_double_quotes, + STATE(2786), 1, + sym_comment, + STATE(5857), 1, + sym__val_number_decimal, + STATE(7653), 1, + sym__val_range, + STATE(7703), 1, + sym_val_bool, + STATE(7724), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3243), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5472), 2, sym__str_single_quotes, sym__str_back_ticks, + ACTIONS(5758), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5752), 3, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + STATE(1607), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2573), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -321725,6 +296407,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(2575), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -321733,17 +296417,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [103234] = 4, - ACTIONS(3), 1, + [98425] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3063), 1, + STATE(2787), 1, sym_comment, - ACTIONS(1571), 2, - anon_sym_LPAREN2, + ACTIONS(2364), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2366), 44, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [98486] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1019), 1, sym__entry_separator, - ACTIONS(1569), 47, + ACTIONS(5639), 1, + anon_sym_DOT, + STATE(2762), 1, + aux_sym_cell_path_repeat1, + STATE(2788), 1, + sym_comment, + STATE(2924), 1, + sym_path, + ACTIONS(1017), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -321790,49 +296534,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [103294] = 7, - ACTIONS(3), 1, + [98553] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1008), 1, - sym__entry_separator, - ACTIONS(2081), 1, - anon_sym_LPAREN2, - ACTIONS(2083), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(5966), 1, - anon_sym_RBRACK, - STATE(3064), 1, + STATE(2789), 1, sym_comment, - ACTIONS(5964), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + ACTIONS(1755), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -321841,24 +296556,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [103360] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3065), 1, - sym_comment, - ACTIONS(1650), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1648), 47, + ACTIONS(1757), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -321871,31 +296570,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -321904,17 +296590,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [103420] = 4, + [98613] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3066), 1, - sym_comment, - ACTIONS(1723), 2, + ACTIONS(1798), 1, anon_sym_LPAREN2, + ACTIONS(1804), 1, sym__entry_separator, - ACTIONS(1721), 47, + ACTIONS(1806), 1, + aux_sym__unquoted_in_list_token2, + STATE(2790), 1, + sym_comment, + ACTIONS(1796), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -321961,15 +296648,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [103480] = 4, + [98677] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(968), 1, + ACTIONS(1036), 1, sym__entry_separator, - STATE(3067), 1, + ACTIONS(5819), 1, + anon_sym_QMARK2, + STATE(2791), 1, sym_comment, - ACTIONS(966), 48, + ACTIONS(1034), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -321983,7 +296671,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, - anon_sym_QMARK2, anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -322018,14 +296705,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [103540] = 4, - ACTIONS(3), 1, + [98739] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(978), 1, - sym__entry_separator, - STATE(3068), 1, + STATE(2792), 1, sym_comment, - ACTIONS(976), 48, + ACTIONS(2137), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2139), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -322038,33 +296741,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -322073,15 +296761,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [103600] = 4, + [98799] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(964), 1, - sym__entry_separator, - STATE(3069), 1, + STATE(2793), 1, sym_comment, - ACTIONS(962), 48, + ACTIONS(1645), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1643), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -322095,8 +296783,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -322130,12 +296816,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [103660] = 4, + aux_sym__unquoted_in_list_token2, + [98859] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3070), 1, + STATE(2794), 1, sym_comment, - ACTIONS(1589), 17, + ACTIONS(2019), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -322153,7 +296840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1591), 32, + ACTIONS(2021), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -322186,19 +296873,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [103720] = 6, + [98919] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6093), 1, + ACTIONS(5821), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6095), 1, + ACTIONS(5823), 1, aux_sym__immediate_decimal_token2, - STATE(3071), 1, + STATE(2795), 1, sym_comment, - ACTIONS(1481), 2, + ACTIONS(1517), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1483), 45, + ACTIONS(1519), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -322244,78 +296931,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [103784] = 6, - ACTIONS(247), 1, + [98983] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6097), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6099), 1, - aux_sym__immediate_decimal_token2, - STATE(3072), 1, - sym_comment, - ACTIONS(1481), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1483), 45, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(5827), 1, anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [103848] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3073), 1, + ACTIONS(5829), 1, + anon_sym__, + ACTIONS(5832), 1, + sym__entry_separator, + STATE(2796), 1, sym_comment, - ACTIONS(1569), 17, + STATE(2865), 1, + aux_sym__multiple_types_repeat1, + STATE(7599), 1, + sym_default_arm, + ACTIONS(5825), 44, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -322324,8 +296982,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1571), 32, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym_unquoted_token1, + [99051] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5829), 1, + anon_sym__, + ACTIONS(5832), 1, + sym__entry_separator, + ACTIONS(5834), 1, + anon_sym_RBRACE, + STATE(2797), 1, + sym_comment, + STATE(2865), 1, + aux_sym__multiple_types_repeat1, + STATE(7537), 1, + sym_default_arm, + ACTIONS(5825), 44, anon_sym_true, anon_sym_false, anon_sym_null, @@ -322333,23 +297014,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -322358,32 +297050,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [103908] = 6, - ACTIONS(247), 1, + aux_sym_unquoted_token1, + [99119] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6101), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6103), 1, - aux_sym__immediate_decimal_token2, - STATE(3074), 1, + ACTIONS(1078), 1, + sym__entry_separator, + ACTIONS(2239), 1, + anon_sym_LPAREN2, + ACTIONS(2241), 1, + aux_sym__unquoted_in_list_token4, + ACTIONS(5749), 1, + anon_sym_RBRACK, + STATE(2798), 1, sym_comment, - ACTIONS(1569), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1571), 32, + ACTIONS(5747), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -322391,23 +297072,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -322416,80 +297109,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [103972] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6105), 1, - anon_sym_DOT, - ACTIONS(6107), 1, - aux_sym__immediate_decimal_token2, - STATE(3075), 1, - sym_comment, - ACTIONS(1473), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1475), 45, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [104036] = 8, + aux_sym__unquoted_in_list_token1, + [99185] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5625), 1, - anon_sym_LPAREN2, - ACTIONS(5942), 1, - anon_sym_RBRACK, - ACTIONS(5948), 1, + ACTIONS(5829), 1, + anon_sym__, + ACTIONS(5832), 1, sym__entry_separator, - ACTIONS(6111), 1, - anon_sym_COMMA, - STATE(3076), 1, + ACTIONS(5836), 1, + anon_sym_RBRACE, + STATE(2799), 1, sym_comment, - STATE(7650), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6109), 44, + STATE(2865), 1, + aux_sym__multiple_types_repeat1, + STATE(7602), 1, + sym_default_arm, + ACTIONS(5825), 44, anon_sym_true, anon_sym_false, anon_sym_null, @@ -322533,17 +297169,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [104104] = 4, + aux_sym_unquoted_token1, + [99253] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(3077), 1, + ACTIONS(5729), 1, + anon_sym_DOT, + STATE(2800), 1, sym_comment, - ACTIONS(1648), 17, + STATE(2805), 1, + aux_sym_cell_path_repeat1, + STATE(2935), 1, + sym_path, + ACTIONS(1017), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -322557,7 +297196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1650), 32, + ACTIONS(1019), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -322570,8 +297209,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -322590,18 +297229,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104164] = 6, + [99319] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2099), 1, - anon_sym_LPAREN2, - ACTIONS(2101), 1, + ACTIONS(5829), 1, + anon_sym__, + ACTIONS(5832), 1, sym__entry_separator, - ACTIONS(2103), 1, - aux_sym__unquoted_in_list_token4, - STATE(3078), 1, + ACTIONS(5838), 1, + anon_sym_RBRACE, + STATE(2801), 1, sym_comment, - ACTIONS(2097), 46, + STATE(2865), 1, + aux_sym__multiple_types_repeat1, + STATE(7571), 1, + sym_default_arm, + ACTIONS(5825), 44, anon_sym_true, anon_sym_false, anon_sym_null, @@ -322609,9 +297252,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, @@ -322647,14 +297288,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [104228] = 4, + aux_sym_unquoted_token1, + [99387] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3079), 1, + ACTIONS(5840), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5842), 1, + aux_sym__immediate_decimal_token2, + STATE(2802), 1, sym_comment, - ACTIONS(2085), 15, - anon_sym__, + ACTIONS(1631), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -322668,21 +297312,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2087), 33, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1633), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -322703,14 +297347,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104287] = 4, - ACTIONS(3), 1, + [99451] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1745), 1, - sym__entry_separator, - STATE(3080), 1, + STATE(2803), 1, sym_comment, - ACTIONS(1741), 47, + ACTIONS(1631), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1633), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -322723,24 +297383,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [99511] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2804), 1, + sym_comment, + ACTIONS(1345), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -322749,6 +297424,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1349), 33, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -322757,14 +297459,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [104346] = 4, + [99571] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3081), 1, + ACTIONS(5844), 1, + anon_sym_DOT, + STATE(2935), 1, + sym_path, + STATE(2805), 2, sym_comment, - ACTIONS(1021), 15, - anon_sym__, + aux_sym_cell_path_repeat1, + ACTIONS(1021), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -322778,21 +297483,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1023), 33, + aux_sym__unquoted_in_list_token1, + ACTIONS(1023), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -322813,14 +297517,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104405] = 4, + [99635] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2365), 1, + ACTIONS(1030), 1, sym__entry_separator, - STATE(3082), 1, + ACTIONS(5847), 1, + anon_sym_QMARK2, + STATE(2806), 1, sym_comment, - ACTIONS(2363), 47, + ACTIONS(1028), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -322833,8 +297539,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -322868,14 +297574,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [104464] = 4, + [99697] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2369), 1, + ACTIONS(1042), 1, sym__entry_separator, - STATE(3083), 1, + STATE(2807), 1, sym_comment, - ACTIONS(2367), 47, + ACTIONS(1040), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -322888,8 +297594,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -322923,14 +297630,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [104523] = 4, + [99757] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1901), 1, + ACTIONS(1645), 1, sym__entry_separator, - STATE(3084), 1, + ACTIONS(5849), 1, + anon_sym_DOT, + ACTIONS(5851), 1, + aux_sym__immediate_decimal_token2, + STATE(2808), 1, sym_comment, - ACTIONS(1899), 47, + ACTIONS(1643), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -322943,7 +297654,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -322978,14 +297688,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [104582] = 4, + [99821] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1837), 1, - sym__entry_separator, - STATE(3085), 1, + STATE(2809), 1, sym_comment, - ACTIONS(1835), 47, + ACTIONS(1757), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1755), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -322998,7 +297709,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -323033,14 +297743,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [104641] = 4, + aux_sym__unquoted_in_list_token2, + [99881] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2373), 1, + ACTIONS(1798), 1, + anon_sym_LPAREN2, + ACTIONS(1806), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2162), 1, sym__entry_separator, - STATE(3086), 1, + STATE(2810), 1, sym_comment, - ACTIONS(2371), 47, + ACTIONS(2160), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -323053,7 +297768,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -323088,14 +297802,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [104700] = 4, + [99945] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3087), 1, + STATE(2811), 1, sym_comment, - ACTIONS(2405), 15, - anon_sym__, + ACTIONS(2133), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -323108,23 +297824,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2407), 33, + aux_sym__unquoted_in_list_token1, + ACTIONS(2135), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -323143,13 +297858,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104759] = 4, + [100005] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3088), 1, + ACTIONS(5853), 1, + anon_sym_DOT, + ACTIONS(5855), 1, + aux_sym__immediate_decimal_token2, + STATE(2812), 1, sym_comment, - ACTIONS(2409), 15, - anon_sym__, + ACTIONS(1497), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1499), 44, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [100069] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2813), 1, + sym_comment, + ACTIONS(1345), 16, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -323164,7 +297938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2411), 33, + ACTIONS(1349), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -323174,10 +297948,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -323190,6 +297962,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -323198,53 +297972,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104818] = 4, - ACTIONS(247), 1, + [100129] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3089), 1, - sym_comment, - ACTIONS(2413), 15, + ACTIONS(5829), 1, anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2415), 33, + ACTIONS(5832), 1, + sym__entry_separator, + ACTIONS(5857), 1, + anon_sym_RBRACE, + STATE(2814), 1, + sym_comment, + STATE(2865), 1, + aux_sym__multiple_types_repeat1, + STATE(7610), 1, + sym_default_arm, + ACTIONS(5825), 44, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -323253,14 +298031,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104877] = 4, + aux_sym_unquoted_token1, + [100197] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2381), 1, + ACTIONS(1633), 1, sym__entry_separator, - STATE(3090), 1, + ACTIONS(5859), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5861), 1, + aux_sym__immediate_decimal_token2, + STATE(2815), 1, sym_comment, - ACTIONS(2379), 47, + ACTIONS(1631), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -323273,7 +298056,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -323308,14 +298090,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [104936] = 4, + [100261] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3091), 1, + ACTIONS(5865), 1, + anon_sym_DOT_DOT2, + STATE(2816), 1, sym_comment, - ACTIONS(2417), 15, - anon_sym__, + ACTIONS(5867), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5737), 16, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -323328,23 +298116,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2419), 33, + aux_sym__unquoted_in_list_token1, + ACTIONS(5863), 30, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -323363,14 +298148,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104995] = 4, + [100325] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3092), 1, + ACTIONS(5865), 1, + anon_sym_DOT_DOT2, + STATE(2817), 1, sym_comment, - ACTIONS(2421), 15, - anon_sym__, + ACTIONS(5867), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5747), 16, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -323383,33 +298174,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2423), 33, + aux_sym__unquoted_in_list_token1, + ACTIONS(5869), 30, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [100389] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5829), 1, + anon_sym__, + ACTIONS(5832), 1, + sym__entry_separator, + ACTIONS(5871), 1, anon_sym_RBRACE, + STATE(2818), 1, + sym_comment, + STATE(2865), 1, + aux_sym__multiple_types_repeat1, + STATE(7589), 1, + sym_default_arm, + ACTIONS(5825), 44, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -323418,14 +298265,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105054] = 4, + aux_sym_unquoted_token1, + [100457] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1841), 1, - sym__entry_separator, - STATE(3093), 1, + STATE(2819), 1, sym_comment, - ACTIONS(1839), 47, + ACTIONS(1633), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1631), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -323438,7 +298287,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -323473,18 +298321,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [105113] = 4, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token2, + [100517] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3094), 1, + ACTIONS(1046), 1, + sym__entry_separator, + STATE(2820), 1, sym_comment, - ACTIONS(2425), 15, - anon_sym__, + ACTIONS(1044), 48, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -323493,33 +298369,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2427), 33, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [100577] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2307), 1, + sym__entry_separator, + ACTIONS(5873), 1, + anon_sym_LBRACK2, + STATE(2821), 1, + sym_comment, + ACTIONS(2303), 47, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -323528,14 +298434,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105172] = 4, + aux_sym__unquoted_in_list_token1, + [100639] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3095), 1, + ACTIONS(5875), 1, + anon_sym_DOT_DOT2, + STATE(2822), 1, sym_comment, - ACTIONS(2117), 15, - anon_sym__, + ACTIONS(5877), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2035), 16, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -323548,23 +298461,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2121), 33, + aux_sym__unquoted_in_list_token1, + ACTIONS(2041), 30, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -323583,70 +298493,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105231] = 5, + [100703] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6068), 1, - aux_sym__immediate_decimal_token2, - STATE(3096), 1, - sym_comment, - ACTIONS(1473), 3, - sym__newline, + ACTIONS(5879), 1, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1475), 44, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LPAREN2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + STATE(2823), 1, + sym_comment, + ACTIONS(5881), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [105292] = 4, + ACTIONS(2043), 16, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2049), 30, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [100767] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2385), 1, - sym__entry_separator, - STATE(3097), 1, + STATE(2824), 1, sym_comment, - ACTIONS(2383), 47, + ACTIONS(2261), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(2259), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -323659,7 +298572,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token4, + [100827] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5829), 1, + anon_sym__, + ACTIONS(5832), 1, + sym__entry_separator, + ACTIONS(5883), 1, anon_sym_RBRACE, + STATE(2825), 1, + sym_comment, + STATE(2865), 1, + aux_sym__multiple_types_repeat1, + STATE(7523), 1, + sym_default_arm, + ACTIONS(5825), 44, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym_unquoted_token1, + [100895] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2297), 1, + sym__entry_separator, + ACTIONS(2299), 1, + aux_sym__unquoted_in_list_token4, + STATE(2826), 1, + sym_comment, + ACTIONS(2293), 46, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -323693,15 +298724,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [105351] = 4, + aux_sym__unquoted_in_list_token1, + [100959] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5885), 1, + anon_sym_DOT_DOT2, + STATE(2827), 1, + sym_comment, + ACTIONS(5887), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2051), 16, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2057), 30, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [101023] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2328), 1, + ACTIONS(5829), 1, + anon_sym__, + ACTIONS(5832), 1, sym__entry_separator, - STATE(3098), 1, + ACTIONS(5889), 1, + anon_sym_RBRACE, + STATE(2828), 1, sym_comment, - ACTIONS(2326), 47, + STATE(2865), 1, + aux_sym__multiple_types_repeat1, + STATE(7731), 1, + sym_default_arm, + ACTIONS(5825), 44, anon_sym_true, anon_sym_false, anon_sym_null, @@ -323709,12 +298806,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -323748,17 +298842,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [105410] = 5, + aux_sym_unquoted_token1, + [101091] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6113), 1, - anon_sym_QMARK2, - STATE(3099), 1, + ACTIONS(5891), 1, + anon_sym_DOT_DOT2, + STATE(2829), 1, sym_comment, - ACTIONS(970), 15, + ACTIONS(5893), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2061), 16, anon_sym_DOT_DOT, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -323772,7 +298870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(972), 32, + ACTIONS(2067), 30, anon_sym_true, anon_sym_false, anon_sym_null, @@ -323785,8 +298883,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -323805,16 +298901,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105471] = 5, + [101155] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1591), 1, + ACTIONS(1553), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2220), 1, + anon_sym_LPAREN2, + ACTIONS(2222), 1, sym__entry_separator, - ACTIONS(6079), 1, - aux_sym__immediate_decimal_token2, - STATE(3100), 1, + STATE(2830), 1, sym_comment, - ACTIONS(1589), 46, + ACTIONS(2218), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -323861,17 +298959,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [105532] = 5, + [101219] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6115), 1, - sym__newline, - STATE(3101), 2, + STATE(2831), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1755), 15, - anon_sym_DOLLAR, + ACTIONS(1064), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -323885,7 +298982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1757), 31, + ACTIONS(1066), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -323893,10 +298990,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -323907,8 +299007,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -323917,30 +299015,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105593] = 5, - ACTIONS(247), 1, + [101279] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6118), 1, - anon_sym_QMARK2, - STATE(3102), 1, + ACTIONS(2226), 1, + anon_sym_LPAREN2, + ACTIONS(2228), 1, + sym__entry_separator, + ACTIONS(2230), 1, + aux_sym__unquoted_in_list_token2, + STATE(2832), 1, sym_comment, - ACTIONS(980), 15, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(982), 32, + ACTIONS(2224), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -323953,18 +299039,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -323973,30 +299072,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105654] = 5, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [101343] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6120), 1, - aux_sym__immediate_decimal_token2, - STATE(3103), 1, + ACTIONS(1050), 1, + sym__entry_separator, + STATE(2833), 1, sym_comment, - ACTIONS(1648), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1650), 32, + ACTIONS(1048), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -324009,18 +299093,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -324029,18 +299128,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105715] = 5, + aux_sym__unquoted_in_list_token1, + [101403] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6122), 1, + ACTIONS(5895), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5897), 1, aux_sym__immediate_decimal_token2, - STATE(3104), 1, + STATE(2834), 1, sym_comment, - ACTIONS(1519), 3, + ACTIONS(1517), 3, sym__newline, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1521), 44, + ACTIONS(1519), 44, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -324085,18 +299187,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [105776] = 5, + [101467] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6052), 1, - aux_sym__immediate_decimal_token2, - STATE(3105), 1, - sym_comment, - ACTIONS(1473), 2, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + ACTIONS(4610), 1, anon_sym_DOT_DOT2, + ACTIONS(4618), 1, aux_sym_unquoted_token2, - ACTIONS(1475), 45, - ts_builtin_sym_end, + ACTIONS(5899), 1, + sym_filesize_unit, + ACTIONS(5901), 1, + sym_duration_unit, + STATE(2835), 1, + sym_comment, + STATE(7411), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4612), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1587), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -324108,7 +299219,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN2, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -324137,18 +299249,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [105837] = 4, + [101539] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2419), 1, + ACTIONS(5829), 1, + anon_sym__, + ACTIONS(5832), 1, sym__entry_separator, - STATE(3106), 1, + ACTIONS(5903), 1, + anon_sym_RBRACE, + STATE(2836), 1, sym_comment, - ACTIONS(2417), 47, + STATE(2865), 1, + aux_sym__multiple_types_repeat1, + STATE(7721), 1, + sym_default_arm, + ACTIONS(5825), 44, anon_sym_true, anon_sym_false, anon_sym_null, @@ -324156,12 +299272,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -324195,15 +299308,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [105896] = 4, + aux_sym_unquoted_token1, + [101607] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3107), 1, + ACTIONS(1575), 1, + anon_sym_DASH, + ACTIONS(4787), 1, + anon_sym_DOT_DOT2, + ACTIONS(5905), 1, + sym_filesize_unit, + ACTIONS(5907), 1, + sym_duration_unit, + STATE(2837), 1, sym_comment, - ACTIONS(3175), 15, - anon_sym__, + ACTIONS(4789), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1587), 43, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [101675] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2838), 1, + sym_comment, + ACTIONS(1643), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -324216,23 +299391,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(3173), 33, + aux_sym__unquoted_in_list_token1, + ACTIONS(1645), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -324251,16 +299425,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105955] = 5, + [101735] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6124), 1, - sym__newline, - STATE(3108), 2, + ACTIONS(5909), 1, + anon_sym_DOT, + ACTIONS(5911), 1, + aux_sym__immediate_decimal_token2, + STATE(2839), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1755), 15, - anon_sym__, + ACTIONS(1643), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -324274,8 +299448,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1757), 31, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1645), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -324283,10 +299458,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -324307,14 +299483,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106016] = 4, + [101799] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2423), 1, + ACTIONS(5829), 1, + anon_sym__, + ACTIONS(5832), 1, sym__entry_separator, - STATE(3109), 1, + ACTIONS(5913), 1, + anon_sym_RBRACE, + STATE(2840), 1, sym_comment, - ACTIONS(2421), 47, + STATE(2865), 1, + aux_sym__multiple_types_repeat1, + STATE(7490), 1, + sym_default_arm, + ACTIONS(5825), 44, anon_sym_true, anon_sym_false, anon_sym_null, @@ -324322,12 +299506,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -324361,17 +299542,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [106075] = 5, + aux_sym_unquoted_token1, + [101867] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6129), 1, - anon_sym_COMMA, - STATE(3110), 1, + STATE(2841), 1, sym_comment, - ACTIONS(6131), 15, - anon_sym__, + ACTIONS(1705), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -324384,22 +299565,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(6127), 32, + aux_sym__unquoted_in_list_token1, + ACTIONS(1707), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -324418,14 +299599,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106136] = 4, + [101927] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2427), 1, + ACTIONS(2245), 1, + anon_sym_LPAREN2, + ACTIONS(2249), 1, + aux_sym__unquoted_in_list_token4, + ACTIONS(2253), 1, sym__entry_separator, - STATE(3111), 1, + STATE(2842), 1, sym_comment, - ACTIONS(2425), 47, + ACTIONS(2251), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -324438,7 +299623,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -324473,54 +299657,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [106195] = 5, + [101991] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6135), 1, - anon_sym_COMMA, - STATE(3112), 1, + ACTIONS(5915), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5917), 1, + aux_sym__immediate_decimal_token2, + STATE(2843), 1, sym_comment, - ACTIONS(6137), 15, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(6133), 32, + ACTIONS(1517), 2, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + ACTIONS(1519), 45, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [102055] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5919), 1, + aux_sym__immediate_decimal_token2, + STATE(2844), 1, + sym_comment, + ACTIONS(1565), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1567), 46, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [102117] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2245), 1, + anon_sym_LPAREN2, + ACTIONS(2247), 1, + sym__entry_separator, + ACTIONS(2249), 1, + aux_sym__unquoted_in_list_token4, + STATE(2845), 1, + sym_comment, + ACTIONS(2243), 46, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -324529,14 +299829,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106256] = 4, + aux_sym__unquoted_in_list_token1, + [102181] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2431), 1, + ACTIONS(5829), 1, + anon_sym__, + ACTIONS(5832), 1, sym__entry_separator, - STATE(3113), 1, + ACTIONS(5921), 1, + anon_sym_RBRACE, + STATE(2846), 1, sym_comment, - ACTIONS(2429), 47, + STATE(2865), 1, + aux_sym__multiple_types_repeat1, + STATE(7545), 1, + sym_default_arm, + ACTIONS(5825), 44, anon_sym_true, anon_sym_false, anon_sym_null, @@ -324544,12 +299853,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -324583,15 +299889,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [106315] = 4, + aux_sym_unquoted_token1, + [102249] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2435), 1, - sym__entry_separator, - STATE(3114), 1, + STATE(2847), 1, sym_comment, - ACTIONS(2433), 47, + ACTIONS(1707), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1705), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -324604,7 +299911,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -324639,53 +299945,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [106374] = 4, + aux_sym__unquoted_in_list_token2, + [102309] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3115), 1, + ACTIONS(5923), 1, + anon_sym_DOT, + ACTIONS(5925), 1, + aux_sym__immediate_decimal_token2, + STATE(2848), 1, sym_comment, - ACTIONS(2429), 15, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2431), 33, + ACTIONS(1497), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1499), 45, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [102373] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5927), 1, + anon_sym_DOT, + ACTIONS(5929), 1, + aux_sym__immediate_decimal_token2, + STATE(2849), 1, + sym_comment, + ACTIONS(1497), 2, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + ACTIONS(1499), 45, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [102437] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1495), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1788), 1, + anon_sym_LPAREN2, + ACTIONS(1794), 1, + sym__entry_separator, + STATE(2850), 1, + sym_comment, + ACTIONS(1786), 46, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -324694,16 +300119,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106433] = 5, + aux_sym__unquoted_in_list_token1, + [102501] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1650), 1, + ACTIONS(5829), 1, + anon_sym__, + ACTIONS(5832), 1, sym__entry_separator, - ACTIONS(6139), 1, - aux_sym__immediate_decimal_token2, - STATE(3116), 1, + ACTIONS(5931), 1, + anon_sym_RBRACE, + STATE(2851), 1, sym_comment, - ACTIONS(1648), 46, + STATE(2865), 1, + aux_sym__multiple_types_repeat1, + STATE(7805), 1, + sym_default_arm, + ACTIONS(5825), 44, anon_sym_true, anon_sym_false, anon_sym_null, @@ -324711,9 +300143,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, @@ -324749,54 +300179,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [106494] = 4, - ACTIONS(247), 1, + aux_sym_unquoted_token1, + [102569] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3117), 1, + ACTIONS(5458), 1, + anon_sym_LPAREN2, + ACTIONS(5739), 1, + anon_sym_RBRACK, + ACTIONS(5745), 1, + sym__entry_separator, + ACTIONS(5935), 1, + anon_sym_COMMA, + STATE(2852), 1, sym_comment, - ACTIONS(1690), 15, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1698), 33, + STATE(7398), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5933), 44, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -324805,14 +300239,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106553] = 4, + aux_sym__unquoted_in_list_token1, + [102637] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3118), 1, + STATE(2853), 1, sym_comment, - ACTIONS(2433), 15, - anon_sym__, + ACTIONS(1625), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -324825,23 +300262,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2435), 33, + aux_sym__unquoted_in_list_token1, + ACTIONS(1629), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -324860,13 +300296,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106612] = 4, + [102697] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3119), 1, + ACTIONS(5813), 1, + aux_sym__immediate_decimal_token2, + STATE(2854), 1, sym_comment, - ACTIONS(1589), 15, - anon_sym__, + ACTIONS(1497), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1499), 46, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [102759] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2855), 1, + sym_comment, + ACTIONS(1565), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1567), 46, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [102818] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5937), 1, + aux_sym__immediate_decimal_token2, + STATE(2856), 1, + sym_comment, + ACTIONS(1565), 2, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + ACTIONS(1567), 45, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [102879] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5939), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5941), 1, + aux_sym__immediate_decimal_token2, + STATE(2857), 1, + sym_comment, + ACTIONS(1631), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -324880,21 +300487,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1591), 33, + aux_sym__unquoted_in_list_token1, + ACTIONS(1633), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -324915,14 +300521,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106671] = 4, + [102942] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2439), 1, + ACTIONS(2471), 1, sym__entry_separator, - STATE(3120), 1, + STATE(2858), 1, sym_comment, - ACTIONS(2437), 47, + ACTIONS(2469), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -324970,14 +300576,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [106730] = 4, + [103001] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2443), 1, + ACTIONS(2067), 1, sym__entry_separator, - STATE(3121), 1, + STATE(2859), 1, sym_comment, - ACTIONS(2441), 47, + ACTIONS(2061), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -325025,14 +300631,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [106789] = 4, - ACTIONS(3), 1, + [103060] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1537), 1, - sym__entry_separator, - STATE(3122), 1, + ACTIONS(5943), 1, + sym__newline, + STATE(2860), 2, sym_comment, - ACTIONS(1525), 47, + aux_sym_shebang_repeat1, + ACTIONS(1898), 15, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1900), 31, anon_sym_true, anon_sym_false, anon_sym_null, @@ -325040,37 +300663,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -325079,70 +300687,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [106848] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3123), 1, - sym_comment, - ACTIONS(1473), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1475), 46, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [106907] = 4, + [103121] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1881), 1, + ACTIONS(1587), 1, sym__entry_separator, - STATE(3124), 1, + ACTIONS(5468), 1, + aux_sym__unquoted_in_list_token2, + STATE(2861), 1, sym_comment, - ACTIONS(1879), 47, + ACTIONS(1575), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -325155,7 +300709,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -325190,108 +300743,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [106966] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3125), 1, - sym_comment, - ACTIONS(1585), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1587), 46, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [107025] = 4, - ACTIONS(247), 1, + [103182] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3126), 1, + ACTIONS(2475), 1, + sym__entry_separator, + STATE(2862), 1, sym_comment, - ACTIONS(2437), 15, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2439), 33, + ACTIONS(2473), 47, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -325300,14 +300797,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [107084] = 4, + aux_sym__unquoted_in_list_token1, + [103241] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2350), 1, + ACTIONS(2483), 1, sym__entry_separator, - STATE(3127), 1, + STATE(2863), 1, sym_comment, - ACTIONS(2348), 47, + ACTIONS(2481), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -325355,13 +300853,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [107143] = 4, + [103300] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3128), 1, + ACTIONS(5946), 1, + aux_sym__immediate_decimal_token2, + STATE(2864), 1, sym_comment, - ACTIONS(2441), 15, - anon_sym__, + ACTIONS(1705), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -325375,21 +300874,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2443), 33, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1707), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -325410,28 +300909,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [107202] = 4, - ACTIONS(247), 1, + [103361] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3129), 1, + ACTIONS(5948), 1, + sym__entry_separator, + STATE(2865), 2, sym_comment, - ACTIONS(962), 15, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(964), 33, + aux_sym__multiple_types_repeat1, + ACTIONS(2359), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -325439,24 +300925,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_QMARK2, + anon_sym_RBRACE, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -325465,53 +300963,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [107261] = 4, - ACTIONS(247), 1, + aux_sym_unquoted_token1, + [103420] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3130), 1, + ACTIONS(2406), 1, + sym__entry_separator, + STATE(2866), 1, sym_comment, - ACTIONS(1569), 15, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1571), 33, + ACTIONS(2404), 47, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -325520,14 +301018,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [107320] = 4, + aux_sym__unquoted_in_list_token1, + [103479] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2391), 1, + ACTIONS(2410), 1, sym__entry_separator, - STATE(3131), 1, + STATE(2867), 1, sym_comment, - ACTIONS(2389), 47, + ACTIONS(2408), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -325575,70 +301074,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [107379] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6141), 1, - aux_sym__immediate_decimal_token2, - STATE(3132), 1, - sym_comment, - ACTIONS(1519), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1521), 45, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [107440] = 4, + [103538] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(988), 1, + ACTIONS(2451), 1, sym__entry_separator, - STATE(3133), 1, + STATE(2868), 1, sym_comment, - ACTIONS(986), 47, + ACTIONS(2449), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -325651,8 +301094,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -325686,14 +301129,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [107499] = 4, + [103597] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(992), 1, + ACTIONS(1861), 1, sym__entry_separator, - STATE(3134), 1, + STATE(2869), 1, sym_comment, - ACTIONS(990), 47, + ACTIONS(1859), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -325706,8 +301149,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -325741,53 +301184,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [107558] = 4, - ACTIONS(247), 1, + [103656] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3135), 1, + ACTIONS(1645), 1, + sym__entry_separator, + ACTIONS(5851), 1, + aux_sym__immediate_decimal_token2, + STATE(2870), 1, sym_comment, - ACTIONS(1960), 15, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1966), 33, + ACTIONS(1643), 46, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -325796,53 +301239,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [107617] = 4, + aux_sym__unquoted_in_list_token1, + [103717] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3136), 1, + ACTIONS(5925), 1, + aux_sym__immediate_decimal_token2, + STATE(2871), 1, sym_comment, - ACTIONS(1648), 15, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1650), 33, + ACTIONS(1497), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1499), 45, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [103778] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2872), 1, + sym_comment, + ACTIONS(5953), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(5951), 46, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -325851,15 +301350,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [107676] = 4, + aux_sym__unquoted_in_list_token1, + [103837] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3137), 1, - sym_comment, - ACTIONS(6145), 2, - anon_sym_LPAREN2, + ACTIONS(2370), 1, sym__entry_separator, - ACTIONS(6143), 46, + STATE(2873), 1, + sym_comment, + ACTIONS(2368), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -325872,6 +301371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -325906,14 +301406,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [107735] = 4, + [103896] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(996), 1, + ACTIONS(1869), 1, sym__entry_separator, - STATE(3138), 1, + STATE(2874), 1, sym_comment, - ACTIONS(994), 47, + ACTIONS(1867), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -325926,8 +301426,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -325961,14 +301461,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [107794] = 4, + [103955] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2407), 1, + ACTIONS(2041), 1, sym__entry_separator, - STATE(3139), 1, + STATE(2875), 1, sym_comment, - ACTIONS(2405), 47, + ACTIONS(2035), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -326016,53 +301516,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [107853] = 4, - ACTIONS(247), 1, + [104014] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3140), 1, + ACTIONS(2487), 1, + sym__entry_separator, + STATE(2876), 1, sym_comment, - ACTIONS(1721), 15, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1723), 33, + ACTIONS(2485), 47, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -326071,14 +301570,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [107912] = 4, + aux_sym__unquoted_in_list_token1, + [104073] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2334), 1, + ACTIONS(2394), 1, sym__entry_separator, - STATE(3141), 1, + STATE(2877), 1, sym_comment, - ACTIONS(2332), 47, + ACTIONS(2392), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -326126,14 +301626,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [107971] = 4, + [104132] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2354), 1, + ACTIONS(2422), 1, sym__entry_separator, - STATE(3142), 1, + STATE(2878), 1, sym_comment, - ACTIONS(2352), 47, + ACTIONS(2420), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -326181,14 +301681,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [108030] = 4, + [104191] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5955), 1, + anon_sym_DOT, + ACTIONS(5957), 1, + aux_sym__immediate_decimal_token2, + STATE(2879), 1, + sym_comment, + ACTIONS(1497), 2, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + ACTIONS(1499), 44, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [104254] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2411), 1, - sym__entry_separator, - STATE(3143), 1, + STATE(2880), 1, sym_comment, - ACTIONS(2409), 47, + ACTIONS(5961), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(5959), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -326201,7 +301759,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -326236,14 +301793,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [108089] = 4, + [104313] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2415), 1, + ACTIONS(1892), 1, sym__entry_separator, - STATE(3144), 1, + STATE(2881), 1, sym_comment, - ACTIONS(2413), 47, + ACTIONS(1890), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -326291,14 +301848,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [108148] = 4, + [104372] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1749), 1, + ACTIONS(2430), 1, sym__entry_separator, - STATE(3145), 1, + STATE(2882), 1, sym_comment, - ACTIONS(1747), 47, + ACTIONS(2428), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -326346,19 +301903,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [108207] = 6, + [104431] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6147), 1, - anon_sym_DOT, - ACTIONS(6149), 1, + ACTIONS(5963), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5965), 1, aux_sym__immediate_decimal_token2, - STATE(3146), 1, + STATE(2883), 1, sym_comment, - ACTIONS(1473), 2, + ACTIONS(1517), 2, aux_sym_cmd_identifier_token41, anon_sym_DOT_DOT2, - ACTIONS(1475), 44, + ACTIONS(1519), 44, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -326403,70 +301960,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [108270] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6087), 1, - aux_sym__immediate_decimal_token2, - STATE(3147), 1, - sym_comment, - ACTIONS(1589), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1591), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [108331] = 4, + [104494] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1941), 1, + ACTIONS(2491), 1, sym__entry_separator, - STATE(3148), 1, + STATE(2884), 1, sym_comment, - ACTIONS(1935), 47, + ACTIONS(2489), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -326514,109 +302015,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [108390] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1537), 1, - sym__entry_separator, - ACTIONS(5635), 1, - aux_sym__unquoted_in_list_token2, - STATE(3149), 1, - sym_comment, - ACTIONS(1525), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [108451] = 4, + [104553] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3150), 1, + ACTIONS(5967), 1, + aux_sym__immediate_decimal_token2, + STATE(2885), 1, sym_comment, - ACTIONS(1935), 15, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1941), 33, + ACTIONS(1565), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1567), 45, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [104614] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2414), 1, + sym__entry_separator, + STATE(2886), 1, + sym_comment, + ACTIONS(2412), 47, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -326625,54 +302125,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [108510] = 5, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [104673] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6153), 1, - anon_sym_COMMA, - STATE(3151), 1, + ACTIONS(2495), 1, + sym__entry_separator, + STATE(2887), 1, sym_comment, - ACTIONS(6155), 15, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(6151), 32, + ACTIONS(2493), 47, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -326681,54 +302180,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [108571] = 5, + aux_sym__unquoted_in_list_token1, + [104732] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6159), 1, - anon_sym_COMMA, - STATE(3152), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + ACTIONS(4610), 1, + anon_sym_DOT_DOT2, + ACTIONS(4712), 1, + aux_sym_unquoted_token2, + ACTIONS(5969), 1, + sym_filesize_unit, + ACTIONS(5971), 1, + sym_duration_unit, + STATE(2888), 1, sym_comment, - ACTIONS(6161), 15, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(6157), 32, + STATE(7427), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4612), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1587), 40, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [104803] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1707), 1, + sym__entry_separator, + ACTIONS(5973), 1, + aux_sym__immediate_decimal_token2, + STATE(2889), 1, + sym_comment, + ACTIONS(1705), 46, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -326737,14 +302297,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [108632] = 4, + aux_sym__unquoted_in_list_token1, + [104864] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2342), 1, + ACTIONS(2499), 1, sym__entry_separator, - STATE(3153), 1, + STATE(2890), 1, sym_comment, - ACTIONS(2340), 47, + ACTIONS(2497), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -326792,14 +302353,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [108691] = 4, + [104923] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1857), 1, + ACTIONS(2434), 1, sym__entry_separator, - STATE(3154), 1, + STATE(2891), 1, sym_comment, - ACTIONS(1855), 47, + ACTIONS(2432), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -326847,21 +302408,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [108750] = 6, + [104982] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6163), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6165), 1, + ACTIONS(5975), 1, + anon_sym_DOT, + ACTIONS(5977), 1, aux_sym__immediate_decimal_token2, - STATE(3155), 1, + STATE(2892), 1, sym_comment, - ACTIONS(1481), 2, + ACTIONS(1497), 3, aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1483), 44, - ts_builtin_sym_end, sym__newline, + anon_sym_DOT_DOT2, + ACTIONS(1499), 43, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -326872,46 +302432,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [108813] = 4, - ACTIONS(3), 1, + [105045] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1798), 1, - sym__entry_separator, - STATE(3156), 1, + STATE(2893), 1, sym_comment, - ACTIONS(1796), 47, + ACTIONS(1040), 15, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1042), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -326924,32 +302499,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -326958,19 +302520,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [108872] = 5, + [105104] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6167), 1, + ACTIONS(5855), 1, aux_sym__immediate_decimal_token2, - STATE(3157), 1, + STATE(2894), 1, sym_comment, - ACTIONS(1519), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1521), 45, + ACTIONS(1497), 3, sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1499), 44, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -326982,53 +302543,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [108933] = 6, + [105165] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6169), 1, - anon_sym_DOT, - ACTIONS(6171), 1, + ACTIONS(5979), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5981), 1, aux_sym__immediate_decimal_token2, - STATE(3158), 1, + STATE(2895), 1, sym_comment, - ACTIONS(1473), 3, + ACTIONS(1517), 3, aux_sym_cmd_identifier_token41, sym__newline, anon_sym_DOT_DOT2, - ACTIONS(1475), 43, + ACTIONS(1519), 43, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -327072,14 +302633,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [108996] = 4, + [105228] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5929), 1, + aux_sym__immediate_decimal_token2, + STATE(2896), 1, + sym_comment, + ACTIONS(1497), 2, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + ACTIONS(1499), 45, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [105289] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2361), 1, + ACTIONS(1896), 1, sym__entry_separator, - STATE(3159), 1, + STATE(2897), 1, sym_comment, - ACTIONS(2359), 47, + ACTIONS(1894), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -327127,21 +302744,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [109055] = 6, - ACTIONS(247), 1, + [105348] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6173), 1, - anon_sym_DOT, - ACTIONS(6175), 1, - aux_sym__immediate_decimal_token2, - STATE(3160), 1, + ACTIONS(2503), 1, + sym__entry_separator, + STATE(2898), 1, sym_comment, - ACTIONS(1589), 14, + ACTIONS(2501), 47, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -327150,8 +302790,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1591), 32, + [105407] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2899), 1, + sym_comment, + ACTIONS(1497), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1499), 46, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [105466] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2049), 1, + sym__entry_separator, + STATE(2900), 1, + sym_comment, + ACTIONS(2043), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -327164,18 +302874,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -327184,14 +302908,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [109118] = 4, + aux_sym__unquoted_in_list_token1, + [105525] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2346), 1, + ACTIONS(2057), 1, sym__entry_separator, - STATE(3161), 1, + STATE(2901), 1, sym_comment, - ACTIONS(2344), 47, + ACTIONS(2051), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -327239,14 +302964,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [109177] = 4, + [105584] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3162), 1, + STATE(2902), 1, sym_comment, - ACTIONS(1953), 15, - anon_sym__, + ACTIONS(1044), 15, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -327259,21 +302984,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1955), 33, + aux_sym__unquoted_in_list_token1, + ACTIONS(1046), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -327294,13 +303019,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [109236] = 4, + [105643] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3163), 1, + ACTIONS(5911), 1, + aux_sym__immediate_decimal_token2, + STATE(2903), 1, sym_comment, - ACTIONS(1943), 15, - anon_sym__, + ACTIONS(1643), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -327314,21 +303040,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1945), 33, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1645), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -327349,76 +303075,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [109295] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1525), 1, - sym__newline, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - ACTIONS(2949), 1, - anon_sym_DOT_DOT2, - ACTIONS(4889), 1, - aux_sym_unquoted_token2, - ACTIONS(6177), 1, - sym_filesize_unit, - ACTIONS(6179), 1, - sym_duration_unit, - STATE(3164), 1, - sym_comment, - STATE(7561), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2951), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1537), 39, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [109368] = 4, + [105704] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2403), 1, + ACTIONS(1062), 1, sym__entry_separator, - STATE(3165), 1, + STATE(2904), 1, sym_comment, - ACTIONS(2401), 47, + ACTIONS(1060), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -327431,8 +303095,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -327466,14 +303130,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [109427] = 4, + [105763] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2072), 1, + ACTIONS(1054), 1, sym__entry_separator, - STATE(3166), 1, + STATE(2905), 1, sym_comment, - ACTIONS(2066), 47, + ACTIONS(1052), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -327486,8 +303150,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -327521,14 +303185,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [109486] = 4, + [105822] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(1873), 1, sym__entry_separator, - STATE(3167), 1, + STATE(2906), 1, sym_comment, - ACTIONS(1972), 47, + ACTIONS(1871), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -327576,75 +303240,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [109545] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - ACTIONS(2949), 1, - anon_sym_DOT_DOT2, - ACTIONS(4920), 1, - aux_sym_unquoted_token2, - ACTIONS(6181), 1, - sym_filesize_unit, - ACTIONS(6183), 1, - sym_duration_unit, - STATE(3168), 1, - sym_comment, - STATE(7583), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2951), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1537), 40, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [109616] = 4, + [105881] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1966), 1, + ACTIONS(2438), 1, sym__entry_separator, - STATE(3169), 1, + STATE(2907), 1, sym_comment, - ACTIONS(1960), 47, + ACTIONS(2436), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -327692,69 +303295,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [109675] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3170), 1, - sym_comment, - ACTIONS(2401), 15, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2403), 33, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [109734] = 4, + [105940] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2338), 1, + ACTIONS(1587), 1, sym__entry_separator, - STATE(3171), 1, + STATE(2908), 1, sym_comment, - ACTIONS(2336), 47, + ACTIONS(1575), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -327802,126 +303350,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [109793] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3172), 1, - sym_comment, - ACTIONS(1709), 15, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1717), 33, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [109852] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3173), 1, - sym_comment, - ACTIONS(1519), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1521), 46, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [109911] = 6, + [105999] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6185), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6187), 1, + ACTIONS(5983), 1, + anon_sym_DOT, + ACTIONS(5985), 1, aux_sym__immediate_decimal_token2, - STATE(3174), 1, + STATE(2909), 1, sym_comment, - ACTIONS(1569), 14, + ACTIONS(1643), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -327936,7 +303374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1571), 32, + ACTIONS(1645), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -327969,14 +303407,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [109974] = 4, + [106062] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3175), 1, + ACTIONS(5987), 1, + anon_sym_QMARK2, + STATE(2910), 1, sym_comment, - ACTIONS(2066), 15, - anon_sym__, + ACTIONS(1034), 15, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -327989,21 +303429,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2072), 33, + aux_sym__unquoted_in_list_token1, + ACTIONS(1036), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -328024,18 +303463,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110033] = 5, + [106123] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6107), 1, + ACTIONS(5989), 1, aux_sym__immediate_decimal_token2, - STATE(3176), 1, + STATE(2911), 1, sym_comment, - ACTIONS(1473), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1475), 45, + ACTIONS(1565), 3, sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1567), 44, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -328047,48 +303486,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [110094] = 4, + [106184] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3177), 1, + STATE(2912), 1, sym_comment, - ACTIONS(1481), 2, + ACTIONS(1517), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1483), 46, + ACTIONS(1519), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -328135,28 +303574,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [110153] = 4, - ACTIONS(247), 1, + [106243] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3178), 1, + ACTIONS(2382), 1, + sym__entry_separator, + STATE(2913), 1, sym_comment, - ACTIONS(966), 15, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(968), 33, + ACTIONS(2380), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -328169,19 +303594,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_QMARK2, + anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -328190,14 +303628,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110212] = 4, + aux_sym__unquoted_in_list_token1, + [106302] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3179), 1, + STATE(2914), 1, sym_comment, - ACTIONS(1972), 15, - anon_sym__, + ACTIONS(1048), 15, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -328210,21 +303649,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1978), 33, + aux_sym__unquoted_in_list_token1, + ACTIONS(1050), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -328245,15 +303684,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110271] = 4, + [106361] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3180), 1, - sym_comment, - ACTIONS(6191), 2, - anon_sym_LPAREN2, + ACTIONS(1845), 1, sym__entry_separator, - ACTIONS(6189), 46, + STATE(2915), 1, + sym_comment, + ACTIONS(1843), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -328266,6 +303704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -328300,73 +303739,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [110330] = 4, - ACTIONS(247), 1, + [106420] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3181), 1, + ACTIONS(1947), 1, + sym__entry_separator, + STATE(2916), 1, sym_comment, - ACTIONS(2123), 15, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2127), 33, + ACTIONS(1945), 47, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [110389] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3182), 1, - sym_comment, - ACTIONS(976), 15, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -328375,33 +303785,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(978), 33, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -328410,20 +303793,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110448] = 6, + aux_sym__unquoted_in_list_token1, + [106479] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6193), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6195), 1, - aux_sym__immediate_decimal_token2, - STATE(3183), 1, - sym_comment, - ACTIONS(1481), 3, - aux_sym_cmd_identifier_token41, + ACTIONS(1575), 1, sym__newline, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + ACTIONS(4610), 1, anon_sym_DOT_DOT2, - ACTIONS(1483), 43, + ACTIONS(4680), 1, + aux_sym_unquoted_token2, + ACTIONS(5991), 1, + sym_filesize_unit, + ACTIONS(5993), 1, + sym_duration_unit, + STATE(2917), 1, + sym_comment, + STATE(7332), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4612), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1587), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -328460,37 +303853,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [110511] = 5, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [106552] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2103), 1, - aux_sym__unquoted_in_list_token4, - STATE(3184), 1, + ACTIONS(2479), 1, + sym__entry_separator, + STATE(2918), 1, sym_comment, - ACTIONS(2107), 8, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2105), 38, + ACTIONS(2477), 47, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -328505,6 +303891,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -328522,52 +303911,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [110571] = 4, - ACTIONS(247), 1, + [106611] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3185), 1, + ACTIONS(2426), 1, + sym__entry_separator, + STATE(2919), 1, sym_comment, - ACTIONS(1273), 15, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1277), 32, + ACTIONS(2424), 47, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -328576,52 +303965,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110629] = 4, + aux_sym__unquoted_in_list_token1, + [106670] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3186), 1, + STATE(2920), 1, sym_comment, - ACTIONS(6199), 15, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(6197), 32, + ACTIONS(1639), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1641), 46, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [106729] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1951), 1, + sym__entry_separator, + STATE(2921), 1, + sym_comment, + ACTIONS(1949), 47, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -328630,14 +304075,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110687] = 4, + aux_sym__unquoted_in_list_token1, + [106788] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3187), 1, + ACTIONS(5995), 1, + anon_sym_QMARK2, + STATE(2922), 1, sym_comment, - ACTIONS(6203), 15, - anon_sym__, + ACTIONS(1028), 15, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -328650,20 +304098,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(6201), 32, + aux_sym__unquoted_in_list_token1, + ACTIONS(1030), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -328684,16 +304132,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110745] = 5, + [106849] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1772), 1, + ACTIONS(2402), 1, sym__entry_separator, - ACTIONS(6207), 1, - anon_sym_RBRACK, - STATE(3188), 1, + STATE(2923), 1, sym_comment, - ACTIONS(6205), 45, + ACTIONS(2400), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -328701,10 +304147,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -328739,72 +304187,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [110805] = 4, - ACTIONS(247), 1, + [106908] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3189), 1, + ACTIONS(1058), 1, + sym__entry_separator, + STATE(2924), 1, sym_comment, - ACTIONS(6212), 15, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(6210), 32, + ACTIONS(1056), 47, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [110863] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3190), 1, - sym_comment, - ACTIONS(6216), 15, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -328813,32 +304233,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(6214), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -328847,14 +304241,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110921] = 4, + aux_sym__unquoted_in_list_token1, + [106967] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1955), 1, + ACTIONS(2398), 1, sym__entry_separator, - STATE(3191), 1, + STATE(2925), 1, sym_comment, - ACTIONS(1953), 46, + ACTIONS(2396), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -328867,6 +304262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -328901,14 +304297,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [110979] = 4, + [107026] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1945), 1, + ACTIONS(2467), 1, sym__entry_separator, - STATE(3192), 1, + STATE(2926), 1, sym_comment, - ACTIONS(1943), 46, + ACTIONS(2465), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -328921,6 +304317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -328955,29 +304352,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [111037] = 5, - ACTIONS(247), 1, + [107085] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5786), 1, - aux_sym__unquoted_in_list_token2, - STATE(3193), 1, + ACTIONS(2418), 1, + sym__entry_separator, + STATE(2927), 1, sym_comment, - ACTIONS(1525), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1537), 32, + ACTIONS(2416), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -328990,18 +304372,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -329010,26 +304406,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111097] = 4, + aux_sym__unquoted_in_list_token1, + [107144] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1023), 1, - sym__entry_separator, - STATE(3194), 1, + ACTIONS(2249), 1, + aux_sym__unquoted_in_list_token4, + STATE(2928), 1, sym_comment, - ACTIONS(1021), 46, + ACTIONS(2253), 8, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_ctrl_match_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2251), 38, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -329044,9 +304445,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -329064,16 +304462,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [111155] = 4, + [107204] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3195), 1, - sym_comment, - ACTIONS(1473), 2, + ACTIONS(4785), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(4787), 1, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1475), 45, - ts_builtin_sym_end, + ACTIONS(5997), 1, + sym_filesize_unit, + ACTIONS(5999), 1, + sym_duration_unit, + STATE(2929), 1, + sym_comment, + ACTIONS(4789), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1587), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -329085,7 +304490,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN2, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -329114,18 +304520,122 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, + [107270] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2930), 1, + sym_comment, + ACTIONS(1497), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1499), 44, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [111213] = 5, + [107328] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1042), 1, + sym__entry_separator, + STATE(2931), 1, + sym_comment, + ACTIONS(1040), 46, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [107386] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2095), 1, + ACTIONS(2299), 1, aux_sym__unquoted_in_list_token4, - STATE(3196), 1, + STATE(2932), 1, sym_comment, - ACTIONS(2093), 8, + ACTIONS(2297), 8, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -329134,7 +304644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2089), 38, + ACTIONS(2293), 38, anon_sym_true, anon_sym_false, anon_sym_null, @@ -329173,16 +304683,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [111273] = 4, + [107446] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3197), 1, + ACTIONS(6001), 1, + aux_sym__immediate_decimal_token2, + STATE(2933), 1, + sym_comment, + ACTIONS(1705), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1707), 32, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [107506] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2934), 1, sym_comment, - ACTIONS(1481), 2, + ACTIONS(1639), 2, + aux_sym_cmd_identifier_token41, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1483), 45, - ts_builtin_sym_end, + ACTIONS(1641), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -329194,7 +304758,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN2, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -329227,30 +304792,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [111331] = 5, - ACTIONS(3), 1, + [107564] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2103), 1, - aux_sym__unquoted_in_list_token4, - STATE(3198), 1, + STATE(2935), 1, + sym_comment, + ACTIONS(1056), 15, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1058), 32, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [107622] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2936), 1, sym_comment, - ACTIONS(2101), 8, + ACTIONS(1060), 15, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1062), 32, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2097), 38, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [107680] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5832), 1, + sym__entry_separator, + STATE(2865), 1, + aux_sym__multiple_types_repeat1, + STATE(2937), 1, + sym_comment, + ACTIONS(5825), 45, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -329265,6 +304935,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -329281,16 +304954,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [111391] = 4, + aux_sym_unquoted_token1, + [107740] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3199), 1, + STATE(2938), 1, sym_comment, - ACTIONS(1519), 2, + ACTIONS(1517), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1521), 45, + ACTIONS(1519), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -329336,16 +305009,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [111449] = 4, + [107798] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3200), 1, + STATE(2939), 1, sym_comment, - ACTIONS(1585), 2, + ACTIONS(1565), 2, + aux_sym_cmd_identifier_token41, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1587), 45, - ts_builtin_sym_end, + ACTIONS(1567), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -329357,7 +305029,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN2, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -329390,28 +305063,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [111507] = 4, + [107856] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2940), 1, + sym_comment, + ACTIONS(1639), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1641), 44, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [107914] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3201), 1, + ACTIONS(1633), 1, + sym__entry_separator, + STATE(2941), 1, sym_comment, - ACTIONS(2133), 8, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2131), 39, + ACTIONS(1631), 46, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -329426,6 +305151,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -329443,29 +305171,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token4, - [111565] = 4, + [107972] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3202), 1, + ACTIONS(5957), 1, + aux_sym__immediate_decimal_token2, + STATE(2942), 1, sym_comment, - ACTIONS(1589), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1591), 32, + ACTIONS(1497), 2, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + ACTIONS(1499), 44, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [108032] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1046), 1, + sym__entry_separator, + STATE(2943), 1, + sym_comment, + ACTIONS(1044), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -329478,18 +305246,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -329498,28 +305279,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111623] = 4, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [108090] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3203), 1, + ACTIONS(2021), 1, + sym__entry_separator, + STATE(2944), 1, sym_comment, - ACTIONS(1569), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1571), 32, + ACTIONS(2019), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -329532,18 +305300,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -329552,12 +305333,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111681] = 4, + aux_sym__unquoted_in_list_token1, + [108148] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3204), 1, + STATE(2945), 1, sym_comment, - ACTIONS(1648), 15, + ACTIONS(1705), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329573,7 +305355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - ACTIONS(1650), 32, + ACTIONS(1707), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -329606,12 +305388,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111739] = 4, + [108206] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3205), 1, + ACTIONS(1553), 1, + aux_sym__unquoted_in_list_token2, + STATE(2946), 1, sym_comment, - ACTIONS(1721), 15, + ACTIONS(2218), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329626,8 +305410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1723), 32, + ACTIONS(2222), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -329660,72 +305443,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111797] = 4, - ACTIONS(247), 1, + [108266] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3206), 1, + ACTIONS(2249), 1, + aux_sym__unquoted_in_list_token4, + STATE(2947), 1, sym_comment, - ACTIONS(994), 15, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(996), 32, + ACTIONS(2247), 8, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_ctrl_match_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2243), 38, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [111855] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3207), 1, - sym_comment, - ACTIONS(986), 15, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -329734,32 +305489,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(988), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -329768,14 +305497,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111913] = 4, + aux_sym__unquoted_in_list_token1, + [108326] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3208), 1, + STATE(2948), 1, sym_comment, - ACTIONS(990), 15, + ACTIONS(1345), 15, + anon_sym_DOLLAR, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -329789,18 +305519,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(992), 32, + ACTIONS(1349), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -329814,6 +305542,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -329822,72 +305552,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111971] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6149), 1, - aux_sym__immediate_decimal_token2, - STATE(3209), 1, - sym_comment, - ACTIONS(1473), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1475), 44, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [112031] = 5, + [108384] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6218), 1, - aux_sym__immediate_decimal_token2, - STATE(3210), 1, + STATE(2949), 1, sym_comment, - ACTIONS(1519), 2, - aux_sym_cmd_identifier_token41, + ACTIONS(1497), 2, anon_sym_DOT_DOT2, - ACTIONS(1521), 44, + aux_sym_unquoted_token2, + ACTIONS(1499), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -329900,102 +305573,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [112091] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6171), 1, - aux_sym__immediate_decimal_token2, - STATE(3211), 1, - sym_comment, - ACTIONS(1473), 3, - aux_sym_cmd_identifier_token41, - sym__newline, - anon_sym_DOT_DOT2, - ACTIONS(1475), 43, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [112151] = 5, + [108442] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6220), 1, - anon_sym_LBRACK2, - STATE(3212), 1, + ACTIONS(6003), 1, + sym__newline, + STATE(2950), 2, sym_comment, - ACTIONS(2235), 15, + aux_sym_shebang_repeat1, + ACTIONS(1898), 15, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1900), 30, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [108502] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1806), 1, + aux_sym__unquoted_in_list_token2, + STATE(2951), 1, + sym_comment, + ACTIONS(1796), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -330010,13 +305683,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2239), 31, + ACTIONS(1804), 32, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, @@ -330042,30 +305716,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112211] = 5, - ACTIONS(3), 1, + [108562] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2083), 1, - aux_sym__unquoted_in_list_token4, - STATE(3213), 1, + STATE(2952), 1, sym_comment, - ACTIONS(6048), 8, + ACTIONS(1755), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1757), 32, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5964), 38, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [108620] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1963), 1, + sym__entry_separator, + ACTIONS(6008), 1, + anon_sym_RBRACK, + STATE(2953), 1, + sym_comment, + ACTIONS(6006), 45, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -330080,6 +305805,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -330097,18 +305825,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [112271] = 5, + [108680] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6222), 1, - aux_sym__immediate_decimal_token2, - STATE(3214), 1, + STATE(2954), 1, sym_comment, - ACTIONS(1519), 3, - aux_sym_cmd_identifier_token41, + ACTIONS(1517), 3, sym__newline, anon_sym_DOT_DOT2, - ACTIONS(1521), 43, + aux_sym_unquoted_token2, + ACTIONS(1519), 44, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330120,6 +305846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LPAREN2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -330152,14 +305879,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [112331] = 5, + [108738] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1066), 1, + sym__entry_separator, + STATE(2955), 1, + sym_comment, + ACTIONS(1064), 46, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [108796] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6224), 1, - aux_sym__immediate_decimal_token2, - STATE(3215), 1, + ACTIONS(2230), 1, + aux_sym__unquoted_in_list_token2, + STATE(2956), 1, sym_comment, - ACTIONS(1648), 14, + ACTIONS(2224), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -330174,7 +305955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1650), 32, + ACTIONS(2228), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -330207,14 +305988,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112391] = 4, + [108856] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(968), 1, + ACTIONS(5739), 1, + anon_sym_RBRACK, + ACTIONS(5745), 1, sym__entry_separator, - STATE(3216), 1, + STATE(2957), 1, sym_comment, - ACTIONS(966), 46, + ACTIONS(5737), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -330222,7 +306005,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -330261,14 +306043,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [112449] = 4, + [108916] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(978), 1, + ACTIONS(1078), 1, sym__entry_separator, - STATE(3217), 1, + ACTIONS(5749), 1, + anon_sym_RBRACK, + STATE(2958), 1, sym_comment, - ACTIONS(976), 46, + ACTIONS(5747), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -330276,7 +306060,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -330315,14 +306098,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [112507] = 4, - ACTIONS(3), 1, + [108976] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(964), 1, - sym__entry_separator, - STATE(3218), 1, + STATE(2959), 1, sym_comment, - ACTIONS(962), 46, + ACTIONS(1631), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1633), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -330335,31 +306132,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -330368,16 +306152,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [112565] = 4, + [109034] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3219), 1, + STATE(2960), 1, sym_comment, - ACTIONS(1473), 2, - aux_sym_cmd_identifier_token41, + ACTIONS(1565), 2, anon_sym_DOT_DOT2, - ACTIONS(1475), 45, + aux_sym_unquoted_token2, + ACTIONS(1567), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -330389,8 +306173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -330423,69 +306206,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [112623] = 4, + [109092] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3220), 1, + STATE(2961), 1, sym_comment, - ACTIONS(1481), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1483), 45, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [112681] = 4, + ACTIONS(1052), 15, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1054), 32, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [109150] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3221), 1, + STATE(2962), 1, sym_comment, - ACTIONS(1519), 2, - aux_sym_cmd_identifier_token41, + ACTIONS(1639), 2, anon_sym_DOT_DOT2, - ACTIONS(1521), 45, + aux_sym_unquoted_token2, + ACTIONS(1641), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -330497,8 +306281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -330531,15 +306314,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [112739] = 4, + [109208] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3222), 1, + STATE(2963), 1, sym_comment, - ACTIONS(1585), 2, + ACTIONS(1517), 2, aux_sym_cmd_identifier_token41, anon_sym_DOT_DOT2, - ACTIONS(1587), 45, + ACTIONS(1519), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -330585,43 +306368,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [112797] = 4, - ACTIONS(3), 1, + [109266] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1591), 1, - sym__entry_separator, - STATE(3223), 1, + ACTIONS(1495), 1, + aux_sym__unquoted_in_list_token2, + STATE(2964), 1, sym_comment, - ACTIONS(1589), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + ACTIONS(1786), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -330630,81 +306389,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [112855] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4934), 1, - anon_sym_DOT_DOT2, - ACTIONS(4983), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6226), 1, - sym_filesize_unit, - ACTIONS(6228), 1, - sym_duration_unit, - STATE(3224), 1, - sym_comment, - ACTIONS(4936), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1537), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [112921] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1571), 1, - sym__entry_separator, - STATE(3225), 1, - sym_comment, - ACTIONS(1569), 46, + ACTIONS(1794), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -330717,31 +306403,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -330750,44 +306423,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [112979] = 4, - ACTIONS(3), 1, + [109326] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1650), 1, - sym__entry_separator, - STATE(3226), 1, + ACTIONS(1806), 1, + aux_sym__unquoted_in_list_token2, + STATE(2965), 1, sym_comment, - ACTIONS(1648), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + ACTIONS(2160), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -330796,23 +306444,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [113037] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1723), 1, - sym__entry_separator, - STATE(3227), 1, - sym_comment, - ACTIONS(1721), 46, + ACTIONS(2162), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -330825,74 +306458,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [113095] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3228), 1, - sym_comment, - ACTIONS(1273), 15, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1277), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -330913,178 +306478,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [113153] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3229), 1, - sym_comment, - ACTIONS(1473), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1475), 44, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LPAREN2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [113211] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3230), 1, - sym_comment, - ACTIONS(1481), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1483), 44, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LPAREN2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [113269] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3231), 1, - sym_comment, - ACTIONS(1519), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1521), 44, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LPAREN2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [113327] = 4, + [109386] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3232), 1, + ACTIONS(5977), 1, + aux_sym__immediate_decimal_token2, + STATE(2966), 1, sym_comment, - ACTIONS(1585), 3, + ACTIONS(1497), 3, + aux_sym_cmd_identifier_token41, sym__newline, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1587), 44, + ACTIONS(1499), 43, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331096,7 +306501,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LPAREN2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -331129,52 +306533,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [113385] = 4, - ACTIONS(247), 1, + [109446] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3233), 1, + ACTIONS(1707), 1, + sym__entry_separator, + STATE(2967), 1, sym_comment, - ACTIONS(6232), 15, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(6230), 32, + ACTIONS(1705), 46, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -331183,14 +306586,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [113443] = 5, + aux_sym__unquoted_in_list_token1, + [109504] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1429), 1, - aux_sym__unquoted_in_list_token2, - STATE(3234), 1, + ACTIONS(5985), 1, + aux_sym__immediate_decimal_token2, + STATE(2968), 1, sym_comment, - ACTIONS(1690), 14, + ACTIONS(1643), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331205,7 +306609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1698), 32, + ACTIONS(1645), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -331238,16 +306642,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [113503] = 5, + [109564] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5942), 1, - anon_sym_RBRACK, - ACTIONS(5948), 1, + ACTIONS(2513), 1, sym__entry_separator, - STATE(3235), 1, + STATE(2969), 1, sym_comment, - ACTIONS(5940), 45, + ACTIONS(2511), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -331256,9 +306658,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -331292,30 +306695,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [113563] = 5, - ACTIONS(247), 1, + aux_sym_unquoted_token1, + [109622] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1719), 1, - aux_sym__unquoted_in_list_token2, - STATE(3236), 1, + ACTIONS(1757), 1, + sym__entry_separator, + STATE(2970), 1, sym_comment, - ACTIONS(2085), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2087), 32, + ACTIONS(1755), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -331328,18 +306716,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -331348,19 +306749,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [113623] = 5, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [109680] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1719), 1, - aux_sym__unquoted_in_list_token2, - STATE(3237), 1, + ACTIONS(1645), 1, + sym__entry_separator, + STATE(2971), 1, sym_comment, - ACTIONS(1709), 14, + ACTIONS(1643), 46, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -331369,8 +306795,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1717), 32, + [109738] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2135), 1, + sym__entry_separator, + STATE(2972), 1, + sym_comment, + ACTIONS(2133), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -331383,18 +306824,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -331403,16 +306857,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [113683] = 5, + aux_sym__unquoted_in_list_token1, + [109796] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1008), 1, + ACTIONS(1050), 1, sym__entry_separator, - ACTIONS(5966), 1, - anon_sym_RBRACK, - STATE(3238), 1, + STATE(2973), 1, sym_comment, - ACTIONS(5964), 45, + ACTIONS(1048), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -331420,6 +306873,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -331458,19 +306912,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [113743] = 5, - ACTIONS(247), 1, + [109854] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1457), 1, - aux_sym__unquoted_in_list_token2, - STATE(3239), 1, + ACTIONS(2241), 1, + aux_sym__unquoted_in_list_token4, + STATE(2974), 1, sym_comment, - ACTIONS(2117), 14, + ACTIONS(5869), 8, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_ctrl_match_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5747), 38, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DOLLAR, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -331479,32 +306958,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2121), 32, + [109914] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2975), 1, + sym_comment, + ACTIONS(1565), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1567), 44, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [109972] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2976), 1, + sym_comment, + ACTIONS(2261), 8, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_ctrl_match_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2259), 39, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -331513,14 +307073,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [113803] = 5, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token4, + [110030] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2129), 1, - aux_sym__unquoted_in_list_token2, - STATE(3240), 1, + ACTIONS(6011), 1, + anon_sym_LBRACK2, + STATE(2977), 1, sym_comment, - ACTIONS(2123), 14, + ACTIONS(2303), 15, + anon_sym_LBRACK, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331535,14 +307098,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2127), 32, + ACTIONS(2307), 31, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, @@ -331568,14 +307130,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [113863] = 5, + [110090] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6175), 1, - aux_sym__immediate_decimal_token2, - STATE(3241), 1, + STATE(2978), 1, + sym_comment, + ACTIONS(1497), 2, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + ACTIONS(1499), 45, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [110148] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2979), 1, sym_comment, - ACTIONS(1589), 14, + ACTIONS(1643), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331590,7 +307204,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1591), 32, + aux_sym__unquoted_in_list_token2, + ACTIONS(1645), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -331623,12 +307238,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [113923] = 4, + [110206] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3242), 1, + ACTIONS(6013), 1, + aux_sym__immediate_decimal_token2, + STATE(2980), 1, sym_comment, - ACTIONS(1747), 14, + ACTIONS(1565), 2, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + ACTIONS(1567), 44, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [110266] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5625), 1, + aux_sym__unquoted_in_list_token2, + STATE(2981), 1, + sym_comment, + ACTIONS(1575), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331643,7 +307315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1749), 32, + ACTIONS(1587), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -331676,12 +307348,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [113980] = 4, + [110326] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3243), 1, + ACTIONS(6015), 1, + aux_sym__immediate_decimal_token2, + STATE(2982), 1, sym_comment, - ACTIONS(1021), 14, + ACTIONS(1565), 3, + aux_sym_cmd_identifier_token41, + sym__newline, + anon_sym_DOT_DOT2, + ACTIONS(1567), 43, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [110386] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2983), 1, + sym_comment, + ACTIONS(2432), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331696,7 +307423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1023), 32, + ACTIONS(2434), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -331729,12 +307456,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [114037] = 4, + [110443] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3244), 1, + STATE(2984), 1, sym_comment, - ACTIONS(1972), 14, + ACTIONS(2380), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331749,7 +307476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1978), 32, + ACTIONS(2382), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -331782,12 +307509,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [114094] = 4, + [110500] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3245), 1, + STATE(2985), 1, sym_comment, - ACTIONS(1960), 14, + ACTIONS(2392), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331802,7 +307529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1966), 32, + ACTIONS(2394), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -331835,65 +307562,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [114151] = 4, + [110557] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2097), 1, - anon_sym_DASH, - STATE(3246), 1, + STATE(2986), 1, sym_comment, - ACTIONS(2101), 45, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(2396), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2398), 32, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DASH_DASH, + anon_sym_DOLLAR, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [114208] = 4, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [110614] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3247), 1, + STATE(2987), 1, sym_comment, - ACTIONS(2352), 14, + ACTIONS(1843), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331908,7 +307635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2354), 32, + ACTIONS(1845), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -331941,12 +307668,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [114265] = 4, + [110671] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3248), 1, + STATE(2988), 1, sym_comment, - ACTIONS(1525), 14, + ACTIONS(2400), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331961,7 +307688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1537), 32, + ACTIONS(2402), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -331994,12 +307721,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [114322] = 4, + [110728] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3249), 1, + STATE(2989), 1, sym_comment, - ACTIONS(1935), 14, + ACTIONS(2404), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -332014,7 +307741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1941), 32, + ACTIONS(2406), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -332047,12 +307774,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [114379] = 4, + [110785] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3250), 1, + STATE(2990), 1, sym_comment, - ACTIONS(1855), 14, + ACTIONS(1859), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -332067,7 +307794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1857), 32, + ACTIONS(1861), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -332100,12 +307827,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [114436] = 4, + [110842] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3251), 1, + STATE(2991), 1, sym_comment, - ACTIONS(1796), 14, + ACTIONS(1867), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -332120,7 +307847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1798), 32, + ACTIONS(1869), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -332153,12 +307880,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [114493] = 4, + [110899] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3252), 1, + STATE(2992), 1, sym_comment, - ACTIONS(2359), 14, + ACTIONS(1871), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -332173,7 +307900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2361), 32, + ACTIONS(1873), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -332206,12 +307933,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [114550] = 4, + [110956] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3253), 1, + STATE(2993), 1, sym_comment, - ACTIONS(1741), 14, + ACTIONS(2408), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -332226,7 +307953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1745), 32, + ACTIONS(2410), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -332259,12 +307986,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [114607] = 4, + [111013] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3254), 1, + STATE(2994), 1, sym_comment, - ACTIONS(2363), 14, + ACTIONS(1890), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -332279,7 +308006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2365), 32, + ACTIONS(1892), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -332312,12 +308039,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [114664] = 4, + [111070] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3255), 1, + STATE(2995), 1, sym_comment, - ACTIONS(2367), 14, + ACTIONS(2412), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -332332,7 +308059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2369), 32, + ACTIONS(2414), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -332365,12 +308092,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [114721] = 4, + [111127] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3256), 1, + STATE(2996), 1, sym_comment, - ACTIONS(1899), 14, + ACTIONS(2416), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -332385,7 +308112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1901), 32, + ACTIONS(2418), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -332418,12 +308145,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [114778] = 4, + [111184] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3257), 1, + STATE(2997), 1, sym_comment, - ACTIONS(1835), 14, + ACTIONS(1894), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -332438,7 +308165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1837), 32, + ACTIONS(1896), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -332471,12 +308198,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [114835] = 4, + [111241] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3258), 1, + STATE(2998), 1, sym_comment, - ACTIONS(2371), 14, + ACTIONS(1945), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -332491,7 +308218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2373), 32, + ACTIONS(1947), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -332524,12 +308251,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [114892] = 4, + [111298] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3259), 1, + STATE(2999), 1, sym_comment, - ACTIONS(2379), 14, + ACTIONS(2420), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -332544,7 +308271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2381), 32, + ACTIONS(2422), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -332577,12 +308304,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [114949] = 4, + [111355] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3260), 1, + STATE(3000), 1, sym_comment, - ACTIONS(1839), 14, + ACTIONS(2424), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -332597,7 +308324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1841), 32, + ACTIONS(2426), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -332630,118 +308357,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [115006] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3261), 1, - sym_comment, - ACTIONS(1473), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1475), 44, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [115063] = 4, + [111412] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3262), 1, - sym_comment, - ACTIONS(1481), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1483), 44, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [115120] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3263), 1, + STATE(3001), 1, sym_comment, - ACTIONS(2405), 14, + ACTIONS(1949), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -332756,7 +308377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2407), 32, + ACTIONS(1951), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -332789,12 +308410,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [115177] = 4, + [111469] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3264), 1, + STATE(3002), 1, sym_comment, - ACTIONS(2383), 14, + ACTIONS(2428), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -332809,7 +308430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2385), 32, + ACTIONS(2430), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -332842,118 +308463,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [115234] = 4, + [111526] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3265), 1, - sym_comment, - ACTIONS(1519), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1521), 44, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [115291] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3266), 1, + STATE(3003), 1, sym_comment, - ACTIONS(1585), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1587), 44, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [115348] = 4, + ACTIONS(2019), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2021), 32, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [111583] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3267), 1, + STATE(3004), 1, sym_comment, - ACTIONS(2409), 14, + ACTIONS(2133), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -332968,7 +308536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2411), 32, + ACTIONS(2135), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -333001,12 +308569,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [115405] = 4, + [111640] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3268), 1, + STATE(3005), 1, sym_comment, - ACTIONS(2413), 14, + ACTIONS(5959), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -333021,7 +308589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2415), 32, + ACTIONS(5961), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -333054,16 +308622,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [115462] = 4, + [111697] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3269), 1, - sym_comment, - ACTIONS(1473), 3, + ACTIONS(4894), 1, aux_sym_cmd_identifier_token41, - sym__newline, + ACTIONS(4896), 1, anon_sym_DOT_DOT2, - ACTIONS(1475), 43, + ACTIONS(6017), 1, + sym_filesize_unit, + ACTIONS(6019), 1, + sym_duration_unit, + STATE(3006), 1, + sym_comment, + ACTIONS(4898), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1587), 40, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333074,45 +308651,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [115519] = 4, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [111762] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3270), 1, + STATE(3007), 1, sym_comment, - ACTIONS(2326), 14, + ACTIONS(1040), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -333127,7 +308699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2328), 32, + ACTIONS(1042), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -333160,12 +308732,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [115576] = 4, + [111819] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3271), 1, + STATE(3008), 1, sym_comment, - ACTIONS(1589), 14, + ACTIONS(1044), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -333180,7 +308752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1591), 32, + ACTIONS(1046), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -333213,65 +308785,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [115633] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3272), 1, - sym_comment, - ACTIONS(1481), 3, - aux_sym_cmd_identifier_token41, - sym__newline, - anon_sym_DOT_DOT2, - ACTIONS(1483), 43, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [115690] = 4, + [111876] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3273), 1, + STATE(3009), 1, sym_comment, - ACTIONS(5940), 14, + ACTIONS(5951), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -333286,7 +308805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6042), 32, + ACTIONS(5953), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -333319,12 +308838,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [115747] = 4, + [111933] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3274), 1, + STATE(3010), 1, sym_comment, - ACTIONS(1569), 14, + ACTIONS(1048), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -333339,7 +308858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1571), 32, + ACTIONS(1050), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -333372,12 +308891,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [115804] = 4, + [111990] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3275), 1, + STATE(3011), 1, sym_comment, - ACTIONS(1953), 14, + ACTIONS(1064), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -333392,7 +308911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1955), 32, + ACTIONS(1066), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -333425,16 +308944,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [115861] = 4, + [112047] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(3276), 1, - sym_comment, - ACTIONS(1519), 3, - aux_sym_cmd_identifier_token41, + ACTIONS(1575), 1, sym__newline, + ACTIONS(4785), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(4787), 1, anon_sym_DOT_DOT2, - ACTIONS(1521), 43, + ACTIONS(6021), 1, + sym_filesize_unit, + ACTIONS(6023), 1, + sym_duration_unit, + STATE(3012), 1, + sym_comment, + ACTIONS(4789), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1587), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333474,16 +309002,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [115918] = 4, + [112114] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3277), 1, + STATE(3013), 1, sym_comment, - ACTIONS(6236), 14, + ACTIONS(2061), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -333498,7 +309022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6234), 32, + ACTIONS(2067), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -333531,12 +309055,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [115975] = 4, + [112171] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3278), 1, + STATE(3014), 1, sym_comment, - ACTIONS(2417), 14, + ACTIONS(2449), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -333551,7 +309075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2419), 32, + ACTIONS(2451), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -333584,12 +309108,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [116032] = 4, + [112228] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3279), 1, + STATE(3015), 1, sym_comment, - ACTIONS(2421), 14, + ACTIONS(2035), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -333604,7 +309128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2423), 32, + ACTIONS(2041), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -333637,12 +309161,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [116089] = 4, + [112285] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3280), 1, + STATE(3016), 1, + sym_comment, + ACTIONS(2043), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2049), 32, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [112342] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3017), 1, + sym_comment, + ACTIONS(2051), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2057), 32, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [112399] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3018), 1, sym_comment, - ACTIONS(2425), 14, + ACTIONS(2465), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -333657,7 +309287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2427), 32, + ACTIONS(2467), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -333690,12 +309320,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [116146] = 4, + [112456] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3281), 1, + STATE(3019), 1, sym_comment, - ACTIONS(1943), 14, + ACTIONS(2469), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -333710,7 +309340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1945), 32, + ACTIONS(2471), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -333743,12 +309373,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [116203] = 4, + [112513] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3282), 1, + STATE(3020), 1, sym_comment, - ACTIONS(1648), 14, + ACTIONS(2473), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -333763,7 +309393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1650), 32, + ACTIONS(2475), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -333796,65 +309426,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [116260] = 4, + [112570] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3283), 1, - sym_comment, - ACTIONS(1585), 3, - aux_sym_cmd_identifier_token41, - sym__newline, - anon_sym_DOT_DOT2, - ACTIONS(1587), 43, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [116317] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3284), 1, + STATE(3021), 1, sym_comment, - ACTIONS(2429), 14, + ACTIONS(2477), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -333869,7 +309446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2431), 32, + ACTIONS(2479), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -333902,12 +309479,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [116374] = 4, + [112627] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3285), 1, + STATE(3022), 1, sym_comment, - ACTIONS(2433), 14, + ACTIONS(2481), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -333922,7 +309499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2435), 32, + ACTIONS(2483), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -333955,12 +309532,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [116431] = 4, + [112684] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3286), 1, + STATE(3023), 1, sym_comment, - ACTIONS(1721), 14, + ACTIONS(2436), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -333975,7 +309552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1723), 32, + ACTIONS(2438), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -334008,12 +309585,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [116488] = 4, + [112741] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3287), 1, + STATE(3024), 1, sym_comment, - ACTIONS(6240), 14, + ACTIONS(2489), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -334028,7 +309605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6238), 32, + ACTIONS(2491), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -334061,12 +309638,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [116545] = 4, + [112798] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3288), 1, + STATE(3025), 1, sym_comment, - ACTIONS(5964), 14, + ACTIONS(2493), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -334081,7 +309658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6048), 32, + ACTIONS(2495), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -334114,12 +309691,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [116602] = 4, + [112855] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3289), 1, + STATE(3026), 1, sym_comment, - ACTIONS(2437), 14, + ACTIONS(2497), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -334134,7 +309711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2439), 32, + ACTIONS(2499), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -334167,12 +309744,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [116659] = 4, + [112912] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3290), 1, + STATE(3027), 1, sym_comment, - ACTIONS(2441), 14, + ACTIONS(2501), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -334187,7 +309764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2443), 32, + ACTIONS(2503), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -334220,12 +309797,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [116716] = 4, + [112969] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3291), 1, + STATE(3028), 1, sym_comment, - ACTIONS(2389), 14, + ACTIONS(5737), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -334240,7 +309817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2391), 32, + ACTIONS(5863), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -334273,12 +309850,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [116773] = 4, + [113026] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3292), 1, + STATE(3029), 1, sym_comment, - ACTIONS(2332), 14, + ACTIONS(6027), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -334293,7 +309870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2334), 32, + ACTIONS(6025), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -334326,12 +309903,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [116830] = 4, + [113083] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3293), 1, + STATE(3030), 1, sym_comment, - ACTIONS(5832), 14, + ACTIONS(6031), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -334346,7 +309923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5886), 32, + ACTIONS(6029), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -334379,12 +309956,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [116887] = 4, + [113140] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3294), 1, + STATE(3031), 1, sym_comment, - ACTIONS(2336), 14, + ACTIONS(5747), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -334399,7 +309976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2338), 32, + ACTIONS(5869), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -334432,12 +310009,277 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [116944] = 4, + [113197] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3295), 1, + STATE(3032), 1, + sym_comment, + ACTIONS(1497), 2, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + ACTIONS(1499), 44, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [113254] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3033), 1, sym_comment, - ACTIONS(2340), 14, + ACTIONS(1517), 2, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + ACTIONS(1519), 44, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [113311] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3034), 1, + sym_comment, + ACTIONS(1565), 2, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + ACTIONS(1567), 44, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [113368] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3035), 1, + sym_comment, + ACTIONS(1639), 2, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + ACTIONS(1641), 44, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [113425] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3036), 1, + sym_comment, + ACTIONS(1497), 3, + aux_sym_cmd_identifier_token41, + sym__newline, + anon_sym_DOT_DOT2, + ACTIONS(1499), 43, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [113482] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3037), 1, + sym_comment, + ACTIONS(1643), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -334452,7 +310294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2342), 32, + ACTIONS(1645), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -334485,12 +310327,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [117001] = 4, + [113539] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3296), 1, + STATE(3038), 1, sym_comment, - ACTIONS(2344), 14, + ACTIONS(5593), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -334505,7 +310347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2346), 32, + ACTIONS(5649), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -334538,12 +310380,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [117058] = 4, + [113596] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3297), 1, + STATE(3039), 1, + sym_comment, + ACTIONS(1517), 3, + aux_sym_cmd_identifier_token41, + sym__newline, + anon_sym_DOT_DOT2, + ACTIONS(1519), 43, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [113653] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3040), 1, sym_comment, - ACTIONS(966), 14, + ACTIONS(1631), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -334558,7 +310453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(968), 32, + ACTIONS(1633), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -334591,12 +310486,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [117115] = 4, + [113710] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3041), 1, + sym_comment, + ACTIONS(1565), 3, + aux_sym_cmd_identifier_token41, + sym__newline, + anon_sym_DOT_DOT2, + ACTIONS(1567), 43, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [113767] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3298), 1, + STATE(3042), 1, sym_comment, - ACTIONS(976), 14, + ACTIONS(1705), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -334611,7 +310559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(978), 32, + ACTIONS(1707), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -334644,12 +310592,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [117172] = 4, + [113824] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3299), 1, + STATE(3043), 1, + sym_comment, + ACTIONS(1639), 3, + aux_sym_cmd_identifier_token41, + sym__newline, + anon_sym_DOT_DOT2, + ACTIONS(1641), 43, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [113881] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3044), 1, sym_comment, - ACTIONS(962), 14, + ACTIONS(1755), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -334664,7 +310665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(964), 32, + ACTIONS(1757), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -334697,12 +310698,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [117229] = 4, + [113938] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3300), 1, + STATE(3045), 1, sym_comment, - ACTIONS(6244), 14, + ACTIONS(6035), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -334717,7 +310718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6242), 32, + ACTIONS(6033), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -334750,12 +310751,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [117286] = 4, + [113995] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3301), 1, + STATE(3046), 1, sym_comment, - ACTIONS(6248), 14, + ACTIONS(6039), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -334770,7 +310771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6246), 32, + ACTIONS(6037), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -334803,12 +310804,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [117343] = 4, + [114052] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3302), 1, + STATE(3047), 1, sym_comment, - ACTIONS(6205), 14, + ACTIONS(6006), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -334823,7 +310824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6250), 32, + ACTIONS(6041), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -334856,12 +310857,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [117400] = 4, + [114109] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3303), 1, + STATE(3048), 1, sym_comment, - ACTIONS(6254), 14, + ACTIONS(6045), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -334876,7 +310877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6252), 32, + ACTIONS(6043), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -334909,12 +310910,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [117457] = 4, + [114166] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3304), 1, + STATE(3049), 1, sym_comment, - ACTIONS(6254), 14, + ACTIONS(6045), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -334929,7 +310930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6252), 32, + ACTIONS(6043), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -334962,12 +310963,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [117514] = 4, + [114223] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3305), 1, + STATE(3050), 1, sym_comment, - ACTIONS(6258), 14, + ACTIONS(6049), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -334982,7 +310983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6256), 32, + ACTIONS(6047), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -335015,12 +311016,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [117571] = 4, + [114280] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3306), 1, + STATE(3051), 1, sym_comment, - ACTIONS(2401), 14, + ACTIONS(1345), 15, + anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -335034,18 +311036,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2403), 32, + aux_sym_unquoted_token1, + ACTIONS(1349), 31, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT_EQ, @@ -335068,12 +311069,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [117628] = 4, + [114337] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3307), 1, + ACTIONS(6053), 1, + anon_sym_COMMA, + STATE(3052), 1, sym_comment, - ACTIONS(1879), 14, + ACTIONS(5933), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -335088,7 +311091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1881), 32, + ACTIONS(6051), 31, anon_sym_true, anon_sym_false, anon_sym_null, @@ -335098,7 +311101,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, aux_sym_ctrl_match_token1, anon_sym_DOT_DOT_EQ, @@ -335121,73 +311123,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [117685] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6260), 1, - anon_sym_DOLLAR, - ACTIONS(6262), 1, - anon_sym_LPAREN2, - ACTIONS(6264), 1, - anon_sym_DOT, - ACTIONS(6268), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6270), 1, - aux_sym__immediate_decimal_token5, - STATE(3308), 1, - sym_comment, - STATE(3558), 1, - sym__immediate_decimal, - ACTIONS(6266), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3548), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1431), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1441), 27, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [117758] = 4, + [114396] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3309), 1, + STATE(3053), 1, sym_comment, - ACTIONS(2066), 14, + ACTIONS(2368), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -335202,7 +311143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2072), 32, + ACTIONS(2370), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -335235,65 +311176,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [117815] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2089), 1, - anon_sym_DASH, - STATE(3310), 1, - sym_comment, - ACTIONS(2093), 45, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [117872] = 4, + [114453] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3311), 1, + STATE(3054), 1, sym_comment, - ACTIONS(2348), 14, + ACTIONS(1575), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -335308,7 +311196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2350), 32, + ACTIONS(1587), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -335341,12 +311229,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [117929] = 4, + [114510] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3312), 1, + STATE(3055), 1, sym_comment, - ACTIONS(6189), 14, + ACTIONS(2485), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -335361,7 +311249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6191), 32, + ACTIONS(2487), 32, anon_sym_true, anon_sym_false, anon_sym_null, @@ -335394,20 +311282,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [117986] = 8, + [114567] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5081), 1, + ACTIONS(6055), 1, + anon_sym_COLON, + ACTIONS(6057), 1, + anon_sym_LBRACK, + ACTIONS(6063), 1, + anon_sym_list, + ACTIONS(6065), 1, + aux_sym_ctrl_match_token1, + STATE(3056), 1, + sym_comment, + STATE(6747), 1, + sym_block, + STATE(7422), 1, + sym_returns, + STATE(7473), 1, + sym__multiple_types, + STATE(7521), 1, + sym__type_annotation, + STATE(7800), 1, + sym__one_type, + ACTIONS(6061), 2, + anon_sym_table, + anon_sym_record, + STATE(6633), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6059), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [114643] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6055), 1, + anon_sym_COLON, + ACTIONS(6057), 1, + anon_sym_LBRACK, + ACTIONS(6063), 1, + anon_sym_list, + ACTIONS(6065), 1, + aux_sym_ctrl_match_token1, + STATE(3057), 1, + sym_comment, + STATE(6722), 1, + sym_block, + STATE(7355), 1, + sym_returns, + STATE(7473), 1, + sym__multiple_types, + STATE(7521), 1, + sym__type_annotation, + STATE(7800), 1, + sym__one_type, + ACTIONS(6061), 2, + anon_sym_table, + anon_sym_record, + STATE(6633), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6059), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [114719] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4944), 1, anon_sym_DOT, - STATE(1625), 1, + STATE(1530), 1, sym_path, - STATE(1743), 1, + STATE(1681), 1, sym_cell_path, - STATE(1933), 1, + STATE(1908), 1, aux_sym_cell_path_repeat1, - STATE(3313), 1, + STATE(3058), 1, sym_comment, - ACTIONS(3120), 14, + ACTIONS(6067), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -335420,9 +311432,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(1764), 28, + ACTIONS(1959), 28, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -335451,14 +311462,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [118051] = 4, + [114783] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2105), 1, + ACTIONS(2243), 1, anon_sym_DASH, - STATE(3314), 1, + STATE(3059), 1, sym_comment, - ACTIONS(2107), 45, + ACTIONS(2247), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -335471,7 +311482,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, @@ -335504,14 +311514,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [118108] = 5, + [114839] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6274), 1, - anon_sym_COMMA, - STATE(3315), 1, + STATE(3060), 1, sym_comment, - ACTIONS(6109), 14, + ACTIONS(6072), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -335526,7 +311534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6272), 31, + ACTIONS(6070), 31, anon_sym_true, anon_sym_false, anon_sym_null, @@ -335558,24 +311566,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [118167] = 8, + [114895] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5071), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(5073), 1, - anon_sym_DOT_DOT2, - ACTIONS(6276), 1, - sym_filesize_unit, - ACTIONS(6278), 1, - sym_duration_unit, - STATE(3316), 1, + ACTIONS(2251), 1, + anon_sym_DASH, + STATE(3061), 1, sym_comment, - ACTIONS(5075), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1537), 40, - ts_builtin_sym_end, + ACTIONS(2253), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -335587,6 +311585,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -335615,269 +311618,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [118232] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1525), 1, - sym__newline, - ACTIONS(4934), 1, - anon_sym_DOT_DOT2, - ACTIONS(4983), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6280), 1, - sym_filesize_unit, - ACTIONS(6282), 1, - sym_duration_unit, - STATE(3317), 1, - sym_comment, - ACTIONS(4936), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1537), 39, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [118299] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3318), 1, - sym_comment, - ACTIONS(6143), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(6145), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [118356] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6262), 1, - anon_sym_LPAREN2, - ACTIONS(6268), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6270), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6284), 1, - anon_sym_DOLLAR, - STATE(3319), 1, - sym_comment, - STATE(3581), 1, - sym__immediate_decimal, - ACTIONS(6286), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3579), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1431), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1441), 27, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [118426] = 14, + [114951] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6288), 1, + ACTIONS(6055), 1, anon_sym_COLON, - ACTIONS(6290), 1, + ACTIONS(6057), 1, anon_sym_LBRACK, - ACTIONS(6296), 1, + ACTIONS(6063), 1, anon_sym_list, - ACTIONS(6298), 1, + ACTIONS(6065), 1, aux_sym_ctrl_match_token1, - STATE(3320), 1, + STATE(3062), 1, sym_comment, - STATE(6813), 1, + STATE(6695), 1, sym_block, - STATE(7635), 1, + STATE(7377), 1, sym_returns, - STATE(7782), 1, - sym__one_type, - STATE(7784), 1, + STATE(7473), 1, sym__multiple_types, - STATE(7862), 1, + STATE(7521), 1, sym__type_annotation, - ACTIONS(6294), 2, - anon_sym_table, - anon_sym_record, - STATE(6391), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6292), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [118502] = 14, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6288), 1, - anon_sym_COLON, - ACTIONS(6290), 1, - anon_sym_LBRACK, - ACTIONS(6296), 1, - anon_sym_list, - ACTIONS(6298), 1, - aux_sym_ctrl_match_token1, - STATE(3321), 1, - sym_comment, - STATE(6897), 1, - sym_block, - STATE(7658), 1, - sym_returns, - STATE(7782), 1, + STATE(7800), 1, sym__one_type, - STATE(7784), 1, - sym__multiple_types, - STATE(7862), 1, - sym__type_annotation, - ACTIONS(6294), 2, + ACTIONS(6061), 2, anon_sym_table, anon_sym_record, - STATE(6391), 3, + STATE(6633), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6292), 31, + ACTIONS(6059), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -335909,99 +311680,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [118578] = 14, + [115027] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6288), 1, + ACTIONS(6055), 1, anon_sym_COLON, - ACTIONS(6290), 1, + ACTIONS(6057), 1, anon_sym_LBRACK, - ACTIONS(6296), 1, + ACTIONS(6063), 1, anon_sym_list, - ACTIONS(6298), 1, + ACTIONS(6065), 1, aux_sym_ctrl_match_token1, - STATE(3322), 1, + STATE(3063), 1, sym_comment, - STATE(6898), 1, + STATE(6719), 1, sym_block, - STATE(7662), 1, + STATE(7440), 1, sym_returns, - STATE(7782), 1, - sym__one_type, - STATE(7784), 1, + STATE(7473), 1, sym__multiple_types, - STATE(7862), 1, + STATE(7521), 1, sym__type_annotation, - ACTIONS(6294), 2, - anon_sym_table, - anon_sym_record, - STATE(6391), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6292), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [118654] = 14, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6288), 1, - anon_sym_COLON, - ACTIONS(6290), 1, - anon_sym_LBRACK, - ACTIONS(6296), 1, - anon_sym_list, - ACTIONS(6300), 1, - aux_sym_ctrl_match_token1, - STATE(3323), 1, - sym_comment, - STATE(7310), 1, - sym_block, - STATE(7577), 1, - sym_returns, - STATE(7782), 1, + STATE(7800), 1, sym__one_type, - STATE(7784), 1, - sym__multiple_types, - STATE(7862), 1, - sym__type_annotation, - ACTIONS(6294), 2, + ACTIONS(6061), 2, anon_sym_table, anon_sym_record, - STATE(6391), 3, + STATE(6633), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6292), 31, + ACTIONS(6059), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -336033,99 +311742,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [118730] = 14, + [115103] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6288), 1, - anon_sym_COLON, - ACTIONS(6290), 1, - anon_sym_LBRACK, - ACTIONS(6296), 1, - anon_sym_list, - ACTIONS(6298), 1, - aux_sym_ctrl_match_token1, - STATE(3324), 1, + ACTIONS(4896), 1, + anon_sym_DOT_DOT2, + ACTIONS(6074), 1, + sym_filesize_unit, + ACTIONS(6076), 1, + sym_duration_unit, + STATE(3064), 1, sym_comment, - STATE(6735), 1, - sym_block, - STATE(7701), 1, - sym_returns, - STATE(7782), 1, - sym__one_type, - STATE(7784), 1, - sym__multiple_types, - STATE(7862), 1, - sym__type_annotation, - ACTIONS(6294), 2, - anon_sym_table, - anon_sym_record, - STATE(6391), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6292), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [118806] = 14, + ACTIONS(4898), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1587), 40, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [115165] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6288), 1, + ACTIONS(6055), 1, anon_sym_COLON, - ACTIONS(6290), 1, + ACTIONS(6057), 1, anon_sym_LBRACK, - ACTIONS(6296), 1, + ACTIONS(6063), 1, anon_sym_list, - ACTIONS(6298), 1, + ACTIONS(6065), 1, aux_sym_ctrl_match_token1, - STATE(3325), 1, + STATE(3065), 1, sym_comment, - STATE(6736), 1, + STATE(6808), 1, sym_block, - STATE(7543), 1, + STATE(7362), 1, sym_returns, - STATE(7782), 1, - sym__one_type, - STATE(7784), 1, + STATE(7473), 1, sym__multiple_types, - STATE(7862), 1, + STATE(7521), 1, sym__type_annotation, - ACTIONS(6294), 2, + STATE(7800), 1, + sym__one_type, + ACTIONS(6061), 2, anon_sym_table, anon_sym_record, - STATE(6391), 3, + STATE(6633), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6292), 31, + ACTIONS(6059), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -336157,37 +311859,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [118882] = 14, + [115241] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6288), 1, + ACTIONS(6055), 1, anon_sym_COLON, - ACTIONS(6290), 1, + ACTIONS(6057), 1, anon_sym_LBRACK, - ACTIONS(6296), 1, + ACTIONS(6063), 1, anon_sym_list, - ACTIONS(6298), 1, + ACTIONS(6065), 1, aux_sym_ctrl_match_token1, - STATE(3326), 1, + STATE(3066), 1, sym_comment, - STATE(6755), 1, + STATE(6807), 1, sym_block, - STATE(7572), 1, + STATE(7319), 1, sym_returns, - STATE(7782), 1, - sym__one_type, - STATE(7784), 1, + STATE(7473), 1, sym__multiple_types, - STATE(7862), 1, + STATE(7521), 1, sym__type_annotation, - ACTIONS(6294), 2, + STATE(7800), 1, + sym__one_type, + ACTIONS(6061), 2, anon_sym_table, anon_sym_record, - STATE(6391), 3, + STATE(6633), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6292), 31, + ACTIONS(6059), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -336219,37 +311921,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [118958] = 14, + [115317] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6288), 1, + ACTIONS(6055), 1, anon_sym_COLON, - ACTIONS(6290), 1, + ACTIONS(6057), 1, anon_sym_LBRACK, - ACTIONS(6296), 1, + ACTIONS(6063), 1, anon_sym_list, - ACTIONS(6298), 1, + ACTIONS(6078), 1, aux_sym_ctrl_match_token1, - STATE(3327), 1, + STATE(3067), 1, sym_comment, - STATE(6757), 1, + STATE(6117), 1, sym_block, - STATE(7574), 1, + STATE(7363), 1, sym_returns, - STATE(7782), 1, - sym__one_type, - STATE(7784), 1, + STATE(7473), 1, sym__multiple_types, - STATE(7862), 1, + STATE(7521), 1, sym__type_annotation, - ACTIONS(6294), 2, + STATE(7800), 1, + sym__one_type, + ACTIONS(6061), 2, anon_sym_table, anon_sym_record, - STATE(6391), 3, + STATE(6633), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6292), 31, + ACTIONS(6059), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -336281,37 +311983,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [119034] = 14, + [115393] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6288), 1, + ACTIONS(6055), 1, anon_sym_COLON, - ACTIONS(6290), 1, + ACTIONS(6057), 1, anon_sym_LBRACK, - ACTIONS(6296), 1, + ACTIONS(6063), 1, anon_sym_list, - ACTIONS(6300), 1, + ACTIONS(6078), 1, aux_sym_ctrl_match_token1, - STATE(3328), 1, + STATE(3068), 1, sym_comment, - STATE(7317), 1, + STATE(6125), 1, sym_block, - STATE(7601), 1, + STATE(7374), 1, sym_returns, - STATE(7782), 1, - sym__one_type, - STATE(7784), 1, + STATE(7473), 1, sym__multiple_types, - STATE(7862), 1, + STATE(7521), 1, sym__type_annotation, - ACTIONS(6294), 2, + STATE(7800), 1, + sym__one_type, + ACTIONS(6061), 2, anon_sym_table, anon_sym_record, - STATE(6391), 3, + STATE(6633), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6292), 31, + ACTIONS(6059), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -336343,37 +312045,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [119110] = 14, + [115469] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6288), 1, + ACTIONS(6055), 1, anon_sym_COLON, - ACTIONS(6290), 1, + ACTIONS(6057), 1, anon_sym_LBRACK, - ACTIONS(6296), 1, + ACTIONS(6063), 1, anon_sym_list, - ACTIONS(6298), 1, + ACTIONS(6078), 1, aux_sym_ctrl_match_token1, - STATE(3329), 1, + STATE(3069), 1, sym_comment, - STATE(6814), 1, + STATE(6603), 1, sym_block, - STATE(7639), 1, + STATE(7328), 1, sym_returns, - STATE(7782), 1, - sym__one_type, - STATE(7784), 1, + STATE(7473), 1, sym__multiple_types, - STATE(7862), 1, + STATE(7521), 1, sym__type_annotation, - ACTIONS(6294), 2, + STATE(7800), 1, + sym__one_type, + ACTIONS(6061), 2, anon_sym_table, anon_sym_record, - STATE(6391), 3, + STATE(6633), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6292), 31, + ACTIONS(6059), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -336405,315 +312107,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [119186] = 14, + [115545] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6288), 1, + ACTIONS(6055), 1, anon_sym_COLON, - ACTIONS(6290), 1, + ACTIONS(6057), 1, anon_sym_LBRACK, - ACTIONS(6296), 1, + ACTIONS(6063), 1, anon_sym_list, - ACTIONS(6300), 1, + ACTIONS(6078), 1, aux_sym_ctrl_match_token1, - STATE(3330), 1, + STATE(3070), 1, sym_comment, - STATE(7256), 1, + STATE(6610), 1, sym_block, - STATE(7542), 1, + STATE(7330), 1, sym_returns, - STATE(7782), 1, - sym__one_type, - STATE(7784), 1, + STATE(7473), 1, sym__multiple_types, - STATE(7862), 1, - sym__type_annotation, - ACTIONS(6294), 2, - anon_sym_table, - anon_sym_record, - STATE(6391), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6292), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [119262] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5073), 1, - anon_sym_DOT_DOT2, - ACTIONS(6302), 1, - sym_filesize_unit, - ACTIONS(6304), 1, - sym_duration_unit, - STATE(3331), 1, - sym_comment, - ACTIONS(5075), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1537), 40, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [119324] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3332), 1, - sym_comment, - ACTIONS(6308), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(6306), 31, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [119380] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6262), 1, - anon_sym_LPAREN2, - ACTIONS(6268), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6270), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6284), 1, - anon_sym_DOLLAR, - STATE(3333), 1, - sym_comment, - STATE(3585), 1, - sym__immediate_decimal, - ACTIONS(6286), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3584), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1551), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1553), 27, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [119450] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6262), 1, - anon_sym_LPAREN2, - ACTIONS(6268), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6270), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6284), 1, - anon_sym_DOLLAR, - STATE(3334), 1, - sym_comment, - STATE(3587), 1, - sym__immediate_decimal, - ACTIONS(6286), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3586), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1555), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1557), 27, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [119520] = 11, + STATE(7521), 1, + sym__type_annotation, + STATE(7800), 1, + sym__one_type, + ACTIONS(6061), 2, + anon_sym_table, + anon_sym_record, + STATE(6633), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6059), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [115621] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6262), 1, + ACTIONS(6080), 1, + anon_sym_DOLLAR, + ACTIONS(6082), 1, anon_sym_LPAREN2, - ACTIONS(6268), 1, + ACTIONS(6084), 1, + anon_sym_DOT, + ACTIONS(6088), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6270), 1, + ACTIONS(6090), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6284), 1, - anon_sym_DOLLAR, - STATE(3335), 1, + STATE(3071), 1, sym_comment, - STATE(3589), 1, + STATE(3331), 1, sym__immediate_decimal, - ACTIONS(6286), 2, + ACTIONS(6086), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3611), 2, + STATE(3319), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1501), 9, + ACTIONS(1505), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -336723,7 +312202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1509), 27, + ACTIONS(1515), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -336736,7 +312215,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, @@ -336751,37 +312229,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [119590] = 14, + [115693] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6288), 1, + ACTIONS(6055), 1, anon_sym_COLON, - ACTIONS(6290), 1, + ACTIONS(6057), 1, anon_sym_LBRACK, - ACTIONS(6296), 1, + ACTIONS(6063), 1, anon_sym_list, - ACTIONS(6300), 1, + ACTIONS(6078), 1, aux_sym_ctrl_match_token1, - STATE(3336), 1, + STATE(3072), 1, sym_comment, - STATE(7099), 1, + STATE(6625), 1, sym_block, - STATE(7688), 1, + STATE(7347), 1, sym_returns, - STATE(7782), 1, - sym__one_type, - STATE(7784), 1, + STATE(7473), 1, sym__multiple_types, - STATE(7862), 1, + STATE(7521), 1, sym__type_annotation, - ACTIONS(6294), 2, + STATE(7800), 1, + sym__one_type, + ACTIONS(6061), 2, anon_sym_table, anon_sym_record, - STATE(6391), 3, + STATE(6633), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6292), 31, + ACTIONS(6059), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -336813,37 +312291,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [119666] = 14, + [115769] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6288), 1, + ACTIONS(6055), 1, anon_sym_COLON, - ACTIONS(6290), 1, + ACTIONS(6057), 1, anon_sym_LBRACK, - ACTIONS(6296), 1, + ACTIONS(6063), 1, anon_sym_list, - ACTIONS(6300), 1, + ACTIONS(6078), 1, aux_sym_ctrl_match_token1, - STATE(3337), 1, + STATE(3073), 1, sym_comment, - STATE(7103), 1, + STATE(6629), 1, sym_block, - STATE(7707), 1, + STATE(7348), 1, sym_returns, - STATE(7782), 1, - sym__one_type, - STATE(7784), 1, + STATE(7473), 1, sym__multiple_types, - STATE(7862), 1, + STATE(7521), 1, sym__type_annotation, - ACTIONS(6294), 2, + STATE(7800), 1, + sym__one_type, + ACTIONS(6061), 2, anon_sym_table, anon_sym_record, - STATE(6391), 3, + STATE(6633), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6292), 31, + ACTIONS(6059), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -336875,37 +312353,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [119742] = 14, + [115845] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6288), 1, + ACTIONS(6055), 1, anon_sym_COLON, - ACTIONS(6290), 1, + ACTIONS(6057), 1, anon_sym_LBRACK, - ACTIONS(6296), 1, + ACTIONS(6063), 1, anon_sym_list, - ACTIONS(6300), 1, + ACTIONS(6078), 1, aux_sym_ctrl_match_token1, - STATE(3338), 1, + STATE(3074), 1, sym_comment, - STATE(7192), 1, + STATE(6135), 1, sym_block, - STATE(7663), 1, + STATE(7310), 1, sym_returns, - STATE(7782), 1, - sym__one_type, - STATE(7784), 1, + STATE(7473), 1, sym__multiple_types, - STATE(7862), 1, + STATE(7521), 1, sym__type_annotation, - ACTIONS(6294), 2, + STATE(7800), 1, + sym__one_type, + ACTIONS(6061), 2, anon_sym_table, anon_sym_record, - STATE(6391), 3, + STATE(6633), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6292), 31, + ACTIONS(6059), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -336937,37 +312415,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [119818] = 14, + [115921] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6288), 1, + ACTIONS(6055), 1, anon_sym_COLON, - ACTIONS(6290), 1, + ACTIONS(6057), 1, anon_sym_LBRACK, - ACTIONS(6296), 1, + ACTIONS(6063), 1, anon_sym_list, - ACTIONS(6300), 1, + ACTIONS(6078), 1, aux_sym_ctrl_match_token1, - STATE(3339), 1, + STATE(3075), 1, sym_comment, - STATE(7254), 1, + STATE(6138), 1, sym_block, - STATE(7641), 1, + STATE(7312), 1, sym_returns, - STATE(7782), 1, - sym__one_type, - STATE(7784), 1, + STATE(7473), 1, sym__multiple_types, - STATE(7862), 1, + STATE(7521), 1, sym__type_annotation, - ACTIONS(6294), 2, + STATE(7800), 1, + sym__one_type, + ACTIONS(6061), 2, anon_sym_table, anon_sym_record, - STATE(6391), 3, + STATE(6633), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6292), 31, + ACTIONS(6059), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -336999,37 +312477,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [119894] = 14, + [115997] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6288), 1, + ACTIONS(6055), 1, anon_sym_COLON, - ACTIONS(6290), 1, + ACTIONS(6057), 1, anon_sym_LBRACK, - ACTIONS(6296), 1, + ACTIONS(6063), 1, anon_sym_list, - ACTIONS(6300), 1, + ACTIONS(6065), 1, aux_sym_ctrl_match_token1, - STATE(3340), 1, + STATE(3076), 1, sym_comment, - STATE(7198), 1, + STATE(6760), 1, sym_block, - STATE(7666), 1, + STATE(7309), 1, sym_returns, - STATE(7782), 1, + STATE(7473), 1, + sym__multiple_types, + STATE(7521), 1, + sym__type_annotation, + STATE(7800), 1, sym__one_type, - STATE(7784), 1, + ACTIONS(6061), 2, + anon_sym_table, + anon_sym_record, + STATE(6633), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6059), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [116073] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6055), 1, + anon_sym_COLON, + ACTIONS(6057), 1, + anon_sym_LBRACK, + ACTIONS(6063), 1, + anon_sym_list, + ACTIONS(6065), 1, + aux_sym_ctrl_match_token1, + STATE(3077), 1, + sym_comment, + STATE(6937), 1, + sym_block, + STATE(7354), 1, + sym_returns, + STATE(7473), 1, sym__multiple_types, - STATE(7862), 1, + STATE(7521), 1, sym__type_annotation, - ACTIONS(6294), 2, + STATE(7800), 1, + sym__one_type, + ACTIONS(6061), 2, anon_sym_table, anon_sym_record, - STATE(6391), 3, + STATE(6633), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6292), 31, + ACTIONS(6059), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -337061,21 +312601,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [119970] = 8, + [116149] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5121), 1, - anon_sym_DOT, - STATE(1999), 1, - aux_sym_cell_path_repeat1, - STATE(2297), 1, - sym_path, - STATE(2544), 1, - sym_cell_path, - STATE(3341), 1, + ACTIONS(2293), 1, + anon_sym_DASH, + STATE(3078), 1, sym_comment, - ACTIONS(3120), 12, - ts_builtin_sym_end, + ACTIONS(2297), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337087,7 +312620,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(1764), 28, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -337116,20 +312653,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [120033] = 7, + [116205] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6310), 1, - anon_sym_DOT, - STATE(3342), 1, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(6088), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6090), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6092), 1, + anon_sym_DOLLAR, + STATE(3079), 1, sym_comment, - STATE(3344), 1, - aux_sym_cell_path_repeat1, - STATE(3383), 1, - sym_path, - ACTIONS(951), 10, + STATE(3384), 1, + sym__immediate_decimal, + ACTIONS(6094), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3356), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1621), 9, anon_sym_DASH, - anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -337138,7 +312684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(953), 31, + ACTIONS(1623), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337151,17 +312697,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, - anon_sym_if, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -337170,22 +312711,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [120094] = 9, + [116274] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3123), 1, - sym__newline, - ACTIONS(5099), 1, + ACTIONS(4946), 1, anon_sym_DOT, - STATE(2120), 1, + ACTIONS(6096), 1, + sym__newline, + STATE(1917), 1, aux_sym_cell_path_repeat1, - STATE(2197), 1, + STATE(2141), 1, sym_path, - STATE(2436), 1, + STATE(2184), 1, sym_cell_path, - STATE(3343), 1, + STATE(3080), 1, sym_comment, - ACTIONS(3120), 11, + ACTIONS(6067), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -337197,7 +312738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - ACTIONS(1764), 28, + ACTIONS(1959), 28, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -337226,19 +312767,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [120159] = 6, + [116339] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6312), 1, + ACTIONS(5032), 1, anon_sym_DOT, - STATE(3383), 1, + STATE(1926), 1, + aux_sym_cell_path_repeat1, + STATE(2126), 1, sym_path, - STATE(3344), 2, + STATE(2355), 1, + sym_cell_path, + STATE(3081), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(955), 10, + ACTIONS(6067), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(1959), 28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [116402] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(6088), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6090), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6092), 1, + anon_sym_DOLLAR, + STATE(3082), 1, + sym_comment, + STATE(3367), 1, + sym__immediate_decimal, + ACTIONS(6094), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3366), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1505), 9, anon_sym_DASH, - anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -337247,7 +312853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(957), 31, + ACTIONS(1515), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337260,17 +312866,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, - anon_sym_if, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -337279,14 +312880,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [120218] = 4, + [116471] = 11, ACTIONS(247), 1, anon_sym_POUND, - STATE(3345), 1, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(6088), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6090), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6092), 1, + anon_sym_DOLLAR, + STATE(3083), 1, sym_comment, - ACTIONS(1021), 10, + STATE(3355), 1, + sym__immediate_decimal, + ACTIONS(6094), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3354), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1617), 9, anon_sym_DASH, - anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -337295,8 +312911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1023), 34, - anon_sym_EQ, + ACTIONS(1619), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337308,20 +312923,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_in, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -337330,14 +312938,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [120273] = 4, - ACTIONS(3), 1, + [116540] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2131), 1, - aux_sym_unquoted_token4, - STATE(3346), 1, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(6088), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6090), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6092), 1, + anon_sym_DOLLAR, + STATE(3084), 1, sym_comment, - ACTIONS(2133), 42, + STATE(3359), 1, + sym__immediate_decimal, + ACTIONS(6094), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3358), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1561), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1563), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337350,46 +312982,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [120327] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [116609] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2081), 1, - anon_sym_LPAREN2, - ACTIONS(2083), 1, + ACTIONS(2259), 1, aux_sym_unquoted_token4, - STATE(3347), 1, + STATE(3085), 1, sym_comment, - ACTIONS(1008), 41, + ACTIONS(2261), 42, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337403,6 +313017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -337431,17 +313046,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [120383] = 5, + [116663] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6315), 1, - anon_sym_QMARK2, - STATE(3348), 1, + ACTIONS(6099), 1, + anon_sym_DOT, + STATE(3086), 1, sym_comment, - ACTIONS(970), 11, + STATE(3090), 1, + aux_sym_cell_path_repeat1, + STATE(3122), 1, + sym_path, + ACTIONS(1017), 10, anon_sym_DASH, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -337450,7 +313068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(972), 31, + ACTIONS(1019), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337463,7 +313081,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, anon_sym_if, aux_sym_ctrl_match_token1, @@ -337482,26 +313099,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [120439] = 5, + [116723] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6317), 1, - anon_sym_QMARK2, - STATE(3349), 1, + ACTIONS(5095), 1, + sym__newline, + ACTIONS(6063), 1, + anon_sym_list, + ACTIONS(6101), 1, + anon_sym_RBRACK, + STATE(3087), 1, sym_comment, - ACTIONS(980), 11, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(982), 31, + STATE(3094), 1, + aux_sym_shebang_repeat1, + STATE(3292), 1, + aux_sym__multiple_types_repeat2, + STATE(6876), 1, + sym__one_type, + STATE(7508), 1, + sym__type_annotation, + ACTIONS(6061), 2, + anon_sym_table, + anon_sym_record, + STATE(6633), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6059), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [116793] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(3088), 1, + sym_comment, + ACTIONS(2297), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337514,35 +313179,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - anon_sym_if, - aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [120495] = 5, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [116849] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2099), 1, + ACTIONS(2245), 1, anon_sym_LPAREN2, - ACTIONS(2103), 1, + ACTIONS(2249), 1, aux_sym_unquoted_token4, - STATE(3350), 1, + STATE(3089), 1, sym_comment, - ACTIONS(2101), 41, + ACTIONS(2247), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337584,31 +313259,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [120551] = 12, + [116905] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6260), 1, - anon_sym_DOLLAR, - ACTIONS(6262), 1, - anon_sym_LPAREN2, - ACTIONS(6268), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6270), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6319), 1, + ACTIONS(6103), 1, anon_sym_DOT, - STATE(3351), 1, + STATE(3122), 1, + sym_path, + STATE(3090), 2, sym_comment, - STATE(3656), 1, - sym__immediate_decimal, - ACTIONS(6266), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3560), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1413), 9, + aux_sym_cell_path_repeat1, + ACTIONS(1021), 10, anon_sym_DASH, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -337617,7 +313280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1427), 24, + ACTIONS(1023), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337630,10 +313293,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, + anon_sym_if, aux_sym_ctrl_match_token1, anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -337642,21 +313311,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [120621] = 8, + [116963] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5704), 1, - anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(3345), 1, - sym_cell_path, - STATE(3352), 1, + STATE(3091), 1, sym_comment, - ACTIONS(945), 9, + ACTIONS(1064), 10, anon_sym_DASH, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -337665,7 +313327,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(947), 30, + ACTIONS(1066), 33, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337677,8 +313340,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_in, @@ -337688,6 +313351,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -337696,16 +313361,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [120683] = 5, + [117017] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2099), 1, + ACTIONS(2239), 1, anon_sym_LPAREN2, - ACTIONS(2103), 1, + ACTIONS(2241), 1, aux_sym_unquoted_token4, - STATE(3353), 1, + STATE(3092), 1, sym_comment, - ACTIONS(2107), 41, + ACTIONS(1078), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337747,27 +313412,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [120739] = 6, - ACTIONS(247), 1, + [117073] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6321), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6323), 1, - aux_sym__immediate_decimal_token2, - STATE(3354), 1, + ACTIONS(2245), 1, + anon_sym_LPAREN2, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + STATE(3093), 1, sym_comment, - ACTIONS(1569), 10, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1571), 31, + ACTIONS(2253), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337780,39 +313434,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - anon_sym_if, - aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [120797] = 8, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [117129] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6310), 1, - anon_sym_DOT, - STATE(3342), 1, - aux_sym_cell_path_repeat1, - STATE(3345), 1, - sym_cell_path, - STATE(3355), 1, + ACTIONS(5095), 1, + sym__newline, + ACTIONS(6063), 1, + anon_sym_list, + STATE(690), 1, + aux_sym_shebang_repeat1, + STATE(3094), 1, sym_comment, - STATE(3383), 1, - sym_path, - ACTIONS(945), 10, + STATE(3286), 1, + aux_sym__multiple_types_repeat2, + STATE(6926), 1, + sym__one_type, + STATE(7508), 1, + sym__type_annotation, + ACTIONS(6061), 2, + anon_sym_table, + anon_sym_record, + STATE(6633), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6059), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [117196] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6106), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6108), 1, + aux_sym__immediate_decimal_token2, + STATE(3095), 1, + sym_comment, + ACTIONS(1631), 10, anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_err_GT, @@ -337823,7 +313539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(947), 29, + ACTIONS(1633), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337836,10 +313552,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, + anon_sym_if, aux_sym_ctrl_match_token1, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -337853,12 +313570,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [120859] = 4, + [117253] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3356), 1, + STATE(3096), 1, sym_comment, - ACTIONS(966), 11, + ACTIONS(1044), 11, anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_DOT, @@ -337870,7 +313587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(968), 32, + ACTIONS(1046), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337883,7 +313600,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, anon_sym_if, aux_sym_ctrl_match_token1, @@ -337903,12 +313619,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [120913] = 4, + [117306] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3357), 1, + STATE(3097), 1, sym_comment, - ACTIONS(976), 11, + ACTIONS(1048), 11, anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_DOT, @@ -337920,7 +313636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(978), 32, + ACTIONS(1050), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337933,7 +313649,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, anon_sym_if, aux_sym_ctrl_match_token1, @@ -337953,27 +313668,315 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [120967] = 6, + [117359] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2245), 1, + anon_sym_LPAREN2, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + STATE(3098), 1, + sym_comment, + ACTIONS(2253), 40, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [117414] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4785), 1, + aux_sym_cmd_identifier_token37, + STATE(3099), 1, + sym_comment, + ACTIONS(2261), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [117467] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4785), 1, + aux_sym_cmd_identifier_token37, + STATE(3100), 1, + sym_comment, + ACTIONS(2297), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [117520] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2293), 1, + sym__newline, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(3101), 1, + sym_comment, + ACTIONS(2297), 39, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [117577] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2243), 1, + sym__newline, + ACTIONS(2245), 1, + anon_sym_LPAREN2, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + STATE(3102), 1, + sym_comment, + ACTIONS(2247), 39, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [117634] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2245), 1, + anon_sym_LPAREN2, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + ACTIONS(2251), 1, + sym__newline, + STATE(3103), 1, + sym_comment, + ACTIONS(2253), 39, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [117691] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6325), 1, - anon_sym_DOT, - ACTIONS(6327), 1, - aux_sym__immediate_decimal_token2, - STATE(3358), 1, + ACTIONS(4618), 1, + aux_sym_unquoted_token2, + STATE(3104), 1, sym_comment, - ACTIONS(1589), 10, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1591), 31, + ACTIONS(1587), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337986,34 +313989,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - anon_sym_if, - aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [121025] = 4, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [117744] = 12, ACTIONS(247), 1, anon_sym_POUND, - STATE(3359), 1, + ACTIONS(6080), 1, + anon_sym_DOLLAR, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(6088), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6090), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6110), 1, + anon_sym_DOT, + STATE(3105), 1, sym_comment, - ACTIONS(962), 11, + STATE(3438), 1, + sym__immediate_decimal, + ACTIONS(6086), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3332), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1479), 9, anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -338022,7 +314051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(964), 32, + ACTIONS(1493), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338035,18 +314064,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, - anon_sym_if, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -338055,16 +314075,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [121079] = 5, + [117813] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2091), 1, + ACTIONS(2239), 1, anon_sym_LPAREN2, - ACTIONS(2095), 1, + ACTIONS(2241), 1, aux_sym_unquoted_token4, - STATE(3360), 1, + STATE(3106), 1, sym_comment, - ACTIONS(2093), 41, + ACTIONS(1078), 40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338076,8 +314097,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -338106,17 +314125,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [121135] = 5, - ACTIONS(3), 1, + [117868] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2099), 1, - anon_sym_LPAREN2, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - STATE(3361), 1, + ACTIONS(5637), 1, + anon_sym_DOT, + STATE(2590), 1, + sym_path, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(3091), 1, + sym_cell_path, + STATE(3107), 1, sym_comment, - ACTIONS(2107), 40, - ts_builtin_sym_end, + ACTIONS(1011), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1013), 29, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338128,42 +314160,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [121190] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [117929] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4983), 1, - aux_sym_cmd_identifier_token37, - STATE(3362), 1, + ACTIONS(6099), 1, + anon_sym_DOT, + STATE(3086), 1, + aux_sym_cell_path_repeat1, + STATE(3091), 1, + sym_cell_path, + STATE(3108), 1, sym_comment, - ACTIONS(2133), 41, + STATE(3122), 1, + sym_path, + ACTIONS(1011), 10, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1013), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338176,43 +314215,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [121243] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [117990] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4983), 1, - aux_sym_cmd_identifier_token37, - STATE(3363), 1, + ACTIONS(2245), 1, + anon_sym_LPAREN2, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + STATE(3109), 1, sym_comment, - ACTIONS(2093), 41, + ACTIONS(2247), 40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338224,8 +314253,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -338254,18 +314281,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [121296] = 6, + [118045] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2099), 1, + ACTIONS(1076), 1, + sym__newline, + ACTIONS(2239), 1, anon_sym_LPAREN2, - ACTIONS(2103), 1, + ACTIONS(2241), 1, aux_sym_unquoted_token4, - ACTIONS(2105), 1, - sym__newline, - STATE(3364), 1, + STATE(3110), 1, sym_comment, - ACTIONS(2107), 39, + ACTIONS(1078), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -338305,15 +314332,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [121353] = 4, + [118102] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(3111), 1, + sym_comment, + ACTIONS(2297), 40, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [118157] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3365), 1, + ACTIONS(6112), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + aux_sym__immediate_decimal_token2, + STATE(3112), 1, sym_comment, - ACTIONS(986), 11, + ACTIONS(1643), 10, anon_sym_DASH, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -338322,7 +314402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(988), 31, + ACTIONS(1645), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338335,7 +314415,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, anon_sym_if, aux_sym_ctrl_match_token1, @@ -338354,16 +314433,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [121406] = 5, + [118214] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6327), 1, - aux_sym__immediate_decimal_token2, - STATE(3366), 1, + ACTIONS(6116), 1, + anon_sym_QMARK2, + STATE(3113), 1, sym_comment, - ACTIONS(1589), 10, + ACTIONS(1034), 11, anon_sym_DASH, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -338372,7 +314452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1591), 31, + ACTIONS(1036), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338385,7 +314465,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, anon_sym_if, aux_sym_ctrl_match_token1, @@ -338404,12 +314483,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [121461] = 4, + [118269] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3367), 1, + ACTIONS(6118), 1, + anon_sym_QMARK2, + STATE(3114), 1, sym_comment, - ACTIONS(990), 11, + ACTIONS(1028), 11, anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_DOT, @@ -338421,7 +314502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(992), 31, + ACTIONS(1030), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338434,7 +314515,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, anon_sym_if, aux_sym_ctrl_match_token1, @@ -338453,14 +314533,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [121514] = 4, - ACTIONS(247), 1, + [118324] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4817), 1, - aux_sym_unquoted_token2, - STATE(3368), 1, + STATE(3115), 1, + sym_comment, + ACTIONS(2259), 2, + sym__newline, + aux_sym_unquoted_token4, + ACTIONS(2261), 40, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [118377] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4785), 1, + aux_sym_cmd_identifier_token37, + STATE(3116), 1, sym_comment, - ACTIONS(1537), 41, + ACTIONS(1587), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338502,70 +314631,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [121567] = 11, + [118430] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6262), 1, - anon_sym_LPAREN2, - ACTIONS(6268), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6270), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6284), 1, - anon_sym_DOLLAR, - STATE(3369), 1, - sym_comment, - STATE(3723), 1, - sym__immediate_decimal, - ACTIONS(6286), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3591), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1413), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1427), 24, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [121634] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4983), 1, - aux_sym_cmd_identifier_token37, - STATE(3370), 1, + ACTIONS(5136), 1, + aux_sym_cmd_identifier_token41, + STATE(3117), 1, sym_comment, - ACTIONS(1537), 41, + ACTIONS(2247), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338607,17 +314680,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [121687] = 5, - ACTIONS(3), 1, + [118483] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2091), 1, - anon_sym_LPAREN2, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(3371), 1, + ACTIONS(5136), 1, + aux_sym_cmd_identifier_token41, + STATE(3118), 1, sym_comment, - ACTIONS(2093), 40, - ts_builtin_sym_end, + ACTIONS(2253), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338629,6 +314699,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -338657,65 +314729,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [121742] = 6, + [118536] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2097), 1, - sym__newline, - ACTIONS(2099), 1, - anon_sym_LPAREN2, - ACTIONS(2103), 1, + ACTIONS(2259), 1, aux_sym_unquoted_token4, - STATE(3372), 1, - sym_comment, - ACTIONS(2101), 39, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [121799] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5335), 1, - aux_sym_cmd_identifier_token41, - STATE(3373), 1, + STATE(3119), 1, sym_comment, - ACTIONS(2107), 41, + ACTIONS(2261), 41, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338727,8 +314749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -338757,18 +314778,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [121852] = 6, - ACTIONS(3), 1, + [118589] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1006), 1, - sym__newline, - ACTIONS(2081), 1, - anon_sym_LPAREN2, - ACTIONS(2083), 1, - aux_sym_unquoted_token4, - STATE(3374), 1, + STATE(3120), 1, sym_comment, - ACTIONS(1008), 39, + ACTIONS(1040), 11, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1042), 31, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -338780,43 +314808,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [121909] = 4, + anon_sym_DASH_DASH, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [118642] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3375), 1, - sym_comment, - ACTIONS(2131), 2, + ACTIONS(2259), 1, sym__newline, - aux_sym_unquoted_token4, - ACTIONS(2133), 40, + ACTIONS(4785), 1, + aux_sym_cmd_identifier_token37, + STATE(3121), 1, + sym_comment, + ACTIONS(2261), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -338828,7 +314848,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LPAREN2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -338857,29 +314876,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [121962] = 11, + [118696] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6262), 1, - anon_sym_LPAREN2, - ACTIONS(6268), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6270), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6284), 1, - anon_sym_DOLLAR, - STATE(3376), 1, + STATE(3122), 1, sym_comment, - STATE(3731), 1, - sym__immediate_decimal, - ACTIONS(6286), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3590), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1443), 9, + ACTIONS(1056), 11, anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -338888,7 +314893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1455), 24, + ACTIONS(1058), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338901,10 +314906,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, + anon_sym_if, aux_sym_ctrl_match_token1, anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -338913,72 +314924,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [122029] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5245), 1, - sym__newline, - ACTIONS(6296), 1, - anon_sym_list, - STATE(3377), 1, - sym_comment, - STATE(3380), 1, - aux_sym_shebang_repeat1, - STATE(3524), 1, - aux_sym__multiple_types_repeat2, - STATE(7251), 1, - sym__one_type, - STATE(7846), 1, - sym__type_annotation, - ACTIONS(6294), 2, - anon_sym_table, - anon_sym_record, - STATE(6391), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6292), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [122096] = 5, + [118748] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6329), 1, - aux_sym__immediate_decimal_token2, - STATE(3378), 1, + STATE(3123), 1, sym_comment, - ACTIONS(1648), 10, + ACTIONS(1060), 11, anon_sym_DASH, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -338987,7 +314941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1650), 31, + ACTIONS(1062), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339000,7 +314954,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, anon_sym_if, aux_sym_ctrl_match_token1, @@ -339019,17 +314972,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [122151] = 5, - ACTIONS(3), 1, + [118800] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2099), 1, - anon_sym_LPAREN2, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - STATE(3379), 1, + STATE(3124), 1, sym_comment, - ACTIONS(2101), 40, - ts_builtin_sym_end, + ACTIONS(1052), 11, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1054), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339041,99 +315001,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [122206] = 11, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [118852] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5245), 1, + ACTIONS(1575), 1, sym__newline, - ACTIONS(6296), 1, - anon_sym_list, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(3380), 1, - sym_comment, - STATE(3547), 1, - aux_sym__multiple_types_repeat2, - STATE(7234), 1, - sym__one_type, - STATE(7846), 1, - sym__type_annotation, - ACTIONS(6294), 2, - anon_sym_table, - anon_sym_record, - STATE(6391), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6292), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [122273] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5335), 1, - aux_sym_cmd_identifier_token41, - STATE(3381), 1, + ACTIONS(4680), 1, + aux_sym_unquoted_token2, + STATE(3125), 1, sym_comment, - ACTIONS(2101), 41, - sym__newline, + ACTIONS(1587), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -339145,47 +315041,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [122326] = 6, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [118906] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2089), 1, + ACTIONS(1575), 1, sym__newline, - ACTIONS(2091), 1, - anon_sym_LPAREN2, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(3382), 1, + ACTIONS(4785), 1, + aux_sym_cmd_identifier_token37, + STATE(3126), 1, sym_comment, - ACTIONS(2093), 39, + ACTIONS(1587), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -339225,15 +315118,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [122383] = 4, + [118960] = 11, ACTIONS(247), 1, anon_sym_POUND, - STATE(3383), 1, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(6088), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6090), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6092), 1, + anon_sym_DOLLAR, + STATE(3127), 1, sym_comment, - ACTIONS(994), 11, + STATE(3479), 1, + sym__immediate_decimal, + ACTIONS(6094), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3360), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1549), 9, anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -339242,7 +315149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(996), 31, + ACTIONS(1551), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339255,17 +315162,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, - anon_sym_if, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -339274,118 +315173,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [122436] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - aux_sym_unquoted_token4, - STATE(3384), 1, - sym_comment, - ACTIONS(2133), 41, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [122489] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2081), 1, - anon_sym_LPAREN2, - ACTIONS(2083), 1, - aux_sym_unquoted_token4, - STATE(3385), 1, - sym_comment, - ACTIONS(1008), 40, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [122544] = 6, + [119026] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5387), 1, + ACTIONS(2243), 1, sym__newline, - STATE(3386), 1, + ACTIONS(5136), 1, + aux_sym_cmd_identifier_token41, + STATE(3128), 1, sym_comment, - STATE(3501), 1, - aux_sym_shebang_repeat1, - ACTIONS(6331), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5298), 37, + ACTIONS(2247), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -339397,6 +315194,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, @@ -339423,125 +315222,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [122600] = 3, + [119080] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3387), 1, - sym_comment, - ACTIONS(6333), 41, + ACTIONS(2251), 1, sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - [122650] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6290), 1, - anon_sym_LBRACK, - ACTIONS(6296), 1, - anon_sym_list, - STATE(3388), 1, - sym_comment, - STATE(7862), 1, - sym__type_annotation, - STATE(8044), 1, - sym__one_type, - STATE(8045), 1, - sym__multiple_types, - ACTIONS(6294), 2, - anon_sym_table, - anon_sym_record, - STATE(6391), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6292), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [122714] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3389), 1, + ACTIONS(5136), 1, + aux_sym_cmd_identifier_token41, + STATE(3129), 1, sym_comment, - ACTIONS(1648), 10, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1650), 31, - sym__newline, + ACTIONS(2253), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -339553,33 +315243,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [122766] = 4, - ACTIONS(247), 1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [119134] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4920), 1, - aux_sym_unquoted_token2, - STATE(3390), 1, + ACTIONS(4894), 1, + aux_sym_cmd_identifier_token37, + STATE(3130), 1, sym_comment, - ACTIONS(1537), 40, + ACTIONS(1587), 40, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -339620,12 +315319,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [122818] = 4, + [119186] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3391), 1, + ACTIONS(6114), 1, + aux_sym__immediate_decimal_token2, + STATE(3131), 1, sym_comment, - ACTIONS(1569), 10, + ACTIONS(1643), 10, anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_err_GT, @@ -339636,7 +315337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1571), 31, + ACTIONS(1645), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339649,7 +315350,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, anon_sym_if, aux_sym_ctrl_match_token1, @@ -339668,13 +315368,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [122870] = 4, - ACTIONS(247), 1, + [119240] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3392), 1, - sym_comment, - ACTIONS(3537), 13, + ACTIONS(2293), 1, sym__newline, + ACTIONS(4785), 1, + aux_sym_cmd_identifier_token37, + STATE(3132), 1, + sym_comment, + ACTIONS(2297), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -339686,45 +315389,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [119294] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6063), 1, + anon_sym_list, + ACTIONS(6120), 1, + anon_sym_GT, + ACTIONS(6122), 1, + anon_sym_AT, + STATE(3133), 1, + sym_comment, + STATE(6755), 1, + sym__all_type, + STATE(7629), 1, + sym_param_cmd, + ACTIONS(6061), 2, + anon_sym_table, + anon_sym_record, + STATE(5573), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6059), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [119358] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3134), 1, + sym_comment, + ACTIONS(6124), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + aux_sym_ctrl_match_token1, anon_sym_RBRACE, - ACTIONS(2317), 28, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [122922] = 4, - ACTIONS(3), 1, + [119408] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5071), 1, - aux_sym_cmd_identifier_token37, - STATE(3393), 1, + STATE(3135), 1, sym_comment, - ACTIONS(1537), 40, - ts_builtin_sym_end, + ACTIONS(4976), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339736,6 +315535,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2357), 28, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -339764,29 +315566,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [122974] = 10, + [119460] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6296), 1, - anon_sym_list, - ACTIONS(6335), 1, - anon_sym_GT, - ACTIONS(6337), 1, - anon_sym_AT, - STATE(3394), 1, + STATE(3136), 1, sym_comment, - STATE(7168), 1, - sym__all_type, - STATE(7793), 1, - sym_param_cmd, - ACTIONS(6294), 2, - anon_sym_table, - anon_sym_record, - STATE(5944), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6292), 31, + ACTIONS(6126), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -339816,19 +315606,36 @@ 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, - [123038] = 3, + anon_sym_record, + anon_sym_list, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + [119510] = 10, ACTIONS(247), 1, anon_sym_POUND, - STATE(3395), 1, - sym_comment, - ACTIONS(6339), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(6057), 1, anon_sym_LBRACK, - anon_sym_RPAREN, + ACTIONS(6063), 1, + anon_sym_list, + STATE(3137), 1, + sym_comment, + STATE(7521), 1, + sym__type_annotation, + STATE(7564), 1, + sym__multiple_types, + STATE(7655), 1, + sym__one_type, + ACTIONS(6061), 2, + anon_sym_table, + anon_sym_record, + STATE(6633), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6059), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -339858,22 +315665,66 @@ 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, + [119574] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6128), 1, + aux_sym__immediate_decimal_token2, + STATE(3138), 1, + sym_comment, + ACTIONS(1705), 10, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1707), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, aux_sym_ctrl_match_token1, anon_sym_RBRACE, - [123088] = 4, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [119628] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3396), 1, + STATE(3139), 1, sym_comment, - ACTIONS(6341), 2, + ACTIONS(6130), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(3601), 39, + ACTIONS(4972), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339913,20 +315764,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [123140] = 5, + [119680] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3397), 1, + STATE(3140), 1, sym_comment, - ACTIONS(6341), 2, + ACTIONS(6130), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6343), 4, + ACTIONS(6132), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(3601), 35, + ACTIONS(4972), 35, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339962,23 +315813,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [123194] = 6, + [119734] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3398), 1, + STATE(3141), 1, sym_comment, - ACTIONS(6341), 2, + ACTIONS(6130), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6345), 2, + ACTIONS(6134), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6343), 4, + ACTIONS(6132), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(3601), 33, + ACTIONS(4972), 33, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340012,38 +315863,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [123250] = 9, + [119790] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(3399), 1, + STATE(3142), 1, sym_comment, - ACTIONS(6341), 2, + ACTIONS(6130), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6345), 2, + ACTIONS(6134), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6347), 2, + ACTIONS(6136), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6343), 4, + ACTIONS(6132), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6349), 4, + ACTIONS(6138), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6351), 6, + ACTIONS(6140), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(3601), 21, + ACTIONS(4972), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340065,41 +315916,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - [123312] = 10, + [119852] = 10, ACTIONS(247), 1, anon_sym_POUND, - STATE(3400), 1, + STATE(3143), 1, sym_comment, - ACTIONS(6341), 2, + ACTIONS(6130), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6345), 2, + ACTIONS(6134), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6347), 2, + ACTIONS(6136), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6353), 2, + ACTIONS(6142), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6343), 4, + ACTIONS(6132), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6349), 4, + ACTIONS(6138), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6351), 6, + ACTIONS(6140), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(3601), 19, + ACTIONS(4972), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340119,43 +315970,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - [123376] = 11, + [119916] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6355), 1, + ACTIONS(6144), 1, aux_sym_expr_binary_token13, - STATE(3401), 1, + STATE(3144), 1, sym_comment, - ACTIONS(6341), 2, + ACTIONS(6130), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6345), 2, + ACTIONS(6134), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6347), 2, + ACTIONS(6136), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6353), 2, + ACTIONS(6142), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6343), 4, + ACTIONS(6132), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6349), 4, + ACTIONS(6138), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6351), 6, + ACTIONS(6140), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(3601), 18, + ACTIONS(4972), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340174,45 +316025,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - [123442] = 12, + [119982] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6355), 1, + ACTIONS(6144), 1, aux_sym_expr_binary_token13, - ACTIONS(6357), 1, + ACTIONS(6146), 1, aux_sym_expr_binary_token14, - STATE(3402), 1, + STATE(3145), 1, sym_comment, - ACTIONS(6341), 2, + ACTIONS(6130), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6345), 2, + ACTIONS(6134), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6347), 2, + ACTIONS(6136), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6353), 2, + ACTIONS(6142), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6343), 4, + ACTIONS(6132), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6349), 4, + ACTIONS(6138), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6351), 6, + ACTIONS(6140), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(3601), 17, + ACTIONS(4972), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340230,47 +316081,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - [123510] = 13, + [120050] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6355), 1, + ACTIONS(6144), 1, aux_sym_expr_binary_token13, - ACTIONS(6357), 1, + ACTIONS(6146), 1, aux_sym_expr_binary_token14, - ACTIONS(6359), 1, + ACTIONS(6148), 1, aux_sym_expr_binary_token15, - STATE(3403), 1, + STATE(3146), 1, sym_comment, - ACTIONS(6341), 2, + ACTIONS(6130), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6345), 2, + ACTIONS(6134), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6347), 2, + ACTIONS(6136), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6353), 2, + ACTIONS(6142), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6343), 4, + ACTIONS(6132), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6349), 4, + ACTIONS(6138), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6351), 6, + ACTIONS(6140), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(3601), 16, + ACTIONS(4972), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340287,49 +316138,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - [123580] = 14, + [120120] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6355), 1, + ACTIONS(6144), 1, aux_sym_expr_binary_token13, - ACTIONS(6357), 1, + ACTIONS(6146), 1, aux_sym_expr_binary_token14, - ACTIONS(6359), 1, + ACTIONS(6148), 1, aux_sym_expr_binary_token15, - ACTIONS(6361), 1, + ACTIONS(6150), 1, aux_sym_expr_binary_token16, - STATE(3404), 1, + STATE(3147), 1, sym_comment, - ACTIONS(6341), 2, + ACTIONS(6130), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6345), 2, + ACTIONS(6134), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6347), 2, + ACTIONS(6136), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6353), 2, + ACTIONS(6142), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6343), 4, + ACTIONS(6132), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6349), 4, + ACTIONS(6138), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6351), 6, + ACTIONS(6140), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(3601), 15, + ACTIONS(4972), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340345,51 +316196,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - [123652] = 15, + [120192] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6355), 1, + ACTIONS(6144), 1, aux_sym_expr_binary_token13, - ACTIONS(6357), 1, + ACTIONS(6146), 1, aux_sym_expr_binary_token14, - ACTIONS(6359), 1, + ACTIONS(6148), 1, aux_sym_expr_binary_token15, - ACTIONS(6361), 1, + ACTIONS(6150), 1, aux_sym_expr_binary_token16, - ACTIONS(6363), 1, + ACTIONS(6152), 1, aux_sym_expr_binary_token17, - STATE(3405), 1, + STATE(3148), 1, sym_comment, - ACTIONS(6341), 2, + ACTIONS(6130), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6345), 2, + ACTIONS(6134), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6347), 2, + ACTIONS(6136), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6353), 2, + ACTIONS(6142), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6343), 4, + ACTIONS(6132), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6349), 4, + ACTIONS(6138), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6351), 6, + ACTIONS(6140), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(3601), 14, + ACTIONS(4972), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340404,33 +316255,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, aux_sym_expr_binary_token18, - [123726] = 8, + [120266] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3406), 1, + STATE(3149), 1, sym_comment, - ACTIONS(6341), 2, + ACTIONS(6130), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6345), 2, + ACTIONS(6134), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6347), 2, + ACTIONS(6136), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6343), 4, + ACTIONS(6132), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6351), 6, + ACTIONS(6140), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(3601), 25, + ACTIONS(4972), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340456,26 +316307,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - [123786] = 7, + [120326] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(3407), 1, + STATE(3150), 1, sym_comment, - ACTIONS(6341), 2, + ACTIONS(6130), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6345), 2, + ACTIONS(6134), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6347), 2, + ACTIONS(6136), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6343), 4, + ACTIONS(6132), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(3601), 31, + ACTIONS(4972), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340507,169 +316358,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [123844] = 10, + [120384] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6296), 1, - anon_sym_list, - ACTIONS(6337), 1, - anon_sym_AT, - ACTIONS(6365), 1, - anon_sym_GT, - STATE(3408), 1, - sym_comment, - STATE(7199), 1, - sym__all_type, - STATE(7917), 1, - sym_param_cmd, - ACTIONS(6294), 2, - anon_sym_table, - anon_sym_record, - STATE(5944), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6292), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [123908] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1525), 1, - sym__newline, - ACTIONS(4889), 1, - aux_sym_unquoted_token2, - STATE(3409), 1, - sym_comment, - ACTIONS(1537), 39, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [123962] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3410), 1, - sym_comment, - ACTIONS(6367), 41, + ACTIONS(5314), 1, sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - [124012] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5421), 1, - sym__newline, - STATE(3411), 1, + STATE(3151), 1, sym_comment, - STATE(3427), 1, + STATE(3164), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5361), 37, + ACTIONS(5196), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -340707,72 +316408,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [124068] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3412), 1, - sym_comment, - ACTIONS(1589), 10, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1591), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [124120] = 7, + [120440] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5421), 1, + ACTIONS(5314), 1, sym__newline, - STATE(3413), 1, + STATE(3152), 1, sym_comment, - STATE(3429), 1, + STATE(3166), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5361), 33, + ACTIONS(5196), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -340806,27 +316459,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [124178] = 8, + [120498] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5421), 1, + ACTIONS(5314), 1, sym__newline, - STATE(3414), 1, + STATE(3153), 1, sym_comment, - STATE(3431), 1, + STATE(3168), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6371), 2, + ACTIONS(6158), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5361), 31, + ACTIONS(5196), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -340858,42 +316511,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [124238] = 11, + [120558] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5421), 1, + ACTIONS(5314), 1, sym__newline, - STATE(3415), 1, + STATE(3154), 1, sym_comment, - STATE(3433), 1, + STATE(3170), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6371), 2, + ACTIONS(6158), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6373), 2, + ACTIONS(6160), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6375), 4, + ACTIONS(6162), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6377), 6, + ACTIONS(6164), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5361), 19, + ACTIONS(5196), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -340913,93 +316566,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [124304] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3416), 1, - sym_comment, - ACTIONS(1721), 10, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1723), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [124356] = 12, + [120624] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5421), 1, + ACTIONS(5314), 1, sym__newline, - STATE(3417), 1, + STATE(3155), 1, sym_comment, - STATE(3435), 1, + STATE(3172), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6371), 2, + ACTIONS(6158), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6373), 2, + ACTIONS(6160), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6379), 2, + ACTIONS(6166), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6375), 4, + ACTIONS(6162), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6377), 6, + ACTIONS(6164), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5361), 17, + ACTIONS(5196), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -341017,47 +316622,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [124424] = 13, + [120692] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5421), 1, + ACTIONS(5314), 1, sym__newline, - ACTIONS(6381), 1, + ACTIONS(6168), 1, aux_sym_expr_binary_parenthesized_token13, - STATE(3418), 1, + STATE(3156), 1, sym_comment, - STATE(3437), 1, + STATE(3174), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6371), 2, + ACTIONS(6158), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6373), 2, + ACTIONS(6160), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6379), 2, + ACTIONS(6166), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6375), 4, + ACTIONS(6162), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6377), 6, + ACTIONS(6164), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5361), 16, + ACTIONS(5196), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -341074,49 +316679,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [124494] = 14, + [120762] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5421), 1, + ACTIONS(5314), 1, sym__newline, - ACTIONS(6381), 1, + ACTIONS(6168), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6383), 1, + ACTIONS(6170), 1, aux_sym_expr_binary_parenthesized_token14, - STATE(3419), 1, + STATE(3157), 1, sym_comment, - STATE(3439), 1, + STATE(3176), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6371), 2, + ACTIONS(6158), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6373), 2, + ACTIONS(6160), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6379), 2, + ACTIONS(6166), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6375), 4, + ACTIONS(6162), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6377), 6, + ACTIONS(6164), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5361), 15, + ACTIONS(5196), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -341132,51 +316737,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [124566] = 15, + [120834] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5421), 1, + ACTIONS(5314), 1, sym__newline, - ACTIONS(6381), 1, + ACTIONS(6168), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6383), 1, + ACTIONS(6170), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6385), 1, + ACTIONS(6172), 1, aux_sym_expr_binary_parenthesized_token15, - STATE(3420), 1, + STATE(3158), 1, sym_comment, - STATE(3441), 1, + STATE(3178), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6371), 2, + ACTIONS(6158), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6373), 2, + ACTIONS(6160), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6379), 2, + ACTIONS(6166), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6375), 4, + ACTIONS(6162), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6377), 6, + ACTIONS(6164), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5361), 14, + ACTIONS(5196), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -341191,53 +316796,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [124640] = 16, + [120908] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5421), 1, + ACTIONS(5314), 1, sym__newline, - ACTIONS(6381), 1, + ACTIONS(6168), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6383), 1, + ACTIONS(6170), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6385), 1, + ACTIONS(6172), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6387), 1, + ACTIONS(6174), 1, aux_sym_expr_binary_parenthesized_token16, - STATE(3421), 1, + STATE(3159), 1, sym_comment, - STATE(3443), 1, + STATE(3180), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6371), 2, + ACTIONS(6158), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6373), 2, + ACTIONS(6160), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6379), 2, + ACTIONS(6166), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6375), 4, + ACTIONS(6162), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6377), 6, + ACTIONS(6164), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5361), 13, + ACTIONS(5196), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -341251,77 +316856,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [124716] = 17, + [120984] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(5295), 1, sym__newline, - ACTIONS(6381), 1, + ACTIONS(6168), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6383), 1, + ACTIONS(6170), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6385), 1, + ACTIONS(6172), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6387), 1, + ACTIONS(6174), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6389), 1, + ACTIONS(6176), 1, aux_sym_expr_binary_parenthesized_token17, - STATE(3422), 1, + STATE(3160), 1, sym_comment, - STATE(3445), 1, + STATE(3182), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6371), 2, + ACTIONS(6158), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6373), 2, + ACTIONS(6160), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6379), 2, + ACTIONS(6166), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6375), 4, + ACTIONS(6162), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6377), 6, + ACTIONS(6164), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5361), 12, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token18, - [124794] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1525), 1, - sym__newline, - ACTIONS(4983), 1, - aux_sym_cmd_identifier_token37, - STATE(3423), 1, - sym_comment, - ACTIONS(1537), 39, + ACTIONS(5196), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -341333,65 +316916,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [124848] = 10, + [121062] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5421), 1, + ACTIONS(5314), 1, sym__newline, - STATE(3424), 1, + STATE(3161), 1, sym_comment, - STATE(3447), 1, + STATE(3184), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6371), 2, + ACTIONS(6158), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6373), 2, + ACTIONS(6160), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6377), 6, + ACTIONS(6164), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5361), 23, + ACTIONS(5196), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -341415,30 +316971,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - [124912] = 9, + [121126] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5421), 1, + ACTIONS(5314), 1, sym__newline, - STATE(3425), 1, + STATE(3162), 1, sym_comment, - STATE(3449), 1, + STATE(3186), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6371), 2, + ACTIONS(6158), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6373), 2, + ACTIONS(6160), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5361), 29, + ACTIONS(5196), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -341468,29 +317024,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [124974] = 10, + [121188] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6296), 1, + ACTIONS(6063), 1, anon_sym_list, - ACTIONS(6337), 1, + ACTIONS(6122), 1, anon_sym_AT, - ACTIONS(6391), 1, + ACTIONS(6178), 1, anon_sym_GT, - STATE(3426), 1, + STATE(3163), 1, sym_comment, - STATE(7100), 1, + STATE(6818), 1, sym__all_type, - STATE(7854), 1, + STATE(7705), 1, sym_param_cmd, - ACTIONS(6294), 2, + ACTIONS(6061), 2, anon_sym_table, anon_sym_record, - STATE(5944), 3, + STATE(5573), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6292), 31, + ACTIONS(6059), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -341522,19 +317078,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [125038] = 6, + [121252] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5339), 1, + ACTIONS(5204), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3427), 1, + STATE(3164), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5341), 37, + ACTIONS(5206), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -341572,19 +317128,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [125094] = 6, + [121308] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5472), 1, + ACTIONS(5309), 1, sym__newline, - STATE(3428), 1, + STATE(3165), 1, sym_comment, - STATE(3465), 1, + STATE(3200), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 37, + ACTIONS(5210), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -341622,24 +317178,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [125150] = 7, + [121364] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5339), 1, + ACTIONS(5204), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3429), 1, + STATE(3166), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5341), 33, + ACTIONS(5206), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -341673,24 +317229,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [125208] = 7, + [121422] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5472), 1, + ACTIONS(5309), 1, sym__newline, - STATE(3430), 1, + STATE(3167), 1, sym_comment, - STATE(3466), 1, + STATE(3201), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5349), 33, + ACTIONS(5210), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -341724,27 +317280,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [125266] = 8, + [121480] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5339), 1, + ACTIONS(5204), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3431), 1, + STATE(3168), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6397), 2, + ACTIONS(6184), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5341), 31, + ACTIONS(5206), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -341776,27 +317332,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [125326] = 8, + [121540] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5472), 1, + ACTIONS(5309), 1, sym__newline, - STATE(3432), 1, + STATE(3169), 1, sym_comment, - STATE(3467), 1, + STATE(3202), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6371), 2, + ACTIONS(6158), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5349), 31, + ACTIONS(5210), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -341828,42 +317384,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [125386] = 11, + [121600] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5339), 1, + ACTIONS(5204), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3433), 1, + STATE(3170), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6397), 2, + ACTIONS(6184), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6399), 2, + ACTIONS(6186), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6401), 4, + ACTIONS(6188), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6403), 6, + ACTIONS(6190), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5341), 19, + ACTIONS(5206), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -341883,42 +317439,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [125452] = 11, + [121666] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5472), 1, + ACTIONS(5309), 1, sym__newline, - STATE(3434), 1, + STATE(3171), 1, sym_comment, - STATE(3468), 1, + STATE(3203), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6371), 2, + ACTIONS(6158), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6373), 2, + ACTIONS(6160), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6375), 4, + ACTIONS(6162), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6377), 6, + ACTIONS(6164), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5349), 19, + ACTIONS(5210), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -341938,45 +317494,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [125518] = 12, + [121732] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5339), 1, + ACTIONS(5204), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3435), 1, + STATE(3172), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6397), 2, + ACTIONS(6184), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6399), 2, + ACTIONS(6186), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6405), 2, + ACTIONS(6192), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6401), 4, + ACTIONS(6188), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6403), 6, + ACTIONS(6190), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5341), 17, + ACTIONS(5206), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -341994,45 +317550,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [125586] = 12, + [121800] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5472), 1, + ACTIONS(5309), 1, sym__newline, - STATE(3436), 1, + STATE(3173), 1, sym_comment, - STATE(3469), 1, + STATE(3204), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6371), 2, + ACTIONS(6158), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6373), 2, + ACTIONS(6160), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6379), 2, + ACTIONS(6166), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6375), 4, + ACTIONS(6162), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6377), 6, + ACTIONS(6164), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5349), 17, + ACTIONS(5210), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -342050,47 +317606,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [125654] = 13, + [121868] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5339), 1, + ACTIONS(5204), 1, sym__newline, - ACTIONS(6407), 1, + ACTIONS(6194), 1, aux_sym_expr_binary_parenthesized_token13, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3437), 1, + STATE(3174), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6397), 2, + ACTIONS(6184), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6399), 2, + ACTIONS(6186), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6405), 2, + ACTIONS(6192), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6401), 4, + ACTIONS(6188), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6403), 6, + ACTIONS(6190), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5341), 16, + ACTIONS(5206), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -342107,47 +317663,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [125724] = 13, + [121938] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5472), 1, + ACTIONS(5309), 1, sym__newline, - ACTIONS(6381), 1, + ACTIONS(6168), 1, aux_sym_expr_binary_parenthesized_token13, - STATE(3438), 1, + STATE(3175), 1, sym_comment, - STATE(3470), 1, + STATE(3205), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6371), 2, + ACTIONS(6158), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6373), 2, + ACTIONS(6160), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6379), 2, + ACTIONS(6166), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6375), 4, + ACTIONS(6162), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6377), 6, + ACTIONS(6164), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5349), 16, + ACTIONS(5210), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -342164,49 +317720,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [125794] = 14, + [122008] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5339), 1, + ACTIONS(5204), 1, sym__newline, - ACTIONS(6407), 1, + ACTIONS(6194), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6409), 1, + ACTIONS(6196), 1, aux_sym_expr_binary_parenthesized_token14, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3439), 1, + STATE(3176), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6397), 2, + ACTIONS(6184), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6399), 2, + ACTIONS(6186), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6405), 2, + ACTIONS(6192), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6401), 4, + ACTIONS(6188), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6403), 6, + ACTIONS(6190), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5341), 15, + ACTIONS(5206), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -342222,49 +317778,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [125866] = 14, + [122080] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5472), 1, + ACTIONS(5309), 1, sym__newline, - ACTIONS(6381), 1, + ACTIONS(6168), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6383), 1, + ACTIONS(6170), 1, aux_sym_expr_binary_parenthesized_token14, - STATE(3440), 1, + STATE(3177), 1, sym_comment, - STATE(3471), 1, + STATE(3206), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6371), 2, + ACTIONS(6158), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6373), 2, + ACTIONS(6160), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6379), 2, + ACTIONS(6166), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6375), 4, + ACTIONS(6162), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6377), 6, + ACTIONS(6164), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5349), 15, + ACTIONS(5210), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -342280,51 +317836,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [125938] = 15, + [122152] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5339), 1, + ACTIONS(5204), 1, sym__newline, - ACTIONS(6407), 1, + ACTIONS(6194), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6409), 1, + ACTIONS(6196), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6411), 1, + ACTIONS(6198), 1, aux_sym_expr_binary_parenthesized_token15, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3441), 1, + STATE(3178), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6397), 2, + ACTIONS(6184), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6399), 2, + ACTIONS(6186), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6405), 2, + ACTIONS(6192), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6401), 4, + ACTIONS(6188), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6403), 6, + ACTIONS(6190), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5341), 14, + ACTIONS(5206), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -342339,51 +317895,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [126012] = 15, + [122226] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5472), 1, + ACTIONS(5309), 1, sym__newline, - ACTIONS(6381), 1, + ACTIONS(6168), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6383), 1, + ACTIONS(6170), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6385), 1, + ACTIONS(6172), 1, aux_sym_expr_binary_parenthesized_token15, - STATE(3442), 1, + STATE(3179), 1, sym_comment, - STATE(3472), 1, + STATE(3207), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6371), 2, + ACTIONS(6158), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6373), 2, + ACTIONS(6160), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6379), 2, + ACTIONS(6166), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6375), 4, + ACTIONS(6162), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6377), 6, + ACTIONS(6164), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5349), 14, + ACTIONS(5210), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -342398,53 +317954,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [126086] = 16, + [122300] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5339), 1, + ACTIONS(5204), 1, sym__newline, - ACTIONS(6407), 1, + ACTIONS(6194), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6409), 1, + ACTIONS(6196), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6411), 1, + ACTIONS(6198), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6413), 1, + ACTIONS(6200), 1, aux_sym_expr_binary_parenthesized_token16, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3443), 1, + STATE(3180), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6397), 2, + ACTIONS(6184), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6399), 2, + ACTIONS(6186), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6405), 2, + ACTIONS(6192), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6401), 4, + ACTIONS(6188), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6403), 6, + ACTIONS(6190), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5341), 13, + ACTIONS(5206), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -342458,53 +318014,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [126162] = 16, + [122376] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5472), 1, + ACTIONS(5309), 1, sym__newline, - ACTIONS(6381), 1, + ACTIONS(6168), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6383), 1, + ACTIONS(6170), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6385), 1, + ACTIONS(6172), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6387), 1, + ACTIONS(6174), 1, aux_sym_expr_binary_parenthesized_token16, - STATE(3444), 1, + STATE(3181), 1, sym_comment, - STATE(3473), 1, + STATE(3208), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6371), 2, + ACTIONS(6158), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6373), 2, + ACTIONS(6160), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6379), 2, + ACTIONS(6166), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6375), 4, + ACTIONS(6162), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6377), 6, + ACTIONS(6164), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5349), 13, + ACTIONS(5210), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -342518,55 +318074,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [126238] = 17, + [122452] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5339), 1, + ACTIONS(5204), 1, sym__newline, - ACTIONS(6407), 1, + ACTIONS(6194), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6409), 1, + ACTIONS(6196), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6411), 1, + ACTIONS(6198), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6413), 1, + ACTIONS(6200), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6415), 1, + ACTIONS(6202), 1, aux_sym_expr_binary_parenthesized_token17, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3445), 1, + STATE(3182), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6397), 2, + ACTIONS(6184), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6399), 2, + ACTIONS(6186), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6405), 2, + ACTIONS(6192), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6401), 4, + ACTIONS(6188), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6403), 6, + ACTIONS(6190), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5341), 12, + ACTIONS(5206), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -342579,55 +318135,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token18, - [126316] = 17, + [122530] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(5295), 1, sym__newline, - ACTIONS(6381), 1, + ACTIONS(6168), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6383), 1, + ACTIONS(6170), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6385), 1, + ACTIONS(6172), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6387), 1, + ACTIONS(6174), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6389), 1, + ACTIONS(6176), 1, aux_sym_expr_binary_parenthesized_token17, - STATE(3446), 1, + STATE(3183), 1, sym_comment, - STATE(3474), 1, + STATE(3209), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6371), 2, + ACTIONS(6158), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6373), 2, + ACTIONS(6160), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6379), 2, + ACTIONS(6166), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6375), 4, + ACTIONS(6162), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6377), 6, + ACTIONS(6164), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5349), 12, + ACTIONS(5210), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -342640,37 +318196,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token18, - [126394] = 10, + [122608] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5339), 1, + ACTIONS(5204), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3447), 1, + STATE(3184), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6397), 2, + ACTIONS(6184), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6399), 2, + ACTIONS(6186), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6403), 6, + ACTIONS(6190), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5341), 23, + ACTIONS(5206), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -342694,37 +318250,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - [126458] = 10, + [122672] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5472), 1, + ACTIONS(5309), 1, sym__newline, - STATE(3448), 1, + STATE(3185), 1, sym_comment, - STATE(3475), 1, + STATE(3210), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6371), 2, + ACTIONS(6158), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6373), 2, + ACTIONS(6160), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6377), 6, + ACTIONS(6164), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5349), 23, + ACTIONS(5210), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -342748,30 +318304,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - [126522] = 9, + [122736] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5339), 1, + ACTIONS(5204), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3449), 1, + STATE(3186), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6397), 2, + ACTIONS(6184), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6399), 2, + ACTIONS(6186), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5341), 29, + ACTIONS(5206), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -342801,30 +318357,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [126584] = 9, + [122798] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5472), 1, + ACTIONS(5309), 1, sym__newline, - STATE(3450), 1, + STATE(3187), 1, sym_comment, - STATE(3476), 1, + STATE(3211), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6371), 2, + ACTIONS(6158), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6373), 2, + ACTIONS(6160), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5349), 29, + ACTIONS(5210), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -342854,19 +318410,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [126646] = 6, + [122860] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5402), 1, + ACTIONS(5320), 1, sym__newline, - STATE(3451), 1, + STATE(3188), 1, sym_comment, - STATE(3477), 1, + STATE(3212), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5357), 37, + ACTIONS(5156), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -342904,24 +318460,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [126702] = 7, + [122916] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5402), 1, + ACTIONS(5320), 1, sym__newline, - STATE(3452), 1, + STATE(3189), 1, sym_comment, - STATE(3479), 1, + STATE(3214), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5357), 33, + ACTIONS(5156), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -342955,27 +318511,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [126760] = 8, + [122974] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5402), 1, + ACTIONS(5320), 1, sym__newline, - STATE(3453), 1, + STATE(3190), 1, sym_comment, - STATE(3481), 1, + STATE(3216), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6371), 2, + ACTIONS(6158), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5357), 31, + ACTIONS(5156), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -343007,42 +318563,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [126820] = 11, + [123034] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5402), 1, + ACTIONS(5320), 1, sym__newline, - STATE(3454), 1, + STATE(3191), 1, sym_comment, - STATE(3483), 1, + STATE(3218), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6371), 2, + ACTIONS(6158), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6373), 2, + ACTIONS(6160), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6375), 4, + ACTIONS(6162), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6377), 6, + ACTIONS(6164), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5357), 19, + ACTIONS(5156), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -343062,162 +318618,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [126886] = 12, + [123100] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5402), 1, + ACTIONS(5320), 1, sym__newline, - STATE(3455), 1, - sym_comment, - STATE(3485), 1, - aux_sym_shebang_repeat1, - ACTIONS(6331), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6371), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6373), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6379), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6369), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6375), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6377), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5357), 17, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [126954] = 13, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5402), 1, - sym__newline, - ACTIONS(6381), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(3456), 1, - sym_comment, - STATE(3487), 1, - aux_sym_shebang_repeat1, - ACTIONS(6331), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6371), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6373), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6379), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6369), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6375), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6377), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5357), 16, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [127024] = 14, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5402), 1, - sym__newline, - ACTIONS(6381), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6383), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(3457), 1, + STATE(3192), 1, sym_comment, - STATE(3489), 1, + STATE(3220), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6371), 2, + ACTIONS(6158), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6373), 2, + ACTIONS(6160), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6379), 2, + ACTIONS(6166), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6375), 4, + ACTIONS(6162), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6377), 6, + ACTIONS(6164), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5357), 15, + ACTIONS(5156), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -343229,55 +318668,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [127096] = 15, + [123168] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5402), 1, + ACTIONS(5320), 1, sym__newline, - ACTIONS(6381), 1, + ACTIONS(6168), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6383), 1, + STATE(3193), 1, + sym_comment, + STATE(3222), 1, + aux_sym_shebang_repeat1, + ACTIONS(6154), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6158), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6160), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6166), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6156), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6162), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6164), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5156), 16, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6385), 1, aux_sym_expr_binary_parenthesized_token15, - STATE(3458), 1, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [123238] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5320), 1, + sym__newline, + ACTIONS(6168), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6170), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(3194), 1, sym_comment, - STATE(3491), 1, + STATE(3224), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6371), 2, + ACTIONS(6158), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6373), 2, + ACTIONS(6160), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6379), 2, + ACTIONS(6166), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6375), 4, + ACTIONS(6162), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6377), 6, + ACTIONS(6164), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5357), 14, + ACTIONS(5156), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -343289,56 +318785,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [127170] = 16, + [123310] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5402), 1, + ACTIONS(5320), 1, sym__newline, - ACTIONS(6381), 1, + ACTIONS(6168), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6383), 1, + ACTIONS(6170), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6385), 1, + ACTIONS(6172), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6387), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(3459), 1, + STATE(3195), 1, sym_comment, - STATE(3493), 1, + STATE(3226), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6371), 2, + ACTIONS(6158), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6373), 2, + ACTIONS(6160), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6379), 2, + ACTIONS(6166), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6375), 4, + ACTIONS(6162), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6377), 6, + ACTIONS(6164), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5357), 13, + ACTIONS(5156), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -343350,57 +318845,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [127246] = 17, + [123384] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(5320), 1, sym__newline, - ACTIONS(6381), 1, + ACTIONS(6168), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6383), 1, + ACTIONS(6170), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6385), 1, + ACTIONS(6172), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6387), 1, + ACTIONS(6174), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6389), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(3460), 1, + STATE(3196), 1, sym_comment, - STATE(3495), 1, + STATE(3228), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6371), 2, + ACTIONS(6158), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6373), 2, + ACTIONS(6160), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6379), 2, + ACTIONS(6166), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6375), 4, + ACTIONS(6162), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6377), 6, + ACTIONS(6164), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5357), 12, + ACTIONS(5156), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -343412,15 +318906,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [127324] = 4, - ACTIONS(3), 1, + [123460] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5071), 1, - aux_sym_cmd_identifier_token37, - STATE(3461), 1, + ACTIONS(4712), 1, + aux_sym_unquoted_token2, + STATE(3197), 1, sym_comment, - ACTIONS(2133), 40, + ACTIONS(1587), 40, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -343461,37 +318956,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [127376] = 10, + [123512] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5402), 1, + ACTIONS(5320), 1, sym__newline, - STATE(3462), 1, + STATE(3198), 1, sym_comment, - STATE(3497), 1, + STATE(3232), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6371), 2, + ACTIONS(6158), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6373), 2, + ACTIONS(6160), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6377), 6, + ACTIONS(6164), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5357), 23, + ACTIONS(5156), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -343515,78 +319010,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - [127440] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5071), 1, - aux_sym_cmd_identifier_token37, - STATE(3463), 1, - sym_comment, - ACTIONS(2093), 40, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [127492] = 9, + [123576] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5402), 1, + ACTIONS(5320), 1, sym__newline, - STATE(3464), 1, + STATE(3199), 1, sym_comment, - STATE(3499), 1, + STATE(3234), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6371), 2, + ACTIONS(6158), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6373), 2, + ACTIONS(6160), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5357), 29, + ACTIONS(5156), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -343616,19 +319063,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [127554] = 6, + [123638] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5280), 1, + ACTIONS(5142), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3465), 1, + STATE(3200), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5282), 37, + ACTIONS(5144), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -343666,24 +319113,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [127610] = 7, + [123694] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5280), 1, + ACTIONS(5142), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3466), 1, + STATE(3201), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5282), 33, + ACTIONS(5144), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -343717,27 +319164,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [127668] = 8, + [123752] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5280), 1, + ACTIONS(5142), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3467), 1, + STATE(3202), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6397), 2, + ACTIONS(6184), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5282), 31, + ACTIONS(5144), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -343769,42 +319216,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [127728] = 11, + [123812] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5280), 1, + ACTIONS(5142), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3468), 1, + STATE(3203), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6397), 2, + ACTIONS(6184), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6399), 2, + ACTIONS(6186), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6401), 4, + ACTIONS(6188), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6403), 6, + ACTIONS(6190), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5282), 19, + ACTIONS(5144), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -343824,45 +319271,162 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [127794] = 12, + [123878] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5280), 1, + ACTIONS(5142), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3469), 1, + STATE(3204), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6397), 2, + ACTIONS(6184), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6399), 2, + ACTIONS(6186), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6405), 2, + ACTIONS(6192), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6182), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6188), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6190), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5144), 17, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [123946] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5142), 1, + sym__newline, + ACTIONS(6194), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(2062), 1, + aux_sym_shebang_repeat1, + STATE(3205), 1, + sym_comment, + ACTIONS(6180), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6184), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6186), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6192), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6182), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6188), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6190), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5144), 16, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [124016] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5142), 1, + sym__newline, + ACTIONS(6194), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6196), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(2062), 1, + aux_sym_shebang_repeat1, + STATE(3206), 1, + sym_comment, + ACTIONS(6180), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6184), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6186), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6192), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6401), 4, + ACTIONS(6188), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6403), 6, + ACTIONS(6190), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5282), 17, + ACTIONS(5144), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -343874,53 +319438,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [127862] = 13, + [124088] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5280), 1, + ACTIONS(5142), 1, sym__newline, - ACTIONS(6407), 1, + ACTIONS(6194), 1, aux_sym_expr_binary_parenthesized_token13, - STATE(2192), 1, + ACTIONS(6196), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6198), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3470), 1, + STATE(3207), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6397), 2, + ACTIONS(6184), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6399), 2, + ACTIONS(6186), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6405), 2, + ACTIONS(6192), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6401), 4, + ACTIONS(6188), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6403), 6, + ACTIONS(6190), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5282), 16, + ACTIONS(5144), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -343932,54 +319498,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [127932] = 14, + [124162] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5280), 1, + ACTIONS(5142), 1, sym__newline, - ACTIONS(6407), 1, + ACTIONS(6194), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6409), 1, + ACTIONS(6196), 1, aux_sym_expr_binary_parenthesized_token14, - STATE(2192), 1, + ACTIONS(6198), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6200), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3471), 1, + STATE(3208), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6397), 2, + ACTIONS(6184), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6399), 2, + ACTIONS(6186), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6405), 2, + ACTIONS(6192), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6401), 4, + ACTIONS(6188), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6403), 6, + ACTIONS(6190), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5282), 15, + ACTIONS(5144), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -343991,55 +319559,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [128004] = 15, + [124238] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5280), 1, + ACTIONS(5142), 1, sym__newline, - ACTIONS(6407), 1, + ACTIONS(6194), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6409), 1, + ACTIONS(6196), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6411), 1, + ACTIONS(6198), 1, aux_sym_expr_binary_parenthesized_token15, - STATE(2192), 1, + ACTIONS(6200), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6202), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3472), 1, + STATE(3209), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6397), 2, + ACTIONS(6184), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6399), 2, + ACTIONS(6186), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6405), 2, + ACTIONS(6192), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6401), 4, + ACTIONS(6188), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6403), 6, + ACTIONS(6190), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5282), 14, + ACTIONS(5144), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -344051,56 +319621,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [128078] = 16, + [124316] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5280), 1, + ACTIONS(5142), 1, sym__newline, - ACTIONS(6407), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6409), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6411), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6413), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3473), 1, + STATE(3210), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6397), 2, + ACTIONS(6184), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6399), 2, + ACTIONS(6186), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6405), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6401), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6403), 6, + ACTIONS(6190), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5282), 13, + ACTIONS(5144), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -344112,100 +319664,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [128154] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5280), 1, - sym__newline, - ACTIONS(6407), 1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6409), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6411), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6413), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6415), 1, aux_sym_expr_binary_parenthesized_token17, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(3474), 1, - sym_comment, - ACTIONS(6393), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6397), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6399), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6405), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6395), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6401), 4, + aux_sym_expr_binary_parenthesized_token18, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6403), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5282), 12, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token18, - [128232] = 10, + [124380] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5280), 1, + ACTIONS(5142), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3475), 1, + STATE(3211), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6397), 2, + ACTIONS(6184), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6399), 2, + ACTIONS(6186), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6403), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5282), 23, + ACTIONS(5144), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -344229,30 +319723,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - [128296] = 9, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [124442] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5280), 1, + ACTIONS(5190), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3476), 1, + STATE(3212), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6397), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6399), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6395), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5282), 29, + ACTIONS(5192), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -344264,6 +319753,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -344282,19 +319779,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [128358] = 6, + [124498] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5288), 1, + ACTIONS(5232), 1, sym__newline, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(3477), 1, + STATE(3213), 1, sym_comment, - ACTIONS(6393), 2, + STATE(3236), 1, + aux_sym_shebang_repeat1, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5290), 37, + ACTIONS(5202), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -344332,71 +319829,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [128414] = 3, + [124554] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(3478), 1, - sym_comment, - ACTIONS(6417), 41, + ACTIONS(5190), 1, sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - [128464] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5288), 1, - sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3479), 1, + STATE(3214), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5290), 33, + ACTIONS(5192), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -344430,24 +319880,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [128522] = 7, + [124612] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5387), 1, + ACTIONS(5232), 1, sym__newline, - STATE(3480), 1, + STATE(3215), 1, sym_comment, - STATE(3502), 1, + STATE(3237), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5298), 33, + ACTIONS(5202), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -344481,27 +319931,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [128580] = 8, + [124670] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5288), 1, + ACTIONS(5190), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3481), 1, + STATE(3216), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6397), 2, + ACTIONS(6184), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5290), 31, + ACTIONS(5192), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -344533,27 +319983,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [128640] = 8, + [124730] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5387), 1, + ACTIONS(5232), 1, sym__newline, - STATE(3482), 1, + STATE(3217), 1, sym_comment, - STATE(3503), 1, + STATE(3238), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6371), 2, + ACTIONS(6158), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5298), 31, + ACTIONS(5202), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -344585,42 +320035,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [128700] = 11, + [124790] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5288), 1, + ACTIONS(5190), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3483), 1, + STATE(3218), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6397), 2, + ACTIONS(6184), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6399), 2, + ACTIONS(6186), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6401), 4, + ACTIONS(6188), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6403), 6, + ACTIONS(6190), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5290), 19, + ACTIONS(5192), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -344640,42 +320090,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [128766] = 11, + [124856] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5387), 1, + ACTIONS(5232), 1, sym__newline, - STATE(3484), 1, + STATE(3219), 1, sym_comment, - STATE(3504), 1, + STATE(3239), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6371), 2, + ACTIONS(6158), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6373), 2, + ACTIONS(6160), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6375), 4, + ACTIONS(6162), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6377), 6, + ACTIONS(6164), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5298), 19, + ACTIONS(5202), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -344695,45 +320145,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [128832] = 12, + [124922] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5288), 1, + ACTIONS(5190), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3485), 1, + STATE(3220), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6397), 2, + ACTIONS(6184), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6399), 2, + ACTIONS(6186), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6405), 2, + ACTIONS(6192), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6401), 4, + ACTIONS(6188), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6403), 6, + ACTIONS(6190), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5290), 17, + ACTIONS(5192), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -344751,45 +320201,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [128900] = 12, + [124990] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5387), 1, + ACTIONS(5232), 1, sym__newline, - STATE(3486), 1, + STATE(3221), 1, sym_comment, - STATE(3505), 1, + STATE(3240), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6371), 2, + ACTIONS(6158), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6373), 2, + ACTIONS(6160), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6379), 2, + ACTIONS(6166), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6375), 4, + ACTIONS(6162), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6377), 6, + ACTIONS(6164), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5298), 17, + ACTIONS(5202), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -344807,47 +320257,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [128968] = 13, + [125058] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5288), 1, + ACTIONS(5190), 1, sym__newline, - ACTIONS(6407), 1, + ACTIONS(6194), 1, aux_sym_expr_binary_parenthesized_token13, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3487), 1, + STATE(3222), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6397), 2, + ACTIONS(6184), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6399), 2, + ACTIONS(6186), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6405), 2, + ACTIONS(6192), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6401), 4, + ACTIONS(6188), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6403), 6, + ACTIONS(6190), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5290), 16, + ACTIONS(5192), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -344864,47 +320314,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [129038] = 13, + [125128] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5387), 1, + ACTIONS(5232), 1, sym__newline, - ACTIONS(6381), 1, + ACTIONS(6168), 1, aux_sym_expr_binary_parenthesized_token13, - STATE(3488), 1, + STATE(3223), 1, sym_comment, - STATE(3506), 1, + STATE(3241), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6371), 2, + ACTIONS(6158), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6373), 2, + ACTIONS(6160), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6379), 2, + ACTIONS(6166), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6375), 4, + ACTIONS(6162), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6377), 6, + ACTIONS(6164), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5298), 16, + ACTIONS(5202), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -344921,49 +320371,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [129108] = 14, + [125198] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5288), 1, + ACTIONS(5190), 1, sym__newline, - ACTIONS(6407), 1, + ACTIONS(6194), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6409), 1, + ACTIONS(6196), 1, aux_sym_expr_binary_parenthesized_token14, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3489), 1, + STATE(3224), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6397), 2, + ACTIONS(6184), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6399), 2, + ACTIONS(6186), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6405), 2, + ACTIONS(6192), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6401), 4, + ACTIONS(6188), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6403), 6, + ACTIONS(6190), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5290), 15, + ACTIONS(5192), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -344979,49 +320429,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [129180] = 14, + [125270] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5387), 1, + ACTIONS(5232), 1, sym__newline, - ACTIONS(6381), 1, + ACTIONS(6168), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6383), 1, + ACTIONS(6170), 1, aux_sym_expr_binary_parenthesized_token14, - STATE(3490), 1, + STATE(3225), 1, sym_comment, - STATE(3507), 1, + STATE(3242), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6371), 2, + ACTIONS(6158), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6373), 2, + ACTIONS(6160), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6379), 2, + ACTIONS(6166), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6375), 4, + ACTIONS(6162), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6377), 6, + ACTIONS(6164), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5298), 15, + ACTIONS(5202), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -345037,51 +320487,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [129252] = 15, + [125342] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5288), 1, + ACTIONS(5190), 1, sym__newline, - ACTIONS(6407), 1, + ACTIONS(6194), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6409), 1, + ACTIONS(6196), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6411), 1, + ACTIONS(6198), 1, aux_sym_expr_binary_parenthesized_token15, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3491), 1, + STATE(3226), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6397), 2, + ACTIONS(6184), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6399), 2, + ACTIONS(6186), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6405), 2, + ACTIONS(6192), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6401), 4, + ACTIONS(6188), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6403), 6, + ACTIONS(6190), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5290), 14, + ACTIONS(5192), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -345096,51 +320546,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [129326] = 15, + [125416] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5387), 1, + ACTIONS(5232), 1, sym__newline, - ACTIONS(6381), 1, + ACTIONS(6168), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6383), 1, + ACTIONS(6170), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6385), 1, + ACTIONS(6172), 1, aux_sym_expr_binary_parenthesized_token15, - STATE(3492), 1, + STATE(3227), 1, sym_comment, - STATE(3508), 1, + STATE(3243), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6371), 2, + ACTIONS(6158), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6373), 2, + ACTIONS(6160), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6379), 2, + ACTIONS(6166), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6375), 4, + ACTIONS(6162), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6377), 6, + ACTIONS(6164), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5298), 14, + ACTIONS(5202), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -345155,53 +320605,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [129400] = 16, + [125490] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5288), 1, + ACTIONS(5190), 1, sym__newline, - ACTIONS(6407), 1, + ACTIONS(6194), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6409), 1, + ACTIONS(6196), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6411), 1, + ACTIONS(6198), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6413), 1, + ACTIONS(6200), 1, aux_sym_expr_binary_parenthesized_token16, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3493), 1, + STATE(3228), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6397), 2, + ACTIONS(6184), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6399), 2, + ACTIONS(6186), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6405), 2, + ACTIONS(6192), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6401), 4, + ACTIONS(6188), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6403), 6, + ACTIONS(6190), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5290), 13, + ACTIONS(5192), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -345215,53 +320665,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [129476] = 16, + [125566] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5387), 1, + ACTIONS(5232), 1, sym__newline, - ACTIONS(6381), 1, + ACTIONS(6168), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6383), 1, + ACTIONS(6170), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6385), 1, + ACTIONS(6172), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6387), 1, + ACTIONS(6174), 1, aux_sym_expr_binary_parenthesized_token16, - STATE(3494), 1, + STATE(3229), 1, sym_comment, - STATE(3509), 1, + STATE(3244), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6371), 2, + ACTIONS(6158), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6373), 2, + ACTIONS(6160), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6379), 2, + ACTIONS(6166), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6375), 4, + ACTIONS(6162), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6377), 6, + ACTIONS(6164), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5298), 13, + ACTIONS(5202), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -345275,55 +320725,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [129552] = 17, + [125642] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5288), 1, + ACTIONS(5190), 1, sym__newline, - ACTIONS(6407), 1, + ACTIONS(6194), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6409), 1, + ACTIONS(6196), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6411), 1, + ACTIONS(6198), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6413), 1, + ACTIONS(6200), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6415), 1, + ACTIONS(6202), 1, aux_sym_expr_binary_parenthesized_token17, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3495), 1, + STATE(3230), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6397), 2, + ACTIONS(6184), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6399), 2, + ACTIONS(6186), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6405), 2, + ACTIONS(6192), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6401), 4, + ACTIONS(6188), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6403), 6, + ACTIONS(6190), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5290), 12, + ACTIONS(5192), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -345336,55 +320786,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token18, - [129630] = 17, + [125720] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(5295), 1, sym__newline, - ACTIONS(6381), 1, + ACTIONS(6168), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6383), 1, + ACTIONS(6170), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6385), 1, + ACTIONS(6172), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6387), 1, + ACTIONS(6174), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6389), 1, + ACTIONS(6176), 1, aux_sym_expr_binary_parenthesized_token17, - STATE(3496), 1, + STATE(3231), 1, sym_comment, - STATE(3510), 1, + STATE(3245), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6371), 2, + ACTIONS(6158), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6373), 2, + ACTIONS(6160), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6379), 2, + ACTIONS(6166), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6375), 4, + ACTIONS(6162), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6377), 6, + ACTIONS(6164), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5298), 12, + ACTIONS(5202), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -345397,37 +320847,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token18, - [129708] = 10, + [125798] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5288), 1, + ACTIONS(5190), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3497), 1, + STATE(3232), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6397), 2, + ACTIONS(6184), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6399), 2, + ACTIONS(6186), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6403), 6, + ACTIONS(6190), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5290), 23, + ACTIONS(5192), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -345451,37 +320901,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - [129772] = 10, + [125862] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5387), 1, + ACTIONS(5232), 1, sym__newline, - STATE(3498), 1, + STATE(3233), 1, sym_comment, - STATE(3511), 1, + STATE(3246), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6371), 2, + ACTIONS(6158), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6373), 2, + ACTIONS(6160), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6377), 6, + ACTIONS(6164), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5298), 23, + ACTIONS(5202), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -345505,30 +320955,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - [129836] = 9, + [125926] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5288), 1, + ACTIONS(5190), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3499), 1, + STATE(3234), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6397), 2, + ACTIONS(6184), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6399), 2, + ACTIONS(6186), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5290), 29, + ACTIONS(5192), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -345558,30 +321008,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [129898] = 9, + [125988] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5387), 1, + ACTIONS(5232), 1, sym__newline, - STATE(3500), 1, + STATE(3235), 1, sym_comment, - STATE(3512), 1, + STATE(3247), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + ACTIONS(6154), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6371), 2, + ACTIONS(6158), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6373), 2, + ACTIONS(6160), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6369), 4, + ACTIONS(6156), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5298), 29, + ACTIONS(5202), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -345611,19 +321061,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [129960] = 6, + [126050] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5308), 1, + ACTIONS(5178), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3501), 1, + STATE(3236), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5310), 37, + ACTIONS(5180), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -345661,24 +321111,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [130016] = 7, + [126106] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5308), 1, + ACTIONS(5178), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3502), 1, + STATE(3237), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5310), 33, + ACTIONS(5180), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -345712,27 +321162,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [130074] = 8, + [126164] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5308), 1, + ACTIONS(5178), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3503), 1, + STATE(3238), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6397), 2, + ACTIONS(6184), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5310), 31, + ACTIONS(5180), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -345764,42 +321214,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [130134] = 11, + [126224] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5308), 1, + ACTIONS(5178), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3504), 1, + STATE(3239), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6397), 2, + ACTIONS(6184), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6399), 2, + ACTIONS(6186), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6401), 4, + ACTIONS(6188), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6403), 6, + ACTIONS(6190), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5310), 19, + ACTIONS(5180), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -345819,45 +321269,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [130200] = 12, + [126290] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5308), 1, + ACTIONS(5178), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3505), 1, + STATE(3240), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6397), 2, + ACTIONS(6184), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6399), 2, + ACTIONS(6186), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6405), 2, + ACTIONS(6192), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6401), 4, + ACTIONS(6188), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6403), 6, + ACTIONS(6190), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5310), 17, + ACTIONS(5180), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -345875,47 +321325,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [130268] = 13, + [126358] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5308), 1, + ACTIONS(5178), 1, sym__newline, - ACTIONS(6407), 1, + ACTIONS(6194), 1, aux_sym_expr_binary_parenthesized_token13, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3506), 1, + STATE(3241), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6397), 2, + ACTIONS(6184), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6399), 2, + ACTIONS(6186), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6405), 2, + ACTIONS(6192), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6401), 4, + ACTIONS(6188), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6403), 6, + ACTIONS(6190), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5310), 16, + ACTIONS(5180), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -345932,49 +321382,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [130338] = 14, + [126428] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5308), 1, + ACTIONS(5178), 1, sym__newline, - ACTIONS(6407), 1, + ACTIONS(6194), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6409), 1, + ACTIONS(6196), 1, aux_sym_expr_binary_parenthesized_token14, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3507), 1, + STATE(3242), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6397), 2, + ACTIONS(6184), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6399), 2, + ACTIONS(6186), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6405), 2, + ACTIONS(6192), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6401), 4, + ACTIONS(6188), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6403), 6, + ACTIONS(6190), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5310), 15, + ACTIONS(5180), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -345990,51 +321440,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [130410] = 15, + [126500] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5308), 1, + ACTIONS(5178), 1, sym__newline, - ACTIONS(6407), 1, + ACTIONS(6194), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6409), 1, + ACTIONS(6196), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6411), 1, + ACTIONS(6198), 1, aux_sym_expr_binary_parenthesized_token15, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3508), 1, + STATE(3243), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6397), 2, + ACTIONS(6184), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6399), 2, + ACTIONS(6186), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6405), 2, + ACTIONS(6192), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6401), 4, + ACTIONS(6188), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6403), 6, + ACTIONS(6190), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5310), 14, + ACTIONS(5180), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -346049,53 +321499,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [130484] = 16, + [126574] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5308), 1, + ACTIONS(5178), 1, sym__newline, - ACTIONS(6407), 1, + ACTIONS(6194), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6409), 1, + ACTIONS(6196), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6411), 1, + ACTIONS(6198), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6413), 1, + ACTIONS(6200), 1, aux_sym_expr_binary_parenthesized_token16, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3509), 1, + STATE(3244), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6397), 2, + ACTIONS(6184), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6399), 2, + ACTIONS(6186), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6405), 2, + ACTIONS(6192), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6401), 4, + ACTIONS(6188), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6403), 6, + ACTIONS(6190), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5310), 13, + ACTIONS(5180), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -346109,55 +321559,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [130560] = 17, + [126650] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5308), 1, + ACTIONS(5178), 1, sym__newline, - ACTIONS(6407), 1, + ACTIONS(6194), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6409), 1, + ACTIONS(6196), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6411), 1, + ACTIONS(6198), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6413), 1, + ACTIONS(6200), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6415), 1, + ACTIONS(6202), 1, aux_sym_expr_binary_parenthesized_token17, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3510), 1, + STATE(3245), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6397), 2, + ACTIONS(6184), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6399), 2, + ACTIONS(6186), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6405), 2, + ACTIONS(6192), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6401), 4, + ACTIONS(6188), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6403), 6, + ACTIONS(6190), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5310), 12, + ACTIONS(5180), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -346170,37 +321620,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token18, - [130638] = 10, + [126728] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5308), 1, + ACTIONS(5178), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3511), 1, + STATE(3246), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6397), 2, + ACTIONS(6184), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6399), 2, + ACTIONS(6186), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6403), 6, + ACTIONS(6190), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5310), 23, + ACTIONS(5180), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -346224,30 +321674,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - [130702] = 9, + [126792] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5308), 1, + ACTIONS(5178), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3512), 1, + STATE(3247), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6397), 2, + ACTIONS(6184), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6399), 2, + ACTIONS(6186), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6395), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5310), 29, + ACTIONS(5180), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -346277,14 +321727,313 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [130764] = 4, + [126854] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(6088), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6090), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6092), 1, + anon_sym_DOLLAR, + STATE(3248), 1, + sym_comment, + STATE(3486), 1, + sym__immediate_decimal, + ACTIONS(6094), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3369), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1479), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1493), 23, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [126920] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6063), 1, + anon_sym_list, + ACTIONS(6122), 1, + anon_sym_AT, + ACTIONS(6204), 1, + anon_sym_GT, + STATE(3249), 1, + sym_comment, + STATE(6802), 1, + sym__all_type, + STATE(7650), 1, + sym_param_cmd, + ACTIONS(6061), 2, + anon_sym_table, + anon_sym_record, + STATE(5573), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6059), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [126984] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4894), 1, + aux_sym_cmd_identifier_token37, + STATE(3250), 1, + sym_comment, + ACTIONS(2261), 40, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [127036] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4894), 1, + aux_sym_cmd_identifier_token37, + STATE(3251), 1, + sym_comment, + ACTIONS(2297), 40, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [127088] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3252), 1, + sym_comment, + ACTIONS(6206), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + [127138] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3253), 1, + sym_comment, + ACTIONS(6208), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + [127188] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5323), 1, aux_sym_cmd_identifier_token41, - STATE(3513), 1, + STATE(3254), 1, sym_comment, - ACTIONS(2101), 40, + ACTIONS(2247), 40, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -346325,14 +322074,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [130816] = 4, + [127240] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, + ACTIONS(5323), 1, aux_sym_cmd_identifier_token41, - STATE(3514), 1, + STATE(3255), 1, sym_comment, - ACTIONS(2107), 40, + ACTIONS(2253), 40, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -346373,12 +322122,167 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [130868] = 4, + [127292] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(3515), 1, + STATE(3256), 1, + sym_comment, + ACTIONS(6210), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + [127342] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3257), 1, + sym_comment, + ACTIONS(6212), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + [127392] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5295), 1, + sym__newline, + ACTIONS(6168), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6170), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6172), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6174), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6176), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(3230), 1, + aux_sym_shebang_repeat1, + STATE(3258), 1, + sym_comment, + ACTIONS(6154), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6158), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6160), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6166), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6156), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6162), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6164), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5156), 12, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token18, + [127470] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3259), 1, sym_comment, - ACTIONS(1953), 10, + ACTIONS(2133), 10, anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_err_GT, @@ -346389,7 +322293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1955), 31, + ACTIONS(2135), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -346402,7 +322306,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, anon_sym_if, aux_sym_ctrl_match_token1, @@ -346421,12 +322324,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [130920] = 4, + [127521] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(3516), 1, + ACTIONS(5095), 1, + sym__newline, + ACTIONS(6218), 1, + anon_sym_list, + STATE(3260), 1, + sym_comment, + STATE(3266), 1, + aux_sym_shebang_repeat1, + STATE(4599), 1, + sym__type_annotation, + ACTIONS(6216), 2, + anon_sym_table, + anon_sym_record, + STATE(4786), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6214), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [127582] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3261), 1, sym_comment, - ACTIONS(1943), 10, + ACTIONS(1631), 10, anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_err_GT, @@ -346437,7 +322392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1945), 31, + ACTIONS(1633), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -346450,7 +322405,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, anon_sym_if, aux_sym_ctrl_match_token1, @@ -346469,16 +322423,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [130972] = 5, - ACTIONS(3), 1, + [127633] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2131), 1, - sym__newline, - ACTIONS(4983), 1, - aux_sym_cmd_identifier_token37, - STATE(3517), 1, + STATE(3262), 1, sym_comment, - ACTIONS(2133), 39, + ACTIONS(1705), 10, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1707), 30, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -346490,44 +322452,229 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [131026] = 5, - ACTIONS(3), 1, + anon_sym_DASH_DASH, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [127684] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2089), 1, + ACTIONS(6220), 1, + anon_sym_DOT, + ACTIONS(6222), 1, + aux_sym__immediate_decimal_token2, + STATE(3263), 1, + sym_comment, + ACTIONS(1497), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1499), 35, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [127739] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3264), 1, + sym_comment, + ACTIONS(4976), 12, + ts_builtin_sym_end, sym__newline, - ACTIONS(4983), 1, - aux_sym_cmd_identifier_token37, - STATE(3518), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(2357), 28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [127790] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6224), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6226), 1, + aux_sym__immediate_decimal_token2, + STATE(3265), 1, + sym_comment, + ACTIONS(1517), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1519), 35, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [127845] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5095), 1, + sym__newline, + ACTIONS(6218), 1, + anon_sym_list, + STATE(690), 1, + aux_sym_shebang_repeat1, + STATE(3266), 1, + sym_comment, + STATE(4659), 1, + sym__type_annotation, + ACTIONS(6216), 2, + anon_sym_table, + anon_sym_record, + STATE(4786), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6214), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [127906] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3267), 1, sym_comment, - ACTIONS(2093), 39, + ACTIONS(2297), 40, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -346538,46 +322685,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [131080] = 3, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [127955] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(3519), 1, + STATE(3268), 1, sym_comment, - ACTIONS(6419), 41, + ACTIONS(2247), 40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [128004] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5095), 1, + sym__newline, + ACTIONS(6063), 1, + anon_sym_list, + STATE(3269), 1, + sym_comment, + STATE(3274), 1, + aux_sym_shebang_repeat1, + STATE(6940), 1, + sym__type_annotation, + ACTIONS(6061), 2, + anon_sym_table, + anon_sym_record, + STATE(6633), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6059), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -346607,23 +322809,62 @@ 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, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - [131130] = 5, + [128065] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3270), 1, + sym_comment, + ACTIONS(2253), 40, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [128114] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2097), 1, + ACTIONS(4979), 1, sym__newline, - ACTIONS(5335), 1, - aux_sym_cmd_identifier_token41, - STATE(3520), 1, + STATE(3271), 1, sym_comment, - ACTIONS(2101), 39, + ACTIONS(4976), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -346635,6 +322876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + ACTIONS(2357), 28, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -346663,16 +322905,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [131184] = 5, + [128167] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2105), 1, - sym__newline, - ACTIONS(5335), 1, - aux_sym_cmd_identifier_token41, - STATE(3521), 1, + STATE(3272), 1, sym_comment, - ACTIONS(2107), 39, + ACTIONS(1755), 10, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1757), 30, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -346684,45 +322934,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [131238] = 3, + anon_sym_DASH_DASH, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [128218] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3522), 1, + STATE(3273), 1, sym_comment, - ACTIONS(6421), 41, + ACTIONS(1643), 10, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1645), 30, sym__newline, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [128269] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5095), 1, + sym__newline, + ACTIONS(6063), 1, + anon_sym_list, + STATE(690), 1, + aux_sym_shebang_repeat1, + STATE(3274), 1, + sym_comment, + STATE(6740), 1, + sym__type_annotation, + ACTIONS(6061), 2, + anon_sym_table, + anon_sym_record, + STATE(6633), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6059), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -346752,33 +323049,29 @@ 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, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - [131288] = 8, + [128330] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6429), 1, + ACTIONS(5095), 1, + sym__newline, + ACTIONS(6218), 1, anon_sym_list, - STATE(7702), 1, - sym__one_type, - STATE(7846), 1, + STATE(3275), 1, + sym_comment, + STATE(3276), 1, + aux_sym_shebang_repeat1, + STATE(4703), 1, sym__type_annotation, - ACTIONS(6426), 2, + ACTIONS(6216), 2, anon_sym_table, anon_sym_record, - STATE(3523), 2, - sym_comment, - aux_sym__multiple_types_repeat2, - STATE(6391), 3, + STATE(4786), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6423), 31, + ACTIONS(6214), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -346810,27 +323103,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [131347] = 9, + [128391] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6296), 1, + ACTIONS(5095), 1, + sym__newline, + ACTIONS(6218), 1, anon_sym_list, - STATE(3523), 1, - aux_sym__multiple_types_repeat2, - STATE(3524), 1, + STATE(690), 1, + aux_sym_shebang_repeat1, + STATE(3276), 1, sym_comment, - STATE(7236), 1, - sym__one_type, - STATE(7846), 1, + STATE(4598), 1, sym__type_annotation, - ACTIONS(6294), 2, + ACTIONS(6216), 2, anon_sym_table, anon_sym_record, - STATE(6391), 3, + STATE(4786), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6292), 31, + ACTIONS(6214), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -346862,15 +323155,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [131408] = 4, + [128452] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3525), 1, + STATE(3277), 1, sym_comment, - ACTIONS(6432), 2, + ACTIONS(6228), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(3601), 38, + ACTIONS(4972), 38, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -346909,20 +323202,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [131459] = 5, + [128503] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3526), 1, + STATE(3278), 1, sym_comment, - ACTIONS(6432), 2, + ACTIONS(6228), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6434), 4, + ACTIONS(6230), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(3601), 34, + ACTIONS(4972), 34, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -346957,23 +323250,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [131512] = 6, + [128556] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3527), 1, + STATE(3279), 1, sym_comment, - ACTIONS(6432), 2, + ACTIONS(6228), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6436), 2, + ACTIONS(6232), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6434), 4, + ACTIONS(6230), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(3601), 32, + ACTIONS(4972), 32, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -347006,38 +323299,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [131567] = 9, + [128611] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(3528), 1, + STATE(3280), 1, sym_comment, - ACTIONS(6432), 2, + ACTIONS(6228), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6436), 2, + ACTIONS(6232), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6438), 2, + ACTIONS(6234), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6434), 4, + ACTIONS(6230), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6440), 4, + ACTIONS(6236), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6442), 6, + ACTIONS(6238), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(3601), 20, + ACTIONS(4972), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -347058,41 +323351,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - [131628] = 10, + [128672] = 10, ACTIONS(247), 1, anon_sym_POUND, - STATE(3529), 1, + STATE(3281), 1, sym_comment, - ACTIONS(6432), 2, + ACTIONS(6228), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6436), 2, + ACTIONS(6232), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6438), 2, + ACTIONS(6234), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6444), 2, + ACTIONS(6240), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6434), 4, + ACTIONS(6230), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6440), 4, + ACTIONS(6236), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6442), 6, + ACTIONS(6238), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(3601), 18, + ACTIONS(4972), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -347111,43 +323404,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - [131691] = 11, + [128735] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6446), 1, + ACTIONS(6242), 1, aux_sym_expr_binary_token13, - STATE(3530), 1, + STATE(3282), 1, sym_comment, - ACTIONS(6432), 2, + ACTIONS(6228), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6436), 2, + ACTIONS(6232), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6438), 2, + ACTIONS(6234), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6444), 2, + ACTIONS(6240), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6434), 4, + ACTIONS(6230), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6440), 4, + ACTIONS(6236), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6442), 6, + ACTIONS(6238), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(3601), 17, + ACTIONS(4972), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -347165,45 +323458,97 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - [131756] = 12, + [128800] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5095), 1, + sym__newline, + ACTIONS(6063), 1, + anon_sym_list, + STATE(690), 1, + aux_sym_shebang_repeat1, + STATE(3283), 1, + sym_comment, + STATE(6894), 1, + sym__type_annotation, + ACTIONS(6061), 2, + anon_sym_table, + anon_sym_record, + STATE(6633), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6059), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [128861] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6446), 1, + ACTIONS(6242), 1, aux_sym_expr_binary_token13, - ACTIONS(6448), 1, + ACTIONS(6244), 1, aux_sym_expr_binary_token14, - STATE(3531), 1, + STATE(3284), 1, sym_comment, - ACTIONS(6432), 2, + ACTIONS(6228), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6436), 2, + ACTIONS(6232), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6438), 2, + ACTIONS(6234), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6444), 2, + ACTIONS(6240), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6434), 4, + ACTIONS(6230), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6440), 4, + ACTIONS(6236), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6442), 6, + ACTIONS(6238), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(3601), 16, + ACTIONS(4972), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -347220,47 +323565,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - [131823] = 13, + [128928] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6446), 1, + ACTIONS(6242), 1, aux_sym_expr_binary_token13, - ACTIONS(6448), 1, + ACTIONS(6244), 1, aux_sym_expr_binary_token14, - ACTIONS(6450), 1, + ACTIONS(6246), 1, aux_sym_expr_binary_token15, - STATE(3532), 1, + STATE(3285), 1, sym_comment, - ACTIONS(6432), 2, + ACTIONS(6228), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6436), 2, + ACTIONS(6232), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6438), 2, + ACTIONS(6234), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6444), 2, + ACTIONS(6240), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6434), 4, + ACTIONS(6230), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6440), 4, + ACTIONS(6236), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6442), 6, + ACTIONS(6238), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(3601), 15, + ACTIONS(4972), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -347276,49 +323621,101 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - [131892] = 14, + [128997] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6063), 1, + anon_sym_list, + STATE(3286), 1, + sym_comment, + STATE(3289), 1, + aux_sym__multiple_types_repeat2, + STATE(7080), 1, + sym__one_type, + STATE(7508), 1, + sym__type_annotation, + ACTIONS(6061), 2, + anon_sym_table, + anon_sym_record, + STATE(6633), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6059), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [129058] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6446), 1, + ACTIONS(6242), 1, aux_sym_expr_binary_token13, - ACTIONS(6448), 1, + ACTIONS(6244), 1, aux_sym_expr_binary_token14, - ACTIONS(6450), 1, + ACTIONS(6246), 1, aux_sym_expr_binary_token15, - ACTIONS(6452), 1, + ACTIONS(6248), 1, aux_sym_expr_binary_token16, - STATE(3533), 1, + STATE(3287), 1, sym_comment, - ACTIONS(6432), 2, + ACTIONS(6228), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6436), 2, + ACTIONS(6232), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6438), 2, + ACTIONS(6234), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6444), 2, + ACTIONS(6240), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6434), 4, + ACTIONS(6230), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6440), 4, + ACTIONS(6236), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6442), 6, + ACTIONS(6238), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(3601), 14, + ACTIONS(4972), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -347333,51 +323730,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - [131963] = 15, + [129129] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6446), 1, + ACTIONS(6242), 1, aux_sym_expr_binary_token13, - ACTIONS(6448), 1, + ACTIONS(6244), 1, aux_sym_expr_binary_token14, - ACTIONS(6450), 1, + ACTIONS(6246), 1, aux_sym_expr_binary_token15, - ACTIONS(6452), 1, + ACTIONS(6248), 1, aux_sym_expr_binary_token16, - ACTIONS(6454), 1, + ACTIONS(6250), 1, aux_sym_expr_binary_token17, - STATE(3534), 1, + STATE(3288), 1, sym_comment, - ACTIONS(6432), 2, + ACTIONS(6228), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6436), 2, + ACTIONS(6232), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6438), 2, + ACTIONS(6234), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6444), 2, + ACTIONS(6240), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6434), 4, + ACTIONS(6230), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6440), 4, + ACTIONS(6236), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6442), 6, + ACTIONS(6238), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(3601), 13, + ACTIONS(4972), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -347391,33 +323788,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, aux_sym_expr_binary_token18, - [132036] = 8, + [129202] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3535), 1, + ACTIONS(6258), 1, + anon_sym_list, + STATE(7303), 1, + sym__one_type, + STATE(7508), 1, + sym__type_annotation, + ACTIONS(6255), 2, + anon_sym_table, + anon_sym_record, + STATE(3289), 2, + sym_comment, + aux_sym__multiple_types_repeat2, + STATE(6633), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6252), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [129261] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3290), 1, sym_comment, - ACTIONS(6432), 2, + ACTIONS(6228), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6436), 2, + ACTIONS(6232), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6438), 2, + ACTIONS(6234), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6434), 4, + ACTIONS(6230), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6442), 6, + ACTIONS(6238), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(3601), 24, + ACTIONS(4972), 24, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -347442,26 +323890,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - [132095] = 7, + [129320] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(3536), 1, + STATE(3291), 1, sym_comment, - ACTIONS(6432), 2, + ACTIONS(6228), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6436), 2, + ACTIONS(6232), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6438), 2, + ACTIONS(6234), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6434), 4, + ACTIONS(6230), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(3601), 30, + ACTIONS(4972), 30, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -347492,17 +323940,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [132152] = 6, + [129377] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6327), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6456), 1, - anon_sym_DOT, - STATE(3537), 1, + ACTIONS(6063), 1, + anon_sym_list, + STATE(3289), 1, + aux_sym__multiple_types_repeat2, + STATE(3292), 1, sym_comment, - ACTIONS(1589), 9, + STATE(6941), 1, + sym__one_type, + STATE(7508), 1, + sym__type_annotation, + ACTIONS(6061), 2, + anon_sym_table, + anon_sym_record, + STATE(6633), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6059), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [129438] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3293), 1, + sym_comment, + ACTIONS(2019), 10, anon_sym_DASH, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -347511,7 +324008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1591), 29, + ACTIONS(2021), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347524,7 +324021,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, anon_sym_if, aux_sym_ctrl_match_token1, @@ -347533,6 +324029,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -347541,62 +324039,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [132207] = 6, + [129489] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6458), 1, + ACTIONS(5095), 1, + sym__newline, + ACTIONS(6063), 1, + anon_sym_list, + STATE(3283), 1, + aux_sym_shebang_repeat1, + STATE(3294), 1, + sym_comment, + STATE(6997), 1, + sym__type_annotation, + ACTIONS(6061), 2, + anon_sym_table, + anon_sym_record, + STATE(6633), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6059), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [129550] = 22, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3215), 1, + aux_sym_record_entry_token1, + ACTIONS(3263), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3265), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3267), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3269), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3704), 1, + aux_sym_unquoted_token1, + ACTIONS(4091), 1, + anon_sym_DOT_DOT, + ACTIONS(5689), 1, + sym_val_date, + ACTIONS(6092), 1, + anon_sym_DOLLAR, + STATE(3295), 1, + sym_comment, + STATE(5839), 1, + sym_val_variable, + STATE(5842), 1, + sym_unquoted, + STATE(5847), 1, + sym__val_number_decimal, + STATE(7502), 1, + sym__unquoted_anonymous_prefix, + STATE(7703), 1, + sym_val_bool, + STATE(7774), 1, + sym__val_range, + ACTIONS(3243), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4093), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5683), 3, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(2573), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2575), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [129636] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6261), 1, + anon_sym_DOT, + ACTIONS(6263), 1, + aux_sym__immediate_decimal_token2, + STATE(3296), 1, + sym_comment, + ACTIONS(1497), 11, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(1499), 26, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [129690] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6265), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6460), 1, + ACTIONS(6267), 1, aux_sym__immediate_decimal_token2, - STATE(3538), 1, + STATE(3297), 1, sym_comment, - ACTIONS(1481), 3, + ACTIONS(1517), 11, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, aux_sym_unquoted_token2, - ACTIONS(1483), 35, - anon_sym_DASH_DASH, + ACTIONS(1519), 26, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, sym_filesize_unit, sym_duration_unit, - [132262] = 4, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [129744] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3539), 1, + ACTIONS(6114), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6269), 1, + anon_sym_DOT, + STATE(3298), 1, sym_comment, - ACTIONS(3537), 12, - ts_builtin_sym_end, + ACTIONS(1643), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1645), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347608,7 +324282,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(2317), 28, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [129798] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6271), 1, + anon_sym_DOT, + ACTIONS(6273), 1, + aux_sym__immediate_decimal_token2, + STATE(3299), 1, + sym_comment, + ACTIONS(1497), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1499), 35, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -347637,24 +324343,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [132313] = 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [129852] = 11, ACTIONS(247), 1, anon_sym_POUND, - STATE(3540), 1, + ACTIONS(1575), 1, + anon_sym_DASH, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + ACTIONS(4610), 1, + anon_sym_DOT_DOT2, + ACTIONS(4618), 1, + aux_sym_unquoted_token2, + ACTIONS(6275), 1, + sym_filesize_unit, + ACTIONS(6277), 1, + sym_duration_unit, + STATE(3300), 1, sym_comment, - ACTIONS(2093), 40, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + STATE(7411), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4612), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1587), 30, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -347683,22 +324400,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [132362] = 6, + [129916] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6462), 1, - anon_sym_DOT, - ACTIONS(6464), 1, + ACTIONS(6279), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6281), 1, aux_sym__immediate_decimal_token2, - STATE(3541), 1, + STATE(3301), 1, sym_comment, - ACTIONS(1473), 2, + ACTIONS(1517), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1475), 36, - sym__newline, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1519), 35, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -347732,69 +324448,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [132417] = 3, + [129970] = 22, ACTIONS(247), 1, anon_sym_POUND, - STATE(3542), 1, + ACTIONS(3213), 1, + aux_sym_record_entry_token1, + ACTIONS(3263), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3265), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3267), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3269), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3704), 1, + aux_sym_unquoted_token1, + ACTIONS(4091), 1, + anon_sym_DOT_DOT, + ACTIONS(5689), 1, + sym_val_date, + ACTIONS(6092), 1, + anon_sym_DOLLAR, + STATE(3302), 1, sym_comment, - ACTIONS(2101), 40, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [132466] = 6, + STATE(5839), 1, + sym_val_variable, + STATE(5842), 1, + sym_unquoted, + STATE(5847), 1, + sym__val_number_decimal, + STATE(7502), 1, + sym__unquoted_anonymous_prefix, + STATE(7703), 1, + sym_val_bool, + STATE(7774), 1, + sym__val_range, + ACTIONS(3243), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4093), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5683), 3, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(2573), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2575), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [130056] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6466), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6468), 1, - aux_sym__immediate_decimal_token2, - STATE(3543), 1, + ACTIONS(6283), 1, + anon_sym_DOT, + STATE(3303), 1, sym_comment, - ACTIONS(1481), 2, + STATE(3320), 1, + aux_sym_cell_path_repeat1, + STATE(3418), 1, + sym_path, + STATE(3440), 1, + sym_cell_path, + ACTIONS(1011), 2, + anon_sym_DASH, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1483), 36, - sym__newline, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN2, + ACTIONS(1013), 33, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -347825,28 +324562,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [132521] = 5, + [130114] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3540), 1, - sym__newline, - STATE(3544), 1, + ACTIONS(6285), 1, + anon_sym_DOT, + ACTIONS(6287), 1, + aux_sym__immediate_decimal_token2, + STATE(3304), 1, sym_comment, - ACTIONS(3537), 11, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - ACTIONS(2317), 28, + ACTIONS(1497), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1499), 34, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -347875,20 +324606,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [132574] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [130168] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6470), 1, - anon_sym_DOT, - ACTIONS(6472), 1, + ACTIONS(6289), 1, aux_sym__immediate_decimal_token2, - STATE(3545), 1, + STATE(3305), 1, sym_comment, - ACTIONS(1473), 3, + ACTIONS(1565), 3, anon_sym_DASH, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1475), 35, + ACTIONS(1567), 35, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_LPAREN2, @@ -347924,166 +324657,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [132629] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3546), 1, - sym_comment, - ACTIONS(2107), 40, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [132678] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6296), 1, - anon_sym_list, - STATE(3523), 1, - aux_sym__multiple_types_repeat2, - STATE(3547), 1, - sym_comment, - STATE(7533), 1, - sym__one_type, - STATE(7846), 1, - sym__type_annotation, - ACTIONS(6294), 2, - anon_sym_table, - anon_sym_record, - STATE(6391), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6292), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [132739] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6474), 1, - anon_sym_DOT_DOT2, - STATE(3548), 1, - sym_comment, - ACTIONS(6476), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2066), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2072), 27, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [132793] = 6, + [130220] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6478), 1, + ACTIONS(6291), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6480), 1, + ACTIONS(6293), 1, aux_sym__immediate_decimal_token2, - STATE(3549), 1, + STATE(3306), 1, sym_comment, - ACTIONS(1481), 3, + ACTIONS(1517), 3, sym__newline, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1483), 34, + ACTIONS(1519), 34, aux_sym_ctrl_match_token1, anon_sym_LPAREN2, aux_sym_expr_binary_parenthesized_token1, @@ -348118,114 +324705,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [132847] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6482), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6484), 1, - aux_sym__immediate_decimal_token2, - STATE(3550), 1, - sym_comment, - ACTIONS(1481), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1483), 35, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [132901] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6486), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6488), 1, - aux_sym__immediate_decimal_token2, - STATE(3551), 1, - sym_comment, - ACTIONS(1481), 11, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(1483), 26, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [132955] = 5, + [130274] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6490), 1, + ACTIONS(6222), 1, aux_sym__immediate_decimal_token2, - STATE(3552), 1, + STATE(3307), 1, sym_comment, - ACTIONS(1519), 3, + ACTIONS(1497), 3, anon_sym_DASH, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1521), 35, + ACTIONS(1499), 35, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_LPAREN2, @@ -348261,23 +324752,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [133007] = 8, + [130326] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6492), 1, + ACTIONS(6283), 1, anon_sym_DOT, - STATE(3553), 1, + STATE(1313), 1, + sym_cell_path, + STATE(3308), 1, sym_comment, - STATE(3573), 1, + STATE(3320), 1, aux_sym_cell_path_repeat1, - STATE(3647), 1, + STATE(3418), 1, sym_path, - STATE(3698), 1, - sym_cell_path, - ACTIONS(945), 2, + ACTIONS(1686), 2, anon_sym_DASH, anon_sym_DOT_DOT2, - ACTIONS(947), 33, + ACTIONS(1688), 33, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_EQ_GT, @@ -348311,30 +324802,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [133065] = 10, + [130384] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - ACTIONS(2949), 1, - anon_sym_DOT_DOT2, - ACTIONS(4817), 1, - aux_sym_unquoted_token2, - ACTIONS(6494), 1, - sym_filesize_unit, - ACTIONS(6496), 1, - sym_duration_unit, - STATE(3554), 1, + ACTIONS(6283), 1, + anon_sym_DOT, + STATE(1308), 1, + sym_cell_path, + STATE(3309), 1, sym_comment, - STATE(7615), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2951), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1537), 31, - sym__newline, - anon_sym_COMMA, - anon_sym_RBRACE, + STATE(3320), 1, + aux_sym_cell_path_repeat1, + STATE(3418), 1, + sym_path, + ACTIONS(1625), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(1629), 33, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -348363,26 +324850,122 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [133127] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [130442] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6492), 1, - anon_sym_DOT, - STATE(1528), 1, - sym_cell_path, - STATE(3555), 1, + ACTIONS(6295), 1, + anon_sym_DOT_DOT2, + STATE(3310), 1, sym_comment, - STATE(3573), 1, - aux_sym_cell_path_repeat1, - STATE(3647), 1, - sym_path, - ACTIONS(1599), 2, + ACTIONS(6297), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2061), 9, anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(1603), 33, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2067), 26, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [130495] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6299), 1, + anon_sym_DOLLAR, + ACTIONS(6301), 1, + anon_sym_LPAREN2, + ACTIONS(6303), 1, + anon_sym_DOT, + ACTIONS(6307), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6309), 1, + aux_sym__immediate_decimal_token5, + STATE(3311), 1, + sym_comment, + STATE(3539), 1, + sym__immediate_decimal, + ACTIONS(6305), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3538), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1479), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1493), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [130560] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6273), 1, + aux_sym__immediate_decimal_token2, + STATE(3312), 1, + sym_comment, + ACTIONS(1497), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1499), 35, + anon_sym_PIPE, anon_sym_EQ_GT, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -348413,84 +324996,118 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [133185] = 22, + sym_filesize_unit, + sym_duration_unit, + [130611] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3229), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3231), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3233), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3235), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3241), 1, - aux_sym_unquoted_token1, - ACTIONS(3269), 1, - aux_sym_record_entry_token1, - ACTIONS(4256), 1, - anon_sym_DOT_DOT, - ACTIONS(5875), 1, - sym_val_date, - ACTIONS(6284), 1, - anon_sym_DOLLAR, - STATE(3556), 1, + ACTIONS(6263), 1, + aux_sym__immediate_decimal_token2, + STATE(3313), 1, sym_comment, - STATE(5988), 1, - sym_val_variable, - STATE(5999), 1, - sym_unquoted, - STATE(6029), 1, - sym__val_number_decimal, - STATE(7765), 1, - sym__unquoted_anonymous_prefix, - STATE(7919), 1, - sym_val_bool, - STATE(8049), 1, - sym__val_range, - ACTIONS(3213), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4258), 2, + ACTIONS(1497), 11, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5869), 3, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(1499), 26, + anon_sym_true, + anon_sym_false, + anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(2505), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2507), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [133271] = 5, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [130662] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6464), 1, - aux_sym__immediate_decimal_token2, - STATE(3557), 1, + ACTIONS(1575), 1, + sym__newline, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + ACTIONS(4610), 1, + anon_sym_DOT_DOT2, + ACTIONS(4680), 1, + aux_sym_unquoted_token2, + ACTIONS(6311), 1, + sym_filesize_unit, + ACTIONS(6313), 1, + sym_duration_unit, + STATE(3314), 1, + sym_comment, + STATE(7332), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4612), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1587), 29, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [130725] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3315), 1, sym_comment, - ACTIONS(1473), 2, + ACTIONS(1497), 3, + anon_sym_DASH, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1475), 36, - sym__newline, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1499), 35, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -348524,68 +325141,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [133323] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6498), 1, - anon_sym_DOT_DOT2, - STATE(3558), 1, - sym_comment, - ACTIONS(6500), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1972), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1978), 27, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [133377] = 5, + [130774] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6315), 1, aux_sym__immediate_decimal_token2, - STATE(3559), 1, + STATE(3316), 1, sym_comment, - ACTIONS(1519), 2, + ACTIONS(1565), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1521), 36, - sym__newline, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1567), 35, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -348619,17 +325187,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [133429] = 6, + [130825] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6063), 1, + anon_sym_list, + STATE(3317), 1, + sym_comment, + STATE(5462), 1, + sym__all_type, + ACTIONS(6061), 2, + anon_sym_table, + anon_sym_record, + STATE(5573), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6059), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [130880] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6063), 1, + anon_sym_list, + STATE(3318), 1, + sym_comment, + STATE(5464), 1, + sym__all_type, + ACTIONS(6061), 2, + anon_sym_table, + anon_sym_record, + STATE(5573), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6059), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [130935] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6504), 1, + ACTIONS(6317), 1, anon_sym_DOT_DOT2, - STATE(3560), 1, + STATE(3319), 1, sym_comment, - ACTIONS(6506), 2, + ACTIONS(6319), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1960), 9, + ACTIONS(2035), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -348639,7 +325303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1966), 27, + ACTIONS(2041), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -348652,7 +325316,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, @@ -348667,31 +325330,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [133483] = 11, + [130988] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1525), 1, + ACTIONS(6283), 1, + anon_sym_DOT, + STATE(3320), 1, + sym_comment, + STATE(3321), 1, + aux_sym_cell_path_repeat1, + STATE(3418), 1, + sym_path, + ACTIONS(1017), 2, anon_sym_DASH, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - ACTIONS(2949), 1, anon_sym_DOT_DOT2, - ACTIONS(4817), 1, - aux_sym_unquoted_token2, - ACTIONS(6508), 1, - sym_filesize_unit, - ACTIONS(6510), 1, - sym_duration_unit, - STATE(3561), 1, - sym_comment, - STATE(7615), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2951), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1537), 30, + ACTIONS(1019), 33, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -348720,133 +325376,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [133547] = 22, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3229), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3231), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3233), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3235), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3239), 1, - aux_sym_record_entry_token1, - ACTIONS(3241), 1, - aux_sym_unquoted_token1, - ACTIONS(4256), 1, - anon_sym_DOT_DOT, - ACTIONS(5875), 1, - sym_val_date, - ACTIONS(6284), 1, - anon_sym_DOLLAR, - STATE(3562), 1, - sym_comment, - STATE(5988), 1, - sym_val_variable, - STATE(5999), 1, - sym_unquoted, - STATE(6029), 1, - sym__val_number_decimal, - STATE(7765), 1, - sym__unquoted_anonymous_prefix, - STATE(7919), 1, - sym_val_bool, - STATE(8049), 1, - sym__val_range, - ACTIONS(3213), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4258), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5869), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(2505), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2507), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [133633] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [131043] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6321), 1, + anon_sym_DOT, + STATE(3418), 1, + sym_path, + ACTIONS(1021), 2, + anon_sym_DASH, anon_sym_DOT_DOT2, - STATE(3563), 1, + STATE(3321), 2, sym_comment, - ACTIONS(6514), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1935), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1941), 27, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, + aux_sym_cell_path_repeat1, + ACTIONS(1023), 33, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [133687] = 6, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [131096] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6516), 1, + ACTIONS(6324), 1, anon_sym_DOT, - ACTIONS(6518), 1, + ACTIONS(6326), 1, aux_sym__immediate_decimal_token2, - STATE(3564), 1, + STATE(3322), 1, sym_comment, - ACTIONS(1473), 2, + ACTIONS(1497), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1475), 35, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1499), 34, + aux_sym_ctrl_match_token1, anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -348880,20 +325472,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [133741] = 6, + [131149] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6520), 1, - anon_sym_DOT, - ACTIONS(6522), 1, + ACTIONS(6328), 1, aux_sym__immediate_decimal_token2, - STATE(3565), 1, + STATE(3323), 1, + sym_comment, + ACTIONS(1565), 11, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(1567), 26, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [131200] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6287), 1, + aux_sym__immediate_decimal_token2, + STATE(3324), 1, sym_comment, - ACTIONS(1473), 3, + ACTIONS(1497), 3, sym__newline, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1475), 34, + ACTIONS(1499), 34, aux_sym_ctrl_match_token1, anon_sym_LPAREN2, aux_sym_expr_binary_parenthesized_token1, @@ -348928,67 +325564,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [133795] = 6, + [131251] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6524), 1, - anon_sym_DOT, - ACTIONS(6526), 1, - aux_sym__immediate_decimal_token2, - STATE(3566), 1, + STATE(3325), 1, sym_comment, - ACTIONS(1473), 11, - anon_sym_DOLLAR, + ACTIONS(1639), 3, anon_sym_DASH, - anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, aux_sym_unquoted_token2, - ACTIONS(1475), 26, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1641), 35, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, sym_filesize_unit, sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [133849] = 5, + [131300] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6472), 1, + ACTIONS(6330), 1, aux_sym__immediate_decimal_token2, - STATE(3567), 1, + STATE(3326), 1, sym_comment, - ACTIONS(1473), 3, - anon_sym_DASH, + ACTIONS(1565), 3, + sym__newline, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1475), 35, - anon_sym_DASH_DASH, + ACTIONS(1567), 34, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [131351] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6332), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6334), 1, + aux_sym__immediate_decimal_token2, + STATE(3327), 1, + sym_comment, + ACTIONS(1517), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1519), 34, aux_sym_ctrl_match_token1, anon_sym_LPAREN2, aux_sym_expr_binary_token1, @@ -349023,61 +325702,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [133901] = 7, + [131404] = 21, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6296), 1, - anon_sym_list, - STATE(3568), 1, + ACTIONS(3263), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3265), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3267), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3269), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3704), 1, + aux_sym_unquoted_token1, + ACTIONS(4091), 1, + anon_sym_DOT_DOT, + ACTIONS(5689), 1, + sym_val_date, + ACTIONS(6092), 1, + anon_sym_DOLLAR, + STATE(3328), 1, sym_comment, - STATE(5814), 1, - sym__all_type, - ACTIONS(6294), 2, - anon_sym_table, - anon_sym_record, - STATE(5944), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6292), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [133956] = 4, + STATE(5839), 1, + sym_val_variable, + STATE(5842), 1, + sym_unquoted, + STATE(5847), 1, + sym__val_number_decimal, + STATE(7502), 1, + sym__unquoted_anonymous_prefix, + STATE(7703), 1, + sym_val_bool, + STATE(7774), 1, + sym__val_range, + ACTIONS(3243), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4093), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5683), 3, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(2573), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2575), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [131487] = 21, ACTIONS(247), 1, anon_sym_POUND, - STATE(3569), 1, + ACTIONS(3263), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3265), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3267), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3269), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5689), 1, + sym_val_date, + ACTIONS(5756), 1, + anon_sym_DOT_DOT, + ACTIONS(5760), 1, + aux_sym_unquoted_token1, + ACTIONS(6336), 1, + anon_sym_DOLLAR, + STATE(3329), 1, sym_comment, - ACTIONS(2413), 9, - anon_sym_DASH, + STATE(5857), 1, + sym__val_number_decimal, + STATE(5941), 1, + sym_val_variable, + STATE(5958), 1, + sym_unquoted, + STATE(7653), 1, + sym__val_range, + STATE(7703), 1, + sym_val_bool, + STATE(7724), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3243), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5758), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5752), 3, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(2573), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -349086,28 +325816,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2415), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(2575), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -349116,13 +325826,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [134005] = 4, + [131570] = 12, ACTIONS(247), 1, anon_sym_POUND, - STATE(3570), 1, + ACTIONS(3967), 1, + anon_sym_DOT, + ACTIONS(6299), 1, + anon_sym_DOLLAR, + ACTIONS(6301), 1, + anon_sym_LPAREN2, + ACTIONS(6307), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6309), 1, + aux_sym__immediate_decimal_token5, + STATE(3330), 1, sym_comment, - ACTIONS(2401), 9, - anon_sym_DASH, + STATE(3537), 1, + sym__immediate_decimal, + ACTIONS(6305), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3536), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1505), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -349131,7 +325858,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2403), 29, + ACTIONS(1515), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349143,16 +325871,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -349161,96 +325879,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [134054] = 5, + [131635] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6526), 1, - aux_sym__immediate_decimal_token2, - STATE(3571), 1, - sym_comment, - ACTIONS(1473), 11, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, + ACTIONS(6338), 1, anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(1475), 26, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, + STATE(3331), 1, + sym_comment, + ACTIONS(6340), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [134105] = 21, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3229), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3231), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3233), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3235), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3241), 1, - aux_sym_unquoted_token1, - ACTIONS(4256), 1, - anon_sym_DOT_DOT, - ACTIONS(5875), 1, - sym_val_date, - ACTIONS(6284), 1, - anon_sym_DOLLAR, - STATE(3572), 1, - sym_comment, - STATE(5988), 1, - sym_val_variable, - STATE(5999), 1, - sym_unquoted, - STATE(6029), 1, - sym__val_number_decimal, - STATE(7765), 1, - sym__unquoted_anonymous_prefix, - STATE(7919), 1, - sym_val_bool, - STATE(8049), 1, - sym__val_range, - ACTIONS(3213), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4258), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5869), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(2505), 8, + ACTIONS(2043), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -349259,8 +325899,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2507), 9, - anon_sym_null, + ACTIONS(2049), 26, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -349269,64 +325926,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [134188] = 7, + [131688] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6492), 1, - anon_sym_DOT, - STATE(3573), 1, - sym_comment, - STATE(3575), 1, - aux_sym_cell_path_repeat1, - STATE(3647), 1, - sym_path, - ACTIONS(951), 2, - anon_sym_DASH, + ACTIONS(6342), 1, anon_sym_DOT_DOT2, - ACTIONS(953), 33, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + STATE(3332), 1, + sym_comment, + ACTIONS(6344), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [134243] = 4, + ACTIONS(2051), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2057), 26, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [131741] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3574), 1, + STATE(3333), 1, sym_comment, - ACTIONS(1585), 3, + ACTIONS(1517), 3, anon_sym_DASH, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1587), 35, + ACTIONS(1519), 35, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_LPAREN2, @@ -349362,66 +326018,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [134292] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6528), 1, - anon_sym_DOT, - STATE(3647), 1, - sym_path, - ACTIONS(955), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - STATE(3575), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(957), 33, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [134345] = 6, + [131790] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6531), 1, - anon_sym_DOT, - ACTIONS(6533), 1, - aux_sym__immediate_decimal_token2, - STATE(3576), 1, + STATE(3334), 1, sym_comment, - ACTIONS(1473), 2, + ACTIONS(1565), 3, + anon_sym_DASH, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1475), 34, + ACTIONS(1567), 35, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_LPAREN2, aux_sym_expr_binary_token1, @@ -349456,85 +326063,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [134398] = 21, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3229), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3231), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3233), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3235), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5875), 1, - sym_val_date, - ACTIONS(5928), 1, - anon_sym_DOT_DOT, - ACTIONS(5936), 1, - aux_sym_unquoted_token1, - ACTIONS(6535), 1, - anon_sym_DOLLAR, - STATE(3577), 1, - sym_comment, - STATE(6148), 1, - sym__val_number_decimal, - STATE(6239), 1, - sym_val_variable, - STATE(6240), 1, - sym_unquoted, - STATE(7735), 1, - sym__unquoted_anonymous_prefix, - STATE(7919), 1, - sym_val_bool, - STATE(7928), 1, - sym__val_range, - ACTIONS(3213), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5930), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5922), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(2505), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2507), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [134481] = 7, + [131839] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6296), 1, + ACTIONS(6350), 1, anon_sym_list, - STATE(3578), 1, + STATE(3335), 1, sym_comment, - STATE(7773), 1, + STATE(7381), 1, sym__type_annotation, - ACTIONS(6294), 2, + ACTIONS(6348), 2, anon_sym_table, anon_sym_record, - STATE(6391), 3, + STATE(7349), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6292), 31, + ACTIONS(6346), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -349566,68 +326111,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [134536] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3579), 1, - sym_comment, - ACTIONS(2066), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2072), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [134585] = 7, + [131894] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6541), 1, + ACTIONS(6063), 1, anon_sym_list, - STATE(3580), 1, + STATE(3336), 1, sym_comment, - STATE(7638), 1, + STATE(7718), 1, sym__type_annotation, - ACTIONS(6539), 2, + ACTIONS(6061), 2, anon_sym_table, anon_sym_record, - STATE(7591), 3, + STATE(6633), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6537), 31, + ACTIONS(6059), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -349659,64 +326159,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [134640] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3581), 1, - sym_comment, - ACTIONS(1972), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1978), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [134689] = 4, + [131949] = 10, ACTIONS(247), 1, anon_sym_POUND, - STATE(3582), 1, - sym_comment, - ACTIONS(1473), 2, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + ACTIONS(4610), 1, anon_sym_DOT_DOT2, + ACTIONS(4618), 1, aux_sym_unquoted_token2, - ACTIONS(1475), 36, - sym__newline, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN2, + ACTIONS(6352), 1, + sym_filesize_unit, + ACTIONS(6354), 1, + sym_duration_unit, + STATE(3337), 1, + sym_comment, + STATE(7411), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4612), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1587), 29, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -349745,34 +326209,108 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, + [132009] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3338), 1, + sym_comment, + ACTIONS(1565), 11, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(1567), 26, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, sym_filesize_unit, sym_duration_unit, - [134738] = 11, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [132057] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6356), 1, + anon_sym_RBRACK, + ACTIONS(6360), 1, + sym__entry_separator, + STATE(3339), 1, + sym_comment, + STATE(3353), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6358), 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, + [132109] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1525), 1, + STATE(3340), 1, + sym_comment, + ACTIONS(1517), 3, sym__newline, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - ACTIONS(2949), 1, anon_sym_DOT_DOT2, - ACTIONS(4889), 1, aux_sym_unquoted_token2, - ACTIONS(6543), 1, - sym_filesize_unit, - ACTIONS(6545), 1, - sym_duration_unit, - STATE(3583), 1, - sym_comment, - STATE(7561), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2951), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1537), 29, + ACTIONS(1519), 34, aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -349801,198 +326339,108 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [134801] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3584), 1, - sym_comment, - ACTIONS(2417), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2419), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [134850] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3585), 1, - sym_comment, - ACTIONS(2421), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2423), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [134899] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [132157] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3586), 1, + STATE(3341), 1, sym_comment, - ACTIONS(2425), 9, + ACTIONS(1497), 11, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2427), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - anon_sym_if, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(1499), 26, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [134948] = 4, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [132205] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3587), 1, + STATE(3342), 1, sym_comment, - ACTIONS(2429), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2431), 29, + ACTIONS(1565), 3, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - anon_sym_if, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1567), 34, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [134997] = 5, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [132253] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6522), 1, - aux_sym__immediate_decimal_token2, - STATE(3588), 1, + STATE(3343), 1, sym_comment, - ACTIONS(1473), 3, + ACTIONS(1639), 3, sym__newline, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1475), 34, + ACTIONS(1641), 34, aux_sym_ctrl_match_token1, anon_sym_LPAREN2, aux_sym_expr_binary_parenthesized_token1, @@ -350027,12 +326475,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [135048] = 4, + [132301] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3589), 1, + STATE(3344), 1, sym_comment, - ACTIONS(2437), 9, + ACTIONS(2061), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -350042,7 +326490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2439), 29, + ACTIONS(2067), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350055,7 +326503,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, anon_sym_if, aux_sym_ctrl_match_token1, @@ -350072,109 +326519,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [135097] = 4, + [132349] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3590), 1, + STATE(3345), 1, sym_comment, - ACTIONS(2441), 9, + ACTIONS(1517), 11, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2443), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - anon_sym_if, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(1519), 26, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [135146] = 4, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [132397] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3591), 1, + STATE(3346), 1, sym_comment, - ACTIONS(1960), 9, + ACTIONS(1040), 3, anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1966), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1042), 34, anon_sym_DASH_DASH, - anon_sym_if, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [135195] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3592), 1, - sym_comment, - ACTIONS(1481), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1483), 36, - sym__newline, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN2, + anon_sym_QMARK2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -350205,69 +326607,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [135244] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6551), 1, - anon_sym_list, - STATE(3593), 1, - sym_comment, - STATE(5161), 1, - sym__type_annotation, - ACTIONS(6549), 2, - anon_sym_table, - anon_sym_record, - STATE(5215), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6547), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [135299] = 4, + [132445] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3594), 1, + STATE(3347), 1, sym_comment, - ACTIONS(1519), 2, + ACTIONS(1044), 3, + anon_sym_DASH, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1521), 36, - sym__newline, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN2, + anon_sym_DOT, + ACTIONS(1046), 34, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + anon_sym_QMARK2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -350298,21 +326651,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [135348] = 4, + [132493] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3595), 1, + STATE(3348), 1, sym_comment, - ACTIONS(1473), 3, + ACTIONS(1048), 3, anon_sym_DASH, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1475), 35, + anon_sym_DOT, + ACTIONS(1050), 34, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, + anon_sym_EQ_GT, + anon_sym_QMARK2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -350343,20 +326695,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [135397] = 4, + [132541] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3596), 1, + STATE(3349), 1, sym_comment, - ACTIONS(1519), 3, - anon_sym_DASH, + ACTIONS(1565), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1521), 35, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + ACTIONS(1567), 35, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -350390,113 +326739,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [135446] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6296), 1, - anon_sym_list, - STATE(3597), 1, - sym_comment, - STATE(7017), 1, - sym__type_annotation, - ACTIONS(6294), 2, - anon_sym_table, - anon_sym_record, - STATE(6391), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6292), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [135501] = 5, + [132589] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6553), 1, - aux_sym__immediate_decimal_token2, - STATE(3598), 1, + ACTIONS(6362), 1, + anon_sym_QMARK2, + STATE(3350), 1, sym_comment, - ACTIONS(1519), 11, - anon_sym_DOLLAR, + ACTIONS(1034), 3, anon_sym_DASH, - anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(1521), 26, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_DOT, + ACTIONS(1036), 33, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [135552] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3599), 1, - sym_comment, - ACTIONS(1585), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1587), 36, - sym__newline, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN2, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -350527,22 +326784,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [135601] = 5, + [132639] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6518), 1, - aux_sym__immediate_decimal_token2, - STATE(3600), 1, + ACTIONS(6364), 1, + anon_sym_QMARK2, + STATE(3351), 1, sym_comment, - ACTIONS(1473), 2, + ACTIONS(1028), 3, + anon_sym_DASH, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1475), 35, - anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(1030), 33, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, anon_sym_EQ_GT, - anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -350573,32 +326829,189 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + [132689] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3352), 1, + sym_comment, + ACTIONS(1639), 11, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(1641), 26, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, sym_filesize_unit, sym_duration_unit, - [135652] = 12, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [132737] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6366), 1, + sym__entry_separator, + STATE(3353), 2, + sym_comment, + aux_sym__multiple_types_repeat1, + ACTIONS(2359), 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, + [132785] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3354), 1, + sym_comment, + ACTIONS(2477), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2479), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [132833] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3355), 1, + sym_comment, + ACTIONS(2481), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2483), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [132881] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4099), 1, - anon_sym_DOT, - ACTIONS(6555), 1, - anon_sym_DOLLAR, - ACTIONS(6557), 1, - anon_sym_LPAREN2, - ACTIONS(6561), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6563), 1, - aux_sym__immediate_decimal_token5, - STATE(3601), 1, + STATE(3356), 1, sym_comment, - STATE(3968), 1, - sym__immediate_decimal, - ACTIONS(6559), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3948), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1431), 8, + ACTIONS(2485), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -350607,8 +327020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1441), 20, - ts_builtin_sym_end, + ACTIONS(2487), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350620,6 +327032,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -350628,23 +327049,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [135717] = 7, - ACTIONS(247), 1, + [132929] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6296), 1, - anon_sym_list, - STATE(3602), 1, + ACTIONS(6360), 1, + sym__entry_separator, + ACTIONS(6369), 1, + anon_sym_RBRACK, + STATE(3353), 1, + aux_sym__multiple_types_repeat1, + STATE(3357), 1, sym_comment, - STATE(5809), 1, - sym__all_type, - ACTIONS(6294), 2, - anon_sym_table, - anon_sym_record, - STATE(5944), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6292), 31, + ACTIONS(6358), 34, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -350674,32 +327090,18 @@ 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, - [135772] = 12, + anon_sym_record, + anon_sym_list, + [132981] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6555), 1, - anon_sym_DOLLAR, - ACTIONS(6557), 1, - anon_sym_LPAREN2, - ACTIONS(6561), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6563), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6565), 1, - anon_sym_DOT, - STATE(3603), 1, + STATE(3358), 1, sym_comment, - STATE(3890), 1, - sym__immediate_decimal, - ACTIONS(6559), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3790), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1413), 8, + ACTIONS(2493), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -350708,8 +327110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1427), 20, - ts_builtin_sym_end, + ACTIONS(2495), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350721,6 +327122,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -350729,12 +327139,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [135837] = 4, + [133029] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3604), 1, + STATE(3359), 1, sym_comment, - ACTIONS(1935), 9, + ACTIONS(2497), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -350744,7 +327154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1941), 29, + ACTIONS(2499), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350757,7 +327167,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, anon_sym_if, aux_sym_ctrl_match_token1, @@ -350774,196 +327183,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [135886] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6567), 1, - aux_sym__immediate_decimal_token2, - STATE(3605), 1, - sym_comment, - ACTIONS(1519), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1521), 34, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [135937] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6569), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6571), 1, - aux_sym__immediate_decimal_token2, - STATE(3606), 1, - sym_comment, - ACTIONS(1481), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1483), 34, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [135990] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6573), 1, - aux_sym__immediate_decimal_token2, - STATE(3607), 1, - sym_comment, - ACTIONS(1519), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1521), 35, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [136041] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3608), 1, - sym_comment, - ACTIONS(1481), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1483), 35, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [136090] = 4, + [133077] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3609), 1, + STATE(3360), 1, sym_comment, - ACTIONS(2405), 9, + ACTIONS(2501), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -350973,7 +327198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2407), 29, + ACTIONS(2503), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350986,7 +327211,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, anon_sym_if, aux_sym_ctrl_match_token1, @@ -351003,13 +327227,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [136139] = 4, + [133125] = 11, ACTIONS(247), 1, anon_sym_POUND, - STATE(3610), 1, + ACTIONS(6301), 1, + anon_sym_LPAREN2, + ACTIONS(6307), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6309), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6336), 1, + anon_sym_DOLLAR, + STATE(1918), 1, + sym__immediate_decimal, + STATE(3361), 1, sym_comment, - ACTIONS(2409), 9, - anon_sym_DASH, + ACTIONS(6371), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1913), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1617), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -351018,7 +327257,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2411), 29, + ACTIONS(1619), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -351030,16 +327270,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -351048,13 +327278,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [136188] = 4, + [133187] = 11, ACTIONS(247), 1, anon_sym_POUND, - STATE(3611), 1, + ACTIONS(6301), 1, + anon_sym_LPAREN2, + ACTIONS(6307), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6309), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6336), 1, + anon_sym_DOLLAR, + STATE(1924), 1, + sym__immediate_decimal, + STATE(3362), 1, sym_comment, - ACTIONS(2433), 9, - anon_sym_DASH, + ACTIONS(6371), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1919), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1621), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -351063,7 +327308,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2435), 29, + ACTIONS(1623), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -351075,16 +327321,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -351093,28 +327329,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [136237] = 11, + [133249] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6535), 1, - anon_sym_DOLLAR, - ACTIONS(6557), 1, + ACTIONS(6301), 1, anon_sym_LPAREN2, - ACTIONS(6561), 1, + ACTIONS(6307), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6563), 1, + ACTIONS(6309), 1, aux_sym__immediate_decimal_token5, - STATE(3612), 1, - sym_comment, - STATE(4058), 1, + ACTIONS(6336), 1, + anon_sym_DOLLAR, + STATE(1785), 1, sym__immediate_decimal, - ACTIONS(6575), 2, + STATE(3363), 1, + sym_comment, + ACTIONS(6371), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2088), 2, + STATE(1925), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1443), 8, + ACTIONS(1561), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -351123,7 +327359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1455), 20, + ACTIONS(1563), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -351144,342 +327380,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [136299] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3613), 1, - sym_comment, - ACTIONS(1473), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1475), 34, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [136347] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3614), 1, - sym_comment, - ACTIONS(1481), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1483), 34, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [136395] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3615), 1, - sym_comment, - ACTIONS(1585), 11, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(1587), 26, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [136443] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3616), 1, - sym_comment, - ACTIONS(1585), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1587), 35, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [136491] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - ACTIONS(2949), 1, - anon_sym_DOT_DOT2, - ACTIONS(4817), 1, - aux_sym_unquoted_token2, - ACTIONS(6577), 1, - sym_filesize_unit, - ACTIONS(6579), 1, - sym_duration_unit, - STATE(3617), 1, - sym_comment, - STATE(7615), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2951), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1537), 29, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [136551] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3618), 1, - sym_comment, - ACTIONS(1473), 11, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(1475), 26, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [136599] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3619), 1, - sym_comment, - ACTIONS(1585), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1587), 34, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [136647] = 11, + [133311] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6535), 1, - anon_sym_DOLLAR, - ACTIONS(6557), 1, + ACTIONS(6301), 1, anon_sym_LPAREN2, - ACTIONS(6561), 1, + ACTIONS(6307), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6563), 1, + ACTIONS(6309), 1, aux_sym__immediate_decimal_token5, - STATE(3620), 1, + ACTIONS(6336), 1, + anon_sym_DOLLAR, + STATE(3364), 1, sym_comment, - STATE(4070), 1, + STATE(3787), 1, sym__immediate_decimal, - ACTIONS(6575), 2, + ACTIONS(6371), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1984), 2, + STATE(1757), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1413), 8, + ACTIONS(1549), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -351488,7 +327410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1427), 20, + ACTIONS(1551), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -351509,152 +327431,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [136709] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6581), 1, - anon_sym_RBRACK, - ACTIONS(6585), 1, - sym__entry_separator, - STATE(3621), 1, - sym_comment, - STATE(3622), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6583), 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, - [136761] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6587), 1, - sym__entry_separator, - STATE(3622), 2, - sym_comment, - aux_sym__multiple_types_repeat1, - ACTIONS(2319), 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, - [136809] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3623), 1, - sym_comment, - ACTIONS(1519), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1521), 34, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [136857] = 5, + [133373] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6590), 1, - aux_sym__immediate_decimal_token2, - STATE(3624), 1, + STATE(3365), 1, sym_comment, - ACTIONS(1519), 2, + ACTIONS(1517), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1521), 34, - aux_sym_ctrl_match_token1, + ACTIONS(1519), 35, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -351688,105 +327475,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [136907] = 5, + [133421] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6592), 1, - anon_sym_QMARK2, - STATE(3625), 1, + STATE(3366), 1, sym_comment, - ACTIONS(970), 3, + ACTIONS(2035), 9, anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(972), 33, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2041), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_if, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [136957] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [133469] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6594), 1, - anon_sym_QMARK2, - STATE(3626), 1, + STATE(3367), 1, sym_comment, - ACTIONS(980), 3, + ACTIONS(2043), 9, anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(982), 33, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2049), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_if, aux_sym_ctrl_match_token1, + anon_sym_RBRACE, anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [137007] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [133517] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3627), 1, + STATE(3368), 1, sym_comment, - ACTIONS(1473), 2, + ACTIONS(1497), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1475), 35, + ACTIONS(1499), 35, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_LPAREN2, @@ -351822,154 +327607,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [137055] = 4, + [133565] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3628), 1, + STATE(3369), 1, sym_comment, - ACTIONS(1481), 11, - anon_sym_DOLLAR, + ACTIONS(2051), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(1483), 26, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2057), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [137103] = 9, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [133613] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4694), 1, + ACTIONS(4433), 1, anon_sym_DOT_DOT2, - ACTIONS(6596), 1, + ACTIONS(6373), 1, sym_filesize_unit, - ACTIONS(6598), 1, + ACTIONS(6375), 1, sym_duration_unit, - ACTIONS(6600), 1, + ACTIONS(6377), 1, aux_sym_unquoted_token2, - STATE(3629), 1, + STATE(3370), 1, sym_comment, - ACTIONS(4696), 2, + ACTIONS(4435), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1525), 9, + ACTIONS(1575), 9, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1537), 22, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [137161] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3630), 1, - sym_comment, - ACTIONS(966), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(968), 34, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - anon_sym_QMARK2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [137209] = 5, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1587), 22, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [133671] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6533), 1, + ACTIONS(6379), 1, aux_sym__immediate_decimal_token2, - STATE(3631), 1, + STATE(3371), 1, sym_comment, - ACTIONS(1473), 2, + ACTIONS(1565), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1475), 34, + ACTIONS(1567), 34, aux_sym_ctrl_match_token1, anon_sym_LPAREN2, aux_sym_expr_binary_token1, @@ -352004,62 +327745,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [137259] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3632), 1, - sym_comment, - ACTIONS(976), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(978), 34, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - anon_sym_QMARK2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [137307] = 6, + [133721] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6585), 1, + ACTIONS(6360), 1, sym__entry_separator, - ACTIONS(6602), 1, + ACTIONS(6381), 1, anon_sym_RBRACK, - STATE(3622), 1, + STATE(3353), 1, aux_sym__multiple_types_repeat1, - STATE(3633), 1, + STATE(3372), 1, sym_comment, - ACTIONS(6583), 34, + ACTIONS(6358), 34, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -352094,18 +327791,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, - [137359] = 6, + [133773] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6301), 1, + anon_sym_LPAREN2, + ACTIONS(6307), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6309), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6336), 1, + anon_sym_DOLLAR, + STATE(1827), 1, + sym__immediate_decimal, + STATE(3373), 1, + sym_comment, + ACTIONS(6371), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1826), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1505), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1515), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [133835] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6585), 1, + ACTIONS(6360), 1, sym__entry_separator, - ACTIONS(6604), 1, + ACTIONS(6383), 1, anon_sym_RBRACK, - STATE(3622), 1, + STATE(3353), 1, aux_sym__multiple_types_repeat1, - STATE(3634), 1, + STATE(3374), 1, sym_comment, - ACTIONS(6583), 34, + ACTIONS(6358), 34, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -352140,28 +327888,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, - [137411] = 11, + [133887] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6535), 1, - anon_sym_DOLLAR, - ACTIONS(6557), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + ACTIONS(4610), 1, + anon_sym_DOT_DOT2, + ACTIONS(4618), 1, + aux_sym_unquoted_token2, + ACTIONS(6385), 1, + sym_filesize_unit, + ACTIONS(6387), 1, + sym_duration_unit, + STATE(3375), 1, + sym_comment, + STATE(7411), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4612), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1587), 29, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [133947] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6326), 1, + aux_sym__immediate_decimal_token2, + STATE(3376), 1, + sym_comment, + ACTIONS(1497), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1499), 34, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [133997] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6301), 1, anon_sym_LPAREN2, - ACTIONS(6561), 1, + ACTIONS(6307), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6563), 1, + ACTIONS(6309), 1, aux_sym__immediate_decimal_token5, - STATE(1983), 1, - sym__immediate_decimal, - STATE(3635), 1, + ACTIONS(6336), 1, + anon_sym_DOLLAR, + STATE(3377), 1, sym_comment, - ACTIONS(6575), 2, + STATE(3773), 1, + sym__immediate_decimal, + ACTIONS(6371), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1982), 2, + STATE(1828), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1431), 8, + ACTIONS(1479), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -352170,7 +328013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1441), 20, + ACTIONS(1493), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -352191,15 +328034,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [137473] = 4, + [134059] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3636), 1, + STATE(3378), 1, sym_comment, - ACTIONS(1481), 2, + ACTIONS(1639), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1483), 35, + ACTIONS(1641), 35, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_LPAREN2, @@ -352235,28 +328078,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [137521] = 11, + [134107] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6535), 1, - anon_sym_DOLLAR, - ACTIONS(6557), 1, - anon_sym_LPAREN2, - ACTIONS(6561), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6563), 1, - aux_sym__immediate_decimal_token5, - STATE(2040), 1, - sym__immediate_decimal, - STATE(3637), 1, + STATE(3379), 1, sym_comment, - ACTIONS(6575), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2025), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1551), 8, + ACTIONS(2449), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -352265,8 +328093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1553), 20, - ts_builtin_sym_end, + ACTIONS(2451), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352278,6 +328105,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -352286,28 +328122,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [137583] = 11, + [134155] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6535), 1, - anon_sym_DOLLAR, - ACTIONS(6557), 1, - anon_sym_LPAREN2, - ACTIONS(6561), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6563), 1, - aux_sym__immediate_decimal_token5, - STATE(2062), 1, - sym__immediate_decimal, - STATE(3638), 1, + STATE(3380), 1, sym_comment, - ACTIONS(6575), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2048), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1555), 8, + ACTIONS(2465), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -352316,8 +328137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1557), 20, - ts_builtin_sym_end, + ACTIONS(2467), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352329,6 +328149,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -352337,28 +328166,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [137645] = 11, + [134203] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6535), 1, - anon_sym_DOLLAR, - ACTIONS(6557), 1, - anon_sym_LPAREN2, - ACTIONS(6561), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6563), 1, - aux_sym__immediate_decimal_token5, - STATE(2074), 1, - sym__immediate_decimal, - STATE(3639), 1, + STATE(3381), 1, sym_comment, - ACTIONS(6575), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2065), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1501), 8, + ACTIONS(2469), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -352367,8 +328181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1509), 20, - ts_builtin_sym_end, + ACTIONS(2471), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352380,6 +328193,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -352388,108 +328210,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [137707] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6585), 1, - sym__entry_separator, - ACTIONS(6606), 1, - anon_sym_RBRACK, - STATE(3622), 1, - aux_sym__multiple_types_repeat1, - STATE(3640), 1, - sym_comment, - ACTIONS(6583), 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, - [137759] = 4, + [134251] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3641), 1, + STATE(3382), 1, sym_comment, - ACTIONS(1519), 11, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, + ACTIONS(1497), 3, + sym__newline, anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, aux_sym_unquoted_token2, - ACTIONS(1521), 26, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1499), 34, aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, sym_filesize_unit, sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [137807] = 4, + [134299] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3642), 1, + STATE(3383), 1, sym_comment, - ACTIONS(1519), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1521), 35, + ACTIONS(2473), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2475), 28, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [134347] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3384), 1, + sym_comment, + ACTIONS(2489), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2491), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [134395] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1890), 1, + anon_sym_DASH, + ACTIONS(6389), 1, + anon_sym_DOT, + STATE(1530), 1, + sym_path, + STATE(1701), 1, + sym_cell_path, + STATE(3385), 1, + sym_comment, + STATE(3442), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1892), 31, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, anon_sym_EQ_GT, - anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -352518,32 +328389,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [137855] = 10, + [134450] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - ACTIONS(2949), 1, - anon_sym_DOT_DOT2, - ACTIONS(4817), 1, - aux_sym_unquoted_token2, - ACTIONS(6608), 1, - sym_filesize_unit, - ACTIONS(6610), 1, - sym_duration_unit, - STATE(3643), 1, + STATE(3386), 1, sym_comment, - STATE(7615), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2951), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1537), 29, + ACTIONS(1060), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1062), 33, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -352572,20 +328430,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [137915] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [134497] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3644), 1, + STATE(3387), 1, sym_comment, - ACTIONS(962), 3, + ACTIONS(1052), 3, anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(964), 34, + ACTIONS(1054), 33, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_EQ_GT, - anon_sym_QMARK2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -352616,22 +328475,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [137963] = 8, + [134544] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1875), 1, + ACTIONS(1863), 1, anon_sym_DASH, - ACTIONS(6612), 1, + ACTIONS(6389), 1, anon_sym_DOT, - STATE(1625), 1, + STATE(1530), 1, sym_path, - STATE(1787), 1, + STATE(1696), 1, sym_cell_path, - STATE(3645), 1, + STATE(3388), 1, sym_comment, - STATE(3694), 1, + STATE(3442), 1, aux_sym_cell_path_repeat1, - ACTIONS(1877), 31, + ACTIONS(1865), 31, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_EQ_GT, @@ -352663,61 +328522,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [138018] = 6, + [134599] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6614), 1, - anon_sym_DOT_DOT2, - STATE(3646), 1, + STATE(3389), 1, sym_comment, - ACTIONS(6616), 2, + ACTIONS(1497), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1499), 34, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1690), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1698), 24, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [138069] = 4, + sym_filesize_unit, + sym_duration_unit, + [134646] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3647), 1, - sym_comment, - ACTIONS(994), 3, + ACTIONS(1949), 1, anon_sym_DASH, - anon_sym_DOT_DOT2, + ACTIONS(6389), 1, anon_sym_DOT, - ACTIONS(996), 33, + STATE(1530), 1, + sym_path, + STATE(1705), 1, + sym_cell_path, + STATE(3390), 1, + sym_comment, + STATE(3442), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1951), 31, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_EQ_GT, @@ -352749,19 +328612,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [138116] = 4, + [134701] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3648), 1, + ACTIONS(1829), 1, + anon_sym_DASH, + ACTIONS(6389), 1, + anon_sym_DOT, + STATE(1530), 1, + sym_path, + STATE(1688), 1, + sym_cell_path, + STATE(3391), 1, sym_comment, - ACTIONS(1473), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1475), 34, + STATE(3442), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1833), 31, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -352790,20 +328659,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [138163] = 4, + [134756] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3649), 1, - sym_comment, - ACTIONS(990), 3, + ACTIONS(1867), 1, anon_sym_DASH, - anon_sym_DOT_DOT2, + ACTIONS(6389), 1, anon_sym_DOT, - ACTIONS(992), 33, + STATE(1530), 1, + sym_path, + STATE(1697), 1, + sym_cell_path, + STATE(3392), 1, + sym_comment, + STATE(3442), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1869), 31, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_EQ_GT, @@ -352835,19 +328706,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [138210] = 4, + [134811] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2513), 1, + sym__entry_separator, + STATE(3393), 1, + sym_comment, + ACTIONS(2511), 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, + [134858] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3650), 1, + ACTIONS(1686), 1, + anon_sym_DASH, + ACTIONS(6389), 1, + anon_sym_DOT, + STATE(1313), 1, + sym_cell_path, + STATE(1530), 1, + sym_path, + STATE(3394), 1, sym_comment, - ACTIONS(1481), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1483), 34, + STATE(3442), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1688), 31, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -352876,66 +328796,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [138257] = 6, + [134913] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6618), 1, + ACTIONS(1625), 1, + anon_sym_DASH, + ACTIONS(6389), 1, anon_sym_DOT, - ACTIONS(6620), 1, - aux_sym__immediate_decimal_token2, - STATE(3651), 1, - sym_comment, - ACTIONS(1589), 9, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1591), 25, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [138308] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3652), 1, + STATE(1308), 1, + sym_cell_path, + STATE(1530), 1, + sym_path, + STATE(3395), 1, sym_comment, - ACTIONS(1519), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1521), 34, + STATE(3442), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1629), 31, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -352964,19 +328843,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [138355] = 4, + [134968] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3653), 1, + STATE(3396), 1, sym_comment, - ACTIONS(1585), 2, + ACTIONS(1517), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1587), 34, + ACTIONS(1519), 34, aux_sym_ctrl_match_token1, anon_sym_LPAREN2, aux_sym_expr_binary_token1, @@ -353011,22 +328886,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [138402] = 8, + [135015] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1599), 1, + ACTIONS(1835), 1, anon_sym_DASH, - ACTIONS(6612), 1, + ACTIONS(6389), 1, anon_sym_DOT, - STATE(1528), 1, - sym_cell_path, - STATE(1625), 1, + STATE(1530), 1, sym_path, - STATE(3654), 1, + STATE(1689), 1, + sym_cell_path, + STATE(3397), 1, sym_comment, - STATE(3694), 1, + STATE(3442), 1, aux_sym_cell_path_repeat1, - ACTIONS(1603), 31, + ACTIONS(1837), 31, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_EQ_GT, @@ -353058,156 +328933,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [138457] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6622), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6624), 1, - aux_sym__immediate_decimal_token2, - STATE(3655), 1, - sym_comment, - ACTIONS(1569), 9, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1571), 25, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [138508] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6626), 1, - anon_sym_DOT_DOT2, - STATE(3656), 1, - sym_comment, - ACTIONS(6628), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1709), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1717), 24, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [138559] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6585), 1, - sym__entry_separator, - STATE(3622), 1, - aux_sym__multiple_types_repeat1, - STATE(3657), 1, - sym_comment, - ACTIONS(6583), 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, - [138608] = 8, + [135070] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(945), 1, + ACTIONS(1847), 1, anon_sym_DASH, - ACTIONS(6612), 1, + ACTIONS(6389), 1, anon_sym_DOT, - STATE(1625), 1, + STATE(1530), 1, sym_path, - STATE(3658), 1, + STATE(1692), 1, + sym_cell_path, + STATE(3398), 1, sym_comment, - STATE(3694), 1, + STATE(3442), 1, aux_sym_cell_path_repeat1, - STATE(3698), 1, - sym_cell_path, - ACTIONS(947), 31, + ACTIONS(1849), 31, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_EQ_GT, @@ -353239,22 +328980,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [138663] = 8, + [135125] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1774), 1, + ACTIONS(1871), 1, anon_sym_DASH, - ACTIONS(6612), 1, + ACTIONS(6389), 1, anon_sym_DOT, - STATE(1625), 1, + STATE(1530), 1, sym_path, - STATE(1740), 1, + STATE(1698), 1, sym_cell_path, - STATE(3659), 1, + STATE(3399), 1, sym_comment, - STATE(3694), 1, + STATE(3442), 1, aux_sym_cell_path_repeat1, - ACTIONS(1776), 31, + ACTIONS(1873), 31, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_EQ_GT, @@ -353286,22 +329027,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [138718] = 8, + [135180] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1762), 1, + ACTIONS(1011), 1, anon_sym_DASH, - ACTIONS(6612), 1, + ACTIONS(6389), 1, anon_sym_DOT, - STATE(1625), 1, + STATE(1530), 1, sym_path, - STATE(1743), 1, - sym_cell_path, - STATE(3660), 1, + STATE(3400), 1, sym_comment, - STATE(3694), 1, + STATE(3440), 1, + sym_cell_path, + STATE(3442), 1, aux_sym_cell_path_repeat1, - ACTIONS(1764), 31, + ACTIONS(1013), 31, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_EQ_GT, @@ -353333,22 +329074,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [138773] = 8, + [135235] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3401), 1, + sym_comment, + ACTIONS(1639), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1641), 34, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [135282] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1778), 1, + ACTIONS(1855), 1, anon_sym_DASH, - ACTIONS(6612), 1, + ACTIONS(6389), 1, anon_sym_DOT, - STATE(1625), 1, + STATE(1530), 1, sym_path, - STATE(1779), 1, + STATE(1694), 1, sym_cell_path, - STATE(3661), 1, + STATE(3402), 1, sym_comment, - STATE(3694), 1, + STATE(3442), 1, aux_sym_cell_path_repeat1, - ACTIONS(1780), 31, + ACTIONS(1857), 31, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_EQ_GT, @@ -353380,65 +329164,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [138828] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2447), 1, - sym__entry_separator, - STATE(3662), 1, - sym_comment, - ACTIONS(2445), 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, - [138875] = 8, + [135337] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1770), 1, + ACTIONS(1969), 1, anon_sym_DASH, - ACTIONS(6612), 1, + ACTIONS(6389), 1, anon_sym_DOT, - STATE(1625), 1, + STATE(1530), 1, sym_path, - STATE(1782), 1, + STATE(1700), 1, sym_cell_path, - STATE(3663), 1, + STATE(3403), 1, sym_comment, - STATE(3694), 1, + STATE(3442), 1, aux_sym_cell_path_repeat1, - ACTIONS(1772), 31, + ACTIONS(1971), 31, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_EQ_GT, @@ -353470,22 +329211,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [138930] = 8, + [135392] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1847), 1, + ACTIONS(1851), 1, anon_sym_DASH, - ACTIONS(6612), 1, + ACTIONS(6389), 1, anon_sym_DOT, - STATE(1625), 1, + STATE(1530), 1, sym_path, - STATE(1785), 1, + STATE(1693), 1, sym_cell_path, - STATE(3664), 1, + STATE(3404), 1, sym_comment, - STATE(3694), 1, + STATE(3442), 1, aux_sym_cell_path_repeat1, - ACTIONS(1849), 31, + ACTIONS(1853), 31, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_EQ_GT, @@ -353517,22 +329258,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [138985] = 8, + [135447] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1871), 1, + ACTIONS(6391), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6393), 1, + aux_sym__immediate_decimal_token2, + STATE(3405), 1, + sym_comment, + ACTIONS(1631), 9, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1633), 25, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [135498] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1839), 1, anon_sym_DASH, - ACTIONS(6612), 1, + ACTIONS(6389), 1, anon_sym_DOT, - STATE(1625), 1, + STATE(1530), 1, sym_path, - STATE(1786), 1, + STATE(1690), 1, sym_cell_path, - STATE(3665), 1, + STATE(3406), 1, sym_comment, - STATE(3694), 1, + STATE(3442), 1, aux_sym_cell_path_repeat1, - ACTIONS(1873), 31, + ACTIONS(1841), 31, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_EQ_GT, @@ -353564,22 +329350,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [139040] = 8, + [135553] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1879), 1, + ACTIONS(6395), 1, + anon_sym_DOT, + ACTIONS(6397), 1, + aux_sym__immediate_decimal_token2, + STATE(3407), 1, + sym_comment, + ACTIONS(1643), 9, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1645), 25, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [135604] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1894), 1, anon_sym_DASH, - ACTIONS(6612), 1, + ACTIONS(6389), 1, anon_sym_DOT, - STATE(1625), 1, + STATE(1530), 1, sym_path, - STATE(1788), 1, + STATE(1702), 1, sym_cell_path, - STATE(3666), 1, + STATE(3408), 1, sym_comment, - STATE(3694), 1, + STATE(3442), 1, aux_sym_cell_path_repeat1, - ACTIONS(1881), 31, + ACTIONS(1896), 31, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_EQ_GT, @@ -353611,22 +329442,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [139095] = 8, + [135659] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6360), 1, + sym__entry_separator, + STATE(3353), 1, + aux_sym__multiple_types_repeat1, + STATE(3409), 1, + sym_comment, + ACTIONS(6358), 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, + [135708] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1883), 1, + ACTIONS(1965), 1, anon_sym_DASH, - ACTIONS(6612), 1, + ACTIONS(6389), 1, anon_sym_DOT, - STATE(1625), 1, + STATE(1530), 1, sym_path, - STATE(1789), 1, + STATE(1680), 1, sym_cell_path, - STATE(3667), 1, + STATE(3410), 1, sym_comment, - STATE(3694), 1, + STATE(3442), 1, aux_sym_cell_path_repeat1, - ACTIONS(1885), 31, + ACTIONS(1967), 31, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_EQ_GT, @@ -353658,22 +329533,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [139150] = 8, + [135763] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1891), 1, + ACTIONS(1957), 1, anon_sym_DASH, - ACTIONS(6612), 1, + ACTIONS(6389), 1, anon_sym_DOT, - STATE(1625), 1, + STATE(1530), 1, sym_path, - STATE(1790), 1, + STATE(1681), 1, sym_cell_path, - STATE(3668), 1, + STATE(3411), 1, sym_comment, - STATE(3694), 1, + STATE(3442), 1, aux_sym_cell_path_repeat1, - ACTIONS(1893), 31, + ACTIONS(1959), 31, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_EQ_GT, @@ -353705,22 +329580,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [139205] = 8, + [135818] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1895), 1, + ACTIONS(1859), 1, anon_sym_DASH, - ACTIONS(6612), 1, + ACTIONS(6389), 1, anon_sym_DOT, - STATE(1625), 1, + STATE(1530), 1, sym_path, - STATE(1791), 1, + STATE(1695), 1, sym_cell_path, - STATE(3669), 1, + STATE(3412), 1, sym_comment, - STATE(3694), 1, + STATE(3442), 1, aux_sym_cell_path_repeat1, - ACTIONS(1897), 31, + ACTIONS(1861), 31, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_EQ_GT, @@ -353752,25 +329627,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [139260] = 8, + [135873] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1747), 1, - anon_sym_DASH, - ACTIONS(6612), 1, - anon_sym_DOT, - STATE(1625), 1, - sym_path, - STATE(1792), 1, - sym_cell_path, - STATE(3670), 1, + STATE(3413), 1, sym_comment, - STATE(3694), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1749), 31, - anon_sym_DASH_DASH, + ACTIONS(1565), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1567), 34, aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -353799,22 +329666,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [139315] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [135920] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1824), 1, + ACTIONS(1843), 1, anon_sym_DASH, - ACTIONS(6612), 1, + ACTIONS(6389), 1, anon_sym_DOT, - STATE(1625), 1, + STATE(1530), 1, sym_path, - STATE(1793), 1, + STATE(1691), 1, sym_cell_path, - STATE(3671), 1, + STATE(3414), 1, sym_comment, - STATE(3694), 1, + STATE(3442), 1, aux_sym_cell_path_repeat1, - ACTIONS(1826), 31, + ACTIONS(1845), 31, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_EQ_GT, @@ -353846,22 +329717,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [139370] = 8, + [135975] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1855), 1, + ACTIONS(1937), 1, anon_sym_DASH, - ACTIONS(6612), 1, + ACTIONS(6389), 1, anon_sym_DOT, - STATE(1625), 1, + STATE(1530), 1, sym_path, - STATE(1678), 1, + STATE(1703), 1, sym_cell_path, - STATE(3672), 1, + STATE(3415), 1, sym_comment, - STATE(3694), 1, + STATE(3442), 1, aux_sym_cell_path_repeat1, - ACTIONS(1857), 31, + ACTIONS(1939), 31, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_EQ_GT, @@ -353893,22 +329764,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [139425] = 8, + [136030] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1796), 1, + ACTIONS(1879), 1, anon_sym_DASH, - ACTIONS(6612), 1, + ACTIONS(6389), 1, anon_sym_DOT, - STATE(1625), 1, + STATE(1530), 1, sym_path, - STATE(1795), 1, + STATE(1684), 1, sym_cell_path, - STATE(3673), 1, + STATE(3416), 1, sym_comment, - STATE(3694), 1, + STATE(3442), 1, aux_sym_cell_path_repeat1, - ACTIONS(1798), 31, + ACTIONS(1881), 31, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_EQ_GT, @@ -353940,22 +329811,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [139480] = 8, + [136085] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1808), 1, + ACTIONS(1945), 1, anon_sym_DASH, - ACTIONS(6612), 1, + ACTIONS(6389), 1, anon_sym_DOT, - STATE(1625), 1, + STATE(1530), 1, sym_path, - STATE(1796), 1, + STATE(1704), 1, sym_cell_path, - STATE(3674), 1, + STATE(3417), 1, sym_comment, - STATE(3694), 1, + STATE(3442), 1, aux_sym_cell_path_repeat1, - ACTIONS(1810), 31, + ACTIONS(1947), 31, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_EQ_GT, @@ -353987,22 +329858,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [139535] = 8, + [136140] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1820), 1, + STATE(3418), 1, + sym_comment, + ACTIONS(1056), 3, anon_sym_DASH, - ACTIONS(6612), 1, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(1625), 1, - sym_path, - STATE(1797), 1, - sym_cell_path, - STATE(3675), 1, - sym_comment, - STATE(3694), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1822), 31, + ACTIONS(1058), 33, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_EQ_GT, @@ -354034,22 +329899,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [139590] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [136187] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1741), 1, + ACTIONS(1961), 1, anon_sym_DASH, - ACTIONS(6612), 1, + ACTIONS(6389), 1, anon_sym_DOT, - STATE(1625), 1, + STATE(1530), 1, sym_path, - STATE(1798), 1, + STATE(1686), 1, sym_cell_path, - STATE(3676), 1, + STATE(3419), 1, sym_comment, - STATE(3694), 1, + STATE(3442), 1, aux_sym_cell_path_repeat1, - ACTIONS(1745), 31, + ACTIONS(1963), 31, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_EQ_GT, @@ -354081,22 +329948,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [139645] = 8, + [136242] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1899), 1, + ACTIONS(1875), 1, anon_sym_DASH, - ACTIONS(6612), 1, + ACTIONS(6389), 1, anon_sym_DOT, - STATE(1625), 1, + STATE(1530), 1, sym_path, - STATE(1799), 1, + STATE(1699), 1, sym_cell_path, - STATE(3677), 1, + STATE(3420), 1, sym_comment, - STATE(3694), 1, + STATE(3442), 1, aux_sym_cell_path_repeat1, - ACTIONS(1901), 31, + ACTIONS(1877), 31, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_EQ_GT, @@ -354128,69 +329995,871 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [139700] = 8, + [136297] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6399), 1, + anon_sym_DOT_DOT2, + STATE(3421), 1, + sym_comment, + ACTIONS(6401), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1786), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1794), 23, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [136347] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1575), 1, + sym__newline, + ACTIONS(6403), 1, + anon_sym_DOT_DOT2, + ACTIONS(6407), 1, + sym_filesize_unit, + ACTIONS(6409), 1, + sym_duration_unit, + STATE(3422), 1, + sym_comment, + ACTIONS(6405), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1587), 29, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [136401] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6411), 1, + anon_sym_DOT, + STATE(3423), 1, + sym_comment, + STATE(3455), 1, + aux_sym_cell_path_repeat1, + STATE(3504), 1, + sym_path, + STATE(3662), 1, + sym_cell_path, + ACTIONS(1851), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1853), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [136455] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6411), 1, + anon_sym_DOT, + STATE(3424), 1, + sym_comment, + STATE(3455), 1, + aux_sym_cell_path_repeat1, + STATE(3504), 1, + sym_path, + STATE(3664), 1, + sym_cell_path, + ACTIONS(1859), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1861), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [136509] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6411), 1, + anon_sym_DOT, + STATE(3425), 1, + sym_comment, + STATE(3455), 1, + aux_sym_cell_path_repeat1, + STATE(3504), 1, + sym_path, + STATE(3666), 1, + sym_cell_path, + ACTIONS(1867), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1869), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [136563] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6413), 1, + aux_sym__immediate_decimal_token2, + STATE(3426), 1, + sym_comment, + ACTIONS(1705), 9, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1707), 25, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [136611] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3427), 1, + sym_comment, + ACTIONS(1575), 3, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + ACTIONS(1587), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [136657] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6411), 1, + anon_sym_DOT, + STATE(3428), 1, + sym_comment, + STATE(3455), 1, + aux_sym_cell_path_repeat1, + STATE(3504), 1, + sym_path, + STATE(3665), 1, + sym_cell_path, + ACTIONS(1863), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1865), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [136711] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6411), 1, + anon_sym_DOT, + STATE(3429), 1, + sym_comment, + STATE(3455), 1, + aux_sym_cell_path_repeat1, + STATE(3504), 1, + sym_path, + STATE(3663), 1, + sym_cell_path, + ACTIONS(1855), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1857), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [136765] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6411), 1, + anon_sym_DOT, + STATE(3430), 1, + sym_comment, + STATE(3455), 1, + aux_sym_cell_path_repeat1, + STATE(3504), 1, + sym_path, + STATE(3657), 1, + sym_cell_path, + ACTIONS(1829), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1833), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [136819] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6411), 1, + anon_sym_DOT, + STATE(3431), 1, + sym_comment, + STATE(3455), 1, + aux_sym_cell_path_repeat1, + STATE(3504), 1, + sym_path, + STATE(3671), 1, + sym_cell_path, + ACTIONS(1894), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1896), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [136873] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6411), 1, + anon_sym_DOT, + STATE(3432), 1, + sym_comment, + STATE(3455), 1, + aux_sym_cell_path_repeat1, + STATE(3504), 1, + sym_path, + STATE(3667), 1, + sym_cell_path, + ACTIONS(1871), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1873), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [136927] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6397), 1, + aux_sym__immediate_decimal_token2, + STATE(3433), 1, + sym_comment, + ACTIONS(1643), 9, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1645), 25, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [136975] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6411), 1, + anon_sym_DOT, + STATE(3434), 1, + sym_comment, + STATE(3455), 1, + aux_sym_cell_path_repeat1, + STATE(3504), 1, + sym_path, + STATE(3669), 1, + sym_cell_path, + ACTIONS(1969), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1971), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [137029] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6411), 1, + anon_sym_DOT, + STATE(3435), 1, + sym_comment, + STATE(3455), 1, + aux_sym_cell_path_repeat1, + STATE(3504), 1, + sym_path, + STATE(3526), 1, + sym_cell_path, + ACTIONS(1957), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1959), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [137083] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6411), 1, + anon_sym_DOT, + STATE(3436), 1, + sym_comment, + STATE(3455), 1, + aux_sym_cell_path_repeat1, + STATE(3504), 1, + sym_path, + STATE(3673), 1, + sym_cell_path, + ACTIONS(1945), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1947), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [137137] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3437), 1, + sym_comment, + ACTIONS(2436), 3, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + ACTIONS(2438), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [137183] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6415), 1, + anon_sym_DOT_DOT2, + STATE(3438), 1, + sym_comment, + ACTIONS(6417), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1796), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1804), 23, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [137233] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1831), 1, - anon_sym_DASH, - ACTIONS(6612), 1, + ACTIONS(6411), 1, anon_sym_DOT, - STATE(1625), 1, - sym_path, - STATE(1800), 1, - sym_cell_path, - STATE(3678), 1, + STATE(3439), 1, sym_comment, - STATE(3694), 1, + STATE(3455), 1, aux_sym_cell_path_repeat1, - ACTIONS(1833), 31, - anon_sym_DASH_DASH, + STATE(3504), 1, + sym_path, + STATE(3670), 1, + sym_cell_path, + ACTIONS(1890), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1892), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [139755] = 8, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [137287] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1835), 1, - anon_sym_DASH, - ACTIONS(6612), 1, - anon_sym_DOT, - STATE(1625), 1, - sym_path, - STATE(1801), 1, - sym_cell_path, - STATE(3679), 1, + STATE(3440), 1, sym_comment, - STATE(3694), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1837), 31, + ACTIONS(1064), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(1066), 33, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_EQ_GT, @@ -354222,63 +330891,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [139810] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [137333] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1839), 1, - anon_sym_DASH, - ACTIONS(6612), 1, + ACTIONS(6411), 1, anon_sym_DOT, - STATE(1625), 1, - sym_path, - STATE(1802), 1, - sym_cell_path, - STATE(3680), 1, + STATE(3441), 1, sym_comment, - STATE(3694), 1, + STATE(3455), 1, aux_sym_cell_path_repeat1, - ACTIONS(1841), 31, - anon_sym_DASH_DASH, + STATE(3504), 1, + sym_path, + STATE(3674), 1, + sym_cell_path, + ACTIONS(1949), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1951), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [139865] = 4, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [137387] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(3681), 1, - sym_comment, - ACTIONS(986), 3, + ACTIONS(1017), 1, anon_sym_DASH, - anon_sym_DOT_DOT2, + ACTIONS(6389), 1, anon_sym_DOT, - ACTIONS(988), 33, + STATE(1530), 1, + sym_path, + STATE(3442), 1, + sym_comment, + STATE(3447), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1019), 31, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_EQ_GT, @@ -354310,22 +330984,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [139912] = 8, + [137439] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6630), 1, + ACTIONS(6411), 1, anon_sym_DOT, - STATE(3682), 1, + STATE(3443), 1, sym_comment, - STATE(3717), 1, + STATE(3455), 1, aux_sym_cell_path_repeat1, - STATE(3769), 1, + STATE(3504), 1, sym_path, - STATE(3919), 1, + STATE(3658), 1, sym_cell_path, - ACTIONS(1855), 7, + ACTIONS(1835), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -354333,7 +331005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1857), 24, + ACTIONS(1837), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -354358,20 +331030,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [139966] = 8, + [137493] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6630), 1, + ACTIONS(6411), 1, anon_sym_DOT, - STATE(3683), 1, + STATE(3444), 1, sym_comment, - STATE(3717), 1, + STATE(3455), 1, aux_sym_cell_path_repeat1, - STATE(3769), 1, + STATE(3504), 1, sym_path, - STATE(3934), 1, + STATE(3659), 1, sym_cell_path, - ACTIONS(1808), 7, + ACTIONS(1839), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -354379,7 +331051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1810), 24, + ACTIONS(1841), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -354404,20 +331076,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [140020] = 8, + [137547] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6630), 1, + ACTIONS(6411), 1, anon_sym_DOT, - STATE(3684), 1, + STATE(3445), 1, sym_comment, - STATE(3717), 1, + STATE(3455), 1, aux_sym_cell_path_repeat1, - STATE(3769), 1, + STATE(3504), 1, sym_path, - STATE(3947), 1, + STATE(3532), 1, sym_cell_path, - ACTIONS(1820), 7, + ACTIONS(1961), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -354425,7 +331097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1822), 24, + ACTIONS(1963), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -354450,20 +331122,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [140074] = 8, + [137601] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6630), 1, + ACTIONS(6411), 1, anon_sym_DOT, - STATE(3685), 1, + STATE(3446), 1, sym_comment, - STATE(3717), 1, + STATE(3455), 1, aux_sym_cell_path_repeat1, - STATE(3769), 1, + STATE(3504), 1, sym_path, - STATE(3949), 1, + STATE(3660), 1, sym_cell_path, - ACTIONS(1741), 7, + ACTIONS(1843), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -354471,7 +331143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1745), 24, + ACTIONS(1845), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -354496,20 +331168,64 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [140128] = 8, + [137655] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6630), 1, + ACTIONS(1021), 1, + anon_sym_DASH, + ACTIONS(6419), 1, anon_sym_DOT, - STATE(3686), 1, + STATE(1530), 1, + sym_path, + STATE(3447), 2, sym_comment, - STATE(3717), 1, aux_sym_cell_path_repeat1, - STATE(3769), 1, + ACTIONS(1023), 31, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [137705] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6411), 1, + anon_sym_DOT, + STATE(3448), 1, + sym_comment, + STATE(3455), 1, + aux_sym_cell_path_repeat1, + STATE(3504), 1, sym_path, - STATE(3950), 1, + STATE(3668), 1, sym_cell_path, - ACTIONS(1899), 7, + ACTIONS(1875), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -354517,7 +331233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1901), 24, + ACTIONS(1877), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -354542,20 +331258,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [140182] = 8, + [137759] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6630), 1, + ACTIONS(6411), 1, anon_sym_DOT, - STATE(3687), 1, + STATE(3449), 1, sym_comment, - STATE(3717), 1, + STATE(3455), 1, aux_sym_cell_path_repeat1, - STATE(3769), 1, + STATE(3504), 1, sym_path, - STATE(3951), 1, + STATE(3661), 1, sym_cell_path, - ACTIONS(1831), 7, + ACTIONS(1847), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -354563,7 +331279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1833), 24, + ACTIONS(1849), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -354588,20 +331304,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [140236] = 8, + [137813] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6630), 1, + ACTIONS(6411), 1, anon_sym_DOT, - STATE(3688), 1, + STATE(3450), 1, sym_comment, - STATE(3717), 1, + STATE(3455), 1, aux_sym_cell_path_repeat1, - STATE(3769), 1, + STATE(3504), 1, sym_path, - STATE(3963), 1, + STATE(3561), 1, sym_cell_path, - ACTIONS(1835), 7, + ACTIONS(1011), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -354609,7 +331325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1837), 24, + ACTIONS(1013), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -354634,63 +331350,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [140290] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6620), 1, - aux_sym__immediate_decimal_token2, - STATE(3689), 1, - sym_comment, - ACTIONS(1589), 9, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1591), 25, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [140338] = 8, + [137867] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6630), 1, + ACTIONS(6411), 1, anon_sym_DOT, - STATE(3690), 1, + STATE(3451), 1, sym_comment, - STATE(3717), 1, + STATE(3455), 1, aux_sym_cell_path_repeat1, - STATE(3769), 1, + STATE(3504), 1, sym_path, - STATE(3889), 1, + STATE(3542), 1, sym_cell_path, - ACTIONS(1778), 7, + ACTIONS(1965), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -354698,7 +331371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1780), 24, + ACTIONS(1967), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -354723,20 +331396,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [140392] = 8, + [137921] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6630), 1, + ACTIONS(6411), 1, anon_sym_DOT, - STATE(3691), 1, + STATE(3452), 1, sym_comment, - STATE(3717), 1, + STATE(3455), 1, aux_sym_cell_path_repeat1, - STATE(3769), 1, + STATE(3504), 1, sym_path, - STATE(3964), 1, + STATE(3672), 1, sym_cell_path, - ACTIONS(1839), 7, + ACTIONS(1937), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -354744,7 +331417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1841), 24, + ACTIONS(1939), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -354769,20 +331442,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [140446] = 8, + [137975] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6630), 1, + ACTIONS(6411), 1, anon_sym_DOT, - STATE(3692), 1, + STATE(3453), 1, sym_comment, - STATE(3717), 1, + STATE(3455), 1, aux_sym_cell_path_repeat1, - STATE(3769), 1, + STATE(3504), 1, sym_path, - STATE(3891), 1, + STATE(3545), 1, sym_cell_path, - ACTIONS(945), 7, + ACTIONS(1879), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -354790,7 +331463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(947), 24, + ACTIONS(1881), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -354815,67 +331488,21 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [140500] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5081), 1, - anon_sym_DOT, - STATE(816), 1, - sym_cell_path, - STATE(1625), 1, - sym_path, - STATE(1933), 1, - aux_sym_cell_path_repeat1, - STATE(3693), 1, - sym_comment, - ACTIONS(1603), 31, - sym__newline, - anon_sym_COMMA, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [140552] = 7, + [138029] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(951), 1, - anon_sym_DASH, - ACTIONS(6612), 1, - anon_sym_DOT, - STATE(1625), 1, - sym_path, - STATE(3694), 1, + ACTIONS(5905), 1, + sym_filesize_unit, + ACTIONS(5907), 1, + sym_duration_unit, + ACTIONS(6422), 1, + anon_sym_DOT_DOT2, + STATE(3454), 1, sym_comment, - STATE(3710), 1, - aux_sym_cell_path_repeat1, - ACTIONS(953), 31, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + ACTIONS(6424), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1587), 29, anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -354905,20 +331532,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [140604] = 8, + [138080] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6630), 1, + ACTIONS(6411), 1, anon_sym_DOT, - STATE(3695), 1, + STATE(3455), 1, sym_comment, - STATE(3717), 1, + STATE(3456), 1, aux_sym_cell_path_repeat1, - STATE(3769), 1, + STATE(3504), 1, sym_path, - STATE(3880), 1, - sym_cell_path, - ACTIONS(1762), 7, + ACTIONS(1017), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -354926,7 +331551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1764), 24, + ACTIONS(1019), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -354951,20 +331576,17 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [140658] = 8, + [138131] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6630), 1, + ACTIONS(6426), 1, anon_sym_DOT, - STATE(3696), 1, + STATE(3504), 1, + sym_path, + STATE(3456), 2, sym_comment, - STATE(3717), 1, aux_sym_cell_path_repeat1, - STATE(3769), 1, - sym_path, - STATE(3877), 1, - sym_cell_path, - ACTIONS(1770), 7, + ACTIONS(1021), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -354972,7 +331594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1772), 24, + ACTIONS(1023), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -354997,64 +331619,312 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [140712] = 8, + [138180] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6608), 1, - sym_filesize_unit, - ACTIONS(6610), 1, - sym_duration_unit, - ACTIONS(6632), 1, + STATE(3457), 1, + sym_comment, + ACTIONS(1643), 9, anon_sym_DOT_DOT2, - ACTIONS(6636), 1, - aux_sym_unquoted_token2, - STATE(3697), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1645), 25, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [138225] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3458), 1, + sym_comment, + ACTIONS(1755), 9, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1757), 25, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [138270] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3459), 1, sym_comment, - ACTIONS(6634), 2, + ACTIONS(1705), 9, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1707), 25, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1537), 29, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [140766] = 4, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [138315] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3698), 1, + STATE(3460), 1, sym_comment, - ACTIONS(1021), 2, + ACTIONS(2133), 9, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2135), 25, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [138360] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3461), 1, + sym_comment, + ACTIONS(1631), 9, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1633), 25, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [138405] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3462), 1, + sym_comment, + ACTIONS(2019), 9, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2021), 25, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [138450] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6429), 1, + anon_sym_LPAREN2, + ACTIONS(6431), 1, + anon_sym_EQ2, + ACTIONS(6433), 1, + sym_short_flag_identifier, + STATE(3463), 1, + sym_comment, + ACTIONS(4749), 12, + anon_sym_LBRACK, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4747), 19, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + [138501] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5905), 1, + sym_filesize_unit, + ACTIONS(5907), 1, + sym_duration_unit, + ACTIONS(6435), 1, anon_sym_DOT_DOT2, - ACTIONS(1023), 33, - anon_sym_DASH_DASH, + STATE(3464), 1, + sym_comment, + ACTIONS(6437), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1587), 29, aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -355083,25 +331953,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [140812] = 8, + [138552] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1525), 1, + ACTIONS(1076), 1, sym__newline, - ACTIONS(6638), 1, + ACTIONS(6439), 1, anon_sym_DOT_DOT2, - ACTIONS(6642), 1, - sym_filesize_unit, - ACTIONS(6644), 1, - sym_duration_unit, - STATE(3699), 1, + STATE(3465), 1, sym_comment, - ACTIONS(6640), 2, + ACTIONS(6441), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1537), 29, + ACTIONS(1078), 29, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, @@ -355131,161 +331995,186 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [140866] = 8, + [138600] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6630), 1, - anon_sym_DOT, - STATE(3700), 1, + STATE(3466), 1, sym_comment, - STATE(3717), 1, - aux_sym_cell_path_repeat1, - STATE(3769), 1, - sym_path, - STATE(3907), 1, - sym_cell_path, - ACTIONS(1847), 7, - anon_sym_DOLLAR, + ACTIONS(1786), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1849), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1794), 24, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [140920] = 8, - ACTIONS(247), 1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [138644] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6630), 1, - anon_sym_DOT, - STATE(3701), 1, + ACTIONS(2239), 1, + anon_sym_LPAREN2, + ACTIONS(2241), 1, + aux_sym_unquoted_token4, + STATE(3467), 1, sym_comment, - STATE(3717), 1, - aux_sym_cell_path_repeat1, - STATE(3769), 1, - sym_path, - STATE(3908), 1, - sym_cell_path, - ACTIONS(1871), 7, - anon_sym_DOLLAR, + ACTIONS(1076), 2, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1873), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1078), 29, aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [140974] = 8, - ACTIONS(247), 1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [138692] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6630), 1, - anon_sym_DOT, - STATE(3702), 1, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(3468), 1, sym_comment, - STATE(3717), 1, - aux_sym_cell_path_repeat1, - STATE(3769), 1, - sym_path, - STATE(3885), 1, - sym_cell_path, - ACTIONS(1774), 7, - anon_sym_DOLLAR, + ACTIONS(2293), 2, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1776), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(2297), 29, aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [141028] = 7, - ACTIONS(247), 1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [138740] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2245), 1, + anon_sym_LPAREN2, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + STATE(3469), 1, + sym_comment, + ACTIONS(2243), 2, + anon_sym_DASH_DASH, + anon_sym_DASH, + ACTIONS(2247), 29, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [138788] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5081), 1, - anon_sym_DOT, - STATE(963), 1, - sym_cell_path, - STATE(1625), 1, - sym_path, - STATE(1933), 1, - aux_sym_cell_path_repeat1, - STATE(3703), 1, + ACTIONS(2245), 1, + anon_sym_LPAREN2, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + STATE(3470), 1, sym_comment, - ACTIONS(947), 31, - sym__newline, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2251), 2, + anon_sym_DASH_DASH, + anon_sym_DASH, + ACTIONS(2253), 29, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -355314,74 +332203,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [141080] = 8, + [138836] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6630), 1, - anon_sym_DOT, - STATE(3704), 1, + STATE(3471), 1, sym_comment, - STATE(3717), 1, - aux_sym_cell_path_repeat1, - STATE(3769), 1, - sym_path, - STATE(3909), 1, - sym_cell_path, - ACTIONS(1875), 7, + ACTIONS(1040), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1877), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [141134] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6630), 1, anon_sym_DOT, - STATE(3705), 1, - sym_comment, - STATE(3717), 1, - aux_sym_cell_path_repeat1, - STATE(3769), 1, - sym_path, - STATE(3910), 1, - sym_cell_path, - ACTIONS(1879), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1881), 24, + ACTIONS(1042), 25, anon_sym_true, anon_sym_false, anon_sym_null, @@ -355391,6 +332227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, aux_sym_ctrl_match_token1, + anon_sym_QMARK2, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -355406,74 +332243,21 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [141188] = 8, + [138880] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6630), 1, - anon_sym_DOT, - STATE(3706), 1, + STATE(3472), 1, sym_comment, - STATE(3717), 1, - aux_sym_cell_path_repeat1, - STATE(3769), 1, - sym_path, - STATE(3911), 1, - sym_cell_path, - ACTIONS(1883), 7, + ACTIONS(1044), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1885), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [141242] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6630), 1, anon_sym_DOT, - STATE(3707), 1, - sym_comment, - STATE(3717), 1, - aux_sym_cell_path_repeat1, - STATE(3769), 1, - sym_path, - STATE(3914), 1, - sym_cell_path, - ACTIONS(1891), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1893), 24, + ACTIONS(1046), 25, anon_sym_true, anon_sym_false, anon_sym_null, @@ -355483,6 +332267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, aux_sym_ctrl_match_token1, + anon_sym_QMARK2, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -355498,28 +332283,21 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [141296] = 8, + [138924] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6630), 1, - anon_sym_DOT, - STATE(3708), 1, + STATE(3473), 1, sym_comment, - STATE(3717), 1, - aux_sym_cell_path_repeat1, - STATE(3769), 1, - sym_path, - STATE(3915), 1, - sym_cell_path, - ACTIONS(1895), 7, + ACTIONS(1048), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1897), 24, + ACTIONS(1050), 25, anon_sym_true, anon_sym_false, anon_sym_null, @@ -355529,6 +332307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, aux_sym_ctrl_match_token1, + anon_sym_QMARK2, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -355544,15 +332323,13 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [141350] = 5, + [138968] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6646), 1, - aux_sym__immediate_decimal_token2, - STATE(3709), 1, + STATE(3474), 1, sym_comment, - ACTIONS(1648), 9, - anon_sym_DOT_DOT2, + ACTIONS(2218), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -355561,8 +332338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1650), 25, - ts_builtin_sym_end, + ACTIONS(2222), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355574,11 +332350,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -355587,22 +332363,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [141398] = 6, - ACTIONS(247), 1, + [139012] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(955), 1, - anon_sym_DASH, - ACTIONS(6648), 1, - anon_sym_DOT, - STATE(1625), 1, - sym_path, - STATE(3710), 2, + STATE(3475), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(957), 31, + ACTIONS(2259), 3, anon_sym_DASH_DASH, + anon_sym_DASH, + aux_sym_unquoted_token4, + ACTIONS(2261), 30, aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -355631,28 +332403,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [141448] = 8, + [139056] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6630), 1, - anon_sym_DOT, - STATE(3711), 1, + ACTIONS(6443), 1, + anon_sym_QMARK2, + STATE(3476), 1, sym_comment, - STATE(3717), 1, - aux_sym_cell_path_repeat1, - STATE(3769), 1, - sym_path, - STATE(3917), 1, - sym_cell_path, - ACTIONS(1747), 7, + ACTIONS(1034), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1749), 24, + ACTIONS(1036), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -355677,112 +332444,23 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [141502] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3712), 1, - sym_comment, - ACTIONS(1525), 3, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - ACTIONS(1537), 32, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [141548] = 4, + [139102] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3713), 1, - sym_comment, - ACTIONS(2389), 3, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - ACTIONS(2391), 32, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_as, + ACTIONS(6445), 1, anon_sym_QMARK2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [141594] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6630), 1, - anon_sym_DOT, - STATE(3714), 1, + STATE(3477), 1, sym_comment, - STATE(3717), 1, - aux_sym_cell_path_repeat1, - STATE(3769), 1, - sym_path, - STATE(3918), 1, - sym_cell_path, - ACTIONS(1824), 7, + ACTIONS(1028), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1826), 24, + ACTIONS(1030), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -355807,58 +332485,55 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [141648] = 8, + [139148] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6630), 1, + ACTIONS(6389), 1, anon_sym_DOT, - STATE(3715), 1, - sym_comment, - STATE(3717), 1, - aux_sym_cell_path_repeat1, - STATE(3769), 1, - sym_path, - STATE(3920), 1, + STATE(1204), 1, sym_cell_path, - ACTIONS(1796), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1798), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, + STATE(1530), 1, + sym_path, + STATE(3442), 1, + aux_sym_cell_path_repeat1, + STATE(3478), 1, + sym_comment, + ACTIONS(1013), 29, aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [141702] = 4, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [139198] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3716), 1, + STATE(3479), 1, sym_comment, - ACTIONS(2117), 9, + ACTIONS(2224), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -355868,7 +332543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2121), 25, + ACTIONS(2228), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355881,7 +332556,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, @@ -355894,57 +332568,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [141747] = 7, + [139242] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6630), 1, + ACTIONS(6397), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6447), 1, anon_sym_DOT, - STATE(3717), 1, - sym_comment, - STATE(3720), 1, - aux_sym_cell_path_repeat1, - STATE(3769), 1, - sym_path, - ACTIONS(951), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(953), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [141798] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3718), 1, + STATE(3480), 1, sym_comment, - ACTIONS(1721), 9, - anon_sym_DOT_DOT2, + ACTIONS(1643), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -355953,7 +332586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1723), 25, + ACTIONS(1645), 23, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -355969,8 +332602,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -355979,72 +332610,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [141843] = 4, + [139290] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(3719), 1, - sym_comment, - ACTIONS(1943), 9, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1945), 25, - ts_builtin_sym_end, + ACTIONS(5103), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(5106), 1, + aux_sym_ctrl_match_token1, + ACTIONS(6439), 1, + anon_sym_DOT_DOT2, + STATE(3481), 1, + sym_comment, + ACTIONS(6441), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [141888] = 6, + ACTIONS(5108), 28, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [139340] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6651), 1, - anon_sym_DOT, - STATE(3769), 1, - sym_path, - STATE(3720), 2, + ACTIONS(6449), 1, + sym_long_flag_identifier, + ACTIONS(6451), 1, + anon_sym_EQ2, + STATE(3482), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(955), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(957), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, + ACTIONS(4737), 15, aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, aux_sym_ctrl_match_token1, @@ -356054,72 +332673,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [141937] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3721), 1, - sym_comment, - ACTIONS(1648), 9, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1650), 25, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [141982] = 4, + ACTIONS(4735), 16, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + [139388] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(3722), 1, + ACTIONS(6453), 1, + anon_sym_DOT, + STATE(3483), 1, sym_comment, - ACTIONS(1589), 9, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1591), 25, + STATE(3487), 1, + aux_sym_cell_path_repeat1, + STATE(3546), 1, + sym_path, + ACTIONS(1017), 3, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + ACTIONS(1019), 27, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -356132,25 +332723,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [142027] = 4, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [139438] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3723), 1, + STATE(3484), 1, sym_comment, - ACTIONS(1709), 9, + ACTIONS(4818), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -356160,7 +332753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1717), 25, + ACTIONS(4816), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356173,7 +332766,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, @@ -356186,53 +332778,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [142072] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3724), 1, - sym_comment, - ACTIONS(1569), 9, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1571), 25, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [142117] = 4, + [139482] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3725), 1, + STATE(3485), 1, sym_comment, - ACTIONS(1690), 9, + ACTIONS(2160), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -356242,7 +332793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1698), 25, + ACTIONS(2162), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356255,7 +332806,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, @@ -356268,12 +332818,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [142162] = 4, + [139526] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3726), 1, + STATE(3486), 1, sym_comment, - ACTIONS(2085), 9, + ACTIONS(1796), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -356283,7 +332833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2087), 25, + ACTIONS(1804), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356296,7 +332846,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, anon_sym_RBRACE, @@ -356309,22 +332858,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [142207] = 4, + [139570] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3727), 1, + ACTIONS(6455), 1, + anon_sym_DOT, + STATE(3546), 1, + sym_path, + STATE(3487), 2, sym_comment, - ACTIONS(3175), 9, + aux_sym_cell_path_repeat1, + ACTIONS(1021), 3, + anon_sym_GT, anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(3173), 25, + anon_sym_LT2, + ACTIONS(1023), 27, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356336,80 +332885,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [142252] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5975), 1, - sym_filesize_unit, - ACTIONS(5977), 1, - sym_duration_unit, - ACTIONS(6654), 1, - anon_sym_DOT_DOT2, - STATE(3728), 1, - sym_comment, - ACTIONS(6656), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1537), 29, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [142303] = 4, + anon_sym_in, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [139618] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3729), 1, + ACTIONS(6458), 1, + anon_sym_QMARK2, + STATE(3488), 1, sym_comment, - ACTIONS(1953), 9, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1955), 25, + ACTIONS(1034), 3, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + ACTIONS(1036), 28, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -356422,34 +332924,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [142348] = 7, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [139663] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5975), 1, - sym_filesize_unit, - ACTIONS(5977), 1, - sym_duration_unit, - ACTIONS(6658), 1, - anon_sym_DOT_DOT2, - STATE(3730), 1, + ACTIONS(1575), 1, + anon_sym_DASH, + ACTIONS(4618), 1, + aux_sym_unquoted_token2, + STATE(3489), 1, sym_comment, - ACTIONS(6660), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1537), 29, + ACTIONS(1587), 30, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -356479,84 +332980,157 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [142399] = 4, + [139708] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(3490), 1, + sym_comment, + ACTIONS(2297), 9, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2293), 22, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + [139753] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3731), 1, + STATE(3491), 1, sym_comment, - ACTIONS(2123), 9, + ACTIONS(1060), 8, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2127), 25, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1062), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, aux_sym_ctrl_match_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [142444] = 7, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [139796] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6662), 1, - anon_sym_LPAREN2, - ACTIONS(6664), 1, - anon_sym_EQ2, - ACTIONS(6666), 1, - sym_short_flag_identifier, - STATE(3732), 1, + STATE(3492), 1, sym_comment, - ACTIONS(4944), 12, + ACTIONS(1052), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1054), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_LPAREN, aux_sym_ctrl_match_token1, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [139839] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + STATE(3493), 1, + sym_comment, + ACTIONS(2247), 9, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4942), 19, + ACTIONS(2243), 22, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -356564,21 +333138,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - [142495] = 7, - ACTIONS(247), 1, + [139884] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6612), 1, - anon_sym_DOT, - STATE(1409), 1, - sym_cell_path, - STATE(1625), 1, - sym_path, - STATE(3694), 1, - aux_sym_cell_path_repeat1, - STATE(3733), 1, + STATE(3494), 1, sym_comment, - ACTIONS(947), 29, - aux_sym_ctrl_match_token1, + ACTIONS(2259), 2, + anon_sym_EQ_GT, + aux_sym_unquoted_token4, + ACTIONS(2261), 30, + anon_sym_PIPE, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -356607,41 +333177,162 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [142545] = 6, - ACTIONS(247), 1, + [139927] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2293), 1, + sym__newline, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(3495), 1, + sym_comment, + ACTIONS(2297), 29, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [139974] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2243), 1, + sym__newline, + ACTIONS(2245), 1, + anon_sym_LPAREN2, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + STATE(3496), 1, + sym_comment, + ACTIONS(2247), 29, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [140021] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2245), 1, + anon_sym_LPAREN2, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + ACTIONS(2251), 1, + sym__newline, + STATE(3497), 1, + sym_comment, + ACTIONS(2253), 29, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [140068] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6668), 1, - sym_long_flag_identifier, - ACTIONS(6670), 1, - anon_sym_EQ2, - STATE(3734), 1, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + STATE(3498), 1, sym_comment, - ACTIONS(4952), 15, - aux_sym_cmd_identifier_token39, + ACTIONS(2253), 9, anon_sym_LBRACK, anon_sym_LPAREN, aux_sym_ctrl_match_token1, aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4950), 16, + ACTIONS(2251), 22, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -356649,60 +333340,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - [142593] = 4, + [140113] = 27, ACTIONS(247), 1, anon_sym_POUND, - STATE(3735), 1, - sym_comment, - ACTIONS(966), 8, - anon_sym_DOLLAR, + ACTIONS(3387), 1, anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(968), 25, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, + ACTIONS(3393), 1, + aux_sym_expr_unary_token1, + ACTIONS(3405), 1, aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, + ACTIONS(6460), 1, + sym_identifier, + ACTIONS(6466), 1, + sym__newline, + ACTIONS(6468), 1, anon_sym_LPAREN, + ACTIONS(6470), 1, + anon_sym_DOLLAR, + ACTIONS(6472), 1, aux_sym_ctrl_match_token1, - anon_sym_QMARK2, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + ACTIONS(6474), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6476), 1, aux_sym__val_number_decimal_token2, + ACTIONS(6478), 1, aux_sym__val_number_decimal_token3, + ACTIONS(6480), 1, aux_sym__val_number_decimal_token4, + STATE(3427), 1, + sym__val_number_decimal, + STATE(3437), 1, + sym__val_number, + STATE(3499), 1, + sym_comment, + STATE(3517), 1, + aux_sym_shebang_repeat1, + STATE(3777), 1, + sym_expr_parenthesized, + STATE(4209), 1, + sym_val_number, + STATE(4266), 1, + sym__expr_unary_minus, + STATE(4287), 1, + sym__binary_predicate_parenthesized, + STATE(4310), 1, + sym__predicate, + STATE(4898), 1, + sym_val_closure, + ACTIONS(6462), 2, + anon_sym_true, + anon_sym_false, + STATE(4408), 2, + sym_expr_unary, + sym_val_bool, + STATE(5097), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6464), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [142637] = 6, + [140202] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2089), 1, - anon_sym_COMMA, - ACTIONS(2091), 1, + ACTIONS(2293), 1, + anon_sym_EQ_GT, + ACTIONS(2295), 1, anon_sym_LPAREN2, - ACTIONS(2095), 1, + ACTIONS(2299), 1, aux_sym_unquoted_token4, - STATE(3736), 1, + STATE(3500), 1, sym_comment, - ACTIONS(2093), 30, - sym__newline, - anon_sym_RBRACE, + ACTIONS(2297), 29, + anon_sym_PIPE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -356731,20 +333443,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [142685] = 6, + [140249] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2097), 1, - anon_sym_COMMA, - ACTIONS(2099), 1, + STATE(3501), 1, + sym_comment, + ACTIONS(2259), 2, + sym__newline, + aux_sym_unquoted_token4, + ACTIONS(2261), 30, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [140292] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2243), 1, + anon_sym_EQ_GT, + ACTIONS(2245), 1, anon_sym_LPAREN2, - ACTIONS(2103), 1, + ACTIONS(2249), 1, aux_sym_unquoted_token4, - STATE(3737), 1, + STATE(3502), 1, sym_comment, - ACTIONS(2101), 30, - sym__newline, - anon_sym_RBRACE, + ACTIONS(2247), 29, + anon_sym_PIPE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -356773,20 +333523,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [142733] = 6, + [140339] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2099), 1, + ACTIONS(2245), 1, anon_sym_LPAREN2, - ACTIONS(2103), 1, + ACTIONS(2249), 1, aux_sym_unquoted_token4, - ACTIONS(2105), 1, - anon_sym_COMMA, - STATE(3738), 1, + ACTIONS(2251), 1, + anon_sym_EQ_GT, + STATE(3503), 1, sym_comment, - ACTIONS(2107), 30, - sym__newline, - anon_sym_RBRACE, + ACTIONS(2253), 29, + anon_sym_PIPE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -356815,97 +333564,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [142781] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6672), 1, - anon_sym_DOT, - STATE(3739), 1, - sym_comment, - STATE(3747), 1, - aux_sym_cell_path_repeat1, - STATE(3893), 1, - sym_path, - ACTIONS(951), 3, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - ACTIONS(953), 27, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [142831] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1006), 1, - sym__newline, - ACTIONS(6674), 1, - anon_sym_DOT_DOT2, - STATE(3740), 1, - sym_comment, - ACTIONS(6676), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1008), 29, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [142879] = 4, + [140386] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3741), 1, + STATE(3504), 1, sym_comment, - ACTIONS(976), 8, + ACTIONS(1056), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -356914,7 +333578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(978), 25, + ACTIONS(1058), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -356924,7 +333588,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, aux_sym_ctrl_match_token1, - anon_sym_QMARK2, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -356940,59 +333603,17 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [142923] = 4, + [140429] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3742), 1, - sym_comment, - ACTIONS(962), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(964), 25, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - anon_sym_QMARK2, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [142967] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2091), 1, - anon_sym_LPAREN2, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(3743), 1, + ACTIONS(6482), 1, + anon_sym_DOT_DOT2, + STATE(3505), 1, sym_comment, - ACTIONS(2089), 2, - anon_sym_DASH_DASH, - anon_sym_DASH, - ACTIONS(2093), 29, + ACTIONS(6484), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1078), 29, aux_sym_ctrl_match_token1, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -357022,148 +333643,181 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [143015] = 6, - ACTIONS(3), 1, + [140474] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2099), 1, - anon_sym_LPAREN2, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - STATE(3744), 1, + ACTIONS(5637), 1, + anon_sym_DOT, + STATE(2590), 1, + sym_path, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(3506), 1, sym_comment, - ACTIONS(2097), 2, - anon_sym_DASH_DASH, - anon_sym_DASH, - ACTIONS(2101), 29, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [143063] = 6, - ACTIONS(3), 1, + STATE(3541), 1, + sym_cell_path, + ACTIONS(1686), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1688), 26, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [140525] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2099), 1, - anon_sym_LPAREN2, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - STATE(3745), 1, + ACTIONS(5637), 1, + anon_sym_DOT, + STATE(2590), 1, + sym_path, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(3507), 1, sym_comment, - ACTIONS(2105), 2, - anon_sym_DASH_DASH, + STATE(3543), 1, + sym_cell_path, + ACTIONS(1625), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1629), 26, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [140576] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6486), 1, + anon_sym_LBRACK2, + STATE(3508), 1, + sym_comment, + ACTIONS(2303), 8, + anon_sym_LBRACK, + anon_sym_DOLLAR, anon_sym_DASH, - ACTIONS(2107), 29, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2307), 23, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LPAREN, aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [143111] = 7, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [140621] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5224), 1, - sym__newline, - ACTIONS(5227), 1, - aux_sym_ctrl_match_token1, - ACTIONS(6674), 1, - anon_sym_DOT_DOT2, - STATE(3746), 1, + STATE(3509), 1, sym_comment, - ACTIONS(6676), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5229), 28, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [143161] = 6, + ACTIONS(1040), 3, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + ACTIONS(1042), 29, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [140664] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6678), 1, - anon_sym_DOT, - STATE(3893), 1, - sym_path, - STATE(3747), 2, + STATE(3510), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(955), 3, + ACTIONS(1044), 3, anon_sym_GT, anon_sym_DASH, anon_sym_LT2, - ACTIONS(957), 27, + ACTIONS(1046), 29, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -357179,6 +333833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_in, anon_sym_as, + anon_sym_QMARK2, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -357191,18 +333846,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - [143209] = 4, - ACTIONS(3), 1, + anon_sym_DOT, + [140707] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3748), 1, + STATE(3511), 1, sym_comment, - ACTIONS(2131), 3, - anon_sym_DASH_DASH, + ACTIONS(1048), 3, + anon_sym_GT, anon_sym_DASH, - aux_sym_unquoted_token4, - ACTIONS(2133), 30, + anon_sym_LT2, + ACTIONS(1050), 29, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [140750] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4816), 1, aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, + ACTIONS(6482), 1, + anon_sym_DOT_DOT2, + STATE(3512), 1, + sym_comment, + ACTIONS(6484), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(4820), 28, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -357231,64 +333927,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [143253] = 5, - ACTIONS(247), 1, + [140797] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6681), 1, - anon_sym_QMARK2, - STATE(3749), 1, + STATE(3513), 1, sym_comment, - ACTIONS(970), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(972), 24, + ACTIONS(2261), 9, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2259), 23, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [143299] = 5, + aux_sym_unquoted_token4, + [140840] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6683), 1, - anon_sym_QMARK2, - STATE(3750), 1, + ACTIONS(6377), 1, + aux_sym_unquoted_token2, + STATE(3514), 1, sym_comment, - ACTIONS(980), 8, + ACTIONS(1575), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(982), 24, + ACTIONS(1587), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -357313,107 +334006,58 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [143345] = 6, + [140885] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2081), 1, - anon_sym_LPAREN2, - ACTIONS(2083), 1, + ACTIONS(2241), 1, aux_sym_unquoted_token4, - STATE(3751), 1, + STATE(3515), 1, sym_comment, - ACTIONS(1006), 2, - anon_sym_DASH_DASH, - anon_sym_DASH, - ACTIONS(1008), 29, + ACTIONS(1078), 9, + anon_sym_LBRACK, + anon_sym_LPAREN, aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [143393] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3752), 1, - sym_comment, - ACTIONS(2131), 2, - anon_sym_COMMA, - aux_sym_unquoted_token4, - ACTIONS(2133), 31, - sym__newline, - anon_sym_RBRACE, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [143437] = 6, + aux_sym_expr_unary_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1076), 22, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + [140930] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6620), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6685), 1, - anon_sym_DOT, - STATE(3753), 1, + ACTIONS(6488), 1, + anon_sym_QMARK2, + STATE(3516), 1, sym_comment, - ACTIONS(1589), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1591), 23, + ACTIONS(1028), 3, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + ACTIONS(1030), 28, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -357426,31 +334070,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [143485] = 6, - ACTIONS(3), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [140975] = 27, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1006), 1, - anon_sym_COMMA, - ACTIONS(2081), 1, - anon_sym_LPAREN2, - ACTIONS(2083), 1, - aux_sym_unquoted_token4, - STATE(3754), 1, - sym_comment, - ACTIONS(1008), 30, + ACTIONS(3387), 1, + anon_sym_DASH, + ACTIONS(3393), 1, + aux_sym_expr_unary_token1, + ACTIONS(3405), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6460), 1, + sym_identifier, + ACTIONS(6466), 1, sym__newline, - anon_sym_RBRACE, + ACTIONS(6468), 1, + anon_sym_LPAREN, + ACTIONS(6470), 1, + anon_sym_DOLLAR, + ACTIONS(6472), 1, + aux_sym_ctrl_match_token1, + ACTIONS(6474), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6476), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6478), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6480), 1, + aux_sym__val_number_decimal_token4, + STATE(3427), 1, + sym__val_number_decimal, + STATE(3437), 1, + sym__val_number, + STATE(3517), 1, + sym_comment, + STATE(3777), 1, + sym_expr_parenthesized, + STATE(3957), 1, + aux_sym_shebang_repeat1, + STATE(4209), 1, + sym_val_number, + STATE(4265), 1, + sym__binary_predicate_parenthesized, + STATE(4266), 1, + sym__expr_unary_minus, + STATE(4267), 1, + sym__predicate, + STATE(4930), 1, + sym_val_closure, + ACTIONS(6462), 2, + anon_sym_true, + anon_sym_false, + STATE(4408), 2, + sym_expr_unary, + sym_val_bool, + STATE(5097), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6464), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [141064] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4816), 1, + anon_sym_EQ_GT, + ACTIONS(6490), 1, + anon_sym_DOT_DOT2, + STATE(3518), 1, + sym_comment, + ACTIONS(6492), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(4820), 28, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -357479,17 +334189,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [143533] = 5, + [141111] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6687), 1, + ACTIONS(6490), 1, anon_sym_DOT_DOT2, - STATE(3755), 1, + STATE(3519), 1, sym_comment, - ACTIONS(6689), 2, + ACTIONS(6492), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1008), 29, + ACTIONS(1078), 29, anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -357519,118 +334229,182 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [143578] = 4, - ACTIONS(247), 1, + [141156] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3756), 1, - sym_comment, - ACTIONS(966), 3, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - ACTIONS(968), 29, - ts_builtin_sym_end, + ACTIONS(1076), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [143621] = 27, + ACTIONS(2239), 1, + anon_sym_LPAREN2, + ACTIONS(2241), 1, + aux_sym_unquoted_token4, + STATE(3520), 1, + sym_comment, + ACTIONS(1078), 29, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [141203] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3501), 1, + ACTIONS(6494), 1, + anon_sym_EQ2, + STATE(3521), 1, + sym_comment, + ACTIONS(4906), 7, + anon_sym_DOLLAR, anon_sym_DASH, - ACTIONS(3507), 1, - aux_sym_expr_unary_token1, - ACTIONS(3519), 1, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4904), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, - ACTIONS(6691), 1, - sym_identifier, - ACTIONS(6697), 1, - sym__newline, - ACTIONS(6699), 1, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(6701), 1, - anon_sym_DOLLAR, - ACTIONS(6703), 1, aux_sym_ctrl_match_token1, - ACTIONS(6705), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, - ACTIONS(6709), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6711), 1, aux_sym__val_number_decimal_token4, - STATE(3712), 1, - sym__val_number_decimal, - STATE(3713), 1, - sym__val_number, - STATE(3757), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [141248] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6496), 1, + anon_sym_EQ2, + STATE(3522), 1, sym_comment, - STATE(4047), 1, - sym_expr_parenthesized, - STATE(4208), 1, - aux_sym_shebang_repeat1, - STATE(4481), 1, - sym_val_number, - STATE(4643), 1, - sym__binary_predicate_parenthesized, - STATE(4646), 1, - sym__predicate, - STATE(4680), 1, - sym__expr_unary_minus, - STATE(5044), 1, - sym_val_closure, - ACTIONS(6693), 2, + ACTIONS(4916), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4914), 24, anon_sym_true, anon_sym_false, - STATE(4642), 2, - sym_expr_unary, - sym_val_bool, - STATE(5304), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6695), 5, + anon_sym_null, aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [143710] = 5, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [141293] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6713), 1, - anon_sym_DOT_DOT2, - STATE(3758), 1, + ACTIONS(5190), 1, + sym__newline, + STATE(2062), 1, + aux_sym_shebang_repeat1, + STATE(3523), 1, + sym_comment, + ACTIONS(6498), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6502), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6504), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6500), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6506), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6508), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5192), 9, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [141349] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2239), 1, + anon_sym_LPAREN2, + ACTIONS(2241), 1, + aux_sym_unquoted_token4, + STATE(3524), 1, sym_comment, - ACTIONS(6715), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1008), 29, + ACTIONS(1078), 29, aux_sym_ctrl_match_token1, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -357660,139 +334434,92 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [143755] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2099), 1, - anon_sym_LPAREN2, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - ACTIONS(2105), 1, - sym__newline, - STATE(3759), 1, - sym_comment, - ACTIONS(2107), 29, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [143802] = 4, - ACTIONS(3), 1, + [141393] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3760), 1, + STATE(3525), 1, sym_comment, - ACTIONS(2133), 9, + ACTIONS(5022), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5020), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, aux_sym_ctrl_match_token1, aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2131), 23, + [141435] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3526), 1, + sym_comment, + ACTIONS(1961), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1963), 24, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, - aux_sym_unquoted_token4, - [143845] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3173), 1, - aux_sym_ctrl_match_token1, - ACTIONS(6713), 1, - anon_sym_DOT_DOT2, - STATE(3761), 1, - sym_comment, - ACTIONS(6715), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3177), 28, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [143892] = 5, - ACTIONS(247), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [141477] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1525), 1, - anon_sym_DASH, - ACTIONS(4817), 1, - aux_sym_unquoted_token2, - STATE(3762), 1, + ACTIONS(2259), 1, + aux_sym_unquoted_token4, + STATE(3527), 1, sym_comment, - ACTIONS(1537), 30, - anon_sym_DASH_DASH, + ACTIONS(2261), 30, aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -357821,16 +334548,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [143937] = 4, + [141519] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3763), 1, + ACTIONS(6453), 1, + anon_sym_DOT, + STATE(3483), 1, + aux_sym_cell_path_repeat1, + STATE(3528), 1, sym_comment, - ACTIONS(976), 3, + STATE(3546), 1, + sym_path, + STATE(3726), 1, + sym_cell_path, + ACTIONS(1625), 2, anon_sym_GT, - anon_sym_DASH, anon_sym_LT2, - ACTIONS(978), 29, + ACTIONS(1629), 25, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -357843,10 +334577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_as, - anon_sym_QMARK2, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -357859,54 +334590,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_DOT, - [143980] = 4, + [141569] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4817), 1, - aux_sym_unquoted_token2, - STATE(3764), 1, + ACTIONS(6510), 1, + anon_sym_DOT_DOT2, + STATE(3529), 1, sym_comment, - ACTIONS(1537), 31, + ACTIONS(6512), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2061), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2067), 20, + ts_builtin_sym_end, sym__newline, - anon_sym_COMMA, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [144023] = 5, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [141615] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6717), 1, - anon_sym_EQ2, - STATE(3765), 1, + ACTIONS(6514), 1, + anon_sym_DOT_DOT2, + STATE(3530), 1, + sym_comment, + ACTIONS(6516), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1786), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1794), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [141661] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3531), 1, sym_comment, - ACTIONS(5041), 7, + ACTIONS(2453), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -357914,7 +334683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5039), 24, + ACTIONS(2455), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -357939,99 +334708,178 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [144068] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2089), 1, - sym__newline, - ACTIONS(2091), 1, - anon_sym_LPAREN2, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(3766), 1, - sym_comment, - ACTIONS(2093), 29, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [144115] = 5, - ACTIONS(3), 1, + [141703] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(3767), 1, + STATE(3532), 1, sym_comment, - ACTIONS(2093), 9, + ACTIONS(2457), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2459), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, aux_sym_ctrl_match_token1, aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2089), 22, + [141745] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3533), 1, + sym_comment, + ACTIONS(1076), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1078), 24, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [141787] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3534), 1, + sym_comment, + ACTIONS(1575), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1587), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [141829] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3535), 1, + sym_comment, + ACTIONS(2436), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, + ACTIONS(2438), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, sym_val_date, - [144160] = 5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [141871] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6719), 1, - anon_sym_QMARK2, - STATE(3768), 1, + ACTIONS(6518), 1, + anon_sym_DOT_DOT2, + STATE(3536), 1, sym_comment, - ACTIONS(970), 3, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - ACTIONS(972), 28, + ACTIONS(6520), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2035), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2041), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -358044,37 +334892,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [144205] = 4, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [141917] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3769), 1, + ACTIONS(6522), 1, + anon_sym_DOT_DOT2, + STATE(3537), 1, + sym_comment, + ACTIONS(6524), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2043), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2049), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [141963] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6526), 1, + anon_sym_DOT_DOT2, + STATE(3538), 1, + sym_comment, + ACTIONS(6528), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2051), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2057), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [142009] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6530), 1, + anon_sym_DOT_DOT2, + STATE(3539), 1, + sym_comment, + ACTIONS(6532), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1796), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1804), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [142055] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3540), 1, sym_comment, - ACTIONS(994), 8, + ACTIONS(5036), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(996), 24, + ACTIONS(5034), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -358099,23 +335058,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [144248] = 8, + [142097] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5704), 1, - anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(3770), 1, + STATE(3541), 1, sym_comment, - STATE(3879), 1, - sym_cell_path, - ACTIONS(1599), 2, + ACTIONS(1625), 3, anon_sym_GT, anon_sym_LT2, - ACTIONS(1603), 26, + anon_sym_DOT_DOT2, + ACTIONS(1629), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358142,242 +335094,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - [144299] = 27, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [142139] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3501), 1, - anon_sym_DASH, - ACTIONS(3507), 1, - aux_sym_expr_unary_token1, - ACTIONS(3519), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6691), 1, - sym_identifier, - ACTIONS(6697), 1, - sym__newline, - ACTIONS(6699), 1, - anon_sym_LPAREN, - ACTIONS(6701), 1, + STATE(3542), 1, + sym_comment, + ACTIONS(1879), 7, anon_sym_DOLLAR, - ACTIONS(6703), 1, - aux_sym_ctrl_match_token1, - ACTIONS(6705), 1, + anon_sym_DASH, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6709), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6711), 1, - aux_sym__val_number_decimal_token4, - STATE(3712), 1, - sym__val_number_decimal, - STATE(3713), 1, - sym__val_number, - STATE(3757), 1, - aux_sym_shebang_repeat1, - STATE(3771), 1, - sym_comment, - STATE(4047), 1, - sym_expr_parenthesized, - STATE(4481), 1, - sym_val_number, - STATE(4600), 1, - sym__binary_predicate_parenthesized, - STATE(4605), 1, - sym__predicate, - STATE(4680), 1, - sym__expr_unary_minus, - STATE(5074), 1, - sym_val_closure, - ACTIONS(6693), 2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1881), 24, anon_sym_true, anon_sym_false, - STATE(4642), 2, - sym_expr_unary, - sym_val_bool, - STATE(5304), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6695), 5, + anon_sym_null, aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [144388] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2083), 1, - aux_sym_unquoted_token4, - STATE(3772), 1, - sym_comment, - ACTIONS(1008), 9, anon_sym_LBRACK, anon_sym_LPAREN, aux_sym_ctrl_match_token1, aux_sym_expr_unary_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1006), 22, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, - [144433] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2089), 1, - anon_sym_EQ_GT, - ACTIONS(2091), 1, - anon_sym_LPAREN2, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(3773), 1, - sym_comment, - ACTIONS(2093), 29, - anon_sym_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [144480] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2097), 1, - anon_sym_EQ_GT, - ACTIONS(2099), 1, - anon_sym_LPAREN2, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - STATE(3774), 1, - sym_comment, - ACTIONS(2101), 29, - anon_sym_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [144527] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3775), 1, - sym_comment, - ACTIONS(962), 3, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - ACTIONS(964), 29, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [144570] = 5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [142181] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6721), 1, - anon_sym_QMARK2, - STATE(3776), 1, + STATE(3543), 1, sym_comment, - ACTIONS(980), 3, + ACTIONS(2137), 3, anon_sym_GT, - anon_sym_DASH, anon_sym_LT2, - ACTIONS(982), 28, - ts_builtin_sym_end, + anon_sym_DOT_DOT2, + ACTIONS(2139), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358389,9 +335155,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, + anon_sym_RPAREN, anon_sym_in, - anon_sym_as, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -358404,22 +335170,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_DOT, - [144615] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [142223] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3777), 1, + STATE(3544), 1, sym_comment, - ACTIONS(986), 8, + ACTIONS(5040), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(988), 24, + ACTIONS(5038), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -358444,62 +335210,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [144658] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2099), 1, - anon_sym_LPAREN2, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - ACTIONS(2105), 1, - anon_sym_EQ_GT, - STATE(3778), 1, - sym_comment, - ACTIONS(2107), 29, - anon_sym_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [144705] = 4, + [142265] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3779), 1, + STATE(3545), 1, sym_comment, - ACTIONS(990), 8, + ACTIONS(2443), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(992), 24, + ACTIONS(2445), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -358524,59 +335248,55 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [144748] = 5, - ACTIONS(3), 1, + [142307] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - STATE(3780), 1, + STATE(3546), 1, sym_comment, - ACTIONS(2101), 9, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2097), 22, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, + ACTIONS(1056), 3, + anon_sym_GT, anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - [144793] = 6, - ACTIONS(247), 1, + anon_sym_LT2, + ACTIONS(1058), 28, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [142349] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3173), 1, - anon_sym_EQ_GT, - ACTIONS(6687), 1, - anon_sym_DOT_DOT2, - STATE(3781), 1, + ACTIONS(2245), 1, + anon_sym_LPAREN2, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + STATE(3547), 1, sym_comment, - ACTIONS(6689), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(3177), 28, + ACTIONS(2247), 29, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -358605,57 +335325,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [144840] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6723), 1, - anon_sym_LBRACK2, - STATE(3782), 1, - sym_comment, - ACTIONS(2235), 8, - anon_sym_LBRACK, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2239), 23, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [144885] = 4, + [142393] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3783), 1, - sym_comment, - ACTIONS(2131), 2, - anon_sym_EQ_GT, - aux_sym_unquoted_token4, - ACTIONS(2133), 30, - anon_sym_PIPE, + ACTIONS(2245), 1, anon_sym_LPAREN2, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + STATE(3548), 1, + sym_comment, + ACTIONS(2253), 29, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -358684,27 +335364,109 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [144928] = 6, - ACTIONS(3), 1, + [142437] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2097), 1, + ACTIONS(5314), 1, sym__newline, - ACTIONS(2099), 1, - anon_sym_LPAREN2, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - STATE(3784), 1, + STATE(3549), 1, sym_comment, - ACTIONS(2101), 29, + STATE(3562), 1, + aux_sym_shebang_repeat1, + ACTIONS(6534), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5196), 27, aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [142483] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5314), 1, + sym__newline, + STATE(3550), 1, + sym_comment, + STATE(3564), 1, + aux_sym_shebang_repeat1, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5196), 23, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [142531] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5314), 1, + sym__newline, + STATE(3551), 1, + sym_comment, + STATE(3566), 1, + aux_sym_shebang_repeat1, + ACTIONS(6534), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6538), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6536), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5196), 21, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, @@ -358725,148 +335487,411 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [144975] = 5, + [142581] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6600), 1, - aux_sym_unquoted_token2, - STATE(3785), 1, + ACTIONS(5314), 1, + sym__newline, + STATE(3552), 1, sym_comment, - ACTIONS(1525), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1537), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, + STATE(3568), 1, + aux_sym_shebang_repeat1, + ACTIONS(6534), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6538), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6540), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6536), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6542), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6544), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5196), 9, aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [145020] = 5, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [142637] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - STATE(3786), 1, + ACTIONS(5314), 1, + sym__newline, + STATE(3553), 1, sym_comment, - ACTIONS(2107), 9, - anon_sym_LBRACK, - anon_sym_LPAREN, + STATE(3570), 1, + aux_sym_shebang_repeat1, + ACTIONS(6534), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6538), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6540), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6546), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6536), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6542), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6544), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5196), 7, aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2105), 22, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - [145065] = 4, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [142695] = 13, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3787), 1, - sym_comment, - ACTIONS(2131), 2, + ACTIONS(5314), 1, sym__newline, - aux_sym_unquoted_token4, - ACTIONS(2133), 30, + ACTIONS(6548), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(3554), 1, + sym_comment, + STATE(3572), 1, + aux_sym_shebang_repeat1, + ACTIONS(6534), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6538), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6540), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6546), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6536), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6542), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5196), 6, aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6544), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [142755] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5314), 1, + sym__newline, + ACTIONS(6548), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6550), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(3555), 1, + sym_comment, + STATE(3574), 1, + aux_sym_shebang_repeat1, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6538), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6540), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6546), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6542), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5196), 5, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6544), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [142817] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5314), 1, + sym__newline, + ACTIONS(6548), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6550), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6552), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(3556), 1, + sym_comment, + STATE(3576), 1, + aux_sym_shebang_repeat1, + ACTIONS(6534), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6538), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6546), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5196), 4, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6536), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6542), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6544), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [142881] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5314), 1, + sym__newline, + ACTIONS(6548), 1, aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6550), 1, aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6552), 1, aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6554), 1, aux_sym_expr_binary_parenthesized_token16, + STATE(3557), 1, + sym_comment, + STATE(3578), 1, + aux_sym_shebang_repeat1, + ACTIONS(6534), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6538), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6540), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6546), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5196), 3, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6536), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6542), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6544), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [145108] = 6, - ACTIONS(3), 1, + [142947] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1006), 1, + ACTIONS(5295), 1, sym__newline, - ACTIONS(2081), 1, - anon_sym_LPAREN2, - ACTIONS(2083), 1, - aux_sym_unquoted_token4, - STATE(3788), 1, + ACTIONS(6548), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6550), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6552), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6554), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6556), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(3558), 1, sym_comment, - ACTIONS(1008), 29, + STATE(3580), 1, + aux_sym_shebang_repeat1, + ACTIONS(5196), 2, aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6538), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6540), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6546), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6542), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6544), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [143015] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5314), 1, + sym__newline, + STATE(3559), 1, + sym_comment, + STATE(3582), 1, + aux_sym_shebang_repeat1, + ACTIONS(6534), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6538), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6540), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6536), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6544), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5196), 13, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + [143069] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5314), 1, + sym__newline, + STATE(3560), 1, + sym_comment, + STATE(3584), 1, + aux_sym_shebang_repeat1, + ACTIONS(6534), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6538), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6536), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5196), 19, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -358885,14 +335910,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [145155] = 5, + [143121] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6725), 1, - anon_sym_EQ2, - STATE(3789), 1, + STATE(3561), 1, sym_comment, - ACTIONS(5007), 7, + ACTIONS(1064), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -358900,7 +335923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5005), 24, + ACTIONS(1066), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -358925,59 +335948,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [145200] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6727), 1, - anon_sym_DOT_DOT2, - STATE(3790), 1, - sym_comment, - ACTIONS(6729), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1960), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1966), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [145246] = 6, + [143163] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5339), 1, + ACTIONS(5204), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3791), 1, + STATE(3562), 1, sym_comment, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5341), 27, + ACTIONS(5206), 27, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, @@ -359005,19 +335988,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [145292] = 6, + [143209] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5472), 1, + ACTIONS(5309), 1, sym__newline, - STATE(3792), 1, + STATE(3563), 1, sym_comment, - STATE(3827), 1, + STATE(3598), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 27, + ACTIONS(5210), 27, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, @@ -359045,24 +336028,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [145338] = 7, + [143255] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5339), 1, + ACTIONS(5204), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3793), 1, + STATE(3564), 1, sym_comment, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6735), 4, + ACTIONS(6500), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5341), 23, + ACTIONS(5206), 23, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, @@ -359086,24 +336069,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [145386] = 7, + [143303] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5472), 1, + ACTIONS(5309), 1, sym__newline, - STATE(3794), 1, + STATE(3565), 1, sym_comment, - STATE(3828), 1, + STATE(3599), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6737), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5349), 23, + ACTIONS(5210), 23, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, @@ -359127,27 +336110,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [145434] = 8, + [143351] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5339), 1, + ACTIONS(5204), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3795), 1, + STATE(3566), 1, sym_comment, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6739), 2, + ACTIONS(6502), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6735), 4, + ACTIONS(6500), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5341), 21, + ACTIONS(5206), 21, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, @@ -359169,27 +336152,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [145484] = 8, + [143401] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5472), 1, + ACTIONS(5309), 1, sym__newline, - STATE(3796), 1, + STATE(3567), 1, sym_comment, - STATE(3829), 1, + STATE(3600), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6741), 2, + ACTIONS(6538), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6737), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5349), 21, + ACTIONS(5210), 21, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, @@ -359211,42 +336194,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [145534] = 11, + [143451] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5339), 1, + ACTIONS(5204), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3797), 1, + STATE(3568), 1, sym_comment, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6739), 2, + ACTIONS(6502), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6743), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6735), 4, + ACTIONS(6500), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6745), 4, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6747), 6, + ACTIONS(6508), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5341), 9, + ACTIONS(5206), 9, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, @@ -359256,42 +336239,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [145590] = 11, + [143507] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5472), 1, + ACTIONS(5309), 1, sym__newline, - STATE(3798), 1, + STATE(3569), 1, sym_comment, - STATE(3830), 1, + STATE(3601), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6741), 2, + ACTIONS(6538), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6749), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6737), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6751), 4, + ACTIONS(6542), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6753), 6, + ACTIONS(6544), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5349), 9, + ACTIONS(5210), 9, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, @@ -359301,45 +336284,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [145646] = 12, + [143563] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5339), 1, + ACTIONS(5204), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3799), 1, + STATE(3570), 1, sym_comment, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6739), 2, + ACTIONS(6502), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6743), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6755), 2, + ACTIONS(6558), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6735), 4, + ACTIONS(6500), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6745), 4, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6747), 6, + ACTIONS(6508), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5341), 7, + ACTIONS(5206), 7, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, @@ -359347,45 +336330,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [145704] = 12, + [143621] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5472), 1, + ACTIONS(5309), 1, sym__newline, - STATE(3800), 1, + STATE(3571), 1, sym_comment, - STATE(3831), 1, + STATE(3602), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6741), 2, + ACTIONS(6538), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6749), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6757), 2, + ACTIONS(6546), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6737), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6751), 4, + ACTIONS(6542), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6753), 6, + ACTIONS(6544), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5349), 7, + ACTIONS(5210), 7, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, @@ -359393,527 +336376,527 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [145762] = 13, + [143679] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5339), 1, + ACTIONS(5204), 1, sym__newline, - ACTIONS(6759), 1, + ACTIONS(6560), 1, aux_sym_expr_binary_parenthesized_token13, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3801), 1, + STATE(3572), 1, sym_comment, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6739), 2, + ACTIONS(6502), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6743), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6755), 2, + ACTIONS(6558), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6735), 4, + ACTIONS(6500), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6745), 4, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5341), 6, + ACTIONS(5206), 6, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6747), 6, + ACTIONS(6508), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [145822] = 13, + [143739] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5472), 1, + ACTIONS(5309), 1, sym__newline, - ACTIONS(6761), 1, + ACTIONS(6548), 1, aux_sym_expr_binary_parenthesized_token13, - STATE(3802), 1, + STATE(3573), 1, sym_comment, - STATE(3832), 1, + STATE(3603), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6741), 2, + ACTIONS(6538), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6749), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6757), 2, + ACTIONS(6546), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6737), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6751), 4, + ACTIONS(6542), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5349), 6, + ACTIONS(5210), 6, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6753), 6, + ACTIONS(6544), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [145882] = 14, + [143799] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5339), 1, + ACTIONS(5204), 1, sym__newline, - ACTIONS(6759), 1, + ACTIONS(6560), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6763), 1, + ACTIONS(6562), 1, aux_sym_expr_binary_parenthesized_token14, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3803), 1, + STATE(3574), 1, sym_comment, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6739), 2, + ACTIONS(6502), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6743), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6755), 2, + ACTIONS(6558), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6735), 4, + ACTIONS(6500), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6745), 4, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5341), 5, + ACTIONS(5206), 5, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6747), 6, + ACTIONS(6508), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [145944] = 14, + [143861] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5472), 1, + ACTIONS(5309), 1, sym__newline, - ACTIONS(6761), 1, + ACTIONS(6548), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6765), 1, + ACTIONS(6550), 1, aux_sym_expr_binary_parenthesized_token14, - STATE(3804), 1, + STATE(3575), 1, sym_comment, - STATE(3833), 1, + STATE(3604), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6741), 2, + ACTIONS(6538), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6749), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6757), 2, + ACTIONS(6546), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6737), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6751), 4, + ACTIONS(6542), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5349), 5, + ACTIONS(5210), 5, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6753), 6, + ACTIONS(6544), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [146006] = 15, + [143923] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5339), 1, + ACTIONS(5204), 1, sym__newline, - ACTIONS(6759), 1, + ACTIONS(6560), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6763), 1, + ACTIONS(6562), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6767), 1, + ACTIONS(6564), 1, aux_sym_expr_binary_parenthesized_token15, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3805), 1, + STATE(3576), 1, sym_comment, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6739), 2, + ACTIONS(6502), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6743), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6755), 2, + ACTIONS(6558), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5341), 4, + ACTIONS(5206), 4, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6735), 4, + ACTIONS(6500), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6745), 4, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6747), 6, + ACTIONS(6508), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [146070] = 15, + [143987] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5472), 1, + ACTIONS(5309), 1, sym__newline, - ACTIONS(6761), 1, + ACTIONS(6548), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6765), 1, + ACTIONS(6550), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6769), 1, + ACTIONS(6552), 1, aux_sym_expr_binary_parenthesized_token15, - STATE(3806), 1, + STATE(3577), 1, sym_comment, - STATE(3834), 1, + STATE(3605), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6741), 2, + ACTIONS(6538), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6749), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6757), 2, + ACTIONS(6546), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5349), 4, + ACTIONS(5210), 4, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6737), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6751), 4, + ACTIONS(6542), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6753), 6, + ACTIONS(6544), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [146134] = 16, + [144051] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5339), 1, + ACTIONS(5204), 1, sym__newline, - ACTIONS(6759), 1, + ACTIONS(6560), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6763), 1, + ACTIONS(6562), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6767), 1, + ACTIONS(6564), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6771), 1, + ACTIONS(6566), 1, aux_sym_expr_binary_parenthesized_token16, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3807), 1, + STATE(3578), 1, sym_comment, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6739), 2, + ACTIONS(6502), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6743), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6755), 2, + ACTIONS(6558), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5341), 3, + ACTIONS(5206), 3, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6735), 4, + ACTIONS(6500), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6745), 4, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6747), 6, + ACTIONS(6508), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [146200] = 16, + [144117] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5472), 1, + ACTIONS(5309), 1, sym__newline, - ACTIONS(6761), 1, + ACTIONS(6548), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6765), 1, + ACTIONS(6550), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6769), 1, + ACTIONS(6552), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6773), 1, + ACTIONS(6554), 1, aux_sym_expr_binary_parenthesized_token16, - STATE(3808), 1, + STATE(3579), 1, sym_comment, - STATE(3835), 1, + STATE(3606), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6741), 2, + ACTIONS(6538), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6749), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6757), 2, + ACTIONS(6546), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5349), 3, + ACTIONS(5210), 3, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6737), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6751), 4, + ACTIONS(6542), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6753), 6, + ACTIONS(6544), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [146266] = 17, + [144183] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5339), 1, + ACTIONS(5204), 1, sym__newline, - ACTIONS(6759), 1, + ACTIONS(6560), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6763), 1, + ACTIONS(6562), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6767), 1, + ACTIONS(6564), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6771), 1, + ACTIONS(6566), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6775), 1, + ACTIONS(6568), 1, aux_sym_expr_binary_parenthesized_token17, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3809), 1, + STATE(3580), 1, sym_comment, - ACTIONS(5341), 2, + ACTIONS(5206), 2, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6739), 2, + ACTIONS(6502), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6743), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6755), 2, + ACTIONS(6558), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6735), 4, + ACTIONS(6500), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6745), 4, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6747), 6, + ACTIONS(6508), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [146334] = 17, + [144251] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(5295), 1, sym__newline, - ACTIONS(6761), 1, + ACTIONS(6548), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6765), 1, + ACTIONS(6550), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6769), 1, + ACTIONS(6552), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6773), 1, + ACTIONS(6554), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6777), 1, + ACTIONS(6556), 1, aux_sym_expr_binary_parenthesized_token17, - STATE(3810), 1, + STATE(3581), 1, sym_comment, - STATE(3836), 1, + STATE(3607), 1, aux_sym_shebang_repeat1, - ACTIONS(5349), 2, + ACTIONS(5210), 2, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6733), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6741), 2, + ACTIONS(6538), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6749), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6757), 2, + ACTIONS(6546), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6737), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6751), 4, + ACTIONS(6542), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6753), 6, + ACTIONS(6544), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [146402] = 10, + [144319] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5339), 1, + ACTIONS(5204), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3811), 1, + STATE(3582), 1, sym_comment, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6739), 2, + ACTIONS(6502), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6743), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6735), 4, + ACTIONS(6500), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6747), 6, + ACTIONS(6508), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5341), 13, + ACTIONS(5206), 13, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, @@ -359927,37 +336910,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - [146456] = 10, + [144373] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5472), 1, + ACTIONS(5309), 1, sym__newline, - STATE(3812), 1, + STATE(3583), 1, sym_comment, - STATE(3837), 1, + STATE(3608), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6741), 2, + ACTIONS(6538), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6749), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6737), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6753), 6, + ACTIONS(6544), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5349), 13, + ACTIONS(5210), 13, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, @@ -359971,30 +336954,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - [146510] = 9, + [144427] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5339), 1, + ACTIONS(5204), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3813), 1, + STATE(3584), 1, sym_comment, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6739), 2, + ACTIONS(6502), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6743), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6735), 4, + ACTIONS(6500), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5341), 19, + ACTIONS(5206), 19, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, @@ -360014,30 +336997,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [146562] = 9, + [144479] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5472), 1, + ACTIONS(5309), 1, sym__newline, - STATE(3814), 1, + STATE(3585), 1, sym_comment, - STATE(3838), 1, + STATE(3609), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6741), 2, + ACTIONS(6538), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6749), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6737), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5349), 19, + ACTIONS(5210), 19, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, @@ -360057,19 +337040,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [146614] = 6, + [144531] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5402), 1, + ACTIONS(5320), 1, sym__newline, - STATE(3815), 1, + STATE(3586), 1, sym_comment, - STATE(3839), 1, + STATE(3610), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5357), 27, + ACTIONS(5156), 27, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, @@ -360097,24 +337080,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [146660] = 7, + [144577] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5402), 1, + ACTIONS(5320), 1, sym__newline, - STATE(3816), 1, + STATE(3587), 1, sym_comment, - STATE(3841), 1, + STATE(3612), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6737), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5357), 23, + ACTIONS(5156), 23, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, @@ -360138,27 +337121,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [146708] = 8, + [144625] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5402), 1, + ACTIONS(5320), 1, sym__newline, - STATE(3817), 1, + STATE(3588), 1, sym_comment, - STATE(3843), 1, + STATE(3614), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6741), 2, + ACTIONS(6538), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6737), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5357), 21, + ACTIONS(5156), 21, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, @@ -360180,42 +337163,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [146758] = 11, + [144675] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5402), 1, + ACTIONS(5320), 1, sym__newline, - STATE(3818), 1, - sym_comment, - STATE(3845), 1, + STATE(3523), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + STATE(3589), 1, + sym_comment, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6741), 2, + ACTIONS(6538), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6749), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6737), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6751), 4, + ACTIONS(6542), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6753), 6, + ACTIONS(6544), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5357), 9, + ACTIONS(5156), 9, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, @@ -360225,45 +337208,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [146814] = 12, + [144731] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5402), 1, + ACTIONS(5320), 1, sym__newline, - STATE(3819), 1, + STATE(3590), 1, sym_comment, - STATE(3847), 1, + STATE(3618), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6741), 2, + ACTIONS(6538), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6749), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6757), 2, + ACTIONS(6546), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6737), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6751), 4, + ACTIONS(6542), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6753), 6, + ACTIONS(6544), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5357), 7, + ACTIONS(5156), 7, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, @@ -360271,282 +337254,282 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [146872] = 13, + [144789] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5402), 1, + ACTIONS(5320), 1, sym__newline, - ACTIONS(6761), 1, + ACTIONS(6548), 1, aux_sym_expr_binary_parenthesized_token13, - STATE(3820), 1, + STATE(3591), 1, sym_comment, - STATE(3849), 1, + STATE(3620), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6741), 2, + ACTIONS(6538), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6749), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6757), 2, + ACTIONS(6546), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6737), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6751), 4, + ACTIONS(6542), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5357), 6, + ACTIONS(5156), 6, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6753), 6, + ACTIONS(6544), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [146932] = 14, + [144849] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5402), 1, + ACTIONS(5320), 1, sym__newline, - ACTIONS(6761), 1, + ACTIONS(6548), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6765), 1, + ACTIONS(6550), 1, aux_sym_expr_binary_parenthesized_token14, - STATE(3821), 1, + STATE(3592), 1, sym_comment, - STATE(3851), 1, + STATE(3622), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6741), 2, + ACTIONS(6538), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6749), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6757), 2, + ACTIONS(6546), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6737), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6751), 4, + ACTIONS(6542), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5357), 5, + ACTIONS(5156), 5, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6753), 6, + ACTIONS(6544), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [146994] = 15, + [144911] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5402), 1, + ACTIONS(5320), 1, sym__newline, - ACTIONS(6761), 1, + ACTIONS(6548), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6765), 1, + ACTIONS(6550), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6769), 1, + ACTIONS(6552), 1, aux_sym_expr_binary_parenthesized_token15, - STATE(3822), 1, + STATE(3593), 1, sym_comment, - STATE(3853), 1, + STATE(3624), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6741), 2, + ACTIONS(6538), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6749), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6757), 2, + ACTIONS(6546), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5357), 4, + ACTIONS(5156), 4, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6737), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6751), 4, + ACTIONS(6542), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6753), 6, + ACTIONS(6544), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [147058] = 16, + [144975] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5402), 1, + ACTIONS(5320), 1, sym__newline, - ACTIONS(6761), 1, + ACTIONS(6548), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6765), 1, + ACTIONS(6550), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6769), 1, + ACTIONS(6552), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6773), 1, + ACTIONS(6554), 1, aux_sym_expr_binary_parenthesized_token16, - STATE(3823), 1, + STATE(3594), 1, sym_comment, - STATE(3855), 1, + STATE(3626), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6741), 2, + ACTIONS(6538), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6749), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6757), 2, + ACTIONS(6546), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5357), 3, + ACTIONS(5156), 3, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6737), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6751), 4, + ACTIONS(6542), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6753), 6, + ACTIONS(6544), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [147124] = 17, + [145041] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(5295), 1, sym__newline, - ACTIONS(6761), 1, + ACTIONS(6548), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6765), 1, + ACTIONS(6550), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6769), 1, + ACTIONS(6552), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6773), 1, + ACTIONS(6554), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6777), 1, + ACTIONS(6556), 1, aux_sym_expr_binary_parenthesized_token17, - STATE(3824), 1, + STATE(3595), 1, sym_comment, - STATE(3857), 1, + STATE(3628), 1, aux_sym_shebang_repeat1, - ACTIONS(5357), 2, + ACTIONS(5156), 2, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6733), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6741), 2, + ACTIONS(6538), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6749), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6757), 2, + ACTIONS(6546), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6737), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6751), 4, + ACTIONS(6542), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6753), 6, + ACTIONS(6544), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [147192] = 10, + [145109] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5402), 1, + ACTIONS(5320), 1, sym__newline, - STATE(3825), 1, + STATE(3596), 1, sym_comment, - STATE(3859), 1, + STATE(3698), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6741), 2, + ACTIONS(6538), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6749), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6737), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6753), 6, + ACTIONS(6544), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5357), 13, + ACTIONS(5156), 13, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, @@ -360560,30 +337543,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - [147246] = 9, + [145163] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5402), 1, + ACTIONS(5320), 1, sym__newline, - STATE(3826), 1, + STATE(3597), 1, sym_comment, - STATE(3861), 1, + STATE(3632), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6741), 2, + ACTIONS(6538), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6749), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6737), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5357), 19, + ACTIONS(5156), 19, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, @@ -360603,19 +337586,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [147298] = 6, + [145215] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5280), 1, + ACTIONS(5142), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3827), 1, + STATE(3598), 1, sym_comment, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5282), 27, + ACTIONS(5144), 27, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, @@ -360643,24 +337626,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [147344] = 7, + [145261] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5280), 1, + ACTIONS(5142), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3828), 1, + STATE(3599), 1, sym_comment, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6735), 4, + ACTIONS(6500), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5282), 23, + ACTIONS(5144), 23, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, @@ -360684,27 +337667,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [147392] = 8, + [145309] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5280), 1, + ACTIONS(5142), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3829), 1, + STATE(3600), 1, sym_comment, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6739), 2, + ACTIONS(6502), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6735), 4, + ACTIONS(6500), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5282), 21, + ACTIONS(5144), 21, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, @@ -360726,42 +337709,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [147442] = 11, + [145359] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5280), 1, + ACTIONS(5142), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3830), 1, + STATE(3601), 1, sym_comment, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6739), 2, + ACTIONS(6502), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6743), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6735), 4, + ACTIONS(6500), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6745), 4, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6747), 6, + ACTIONS(6508), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5282), 9, + ACTIONS(5144), 9, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, @@ -360771,45 +337754,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [147498] = 12, + [145415] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5280), 1, + ACTIONS(5142), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3831), 1, + STATE(3602), 1, sym_comment, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6739), 2, + ACTIONS(6502), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6743), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6755), 2, + ACTIONS(6558), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6735), 4, + ACTIONS(6500), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6745), 4, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6747), 6, + ACTIONS(6508), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5282), 7, + ACTIONS(5144), 7, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, @@ -360817,282 +337800,282 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [147556] = 13, + [145473] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5280), 1, + ACTIONS(5142), 1, sym__newline, - ACTIONS(6759), 1, + ACTIONS(6560), 1, aux_sym_expr_binary_parenthesized_token13, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3832), 1, + STATE(3603), 1, sym_comment, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6739), 2, + ACTIONS(6502), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6743), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6755), 2, + ACTIONS(6558), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6735), 4, + ACTIONS(6500), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6745), 4, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5282), 6, + ACTIONS(5144), 6, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6747), 6, + ACTIONS(6508), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [147616] = 14, + [145533] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5280), 1, + ACTIONS(5142), 1, sym__newline, - ACTIONS(6759), 1, + ACTIONS(6560), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6763), 1, + ACTIONS(6562), 1, aux_sym_expr_binary_parenthesized_token14, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3833), 1, + STATE(3604), 1, sym_comment, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6739), 2, + ACTIONS(6502), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6743), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6755), 2, + ACTIONS(6558), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6735), 4, + ACTIONS(6500), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6745), 4, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5282), 5, + ACTIONS(5144), 5, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6747), 6, + ACTIONS(6508), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [147678] = 15, + [145595] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5280), 1, + ACTIONS(5142), 1, sym__newline, - ACTIONS(6759), 1, + ACTIONS(6560), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6763), 1, + ACTIONS(6562), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6767), 1, + ACTIONS(6564), 1, aux_sym_expr_binary_parenthesized_token15, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3834), 1, + STATE(3605), 1, sym_comment, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6739), 2, + ACTIONS(6502), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6743), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6755), 2, + ACTIONS(6558), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5282), 4, + ACTIONS(5144), 4, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6735), 4, + ACTIONS(6500), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6745), 4, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6747), 6, + ACTIONS(6508), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [147742] = 16, + [145659] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5280), 1, + ACTIONS(5142), 1, sym__newline, - ACTIONS(6759), 1, + ACTIONS(6560), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6763), 1, + ACTIONS(6562), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6767), 1, + ACTIONS(6564), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6771), 1, + ACTIONS(6566), 1, aux_sym_expr_binary_parenthesized_token16, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3835), 1, + STATE(3606), 1, sym_comment, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6739), 2, + ACTIONS(6502), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6743), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6755), 2, + ACTIONS(6558), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5282), 3, + ACTIONS(5144), 3, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6735), 4, + ACTIONS(6500), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6745), 4, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6747), 6, + ACTIONS(6508), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [147808] = 17, + [145725] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5280), 1, + ACTIONS(5142), 1, sym__newline, - ACTIONS(6759), 1, + ACTIONS(6560), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6763), 1, + ACTIONS(6562), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6767), 1, + ACTIONS(6564), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6771), 1, + ACTIONS(6566), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6775), 1, + ACTIONS(6568), 1, aux_sym_expr_binary_parenthesized_token17, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3836), 1, + STATE(3607), 1, sym_comment, - ACTIONS(5282), 2, + ACTIONS(5144), 2, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6739), 2, + ACTIONS(6502), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6743), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6755), 2, + ACTIONS(6558), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6735), 4, + ACTIONS(6500), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6745), 4, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6747), 6, + ACTIONS(6508), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [147876] = 10, + [145793] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5280), 1, + ACTIONS(5142), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3837), 1, + STATE(3608), 1, sym_comment, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6739), 2, + ACTIONS(6502), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6743), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6735), 4, + ACTIONS(6500), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6747), 6, + ACTIONS(6508), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5282), 13, + ACTIONS(5144), 13, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, @@ -361106,30 +338089,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - [147930] = 9, + [145847] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5280), 1, + ACTIONS(5142), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3838), 1, + STATE(3609), 1, sym_comment, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6739), 2, + ACTIONS(6502), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6743), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6735), 4, + ACTIONS(6500), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5282), 19, + ACTIONS(5144), 19, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, @@ -361149,19 +338132,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [147982] = 6, + [145899] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5288), 1, + ACTIONS(5190), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3839), 1, + STATE(3610), 1, sym_comment, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5290), 27, + ACTIONS(5192), 27, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, @@ -361189,19 +338172,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [148028] = 6, + [145945] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5387), 1, + ACTIONS(5232), 1, sym__newline, - STATE(3840), 1, + STATE(3611), 1, sym_comment, - STATE(3863), 1, + STATE(3634), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5298), 27, + ACTIONS(5202), 27, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, @@ -361229,24 +338212,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [148074] = 7, + [145991] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5288), 1, + ACTIONS(5190), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3841), 1, + STATE(3612), 1, sym_comment, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6735), 4, + ACTIONS(6500), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5290), 23, + ACTIONS(5192), 23, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, @@ -361270,24 +338253,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [148122] = 7, + [146039] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5387), 1, + ACTIONS(5232), 1, sym__newline, - STATE(3842), 1, + STATE(3613), 1, sym_comment, - STATE(3864), 1, + STATE(3635), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6737), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5298), 23, + ACTIONS(5202), 23, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, @@ -361311,27 +338294,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [148170] = 8, + [146087] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5288), 1, + ACTIONS(5190), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3843), 1, + STATE(3614), 1, sym_comment, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6739), 2, + ACTIONS(6502), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6735), 4, + ACTIONS(6500), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5290), 21, + ACTIONS(5192), 21, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, @@ -361353,27 +338336,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [148220] = 8, + [146137] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5387), 1, + ACTIONS(5232), 1, sym__newline, - STATE(3844), 1, + STATE(3615), 1, sym_comment, - STATE(3865), 1, + STATE(3636), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6741), 2, + ACTIONS(6538), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6737), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5298), 21, + ACTIONS(5202), 21, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, @@ -361395,87 +338378,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [148270] = 11, - ACTIONS(247), 1, + [146187] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5288), 1, - sym__newline, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(3845), 1, + ACTIONS(1076), 1, + anon_sym_EQ_GT, + ACTIONS(2239), 1, + anon_sym_LPAREN2, + ACTIONS(2241), 1, + aux_sym_unquoted_token4, + STATE(3616), 1, sym_comment, - ACTIONS(6731), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6739), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6743), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6735), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6745), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6747), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5290), 9, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [148326] = 11, + ACTIONS(1078), 28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [146233] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5387), 1, + ACTIONS(5232), 1, sym__newline, - STATE(3846), 1, + STATE(3617), 1, sym_comment, - STATE(3866), 1, + STATE(3637), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6741), 2, + ACTIONS(6538), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6749), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6737), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6751), 4, + ACTIONS(6542), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6753), 6, + ACTIONS(6544), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5298), 9, + ACTIONS(5202), 9, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, @@ -361485,45 +338463,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [148382] = 12, + [146289] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5288), 1, + ACTIONS(5190), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3847), 1, + STATE(3618), 1, sym_comment, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6739), 2, + ACTIONS(6502), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6743), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6755), 2, + ACTIONS(6558), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6735), 4, + ACTIONS(6500), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6745), 4, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6747), 6, + ACTIONS(6508), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5290), 7, + ACTIONS(5192), 7, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, @@ -361531,45 +338509,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [148440] = 12, + [146347] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5387), 1, + ACTIONS(5232), 1, sym__newline, - STATE(3848), 1, + STATE(3619), 1, sym_comment, - STATE(3867), 1, + STATE(3638), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6741), 2, + ACTIONS(6538), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6749), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6757), 2, + ACTIONS(6546), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6737), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6751), 4, + ACTIONS(6542), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6753), 6, + ACTIONS(6544), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5298), 7, + ACTIONS(5202), 7, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, @@ -361577,571 +338555,565 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [148498] = 13, + [146405] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5288), 1, + ACTIONS(5190), 1, sym__newline, - ACTIONS(6759), 1, + ACTIONS(6560), 1, aux_sym_expr_binary_parenthesized_token13, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3849), 1, + STATE(3620), 1, sym_comment, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6739), 2, + ACTIONS(6502), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6743), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6755), 2, + ACTIONS(6558), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6735), 4, + ACTIONS(6500), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6745), 4, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5290), 6, + ACTIONS(5192), 6, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6747), 6, + ACTIONS(6508), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [148558] = 13, + [146465] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5387), 1, + ACTIONS(5232), 1, sym__newline, - ACTIONS(6761), 1, + ACTIONS(6548), 1, aux_sym_expr_binary_parenthesized_token13, - STATE(3850), 1, + STATE(3621), 1, sym_comment, - STATE(3868), 1, + STATE(3639), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6741), 2, + ACTIONS(6538), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6749), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6757), 2, + ACTIONS(6546), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6737), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6751), 4, + ACTIONS(6542), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5298), 6, + ACTIONS(5202), 6, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6753), 6, + ACTIONS(6544), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [148618] = 14, + [146525] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5288), 1, + ACTIONS(5190), 1, sym__newline, - ACTIONS(6759), 1, + ACTIONS(6560), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6763), 1, + ACTIONS(6562), 1, aux_sym_expr_binary_parenthesized_token14, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3851), 1, + STATE(3622), 1, sym_comment, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6739), 2, + ACTIONS(6502), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6743), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6755), 2, + ACTIONS(6558), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6735), 4, + ACTIONS(6500), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6745), 4, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5290), 5, + ACTIONS(5192), 5, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6747), 6, + ACTIONS(6508), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [148680] = 14, + [146587] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5387), 1, + ACTIONS(5232), 1, sym__newline, - ACTIONS(6761), 1, + ACTIONS(6548), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6765), 1, + ACTIONS(6550), 1, aux_sym_expr_binary_parenthesized_token14, - STATE(3852), 1, + STATE(3623), 1, sym_comment, - STATE(3869), 1, + STATE(3640), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6741), 2, + ACTIONS(6538), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6749), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6757), 2, + ACTIONS(6546), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6737), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6751), 4, + ACTIONS(6542), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5298), 5, + ACTIONS(5202), 5, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6753), 6, + ACTIONS(6544), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [148742] = 15, + [146649] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5288), 1, + ACTIONS(5190), 1, sym__newline, - ACTIONS(6759), 1, + ACTIONS(6560), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6763), 1, + ACTIONS(6562), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6767), 1, + ACTIONS(6564), 1, aux_sym_expr_binary_parenthesized_token15, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3853), 1, + STATE(3624), 1, sym_comment, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6739), 2, + ACTIONS(6502), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6743), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6755), 2, + ACTIONS(6558), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5290), 4, + ACTIONS(5192), 4, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6735), 4, + ACTIONS(6500), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6745), 4, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6747), 6, + ACTIONS(6508), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [148806] = 15, + [146713] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5387), 1, + ACTIONS(5232), 1, sym__newline, - ACTIONS(6761), 1, + ACTIONS(6548), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6765), 1, + ACTIONS(6550), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6769), 1, + ACTIONS(6552), 1, aux_sym_expr_binary_parenthesized_token15, - STATE(3854), 1, + STATE(3625), 1, sym_comment, - STATE(3870), 1, + STATE(3641), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6741), 2, + ACTIONS(6538), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6749), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6757), 2, + ACTIONS(6546), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5298), 4, + ACTIONS(5202), 4, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6737), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6751), 4, + ACTIONS(6542), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6753), 6, + ACTIONS(6544), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [148870] = 16, + [146777] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5288), 1, + ACTIONS(5190), 1, sym__newline, - ACTIONS(6759), 1, + ACTIONS(6560), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6763), 1, + ACTIONS(6562), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6767), 1, + ACTIONS(6564), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6771), 1, + ACTIONS(6566), 1, aux_sym_expr_binary_parenthesized_token16, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3855), 1, + STATE(3626), 1, sym_comment, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6739), 2, + ACTIONS(6502), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6743), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6755), 2, + ACTIONS(6558), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5290), 3, + ACTIONS(5192), 3, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6735), 4, + ACTIONS(6500), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6745), 4, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6747), 6, + ACTIONS(6508), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [148936] = 16, + [146843] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5387), 1, + ACTIONS(5232), 1, sym__newline, - ACTIONS(6761), 1, + ACTIONS(6548), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6765), 1, + ACTIONS(6550), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6769), 1, + ACTIONS(6552), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6773), 1, + ACTIONS(6554), 1, aux_sym_expr_binary_parenthesized_token16, - STATE(3856), 1, + STATE(3627), 1, sym_comment, - STATE(3871), 1, + STATE(3642), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6741), 2, + ACTIONS(6538), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6749), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6757), 2, + ACTIONS(6546), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5298), 3, + ACTIONS(5202), 3, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6737), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6751), 4, + ACTIONS(6542), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6753), 6, + ACTIONS(6544), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [149002] = 17, + [146909] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5288), 1, + ACTIONS(5190), 1, sym__newline, - ACTIONS(6759), 1, + ACTIONS(6560), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6763), 1, + ACTIONS(6562), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6767), 1, + ACTIONS(6564), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6771), 1, + ACTIONS(6566), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6775), 1, + ACTIONS(6568), 1, aux_sym_expr_binary_parenthesized_token17, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3857), 1, + STATE(3628), 1, sym_comment, - ACTIONS(5290), 2, + ACTIONS(5192), 2, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6739), 2, + ACTIONS(6502), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6743), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6755), 2, + ACTIONS(6558), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6735), 4, + ACTIONS(6500), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6745), 4, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6747), 6, + ACTIONS(6508), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [149070] = 17, + [146977] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(5295), 1, sym__newline, - ACTIONS(6761), 1, + ACTIONS(6548), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6765), 1, + ACTIONS(6550), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6769), 1, + ACTIONS(6552), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6773), 1, + ACTIONS(6554), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6777), 1, + ACTIONS(6556), 1, aux_sym_expr_binary_parenthesized_token17, - STATE(3858), 1, + STATE(3629), 1, sym_comment, - STATE(3872), 1, + STATE(3643), 1, aux_sym_shebang_repeat1, - ACTIONS(5298), 2, + ACTIONS(5202), 2, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6733), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6741), 2, + ACTIONS(6538), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6749), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6757), 2, + ACTIONS(6546), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6737), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6751), 4, + ACTIONS(6542), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6753), 6, + ACTIONS(6544), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [149138] = 10, + [147045] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5288), 1, - sym__newline, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(3859), 1, + STATE(3630), 1, sym_comment, - ACTIONS(6731), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6739), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6743), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6735), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6747), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5290), 13, + ACTIONS(4926), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4924), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - [149192] = 10, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [147087] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5387), 1, + ACTIONS(5232), 1, sym__newline, - STATE(3860), 1, + STATE(3631), 1, sym_comment, - STATE(3873), 1, + STATE(3644), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6741), 2, + ACTIONS(6538), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6749), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6737), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6753), 6, + ACTIONS(6544), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5298), 13, + ACTIONS(5202), 13, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, @@ -362155,30 +339127,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - [149246] = 9, + [147141] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5288), 1, + ACTIONS(5190), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3861), 1, + STATE(3632), 1, sym_comment, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6739), 2, + ACTIONS(6502), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6743), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6735), 4, + ACTIONS(6500), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5290), 19, + ACTIONS(5192), 19, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, @@ -362198,30 +339170,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [149298] = 9, + [147193] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5387), 1, + ACTIONS(5232), 1, sym__newline, - STATE(3862), 1, + STATE(3633), 1, sym_comment, - STATE(3874), 1, + STATE(3645), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6741), 2, + ACTIONS(6538), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6749), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6737), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5298), 19, + ACTIONS(5202), 19, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, @@ -362241,19 +339213,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [149350] = 6, + [147245] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5308), 1, + ACTIONS(5178), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3863), 1, + STATE(3634), 1, sym_comment, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5310), 27, + ACTIONS(5180), 27, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, @@ -362281,24 +339253,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [149396] = 7, + [147291] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5308), 1, + ACTIONS(5178), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3864), 1, + STATE(3635), 1, sym_comment, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6735), 4, + ACTIONS(6500), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5310), 23, + ACTIONS(5180), 23, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, @@ -362322,27 +339294,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [149444] = 8, + [147339] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5308), 1, + ACTIONS(5178), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3865), 1, + STATE(3636), 1, sym_comment, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6739), 2, + ACTIONS(6502), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6735), 4, + ACTIONS(6500), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5310), 21, + ACTIONS(5180), 21, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, @@ -362364,42 +339336,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [149494] = 11, + [147389] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5308), 1, + ACTIONS(5178), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3866), 1, + STATE(3637), 1, sym_comment, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6739), 2, + ACTIONS(6502), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6743), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6735), 4, + ACTIONS(6500), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6745), 4, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6747), 6, + ACTIONS(6508), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5310), 9, + ACTIONS(5180), 9, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, @@ -362409,45 +339381,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [149550] = 12, + [147445] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5308), 1, + ACTIONS(5178), 1, sym__newline, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3867), 1, + STATE(3638), 1, sym_comment, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6739), 2, + ACTIONS(6502), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6743), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6755), 2, + ACTIONS(6558), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6735), 4, + ACTIONS(6500), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6745), 4, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6747), 6, + ACTIONS(6508), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5310), 7, + ACTIONS(5180), 7, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, @@ -362455,959 +339427,344 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [149608] = 13, + [147503] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5308), 1, + ACTIONS(5178), 1, sym__newline, - ACTIONS(6759), 1, + ACTIONS(6560), 1, aux_sym_expr_binary_parenthesized_token13, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3868), 1, + STATE(3639), 1, sym_comment, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6739), 2, + ACTIONS(6502), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6743), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6755), 2, + ACTIONS(6558), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6735), 4, + ACTIONS(6500), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6745), 4, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5310), 6, + ACTIONS(5180), 6, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6747), 6, + ACTIONS(6508), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [149668] = 14, + [147563] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5308), 1, + ACTIONS(5178), 1, sym__newline, - ACTIONS(6759), 1, + ACTIONS(6560), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6763), 1, + ACTIONS(6562), 1, aux_sym_expr_binary_parenthesized_token14, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3869), 1, + STATE(3640), 1, sym_comment, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6739), 2, + ACTIONS(6502), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6743), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6755), 2, + ACTIONS(6558), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6735), 4, + ACTIONS(6500), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6745), 4, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5310), 5, + ACTIONS(5180), 5, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6747), 6, + ACTIONS(6508), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [149730] = 15, + [147625] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5308), 1, + ACTIONS(5178), 1, sym__newline, - ACTIONS(6759), 1, + ACTIONS(6560), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6763), 1, + ACTIONS(6562), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6767), 1, + ACTIONS(6564), 1, aux_sym_expr_binary_parenthesized_token15, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(3870), 1, - sym_comment, - ACTIONS(6731), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6739), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6743), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6755), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5310), 4, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6735), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6745), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6747), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [149794] = 16, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5308), 1, - sym__newline, - ACTIONS(6759), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6763), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6767), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6771), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(3871), 1, - sym_comment, - ACTIONS(6731), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6739), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6743), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6755), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5310), 3, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6735), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6745), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6747), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [149860] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5308), 1, - sym__newline, - ACTIONS(6759), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6763), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6767), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6771), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6775), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(3872), 1, + STATE(3641), 1, sym_comment, - ACTIONS(5310), 2, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6739), 2, + ACTIONS(6502), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6743), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6755), 2, + ACTIONS(6558), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6735), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6745), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6747), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [149928] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5308), 1, - sym__newline, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(3873), 1, - sym_comment, - ACTIONS(6731), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6739), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6743), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6735), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6747), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5310), 13, + ACTIONS(5180), 4, aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - [149982] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5308), 1, - sym__newline, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(3874), 1, - sym_comment, - ACTIONS(6731), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6739), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6743), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6735), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5310), 19, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [150034] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3875), 1, - sym_comment, - ACTIONS(5131), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5129), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [150076] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3876), 1, - sym_comment, - ACTIONS(2251), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2253), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [150118] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3877), 1, - sym_comment, - ACTIONS(2303), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2305), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [150160] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3878), 1, - sym_comment, - ACTIONS(5153), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5151), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [150202] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3879), 1, - sym_comment, - ACTIONS(1982), 3, - anon_sym_GT, - anon_sym_LT2, - anon_sym_DOT_DOT2, - ACTIONS(1984), 28, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [150244] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3880), 1, - sym_comment, - ACTIONS(1770), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1772), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [150286] = 5, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6500), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6506), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6508), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [147689] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1525), 1, + ACTIONS(5178), 1, sym__newline, - ACTIONS(4889), 1, - aux_sym_unquoted_token2, - STATE(3881), 1, + ACTIONS(6560), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6562), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6564), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6566), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(2062), 1, + aux_sym_shebang_repeat1, + STATE(3642), 1, sym_comment, - ACTIONS(1537), 29, - aux_sym_ctrl_match_token1, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6502), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6558), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5180), 3, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6500), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6508), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [150330] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3882), 1, - sym_comment, - ACTIONS(2315), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2317), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [150372] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3883), 1, - sym_comment, - ACTIONS(986), 3, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - ACTIONS(988), 28, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [150414] = 4, + [147755] = 17, ACTIONS(247), 1, anon_sym_POUND, - STATE(3884), 1, - sym_comment, - ACTIONS(990), 3, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - ACTIONS(992), 28, - ts_builtin_sym_end, + ACTIONS(5178), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [150456] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3885), 1, - sym_comment, - ACTIONS(1778), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1780), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [150498] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3886), 1, + ACTIONS(6560), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6562), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6564), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6566), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6568), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2062), 1, + aux_sym_shebang_repeat1, + STATE(3643), 1, sym_comment, - ACTIONS(1525), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1537), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(5180), 2, aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [150540] = 8, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6498), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6502), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6504), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6558), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6500), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6506), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6508), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [147823] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6672), 1, - anon_sym_DOT, - STATE(3739), 1, - aux_sym_cell_path_repeat1, - STATE(3887), 1, - sym_comment, - STATE(3893), 1, - sym_path, - STATE(4005), 1, - sym_cell_path, - ACTIONS(1599), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1603), 25, - ts_builtin_sym_end, + ACTIONS(5178), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [150590] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3888), 1, + STATE(2062), 1, + aux_sym_shebang_repeat1, + STATE(3644), 1, sym_comment, - ACTIONS(2389), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2391), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(6498), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6502), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6504), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6500), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6508), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5180), 13, aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [150632] = 4, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + [147877] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(3889), 1, + ACTIONS(5178), 1, + sym__newline, + STATE(2062), 1, + aux_sym_shebang_repeat1, + STATE(3645), 1, sym_comment, - ACTIONS(2255), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2257), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(6498), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6502), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6504), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6500), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5180), 19, aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [150674] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6779), 1, - anon_sym_DOT_DOT2, - STATE(3890), 1, - sym_comment, - ACTIONS(6781), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1709), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1717), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [150720] = 4, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [147929] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3891), 1, + STATE(3646), 1, sym_comment, - ACTIONS(1021), 7, + ACTIONS(4888), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -363415,7 +339772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1023), 24, + ACTIONS(4886), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -363440,56 +339797,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [150762] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1006), 1, - anon_sym_EQ_GT, - ACTIONS(2081), 1, - anon_sym_LPAREN2, - ACTIONS(2083), 1, - aux_sym_unquoted_token4, - STATE(3892), 1, - sym_comment, - ACTIONS(1008), 28, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [150808] = 4, + [147971] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3893), 1, + STATE(3647), 1, sym_comment, - ACTIONS(994), 3, + ACTIONS(1060), 3, anon_sym_GT, anon_sym_DASH, anon_sym_LT2, - ACTIONS(996), 28, + ACTIONS(1062), 28, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -363518,88 +339835,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_DOT, - [150850] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3894), 1, - sym_comment, - ACTIONS(5168), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5166), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [150892] = 4, + [148013] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3895), 1, - sym_comment, - ACTIONS(5172), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5170), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [150934] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3896), 1, + STATE(3648), 1, sym_comment, - ACTIONS(2311), 7, + ACTIONS(2364), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -363607,7 +339848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2313), 24, + ACTIONS(2366), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -363632,12 +339873,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [150976] = 4, + [148055] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3897), 1, + STATE(3649), 1, sym_comment, - ACTIONS(2311), 7, + ACTIONS(2364), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -363645,7 +339886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2313), 24, + ACTIONS(2366), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -363670,52 +339911,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [151018] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6783), 1, - anon_sym_DOT_DOT2, - STATE(3898), 1, - sym_comment, - ACTIONS(6785), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1690), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1698), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [151064] = 4, + [148097] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3899), 1, + STATE(3650), 1, sym_comment, - ACTIONS(2332), 7, + ACTIONS(2368), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -363723,7 +339924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2334), 24, + ACTIONS(2370), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -363748,12 +339949,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [151106] = 4, + [148139] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3900), 1, + STATE(3651), 1, sym_comment, - ACTIONS(2271), 7, + ACTIONS(2372), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -363761,7 +339962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2273), 24, + ACTIONS(2374), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -363786,12 +339987,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [151148] = 4, + [148181] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3901), 1, + STATE(3652), 1, sym_comment, - ACTIONS(2241), 7, + ACTIONS(2376), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -363799,7 +340000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2243), 24, + ACTIONS(2378), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -363824,12 +340025,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [151190] = 4, + [148223] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3902), 1, + STATE(3653), 1, sym_comment, - ACTIONS(2336), 7, + ACTIONS(2380), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -363837,7 +340038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2338), 24, + ACTIONS(2382), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -363862,12 +340063,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [151232] = 4, + [148265] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3903), 1, + STATE(3654), 1, sym_comment, - ACTIONS(2263), 7, + ACTIONS(2384), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -363875,7 +340076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2265), 24, + ACTIONS(2386), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -363900,12 +340101,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [151274] = 4, + [148307] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3904), 1, + STATE(3655), 1, sym_comment, - ACTIONS(2295), 7, + ACTIONS(2388), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -363913,7 +340114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2297), 24, + ACTIONS(2390), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -363938,12 +340139,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [151316] = 4, + [148349] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3905), 1, + STATE(3656), 1, sym_comment, - ACTIONS(2340), 7, + ACTIONS(2392), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -363951,7 +340152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2342), 24, + ACTIONS(2394), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -363976,12 +340177,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [151358] = 4, + [148391] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3906), 1, + STATE(3657), 1, sym_comment, - ACTIONS(1006), 7, + ACTIONS(2396), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -363989,7 +340190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1008), 24, + ACTIONS(2398), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -364014,12 +340215,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [151400] = 4, + [148433] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3907), 1, + STATE(3658), 1, sym_comment, - ACTIONS(2344), 7, + ACTIONS(1843), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -364027,7 +340228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2346), 24, + ACTIONS(1845), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -364052,12 +340253,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [151442] = 4, + [148475] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3908), 1, + STATE(3659), 1, sym_comment, - ACTIONS(1879), 7, + ACTIONS(2400), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -364065,7 +340266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1881), 24, + ACTIONS(2402), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -364090,12 +340291,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [151484] = 4, + [148517] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3909), 1, + STATE(3660), 1, sym_comment, - ACTIONS(2348), 7, + ACTIONS(2404), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -364103,7 +340304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2350), 24, + ACTIONS(2406), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -364128,12 +340329,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [151526] = 4, + [148559] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3910), 1, + STATE(3661), 1, sym_comment, - ACTIONS(2352), 7, + ACTIONS(1859), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -364141,7 +340342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2354), 24, + ACTIONS(1861), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -364166,12 +340367,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [151568] = 4, + [148601] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3911), 1, + STATE(3662), 1, sym_comment, - ACTIONS(1747), 7, + ACTIONS(1867), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -364179,7 +340380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1749), 24, + ACTIONS(1869), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -364204,51 +340405,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [151610] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2091), 1, - anon_sym_LPAREN2, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(3912), 1, - sym_comment, - ACTIONS(2093), 29, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [151654] = 4, + [148643] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3913), 1, + STATE(3663), 1, sym_comment, - ACTIONS(3487), 7, + ACTIONS(1871), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -364256,7 +340418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3485), 24, + ACTIONS(1873), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -364281,12 +340443,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [151696] = 4, + [148685] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3914), 1, + STATE(3664), 1, sym_comment, - ACTIONS(1855), 7, + ACTIONS(2408), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -364294,7 +340456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1857), 24, + ACTIONS(2410), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -364319,12 +340481,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [151738] = 4, + [148727] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3915), 1, + STATE(3665), 1, sym_comment, - ACTIONS(1796), 7, + ACTIONS(1890), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -364332,7 +340494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1798), 24, + ACTIONS(1892), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -364357,51 +340519,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [151780] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2081), 1, - anon_sym_LPAREN2, - ACTIONS(2083), 1, - aux_sym_unquoted_token4, - STATE(3916), 1, - sym_comment, - ACTIONS(1008), 29, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [151824] = 4, + [148769] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3917), 1, + STATE(3666), 1, sym_comment, - ACTIONS(2359), 7, + ACTIONS(2412), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -364409,7 +340532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2361), 24, + ACTIONS(2414), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -364434,12 +340557,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [151866] = 4, + [148811] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3918), 1, + STATE(3667), 1, sym_comment, - ACTIONS(1741), 7, + ACTIONS(2416), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -364447,7 +340570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1745), 24, + ACTIONS(2418), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -364472,12 +340595,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [151908] = 4, + [148853] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3919), 1, + STATE(3668), 1, sym_comment, - ACTIONS(2363), 7, + ACTIONS(1894), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -364485,7 +340608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2365), 24, + ACTIONS(1896), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -364510,12 +340633,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [151950] = 4, + [148895] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3920), 1, + STATE(3669), 1, sym_comment, - ACTIONS(2367), 7, + ACTIONS(1945), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -364523,7 +340646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2369), 24, + ACTIONS(1947), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -364541,553 +340664,171 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [151992] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3603), 1, - anon_sym_DASH, - STATE(3921), 1, - sym_comment, - ACTIONS(6787), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(3601), 28, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [152036] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3603), 1, - anon_sym_DASH, - STATE(3922), 1, - sym_comment, - ACTIONS(6787), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6789), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(3601), 24, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [152082] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3603), 1, - anon_sym_DASH, - STATE(3923), 1, - sym_comment, - ACTIONS(6787), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6791), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6789), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(3601), 22, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [152130] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3603), 1, - anon_sym_DASH, - STATE(3924), 1, - sym_comment, - ACTIONS(6787), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6791), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6793), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6789), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6795), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6797), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(3601), 10, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - [152184] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3603), 1, - anon_sym_DASH, - STATE(3925), 1, - sym_comment, - ACTIONS(6787), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6791), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6793), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6799), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6789), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6795), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6797), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(3601), 8, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - [152240] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3603), 1, - anon_sym_DASH, - ACTIONS(6801), 1, - aux_sym_expr_binary_token13, - STATE(3926), 1, - sym_comment, - ACTIONS(6787), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6791), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6793), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6799), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6789), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6795), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6797), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(3601), 7, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - [152298] = 13, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3603), 1, - anon_sym_DASH, - ACTIONS(6801), 1, - aux_sym_expr_binary_token13, - ACTIONS(6803), 1, - aux_sym_expr_binary_token14, - STATE(3927), 1, - sym_comment, - ACTIONS(6787), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6791), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6793), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6799), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6789), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6795), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(3601), 6, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - ACTIONS(6797), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [152358] = 14, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3603), 1, - anon_sym_DASH, - ACTIONS(6801), 1, - aux_sym_expr_binary_token13, - ACTIONS(6803), 1, - aux_sym_expr_binary_token14, - ACTIONS(6805), 1, - aux_sym_expr_binary_token15, - STATE(3928), 1, - sym_comment, - ACTIONS(6787), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6791), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6793), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6799), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6789), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6795), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(3601), 5, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - ACTIONS(6797), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [152420] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3603), 1, - anon_sym_DASH, - ACTIONS(6801), 1, - aux_sym_expr_binary_token13, - ACTIONS(6803), 1, - aux_sym_expr_binary_token14, - ACTIONS(6805), 1, - aux_sym_expr_binary_token15, - ACTIONS(6807), 1, - aux_sym_expr_binary_token16, - STATE(3929), 1, - sym_comment, - ACTIONS(6787), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6791), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6793), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6799), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(3601), 4, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - ACTIONS(6789), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6795), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6797), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [152484] = 16, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [148937] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3603), 1, - anon_sym_DASH, - ACTIONS(6801), 1, - aux_sym_expr_binary_token13, - ACTIONS(6803), 1, - aux_sym_expr_binary_token14, - ACTIONS(6805), 1, - aux_sym_expr_binary_token15, - ACTIONS(6807), 1, - aux_sym_expr_binary_token16, - ACTIONS(6809), 1, - aux_sym_expr_binary_token17, - STATE(3930), 1, + STATE(3670), 1, sym_comment, - ACTIONS(6787), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6791), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6793), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6799), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(3601), 3, - anon_sym_DASH_DASH, + ACTIONS(2420), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2422), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token18, - ACTIONS(6789), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6795), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6797), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [152550] = 9, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [148979] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3603), 1, - anon_sym_DASH, - STATE(3931), 1, + STATE(3671), 1, sym_comment, - ACTIONS(6787), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6791), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6793), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6789), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6797), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(3601), 14, - anon_sym_DASH_DASH, + ACTIONS(2424), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2426), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - [152602] = 8, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [149021] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3603), 1, + STATE(3672), 1, + sym_comment, + ACTIONS(1949), 7, + anon_sym_DOLLAR, anon_sym_DASH, - STATE(3932), 1, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1951), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [149063] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3673), 1, sym_comment, - ACTIONS(6787), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6791), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6793), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6789), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(3601), 20, - anon_sym_DASH_DASH, + ACTIONS(2428), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2430), 24, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [152652] = 4, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [149105] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3933), 1, + STATE(3674), 1, sym_comment, - ACTIONS(5135), 7, + ACTIONS(2432), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -365095,7 +340836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5133), 24, + ACTIONS(2434), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -365120,12 +340861,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [152694] = 4, + [149147] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3934), 1, + STATE(3675), 1, sym_comment, - ACTIONS(1899), 7, + ACTIONS(2355), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -365133,7 +340874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1901), 24, + ACTIONS(2357), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -365158,18 +340899,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [152736] = 4, + [149189] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3935), 1, + ACTIONS(4974), 1, + anon_sym_DASH, + STATE(3676), 1, sym_comment, - ACTIONS(6811), 2, + ACTIONS(6570), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(3601), 29, - sym__newline, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4972), 28, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, @@ -365196,23 +340938,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [152778] = 5, + [149233] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3936), 1, + ACTIONS(4974), 1, + anon_sym_DASH, + STATE(3677), 1, sym_comment, - ACTIONS(6811), 2, + ACTIONS(6570), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6813), 4, + ACTIONS(6572), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(3601), 25, - sym__newline, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4972), 24, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, aux_sym_expr_binary_token9, @@ -365235,26 +340978,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [152822] = 6, + [149279] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(3937), 1, + ACTIONS(4974), 1, + anon_sym_DASH, + STATE(3678), 1, sym_comment, - ACTIONS(6811), 2, + ACTIONS(6570), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6815), 2, + ACTIONS(6574), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6813), 4, + ACTIONS(6572), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(3601), 23, - sym__newline, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4972), 22, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, aux_sym_expr_binary_token11, @@ -365275,41 +341019,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [152868] = 9, + [149327] = 10, ACTIONS(247), 1, anon_sym_POUND, - STATE(3938), 1, + ACTIONS(4974), 1, + anon_sym_DASH, + STATE(3679), 1, sym_comment, - ACTIONS(6811), 2, + ACTIONS(6570), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6815), 2, + ACTIONS(6574), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6817), 2, + ACTIONS(6576), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6813), 4, + ACTIONS(6572), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6819), 4, + ACTIONS(6578), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6821), 6, + ACTIONS(6580), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(3601), 11, - sym__newline, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4972), 10, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, aux_sym_expr_binary_token13, @@ -365318,315 +341063,322 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - [152920] = 10, + [149381] = 11, ACTIONS(247), 1, anon_sym_POUND, - STATE(3939), 1, + ACTIONS(4974), 1, + anon_sym_DASH, + STATE(3680), 1, sym_comment, - ACTIONS(6811), 2, + ACTIONS(6570), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6815), 2, + ACTIONS(6574), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6817), 2, + ACTIONS(6576), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6823), 2, + ACTIONS(6582), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6813), 4, + ACTIONS(6572), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6819), 4, + ACTIONS(6578), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6821), 6, + ACTIONS(6580), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(3601), 9, - sym__newline, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4972), 8, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_token13, aux_sym_expr_binary_token14, aux_sym_expr_binary_token15, aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - [152974] = 11, + [149437] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6825), 1, + ACTIONS(4974), 1, + anon_sym_DASH, + ACTIONS(6584), 1, aux_sym_expr_binary_token13, - STATE(3940), 1, + STATE(3681), 1, sym_comment, - ACTIONS(6811), 2, + ACTIONS(6570), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6815), 2, + ACTIONS(6574), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6817), 2, + ACTIONS(6576), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6823), 2, + ACTIONS(6582), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6813), 4, + ACTIONS(6572), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6819), 4, + ACTIONS(6578), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6821), 6, + ACTIONS(6580), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(3601), 8, - sym__newline, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4972), 7, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_token14, aux_sym_expr_binary_token15, aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - [153030] = 12, + [149495] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6825), 1, + ACTIONS(4974), 1, + anon_sym_DASH, + ACTIONS(6584), 1, aux_sym_expr_binary_token13, - ACTIONS(6827), 1, + ACTIONS(6586), 1, aux_sym_expr_binary_token14, - STATE(3941), 1, + STATE(3682), 1, sym_comment, - ACTIONS(6811), 2, + ACTIONS(6570), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6815), 2, + ACTIONS(6574), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6817), 2, + ACTIONS(6576), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6823), 2, + ACTIONS(6582), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6813), 4, + ACTIONS(6572), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6819), 4, + ACTIONS(6578), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6821), 6, + ACTIONS(4972), 6, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + ACTIONS(6580), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(3601), 7, - sym__newline, - anon_sym_COMMA, - anon_sym_RBRACE, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - [153088] = 13, + [149555] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6825), 1, + ACTIONS(4974), 1, + anon_sym_DASH, + ACTIONS(6584), 1, aux_sym_expr_binary_token13, - ACTIONS(6827), 1, + ACTIONS(6586), 1, aux_sym_expr_binary_token14, - ACTIONS(6829), 1, + ACTIONS(6588), 1, aux_sym_expr_binary_token15, - STATE(3942), 1, + STATE(3683), 1, sym_comment, - ACTIONS(6811), 2, + ACTIONS(6570), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6815), 2, + ACTIONS(6574), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6817), 2, + ACTIONS(6576), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6823), 2, + ACTIONS(6582), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6813), 4, + ACTIONS(6572), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6819), 4, + ACTIONS(6578), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(3601), 6, - sym__newline, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4972), 5, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - ACTIONS(6821), 6, + ACTIONS(6580), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [153148] = 14, + [149617] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6825), 1, + ACTIONS(4974), 1, + anon_sym_DASH, + ACTIONS(6584), 1, aux_sym_expr_binary_token13, - ACTIONS(6827), 1, + ACTIONS(6586), 1, aux_sym_expr_binary_token14, - ACTIONS(6829), 1, + ACTIONS(6588), 1, aux_sym_expr_binary_token15, - ACTIONS(6831), 1, + ACTIONS(6590), 1, aux_sym_expr_binary_token16, - STATE(3943), 1, + STATE(3684), 1, sym_comment, - ACTIONS(6811), 2, + ACTIONS(6570), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6815), 2, + ACTIONS(6574), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6817), 2, + ACTIONS(6576), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6823), 2, + ACTIONS(6582), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6813), 4, + ACTIONS(4972), 4, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + ACTIONS(6572), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6819), 4, + ACTIONS(6578), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(3601), 5, - sym__newline, - anon_sym_COMMA, - anon_sym_RBRACE, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - ACTIONS(6821), 6, + ACTIONS(6580), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [153210] = 15, + [149681] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6825), 1, + ACTIONS(4974), 1, + anon_sym_DASH, + ACTIONS(6584), 1, aux_sym_expr_binary_token13, - ACTIONS(6827), 1, + ACTIONS(6586), 1, aux_sym_expr_binary_token14, - ACTIONS(6829), 1, + ACTIONS(6588), 1, aux_sym_expr_binary_token15, - ACTIONS(6831), 1, + ACTIONS(6590), 1, aux_sym_expr_binary_token16, - ACTIONS(6833), 1, + ACTIONS(6592), 1, aux_sym_expr_binary_token17, - STATE(3944), 1, + STATE(3685), 1, sym_comment, - ACTIONS(6811), 2, + ACTIONS(6570), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6815), 2, + ACTIONS(6574), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6817), 2, + ACTIONS(6576), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6823), 2, + ACTIONS(6582), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(3601), 4, - sym__newline, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4972), 3, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_token18, - ACTIONS(6813), 4, + ACTIONS(6572), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6819), 4, + ACTIONS(6578), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6821), 6, + ACTIONS(6580), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [153274] = 8, + [149747] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(3945), 1, + ACTIONS(4974), 1, + anon_sym_DASH, + STATE(3686), 1, sym_comment, - ACTIONS(6811), 2, + ACTIONS(6570), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6815), 2, + ACTIONS(6574), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6817), 2, + ACTIONS(6576), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6813), 4, + ACTIONS(6572), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6821), 6, + ACTIONS(6580), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(3601), 15, - sym__newline, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4972), 14, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, aux_sym_expr_binary_token13, @@ -365639,29 +341391,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - [153324] = 7, + [149799] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3946), 1, + ACTIONS(4974), 1, + anon_sym_DASH, + STATE(3687), 1, sym_comment, - ACTIONS(6811), 2, + ACTIONS(6570), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6815), 2, + ACTIONS(6574), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6817), 2, + ACTIONS(6576), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6813), 4, + ACTIONS(6572), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(3601), 21, - sym__newline, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4972), 20, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, aux_sym_expr_binary_token13, @@ -365680,128 +341433,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [153372] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3947), 1, - sym_comment, - ACTIONS(1835), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1837), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [153414] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6835), 1, - anon_sym_DOT_DOT2, - STATE(3948), 1, - sym_comment, - ACTIONS(6837), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2066), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2072), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [153460] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3949), 1, - sym_comment, - ACTIONS(2371), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2373), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [153502] = 4, + [149849] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3950), 1, + STATE(3688), 1, sym_comment, - ACTIONS(2379), 7, + ACTIONS(5044), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -365809,7 +341446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2381), 24, + ACTIONS(5042), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -365834,12 +341471,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [153544] = 4, + [149891] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3951), 1, + STATE(3689), 1, sym_comment, - ACTIONS(1839), 7, + ACTIONS(5014), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -365847,7 +341484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1841), 24, + ACTIONS(5012), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -365872,515 +341509,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [153586] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5421), 1, - sym__newline, - STATE(3791), 1, - aux_sym_shebang_repeat1, - STATE(3952), 1, - sym_comment, - ACTIONS(6733), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5361), 27, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [153632] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5421), 1, - sym__newline, - STATE(3793), 1, - aux_sym_shebang_repeat1, - STATE(3953), 1, - sym_comment, - ACTIONS(6733), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6737), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5361), 23, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [153680] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5421), 1, - sym__newline, - STATE(3795), 1, - aux_sym_shebang_repeat1, - STATE(3954), 1, - sym_comment, - ACTIONS(6733), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6741), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6737), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5361), 21, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [153730] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5421), 1, - sym__newline, - STATE(3797), 1, - aux_sym_shebang_repeat1, - STATE(3955), 1, - sym_comment, - ACTIONS(6733), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6741), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6749), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6737), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6751), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6753), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5361), 9, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [153786] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5421), 1, - sym__newline, - STATE(3799), 1, - aux_sym_shebang_repeat1, - STATE(3956), 1, - sym_comment, - ACTIONS(6733), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6741), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6749), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6757), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6737), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6751), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6753), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5361), 7, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [153844] = 13, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5421), 1, - sym__newline, - ACTIONS(6761), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(3801), 1, - aux_sym_shebang_repeat1, - STATE(3957), 1, - sym_comment, - ACTIONS(6733), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6741), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6749), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6757), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6737), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6751), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5361), 6, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6753), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [153904] = 14, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5421), 1, - sym__newline, - ACTIONS(6761), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6765), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(3803), 1, - aux_sym_shebang_repeat1, - STATE(3958), 1, - sym_comment, - ACTIONS(6733), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6741), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6749), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6757), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6737), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6751), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5361), 5, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6753), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [153966] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5421), 1, - sym__newline, - ACTIONS(6761), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6765), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6769), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(3805), 1, - aux_sym_shebang_repeat1, - STATE(3959), 1, - sym_comment, - ACTIONS(6733), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6741), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6749), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6757), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5361), 4, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6737), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6751), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6753), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [154030] = 16, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5421), 1, - sym__newline, - ACTIONS(6761), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6765), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6769), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6773), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(3807), 1, - aux_sym_shebang_repeat1, - STATE(3960), 1, - sym_comment, - ACTIONS(6733), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6741), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6749), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6757), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5361), 3, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6737), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6751), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6753), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [154096] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5426), 1, - sym__newline, - ACTIONS(6761), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6765), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6769), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6773), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6777), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(3809), 1, - aux_sym_shebang_repeat1, - STATE(3961), 1, - sym_comment, - ACTIONS(5361), 2, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6733), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6741), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6749), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6757), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6737), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6751), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6753), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [154164] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5421), 1, - sym__newline, - STATE(3811), 1, - aux_sym_shebang_repeat1, - STATE(3962), 1, - sym_comment, - ACTIONS(6733), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6741), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6749), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6737), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6753), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5361), 13, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - [154218] = 4, + [149933] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3963), 1, + STATE(3690), 1, sym_comment, - ACTIONS(2383), 7, + ACTIONS(5048), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -366388,7 +341522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2385), 24, + ACTIONS(5046), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -366413,183 +341547,61 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [154260] = 4, + [149975] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3964), 1, + STATE(3691), 1, sym_comment, - ACTIONS(2326), 7, - anon_sym_DOLLAR, + ACTIONS(1052), 3, + anon_sym_GT, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2328), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [154302] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5421), 1, + anon_sym_LT2, + ACTIONS(1054), 28, + ts_builtin_sym_end, sym__newline, - STATE(3813), 1, - aux_sym_shebang_repeat1, - STATE(3965), 1, - sym_comment, - ACTIONS(6733), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6741), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6749), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6737), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5361), 19, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [154354] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3966), 1, - sym_comment, - ACTIONS(5139), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5137), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [154396] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3967), 1, - sym_comment, - ACTIONS(5160), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5158), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [154438] = 6, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [150017] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6839), 1, - anon_sym_DOT_DOT2, - STATE(3968), 1, + ACTIONS(6453), 1, + anon_sym_DOT, + STATE(3483), 1, + aux_sym_cell_path_repeat1, + STATE(3546), 1, + sym_path, + STATE(3692), 1, sym_comment, - ACTIONS(6841), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1972), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1978), 20, + STATE(3737), 1, + sym_cell_path, + ACTIONS(1686), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1688), 25, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -366602,20 +341614,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [154484] = 4, + anon_sym_in, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [150067] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3969), 1, + STATE(3693), 1, sym_comment, - ACTIONS(3375), 7, + ACTIONS(5018), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -366623,7 +341640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3373), 24, + ACTIONS(5016), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -366648,12 +341665,51 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [154526] = 4, + [150109] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3970), 1, + ACTIONS(1575), 1, + sym__newline, + ACTIONS(4680), 1, + aux_sym_unquoted_token2, + STATE(3694), 1, + sym_comment, + ACTIONS(1587), 29, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [150153] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3695), 1, sym_comment, - ACTIONS(5143), 7, + ACTIONS(5026), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -366661,7 +341717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5141), 24, + ACTIONS(5024), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -366686,12 +341742,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [154568] = 4, + [150195] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3971), 1, + STATE(3696), 1, sym_comment, - ACTIONS(5164), 7, + ACTIONS(5030), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -366699,7 +341755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5162), 24, + ACTIONS(5028), 24, anon_sym_true, anon_sym_false, anon_sym_null, @@ -366724,55 +341780,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [154610] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2099), 1, - anon_sym_LPAREN2, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - STATE(3972), 1, - sym_comment, - ACTIONS(2101), 29, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [154654] = 5, + [150237] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2099), 1, + ACTIONS(2295), 1, anon_sym_LPAREN2, - ACTIONS(2103), 1, + ACTIONS(2299), 1, aux_sym_unquoted_token4, - STATE(3973), 1, + STATE(3697), 1, sym_comment, - ACTIONS(2107), 29, + ACTIONS(2297), 29, aux_sym_ctrl_match_token1, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -366802,411 +341819,406 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [154698] = 6, + [150281] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6843), 1, - anon_sym_DOT_DOT2, - STATE(3974), 1, - sym_comment, - ACTIONS(6845), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1935), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1941), 20, - ts_builtin_sym_end, + ACTIONS(5190), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [154744] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - aux_sym_unquoted_token4, - STATE(3975), 1, + STATE(2062), 1, + aux_sym_shebang_repeat1, + STATE(3698), 1, sym_comment, - ACTIONS(2133), 30, + ACTIONS(6498), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6502), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6504), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6500), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6508), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5192), 13, aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [154786] = 25, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + [150335] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3501), 1, + ACTIONS(3387), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3393), 1, aux_sym_expr_unary_token1, - ACTIONS(3519), 1, + ACTIONS(3405), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6691), 1, + ACTIONS(6460), 1, sym_identifier, - ACTIONS(6697), 1, + ACTIONS(6466), 1, sym__newline, - ACTIONS(6699), 1, + ACTIONS(6468), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6470), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6474), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6476), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6709), 1, + ACTIONS(6478), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6711), 1, + ACTIONS(6480), 1, aux_sym__val_number_decimal_token4, - STATE(3712), 1, + STATE(3427), 1, sym__val_number_decimal, - STATE(3713), 1, + STATE(3437), 1, sym__val_number, - STATE(3976), 1, + STATE(3699), 1, sym_comment, - STATE(4047), 1, + STATE(3777), 1, sym_expr_parenthesized, - STATE(4208), 1, + STATE(3957), 1, aux_sym_shebang_repeat1, - STATE(4481), 1, + STATE(4209), 1, sym_val_number, - STATE(4584), 1, + STATE(4266), 1, + sym__expr_unary_minus, + STATE(4421), 1, sym__binary_predicate_parenthesized, - STATE(4586), 1, + STATE(4447), 1, sym__predicate, - STATE(4680), 1, - sym__expr_unary_minus, - ACTIONS(6693), 2, + ACTIONS(6462), 2, anon_sym_true, anon_sym_false, - STATE(4642), 2, + STATE(4408), 2, sym_expr_unary, sym_val_bool, - STATE(5304), 2, + STATE(5097), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6695), 5, + ACTIONS(6464), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [154869] = 25, + [150418] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3501), 1, + ACTIONS(3387), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3393), 1, aux_sym_expr_unary_token1, - ACTIONS(3519), 1, + ACTIONS(3405), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6691), 1, + ACTIONS(6460), 1, sym_identifier, - ACTIONS(6697), 1, + ACTIONS(6466), 1, sym__newline, - ACTIONS(6699), 1, + ACTIONS(6468), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6470), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6474), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6476), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6709), 1, + ACTIONS(6478), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6711), 1, + ACTIONS(6480), 1, aux_sym__val_number_decimal_token4, - STATE(3712), 1, + STATE(3427), 1, sym__val_number_decimal, - STATE(3713), 1, + STATE(3437), 1, sym__val_number, - STATE(3977), 1, + STATE(3700), 1, sym_comment, - STATE(3991), 1, + STATE(3719), 1, aux_sym_shebang_repeat1, - STATE(4047), 1, + STATE(3777), 1, sym_expr_parenthesized, - STATE(4481), 1, + STATE(4209), 1, sym_val_number, - STATE(4608), 1, + STATE(4263), 1, sym__binary_predicate_parenthesized, - STATE(4609), 1, - sym__predicate, - STATE(4680), 1, + STATE(4266), 1, sym__expr_unary_minus, - ACTIONS(6693), 2, + STATE(4282), 1, + sym__predicate, + ACTIONS(6462), 2, anon_sym_true, anon_sym_false, - STATE(4642), 2, + STATE(4408), 2, sym_expr_unary, sym_val_bool, - STATE(5304), 2, + STATE(5097), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6695), 5, + ACTIONS(6464), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [154952] = 4, + [150501] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6636), 1, - aux_sym_unquoted_token2, - STATE(3978), 1, + ACTIONS(3387), 1, + anon_sym_DASH, + ACTIONS(3393), 1, + aux_sym_expr_unary_token1, + ACTIONS(3405), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6460), 1, + sym_identifier, + ACTIONS(6466), 1, + sym__newline, + ACTIONS(6468), 1, + anon_sym_LPAREN, + ACTIONS(6470), 1, + anon_sym_DOLLAR, + ACTIONS(6474), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6476), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6478), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6480), 1, + aux_sym__val_number_decimal_token4, + STATE(3427), 1, + sym__val_number_decimal, + STATE(3437), 1, + sym__val_number, + STATE(3701), 1, sym_comment, - ACTIONS(1537), 29, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [154993] = 25, + STATE(3738), 1, + aux_sym_shebang_repeat1, + STATE(3777), 1, + sym_expr_parenthesized, + STATE(4209), 1, + sym_val_number, + STATE(4266), 1, + sym__expr_unary_minus, + STATE(4295), 1, + sym__binary_predicate_parenthesized, + STATE(4301), 1, + sym__predicate, + ACTIONS(6462), 2, + anon_sym_true, + anon_sym_false, + STATE(4408), 2, + sym_expr_unary, + sym_val_bool, + STATE(5097), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6464), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [150584] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3501), 1, + ACTIONS(3387), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3393), 1, aux_sym_expr_unary_token1, - ACTIONS(3519), 1, + ACTIONS(3405), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6691), 1, + ACTIONS(6460), 1, sym_identifier, - ACTIONS(6697), 1, + ACTIONS(6466), 1, sym__newline, - ACTIONS(6699), 1, + ACTIONS(6468), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6470), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6474), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6476), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6709), 1, + ACTIONS(6478), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6711), 1, + ACTIONS(6480), 1, aux_sym__val_number_decimal_token4, - STATE(3712), 1, + STATE(3427), 1, sym__val_number_decimal, - STATE(3713), 1, + STATE(3437), 1, sym__val_number, - STATE(3979), 1, + STATE(3702), 1, sym_comment, - STATE(3992), 1, + STATE(3706), 1, aux_sym_shebang_repeat1, - STATE(4047), 1, + STATE(3777), 1, sym_expr_parenthesized, - STATE(4481), 1, + STATE(4209), 1, sym_val_number, - STATE(4613), 1, + STATE(4266), 1, + sym__expr_unary_minus, + STATE(4309), 1, sym__binary_predicate_parenthesized, - STATE(4615), 1, + STATE(4311), 1, sym__predicate, - STATE(4680), 1, - sym__expr_unary_minus, - ACTIONS(6693), 2, + ACTIONS(6462), 2, anon_sym_true, anon_sym_false, - STATE(4642), 2, + STATE(4408), 2, sym_expr_unary, sym_val_bool, - STATE(5304), 2, + STATE(5097), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6695), 5, + ACTIONS(6464), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [155076] = 25, + [150667] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3501), 1, + ACTIONS(3387), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3393), 1, aux_sym_expr_unary_token1, - ACTIONS(3519), 1, + ACTIONS(3405), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6691), 1, + ACTIONS(6460), 1, sym_identifier, - ACTIONS(6697), 1, + ACTIONS(6466), 1, sym__newline, - ACTIONS(6699), 1, + ACTIONS(6468), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6470), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6474), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6476), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6709), 1, + ACTIONS(6478), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6711), 1, + ACTIONS(6480), 1, aux_sym__val_number_decimal_token4, - STATE(3712), 1, + STATE(3427), 1, sym__val_number_decimal, - STATE(3713), 1, + STATE(3437), 1, sym__val_number, - STATE(3980), 1, + STATE(3703), 1, sym_comment, - STATE(3997), 1, - aux_sym_shebang_repeat1, - STATE(4047), 1, + STATE(3777), 1, sym_expr_parenthesized, - STATE(4481), 1, + STATE(3957), 1, + aux_sym_shebang_repeat1, + STATE(4209), 1, sym_val_number, - STATE(4626), 1, - sym__predicate, - STATE(4680), 1, + STATE(4266), 1, sym__expr_unary_minus, - STATE(4712), 1, + STATE(4452), 1, sym__binary_predicate_parenthesized, - ACTIONS(6693), 2, + STATE(4458), 1, + sym__predicate, + ACTIONS(6462), 2, anon_sym_true, anon_sym_false, - STATE(4642), 2, + STATE(4408), 2, sym_expr_unary, sym_val_bool, - STATE(5304), 2, + STATE(5097), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6695), 5, + ACTIONS(6464), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [155159] = 17, + [150750] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5373), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5375), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5377), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5379), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5381), 1, - aux_sym_expr_binary_parenthesized_token17, - ACTIONS(5426), 1, + ACTIONS(3387), 1, + anon_sym_DASH, + ACTIONS(3393), 1, + aux_sym_expr_unary_token1, + ACTIONS(3405), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6460), 1, + sym_identifier, + ACTIONS(6466), 1, sym__newline, - ACTIONS(6847), 1, - aux_sym_expr_binary_parenthesized_token18, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(3981), 1, + ACTIONS(6468), 1, + anon_sym_LPAREN, + ACTIONS(6470), 1, + anon_sym_DOLLAR, + ACTIONS(6474), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6476), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6478), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6480), 1, + aux_sym__val_number_decimal_token4, + STATE(3427), 1, + sym__val_number_decimal, + STATE(3437), 1, + sym__val_number, + STATE(3704), 1, sym_comment, - ACTIONS(5363), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5367), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5369), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5371), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5365), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5383), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5385), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [155226] = 4, + STATE(3777), 1, + sym_expr_parenthesized, + STATE(3957), 1, + aux_sym_shebang_repeat1, + STATE(4209), 1, + sym_val_number, + STATE(4257), 1, + sym__predicate, + STATE(4266), 1, + sym__expr_unary_minus, + STATE(4359), 1, + sym__binary_predicate_parenthesized, + ACTIONS(6462), 2, + anon_sym_true, + anon_sym_false, + STATE(4408), 2, + sym_expr_unary, + sym_val_bool, + STATE(5097), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6464), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [150833] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2089), 1, + ACTIONS(2243), 1, sym__newline, - STATE(3982), 1, + STATE(3705), 1, sym_comment, - ACTIONS(2093), 29, + ACTIONS(2247), 29, aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, @@ -367236,1105 +342248,1053 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [155267] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3983), 1, - sym_comment, - STATE(5120), 1, - sym_redirection, - ACTIONS(6851), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(6853), 8, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(6849), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [155312] = 25, + [150874] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3519), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3555), 1, + ACTIONS(3387), 1, anon_sym_DASH, - ACTIONS(3561), 1, + ACTIONS(3393), 1, aux_sym_expr_unary_token1, - ACTIONS(6691), 1, + ACTIONS(3405), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6460), 1, sym_identifier, - ACTIONS(6701), 1, + ACTIONS(6466), 1, + sym__newline, + ACTIONS(6468), 1, + anon_sym_LPAREN, + ACTIONS(6470), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6474), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6476), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6709), 1, + ACTIONS(6478), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6711), 1, + ACTIONS(6480), 1, aux_sym__val_number_decimal_token4, - ACTIONS(6857), 1, - anon_sym_LPAREN, - ACTIONS(6859), 1, - aux_sym_ctrl_match_token1, - STATE(3712), 1, + STATE(3427), 1, sym__val_number_decimal, - STATE(3713), 1, + STATE(3437), 1, sym__val_number, - STATE(3984), 1, + STATE(3706), 1, sym_comment, - STATE(4074), 1, + STATE(3777), 1, sym_expr_parenthesized, - STATE(4481), 1, + STATE(3957), 1, + aux_sym_shebang_repeat1, + STATE(4209), 1, sym_val_number, - STATE(4754), 1, - sym__binary_predicate, - STATE(4757), 1, - sym__predicate, - STATE(4797), 1, + STATE(4266), 1, sym__expr_unary_minus, - STATE(5255), 1, - sym_val_closure, - ACTIONS(6855), 2, + STATE(4332), 1, + sym__binary_predicate_parenthesized, + STATE(4334), 1, + sym__predicate, + ACTIONS(6462), 2, anon_sym_true, anon_sym_false, - STATE(4771), 2, + STATE(4408), 2, sym_expr_unary, sym_val_bool, - STATE(5350), 2, + STATE(5097), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6695), 5, + ACTIONS(6464), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [155395] = 17, + [150957] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5409), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5411), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5413), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5415), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5426), 1, + ACTIONS(2251), 1, sym__newline, - ACTIONS(5428), 1, - aux_sym_expr_binary_parenthesized_token17, - ACTIONS(6861), 1, - aux_sym_expr_binary_parenthesized_token18, - STATE(3981), 1, - aux_sym_shebang_repeat1, - STATE(3985), 1, + STATE(3707), 1, sym_comment, - ACTIONS(5390), 2, + ACTIONS(2253), 29, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5398), 2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5405), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5407), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5392), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5417), 4, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5419), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [155462] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4817), 1, - aux_sym_unquoted_token2, - STATE(3986), 1, - sym_comment, - ACTIONS(1537), 29, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [155503] = 25, + [150998] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3501), 1, + ACTIONS(3387), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3393), 1, aux_sym_expr_unary_token1, - ACTIONS(3519), 1, + ACTIONS(3405), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6691), 1, + ACTIONS(6460), 1, sym_identifier, - ACTIONS(6697), 1, + ACTIONS(6466), 1, sym__newline, - ACTIONS(6699), 1, + ACTIONS(6468), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6470), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6474), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6476), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6709), 1, + ACTIONS(6478), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6711), 1, + ACTIONS(6480), 1, aux_sym__val_number_decimal_token4, - STATE(3712), 1, + STATE(3427), 1, sym__val_number_decimal, - STATE(3713), 1, + STATE(3437), 1, sym__val_number, - STATE(3987), 1, + STATE(3708), 1, sym_comment, - STATE(4047), 1, - sym_expr_parenthesized, - STATE(4208), 1, + STATE(3732), 1, aux_sym_shebang_repeat1, - STATE(4481), 1, + STATE(3777), 1, + sym_expr_parenthesized, + STATE(4209), 1, sym_val_number, - STATE(4678), 1, - sym__binary_predicate_parenthesized, - STATE(4680), 1, + STATE(4266), 1, sym__expr_unary_minus, - STATE(4687), 1, + STATE(4298), 1, + sym__binary_predicate_parenthesized, + STATE(4299), 1, sym__predicate, - ACTIONS(6693), 2, + ACTIONS(6462), 2, anon_sym_true, anon_sym_false, - STATE(4642), 2, + STATE(4408), 2, sym_expr_unary, sym_val_bool, - STATE(5304), 2, + STATE(5097), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6695), 5, + ACTIONS(6464), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [155586] = 25, + [151081] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3501), 1, + ACTIONS(3387), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3393), 1, aux_sym_expr_unary_token1, - ACTIONS(3519), 1, + ACTIONS(3405), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6691), 1, + ACTIONS(6460), 1, sym_identifier, - ACTIONS(6697), 1, + ACTIONS(6466), 1, sym__newline, - ACTIONS(6699), 1, + ACTIONS(6468), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6470), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6474), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6476), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6709), 1, + ACTIONS(6478), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6711), 1, + ACTIONS(6480), 1, aux_sym__val_number_decimal_token4, - STATE(3712), 1, + STATE(3427), 1, sym__val_number_decimal, - STATE(3713), 1, + STATE(3437), 1, sym__val_number, - STATE(3988), 1, + STATE(3709), 1, sym_comment, - STATE(3998), 1, + STATE(3720), 1, aux_sym_shebang_repeat1, - STATE(4047), 1, + STATE(3777), 1, sym_expr_parenthesized, - STATE(4481), 1, + STATE(4209), 1, sym_val_number, - STATE(4630), 1, + STATE(4266), 1, + sym__expr_unary_minus, + STATE(4302), 1, sym__binary_predicate_parenthesized, - STATE(4631), 1, + STATE(4303), 1, sym__predicate, - STATE(4680), 1, - sym__expr_unary_minus, - ACTIONS(6693), 2, + ACTIONS(6462), 2, anon_sym_true, anon_sym_false, - STATE(4642), 2, + STATE(4408), 2, sym_expr_unary, sym_val_bool, - STATE(5304), 2, + STATE(5097), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6695), 5, + ACTIONS(6464), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [155669] = 25, + [151164] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3501), 1, + ACTIONS(3387), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3393), 1, aux_sym_expr_unary_token1, - ACTIONS(3519), 1, + ACTIONS(3405), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6691), 1, + ACTIONS(6460), 1, sym_identifier, - ACTIONS(6697), 1, + ACTIONS(6466), 1, sym__newline, - ACTIONS(6699), 1, + ACTIONS(6468), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6470), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6474), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6476), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6709), 1, + ACTIONS(6478), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6711), 1, + ACTIONS(6480), 1, aux_sym__val_number_decimal_token4, - STATE(3712), 1, + STATE(3427), 1, sym__val_number_decimal, - STATE(3713), 1, + STATE(3437), 1, sym__val_number, - STATE(3989), 1, - sym_comment, - STATE(3999), 1, + STATE(3699), 1, aux_sym_shebang_repeat1, - STATE(4047), 1, + STATE(3710), 1, + sym_comment, + STATE(3777), 1, sym_expr_parenthesized, - STATE(4481), 1, + STATE(4209), 1, sym_val_number, - STATE(4632), 1, + STATE(4266), 1, + sym__expr_unary_minus, + STATE(4307), 1, sym__binary_predicate_parenthesized, - STATE(4633), 1, + STATE(4308), 1, sym__predicate, - STATE(4680), 1, - sym__expr_unary_minus, - ACTIONS(6693), 2, + ACTIONS(6462), 2, anon_sym_true, anon_sym_false, - STATE(4642), 2, + STATE(4408), 2, sym_expr_unary, sym_val_bool, - STATE(5304), 2, + STATE(5097), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6695), 5, + ACTIONS(6464), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [155752] = 25, + [151247] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3501), 1, + ACTIONS(3387), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3393), 1, aux_sym_expr_unary_token1, - ACTIONS(3519), 1, + ACTIONS(3405), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6691), 1, + ACTIONS(6460), 1, sym_identifier, - ACTIONS(6697), 1, + ACTIONS(6466), 1, sym__newline, - ACTIONS(6699), 1, + ACTIONS(6468), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6470), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6474), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6476), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6709), 1, + ACTIONS(6478), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6711), 1, + ACTIONS(6480), 1, aux_sym__val_number_decimal_token4, - STATE(3712), 1, + STATE(3427), 1, sym__val_number_decimal, - STATE(3713), 1, + STATE(3437), 1, sym__val_number, - STATE(3990), 1, + STATE(3703), 1, + aux_sym_shebang_repeat1, + STATE(3711), 1, sym_comment, - STATE(4047), 1, + STATE(3777), 1, sym_expr_parenthesized, - STATE(4208), 1, - aux_sym_shebang_repeat1, - STATE(4481), 1, + STATE(4209), 1, sym_val_number, - STATE(4650), 1, + STATE(4266), 1, + sym__expr_unary_minus, + STATE(4312), 1, sym__binary_predicate_parenthesized, - STATE(4673), 1, + STATE(4315), 1, sym__predicate, - STATE(4680), 1, - sym__expr_unary_minus, - ACTIONS(6693), 2, + ACTIONS(6462), 2, anon_sym_true, anon_sym_false, - STATE(4642), 2, + STATE(4408), 2, sym_expr_unary, sym_val_bool, - STATE(5304), 2, + STATE(5097), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6695), 5, + ACTIONS(6464), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [155835] = 25, + [151330] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3501), 1, + ACTIONS(3387), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3393), 1, aux_sym_expr_unary_token1, - ACTIONS(3519), 1, + ACTIONS(3405), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6691), 1, + ACTIONS(6460), 1, sym_identifier, - ACTIONS(6697), 1, + ACTIONS(6466), 1, sym__newline, - ACTIONS(6699), 1, + ACTIONS(6468), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6470), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6474), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6476), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6709), 1, + ACTIONS(6478), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6711), 1, + ACTIONS(6480), 1, aux_sym__val_number_decimal_token4, - STATE(3712), 1, + STATE(3427), 1, sym__val_number_decimal, - STATE(3713), 1, + STATE(3437), 1, sym__val_number, - STATE(3991), 1, + STATE(3704), 1, + aux_sym_shebang_repeat1, + STATE(3712), 1, sym_comment, - STATE(4047), 1, + STATE(3777), 1, sym_expr_parenthesized, - STATE(4208), 1, - aux_sym_shebang_repeat1, - STATE(4481), 1, + STATE(4209), 1, sym_val_number, - STATE(4680), 1, + STATE(4266), 1, sym__expr_unary_minus, - STATE(4698), 1, + STATE(4317), 1, sym__binary_predicate_parenthesized, - STATE(4703), 1, + STATE(4318), 1, sym__predicate, - ACTIONS(6693), 2, + ACTIONS(6462), 2, anon_sym_true, anon_sym_false, - STATE(4642), 2, + STATE(4408), 2, sym_expr_unary, sym_val_bool, - STATE(5304), 2, + STATE(5097), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6695), 5, + ACTIONS(6464), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [155918] = 25, + [151413] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3501), 1, + ACTIONS(3387), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3393), 1, aux_sym_expr_unary_token1, - ACTIONS(3519), 1, + ACTIONS(3405), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6691), 1, + ACTIONS(6460), 1, sym_identifier, - ACTIONS(6697), 1, + ACTIONS(6466), 1, sym__newline, - ACTIONS(6699), 1, + ACTIONS(6468), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6470), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6474), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6476), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6709), 1, + ACTIONS(6478), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6711), 1, + ACTIONS(6480), 1, aux_sym__val_number_decimal_token4, - STATE(3712), 1, + STATE(3427), 1, sym__val_number_decimal, - STATE(3713), 1, + STATE(3437), 1, sym__val_number, - STATE(3992), 1, + STATE(3713), 1, sym_comment, - STATE(4047), 1, - sym_expr_parenthesized, - STATE(4208), 1, + STATE(3717), 1, aux_sym_shebang_repeat1, - STATE(4481), 1, + STATE(3777), 1, + sym_expr_parenthesized, + STATE(4209), 1, sym_val_number, - STATE(4540), 1, + STATE(4266), 1, + sym__expr_unary_minus, + STATE(4319), 1, sym__binary_predicate_parenthesized, - STATE(4636), 1, + STATE(4320), 1, sym__predicate, - STATE(4680), 1, - sym__expr_unary_minus, - ACTIONS(6693), 2, + ACTIONS(6462), 2, anon_sym_true, anon_sym_false, - STATE(4642), 2, + STATE(4408), 2, sym_expr_unary, sym_val_bool, - STATE(5304), 2, + STATE(5097), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6695), 5, + ACTIONS(6464), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [156001] = 25, + [151496] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3501), 1, + ACTIONS(3387), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3393), 1, aux_sym_expr_unary_token1, - ACTIONS(3519), 1, + ACTIONS(3405), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6691), 1, + ACTIONS(6460), 1, sym_identifier, - ACTIONS(6697), 1, + ACTIONS(6466), 1, sym__newline, - ACTIONS(6699), 1, + ACTIONS(6468), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6470), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6474), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6476), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6709), 1, + ACTIONS(6478), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6711), 1, + ACTIONS(6480), 1, aux_sym__val_number_decimal_token4, - STATE(3712), 1, + STATE(3427), 1, sym__val_number_decimal, - STATE(3713), 1, + STATE(3437), 1, sym__val_number, - STATE(3993), 1, + STATE(3714), 1, sym_comment, - STATE(4016), 1, - aux_sym_shebang_repeat1, - STATE(4047), 1, + STATE(3777), 1, sym_expr_parenthesized, - STATE(4481), 1, + STATE(3957), 1, + aux_sym_shebang_repeat1, + STATE(4209), 1, sym_val_number, - STATE(4552), 1, + STATE(4266), 1, + sym__expr_unary_minus, + STATE(4436), 1, sym__binary_predicate_parenthesized, - STATE(4591), 1, + STATE(4443), 1, sym__predicate, - STATE(4680), 1, - sym__expr_unary_minus, - ACTIONS(6693), 2, + ACTIONS(6462), 2, anon_sym_true, anon_sym_false, - STATE(4642), 2, + STATE(4408), 2, sym_expr_unary, sym_val_bool, - STATE(5304), 2, + STATE(5097), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6695), 5, + ACTIONS(6464), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [156084] = 25, + [151579] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2293), 1, + sym__newline, + STATE(3715), 1, + sym_comment, + ACTIONS(2297), 29, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [151620] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4618), 1, + aux_sym_unquoted_token2, + STATE(3716), 1, + sym_comment, + ACTIONS(1587), 29, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [151661] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3501), 1, + ACTIONS(3387), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3393), 1, aux_sym_expr_unary_token1, - ACTIONS(3519), 1, + ACTIONS(3405), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6691), 1, + ACTIONS(6460), 1, sym_identifier, - ACTIONS(6697), 1, + ACTIONS(6466), 1, sym__newline, - ACTIONS(6699), 1, + ACTIONS(6468), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6470), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6474), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6476), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6709), 1, + ACTIONS(6478), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6711), 1, + ACTIONS(6480), 1, aux_sym__val_number_decimal_token4, - STATE(3712), 1, + STATE(3427), 1, sym__val_number_decimal, - STATE(3713), 1, + STATE(3437), 1, sym__val_number, - STATE(3994), 1, + STATE(3717), 1, sym_comment, - STATE(4004), 1, - aux_sym_shebang_repeat1, - STATE(4047), 1, + STATE(3777), 1, sym_expr_parenthesized, - STATE(4481), 1, + STATE(3957), 1, + aux_sym_shebang_repeat1, + STATE(4209), 1, sym_val_number, - STATE(4602), 1, + STATE(4266), 1, + sym__expr_unary_minus, + STATE(4363), 1, sym__binary_predicate_parenthesized, - STATE(4612), 1, + STATE(4404), 1, sym__predicate, - STATE(4680), 1, - sym__expr_unary_minus, - ACTIONS(6693), 2, + ACTIONS(6462), 2, anon_sym_true, anon_sym_false, - STATE(4642), 2, + STATE(4408), 2, sym_expr_unary, sym_val_bool, - STATE(5304), 2, + STATE(5097), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6695), 5, + ACTIONS(6464), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [156167] = 25, + [151744] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3501), 1, + ACTIONS(3387), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3393), 1, aux_sym_expr_unary_token1, - ACTIONS(3519), 1, + ACTIONS(3405), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6691), 1, + ACTIONS(6460), 1, sym_identifier, - ACTIONS(6697), 1, + ACTIONS(6466), 1, sym__newline, - ACTIONS(6699), 1, + ACTIONS(6468), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6470), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6474), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6476), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6709), 1, + ACTIONS(6478), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6711), 1, + ACTIONS(6480), 1, aux_sym__val_number_decimal_token4, - STATE(3712), 1, + STATE(3427), 1, sym__val_number_decimal, - STATE(3713), 1, + STATE(3437), 1, sym__val_number, - STATE(3976), 1, + STATE(3714), 1, aux_sym_shebang_repeat1, - STATE(3995), 1, + STATE(3718), 1, sym_comment, - STATE(4047), 1, + STATE(3777), 1, sym_expr_parenthesized, - STATE(4481), 1, + STATE(4209), 1, sym_val_number, - STATE(4654), 1, - sym__binary_predicate_parenthesized, - STATE(4659), 1, - sym__predicate, - STATE(4680), 1, + STATE(4266), 1, sym__expr_unary_minus, - ACTIONS(6693), 2, - anon_sym_true, - anon_sym_false, - STATE(4642), 2, - sym_expr_unary, - sym_val_bool, - STATE(5304), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6695), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [156250] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2105), 1, - sym__newline, - STATE(3996), 1, - sym_comment, - ACTIONS(2107), 29, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [156291] = 25, + STATE(4407), 1, + sym__binary_predicate_parenthesized, + STATE(4418), 1, + sym__predicate, + ACTIONS(6462), 2, + anon_sym_true, + anon_sym_false, + STATE(4408), 2, + sym_expr_unary, + sym_val_bool, + STATE(5097), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6464), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [151827] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3501), 1, + ACTIONS(3387), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3393), 1, aux_sym_expr_unary_token1, - ACTIONS(3519), 1, + ACTIONS(3405), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6691), 1, + ACTIONS(6460), 1, sym_identifier, - ACTIONS(6697), 1, + ACTIONS(6466), 1, sym__newline, - ACTIONS(6699), 1, + ACTIONS(6468), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6470), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6474), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6476), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6709), 1, + ACTIONS(6478), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6711), 1, + ACTIONS(6480), 1, aux_sym__val_number_decimal_token4, - STATE(3712), 1, + STATE(3427), 1, sym__val_number_decimal, - STATE(3713), 1, + STATE(3437), 1, sym__val_number, - STATE(3997), 1, + STATE(3719), 1, sym_comment, - STATE(4047), 1, + STATE(3777), 1, sym_expr_parenthesized, - STATE(4208), 1, + STATE(3957), 1, aux_sym_shebang_repeat1, - STATE(4481), 1, + STATE(4209), 1, sym_val_number, - STATE(4537), 1, - sym__binary_predicate_parenthesized, - STATE(4538), 1, - sym__predicate, - STATE(4680), 1, + STATE(4266), 1, sym__expr_unary_minus, - ACTIONS(6693), 2, + STATE(4330), 1, + sym__predicate, + STATE(4420), 1, + sym__binary_predicate_parenthesized, + ACTIONS(6462), 2, anon_sym_true, anon_sym_false, - STATE(4642), 2, + STATE(4408), 2, sym_expr_unary, sym_val_bool, - STATE(5304), 2, + STATE(5097), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6695), 5, + ACTIONS(6464), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [156374] = 25, + [151910] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3501), 1, + ACTIONS(3387), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3393), 1, aux_sym_expr_unary_token1, - ACTIONS(3519), 1, + ACTIONS(3405), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6691), 1, + ACTIONS(6460), 1, sym_identifier, - ACTIONS(6697), 1, + ACTIONS(6466), 1, sym__newline, - ACTIONS(6699), 1, + ACTIONS(6468), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6470), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6474), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6476), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6709), 1, + ACTIONS(6478), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6711), 1, + ACTIONS(6480), 1, aux_sym__val_number_decimal_token4, - STATE(3712), 1, + STATE(3427), 1, sym__val_number_decimal, - STATE(3713), 1, + STATE(3437), 1, sym__val_number, - STATE(3998), 1, + STATE(3720), 1, sym_comment, - STATE(4047), 1, + STATE(3777), 1, sym_expr_parenthesized, - STATE(4208), 1, + STATE(3957), 1, aux_sym_shebang_repeat1, - STATE(4481), 1, + STATE(4209), 1, sym_val_number, - STATE(4547), 1, + STATE(4266), 1, + sym__expr_unary_minus, + STATE(4293), 1, sym__binary_predicate_parenthesized, - STATE(4551), 1, + STATE(4445), 1, sym__predicate, - STATE(4680), 1, - sym__expr_unary_minus, - ACTIONS(6693), 2, + ACTIONS(6462), 2, anon_sym_true, anon_sym_false, - STATE(4642), 2, + STATE(4408), 2, sym_expr_unary, sym_val_bool, - STATE(5304), 2, + STATE(5097), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6695), 5, + ACTIONS(6464), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [156457] = 25, + [151993] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3501), 1, + ACTIONS(3387), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3393), 1, aux_sym_expr_unary_token1, - ACTIONS(3519), 1, + ACTIONS(3405), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6691), 1, + ACTIONS(6460), 1, sym_identifier, - ACTIONS(6697), 1, + ACTIONS(6466), 1, sym__newline, - ACTIONS(6699), 1, + ACTIONS(6468), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6470), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6474), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6476), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6709), 1, + ACTIONS(6478), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6711), 1, + ACTIONS(6480), 1, aux_sym__val_number_decimal_token4, - STATE(3712), 1, + STATE(3427), 1, sym__val_number_decimal, - STATE(3713), 1, + STATE(3437), 1, sym__val_number, - STATE(3999), 1, + STATE(3721), 1, sym_comment, - STATE(4047), 1, - sym_expr_parenthesized, - STATE(4208), 1, + STATE(3724), 1, aux_sym_shebang_repeat1, - STATE(4481), 1, + STATE(3777), 1, + sym_expr_parenthesized, + STATE(4209), 1, sym_val_number, - STATE(4568), 1, + STATE(4266), 1, + sym__expr_unary_minus, + STATE(4278), 1, sym__binary_predicate_parenthesized, - STATE(4569), 1, + STATE(4285), 1, sym__predicate, - STATE(4680), 1, - sym__expr_unary_minus, - ACTIONS(6693), 2, + ACTIONS(6462), 2, anon_sym_true, anon_sym_false, - STATE(4642), 2, + STATE(4408), 2, sym_expr_unary, sym_val_bool, - STATE(5304), 2, + STATE(5097), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6695), 5, + ACTIONS(6464), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [156540] = 25, + [152076] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3501), 1, + ACTIONS(3405), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(3435), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3441), 1, aux_sym_expr_unary_token1, - ACTIONS(3519), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6691), 1, + ACTIONS(6460), 1, sym_identifier, - ACTIONS(6697), 1, - sym__newline, - ACTIONS(6699), 1, - anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6470), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6474), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6476), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6709), 1, + ACTIONS(6478), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6711), 1, + ACTIONS(6480), 1, aux_sym__val_number_decimal_token4, - STATE(3712), 1, + ACTIONS(6596), 1, + anon_sym_LPAREN, + ACTIONS(6598), 1, + aux_sym_ctrl_match_token1, + STATE(3427), 1, sym__val_number_decimal, - STATE(3713), 1, + STATE(3437), 1, sym__val_number, - STATE(3987), 1, - aux_sym_shebang_repeat1, - STATE(4000), 1, + STATE(3722), 1, sym_comment, - STATE(4047), 1, + STATE(3796), 1, sym_expr_parenthesized, - STATE(4481), 1, + STATE(4209), 1, sym_val_number, - STATE(4585), 1, - sym__binary_predicate_parenthesized, - STATE(4587), 1, + STATE(4493), 1, + sym__binary_predicate, + STATE(4494), 1, sym__predicate, - STATE(4680), 1, + STATE(4560), 1, sym__expr_unary_minus, - ACTIONS(6693), 2, + STATE(5096), 1, + sym_val_closure, + ACTIONS(6594), 2, anon_sym_true, anon_sym_false, - STATE(4642), 2, + STATE(4496), 2, sym_expr_unary, sym_val_bool, - STATE(5304), 2, + STATE(5093), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6695), 5, + ACTIONS(6464), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [156623] = 25, + [152159] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3501), 1, + ACTIONS(3387), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3393), 1, aux_sym_expr_unary_token1, - ACTIONS(3519), 1, + ACTIONS(3405), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6691), 1, + ACTIONS(6460), 1, sym_identifier, - ACTIONS(6697), 1, + ACTIONS(6466), 1, sym__newline, - ACTIONS(6699), 1, + ACTIONS(6468), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6470), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6474), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6476), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6709), 1, + ACTIONS(6478), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6711), 1, + ACTIONS(6480), 1, aux_sym__val_number_decimal_token4, - STATE(3712), 1, + STATE(3427), 1, sym__val_number_decimal, - STATE(3713), 1, + STATE(3437), 1, sym__val_number, - STATE(4001), 1, + STATE(3723), 1, sym_comment, - STATE(4008), 1, - aux_sym_shebang_repeat1, - STATE(4047), 1, + STATE(3777), 1, sym_expr_parenthesized, - STATE(4481), 1, + STATE(3957), 1, + aux_sym_shebang_repeat1, + STATE(4209), 1, sym_val_number, - STATE(4590), 1, + STATE(4266), 1, + sym__expr_unary_minus, + STATE(4453), 1, sym__binary_predicate_parenthesized, - STATE(4617), 1, + STATE(4454), 1, sym__predicate, - STATE(4680), 1, - sym__expr_unary_minus, - ACTIONS(6693), 2, + ACTIONS(6462), 2, anon_sym_true, anon_sym_false, - STATE(4642), 2, + STATE(4408), 2, sym_expr_unary, sym_val_bool, - STATE(5304), 2, + STATE(5097), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6695), 5, + ACTIONS(6464), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [156706] = 25, + [152242] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3501), 1, + ACTIONS(3387), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3393), 1, aux_sym_expr_unary_token1, - ACTIONS(3519), 1, + ACTIONS(3405), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6691), 1, + ACTIONS(6460), 1, sym_identifier, - ACTIONS(6697), 1, + ACTIONS(6466), 1, sym__newline, - ACTIONS(6699), 1, + ACTIONS(6468), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6470), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6474), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6476), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6709), 1, + ACTIONS(6478), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6711), 1, + ACTIONS(6480), 1, aux_sym__val_number_decimal_token4, - STATE(3712), 1, + STATE(3427), 1, sym__val_number_decimal, - STATE(3713), 1, + STATE(3437), 1, sym__val_number, - STATE(4002), 1, + STATE(3724), 1, sym_comment, - STATE(4010), 1, - aux_sym_shebang_repeat1, - STATE(4047), 1, + STATE(3777), 1, sym_expr_parenthesized, - STATE(4481), 1, + STATE(3957), 1, + aux_sym_shebang_repeat1, + STATE(4209), 1, sym_val_number, - STATE(4619), 1, + STATE(4266), 1, + sym__expr_unary_minus, + STATE(4430), 1, sym__binary_predicate_parenthesized, - STATE(4620), 1, + STATE(4459), 1, sym__predicate, - STATE(4680), 1, - sym__expr_unary_minus, - ACTIONS(6693), 2, + ACTIONS(6462), 2, anon_sym_true, anon_sym_false, - STATE(4642), 2, + STATE(4408), 2, sym_expr_unary, sym_val_bool, - STATE(5304), 2, + STATE(5097), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6695), 5, + ACTIONS(6464), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [156789] = 6, + [152325] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(4003), 1, + STATE(3725), 1, sym_comment, - STATE(5083), 1, + STATE(4903), 1, sym_redirection, - ACTIONS(6851), 8, + ACTIONS(6602), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -368343,7 +343303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(6853), 8, + ACTIONS(6604), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -368352,7 +343312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(6863), 13, + ACTIONS(6600), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368366,74 +343326,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [156834] = 25, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3501), 1, - anon_sym_DASH, - ACTIONS(3507), 1, - aux_sym_expr_unary_token1, - ACTIONS(3519), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6691), 1, - sym_identifier, - ACTIONS(6697), 1, - sym__newline, - ACTIONS(6699), 1, - anon_sym_LPAREN, - ACTIONS(6701), 1, - anon_sym_DOLLAR, - ACTIONS(6705), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6709), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6711), 1, - aux_sym__val_number_decimal_token4, - STATE(3712), 1, - sym__val_number_decimal, - STATE(3713), 1, - sym__val_number, - STATE(4004), 1, - sym_comment, - STATE(4047), 1, - sym_expr_parenthesized, - STATE(4208), 1, - aux_sym_shebang_repeat1, - STATE(4481), 1, - sym_val_number, - STATE(4533), 1, - sym__predicate, - STATE(4674), 1, - sym__binary_predicate_parenthesized, - STATE(4680), 1, - sym__expr_unary_minus, - ACTIONS(6693), 2, - anon_sym_true, - anon_sym_false, - STATE(4642), 2, - sym_expr_unary, - sym_val_bool, - STATE(5304), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6695), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [156917] = 4, + [152370] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4005), 1, + STATE(3726), 1, sym_comment, - ACTIONS(1982), 3, + ACTIONS(2137), 3, anon_sym_GT, anon_sym_LT2, anon_sym_DOT_DOT2, - ACTIONS(1984), 27, + ACTIONS(2139), 27, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -368461,1099 +343363,767 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [156958] = 25, + [152411] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3501), 1, + ACTIONS(3387), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3393), 1, aux_sym_expr_unary_token1, - ACTIONS(3519), 1, + ACTIONS(3405), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6691), 1, + ACTIONS(6460), 1, sym_identifier, - ACTIONS(6699), 1, + ACTIONS(6468), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6470), 1, anon_sym_DOLLAR, - ACTIONS(6703), 1, + ACTIONS(6472), 1, aux_sym_ctrl_match_token1, - ACTIONS(6705), 1, + ACTIONS(6474), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6476), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6709), 1, + ACTIONS(6478), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6711), 1, + ACTIONS(6480), 1, aux_sym__val_number_decimal_token4, - STATE(3712), 1, + STATE(3427), 1, sym__val_number_decimal, - STATE(3713), 1, + STATE(3437), 1, sym__val_number, - STATE(4006), 1, + STATE(3727), 1, sym_comment, - STATE(4047), 1, + STATE(3777), 1, sym_expr_parenthesized, - STATE(4481), 1, + STATE(4209), 1, sym_val_number, - STATE(4624), 1, - sym__binary_predicate, - STATE(4640), 1, - sym__predicate, - STATE(4680), 1, + STATE(4266), 1, sym__expr_unary_minus, - STATE(5082), 1, + STATE(4397), 1, + sym__predicate, + STATE(4457), 1, + sym__binary_predicate, + STATE(4891), 1, sym_val_closure, - ACTIONS(6693), 2, + ACTIONS(6462), 2, anon_sym_true, anon_sym_false, - STATE(4642), 2, + STATE(4408), 2, sym_expr_unary, sym_val_bool, - STATE(5304), 2, + STATE(5097), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6695), 5, + ACTIONS(6464), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [157041] = 17, + [152494] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(5295), 1, sym__newline, - ACTIONS(6761), 1, + ACTIONS(6548), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6765), 1, + ACTIONS(6550), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6769), 1, + ACTIONS(6552), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6773), 1, + ACTIONS(6554), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6777), 1, + ACTIONS(6556), 1, aux_sym_expr_binary_parenthesized_token17, - ACTIONS(6865), 1, + ACTIONS(6606), 1, aux_sym_expr_binary_parenthesized_token18, - STATE(4007), 1, + STATE(3728), 1, sym_comment, - STATE(4009), 1, + STATE(3731), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6741), 2, + ACTIONS(6538), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6749), 2, + ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6757), 2, + ACTIONS(6546), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6737), 4, + ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6751), 4, + ACTIONS(6542), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6753), 6, + ACTIONS(6544), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [157108] = 25, + [152561] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3501), 1, - anon_sym_DASH, - ACTIONS(3507), 1, - aux_sym_expr_unary_token1, - ACTIONS(3519), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6691), 1, - sym_identifier, - ACTIONS(6697), 1, + STATE(3729), 1, + sym_comment, + STATE(4916), 1, + sym_redirection, + ACTIONS(6602), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(6604), 8, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(6608), 13, sym__newline, - ACTIONS(6699), 1, - anon_sym_LPAREN, - ACTIONS(6701), 1, - anon_sym_DOLLAR, - ACTIONS(6705), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6709), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6711), 1, - aux_sym__val_number_decimal_token4, - STATE(3712), 1, - sym__val_number_decimal, - STATE(3713), 1, - sym__val_number, - STATE(4008), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [152606] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4618), 1, + aux_sym_unquoted_token2, + STATE(3730), 1, sym_comment, - STATE(4047), 1, - sym_expr_parenthesized, - STATE(4208), 1, - aux_sym_shebang_repeat1, - STATE(4481), 1, - sym_val_number, - STATE(4534), 1, - sym__binary_predicate_parenthesized, - STATE(4536), 1, - sym__predicate, - STATE(4680), 1, - sym__expr_unary_minus, - ACTIONS(6693), 2, - anon_sym_true, - anon_sym_false, - STATE(4642), 2, - sym_expr_unary, - sym_val_bool, - STATE(5304), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6695), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [157191] = 17, + ACTIONS(1587), 29, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [152647] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(5295), 1, sym__newline, - ACTIONS(6759), 1, + ACTIONS(6560), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6763), 1, + ACTIONS(6562), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6767), 1, + ACTIONS(6564), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6771), 1, + ACTIONS(6566), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6775), 1, + ACTIONS(6568), 1, aux_sym_expr_binary_parenthesized_token17, - ACTIONS(6867), 1, + ACTIONS(6610), 1, aux_sym_expr_binary_parenthesized_token18, - STATE(2192), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - STATE(4009), 1, + STATE(3731), 1, sym_comment, - ACTIONS(6731), 2, + ACTIONS(6498), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6739), 2, + ACTIONS(6502), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6743), 2, + ACTIONS(6504), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6755), 2, + ACTIONS(6558), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6735), 4, + ACTIONS(6500), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6745), 4, + ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6747), 6, + ACTIONS(6508), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [157258] = 25, + [152714] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3501), 1, + ACTIONS(3387), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3393), 1, aux_sym_expr_unary_token1, - ACTIONS(3519), 1, + ACTIONS(3405), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6691), 1, + ACTIONS(6460), 1, sym_identifier, - ACTIONS(6697), 1, + ACTIONS(6466), 1, sym__newline, - ACTIONS(6699), 1, + ACTIONS(6468), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6470), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6474), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6476), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6709), 1, + ACTIONS(6478), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6711), 1, + ACTIONS(6480), 1, aux_sym__val_number_decimal_token4, - STATE(3712), 1, + STATE(3427), 1, sym__val_number_decimal, - STATE(3713), 1, + STATE(3437), 1, sym__val_number, - STATE(4010), 1, + STATE(3732), 1, sym_comment, - STATE(4047), 1, + STATE(3777), 1, sym_expr_parenthesized, - STATE(4208), 1, + STATE(3957), 1, aux_sym_shebang_repeat1, - STATE(4481), 1, + STATE(4209), 1, sym_val_number, - STATE(4680), 1, + STATE(4266), 1, sym__expr_unary_minus, - STATE(4694), 1, - sym__binary_predicate_parenthesized, - STATE(4707), 1, + STATE(4289), 1, sym__predicate, - ACTIONS(6693), 2, - anon_sym_true, - anon_sym_false, - STATE(4642), 2, - sym_expr_unary, - sym_val_bool, - STATE(5304), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6695), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [157341] = 25, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3501), 1, - anon_sym_DASH, - ACTIONS(3507), 1, - aux_sym_expr_unary_token1, - ACTIONS(3519), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6691), 1, - sym_identifier, - ACTIONS(6697), 1, - sym__newline, - ACTIONS(6699), 1, - anon_sym_LPAREN, - ACTIONS(6701), 1, - anon_sym_DOLLAR, - ACTIONS(6705), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6709), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6711), 1, - aux_sym__val_number_decimal_token4, - STATE(3712), 1, - sym__val_number_decimal, - STATE(3713), 1, - sym__val_number, - STATE(3990), 1, - aux_sym_shebang_repeat1, - STATE(4011), 1, - sym_comment, - STATE(4047), 1, - sym_expr_parenthesized, - STATE(4481), 1, - sym_val_number, - STATE(4597), 1, + STATE(4422), 1, sym__binary_predicate_parenthesized, - STATE(4598), 1, - sym__predicate, - STATE(4680), 1, - sym__expr_unary_minus, - ACTIONS(6693), 2, + ACTIONS(6462), 2, anon_sym_true, anon_sym_false, - STATE(4642), 2, + STATE(4408), 2, sym_expr_unary, sym_val_bool, - STATE(5304), 2, + STATE(5097), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6695), 5, + ACTIONS(6464), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [157424] = 4, + [152797] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2097), 1, + ACTIONS(5224), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5230), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5253), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5255), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5281), 1, + aux_sym_expr_binary_parenthesized_token17, + ACTIONS(5295), 1, sym__newline, - STATE(4012), 1, + ACTIONS(6612), 1, + aux_sym_expr_binary_parenthesized_token18, + STATE(2062), 1, + aux_sym_shebang_repeat1, + STATE(3733), 1, sym_comment, - ACTIONS(2101), 29, - aux_sym_ctrl_match_token1, + ACTIONS(5214), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5218), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5220), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5222), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5216), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5226), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5228), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [152864] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5295), 1, + sym__newline, + ACTIONS(6168), 1, aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6170), 1, aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6172), 1, aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6174), 1, aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6176), 1, aux_sym_expr_binary_parenthesized_token17, + ACTIONS(6614), 1, aux_sym_expr_binary_parenthesized_token18, + STATE(3734), 1, + sym_comment, + STATE(3735), 1, + aux_sym_shebang_repeat1, + ACTIONS(6154), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6158), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6160), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6166), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6156), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6162), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6164), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [157465] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4817), 1, - aux_sym_unquoted_token2, - STATE(4013), 1, - sym_comment, - ACTIONS(1537), 29, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [157506] = 17, + [152931] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(5295), 1, sym__newline, - ACTIONS(6381), 1, + ACTIONS(6194), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6383), 1, + ACTIONS(6196), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6385), 1, + ACTIONS(6198), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6387), 1, + ACTIONS(6200), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6389), 1, + ACTIONS(6202), 1, aux_sym_expr_binary_parenthesized_token17, - ACTIONS(6869), 1, + ACTIONS(6616), 1, aux_sym_expr_binary_parenthesized_token18, - STATE(4014), 1, - sym_comment, - STATE(4015), 1, + STATE(2062), 1, aux_sym_shebang_repeat1, - ACTIONS(6331), 2, + STATE(3735), 1, + sym_comment, + ACTIONS(6180), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6371), 2, + ACTIONS(6184), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6373), 2, + ACTIONS(6186), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6379), 2, + ACTIONS(6192), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6369), 4, + ACTIONS(6182), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6375), 4, + ACTIONS(6188), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6377), 6, + ACTIONS(6190), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [157573] = 17, + [152998] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5426), 1, - sym__newline, - ACTIONS(6407), 1, + ACTIONS(5245), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6409), 1, + ACTIONS(5247), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6411), 1, + ACTIONS(5283), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6413), 1, + ACTIONS(5285), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6415), 1, + ACTIONS(5295), 1, + sym__newline, + ACTIONS(5297), 1, aux_sym_expr_binary_parenthesized_token17, - ACTIONS(6871), 1, + ACTIONS(6618), 1, aux_sym_expr_binary_parenthesized_token18, - STATE(2192), 1, + STATE(3733), 1, aux_sym_shebang_repeat1, - STATE(4015), 1, + STATE(3736), 1, sym_comment, - ACTIONS(6393), 2, + ACTIONS(5235), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6397), 2, + ACTIONS(5239), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6399), 2, + ACTIONS(5241), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6405), 2, + ACTIONS(5243), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6395), 4, + ACTIONS(5237), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6401), 4, + ACTIONS(5249), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6403), 6, + ACTIONS(5251), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [157640] = 25, + [153065] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3501), 1, + STATE(3737), 1, + sym_comment, + ACTIONS(1625), 3, + anon_sym_GT, + anon_sym_LT2, + anon_sym_DOT_DOT2, + ACTIONS(1629), 27, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_in, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [153106] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3387), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3393), 1, aux_sym_expr_unary_token1, - ACTIONS(3519), 1, + ACTIONS(3405), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6691), 1, + ACTIONS(6460), 1, sym_identifier, - ACTIONS(6697), 1, + ACTIONS(6466), 1, sym__newline, - ACTIONS(6699), 1, + ACTIONS(6468), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6470), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6474), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6476), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6709), 1, + ACTIONS(6478), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6711), 1, + ACTIONS(6480), 1, aux_sym__val_number_decimal_token4, - STATE(3712), 1, + STATE(3427), 1, sym__val_number_decimal, - STATE(3713), 1, + STATE(3437), 1, sym__val_number, - STATE(4016), 1, + STATE(3738), 1, sym_comment, - STATE(4047), 1, + STATE(3777), 1, sym_expr_parenthesized, - STATE(4208), 1, + STATE(3957), 1, aux_sym_shebang_repeat1, - STATE(4481), 1, + STATE(4209), 1, sym_val_number, - STATE(4525), 1, + STATE(4266), 1, + sym__expr_unary_minus, + STATE(4304), 1, sym__binary_predicate_parenthesized, - STATE(4618), 1, + STATE(4305), 1, sym__predicate, - STATE(4680), 1, - sym__expr_unary_minus, - ACTIONS(6693), 2, + ACTIONS(6462), 2, anon_sym_true, anon_sym_false, - STATE(4642), 2, + STATE(4408), 2, sym_expr_unary, sym_val_bool, - STATE(5304), 2, + STATE(5097), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6695), 5, + ACTIONS(6464), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [157723] = 13, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6883), 1, - aux_sym_expr_binary_token13, - ACTIONS(6885), 1, - aux_sym_expr_binary_token14, - ACTIONS(6887), 1, - aux_sym_expr_binary_token15, - STATE(4017), 1, - sym_comment, - ACTIONS(6873), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6877), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6879), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6881), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(3601), 4, - anon_sym_EQ_GT, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - ACTIONS(6875), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6889), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6891), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [157781] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6903), 1, - aux_sym_expr_binary_token13, - ACTIONS(6905), 1, - aux_sym_expr_binary_token14, - ACTIONS(6907), 1, - aux_sym_expr_binary_token15, - ACTIONS(6909), 1, - aux_sym_expr_binary_token16, - ACTIONS(6911), 1, - aux_sym_expr_binary_token17, - STATE(4018), 1, - sym_comment, - ACTIONS(3601), 2, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token18, - ACTIONS(6893), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6897), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6899), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6901), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6895), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6913), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6915), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [157843] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4019), 1, - sym_comment, - ACTIONS(6893), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(3601), 27, - aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [157883] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4020), 1, - sym_comment, - ACTIONS(6873), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(3601), 27, - anon_sym_EQ_GT, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [157923] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4021), 1, - sym_comment, - ACTIONS(6873), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6875), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(3601), 23, - anon_sym_EQ_GT, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [157965] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4022), 1, - sym_comment, - ACTIONS(6873), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6877), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6875), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(3601), 21, - anon_sym_EQ_GT, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [158009] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4023), 1, - sym_comment, - ACTIONS(6873), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6877), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6879), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6875), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6889), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6891), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(3601), 9, - anon_sym_EQ_GT, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - [158059] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4024), 1, - sym_comment, - ACTIONS(6873), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6877), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6879), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6881), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6875), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6889), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6891), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(3601), 7, - anon_sym_EQ_GT, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - [158111] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6883), 1, - aux_sym_expr_binary_token13, - STATE(4025), 1, - sym_comment, - ACTIONS(6873), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6877), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6879), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6881), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6875), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6889), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(3601), 6, - anon_sym_EQ_GT, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - ACTIONS(6891), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [158165] = 12, + [153189] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6883), 1, - aux_sym_expr_binary_token13, - ACTIONS(6885), 1, - aux_sym_expr_binary_token14, - STATE(4026), 1, + ACTIONS(3387), 1, + anon_sym_DASH, + ACTIONS(3393), 1, + aux_sym_expr_unary_token1, + ACTIONS(3405), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6460), 1, + sym_identifier, + ACTIONS(6466), 1, + sym__newline, + ACTIONS(6468), 1, + anon_sym_LPAREN, + ACTIONS(6470), 1, + anon_sym_DOLLAR, + ACTIONS(6474), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6476), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6478), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6480), 1, + aux_sym__val_number_decimal_token4, + STATE(3427), 1, + sym__val_number_decimal, + STATE(3437), 1, + sym__val_number, + STATE(3723), 1, + aux_sym_shebang_repeat1, + STATE(3739), 1, sym_comment, - ACTIONS(6873), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6877), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6879), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6881), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6875), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6889), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(3601), 5, - anon_sym_EQ_GT, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - ACTIONS(6891), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [158221] = 14, + STATE(3777), 1, + sym_expr_parenthesized, + STATE(4209), 1, + sym_val_number, + STATE(4266), 1, + sym__expr_unary_minus, + STATE(4428), 1, + sym__binary_predicate_parenthesized, + STATE(4434), 1, + sym__predicate, + ACTIONS(6462), 2, + anon_sym_true, + anon_sym_false, + STATE(4408), 2, + sym_expr_unary, + sym_val_bool, + STATE(5097), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6464), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [153272] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6883), 1, - aux_sym_expr_binary_token13, - ACTIONS(6885), 1, - aux_sym_expr_binary_token14, - ACTIONS(6887), 1, - aux_sym_expr_binary_token15, - ACTIONS(6917), 1, - aux_sym_expr_binary_token16, - STATE(4027), 1, + STATE(3740), 1, sym_comment, - ACTIONS(6873), 2, + ACTIONS(6620), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6877), 2, + ACTIONS(6624), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6879), 2, + ACTIONS(6626), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6881), 2, + ACTIONS(6628), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(3601), 3, - anon_sym_EQ_GT, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - ACTIONS(6875), 4, + ACTIONS(6622), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6889), 4, + ACTIONS(6630), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6891), 6, + ACTIONS(6632), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [158281] = 15, + ACTIONS(4972), 7, + anon_sym_EQ_GT, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + [153324] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6883), 1, + ACTIONS(6634), 1, aux_sym_expr_binary_token13, - ACTIONS(6885), 1, + ACTIONS(6636), 1, aux_sym_expr_binary_token14, - ACTIONS(6887), 1, + ACTIONS(6638), 1, aux_sym_expr_binary_token15, - ACTIONS(6917), 1, + ACTIONS(6640), 1, aux_sym_expr_binary_token16, - ACTIONS(6919), 1, + ACTIONS(6642), 1, aux_sym_expr_binary_token17, - STATE(4028), 1, + STATE(3741), 1, sym_comment, - ACTIONS(3601), 2, + ACTIONS(4972), 2, anon_sym_EQ_GT, aux_sym_expr_binary_token18, - ACTIONS(6873), 2, + ACTIONS(6620), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6877), 2, + ACTIONS(6624), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6879), 2, + ACTIONS(6626), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6881), 2, + ACTIONS(6628), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6875), 4, + ACTIONS(6622), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6889), 4, + ACTIONS(6630), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6891), 6, + ACTIONS(6632), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [158343] = 8, + [153386] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(4029), 1, + STATE(3742), 1, sym_comment, - ACTIONS(6873), 2, + ACTIONS(6620), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6877), 2, + ACTIONS(6624), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6879), 2, + ACTIONS(6626), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6875), 4, + ACTIONS(6622), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6891), 6, + ACTIONS(6632), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(3601), 13, + ACTIONS(4972), 13, anon_sym_EQ_GT, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, @@ -369567,26 +344137,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - [158391] = 7, + [153434] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(4030), 1, + STATE(3743), 1, sym_comment, - ACTIONS(6873), 2, + ACTIONS(6620), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6877), 2, + ACTIONS(6624), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6879), 2, + ACTIONS(6626), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6875), 4, + ACTIONS(6622), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(3601), 19, + ACTIONS(4972), 19, anon_sym_EQ_GT, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, @@ -369606,96 +344176,179 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [158437] = 11, + [153480] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3744), 1, + sym_comment, + ACTIONS(5110), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5106), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_ctrl_match_token1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [153520] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6903), 1, + ACTIONS(6654), 1, aux_sym_expr_binary_token13, - STATE(4031), 1, + STATE(3745), 1, sym_comment, - ACTIONS(6893), 2, + ACTIONS(6644), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6897), 2, + ACTIONS(6648), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6899), 2, + ACTIONS(6650), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6901), 2, + ACTIONS(6652), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6895), 4, + ACTIONS(6646), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6913), 4, + ACTIONS(6656), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(3601), 6, + ACTIONS(4972), 6, aux_sym_ctrl_match_token1, aux_sym_expr_binary_token14, aux_sym_expr_binary_token15, aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - ACTIONS(6915), 6, + ACTIONS(6658), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [158491] = 7, + [153574] = 10, ACTIONS(247), 1, anon_sym_POUND, - STATE(4032), 1, + STATE(3746), 1, sym_comment, - ACTIONS(6893), 2, + ACTIONS(6644), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6897), 2, + ACTIONS(6648), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6899), 2, + ACTIONS(6650), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6895), 4, + ACTIONS(6652), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6646), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(3601), 19, + ACTIONS(6656), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6658), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(4972), 7, aux_sym_ctrl_match_token1, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, aux_sym_expr_binary_token13, aux_sym_expr_binary_token14, aux_sym_expr_binary_token15, aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, + [153626] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6654), 1, + aux_sym_expr_binary_token13, + ACTIONS(6660), 1, + aux_sym_expr_binary_token14, + STATE(3747), 1, + sym_comment, + ACTIONS(6644), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6648), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6650), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6652), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6646), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6656), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, + ACTIONS(4972), 5, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + ACTIONS(6658), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [158537] = 6, + [153682] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(4033), 1, + STATE(3748), 1, sym_comment, - STATE(5225), 1, + STATE(5035), 1, sym_redirection, - ACTIONS(6921), 8, + ACTIONS(6602), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -369704,7 +344357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(6923), 8, + ACTIONS(6604), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -369713,8 +344366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(6863), 12, - ts_builtin_sym_end, + ACTIONS(6662), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369726,58 +344378,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [158581] = 12, + anon_sym_RPAREN, + [153726] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6903), 1, + STATE(3749), 1, + sym_comment, + ACTIONS(6644), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6648), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6650), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6646), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6656), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6658), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(4972), 9, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, aux_sym_expr_binary_token13, - ACTIONS(6905), 1, aux_sym_expr_binary_token14, - STATE(4034), 1, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + [153776] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6654), 1, + aux_sym_expr_binary_token13, + ACTIONS(6660), 1, + aux_sym_expr_binary_token14, + ACTIONS(6664), 1, + aux_sym_expr_binary_token15, + STATE(3750), 1, sym_comment, - ACTIONS(6893), 2, + ACTIONS(6644), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6897), 2, + ACTIONS(6648), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6899), 2, + ACTIONS(6650), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6901), 2, + ACTIONS(6652), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6895), 4, + ACTIONS(4972), 4, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + ACTIONS(6646), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6913), 4, + ACTIONS(6656), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(3601), 5, + ACTIONS(6658), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [153834] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3751), 1, + sym_comment, + ACTIONS(6644), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6648), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6650), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6646), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6658), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(4972), 13, aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + [153882] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6654), 1, + aux_sym_expr_binary_token13, + ACTIONS(6660), 1, + aux_sym_expr_binary_token14, + ACTIONS(6664), 1, aux_sym_expr_binary_token15, + ACTIONS(6666), 1, aux_sym_expr_binary_token16, + STATE(3752), 1, + sym_comment, + ACTIONS(6644), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6648), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6650), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6652), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(4972), 3, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - ACTIONS(6915), 6, + ACTIONS(6646), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6656), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6658), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [158637] = 6, + [153942] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(4035), 1, + STATE(3753), 1, sym_comment, - STATE(5338), 1, + STATE(5056), 1, sym_redirection, - ACTIONS(6851), 8, + ACTIONS(6602), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -369786,7 +344567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(6853), 8, + ACTIONS(6604), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -369795,7 +344576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(6925), 12, + ACTIONS(6668), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369808,34 +344589,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [158681] = 8, + [153986] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(4036), 1, + STATE(3754), 1, sym_comment, - ACTIONS(6893), 2, + ACTIONS(6644), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6897), 2, + ACTIONS(6648), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6899), 2, + ACTIONS(6650), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6895), 4, + ACTIONS(6646), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6915), 6, + ACTIONS(4972), 19, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(3601), 13, - aux_sym_ctrl_match_token1, + [154032] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3755), 1, + sym_comment, + ACTIONS(6620), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(4972), 27, + anon_sym_EQ_GT, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, aux_sym_expr_binary_token13, @@ -369848,21 +344658,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - [158729] = 5, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [154072] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4037), 1, + STATE(3756), 1, sym_comment, - ACTIONS(6893), 2, + ACTIONS(6644), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6895), 4, + ACTIONS(4972), 27, + aux_sym_ctrl_match_token1, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(3601), 23, - aux_sym_ctrl_match_token1, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, aux_sym_expr_binary_token9, @@ -369885,62 +344700,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [158771] = 6, + [154112] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(4038), 1, + STATE(3757), 1, sym_comment, - STATE(5289), 1, - sym_redirection, - ACTIONS(6921), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(6923), 8, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(6849), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [158815] = 6, + ACTIONS(6620), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6622), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(4972), 23, + anon_sym_EQ_GT, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [154154] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(4039), 1, + STATE(3758), 1, sym_comment, - ACTIONS(6893), 2, + ACTIONS(6620), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6897), 2, + ACTIONS(6624), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6895), 4, + ACTIONS(6622), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(3601), 21, - aux_sym_ctrl_match_token1, + ACTIONS(4972), 21, + anon_sym_EQ_GT, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, aux_sym_expr_binary_token11, @@ -369961,14 +344775,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [158859] = 6, + [154198] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(4040), 1, + STATE(3759), 1, sym_comment, - STATE(5291), 1, + ACTIONS(6620), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6624), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6626), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6622), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6630), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6632), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(4972), 9, + anon_sym_EQ_GT, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + [154248] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3760), 1, + sym_comment, + STATE(4965), 1, sym_redirection, - ACTIONS(6851), 8, + ACTIONS(6670), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -369977,7 +344832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(6853), 8, + ACTIONS(6672), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -369986,7 +344841,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(6927), 12, + ACTIONS(6600), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369998,209 +344854,326 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [158903] = 4, + [154292] = 15, ACTIONS(247), 1, anon_sym_POUND, - STATE(4041), 1, + ACTIONS(6654), 1, + aux_sym_expr_binary_token13, + ACTIONS(6660), 1, + aux_sym_expr_binary_token14, + ACTIONS(6664), 1, + aux_sym_expr_binary_token15, + ACTIONS(6666), 1, + aux_sym_expr_binary_token16, + ACTIONS(6674), 1, + aux_sym_expr_binary_token17, + STATE(3761), 1, sym_comment, - ACTIONS(5231), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5227), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(4972), 2, aux_sym_ctrl_match_token1, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [158943] = 10, + aux_sym_expr_binary_token18, + ACTIONS(6644), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6648), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6650), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6652), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6646), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6656), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6658), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [154354] = 11, ACTIONS(247), 1, anon_sym_POUND, - STATE(4042), 1, + ACTIONS(6634), 1, + aux_sym_expr_binary_token13, + STATE(3762), 1, sym_comment, - ACTIONS(6893), 2, + ACTIONS(6620), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6897), 2, + ACTIONS(6624), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6899), 2, + ACTIONS(6626), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6901), 2, + ACTIONS(6628), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6895), 4, + ACTIONS(6622), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6913), 4, + ACTIONS(6630), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6915), 6, + ACTIONS(4972), 6, + anon_sym_EQ_GT, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + ACTIONS(6632), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(3601), 7, - aux_sym_ctrl_match_token1, + [154408] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6634), 1, aux_sym_expr_binary_token13, + ACTIONS(6636), 1, aux_sym_expr_binary_token14, + STATE(3763), 1, + sym_comment, + ACTIONS(6620), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6624), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6626), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6628), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6622), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6630), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(4972), 5, + anon_sym_EQ_GT, aux_sym_expr_binary_token15, aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - [158995] = 13, + ACTIONS(6632), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [154464] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6903), 1, + ACTIONS(6634), 1, aux_sym_expr_binary_token13, - ACTIONS(6905), 1, + ACTIONS(6636), 1, aux_sym_expr_binary_token14, - ACTIONS(6907), 1, + ACTIONS(6638), 1, aux_sym_expr_binary_token15, - STATE(4043), 1, + STATE(3764), 1, sym_comment, - ACTIONS(6893), 2, + ACTIONS(6620), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6897), 2, + ACTIONS(6624), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6899), 2, + ACTIONS(6626), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6901), 2, + ACTIONS(6628), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(3601), 4, - aux_sym_ctrl_match_token1, + ACTIONS(4972), 4, + anon_sym_EQ_GT, aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - ACTIONS(6895), 4, + ACTIONS(6622), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6913), 4, + ACTIONS(6630), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6915), 6, + ACTIONS(6632), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [159053] = 14, + [154522] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6903), 1, + ACTIONS(6634), 1, aux_sym_expr_binary_token13, - ACTIONS(6905), 1, + ACTIONS(6636), 1, aux_sym_expr_binary_token14, - ACTIONS(6907), 1, + ACTIONS(6638), 1, aux_sym_expr_binary_token15, - ACTIONS(6909), 1, + ACTIONS(6640), 1, aux_sym_expr_binary_token16, - STATE(4044), 1, + STATE(3765), 1, sym_comment, - ACTIONS(6893), 2, + ACTIONS(6620), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6897), 2, + ACTIONS(6624), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6899), 2, + ACTIONS(6626), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6901), 2, + ACTIONS(6628), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(3601), 3, - aux_sym_ctrl_match_token1, + ACTIONS(4972), 3, + anon_sym_EQ_GT, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - ACTIONS(6895), 4, + ACTIONS(6622), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6913), 4, + ACTIONS(6630), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6915), 6, + ACTIONS(6632), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [159113] = 9, + [154582] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(4045), 1, + STATE(3766), 1, + sym_comment, + STATE(4992), 1, + sym_redirection, + ACTIONS(6670), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(6672), 8, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(6608), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [154626] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3767), 1, sym_comment, - ACTIONS(6893), 2, + ACTIONS(6644), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6897), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6899), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6895), 4, + ACTIONS(6646), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6913), 4, + ACTIONS(4972), 23, + aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6915), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(3601), 9, + [154668] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3768), 1, + sym_comment, + ACTIONS(6644), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6648), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6646), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(4972), 21, aux_sym_ctrl_match_token1, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, aux_sym_expr_binary_token13, @@ -370209,150 +345182,130 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - [159163] = 23, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [154712] = 23, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3519), 1, + ACTIONS(3405), 1, aux_sym_cmd_identifier_token39, - ACTIONS(3555), 1, + ACTIONS(3435), 1, anon_sym_DASH, - ACTIONS(3561), 1, + ACTIONS(3441), 1, aux_sym_expr_unary_token1, - ACTIONS(6691), 1, + ACTIONS(6460), 1, sym_identifier, - ACTIONS(6701), 1, + ACTIONS(6470), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6474), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6476), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6709), 1, + ACTIONS(6478), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6711), 1, + ACTIONS(6480), 1, aux_sym__val_number_decimal_token4, - ACTIONS(6857), 1, + ACTIONS(6596), 1, anon_sym_LPAREN, - STATE(3712), 1, + STATE(3427), 1, sym__val_number_decimal, - STATE(3713), 1, + STATE(3437), 1, sym__val_number, - STATE(4046), 1, + STATE(3769), 1, sym_comment, - STATE(4074), 1, + STATE(3796), 1, sym_expr_parenthesized, - STATE(4481), 1, + STATE(4209), 1, sym_val_number, - STATE(4742), 1, + STATE(4513), 1, sym__binary_predicate, - STATE(4753), 1, + STATE(4514), 1, sym__predicate, - STATE(4797), 1, + STATE(4560), 1, sym__expr_unary_minus, - ACTIONS(6855), 2, + ACTIONS(6594), 2, anon_sym_true, anon_sym_false, - STATE(4771), 2, + STATE(4496), 2, sym_expr_unary, sym_val_bool, - STATE(5350), 2, + STATE(5093), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6695), 5, + ACTIONS(6464), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [159240] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4047), 1, - sym_comment, - ACTIONS(6931), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6937), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6933), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6935), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6929), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [159285] = 15, + [154789] = 23, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6883), 1, - aux_sym_expr_binary_token13, - ACTIONS(6885), 1, - aux_sym_expr_binary_token14, - ACTIONS(6887), 1, - aux_sym_expr_binary_token15, - ACTIONS(6917), 1, - aux_sym_expr_binary_token16, - ACTIONS(6919), 1, - aux_sym_expr_binary_token17, - ACTIONS(6939), 1, - aux_sym_expr_binary_token18, - STATE(4048), 1, + ACTIONS(3405), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(3435), 1, + anon_sym_DASH, + ACTIONS(3441), 1, + aux_sym_expr_unary_token1, + ACTIONS(6460), 1, + sym_identifier, + ACTIONS(6470), 1, + anon_sym_DOLLAR, + ACTIONS(6474), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6476), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6478), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6480), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(6596), 1, + anon_sym_LPAREN, + STATE(3427), 1, + sym__val_number_decimal, + STATE(3437), 1, + sym__val_number, + STATE(3770), 1, sym_comment, - ACTIONS(6873), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6877), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6879), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6881), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6875), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6889), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6891), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [159346] = 4, + STATE(3796), 1, + sym_expr_parenthesized, + STATE(4209), 1, + sym_val_number, + STATE(4515), 1, + sym__binary_predicate, + STATE(4537), 1, + sym__predicate, + STATE(4560), 1, + sym__expr_unary_minus, + ACTIONS(6594), 2, + anon_sym_true, + anon_sym_false, + STATE(4496), 2, + sym_expr_unary, + sym_val_bool, + STATE(5093), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6464), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [154866] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4049), 1, + STATE(3771), 1, sym_comment, - ACTIONS(2085), 8, + ACTIONS(4818), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -370361,7 +345314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2087), 20, + ACTIONS(4816), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -370382,58 +345335,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [159385] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6801), 1, - aux_sym_expr_binary_token13, - ACTIONS(6803), 1, - aux_sym_expr_binary_token14, - ACTIONS(6805), 1, - aux_sym_expr_binary_token15, - ACTIONS(6807), 1, - aux_sym_expr_binary_token16, - ACTIONS(6809), 1, - aux_sym_expr_binary_token17, - ACTIONS(6941), 1, - aux_sym_expr_binary_token18, - STATE(4050), 1, - sym_comment, - ACTIONS(6787), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6791), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6793), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6799), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6789), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6795), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6797), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [159446] = 4, + [154905] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4051), 1, + STATE(3772), 1, sym_comment, - ACTIONS(1690), 8, + ACTIONS(2160), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -370442,7 +345349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1698), 20, + ACTIONS(2162), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -370463,12 +345370,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [159485] = 4, + [154944] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4052), 1, + STATE(3773), 1, sym_comment, - ACTIONS(2117), 8, + ACTIONS(1796), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -370477,7 +345384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2121), 20, + ACTIONS(1804), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -370498,276 +345405,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [159524] = 23, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3519), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3555), 1, - anon_sym_DASH, - ACTIONS(3561), 1, - aux_sym_expr_unary_token1, - ACTIONS(6691), 1, - sym_identifier, - ACTIONS(6701), 1, - anon_sym_DOLLAR, - ACTIONS(6705), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6709), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6711), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(6857), 1, - anon_sym_LPAREN, - STATE(3712), 1, - sym__val_number_decimal, - STATE(3713), 1, - sym__val_number, - STATE(4053), 1, - sym_comment, - STATE(4074), 1, - sym_expr_parenthesized, - STATE(4481), 1, - sym_val_number, - STATE(4740), 1, - sym__binary_predicate, - STATE(4741), 1, - sym__predicate, - STATE(4797), 1, - sym__expr_unary_minus, - ACTIONS(6855), 2, - anon_sym_true, - anon_sym_false, - STATE(4771), 2, - sym_expr_unary, - sym_val_bool, - STATE(5350), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6695), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [159601] = 23, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3501), 1, - anon_sym_DASH, - ACTIONS(3507), 1, - aux_sym_expr_unary_token1, - ACTIONS(3519), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6691), 1, - sym_identifier, - ACTIONS(6699), 1, - anon_sym_LPAREN, - ACTIONS(6701), 1, - anon_sym_DOLLAR, - ACTIONS(6705), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6709), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6711), 1, - aux_sym__val_number_decimal_token4, - STATE(3712), 1, - sym__val_number_decimal, - STATE(3713), 1, - sym__val_number, - STATE(4047), 1, - sym_expr_parenthesized, - STATE(4054), 1, - sym_comment, - STATE(4481), 1, - sym_val_number, - STATE(4594), 1, - sym__binary_predicate, - STATE(4616), 1, - sym__predicate, - STATE(4680), 1, - sym__expr_unary_minus, - ACTIONS(6693), 2, - anon_sym_true, - anon_sym_false, - STATE(4642), 2, - sym_expr_unary, - sym_val_bool, - STATE(5304), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6695), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [159678] = 15, + [154983] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6825), 1, + ACTIONS(5271), 1, aux_sym_expr_binary_token13, - ACTIONS(6827), 1, + ACTIONS(5273), 1, aux_sym_expr_binary_token14, - ACTIONS(6829), 1, + ACTIONS(5275), 1, aux_sym_expr_binary_token15, - ACTIONS(6831), 1, + ACTIONS(5277), 1, aux_sym_expr_binary_token16, - ACTIONS(6833), 1, + ACTIONS(5279), 1, aux_sym_expr_binary_token17, - ACTIONS(6943), 1, + ACTIONS(6676), 1, aux_sym_expr_binary_token18, - STATE(4055), 1, + STATE(3774), 1, sym_comment, - ACTIONS(6811), 2, + ACTIONS(5257), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6815), 2, + ACTIONS(5261), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6817), 2, + ACTIONS(5263), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6823), 2, + ACTIONS(5269), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6813), 4, + ACTIONS(5259), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6819), 4, + ACTIONS(5265), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6821), 6, + ACTIONS(5267), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [159739] = 15, + [155044] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3623), 1, + STATE(3775), 1, + sym_comment, + ACTIONS(2218), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2222), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [155083] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6654), 1, aux_sym_expr_binary_token13, - ACTIONS(3625), 1, + ACTIONS(6660), 1, aux_sym_expr_binary_token14, - ACTIONS(3627), 1, + ACTIONS(6664), 1, aux_sym_expr_binary_token15, - ACTIONS(3629), 1, + ACTIONS(6666), 1, aux_sym_expr_binary_token16, - ACTIONS(3631), 1, + ACTIONS(6674), 1, aux_sym_expr_binary_token17, - ACTIONS(6945), 1, + ACTIONS(6678), 1, aux_sym_expr_binary_token18, - STATE(4056), 1, + STATE(3776), 1, sym_comment, - ACTIONS(3609), 2, + ACTIONS(6644), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(3613), 2, + ACTIONS(6648), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(3615), 2, + ACTIONS(6650), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(3621), 2, + ACTIONS(6652), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(3611), 4, + ACTIONS(6646), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(3617), 4, + ACTIONS(6656), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(3619), 6, + ACTIONS(6658), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [159800] = 23, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3501), 1, - anon_sym_DASH, - ACTIONS(3507), 1, - aux_sym_expr_unary_token1, - ACTIONS(3519), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6691), 1, - sym_identifier, - ACTIONS(6699), 1, - anon_sym_LPAREN, - ACTIONS(6701), 1, - anon_sym_DOLLAR, - ACTIONS(6705), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6709), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6711), 1, - aux_sym__val_number_decimal_token4, - STATE(3712), 1, - sym__val_number_decimal, - STATE(3713), 1, - sym__val_number, - STATE(4047), 1, - sym_expr_parenthesized, - STATE(4057), 1, - sym_comment, - STATE(4481), 1, - sym_val_number, - STATE(4628), 1, - sym__binary_predicate, - STATE(4645), 1, - sym__predicate, - STATE(4680), 1, - sym__expr_unary_minus, - ACTIONS(6693), 2, - anon_sym_true, - anon_sym_false, - STATE(4642), 2, - sym_expr_unary, - sym_val_bool, - STATE(5304), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6695), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [159877] = 4, + [155144] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(4058), 1, + STATE(3777), 1, sym_comment, - ACTIONS(2123), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2127), 20, - ts_builtin_sym_end, + ACTIONS(6682), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6688), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6684), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6686), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6680), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370779,563 +345565,714 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [159916] = 23, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [155189] = 23, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3501), 1, + ACTIONS(3387), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3393), 1, aux_sym_expr_unary_token1, - ACTIONS(3519), 1, + ACTIONS(3405), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6691), 1, + ACTIONS(6460), 1, sym_identifier, - ACTIONS(6699), 1, + ACTIONS(6468), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6470), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6474), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6476), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6709), 1, + ACTIONS(6478), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6711), 1, + ACTIONS(6480), 1, aux_sym__val_number_decimal_token4, - STATE(3712), 1, + STATE(3427), 1, sym__val_number_decimal, - STATE(3713), 1, + STATE(3437), 1, sym__val_number, - STATE(4047), 1, + STATE(3777), 1, sym_expr_parenthesized, - STATE(4059), 1, + STATE(3778), 1, sym_comment, - STATE(4481), 1, + STATE(4209), 1, sym_val_number, - STATE(4655), 1, + STATE(4259), 1, sym__binary_predicate, - STATE(4670), 1, + STATE(4260), 1, sym__predicate, - STATE(4680), 1, + STATE(4266), 1, sym__expr_unary_minus, - ACTIONS(6693), 2, + ACTIONS(6462), 2, anon_sym_true, anon_sym_false, - STATE(4642), 2, + STATE(4408), 2, sym_expr_unary, sym_val_bool, - STATE(5304), 2, + STATE(5097), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6695), 5, + ACTIONS(6464), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [159993] = 23, + [155266] = 23, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3501), 1, + ACTIONS(3387), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3393), 1, aux_sym_expr_unary_token1, - ACTIONS(3519), 1, + ACTIONS(3405), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6691), 1, + ACTIONS(6460), 1, sym_identifier, - ACTIONS(6699), 1, + ACTIONS(6468), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6470), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6474), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6476), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6709), 1, + ACTIONS(6478), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6711), 1, + ACTIONS(6480), 1, aux_sym__val_number_decimal_token4, - STATE(3712), 1, + STATE(3427), 1, sym__val_number_decimal, - STATE(3713), 1, + STATE(3437), 1, sym__val_number, - STATE(4047), 1, + STATE(3777), 1, sym_expr_parenthesized, - STATE(4060), 1, + STATE(3779), 1, sym_comment, - STATE(4481), 1, + STATE(4209), 1, sym_val_number, - STATE(4680), 1, - sym__expr_unary_minus, - STATE(4690), 1, + STATE(4264), 1, sym__binary_predicate, - STATE(4692), 1, + STATE(4266), 1, + sym__expr_unary_minus, + STATE(4269), 1, sym__predicate, - ACTIONS(6693), 2, + ACTIONS(6462), 2, anon_sym_true, anon_sym_false, - STATE(4642), 2, + STATE(4408), 2, sym_expr_unary, sym_val_bool, - STATE(5304), 2, + STATE(5097), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6695), 5, + ACTIONS(6464), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [160070] = 23, + [155343] = 23, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3501), 1, + ACTIONS(3387), 1, anon_sym_DASH, - ACTIONS(3507), 1, + ACTIONS(3393), 1, aux_sym_expr_unary_token1, - ACTIONS(3519), 1, + ACTIONS(3405), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6691), 1, + ACTIONS(6460), 1, sym_identifier, - ACTIONS(6699), 1, + ACTIONS(6468), 1, anon_sym_LPAREN, - ACTIONS(6701), 1, + ACTIONS(6470), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6474), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6476), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6709), 1, + ACTIONS(6478), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6711), 1, + ACTIONS(6480), 1, aux_sym__val_number_decimal_token4, - STATE(3712), 1, + STATE(3427), 1, sym__val_number_decimal, - STATE(3713), 1, + STATE(3437), 1, sym__val_number, - STATE(4047), 1, + STATE(3777), 1, sym_expr_parenthesized, - STATE(4061), 1, + STATE(3780), 1, sym_comment, - STATE(4481), 1, + STATE(4209), 1, sym_val_number, - STATE(4577), 1, + STATE(4266), 1, + sym__expr_unary_minus, + STATE(4272), 1, sym__binary_predicate, - STATE(4592), 1, + STATE(4273), 1, sym__predicate, - STATE(4680), 1, - sym__expr_unary_minus, - ACTIONS(6693), 2, + ACTIONS(6462), 2, anon_sym_true, anon_sym_false, - STATE(4642), 2, + STATE(4408), 2, sym_expr_unary, sym_val_bool, - STATE(5304), 2, + STATE(5097), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6695), 5, + ACTIONS(6464), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [160147] = 4, + [155420] = 15, ACTIONS(247), 1, anon_sym_POUND, - STATE(4062), 1, - sym_comment, - ACTIONS(3175), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(3173), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [160186] = 23, + ACTIONS(5345), 1, + aux_sym_expr_binary_token13, + ACTIONS(5347), 1, + aux_sym_expr_binary_token14, + ACTIONS(5349), 1, + aux_sym_expr_binary_token15, + ACTIONS(5353), 1, + aux_sym_expr_binary_token16, + ACTIONS(5355), 1, + aux_sym_expr_binary_token17, + ACTIONS(6690), 1, + aux_sym_expr_binary_token18, + STATE(3781), 1, + sym_comment, + ACTIONS(5333), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5337), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5339), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5343), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(5335), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5351), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5341), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [155481] = 23, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3519), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3555), 1, + ACTIONS(3387), 1, anon_sym_DASH, - ACTIONS(3561), 1, + ACTIONS(3393), 1, aux_sym_expr_unary_token1, - ACTIONS(6691), 1, + ACTIONS(3405), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6460), 1, sym_identifier, - ACTIONS(6701), 1, + ACTIONS(6468), 1, + anon_sym_LPAREN, + ACTIONS(6470), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6474), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6476), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6709), 1, + ACTIONS(6478), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6711), 1, + ACTIONS(6480), 1, aux_sym__val_number_decimal_token4, - ACTIONS(6857), 1, - anon_sym_LPAREN, - STATE(3712), 1, + STATE(3427), 1, sym__val_number_decimal, - STATE(3713), 1, + STATE(3437), 1, sym__val_number, - STATE(4063), 1, - sym_comment, - STATE(4074), 1, + STATE(3777), 1, sym_expr_parenthesized, - STATE(4481), 1, + STATE(3782), 1, + sym_comment, + STATE(4209), 1, sym_val_number, - STATE(4732), 1, + STATE(4266), 1, + sym__expr_unary_minus, + STATE(4283), 1, sym__binary_predicate, - STATE(4735), 1, + STATE(4284), 1, sym__predicate, - STATE(4797), 1, - sym__expr_unary_minus, - ACTIONS(6855), 2, + ACTIONS(6462), 2, anon_sym_true, anon_sym_false, - STATE(4771), 2, + STATE(4408), 2, sym_expr_unary, sym_val_bool, - STATE(5350), 2, + STATE(5097), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6695), 5, + ACTIONS(6464), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [160263] = 23, + [155558] = 23, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3519), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3555), 1, + ACTIONS(3387), 1, anon_sym_DASH, - ACTIONS(3561), 1, + ACTIONS(3393), 1, aux_sym_expr_unary_token1, - ACTIONS(6691), 1, + ACTIONS(3405), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6460), 1, sym_identifier, - ACTIONS(6701), 1, + ACTIONS(6468), 1, + anon_sym_LPAREN, + ACTIONS(6470), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6474), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6476), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6709), 1, + ACTIONS(6478), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6711), 1, + ACTIONS(6480), 1, aux_sym__val_number_decimal_token4, - ACTIONS(6857), 1, - anon_sym_LPAREN, - STATE(3712), 1, + STATE(3427), 1, sym__val_number_decimal, - STATE(3713), 1, + STATE(3437), 1, sym__val_number, - STATE(4064), 1, - sym_comment, - STATE(4074), 1, + STATE(3777), 1, sym_expr_parenthesized, - STATE(4481), 1, + STATE(3783), 1, + sym_comment, + STATE(4209), 1, sym_val_number, - STATE(4729), 1, + STATE(4266), 1, + sym__expr_unary_minus, + STATE(4286), 1, sym__binary_predicate, - STATE(4731), 1, + STATE(4288), 1, sym__predicate, - STATE(4797), 1, - sym__expr_unary_minus, - ACTIONS(6855), 2, + ACTIONS(6462), 2, anon_sym_true, anon_sym_false, - STATE(4771), 2, + STATE(4408), 2, sym_expr_unary, sym_val_bool, - STATE(5350), 2, + STATE(5097), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6695), 5, + ACTIONS(6464), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [160340] = 15, + [155635] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6446), 1, + ACTIONS(6144), 1, aux_sym_expr_binary_token13, - ACTIONS(6448), 1, + ACTIONS(6146), 1, aux_sym_expr_binary_token14, - ACTIONS(6450), 1, + ACTIONS(6148), 1, aux_sym_expr_binary_token15, - ACTIONS(6452), 1, + ACTIONS(6150), 1, aux_sym_expr_binary_token16, - ACTIONS(6454), 1, + ACTIONS(6152), 1, aux_sym_expr_binary_token17, - ACTIONS(6947), 1, + ACTIONS(6692), 1, aux_sym_expr_binary_token18, - STATE(4065), 1, + STATE(3784), 1, sym_comment, - ACTIONS(6432), 2, + ACTIONS(6130), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6436), 2, + ACTIONS(6134), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6438), 2, + ACTIONS(6136), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6444), 2, + ACTIONS(6142), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6434), 4, + ACTIONS(6132), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6440), 4, + ACTIONS(6138), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6442), 6, + ACTIONS(6140), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [160401] = 15, + [155696] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5448), 1, + ACTIONS(6584), 1, aux_sym_expr_binary_token13, - ACTIONS(5450), 1, + ACTIONS(6586), 1, aux_sym_expr_binary_token14, - ACTIONS(5452), 1, + ACTIONS(6588), 1, aux_sym_expr_binary_token15, - ACTIONS(5454), 1, + ACTIONS(6590), 1, aux_sym_expr_binary_token16, - ACTIONS(5456), 1, + ACTIONS(6592), 1, aux_sym_expr_binary_token17, - ACTIONS(6949), 1, + ACTIONS(6694), 1, aux_sym_expr_binary_token18, - STATE(4066), 1, + STATE(3785), 1, sym_comment, - ACTIONS(5434), 2, + ACTIONS(6570), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(5438), 2, + ACTIONS(6574), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(5440), 2, + ACTIONS(6576), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(5446), 2, + ACTIONS(6582), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(5436), 4, + ACTIONS(6572), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(5442), 4, + ACTIONS(6578), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(5444), 6, + ACTIONS(6580), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [160462] = 15, + [155757] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6903), 1, + ACTIONS(6634), 1, aux_sym_expr_binary_token13, - ACTIONS(6905), 1, + ACTIONS(6636), 1, aux_sym_expr_binary_token14, - ACTIONS(6907), 1, + ACTIONS(6638), 1, aux_sym_expr_binary_token15, - ACTIONS(6909), 1, + ACTIONS(6640), 1, aux_sym_expr_binary_token16, - ACTIONS(6911), 1, + ACTIONS(6642), 1, aux_sym_expr_binary_token17, - ACTIONS(6951), 1, + ACTIONS(6696), 1, aux_sym_expr_binary_token18, - STATE(4067), 1, + STATE(3786), 1, sym_comment, - ACTIONS(6893), 2, + ACTIONS(6620), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6897), 2, + ACTIONS(6624), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6899), 2, + ACTIONS(6626), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6901), 2, + ACTIONS(6628), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6895), 4, + ACTIONS(6622), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6913), 4, + ACTIONS(6630), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6915), 6, + ACTIONS(6632), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [160523] = 23, + [155818] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3501), 1, - anon_sym_DASH, - ACTIONS(3507), 1, - aux_sym_expr_unary_token1, - ACTIONS(3519), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6691), 1, - sym_identifier, - ACTIONS(6699), 1, - anon_sym_LPAREN, - ACTIONS(6701), 1, - anon_sym_DOLLAR, - ACTIONS(6705), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6709), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6711), 1, - aux_sym__val_number_decimal_token4, - STATE(3712), 1, - sym__val_number_decimal, - STATE(3713), 1, - sym__val_number, - STATE(4047), 1, - sym_expr_parenthesized, - STATE(4068), 1, + STATE(3787), 1, sym_comment, - STATE(4481), 1, - sym_val_number, - STATE(4526), 1, - sym__predicate, - STATE(4680), 1, - sym__expr_unary_minus, - STATE(4702), 1, - sym__binary_predicate, - ACTIONS(6693), 2, - anon_sym_true, - anon_sym_false, - STATE(4642), 2, - sym_expr_unary, - sym_val_bool, - STATE(5304), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6695), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [160600] = 15, + ACTIONS(2224), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2228), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [155857] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5506), 1, + ACTIONS(6242), 1, aux_sym_expr_binary_token13, - ACTIONS(5508), 1, + ACTIONS(6244), 1, aux_sym_expr_binary_token14, - ACTIONS(5510), 1, + ACTIONS(6246), 1, aux_sym_expr_binary_token15, - ACTIONS(5512), 1, + ACTIONS(6248), 1, aux_sym_expr_binary_token16, - ACTIONS(5514), 1, + ACTIONS(6250), 1, aux_sym_expr_binary_token17, - ACTIONS(6953), 1, + ACTIONS(6698), 1, aux_sym_expr_binary_token18, - STATE(4069), 1, + STATE(3788), 1, sym_comment, - ACTIONS(5496), 2, + ACTIONS(6228), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(5500), 2, + ACTIONS(6232), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(5502), 2, + ACTIONS(6234), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(5504), 2, + ACTIONS(6240), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(5498), 4, + ACTIONS(6230), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(5516), 4, + ACTIONS(6236), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(5518), 6, + ACTIONS(6238), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [160661] = 4, + [155918] = 23, ACTIONS(247), 1, anon_sym_POUND, - STATE(4070), 1, + ACTIONS(3405), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(3435), 1, + anon_sym_DASH, + ACTIONS(3441), 1, + aux_sym_expr_unary_token1, + ACTIONS(6460), 1, + sym_identifier, + ACTIONS(6470), 1, + anon_sym_DOLLAR, + ACTIONS(6474), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6476), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6478), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6480), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(6596), 1, + anon_sym_LPAREN, + STATE(3427), 1, + sym__val_number_decimal, + STATE(3437), 1, + sym__val_number, + STATE(3789), 1, + sym_comment, + STATE(3796), 1, + sym_expr_parenthesized, + STATE(4209), 1, + sym_val_number, + STATE(4550), 1, + sym__binary_predicate, + STATE(4552), 1, + sym__predicate, + STATE(4560), 1, + sym__expr_unary_minus, + ACTIONS(6594), 2, + anon_sym_true, + anon_sym_false, + STATE(4496), 2, + sym_expr_unary, + sym_val_bool, + STATE(5093), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6464), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [155995] = 23, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3405), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(3435), 1, + anon_sym_DASH, + ACTIONS(3441), 1, + aux_sym_expr_unary_token1, + ACTIONS(6460), 1, + sym_identifier, + ACTIONS(6470), 1, + anon_sym_DOLLAR, + ACTIONS(6474), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6476), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6478), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6480), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(6596), 1, + anon_sym_LPAREN, + STATE(3427), 1, + sym__val_number_decimal, + STATE(3437), 1, + sym__val_number, + STATE(3790), 1, + sym_comment, + STATE(3796), 1, + sym_expr_parenthesized, + STATE(4209), 1, + sym_val_number, + STATE(4545), 1, + sym__binary_predicate, + STATE(4546), 1, + sym__predicate, + STATE(4560), 1, + sym__expr_unary_minus, + ACTIONS(6594), 2, + anon_sym_true, + anon_sym_false, + STATE(4496), 2, + sym_expr_unary, + sym_val_bool, + STATE(5093), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6464), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [156072] = 23, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3405), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(3435), 1, + anon_sym_DASH, + ACTIONS(3441), 1, + aux_sym_expr_unary_token1, + ACTIONS(6460), 1, + sym_identifier, + ACTIONS(6470), 1, + anon_sym_DOLLAR, + ACTIONS(6474), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6476), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6478), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6480), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(6596), 1, + anon_sym_LPAREN, + STATE(3427), 1, + sym__val_number_decimal, + STATE(3437), 1, + sym__val_number, + STATE(3791), 1, + sym_comment, + STATE(3796), 1, + sym_expr_parenthesized, + STATE(4209), 1, + sym_val_number, + STATE(4509), 1, + sym__binary_predicate, + STATE(4510), 1, + sym__predicate, + STATE(4560), 1, + sym__expr_unary_minus, + ACTIONS(6594), 2, + anon_sym_true, + anon_sym_false, + STATE(4496), 2, + sym_expr_unary, + sym_val_bool, + STATE(5093), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6464), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [156149] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3792), 1, sym_comment, - ACTIONS(1709), 8, + ACTIONS(1786), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -371344,7 +346281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1717), 20, + ACTIONS(1794), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -371365,182 +346302,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [160700] = 23, + [156188] = 23, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3519), 1, + ACTIONS(3405), 1, aux_sym_cmd_identifier_token39, - ACTIONS(3555), 1, + ACTIONS(3435), 1, anon_sym_DASH, - ACTIONS(3561), 1, + ACTIONS(3441), 1, aux_sym_expr_unary_token1, - ACTIONS(6691), 1, + ACTIONS(6460), 1, sym_identifier, - ACTIONS(6701), 1, + ACTIONS(6470), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6474), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6476), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6709), 1, + ACTIONS(6478), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6711), 1, + ACTIONS(6480), 1, aux_sym__val_number_decimal_token4, - ACTIONS(6857), 1, + ACTIONS(6596), 1, anon_sym_LPAREN, - STATE(3712), 1, + STATE(3427), 1, sym__val_number_decimal, - STATE(3713), 1, + STATE(3437), 1, sym__val_number, - STATE(4071), 1, + STATE(3793), 1, sym_comment, - STATE(4074), 1, + STATE(3796), 1, sym_expr_parenthesized, - STATE(4481), 1, + STATE(4209), 1, sym_val_number, - STATE(4737), 1, + STATE(4511), 1, sym__binary_predicate, - STATE(4739), 1, + STATE(4512), 1, sym__predicate, - STATE(4797), 1, + STATE(4560), 1, sym__expr_unary_minus, - ACTIONS(6855), 2, + ACTIONS(6594), 2, anon_sym_true, anon_sym_false, - STATE(4771), 2, + STATE(4496), 2, sym_expr_unary, sym_val_bool, - STATE(5350), 2, + STATE(5093), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6695), 5, + ACTIONS(6464), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [160777] = 23, + [156265] = 23, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3519), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3555), 1, + ACTIONS(3387), 1, anon_sym_DASH, - ACTIONS(3561), 1, + ACTIONS(3393), 1, aux_sym_expr_unary_token1, - ACTIONS(6691), 1, + ACTIONS(3405), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6460), 1, sym_identifier, - ACTIONS(6701), 1, + ACTIONS(6468), 1, + anon_sym_LPAREN, + ACTIONS(6470), 1, anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6474), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6707), 1, + ACTIONS(6476), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6709), 1, + ACTIONS(6478), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6711), 1, + ACTIONS(6480), 1, aux_sym__val_number_decimal_token4, - ACTIONS(6857), 1, - anon_sym_LPAREN, - STATE(3712), 1, + STATE(3427), 1, sym__val_number_decimal, - STATE(3713), 1, + STATE(3437), 1, sym__val_number, - STATE(4072), 1, - sym_comment, - STATE(4074), 1, + STATE(3777), 1, sym_expr_parenthesized, - STATE(4481), 1, + STATE(3794), 1, + sym_comment, + STATE(4209), 1, sym_val_number, - STATE(4725), 1, + STATE(4266), 1, + sym__expr_unary_minus, + STATE(4274), 1, sym__binary_predicate, - STATE(4727), 1, + STATE(4275), 1, sym__predicate, - STATE(4797), 1, - sym__expr_unary_minus, - ACTIONS(6855), 2, + ACTIONS(6462), 2, anon_sym_true, anon_sym_false, - STATE(4771), 2, + STATE(4408), 2, sym_expr_unary, sym_val_bool, - STATE(5350), 2, + STATE(5097), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6695), 5, + ACTIONS(6464), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [160854] = 15, + [156342] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6355), 1, - aux_sym_expr_binary_token13, - ACTIONS(6357), 1, - aux_sym_expr_binary_token14, - ACTIONS(6359), 1, - aux_sym_expr_binary_token15, - ACTIONS(6361), 1, - aux_sym_expr_binary_token16, - ACTIONS(6363), 1, - aux_sym_expr_binary_token17, - ACTIONS(6955), 1, - aux_sym_expr_binary_token18, - STATE(4073), 1, + ACTIONS(1495), 1, + aux_sym_unquoted_token2, + ACTIONS(6080), 1, + anon_sym_DOLLAR, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(6700), 1, + anon_sym_DOT, + ACTIONS(6704), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6706), 1, + aux_sym__immediate_decimal_token5, + STATE(3795), 1, sym_comment, - ACTIONS(6341), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6345), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6347), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6353), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6343), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6349), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6351), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [160915] = 7, + STATE(3909), 1, + sym__immediate_decimal, + ACTIONS(6702), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3332), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1493), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [156396] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(4074), 1, + STATE(3796), 1, sym_comment, - ACTIONS(6957), 2, + ACTIONS(6708), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(6963), 2, + ACTIONS(6714), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(6959), 4, + ACTIONS(6710), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(6961), 4, + ACTIONS(6712), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6929), 15, + ACTIONS(6680), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -371556,32 +346489,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [160959] = 12, + [156440] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1429), 1, + ACTIONS(1495), 1, aux_sym_unquoted_token2, - ACTIONS(6260), 1, - anon_sym_DOLLAR, - ACTIONS(6262), 1, + ACTIONS(6082), 1, anon_sym_LPAREN2, - ACTIONS(6965), 1, - anon_sym_DOT, - ACTIONS(6969), 1, + ACTIONS(6092), 1, + anon_sym_DOLLAR, + ACTIONS(6718), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6971), 1, + ACTIONS(6720), 1, aux_sym__immediate_decimal_token5, - STATE(4075), 1, + STATE(3797), 1, sym_comment, - STATE(4181), 1, + STATE(4135), 1, sym__immediate_decimal, - ACTIONS(6967), 2, + ACTIONS(6716), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3560), 2, + STATE(3369), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1427), 16, + ACTIONS(1493), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371598,32 +346529,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [161013] = 12, + [156491] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1429), 1, + ACTIONS(1495), 1, aux_sym_unquoted_token2, - ACTIONS(6557), 1, + ACTIONS(6301), 1, anon_sym_LPAREN2, - ACTIONS(6973), 1, + ACTIONS(6722), 1, anon_sym_DOLLAR, - ACTIONS(6975), 1, + ACTIONS(6724), 1, anon_sym_DOT, - ACTIONS(6979), 1, + ACTIONS(6728), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6981), 1, + ACTIONS(6730), 1, aux_sym__immediate_decimal_token5, - STATE(4076), 1, + STATE(3798), 1, sym_comment, - STATE(4249), 1, + STATE(3992), 1, sym__immediate_decimal, - ACTIONS(6977), 2, + ACTIONS(6726), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4421), 2, + STATE(4140), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1427), 15, + ACTIONS(1493), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -371639,30 +346570,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [161066] = 11, + [156544] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1429), 1, + ACTIONS(1553), 1, aux_sym_unquoted_token2, - ACTIONS(6262), 1, + ACTIONS(6082), 1, anon_sym_LPAREN2, - ACTIONS(6284), 1, + ACTIONS(6092), 1, anon_sym_DOLLAR, - ACTIONS(6985), 1, + ACTIONS(6718), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6987), 1, + ACTIONS(6720), 1, aux_sym__immediate_decimal_token5, - STATE(4077), 1, + STATE(3799), 1, sym_comment, - STATE(4321), 1, + STATE(4144), 1, sym__immediate_decimal, - ACTIONS(6983), 2, + ACTIONS(6716), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3591), 2, + STATE(3360), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1427), 16, + ACTIONS(1551), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371679,30 +346610,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [161117] = 11, + [156595] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1457), 1, + ACTIONS(1495), 1, aux_sym_unquoted_token2, - ACTIONS(6262), 1, + ACTIONS(6301), 1, anon_sym_LPAREN2, - ACTIONS(6284), 1, + ACTIONS(6732), 1, anon_sym_DOLLAR, - ACTIONS(6985), 1, + ACTIONS(6736), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6987), 1, + ACTIONS(6738), 1, aux_sym__immediate_decimal_token5, - STATE(4078), 1, + STATE(3800), 1, sym_comment, - STATE(4436), 1, + STATE(4171), 1, sym__immediate_decimal, - ACTIONS(6983), 2, + ACTIONS(6734), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4464), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1493), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [156645] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1493), 1, + sym__space, + ACTIONS(1495), 1, + aux_sym_unquoted_token2, + ACTIONS(2089), 1, + anon_sym_DOLLAR, + ACTIONS(6740), 1, + anon_sym_LPAREN2, + ACTIONS(6742), 1, + anon_sym_DOT, + ACTIONS(6744), 1, aux_sym__immediate_decimal_token1, + ACTIONS(6746), 1, aux_sym__immediate_decimal_token3, - STATE(3590), 2, + ACTIONS(6748), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6750), 1, + aux_sym__immediate_decimal_token5, + STATE(3801), 1, + sym_comment, + STATE(4013), 1, + sym__immediate_decimal, + STATE(4252), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1455), 16, + ACTIONS(1479), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [156701] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6752), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6754), 1, + aux_sym__immediate_decimal_token2, + STATE(3802), 1, + sym_comment, + ACTIONS(1517), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1519), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371719,30 +346720,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [161168] = 11, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [156741] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1429), 1, + ACTIONS(1553), 1, aux_sym_unquoted_token2, - ACTIONS(6557), 1, + ACTIONS(6301), 1, anon_sym_LPAREN2, - ACTIONS(6989), 1, + ACTIONS(6732), 1, anon_sym_DOLLAR, - ACTIONS(6993), 1, + ACTIONS(6736), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6995), 1, + ACTIONS(6738), 1, aux_sym__immediate_decimal_token5, - STATE(4079), 1, + STATE(3803), 1, sym_comment, - STATE(4501), 1, + STATE(4188), 1, sym__immediate_decimal, - ACTIONS(6991), 2, + ACTIONS(6734), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4814), 2, + STATE(4536), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1427), 15, + ACTIONS(1551), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -371758,19 +346764,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [161218] = 6, + [156791] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6997), 1, + ACTIONS(6301), 1, + anon_sym_LPAREN2, + ACTIONS(6307), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6309), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6722), 1, + anon_sym_DOLLAR, + ACTIONS(6756), 1, + anon_sym_DOT, + STATE(3804), 1, + sym_comment, + STATE(4139), 1, + sym__immediate_decimal, + ACTIONS(6305), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4138), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1515), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [156841] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6758), 1, anon_sym_DOT, - ACTIONS(6999), 1, + ACTIONS(6760), 1, aux_sym__immediate_decimal_token2, - STATE(4080), 1, + STATE(3805), 1, sym_comment, - ACTIONS(1473), 2, + ACTIONS(1497), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1475), 21, + ACTIONS(1499), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371792,30 +346837,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [161258] = 11, + [156881] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6762), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6764), 1, + aux_sym__immediate_decimal_token2, + STATE(3806), 1, + sym_comment, + ACTIONS(1517), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1519), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [156920] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6557), 1, + ACTIONS(6301), 1, anon_sym_LPAREN2, - ACTIONS(6561), 1, + ACTIONS(6307), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6563), 1, + ACTIONS(6309), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6973), 1, + ACTIONS(6732), 1, anon_sym_DOLLAR, - ACTIONS(7001), 1, - anon_sym_DOT, - STATE(4081), 1, + STATE(3807), 1, sym_comment, - STATE(4420), 1, + STATE(4525), 1, sym__immediate_decimal, - ACTIONS(6559), 2, + ACTIONS(6371), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4419), 2, + STATE(4524), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1441), 15, + ACTIONS(1623), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -371831,30 +346907,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [161308] = 11, + [156967] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1457), 1, - aux_sym_unquoted_token2, - ACTIONS(6557), 1, + ACTIONS(6301), 1, anon_sym_LPAREN2, - ACTIONS(6989), 1, - anon_sym_DOLLAR, - ACTIONS(6993), 1, + ACTIONS(6307), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6995), 1, + ACTIONS(6309), 1, aux_sym__immediate_decimal_token5, - STATE(4082), 1, + ACTIONS(6732), 1, + anon_sym_DOLLAR, + STATE(3808), 1, sym_comment, - STATE(4516), 1, + STATE(4532), 1, sym__immediate_decimal, - ACTIONS(6991), 2, + ACTIONS(6371), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4743), 2, + STATE(4529), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1455), 15, + ACTIONS(1563), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -371870,35 +346944,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [161358] = 14, - ACTIONS(3), 1, + [157014] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1427), 1, - sym__space, - ACTIONS(1429), 1, + ACTIONS(6766), 1, + anon_sym_DOT, + ACTIONS(6768), 1, + aux_sym__immediate_decimal_token2, + STATE(3809), 1, + sym_comment, + ACTIONS(1497), 2, + anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(2018), 1, - anon_sym_DOLLAR, - ACTIONS(7003), 1, + ACTIONS(1499), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_LPAREN2, - ACTIONS(7005), 1, - anon_sym_DOT, - ACTIONS(7007), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7009), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7011), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7013), 1, - aux_sym__immediate_decimal_token5, - STATE(4083), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [157053] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + aux_sym__immediate_decimal_token2, + STATE(3810), 1, sym_comment, - STATE(4308), 1, - sym__immediate_decimal, - STATE(4465), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1413), 13, + ACTIONS(1497), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1499), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371912,19 +347001,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [161414] = 6, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [157090] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7015), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7017), 1, + ACTIONS(6770), 1, aux_sym__immediate_decimal_token2, - STATE(4084), 1, + STATE(3811), 1, sym_comment, - ACTIONS(1481), 2, + ACTIONS(1565), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1483), 21, + ACTIONS(1567), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371946,22 +347041,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [161454] = 8, + [157127] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1847), 1, + ACTIONS(6301), 1, + anon_sym_LPAREN2, + ACTIONS(6307), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6309), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6732), 1, + anon_sym_DOLLAR, + STATE(3812), 1, + sym_comment, + STATE(4584), 1, + sym__immediate_decimal, + ACTIONS(6371), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4583), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1515), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [157174] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1957), 1, anon_sym_DASH, - ACTIONS(5704), 1, + ACTIONS(5637), 1, anon_sym_DOT, - STATE(2760), 1, + STATE(2590), 1, sym_path, - STATE(2761), 1, + STATE(2616), 1, aux_sym_cell_path_repeat1, - STATE(4085), 1, + STATE(3813), 1, sym_comment, - STATE(4266), 1, + STATE(3944), 1, sym_cell_path, - ACTIONS(1849), 19, + ACTIONS(1959), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [157217] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1961), 1, + anon_sym_DASH, + ACTIONS(5637), 1, + anon_sym_DOT, + STATE(2590), 1, + sym_path, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(3814), 1, + sym_comment, + STATE(3953), 1, + sym_cell_path, + ACTIONS(1963), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [157260] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1829), 1, + anon_sym_DASH, + ACTIONS(5637), 1, + anon_sym_DOT, + STATE(2590), 1, + sym_path, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(3815), 1, + sym_comment, + STATE(3959), 1, + sym_cell_path, + ACTIONS(1833), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371981,20 +347183,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [161497] = 8, + [157303] = 8, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(1835), 1, anon_sym_DASH, - ACTIONS(5704), 1, + ACTIONS(5637), 1, anon_sym_DOT, - STATE(2760), 1, + STATE(2590), 1, sym_path, - STATE(2761), 1, + STATE(2616), 1, aux_sym_cell_path_repeat1, - STATE(4086), 1, + STATE(3816), 1, sym_comment, - STATE(4273), 1, + STATE(3963), 1, sym_cell_path, ACTIONS(1837), 19, sym__newline, @@ -372016,33 +347218,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [161540] = 13, + [157346] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6301), 1, + anon_sym_LPAREN2, + ACTIONS(6307), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6309), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6732), 1, + anon_sym_DOLLAR, + STATE(3817), 1, + sym_comment, + STATE(4523), 1, + sym__immediate_decimal, + ACTIONS(6371), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4522), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1619), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [157393] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1427), 1, + ACTIONS(1515), 1, sym__space, - ACTIONS(1429), 1, - aux_sym_unquoted_token2, - ACTIONS(4449), 1, + ACTIONS(2089), 1, anon_sym_DOLLAR, - ACTIONS(7003), 1, + ACTIONS(6740), 1, anon_sym_LPAREN2, - ACTIONS(7019), 1, + ACTIONS(6744), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7021), 1, + ACTIONS(6746), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7023), 1, + ACTIONS(6748), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7025), 1, + ACTIONS(6750), 1, aux_sym__immediate_decimal_token5, - STATE(4087), 1, + ACTIONS(6772), 1, + anon_sym_DOT, + STATE(3818), 1, sym_comment, - STATE(4641), 1, + STATE(4231), 1, sym__immediate_decimal, - STATE(5002), 2, + STATE(4230), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1413), 13, + ACTIONS(1505), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372056,20 +347295,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [161593] = 6, + [157446] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7027), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7029), 1, - aux_sym__immediate_decimal_token2, - STATE(4088), 1, + ACTIONS(1843), 1, + anon_sym_DASH, + ACTIONS(5637), 1, + anon_sym_DOT, + STATE(2590), 1, + sym_path, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(3819), 1, sym_comment, - ACTIONS(1481), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1483), 20, - ts_builtin_sym_end, + STATE(3967), 1, + sym_cell_path, + ACTIONS(1845), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372081,37 +347322,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [161632] = 10, + [157489] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6557), 1, - anon_sym_LPAREN2, - ACTIONS(6561), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6563), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6989), 1, - anon_sym_DOLLAR, - STATE(4089), 1, + ACTIONS(1847), 1, + anon_sym_DASH, + ACTIONS(5637), 1, + anon_sym_DOT, + STATE(2590), 1, + sym_path, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(3820), 1, sym_comment, - STATE(4809), 1, - sym__immediate_decimal, - ACTIONS(6575), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4808), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1441), 15, - ts_builtin_sym_end, + STATE(3968), 1, + sym_cell_path, + ACTIONS(1849), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372123,25 +347357,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [161679] = 8, + [157532] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1839), 1, + ACTIONS(1851), 1, + anon_sym_DASH, + ACTIONS(5637), 1, + anon_sym_DOT, + STATE(2590), 1, + sym_path, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(3821), 1, + sym_comment, + STATE(3970), 1, + sym_cell_path, + ACTIONS(1853), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [157575] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1855), 1, anon_sym_DASH, - ACTIONS(5704), 1, + ACTIONS(5637), 1, anon_sym_DOT, - STATE(2760), 1, + STATE(2590), 1, sym_path, - STATE(2761), 1, + STATE(2616), 1, aux_sym_cell_path_repeat1, - STATE(4090), 1, + STATE(3822), 1, sym_comment, - STATE(4244), 1, + STATE(3971), 1, sym_cell_path, - ACTIONS(1841), 19, + ACTIONS(1857), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372161,22 +347435,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [161722] = 8, + [157618] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1774), 1, + ACTIONS(1859), 1, anon_sym_DASH, - ACTIONS(5704), 1, + ACTIONS(5637), 1, anon_sym_DOT, - STATE(2760), 1, + STATE(2590), 1, sym_path, - STATE(2761), 1, + STATE(2616), 1, aux_sym_cell_path_repeat1, - STATE(4091), 1, + STATE(3823), 1, sym_comment, - STATE(4265), 1, + STATE(3975), 1, sym_cell_path, - ACTIONS(1776), 19, + ACTIONS(1861), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372196,17 +347470,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [161765] = 5, + [157661] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7031), 1, - aux_sym__immediate_decimal_token2, - STATE(4092), 1, + ACTIONS(1863), 1, + anon_sym_DASH, + ACTIONS(5637), 1, + anon_sym_DOT, + STATE(2590), 1, + sym_path, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(3824), 1, sym_comment, - ACTIONS(1519), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1521), 21, + STATE(3976), 1, + sym_cell_path, + ACTIONS(1865), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372219,45 +347498,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [161802] = 14, - ACTIONS(3), 1, + [157704] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1429), 1, - aux_sym_unquoted_token2, - ACTIONS(2159), 1, - anon_sym_DOLLAR, - ACTIONS(7033), 1, - anon_sym_LPAREN2, - ACTIONS(7035), 1, + ACTIONS(1867), 1, + anon_sym_DASH, + ACTIONS(5637), 1, anon_sym_DOT, - ACTIONS(7037), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7039), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7041), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7043), 1, - aux_sym__immediate_decimal_token5, - STATE(4093), 1, + STATE(2590), 1, + sym_path, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(3825), 1, sym_comment, - STATE(4410), 1, - sym__immediate_decimal, - ACTIONS(1427), 2, - ts_builtin_sym_end, - sym__space, - STATE(4701), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1413), 11, + STATE(3978), 1, + sym_cell_path, + ACTIONS(1869), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372269,22 +347532,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [161857] = 8, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [157747] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1778), 1, + ACTIONS(1871), 1, anon_sym_DASH, - ACTIONS(5704), 1, + ACTIONS(5637), 1, anon_sym_DOT, - STATE(2760), 1, + STATE(2590), 1, sym_path, - STATE(2761), 1, + STATE(2616), 1, aux_sym_cell_path_repeat1, - STATE(4094), 1, + STATE(3826), 1, sym_comment, - STATE(4235), 1, + STATE(3979), 1, sym_cell_path, - ACTIONS(1780), 19, + ACTIONS(1873), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372304,17 +347575,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [161900] = 5, + [157790] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6999), 1, - aux_sym__immediate_decimal_token2, - STATE(4095), 1, + ACTIONS(1875), 1, + anon_sym_DASH, + ACTIONS(5637), 1, + anon_sym_DOT, + STATE(2590), 1, + sym_path, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(3827), 1, sym_comment, - ACTIONS(1473), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1475), 21, + STATE(3980), 1, + sym_cell_path, + ACTIONS(1877), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372327,31 +347603,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [161937] = 8, + [157833] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1762), 1, + ACTIONS(1969), 1, anon_sym_DASH, - ACTIONS(5704), 1, + ACTIONS(5637), 1, anon_sym_DOT, - STATE(2760), 1, + STATE(2590), 1, sym_path, - STATE(2761), 1, + STATE(2616), 1, aux_sym_cell_path_repeat1, - STATE(4096), 1, + STATE(3828), 1, sym_comment, - STATE(4257), 1, + STATE(3983), 1, sym_cell_path, - ACTIONS(1764), 19, + ACTIONS(1971), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372371,33 +347645,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [161980] = 13, - ACTIONS(3), 1, + [157876] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1455), 1, - sym__space, - ACTIONS(1457), 1, - aux_sym_unquoted_token2, - ACTIONS(4449), 1, - anon_sym_DOLLAR, - ACTIONS(7003), 1, - anon_sym_LPAREN2, - ACTIONS(7019), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7021), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7023), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7025), 1, - aux_sym__immediate_decimal_token5, - STATE(4097), 1, + ACTIONS(1890), 1, + anon_sym_DASH, + ACTIONS(5637), 1, + anon_sym_DOT, + STATE(2590), 1, + sym_path, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(3829), 1, sym_comment, - STATE(4653), 1, - sym__immediate_decimal, - STATE(4866), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1443), 13, + STATE(3985), 1, + sym_cell_path, + ACTIONS(1892), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372410,23 +347673,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, - [162033] = 8, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [157919] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1894), 1, anon_sym_DASH, - ACTIONS(5704), 1, + ACTIONS(5637), 1, anon_sym_DOT, - STATE(2760), 1, + STATE(2590), 1, sym_path, - STATE(2761), 1, + STATE(2616), 1, aux_sym_cell_path_repeat1, - STATE(4098), 1, + STATE(3830), 1, sym_comment, - STATE(4246), 1, + STATE(3986), 1, sym_cell_path, - ACTIONS(1822), 19, + ACTIONS(1896), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372446,20 +347715,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [162076] = 6, + [157962] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7045), 1, + ACTIONS(1937), 1, + anon_sym_DASH, + ACTIONS(5637), 1, anon_sym_DOT, - ACTIONS(7047), 1, - aux_sym__immediate_decimal_token2, - STATE(4099), 1, + STATE(2590), 1, + sym_path, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(3831), 1, sym_comment, - ACTIONS(1473), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1475), 20, - ts_builtin_sym_end, + STATE(3988), 1, + sym_cell_path, + ACTIONS(1939), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372471,30 +347742,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [162115] = 8, + [158005] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1770), 1, + ACTIONS(1945), 1, anon_sym_DASH, - ACTIONS(5704), 1, + ACTIONS(5637), 1, anon_sym_DOT, - STATE(2760), 1, + STATE(2590), 1, sym_path, - STATE(2761), 1, + STATE(2616), 1, aux_sym_cell_path_repeat1, - STATE(4100), 1, + STATE(3832), 1, sym_comment, - STATE(4263), 1, + STATE(3989), 1, sym_cell_path, - ACTIONS(1772), 19, + ACTIONS(1947), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372514,22 +347785,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [162158] = 8, + [158048] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1741), 1, + ACTIONS(1949), 1, anon_sym_DASH, - ACTIONS(5704), 1, + ACTIONS(5637), 1, anon_sym_DOT, - STATE(2760), 1, + STATE(2590), 1, sym_path, - STATE(2761), 1, + STATE(2616), 1, aux_sym_cell_path_repeat1, - STATE(4101), 1, + STATE(3833), 1, sym_comment, - STATE(4252), 1, + STATE(3991), 1, sym_cell_path, - ACTIONS(1745), 19, + ACTIONS(1951), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372549,33 +347820,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [162201] = 13, + [158091] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1441), 1, + ACTIONS(1493), 1, sym__space, - ACTIONS(2018), 1, + ACTIONS(1495), 1, + aux_sym_unquoted_token2, + ACTIONS(4263), 1, anon_sym_DOLLAR, - ACTIONS(7003), 1, + ACTIONS(6740), 1, anon_sym_LPAREN2, - ACTIONS(7007), 1, + ACTIONS(6774), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7009), 1, + ACTIONS(6776), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7011), 1, + ACTIONS(6778), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7013), 1, + ACTIONS(6780), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7049), 1, - anon_sym_DOT, - STATE(4102), 1, + STATE(3834), 1, sym_comment, - STATE(4463), 1, + STATE(4292), 1, sym__immediate_decimal, - STATE(4451), 2, + STATE(4719), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1431), 13, + ACTIONS(1479), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372589,22 +347860,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [162254] = 8, + [158144] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1899), 1, + ACTIONS(1965), 1, anon_sym_DASH, - ACTIONS(5704), 1, + ACTIONS(5637), 1, anon_sym_DOT, - STATE(2760), 1, + STATE(2590), 1, sym_path, - STATE(2761), 1, + STATE(2616), 1, aux_sym_cell_path_repeat1, - STATE(4103), 1, + STATE(3835), 1, sym_comment, - STATE(4261), 1, + STATE(4001), 1, sym_cell_path, - ACTIONS(1901), 19, + ACTIONS(1967), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372624,22 +347895,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [162297] = 8, + [158187] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1551), 1, + sym__space, + ACTIONS(1553), 1, + aux_sym_unquoted_token2, + ACTIONS(4263), 1, + anon_sym_DOLLAR, + ACTIONS(6740), 1, + anon_sym_LPAREN2, + ACTIONS(6774), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6776), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6778), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6780), 1, + aux_sym__immediate_decimal_token5, + STATE(3836), 1, + sym_comment, + STATE(4409), 1, + sym__immediate_decimal, + STATE(4665), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1549), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [158240] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1831), 1, - anon_sym_DASH, - ACTIONS(5704), 1, - anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(4104), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + ACTIONS(6782), 1, + anon_sym_DOT_DOT2, + ACTIONS(6786), 1, + sym_filesize_unit, + ACTIONS(6788), 1, + sym_duration_unit, + ACTIONS(6790), 1, + aux_sym_unquoted_token2, + STATE(3837), 1, sym_comment, - STATE(4220), 1, - sym_cell_path, - ACTIONS(1833), 19, + STATE(7339), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6784), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1587), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372652,36 +347968,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [162340] = 10, - ACTIONS(247), 1, + [158287] = 14, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6557), 1, + ACTIONS(1495), 1, + aux_sym_unquoted_token2, + ACTIONS(2174), 1, + anon_sym_DOLLAR, + ACTIONS(6792), 1, anon_sym_LPAREN2, - ACTIONS(6561), 1, + ACTIONS(6794), 1, + anon_sym_DOT, + ACTIONS(6796), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6798), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6800), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6563), 1, + ACTIONS(6802), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6989), 1, - anon_sym_DOLLAR, - STATE(4105), 1, + STATE(3838), 1, sym_comment, - STATE(4726), 1, + STATE(4087), 1, sym__immediate_decimal, - ACTIONS(6575), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4719), 2, + ACTIONS(1493), 2, + ts_builtin_sym_end, + sym__space, + STATE(4416), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1553), 15, - ts_builtin_sym_end, + ACTIONS(1479), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372693,25 +348013,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [162387] = 8, + [158342] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1871), 1, + ACTIONS(1879), 1, anon_sym_DASH, - ACTIONS(5704), 1, + ACTIONS(5637), 1, anon_sym_DOT, - STATE(2760), 1, + STATE(2590), 1, sym_path, - STATE(2761), 1, + STATE(2616), 1, aux_sym_cell_path_repeat1, - STATE(4106), 1, + STATE(3839), 1, sym_comment, - STATE(4267), 1, + STATE(3974), 1, sym_cell_path, - ACTIONS(1873), 19, + ACTIONS(1881), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372731,22 +348048,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [162430] = 8, + [158385] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1875), 1, + ACTIONS(1839), 1, anon_sym_DASH, - ACTIONS(5704), 1, + ACTIONS(5637), 1, anon_sym_DOT, - STATE(2760), 1, + STATE(2590), 1, sym_path, - STATE(2761), 1, + STATE(2616), 1, aux_sym_cell_path_repeat1, - STATE(4107), 1, + STATE(3840), 1, sym_comment, - STATE(4268), 1, + STATE(3965), 1, sym_cell_path, - ACTIONS(1877), 19, + ACTIONS(1841), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372766,29 +348083,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [162473] = 10, - ACTIONS(247), 1, + [158428] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6557), 1, + ACTIONS(2174), 1, + anon_sym_DOLLAR, + ACTIONS(6792), 1, anon_sym_LPAREN2, - ACTIONS(6561), 1, + ACTIONS(6796), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6798), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6800), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6563), 1, + ACTIONS(6802), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6989), 1, - anon_sym_DOLLAR, - STATE(4108), 1, + ACTIONS(6804), 1, + anon_sym_DOT, + STATE(3841), 1, sym_comment, - STATE(4730), 1, + STATE(4277), 1, sym__immediate_decimal, - ACTIONS(6575), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4728), 2, + ACTIONS(1515), 2, + ts_builtin_sym_end, + sym__space, + STATE(4276), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1557), 15, - ts_builtin_sym_end, + ACTIONS(1505), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372800,32 +348122,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [162520] = 10, - ACTIONS(247), 1, + [158480] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6557), 1, + ACTIONS(1623), 1, + sym__space, + ACTIONS(4263), 1, + anon_sym_DOLLAR, + ACTIONS(6740), 1, anon_sym_LPAREN2, - ACTIONS(6561), 1, + ACTIONS(6748), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6563), 1, + ACTIONS(6750), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6989), 1, - anon_sym_DOLLAR, - STATE(4109), 1, - sym_comment, - STATE(4734), 1, - sym__immediate_decimal, - ACTIONS(6575), 2, + ACTIONS(6806), 1, aux_sym__immediate_decimal_token1, + ACTIONS(6808), 1, aux_sym__immediate_decimal_token3, - STATE(4733), 2, + STATE(3842), 1, + sym_comment, + STATE(4655), 1, + sym__immediate_decimal, + STATE(4653), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1509), 15, - ts_builtin_sym_end, + ACTIONS(1621), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372837,30 +348158,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [162567] = 10, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [158530] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - ACTIONS(7051), 1, - anon_sym_DOT_DOT2, - ACTIONS(7055), 1, - sym_filesize_unit, - ACTIONS(7057), 1, - sym_duration_unit, - ACTIONS(7059), 1, + ACTIONS(1553), 1, aux_sym_unquoted_token2, - STATE(4110), 1, + ACTIONS(4227), 1, + anon_sym_DOLLAR, + ACTIONS(6792), 1, + anon_sym_LPAREN2, + ACTIONS(6810), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6812), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6814), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6816), 1, + aux_sym__immediate_decimal_token5, + STATE(3843), 1, sym_comment, - STATE(7585), 1, + STATE(4520), 1, + sym__immediate_decimal, + ACTIONS(1551), 2, + ts_builtin_sym_end, + sym__space, + STATE(4819), 2, sym__expr_parenthesized_immediate, - ACTIONS(7053), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1537), 16, + sym_val_variable, + ACTIONS(1549), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372872,27 +348199,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [162614] = 8, - ACTIONS(247), 1, + [158582] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1879), 1, - anon_sym_DASH, - ACTIONS(5704), 1, - anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(4111), 1, + ACTIONS(1563), 1, + sym__space, + ACTIONS(4263), 1, + anon_sym_DOLLAR, + ACTIONS(6740), 1, + anon_sym_LPAREN2, + ACTIONS(6748), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6750), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6806), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6808), 1, + aux_sym__immediate_decimal_token3, + STATE(3844), 1, sym_comment, - STATE(4269), 1, - sym_cell_path, - ACTIONS(1881), 19, + STATE(4663), 1, + sym__immediate_decimal, + STATE(4662), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1561), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372905,29 +348236,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [162657] = 8, + [158632] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1883), 1, - anon_sym_DASH, - ACTIONS(5704), 1, - anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(4112), 1, + STATE(3845), 1, sym_comment, - STATE(4270), 1, - sym_cell_path, - ACTIONS(1885), 19, + ACTIONS(1497), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1499), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372940,29 +348258,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [162700] = 8, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [158666] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1891), 1, - anon_sym_DASH, - ACTIONS(5704), 1, - anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(4113), 1, + STATE(3846), 1, sym_comment, - STATE(4271), 1, - sym_cell_path, - ACTIONS(1893), 19, + ACTIONS(1639), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1641), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372975,29 +348288,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [162743] = 8, - ACTIONS(247), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [158700] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1895), 1, - anon_sym_DASH, - ACTIONS(5704), 1, - anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(4114), 1, + ACTIONS(1515), 1, + sym__space, + ACTIONS(4263), 1, + anon_sym_DOLLAR, + ACTIONS(6740), 1, + anon_sym_LPAREN2, + ACTIONS(6748), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6750), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6806), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6808), 1, + aux_sym__immediate_decimal_token3, + STATE(3847), 1, sym_comment, - STATE(4272), 1, - sym_cell_path, - ACTIONS(1897), 19, + STATE(4715), 1, + sym__immediate_decimal, + STATE(4713), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1505), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373010,29 +348334,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [162786] = 8, + [158750] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1747), 1, - anon_sym_DASH, - ACTIONS(5704), 1, + ACTIONS(6818), 1, anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(4115), 1, + ACTIONS(6820), 1, + aux_sym__immediate_decimal_token2, + STATE(3848), 1, sym_comment, - STATE(4207), 1, - sym_cell_path, - ACTIONS(1749), 19, + ACTIONS(1643), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1645), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373045,29 +348360,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [162829] = 8, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [158788] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1824), 1, - anon_sym_DASH, - ACTIONS(5704), 1, - anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(4116), 1, + STATE(3849), 1, sym_comment, - STATE(4212), 1, - sym_cell_path, - ACTIONS(1826), 19, + ACTIONS(1517), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1519), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373080,29 +348388,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [162872] = 8, - ACTIONS(247), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [158822] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1855), 1, - anon_sym_DASH, - ACTIONS(5704), 1, + ACTIONS(6822), 1, anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(4117), 1, + ACTIONS(6824), 1, + aux_sym__immediate_decimal_token2, + STATE(3850), 1, sym_comment, - STATE(4242), 1, - sym_cell_path, - ACTIONS(1857), 19, + ACTIONS(1499), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1497), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373115,29 +348426,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [162915] = 8, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [158860] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_DASH, - ACTIONS(5704), 1, - anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(4118), 1, + ACTIONS(6768), 1, + aux_sym__immediate_decimal_token2, + STATE(3851), 1, sym_comment, - STATE(4245), 1, - sym_cell_path, - ACTIONS(1798), 19, + ACTIONS(1497), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1499), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373149,30 +348452,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [162958] = 8, - ACTIONS(247), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [158896] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1808), 1, - anon_sym_DASH, - ACTIONS(5704), 1, - anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(4119), 1, + ACTIONS(1495), 1, + aux_sym_unquoted_token2, + ACTIONS(4227), 1, + anon_sym_DOLLAR, + ACTIONS(6792), 1, + anon_sym_LPAREN2, + ACTIONS(6810), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6812), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6814), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6816), 1, + aux_sym__immediate_decimal_token5, + STATE(3852), 1, sym_comment, - STATE(4251), 1, - sym_cell_path, - ACTIONS(1810), 19, + STATE(4470), 1, + sym__immediate_decimal, + ACTIONS(1493), 2, + ts_builtin_sym_end, + sym__space, + STATE(4946), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1479), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373184,27 +348499,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [163001] = 6, + [158948] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7061), 1, - anon_sym_DOT, - ACTIONS(7063), 1, - aux_sym__immediate_decimal_token2, - STATE(4120), 1, + STATE(3853), 1, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1565), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1591), 19, + ACTIONS(1567), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373224,22 +348527,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [163039] = 8, - ACTIONS(247), 1, + sym_filesize_unit, + sym_duration_unit, + [158982] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1599), 1, - anon_sym_DOT_DOT2, - ACTIONS(6310), 1, - anon_sym_DOT, - STATE(3342), 1, - aux_sym_cell_path_repeat1, - STATE(3383), 1, - sym_path, - STATE(3879), 1, - sym_cell_path, - STATE(4121), 1, + ACTIONS(1619), 1, + sym__space, + ACTIONS(4263), 1, + anon_sym_DOLLAR, + ACTIONS(6740), 1, + anon_sym_LPAREN2, + ACTIONS(6748), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6750), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6806), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6808), 1, + aux_sym__immediate_decimal_token3, + STATE(3854), 1, sym_comment, - ACTIONS(1603), 18, + STATE(4651), 1, + sym__immediate_decimal, + STATE(4643), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1617), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373253,24 +348567,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [163081] = 6, + [159032] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7065), 1, + ACTIONS(6826), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7067), 1, + ACTIONS(6828), 1, aux_sym__immediate_decimal_token2, - STATE(4122), 1, + STATE(3855), 1, sym_comment, - ACTIONS(1569), 2, + ACTIONS(1631), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1571), 19, + ACTIONS(1633), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373290,15 +348599,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [163119] = 4, + [159070] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(4123), 1, + ACTIONS(6830), 1, + aux_sym__immediate_decimal_token2, + STATE(3856), 1, sym_comment, - ACTIONS(1473), 2, + ACTIONS(1565), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1475), 21, + ACTIONS(1567), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373310,8 +348622,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -373320,23 +348630,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [163153] = 6, + [159106] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7069), 1, + ACTIONS(6832), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7071), 1, + ACTIONS(6834), 1, aux_sym__immediate_decimal_token2, - STATE(4124), 1, + STATE(3857), 1, sym_comment, - ACTIONS(1483), 6, + ACTIONS(1519), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1481), 15, + ACTIONS(1517), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373352,34 +348662,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [163191] = 13, - ACTIONS(3), 1, + [159144] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1429), 1, - aux_sym_unquoted_token2, - ACTIONS(4413), 1, - anon_sym_DOLLAR, - ACTIONS(7033), 1, - anon_sym_LPAREN2, - ACTIONS(7073), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7075), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7077), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7079), 1, - aux_sym__immediate_decimal_token5, - STATE(4125), 1, + ACTIONS(1625), 1, + anon_sym_DOT_DOT2, + ACTIONS(6099), 1, + anon_sym_DOT, + STATE(3086), 1, + aux_sym_cell_path_repeat1, + STATE(3122), 1, + sym_path, + STATE(3543), 1, + sym_cell_path, + STATE(3858), 1, sym_comment, - STATE(4752), 1, - sym__immediate_decimal, - ACTIONS(1427), 2, - ts_builtin_sym_end, - sym__space, - STATE(5107), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1413), 11, + ACTIONS(1629), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373391,18 +348689,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [163243] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [159186] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7081), 1, - aux_sym__immediate_decimal_token2, - STATE(4126), 1, - sym_comment, - ACTIONS(1519), 2, + ACTIONS(1686), 1, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1521), 20, - ts_builtin_sym_end, + ACTIONS(6099), 1, + anon_sym_DOT, + STATE(3086), 1, + aux_sym_cell_path_repeat1, + STATE(3122), 1, + sym_path, + STATE(3541), 1, + sym_cell_path, + STATE(3859), 1, + sym_comment, + ACTIONS(1688), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373414,35 +348723,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [163279] = 10, + [159228] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - ACTIONS(7083), 1, + ACTIONS(6836), 1, anon_sym_DOT_DOT2, - ACTIONS(7087), 1, + ACTIONS(6840), 1, sym_filesize_unit, - ACTIONS(7089), 1, + ACTIONS(6842), 1, sym_duration_unit, - ACTIONS(7091), 1, + ACTIONS(6844), 1, aux_sym_unquoted_token2, - STATE(4127), 1, + STATE(3860), 1, sym_comment, - STATE(7719), 1, + STATE(7371), 1, sym__expr_parenthesized_immediate, - ACTIONS(7085), 2, + ACTIONS(6838), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1537), 15, + ACTIONS(1587), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -373458,54 +348766,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163325] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1457), 1, - aux_sym_unquoted_token2, - ACTIONS(4413), 1, - anon_sym_DOLLAR, - ACTIONS(7033), 1, - anon_sym_LPAREN2, - ACTIONS(7073), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7075), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7077), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7079), 1, - aux_sym__immediate_decimal_token5, - STATE(4128), 1, - sym_comment, - STATE(4778), 1, - sym__immediate_decimal, - ACTIONS(1455), 2, - ts_builtin_sym_end, - sym__space, - STATE(5134), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1443), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [163377] = 4, + [159274] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(4129), 1, + ACTIONS(1863), 1, + anon_sym_DASH, + ACTIONS(6453), 1, + anon_sym_DOT, + STATE(3483), 1, + aux_sym_cell_path_repeat1, + STATE(3546), 1, + sym_path, + STATE(3861), 1, sym_comment, - ACTIONS(1481), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1483), 21, + STATE(4115), 1, + sym_cell_path, + ACTIONS(1865), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373517,104 +348794,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [163411] = 13, - ACTIONS(3), 1, + [159315] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2159), 1, + ACTIONS(1495), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(6846), 1, anon_sym_DOLLAR, - ACTIONS(7033), 1, + ACTIONS(6848), 1, anon_sym_LPAREN2, - ACTIONS(7037), 1, + ACTIONS(6850), 1, + anon_sym_DOT, + ACTIONS(6852), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7039), 1, + ACTIONS(6854), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7041), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7043), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7093), 1, - anon_sym_DOT, - STATE(4130), 1, - sym_comment, - STATE(4700), 1, - sym__immediate_decimal, - ACTIONS(1441), 2, - ts_builtin_sym_end, - sym__space, - STATE(4699), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1431), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [163463] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1553), 1, - sym__space, - ACTIONS(4449), 1, - anon_sym_DOLLAR, - ACTIONS(7003), 1, - anon_sym_LPAREN2, - ACTIONS(7011), 1, + ACTIONS(6856), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7013), 1, + ACTIONS(6858), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7095), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7097), 1, - aux_sym__immediate_decimal_token3, - STATE(4131), 1, + STATE(3862), 1, sym_comment, - STATE(4907), 1, + STATE(4196), 1, sym__immediate_decimal, - STATE(4860), 2, + ACTIONS(1479), 2, + sym_identifier, + anon_sym_DASH, + STATE(4463), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1551), 13, + ACTIONS(1493), 9, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [163513] = 5, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [159368] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7047), 1, - aux_sym__immediate_decimal_token2, - STATE(4132), 1, + STATE(3863), 1, sym_comment, - ACTIONS(1473), 2, + ACTIONS(1565), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1475), 20, + ACTIONS(1567), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -373635,15 +348867,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [163549] = 4, + [159401] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(4133), 1, + ACTIONS(1957), 1, + anon_sym_DASH, + ACTIONS(6453), 1, + anon_sym_DOT, + STATE(3483), 1, + aux_sym_cell_path_repeat1, + STATE(3546), 1, + sym_path, + STATE(3864), 1, sym_comment, - ACTIONS(1519), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1521), 21, + STATE(4094), 1, + sym_cell_path, + ACTIONS(1959), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373655,41 +348895,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [163583] = 12, - ACTIONS(3), 1, + [159442] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1557), 1, - sym__space, - ACTIONS(4449), 1, - anon_sym_DOLLAR, - ACTIONS(7003), 1, - anon_sym_LPAREN2, - ACTIONS(7011), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7013), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7095), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7097), 1, - aux_sym__immediate_decimal_token3, - STATE(4134), 1, + ACTIONS(6820), 1, + aux_sym__immediate_decimal_token2, + STATE(3865), 1, sym_comment, - STATE(4949), 1, - sym__immediate_decimal, - STATE(4976), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1555), 13, + ACTIONS(1643), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1645), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373703,31 +348924,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [163633] = 12, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [159477] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1509), 1, - sym__space, - ACTIONS(4449), 1, + ACTIONS(4227), 1, anon_sym_DOLLAR, - ACTIONS(7003), 1, + ACTIONS(6792), 1, anon_sym_LPAREN2, - ACTIONS(7011), 1, + ACTIONS(6800), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7013), 1, + ACTIONS(6802), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7095), 1, + ACTIONS(6860), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7097), 1, + ACTIONS(6862), 1, aux_sym__immediate_decimal_token3, - STATE(4135), 1, + STATE(3866), 1, sym_comment, - STATE(4963), 1, + STATE(4943), 1, sym__immediate_decimal, - STATE(4897), 2, + ACTIONS(1515), 2, + ts_builtin_sym_end, + sym__space, + STATE(4942), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1501), 13, + ACTIONS(1505), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373739,17 +348967,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [163683] = 4, + [159526] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4136), 1, + STATE(3867), 1, sym_comment, - ACTIONS(1585), 2, + ACTIONS(1497), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1587), 21, + ACTIONS(1499), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373761,8 +348988,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -373771,23 +348996,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [163717] = 6, - ACTIONS(3), 1, + [159559] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7099), 1, + ACTIONS(1686), 1, + anon_sym_DOT_DOT2, + ACTIONS(6864), 1, anon_sym_DOT, - ACTIONS(7101), 1, - aux_sym__immediate_decimal_token2, - STATE(4137), 1, + STATE(3737), 1, + sym_cell_path, + STATE(3868), 1, sym_comment, - ACTIONS(1475), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1473), 15, + STATE(3916), 1, + aux_sym_cell_path_repeat1, + STATE(4041), 1, + sym_path, + ACTIONS(1688), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373799,35 +349024,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [163755] = 12, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [159600] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1441), 1, + ACTIONS(1587), 1, sym__space, - ACTIONS(4449), 1, - anon_sym_DOLLAR, - ACTIONS(7003), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - ACTIONS(7011), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7013), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7095), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7097), 1, - aux_sym__immediate_decimal_token3, - STATE(4138), 1, + ACTIONS(6866), 1, + anon_sym_DOT_DOT2, + ACTIONS(6870), 1, + sym_filesize_unit, + ACTIONS(6872), 1, + sym_duration_unit, + ACTIONS(6874), 1, + aux_sym_unquoted_token2, + STATE(3869), 1, sym_comment, - STATE(4999), 1, - sym__immediate_decimal, - STATE(4998), 2, + STATE(7453), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1431), 13, + ACTIONS(6868), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1575), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373841,22 +349065,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [163805] = 8, + [159647] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1747), 1, + ACTIONS(1011), 1, anon_sym_DASH, - ACTIONS(6672), 1, + ACTIONS(6453), 1, anon_sym_DOT, - STATE(3739), 1, + STATE(3483), 1, aux_sym_cell_path_repeat1, - STATE(3893), 1, + STATE(3546), 1, sym_path, - STATE(4139), 1, + STATE(3870), 1, sym_comment, - STATE(4356), 1, + STATE(3917), 1, sym_cell_path, - ACTIONS(1749), 17, + ACTIONS(1013), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -373874,22 +349098,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163846] = 8, + [159688] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1891), 1, + ACTIONS(1829), 1, anon_sym_DASH, - ACTIONS(6672), 1, + ACTIONS(6453), 1, anon_sym_DOT, - STATE(3739), 1, + STATE(3483), 1, aux_sym_cell_path_repeat1, - STATE(3893), 1, + STATE(3546), 1, sym_path, - STATE(4140), 1, + STATE(3871), 1, sym_comment, - STATE(4352), 1, + STATE(4105), 1, sym_cell_path, - ACTIONS(1893), 17, + ACTIONS(1833), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -373907,65 +349131,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163887] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(945), 1, - anon_sym_DOT_DOT2, - ACTIONS(7103), 1, - anon_sym_DOT, - STATE(4141), 1, - sym_comment, - STATE(4185), 1, - aux_sym_cell_path_repeat1, - STATE(4204), 1, - sym_cell_path, - STATE(4289), 1, - sym_path, - ACTIONS(947), 17, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [163928] = 12, + [159729] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4413), 1, + ACTIONS(4227), 1, anon_sym_DOLLAR, - ACTIONS(7033), 1, + ACTIONS(6792), 1, anon_sym_LPAREN2, - ACTIONS(7041), 1, + ACTIONS(6800), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7043), 1, + ACTIONS(6802), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7105), 1, + ACTIONS(6860), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7107), 1, + ACTIONS(6862), 1, aux_sym__immediate_decimal_token3, - STATE(4142), 1, + STATE(3872), 1, sym_comment, - STATE(5131), 1, + STATE(4815), 1, sym__immediate_decimal, - ACTIONS(1557), 2, + ACTIONS(1563), 2, ts_builtin_sym_end, sym__space, - STATE(5130), 2, + STATE(4814), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1555), 11, + ACTIONS(1561), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373977,22 +349168,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [163977] = 8, + [159778] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1808), 1, - anon_sym_DASH, - ACTIONS(6672), 1, - anon_sym_DOT, - STATE(3739), 1, - aux_sym_cell_path_repeat1, - STATE(3893), 1, - sym_path, - STATE(4143), 1, + STATE(3873), 1, sym_comment, - STATE(4360), 1, - sym_cell_path, - ACTIONS(1810), 17, + ACTIONS(1639), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1641), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -374005,27 +349189,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [164018] = 8, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [159811] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6876), 1, + aux_sym__immediate_decimal_token2, + STATE(3874), 1, + sym_comment, + ACTIONS(1567), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1565), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [159846] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1820), 1, - anon_sym_DASH, - ACTIONS(6672), 1, + ACTIONS(1625), 1, + anon_sym_DOT_DOT2, + ACTIONS(6864), 1, anon_sym_DOT, - STATE(3739), 1, + STATE(3726), 1, + sym_cell_path, + STATE(3875), 1, + sym_comment, + STATE(3916), 1, aux_sym_cell_path_repeat1, - STATE(3893), 1, + STATE(4041), 1, sym_path, - STATE(4144), 1, - sym_comment, - STATE(4366), 1, - sym_cell_path, - ACTIONS(1822), 17, + ACTIONS(1629), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -374038,28 +349255,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [164059] = 8, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [159887] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1741), 1, - anon_sym_DASH, - ACTIONS(6672), 1, - anon_sym_DOT, - STATE(3739), 1, - aux_sym_cell_path_repeat1, - STATE(3893), 1, - sym_path, - STATE(4145), 1, + ACTIONS(6878), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6880), 1, + aux_sym__immediate_decimal_token2, + STATE(3876), 1, sym_comment, - STATE(4367), 1, - sym_cell_path, - ACTIONS(1745), 17, + ACTIONS(1519), 7, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1517), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374071,28 +349289,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [164100] = 8, - ACTIONS(247), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [159924] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1770), 1, - anon_sym_DASH, - ACTIONS(6672), 1, + ACTIONS(6882), 1, anon_sym_DOT, - STATE(3739), 1, - aux_sym_cell_path_repeat1, - STATE(3893), 1, - sym_path, - STATE(4146), 1, + ACTIONS(6884), 1, + aux_sym__immediate_decimal_token2, + STATE(3877), 1, sym_comment, - STATE(4322), 1, - sym_cell_path, - ACTIONS(1772), 17, + ACTIONS(1499), 7, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1497), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374104,27 +349320,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [164141] = 8, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [159961] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1778), 1, + ACTIONS(1961), 1, anon_sym_DASH, - ACTIONS(6672), 1, + ACTIONS(6453), 1, anon_sym_DOT, - STATE(3739), 1, + STATE(3483), 1, aux_sym_cell_path_repeat1, - STATE(3893), 1, + STATE(3546), 1, sym_path, - STATE(4147), 1, + STATE(3878), 1, sym_comment, - STATE(4424), 1, + STATE(4103), 1, sym_cell_path, - ACTIONS(1780), 17, + ACTIONS(1963), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -374142,22 +349355,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [164182] = 8, + [160002] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1847), 1, + ACTIONS(1835), 1, anon_sym_DASH, - ACTIONS(6672), 1, + ACTIONS(6453), 1, anon_sym_DOT, - STATE(3739), 1, + STATE(3483), 1, aux_sym_cell_path_repeat1, - STATE(3893), 1, + STATE(3546), 1, sym_path, - STATE(4148), 1, + STATE(3879), 1, sym_comment, - STATE(4422), 1, + STATE(4107), 1, sym_cell_path, - ACTIONS(1849), 17, + ACTIONS(1837), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -374175,15 +349388,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [164223] = 4, + [160043] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(4149), 1, + ACTIONS(1839), 1, + anon_sym_DASH, + ACTIONS(6453), 1, + anon_sym_DOT, + STATE(3483), 1, + aux_sym_cell_path_repeat1, + STATE(3546), 1, + sym_path, + STATE(3880), 1, sym_comment, - ACTIONS(1473), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1475), 20, + STATE(4108), 1, + sym_cell_path, + ACTIONS(1841), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -374196,30 +349416,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [164256] = 8, + [160084] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1831), 1, + ACTIONS(1879), 1, anon_sym_DASH, - ACTIONS(6672), 1, + ACTIONS(6453), 1, anon_sym_DOT, - STATE(3739), 1, + STATE(3483), 1, aux_sym_cell_path_repeat1, - STATE(3893), 1, + STATE(3546), 1, sym_path, - STATE(4150), 1, + STATE(3881), 1, sym_comment, - STATE(4371), 1, + STATE(4133), 1, sym_cell_path, - ACTIONS(1833), 17, + ACTIONS(1881), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -374237,22 +349454,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [164297] = 8, + [160125] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1899), 1, + ACTIONS(1843), 1, anon_sym_DASH, - ACTIONS(6672), 1, + ACTIONS(6453), 1, anon_sym_DOT, - STATE(3739), 1, + STATE(3483), 1, aux_sym_cell_path_repeat1, - STATE(3893), 1, + STATE(3546), 1, sym_path, - STATE(4151), 1, + STATE(3882), 1, sym_comment, - STATE(4316), 1, + STATE(4110), 1, sym_cell_path, - ACTIONS(1901), 17, + ACTIONS(1845), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -374270,32 +349487,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [164338] = 12, + [160166] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4413), 1, + ACTIONS(4227), 1, anon_sym_DOLLAR, - ACTIONS(7033), 1, + ACTIONS(6792), 1, anon_sym_LPAREN2, - ACTIONS(7041), 1, + ACTIONS(6800), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7043), 1, + ACTIONS(6802), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7105), 1, + ACTIONS(6860), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7107), 1, + ACTIONS(6862), 1, aux_sym__immediate_decimal_token3, - STATE(4152), 1, + STATE(3883), 1, sym_comment, - STATE(5129), 1, + STATE(4813), 1, sym__immediate_decimal, - ACTIONS(1553), 2, + ACTIONS(1619), 2, ts_builtin_sym_end, sym__space, - STATE(5128), 2, + STATE(4919), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1551), 11, + ACTIONS(1617), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374307,22 +349524,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [164387] = 8, + [160215] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1871), 1, + ACTIONS(1847), 1, anon_sym_DASH, - ACTIONS(6672), 1, + ACTIONS(6453), 1, anon_sym_DOT, - STATE(3739), 1, + STATE(3483), 1, aux_sym_cell_path_repeat1, - STATE(3893), 1, + STATE(3546), 1, sym_path, - STATE(4153), 1, + STATE(3884), 1, sym_comment, - STATE(4331), 1, + STATE(4111), 1, sym_cell_path, - ACTIONS(1873), 17, + ACTIONS(1849), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -374340,22 +349557,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [164428] = 8, + [160256] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1879), 1, + ACTIONS(1851), 1, anon_sym_DASH, - ACTIONS(6672), 1, + ACTIONS(6453), 1, anon_sym_DOT, - STATE(3739), 1, + STATE(3483), 1, aux_sym_cell_path_repeat1, - STATE(3893), 1, + STATE(3546), 1, sym_path, - STATE(4154), 1, + STATE(3885), 1, sym_comment, - STATE(4343), 1, + STATE(4112), 1, sym_cell_path, - ACTIONS(1881), 17, + ACTIONS(1853), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -374373,22 +349590,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [164469] = 8, + [160297] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1824), 1, + ACTIONS(1855), 1, anon_sym_DASH, - ACTIONS(6672), 1, + ACTIONS(6453), 1, anon_sym_DOT, - STATE(3739), 1, + STATE(3483), 1, aux_sym_cell_path_repeat1, - STATE(3893), 1, + STATE(3546), 1, sym_path, - STATE(4155), 1, + STATE(3886), 1, sym_comment, - STATE(4357), 1, + STATE(4113), 1, sym_cell_path, - ACTIONS(1826), 17, + ACTIONS(1857), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -374406,22 +349623,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [164510] = 8, + [160338] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1839), 1, + ACTIONS(1859), 1, anon_sym_DASH, - ACTIONS(6672), 1, + ACTIONS(6453), 1, anon_sym_DOT, - STATE(3739), 1, + STATE(3483), 1, aux_sym_cell_path_repeat1, - STATE(3893), 1, + STATE(3546), 1, sym_path, - STATE(4156), 1, + STATE(3887), 1, sym_comment, - STATE(4381), 1, + STATE(4114), 1, sym_cell_path, - ACTIONS(1841), 17, + ACTIONS(1861), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -374439,19 +349656,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [164551] = 6, + [160379] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7109), 1, + ACTIONS(6886), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7111), 1, + ACTIONS(6888), 1, aux_sym__immediate_decimal_token2, - STATE(4157), 1, + STATE(3888), 1, sym_comment, - ACTIONS(1569), 2, + ACTIONS(1631), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1571), 18, + ACTIONS(1633), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -374470,19 +349687,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [164588] = 6, + [160416] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7113), 1, + ACTIONS(1867), 1, + anon_sym_DASH, + ACTIONS(6453), 1, anon_sym_DOT, - ACTIONS(7115), 1, - aux_sym__immediate_decimal_token2, - STATE(4158), 1, + STATE(3483), 1, + aux_sym_cell_path_repeat1, + STATE(3546), 1, + sym_path, + STATE(3889), 1, sym_comment, - ACTIONS(1589), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1591), 18, + STATE(4116), 1, + sym_cell_path, + ACTIONS(1869), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -374495,28 +349715,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [164625] = 8, + [160457] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1883), 1, + ACTIONS(1871), 1, anon_sym_DASH, - ACTIONS(6672), 1, + ACTIONS(6453), 1, anon_sym_DOT, - STATE(3739), 1, + STATE(3483), 1, aux_sym_cell_path_repeat1, - STATE(3893), 1, + STATE(3546), 1, sym_path, - STATE(4159), 1, + STATE(3890), 1, sym_comment, - STATE(4344), 1, + STATE(4117), 1, sym_cell_path, - ACTIONS(1885), 17, + ACTIONS(1873), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -374534,21 +349753,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [164666] = 5, - ACTIONS(3), 1, + [160498] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7117), 1, - aux_sym__immediate_decimal_token2, - STATE(4160), 1, + ACTIONS(1875), 1, + anon_sym_DASH, + ACTIONS(6453), 1, + anon_sym_DOT, + STATE(3483), 1, + aux_sym_cell_path_repeat1, + STATE(3546), 1, + sym_path, + STATE(3891), 1, sym_comment, - ACTIONS(1521), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1519), 15, + STATE(4118), 1, + sym_cell_path, + ACTIONS(1877), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374560,33 +349781,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [164701] = 11, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [160539] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1537), 1, + ACTIONS(6824), 1, + aux_sym__immediate_decimal_token2, + STATE(3892), 1, + sym_comment, + ACTIONS(1499), 6, sym__space, - ACTIONS(2947), 1, anon_sym_LPAREN2, - ACTIONS(7119), 1, - anon_sym_DOT_DOT2, - ACTIONS(7123), 1, - sym_filesize_unit, - ACTIONS(7125), 1, - sym_duration_unit, - ACTIONS(7127), 1, - aux_sym_unquoted_token2, - STATE(4161), 1, - sym_comment, - STATE(7699), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7121), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1525), 13, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1497), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374600,22 +349814,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [164748] = 8, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [160574] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1875), 1, + ACTIONS(1969), 1, anon_sym_DASH, - ACTIONS(6672), 1, + ACTIONS(6453), 1, anon_sym_DOT, - STATE(3739), 1, + STATE(3483), 1, aux_sym_cell_path_repeat1, - STATE(3893), 1, + STATE(3546), 1, sym_path, - STATE(4162), 1, + STATE(3893), 1, sym_comment, - STATE(4342), 1, + STATE(4120), 1, sym_cell_path, - ACTIONS(1877), 17, + ACTIONS(1971), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -374633,22 +349849,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [164789] = 8, + [160615] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1774), 1, + ACTIONS(1890), 1, anon_sym_DASH, - ACTIONS(6672), 1, + ACTIONS(6453), 1, anon_sym_DOT, - STATE(3739), 1, + STATE(3483), 1, aux_sym_cell_path_repeat1, - STATE(3893), 1, + STATE(3546), 1, sym_path, - STATE(4163), 1, + STATE(3894), 1, sym_comment, - STATE(4409), 1, + STATE(4121), 1, sym_cell_path, - ACTIONS(1776), 17, + ACTIONS(1892), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -374666,53 +349882,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [164830] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7129), 1, - anon_sym_DOT, - ACTIONS(7131), 1, - aux_sym__immediate_decimal_token2, - STATE(4164), 1, - sym_comment, - ACTIONS(1475), 7, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1473), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [164867] = 8, + [160656] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1762), 1, + ACTIONS(1894), 1, anon_sym_DASH, - ACTIONS(6672), 1, + ACTIONS(6453), 1, anon_sym_DOT, - STATE(3739), 1, + STATE(3483), 1, aux_sym_cell_path_repeat1, - STATE(3893), 1, + STATE(3546), 1, sym_path, - STATE(4165), 1, + STATE(3895), 1, sym_comment, - STATE(4402), 1, + STATE(4122), 1, sym_cell_path, - ACTIONS(1764), 17, + ACTIONS(1896), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -374730,22 +349915,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [164908] = 8, + [160697] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(945), 1, + ACTIONS(1937), 1, anon_sym_DASH, - ACTIONS(6672), 1, + ACTIONS(6453), 1, anon_sym_DOT, - STATE(3739), 1, + STATE(3483), 1, aux_sym_cell_path_repeat1, - STATE(3893), 1, + STATE(3546), 1, sym_path, - STATE(4166), 1, + STATE(3896), 1, sym_comment, - STATE(4204), 1, + STATE(4123), 1, sym_cell_path, - ACTIONS(947), 17, + ACTIONS(1939), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -374763,22 +349948,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [164949] = 8, + [160738] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1835), 1, + ACTIONS(1945), 1, anon_sym_DASH, - ACTIONS(6672), 1, + ACTIONS(6453), 1, anon_sym_DOT, - STATE(3739), 1, + STATE(3483), 1, aux_sym_cell_path_repeat1, - STATE(3893), 1, + STATE(3546), 1, sym_path, - STATE(4167), 1, + STATE(3897), 1, sym_comment, - STATE(4439), 1, + STATE(4125), 1, sym_cell_path, - ACTIONS(1837), 17, + ACTIONS(1947), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -374796,24 +349981,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [164990] = 6, - ACTIONS(3), 1, + [160779] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7133), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7135), 1, + ACTIONS(6890), 1, + anon_sym_DOT, + ACTIONS(6892), 1, aux_sym__immediate_decimal_token2, - STATE(4168), 1, + STATE(3898), 1, sym_comment, - ACTIONS(1483), 7, + ACTIONS(1643), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1645), 18, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1481), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374825,24 +350006,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [165027] = 8, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [160816] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1599), 1, - anon_sym_DOT_DOT2, - ACTIONS(7103), 1, + ACTIONS(1949), 1, + anon_sym_DASH, + ACTIONS(6453), 1, anon_sym_DOT, - STATE(4005), 1, - sym_cell_path, - STATE(4169), 1, - sym_comment, - STATE(4185), 1, + STATE(3483), 1, aux_sym_cell_path_repeat1, - STATE(4289), 1, + STATE(3546), 1, sym_path, - ACTIONS(1603), 17, + STATE(3899), 1, + sym_comment, + STATE(4126), 1, + sym_cell_path, + ACTIONS(1951), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -374855,57 +350040,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [165068] = 5, - ACTIONS(3), 1, + [160857] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7101), 1, - aux_sym__immediate_decimal_token2, - STATE(4170), 1, + STATE(3900), 1, sym_comment, - ACTIONS(1475), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1473), 15, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(1517), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [165103] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1895), 1, - anon_sym_DASH, - ACTIONS(6672), 1, - anon_sym_DOT, - STATE(3739), 1, - aux_sym_cell_path_repeat1, - STATE(3893), 1, - sym_path, - STATE(4171), 1, - sym_comment, - STATE(4353), 1, - sym_cell_path, - ACTIONS(1897), 17, + ACTIONS(1519), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -374918,27 +350066,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [165144] = 8, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [160890] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1855), 1, + ACTIONS(1965), 1, anon_sym_DASH, - ACTIONS(6672), 1, + ACTIONS(6453), 1, anon_sym_DOT, - STATE(3739), 1, + STATE(3483), 1, aux_sym_cell_path_repeat1, - STATE(3893), 1, + STATE(3546), 1, sym_path, - STATE(4172), 1, + STATE(3901), 1, sym_comment, - STATE(4358), 1, + STATE(4130), 1, sym_cell_path, - ACTIONS(1857), 17, + ACTIONS(1967), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -374956,17 +350107,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [165185] = 5, + [160931] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7063), 1, - aux_sym__immediate_decimal_token2, - STATE(4173), 1, - sym_comment, - ACTIONS(1589), 2, + ACTIONS(1011), 1, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1591), 19, + ACTIONS(6864), 1, + anon_sym_DOT, + STATE(3902), 1, + sym_comment, + STATE(3916), 1, + aux_sym_cell_path_repeat1, + STATE(3917), 1, + sym_cell_path, + STATE(4041), 1, + sym_path, + ACTIONS(1013), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374978,40 +350135,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [165220] = 12, + [160972] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4413), 1, + ACTIONS(4227), 1, anon_sym_DOLLAR, - ACTIONS(7033), 1, + ACTIONS(6792), 1, anon_sym_LPAREN2, - ACTIONS(7041), 1, + ACTIONS(6800), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7043), 1, + ACTIONS(6802), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7105), 1, + ACTIONS(6860), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7107), 1, + ACTIONS(6862), 1, aux_sym__immediate_decimal_token3, - STATE(4174), 1, + STATE(3903), 1, sym_comment, - STATE(5105), 1, + STATE(4812), 1, sym__immediate_decimal, - ACTIONS(1441), 2, + ACTIONS(1623), 2, ts_builtin_sym_end, sym__space, - STATE(5103), 2, + STATE(4805), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1431), 11, + ACTIONS(1621), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375023,16 +350177,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [165269] = 4, + [161021] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(4175), 1, + ACTIONS(6894), 1, + aux_sym__immediate_decimal_token2, + STATE(3904), 1, sym_comment, - ACTIONS(1481), 2, + ACTIONS(1705), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1483), 20, - ts_builtin_sym_end, + ACTIONS(1707), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375044,24 +350199,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [165302] = 4, - ACTIONS(247), 1, + [161056] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4176), 1, + STATE(3905), 1, sym_comment, - ACTIONS(1519), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1521), 20, - ts_builtin_sym_end, + ACTIONS(1499), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1497), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375073,23 +350231,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [165335] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [161088] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(4177), 1, + ACTIONS(6892), 1, + aux_sym__immediate_decimal_token2, + STATE(3906), 1, sym_comment, - ACTIONS(1585), 2, + ACTIONS(1643), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1587), 20, + ACTIONS(1645), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -375108,64 +350264,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [165368] = 5, + [161122] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7137), 1, + ACTIONS(6896), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6898), 1, aux_sym__immediate_decimal_token2, - STATE(4178), 1, + STATE(3907), 1, sym_comment, - ACTIONS(1648), 2, + ACTIONS(1517), 6, + sym_identifier, + anon_sym_DASH, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1650), 19, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token2, + ACTIONS(1519), 13, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [165403] = 12, + [161158] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4413), 1, - anon_sym_DOLLAR, - ACTIONS(7033), 1, - anon_sym_LPAREN2, - ACTIONS(7041), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7043), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7105), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7107), 1, - aux_sym__immediate_decimal_token3, - STATE(4179), 1, + ACTIONS(6884), 1, + aux_sym__immediate_decimal_token2, + STATE(3908), 1, sym_comment, - STATE(5133), 1, - sym__immediate_decimal, - ACTIONS(1509), 2, + ACTIONS(1499), 7, ts_builtin_sym_end, sym__space, - STATE(5132), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1501), 11, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1497), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375177,23 +350321,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [165452] = 8, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [161192] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_DASH, - ACTIONS(6672), 1, - anon_sym_DOT, - STATE(3739), 1, - aux_sym_cell_path_repeat1, - STATE(3893), 1, - sym_path, - STATE(4180), 1, + ACTIONS(1798), 1, + anon_sym_LPAREN2, + ACTIONS(1806), 1, + aux_sym_unquoted_token2, + ACTIONS(6900), 1, + anon_sym_DOT_DOT2, + STATE(3909), 1, sym_comment, - STATE(4359), 1, - sym_cell_path, - ACTIONS(1798), 17, - ts_builtin_sym_end, + ACTIONS(6902), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1804), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375205,26 +350349,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [165493] = 7, - ACTIONS(247), 1, + [161230] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1711), 1, - anon_sym_LPAREN2, - ACTIONS(1719), 1, - aux_sym_unquoted_token2, - ACTIONS(7139), 1, - anon_sym_DOT_DOT2, - STATE(4181), 1, + ACTIONS(6904), 1, + anon_sym_DOT, + STATE(3910), 1, sym_comment, - ACTIONS(7141), 2, + STATE(3998), 1, + aux_sym_cell_path_repeat1, + STATE(4096), 1, + sym_path, + STATE(4164), 1, + sym_cell_path, + ACTIONS(1688), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1717), 16, + ACTIONS(1686), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375238,25 +350385,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [165531] = 5, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + [161270] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7131), 1, - aux_sym__immediate_decimal_token2, - STATE(4182), 1, + ACTIONS(4926), 1, + anon_sym_DASH, + STATE(3911), 1, sym_comment, - ACTIONS(1475), 7, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1473), 13, + ACTIONS(4924), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375268,21 +350405,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [165565] = 4, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + [161302] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4183), 1, + ACTIONS(6906), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6908), 1, + aux_sym__immediate_decimal_token2, + STATE(3912), 1, sym_comment, - ACTIONS(1475), 6, + ACTIONS(1633), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1473), 15, + ACTIONS(1631), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375298,36 +350444,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [165597] = 14, + [161338] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1429), 1, + ACTIONS(1495), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(7143), 1, - anon_sym_DOLLAR, - ACTIONS(7145), 1, + ACTIONS(6848), 1, anon_sym_LPAREN2, - ACTIONS(7147), 1, - anon_sym_DOT, - ACTIONS(7149), 1, + ACTIONS(6910), 1, + anon_sym_DOLLAR, + ACTIONS(6912), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7151), 1, + ACTIONS(6914), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7153), 1, + ACTIONS(6916), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7155), 1, + ACTIONS(6918), 1, aux_sym__immediate_decimal_token5, - STATE(4184), 1, + STATE(3913), 1, sym_comment, - STATE(4575), 1, + STATE(4628), 1, sym__immediate_decimal, - ACTIONS(1413), 2, + ACTIONS(1479), 2, sym_identifier, anon_sym_DASH, - STATE(5013), 2, + STATE(5062), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1427), 8, + ACTIONS(1493), 9, + anon_sym_EQ, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -375336,21 +350481,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [165649] = 7, + [161388] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(951), 1, - anon_sym_DOT_DOT2, - ACTIONS(7103), 1, - anon_sym_DOT, - STATE(4185), 1, + ACTIONS(2303), 1, + anon_sym_DASH, + ACTIONS(6920), 1, + anon_sym_LBRACK2, + STATE(3914), 1, sym_comment, - STATE(4202), 1, - aux_sym_cell_path_repeat1, - STATE(4289), 1, - sym_path, - ACTIONS(953), 17, - ts_builtin_sym_end, + ACTIONS(2307), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375362,26 +350502,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [165687] = 7, + [161422] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1429), 1, - aux_sym_unquoted_token2, - ACTIONS(1692), 1, - anon_sym_LPAREN2, - ACTIONS(7157), 1, - anon_sym_DOT_DOT2, - STATE(4186), 1, + STATE(3915), 1, sym_comment, - ACTIONS(7159), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1698), 16, + ACTIONS(1643), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1645), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375398,45 +350535,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [165725] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4187), 1, - sym_comment, - ACTIONS(1521), 6, - sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1519), 15, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [165757] = 5, + [161454] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7115), 1, - aux_sym__immediate_decimal_token2, - STATE(4188), 1, - sym_comment, - ACTIONS(1589), 2, + ACTIONS(1017), 1, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1591), 18, + ACTIONS(6864), 1, + anon_sym_DOT, + STATE(3916), 1, + sym_comment, + STATE(3920), 1, + aux_sym_cell_path_repeat1, + STATE(4041), 1, + sym_path, + ACTIONS(1019), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -375452,50 +350567,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [165791] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7161), 1, - anon_sym_DOT, - ACTIONS(7163), 1, - aux_sym__immediate_decimal_token2, - STATE(4189), 1, - sym_comment, - ACTIONS(1591), 4, - sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1589), 15, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [165827] = 5, + [161492] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7165), 1, - aux_sym__immediate_decimal_token2, - STATE(4190), 1, + STATE(3917), 1, sym_comment, - ACTIONS(1648), 2, + ACTIONS(1064), 2, + anon_sym_DASH, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1650), 18, + ACTIONS(1066), 19, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -375508,55 +350590,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [165861] = 6, + [161524] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7167), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7169), 1, - aux_sym__immediate_decimal_token2, - STATE(4191), 1, - sym_comment, - ACTIONS(1571), 4, - sym__space, + ACTIONS(3914), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1569), 15, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(6922), 1, anon_sym_DOT_DOT2, + ACTIONS(6926), 1, + sym_filesize_unit, + ACTIONS(6928), 1, + sym_duration_unit, + ACTIONS(6930), 1, aux_sym_unquoted_token2, - [165897] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4192), 1, + STATE(3918), 1, sym_comment, - ACTIONS(1587), 6, + STATE(7317), 1, + sym__expr_parenthesized_immediate, + ACTIONS(1587), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, + ACTIONS(6924), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1585), 15, + ACTIONS(1575), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375568,26 +350632,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [165929] = 5, + [161570] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7171), 1, + ACTIONS(6932), 1, + anon_sym_DOT, + ACTIONS(6934), 1, aux_sym__immediate_decimal_token2, - STATE(4193), 1, + STATE(3919), 1, sym_comment, - ACTIONS(1521), 7, - ts_builtin_sym_end, + ACTIONS(1645), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1519), 13, + ACTIONS(1643), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375599,18 +350658,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [165963] = 5, + [161606] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2235), 1, - anon_sym_DASH, - ACTIONS(7173), 1, - anon_sym_LBRACK2, - STATE(4194), 1, + ACTIONS(1021), 1, + anon_sym_DOT_DOT2, + ACTIONS(6936), 1, + anon_sym_DOT, + STATE(4041), 1, + sym_path, + STATE(3920), 2, sym_comment, - ACTIONS(2239), 19, + aux_sym_cell_path_repeat1, + ACTIONS(1023), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375622,38 +350687,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [165997] = 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [161642] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - ACTIONS(7175), 1, - anon_sym_DOT_DOT2, - ACTIONS(7179), 1, - sym_filesize_unit, - ACTIONS(7181), 1, - sym_duration_unit, - ACTIONS(7183), 1, - aux_sym_unquoted_token2, - STATE(4195), 1, + ACTIONS(6904), 1, + anon_sym_DOT, + STATE(3921), 1, sym_comment, - STATE(7619), 1, - sym__expr_parenthesized_immediate, - ACTIONS(1537), 2, - ts_builtin_sym_end, + STATE(3998), 1, + aux_sym_cell_path_repeat1, + STATE(4096), 1, + sym_path, + STATE(4211), 1, + sym_cell_path, + ACTIONS(1013), 3, sym__space, - ACTIONS(7177), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1525), 11, + ACTIONS(1011), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375665,14 +350721,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [166043] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [161682] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3487), 1, - anon_sym_DASH, - STATE(4196), 1, + STATE(3922), 1, sym_comment, - ACTIONS(3485), 20, + ACTIONS(1631), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1633), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375685,51 +350745,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, anon_sym_LPAREN2, - [166075] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [161714] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3375), 1, - anon_sym_DASH, - STATE(4197), 1, + ACTIONS(6846), 1, + anon_sym_DOLLAR, + ACTIONS(6848), 1, + anon_sym_LPAREN2, + ACTIONS(6852), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6854), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6856), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6858), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6939), 1, + anon_sym_DOT, + STATE(3923), 1, sym_comment, - ACTIONS(3373), 20, + STATE(4582), 1, + sym__immediate_decimal, + ACTIONS(1505), 2, + sym_identifier, + anon_sym_DASH, + STATE(4579), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1515), 9, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - [166107] = 4, + [161764] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4198), 1, + STATE(3924), 1, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1705), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1591), 19, + ACTIONS(1707), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375749,19 +350817,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [166139] = 4, + [161796] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4199), 1, + ACTIONS(6941), 1, + aux_sym__immediate_decimal_token2, + STATE(3925), 1, sym_comment, - ACTIONS(1483), 6, + ACTIONS(1567), 7, + ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1481), 15, + ACTIONS(1565), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375773,19 +350844,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [166171] = 4, - ACTIONS(247), 1, + [161830] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4200), 1, + ACTIONS(6904), 1, + anon_sym_DOT, + STATE(3926), 1, sym_comment, - ACTIONS(1569), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1571), 19, + STATE(3998), 1, + aux_sym_cell_path_repeat1, + STATE(4096), 1, + sym_path, + STATE(4168), 1, + sym_cell_path, + ACTIONS(1629), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1625), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375799,21 +350877,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [166203] = 4, + anon_sym_DOT_DOT2, + [161870] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4201), 1, + ACTIONS(4888), 1, + anon_sym_DASH, + STATE(3927), 1, sym_comment, - ACTIONS(1721), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1723), 19, + ACTIONS(4886), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375826,27 +350898,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, anon_sym_LPAREN2, + [161902] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3928), 1, + sym_comment, + ACTIONS(1641), 6, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [166235] = 6, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1639), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [161934] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(955), 1, - anon_sym_DOT_DOT2, - ACTIONS(7185), 1, - anon_sym_DOT, - STATE(4289), 1, - sym_path, - STATE(4202), 2, + STATE(3929), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(957), 17, - ts_builtin_sym_end, + ACTIONS(1755), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1757), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375858,29 +350954,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [166271] = 8, - ACTIONS(3), 1, + [161966] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7188), 1, - anon_sym_DOT, - STATE(4203), 1, + ACTIONS(1495), 1, + aux_sym_unquoted_token2, + ACTIONS(1788), 1, + anon_sym_LPAREN2, + ACTIONS(6943), 1, + anon_sym_DOT_DOT2, + STATE(3930), 1, sym_comment, - STATE(4232), 1, - aux_sym_cell_path_repeat1, - STATE(4320), 1, - sym_path, - STATE(4517), 1, - sym_cell_path, - ACTIONS(1603), 3, - sym__space, + ACTIONS(6945), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1599), 14, + ACTIONS(1794), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375894,16 +350990,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [166311] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [162004] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(4204), 1, + ACTIONS(6947), 1, + aux_sym__immediate_decimal_token2, + STATE(3931), 1, sym_comment, - ACTIONS(1021), 2, - anon_sym_DASH, + ACTIONS(1705), 2, anon_sym_DOT_DOT2, - ACTIONS(1023), 19, + aux_sym_unquoted_token2, + ACTIONS(1707), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -375916,59 +351016,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [166343] = 4, + [162038] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(4205), 1, + ACTIONS(6949), 1, + anon_sym_DOT, + ACTIONS(6951), 1, + aux_sym__immediate_decimal_token2, + STATE(3932), 1, sym_comment, - ACTIONS(1648), 2, + ACTIONS(1497), 6, + sym_identifier, + anon_sym_DASH, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1650), 19, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token2, + ACTIONS(1499), 13, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [166375] = 8, + [162074] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7188), 1, - anon_sym_DOT, - STATE(4206), 1, + STATE(3933), 1, sym_comment, - STATE(4232), 1, - aux_sym_cell_path_repeat1, - STATE(4320), 1, - sym_path, - STATE(4473), 1, - sym_cell_path, - ACTIONS(947), 3, + ACTIONS(1519), 6, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(945), 14, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1517), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375983,14 +351079,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [166415] = 4, + aux_sym_unquoted_token2, + [162106] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2359), 1, + ACTIONS(1553), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(6848), 1, + anon_sym_LPAREN2, + ACTIONS(6910), 1, + anon_sym_DOLLAR, + ACTIONS(6912), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6914), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6916), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6918), 1, + aux_sym__immediate_decimal_token5, + STATE(3934), 1, + sym_comment, + STATE(4650), 1, + sym__immediate_decimal, + ACTIONS(1549), 2, + sym_identifier, anon_sym_DASH, - STATE(4207), 1, + STATE(5078), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1551), 9, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [162156] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3935), 1, sym_comment, - ACTIONS(2361), 19, + ACTIONS(1567), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1565), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376003,49 +351142,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [166446] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7190), 1, - sym__newline, - STATE(4208), 2, - sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1757), 8, - aux_sym_cmd_identifier_token39, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(1755), 10, - anon_sym_true, - anon_sym_false, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - sym_identifier, - anon_sym_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [166479] = 4, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [162188] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2311), 1, - anon_sym_DASH, - STATE(4209), 1, + ACTIONS(6953), 1, + anon_sym_QMARK2, + STATE(3936), 1, sym_comment, - ACTIONS(2313), 19, + ACTIONS(1028), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1030), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376057,28 +351168,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [166510] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [162221] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4210), 1, + ACTIONS(6955), 1, + anon_sym_DOT, + STATE(4096), 1, + sym_path, + STATE(3937), 2, sym_comment, - ACTIONS(1521), 7, - ts_builtin_sym_end, + aux_sym_cell_path_repeat1, + ACTIONS(1023), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1519), 13, + ACTIONS(1021), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376090,16 +351199,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [166541] = 4, + [162256] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2311), 1, + ACTIONS(2364), 1, anon_sym_DASH, - STATE(4211), 1, + STATE(3938), 1, sym_comment, - ACTIONS(2313), 19, + ACTIONS(2366), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376119,14 +351229,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [166572] = 4, + [162287] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1741), 1, + ACTIONS(1076), 1, anon_sym_DASH, - STATE(4212), 1, + STATE(3939), 1, sym_comment, - ACTIONS(1745), 19, + ACTIONS(1078), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376146,41 +351256,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [166603] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4213), 1, - sym_comment, - ACTIONS(1587), 7, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1585), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [166634] = 4, + [162318] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2271), 1, + ACTIONS(2368), 1, anon_sym_DASH, - STATE(4214), 1, + STATE(3940), 1, sym_comment, - ACTIONS(2273), 19, + ACTIONS(2370), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376200,14 +351283,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [166665] = 4, + [162349] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2241), 1, + ACTIONS(6958), 1, + aux_sym__immediate_decimal_token2, + STATE(3941), 1, + sym_comment, + ACTIONS(1565), 6, + sym_identifier, anon_sym_DASH, - STATE(4215), 1, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token2, + ACTIONS(1567), 13, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [162382] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1631), 1, + aux_sym_unquoted_token2, + ACTIONS(6960), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6962), 1, + aux_sym__immediate_decimal_token2, + STATE(3942), 1, sym_comment, - ACTIONS(2243), 19, + ACTIONS(1633), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376220,26 +351335,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [166696] = 5, + anon_sym_LPAREN2, + [162417] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7163), 1, + ACTIONS(6964), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6966), 1, aux_sym__immediate_decimal_token2, - STATE(4216), 1, + STATE(3943), 1, sym_comment, - ACTIONS(1591), 4, + ACTIONS(1633), 5, + ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1589), 15, + ACTIONS(1631), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376251,18 +351367,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [166729] = 4, + [162452] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2263), 1, + ACTIONS(1961), 1, anon_sym_DASH, - STATE(4217), 1, + STATE(3944), 1, sym_comment, - ACTIONS(2265), 19, + ACTIONS(1963), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376282,14 +351396,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [166760] = 4, + [162483] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2295), 1, + ACTIONS(2355), 1, anon_sym_DASH, - STATE(4218), 1, + STATE(3945), 1, sym_comment, - ACTIONS(2297), 19, + ACTIONS(2357), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376309,22 +351423,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [166791] = 7, + [162514] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1429), 1, - aux_sym_unquoted_token2, - ACTIONS(1692), 1, - anon_sym_LPAREN2, - ACTIONS(7193), 1, - anon_sym_DOT_DOT2, - STATE(4219), 1, + ACTIONS(2380), 1, + anon_sym_DASH, + STATE(3946), 1, sym_comment, - ACTIONS(7195), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1698), 15, - ts_builtin_sym_end, + ACTIONS(2382), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376336,17 +351442,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [166828] = 4, + [162545] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1839), 1, - anon_sym_DASH, - STATE(4220), 1, + ACTIONS(1495), 1, + aux_sym_unquoted_token2, + ACTIONS(1788), 1, + anon_sym_LPAREN2, + ACTIONS(6968), 1, + anon_sym_DOT_DOT2, + STATE(3947), 1, sym_comment, - ACTIONS(1841), 19, + ACTIONS(6970), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1794), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376358,60 +351477,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [166859] = 14, - ACTIONS(247), 1, + [162582] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1429), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(7143), 1, - anon_sym_DOLLAR, - ACTIONS(7145), 1, - anon_sym_LPAREN2, - ACTIONS(7197), 1, + ACTIONS(6972), 1, anon_sym_DOT, - ACTIONS(7199), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7201), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7203), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7205), 1, - aux_sym__immediate_decimal_token5, - STATE(4221), 1, + STATE(3948), 1, sym_comment, - STATE(4844), 1, - sym__immediate_decimal, - ACTIONS(1413), 2, - sym_identifier, - anon_sym_DASH, - STATE(5013), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1427), 7, + STATE(4026), 1, + aux_sym_cell_path_repeat1, + STATE(4249), 1, + sym_path, + STATE(4417), 1, + sym_cell_path, + ACTIONS(1688), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1686), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [166910] = 4, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + [162621] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4222), 1, + STATE(3949), 1, sym_comment, - ACTIONS(966), 2, + ACTIONS(1040), 2, anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(968), 18, + ACTIONS(1042), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -376430,15 +351538,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [166941] = 4, + [162652] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4223), 1, + STATE(3950), 1, sym_comment, - ACTIONS(976), 2, + ACTIONS(1044), 2, anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(978), 18, + ACTIONS(1046), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -376457,15 +351565,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [166972] = 4, + [162683] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(4224), 1, + ACTIONS(6974), 1, + anon_sym_QMARK2, + STATE(3951), 1, sym_comment, - ACTIONS(962), 2, + ACTIONS(1034), 2, anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(964), 18, + ACTIONS(1036), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -376478,31 +351588,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, anon_sym_and, anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [167003] = 9, - ACTIONS(3), 1, + [162716] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1537), 1, - sym__space, - ACTIONS(4694), 1, - anon_sym_DOT_DOT2, - ACTIONS(7123), 1, - sym_filesize_unit, - ACTIONS(7125), 1, - sym_duration_unit, - ACTIONS(7127), 1, - aux_sym_unquoted_token2, - STATE(4225), 1, + ACTIONS(2453), 1, + anon_sym_DASH, + STATE(3952), 1, sym_comment, - ACTIONS(4696), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1525), 13, + ACTIONS(2455), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376515,26 +351613,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, - [167044] = 8, - ACTIONS(3), 1, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [162747] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7207), 1, - anon_sym_DOT, - STATE(4226), 1, + ACTIONS(2457), 1, + anon_sym_DASH, + STATE(3953), 1, sym_comment, - STATE(4278), 1, - aux_sym_cell_path_repeat1, - STATE(4507), 1, - sym_path, - STATE(4675), 1, - sym_cell_path, - ACTIONS(947), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(945), 12, + ACTIONS(2459), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376546,20 +351639,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [167083] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [162778] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7209), 1, - aux_sym__immediate_decimal_token2, - STATE(4227), 1, + ACTIONS(2384), 1, + anon_sym_DASH, + STATE(3954), 1, sym_comment, - ACTIONS(1650), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1648), 15, + ACTIONS(2386), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376572,19 +351667,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [167116] = 4, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [162809] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4228), 1, + ACTIONS(2388), 1, + anon_sym_DASH, + STATE(3955), 1, sym_comment, - ACTIONS(1589), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1591), 18, - ts_builtin_sym_end, + ACTIONS(2390), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376596,22 +351693,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [167147] = 4, + [162840] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4229), 1, + ACTIONS(2392), 1, + anon_sym_DASH, + STATE(3956), 1, sym_comment, - ACTIONS(1569), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1571), 18, - ts_builtin_sym_end, + ACTIONS(2394), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376623,22 +351720,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [167178] = 4, + [162871] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(4230), 1, + ACTIONS(6976), 1, + sym__newline, + STATE(3957), 2, sym_comment, - ACTIONS(1648), 2, - anon_sym_DOT_DOT2, + aux_sym_shebang_repeat1, + ACTIONS(1900), 8, + aux_sym_cmd_identifier_token39, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(1898), 10, + anon_sym_true, + anon_sym_false, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + sym_identifier, + anon_sym_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [162904] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1643), 1, aux_sym_unquoted_token2, - ACTIONS(1650), 18, - ts_builtin_sym_end, + ACTIONS(6979), 1, + anon_sym_DOT, + ACTIONS(6981), 1, + aux_sym__immediate_decimal_token2, + STATE(3958), 1, + sym_comment, + ACTIONS(1645), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376650,21 +351779,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [167209] = 4, + [162939] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4231), 1, + ACTIONS(2396), 1, + anon_sym_DASH, + STATE(3959), 1, + sym_comment, + ACTIONS(2398), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [162970] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3960), 1, sym_comment, - ACTIONS(1721), 2, + ACTIONS(1631), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1723), 18, + ACTIONS(1633), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -376683,22 +351839,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [167240] = 7, + [163001] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7188), 1, - anon_sym_DOT, - STATE(4232), 1, + STATE(3961), 1, sym_comment, - STATE(4234), 1, - aux_sym_cell_path_repeat1, - STATE(4320), 1, - sym_path, - ACTIONS(953), 3, + ACTIONS(1519), 7, + ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(951), 14, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1517), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376710,60 +351864,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, - [167277] = 13, + aux_sym_unquoted_token2, + [163032] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7143), 1, - anon_sym_DOLLAR, - ACTIONS(7145), 1, - anon_sym_LPAREN2, - ACTIONS(7149), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7151), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7153), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7155), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7211), 1, - anon_sym_DOT, - STATE(4233), 1, + STATE(3962), 1, sym_comment, - STATE(5012), 1, - sym__immediate_decimal, - ACTIONS(1431), 2, - sym_identifier, - anon_sym_DASH, - STATE(5008), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1441), 8, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [167326] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7213), 1, + ACTIONS(1048), 2, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(4320), 1, - sym_path, - STATE(4234), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(957), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(955), 14, + ACTIONS(1050), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376775,17 +351887,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [167361] = 4, + anon_sym_QMARK2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [163063] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2255), 1, + ACTIONS(1843), 1, anon_sym_DASH, - STATE(4235), 1, + STATE(3963), 1, sym_comment, - ACTIONS(2257), 19, + ACTIONS(1845), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376805,18 +351920,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [167392] = 6, - ACTIONS(247), 1, + [163094] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1569), 1, - aux_sym_unquoted_token2, - ACTIONS(7216), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7218), 1, + ACTIONS(6983), 1, aux_sym__immediate_decimal_token2, - STATE(4236), 1, + STATE(3964), 1, + sym_comment, + ACTIONS(1707), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1705), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [163127] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2400), 1, + anon_sym_DASH, + STATE(3965), 1, sym_comment, - ACTIONS(1571), 17, + ACTIONS(2402), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376829,30 +351968,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - [167427] = 8, - ACTIONS(3), 1, + [163158] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7207), 1, - anon_sym_DOT, - STATE(4237), 1, + ACTIONS(2364), 1, + anon_sym_DASH, + STATE(3966), 1, sym_comment, - STATE(4278), 1, - aux_sym_cell_path_repeat1, - STATE(4507), 1, - sym_path, - STATE(4638), 1, - sym_cell_path, - ACTIONS(1603), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1599), 12, + ACTIONS(2366), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376864,19 +351994,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [167466] = 5, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [163189] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7220), 1, - anon_sym_QMARK2, - STATE(4238), 1, + ACTIONS(2404), 1, + anon_sym_DASH, + STATE(3967), 1, sym_comment, - ACTIONS(970), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(972), 17, - ts_builtin_sym_end, + ACTIONS(2406), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376888,23 +352021,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [167499] = 5, + [163220] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7222), 1, - anon_sym_QMARK2, - STATE(4239), 1, + ACTIONS(1859), 1, + anon_sym_DASH, + STATE(3968), 1, sym_comment, - ACTIONS(980), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(982), 17, - ts_builtin_sym_end, + ACTIONS(1861), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376916,39 +352048,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [167532] = 13, + [163251] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1429), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(7145), 1, + ACTIONS(6848), 1, anon_sym_LPAREN2, - ACTIONS(7224), 1, + ACTIONS(6856), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6858), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6910), 1, anon_sym_DOLLAR, - ACTIONS(7226), 1, + ACTIONS(6985), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7228), 1, + ACTIONS(6987), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7230), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7232), 1, - aux_sym__immediate_decimal_token5, - STATE(4240), 1, + STATE(3969), 1, sym_comment, - STATE(5043), 1, + STATE(5061), 1, sym__immediate_decimal, - ACTIONS(1413), 2, + ACTIONS(1505), 2, sym_identifier, anon_sym_DASH, - STATE(5438), 2, + STATE(5060), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1427), 8, + ACTIONS(1515), 9, + anon_sym_EQ, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -376957,22 +352091,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [167581] = 6, - ACTIONS(3), 1, + [163298] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7234), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7236), 1, - aux_sym__immediate_decimal_token2, - STATE(4241), 1, + ACTIONS(1867), 1, + anon_sym_DASH, + STATE(3970), 1, sym_comment, - ACTIONS(1571), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1569), 13, + ACTIONS(1869), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376984,16 +352110,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [167616] = 4, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [163329] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2363), 1, + ACTIONS(1871), 1, anon_sym_DASH, - STATE(4242), 1, + STATE(3971), 1, sym_comment, - ACTIONS(2365), 19, + ACTIONS(1873), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377013,12 +352145,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [167647] = 4, + [163360] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4243), 1, + STATE(3972), 1, sym_comment, - ACTIONS(1483), 7, + ACTIONS(1499), 7, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, @@ -377026,7 +352158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1481), 13, + ACTIONS(1497), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377040,14 +352172,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [167678] = 4, - ACTIONS(247), 1, + [163391] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2326), 1, - anon_sym_DASH, - STATE(4244), 1, + ACTIONS(1587), 1, + sym__space, + ACTIONS(4433), 1, + anon_sym_DOT_DOT2, + ACTIONS(6870), 1, + sym_filesize_unit, + ACTIONS(6872), 1, + sym_duration_unit, + ACTIONS(6874), 1, + aux_sym_unquoted_token2, + STATE(3973), 1, sym_comment, - ACTIONS(2328), 19, + ACTIONS(4435), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1575), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377060,21 +352203,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [167709] = 4, + [163432] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2367), 1, + ACTIONS(2443), 1, anon_sym_DASH, - STATE(4245), 1, + STATE(3974), 1, sym_comment, - ACTIONS(2369), 19, + ACTIONS(2445), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377094,14 +352231,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [167740] = 4, + [163463] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1835), 1, + ACTIONS(2408), 1, anon_sym_DASH, - STATE(4246), 1, + STATE(3975), 1, sym_comment, - ACTIONS(1837), 19, + ACTIONS(2410), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377121,47 +352258,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [167771] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7238), 1, - anon_sym_DOT, - ACTIONS(7240), 1, - aux_sym__immediate_decimal_token2, - STATE(4247), 1, - sym_comment, - ACTIONS(1591), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1589), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [167806] = 6, + [163494] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1589), 1, - aux_sym_unquoted_token2, - ACTIONS(7242), 1, - anon_sym_DOT, - ACTIONS(7244), 1, - aux_sym__immediate_decimal_token2, - STATE(4248), 1, + ACTIONS(1890), 1, + anon_sym_DASH, + STATE(3976), 1, sym_comment, - ACTIONS(1591), 17, + ACTIONS(1892), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377174,27 +352278,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - [167841] = 7, + [163525] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1711), 1, - anon_sym_LPAREN2, - ACTIONS(1719), 1, - aux_sym_unquoted_token2, - ACTIONS(7246), 1, - anon_sym_DOT_DOT2, - STATE(4249), 1, + ACTIONS(2372), 1, + anon_sym_DASH, + STATE(3977), 1, sym_comment, - ACTIONS(7248), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1717), 15, - ts_builtin_sym_end, + ACTIONS(2374), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377206,17 +352304,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [167878] = 4, + [163556] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1006), 1, + ACTIONS(2412), 1, anon_sym_DASH, - STATE(4250), 1, + STATE(3978), 1, sym_comment, - ACTIONS(1008), 19, + ACTIONS(2414), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377236,14 +352339,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [167909] = 4, + [163587] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1899), 1, + ACTIONS(2416), 1, anon_sym_DASH, - STATE(4251), 1, + STATE(3979), 1, sym_comment, - ACTIONS(1901), 19, + ACTIONS(2418), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377263,14 +352366,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [167940] = 4, + [163618] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2371), 1, + ACTIONS(1894), 1, anon_sym_DASH, - STATE(4252), 1, + STATE(3980), 1, sym_comment, - ACTIONS(2373), 19, + ACTIONS(1896), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377290,34 +352393,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [167971] = 13, + [163649] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1457), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(7145), 1, + ACTIONS(6848), 1, anon_sym_LPAREN2, - ACTIONS(7224), 1, + ACTIONS(6856), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6858), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6910), 1, anon_sym_DOLLAR, - ACTIONS(7226), 1, + ACTIONS(6985), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7228), 1, + ACTIONS(6987), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7230), 1, + STATE(3981), 1, + sym_comment, + STATE(5073), 1, + sym__immediate_decimal, + ACTIONS(1617), 2, + sym_identifier, + anon_sym_DASH, + STATE(5072), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1619), 9, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [163696] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6848), 1, + anon_sym_LPAREN2, + ACTIONS(6856), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7232), 1, + ACTIONS(6858), 1, aux_sym__immediate_decimal_token5, - STATE(4253), 1, + ACTIONS(6910), 1, + anon_sym_DOLLAR, + ACTIONS(6985), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6987), 1, + aux_sym__immediate_decimal_token3, + STATE(3982), 1, sym_comment, - STATE(5092), 1, + STATE(5075), 1, sym__immediate_decimal, - ACTIONS(1443), 2, + ACTIONS(1621), 2, sym_identifier, anon_sym_DASH, - STATE(5441), 2, + STATE(5074), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1455), 8, + ACTIONS(1623), 9, + anon_sym_EQ, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -377326,14 +352463,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [168020] = 4, + [163743] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2332), 1, + ACTIONS(1945), 1, anon_sym_DASH, - STATE(4254), 1, + STATE(3983), 1, sym_comment, - ACTIONS(2334), 19, + ACTIONS(1947), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377353,99 +352490,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [168051] = 6, + [163774] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7250), 1, - anon_sym_DOT, - ACTIONS(7252), 1, - aux_sym__immediate_decimal_token2, - STATE(4255), 1, - sym_comment, - ACTIONS(1473), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1475), 12, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + ACTIONS(6848), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [168086] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7254), 1, + ACTIONS(6856), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6858), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6910), 1, + anon_sym_DOLLAR, + ACTIONS(6985), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7256), 1, - aux_sym__immediate_decimal_token2, - STATE(4256), 1, + ACTIONS(6987), 1, + aux_sym__immediate_decimal_token3, + STATE(3984), 1, sym_comment, - ACTIONS(1481), 6, + STATE(5077), 1, + sym__immediate_decimal, + ACTIONS(1561), 2, sym_identifier, anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1483), 12, + STATE(5076), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1563), 9, + anon_sym_EQ, sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [168121] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1770), 1, - anon_sym_DASH, - STATE(4257), 1, - sym_comment, - ACTIONS(1772), 19, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [168152] = 4, + [163821] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2315), 1, + ACTIONS(2420), 1, anon_sym_DASH, - STATE(4258), 1, + STATE(3985), 1, sym_comment, - ACTIONS(2317), 19, + ACTIONS(2422), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377465,14 +352552,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [168183] = 4, + [163852] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2336), 1, + ACTIONS(2424), 1, anon_sym_DASH, - STATE(4259), 1, + STATE(3986), 1, sym_comment, - ACTIONS(2338), 19, + ACTIONS(2426), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377492,12 +352579,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [168214] = 4, + [163883] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4260), 1, + STATE(3987), 1, sym_comment, - ACTIONS(1475), 7, + ACTIONS(1567), 7, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, @@ -377505,7 +352592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1473), 13, + ACTIONS(1565), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377519,14 +352606,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [168245] = 4, + [163914] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2379), 1, + ACTIONS(1949), 1, anon_sym_DASH, - STATE(4261), 1, + STATE(3988), 1, sym_comment, - ACTIONS(2381), 19, + ACTIONS(1951), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377546,14 +352633,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [168276] = 4, + [163945] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2251), 1, + ACTIONS(2428), 1, anon_sym_DASH, - STATE(4262), 1, + STATE(3989), 1, sym_comment, - ACTIONS(2253), 19, + ACTIONS(2430), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377573,14 +352660,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [168307] = 4, - ACTIONS(247), 1, + [163976] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2303), 1, - anon_sym_DASH, - STATE(4263), 1, + STATE(3990), 1, sym_comment, - ACTIONS(2305), 19, + ACTIONS(1641), 7, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1639), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377592,22 +352685,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [168338] = 4, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [164007] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2340), 1, + ACTIONS(2432), 1, anon_sym_DASH, - STATE(4264), 1, + STATE(3991), 1, sym_comment, - ACTIONS(2342), 19, + ACTIONS(2434), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377627,14 +352714,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [168369] = 4, + [164038] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1778), 1, - anon_sym_DASH, - STATE(4265), 1, + ACTIONS(1798), 1, + anon_sym_LPAREN2, + ACTIONS(1806), 1, + aux_sym_unquoted_token2, + ACTIONS(6989), 1, + anon_sym_DOT_DOT2, + STATE(3992), 1, sym_comment, - ACTIONS(1780), 19, + ACTIONS(6991), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1804), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377646,22 +352741,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [168400] = 4, + [164075] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2344), 1, - anon_sym_DASH, - STATE(4266), 1, + STATE(3993), 1, sym_comment, - ACTIONS(2346), 19, + ACTIONS(1705), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1707), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377673,22 +352765,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [168431] = 4, - ACTIONS(247), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [164106] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1879), 1, - anon_sym_DASH, - STATE(4267), 1, + ACTIONS(6972), 1, + anon_sym_DOT, + STATE(3994), 1, sym_comment, - ACTIONS(1881), 19, + STATE(4026), 1, + aux_sym_cell_path_repeat1, + STATE(4249), 1, + sym_path, + STATE(4316), 1, + sym_cell_path, + ACTIONS(1629), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1625), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377700,22 +352801,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [168462] = 4, - ACTIONS(247), 1, + anon_sym_DOT_DOT2, + [164145] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2348), 1, - anon_sym_DASH, - STATE(4268), 1, + ACTIONS(6934), 1, + aux_sym__immediate_decimal_token2, + STATE(3995), 1, sym_comment, - ACTIONS(2350), 19, + ACTIONS(1645), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1643), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377728,21 +352827,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [168493] = 4, - ACTIONS(247), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [164178] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2352), 1, - anon_sym_DASH, - STATE(4269), 1, + ACTIONS(6972), 1, + anon_sym_DOT, + STATE(3996), 1, sym_comment, - ACTIONS(2354), 19, + STATE(4026), 1, + aux_sym_cell_path_repeat1, + STATE(4249), 1, + sym_path, + STATE(4333), 1, + sym_cell_path, + ACTIONS(1013), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1011), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377754,22 +352860,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [168524] = 4, - ACTIONS(247), 1, + anon_sym_DOT_DOT2, + [164217] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1747), 1, - anon_sym_DASH, - STATE(4270), 1, + ACTIONS(6993), 1, + anon_sym_DOT, + ACTIONS(6995), 1, + aux_sym__immediate_decimal_token2, + STATE(3997), 1, sym_comment, - ACTIONS(1749), 19, + ACTIONS(1645), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1643), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377781,22 +352888,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [168555] = 4, - ACTIONS(247), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [164252] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1855), 1, - anon_sym_DASH, - STATE(4271), 1, + ACTIONS(6904), 1, + anon_sym_DOT, + STATE(3937), 1, + aux_sym_cell_path_repeat1, + STATE(3998), 1, sym_comment, - ACTIONS(1857), 19, + STATE(4096), 1, + sym_path, + ACTIONS(1019), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1017), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377809,21 +352918,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [168586] = 4, + anon_sym_DOT_DOT2, + [164289] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1796), 1, + ACTIONS(6951), 1, + aux_sym__immediate_decimal_token2, + STATE(3999), 1, + sym_comment, + ACTIONS(1497), 6, + sym_identifier, anon_sym_DASH, - STATE(4272), 1, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token2, + ACTIONS(1499), 13, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [164322] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4000), 1, sym_comment, - ACTIONS(1798), 19, + ACTIONS(1643), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1645), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377835,22 +352969,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [168617] = 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [164353] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2383), 1, + ACTIONS(1879), 1, anon_sym_DASH, - STATE(4273), 1, + STATE(4001), 1, sym_comment, - ACTIONS(2385), 19, + ACTIONS(1881), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377870,18 +353002,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [168648] = 5, - ACTIONS(3), 1, + [164384] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_QMARK2, - STATE(4274), 1, + STATE(4002), 1, sym_comment, - ACTIONS(972), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(970), 15, + ACTIONS(1755), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1757), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377893,83 +353023,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [168680] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7260), 1, - anon_sym_DOT, - ACTIONS(7262), 1, - aux_sym__immediate_decimal_token2, - STATE(4275), 1, - sym_comment, - ACTIONS(1473), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1475), 11, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [168714] = 12, + [164415] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7145), 1, + ACTIONS(5458), 1, anon_sym_LPAREN2, - ACTIONS(7153), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7155), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7224), 1, - anon_sym_DOLLAR, - ACTIONS(7264), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7266), 1, - aux_sym__immediate_decimal_token3, - STATE(4276), 1, + ACTIONS(6997), 1, + anon_sym_DOT_DOT2, + ACTIONS(7001), 1, + sym_filesize_unit, + ACTIONS(7003), 1, + sym_duration_unit, + ACTIONS(7005), 1, + aux_sym__unquoted_in_list_token2, + STATE(4003), 1, sym_comment, - STATE(5434), 1, - sym__immediate_decimal, - ACTIONS(1555), 2, + STATE(7333), 1, + sym__expr_parenthesized_immediate, + ACTIONS(1575), 2, sym_identifier, anon_sym_DASH, - STATE(5432), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1557), 8, + ACTIONS(6999), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1587), 10, + anon_sym_EQ, sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [168760] = 4, - ACTIONS(3), 1, + [164460] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4277), 1, + ACTIONS(2376), 1, + anon_sym_DASH, + STATE(4004), 1, sym_comment, - ACTIONS(1650), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1648), 15, + ACTIONS(2378), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377982,26 +353083,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [168790] = 7, - ACTIONS(3), 1, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [164491] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7207), 1, - anon_sym_DOT, - STATE(4278), 1, + ACTIONS(1085), 1, + anon_sym_DOT_DOT2, + STATE(4005), 1, sym_comment, - STATE(4279), 1, - aux_sym_cell_path_repeat1, - STATE(4507), 1, - sym_path, - ACTIONS(953), 4, - ts_builtin_sym_end, - sym__space, + ACTIONS(1087), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(951), 12, + ACTIONS(1078), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378013,23 +353112,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [168826] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [164523] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7268), 1, - anon_sym_DOT, - STATE(4507), 1, - sym_path, - STATE(4279), 2, + ACTIONS(4888), 1, + anon_sym_DASH, + STATE(4006), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(957), 4, + ACTIONS(4886), 18, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(955), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378041,95 +353137,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [168860] = 12, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + [164553] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7145), 1, - anon_sym_LPAREN2, - ACTIONS(7153), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7155), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7224), 1, - anon_sym_DOLLAR, - ACTIONS(7264), 1, + ACTIONS(7007), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7266), 1, - aux_sym__immediate_decimal_token3, - STATE(4280), 1, + ACTIONS(7009), 1, + aux_sym__immediate_decimal_token2, + STATE(4007), 1, sym_comment, - STATE(5439), 1, - sym__immediate_decimal, - ACTIONS(1501), 2, + ACTIONS(1631), 4, sym_identifier, anon_sym_DASH, - STATE(5436), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1509), 8, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1633), 13, + anon_sym_EQ, sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [168906] = 13, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [164587] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1457), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(7145), 1, - anon_sym_LPAREN2, - ACTIONS(7224), 1, - anon_sym_DOLLAR, - ACTIONS(7271), 1, + ACTIONS(1631), 1, + aux_sym_unquoted_token2, + ACTIONS(7011), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7273), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7275), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7277), 1, - aux_sym__immediate_decimal_token5, - STATE(4281), 1, + ACTIONS(7013), 1, + aux_sym__immediate_decimal_token2, + STATE(4008), 1, sym_comment, - STATE(5364), 1, - sym__immediate_decimal, - ACTIONS(1443), 2, - sym_identifier, - anon_sym_DASH, - STATE(5441), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1455), 7, + ACTIONS(1633), 16, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [168954] = 6, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + [164621] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7279), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7281), 1, - aux_sym__immediate_decimal_token2, - STATE(4282), 1, + STATE(4009), 1, sym_comment, - ACTIONS(1481), 6, + ACTIONS(1517), 6, sym_identifier, anon_sym_DASH, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym__unquoted_in_list_token2, - ACTIONS(1483), 11, + ACTIONS(1519), 13, + anon_sym_EQ, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, @@ -378139,17 +353225,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [168988] = 4, + [164651] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4283), 1, - sym_comment, - ACTIONS(1723), 4, - sym__space, + ACTIONS(1495), 1, + aux_sym_unquoted_token2, + ACTIONS(1788), 1, anon_sym_LPAREN2, + ACTIONS(1794), 1, + sym__space, + ACTIONS(7015), 1, + anon_sym_DOT_DOT2, + STATE(4010), 1, + sym_comment, + ACTIONS(7017), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1721), 15, + ACTIONS(1786), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378163,21 +353255,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, + [164689] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7019), 1, + anon_sym_DOT, + STATE(4011), 1, + sym_comment, + STATE(4078), 1, + aux_sym_cell_path_repeat1, + STATE(4383), 1, + sym_path, + STATE(4466), 1, + sym_cell_path, + ACTIONS(1686), 2, + anon_sym_DASH, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [169018] = 6, + ACTIONS(1688), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [164727] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1569), 1, + STATE(4012), 1, + sym_comment, + ACTIONS(1349), 9, + aux_sym_cmd_identifier_token39, + sym__newline, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + aux_sym_expr_unary_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(1345), 10, + anon_sym_true, + anon_sym_false, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + sym_identifier, + anon_sym_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [164757] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1798), 1, + anon_sym_LPAREN2, + ACTIONS(1804), 1, + sym__space, + ACTIONS(1806), 1, aux_sym_unquoted_token2, - ACTIONS(7283), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7285), 1, - aux_sym__immediate_decimal_token2, - STATE(4284), 1, + ACTIONS(7021), 1, + anon_sym_DOT_DOT2, + STATE(4013), 1, sym_comment, - ACTIONS(1571), 16, - ts_builtin_sym_end, + ACTIONS(7023), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1796), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378189,18 +353339,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - [169052] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [164795] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3487), 1, - anon_sym_DASH, - STATE(4285), 1, + STATE(4014), 1, sym_comment, - ACTIONS(3485), 18, + ACTIONS(1060), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1062), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -378213,24 +353362,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - [169082] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [164825] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7287), 1, - anon_sym_QMARK2, - STATE(4286), 1, + ACTIONS(4433), 1, + anon_sym_DOT_DOT2, + ACTIONS(6926), 1, + sym_filesize_unit, + ACTIONS(6928), 1, + sym_duration_unit, + ACTIONS(6930), 1, + aux_sym_unquoted_token2, + STATE(4015), 1, sym_comment, - ACTIONS(982), 3, + ACTIONS(1587), 2, + ts_builtin_sym_end, sym__space, + ACTIONS(4435), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(980), 15, + ACTIONS(1575), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378242,47 +353398,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [169114] = 5, - ACTIONS(3), 1, + [164865] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7240), 1, - aux_sym__immediate_decimal_token2, - STATE(4287), 1, + STATE(4016), 1, sym_comment, - ACTIONS(1591), 5, - ts_builtin_sym_end, - sym__space, + ACTIONS(1565), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token2, + ACTIONS(1567), 13, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1589), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [169146] = 5, + [164895] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1589), 1, - aux_sym_unquoted_token2, - ACTIONS(7244), 1, - aux_sym__immediate_decimal_token2, - STATE(4288), 1, + ACTIONS(2303), 1, + anon_sym_DASH, + ACTIONS(7025), 1, + anon_sym_LBRACK2, + STATE(4017), 1, sym_comment, - ACTIONS(1591), 17, + ACTIONS(2307), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378294,22 +353446,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - [169178] = 4, - ACTIONS(247), 1, + [164927] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4289), 1, + STATE(4018), 1, sym_comment, - ACTIONS(994), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(996), 17, - ts_builtin_sym_end, + ACTIONS(1757), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1755), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378321,22 +353473,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [169208] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [164957] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2235), 1, - anon_sym_DASH, - ACTIONS(7289), 1, - anon_sym_LBRACK2, - STATE(4290), 1, + ACTIONS(1085), 1, + anon_sym_DOT_DOT2, + STATE(4019), 1, sym_comment, - ACTIONS(2239), 17, - ts_builtin_sym_end, + ACTIONS(1087), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7027), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378348,22 +353499,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [169240] = 5, - ACTIONS(247), 1, + [164989] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1015), 1, - anon_sym_DOT_DOT2, - STATE(4291), 1, + STATE(4020), 1, sym_comment, - ACTIONS(1017), 2, + ACTIONS(1633), 4, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1008), 16, + ACTIONS(1631), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378377,20 +353528,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [169272] = 4, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [165019] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4292), 1, + ACTIONS(7029), 1, + anon_sym_QMARK2, + STATE(4021), 1, sym_comment, - ACTIONS(1591), 4, + ACTIONS(1036), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1589), 15, + ACTIONS(1034), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378405,17 +353556,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [169302] = 5, + anon_sym_DOT, + [165051] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1648), 1, - aux_sym_unquoted_token2, - ACTIONS(7291), 1, - aux_sym__immediate_decimal_token2, - STATE(4293), 1, + STATE(4022), 1, sym_comment, - ACTIONS(1650), 17, + ACTIONS(1052), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1054), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378427,23 +353578,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - [169334] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [165081] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4294), 1, + ACTIONS(7031), 1, + anon_sym_DOT, + STATE(4249), 1, + sym_path, + STATE(4023), 2, sym_comment, - ACTIONS(1571), 4, + aux_sym_cell_path_repeat1, + ACTIONS(1023), 4, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1569), 15, + ACTIONS(1021), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378455,20 +353610,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [169364] = 4, + [165115] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(4295), 1, + ACTIONS(1705), 1, + aux_sym_unquoted_token2, + ACTIONS(7034), 1, + aux_sym__immediate_decimal_token2, + STATE(4024), 1, sym_comment, - ACTIONS(990), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(992), 17, - ts_builtin_sym_end, + ACTIONS(1707), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378480,22 +353632,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [169394] = 5, + anon_sym_LPAREN2, + [165147] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1015), 1, + ACTIONS(7036), 1, + anon_sym_DOT, + ACTIONS(7038), 1, + aux_sym__immediate_decimal_token2, + STATE(4025), 1, + sym_comment, + ACTIONS(1643), 4, + sym_identifier, + anon_sym_DASH, anon_sym_DOT_DOT2, - STATE(4296), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1645), 13, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [165181] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6972), 1, + anon_sym_DOT, + STATE(4023), 1, + aux_sym_cell_path_repeat1, + STATE(4026), 1, sym_comment, - ACTIONS(1017), 2, + STATE(4249), 1, + sym_path, + ACTIONS(1019), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7293), 16, + ACTIONS(1017), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378507,35 +353694,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [169426] = 11, + anon_sym_DOT_DOT2, + [165217] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5625), 1, - anon_sym_LPAREN2, - ACTIONS(7295), 1, + STATE(4027), 1, + sym_comment, + ACTIONS(1639), 6, + sym_identifier, + anon_sym_DASH, anon_sym_DOT_DOT2, - ACTIONS(7299), 1, sym_filesize_unit, - ACTIONS(7301), 1, sym_duration_unit, - ACTIONS(7303), 1, aux_sym__unquoted_in_list_token2, - STATE(4297), 1, - sym_comment, - STATE(7549), 1, - sym__expr_parenthesized_immediate, - ACTIONS(1525), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(7297), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1537), 9, + ACTIONS(1641), 13, + anon_sym_EQ, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -378545,18 +353718,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [169470] = 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [165247] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1589), 1, + ACTIONS(1643), 1, aux_sym_unquoted_token2, - ACTIONS(7305), 1, + ACTIONS(7040), 1, anon_sym_DOT, - ACTIONS(7307), 1, + ACTIONS(7042), 1, aux_sym__immediate_decimal_token2, - STATE(4298), 1, + STATE(4028), 1, sym_comment, - ACTIONS(1591), 16, + ACTIONS(1645), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -378573,51 +353749,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_LPAREN2, - [169504] = 12, + [165281] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7145), 1, - anon_sym_LPAREN2, - ACTIONS(7153), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7155), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7224), 1, - anon_sym_DOLLAR, - ACTIONS(7264), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7266), 1, - aux_sym__immediate_decimal_token3, - STATE(4299), 1, + ACTIONS(7019), 1, + anon_sym_DOT, + STATE(4029), 1, sym_comment, - STATE(5413), 1, - sym__immediate_decimal, - ACTIONS(1431), 2, + STATE(4078), 1, + aux_sym_cell_path_repeat1, + STATE(4383), 1, + sym_path, + STATE(4504), 1, + sym_cell_path, + ACTIONS(1625), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(1629), 13, + anon_sym_EQ, sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [165319] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7019), 1, + anon_sym_DOT, + STATE(4030), 1, + sym_comment, + STATE(4078), 1, + aux_sym_cell_path_repeat1, + STATE(4383), 1, + sym_path, + STATE(4519), 1, + sym_cell_path, + ACTIONS(1011), 2, anon_sym_DASH, - STATE(5453), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1441), 8, + anon_sym_DOT_DOT2, + ACTIONS(1013), 13, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [169550] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [165357] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1015), 1, + ACTIONS(1085), 1, anon_sym_DOT_DOT2, - STATE(4300), 1, + STATE(4031), 1, sym_comment, - ACTIONS(1017), 2, + ACTIONS(1087), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7293), 16, + ACTIONS(7027), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378634,26 +353836,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [169582] = 9, + [165389] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4694), 1, - anon_sym_DOT_DOT2, - ACTIONS(7179), 1, - sym_filesize_unit, - ACTIONS(7181), 1, - sym_duration_unit, - ACTIONS(7183), 1, - aux_sym_unquoted_token2, - STATE(4301), 1, + STATE(4032), 1, sym_comment, - ACTIONS(1537), 2, - ts_builtin_sym_end, + ACTIONS(1042), 3, sym__space, - ACTIONS(4696), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1525), 11, + ACTIONS(1040), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378665,46 +353857,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [169622] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3375), 1, - anon_sym_DASH, - STATE(4302), 1, - sym_comment, - ACTIONS(3373), 18, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - [169652] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [165419] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7309), 1, + ACTIONS(7044), 1, aux_sym__immediate_decimal_token2, - STATE(4303), 1, + STATE(4033), 1, sym_comment, - ACTIONS(1650), 5, + ACTIONS(1707), 5, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1648), 13, + ACTIONS(1705), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378718,17 +353889,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [169684] = 5, - ACTIONS(247), 1, + [165451] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1015), 1, - anon_sym_DOT_DOT2, - STATE(4304), 1, + STATE(4034), 1, sym_comment, - ACTIONS(1017), 2, + ACTIONS(1707), 4, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7293), 16, + ACTIONS(1705), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378742,87 +353913,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [169716] = 4, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [165481] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4305), 1, + STATE(4035), 1, sym_comment, - ACTIONS(1277), 9, - aux_sym_cmd_identifier_token39, - sym__newline, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - aux_sym_expr_unary_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(1273), 10, - anon_sym_true, - anon_sym_false, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, + ACTIONS(1497), 6, sym_identifier, anon_sym_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [169746] = 13, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1429), 1, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, aux_sym__unquoted_in_list_token2, - ACTIONS(7145), 1, - anon_sym_LPAREN2, - ACTIONS(7224), 1, - anon_sym_DOLLAR, - ACTIONS(7271), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7273), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7275), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7277), 1, - aux_sym__immediate_decimal_token5, - STATE(4306), 1, - sym_comment, - STATE(5339), 1, - sym__immediate_decimal, - ACTIONS(1413), 2, - sym_identifier, - anon_sym_DASH, - STATE(5438), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1427), 7, + ACTIONS(1499), 13, + anon_sym_EQ, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [169794] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1429), 1, - aux_sym_unquoted_token2, - ACTIONS(1692), 1, anon_sym_LPAREN2, - ACTIONS(1698), 1, - sym__space, - ACTIONS(7311), 1, - anon_sym_DOT_DOT2, - STATE(4307), 1, - sym_comment, - ACTIONS(7313), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1690), 13, + [165511] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4926), 1, + anon_sym_DASH, + STATE(4036), 1, + sym_comment, + ACTIONS(4924), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378834,25 +353961,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [169832] = 8, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + [165541] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1711), 1, - anon_sym_LPAREN2, - ACTIONS(1717), 1, - sym__space, - ACTIONS(1719), 1, - aux_sym_unquoted_token2, - ACTIONS(7315), 1, - anon_sym_DOT_DOT2, - STATE(4308), 1, + ACTIONS(7046), 1, + anon_sym_QMARK2, + STATE(4037), 1, sym_comment, - ACTIONS(7317), 2, + ACTIONS(1030), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1709), 13, + ACTIONS(1028), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378866,70 +353992,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [169870] = 5, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [165573] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7252), 1, + ACTIONS(1643), 1, + aux_sym_unquoted_token2, + ACTIONS(6981), 1, aux_sym__immediate_decimal_token2, - STATE(4309), 1, + STATE(4038), 1, sym_comment, - ACTIONS(1473), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1475), 12, + ACTIONS(1645), 17, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [169902] = 5, + [165605] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7319), 1, - aux_sym__immediate_decimal_token2, - STATE(4310), 1, + ACTIONS(7050), 1, + anon_sym_EQ, + ACTIONS(7052), 1, + sym__newline, + ACTIONS(7054), 1, + anon_sym_COLON, + ACTIONS(7056), 1, + anon_sym_LPAREN, + ACTIONS(7058), 1, + anon_sym_COMMA, + ACTIONS(7060), 1, + anon_sym_DASH, + STATE(4039), 1, sym_comment, - ACTIONS(1519), 6, + STATE(4182), 1, + sym_flag_capsule, + STATE(4183), 1, + aux_sym_parameter_repeat1, + STATE(5145), 1, + aux_sym_parameter_repeat2, + STATE(6214), 1, + aux_sym_shebang_repeat1, + STATE(5091), 2, + sym_param_type, + sym_param_value, + ACTIONS(7048), 7, sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1521), 12, - sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [169934] = 4, + [165655] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4311), 1, + STATE(4040), 1, sym_comment, - ACTIONS(968), 3, + ACTIONS(1645), 4, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(966), 16, + ACTIONS(1643), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378943,19 +354081,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_QMARK2, anon_sym_DOT_DOT2, - anon_sym_DOT, - [169964] = 4, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [165685] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4312), 1, + STATE(4041), 1, sym_comment, - ACTIONS(978), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(976), 16, + ACTIONS(1056), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1058), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378967,21 +354104,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [169994] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [165715] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4313), 1, + STATE(4042), 1, sym_comment, - ACTIONS(964), 3, + ACTIONS(1050), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(962), 16, + ACTIONS(1048), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378998,50 +354135,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_DOT_DOT2, anon_sym_DOT, - [170024] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7145), 1, - anon_sym_LPAREN2, - ACTIONS(7153), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7155), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7224), 1, - anon_sym_DOLLAR, - ACTIONS(7264), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7266), 1, - aux_sym__immediate_decimal_token3, - STATE(4314), 1, - sym_comment, - STATE(5431), 1, - sym__immediate_decimal, - ACTIONS(1551), 2, - sym_identifier, - anon_sym_DASH, - STATE(5423), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1553), 8, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [170070] = 4, + [165745] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(4315), 1, - sym_comment, - ACTIONS(986), 2, + ACTIONS(1085), 1, anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(988), 17, - ts_builtin_sym_end, + STATE(4043), 1, + sym_comment, + ACTIONS(1087), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7027), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379053,20 +354157,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [170100] = 4, - ACTIONS(247), 1, + [165777] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2379), 1, - anon_sym_DASH, - STATE(4316), 1, + ACTIONS(6995), 1, + aux_sym__immediate_decimal_token2, + STATE(4044), 1, sym_comment, - ACTIONS(2381), 17, + ACTIONS(1645), 5, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1643), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379078,20 +354187,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [170129] = 4, - ACTIONS(247), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [165809] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2263), 1, - anon_sym_DASH, - STATE(4317), 1, + STATE(4045), 1, sym_comment, - ACTIONS(2265), 17, - ts_builtin_sym_end, + ACTIONS(1046), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1044), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379103,20 +354210,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [170158] = 4, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [165839] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_DASH, - STATE(4318), 1, + ACTIONS(1919), 1, + sym__space, + ACTIONS(7062), 1, + anon_sym_DOT, + STATE(4046), 1, sym_comment, - ACTIONS(2297), 17, - ts_builtin_sym_end, + STATE(4194), 1, + aux_sym_cell_path_repeat1, + STATE(4478), 1, + sym_path, + STATE(4641), 1, + sym_cell_path, + ACTIONS(1917), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379128,22 +354242,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [170187] = 5, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [165876] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1589), 1, - aux_sym_unquoted_token2, - ACTIONS(7307), 1, - aux_sym__immediate_decimal_token2, - STATE(4319), 1, + ACTIONS(1951), 1, + sym__space, + ACTIONS(7062), 1, + anon_sym_DOT, + STATE(4047), 1, sym_comment, - ACTIONS(1591), 16, - ts_builtin_sym_end, + STATE(4194), 1, + aux_sym_cell_path_repeat1, + STATE(4478), 1, + sym_path, + STATE(4705), 1, + sym_cell_path, + ACTIONS(1949), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379155,20 +354271,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - [170218] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [165913] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4320), 1, - sym_comment, - ACTIONS(996), 3, + ACTIONS(1013), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(994), 15, + ACTIONS(7062), 1, + anon_sym_DOT, + STATE(4048), 1, + sym_comment, + STATE(4194), 1, + aux_sym_cell_path_repeat1, + STATE(4211), 1, + sym_cell_path, + STATE(4478), 1, + sym_path, + ACTIONS(1011), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379182,18 +354302,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [170247] = 5, - ACTIONS(247), 1, + [165950] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1711), 1, - anon_sym_LPAREN2, - ACTIONS(1719), 1, - aux_sym_unquoted_token2, - STATE(4321), 1, + ACTIONS(1967), 1, + sym__space, + ACTIONS(7062), 1, + anon_sym_DOT, + STATE(4049), 1, sym_comment, - ACTIONS(1717), 16, + STATE(4194), 1, + aux_sym_cell_path_repeat1, + STATE(4478), 1, + sym_path, + STATE(4683), 1, + sym_cell_path, + ACTIONS(1965), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379207,18 +354331,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [170278] = 4, - ACTIONS(247), 1, + [165987] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2303), 1, - anon_sym_DASH, - STATE(4322), 1, + STATE(4050), 1, sym_comment, - ACTIONS(2305), 17, + ACTIONS(1645), 5, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1643), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379230,27 +354354,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [170307] = 8, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [166016] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1749), 1, + STATE(4051), 1, + sym_comment, + ACTIONS(1042), 4, + ts_builtin_sym_end, sym__space, - ACTIONS(7321), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1040), 14, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(4323), 1, + [166045] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4052), 1, sym_comment, - STATE(4497), 1, - aux_sym_cell_path_repeat1, - STATE(4815), 1, - sym_path, - STATE(5000), 1, - sym_cell_path, - ACTIONS(1747), 13, + ACTIONS(1046), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1044), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379262,20 +354403,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [170344] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7323), 1, + anon_sym_QMARK2, anon_sym_DOT_DOT2, - STATE(4324), 1, + anon_sym_DOT, + [166074] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4053), 1, sym_comment, - ACTIONS(7325), 2, + ACTIONS(1050), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7293), 15, - ts_builtin_sym_end, + ACTIONS(1048), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379287,19 +354428,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [170375] = 5, - ACTIONS(247), 1, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [166103] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1457), 1, - aux_sym_unquoted_token2, - ACTIONS(2119), 1, - anon_sym_LPAREN2, - STATE(4325), 1, + ACTIONS(1881), 1, + sym__space, + ACTIONS(7062), 1, + anon_sym_DOT, + STATE(4054), 1, sym_comment, - ACTIONS(2121), 16, + STATE(4194), 1, + aux_sym_cell_path_repeat1, + STATE(4478), 1, + sym_path, + STATE(4639), 1, + sym_cell_path, + ACTIONS(1879), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379313,19 +354460,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [170406] = 5, + [166140] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1648), 1, + ACTIONS(1705), 1, aux_sym_unquoted_token2, - ACTIONS(7327), 1, + ACTIONS(7064), 1, aux_sym__immediate_decimal_token2, - STATE(4326), 1, + STATE(4055), 1, sym_comment, - ACTIONS(1650), 16, + ACTIONS(1707), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -379342,16 +354486,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_LPAREN2, - [170437] = 4, + [166171] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4327), 1, + STATE(4056), 1, sym_comment, - ACTIONS(988), 3, + ACTIONS(1633), 5, + ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(986), 15, + ACTIONS(1631), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379363,20 +354509,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT, - [170466] = 4, + aux_sym_unquoted_token2, + [166200] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4328), 1, + ACTIONS(7066), 1, + anon_sym_DOT, + ACTIONS(7068), 1, + aux_sym__immediate_decimal_token2, + STATE(4057), 1, sym_comment, - ACTIONS(992), 3, + ACTIONS(1645), 2, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(990), 15, + anon_sym_LPAREN2, + ACTIONS(1643), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379390,24 +354537,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [170495] = 8, + aux_sym_unquoted_token2, + [166233] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1776), 1, - sym__space, - ACTIONS(7321), 1, - anon_sym_DOT, - STATE(4329), 1, + STATE(4058), 1, sym_comment, - STATE(4497), 1, - aux_sym_cell_path_repeat1, - STATE(4815), 1, - sym_path, - STATE(4972), 1, - sym_cell_path, - ACTIONS(1774), 13, + ACTIONS(1707), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1705), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379419,19 +354561,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [170532] = 4, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [166262] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4330), 1, + STATE(4059), 1, sym_comment, - ACTIONS(2131), 4, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - aux_sym_unquoted_token4, - ACTIONS(2133), 14, + ACTIONS(1062), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1060), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379445,16 +354586,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LPAREN2, - [170561] = 4, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [166291] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1879), 1, - anon_sym_DASH, - STATE(4331), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(4060), 1, sym_comment, - ACTIONS(1881), 17, - ts_builtin_sym_end, + STATE(7570), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4842), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379466,23 +354609,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [170590] = 4, - ACTIONS(3), 1, + [166322] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4332), 1, - sym_comment, - ACTIONS(1591), 5, - ts_builtin_sym_end, - sym__space, + ACTIONS(3914), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1589), 13, + STATE(4061), 1, + sym_comment, + STATE(7570), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4759), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379494,24 +354635,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [170619] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [166353] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1826), 1, - sym__space, - ACTIONS(7321), 1, - anon_sym_DOT, - STATE(4333), 1, - sym_comment, - STATE(4497), 1, - aux_sym_cell_path_repeat1, - STATE(4815), 1, - sym_path, - STATE(4885), 1, - sym_cell_path, - ACTIONS(1824), 13, + STATE(4062), 1, + sym_comment, + ACTIONS(1054), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1052), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379525,14 +354663,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [170656] = 4, - ACTIONS(247), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [166382] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1589), 1, - aux_sym_unquoted_token2, - STATE(4334), 1, + STATE(4063), 1, sym_comment, - ACTIONS(1591), 17, + ACTIONS(1757), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1755), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379544,28 +354688,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - [170685] = 8, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [166411] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1897), 1, - sym__space, - ACTIONS(7321), 1, - anon_sym_DOT, - STATE(4335), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(4064), 1, sym_comment, - STATE(4497), 1, - aux_sym_cell_path_repeat1, - STATE(4815), 1, - sym_path, - STATE(4898), 1, - sym_cell_path, - ACTIONS(1895), 13, + STATE(7570), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4781), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379579,16 +354713,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [170722] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [166442] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1429), 1, - aux_sym_unquoted_token2, - ACTIONS(1692), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - STATE(4336), 1, + STATE(4065), 1, sym_comment, - ACTIONS(1698), 16, + STATE(7570), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4769), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379605,20 +354742,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [170753] = 6, - ACTIONS(3), 1, + [166473] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2091), 1, + ACTIONS(7038), 1, + aux_sym__immediate_decimal_token2, + STATE(4066), 1, + sym_comment, + ACTIONS(1643), 4, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1645), 13, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_LPAREN2, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(4337), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [166504] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4067), 1, sym_comment, - ACTIONS(2089), 3, + ACTIONS(2259), 4, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(2093), 13, + aux_sym_unquoted_token4, + ACTIONS(2261), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379632,14 +354792,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [170786] = 4, + anon_sym_LPAREN2, + [166533] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2311), 1, - anon_sym_DASH, - STATE(4338), 1, + ACTIONS(7070), 1, + anon_sym_DOT_DOT2, + STATE(4068), 1, sym_comment, - ACTIONS(2313), 17, + ACTIONS(7072), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1078), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -379652,20 +354816,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [170815] = 4, + [166564] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1006), 1, + ACTIONS(7074), 1, + aux_sym__immediate_decimal_token2, + STATE(4069), 1, + sym_comment, + ACTIONS(1705), 4, + sym_identifier, anon_sym_DASH, - STATE(4339), 1, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1707), 13, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [166595] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1495), 1, + aux_sym_unquoted_token2, + ACTIONS(1788), 1, + anon_sym_LPAREN2, + ACTIONS(7076), 1, + anon_sym_DOT_DOT2, + STATE(4070), 1, sym_comment, - ACTIONS(1008), 17, + ACTIONS(1794), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(7078), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1786), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379677,19 +354874,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [170844] = 4, - ACTIONS(247), 1, + [166632] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1569), 1, - aux_sym_unquoted_token2, - STATE(4340), 1, + ACTIONS(1915), 1, + sym__space, + ACTIONS(7062), 1, + anon_sym_DOT, + STATE(4071), 1, sym_comment, - ACTIONS(1571), 17, + STATE(4194), 1, + aux_sym_cell_path_repeat1, + STATE(4478), 1, + sym_path, + STATE(4637), 1, + sym_cell_path, + ACTIONS(1913), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379703,26 +354903,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - [170873] = 8, + [166669] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1857), 1, - sym__space, - ACTIONS(7321), 1, + ACTIONS(7062), 1, anon_sym_DOT, - STATE(4341), 1, + ACTIONS(7082), 1, + sym__space, + STATE(4072), 1, sym_comment, - STATE(4497), 1, + STATE(4194), 1, aux_sym_cell_path_repeat1, - STATE(4815), 1, + STATE(4478), 1, sym_path, - STATE(4908), 1, + STATE(4642), 1, sym_cell_path, - ACTIONS(1855), 13, + ACTIONS(7080), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379736,15 +354932,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [170910] = 4, - ACTIONS(247), 1, + [166706] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2348), 1, - anon_sym_DASH, - STATE(4342), 1, + ACTIONS(7084), 1, + anon_sym_QMARK2, + STATE(4073), 1, sym_comment, - ACTIONS(2350), 17, + ACTIONS(1030), 4, ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1028), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379756,20 +354956,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [170939] = 4, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [166737] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2352), 1, - anon_sym_DASH, - STATE(4343), 1, + ACTIONS(1643), 1, + aux_sym_unquoted_token2, + STATE(4074), 1, sym_comment, - ACTIONS(2354), 17, - ts_builtin_sym_end, + ACTIONS(1645), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379781,20 +354977,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [170968] = 4, + anon_sym_LPAREN2, + [166766] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1747), 1, - anon_sym_DASH, - STATE(4344), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(4075), 1, sym_comment, - ACTIONS(1749), 17, - ts_builtin_sym_end, + STATE(7342), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7086), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379806,20 +355004,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [170997] = 4, - ACTIONS(247), 1, + [166797] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2332), 1, - anon_sym_DASH, - STATE(4345), 1, + ACTIONS(7088), 1, + anon_sym_QMARK2, + STATE(4076), 1, sym_comment, - ACTIONS(2334), 17, + ACTIONS(1036), 4, ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1034), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379831,27 +355033,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [171026] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1798), 1, - sym__space, - ACTIONS(7321), 1, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(4346), 1, + [166828] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1631), 1, + aux_sym_unquoted_token2, + STATE(4077), 1, sym_comment, - STATE(4497), 1, - aux_sym_cell_path_repeat1, - STATE(4815), 1, - sym_path, - STATE(4912), 1, - sym_cell_path, - ACTIONS(1796), 13, + ACTIONS(1633), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379865,65 +355056,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [171063] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + [166857] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7262), 1, - aux_sym__immediate_decimal_token2, - STATE(4347), 1, + ACTIONS(7019), 1, + anon_sym_DOT, + STATE(4078), 1, sym_comment, - ACTIONS(1473), 6, - sym_identifier, + STATE(4079), 1, + aux_sym_cell_path_repeat1, + STATE(4383), 1, + sym_path, + ACTIONS(1017), 2, anon_sym_DASH, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1475), 11, + ACTIONS(1019), 13, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [171094] = 4, + [166892] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1648), 1, - aux_sym_unquoted_token2, - STATE(4348), 1, + ACTIONS(7090), 1, + anon_sym_DOT, + STATE(4383), 1, + sym_path, + ACTIONS(1021), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + STATE(4079), 2, sym_comment, - ACTIONS(1650), 17, + aux_sym_cell_path_repeat1, + ACTIONS(1023), 13, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - [171123] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [166925] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2340), 1, + ACTIONS(2384), 1, anon_sym_DASH, - STATE(4349), 1, + STATE(4080), 1, sym_comment, - ACTIONS(2342), 17, + ACTIONS(2386), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -379941,22 +355140,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [171152] = 8, - ACTIONS(3), 1, + [166954] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1810), 1, - sym__space, - ACTIONS(7321), 1, - anon_sym_DOT, - STATE(4350), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(4081), 1, sym_comment, - STATE(4497), 1, - aux_sym_cell_path_repeat1, - STATE(4815), 1, - sym_path, - STATE(4925), 1, - sym_cell_path, - ACTIONS(1808), 13, + STATE(7342), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7086), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379970,14 +355163,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [171189] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [166985] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1721), 1, + ACTIONS(1643), 1, aux_sym_unquoted_token2, - STATE(4351), 1, + ACTIONS(7042), 1, + aux_sym__immediate_decimal_token2, + STATE(4082), 1, sym_comment, - ACTIONS(1723), 17, + ACTIONS(1645), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379989,21 +355188,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, anon_sym_LPAREN2, - [171218] = 4, + [167016] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1855), 1, - anon_sym_DASH, - STATE(4352), 1, + ACTIONS(1705), 1, + aux_sym_unquoted_token2, + STATE(4083), 1, sym_comment, - ACTIONS(1857), 17, - ts_builtin_sym_end, + ACTIONS(1707), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380015,20 +355211,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [171247] = 4, - ACTIONS(247), 1, + anon_sym_LPAREN2, + [167045] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_DASH, - STATE(4353), 1, + ACTIONS(2239), 1, + anon_sym_LPAREN2, + ACTIONS(2241), 1, + aux_sym_unquoted_token4, + STATE(4084), 1, sym_comment, - ACTIONS(1798), 17, - ts_builtin_sym_end, + ACTIONS(1076), 3, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1078), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380040,27 +355242,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [171276] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [167078] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1822), 1, + ACTIONS(1923), 1, sym__space, - ACTIONS(7321), 1, + ACTIONS(7062), 1, anon_sym_DOT, - STATE(4354), 1, + STATE(4085), 1, sym_comment, - STATE(4497), 1, + STATE(4194), 1, aux_sym_cell_path_repeat1, - STATE(4815), 1, + STATE(4478), 1, sym_path, - STATE(4927), 1, + STATE(4748), 1, sym_cell_path, - ACTIONS(1820), 13, + ACTIONS(1921), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380074,22 +355273,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [171313] = 8, + [167115] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1780), 1, - sym__space, - ACTIONS(7321), 1, + ACTIONS(7062), 1, anon_sym_DOT, - STATE(4355), 1, + ACTIONS(7095), 1, + sym__space, + STATE(4086), 1, sym_comment, - STATE(4497), 1, + STATE(4194), 1, aux_sym_cell_path_repeat1, - STATE(4815), 1, + STATE(4478), 1, sym_path, - STATE(4873), 1, + STATE(4752), 1, sym_cell_path, - ACTIONS(1778), 13, + ACTIONS(7093), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380103,15 +355302,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [171350] = 4, - ACTIONS(247), 1, + [167152] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2359), 1, - anon_sym_DASH, - STATE(4356), 1, + ACTIONS(1798), 1, + anon_sym_LPAREN2, + ACTIONS(1806), 1, + aux_sym_unquoted_token2, + ACTIONS(7097), 1, + anon_sym_DOT_DOT2, + STATE(4087), 1, sym_comment, - ACTIONS(2361), 17, + ACTIONS(1804), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(7099), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1796), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380123,19 +355331,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [171379] = 4, + [167189] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1741), 1, + ACTIONS(1076), 1, anon_sym_DASH, - STATE(4357), 1, + STATE(4088), 1, sym_comment, - ACTIONS(1745), 17, + ACTIONS(1078), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -380153,14 +355356,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [171408] = 4, + [167218] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2363), 1, - anon_sym_DASH, - STATE(4358), 1, + ACTIONS(7070), 1, + anon_sym_DOT_DOT2, + STATE(4089), 1, sym_comment, - ACTIONS(2365), 17, + ACTIONS(7072), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7027), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -380173,19 +355379,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [171437] = 4, + [167249] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2367), 1, + ACTIONS(2368), 1, anon_sym_DASH, - STATE(4359), 1, + STATE(4090), 1, sym_comment, - ACTIONS(2369), 17, + ACTIONS(2370), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -380203,14 +355407,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [171466] = 4, + [167278] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1899), 1, - anon_sym_DASH, - STATE(4360), 1, + ACTIONS(7070), 1, + anon_sym_DOT_DOT2, + STATE(4091), 1, sym_comment, - ACTIONS(1901), 17, + ACTIONS(7072), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7027), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -380223,100 +355430,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [171495] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7329), 1, - anon_sym_QMARK2, - STATE(4361), 1, - sym_comment, - ACTIONS(972), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(970), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [171526] = 4, + [167309] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(4362), 1, - sym_comment, - ACTIONS(1021), 3, - anon_sym_GT, - anon_sym_LT2, + ACTIONS(7070), 1, anon_sym_DOT_DOT2, - ACTIONS(1023), 15, - anon_sym_PIPE, - anon_sym_in, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [171555] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4363), 1, + STATE(4092), 1, sym_comment, - ACTIONS(1571), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, + ACTIONS(7072), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1569), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [171584] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7331), 1, - anon_sym_QMARK2, - STATE(4364), 1, - sym_comment, - ACTIONS(982), 4, + ACTIONS(7027), 15, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(980), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380328,18 +355456,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [171615] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [167340] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(4365), 1, + ACTIONS(1755), 1, + aux_sym_unquoted_token2, + STATE(4093), 1, sym_comment, - STATE(7590), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7333), 16, + ACTIONS(1757), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380356,14 +355483,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [171646] = 4, + anon_sym_LPAREN2, + [167369] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1835), 1, + ACTIONS(1961), 1, anon_sym_DASH, - STATE(4366), 1, + STATE(4094), 1, sym_comment, - ACTIONS(1837), 17, + ACTIONS(1963), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -380381,14 +355509,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [171675] = 4, + [167398] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2371), 1, + ACTIONS(2355), 1, anon_sym_DASH, - STATE(4367), 1, + STATE(4095), 1, sym_comment, - ACTIONS(2373), 17, + ACTIONS(2357), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -380406,49 +355534,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [171704] = 6, + [167427] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2099), 1, - anon_sym_LPAREN2, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - STATE(4368), 1, + STATE(4096), 1, sym_comment, - ACTIONS(2097), 3, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(2101), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [171737] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1058), 3, sym__space, - ACTIONS(7321), 1, - anon_sym_DOT, - STATE(4369), 1, - sym_comment, - STATE(4497), 1, - aux_sym_cell_path_repeat1, - STATE(4815), 1, - sym_path, - STATE(4941), 1, - sym_cell_path, - ACTIONS(1741), 13, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1056), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380462,43 +355557,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [171774] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7335), 1, - anon_sym_DOT, - STATE(4370), 1, - sym_comment, - STATE(4509), 1, - aux_sym_cell_path_repeat1, - STATE(4828), 1, - sym_path, - STATE(4906), 1, - sym_cell_path, - ACTIONS(945), 2, - anon_sym_DASH, anon_sym_DOT_DOT2, - ACTIONS(947), 12, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [171811] = 4, + anon_sym_DOT, + [167456] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1839), 1, + ACTIONS(2380), 1, anon_sym_DASH, - STATE(4371), 1, + STATE(4097), 1, sym_comment, - ACTIONS(1841), 17, + ACTIONS(2382), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -380516,49 +355584,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [171840] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1764), 1, - sym__space, - ACTIONS(7321), 1, - anon_sym_DOT, - STATE(4372), 1, - sym_comment, - STATE(4497), 1, - aux_sym_cell_path_repeat1, - STATE(4815), 1, - sym_path, - STATE(4880), 1, - sym_cell_path, - ACTIONS(1762), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [171877] = 6, + [167485] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2099), 1, + ACTIONS(2295), 1, anon_sym_LPAREN2, - ACTIONS(2103), 1, + ACTIONS(2299), 1, aux_sym_unquoted_token4, - STATE(4373), 1, + STATE(4098), 1, sym_comment, - ACTIONS(2105), 3, + ACTIONS(2293), 3, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(2107), 13, + ACTIONS(2297), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380572,49 +355611,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [171910] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7337), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7339), 1, - aux_sym__immediate_decimal_token2, - STATE(4374), 1, - sym_comment, - ACTIONS(1569), 4, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1571), 12, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [171943] = 8, + [167518] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1901), 1, - sym__space, - ACTIONS(7321), 1, - anon_sym_DOT, - STATE(4375), 1, + ACTIONS(2245), 1, + anon_sym_LPAREN2, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + STATE(4099), 1, sym_comment, - STATE(4497), 1, - aux_sym_cell_path_repeat1, - STATE(4815), 1, - sym_path, - STATE(4962), 1, - sym_cell_path, - ACTIONS(1899), 13, + ACTIONS(2243), 3, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(2247), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380628,20 +355638,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [171980] = 6, + [167551] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2081), 1, + ACTIONS(2245), 1, anon_sym_LPAREN2, - ACTIONS(2083), 1, + ACTIONS(2249), 1, aux_sym_unquoted_token4, - STATE(4376), 1, + STATE(4100), 1, sym_comment, - ACTIONS(1006), 3, + ACTIONS(2251), 3, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(1008), 13, + ACTIONS(2253), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380655,22 +355665,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [172013] = 8, - ACTIONS(3), 1, + [167584] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1833), 1, - sym__space, - ACTIONS(7321), 1, - anon_sym_DOT, - STATE(4377), 1, + ACTIONS(2388), 1, + anon_sym_DASH, + STATE(4101), 1, sym_comment, - STATE(4497), 1, - aux_sym_cell_path_repeat1, - STATE(4815), 1, - sym_path, - STATE(4973), 1, - sym_cell_path, - ACTIONS(1831), 13, + ACTIONS(2390), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380682,20 +355685,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [172050] = 4, - ACTIONS(3), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [167613] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4378), 1, + ACTIONS(2453), 1, + anon_sym_DASH, + STATE(4102), 1, sym_comment, - ACTIONS(1650), 5, + ACTIONS(2455), 17, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1648), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380707,18 +355710,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [172079] = 5, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [167642] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(4379), 1, + ACTIONS(2457), 1, + anon_sym_DASH, + STATE(4103), 1, sym_comment, - STATE(7590), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7333), 16, + ACTIONS(2459), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380730,27 +355735,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [172110] = 8, - ACTIONS(3), 1, + [167671] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1893), 1, - sym__space, - ACTIONS(7321), 1, - anon_sym_DOT, - STATE(4380), 1, + ACTIONS(2392), 1, + anon_sym_DASH, + STATE(4104), 1, sym_comment, - STATE(4497), 1, - aux_sym_cell_path_repeat1, - STATE(4815), 1, - sym_path, - STATE(4988), 1, - sym_cell_path, - ACTIONS(1891), 13, + ACTIONS(2394), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380762,16 +355760,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [172147] = 4, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [167700] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2326), 1, + ACTIONS(2396), 1, anon_sym_DASH, - STATE(4381), 1, + STATE(4105), 1, sym_comment, - ACTIONS(2328), 17, + ACTIONS(2398), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -380789,22 +355790,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [172176] = 8, + [167729] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1772), 1, + ACTIONS(1959), 1, sym__space, - ACTIONS(7321), 1, + ACTIONS(7062), 1, anon_sym_DOT, - STATE(4382), 1, + STATE(4106), 1, sym_comment, - STATE(4497), 1, + STATE(4194), 1, aux_sym_cell_path_repeat1, - STATE(4815), 1, + STATE(4478), 1, sym_path, - STATE(4980), 1, + STATE(4658), 1, sym_cell_path, - ACTIONS(1770), 13, + ACTIONS(1957), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380818,22 +355819,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [172213] = 8, - ACTIONS(3), 1, + [167766] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1837), 1, - sym__space, - ACTIONS(7321), 1, - anon_sym_DOT, - STATE(4383), 1, + ACTIONS(1843), 1, + anon_sym_DASH, + STATE(4107), 1, sym_comment, - STATE(4497), 1, - aux_sym_cell_path_repeat1, - STATE(4815), 1, - sym_path, - STATE(4990), 1, - sym_cell_path, - ACTIONS(1835), 13, + ACTIONS(1845), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380845,19 +355839,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [172250] = 5, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [167795] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7323), 1, - anon_sym_DOT_DOT2, - STATE(4384), 1, + ACTIONS(2400), 1, + anon_sym_DASH, + STATE(4108), 1, sym_comment, - ACTIONS(7325), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7293), 15, + ACTIONS(2402), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -380870,51 +355864,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [172281] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5625), 1, - anon_sym_LPAREN2, - ACTIONS(7303), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(7341), 1, - anon_sym_DOT_DOT2, - ACTIONS(7345), 1, - sym_filesize_unit, - ACTIONS(7347), 1, - sym_duration_unit, - STATE(4385), 1, - sym_comment, - STATE(7549), 1, - sym__expr_parenthesized_immediate, - ACTIONS(1525), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(7343), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1537), 8, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [172324] = 5, + [167824] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(1495), 1, + aux_sym_unquoted_token2, + ACTIONS(1788), 1, anon_sym_LPAREN2, - STATE(4386), 1, + STATE(4109), 1, sym_comment, - STATE(7590), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7333), 16, + ACTIONS(1794), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380931,14 +355895,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [172355] = 4, + [167855] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1525), 1, + ACTIONS(2404), 1, anon_sym_DASH, - STATE(4387), 1, + STATE(4110), 1, sym_comment, - ACTIONS(1537), 17, + ACTIONS(2406), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -380956,43 +355920,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [172384] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1869), 1, - sym__space, - ACTIONS(7321), 1, - anon_sym_DOT, - STATE(4388), 1, - sym_comment, - STATE(4497), 1, - aux_sym_cell_path_repeat1, - STATE(4815), 1, - sym_path, - STATE(4950), 1, - sym_cell_path, - ACTIONS(1867), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [172421] = 4, + [167884] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2311), 1, + ACTIONS(1859), 1, anon_sym_DASH, - STATE(4389), 1, + STATE(4111), 1, sym_comment, - ACTIONS(2313), 17, + ACTIONS(1861), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -381010,49 +355945,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [172450] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7349), 1, - anon_sym_DOT, - ACTIONS(7351), 1, - aux_sym__immediate_decimal_token2, - STATE(4390), 1, - sym_comment, - ACTIONS(1591), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1589), 14, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [172483] = 8, - ACTIONS(3), 1, + [167913] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1873), 1, - sym__space, - ACTIONS(7321), 1, - anon_sym_DOT, - STATE(4391), 1, + ACTIONS(1867), 1, + anon_sym_DASH, + STATE(4112), 1, sym_comment, - STATE(4497), 1, - aux_sym_cell_path_repeat1, - STATE(4815), 1, - sym_path, - STATE(4945), 1, - sym_cell_path, - ACTIONS(1871), 13, + ACTIONS(1869), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381064,19 +355965,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [172520] = 4, - ACTIONS(3), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [167942] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4392), 1, + ACTIONS(1871), 1, + anon_sym_DASH, + STATE(4113), 1, sym_comment, - ACTIONS(968), 4, + ACTIONS(1873), 17, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(966), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381088,19 +355990,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [172549] = 5, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [167971] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(4393), 1, + ACTIONS(2408), 1, + anon_sym_DASH, + STATE(4114), 1, sym_comment, - STATE(7887), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3205), 16, + ACTIONS(2410), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381112,21 +356015,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [172580] = 5, + [168000] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(4394), 1, + ACTIONS(1890), 1, + anon_sym_DASH, + STATE(4115), 1, sym_comment, - STATE(7887), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3209), 16, + ACTIONS(1892), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381138,52 +356040,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [172611] = 8, + [168029] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7335), 1, - anon_sym_DOT, - STATE(4395), 1, - sym_comment, - STATE(4509), 1, - aux_sym_cell_path_repeat1, - STATE(4828), 1, - sym_path, - STATE(4995), 1, - sym_cell_path, - ACTIONS(1599), 2, + ACTIONS(2412), 1, anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(1603), 12, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [172648] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4396), 1, + STATE(4116), 1, sym_comment, - ACTIONS(1723), 5, + ACTIONS(2414), 17, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1721), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381195,16 +356065,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [172677] = 4, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [168058] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2271), 1, + ACTIONS(2416), 1, anon_sym_DASH, - STATE(4397), 1, + STATE(4117), 1, sym_comment, - ACTIONS(2273), 17, + ACTIONS(2418), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -381222,16 +356095,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [172706] = 5, + [168087] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(4398), 1, + ACTIONS(1894), 1, + anon_sym_DASH, + STATE(4118), 1, sym_comment, - STATE(7887), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3259), 16, + ACTIONS(1896), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381243,21 +356115,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [172737] = 5, + [168116] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(4399), 1, + STATE(4119), 1, sym_comment, - STATE(7887), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3263), 16, + ACTIONS(1064), 3, + anon_sym_GT, + anon_sym_LT2, + anon_sym_DOT_DOT2, + ACTIONS(1066), 15, + anon_sym_PIPE, + anon_sym_in, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [168145] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1945), 1, + anon_sym_DASH, + STATE(4120), 1, + sym_comment, + ACTIONS(1947), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381269,19 +356165,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [172768] = 4, + [168174] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2389), 1, + ACTIONS(2420), 1, anon_sym_DASH, - STATE(4400), 1, + STATE(4121), 1, sym_comment, - ACTIONS(2391), 17, + ACTIONS(2422), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -381299,22 +356195,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [172797] = 8, - ACTIONS(3), 1, + [168203] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7321), 1, - anon_sym_DOT, - ACTIONS(7355), 1, - sym__space, - STATE(4401), 1, + ACTIONS(2424), 1, + anon_sym_DASH, + STATE(4122), 1, sym_comment, - STATE(4497), 1, - aux_sym_cell_path_repeat1, - STATE(4815), 1, - sym_path, - STATE(4951), 1, - sym_cell_path, - ACTIONS(7353), 13, + ACTIONS(2426), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381326,16 +356215,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [172834] = 4, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [168232] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1770), 1, + ACTIONS(1949), 1, anon_sym_DASH, - STATE(4402), 1, + STATE(4123), 1, sym_comment, - ACTIONS(1772), 17, + ACTIONS(1951), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -381353,72 +356245,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [172863] = 8, + [168261] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1877), 1, + ACTIONS(1963), 1, sym__space, - ACTIONS(7321), 1, - anon_sym_DOT, - STATE(4403), 1, - sym_comment, - STATE(4497), 1, - aux_sym_cell_path_repeat1, - STATE(4815), 1, - sym_path, - STATE(4956), 1, - sym_cell_path, - ACTIONS(1875), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [172900] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4404), 1, - sym_comment, - ACTIONS(1473), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1475), 12, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [172929] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7323), 1, - anon_sym_DOT_DOT2, - STATE(4405), 1, + ACTIONS(7062), 1, + anon_sym_DOT, + STATE(4124), 1, sym_comment, - ACTIONS(7325), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7293), 15, - ts_builtin_sym_end, + STATE(4194), 1, + aux_sym_cell_path_repeat1, + STATE(4478), 1, + sym_path, + STATE(4696), 1, + sym_cell_path, + ACTIONS(1961), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381430,17 +356272,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [172960] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [168298] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2241), 1, + ACTIONS(2428), 1, anon_sym_DASH, - STATE(4406), 1, + STATE(4125), 1, sym_comment, - ACTIONS(2243), 17, + ACTIONS(2430), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -381458,17 +356299,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [172989] = 4, - ACTIONS(3), 1, + [168327] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4407), 1, + ACTIONS(2432), 1, + anon_sym_DASH, + STATE(4126), 1, sym_comment, - ACTIONS(978), 4, + ACTIONS(2434), 17, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(976), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381480,42 +356319,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [173018] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4408), 1, - sym_comment, - ACTIONS(1481), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1483), 12, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [173047] = 4, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [168356] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1778), 1, + ACTIONS(1575), 1, anon_sym_DASH, - STATE(4409), 1, + STATE(4127), 1, sym_comment, - ACTIONS(1780), 17, + ACTIONS(1587), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -381533,24 +356349,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [173076] = 8, - ACTIONS(3), 1, + [168385] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1711), 1, - anon_sym_LPAREN2, - ACTIONS(1719), 1, - aux_sym_unquoted_token2, - ACTIONS(7357), 1, - anon_sym_DOT_DOT2, - STATE(4410), 1, + ACTIONS(2436), 1, + anon_sym_DASH, + STATE(4128), 1, sym_comment, - ACTIONS(1717), 2, + ACTIONS(2438), 17, ts_builtin_sym_end, - sym__space, - ACTIONS(7359), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1709), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381562,47 +356369,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [173113] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4411), 1, - sym_comment, - ACTIONS(1519), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1521), 12, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [173142] = 8, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [168414] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1603), 1, + ACTIONS(1688), 1, sym__space, - ACTIONS(7321), 1, + ACTIONS(7062), 1, anon_sym_DOT, - STATE(4412), 1, + STATE(4129), 1, sym_comment, - STATE(4497), 1, - aux_sym_cell_path_repeat1, - STATE(4517), 1, + STATE(4164), 1, sym_cell_path, - STATE(4815), 1, + STATE(4194), 1, + aux_sym_cell_path_repeat1, + STATE(4478), 1, sym_path, - ACTIONS(1599), 13, + ACTIONS(1686), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381616,17 +356403,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173179] = 4, - ACTIONS(3), 1, + [168451] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4413), 1, + ACTIONS(1879), 1, + anon_sym_DASH, + STATE(4130), 1, sym_comment, - ACTIONS(964), 4, + ACTIONS(1881), 17, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(962), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381638,25 +356423,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [173208] = 8, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [168480] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1841), 1, + ACTIONS(1629), 1, sym__space, - ACTIONS(7321), 1, + ACTIONS(7062), 1, anon_sym_DOT, - STATE(4414), 1, + STATE(4131), 1, sym_comment, - STATE(4497), 1, + STATE(4168), 1, + sym_cell_path, + STATE(4194), 1, aux_sym_cell_path_repeat1, - STATE(4815), 1, + STATE(4478), 1, sym_path, - STATE(4993), 1, - sym_cell_path, - ACTIONS(1839), 13, + ACTIONS(1625), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381670,44 +356457,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173245] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4415), 1, - sym_comment, - ACTIONS(1585), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1587), 12, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [173274] = 6, + [168517] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7361), 1, + ACTIONS(7101), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7363), 1, + ACTIONS(7103), 1, aux_sym__immediate_decimal_token2, - STATE(4416), 1, + STATE(4132), 1, sym_comment, - ACTIONS(1571), 2, + ACTIONS(1633), 2, sym__space, anon_sym_LPAREN2, - ACTIONS(1569), 14, + ACTIONS(1631), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381722,14 +356484,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, aux_sym_unquoted_token2, - [173307] = 4, + [168550] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2315), 1, + ACTIONS(2443), 1, anon_sym_DASH, - STATE(4417), 1, + STATE(4133), 1, sym_comment, - ACTIONS(2317), 17, + ACTIONS(2445), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -381747,18 +356509,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [173336] = 5, + [168579] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7365), 1, - anon_sym_DOT_DOT2, - STATE(4418), 1, + ACTIONS(1798), 1, + anon_sym_LPAREN2, + ACTIONS(1806), 1, + aux_sym_unquoted_token2, + STATE(4134), 1, sym_comment, - ACTIONS(7367), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1941), 15, - ts_builtin_sym_end, + ACTIONS(2162), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381770,21 +356530,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [173367] = 5, + [168610] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7369), 1, - anon_sym_DOT_DOT2, - STATE(4419), 1, + ACTIONS(1798), 1, + anon_sym_LPAREN2, + ACTIONS(1806), 1, + aux_sym_unquoted_token2, + STATE(4135), 1, sym_comment, - ACTIONS(7371), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2072), 15, - ts_builtin_sym_end, + ACTIONS(1804), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381796,20 +356556,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [173398] = 5, + [168641] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1833), 1, + sym__space, + ACTIONS(7062), 1, + anon_sym_DOT, + STATE(4136), 1, + sym_comment, + STATE(4194), 1, + aux_sym_cell_path_repeat1, + STATE(4478), 1, + sym_path, + STATE(4714), 1, + sym_cell_path, + ACTIONS(1829), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [168678] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7373), 1, + ACTIONS(7105), 1, anon_sym_DOT_DOT2, - STATE(4420), 1, + STATE(4137), 1, sym_comment, - ACTIONS(7375), 2, + ACTIONS(7107), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1978), 15, + ACTIONS(2067), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -381825,17 +356616,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [173429] = 5, + [168709] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7377), 1, + ACTIONS(7109), 1, anon_sym_DOT_DOT2, - STATE(4421), 1, + STATE(4138), 1, sym_comment, - ACTIONS(7379), 2, + ACTIONS(7111), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 15, + ACTIONS(2041), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -381851,14 +356642,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [173460] = 4, + [168740] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2344), 1, - anon_sym_DASH, - STATE(4422), 1, + ACTIONS(7113), 1, + anon_sym_DOT_DOT2, + STATE(4139), 1, sym_comment, - ACTIONS(2346), 17, + ACTIONS(7115), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2049), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -381871,19 +356665,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [173489] = 4, + [168771] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2251), 1, - anon_sym_DASH, - STATE(4423), 1, + ACTIONS(7117), 1, + anon_sym_DOT_DOT2, + STATE(4140), 1, sym_comment, - ACTIONS(2253), 17, + ACTIONS(7119), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2057), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -381896,20 +356691,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [173518] = 4, + [168802] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2255), 1, - anon_sym_DASH, - STATE(4424), 1, + ACTIONS(1553), 1, + aux_sym_unquoted_token2, + ACTIONS(2220), 1, + anon_sym_LPAREN2, + STATE(4141), 1, sym_comment, - ACTIONS(2257), 17, - ts_builtin_sym_end, + ACTIONS(2222), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381921,27 +356715,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [173547] = 8, + [168833] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1849), 1, + ACTIONS(1837), 1, sym__space, - ACTIONS(7321), 1, + ACTIONS(7062), 1, anon_sym_DOT, - STATE(4425), 1, + STATE(4142), 1, sym_comment, - STATE(4497), 1, + STATE(4194), 1, aux_sym_cell_path_repeat1, - STATE(4815), 1, + STATE(4478), 1, sym_path, - STATE(4985), 1, + STATE(4720), 1, sym_cell_path, - ACTIONS(1847), 13, + ACTIONS(1835), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381955,22 +356749,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173584] = 8, + [168870] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(947), 1, + ACTIONS(1841), 1, sym__space, - ACTIONS(7321), 1, + ACTIONS(7062), 1, anon_sym_DOT, - STATE(4426), 1, + STATE(4143), 1, sym_comment, - STATE(4473), 1, - sym_cell_path, - STATE(4497), 1, + STATE(4194), 1, aux_sym_cell_path_repeat1, - STATE(4815), 1, + STATE(4478), 1, sym_path, - ACTIONS(945), 13, + STATE(4722), 1, + sym_cell_path, + ACTIONS(1839), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381984,42 +356778,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173621] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7381), 1, - aux_sym__immediate_decimal_token2, - STATE(4427), 1, - sym_comment, - ACTIONS(1519), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1521), 11, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [173652] = 5, + [168907] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1711), 1, + ACTIONS(2226), 1, anon_sym_LPAREN2, - ACTIONS(1719), 1, + ACTIONS(2230), 1, aux_sym_unquoted_token2, - STATE(4428), 1, + STATE(4144), 1, sym_comment, - ACTIONS(2087), 16, + ACTIONS(2228), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382036,51 +356804,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [173683] = 6, - ACTIONS(247), 1, + [168938] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7383), 1, + ACTIONS(1845), 1, + sym__space, + ACTIONS(7062), 1, anon_sym_DOT, - ACTIONS(7385), 1, - aux_sym__immediate_decimal_token2, - STATE(4429), 1, + STATE(4145), 1, sym_comment, - ACTIONS(1589), 4, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1591), 12, + STATE(4194), 1, + aux_sym_cell_path_repeat1, + STATE(4478), 1, + sym_path, + STATE(4725), 1, + sym_cell_path, + ACTIONS(1843), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [173716] = 8, + anon_sym_RBRACE, + [168975] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1429), 1, - aux_sym_unquoted_token2, - ACTIONS(1692), 1, - anon_sym_LPAREN2, - ACTIONS(7387), 1, - anon_sym_DOT_DOT2, - STATE(4430), 1, - sym_comment, - ACTIONS(1698), 2, - ts_builtin_sym_end, + ACTIONS(1849), 1, sym__space, - ACTIONS(7389), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1690), 11, + ACTIONS(7062), 1, + anon_sym_DOT, + STATE(4146), 1, + sym_comment, + STATE(4194), 1, + aux_sym_cell_path_repeat1, + STATE(4478), 1, + sym_path, + STATE(4726), 1, + sym_cell_path, + ACTIONS(1847), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382092,18 +356860,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [173753] = 5, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [169012] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7323), 1, - anon_sym_DOT_DOT2, - STATE(4431), 1, + ACTIONS(1853), 1, + sym__space, + ACTIONS(7062), 1, + anon_sym_DOT, + STATE(4147), 1, sym_comment, - ACTIONS(7325), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1008), 15, - ts_builtin_sym_end, + STATE(4194), 1, + aux_sym_cell_path_repeat1, + STATE(4478), 1, + sym_path, + STATE(4727), 1, + sym_cell_path, + ACTIONS(1851), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382115,25 +356889,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [173784] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [169049] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1861), 1, + ACTIONS(1857), 1, sym__space, - ACTIONS(7321), 1, + ACTIONS(7062), 1, anon_sym_DOT, - STATE(4432), 1, + STATE(4148), 1, sym_comment, - STATE(4497), 1, + STATE(4194), 1, aux_sym_cell_path_repeat1, - STATE(4815), 1, + STATE(4478), 1, sym_path, - STATE(4940), 1, + STATE(4729), 1, sym_cell_path, - ACTIONS(1859), 13, + ACTIONS(1855), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382147,22 +356920,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173821] = 8, + [169086] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1865), 1, + ACTIONS(1861), 1, sym__space, - ACTIONS(7321), 1, + ACTIONS(7062), 1, anon_sym_DOT, - STATE(4433), 1, + STATE(4149), 1, sym_comment, - STATE(4497), 1, + STATE(4194), 1, aux_sym_cell_path_repeat1, - STATE(4815), 1, + STATE(4478), 1, sym_path, - STATE(4957), 1, + STATE(4734), 1, sym_cell_path, - ACTIONS(1863), 13, + ACTIONS(1859), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382176,22 +356949,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173858] = 8, + [169123] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7321), 1, - anon_sym_DOT, - ACTIONS(7393), 1, + ACTIONS(1865), 1, sym__space, - STATE(4434), 1, + ACTIONS(7062), 1, + anon_sym_DOT, + STATE(4150), 1, sym_comment, - STATE(4497), 1, + STATE(4194), 1, aux_sym_cell_path_repeat1, - STATE(4815), 1, + STATE(4478), 1, sym_path, - STATE(4958), 1, + STATE(4737), 1, sym_cell_path, - ACTIONS(7391), 13, + ACTIONS(1863), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382205,15 +356978,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173895] = 4, - ACTIONS(247), 1, + [169160] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2336), 1, - anon_sym_DASH, - STATE(4435), 1, + ACTIONS(1869), 1, + sym__space, + ACTIONS(7062), 1, + anon_sym_DOT, + STATE(4151), 1, sym_comment, - ACTIONS(2338), 17, - ts_builtin_sym_end, + STATE(4194), 1, + aux_sym_cell_path_repeat1, + STATE(4478), 1, + sym_path, + STATE(4741), 1, + sym_cell_path, + ACTIONS(1867), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382225,21 +357005,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [173924] = 5, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [169197] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2125), 1, - anon_sym_LPAREN2, - ACTIONS(2129), 1, - aux_sym_unquoted_token2, - STATE(4436), 1, + ACTIONS(1873), 1, + sym__space, + ACTIONS(7062), 1, + anon_sym_DOT, + STATE(4152), 1, sym_comment, - ACTIONS(2127), 16, + STATE(4194), 1, + aux_sym_cell_path_repeat1, + STATE(4478), 1, + sym_path, + STATE(4744), 1, + sym_cell_path, + ACTIONS(1871), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382253,25 +357036,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [173955] = 8, + [169234] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1881), 1, + ACTIONS(1877), 1, sym__space, - ACTIONS(7321), 1, + ACTIONS(7062), 1, anon_sym_DOT, - STATE(4437), 1, + STATE(4153), 1, sym_comment, - STATE(4497), 1, + STATE(4194), 1, aux_sym_cell_path_repeat1, - STATE(4815), 1, + STATE(4478), 1, sym_path, - STATE(5017), 1, + STATE(4747), 1, sym_cell_path, - ACTIONS(1879), 13, + ACTIONS(1875), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382285,22 +357065,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173992] = 8, + [169271] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1885), 1, + ACTIONS(1971), 1, sym__space, - ACTIONS(7321), 1, + ACTIONS(7062), 1, anon_sym_DOT, - STATE(4438), 1, + STATE(4154), 1, sym_comment, - STATE(4497), 1, + STATE(4194), 1, aux_sym_cell_path_repeat1, - STATE(4815), 1, + STATE(4478), 1, sym_path, - STATE(4893), 1, + STATE(4754), 1, sym_cell_path, - ACTIONS(1883), 13, + ACTIONS(1969), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382314,14 +357094,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174029] = 4, + [169308] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2383), 1, + ACTIONS(2364), 1, anon_sym_DASH, - STATE(4439), 1, + STATE(4155), 1, sym_comment, - ACTIONS(2385), 17, + ACTIONS(2366), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -382339,23 +357119,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [174058] = 8, - ACTIONS(3), 1, + [169337] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7395), 1, - anon_sym_DOT, - STATE(4440), 1, + ACTIONS(2364), 1, + anon_sym_DASH, + STATE(4156), 1, sym_comment, - STATE(4675), 1, - sym_cell_path, - STATE(4681), 1, - aux_sym_cell_path_repeat1, - STATE(4936), 1, - sym_path, - ACTIONS(947), 2, + ACTIONS(2366), 17, ts_builtin_sym_end, - sym__space, - ACTIONS(945), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382367,19 +357139,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [174094] = 6, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [169366] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1008), 1, + ACTIONS(1892), 1, sym__space, - ACTIONS(7397), 1, - anon_sym_DOT_DOT2, - STATE(4441), 1, + ACTIONS(7062), 1, + anon_sym_DOT, + STATE(4157), 1, sym_comment, - ACTIONS(7399), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1006), 13, + STATE(4194), 1, + aux_sym_cell_path_repeat1, + STATE(4478), 1, + sym_path, + STATE(4633), 1, + sym_cell_path, + ACTIONS(1890), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382393,15 +357173,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174126] = 4, - ACTIONS(247), 1, + [169403] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1589), 1, - aux_sym_unquoted_token2, - STATE(4442), 1, + ACTIONS(1896), 1, + sym__space, + ACTIONS(7062), 1, + anon_sym_DOT, + STATE(4158), 1, sym_comment, - ACTIONS(1591), 16, - ts_builtin_sym_end, + STATE(4194), 1, + aux_sym_cell_path_repeat1, + STATE(4478), 1, + sym_path, + STATE(4618), 1, + sym_cell_path, + ACTIONS(1894), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382413,24 +357200,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - [174154] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [169440] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7401), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7403), 1, - aux_sym__immediate_decimal_token2, - STATE(4443), 1, + ACTIONS(2372), 1, + anon_sym_DASH, + STATE(4159), 1, sym_comment, - ACTIONS(1571), 3, + ACTIONS(2374), 17, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1569), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382442,15 +357222,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [174186] = 4, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [169469] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1569), 1, - aux_sym_unquoted_token2, - STATE(4444), 1, + ACTIONS(2376), 1, + anon_sym_DASH, + STATE(4160), 1, sym_comment, - ACTIONS(1571), 16, + ACTIONS(2378), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -382463,27 +357247,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - [174214] = 8, + [169498] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7395), 1, + ACTIONS(1939), 1, + sym__space, + ACTIONS(7062), 1, anon_sym_DOT, - STATE(4445), 1, + STATE(4161), 1, sym_comment, - STATE(4681), 1, + STATE(4194), 1, aux_sym_cell_path_repeat1, - STATE(4936), 1, + STATE(4478), 1, sym_path, - STATE(5186), 1, + STATE(4630), 1, sym_cell_path, - ACTIONS(1849), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1847), 11, + ACTIONS(1937), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382495,41 +357279,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [174250] = 6, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [169535] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7405), 1, + ACTIONS(1947), 1, + sym__space, + ACTIONS(7062), 1, anon_sym_DOT, - ACTIONS(7407), 1, - aux_sym__immediate_decimal_token2, - STATE(4446), 1, + STATE(4162), 1, sym_comment, - ACTIONS(1589), 4, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1591), 11, + STATE(4194), 1, + aux_sym_cell_path_repeat1, + STATE(4478), 1, + sym_path, + STATE(4701), 1, + sym_cell_path, + ACTIONS(1945), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [174282] = 4, + anon_sym_RBRACE, + [169572] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1648), 1, - aux_sym_unquoted_token2, - STATE(4447), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(4163), 1, sym_comment, - ACTIONS(1650), 16, - ts_builtin_sym_end, + STATE(7342), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7086), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382541,19 +357331,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - [174310] = 4, - ACTIONS(247), 1, + [169603] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1721), 1, - aux_sym_unquoted_token2, - STATE(4448), 1, + STATE(4164), 1, + sym_comment, + ACTIONS(1629), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1625), 14, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [169631] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7121), 1, + anon_sym_DOT, + STATE(4165), 1, sym_comment, - ACTIONS(1723), 16, + STATE(4324), 1, + aux_sym_cell_path_repeat1, + STATE(4608), 1, + sym_path, + STATE(4900), 1, + sym_cell_path, + ACTIONS(1833), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1829), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382565,20 +357388,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - [174338] = 5, + [169667] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1429), 1, + ACTIONS(1495), 1, aux_sym_unquoted_token2, - ACTIONS(1692), 1, + ACTIONS(1788), 1, anon_sym_LPAREN2, - STATE(4449), 1, + STATE(4166), 1, sym_comment, - ACTIONS(1698), 15, + ACTIONS(1794), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -382594,21 +357413,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [174368] = 6, + [169697] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2081), 1, - anon_sym_LPAREN2, - ACTIONS(2083), 1, - aux_sym_unquoted_token4, - STATE(4450), 1, + ACTIONS(7121), 1, + anon_sym_DOT, + STATE(4167), 1, sym_comment, - ACTIONS(1006), 3, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1008), 12, + STATE(4324), 1, + aux_sym_cell_path_repeat1, + STATE(4608), 1, + sym_path, + STATE(4760), 1, + sym_cell_path, + ACTIONS(1881), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1879), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382620,19 +357441,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [174400] = 6, + [169733] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2072), 1, - sym__space, - ACTIONS(7409), 1, - anon_sym_DOT_DOT2, - STATE(4451), 1, + STATE(4168), 1, sym_comment, - ACTIONS(7411), 2, + ACTIONS(2139), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2066), 13, + ACTIONS(2137), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382646,14 +357464,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174432] = 4, - ACTIONS(247), 1, + anon_sym_DOT_DOT2, + [169761] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7059), 1, - aux_sym_unquoted_token2, - STATE(4452), 1, + STATE(4169), 1, sym_comment, - ACTIONS(1537), 16, + ACTIONS(2259), 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + aux_sym_unquoted_token4, + ACTIONS(2261), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382665,28 +357488,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [174460] = 8, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [169789] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7395), 1, - anon_sym_DOT, - STATE(4453), 1, + ACTIONS(1798), 1, + anon_sym_LPAREN2, + ACTIONS(1806), 1, + aux_sym_unquoted_token2, + STATE(4170), 1, sym_comment, - STATE(4681), 1, - aux_sym_cell_path_repeat1, - STATE(4936), 1, - sym_path, - STATE(5181), 1, - sym_cell_path, - ACTIONS(1798), 2, + ACTIONS(2162), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(1796), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382698,16 +357511,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [174496] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [169819] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(1798), 1, anon_sym_LPAREN2, - STATE(4454), 1, + ACTIONS(1806), 1, + aux_sym_unquoted_token2, + STATE(4171), 1, sym_comment, - STATE(7887), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3205), 15, + ACTIONS(1804), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -382723,50 +357539,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [174526] = 13, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7415), 1, - anon_sym_EQ, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(7419), 1, - anon_sym_COLON, - ACTIONS(7421), 1, - anon_sym_LPAREN, - ACTIONS(7423), 1, - anon_sym_COMMA, - ACTIONS(7425), 1, - anon_sym_DASH, - STATE(4455), 1, - sym_comment, - STATE(4782), 1, - sym_flag_capsule, - STATE(5024), 1, - sym_param_value, - STATE(5154), 1, - sym_param_type, - STATE(5342), 1, - aux_sym_shebang_repeat1, - ACTIONS(7413), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [174572] = 5, - ACTIONS(247), 1, + [169849] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(4456), 1, + ACTIONS(7121), 1, + anon_sym_DOT, + STATE(4172), 1, sym_comment, - STATE(7887), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3209), 15, + STATE(4324), 1, + aux_sym_cell_path_repeat1, + STATE(4608), 1, + sym_path, + STATE(4934), 1, + sym_cell_path, + ACTIONS(1923), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1921), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382778,62 +357567,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [174602] = 16, + [169885] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7427), 1, - sym_identifier, - ACTIONS(7430), 1, - sym__newline, - ACTIONS(7435), 1, - anon_sym_DOLLAR, - ACTIONS(7438), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7441), 1, - anon_sym_DASH_DASH, - ACTIONS(7444), 1, - anon_sym_DASH, - STATE(4504), 1, - sym_param_long_flag, - STATE(4787), 1, - sym__param_name, - STATE(5220), 1, - sym_param_short_flag, - STATE(5253), 1, - sym_param_opt, - STATE(5295), 1, - sym_param_rest, - STATE(5379), 1, - aux_sym_shebang_repeat1, - STATE(5590), 1, - sym_parameter, - STATE(4457), 2, + ACTIONS(5637), 1, + anon_sym_DOT, + ACTIONS(7127), 1, + anon_sym_QMARK2, + STATE(2590), 1, + sym_path, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(4173), 1, sym_comment, - aux_sym_parameter_parens_repeat1, - ACTIONS(7433), 3, + STATE(4948), 1, + sym_cell_path, + ACTIONS(7123), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(7125), 10, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [169923] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4174), 1, + sym_comment, + ACTIONS(2021), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2019), 14, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [174654] = 8, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [169951] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7395), 1, + ACTIONS(7121), 1, anon_sym_DOT, - STATE(4458), 1, + STATE(4175), 1, sym_comment, - STATE(4681), 1, + STATE(4324), 1, aux_sym_cell_path_repeat1, - STATE(4936), 1, + STATE(4608), 1, sym_path, - STATE(5063), 1, + STATE(4922), 1, sym_cell_path, - ACTIONS(1772), 2, + ACTIONS(1845), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1770), 11, + ACTIONS(1843), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382845,20 +357648,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [174690] = 6, + [169987] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7447), 1, + ACTIONS(7121), 1, anon_sym_DOT, - ACTIONS(7449), 1, - aux_sym__immediate_decimal_token2, - STATE(4459), 1, + STATE(4176), 1, sym_comment, - ACTIONS(1591), 3, + STATE(4324), 1, + aux_sym_cell_path_repeat1, + STATE(4608), 1, + sym_path, + STATE(4794), 1, + sym_cell_path, + ACTIONS(1849), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1589), 12, + ACTIONS(1847), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382870,17 +357676,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [174722] = 4, - ACTIONS(3), 1, + [170023] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4460), 1, + ACTIONS(1553), 1, + aux_sym_unquoted_token2, + ACTIONS(2220), 1, + anon_sym_LPAREN2, + STATE(4177), 1, sym_comment, - ACTIONS(1955), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1953), 14, + ACTIONS(2222), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382892,26 +357698,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [174750] = 8, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [170053] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7395), 1, + ACTIONS(7121), 1, anon_sym_DOT, - STATE(4461), 1, + STATE(4178), 1, sym_comment, - STATE(4638), 1, - sym_cell_path, - STATE(4681), 1, + STATE(4324), 1, aux_sym_cell_path_repeat1, - STATE(4936), 1, + STATE(4608), 1, sym_path, - ACTIONS(1603), 2, + STATE(4902), 1, + sym_cell_path, + ACTIONS(1853), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1599), 11, + ACTIONS(1851), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382923,23 +357729,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [174786] = 8, - ACTIONS(3), 1, + [170089] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7395), 1, + ACTIONS(7129), 1, + anon_sym_QMARK2, + STATE(4179), 1, + sym_comment, + ACTIONS(1034), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(4462), 1, + ACTIONS(1036), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [170119] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7131), 1, + anon_sym_QMARK2, + STATE(4180), 1, sym_comment, - STATE(4681), 1, - aux_sym_cell_path_repeat1, - STATE(4936), 1, - sym_path, - STATE(5108), 1, - sym_cell_path, - ACTIONS(1780), 2, + ACTIONS(1028), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1030), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [170149] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7050), 1, + anon_sym_EQ, + ACTIONS(7052), 1, + sym__newline, + ACTIONS(7054), 1, + anon_sym_COLON, + ACTIONS(7058), 1, + anon_sym_COMMA, + ACTIONS(7135), 1, + anon_sym_DASH, + STATE(4181), 1, + sym_comment, + STATE(4381), 1, + aux_sym_parameter_repeat1, + STATE(5115), 1, + aux_sym_parameter_repeat2, + STATE(6214), 1, + aux_sym_shebang_repeat1, + STATE(5091), 2, + sym_param_type, + sym_param_value, + ACTIONS(7133), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [170193] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7050), 1, + anon_sym_EQ, + ACTIONS(7052), 1, + sym__newline, + ACTIONS(7054), 1, + anon_sym_COLON, + ACTIONS(7058), 1, + anon_sym_COMMA, + ACTIONS(7139), 1, + anon_sym_DASH, + STATE(4182), 1, + sym_comment, + STATE(4224), 1, + aux_sym_parameter_repeat1, + STATE(5117), 1, + aux_sym_parameter_repeat2, + STATE(6214), 1, + aux_sym_shebang_repeat1, + STATE(5091), 2, + sym_param_type, + sym_param_value, + ACTIONS(7137), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [170237] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7050), 1, + anon_sym_EQ, + ACTIONS(7052), 1, + sym__newline, + ACTIONS(7054), 1, + anon_sym_COLON, + ACTIONS(7058), 1, + anon_sym_COMMA, + ACTIONS(7143), 1, + anon_sym_DASH, + STATE(4183), 1, + sym_comment, + STATE(4381), 1, + aux_sym_parameter_repeat1, + STATE(5118), 1, + aux_sym_parameter_repeat2, + STATE(6214), 1, + aux_sym_shebang_repeat1, + STATE(5091), 2, + sym_param_type, + sym_param_value, + ACTIONS(7141), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [170281] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1705), 1, + aux_sym_unquoted_token2, + STATE(4184), 1, + sym_comment, + ACTIONS(1707), 16, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + [170309] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7145), 1, + anon_sym_DOT, + ACTIONS(7147), 1, + aux_sym__immediate_decimal_token2, + STATE(4185), 1, + sym_comment, + ACTIONS(1645), 3, ts_builtin_sym_end, sym__space, - ACTIONS(1778), 11, + anon_sym_LPAREN2, + ACTIONS(1643), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382951,19 +357924,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [174822] = 6, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [170341] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1978), 1, - sym__space, - ACTIONS(7451), 1, - anon_sym_DOT_DOT2, - STATE(4463), 1, + ACTIONS(1643), 1, + aux_sym_unquoted_token2, + STATE(4186), 1, sym_comment, - ACTIONS(7453), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1972), 13, + ACTIONS(1645), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382975,25 +357945,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [174854] = 8, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + [170369] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7395), 1, - anon_sym_DOT, - STATE(4464), 1, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(4187), 1, sym_comment, - STATE(4681), 1, - aux_sym_cell_path_repeat1, - STATE(4936), 1, - sym_path, - STATE(5150), 1, - sym_cell_path, - ACTIONS(1881), 2, + ACTIONS(2293), 3, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(2297), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(1879), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383005,19 +357975,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [174890] = 6, - ACTIONS(3), 1, + [170401] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1966), 1, - sym__space, - ACTIONS(7455), 1, - anon_sym_DOT_DOT2, - STATE(4465), 1, + ACTIONS(2226), 1, + anon_sym_LPAREN2, + ACTIONS(2230), 1, + aux_sym_unquoted_token2, + STATE(4188), 1, sym_comment, - ACTIONS(7457), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1960), 13, + ACTIONS(2228), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383029,25 +357997,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [174922] = 8, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [170431] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7395), 1, + ACTIONS(7121), 1, anon_sym_DOT, - STATE(4466), 1, + STATE(4189), 1, sym_comment, - STATE(4681), 1, + STATE(4324), 1, aux_sym_cell_path_repeat1, - STATE(4936), 1, + STATE(4608), 1, sym_path, - STATE(5034), 1, + STATE(4810), 1, sym_cell_path, - ACTIONS(1885), 2, + ACTIONS(1963), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1883), 11, + ACTIONS(1961), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383059,47 +358028,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [174958] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4467), 1, - sym_comment, - ACTIONS(1473), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1475), 11, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [174986] = 8, + [170467] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7395), 1, - anon_sym_DOT, - STATE(4468), 1, + ACTIONS(2245), 1, + anon_sym_LPAREN2, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + STATE(4190), 1, sym_comment, - STATE(4681), 1, - aux_sym_cell_path_repeat1, - STATE(4936), 1, - sym_path, - STATE(5158), 1, - sym_cell_path, - ACTIONS(1893), 2, + ACTIONS(2243), 3, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(2247), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(1891), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383111,23 +358054,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [175022] = 8, - ACTIONS(3), 1, + [170499] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7395), 1, - anon_sym_DOT, - STATE(4469), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(4191), 1, sym_comment, - STATE(4681), 1, - aux_sym_cell_path_repeat1, - STATE(4936), 1, - sym_path, - STATE(5177), 1, - sym_cell_path, - ACTIONS(1764), 2, + STATE(7376), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7086), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(1762), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383139,48 +358076,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [175058] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [170529] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7385), 1, - aux_sym__immediate_decimal_token2, - STATE(4470), 1, + ACTIONS(6790), 1, + aux_sym_unquoted_token2, + STATE(4192), 1, sym_comment, - ACTIONS(1589), 4, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1591), 12, + ACTIONS(1587), 16, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [175088] = 8, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [170557] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7395), 1, - anon_sym_DOT, - STATE(4471), 1, + ACTIONS(2245), 1, + anon_sym_LPAREN2, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + STATE(4193), 1, sym_comment, - STATE(4681), 1, - aux_sym_cell_path_repeat1, - STATE(4936), 1, - sym_path, - STATE(5035), 1, - sym_cell_path, - ACTIONS(1897), 2, + ACTIONS(2251), 3, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(2253), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(1895), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383192,41 +358129,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [175124] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7459), 1, - aux_sym__immediate_decimal_token2, - STATE(4472), 1, - sym_comment, - ACTIONS(1648), 4, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1650), 12, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [175154] = 4, + [170589] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(4473), 1, - sym_comment, - ACTIONS(1023), 3, + ACTIONS(1019), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1021), 14, + ACTIONS(7062), 1, + anon_sym_DOT, + STATE(4194), 1, + sym_comment, + STATE(4199), 1, + aux_sym_cell_path_repeat1, + STATE(4478), 1, + sym_path, + ACTIONS(1017), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383240,17 +358156,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [175182] = 4, + [170623] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4474), 1, - sym_comment, - ACTIONS(1945), 3, + ACTIONS(7151), 1, sym__space, + ACTIONS(7153), 1, + anon_sym_DOT_DOT2, + STATE(4195), 1, + sym_comment, + ACTIONS(7155), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1943), 14, + ACTIONS(7149), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383264,48 +358182,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [175210] = 4, + [170655] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(4475), 1, - sym_comment, - ACTIONS(1481), 6, - sym_identifier, + ACTIONS(1796), 1, anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, + ACTIONS(1798), 1, + anon_sym_LPAREN2, + ACTIONS(1806), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(1483), 11, + ACTIONS(7157), 1, + anon_sym_DOT_DOT2, + STATE(4196), 1, + sym_comment, + ACTIONS(7159), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1804), 11, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + [170691] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3914), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [175238] = 8, + STATE(4197), 1, + sym_comment, + STATE(7376), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7086), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [170721] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7395), 1, + ACTIONS(7121), 1, anon_sym_DOT, - STATE(4476), 1, + STATE(4198), 1, sym_comment, - STATE(4681), 1, + STATE(4324), 1, aux_sym_cell_path_repeat1, - STATE(4936), 1, + STATE(4608), 1, sym_path, - STATE(5111), 1, + STATE(4843), 1, sym_cell_path, - ACTIONS(1810), 2, + ACTIONS(7095), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1808), 11, + ACTIONS(7093), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383317,49 +358263,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [175274] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7461), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7463), 1, - aux_sym__immediate_decimal_token2, - STATE(4477), 1, - sym_comment, - ACTIONS(1569), 4, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1571), 11, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [175306] = 8, + [170757] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7395), 1, + ACTIONS(1023), 1, + sym__space, + ACTIONS(7161), 1, anon_sym_DOT, STATE(4478), 1, + sym_path, + STATE(4199), 2, sym_comment, - STATE(4681), 1, aux_sym_cell_path_repeat1, - STATE(4936), 1, - sym_path, - STATE(5093), 1, - sym_cell_path, - ACTIONS(1749), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1747), 11, + ACTIONS(1021), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383371,47 +358287,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [175342] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [170789] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4479), 1, + STATE(4200), 1, sym_comment, - ACTIONS(1519), 6, - sym_identifier, + ACTIONS(1040), 3, anon_sym_DASH, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1521), 11, + anon_sym_DOT, + ACTIONS(1042), 14, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [175370] = 8, + [170817] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7395), 1, - anon_sym_DOT, - STATE(4480), 1, + ACTIONS(2239), 1, + anon_sym_LPAREN2, + ACTIONS(2241), 1, + aux_sym_unquoted_token4, + STATE(4201), 1, sym_comment, - STATE(4681), 1, - aux_sym_cell_path_repeat1, - STATE(4936), 1, - sym_path, - STATE(5066), 1, - sym_cell_path, - ACTIONS(1822), 2, + ACTIONS(1076), 3, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1078), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(1820), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383423,46 +358339,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [175406] = 9, - ACTIONS(247), 1, + [170849] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5704), 1, + ACTIONS(7121), 1, anon_sym_DOT, - ACTIONS(7469), 1, - anon_sym_QMARK2, - STATE(2760), 1, - sym_path, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(4481), 1, + STATE(4202), 1, sym_comment, - STATE(5307), 1, + STATE(4324), 1, + aux_sym_cell_path_repeat1, + STATE(4608), 1, + sym_path, + STATE(4928), 1, sym_cell_path, - ACTIONS(7465), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7467), 10, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [175444] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(4482), 1, - sym_comment, - STATE(7887), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3259), 15, + ACTIONS(1857), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1855), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383474,19 +358367,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [175474] = 5, + [170885] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - STATE(4483), 1, + STATE(4203), 1, sym_comment, - STATE(7720), 1, + STATE(7376), 1, sym__expr_parenthesized_immediate, - ACTIONS(7333), 15, + ACTIONS(7086), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -383502,49 +358392,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [175504] = 8, + [170915] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7395), 1, - anon_sym_DOT, - STATE(4484), 1, + STATE(4204), 1, sym_comment, - STATE(4681), 1, - aux_sym_cell_path_repeat1, - STATE(4936), 1, - sym_path, - STATE(5070), 1, - sym_cell_path, - ACTIONS(1877), 2, - ts_builtin_sym_end, + ACTIONS(2135), 3, sym__space, - ACTIONS(1875), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [175540] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2091), 1, - anon_sym_LPAREN2, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(4485), 1, - sym_comment, - ACTIONS(2089), 3, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(2093), 12, - ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2133), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383556,72 +358413,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [175572] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [170943] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4486), 1, + STATE(4205), 1, sym_comment, - ACTIONS(1585), 6, - sym_identifier, + ACTIONS(1044), 3, anon_sym_DASH, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1587), 11, + anon_sym_DOT, + ACTIONS(1046), 14, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [175600] = 5, + [170971] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(4487), 1, + STATE(4206), 1, sym_comment, - STATE(7720), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7333), 15, - ts_builtin_sym_end, + ACTIONS(1048), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1050), 14, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [175630] = 8, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [170999] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7395), 1, + ACTIONS(7121), 1, anon_sym_DOT, - STATE(4488), 1, + STATE(4207), 1, sym_comment, - STATE(4681), 1, + STATE(4324), 1, aux_sym_cell_path_repeat1, - STATE(4936), 1, + STATE(4608), 1, sym_path, - STATE(5182), 1, + STATE(4872), 1, sym_cell_path, - ACTIONS(1745), 2, + ACTIONS(1861), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1741), 11, + ACTIONS(1859), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383633,23 +358492,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [175666] = 8, + [171035] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7395), 1, + ACTIONS(7121), 1, anon_sym_DOT, - STATE(4489), 1, + STATE(4208), 1, sym_comment, - STATE(4681), 1, + STATE(4324), 1, aux_sym_cell_path_repeat1, - STATE(4936), 1, + STATE(4608), 1, sym_path, - STATE(5121), 1, + STATE(4882), 1, sym_cell_path, - ACTIONS(1826), 2, + ACTIONS(1865), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1824), 11, + ACTIONS(1863), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383661,48 +358520,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [175702] = 5, + [171071] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(4490), 1, + ACTIONS(5637), 1, + anon_sym_DOT, + ACTIONS(7168), 1, + anon_sym_QMARK2, + STATE(2590), 1, + sym_path, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(4209), 1, sym_comment, - STATE(7887), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3263), 15, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [175732] = 8, + STATE(5099), 1, + sym_cell_path, + ACTIONS(7164), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(7166), 10, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [171109] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7395), 1, + ACTIONS(7121), 1, anon_sym_DOT, - STATE(4491), 1, + STATE(4210), 1, sym_comment, - STATE(4681), 1, + STATE(4324), 1, aux_sym_cell_path_repeat1, - STATE(4936), 1, + STATE(4608), 1, sym_path, - STATE(5188), 1, + STATE(4764), 1, sym_cell_path, - ACTIONS(1901), 2, + ACTIONS(1869), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1899), 11, + ACTIONS(1867), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383714,23 +358577,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [175768] = 8, + [171145] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7395), 1, - anon_sym_DOT, - STATE(4492), 1, + STATE(4211), 1, sym_comment, - STATE(4681), 1, - aux_sym_cell_path_repeat1, - STATE(4936), 1, - sym_path, - STATE(5032), 1, - sym_cell_path, - ACTIONS(1833), 2, - ts_builtin_sym_end, + ACTIONS(1066), 3, sym__space, - ACTIONS(1831), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1064), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383742,23 +358598,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [175804] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [171173] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7395), 1, - anon_sym_DOT, - STATE(4493), 1, + ACTIONS(7170), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7172), 1, + aux_sym__immediate_decimal_token2, + STATE(4212), 1, sym_comment, - STATE(4681), 1, - aux_sym_cell_path_repeat1, - STATE(4936), 1, - sym_path, - STATE(5052), 1, - sym_cell_path, - ACTIONS(1837), 2, + ACTIONS(1633), 3, ts_builtin_sym_end, sym__space, - ACTIONS(1835), 11, + anon_sym_LPAREN2, + ACTIONS(1631), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383770,17 +358626,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [175840] = 5, - ACTIONS(247), 1, + aux_sym_unquoted_token2, + [171205] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(4494), 1, + ACTIONS(7121), 1, + anon_sym_DOT, + STATE(4213), 1, sym_comment, - STATE(7720), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7333), 15, + STATE(4324), 1, + aux_sym_cell_path_repeat1, + STATE(4417), 1, + sym_cell_path, + STATE(4608), 1, + sym_path, + ACTIONS(1688), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1686), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383792,26 +358655,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [175870] = 8, + [171241] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7395), 1, + ACTIONS(7121), 1, anon_sym_DOT, - STATE(4495), 1, + STATE(4214), 1, sym_comment, - STATE(4681), 1, + STATE(4324), 1, aux_sym_cell_path_repeat1, - STATE(4936), 1, + STATE(4608), 1, sym_path, - STATE(5057), 1, + STATE(4789), 1, sym_cell_path, - ACTIONS(1841), 2, + ACTIONS(1873), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1839), 11, + ACTIONS(1871), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383823,23 +358683,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [175906] = 8, + [171277] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7395), 1, + ACTIONS(7121), 1, anon_sym_DOT, - STATE(4496), 1, + STATE(4215), 1, sym_comment, - STATE(4681), 1, + STATE(4324), 1, aux_sym_cell_path_repeat1, - STATE(4936), 1, + STATE(4608), 1, sym_path, - STATE(5104), 1, + STATE(4820), 1, sym_cell_path, - ACTIONS(1861), 2, + ACTIONS(1877), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1859), 11, + ACTIONS(1875), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383851,20 +358711,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [175942] = 7, + [171313] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(953), 1, - sym__space, - ACTIONS(7321), 1, + ACTIONS(7121), 1, anon_sym_DOT, - STATE(4497), 1, + STATE(4216), 1, sym_comment, - STATE(4520), 1, + STATE(4324), 1, aux_sym_cell_path_repeat1, - STATE(4815), 1, + STATE(4608), 1, sym_path, - ACTIONS(951), 13, + STATE(4853), 1, + sym_cell_path, + ACTIONS(1971), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1969), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383876,22 +358739,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [175976] = 6, - ACTIONS(3), 1, + [171349] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2099), 1, - anon_sym_LPAREN2, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - STATE(4498), 1, + ACTIONS(1755), 1, + aux_sym_unquoted_token2, + STATE(4217), 1, sym_comment, - ACTIONS(2097), 3, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(2101), 12, + ACTIONS(1757), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -383904,21 +358759,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [176008] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2099), 1, - anon_sym_LPAREN2, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - STATE(4499), 1, - sym_comment, - ACTIONS(2105), 3, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(2107), 12, + anon_sym_LPAREN2, + [171377] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4218), 1, + sym_comment, + ACTIONS(1643), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1645), 14, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [171405] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7121), 1, + anon_sym_DOT, + STATE(4219), 1, + sym_comment, + STATE(4316), 1, + sym_cell_path, + STATE(4324), 1, + aux_sym_cell_path_repeat1, + STATE(4608), 1, + sym_path, + ACTIONS(1629), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1625), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383930,23 +358815,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [176040] = 8, + [171441] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7395), 1, + ACTIONS(7121), 1, anon_sym_DOT, - STATE(4500), 1, + STATE(4220), 1, sym_comment, - STATE(4681), 1, + STATE(4324), 1, aux_sym_cell_path_repeat1, - STATE(4936), 1, + STATE(4608), 1, sym_path, - STATE(5118), 1, + STATE(4888), 1, sym_cell_path, - ACTIONS(1865), 2, + ACTIONS(1951), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1863), 11, + ACTIONS(1949), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383958,17 +358843,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [176076] = 5, - ACTIONS(247), 1, + [171477] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1711), 1, - anon_sym_LPAREN2, - ACTIONS(1719), 1, - aux_sym_unquoted_token2, - STATE(4501), 1, + ACTIONS(7121), 1, + anon_sym_DOT, + STATE(4221), 1, sym_comment, - ACTIONS(1717), 15, + STATE(4324), 1, + aux_sym_cell_path_repeat1, + STATE(4608), 1, + sym_path, + STATE(4782), 1, + sym_cell_path, + ACTIONS(1967), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1965), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383980,26 +358871,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [176106] = 8, + [171513] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7395), 1, + ACTIONS(7121), 1, anon_sym_DOT, - STATE(4502), 1, + STATE(4222), 1, sym_comment, - STATE(4681), 1, + STATE(4324), 1, aux_sym_cell_path_repeat1, - STATE(4936), 1, + STATE(4608), 1, sym_path, - STATE(5123), 1, + STATE(4867), 1, sym_cell_path, - ACTIONS(7393), 2, + ACTIONS(1892), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7391), 11, + ACTIONS(1890), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384011,23 +358899,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [176142] = 8, + [171549] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7395), 1, - anon_sym_DOT, - STATE(4503), 1, + STATE(4223), 1, sym_comment, - STATE(4681), 1, - aux_sym_cell_path_repeat1, - STATE(4936), 1, - sym_path, - STATE(5137), 1, - sym_cell_path, - ACTIONS(1869), 2, + ACTIONS(1054), 4, ts_builtin_sym_end, sym__space, - ACTIONS(1867), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1052), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384039,32 +358921,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [176178] = 13, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [171577] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7415), 1, + ACTIONS(7050), 1, anon_sym_EQ, - ACTIONS(7417), 1, + ACTIONS(7052), 1, sym__newline, - ACTIONS(7419), 1, + ACTIONS(7054), 1, anon_sym_COLON, - ACTIONS(7421), 1, - anon_sym_LPAREN, - ACTIONS(7473), 1, + ACTIONS(7058), 1, anon_sym_COMMA, - ACTIONS(7475), 1, + ACTIONS(7176), 1, anon_sym_DASH, - STATE(4504), 1, + STATE(4224), 1, sym_comment, - STATE(4859), 1, - sym_flag_capsule, - STATE(5048), 1, + STATE(4381), 1, + aux_sym_parameter_repeat1, + STATE(5132), 1, + aux_sym_parameter_repeat2, + STATE(6214), 1, + aux_sym_shebang_repeat1, + STATE(5091), 2, sym_param_type, - STATE(5049), 1, sym_param_value, - STATE(5224), 1, - aux_sym_shebang_repeat1, - ACTIONS(7471), 7, + ACTIONS(7174), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -384072,17 +358955,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [176224] = 5, + [171621] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7351), 1, + ACTIONS(7068), 1, aux_sym__immediate_decimal_token2, - STATE(4505), 1, + STATE(4225), 1, sym_comment, - ACTIONS(1591), 2, + ACTIONS(1645), 2, sym__space, anon_sym_LPAREN2, - ACTIONS(1589), 14, + ACTIONS(1643), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384097,23 +358980,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, aux_sym_unquoted_token2, - [176254] = 8, + [171651] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7395), 1, + ACTIONS(7121), 1, anon_sym_DOT, - STATE(4506), 1, + STATE(4226), 1, sym_comment, - STATE(4681), 1, + STATE(4324), 1, aux_sym_cell_path_repeat1, - STATE(4936), 1, + STATE(4608), 1, sym_path, - STATE(5141), 1, + STATE(4929), 1, sym_cell_path, - ACTIONS(7355), 2, + ACTIONS(1959), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7353), 11, + ACTIONS(1957), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384125,17 +359008,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [176290] = 4, + [171687] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4227), 1, + sym_comment, + ACTIONS(1631), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1633), 14, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [171715] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4507), 1, + STATE(4228), 1, sym_comment, - ACTIONS(996), 4, + ACTIONS(1062), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(994), 13, + ACTIONS(1060), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384149,23 +359056,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, anon_sym_DOT, - [176318] = 8, + [171743] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7395), 1, - anon_sym_DOT, - STATE(4508), 1, + ACTIONS(7178), 1, + aux_sym__immediate_decimal_token2, + STATE(4229), 1, sym_comment, - STATE(4681), 1, - aux_sym_cell_path_repeat1, - STATE(4936), 1, - sym_path, - STATE(5160), 1, - sym_cell_path, - ACTIONS(1857), 2, - ts_builtin_sym_end, + ACTIONS(1707), 2, sym__space, - ACTIONS(1855), 11, + anon_sym_LPAREN2, + ACTIONS(1705), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384177,76 +359078,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [176354] = 7, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [171773] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7335), 1, - anon_sym_DOT, - STATE(4509), 1, - sym_comment, - STATE(4510), 1, - aux_sym_cell_path_repeat1, - STATE(4828), 1, - sym_path, - ACTIONS(951), 2, - anon_sym_DASH, + ACTIONS(2041), 1, + sym__space, + ACTIONS(7180), 1, anon_sym_DOT_DOT2, - ACTIONS(953), 12, - sym_identifier, + STATE(4230), 1, + sym_comment, + ACTIONS(7182), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2035), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [176388] = 6, - ACTIONS(247), 1, + anon_sym_RBRACE, + [171805] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7477), 1, - anon_sym_DOT, - STATE(4828), 1, - sym_path, - ACTIONS(955), 2, - anon_sym_DASH, + ACTIONS(2049), 1, + sym__space, + ACTIONS(7184), 1, anon_sym_DOT_DOT2, - STATE(4510), 2, + STATE(4231), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(957), 12, - sym_identifier, + ACTIONS(7186), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2043), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [176420] = 8, + anon_sym_RBRACE, + [171837] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7395), 1, + ACTIONS(7121), 1, anon_sym_DOT, - STATE(4511), 1, + STATE(4232), 1, sym_comment, - STATE(4681), 1, + STATE(4324), 1, aux_sym_cell_path_repeat1, - STATE(4936), 1, + STATE(4608), 1, sym_path, - STATE(5027), 1, + STATE(4774), 1, sym_cell_path, - ACTIONS(1776), 2, + ACTIONS(1915), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1774), 11, + ACTIONS(1913), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384258,17 +359161,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [176456] = 4, + [171873] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4512), 1, + ACTIONS(7121), 1, + anon_sym_DOT, + STATE(4233), 1, sym_comment, - ACTIONS(988), 4, + STATE(4324), 1, + aux_sym_cell_path_repeat1, + STATE(4608), 1, + sym_path, + STATE(4870), 1, + sym_cell_path, + ACTIONS(1896), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(986), 13, + ACTIONS(1894), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384280,19 +359189,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [176484] = 4, + [171909] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4513), 1, + ACTIONS(7121), 1, + anon_sym_DOT, + STATE(4234), 1, sym_comment, - ACTIONS(992), 4, + STATE(4324), 1, + aux_sym_cell_path_repeat1, + STATE(4608), 1, + sym_path, + STATE(4873), 1, + sym_cell_path, + ACTIONS(1939), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(990), 13, + ACTIONS(1937), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384304,49 +359217,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [176512] = 9, - ACTIONS(247), 1, + [171945] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5704), 1, + ACTIONS(7121), 1, anon_sym_DOT, - ACTIONS(7484), 1, - anon_sym_QMARK2, - STATE(2760), 1, - sym_path, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(4514), 1, + STATE(4235), 1, sym_comment, - STATE(5249), 1, + STATE(4324), 1, + aux_sym_cell_path_repeat1, + STATE(4608), 1, + sym_path, + STATE(4821), 1, sym_cell_path, - ACTIONS(7480), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7482), 10, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [176550] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4515), 1, - sym_comment, - ACTIONS(2131), 4, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - aux_sym_unquoted_token4, - ACTIONS(2133), 13, + ACTIONS(1919), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1917), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384358,17 +359245,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN2, - [176578] = 5, + [171981] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2125), 1, - anon_sym_LPAREN2, - ACTIONS(2129), 1, + ACTIONS(1631), 1, aux_sym_unquoted_token2, - STATE(4516), 1, + STATE(4236), 1, sym_comment, - ACTIONS(2127), 15, + ACTIONS(1633), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -384384,16 +359268,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [176608] = 4, + anon_sym_LPAREN2, + [172009] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4517), 1, + ACTIONS(7121), 1, + anon_sym_DOT, + STATE(4237), 1, sym_comment, - ACTIONS(1984), 3, + STATE(4324), 1, + aux_sym_cell_path_repeat1, + STATE(4608), 1, + sym_path, + STATE(4865), 1, + sym_cell_path, + ACTIONS(1947), 2, + ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1982), 14, + ACTIONS(1945), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384405,20 +359297,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [176636] = 5, + [172045] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7486), 1, - aux_sym__immediate_decimal_token2, - STATE(4518), 1, + ACTIONS(7121), 1, + anon_sym_DOT, + STATE(4238), 1, sym_comment, - ACTIONS(1650), 2, + STATE(4324), 1, + aux_sym_cell_path_repeat1, + STATE(4608), 1, + sym_path, + STATE(4811), 1, + sym_cell_path, + ACTIONS(7082), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1648), 14, + ACTIONS(7080), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384430,19 +359325,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [172081] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4239), 1, + sym_comment, + ACTIONS(1705), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1707), 14, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [176666] = 5, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [172109] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1457), 1, - aux_sym_unquoted_token2, - ACTIONS(2119), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - STATE(4519), 1, + STATE(4240), 1, sym_comment, - ACTIONS(2121), 15, + STATE(7570), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4842), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -384458,19 +359374,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [176696] = 6, - ACTIONS(3), 1, + [172139] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(957), 1, - sym__space, - ACTIONS(7488), 1, - anon_sym_DOT, - STATE(4815), 1, - sym_path, - STATE(4520), 2, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(4241), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(955), 13, + STATE(7570), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4759), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384482,51 +359396,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [172169] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7050), 1, + anon_sym_EQ, + ACTIONS(7052), 1, + sym__newline, + ACTIONS(7054), 1, + anon_sym_COLON, + ACTIONS(7058), 1, + anon_sym_COMMA, + ACTIONS(7190), 1, + anon_sym_DASH, + STATE(4181), 1, + aux_sym_parameter_repeat1, + STATE(4242), 1, + sym_comment, + STATE(5144), 1, + aux_sym_parameter_repeat2, + STATE(6214), 1, + aux_sym_shebang_repeat1, + STATE(5091), 2, + sym_param_type, + sym_param_value, + ACTIONS(7188), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [176728] = 6, - ACTIONS(3), 1, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [172213] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1941), 1, - sym__space, - ACTIONS(7491), 1, - anon_sym_DOT_DOT2, - STATE(4521), 1, + STATE(4243), 1, sym_comment, - ACTIONS(7493), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1935), 13, + ACTIONS(1755), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1757), 14, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [176760] = 8, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [172241] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7395), 1, + ACTIONS(7121), 1, anon_sym_DOT, - STATE(4522), 1, + STATE(4244), 1, sym_comment, - STATE(4681), 1, + STATE(4324), 1, aux_sym_cell_path_repeat1, - STATE(4936), 1, - sym_path, - STATE(5041), 1, + STATE(4333), 1, sym_cell_path, - ACTIONS(1873), 2, + STATE(4608), 1, + sym_path, + ACTIONS(1013), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1871), 11, + ACTIONS(1011), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384538,19 +359483,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [176796] = 6, - ACTIONS(3), 1, + [172277] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7397), 1, - anon_sym_DOT_DOT2, - ACTIONS(7497), 1, - sym__space, - STATE(4523), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(4245), 1, sym_comment, - ACTIONS(7399), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7495), 13, + STATE(7570), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4781), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384562,18 +359505,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [176828] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [172307] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1711), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - ACTIONS(1719), 1, - aux_sym_unquoted_token2, - STATE(4524), 1, + STATE(4246), 1, sym_comment, - ACTIONS(2087), 15, + STATE(7570), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4769), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -384589,14 +359533,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [176858] = 4, - ACTIONS(247), 1, + [172337] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4525), 1, + ACTIONS(7121), 1, + anon_sym_DOT, + STATE(4247), 1, sym_comment, - STATE(4531), 1, - aux_sym_shebang_repeat1, - ACTIONS(7499), 15, + STATE(4324), 1, + aux_sym_cell_path_repeat1, + STATE(4608), 1, + sym_path, + STATE(4822), 1, + sym_cell_path, + ACTIONS(1837), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1835), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384608,20 +359561,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [176885] = 5, - ACTIONS(247), 1, + [172373] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7503), 1, - anon_sym_and, - ACTIONS(7505), 1, - anon_sym_xor, - STATE(4526), 1, + ACTIONS(2067), 1, + sym__space, + ACTIONS(7192), 1, + anon_sym_DOT_DOT2, + STATE(4248), 1, sym_comment, - ACTIONS(7501), 14, + ACTIONS(7194), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2061), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384635,13 +359587,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_or, - [176914] = 3, - ACTIONS(247), 1, + [172405] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4527), 1, + STATE(4249), 1, sym_comment, - ACTIONS(7333), 16, + ACTIONS(1058), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1056), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384653,21 +359609,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [176939] = 5, - ACTIONS(247), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [172433] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7509), 1, - anon_sym_and, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(4528), 1, + ACTIONS(7121), 1, + anon_sym_DOT, + STATE(4250), 1, sym_comment, - ACTIONS(7507), 14, + STATE(4324), 1, + aux_sym_cell_path_repeat1, + STATE(4608), 1, + sym_path, + STATE(4857), 1, + sym_cell_path, + ACTIONS(1841), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1839), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384679,23 +359639,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [172469] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1495), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1786), 1, + anon_sym_DASH, + ACTIONS(1788), 1, + anon_sym_LPAREN2, + ACTIONS(7196), 1, + anon_sym_DOT_DOT2, + STATE(4251), 1, + sym_comment, + ACTIONS(7198), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1794), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, - [176968] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [172505] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7511), 1, - anon_sym_DOT, - STATE(4936), 1, - sym_path, - ACTIONS(957), 2, - ts_builtin_sym_end, + ACTIONS(2057), 1, sym__space, - STATE(4529), 2, + ACTIONS(7200), 1, + anon_sym_DOT_DOT2, + STATE(4252), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(955), 11, + ACTIONS(7202), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2051), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384707,16 +359691,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [176999] = 5, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [172537] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7514), 1, - anon_sym_and, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(4530), 1, + ACTIONS(1078), 1, + sym__space, + ACTIONS(7153), 1, + anon_sym_DOT_DOT2, + STATE(4253), 1, sym_comment, - ACTIONS(7507), 14, + ACTIONS(7155), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1076), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384729,16 +359718,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, - [177028] = 4, + anon_sym_RBRACE, + [172569] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1859), 1, + anon_sym_DASH, + ACTIONS(7204), 1, + anon_sym_DOT, + STATE(4254), 1, + sym_comment, + STATE(4554), 1, + aux_sym_cell_path_repeat1, + STATE(4767), 1, + sym_path, + STATE(4926), 1, + sym_cell_path, + ACTIONS(1861), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [172604] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(728), 1, + ACTIONS(7208), 1, + anon_sym_and, + STATE(690), 1, aux_sym_shebang_repeat1, - STATE(4531), 1, + STATE(4255), 1, sym_comment, - ACTIONS(7516), 15, + ACTIONS(7206), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384751,17 +359768,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, anon_sym_xor, anon_sym_or, - [177055] = 4, - ACTIONS(247), 1, + [172633] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(4532), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + ACTIONS(4769), 1, + sym__space, + STATE(4256), 1, sym_comment, - ACTIONS(7518), 15, + STATE(7570), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4771), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384774,21 +359794,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [177082] = 6, + anon_sym_RBRACE, + [172664] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7520), 1, + ACTIONS(7210), 1, sym__newline, - ACTIONS(7523), 1, + ACTIONS(7215), 1, anon_sym_and, - STATE(4533), 1, + STATE(4257), 1, sym_comment, - STATE(4543), 1, + STATE(4370), 1, aux_sym_shebang_repeat1, - ACTIONS(7499), 13, + ACTIONS(7213), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384802,18 +359820,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor, anon_sym_or, - [177113] = 6, + [172695] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7520), 1, + ACTIONS(1949), 1, + anon_sym_DASH, + ACTIONS(7204), 1, + anon_sym_DOT, + STATE(4258), 1, + sym_comment, + STATE(4554), 1, + aux_sym_cell_path_repeat1, + STATE(4767), 1, + sym_path, + STATE(4826), 1, + sym_cell_path, + ACTIONS(1951), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(7525), 1, - anon_sym_and, - STATE(4534), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [172730] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4259), 1, sym_comment, - STATE(4572), 1, - aux_sym_shebang_repeat1, - ACTIONS(7499), 13, + ACTIONS(7217), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384825,16 +359865,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, anon_sym_xor, anon_sym_or, - [177144] = 4, + [172755] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(4535), 1, + STATE(4260), 1, sym_comment, - ACTIONS(7518), 15, + ACTIONS(7217), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384847,21 +359887,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [177171] = 6, + [172780] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7520), 1, - sym__newline, - ACTIONS(7523), 1, + ACTIONS(7221), 1, anon_sym_and, - STATE(4536), 1, - sym_comment, - STATE(4573), 1, + ACTIONS(7223), 1, + anon_sym_xor, + STATE(690), 1, aux_sym_shebang_repeat1, - ACTIONS(7499), 13, + STATE(4261), 1, + sym_comment, + ACTIONS(7219), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384873,39 +359915,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, anon_sym_or, - [177202] = 4, + [172811] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(4537), 1, + ACTIONS(1851), 1, + anon_sym_DASH, + ACTIONS(7204), 1, + anon_sym_DOT, + STATE(4262), 1, sym_comment, - STATE(4588), 1, - aux_sym_shebang_repeat1, - ACTIONS(7527), 15, + STATE(4554), 1, + aux_sym_cell_path_repeat1, + STATE(4767), 1, + sym_path, + STATE(4923), 1, + sym_cell_path, + ACTIONS(1853), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [177229] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [172846] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4538), 1, + STATE(4263), 1, sym_comment, - STATE(4589), 1, + STATE(4364), 1, aux_sym_shebang_repeat1, - ACTIONS(7527), 15, + ACTIONS(7225), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384921,14 +359966,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [177256] = 4, + [172873] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(4539), 1, + ACTIONS(7227), 1, + anon_sym_and, + STATE(4264), 1, sym_comment, - ACTIONS(7516), 15, + ACTIONS(7217), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384941,23 +359986,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, + anon_sym_RBRACE, anon_sym_xor, anon_sym_or, - [177283] = 7, + [172900] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5245), 1, + ACTIONS(5095), 1, sym__newline, - ACTIONS(7525), 1, + ACTIONS(7231), 1, anon_sym_and, - ACTIONS(7529), 1, + ACTIONS(7233), 1, anon_sym_xor, - STATE(4540), 1, + ACTIONS(7235), 1, + anon_sym_or, + STATE(4265), 1, sym_comment, - STATE(4561), 1, + STATE(4394), 1, aux_sym_shebang_repeat1, - ACTIONS(7527), 12, + ACTIONS(7229), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384969,17 +360016,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, - [177316] = 5, + [172935] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7509), 1, - anon_sym_and, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(4541), 1, + STATE(4266), 1, sym_comment, - ACTIONS(7516), 14, + ACTIONS(4990), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384992,19 +360034,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, anon_sym_xor, anon_sym_or, - [177345] = 5, + [172960] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7509), 1, + ACTIONS(5095), 1, + sym__newline, + ACTIONS(7215), 1, anon_sym_and, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(4542), 1, + ACTIONS(7237), 1, + anon_sym_xor, + ACTIONS(7239), 1, + anon_sym_or, + STATE(4267), 1, sym_comment, - ACTIONS(7518), 14, - sym__newline, + STATE(4395), 1, + aux_sym_shebang_repeat1, + ACTIONS(7229), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385016,44 +360065,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, - [177374] = 5, + [172995] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7514), 1, - anon_sym_and, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(4543), 1, + ACTIONS(1839), 1, + anon_sym_DASH, + ACTIONS(7204), 1, + anon_sym_DOT, + STATE(4268), 1, sym_comment, - ACTIONS(7516), 14, + STATE(4554), 1, + aux_sym_cell_path_repeat1, + STATE(4767), 1, + sym_path, + STATE(4886), 1, + sym_cell_path, + ACTIONS(1841), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, - [177403] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [173030] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7509), 1, + ACTIONS(7241), 1, anon_sym_and, - ACTIONS(7531), 1, - anon_sym_xor, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(4544), 1, + STATE(4269), 1, sym_comment, - ACTIONS(7507), 13, + ACTIONS(7217), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385066,17 +360112,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_xor, anon_sym_or, - [177434] = 5, + [173057] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7514), 1, + ACTIONS(7208), 1, anon_sym_and, - STATE(728), 1, + STATE(690), 1, aux_sym_shebang_repeat1, - STATE(4545), 1, + STATE(4270), 1, sym_comment, - ACTIONS(7518), 14, + ACTIONS(7219), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385091,18 +360139,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor, anon_sym_or, - [177463] = 6, - ACTIONS(247), 1, + [173086] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7509), 1, - anon_sym_and, - ACTIONS(7531), 1, - anon_sym_xor, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(4546), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + ACTIONS(4842), 1, + sym__space, + STATE(4271), 1, sym_comment, - ACTIONS(7507), 13, + STATE(7570), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4844), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385115,19 +360163,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, - [177494] = 6, + anon_sym_RBRACE, + [173117] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7525), 1, + ACTIONS(7227), 1, anon_sym_and, - ACTIONS(7533), 1, - sym__newline, - STATE(4547), 1, + ACTIONS(7243), 1, + anon_sym_xor, + STATE(4272), 1, sym_comment, - STATE(4596), 1, - aux_sym_shebang_repeat1, - ACTIONS(7527), 13, + ACTIONS(7217), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385139,20 +360186,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, + anon_sym_RBRACE, anon_sym_or, - [177525] = 6, + [173146] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7509), 1, + ACTIONS(7241), 1, anon_sym_and, - ACTIONS(7531), 1, + ACTIONS(7245), 1, anon_sym_xor, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(4548), 1, + STATE(4273), 1, sym_comment, - ACTIONS(7516), 13, + ACTIONS(7217), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385165,42 +360210,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_or, - [177556] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4549), 1, - sym_comment, - ACTIONS(966), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(968), 13, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [177583] = 6, + [173175] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7514), 1, - anon_sym_and, - ACTIONS(7536), 1, - anon_sym_xor, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(4550), 1, + STATE(4274), 1, sym_comment, - ACTIONS(7507), 13, + ACTIONS(7217), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385213,19 +360230,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, anon_sym_or, - [177614] = 6, + [173200] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7523), 1, - anon_sym_and, - ACTIONS(7533), 1, - sym__newline, - STATE(4551), 1, + STATE(4275), 1, sym_comment, - STATE(4610), 1, - aux_sym_shebang_repeat1, - ACTIONS(7527), 13, + ACTIONS(7217), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385237,16 +360252,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, anon_sym_xor, anon_sym_or, - [177645] = 4, - ACTIONS(247), 1, + [173225] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4552), 1, + ACTIONS(7247), 1, + anon_sym_DOT_DOT2, + STATE(4276), 1, sym_comment, - STATE(4606), 1, - aux_sym_shebang_repeat1, - ACTIONS(7538), 15, + ACTIONS(2041), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7249), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2035), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385258,22 +360281,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [177672] = 6, - ACTIONS(247), 1, + [173256] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7514), 1, - anon_sym_and, - ACTIONS(7536), 1, - anon_sym_xor, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(4553), 1, + ACTIONS(7251), 1, + anon_sym_DOT_DOT2, + STATE(4277), 1, sym_comment, - ACTIONS(7516), 13, + ACTIONS(2049), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7253), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2043), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385285,44 +360306,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or, - [177703] = 4, + [173287] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(4554), 1, - sym_comment, - ACTIONS(976), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(978), 13, - sym_identifier, + ACTIONS(5095), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [177730] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7509), 1, + ACTIONS(7231), 1, anon_sym_and, - ACTIONS(7531), 1, + ACTIONS(7233), 1, anon_sym_xor, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(4555), 1, + STATE(4278), 1, sym_comment, - ACTIONS(7518), 13, - sym__newline, + STATE(4455), 1, + aux_sym_shebang_repeat1, + ACTIONS(7225), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385335,41 +360332,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or, - [177761] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4556), 1, - sym_comment, - ACTIONS(962), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(964), 13, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [177788] = 6, + [173320] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - ACTIONS(7542), 1, - sym__space, - STATE(4557), 1, + ACTIONS(7255), 1, + anon_sym_QMARK2, + STATE(4279), 1, sym_comment, - STATE(7700), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7540), 13, + ACTIONS(1036), 2, + sym__space, + anon_sym_DOT, + ACTIONS(1034), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385383,18 +360356,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [177819] = 6, - ACTIONS(247), 1, + [173349] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7514), 1, - anon_sym_and, - ACTIONS(7536), 1, - anon_sym_xor, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(4558), 1, + ACTIONS(7257), 1, + anon_sym_QMARK2, + STATE(4280), 1, sym_comment, - ACTIONS(7507), 13, + ACTIONS(1030), 2, + sym__space, + anon_sym_DOT, + ACTIONS(1028), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385407,69 +360379,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, - [177850] = 4, - ACTIONS(247), 1, + anon_sym_RBRACE, + [173378] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4559), 1, + ACTIONS(7259), 1, + aux_sym__immediate_decimal_token2, + STATE(4281), 1, sym_comment, - ACTIONS(1589), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1591), 13, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + ACTIONS(1707), 3, + ts_builtin_sym_end, + sym__space, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [177877] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5704), 1, - anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(4362), 1, - sym_cell_path, - STATE(4560), 1, - sym_comment, - ACTIONS(945), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(947), 10, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [177912] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7509), 1, - anon_sym_and, - ACTIONS(7531), 1, - anon_sym_xor, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(4561), 1, - sym_comment, - ACTIONS(7544), 13, + ACTIONS(1705), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385481,20 +360403,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or, - [177943] = 6, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [173407] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4944), 1, - sym__space, - ACTIONS(7546), 1, - anon_sym_EQ2, - ACTIONS(7548), 1, - sym_short_flag_identifier, - STATE(4562), 1, + STATE(4282), 1, sym_comment, - ACTIONS(4942), 13, + STATE(4376), 1, + aux_sym_shebang_repeat1, + ACTIONS(7225), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385507,15 +360424,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [177974] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [173434] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(4563), 1, + ACTIONS(7227), 1, + anon_sym_and, + STATE(4283), 1, sym_comment, - ACTIONS(7516), 15, + ACTIONS(7217), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385528,17 +360447,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, + anon_sym_RBRACE, anon_sym_xor, anon_sym_or, - [178001] = 4, + [173461] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(4564), 1, + ACTIONS(7241), 1, + anon_sym_and, + STATE(4284), 1, sym_comment, - ACTIONS(7516), 15, + ACTIONS(7217), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385551,22 +360470,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, + anon_sym_RBRACE, anon_sym_xor, anon_sym_or, - [178028] = 6, + [173488] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7514), 1, + ACTIONS(5095), 1, + sym__newline, + ACTIONS(7215), 1, anon_sym_and, - ACTIONS(7536), 1, + ACTIONS(7237), 1, anon_sym_xor, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(4565), 1, + STATE(4285), 1, sym_comment, - ACTIONS(7518), 13, - sym__newline, + STATE(4427), 1, + aux_sym_shebang_repeat1, + ACTIONS(7225), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385579,67 +360499,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or, - [178059] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7407), 1, - aux_sym__immediate_decimal_token2, - STATE(4566), 1, - sym_comment, - ACTIONS(1589), 4, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1591), 11, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [178088] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4567), 1, - sym_comment, - ACTIONS(1569), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1571), 13, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [178115] = 7, + [173521] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5245), 1, - sym__newline, - ACTIONS(7525), 1, + ACTIONS(7227), 1, anon_sym_and, - ACTIONS(7529), 1, + ACTIONS(7243), 1, anon_sym_xor, - STATE(4568), 1, + STATE(4286), 1, sym_comment, - STATE(4622), 1, - aux_sym_shebang_repeat1, - ACTIONS(7527), 12, + ACTIONS(7217), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385651,21 +360521,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_or, - [178148] = 7, + [173550] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5245), 1, + ACTIONS(5095), 1, sym__newline, - ACTIONS(7523), 1, + ACTIONS(7231), 1, anon_sym_and, - ACTIONS(7550), 1, + ACTIONS(7233), 1, anon_sym_xor, - STATE(4569), 1, + ACTIONS(7235), 1, + anon_sym_or, + STATE(4287), 1, sym_comment, - STATE(4649), 1, + STATE(4433), 1, aux_sym_shebang_repeat1, - ACTIONS(7527), 12, + ACTIONS(7261), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385677,17 +360550,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, - [178181] = 5, + [173585] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7514), 1, + ACTIONS(7241), 1, anon_sym_and, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(4570), 1, + ACTIONS(7245), 1, + anon_sym_xor, + STATE(4288), 1, sym_comment, - ACTIONS(7507), 14, + ACTIONS(7217), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385700,41 +360572,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, + anon_sym_RBRACE, anon_sym_or, - [178210] = 4, + [173614] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4571), 1, + STATE(4289), 1, sym_comment, - ACTIONS(1648), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1650), 13, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [178237] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7509), 1, - anon_sym_and, - STATE(728), 1, + STATE(4342), 1, aux_sym_shebang_repeat1, - STATE(4572), 1, - sym_comment, - ACTIONS(7516), 14, + ACTIONS(7213), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385747,18 +360594,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and, anon_sym_xor, anon_sym_or, - [178266] = 5, - ACTIONS(247), 1, + [173641] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7514), 1, - anon_sym_and, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(4573), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + ACTIONS(7265), 1, + sym__space, + STATE(4290), 1, sym_comment, - ACTIONS(7516), 14, + STATE(7454), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7263), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385771,48 +360621,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, - [178295] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4574), 1, - sym_comment, - ACTIONS(1721), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1723), 13, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [178322] = 8, + anon_sym_RBRACE, + [173672] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1709), 1, + ACTIONS(1855), 1, anon_sym_DASH, - ACTIONS(1711), 1, - anon_sym_LPAREN2, - ACTIONS(1719), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(7552), 1, - anon_sym_DOT_DOT2, - STATE(4575), 1, + ACTIONS(7204), 1, + anon_sym_DOT, + STATE(4291), 1, sym_comment, - ACTIONS(7554), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1717), 10, + STATE(4554), 1, + aux_sym_cell_path_repeat1, + STATE(4767), 1, + sym_path, + STATE(4925), 1, + sym_cell_path, + ACTIONS(1857), 11, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -385823,18 +360649,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [178357] = 6, - ACTIONS(247), 1, + [173707] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7509), 1, - anon_sym_and, - ACTIONS(7531), 1, - anon_sym_xor, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(4576), 1, + ACTIONS(1798), 1, + anon_sym_LPAREN2, + ACTIONS(1804), 1, + sym__space, + ACTIONS(1806), 1, + aux_sym_unquoted_token2, + STATE(4292), 1, sym_comment, - ACTIONS(7516), 13, + ACTIONS(1796), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385847,67 +360673,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, - [178388] = 3, + anon_sym_RBRACE, + [173738] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(4577), 1, - sym_comment, - ACTIONS(7501), 16, + ACTIONS(7210), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(7231), 1, anon_sym_and, - anon_sym_xor, - anon_sym_or, - [178413] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7556), 1, - anon_sym_DOT_DOT2, - STATE(4578), 1, + STATE(4293), 1, sym_comment, - ACTIONS(1941), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7558), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1935), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [178444] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7514), 1, - anon_sym_and, - ACTIONS(7536), 1, - anon_sym_xor, - STATE(728), 1, + STATE(4354), 1, aux_sym_shebang_repeat1, - STATE(4579), 1, - sym_comment, - ACTIONS(7516), 13, - sym__newline, + ACTIONS(7213), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385919,69 +360697,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor, anon_sym_or, - [178475] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5704), 1, - anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(4580), 1, - sym_comment, - STATE(5331), 1, - sym_cell_path, - ACTIONS(7560), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7562), 10, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [178510] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5704), 1, - anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(4581), 1, - sym_comment, - STATE(5340), 1, - sym_cell_path, - ACTIONS(7564), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7566), 10, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [178545] = 4, + [173769] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7091), 1, + ACTIONS(6844), 1, aux_sym_unquoted_token2, - STATE(4582), 1, + STATE(4294), 1, sym_comment, - ACTIONS(1537), 15, + ACTIONS(1587), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -385997,43 +360722,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [178572] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4583), 1, - sym_comment, - ACTIONS(1945), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1943), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [178599] = 7, + [173796] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5245), 1, - sym__newline, - ACTIONS(7525), 1, + ACTIONS(7231), 1, anon_sym_and, - ACTIONS(7529), 1, - anon_sym_xor, - STATE(4548), 1, - aux_sym_shebang_repeat1, - STATE(4584), 1, + ACTIONS(7267), 1, + sym__newline, + STATE(4295), 1, sym_comment, - ACTIONS(7499), 12, + STATE(4446), 1, + aux_sym_shebang_repeat1, + ACTIONS(7225), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386045,15 +360745,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor, anon_sym_or, - [178632] = 4, - ACTIONS(247), 1, + [173827] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4585), 1, + ACTIONS(1645), 1, + sym__space, + ACTIONS(6934), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7270), 1, + anon_sym_DOT, + STATE(4296), 1, sym_comment, - STATE(4658), 1, - aux_sym_shebang_repeat1, - ACTIONS(7538), 15, + ACTIONS(1643), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386066,23 +360771,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [178659] = 7, + anon_sym_RBRACE, + [173858] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5245), 1, - sym__newline, - ACTIONS(7523), 1, + ACTIONS(7208), 1, anon_sym_and, - ACTIONS(7550), 1, + ACTIONS(7272), 1, anon_sym_xor, - STATE(4553), 1, + STATE(690), 1, aux_sym_shebang_repeat1, - STATE(4586), 1, + STATE(4297), 1, sym_comment, - ACTIONS(7499), 12, + ACTIONS(7219), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386095,14 +360797,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or, - [178692] = 4, + [173889] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4587), 1, + STATE(4298), 1, sym_comment, - STATE(4668), 1, + STATE(4392), 1, aux_sym_shebang_repeat1, - ACTIONS(7538), 15, + ACTIONS(7274), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386118,14 +360820,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [178719] = 4, + [173916] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(4588), 1, + STATE(4299), 1, sym_comment, - ACTIONS(7544), 15, + STATE(4426), 1, + aux_sym_shebang_repeat1, + ACTIONS(7274), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386141,14 +360843,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [178746] = 4, + [173943] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(728), 1, + STATE(690), 1, aux_sym_shebang_repeat1, - STATE(4589), 1, + STATE(4300), 1, sym_comment, - ACTIONS(7544), 15, + ACTIONS(7276), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386164,18 +360866,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [178773] = 6, + [173970] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7525), 1, + ACTIONS(7215), 1, anon_sym_and, - ACTIONS(7568), 1, + ACTIONS(7267), 1, sym__newline, - STATE(4528), 1, + STATE(4255), 1, aux_sym_shebang_repeat1, - STATE(4590), 1, + STATE(4301), 1, sym_comment, - ACTIONS(7538), 13, + ACTIONS(7225), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386189,15 +360891,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor, anon_sym_or, - [178804] = 4, + [174001] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(4591), 1, + ACTIONS(7231), 1, + anon_sym_and, + ACTIONS(7278), 1, + sym__newline, + STATE(4302), 1, sym_comment, - STATE(4705), 1, + STATE(4387), 1, aux_sym_shebang_repeat1, - ACTIONS(7538), 15, - sym__newline, + ACTIONS(7274), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386209,16 +360914,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, anon_sym_xor, anon_sym_or, - [178831] = 3, + [174032] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(4592), 1, - sym_comment, - ACTIONS(7501), 16, + ACTIONS(7215), 1, + anon_sym_and, + ACTIONS(7278), 1, sym__newline, + STATE(4270), 1, + aux_sym_shebang_repeat1, + STATE(4303), 1, + sym_comment, + ACTIONS(7274), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386230,22 +360939,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, anon_sym_xor, anon_sym_or, - [178856] = 4, - ACTIONS(3), 1, + [174063] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4593), 1, - sym_comment, - ACTIONS(1955), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1953), 12, + ACTIONS(7231), 1, + anon_sym_and, + ACTIONS(7281), 1, sym__newline, + STATE(4304), 1, + sym_comment, + STATE(4336), 1, + aux_sym_shebang_repeat1, + ACTIONS(7284), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386256,16 +360963,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [178883] = 4, + anon_sym_RPAREN, + anon_sym_xor, + anon_sym_or, + [174094] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7571), 1, + ACTIONS(7215), 1, anon_sym_and, - STATE(4594), 1, - sym_comment, - ACTIONS(7501), 15, + ACTIONS(7281), 1, sym__newline, + STATE(4305), 1, + sym_comment, + STATE(4337), 1, + aux_sym_shebang_repeat1, + ACTIONS(7284), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386277,24 +360989,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_xor, anon_sym_or, - [178910] = 5, + [174125] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7573), 1, + ACTIONS(7286), 1, + anon_sym_DOT, + ACTIONS(7288), 1, aux_sym__immediate_decimal_token2, - STATE(4595), 1, + STATE(4306), 1, sym_comment, - ACTIONS(1648), 4, + ACTIONS(1643), 3, sym_identifier, anon_sym_DASH, - anon_sym_DOT_DOT2, aux_sym__unquoted_in_list_token2, - ACTIONS(1650), 11, + ACTIONS(1645), 11, + anon_sym_EQ, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, @@ -386302,41 +361016,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [178939] = 5, + [174156] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7509), 1, - anon_sym_and, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(4596), 1, - sym_comment, - ACTIONS(7544), 14, + ACTIONS(5095), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(7231), 1, + anon_sym_and, + ACTIONS(7233), 1, anon_sym_xor, - anon_sym_or, - [178968] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4597), 1, + STATE(4307), 1, sym_comment, - STATE(4629), 1, + STATE(4415), 1, aux_sym_shebang_repeat1, - ACTIONS(7575), 15, - sym__newline, + ACTIONS(7274), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386348,18 +361041,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, anon_sym_or, - [178995] = 4, + [174189] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(4598), 1, + ACTIONS(5095), 1, + sym__newline, + ACTIONS(7215), 1, + anon_sym_and, + ACTIONS(7237), 1, + anon_sym_xor, + STATE(4308), 1, sym_comment, - STATE(4644), 1, + STATE(4393), 1, aux_sym_shebang_repeat1, - ACTIONS(7575), 15, - sym__newline, + ACTIONS(7274), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386371,22 +361067,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, anon_sym_or, - [179022] = 6, - ACTIONS(3), 1, + [174222] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2099), 1, - anon_sym_LPAREN2, - ACTIONS(2101), 1, - sym__space, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - STATE(4599), 1, - sym_comment, - ACTIONS(2097), 13, + ACTIONS(5095), 1, sym__newline, + ACTIONS(7231), 1, + anon_sym_and, + ACTIONS(7233), 1, + anon_sym_xor, + STATE(4309), 1, + sym_comment, + STATE(4314), 1, + aux_sym_shebang_repeat1, + ACTIONS(7225), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386398,23 +361093,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [179053] = 8, + anon_sym_or, + [174255] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5245), 1, + ACTIONS(5095), 1, sym__newline, - ACTIONS(7525), 1, + ACTIONS(7215), 1, anon_sym_and, - ACTIONS(7529), 1, + ACTIONS(7237), 1, anon_sym_xor, - ACTIONS(7579), 1, + ACTIONS(7239), 1, anon_sym_or, - STATE(4600), 1, + STATE(4310), 1, sym_comment, - STATE(4607), 1, + STATE(4449), 1, aux_sym_shebang_repeat1, - ACTIONS(7577), 11, + ACTIONS(7261), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386426,15 +361121,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [179088] = 4, + [174290] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(4601), 1, - sym_comment, - ACTIONS(7544), 15, + ACTIONS(5095), 1, sym__newline, + ACTIONS(7215), 1, + anon_sym_and, + ACTIONS(7237), 1, + anon_sym_xor, + STATE(4311), 1, + sym_comment, + STATE(4331), 1, + aux_sym_shebang_repeat1, + ACTIONS(7225), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386446,21 +361146,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, anon_sym_or, - [179115] = 6, + [174323] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7525), 1, - anon_sym_and, - ACTIONS(7568), 1, - sym__newline, - STATE(4602), 1, + STATE(4312), 1, sym_comment, - STATE(4684), 1, + STATE(4343), 1, aux_sym_shebang_repeat1, - ACTIONS(7538), 13, + ACTIONS(7274), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386472,14 +361167,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and, anon_sym_xor, anon_sym_or, - [179146] = 3, - ACTIONS(247), 1, + [174350] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4603), 1, + ACTIONS(1553), 1, + aux_sym_unquoted_token2, + ACTIONS(2220), 1, + anon_sym_LPAREN2, + ACTIONS(2222), 1, + sym__space, + STATE(4313), 1, sym_comment, - ACTIONS(7293), 16, + ACTIONS(2218), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386493,17 +361195,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [179171] = 4, + [174381] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(728), 1, + ACTIONS(7221), 1, + anon_sym_and, + ACTIONS(7223), 1, + anon_sym_xor, + STATE(690), 1, aux_sym_shebang_repeat1, - STATE(4604), 1, + STATE(4314), 1, sym_comment, - ACTIONS(7544), 15, + ACTIONS(7206), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386516,25 +361219,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, anon_sym_or, - [179198] = 8, + [174412] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5245), 1, - sym__newline, - ACTIONS(7523), 1, - anon_sym_and, - ACTIONS(7550), 1, - anon_sym_xor, - ACTIONS(7581), 1, - anon_sym_or, - STATE(4605), 1, + STATE(4315), 1, sym_comment, - STATE(4627), 1, + STATE(4345), 1, aux_sym_shebang_repeat1, - ACTIONS(7577), 11, + ACTIONS(7274), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386546,14 +361240,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [179233] = 4, - ACTIONS(247), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [174439] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(4606), 1, + STATE(4316), 1, sym_comment, - ACTIONS(7507), 15, + ACTIONS(2139), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2137), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386565,25 +361265,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [179260] = 7, + anon_sym_DOT_DOT2, + [174466] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7509), 1, + ACTIONS(7231), 1, anon_sym_and, - ACTIONS(7531), 1, - anon_sym_xor, - ACTIONS(7585), 1, - anon_sym_or, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(4607), 1, - sym_comment, - ACTIONS(7583), 12, + ACTIONS(7278), 1, sym__newline, + STATE(4317), 1, + sym_comment, + STATE(4460), 1, + aux_sym_shebang_repeat1, + ACTIONS(7274), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386595,18 +361289,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [179293] = 6, + anon_sym_xor, + anon_sym_or, + [174497] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7525), 1, + ACTIONS(7215), 1, anon_sym_and, - ACTIONS(7587), 1, + ACTIONS(7278), 1, sym__newline, - STATE(4608), 1, + STATE(4318), 1, sym_comment, - STATE(4676), 1, + STATE(4344), 1, aux_sym_shebang_repeat1, - ACTIONS(7575), 13, + ACTIONS(7274), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386620,18 +361316,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor, anon_sym_or, - [179324] = 6, + [174528] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7523), 1, - anon_sym_and, - ACTIONS(7587), 1, + ACTIONS(5095), 1, sym__newline, - STATE(4609), 1, - sym_comment, - STATE(4672), 1, + ACTIONS(7231), 1, + anon_sym_and, + ACTIONS(7233), 1, + anon_sym_xor, + STATE(4261), 1, aux_sym_shebang_repeat1, - ACTIONS(7575), 13, + STATE(4319), 1, + sym_comment, + ACTIONS(7274), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386643,19 +361341,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, anon_sym_or, - [179355] = 5, + [174561] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7514), 1, + ACTIONS(5095), 1, + sym__newline, + ACTIONS(7215), 1, anon_sym_and, - STATE(728), 1, + ACTIONS(7237), 1, + anon_sym_xor, + STATE(4297), 1, aux_sym_shebang_repeat1, - STATE(4610), 1, + STATE(4320), 1, sym_comment, - ACTIONS(7544), 14, - sym__newline, + ACTIONS(7274), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386667,14 +361367,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, anon_sym_or, - [179384] = 3, - ACTIONS(247), 1, + [174594] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4611), 1, + STATE(4321), 1, sym_comment, - ACTIONS(7333), 16, + ACTIONS(1042), 2, + sym__space, + anon_sym_DOT, + ACTIONS(1040), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386688,21 +361390,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [179409] = 6, + anon_sym_QMARK2, + [174621] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7523), 1, - anon_sym_and, - ACTIONS(7568), 1, - sym__newline, - STATE(4570), 1, + STATE(690), 1, aux_sym_shebang_repeat1, - STATE(4612), 1, + STATE(4322), 1, sym_comment, - ACTIONS(7538), 13, + ACTIONS(7290), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386714,22 +361411,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and, anon_sym_xor, anon_sym_or, - [179440] = 7, + [174648] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5245), 1, + ACTIONS(1894), 1, + anon_sym_DASH, + ACTIONS(7204), 1, + anon_sym_DOT, + STATE(4323), 1, + sym_comment, + STATE(4554), 1, + aux_sym_cell_path_repeat1, + STATE(4767), 1, + sym_path, + STATE(4808), 1, + sym_cell_path, + ACTIONS(1896), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(7525), 1, - anon_sym_and, - ACTIONS(7529), 1, - anon_sym_xor, - STATE(4613), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [174683] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7121), 1, + anon_sym_DOT, + STATE(4324), 1, sym_comment, - STATE(4709), 1, - aux_sym_shebang_repeat1, - ACTIONS(7575), 12, + STATE(4348), 1, + aux_sym_cell_path_repeat1, + STATE(4608), 1, + sym_path, + ACTIONS(1019), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1017), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386740,20 +361467,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or, - [179473] = 6, + [174716] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1429), 1, - aux_sym_unquoted_token2, - ACTIONS(1692), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - ACTIONS(1698), 1, + ACTIONS(4759), 1, sym__space, - STATE(4614), 1, + STATE(4325), 1, sym_comment, - ACTIONS(1690), 13, + STATE(7570), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4761), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386767,20 +361492,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [179504] = 7, - ACTIONS(247), 1, + [174747] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5245), 1, - sym__newline, - ACTIONS(7523), 1, - anon_sym_and, - ACTIONS(7550), 1, - anon_sym_xor, - STATE(4615), 1, + ACTIONS(7292), 1, + anon_sym_DOT_DOT2, + STATE(4326), 1, sym_comment, - STATE(4706), 1, - aux_sym_shebang_repeat1, - ACTIONS(7575), 12, + ACTIONS(7151), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7294), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7149), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386791,43 +361517,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or, - [179537] = 4, + [174778] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7503), 1, - anon_sym_and, - STATE(4616), 1, + ACTIONS(5637), 1, + anon_sym_DOT, + STATE(2590), 1, + sym_path, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(4119), 1, + sym_cell_path, + STATE(4327), 1, + sym_comment, + ACTIONS(1011), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1013), 10, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [174813] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1863), 1, + anon_sym_DASH, + ACTIONS(7204), 1, + anon_sym_DOT, + STATE(4328), 1, sym_comment, - ACTIONS(7501), 15, + STATE(4554), 1, + aux_sym_cell_path_repeat1, + STATE(4767), 1, + sym_path, + STATE(4936), 1, + sym_cell_path, + ACTIONS(1865), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_xor, - anon_sym_or, - [179564] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [174848] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7523), 1, - anon_sym_and, - ACTIONS(7568), 1, - sym__newline, - STATE(4530), 1, - aux_sym_shebang_repeat1, - STATE(4617), 1, + STATE(4329), 1, sym_comment, - ACTIONS(7538), 13, + ACTIONS(7027), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386839,16 +361589,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, anon_sym_xor, anon_sym_or, - [179595] = 4, + [174873] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4539), 1, - aux_sym_shebang_repeat1, - STATE(4618), 1, + STATE(4330), 1, sym_comment, - ACTIONS(7499), 15, + STATE(4335), 1, + aux_sym_shebang_repeat1, + ACTIONS(7284), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386864,20 +361616,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [179622] = 7, + [174900] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5245), 1, - sym__newline, - ACTIONS(7525), 1, + ACTIONS(7208), 1, anon_sym_and, - ACTIONS(7529), 1, + ACTIONS(7272), 1, anon_sym_xor, - STATE(4544), 1, + STATE(690), 1, aux_sym_shebang_repeat1, - STATE(4619), 1, + STATE(4331), 1, sym_comment, - ACTIONS(7538), 12, + ACTIONS(7206), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386890,20 +361641,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or, - [179655] = 7, + [174931] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5245), 1, + ACTIONS(5095), 1, sym__newline, - ACTIONS(7523), 1, + ACTIONS(7231), 1, anon_sym_and, - ACTIONS(7550), 1, + ACTIONS(7233), 1, anon_sym_xor, - STATE(4550), 1, - aux_sym_shebang_repeat1, - STATE(4620), 1, + STATE(4332), 1, sym_comment, - ACTIONS(7538), 12, + STATE(4338), 1, + aux_sym_shebang_repeat1, + ACTIONS(7284), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386916,16 +361667,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or, - [179688] = 5, - ACTIONS(247), 1, + [174964] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7514), 1, - anon_sym_and, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(4621), 1, + STATE(4333), 1, sym_comment, - ACTIONS(7544), 14, + ACTIONS(1066), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1064), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386937,22 +361689,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, - [179717] = 6, + anon_sym_DOT_DOT2, + [174991] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7509), 1, + ACTIONS(5095), 1, + sym__newline, + ACTIONS(7215), 1, anon_sym_and, - ACTIONS(7531), 1, + ACTIONS(7237), 1, anon_sym_xor, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(4622), 1, + STATE(4334), 1, sym_comment, - ACTIONS(7544), 13, - sym__newline, + STATE(4339), 1, + aux_sym_shebang_repeat1, + ACTIONS(7284), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386965,18 +361716,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or, - [179748] = 6, - ACTIONS(3), 1, + [175024] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1591), 1, - sym__space, - ACTIONS(7163), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7590), 1, - anon_sym_DOT, - STATE(4623), 1, + STATE(690), 1, + aux_sym_shebang_repeat1, + STATE(4335), 1, sym_comment, - ACTIONS(1589), 13, + ACTIONS(7290), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386989,19 +361736,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [179779] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7571), 1, anon_sym_and, - ACTIONS(7594), 1, anon_sym_xor, - ACTIONS(7596), 1, anon_sym_or, - STATE(4624), 1, + [175051] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7221), 1, + anon_sym_and, + STATE(690), 1, + aux_sym_shebang_repeat1, + STATE(4336), 1, sym_comment, - ACTIONS(7592), 13, + ACTIONS(7290), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387014,13 +361761,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [179810] = 3, + anon_sym_xor, + anon_sym_or, + [175080] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(4625), 1, + ACTIONS(7208), 1, + anon_sym_and, + STATE(690), 1, + aux_sym_shebang_repeat1, + STATE(4337), 1, sym_comment, - ACTIONS(7293), 16, + ACTIONS(7290), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387033,18 +361785,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, anon_sym_xor, anon_sym_or, - [179835] = 4, + [175109] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(4535), 1, + ACTIONS(7221), 1, + anon_sym_and, + ACTIONS(7223), 1, + anon_sym_xor, + STATE(690), 1, aux_sym_shebang_repeat1, - STATE(4626), 1, + STATE(4338), 1, sym_comment, - ACTIONS(7575), 15, + ACTIONS(7290), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387057,23 +361811,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, anon_sym_or, - [179862] = 7, + [175140] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7514), 1, + ACTIONS(7208), 1, anon_sym_and, - ACTIONS(7536), 1, + ACTIONS(7272), 1, anon_sym_xor, - ACTIONS(7598), 1, - anon_sym_or, - STATE(728), 1, + STATE(690), 1, aux_sym_shebang_repeat1, - STATE(4627), 1, + STATE(4339), 1, sym_comment, - ACTIONS(7583), 12, + ACTIONS(7290), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387086,16 +361836,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [179895] = 5, + anon_sym_or, + [175171] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7571), 1, - anon_sym_and, - ACTIONS(7594), 1, - anon_sym_xor, - STATE(4628), 1, + STATE(690), 1, + aux_sym_shebang_repeat1, + STATE(4340), 1, sym_comment, - ACTIONS(7501), 14, + ACTIONS(7290), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387108,16 +361857,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, anon_sym_or, - [179924] = 4, + [175198] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(728), 1, + STATE(690), 1, aux_sym_shebang_repeat1, - STATE(4629), 1, + STATE(4341), 1, sym_comment, - ACTIONS(7518), 15, + ACTIONS(7290), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387133,18 +361883,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [179951] = 6, + [175225] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7525), 1, - anon_sym_and, - ACTIONS(7587), 1, - sym__newline, - STATE(4542), 1, + STATE(690), 1, aux_sym_shebang_repeat1, - STATE(4630), 1, + STATE(4342), 1, sym_comment, - ACTIONS(7575), 13, + ACTIONS(7276), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387156,20 +361903,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and, anon_sym_xor, anon_sym_or, - [179982] = 6, + [175252] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7523), 1, - anon_sym_and, - ACTIONS(7587), 1, - sym__newline, - STATE(4545), 1, + STATE(690), 1, aux_sym_shebang_repeat1, - STATE(4631), 1, + STATE(4343), 1, sym_comment, - ACTIONS(7575), 13, + ACTIONS(7219), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387181,22 +361926,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and, anon_sym_xor, anon_sym_or, - [180013] = 7, + [175279] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5245), 1, - sym__newline, - ACTIONS(7525), 1, + ACTIONS(7208), 1, anon_sym_and, - ACTIONS(7529), 1, - anon_sym_xor, - STATE(4555), 1, + STATE(690), 1, aux_sym_shebang_repeat1, - STATE(4632), 1, + STATE(4344), 1, sym_comment, - ACTIONS(7575), 12, + ACTIONS(7219), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387208,21 +361951,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor, anon_sym_or, - [180046] = 7, + [175308] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5245), 1, - sym__newline, - ACTIONS(7523), 1, - anon_sym_and, - ACTIONS(7550), 1, - anon_sym_xor, - STATE(4565), 1, + STATE(690), 1, aux_sym_shebang_repeat1, - STATE(4633), 1, + STATE(4345), 1, sym_comment, - ACTIONS(7575), 12, + ACTIONS(7219), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387234,21 +361973,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, - [180079] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7509), 1, anon_sym_and, - ACTIONS(7531), 1, anon_sym_xor, - ACTIONS(7585), 1, anon_sym_or, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(4634), 1, + [175335] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7296), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7298), 1, + aux_sym__immediate_decimal_token2, + STATE(4346), 1, + sym_comment, + ACTIONS(1631), 3, + sym_identifier, + anon_sym_DASH, + aux_sym__unquoted_in_list_token2, + ACTIONS(1633), 11, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [175366] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1961), 1, + anon_sym_DASH, + ACTIONS(7204), 1, + anon_sym_DOT, + STATE(4347), 1, + sym_comment, + STATE(4554), 1, + aux_sym_cell_path_repeat1, + STATE(4767), 1, + sym_path, + STATE(4869), 1, + sym_cell_path, + ACTIONS(1963), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [175401] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7300), 1, + anon_sym_DOT, + STATE(4608), 1, + sym_path, + ACTIONS(1023), 2, + ts_builtin_sym_end, + sym__space, + STATE(4348), 2, sym_comment, - ACTIONS(7600), 12, + aux_sym_cell_path_repeat1, + ACTIONS(1021), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387260,21 +362053,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [180112] = 7, - ACTIONS(247), 1, + [175432] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7514), 1, - anon_sym_and, - ACTIONS(7536), 1, - anon_sym_xor, - ACTIONS(7598), 1, - anon_sym_or, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(4635), 1, + STATE(4349), 1, sym_comment, - ACTIONS(7600), 12, + ACTIONS(1046), 2, + sym__space, + anon_sym_DOT, + ACTIONS(1044), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387287,20 +362074,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [180145] = 7, + anon_sym_RBRACE, + anon_sym_QMARK2, + [175459] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5245), 1, - sym__newline, - ACTIONS(7523), 1, + ACTIONS(7221), 1, anon_sym_and, - ACTIONS(7550), 1, - anon_sym_xor, - STATE(4636), 1, - sym_comment, - STATE(4665), 1, + STATE(690), 1, aux_sym_shebang_repeat1, - ACTIONS(7527), 12, + STATE(4350), 1, + sym_comment, + ACTIONS(7290), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387312,16 +362098,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor, anon_sym_or, - [180178] = 4, - ACTIONS(3), 1, + [175488] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4637), 1, + ACTIONS(7208), 1, + anon_sym_and, + STATE(690), 1, + aux_sym_shebang_repeat1, + STATE(4351), 1, sym_comment, - ACTIONS(2133), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2131), 14, + ACTIONS(7290), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387334,19 +362122,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_unquoted_token4, - [180205] = 4, - ACTIONS(3), 1, + anon_sym_xor, + anon_sym_or, + [175517] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4638), 1, + ACTIONS(7221), 1, + anon_sym_and, + ACTIONS(7223), 1, + anon_sym_xor, + STATE(690), 1, + aux_sym_shebang_repeat1, + STATE(4352), 1, sym_comment, - ACTIONS(1984), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1982), 12, + ACTIONS(7290), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387358,19 +362147,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [180232] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_or, + [175548] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1711), 1, - anon_sym_LPAREN2, - ACTIONS(1719), 1, - aux_sym_unquoted_token2, - ACTIONS(2087), 1, - sym__space, - STATE(4639), 1, + ACTIONS(7208), 1, + anon_sym_and, + ACTIONS(7272), 1, + anon_sym_xor, + STATE(690), 1, + aux_sym_shebang_repeat1, + STATE(4353), 1, sym_comment, - ACTIONS(2085), 13, + ACTIONS(7290), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387383,19 +362173,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [180263] = 6, + anon_sym_or, + [175579] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7503), 1, + ACTIONS(7221), 1, anon_sym_and, - ACTIONS(7505), 1, - anon_sym_xor, - ACTIONS(7602), 1, - anon_sym_or, - STATE(4640), 1, + STATE(690), 1, + aux_sym_shebang_repeat1, + STATE(4354), 1, sym_comment, - ACTIONS(7592), 13, + ACTIONS(7276), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387408,19 +362196,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [180294] = 6, - ACTIONS(3), 1, + anon_sym_xor, + anon_sym_or, + [175608] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1711), 1, - anon_sym_LPAREN2, - ACTIONS(1717), 1, - sym__space, - ACTIONS(1719), 1, - aux_sym_unquoted_token2, - STATE(4641), 1, + STATE(4355), 1, sym_comment, - ACTIONS(1709), 13, + ACTIONS(4994), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387434,12 +362217,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [180325] = 3, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [175633] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(4642), 1, + ACTIONS(7208), 1, + anon_sym_and, + STATE(690), 1, + aux_sym_shebang_repeat1, + STATE(4356), 1, sym_comment, - ACTIONS(6929), 16, + ACTIONS(7276), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387452,26 +362242,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, anon_sym_xor, anon_sym_or, - [180350] = 8, + [175662] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5245), 1, - sym__newline, - ACTIONS(7525), 1, + ACTIONS(7221), 1, anon_sym_and, - ACTIONS(7529), 1, + ACTIONS(7223), 1, anon_sym_xor, - ACTIONS(7579), 1, - anon_sym_or, - STATE(4634), 1, + STATE(690), 1, aux_sym_shebang_repeat1, - STATE(4643), 1, + STATE(4357), 1, sym_comment, - ACTIONS(7604), 11, + ACTIONS(7276), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387483,15 +362268,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [180385] = 4, + anon_sym_or, + [175693] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(4644), 1, + ACTIONS(1011), 1, + anon_sym_DASH, + ACTIONS(7204), 1, + anon_sym_DOT, + STATE(4358), 1, sym_comment, - ACTIONS(7518), 15, + STATE(4519), 1, + sym_cell_path, + STATE(4554), 1, + aux_sym_cell_path_repeat1, + STATE(4767), 1, + sym_path, + ACTIONS(1013), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [175728] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7210), 1, sym__newline, + ACTIONS(7231), 1, + anon_sym_and, + STATE(4359), 1, + sym_comment, + STATE(4369), 1, + aux_sym_shebang_repeat1, + ACTIONS(7213), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387503,19 +362319,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, anon_sym_xor, anon_sym_or, - [180412] = 5, + [175759] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7503), 1, + ACTIONS(7208), 1, anon_sym_and, - ACTIONS(7505), 1, + ACTIONS(7272), 1, anon_sym_xor, - STATE(4645), 1, + STATE(690), 1, + aux_sym_shebang_repeat1, + STATE(4360), 1, sym_comment, - ACTIONS(7501), 14, + ACTIONS(7276), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387528,24 +362345,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_or, - [180441] = 8, + [175790] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5245), 1, + ACTIONS(1937), 1, + anon_sym_DASH, + ACTIONS(7204), 1, + anon_sym_DOT, + STATE(4361), 1, + sym_comment, + STATE(4554), 1, + aux_sym_cell_path_repeat1, + STATE(4767), 1, + sym_path, + STATE(4823), 1, + sym_cell_path, + ACTIONS(1939), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(7523), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [175825] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1867), 1, + anon_sym_DASH, + ACTIONS(7204), 1, + anon_sym_DOT, + STATE(4362), 1, + sym_comment, + STATE(4554), 1, + aux_sym_cell_path_repeat1, + STATE(4767), 1, + sym_path, + STATE(4772), 1, + sym_cell_path, + ACTIONS(1869), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [175860] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5095), 1, + sym__newline, + ACTIONS(7231), 1, anon_sym_and, - ACTIONS(7550), 1, + ACTIONS(7233), 1, anon_sym_xor, - ACTIONS(7581), 1, - anon_sym_or, - STATE(4635), 1, - aux_sym_shebang_repeat1, - STATE(4646), 1, + STATE(4363), 1, sym_comment, - ACTIONS(7604), 11, + STATE(4371), 1, + aux_sym_shebang_repeat1, + ACTIONS(7213), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387557,15 +362425,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [180476] = 4, - ACTIONS(3), 1, + anon_sym_or, + [175893] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4647), 1, + STATE(690), 1, + aux_sym_shebang_repeat1, + STATE(4364), 1, sym_comment, - ACTIONS(1591), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1589), 14, + ACTIONS(7206), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387578,45 +362446,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [180503] = 6, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [175920] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1457), 1, - aux_sym_unquoted_token2, - ACTIONS(2119), 1, - anon_sym_LPAREN2, - ACTIONS(2121), 1, - sym__space, - STATE(4648), 1, + ACTIONS(1843), 1, + anon_sym_DASH, + ACTIONS(7204), 1, + anon_sym_DOT, + STATE(4365), 1, sym_comment, - ACTIONS(2117), 13, + STATE(4554), 1, + aux_sym_cell_path_repeat1, + STATE(4767), 1, + sym_path, + STATE(4907), 1, + sym_cell_path, + ACTIONS(1845), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [180534] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [175955] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7514), 1, - anon_sym_and, - ACTIONS(7536), 1, - anon_sym_xor, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(4649), 1, + STATE(4366), 1, sym_comment, - ACTIONS(7544), 13, + ACTIONS(7086), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387629,15 +362494,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, anon_sym_or, - [180565] = 4, + [175980] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4604), 1, + STATE(690), 1, aux_sym_shebang_repeat1, - STATE(4650), 1, + STATE(4367), 1, sym_comment, - ACTIONS(7527), 15, + ACTIONS(7276), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387653,18 +362521,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [180592] = 6, - ACTIONS(3), 1, + [176007] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - ACTIONS(3205), 1, - sym__space, - STATE(4651), 1, + STATE(690), 1, + aux_sym_shebang_repeat1, + STATE(4368), 1, sym_comment, - STATE(7887), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3207), 13, + ACTIONS(7276), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387677,19 +362541,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [180623] = 6, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [176034] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - ACTIONS(3209), 1, - sym__space, - STATE(4652), 1, + ACTIONS(7221), 1, + anon_sym_and, + STATE(690), 1, + aux_sym_shebang_repeat1, + STATE(4369), 1, sym_comment, - STATE(7887), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3211), 13, + ACTIONS(7276), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387702,19 +362566,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [180654] = 6, - ACTIONS(3), 1, + anon_sym_xor, + anon_sym_or, + [176063] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2125), 1, - anon_sym_LPAREN2, - ACTIONS(2127), 1, - sym__space, - ACTIONS(2129), 1, - aux_sym_unquoted_token2, - STATE(4653), 1, + ACTIONS(7208), 1, + anon_sym_and, + STATE(690), 1, + aux_sym_shebang_repeat1, + STATE(4370), 1, sym_comment, - ACTIONS(2123), 13, + ACTIONS(7276), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387727,21 +362590,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [180685] = 7, + anon_sym_xor, + anon_sym_or, + [176092] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5245), 1, - sym__newline, - ACTIONS(7525), 1, + ACTIONS(7221), 1, anon_sym_and, - ACTIONS(7529), 1, + ACTIONS(7223), 1, anon_sym_xor, - STATE(4546), 1, + STATE(690), 1, aux_sym_shebang_repeat1, - STATE(4654), 1, + STATE(4371), 1, sym_comment, - ACTIONS(7538), 12, + ACTIONS(7276), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387754,12 +362617,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or, - [180718] = 3, + [176123] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(4655), 1, + ACTIONS(1829), 1, + anon_sym_DASH, + ACTIONS(7204), 1, + anon_sym_DOT, + STATE(4372), 1, + sym_comment, + STATE(4554), 1, + aux_sym_cell_path_repeat1, + STATE(4767), 1, + sym_path, + STATE(4940), 1, + sym_cell_path, + ACTIONS(1833), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [176158] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7208), 1, + anon_sym_and, + ACTIONS(7272), 1, + anon_sym_xor, + STATE(690), 1, + aux_sym_shebang_repeat1, + STATE(4373), 1, sym_comment, - ACTIONS(7501), 16, + ACTIONS(7276), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387772,22 +362668,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, anon_sym_or, - [180743] = 6, - ACTIONS(3), 1, + [176189] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - ACTIONS(3259), 1, - sym__space, - STATE(4656), 1, + STATE(690), 1, + aux_sym_shebang_repeat1, + STATE(4374), 1, sym_comment, - STATE(7887), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3261), 13, + ACTIONS(7206), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387800,19 +362689,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [180774] = 6, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [176216] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - ACTIONS(3263), 1, - sym__space, - STATE(4657), 1, + STATE(690), 1, + aux_sym_shebang_repeat1, + STATE(4375), 1, sym_comment, - STATE(7887), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3265), 13, + ACTIONS(7206), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387825,15 +362712,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [180805] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [176243] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(728), 1, + STATE(690), 1, aux_sym_shebang_repeat1, - STATE(4658), 1, + STATE(4376), 1, sym_comment, - ACTIONS(7507), 15, + ACTIONS(7206), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387849,20 +362738,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [180832] = 7, - ACTIONS(247), 1, + [176270] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5245), 1, - sym__newline, - ACTIONS(7523), 1, - anon_sym_and, - ACTIONS(7550), 1, - anon_sym_xor, - STATE(4558), 1, - aux_sym_shebang_repeat1, - STATE(4659), 1, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2297), 1, + sym__space, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(4377), 1, sym_comment, - ACTIONS(7538), 12, + ACTIONS(2293), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387874,16 +362762,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, - [180865] = 4, + anon_sym_RBRACE, + [176301] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4660), 1, + STATE(4378), 1, sym_comment, - ACTIONS(968), 2, + ACTIONS(2021), 4, + ts_builtin_sym_end, sym__space, - anon_sym_DOT, - ACTIONS(966), 14, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2019), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387895,15 +362785,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_QMARK2, - [180892] = 3, - ACTIONS(247), 1, + anon_sym_DOT_DOT2, + [176328] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4661), 1, + ACTIONS(4749), 1, + sym__space, + ACTIONS(7303), 1, + anon_sym_EQ2, + ACTIONS(7305), 1, + sym_short_flag_identifier, + STATE(4379), 1, sym_comment, - ACTIONS(2133), 16, + ACTIONS(4747), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387917,18 +362811,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [180917] = 4, + [176359] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4662), 1, + STATE(4380), 1, sym_comment, - ACTIONS(978), 2, + ACTIONS(2261), 2, sym__space, - anon_sym_DOT, - ACTIONS(976), 14, + anon_sym_LPAREN2, + ACTIONS(2259), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387942,43 +362833,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_QMARK2, - [180944] = 5, + aux_sym_unquoted_token4, + [176386] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7606), 1, - anon_sym_QMARK2, - STATE(4663), 1, - sym_comment, - ACTIONS(970), 3, + ACTIONS(7309), 1, + anon_sym_EQ, + ACTIONS(7312), 1, + sym__newline, + ACTIONS(7315), 1, + anon_sym_COLON, + ACTIONS(7318), 1, anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(972), 12, + STATE(6214), 1, + aux_sym_shebang_repeat1, + STATE(4381), 2, + sym_comment, + aux_sym_parameter_repeat1, + STATE(5091), 2, + sym_param_type, + sym_param_value, + ACTIONS(7307), 8, sym_identifier, - sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [180973] = 5, + [176423] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2245), 1, + anon_sym_LPAREN2, + ACTIONS(2247), 1, + sym__space, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + STATE(4382), 1, + sym_comment, + ACTIONS(2243), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [176454] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7608), 1, - anon_sym_QMARK2, - STATE(4664), 1, + STATE(4383), 1, sym_comment, - ACTIONS(980), 3, + ACTIONS(1056), 3, anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(982), 12, + ACTIONS(1058), 13, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -387991,18 +362910,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [181002] = 6, - ACTIONS(247), 1, + [176481] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7514), 1, - anon_sym_and, - ACTIONS(7536), 1, - anon_sym_xor, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(4665), 1, + ACTIONS(4737), 1, + sym__space, + ACTIONS(7320), 1, + sym_long_flag_identifier, + ACTIONS(7322), 1, + anon_sym_EQ2, + STATE(4384), 1, sym_comment, - ACTIONS(7544), 13, + ACTIONS(4735), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388015,46 +362934,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, - [181033] = 8, - ACTIONS(247), 1, + anon_sym_RBRACE, + [176512] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1429), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1690), 1, - anon_sym_DASH, - ACTIONS(1692), 1, - anon_sym_LPAREN2, - ACTIONS(7610), 1, - anon_sym_DOT_DOT2, - STATE(4666), 1, + STATE(4385), 1, sym_comment, - ACTIONS(7612), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1698), 10, - sym_identifier, + ACTIONS(1050), 2, + sym__space, + anon_sym_DOT, + ACTIONS(1048), 14, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [181068] = 6, + anon_sym_RBRACE, + anon_sym_QMARK2, + [176539] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2091), 1, - anon_sym_LPAREN2, - ACTIONS(2093), 1, - sym__space, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(4667), 1, + STATE(4386), 1, sym_comment, - ACTIONS(2089), 13, + ACTIONS(1645), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1643), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388068,14 +362980,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [181099] = 4, + aux_sym_unquoted_token2, + [176566] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(728), 1, + ACTIONS(7221), 1, + anon_sym_and, + STATE(690), 1, aux_sym_shebang_repeat1, - STATE(4668), 1, + STATE(4387), 1, sym_comment, - ACTIONS(7507), 15, + ACTIONS(7219), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388088,21 +363003,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, anon_sym_xor, anon_sym_or, - [181126] = 6, - ACTIONS(3), 1, + [176595] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1008), 1, - sym__space, - ACTIONS(2081), 1, - anon_sym_LPAREN2, - ACTIONS(2083), 1, - aux_sym_unquoted_token4, - STATE(4669), 1, + STATE(4388), 1, sym_comment, - ACTIONS(1006), 13, + ACTIONS(7086), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388116,12 +363024,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [181157] = 3, - ACTIONS(247), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [176620] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4670), 1, + ACTIONS(1798), 1, + anon_sym_LPAREN2, + ACTIONS(1806), 1, + aux_sym_unquoted_token2, + ACTIONS(2162), 1, + sym__space, + STATE(4389), 1, sym_comment, - ACTIONS(7501), 16, + ACTIONS(2160), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388135,18 +363052,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [181182] = 4, + [176651] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4671), 1, + ACTIONS(7324), 1, + anon_sym_DOT_DOT2, + STATE(4390), 1, + sym_comment, + ACTIONS(2067), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7326), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2061), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [176682] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5637), 1, + anon_sym_DOT, + STATE(2590), 1, + sym_path, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(4391), 1, + sym_comment, + STATE(5095), 1, + sym_cell_path, + ACTIONS(7328), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(7330), 10, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [176717] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(690), 1, + aux_sym_shebang_repeat1, + STATE(4392), 1, sym_comment, - ACTIONS(1571), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1569), 14, + ACTIONS(7219), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388159,18 +363124,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [181209] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [176744] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7514), 1, + ACTIONS(7208), 1, anon_sym_and, - STATE(728), 1, + ACTIONS(7272), 1, + anon_sym_xor, + STATE(690), 1, aux_sym_shebang_repeat1, - STATE(4672), 1, + STATE(4393), 1, sym_comment, - ACTIONS(7518), 14, + ACTIONS(7219), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388183,16 +363151,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, anon_sym_or, - [181238] = 4, + [176775] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(4601), 1, + ACTIONS(7221), 1, + anon_sym_and, + ACTIONS(7223), 1, + anon_sym_xor, + ACTIONS(7334), 1, + anon_sym_or, + STATE(690), 1, aux_sym_shebang_repeat1, - STATE(4673), 1, + STATE(4394), 1, sym_comment, - ACTIONS(7527), 15, + ACTIONS(7332), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388205,21 +363178,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [181265] = 6, + [176808] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7520), 1, - sym__newline, - ACTIONS(7525), 1, + ACTIONS(7208), 1, anon_sym_and, - STATE(4541), 1, + ACTIONS(7272), 1, + anon_sym_xor, + ACTIONS(7336), 1, + anon_sym_or, + STATE(690), 1, aux_sym_shebang_repeat1, - STATE(4674), 1, + STATE(4395), 1, sym_comment, - ACTIONS(7499), 13, + ACTIONS(7332), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388231,19 +363204,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, - [181296] = 4, + [176841] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4675), 1, - sym_comment, - ACTIONS(1023), 4, - ts_builtin_sym_end, + ACTIONS(1078), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1021), 12, + ACTIONS(2239), 1, + anon_sym_LPAREN2, + ACTIONS(2241), 1, + aux_sym_unquoted_token4, + STATE(4396), 1, + sym_comment, + ACTIONS(1076), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388255,17 +363227,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [181323] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [176872] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7509), 1, + ACTIONS(7241), 1, anon_sym_and, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(4676), 1, + ACTIONS(7245), 1, + anon_sym_xor, + ACTIONS(7340), 1, + anon_sym_or, + STATE(4397), 1, sym_comment, - ACTIONS(7518), 14, + ACTIONS(7338), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388278,22 +363253,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, - [181352] = 6, + anon_sym_RBRACE, + [176903] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7614), 1, - anon_sym_DOT_DOT2, - STATE(4677), 1, + STATE(4398), 1, sym_comment, - ACTIONS(1008), 2, - ts_builtin_sym_end, + ACTIONS(1633), 2, sym__space, - ACTIONS(7616), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1006), 11, + anon_sym_LPAREN2, + ACTIONS(1631), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388305,61 +363274,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [181383] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [176930] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(4563), 1, - aux_sym_shebang_repeat1, - STATE(4678), 1, + ACTIONS(1871), 1, + anon_sym_DASH, + ACTIONS(7204), 1, + anon_sym_DOT, + STATE(4399), 1, sym_comment, - ACTIONS(7499), 15, + STATE(4554), 1, + aux_sym_cell_path_repeat1, + STATE(4767), 1, + sym_path, + STATE(4777), 1, + sym_cell_path, + ACTIONS(1873), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [181410] = 6, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [176965] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2099), 1, - anon_sym_LPAREN2, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - ACTIONS(2107), 1, - sym__space, - STATE(4679), 1, + ACTIONS(1875), 1, + anon_sym_DASH, + ACTIONS(7204), 1, + anon_sym_DOT, + STATE(4400), 1, sym_comment, - ACTIONS(2105), 13, + STATE(4554), 1, + aux_sym_cell_path_repeat1, + STATE(4767), 1, + sym_path, + STATE(4791), 1, + sym_cell_path, + ACTIONS(1877), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [181441] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [177000] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4680), 1, + ACTIONS(5083), 1, + anon_sym_DASH, + STATE(4401), 1, + sym_comment, + ACTIONS(5081), 15, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [177027] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5087), 1, + anon_sym_DASH, + STATE(4402), 1, sym_comment, - ACTIONS(3595), 16, + ACTIONS(5085), 15, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [177054] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7344), 1, + anon_sym_DASH, + STATE(4403), 1, + sym_comment, + ACTIONS(7342), 15, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [177081] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5095), 1, sym__newline, + ACTIONS(7215), 1, + anon_sym_and, + ACTIONS(7237), 1, + anon_sym_xor, + STATE(4373), 1, + aux_sym_shebang_repeat1, + STATE(4404), 1, + sym_comment, + ACTIONS(7213), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388371,25 +363425,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, anon_sym_or, - [181466] = 7, + [177114] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7395), 1, - anon_sym_DOT, - STATE(4529), 1, - aux_sym_cell_path_repeat1, - STATE(4681), 1, + ACTIONS(7292), 1, + anon_sym_DOT_DOT2, + STATE(4405), 1, sym_comment, - STATE(4936), 1, - sym_path, - ACTIONS(953), 2, + ACTIONS(1078), 2, ts_builtin_sym_end, sym__space, - ACTIONS(951), 11, + ACTIONS(7294), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1076), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388401,36 +363451,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [181499] = 5, - ACTIONS(3), 1, + [177145] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7618), 1, - aux_sym__immediate_decimal_token2, - STATE(4682), 1, + ACTIONS(1835), 1, + anon_sym_DASH, + ACTIONS(7204), 1, + anon_sym_DOT, + STATE(4406), 1, sym_comment, - ACTIONS(1650), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1648), 12, + STATE(4554), 1, + aux_sym_cell_path_repeat1, + STATE(4767), 1, + sym_path, + STATE(4885), 1, + sym_cell_path, + ACTIONS(1837), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [181528] = 3, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [177180] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4683), 1, + STATE(4374), 1, + aux_sym_shebang_repeat1, + STATE(4407), 1, sym_comment, - ACTIONS(7293), 16, + ACTIONS(7225), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388443,20 +363498,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [181553] = 5, + [177207] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7509), 1, - anon_sym_and, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(4684), 1, + STATE(4408), 1, sym_comment, - ACTIONS(7507), 14, + ACTIONS(6680), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388469,17 +363519,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, anon_sym_xor, anon_sym_or, - [181582] = 4, + [177232] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4685), 1, - sym_comment, - ACTIONS(1650), 2, - sym__space, + ACTIONS(2226), 1, anon_sym_LPAREN2, - ACTIONS(1648), 14, + ACTIONS(2228), 1, + sym__space, + ACTIONS(2230), 1, + aux_sym_unquoted_token2, + STATE(4409), 1, + sym_comment, + ACTIONS(2224), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388493,13 +363548,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_unquoted_token2, - [181609] = 3, + [177263] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4686), 1, + STATE(4410), 1, sym_comment, - ACTIONS(3605), 16, + ACTIONS(7027), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388516,14 +363570,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [181634] = 4, - ACTIONS(247), 1, + [177288] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4564), 1, - aux_sym_shebang_repeat1, - STATE(4687), 1, + STATE(4411), 1, sym_comment, - ACTIONS(7499), 15, + ACTIONS(1707), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1705), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388536,20 +363591,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [181661] = 5, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [177315] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7620), 1, - anon_sym_QMARK2, - STATE(4688), 1, - sym_comment, - ACTIONS(972), 2, + ACTIONS(2245), 1, + anon_sym_LPAREN2, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + ACTIONS(2253), 1, sym__space, - anon_sym_DOT, - ACTIONS(970), 13, + STATE(4412), 1, + sym_comment, + ACTIONS(2251), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388563,17 +363618,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [181690] = 5, + [177346] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1847), 1, + anon_sym_DASH, + ACTIONS(7204), 1, + anon_sym_DOT, + STATE(4413), 1, + sym_comment, + STATE(4554), 1, + aux_sym_cell_path_repeat1, + STATE(4767), 1, + sym_path, + STATE(4911), 1, + sym_cell_path, + ACTIONS(1849), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [177381] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7622), 1, - anon_sym_QMARK2, - STATE(4689), 1, + STATE(4414), 1, sym_comment, - ACTIONS(982), 2, + ACTIONS(2135), 4, + ts_builtin_sym_end, sym__space, - anon_sym_DOT, - ACTIONS(980), 13, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2133), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388585,16 +363667,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [181719] = 4, + anon_sym_DOT_DOT2, + [177408] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7571), 1, + ACTIONS(7221), 1, anon_sym_and, - STATE(4690), 1, + ACTIONS(7223), 1, + anon_sym_xor, + STATE(690), 1, + aux_sym_shebang_repeat1, + STATE(4415), 1, sym_comment, - ACTIONS(7501), 15, + ACTIONS(7219), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388607,23 +363692,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_xor, anon_sym_or, - [181746] = 6, + [177439] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7614), 1, + ACTIONS(7346), 1, anon_sym_DOT_DOT2, - STATE(4691), 1, + STATE(4416), 1, sym_comment, - ACTIONS(7497), 2, + ACTIONS(2057), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7616), 2, + ACTIONS(7348), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7495), 11, + ACTIONS(2051), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388635,14 +363718,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [181777] = 4, - ACTIONS(247), 1, + [177470] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7503), 1, - anon_sym_and, - STATE(4692), 1, + STATE(4417), 1, sym_comment, - ACTIONS(7501), 15, + ACTIONS(1629), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1625), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388654,49 +363740,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_xor, - anon_sym_or, - [181804] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7624), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7626), 1, - aux_sym__immediate_decimal_token2, - STATE(4693), 1, - sym_comment, - ACTIONS(1481), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1483), 12, - anon_sym_in, - anon_sym_QMARK2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [181835] = 7, + anon_sym_DOT_DOT2, + [177497] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5245), 1, - sym__newline, - ACTIONS(7525), 1, - anon_sym_and, - ACTIONS(7529), 1, - anon_sym_xor, - STATE(4576), 1, + STATE(4375), 1, aux_sym_shebang_repeat1, - STATE(4694), 1, + STATE(4418), 1, sym_comment, - ACTIONS(7499), 12, + ACTIONS(7225), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388708,40 +363761,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and, + anon_sym_xor, anon_sym_or, - [181868] = 4, - ACTIONS(3), 1, + [177524] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4695), 1, + ACTIONS(1945), 1, + anon_sym_DASH, + ACTIONS(7204), 1, + anon_sym_DOT, + STATE(4419), 1, sym_comment, - ACTIONS(1723), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1721), 14, + STATE(4554), 1, + aux_sym_cell_path_repeat1, + STATE(4767), 1, + sym_path, + STATE(4825), 1, + sym_cell_path, + ACTIONS(1947), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [181895] = 5, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [177559] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7509), 1, - anon_sym_and, - STATE(728), 1, + STATE(4322), 1, aux_sym_shebang_repeat1, - STATE(4696), 1, + STATE(4420), 1, sym_comment, - ACTIONS(7544), 14, + ACTIONS(7284), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388754,18 +363811,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and, anon_sym_xor, anon_sym_or, - [181924] = 4, - ACTIONS(3), 1, + [177586] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4697), 1, - sym_comment, - ACTIONS(964), 2, - sym__space, - anon_sym_DOT, - ACTIONS(962), 14, + ACTIONS(5095), 1, sym__newline, + ACTIONS(7231), 1, + anon_sym_and, + ACTIONS(7233), 1, + anon_sym_xor, + STATE(4357), 1, + aux_sym_shebang_repeat1, + STATE(4421), 1, + sym_comment, + ACTIONS(7213), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388777,20 +363839,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_QMARK2, - [181951] = 6, + anon_sym_or, + [177619] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7525), 1, - anon_sym_and, - ACTIONS(7533), 1, - sym__newline, - STATE(4696), 1, + STATE(4300), 1, aux_sym_shebang_repeat1, - STATE(4698), 1, + STATE(4422), 1, sym_comment, - ACTIONS(7527), 13, + ACTIONS(7213), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388802,22 +363860,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and, anon_sym_xor, anon_sym_or, - [181982] = 6, + [177646] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7628), 1, - anon_sym_DOT_DOT2, - STATE(4699), 1, + STATE(4423), 1, sym_comment, - ACTIONS(2072), 2, - ts_builtin_sym_end, + ACTIONS(1757), 2, sym__space, - ACTIONS(7630), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2066), 11, + anon_sym_LPAREN2, + ACTIONS(1755), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388829,20 +363883,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [182013] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [177673] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7632), 1, - anon_sym_DOT_DOT2, - STATE(4700), 1, - sym_comment, - ACTIONS(1978), 2, - ts_builtin_sym_end, + ACTIONS(1495), 1, + aux_sym_unquoted_token2, + ACTIONS(1788), 1, + anon_sym_LPAREN2, + ACTIONS(1794), 1, sym__space, - ACTIONS(7634), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1972), 11, + STATE(4424), 1, + sym_comment, + ACTIONS(1786), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388854,20 +363909,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [182044] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [177704] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7636), 1, - anon_sym_DOT_DOT2, - STATE(4701), 1, + ACTIONS(1969), 1, + anon_sym_DASH, + ACTIONS(7204), 1, + anon_sym_DOT, + STATE(4425), 1, sym_comment, - ACTIONS(1966), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7638), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1960), 11, + STATE(4554), 1, + aux_sym_cell_path_repeat1, + STATE(4767), 1, + sym_path, + STATE(4797), 1, + sym_cell_path, + ACTIONS(1971), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [177739] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(690), 1, + aux_sym_shebang_repeat1, + STATE(4426), 1, + sym_comment, + ACTIONS(7219), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388879,16 +363957,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [182075] = 5, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [177766] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7571), 1, + ACTIONS(7208), 1, anon_sym_and, - ACTIONS(7594), 1, + ACTIONS(7272), 1, anon_sym_xor, - STATE(4702), 1, + STATE(690), 1, + aux_sym_shebang_repeat1, + STATE(4427), 1, sym_comment, - ACTIONS(7501), 14, + ACTIONS(7206), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388901,20 +363985,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_or, - [182104] = 6, + [177797] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7523), 1, + ACTIONS(7231), 1, anon_sym_and, - ACTIONS(7533), 1, + ACTIONS(7267), 1, sym__newline, - STATE(4621), 1, - aux_sym_shebang_repeat1, - STATE(4703), 1, + STATE(4428), 1, sym_comment, - ACTIONS(7527), 13, + STATE(4444), 1, + aux_sym_shebang_repeat1, + ACTIONS(7225), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388928,19 +364011,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor, anon_sym_or, - [182135] = 5, - ACTIONS(3), 1, + [177828] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7449), 1, - aux_sym__immediate_decimal_token2, - STATE(4704), 1, + ACTIONS(1879), 1, + anon_sym_DASH, + ACTIONS(7204), 1, + anon_sym_DOT, + STATE(4429), 1, sym_comment, - ACTIONS(1591), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1589), 12, + STATE(4554), 1, + aux_sym_cell_path_repeat1, + STATE(4767), 1, + sym_path, + STATE(4906), 1, + sym_cell_path, + ACTIONS(1881), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [177863] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5095), 1, sym__newline, + ACTIONS(7231), 1, + anon_sym_and, + ACTIONS(7233), 1, + anon_sym_xor, + STATE(4352), 1, + aux_sym_shebang_repeat1, + STATE(4430), 1, + sym_comment, + ACTIONS(7284), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388951,15 +364062,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [182164] = 4, + anon_sym_RPAREN, + anon_sym_or, + [177896] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(4705), 1, + ACTIONS(1965), 1, + anon_sym_DASH, + ACTIONS(7204), 1, + anon_sym_DOT, + STATE(4431), 1, + sym_comment, + STATE(4554), 1, + aux_sym_cell_path_repeat1, + STATE(4767), 1, + sym_path, + STATE(4769), 1, + sym_cell_path, + ACTIONS(1967), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [177931] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4432), 1, sym_comment, - ACTIONS(7507), 15, + ACTIONS(5000), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388972,21 +364109,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [182191] = 6, + [177956] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7514), 1, + ACTIONS(7221), 1, anon_sym_and, - ACTIONS(7536), 1, + ACTIONS(7223), 1, anon_sym_xor, - STATE(728), 1, + ACTIONS(7334), 1, + anon_sym_or, + STATE(690), 1, aux_sym_shebang_repeat1, - STATE(4706), 1, + STATE(4433), 1, sym_comment, - ACTIONS(7518), 13, + ACTIONS(7350), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388999,21 +364139,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, - [182222] = 7, + [177989] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5245), 1, - sym__newline, - ACTIONS(7523), 1, + ACTIONS(7215), 1, anon_sym_and, - ACTIONS(7550), 1, - anon_sym_xor, - STATE(4579), 1, - aux_sym_shebang_repeat1, - STATE(4707), 1, + ACTIONS(7267), 1, + sym__newline, + STATE(4434), 1, sym_comment, - ACTIONS(7499), 12, + STATE(4450), 1, + aux_sym_shebang_repeat1, + ACTIONS(7225), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -389025,41 +364162,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor, anon_sym_or, - [182255] = 3, + [178020] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4708), 1, + STATE(4435), 1, sym_comment, - ACTIONS(3591), 16, + ACTIONS(1060), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1062), 13, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [182280] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [178047] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7509), 1, - anon_sym_and, - ACTIONS(7531), 1, - anon_sym_xor, - STATE(728), 1, + STATE(4340), 1, aux_sym_shebang_repeat1, - STATE(4709), 1, + STATE(4436), 1, sym_comment, - ACTIONS(7518), 13, + ACTIONS(7284), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389072,13 +364207,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and, + anon_sym_xor, anon_sym_or, - [182311] = 3, - ACTIONS(247), 1, + [178074] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4710), 1, + ACTIONS(7147), 1, + aux_sym__immediate_decimal_token2, + STATE(4437), 1, sym_comment, - ACTIONS(7333), 16, + ACTIONS(1645), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1643), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389090,23 +364233,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + aux_sym_unquoted_token2, + [178103] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4438), 1, + sym_comment, + ACTIONS(1052), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1054), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [182336] = 6, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [178130] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4952), 1, - sym__space, - ACTIONS(7640), 1, - sym_long_flag_identifier, - ACTIONS(7642), 1, - anon_sym_EQ2, - STATE(4711), 1, + ACTIONS(5637), 1, + anon_sym_DOT, + STATE(2590), 1, + sym_path, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(4439), 1, + sym_comment, + STATE(5106), 1, + sym_cell_path, + ACTIONS(7352), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(7354), 10, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [178165] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4440), 1, sym_comment, - ACTIONS(4950), 13, + ACTIONS(7086), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389120,14 +364303,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [182367] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [178190] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4532), 1, - aux_sym_shebang_repeat1, - STATE(4712), 1, + STATE(4441), 1, sym_comment, - ACTIONS(7575), 15, + ACTIONS(7027), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389140,25 +364324,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [182394] = 8, + [178215] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1774), 1, + ACTIONS(1890), 1, anon_sym_DASH, - ACTIONS(7644), 1, + ACTIONS(7204), 1, anon_sym_DOT, - STATE(4713), 1, + STATE(4442), 1, sym_comment, - STATE(4923), 1, + STATE(4554), 1, aux_sym_cell_path_repeat1, - STATE(5204), 1, + STATE(4767), 1, sym_path, - STATE(5247), 1, + STATE(4807), 1, sym_cell_path, - ACTIONS(1776), 10, + ACTIONS(1892), 11, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -389169,22 +364355,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182428] = 7, + [178250] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7646), 1, - sym__newline, - STATE(685), 1, - aux_sym__pipe_separator, - STATE(4714), 1, - sym_comment, - STATE(5418), 1, + STATE(4341), 1, aux_sym_shebang_repeat1, - ACTIONS(7649), 3, + STATE(4443), 1, + sym_comment, + ACTIONS(7284), 15, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2866), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -389194,94 +364374,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [182460] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_DASH, - ACTIONS(7644), 1, - anon_sym_DOT, - STATE(4715), 1, - sym_comment, - STATE(4923), 1, - aux_sym_cell_path_repeat1, - STATE(5204), 1, - sym_path, - STATE(5269), 1, - sym_cell_path, - ACTIONS(1798), 10, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [182494] = 8, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [178277] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1808), 1, - anon_sym_DASH, - ACTIONS(7644), 1, - anon_sym_DOT, - STATE(4716), 1, + ACTIONS(7221), 1, + anon_sym_and, + STATE(690), 1, + aux_sym_shebang_repeat1, + STATE(4444), 1, sym_comment, - STATE(4923), 1, - aux_sym_cell_path_repeat1, - STATE(5204), 1, - sym_path, - STATE(5279), 1, - sym_cell_path, - ACTIONS(1810), 10, - sym_identifier, + ACTIONS(7206), 14, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [182528] = 8, + anon_sym_xor, + anon_sym_or, + [178306] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1820), 1, - anon_sym_DASH, - ACTIONS(7644), 1, - anon_sym_DOT, - STATE(4717), 1, - sym_comment, - STATE(4923), 1, - aux_sym_cell_path_repeat1, - STATE(5204), 1, - sym_path, - STATE(5280), 1, - sym_cell_path, - ACTIONS(1822), 10, - sym_identifier, + ACTIONS(7210), 1, sym__newline, + ACTIONS(7215), 1, + anon_sym_and, + STATE(4356), 1, + aux_sym_shebang_repeat1, + STATE(4445), 1, + sym_comment, + ACTIONS(7213), 13, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [182562] = 4, - ACTIONS(3), 1, + anon_sym_xor, + anon_sym_or, + [178337] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4718), 1, + ACTIONS(7221), 1, + anon_sym_and, + STATE(690), 1, + aux_sym_shebang_repeat1, + STATE(4446), 1, sym_comment, - ACTIONS(1723), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1721), 12, + ACTIONS(7206), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389293,15 +364448,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [182588] = 3, + anon_sym_RPAREN, + anon_sym_xor, + anon_sym_or, + [178366] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(4719), 1, - sym_comment, - ACTIONS(2419), 15, - ts_builtin_sym_end, + ACTIONS(5095), 1, sym__newline, + ACTIONS(7215), 1, + anon_sym_and, + ACTIONS(7237), 1, + anon_sym_xor, + STATE(4360), 1, + aux_sym_shebang_repeat1, + STATE(4447), 1, + sym_comment, + ACTIONS(7213), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -389312,85 +364475,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, + anon_sym_RPAREN, anon_sym_or, - [182612] = 17, + [178399] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(7651), 1, - sym_identifier, - ACTIONS(7653), 1, - anon_sym_RBRACK, - ACTIONS(7655), 1, - anon_sym_DOLLAR, - ACTIONS(7657), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7659), 1, - anon_sym_DASH_DASH, - ACTIONS(7661), 1, - anon_sym_DASH, - STATE(4457), 1, - aux_sym_parameter_parens_repeat1, - STATE(4504), 1, - sym_param_long_flag, - STATE(4720), 1, + ACTIONS(7356), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7358), 1, + aux_sym__immediate_decimal_token2, + STATE(4448), 1, sym_comment, - STATE(4787), 1, - sym__param_name, - STATE(5164), 1, - aux_sym_shebang_repeat1, - STATE(5220), 1, - sym_param_short_flag, - STATE(5253), 1, - sym_param_opt, - STATE(5295), 1, - sym_param_rest, - STATE(5590), 1, - sym_parameter, - [182664] = 17, + ACTIONS(1517), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1519), 12, + anon_sym_in, + anon_sym_QMARK2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [178430] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, + ACTIONS(7208), 1, + anon_sym_and, + ACTIONS(7272), 1, + anon_sym_xor, + ACTIONS(7336), 1, + anon_sym_or, + STATE(690), 1, + aux_sym_shebang_repeat1, + STATE(4449), 1, + sym_comment, + ACTIONS(7350), 12, sym__newline, - ACTIONS(7651), 1, - sym_identifier, - ACTIONS(7655), 1, - anon_sym_DOLLAR, - ACTIONS(7657), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7659), 1, - anon_sym_DASH_DASH, - ACTIONS(7661), 1, - anon_sym_DASH, - ACTIONS(7663), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - STATE(4457), 1, - aux_sym_parameter_parens_repeat1, - STATE(4504), 1, - sym_param_long_flag, - STATE(4721), 1, - sym_comment, - STATE(4787), 1, - sym__param_name, - STATE(5168), 1, - aux_sym_shebang_repeat1, - STATE(5220), 1, - sym_param_short_flag, - STATE(5253), 1, - sym_param_opt, - STATE(5295), 1, - sym_param_rest, - STATE(5590), 1, - sym_parameter, - [182716] = 3, + [178463] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(4722), 1, + ACTIONS(7208), 1, + anon_sym_and, + STATE(690), 1, + aux_sym_shebang_repeat1, + STATE(4450), 1, sym_comment, - ACTIONS(5147), 15, + ACTIONS(7206), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389403,25 +364550,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_catch, - [182740] = 8, + anon_sym_xor, + anon_sym_or, + [178492] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1741), 1, + ACTIONS(1957), 1, anon_sym_DASH, - ACTIONS(7644), 1, + ACTIONS(7204), 1, anon_sym_DOT, - STATE(4723), 1, + STATE(4451), 1, sym_comment, - STATE(4923), 1, + STATE(4554), 1, aux_sym_cell_path_repeat1, - STATE(5204), 1, + STATE(4767), 1, sym_path, - STATE(5284), 1, + STATE(4798), 1, sym_cell_path, - ACTIONS(1745), 10, + ACTIONS(1959), 11, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -389432,13 +364579,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182774] = 3, + [178527] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4724), 1, + STATE(4367), 1, + aux_sym_shebang_repeat1, + STATE(4452), 1, sym_comment, - ACTIONS(7333), 15, - ts_builtin_sym_end, + ACTIONS(7213), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389450,17 +364598,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_and, anon_sym_xor, anon_sym_or, - [182798] = 3, + [178554] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(4725), 1, - sym_comment, - ACTIONS(7501), 15, - ts_builtin_sym_end, + ACTIONS(7231), 1, + anon_sym_and, + ACTIONS(7281), 1, sym__newline, + STATE(4350), 1, + aux_sym_shebang_repeat1, + STATE(4453), 1, + sym_comment, + ACTIONS(7284), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -389471,17 +364624,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, + anon_sym_RPAREN, anon_sym_xor, anon_sym_or, - [182822] = 3, + [178585] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(4726), 1, - sym_comment, - ACTIONS(2423), 15, - ts_builtin_sym_end, + ACTIONS(7215), 1, + anon_sym_and, + ACTIONS(7281), 1, sym__newline, + STATE(4351), 1, + aux_sym_shebang_repeat1, + STATE(4454), 1, + sym_comment, + ACTIONS(7284), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -389492,16 +364649,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, + anon_sym_RPAREN, anon_sym_xor, anon_sym_or, - [182846] = 3, + [178616] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(4727), 1, + ACTIONS(7221), 1, + anon_sym_and, + ACTIONS(7223), 1, + anon_sym_xor, + STATE(690), 1, + aux_sym_shebang_repeat1, + STATE(4455), 1, sym_comment, - ACTIONS(7501), 15, - ts_builtin_sym_end, + ACTIONS(7206), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389513,16 +364675,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, + anon_sym_RPAREN, anon_sym_or, - [182870] = 3, - ACTIONS(247), 1, + [178647] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4728), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + ACTIONS(4781), 1, + sym__space, + STATE(4456), 1, sym_comment, - ACTIONS(2427), 15, - ts_builtin_sym_end, + STATE(7570), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4783), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389534,38 +364700,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [182894] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [178678] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7665), 1, + ACTIONS(7227), 1, anon_sym_and, - STATE(4729), 1, - sym_comment, - ACTIONS(7501), 14, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(7243), 1, anon_sym_xor, + ACTIONS(7360), 1, anon_sym_or, - [182920] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4730), 1, + STATE(4457), 1, sym_comment, - ACTIONS(2431), 15, - ts_builtin_sym_end, + ACTIONS(7338), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389577,18 +364725,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [182944] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [178709] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7667), 1, - anon_sym_and, - STATE(4731), 1, + STATE(4368), 1, + aux_sym_shebang_repeat1, + STATE(4458), 1, sym_comment, - ACTIONS(7501), 14, - ts_builtin_sym_end, + ACTIONS(7213), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389600,20 +364746,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and, anon_sym_xor, anon_sym_or, - [182970] = 5, + [178736] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7665), 1, + ACTIONS(5095), 1, + sym__newline, + ACTIONS(7215), 1, anon_sym_and, - ACTIONS(7669), 1, + ACTIONS(7237), 1, anon_sym_xor, - STATE(4732), 1, + STATE(4353), 1, + aux_sym_shebang_repeat1, + STATE(4459), 1, sym_comment, - ACTIONS(7501), 13, - ts_builtin_sym_end, - sym__newline, + ACTIONS(7284), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -389624,14 +364774,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_or, - [182998] = 3, + [178769] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(4733), 1, + ACTIONS(7221), 1, + anon_sym_and, + STATE(690), 1, + aux_sym_shebang_repeat1, + STATE(4460), 1, sym_comment, - ACTIONS(2435), 15, - ts_builtin_sym_end, + ACTIONS(7219), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389643,16 +364797,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, + anon_sym_RPAREN, anon_sym_xor, anon_sym_or, - [183022] = 3, + [178798] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4734), 1, + STATE(4461), 1, sym_comment, - ACTIONS(2439), 15, - ts_builtin_sym_end, + ACTIONS(2261), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389664,20 +364817,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [183046] = 5, - ACTIONS(247), 1, + [178823] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7667), 1, - anon_sym_and, - ACTIONS(7671), 1, - anon_sym_xor, - STATE(4735), 1, + STATE(4462), 1, sym_comment, - ACTIONS(7501), 13, + ACTIONS(1042), 3, ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(1040), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389689,23 +364843,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_or, - [183074] = 8, + anon_sym_QMARK2, + [178849] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1899), 1, + ACTIONS(2051), 1, anon_sym_DASH, - ACTIONS(7644), 1, - anon_sym_DOT, - STATE(4736), 1, + ACTIONS(7362), 1, + anon_sym_DOT_DOT2, + STATE(4463), 1, sym_comment, - STATE(4923), 1, - aux_sym_cell_path_repeat1, - STATE(5204), 1, - sym_path, - STATE(5286), 1, - sym_cell_path, - ACTIONS(1901), 10, + ACTIONS(7364), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2057), 11, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -389716,12 +364868,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183108] = 3, + [178879] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4737), 1, + STATE(4464), 1, sym_comment, - ACTIONS(7501), 15, + ACTIONS(2057), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -389737,22 +364889,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [183132] = 8, + [178903] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(4465), 1, + sym_comment, + STATE(7318), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7265), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7263), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [178933] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1831), 1, - anon_sym_DASH, - ACTIONS(7644), 1, - anon_sym_DOT, - STATE(4738), 1, + STATE(4466), 1, sym_comment, - STATE(4923), 1, - aux_sym_cell_path_repeat1, - STATE(5204), 1, - sym_path, - STATE(5292), 1, - sym_cell_path, - ACTIONS(1833), 10, + ACTIONS(1625), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(1629), 13, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -389763,13 +364933,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183166] = 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [178959] = 17, ACTIONS(247), 1, anon_sym_POUND, - STATE(4739), 1, + ACTIONS(7366), 1, + sym_identifier, + ACTIONS(7368), 1, + sym__newline, + ACTIONS(7370), 1, + anon_sym_RBRACK, + ACTIONS(7372), 1, + anon_sym_DOLLAR, + ACTIONS(7374), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7376), 1, + anon_sym_DASH_DASH, + ACTIONS(7378), 1, + anon_sym_DASH, + STATE(4039), 1, + sym_param_long_flag, + STATE(4242), 1, + sym__param_name, + STATE(4467), 1, + sym_comment, + STATE(4851), 1, + aux_sym_parameter_parens_repeat1, + STATE(5079), 1, + sym_param_rest, + STATE(5080), 1, + sym_param_opt, + STATE(5082), 1, + sym_param_short_flag, + STATE(5223), 1, + aux_sym_shebang_repeat1, + STATE(5442), 1, + sym_parameter, + [179011] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7366), 1, + sym_identifier, + ACTIONS(7368), 1, + sym__newline, + ACTIONS(7372), 1, + anon_sym_DOLLAR, + ACTIONS(7374), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7376), 1, + anon_sym_DASH_DASH, + ACTIONS(7378), 1, + anon_sym_DASH, + ACTIONS(7380), 1, + anon_sym_RPAREN, + STATE(4039), 1, + sym_param_long_flag, + STATE(4242), 1, + sym__param_name, + STATE(4468), 1, + sym_comment, + STATE(4866), 1, + aux_sym_parameter_parens_repeat1, + STATE(5079), 1, + sym_param_rest, + STATE(5080), 1, + sym_param_opt, + STATE(5082), 1, + sym_param_short_flag, + STATE(5223), 1, + aux_sym_shebang_repeat1, + STATE(5442), 1, + sym_parameter, + [179063] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1798), 1, + anon_sym_LPAREN2, + ACTIONS(1806), 1, + aux_sym_unquoted_token2, + STATE(4469), 1, sym_comment, - ACTIONS(7501), 15, + ACTIONS(2162), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2160), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389781,18 +365029,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [183190] = 4, - ACTIONS(247), 1, + [179093] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7665), 1, - anon_sym_and, - STATE(4740), 1, + ACTIONS(1798), 1, + anon_sym_LPAREN2, + ACTIONS(1806), 1, + aux_sym_unquoted_token2, + STATE(4470), 1, sym_comment, - ACTIONS(7501), 14, + ACTIONS(1804), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1796), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389804,41 +365053,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_xor, - anon_sym_or, - [183216] = 4, + [179123] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7667), 1, - anon_sym_and, - STATE(4741), 1, + ACTIONS(7382), 1, + anon_sym_DOT, + ACTIONS(7384), 1, + aux_sym__immediate_decimal_token2, + STATE(4471), 1, sym_comment, - ACTIONS(7501), 14, - ts_builtin_sym_end, + ACTIONS(1497), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1499), 10, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_xor, - anon_sym_or, - [183242] = 5, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [179153] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7665), 1, - anon_sym_and, - ACTIONS(7669), 1, - anon_sym_xor, - STATE(4742), 1, + ACTIONS(7386), 1, + anon_sym_EQ2, + ACTIONS(7388), 1, + sym_short_flag_identifier, + STATE(4472), 1, sym_comment, - ACTIONS(7501), 13, + ACTIONS(4749), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(4747), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389850,13 +365101,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_or, - [183270] = 3, + [179183] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4743), 1, + STATE(4473), 1, sym_comment, - ACTIONS(2443), 15, + ACTIONS(7027), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -389872,22 +365122,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [183294] = 8, + [179207] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1835), 1, + ACTIONS(7392), 1, anon_sym_DASH, - ACTIONS(7644), 1, - anon_sym_DOT, - STATE(4744), 1, + ACTIONS(7394), 1, + anon_sym_DOT_DOT2, + STATE(4474), 1, sym_comment, - STATE(4923), 1, - aux_sym_cell_path_repeat1, - STATE(5204), 1, - sym_path, - STATE(5293), 1, - sym_cell_path, - ACTIONS(1837), 10, + ACTIONS(7396), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7390), 11, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -389898,123 +365146,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183328] = 13, + [179237] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3279), 1, - anon_sym_DOLLAR, - ACTIONS(5954), 1, - anon_sym_LPAREN, - ACTIONS(7673), 1, - anon_sym_DQUOTE, - ACTIONS(7677), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(7679), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7681), 1, - sym__unquoted_naive, - STATE(2144), 1, - sym__str_double_quotes, - STATE(2607), 1, - sym__inter_single_quotes, - STATE(2626), 1, - sym__inter_double_quotes, - STATE(4745), 1, + STATE(4475), 1, sym_comment, - ACTIONS(7675), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5375), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [183372] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7417), 1, + ACTIONS(1645), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1643), 12, sym__newline, - ACTIONS(7651), 1, - sym_identifier, - ACTIONS(7655), 1, - anon_sym_DOLLAR, - ACTIONS(7657), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7659), 1, - anon_sym_DASH_DASH, - ACTIONS(7661), 1, - anon_sym_DASH, - ACTIONS(7683), 1, - anon_sym_RBRACK, - STATE(4504), 1, - sym_param_long_flag, - STATE(4746), 1, - sym_comment, - STATE(4769), 1, - aux_sym_parameter_parens_repeat1, - STATE(4787), 1, - sym__param_name, - STATE(5051), 1, - aux_sym_shebang_repeat1, - STATE(5220), 1, - sym_param_short_flag, - STATE(5253), 1, - sym_param_opt, - STATE(5295), 1, - sym_param_rest, - STATE(5590), 1, - sym_parameter, - [183424] = 17, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_unquoted_token2, + [179263] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(7651), 1, - sym_identifier, - ACTIONS(7655), 1, - anon_sym_DOLLAR, - ACTIONS(7657), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7659), 1, - anon_sym_DASH_DASH, - ACTIONS(7661), 1, - anon_sym_DASH, - ACTIONS(7685), 1, - anon_sym_RPAREN, - STATE(4504), 1, - sym_param_long_flag, - STATE(4747), 1, + STATE(4476), 1, sym_comment, - STATE(4786), 1, - aux_sym_parameter_parens_repeat1, - STATE(4787), 1, - sym__param_name, - STATE(5138), 1, - aux_sym_shebang_repeat1, - STATE(5220), 1, - sym_param_short_flag, - STATE(5253), 1, - sym_param_opt, - STATE(5295), 1, - sym_param_rest, - STATE(5590), 1, - sym_parameter, - [183476] = 8, + ACTIONS(2261), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [179287] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1839), 1, + ACTIONS(2061), 1, anon_sym_DASH, - ACTIONS(7644), 1, - anon_sym_DOT, - STATE(4748), 1, + ACTIONS(7398), 1, + anon_sym_DOT_DOT2, + STATE(4477), 1, sym_comment, - STATE(4923), 1, - aux_sym_cell_path_repeat1, - STATE(5204), 1, - sym_path, - STATE(5301), 1, - sym_cell_path, - ACTIONS(1841), 10, + ACTIONS(7400), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2067), 11, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -390025,66 +365213,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183510] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7687), 1, - anon_sym_DOT, - ACTIONS(7690), 1, - aux_sym__immediate_decimal_token2, - STATE(4749), 1, - sym_comment, - ACTIONS(1473), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1475), 11, - anon_sym_in, - anon_sym_QMARK2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [183540] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7690), 1, - aux_sym__immediate_decimal_token2, - STATE(4750), 1, - sym_comment, - ACTIONS(1473), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1475), 12, - anon_sym_in, - anon_sym_QMARK2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [183568] = 6, + [179317] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1711), 1, - anon_sym_LPAREN2, - ACTIONS(1719), 1, - aux_sym_unquoted_token2, - STATE(4751), 1, + STATE(4478), 1, sym_comment, - ACTIONS(2087), 2, - ts_builtin_sym_end, + ACTIONS(1058), 2, sym__space, - ACTIONS(2085), 11, + anon_sym_DOT, + ACTIONS(1056), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390096,19 +365233,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183598] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179343] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1711), 1, - anon_sym_LPAREN2, - ACTIONS(1719), 1, - aux_sym_unquoted_token2, - STATE(4752), 1, - sym_comment, - ACTIONS(1717), 2, - ts_builtin_sym_end, + ACTIONS(7404), 1, sym__space, - ACTIONS(1709), 11, + STATE(4479), 1, + sym_comment, + STATE(4488), 1, + aux_sym_command_repeat1, + ACTIONS(7402), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390120,16 +365256,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183628] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179371] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7667), 1, - anon_sym_and, - ACTIONS(7671), 1, - anon_sym_xor, - STATE(4753), 1, + STATE(4480), 1, sym_comment, - ACTIONS(7501), 13, + ACTIONS(7086), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -390142,19 +365276,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_or, - [183656] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7665), 1, anon_sym_and, - ACTIONS(7669), 1, anon_sym_xor, - ACTIONS(7692), 1, anon_sym_or, - STATE(4754), 1, + [179395] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7288), 1, + aux_sym__immediate_decimal_token2, + STATE(4481), 1, + sym_comment, + ACTIONS(1643), 3, + sym_identifier, + anon_sym_DASH, + aux_sym__unquoted_in_list_token2, + ACTIONS(1645), 11, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [179423] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4482), 1, sym_comment, - ACTIONS(7592), 12, + ACTIONS(7027), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -390167,16 +365320,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183686] = 4, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [179447] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4755), 1, + STATE(4483), 1, sym_comment, - ACTIONS(968), 3, + ACTIONS(7086), 15, ts_builtin_sym_end, - sym__space, - anon_sym_DOT, - ACTIONS(966), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390188,17 +365341,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - [183712] = 5, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [179471] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7696), 1, - sym__space, - STATE(4756), 1, + STATE(4484), 1, sym_comment, - STATE(4767), 1, - aux_sym_command_repeat1, - ACTIONS(7694), 13, + ACTIONS(7027), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390210,21 +365362,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [183740] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7667), 1, anon_sym_and, - ACTIONS(7671), 1, anon_sym_xor, - ACTIONS(7698), 1, anon_sym_or, - STATE(4757), 1, + [179495] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4485), 1, sym_comment, - ACTIONS(7592), 12, - ts_builtin_sym_end, + ACTIONS(1062), 2, + sym__space, + anon_sym_DOT, + ACTIONS(1060), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390236,19 +365385,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183770] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179521] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7700), 1, - sym_long_flag_identifier, - ACTIONS(7702), 1, - anon_sym_EQ2, - STATE(4758), 1, + STATE(4486), 1, sym_comment, - ACTIONS(4952), 2, - ts_builtin_sym_end, + ACTIONS(1054), 2, sym__space, - ACTIONS(4950), 11, + anon_sym_DOT, + ACTIONS(1052), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390260,16 +365407,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183800] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179547] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4759), 1, + STATE(4487), 1, sym_comment, - ACTIONS(2133), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2131), 12, + ACTIONS(5006), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390281,41 +365426,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token4, - [183826] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7704), 1, - anon_sym_DOT, - ACTIONS(7706), 1, - aux_sym__immediate_decimal_token2, - STATE(4760), 1, - sym_comment, - ACTIONS(1473), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1475), 10, - sym__newline, - anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_else, anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [183856] = 4, + anon_sym_catch, + [179571] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4761), 1, - sym_comment, - ACTIONS(1650), 3, - ts_builtin_sym_end, + ACTIONS(7408), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(1648), 12, + STATE(4488), 2, + sym_comment, + aux_sym_command_repeat1, + ACTIONS(7406), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390327,13 +365450,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [183882] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179597] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3991), 1, + anon_sym_DOLLAR, + ACTIONS(6468), 1, + anon_sym_LPAREN, + ACTIONS(7411), 1, + anon_sym_DQUOTE, + ACTIONS(7415), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7417), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7419), 1, + sym__unquoted_naive, + STATE(1657), 1, + sym__str_double_quotes, + STATE(1708), 1, + sym__inter_single_quotes, + STATE(1709), 1, + sym__inter_double_quotes, + STATE(4489), 1, + sym_comment, + ACTIONS(7413), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4828), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [179641] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4762), 1, + STATE(4490), 1, sym_comment, - ACTIONS(2407), 15, + ACTIONS(7086), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -390349,43 +365504,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [183906] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7708), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7710), 1, - aux_sym__immediate_decimal_token2, - STATE(4763), 1, - sym_comment, - ACTIONS(1481), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1483), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [183936] = 6, + [179665] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(1495), 1, + aux_sym_unquoted_token2, + ACTIONS(1788), 1, anon_sym_LPAREN2, - STATE(4764), 1, + STATE(4491), 1, sym_comment, - STATE(7887), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3259), 2, + ACTIONS(1794), 2, ts_builtin_sym_end, sym__space, - ACTIONS(3261), 11, + ACTIONS(1786), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390397,19 +365528,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183966] = 6, + [179695] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(1553), 1, + aux_sym_unquoted_token2, + ACTIONS(2220), 1, anon_sym_LPAREN2, - STATE(4765), 1, + STATE(4492), 1, sym_comment, - STATE(7887), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3263), 2, + ACTIONS(2222), 2, ts_builtin_sym_end, sym__space, - ACTIONS(3265), 11, + ACTIONS(2218), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390421,46 +365552,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183996] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2189), 1, - anon_sym_DQUOTE, - ACTIONS(2193), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2195), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4413), 1, - anon_sym_DOLLAR, - ACTIONS(5069), 1, - anon_sym_LPAREN, - ACTIONS(7712), 1, - sym__unquoted_naive, - STATE(4755), 1, - sym__str_double_quotes, - STATE(4766), 1, - sym_comment, - STATE(5023), 1, - sym__inter_double_quotes, - STATE(5169), 1, - sym__inter_single_quotes, - ACTIONS(2191), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5085), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [184040] = 4, - ACTIONS(3), 1, + [179725] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7716), 1, - sym__space, - STATE(4767), 2, + ACTIONS(7421), 1, + anon_sym_and, + ACTIONS(7423), 1, + anon_sym_xor, + ACTIONS(7425), 1, + anon_sym_or, + STATE(4493), 1, sym_comment, - aux_sym_command_repeat1, - ACTIONS(7714), 13, + ACTIONS(7338), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390472,87 +365576,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [184066] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4228), 1, - anon_sym_DOLLAR, - ACTIONS(6699), 1, - anon_sym_LPAREN, - ACTIONS(7719), 1, - anon_sym_DQUOTE, - ACTIONS(7723), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(7725), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7727), 1, - sym__unquoted_naive, - STATE(1686), 1, - sym__inter_single_quotes, - STATE(1688), 1, - sym__inter_double_quotes, - STATE(1954), 1, - sym__str_double_quotes, - STATE(4768), 1, - sym_comment, - ACTIONS(7721), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5065), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [184110] = 17, + [179755] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(7651), 1, - sym_identifier, - ACTIONS(7655), 1, - anon_sym_DOLLAR, - ACTIONS(7657), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7659), 1, - anon_sym_DASH_DASH, - ACTIONS(7661), 1, - anon_sym_DASH, - ACTIONS(7729), 1, - anon_sym_RBRACK, - STATE(4457), 1, - aux_sym_parameter_parens_repeat1, - STATE(4504), 1, - sym_param_long_flag, - STATE(4769), 1, - sym_comment, - STATE(4787), 1, - sym__param_name, - STATE(5159), 1, - aux_sym_shebang_repeat1, - STATE(5220), 1, - sym_param_short_flag, - STATE(5253), 1, - sym_param_opt, - STATE(5295), 1, - sym_param_rest, - STATE(5590), 1, - sym_parameter, - [184162] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7731), 1, - anon_sym_EQ2, - ACTIONS(7733), 1, - sym_short_flag_identifier, - STATE(4770), 1, + ACTIONS(7427), 1, + anon_sym_and, + ACTIONS(7429), 1, + anon_sym_xor, + ACTIONS(7431), 1, + anon_sym_or, + STATE(4494), 1, sym_comment, - ACTIONS(4944), 2, + ACTIONS(7338), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(4942), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390564,12 +365600,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [184192] = 3, + [179785] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4771), 1, + STATE(4495), 1, sym_comment, - ACTIONS(6929), 15, + ACTIONS(2467), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -390585,12 +365621,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [184216] = 3, + [179809] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4772), 1, + STATE(4496), 1, sym_comment, - ACTIONS(2411), 15, + ACTIONS(6680), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -390606,43 +365642,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [184240] = 6, + [179833] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7735), 1, - anon_sym_DOT, - ACTIONS(7737), 1, - aux_sym__immediate_decimal_token2, - STATE(4773), 1, + STATE(4497), 1, sym_comment, - ACTIONS(1589), 3, - sym_identifier, - anon_sym_DASH, - aux_sym__unquoted_in_list_token2, - ACTIONS(1591), 10, + ACTIONS(2471), 15, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [184270] = 6, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [179857] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1457), 1, - aux_sym_unquoted_token2, - ACTIONS(2119), 1, - anon_sym_LPAREN2, - STATE(4774), 1, + STATE(4498), 1, sym_comment, - ACTIONS(2121), 2, + ACTIONS(1633), 3, ts_builtin_sym_end, sym__space, - ACTIONS(2117), 11, + anon_sym_LPAREN2, + ACTIONS(1631), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390654,39 +365684,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [184300] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1778), 1, - anon_sym_DASH, - ACTIONS(7644), 1, - anon_sym_DOT, - STATE(4775), 1, - sym_comment, - STATE(4923), 1, - aux_sym_cell_path_repeat1, - STATE(5204), 1, - sym_path, - STATE(5227), 1, - sym_cell_path, - ACTIONS(1780), 10, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [184334] = 3, - ACTIONS(247), 1, + aux_sym_unquoted_token2, + [179883] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4776), 1, + STATE(4499), 1, sym_comment, - ACTIONS(2415), 15, + ACTIONS(1046), 3, ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(1044), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390698,19 +365706,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [184358] = 4, + anon_sym_QMARK2, + [179909] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4777), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(4500), 1, sym_comment, - ACTIONS(978), 3, + STATE(7570), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4842), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT, - ACTIONS(976), 12, + ACTIONS(4844), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390722,20 +365731,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - [184384] = 6, + [179939] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2125), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - ACTIONS(2129), 1, - aux_sym_unquoted_token2, - STATE(4778), 1, + STATE(4501), 1, sym_comment, - ACTIONS(2127), 2, + STATE(7570), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4759), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2123), 11, + ACTIONS(4761), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390747,15 +365755,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [184414] = 4, - ACTIONS(3), 1, + [179969] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4779), 1, + STATE(4502), 1, sym_comment, - ACTIONS(3373), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(3375), 13, + ACTIONS(2475), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390767,59 +365773,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [184440] = 17, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [179993] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(7651), 1, + ACTIONS(7366), 1, sym_identifier, - ACTIONS(7655), 1, + ACTIONS(7368), 1, + sym__newline, + ACTIONS(7372), 1, anon_sym_DOLLAR, - ACTIONS(7657), 1, + ACTIONS(7374), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7659), 1, + ACTIONS(7376), 1, anon_sym_DASH_DASH, - ACTIONS(7661), 1, + ACTIONS(7378), 1, anon_sym_DASH, - ACTIONS(7739), 1, + ACTIONS(7433), 1, anon_sym_PIPE, - STATE(4457), 1, - aux_sym_parameter_parens_repeat1, - STATE(4504), 1, + STATE(4039), 1, sym_param_long_flag, - STATE(4780), 1, - sym_comment, - STATE(4787), 1, + STATE(4242), 1, sym__param_name, - STATE(5068), 1, - aux_sym_shebang_repeat1, - STATE(5220), 1, - sym_param_short_flag, - STATE(5253), 1, - sym_param_opt, - STATE(5295), 1, + STATE(4503), 1, + sym_comment, + STATE(4889), 1, + aux_sym_parameter_parens_repeat1, + STATE(5079), 1, sym_param_rest, - STATE(5590), 1, + STATE(5080), 1, + sym_param_opt, + STATE(5082), 1, + sym_param_short_flag, + STATE(5223), 1, + aux_sym_shebang_repeat1, + STATE(5442), 1, sym_parameter, - [184492] = 8, + [180045] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1770), 1, - anon_sym_DASH, - ACTIONS(7644), 1, - anon_sym_DOT, - STATE(4781), 1, + STATE(4504), 1, sym_comment, - STATE(4923), 1, - aux_sym_cell_path_repeat1, - STATE(5204), 1, - sym_path, - STATE(5210), 1, - sym_cell_path, - ACTIONS(1772), 10, + ACTIONS(2137), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(2139), 13, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -390830,47 +365831,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [184526] = 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [180071] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7415), 1, - anon_sym_EQ, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(7419), 1, - anon_sym_COLON, - ACTIONS(7743), 1, - anon_sym_COMMA, - ACTIONS(7745), 1, - anon_sym_DASH, - STATE(4782), 1, + ACTIONS(7435), 1, + aux_sym__immediate_decimal_token2, + STATE(4505), 1, sym_comment, - STATE(5162), 1, - sym_param_type, - STATE(5166), 1, - sym_param_value, - STATE(5320), 1, - aux_sym_shebang_repeat1, - ACTIONS(7741), 7, + ACTIONS(1705), 3, sym_identifier, + anon_sym_DASH, + aux_sym__unquoted_in_list_token2, + ACTIONS(1707), 11, + anon_sym_EQ, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [184566] = 5, + anon_sym_LPAREN2, + [180099] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7747), 1, - anon_sym_QMARK2, - STATE(4783), 1, - sym_comment, - ACTIONS(972), 3, - ts_builtin_sym_end, + ACTIONS(2307), 1, sym__space, - anon_sym_DOT, - ACTIONS(970), 11, + ACTIONS(7437), 1, + anon_sym_LBRACK2, + STATE(4506), 1, + sym_comment, + ACTIONS(2303), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390882,18 +365877,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [184594] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [180127] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7749), 1, - anon_sym_QMARK2, - STATE(4784), 1, + STATE(4507), 1, sym_comment, - ACTIONS(982), 3, - ts_builtin_sym_end, + ACTIONS(4886), 2, sym__space, - anon_sym_DOT, - ACTIONS(980), 11, + anon_sym_LPAREN2, + ACTIONS(4888), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390905,106 +365899,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [184622] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [180153] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2119), 1, + anon_sym_DQUOTE, + ACTIONS(2123), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2125), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4263), 1, + anon_sym_DOLLAR, + ACTIONS(4878), 1, + anon_sym_LPAREN, + ACTIONS(7439), 1, + sym__unquoted_naive, + STATE(4321), 1, + sym__str_double_quotes, + STATE(4508), 1, + sym_comment, + STATE(4619), 1, + sym__inter_single_quotes, + STATE(4620), 1, + sym__inter_double_quotes, + ACTIONS(2121), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4716), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [180197] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1847), 1, - anon_sym_DASH, - ACTIONS(7644), 1, - anon_sym_DOT, - STATE(4785), 1, + STATE(4509), 1, sym_comment, - STATE(4923), 1, - aux_sym_cell_path_repeat1, - STATE(5204), 1, - sym_path, - STATE(5327), 1, - sym_cell_path, - ACTIONS(1849), 10, - sym_identifier, + ACTIONS(7217), 15, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [184656] = 17, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [180221] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(7651), 1, - sym_identifier, - ACTIONS(7655), 1, - anon_sym_DOLLAR, - ACTIONS(7657), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7659), 1, - anon_sym_DASH_DASH, - ACTIONS(7661), 1, - anon_sym_DASH, - ACTIONS(7751), 1, - anon_sym_RPAREN, - STATE(4457), 1, - aux_sym_parameter_parens_repeat1, - STATE(4504), 1, - sym_param_long_flag, - STATE(4786), 1, + STATE(4510), 1, sym_comment, - STATE(4787), 1, - sym__param_name, - STATE(5178), 1, - aux_sym_shebang_repeat1, - STATE(5220), 1, - sym_param_short_flag, - STATE(5253), 1, - sym_param_opt, - STATE(5295), 1, - sym_param_rest, - STATE(5590), 1, - sym_parameter, - [184708] = 11, + ACTIONS(7217), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [180245] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7415), 1, - anon_sym_EQ, - ACTIONS(7417), 1, + ACTIONS(7421), 1, + anon_sym_and, + STATE(4511), 1, + sym_comment, + ACTIONS(7217), 14, + ts_builtin_sym_end, sym__newline, - ACTIONS(7419), 1, - anon_sym_COLON, - ACTIONS(7755), 1, - anon_sym_COMMA, - ACTIONS(7757), 1, - anon_sym_DASH, - STATE(4787), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_xor, + anon_sym_or, + [180271] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7427), 1, + anon_sym_and, + STATE(4512), 1, sym_comment, - STATE(5045), 1, - sym_param_type, - STATE(5047), 1, - sym_param_value, - STATE(5214), 1, - aux_sym_shebang_repeat1, - ACTIONS(7753), 7, - sym_identifier, + ACTIONS(7217), 14, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [184748] = 5, - ACTIONS(3), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_xor, + anon_sym_or, + [180297] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1537), 1, - sym__space, - ACTIONS(7127), 1, - aux_sym_unquoted_token2, - STATE(4788), 1, + ACTIONS(7421), 1, + anon_sym_and, + ACTIONS(7423), 1, + anon_sym_xor, + STATE(4513), 1, sym_comment, - ACTIONS(1525), 13, + ACTIONS(7217), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391016,53 +366040,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [184776] = 17, + anon_sym_or, + [180325] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(7651), 1, - sym_identifier, - ACTIONS(7655), 1, - anon_sym_DOLLAR, - ACTIONS(7657), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7659), 1, - anon_sym_DASH_DASH, - ACTIONS(7661), 1, - anon_sym_DASH, - ACTIONS(7759), 1, - anon_sym_PIPE, - STATE(4504), 1, - sym_param_long_flag, - STATE(4780), 1, - aux_sym_parameter_parens_repeat1, - STATE(4787), 1, - sym__param_name, - STATE(4789), 1, - sym_comment, - STATE(5099), 1, - aux_sym_shebang_repeat1, - STATE(5220), 1, - sym_param_short_flag, - STATE(5253), 1, - sym_param_opt, - STATE(5295), 1, - sym_param_rest, - STATE(5590), 1, - sym_parameter, - [184828] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4790), 1, + ACTIONS(7427), 1, + anon_sym_and, + ACTIONS(7429), 1, + anon_sym_xor, + STATE(4514), 1, sym_comment, - ACTIONS(1571), 3, + ACTIONS(7217), 13, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1569), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391074,46 +366063,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [184854] = 8, + anon_sym_or, + [180353] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1429), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1690), 1, - anon_sym_DASH, - ACTIONS(1692), 1, - anon_sym_LPAREN2, - ACTIONS(7761), 1, - anon_sym_DOT_DOT2, - STATE(4791), 1, + STATE(4515), 1, sym_comment, - ACTIONS(7763), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1698), 9, - sym_identifier, + ACTIONS(7217), 15, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [184888] = 6, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [180377] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7240), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7765), 1, - anon_sym_DOT, - STATE(4792), 1, + STATE(4516), 1, sym_comment, - ACTIONS(1591), 2, + ACTIONS(2261), 3, ts_builtin_sym_end, sym__space, - ACTIONS(1589), 11, + anon_sym_LPAREN2, + ACTIONS(2259), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391125,46 +366106,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [184918] = 8, - ACTIONS(247), 1, + aux_sym_unquoted_token4, + [180403] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1855), 1, - anon_sym_DASH, - ACTIONS(7644), 1, - anon_sym_DOT, - STATE(4793), 1, + ACTIONS(7404), 1, + sym__space, + STATE(4479), 1, + aux_sym_command_repeat1, + STATE(4517), 1, sym_comment, - STATE(4923), 1, - aux_sym_cell_path_repeat1, - STATE(5204), 1, - sym_path, - STATE(5268), 1, - sym_cell_path, - ACTIONS(1857), 10, - sym_identifier, + ACTIONS(7441), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [184952] = 6, + anon_sym_RBRACE, + [180431] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7767), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7769), 1, - aux_sym__immediate_decimal_token2, - STATE(4794), 1, + STATE(4518), 1, sym_comment, - ACTIONS(1569), 3, - sym_identifier, + ACTIONS(2019), 2, anon_sym_DASH, - aux_sym__unquoted_in_list_token2, - ACTIONS(1571), 10, + anon_sym_DOT_DOT2, + ACTIONS(2021), 13, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -391174,23 +366150,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [184982] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [180457] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1762), 1, - anon_sym_DASH, - ACTIONS(7644), 1, - anon_sym_DOT, - STATE(4795), 1, + STATE(4519), 1, sym_comment, - STATE(4923), 1, - aux_sym_cell_path_repeat1, - STATE(5204), 1, - sym_path, - STATE(5382), 1, - sym_cell_path, - ACTIONS(1764), 10, + ACTIONS(1064), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(1066), 13, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -391201,43 +366172,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [185016] = 13, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [180483] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2226), 1, + anon_sym_LPAREN2, + ACTIONS(2230), 1, + aux_sym_unquoted_token2, + STATE(4520), 1, + sym_comment, + ACTIONS(2228), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2224), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [180513] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2048), 1, + ACTIONS(3225), 1, + anon_sym_DOLLAR, + ACTIONS(5754), 1, + anon_sym_LPAREN, + ACTIONS(7443), 1, anon_sym_DQUOTE, - ACTIONS(2052), 1, + ACTIONS(7447), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2054), 1, + ACTIONS(7449), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4449), 1, - anon_sym_DOLLAR, - ACTIONS(5015), 1, - anon_sym_LPAREN, - ACTIONS(7771), 1, + ACTIONS(7451), 1, sym__unquoted_naive, - STATE(4660), 1, + STATE(1984), 1, sym__str_double_quotes, - STATE(4796), 1, - sym_comment, - STATE(4902), 1, + STATE(2404), 1, sym__inter_single_quotes, - STATE(4928), 1, + STATE(2407), 1, sym__inter_double_quotes, - ACTIONS(2050), 2, + STATE(4521), 1, + sym_comment, + ACTIONS(7445), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(5018), 4, + STATE(5108), 4, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, - [185060] = 3, + [180557] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4797), 1, + STATE(4522), 1, sym_comment, - ACTIONS(3595), 15, + ACTIONS(2479), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -391253,92 +366250,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [185084] = 4, + [180581] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5235), 1, - anon_sym_DASH, - STATE(4798), 1, + STATE(4523), 1, sym_comment, - ACTIONS(5233), 14, - anon_sym_EQ, - sym_identifier, + ACTIONS(2483), 15, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - 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, - [185110] = 4, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [180605] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5208), 1, - anon_sym_DASH, - STATE(4799), 1, + STATE(4524), 1, sym_comment, - ACTIONS(5206), 14, - anon_sym_EQ, - sym_identifier, + ACTIONS(2487), 15, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - 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, - [185136] = 11, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [180629] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7415), 1, - anon_sym_EQ, - ACTIONS(7417), 1, + STATE(4525), 1, + sym_comment, + ACTIONS(2491), 15, + ts_builtin_sym_end, sym__newline, - ACTIONS(7419), 1, - anon_sym_COLON, - ACTIONS(7775), 1, - anon_sym_COMMA, - ACTIONS(7777), 1, - anon_sym_DASH, - STATE(4800), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [180653] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7453), 1, + sym__newline, + STATE(681), 1, + aux_sym__pipe_separator, + STATE(4526), 1, sym_comment, - STATE(5172), 1, - sym_param_type, - STATE(5184), 1, - sym_param_value, - STATE(5360), 1, + STATE(5112), 1, aux_sym_shebang_repeat1, - ACTIONS(7773), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, + ACTIONS(7456), 3, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [185176] = 6, + anon_sym_RBRACE, + ACTIONS(2936), 9, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [180685] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7458), 1, + aux_sym__immediate_decimal_token2, + STATE(4527), 1, + sym_comment, + ACTIONS(1565), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1567), 12, + anon_sym_in, + anon_sym_QMARK2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [180713] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2091), 1, - anon_sym_LPAREN2, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(4801), 1, + ACTIONS(7460), 1, + anon_sym_QMARK2, + STATE(4528), 1, sym_comment, - ACTIONS(2093), 2, + ACTIONS(1036), 3, ts_builtin_sym_end, sym__space, - ACTIONS(2089), 11, + anon_sym_DOT, + ACTIONS(1034), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391350,12 +366384,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [185206] = 3, + [180741] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4802), 1, + STATE(4529), 1, + sym_comment, + ACTIONS(2495), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [180765] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7462), 1, + anon_sym_QMARK2, + STATE(4530), 1, + sym_comment, + ACTIONS(1030), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(1028), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [180793] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7366), 1, + sym_identifier, + ACTIONS(7368), 1, + sym__newline, + ACTIONS(7372), 1, + anon_sym_DOLLAR, + ACTIONS(7374), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7376), 1, + anon_sym_DASH_DASH, + ACTIONS(7378), 1, + anon_sym_DASH, + ACTIONS(7464), 1, + anon_sym_RBRACK, + STATE(4039), 1, + sym_param_long_flag, + STATE(4242), 1, + sym__param_name, + STATE(4531), 1, + sym_comment, + STATE(4542), 1, + aux_sym_shebang_repeat1, + STATE(4861), 1, + aux_sym_parameter_parens_repeat1, + STATE(5079), 1, + sym_param_rest, + STATE(5080), 1, + sym_param_opt, + STATE(5082), 1, + sym_param_short_flag, + STATE(5442), 1, + sym_parameter, + [180845] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4532), 1, sym_comment, - ACTIONS(2403), 15, + ACTIONS(2499), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -391371,19 +366484,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [185230] = 6, + [180869] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2081), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - ACTIONS(2083), 1, - aux_sym_unquoted_token4, - STATE(4803), 1, + STATE(4533), 1, sym_comment, - ACTIONS(1008), 2, + STATE(7570), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4781), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1006), 11, + ACTIONS(4783), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391395,16 +366508,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [185260] = 5, + [180899] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7696), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(4534), 1, + sym_comment, + STATE(7570), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4769), 2, + ts_builtin_sym_end, sym__space, - STATE(4804), 1, + ACTIONS(4771), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [180929] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4535), 1, sym_comment, - STATE(4825), 1, - aux_sym_command_repeat1, - ACTIONS(7779), 13, + ACTIONS(1050), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(1048), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391416,14 +366553,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [185288] = 3, + anon_sym_QMARK2, + [180955] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4805), 1, + STATE(4536), 1, + sym_comment, + ACTIONS(2503), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [180979] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4537), 1, sym_comment, - ACTIONS(3605), 15, + ACTIONS(7217), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -391439,15 +366596,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [185312] = 4, + [181003] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7366), 1, + sym_identifier, + ACTIONS(7368), 1, + sym__newline, + ACTIONS(7372), 1, + anon_sym_DOLLAR, + ACTIONS(7374), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7376), 1, + anon_sym_DASH_DASH, + ACTIONS(7378), 1, + anon_sym_DASH, + ACTIONS(7466), 1, + anon_sym_RPAREN, + STATE(4039), 1, + sym_param_long_flag, + STATE(4242), 1, + sym__param_name, + STATE(4538), 1, + sym_comment, + STATE(4577), 1, + aux_sym_shebang_repeat1, + STATE(4895), 1, + aux_sym_parameter_parens_repeat1, + STATE(5079), 1, + sym_param_rest, + STATE(5080), 1, + sym_param_opt, + STATE(5082), 1, + sym_param_short_flag, + STATE(5442), 1, + sym_parameter, + [181055] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4806), 1, + ACTIONS(7470), 1, + sym__space, + ACTIONS(7472), 1, + aux_sym_record_entry_token1, + STATE(4539), 1, sym_comment, - ACTIONS(3485), 2, + STATE(4540), 1, + aux_sym_command_repeat1, + ACTIONS(7468), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACE, + [181085] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7404), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(3487), 13, + STATE(4488), 1, + aux_sym_command_repeat1, + STATE(4540), 1, + sym_comment, + ACTIONS(7474), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391461,35 +366678,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [185338] = 4, + [181113] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(4807), 1, + ACTIONS(7476), 1, + anon_sym_DOT, + ACTIONS(7479), 1, + aux_sym__immediate_decimal_token2, + STATE(4541), 1, sym_comment, - ACTIONS(1589), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1591), 12, + ACTIONS(1497), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1499), 11, + anon_sym_in, + anon_sym_QMARK2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [181143] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7366), 1, sym_identifier, + ACTIONS(7368), 1, sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(7372), 1, anon_sym_DOLLAR, + ACTIONS(7374), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7376), 1, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [185364] = 3, - ACTIONS(247), 1, + ACTIONS(7378), 1, + anon_sym_DASH, + ACTIONS(7481), 1, + anon_sym_RBRACK, + STATE(4039), 1, + sym_param_long_flag, + STATE(4242), 1, + sym__param_name, + STATE(4542), 1, + sym_comment, + STATE(4860), 1, + aux_sym_parameter_parens_repeat1, + STATE(5079), 1, + sym_param_rest, + STATE(5080), 1, + sym_param_opt, + STATE(5082), 1, + sym_param_short_flag, + STATE(5223), 1, + aux_sym_shebang_repeat1, + STATE(5442), 1, + sym_parameter, + [181195] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4808), 1, + STATE(4543), 1, sym_comment, - ACTIONS(2072), 15, + ACTIONS(1707), 3, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1705), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391501,16 +366758,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [185388] = 3, - ACTIONS(247), 1, + aux_sym_unquoted_token2, + [181221] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4809), 1, + ACTIONS(6995), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7483), 1, + anon_sym_DOT, + STATE(4544), 1, sym_comment, - ACTIONS(1978), 15, + ACTIONS(1645), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1643), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391522,22 +366783,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [185412] = 6, - ACTIONS(3), 1, + [181251] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2099), 1, - anon_sym_LPAREN2, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - STATE(4810), 1, + ACTIONS(7421), 1, + anon_sym_and, + STATE(4545), 1, sym_comment, - ACTIONS(2101), 2, + ACTIONS(7217), 14, ts_builtin_sym_end, - sym__space, - ACTIONS(2097), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391549,19 +366803,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [185442] = 6, - ACTIONS(3), 1, + anon_sym_xor, + anon_sym_or, + [181277] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2099), 1, - anon_sym_LPAREN2, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - STATE(4811), 1, + ACTIONS(7427), 1, + anon_sym_and, + STATE(4546), 1, sym_comment, - ACTIONS(2107), 2, + ACTIONS(7217), 14, ts_builtin_sym_end, - sym__space, - ACTIONS(2105), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391573,22 +366825,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [185472] = 8, + anon_sym_xor, + anon_sym_or, + [181303] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1871), 1, + ACTIONS(7394), 1, + anon_sym_DOT_DOT2, + ACTIONS(7487), 1, anon_sym_DASH, - ACTIONS(7644), 1, - anon_sym_DOT, - STATE(4812), 1, + STATE(4547), 1, sym_comment, - STATE(4923), 1, - aux_sym_cell_path_repeat1, - STATE(5202), 1, - sym_cell_path, - STATE(5204), 1, - sym_path, - ACTIONS(1873), 10, + ACTIONS(7396), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7485), 11, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -391599,34 +366851,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [185506] = 4, + [181333] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4813), 1, + STATE(4548), 1, sym_comment, - ACTIONS(1569), 3, + ACTIONS(2133), 2, anon_sym_DASH, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1571), 12, + ACTIONS(2135), 13, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [185532] = 3, + [181359] = 17, ACTIONS(247), 1, anon_sym_POUND, - STATE(4814), 1, + ACTIONS(7366), 1, + sym_identifier, + ACTIONS(7368), 1, + sym__newline, + ACTIONS(7372), 1, + anon_sym_DOLLAR, + ACTIONS(7374), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7376), 1, + anon_sym_DASH_DASH, + ACTIONS(7378), 1, + anon_sym_DASH, + ACTIONS(7489), 1, + anon_sym_RBRACK, + STATE(4039), 1, + sym_param_long_flag, + STATE(4242), 1, + sym__param_name, + STATE(4467), 1, + aux_sym_shebang_repeat1, + STATE(4549), 1, + sym_comment, + STATE(4910), 1, + aux_sym_parameter_parens_repeat1, + STATE(5079), 1, + sym_param_rest, + STATE(5080), 1, + sym_param_opt, + STATE(5082), 1, + sym_param_short_flag, + STATE(5442), 1, + sym_parameter, + [181411] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7421), 1, + anon_sym_and, + ACTIONS(7423), 1, + anon_sym_xor, + STATE(4550), 1, sym_comment, - ACTIONS(1966), 15, + ACTIONS(7217), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -391639,18 +366930,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, anon_sym_or, - [185556] = 4, - ACTIONS(3), 1, + [181439] = 17, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4815), 1, + ACTIONS(7366), 1, + sym_identifier, + ACTIONS(7368), 1, + sym__newline, + ACTIONS(7372), 1, + anon_sym_DOLLAR, + ACTIONS(7374), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7376), 1, + anon_sym_DASH_DASH, + ACTIONS(7378), 1, + anon_sym_DASH, + ACTIONS(7491), 1, + anon_sym_RPAREN, + STATE(4039), 1, + sym_param_long_flag, + STATE(4242), 1, + sym__param_name, + STATE(4468), 1, + aux_sym_shebang_repeat1, + STATE(4551), 1, sym_comment, - ACTIONS(996), 2, - sym__space, - anon_sym_DOT, - ACTIONS(994), 13, + STATE(4909), 1, + aux_sym_parameter_parens_repeat1, + STATE(5079), 1, + sym_param_rest, + STATE(5080), 1, + sym_param_opt, + STATE(5082), 1, + sym_param_short_flag, + STATE(5442), 1, + sym_parameter, + [181491] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7427), 1, + anon_sym_and, + ACTIONS(7429), 1, + anon_sym_xor, + STATE(4552), 1, + sym_comment, + ACTIONS(7217), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391662,14 +366988,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_or, + [181519] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1076), 1, + anon_sym_DASH, + ACTIONS(7394), 1, + anon_sym_DOT_DOT2, + STATE(4553), 1, + sym_comment, + ACTIONS(7396), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1078), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [185582] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [181549] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(4816), 1, + ACTIONS(1017), 1, + anon_sym_DASH, + ACTIONS(7204), 1, + anon_sym_DOT, + STATE(4554), 1, + sym_comment, + STATE(4557), 1, + aux_sym_cell_path_repeat1, + STATE(4767), 1, + sym_path, + ACTIONS(1019), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [181581] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1587), 1, + sym__space, + ACTIONS(6874), 1, + aux_sym_unquoted_token2, + STATE(4555), 1, sym_comment, - ACTIONS(7781), 15, + ACTIONS(1575), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391682,22 +367060,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_else, anon_sym_RBRACE, - anon_sym_catch, - [185606] = 6, - ACTIONS(3), 1, + [181609] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1429), 1, - aux_sym_unquoted_token2, - ACTIONS(1692), 1, - anon_sym_LPAREN2, - STATE(4817), 1, + STATE(4556), 1, sym_comment, - ACTIONS(1698), 2, + ACTIONS(5000), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(1690), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391709,22 +367079,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [185636] = 8, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [181633] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1875), 1, + ACTIONS(1021), 1, anon_sym_DASH, - ACTIONS(7644), 1, + ACTIONS(7493), 1, anon_sym_DOT, - STATE(4818), 1, + STATE(4767), 1, + sym_path, + STATE(4557), 2, sym_comment, - STATE(4923), 1, aux_sym_cell_path_repeat1, - STATE(5203), 1, - sym_cell_path, - STATE(5204), 1, - sym_path, - ACTIONS(1877), 10, + ACTIONS(1023), 11, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -391735,19 +367106,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [185670] = 6, + [181663] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(4819), 1, - sym_comment, - STATE(7626), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7542), 2, - ts_builtin_sym_end, + ACTIONS(7404), 1, sym__space, - ACTIONS(7540), 11, + STATE(4540), 1, + aux_sym_command_repeat1, + STATE(4558), 1, + sym_comment, + ACTIONS(7468), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391759,44 +367127,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [185700] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [181691] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(4820), 1, - sym_comment, - ACTIONS(1648), 3, - anon_sym_DASH, + ACTIONS(7394), 1, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1650), 12, + ACTIONS(7498), 1, + anon_sym_DASH, + STATE(4559), 1, + sym_comment, + ACTIONS(7396), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7496), 11, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [185726] = 7, + [181721] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4560), 1, + sym_comment, + ACTIONS(4990), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [181745] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7783), 1, + ACTIONS(7500), 1, sym__newline, - STATE(685), 1, + STATE(681), 1, aux_sym__pipe_separator, - STATE(4821), 1, + STATE(4561), 1, sym_comment, - STATE(5418), 1, + STATE(5112), 1, aux_sym_shebang_repeat1, - ACTIONS(7786), 3, + ACTIONS(7503), 3, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(2866), 9, + ACTIONS(2936), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -391806,16 +367199,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [185758] = 5, + [181777] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7696), 1, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(4562), 1, + sym_comment, + ACTIONS(2297), 2, + ts_builtin_sym_end, sym__space, - STATE(4756), 1, - aux_sym_command_repeat1, - STATE(4822), 1, + ACTIONS(2293), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [181807] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2239), 1, + anon_sym_LPAREN2, + ACTIONS(2241), 1, + aux_sym_unquoted_token4, + STATE(4563), 1, sym_comment, - ACTIONS(7788), 13, + ACTIONS(1078), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1076), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391827,36 +367247,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [185786] = 4, + [181837] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7505), 1, + sym_long_flag_identifier, + ACTIONS(7507), 1, + anon_sym_EQ2, + STATE(4564), 1, + sym_comment, + ACTIONS(4737), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4735), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [181867] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(4823), 1, + ACTIONS(7509), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7511), 1, + aux_sym__immediate_decimal_token2, + STATE(4565), 1, sym_comment, - ACTIONS(1721), 3, + ACTIONS(1517), 3, anon_sym_DASH, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1723), 12, - sym_identifier, + aux_sym_unquoted_token2, + ACTIONS(1519), 10, sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, + anon_sym_RBRACE, + anon_sym_as, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [185812] = 3, + sym_filesize_unit, + sym_duration_unit, + [181897] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4824), 1, + STATE(4566), 1, sym_comment, - ACTIONS(3591), 15, + ACTIONS(4994), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -391872,16 +367316,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [185836] = 5, + [181921] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7696), 1, + ACTIONS(7470), 1, sym__space, - STATE(4767), 1, + ACTIONS(7513), 1, + aux_sym_record_entry_token1, + STATE(4540), 1, aux_sym_command_repeat1, - STATE(4825), 1, + STATE(4567), 1, sym_comment, - ACTIONS(7790), 13, + ACTIONS(7468), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391893,88 +367339,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_RBRACE, - [185864] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7794), 1, - anon_sym_DASH, - STATE(4826), 1, - sym_comment, - ACTIONS(7792), 14, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - 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, - [185890] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1879), 1, - anon_sym_DASH, - ACTIONS(7644), 1, - anon_sym_DOT, - STATE(4827), 1, - sym_comment, - STATE(4923), 1, - aux_sym_cell_path_repeat1, - STATE(5204), 1, - sym_path, - STATE(5211), 1, - sym_cell_path, - ACTIONS(1881), 10, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [185924] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4828), 1, - sym_comment, - ACTIONS(994), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(996), 12, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [185950] = 5, + [181951] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2239), 1, - sym__space, - ACTIONS(7796), 1, - anon_sym_LBRACK2, - STATE(4829), 1, + STATE(4568), 1, sym_comment, - ACTIONS(2235), 13, + ACTIONS(4924), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(4926), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391988,17 +367362,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [185978] = 5, + [181977] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7366), 1, + sym_identifier, + ACTIONS(7368), 1, + sym__newline, + ACTIONS(7372), 1, + anon_sym_DOLLAR, + ACTIONS(7374), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7376), 1, + anon_sym_DASH_DASH, + ACTIONS(7378), 1, + anon_sym_DASH, + ACTIONS(7515), 1, + anon_sym_PIPE, + STATE(4039), 1, + sym_param_long_flag, + STATE(4242), 1, + sym__param_name, + STATE(4503), 1, + aux_sym_shebang_repeat1, + STATE(4569), 1, + sym_comment, + STATE(4832), 1, + aux_sym_parameter_parens_repeat1, + STATE(5079), 1, + sym_param_rest, + STATE(5080), 1, + sym_param_opt, + STATE(5082), 1, + sym_param_short_flag, + STATE(5442), 1, + sym_parameter, + [182029] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7798), 1, + ACTIONS(7479), 1, aux_sym__immediate_decimal_token2, - STATE(4830), 1, + STATE(4570), 1, sym_comment, - ACTIONS(1519), 2, + ACTIONS(1497), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(1521), 12, + ACTIONS(1499), 12, anon_sym_in, anon_sym_QMARK2, anon_sym_not_DASHin, @@ -392011,88 +367420,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_DOT, - [186006] = 4, + [182057] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4831), 1, + STATE(4571), 1, sym_comment, - ACTIONS(986), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(988), 12, - sym_identifier, + ACTIONS(2067), 15, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [182081] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2204), 1, + anon_sym_DQUOTE, + ACTIONS(2208), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2210), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4227), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [186032] = 4, - ACTIONS(247), 1, + ACTIONS(4884), 1, + anon_sym_LPAREN, + ACTIONS(7517), 1, + sym__unquoted_naive, + STATE(4462), 1, + sym__str_double_quotes, + STATE(4572), 1, + sym_comment, + STATE(4775), 1, + sym__inter_single_quotes, + STATE(4778), 1, + sym__inter_double_quotes, + ACTIONS(2206), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4864), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [182125] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4832), 1, + STATE(4573), 1, sym_comment, - ACTIONS(990), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(992), 12, - sym_identifier, + ACTIONS(1757), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1755), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [186058] = 8, - ACTIONS(247), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_unquoted_token2, + [182151] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1883), 1, - anon_sym_DASH, - ACTIONS(7644), 1, - anon_sym_DOT, - STATE(4833), 1, + ACTIONS(4904), 1, + sym__space, + ACTIONS(7519), 1, + anon_sym_EQ2, + STATE(4574), 1, sym_comment, - STATE(4923), 1, - aux_sym_cell_path_repeat1, - STATE(5204), 1, - sym_path, - STATE(5212), 1, - sym_cell_path, - ACTIONS(1885), 10, - sym_identifier, + ACTIONS(4906), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [186092] = 6, + anon_sym_RBRACE, + [182179] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7800), 1, + ACTIONS(4914), 1, sym__space, - ACTIONS(7802), 1, - aux_sym_record_entry_token1, - STATE(4825), 1, - aux_sym_command_repeat1, - STATE(4834), 1, + ACTIONS(7521), 1, + anon_sym_EQ2, + STATE(4575), 1, sym_comment, - ACTIONS(7779), 12, + ACTIONS(4916), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392104,135 +367538,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - [186122] = 8, + [182207] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1891), 1, - anon_sym_DASH, - ACTIONS(7644), 1, - anon_sym_DOT, - STATE(4835), 1, - sym_comment, - STATE(4923), 1, - aux_sym_cell_path_repeat1, - STATE(5204), 1, - sym_path, - STATE(5216), 1, - sym_cell_path, - ACTIONS(1893), 10, + ACTIONS(7523), 1, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(7528), 1, anon_sym_DOLLAR, + ACTIONS(7531), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7534), 1, anon_sym_DASH_DASH, - [186156] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(945), 1, + ACTIONS(7537), 1, anon_sym_DASH, - ACTIONS(7644), 1, - anon_sym_DOT, - STATE(4836), 1, + STATE(4039), 1, + sym_param_long_flag, + STATE(4242), 1, + sym__param_name, + STATE(5079), 1, + sym_param_rest, + STATE(5080), 1, + sym_param_opt, + STATE(5082), 1, + sym_param_short_flag, + STATE(5442), 1, + sym_parameter, + STATE(4576), 2, sym_comment, - STATE(4906), 1, - sym_cell_path, - STATE(4923), 1, - aux_sym_cell_path_repeat1, - STATE(5204), 1, - sym_path, - ACTIONS(947), 10, - sym_identifier, - sym__newline, + aux_sym_parameter_parens_repeat1, + ACTIONS(7526), 3, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [186190] = 17, + [182253] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(7651), 1, + ACTIONS(7366), 1, sym_identifier, - ACTIONS(7655), 1, - anon_sym_DOLLAR, - ACTIONS(7657), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7659), 1, - anon_sym_DASH_DASH, - ACTIONS(7661), 1, - anon_sym_DASH, - ACTIONS(7804), 1, - anon_sym_RBRACK, - STATE(4504), 1, - sym_param_long_flag, - STATE(4720), 1, - aux_sym_parameter_parens_repeat1, - STATE(4787), 1, - sym__param_name, - STATE(4837), 1, - sym_comment, - STATE(5030), 1, - aux_sym_shebang_repeat1, - STATE(5220), 1, - sym_param_short_flag, - STATE(5253), 1, - sym_param_opt, - STATE(5295), 1, - sym_param_rest, - STATE(5590), 1, - sym_parameter, - [186242] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7417), 1, + ACTIONS(7368), 1, sym__newline, - ACTIONS(7651), 1, - sym_identifier, - ACTIONS(7655), 1, + ACTIONS(7372), 1, anon_sym_DOLLAR, - ACTIONS(7657), 1, + ACTIONS(7374), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7659), 1, + ACTIONS(7376), 1, anon_sym_DASH_DASH, - ACTIONS(7661), 1, + ACTIONS(7378), 1, anon_sym_DASH, - ACTIONS(7806), 1, + ACTIONS(7540), 1, anon_sym_RPAREN, - STATE(4504), 1, + STATE(4039), 1, sym_param_long_flag, - STATE(4721), 1, - aux_sym_parameter_parens_repeat1, - STATE(4787), 1, + STATE(4242), 1, sym__param_name, - STATE(4838), 1, + STATE(4577), 1, sym_comment, - STATE(5072), 1, - aux_sym_shebang_repeat1, - STATE(5220), 1, - sym_param_short_flag, - STATE(5253), 1, - sym_param_opt, - STATE(5295), 1, + STATE(4915), 1, + aux_sym_parameter_parens_repeat1, + STATE(5079), 1, sym_param_rest, - STATE(5590), 1, + STATE(5080), 1, + sym_param_opt, + STATE(5082), 1, + sym_param_short_flag, + STATE(5223), 1, + aux_sym_shebang_repeat1, + STATE(5442), 1, sym_parameter, - [186294] = 3, + [182305] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4839), 1, + STATE(4578), 1, sym_comment, - ACTIONS(2133), 15, + ACTIONS(2451), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -392248,22 +367628,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [186318] = 8, + [182329] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1895), 1, + ACTIONS(2035), 1, anon_sym_DASH, - ACTIONS(7644), 1, - anon_sym_DOT, - STATE(4840), 1, + ACTIONS(7542), 1, + anon_sym_DOT_DOT2, + STATE(4579), 1, sym_comment, - STATE(4923), 1, - aux_sym_cell_path_repeat1, - STATE(5204), 1, - sym_path, - STATE(5221), 1, - sym_cell_path, - ACTIONS(1897), 10, + ACTIONS(7544), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2041), 11, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -392274,19 +367652,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [186352] = 6, + [182359] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(2245), 1, anon_sym_LPAREN2, - STATE(4841), 1, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + STATE(4580), 1, sym_comment, - STATE(7887), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3205), 2, + ACTIONS(2247), 2, ts_builtin_sym_end, sym__space, - ACTIONS(3207), 11, + ACTIONS(2243), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392298,39 +367676,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [186382] = 5, + [182389] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5005), 1, - sym__space, - ACTIONS(7808), 1, - anon_sym_EQ2, - STATE(4842), 1, + ACTIONS(2245), 1, + anon_sym_LPAREN2, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + STATE(4581), 1, sym_comment, - ACTIONS(5007), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [186410] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5039), 1, + ACTIONS(2253), 2, + ts_builtin_sym_end, sym__space, - ACTIONS(7810), 1, - anon_sym_EQ2, - STATE(4843), 1, - sym_comment, - ACTIONS(5041), 13, + ACTIONS(2251), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392342,40 +367700,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [186438] = 8, + [182419] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1709), 1, + ACTIONS(2043), 1, anon_sym_DASH, - ACTIONS(1711), 1, - anon_sym_LPAREN2, - ACTIONS(1719), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(7812), 1, + ACTIONS(7546), 1, anon_sym_DOT_DOT2, - STATE(4844), 1, + STATE(4582), 1, sym_comment, - ACTIONS(7814), 2, + ACTIONS(7548), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1717), 9, + ACTIONS(2049), 11, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [186472] = 3, + [182449] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4845), 1, + STATE(4583), 1, sym_comment, - ACTIONS(7293), 15, + ACTIONS(2041), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -392391,15 +367745,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [186496] = 4, - ACTIONS(3), 1, + [182473] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4846), 1, + STATE(4584), 1, sym_comment, - ACTIONS(988), 2, - sym__space, - anon_sym_DOT, - ACTIONS(986), 13, + ACTIONS(2049), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392411,17 +367763,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [186522] = 4, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [182497] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4847), 1, + STATE(4585), 1, sym_comment, - ACTIONS(992), 2, - sym__space, - anon_sym_DOT, - ACTIONS(990), 13, + ACTIONS(7550), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392434,17 +367784,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_else, anon_sym_RBRACE, - [186548] = 4, + anon_sym_catch, + [182521] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4848), 1, - sym_comment, - ACTIONS(964), 3, - ts_builtin_sym_end, + ACTIONS(1587), 1, sym__space, - anon_sym_DOT, - ACTIONS(962), 12, + STATE(4586), 1, + sym_comment, + ACTIONS(1575), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392456,15 +367806,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - [186574] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [182546] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(4849), 1, - sym_comment, - ACTIONS(7333), 15, - ts_builtin_sym_end, + ACTIONS(7552), 1, sym__newline, + ACTIONS(7557), 1, + anon_sym_catch, + STATE(4587), 1, + sym_comment, + STATE(4694), 1, + aux_sym_shebang_repeat1, + ACTIONS(7555), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -392475,18 +367830,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [186598] = 3, + anon_sym_RPAREN, + [182575] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(4850), 1, + ACTIONS(5458), 1, + anon_sym_LPAREN2, + ACTIONS(7561), 1, + anon_sym_DASH, + STATE(4588), 1, sym_comment, - ACTIONS(7293), 15, - ts_builtin_sym_end, + STATE(7793), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7559), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [182604] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7563), 1, sym__newline, + STATE(683), 1, + aux_sym__pipe_separator, + STATE(4589), 1, + sym_comment, + STATE(5112), 1, + aux_sym_shebang_repeat1, + ACTIONS(7566), 2, anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(2936), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -392496,41 +367878,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [186622] = 6, - ACTIONS(3), 1, + [182635] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4590), 1, + sym_comment, + ACTIONS(1048), 2, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1050), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + [182660] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(5458), 1, anon_sym_LPAREN2, - STATE(4851), 1, + ACTIONS(7570), 1, + anon_sym_DASH, + STATE(4591), 1, sym_comment, - STATE(7887), 1, + STATE(7793), 1, sym__expr_parenthesized_immediate, - ACTIONS(3209), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(3211), 11, + ACTIONS(7568), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [186652] = 3, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [182689] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(4852), 1, + ACTIONS(7574), 1, + anon_sym_LT, + ACTIONS(7576), 1, + anon_sym_DASH, + STATE(4592), 1, sym_comment, - ACTIONS(7333), 15, - ts_builtin_sym_end, + ACTIONS(7572), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [182716] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7578), 1, sym__newline, + ACTIONS(7580), 1, + sym__space, + STATE(4593), 1, + sym_comment, + STATE(4698), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(7582), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -392541,20 +367966,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [186676] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + [182745] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4853), 1, + STATE(4594), 1, sym_comment, - ACTIONS(1591), 3, - ts_builtin_sym_end, - sym__space, + ACTIONS(1631), 2, + anon_sym_DASH, + aux_sym__unquoted_in_list_token2, + ACTIONS(1633), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_LPAREN2, - ACTIONS(1589), 12, + [182770] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2971), 1, sym__newline, + ACTIONS(7584), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_shebang_repeat1, + STATE(4595), 1, + sym_comment, + ACTIONS(1900), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -392565,65 +368010,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [186702] = 3, + anon_sym_RPAREN, + [182799] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(4854), 1, + ACTIONS(1495), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1786), 1, + anon_sym_DASH, + ACTIONS(1788), 1, + anon_sym_LPAREN2, + STATE(4596), 1, sym_comment, - ACTIONS(7293), 15, - ts_builtin_sym_end, + ACTIONS(1794), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [186726] = 3, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [182828] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(4855), 1, + ACTIONS(7384), 1, + aux_sym__immediate_decimal_token2, + STATE(4597), 1, sym_comment, - ACTIONS(1941), 15, - ts_builtin_sym_end, + ACTIONS(1497), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1499), 10, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [182855] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7589), 1, + anon_sym_AT, + ACTIONS(7591), 1, + anon_sym_DASH, + STATE(4598), 1, + sym_comment, + STATE(5042), 1, + sym_param_cmd, + ACTIONS(7587), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [186750] = 8, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [182884] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1747), 1, + ACTIONS(7589), 1, + anon_sym_AT, + ACTIONS(7591), 1, anon_sym_DASH, - ACTIONS(7644), 1, - anon_sym_DOT, - STATE(4856), 1, + STATE(4599), 1, sym_comment, - STATE(4923), 1, - aux_sym_cell_path_repeat1, - STATE(5204), 1, - sym_path, - STATE(5233), 1, - sym_cell_path, - ACTIONS(1749), 10, + STATE(5043), 1, + sym_param_cmd, + ACTIONS(7587), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [182913] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1798), 1, + anon_sym_LPAREN2, + ACTIONS(1806), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2160), 1, + anon_sym_DASH, + STATE(4600), 1, + sym_comment, + ACTIONS(2162), 11, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -392634,18 +368125,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [186784] = 6, + [182942] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7800), 1, + ACTIONS(7593), 1, + ts_builtin_sym_end, + ACTIONS(7595), 1, sym__space, - ACTIONS(7816), 1, - aux_sym_record_entry_token1, - STATE(4825), 1, - aux_sym_command_repeat1, - STATE(4857), 1, + STATE(4601), 1, sym_comment, - ACTIONS(7779), 12, + STATE(4740), 1, + aux_sym_command_repeat1, + ACTIONS(7402), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392657,23 +368148,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - [186814] = 8, + [182971] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1824), 1, + ACTIONS(7576), 1, anon_sym_DASH, - ACTIONS(7644), 1, - anon_sym_DOT, - STATE(4858), 1, + ACTIONS(7597), 1, + anon_sym_LT, + STATE(4602), 1, sym_comment, - STATE(4923), 1, - aux_sym_cell_path_repeat1, - STATE(5204), 1, - sym_path, - STATE(5267), 1, - sym_cell_path, - ACTIONS(1826), 10, + ACTIONS(7572), 12, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -392682,45 +368167,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [186848] = 11, + [182998] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7415), 1, + ACTIONS(5458), 1, + anon_sym_LPAREN2, + ACTIONS(7392), 1, + anon_sym_DASH, + STATE(4603), 1, + sym_comment, + STATE(7378), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7390), 11, anon_sym_EQ, - ACTIONS(7417), 1, + sym_identifier, sym__newline, - ACTIONS(7419), 1, + anon_sym_PIPE, anon_sym_COLON, - ACTIONS(7820), 1, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(7822), 1, - anon_sym_DASH, - STATE(4859), 1, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [183027] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4604), 1, sym_comment, - STATE(5028), 1, - sym_param_value, - STATE(5167), 1, - sym_param_type, - STATE(5274), 1, - aux_sym_shebang_repeat1, - ACTIONS(7818), 7, + ACTIONS(1705), 2, + anon_sym_DASH, + aux_sym__unquoted_in_list_token2, + ACTIONS(1707), 12, + anon_sym_EQ, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [186888] = 4, + anon_sym_LPAREN2, + [183052] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2419), 1, - sym__space, - STATE(4860), 1, + ACTIONS(7599), 1, + anon_sym_LBRACK2, + STATE(4605), 1, sym_comment, - ACTIONS(2417), 13, + ACTIONS(2307), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2303), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392732,23 +368236,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [186913] = 7, + [183079] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7783), 1, + ACTIONS(7601), 1, sym__newline, - STATE(685), 1, - aux_sym__pipe_separator, - STATE(4861), 1, + ACTIONS(7606), 1, + anon_sym_else, + STATE(4606), 1, sym_comment, - STATE(5418), 1, + STATE(4661), 1, aux_sym_shebang_repeat1, - ACTIONS(7786), 2, - ts_builtin_sym_end, + ACTIONS(7604), 11, anon_sym_SEMI, - ACTIONS(2866), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -392758,14 +368258,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [186944] = 4, + anon_sym_RPAREN, + [183108] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5218), 1, + ACTIONS(1078), 1, sym__space, - STATE(4862), 1, + STATE(4607), 1, sym_comment, - ACTIONS(5220), 13, + ACTIONS(1076), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392779,36 +368280,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186969] = 4, - ACTIONS(247), 1, + [183133] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(966), 1, - anon_sym_DASH, - STATE(4863), 1, + STATE(4608), 1, sym_comment, - ACTIONS(968), 13, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, + ACTIONS(1058), 3, + ts_builtin_sym_end, + sym__space, anon_sym_DOT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - sym__table_head_separator, - [186994] = 4, - ACTIONS(3), 1, + ACTIONS(1056), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [183158] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1537), 1, - sym__space, - STATE(4864), 1, - sym_comment, - ACTIONS(1525), 13, + ACTIONS(2971), 1, sym__newline, + ACTIONS(7608), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_shebang_repeat1, + STATE(4609), 1, + sym_comment, + ACTIONS(1900), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -392820,46 +368324,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [187019] = 14, - ACTIONS(3), 1, + [183187] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4060), 1, + ACTIONS(1495), 1, + aux_sym_unquoted_token2, + ACTIONS(3483), 1, anon_sym_DOLLAR, - ACTIONS(7824), 1, - sym__newline, - ACTIONS(7826), 1, - sym__space, - ACTIONS(7828), 1, - anon_sym_DASH_DASH, - ACTIONS(7830), 1, - anon_sym_DASH, - ACTIONS(7832), 1, - aux_sym_ctrl_match_token1, - STATE(1814), 1, - sym_val_closure, - STATE(1850), 1, - sym_block, - STATE(4865), 1, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(7611), 1, + anon_sym_DOT, + ACTIONS(7615), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7617), 1, + aux_sym__immediate_decimal_token5, + STATE(4610), 1, sym_comment, - STATE(5840), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7712), 1, - sym__flag, - STATE(670), 2, - sym__blosure, + STATE(5511), 1, + sym__immediate_decimal, + ACTIONS(7613), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5880), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - STATE(4979), 2, - sym_short_flag, - sym_long_flag, - [187064] = 4, + ACTIONS(1493), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [183228] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2443), 1, + ACTIONS(5038), 1, sym__space, - STATE(4866), 1, + STATE(4611), 1, sym_comment, - ACTIONS(2441), 13, + ACTIONS(5040), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392873,18 +368374,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [187089] = 6, + [183253] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7834), 1, + ACTIONS(7619), 1, sym__newline, - ACTIONS(7839), 1, + ACTIONS(7624), 1, anon_sym_catch, - STATE(4867), 1, + STATE(4612), 1, sym_comment, - STATE(4975), 1, + STATE(4636), 1, aux_sym_shebang_repeat1, - ACTIONS(7837), 11, + ACTIONS(7622), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -392896,39 +368397,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [187118] = 4, + [183282] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(976), 1, - anon_sym_DASH, - STATE(4868), 1, - sym_comment, - ACTIONS(978), 13, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - sym__table_head_separator, - [187143] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3009), 1, + ACTIONS(7626), 1, sym__newline, - ACTIONS(7841), 1, + ACTIONS(7631), 1, anon_sym_else, - STATE(728), 1, + STATE(4609), 1, aux_sym_shebang_repeat1, - STATE(4869), 1, + STATE(4613), 1, sym_comment, - ACTIONS(1757), 11, + ACTIONS(7629), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -392940,17 +368420,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [187172] = 5, + [183311] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7183), 1, - aux_sym_unquoted_token2, - STATE(4870), 1, - sym_comment, - ACTIONS(1537), 2, - ts_builtin_sym_end, + ACTIONS(5024), 1, sym__space, - ACTIONS(1525), 11, + STATE(4614), 1, + sym_comment, + ACTIONS(5026), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392962,57 +368439,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [187199] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [183336] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(962), 1, - anon_sym_DASH, - STATE(4871), 1, + STATE(4615), 1, sym_comment, - ACTIONS(964), 13, + ACTIONS(1755), 2, + anon_sym_DASH, + aux_sym__unquoted_in_list_token2, + ACTIONS(1757), 12, anon_sym_EQ, sym_identifier, + sym__newline, + anon_sym_PIPE, anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - sym__table_head_separator, - [187224] = 4, + anon_sym_LPAREN2, + [183361] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7846), 1, - anon_sym_catch, - STATE(4872), 1, - sym_comment, - ACTIONS(7844), 13, + ACTIONS(2971), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [187249] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2257), 1, - sym__space, - STATE(4873), 1, + ACTIONS(7633), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_shebang_repeat1, + STATE(4616), 1, sym_comment, - ACTIONS(2255), 13, - sym__newline, + ACTIONS(1900), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -393024,19 +368485,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [187274] = 5, + [183390] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7737), 1, - aux_sym__immediate_decimal_token2, - STATE(4874), 1, + STATE(4617), 1, sym_comment, - ACTIONS(1589), 3, - sym_identifier, + ACTIONS(1643), 2, anon_sym_DASH, aux_sym__unquoted_in_list_token2, - ACTIONS(1591), 10, + ACTIONS(1645), 12, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -393047,14 +368506,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LPAREN2, - [187301] = 4, + [183415] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2253), 1, + ACTIONS(2426), 1, sym__space, - STATE(4875), 1, + STATE(4618), 1, sym_comment, - ACTIONS(2251), 13, + ACTIONS(2424), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393068,17 +368527,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [187326] = 5, + [183440] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7848), 1, - ts_builtin_sym_end, - ACTIONS(7850), 1, + ACTIONS(2366), 1, sym__space, - STATE(4876), 2, + STATE(4619), 1, sym_comment, - aux_sym_command_repeat1, - ACTIONS(7714), 11, + ACTIONS(2364), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393090,14 +368546,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [187353] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [183465] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7855), 1, + ACTIONS(2366), 1, sym__space, - STATE(4877), 1, + STATE(4620), 1, sym_comment, - ACTIONS(7853), 13, + ACTIONS(2364), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393111,14 +368569,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [187378] = 4, + [183490] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2391), 1, + ACTIONS(5028), 1, sym__space, - STATE(4878), 1, + STATE(4621), 1, sym_comment, - ACTIONS(2389), 13, + ACTIONS(5030), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393132,105 +368590,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [187403] = 4, + [183515] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4879), 1, + STATE(4622), 1, sym_comment, - ACTIONS(988), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT, - ACTIONS(986), 11, + ACTIONS(2261), 6, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [187428] = 4, - ACTIONS(3), 1, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LPAREN2, + ACTIONS(2259), 8, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH, + aux_sym__unquoted_in_list_token4, + [183540] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1772), 1, - sym__space, - STATE(4880), 1, + ACTIONS(1553), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2218), 1, + anon_sym_DASH, + ACTIONS(2220), 1, + anon_sym_LPAREN2, + STATE(4623), 1, sym_comment, - ACTIONS(1770), 13, + ACTIONS(2222), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [187453] = 5, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [183569] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7857), 1, + ACTIONS(1044), 1, + anon_sym_DASH, + STATE(4624), 1, + sym_comment, + ACTIONS(1046), 13, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(7860), 1, - sym__space, - STATE(4881), 2, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + anon_sym_DOT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [183594] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2245), 1, + anon_sym_LPAREN2, + ACTIONS(2249), 1, + aux_sym__unquoted_in_list_token4, + STATE(4625), 1, sym_comment, - aux_sym__command_parenthesized_repeat1, - ACTIONS(7863), 11, - anon_sym_SEMI, + ACTIONS(2247), 5, + sym__newline, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - [187480] = 6, + anon_sym_COMMA, + ACTIONS(2243), 7, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH, + [183623] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7865), 1, - sym__newline, - ACTIONS(7870), 1, - anon_sym_else, - STATE(4882), 1, + ACTIONS(7036), 1, + anon_sym_DOT, + ACTIONS(7038), 1, + aux_sym__immediate_decimal_token2, + STATE(4626), 1, sym_comment, - STATE(4966), 1, - aux_sym_shebang_repeat1, - ACTIONS(7868), 11, - anon_sym_SEMI, + ACTIONS(1643), 2, + sym_identifier, + anon_sym_DASH, + ACTIONS(1645), 10, + anon_sym_EQ, + sym__newline, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [187509] = 6, - ACTIONS(247), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [183652] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7872), 1, - sym__newline, - ACTIONS(7877), 1, - anon_sym_else, - STATE(4883), 1, + ACTIONS(5012), 1, + sym__space, + STATE(4627), 1, sym_comment, - STATE(4977), 1, - aux_sym_shebang_repeat1, - ACTIONS(7875), 11, + ACTIONS(5014), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -393242,18 +368721,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [187538] = 6, + anon_sym_RBRACE, + [183677] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7879), 1, + ACTIONS(1796), 1, + anon_sym_DASH, + ACTIONS(1798), 1, + anon_sym_LPAREN2, + ACTIONS(1806), 1, + aux_sym__unquoted_in_list_token2, + STATE(4628), 1, + sym_comment, + ACTIONS(1804), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(7884), 1, - anon_sym_else, - STATE(4884), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [183706] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4629), 1, sym_comment, - STATE(4935), 1, - aux_sym_shebang_repeat1, - ACTIONS(7882), 11, + ACTIONS(5114), 14, + sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -393264,15 +368763,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [187567] = 4, + anon_sym_RBRACE, + aux_sym_record_entry_token1, + [183729] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1745), 1, + ACTIONS(1951), 1, sym__space, - STATE(4885), 1, + STATE(4630), 1, sym_comment, - ACTIONS(1741), 13, + ACTIONS(1949), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393286,18 +368786,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [187592] = 6, - ACTIONS(247), 1, + [183754] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3009), 1, - sym__newline, - ACTIONS(7886), 1, - anon_sym_catch, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(4886), 1, + ACTIONS(2370), 1, + sym__space, + STATE(4631), 1, sym_comment, - ACTIONS(1757), 11, + ACTIONS(2368), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -393309,16 +368806,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [187621] = 4, + anon_sym_RBRACE, + [183779] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4887), 1, + ACTIONS(2245), 1, + anon_sym_LPAREN2, + ACTIONS(2249), 1, + aux_sym__unquoted_in_list_token4, + STATE(4632), 1, sym_comment, - ACTIONS(992), 3, - ts_builtin_sym_end, + ACTIONS(2253), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2251), 7, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH, + [183808] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2422), 1, sym__space, - anon_sym_DOT, - ACTIONS(990), 11, + STATE(4633), 1, + sym_comment, + ACTIONS(2420), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393330,15 +368849,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [187646] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [183833] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2297), 1, + ACTIONS(7578), 1, + sym__newline, + ACTIONS(7580), 1, sym__space, - STATE(4888), 1, + STATE(4634), 1, sym_comment, - ACTIONS(2295), 13, - sym__newline, + STATE(4638), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(7636), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -393350,17 +368874,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [187671] = 4, - ACTIONS(3), 1, + [183862] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2342), 1, - sym__space, - STATE(4889), 1, - sym_comment, - ACTIONS(2340), 13, + ACTIONS(7638), 1, sym__newline, + STATE(683), 1, + aux_sym__pipe_separator, + STATE(4635), 1, + sym_comment, + STATE(5112), 1, + aux_sym_shebang_repeat1, + ACTIONS(7641), 2, anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(2936), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -393370,17 +368898,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [187696] = 4, - ACTIONS(3), 1, + [183893] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5202), 1, - sym__space, - STATE(4890), 1, - sym_comment, - ACTIONS(5204), 13, + ACTIONS(7643), 1, sym__newline, + ACTIONS(7648), 1, + anon_sym_catch, + STATE(4636), 1, + sym_comment, + STATE(4728), 1, + aux_sym_shebang_repeat1, + ACTIONS(7646), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -393392,17 +368921,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [187721] = 4, + [183922] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4891), 1, - sym_comment, - ACTIONS(3485), 3, - ts_builtin_sym_end, + ACTIONS(1923), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(3487), 11, + STATE(4637), 1, + sym_comment, + ACTIONS(1921), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393414,37 +368940,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [187746] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7889), 1, - aux_sym__immediate_decimal_token2, - STATE(4892), 1, - sym_comment, - ACTIONS(1648), 3, - sym_identifier, - anon_sym_DASH, - aux_sym__unquoted_in_list_token2, - ACTIONS(1650), 10, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [187773] = 4, + anon_sym_RBRACE, + [183947] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1749), 1, + ACTIONS(7578), 1, + sym__newline, + ACTIONS(7580), 1, sym__space, - STATE(4893), 1, + STATE(4638), 1, sym_comment, - ACTIONS(1747), 13, - sym__newline, + STATE(4692), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(7650), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -393456,15 +368965,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [187798] = 4, + [183976] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2317), 1, + ACTIONS(2445), 1, sym__space, - STATE(4894), 1, + STATE(4639), 1, sym_comment, - ACTIONS(2315), 13, + ACTIONS(2443), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393478,14 +368986,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [187823] = 4, + [184001] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4640), 1, + sym_comment, + ACTIONS(1565), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1567), 12, + anon_sym_in, + anon_sym_QMARK2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [184026] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7497), 1, + ACTIONS(2347), 1, sym__space, - STATE(4895), 1, + STATE(4641), 1, sym_comment, - ACTIONS(7495), 13, + ACTIONS(2345), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393499,21 +369028,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [187848] = 7, - ACTIONS(247), 1, + [184051] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7891), 1, - sym__newline, - STATE(687), 1, - aux_sym__pipe_separator, - STATE(4896), 1, + ACTIONS(7095), 1, + sym__space, + STATE(4642), 1, sym_comment, - STATE(5418), 1, - aux_sym_shebang_repeat1, - ACTIONS(7894), 2, + ACTIONS(7093), 13, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2866), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -393523,14 +369047,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [187879] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [184076] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2435), 1, + ACTIONS(2479), 1, sym__space, - STATE(4897), 1, + STATE(4643), 1, sym_comment, - ACTIONS(2433), 13, + ACTIONS(2477), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393544,14 +369070,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [187904] = 4, + [184101] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1798), 1, + ACTIONS(2451), 1, sym__space, - STATE(4898), 1, + STATE(4644), 1, sym_comment, - ACTIONS(1796), 13, + ACTIONS(2449), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393565,14 +369091,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [187929] = 4, + [184126] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7898), 1, + ACTIONS(2374), 1, sym__space, - STATE(4899), 1, + STATE(4645), 1, sym_comment, - ACTIONS(7896), 13, + ACTIONS(2372), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393586,40 +369112,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [187954] = 5, - ACTIONS(247), 1, + [184151] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7706), 1, - aux_sym__immediate_decimal_token2, - STATE(4900), 1, + ACTIONS(2378), 1, + sym__space, + STATE(4646), 1, sym_comment, - ACTIONS(1473), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1475), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [187981] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7900), 1, + ACTIONS(2376), 13, sym__newline, - ACTIONS(7905), 1, - anon_sym_catch, - STATE(4901), 1, - sym_comment, - STATE(4926), 1, - aux_sym_shebang_repeat1, - ACTIONS(7903), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -393631,14 +369132,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [188010] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [184176] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2313), 1, - sym__space, - STATE(4902), 1, + STATE(4647), 1, sym_comment, - ACTIONS(2311), 13, + ACTIONS(5006), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393650,16 +369151,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [188035] = 4, + anon_sym_else, + anon_sym_catch, + [184199] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2265), 1, + ACTIONS(7595), 1, sym__space, - STATE(4903), 1, + ACTIONS(7652), 1, + ts_builtin_sym_end, + STATE(4648), 1, sym_comment, - ACTIONS(2263), 13, + STATE(4740), 1, + aux_sym_command_repeat1, + ACTIONS(7474), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393671,16 +369176,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [188060] = 4, - ACTIONS(247), 1, + [184228] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7909), 1, - anon_sym_else, - STATE(4904), 1, + ACTIONS(2455), 1, + sym__space, + STATE(4649), 1, sym_comment, - ACTIONS(7907), 13, + ACTIONS(2453), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393694,44 +369197,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [188085] = 12, + [184253] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1429), 1, - aux_sym_unquoted_token2, - ACTIONS(3645), 1, - anon_sym_DOLLAR, - ACTIONS(6262), 1, + ACTIONS(2224), 1, + anon_sym_DASH, + ACTIONS(2226), 1, anon_sym_LPAREN2, - ACTIONS(7911), 1, - anon_sym_DOT, - ACTIONS(7915), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7917), 1, - aux_sym__immediate_decimal_token5, - STATE(4905), 1, - sym_comment, - STATE(5859), 1, - sym__immediate_decimal, - ACTIONS(7913), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6195), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1427), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [188126] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4906), 1, + ACTIONS(2230), 1, + aux_sym__unquoted_in_list_token2, + STATE(4650), 1, sym_comment, - ACTIONS(1021), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(1023), 12, + ACTIONS(2228), 11, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -393742,16 +369220,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [188151] = 4, + [184282] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2423), 1, + ACTIONS(2483), 1, sym__space, - STATE(4907), 1, + STATE(4651), 1, sym_comment, - ACTIONS(2421), 13, + ACTIONS(2481), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393765,15 +369241,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [188176] = 4, - ACTIONS(3), 1, + [184307] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2365), 1, - sym__space, - STATE(4908), 1, - sym_comment, - ACTIONS(2363), 13, + ACTIONS(7654), 1, sym__newline, + ACTIONS(7659), 1, + anon_sym_else, + STATE(4595), 1, + aux_sym_shebang_repeat1, + STATE(4652), 1, + sym_comment, + ACTIONS(7657), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -393785,15 +369264,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [188201] = 4, + [184336] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7921), 1, + ACTIONS(2487), 1, sym__space, - STATE(4909), 1, + STATE(4653), 1, sym_comment, - ACTIONS(7919), 13, + ACTIONS(2485), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393807,55 +369285,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [188226] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4910), 1, - sym_comment, - ACTIONS(3373), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(3375), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [188251] = 3, + [184361] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4911), 1, + ACTIONS(1048), 1, + anon_sym_DASH, + STATE(4654), 1, sym_comment, - ACTIONS(5147), 14, - ts_builtin_sym_end, + ACTIONS(1050), 13, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_else, - anon_sym_catch, - [188274] = 4, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + anon_sym_DOT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [184386] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2369), 1, + ACTIONS(2491), 1, sym__space, - STATE(4912), 1, + STATE(4655), 1, sym_comment, - ACTIONS(2367), 13, + ACTIONS(2489), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393869,14 +369327,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [188299] = 4, + [184411] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2243), 1, + ACTIONS(2067), 1, sym__space, - STATE(4913), 1, + STATE(4656), 1, sym_comment, - ACTIONS(2241), 13, + ACTIONS(2061), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393890,14 +369348,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [188324] = 4, + [184436] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4657), 1, + sym_comment, + ACTIONS(1517), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1519), 12, + anon_sym_in, + anon_sym_QMARK2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [184461] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7925), 1, + ACTIONS(1963), 1, sym__space, - STATE(4914), 1, + STATE(4658), 1, sym_comment, - ACTIONS(7923), 13, + ACTIONS(1961), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393911,14 +369390,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [188349] = 4, + [184486] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7589), 1, + anon_sym_AT, + ACTIONS(7663), 1, + anon_sym_DASH, + STATE(4659), 1, + sym_comment, + STATE(4952), 1, + sym_param_cmd, + ACTIONS(7661), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [184515] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7929), 1, + ACTIONS(2357), 1, sym__space, - STATE(4915), 1, + STATE(4660), 1, sym_comment, - ACTIONS(7927), 13, + ACTIONS(2355), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393932,18 +369434,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [188374] = 6, + [184540] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7931), 1, + ACTIONS(2971), 1, sym__newline, - ACTIONS(7936), 1, - anon_sym_catch, - STATE(4901), 1, + ACTIONS(7665), 1, + anon_sym_else, + STATE(690), 1, aux_sym_shebang_repeat1, - STATE(4916), 1, + STATE(4661), 1, sym_comment, - ACTIONS(7934), 11, + ACTIONS(1900), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -393955,17 +369457,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [188403] = 5, + [184569] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7938), 1, - anon_sym_EQ2, - STATE(4917), 1, - sym_comment, - ACTIONS(5005), 2, - ts_builtin_sym_end, + ACTIONS(2495), 1, sym__space, - ACTIONS(5007), 11, + STATE(4662), 1, + sym_comment, + ACTIONS(2493), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393977,99 +369476,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [188430] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7940), 1, - aux_sym__immediate_decimal_token2, - STATE(4918), 1, - sym_comment, - ACTIONS(1519), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1521), 10, - sym__newline, - anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [188457] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4919), 1, - sym_comment, - ACTIONS(966), 2, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(968), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - [188482] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4920), 1, - sym_comment, - ACTIONS(976), 2, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(978), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - [188507] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4921), 1, - sym_comment, - ACTIONS(962), 2, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(964), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - [188532] = 4, + [184594] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7542), 1, + ACTIONS(2499), 1, sym__space, - STATE(4922), 1, + STATE(4663), 1, sym_comment, - ACTIONS(7540), 13, + ACTIONS(2497), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394083,20 +369499,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [188557] = 7, + [184619] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(951), 1, + ACTIONS(2303), 1, anon_sym_DASH, - ACTIONS(7644), 1, - anon_sym_DOT, - STATE(4923), 1, + ACTIONS(7668), 1, + anon_sym_LBRACK2, + STATE(4664), 1, sym_comment, - STATE(4930), 1, - aux_sym_cell_path_repeat1, - STATE(5204), 1, - sym_path, - ACTIONS(953), 10, + ACTIONS(2307), 12, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -394107,18 +369520,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [188588] = 6, + aux_sym_ctrl_match_token1, + [184646] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7942), 1, - ts_builtin_sym_end, - ACTIONS(7944), 1, + ACTIONS(2503), 1, sym__space, - STATE(4876), 1, - aux_sym_command_repeat1, - STATE(4924), 1, + STATE(4665), 1, sym_comment, - ACTIONS(7694), 11, + ACTIONS(2501), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394130,14 +369540,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [188617] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [184671] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1901), 1, + ACTIONS(7672), 1, sym__space, - STATE(4925), 1, + STATE(4666), 1, sym_comment, - ACTIONS(1899), 13, + ACTIONS(7670), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394151,18 +369563,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [188642] = 6, + [184696] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3009), 1, + ACTIONS(5458), 1, + anon_sym_LPAREN2, + ACTIONS(7487), 1, + anon_sym_DASH, + STATE(4667), 1, + sym_comment, + STATE(7378), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7485), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(7946), 1, - anon_sym_catch, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(4926), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [184725] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7151), 1, + sym__space, + STATE(4668), 1, sym_comment, - ACTIONS(1757), 11, + ACTIONS(7149), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -394174,14 +369606,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [188671] = 4, + anon_sym_RBRACE, + [184750] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1837), 1, + ACTIONS(7676), 1, sym__space, - STATE(4927), 1, + STATE(4669), 1, sym_comment, - ACTIONS(1835), 13, + ACTIONS(7674), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394195,15 +369628,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [188696] = 4, + [184775] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2313), 1, - sym__space, - STATE(4928), 1, + STATE(4670), 1, sym_comment, - ACTIONS(2311), 13, + ACTIONS(5120), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -394214,83 +369646,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_RBRACE, - [188721] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4929), 1, - sym_comment, - ACTIONS(1473), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1475), 12, - anon_sym_in, - anon_sym_QMARK2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [188746] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(955), 1, - anon_sym_DASH, - ACTIONS(7949), 1, - anon_sym_DOT, - STATE(5204), 1, - sym_path, - STATE(4930), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(957), 10, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [188775] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7954), 1, - anon_sym_DASH, - ACTIONS(7956), 1, - anon_sym_DOT_DOT2, - STATE(4931), 1, - sym_comment, - ACTIONS(7958), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7952), 10, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [188804] = 4, + aux_sym_record_entry_token1, + [184798] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5129), 1, + ACTIONS(2386), 1, sym__space, - STATE(4932), 1, + STATE(4671), 1, sym_comment, - ACTIONS(5131), 13, + ACTIONS(2384), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394304,14 +369669,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [188829] = 4, + [184823] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5133), 1, + ACTIONS(7680), 1, sym__space, - STATE(4933), 1, + STATE(4672), 1, sym_comment, - ACTIONS(5135), 13, + ACTIONS(7678), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394325,14 +369690,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [188854] = 4, + [184848] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5210), 1, + ACTIONS(2390), 1, sym__space, - STATE(4934), 1, + STATE(4673), 1, sym_comment, - ACTIONS(5212), 13, + ACTIONS(2388), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394346,18 +369711,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [188879] = 6, - ACTIONS(247), 1, + [184873] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7960), 1, - sym__newline, - ACTIONS(7965), 1, - anon_sym_else, - STATE(4935), 1, + STATE(4674), 1, sym_comment, - STATE(4968), 1, - aux_sym_shebang_repeat1, - ACTIONS(7963), 11, + ACTIONS(1062), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(1060), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -394368,17 +369732,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [188908] = 4, + [184898] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4936), 1, + STATE(4675), 1, sym_comment, - ACTIONS(996), 3, + ACTIONS(1054), 3, ts_builtin_sym_end, sym__space, anon_sym_DOT, - ACTIONS(994), 11, + ACTIONS(1052), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394390,18 +369753,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [188933] = 6, + [184923] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7967), 1, - sym__newline, - ACTIONS(7969), 1, + ACTIONS(7684), 1, sym__space, - STATE(4937), 1, + STATE(4676), 1, sym_comment, - STATE(4964), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(7971), 11, + ACTIONS(7682), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -394413,19 +369773,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [188962] = 6, + anon_sym_RBRACE, + [184948] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7956), 1, - anon_sym_DOT_DOT2, - ACTIONS(7975), 1, - anon_sym_DASH, - STATE(4938), 1, + ACTIONS(7686), 1, + anon_sym_QMARK2, + STATE(4677), 1, sym_comment, - ACTIONS(7958), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7973), 10, + ACTIONS(1034), 2, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1036), 11, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -394436,19 +369796,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [188991] = 6, + [184975] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1006), 1, - anon_sym_DASH, - ACTIONS(7956), 1, - anon_sym_DOT_DOT2, - STATE(4939), 1, + ACTIONS(7688), 1, + anon_sym_QMARK2, + STATE(4678), 1, sym_comment, - ACTIONS(7958), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1008), 10, + ACTIONS(1028), 2, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1030), 11, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -394459,16 +369818,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [189020] = 4, - ACTIONS(3), 1, + [185002] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1869), 1, - sym__space, - STATE(4940), 1, - sym_comment, - ACTIONS(1867), 13, + ACTIONS(7500), 1, sym__newline, + STATE(681), 1, + aux_sym__pipe_separator, + STATE(4679), 1, + sym_comment, + STATE(5112), 1, + aux_sym_shebang_repeat1, + ACTIONS(7503), 2, + ts_builtin_sym_end, anon_sym_SEMI, + ACTIONS(2936), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -394478,16 +369842,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [189045] = 4, + [185033] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2373), 1, + ACTIONS(5112), 1, sym__space, - STATE(4941), 1, + STATE(4680), 1, sym_comment, - ACTIONS(2371), 13, + ACTIONS(5114), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394501,17 +369863,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [189070] = 5, + [185058] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7977), 1, - anon_sym_LBRACK2, - STATE(4942), 1, - sym_comment, - ACTIONS(2239), 2, - ts_builtin_sym_end, + ACTIONS(7692), 1, sym__space, - ACTIONS(2235), 11, + STATE(4681), 1, + sym_comment, + ACTIONS(7690), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394523,21 +369882,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [189097] = 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + [185083] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7979), 1, + ACTIONS(7694), 1, sym__newline, - STATE(687), 1, - aux_sym__pipe_separator, - STATE(4943), 1, - sym_comment, - STATE(5418), 1, + ACTIONS(7699), 1, + anon_sym_catch, + STATE(4587), 1, aux_sym_shebang_repeat1, - ACTIONS(7982), 2, + STATE(4682), 1, + sym_comment, + ACTIONS(7697), 11, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2866), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -394547,35 +369906,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [189128] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7984), 1, - anon_sym_DOT, - ACTIONS(7986), 1, - aux_sym__immediate_decimal_token2, - STATE(4944), 1, - sym_comment, - ACTIONS(1589), 3, - sym_identifier, - anon_sym_DASH, - aux_sym__unquoted_in_list_token2, - ACTIONS(1591), 9, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [189157] = 4, + [185112] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1881), 1, sym__space, - STATE(4945), 1, + STATE(4683), 1, sym_comment, ACTIONS(1879), 13, sym__newline, @@ -394591,60 +369928,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [189182] = 4, - ACTIONS(3), 1, + [185137] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5166), 1, - sym__space, - STATE(4946), 1, + ACTIONS(5458), 1, + anon_sym_LPAREN2, + ACTIONS(7498), 1, + anon_sym_DASH, + STATE(4684), 1, sym_comment, - ACTIONS(5168), 13, + STATE(7378), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7496), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [189207] = 4, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [185166] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5170), 1, - sym__space, - STATE(4947), 1, + STATE(4685), 1, + sym_comment, + ACTIONS(1639), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1641), 12, + anon_sym_in, + anon_sym_QMARK2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [185191] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4686), 1, sym_comment, - ACTIONS(5172), 13, + ACTIONS(1044), 2, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1046), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [189232] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + [185216] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7944), 1, + ACTIONS(7265), 1, sym__space, - ACTIONS(7988), 1, - ts_builtin_sym_end, - STATE(4924), 1, - aux_sym_command_repeat1, - STATE(4948), 1, + STATE(4687), 1, sym_comment, - ACTIONS(7788), 11, + ACTIONS(7263), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394656,14 +370012,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [189261] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [185241] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2431), 1, + ACTIONS(5118), 1, sym__space, - STATE(4949), 1, + STATE(4688), 1, sym_comment, - ACTIONS(2429), 13, + ACTIONS(5120), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394677,14 +370035,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [189286] = 4, + [185266] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2283), 1, - sym__space, - STATE(4950), 1, + STATE(4689), 1, sym_comment, - ACTIONS(2281), 13, + ACTIONS(4886), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(4888), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394696,44 +370056,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [189311] = 4, - ACTIONS(3), 1, + [185291] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7992), 1, - sym__space, - STATE(4951), 1, + STATE(4690), 1, sym_comment, - ACTIONS(7990), 13, + ACTIONS(1040), 2, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1042), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [189336] = 7, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + [185316] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7646), 1, + ACTIONS(7453), 1, sym__newline, - STATE(685), 1, + STATE(681), 1, aux_sym__pipe_separator, - STATE(4952), 1, + STATE(4691), 1, sym_comment, - STATE(5418), 1, + STATE(5112), 1, aux_sym_shebang_repeat1, - ACTIONS(7649), 2, + ACTIONS(7456), 2, ts_builtin_sym_end, anon_sym_SEMI, - ACTIONS(2866), 9, + ACTIONS(2936), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -394743,18 +370101,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [189367] = 6, + [185347] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7967), 1, + ACTIONS(7701), 1, sym__newline, - ACTIONS(7969), 1, + ACTIONS(7704), 1, sym__space, - STATE(4953), 1, + STATE(4692), 2, sym_comment, - STATE(4971), 1, aux_sym__command_parenthesized_repeat1, - ACTIONS(7994), 11, + ACTIONS(7707), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -394766,40 +370123,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [189396] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4954), 1, - sym_comment, - ACTIONS(1585), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1587), 12, - anon_sym_in, - anon_sym_QMARK2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [189421] = 6, + [185374] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7956), 1, - anon_sym_DOT_DOT2, - ACTIONS(7998), 1, + ACTIONS(5458), 1, + anon_sym_LPAREN2, + ACTIONS(7711), 1, anon_sym_DASH, - STATE(4955), 1, + STATE(4693), 1, sym_comment, - ACTIONS(7958), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7996), 10, + STATE(7793), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7709), 11, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -394810,15 +370146,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [189450] = 4, - ACTIONS(3), 1, + [185403] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2350), 1, - sym__space, - STATE(4956), 1, - sym_comment, - ACTIONS(2348), 13, + ACTIONS(2971), 1, sym__newline, + ACTIONS(7713), 1, + anon_sym_catch, + STATE(690), 1, + aux_sym_shebang_repeat1, + STATE(4694), 1, + sym_comment, + ACTIONS(1900), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -394830,36 +370169,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [189475] = 4, + [185432] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2261), 1, - sym__space, - STATE(4957), 1, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym__unquoted_in_list_token4, + STATE(4695), 1, sym_comment, - ACTIONS(2259), 13, + ACTIONS(2297), 5, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [189500] = 4, + anon_sym_COMMA, + ACTIONS(2293), 7, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH, + [185461] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7355), 1, + ACTIONS(2459), 1, sym__space, - STATE(4958), 1, + STATE(4696), 1, sym_comment, - ACTIONS(7353), 13, + ACTIONS(2457), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394873,40 +370213,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [189525] = 4, - ACTIONS(247), 1, + [185486] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4959), 1, + ACTIONS(2239), 1, + anon_sym_LPAREN2, + ACTIONS(2241), 1, + aux_sym__unquoted_in_list_token4, + STATE(4697), 1, sym_comment, - ACTIONS(1519), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1521), 12, - anon_sym_in, - anon_sym_QMARK2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [189550] = 6, + ACTIONS(1078), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1076), 7, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH, + [185515] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7944), 1, + ACTIONS(7578), 1, + sym__newline, + ACTIONS(7580), 1, sym__space, - ACTIONS(8000), 1, - ts_builtin_sym_end, - STATE(4876), 1, - aux_sym_command_repeat1, - STATE(4960), 1, + STATE(4692), 1, + aux_sym__command_parenthesized_repeat1, + STATE(4698), 1, sym_comment, - ACTIONS(7790), 11, - sym__newline, + ACTIONS(7716), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -394917,15 +370258,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [189579] = 4, + anon_sym_RPAREN, + [185544] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4961), 1, + STATE(4699), 1, sym_comment, - ACTIONS(1481), 2, + ACTIONS(1497), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(1483), 12, + ACTIONS(1499), 12, anon_sym_in, anon_sym_QMARK2, anon_sym_not_DASHin, @@ -394938,14 +370280,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_DOT, - [189604] = 4, + [185569] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2381), 1, - sym__space, - STATE(4962), 1, + ACTIONS(6930), 1, + aux_sym_unquoted_token2, + STATE(4700), 1, sym_comment, - ACTIONS(2379), 13, + ACTIONS(1587), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1575), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394957,16 +370302,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [189629] = 4, + [185596] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2439), 1, + ACTIONS(2430), 1, sym__space, - STATE(4963), 1, + STATE(4701), 1, sym_comment, - ACTIONS(2437), 13, + ACTIONS(2428), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394980,18 +370323,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [189654] = 6, - ACTIONS(3), 1, + [185621] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7967), 1, + ACTIONS(7718), 1, sym__newline, - ACTIONS(7969), 1, - sym__space, - STATE(4881), 1, - aux_sym__command_parenthesized_repeat1, - STATE(4964), 1, + ACTIONS(7723), 1, + anon_sym_else, + STATE(4613), 1, + aux_sym_shebang_repeat1, + STATE(4702), 1, sym_comment, - ACTIONS(8002), 11, + ACTIONS(7721), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -395003,14 +370346,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [189683] = 3, - ACTIONS(3), 1, + [185650] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4965), 1, + ACTIONS(7589), 1, + anon_sym_AT, + ACTIONS(7727), 1, + anon_sym_DASH, + STATE(4703), 1, + sym_comment, + STATE(4954), 1, + sym_param_cmd, + ACTIONS(7725), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [185679] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1040), 1, + anon_sym_DASH, + STATE(4704), 1, sym_comment, - ACTIONS(5220), 14, + ACTIONS(1042), 13, + anon_sym_EQ, + sym_identifier, sym__newline, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + anon_sym_DOT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [185704] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2434), 1, sym__space, + STATE(4705), 1, + sym_comment, + ACTIONS(2432), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -395021,20 +370409,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_record_entry_token1, - [189706] = 6, + [185729] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3009), 1, + ACTIONS(7729), 1, sym__newline, - ACTIONS(8004), 1, + ACTIONS(7734), 1, anon_sym_else, - STATE(728), 1, + STATE(4616), 1, aux_sym_shebang_repeat1, - STATE(4966), 1, + STATE(4706), 1, sym_comment, - ACTIONS(1757), 11, + ACTIONS(7732), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -395046,49 +370434,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [189735] = 14, + [185758] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4060), 1, + ACTIONS(3882), 1, anon_sym_DOLLAR, - ACTIONS(7824), 1, + ACTIONS(7736), 1, sym__newline, - ACTIONS(7826), 1, + ACTIONS(7738), 1, sym__space, - ACTIONS(7828), 1, + ACTIONS(7740), 1, anon_sym_DASH_DASH, - ACTIONS(7830), 1, + ACTIONS(7742), 1, anon_sym_DASH, - ACTIONS(7832), 1, + ACTIONS(7744), 1, aux_sym_ctrl_match_token1, - STATE(1814), 1, - sym_val_closure, - STATE(1850), 1, + STATE(1608), 1, sym_block, - STATE(4967), 1, + STATE(1609), 1, + sym_val_closure, + STATE(4707), 1, sym_comment, - STATE(5840), 1, + STATE(5526), 1, aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7712), 1, + STATE(7445), 1, sym__flag, - STATE(672), 2, + STATE(667), 2, sym__blosure, sym_val_variable, - STATE(4979), 2, + STATE(4627), 2, sym_short_flag, sym_long_flag, - [189780] = 6, - ACTIONS(247), 1, + [185803] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3009), 1, - sym__newline, - ACTIONS(8007), 1, - anon_sym_else, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(4968), 1, + STATE(4708), 1, sym_comment, - ACTIONS(1757), 11, + ACTIONS(4924), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(4926), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -395099,63 +370486,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [189809] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4969), 1, - sym_comment, - ACTIONS(1953), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(1955), 12, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [189834] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8010), 1, - anon_sym_DOT, - ACTIONS(8012), 1, - aux_sym__immediate_decimal_token2, - STATE(4970), 1, - sym_comment, - ACTIONS(1473), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1475), 9, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [189863] = 6, + [185828] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7967), 1, - sym__newline, - ACTIONS(7969), 1, + ACTIONS(7595), 1, sym__space, - STATE(4881), 1, - aux_sym__command_parenthesized_repeat1, - STATE(4971), 1, + ACTIONS(7746), 1, + ts_builtin_sym_end, + STATE(4601), 1, + aux_sym_command_repeat1, + STATE(4709), 1, sym_comment, - ACTIONS(8014), 11, + ACTIONS(7441), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -395166,15 +370509,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [189892] = 4, + [185857] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1780), 1, + ACTIONS(2394), 1, sym__space, - STATE(4972), 1, + STATE(4710), 1, sym_comment, - ACTIONS(1778), 13, + ACTIONS(2392), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395188,14 +370530,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [189917] = 4, + [185882] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1841), 1, + ACTIONS(7595), 1, sym__space, - STATE(4973), 1, + ACTIONS(7748), 1, + ts_builtin_sym_end, + STATE(4648), 1, + aux_sym_command_repeat1, + STATE(4711), 1, sym_comment, - ACTIONS(1839), 13, + ACTIONS(7468), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395207,16 +370553,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [189942] = 3, - ACTIONS(3), 1, + [185911] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4974), 1, - sym_comment, - ACTIONS(5204), 14, + ACTIONS(7750), 1, sym__newline, - sym__space, + ACTIONS(7755), 1, + anon_sym_else, + STATE(4706), 1, + aux_sym_shebang_repeat1, + STATE(4712), 1, + sym_comment, + ACTIONS(7753), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -395227,20 +370575,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - aux_sym_record_entry_token1, - [189965] = 6, - ACTIONS(247), 1, + anon_sym_RPAREN, + [185940] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8016), 1, - sym__newline, - ACTIONS(8021), 1, - anon_sym_catch, - STATE(4886), 1, - aux_sym_shebang_repeat1, - STATE(4975), 1, + ACTIONS(2041), 1, + sym__space, + STATE(4713), 1, sym_comment, - ACTIONS(8019), 11, + ACTIONS(2035), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -395252,14 +370596,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [189994] = 4, + anon_sym_RBRACE, + [185965] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2427), 1, + ACTIONS(2398), 1, sym__space, - STATE(4976), 1, + STATE(4714), 1, sym_comment, - ACTIONS(2425), 13, + ACTIONS(2396), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395273,18 +370618,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [190019] = 6, - ACTIONS(247), 1, + [185990] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8023), 1, - sym__newline, - ACTIONS(8028), 1, - anon_sym_else, - STATE(4869), 1, - aux_sym_shebang_repeat1, - STATE(4977), 1, + ACTIONS(2049), 1, + sym__space, + STATE(4715), 1, sym_comment, - ACTIONS(8026), 11, + ACTIONS(2043), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -395296,18 +370638,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [190048] = 6, - ACTIONS(247), 1, + anon_sym_RBRACE, + [186015] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3009), 1, - sym__newline, - ACTIONS(8030), 1, - anon_sym_else, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(4978), 1, + ACTIONS(7759), 1, + sym__space, + STATE(4716), 1, sym_comment, - ACTIONS(1757), 11, + ACTIONS(7757), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -395319,14 +370659,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [190077] = 4, + anon_sym_RBRACE, + [186040] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5151), 1, + ACTIONS(5042), 1, sym__space, - STATE(4979), 1, + STATE(4717), 1, sym_comment, - ACTIONS(5153), 13, + ACTIONS(5044), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395340,15 +370681,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [190102] = 4, - ACTIONS(3), 1, + [186065] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2305), 1, - sym__space, - STATE(4980), 1, - sym_comment, - ACTIONS(2303), 13, + ACTIONS(7761), 1, sym__newline, + ACTIONS(7766), 1, + anon_sym_else, + STATE(4652), 1, + aux_sym_shebang_repeat1, + STATE(4718), 1, + sym_comment, + ACTIONS(7764), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -395360,15 +370704,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [190127] = 4, + [186094] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2334), 1, + ACTIONS(2057), 1, sym__space, - STATE(4981), 1, + STATE(4719), 1, sym_comment, - ACTIONS(2332), 13, + ACTIONS(2051), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395382,18 +370725,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [190152] = 6, + [186119] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7944), 1, + ACTIONS(1845), 1, sym__space, - ACTIONS(8033), 1, - ts_builtin_sym_end, - STATE(4960), 1, - aux_sym_command_repeat1, - STATE(4982), 1, + STATE(4720), 1, sym_comment, - ACTIONS(7779), 11, + ACTIONS(1843), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395405,15 +370744,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [190181] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [186144] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1941), 1, - sym__space, - STATE(4983), 1, + STATE(4721), 1, sym_comment, - ACTIONS(1935), 13, + ACTIONS(5079), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -395424,37 +370764,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_RBRACE, - [190206] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4984), 1, - sym_comment, - ACTIONS(1943), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(1945), 12, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [190231] = 4, + aux_sym_record_entry_token1, + [186167] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2346), 1, + ACTIONS(2402), 1, sym__space, - STATE(4985), 1, + STATE(4722), 1, sym_comment, - ACTIONS(2344), 13, + ACTIONS(2400), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395468,18 +370787,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [190256] = 6, + [186192] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8035), 1, + ACTIONS(7768), 1, sym__newline, - ACTIONS(8040), 1, + ACTIONS(7773), 1, anon_sym_else, - STATE(4978), 1, + STATE(4606), 1, aux_sym_shebang_repeat1, - STATE(4986), 1, + STATE(4723), 1, sym_comment, - ACTIONS(8038), 11, + ACTIONS(7771), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -395491,14 +370810,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [190285] = 4, + [186221] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2338), 1, + ACTIONS(2438), 1, sym__space, - STATE(4987), 1, + STATE(4724), 1, sym_comment, - ACTIONS(2336), 13, + ACTIONS(2436), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395512,14 +370831,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [190310] = 4, + [186246] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1857), 1, + ACTIONS(2406), 1, sym__space, - STATE(4988), 1, + STATE(4725), 1, sym_comment, - ACTIONS(1855), 13, + ACTIONS(2404), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395533,17 +370852,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [190335] = 5, + [186271] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8042), 1, - anon_sym_EQ2, - STATE(4989), 1, - sym_comment, - ACTIONS(5039), 2, - ts_builtin_sym_end, + ACTIONS(1861), 1, sym__space, - ACTIONS(5041), 11, + STATE(4726), 1, + sym_comment, + ACTIONS(1859), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395555,14 +370871,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [190362] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [186296] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2385), 1, + ACTIONS(1869), 1, sym__space, - STATE(4990), 1, + STATE(4727), 1, sym_comment, - ACTIONS(2383), 13, + ACTIONS(1867), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395576,15 +370894,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [190387] = 4, - ACTIONS(3), 1, + [186321] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5137), 1, - sym__space, - STATE(4991), 1, - sym_comment, - ACTIONS(5139), 13, + ACTIONS(2971), 1, sym__newline, + ACTIONS(7775), 1, + anon_sym_catch, + STATE(690), 1, + aux_sym_shebang_repeat1, + STATE(4728), 1, + sym_comment, + ACTIONS(1900), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -395596,15 +370917,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [190412] = 4, + [186350] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5141), 1, + ACTIONS(1873), 1, sym__space, - STATE(4992), 1, + STATE(4729), 1, sym_comment, - ACTIONS(5143), 13, + ACTIONS(1871), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395618,14 +370938,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [190437] = 4, - ACTIONS(3), 1, + [186375] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2328), 1, - sym__space, - STATE(4993), 1, + STATE(4730), 1, sym_comment, - ACTIONS(2326), 13, + ACTIONS(7550), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395637,16 +370956,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [190462] = 4, - ACTIONS(3), 1, + anon_sym_else, + anon_sym_catch, + [186398] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1008), 1, - sym__space, - STATE(4994), 1, + ACTIONS(7780), 1, + anon_sym_catch, + STATE(4731), 1, sym_comment, - ACTIONS(1006), 13, + ACTIONS(7778), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395660,15 +370979,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [190487] = 4, + [186423] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(4995), 1, - sym_comment, - ACTIONS(1982), 2, + ACTIONS(5458), 1, + anon_sym_LPAREN2, + ACTIONS(7784), 1, anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(1984), 12, + STATE(4732), 1, + sym_comment, + STATE(7793), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7782), 11, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -395679,16 +371002,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + [186452] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7786), 1, + aux_sym__immediate_decimal_token2, + STATE(4733), 1, + sym_comment, + ACTIONS(1565), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1567), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [190512] = 4, + sym_filesize_unit, + sym_duration_unit, + [186479] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2403), 1, + ACTIONS(2410), 1, sym__space, - STATE(4996), 1, + STATE(4734), 1, + sym_comment, + ACTIONS(2408), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [186504] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5077), 1, + sym__space, + STATE(4735), 1, sym_comment, - ACTIONS(2401), 13, + ACTIONS(5079), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395702,37 +371066,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [190537] = 6, + [186529] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8044), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8046), 1, + ACTIONS(7788), 1, + anon_sym_DOT, + ACTIONS(7790), 1, aux_sym__immediate_decimal_token2, - STATE(4997), 1, + STATE(4736), 1, sym_comment, - ACTIONS(1569), 3, - sym_identifier, + ACTIONS(1497), 3, anon_sym_DASH, - aux_sym__unquoted_in_list_token2, - ACTIONS(1571), 9, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1499), 9, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_SEMI, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [190566] = 4, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [186558] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2072), 1, + ACTIONS(1892), 1, sym__space, - STATE(4998), 1, + STATE(4737), 1, sym_comment, - ACTIONS(2066), 13, + ACTIONS(1890), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395746,14 +371110,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [190591] = 4, + [186583] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(5046), 1, sym__space, - STATE(4999), 1, + STATE(4738), 1, sym_comment, - ACTIONS(1972), 13, + ACTIONS(5048), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395767,14 +371131,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [190616] = 4, + [186608] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2361), 1, - sym__space, - STATE(5000), 1, + ACTIONS(7792), 1, + anon_sym_EQ2, + STATE(4739), 1, sym_comment, - ACTIONS(2359), 13, + ACTIONS(4904), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4906), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395786,16 +371153,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [190641] = 4, + [186635] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2273), 1, + ACTIONS(7794), 1, + ts_builtin_sym_end, + ACTIONS(7796), 1, sym__space, - STATE(5001), 1, + STATE(4740), 2, sym_comment, - ACTIONS(2271), 13, + aux_sym_command_repeat1, + ACTIONS(7406), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395807,16 +371175,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [190666] = 4, + [186662] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1966), 1, + ACTIONS(2414), 1, sym__space, - STATE(5002), 1, + STATE(4741), 1, sym_comment, - ACTIONS(1960), 13, + ACTIONS(2412), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395830,13 +371196,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [190691] = 3, + [186687] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(5003), 1, + ACTIONS(7799), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7801), 1, + aux_sym__immediate_decimal_token2, + STATE(4742), 1, sym_comment, - ACTIONS(7781), 14, + ACTIONS(1517), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1519), 9, ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [186716] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5016), 1, + sym__space, + STATE(4743), 1, + sym_comment, + ACTIONS(5018), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395848,20 +371238,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_else, - anon_sym_catch, - [190714] = 6, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [186741] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8048), 1, - sym__newline, - ACTIONS(8053), 1, - anon_sym_else, - STATE(4986), 1, - aux_sym_shebang_repeat1, - STATE(5004), 1, + ACTIONS(2418), 1, + sym__space, + STATE(4744), 1, sym_comment, - ACTIONS(8051), 11, + ACTIONS(2416), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -395873,14 +371260,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [190743] = 3, + anon_sym_RBRACE, + [186766] = 14, ACTIONS(3), 1, anon_sym_POUND, - STATE(5005), 1, - sym_comment, - ACTIONS(5212), 14, + ACTIONS(3882), 1, + anon_sym_DOLLAR, + ACTIONS(7736), 1, sym__newline, + ACTIONS(7738), 1, + sym__space, + ACTIONS(7740), 1, + anon_sym_DASH_DASH, + ACTIONS(7742), 1, + anon_sym_DASH, + ACTIONS(7744), 1, + aux_sym_ctrl_match_token1, + STATE(1608), 1, + sym_block, + STATE(1609), 1, + sym_val_closure, + STATE(4745), 1, + sym_comment, + STATE(5526), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(7445), 1, + sym__flag, + STATE(673), 2, + sym__blosure, + sym_val_variable, + STATE(4627), 2, + sym_short_flag, + sym_long_flag, + [186811] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5020), 1, sym__space, + STATE(4746), 1, + sym_comment, + ACTIONS(5022), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -395891,20 +371311,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_record_entry_token1, - [190766] = 6, - ACTIONS(247), 1, + [186836] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8055), 1, - sym__newline, - ACTIONS(8060), 1, - anon_sym_else, - STATE(4882), 1, - aux_sym_shebang_repeat1, - STATE(5006), 1, + ACTIONS(1896), 1, + sym__space, + STATE(4747), 1, sym_comment, - ACTIONS(8058), 11, + ACTIONS(1894), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -395916,83 +371333,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [190795] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1935), 1, - anon_sym_DASH, - ACTIONS(8062), 1, - anon_sym_DOT_DOT2, - STATE(5007), 1, - sym_comment, - ACTIONS(8064), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1941), 10, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [190824] = 6, - ACTIONS(247), 1, + anon_sym_RBRACE, + [186861] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2066), 1, - anon_sym_DASH, - ACTIONS(8066), 1, - anon_sym_DOT_DOT2, - STATE(5008), 1, + ACTIONS(2323), 1, + sym__space, + STATE(4748), 1, sym_comment, - ACTIONS(8068), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2072), 10, - sym_identifier, + ACTIONS(2321), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [190853] = 6, - ACTIONS(247), 1, + anon_sym_RBRACE, + [186886] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8070), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8072), 1, - aux_sym__immediate_decimal_token2, - STATE(5009), 1, + ACTIONS(7803), 1, + anon_sym_EQ2, + STATE(4749), 1, sym_comment, - ACTIONS(1481), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1483), 9, + ACTIONS(4914), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(4916), 11, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [190882] = 4, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [186913] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5158), 1, + ACTIONS(2467), 1, sym__space, - STATE(5010), 1, + STATE(4750), 1, sym_comment, - ACTIONS(5160), 13, + ACTIONS(2465), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396006,14 +371398,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [190907] = 4, + [186938] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5162), 1, + ACTIONS(2471), 1, sym__space, - STATE(5011), 1, + STATE(4751), 1, sym_comment, - ACTIONS(5164), 13, + ACTIONS(2469), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396027,60 +371419,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [190932] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1972), 1, - anon_sym_DASH, - ACTIONS(8074), 1, - anon_sym_DOT_DOT2, - STATE(5012), 1, - sym_comment, - ACTIONS(8076), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1978), 10, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [190961] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1960), 1, - anon_sym_DASH, - ACTIONS(8078), 1, - anon_sym_DOT_DOT2, - STATE(5013), 1, - sym_comment, - ACTIONS(8080), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 10, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [190990] = 4, + [186963] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2407), 1, + ACTIONS(7807), 1, sym__space, - STATE(5014), 1, + STATE(4752), 1, sym_comment, - ACTIONS(2405), 13, + ACTIONS(7805), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396094,14 +371440,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [191015] = 4, + [186988] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2411), 1, + ACTIONS(2475), 1, sym__space, - STATE(5015), 1, + STATE(4753), 1, sym_comment, - ACTIONS(2409), 13, + ACTIONS(2473), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396115,14 +371461,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [191040] = 4, + [187013] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2415), 1, + ACTIONS(1947), 1, sym__space, - STATE(5016), 1, + STATE(4754), 1, sym_comment, - ACTIONS(2413), 13, + ACTIONS(1945), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396136,14 +371482,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [191065] = 4, + [187038] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2354), 1, + ACTIONS(5034), 1, sym__space, - STATE(5017), 1, + STATE(4755), 1, sym_comment, - ACTIONS(2352), 13, + ACTIONS(5036), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396157,14 +371503,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [191090] = 4, - ACTIONS(3), 1, + [187063] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8084), 1, - sym__space, - STATE(5018), 1, + ACTIONS(7811), 1, + anon_sym_else, + STATE(4756), 1, sym_comment, - ACTIONS(8082), 13, + ACTIONS(7809), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396178,15 +371524,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [191115] = 4, + [187088] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5019), 1, - sym_comment, - ACTIONS(1941), 2, - ts_builtin_sym_end, + ACTIONS(2382), 1, sym__space, - ACTIONS(1935), 11, + STATE(4757), 1, + sym_comment, + ACTIONS(2380), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396198,46 +371543,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191139] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1413), 1, - anon_sym_RBRACK, - ACTIONS(1427), 1, - sym__entry_separator, - ACTIONS(1429), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2921), 1, - anon_sym_DOLLAR, - ACTIONS(8086), 1, - anon_sym_LPAREN2, - ACTIONS(8088), 1, - anon_sym_DOT, - ACTIONS(8090), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8092), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8094), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8096), 1, - aux_sym__immediate_decimal_token5, - STATE(5020), 1, - sym_comment, - STATE(5853), 1, - sym__immediate_decimal, - STATE(6192), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [191183] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [187113] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2235), 1, + ACTIONS(7815), 1, anon_sym_DASH, - ACTIONS(8098), 1, - anon_sym_LBRACK2, - STATE(5021), 1, + STATE(4758), 1, sym_comment, - ACTIONS(2239), 11, + ACTIONS(7813), 12, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -396246,19 +371562,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [191209] = 4, - ACTIONS(3), 1, + [187137] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5022), 1, - sym_comment, - ACTIONS(7898), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7896), 11, + ACTIONS(3213), 1, + aux_sym_record_entry_token1, + ACTIONS(7817), 1, sym__newline, + STATE(4759), 1, + sym_comment, + ACTIONS(7819), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -396269,15 +371585,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191233] = 4, + anon_sym_RBRACE, + [187163] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5023), 1, + STATE(4760), 1, sym_comment, - ACTIONS(2313), 2, + ACTIONS(2445), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2311), 11, + ACTIONS(2443), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396289,60 +371606,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191257] = 9, + [187187] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, + ACTIONS(7823), 1, + anon_sym_DASH, + STATE(4761), 1, + sym_comment, + ACTIONS(7821), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(7419), 1, + anon_sym_PIPE, anon_sym_COLON, - ACTIONS(8102), 1, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(8104), 1, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [187211] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5951), 1, anon_sym_DASH, - STATE(5024), 1, + STATE(4762), 1, sym_comment, - STATE(5435), 1, - sym_param_type, - STATE(5440), 1, - aux_sym_shebang_repeat1, - ACTIONS(8100), 7, + ACTIONS(5953), 12, + anon_sym_EQ, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [191291] = 4, + anon_sym_LPAREN2, + [187235] = 14, ACTIONS(3), 1, anon_sym_POUND, - STATE(5025), 1, + ACTIONS(1479), 1, + anon_sym_RBRACE, + ACTIONS(1493), 1, + sym__entry_separator, + ACTIONS(1495), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(2986), 1, + anon_sym_DOLLAR, + ACTIONS(7825), 1, + anon_sym_LPAREN2, + ACTIONS(7827), 1, + anon_sym_DOT, + ACTIONS(7829), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7831), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7833), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7835), 1, + aux_sym__immediate_decimal_token5, + STATE(4763), 1, sym_comment, - ACTIONS(7921), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7919), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [191315] = 4, + STATE(5516), 1, + sym__immediate_decimal, + STATE(5792), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [187279] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5026), 1, + STATE(4764), 1, sym_comment, - ACTIONS(7542), 2, + ACTIONS(2414), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7540), 11, + ACTIONS(2412), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396354,15 +371696,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191339] = 4, - ACTIONS(3), 1, + [187303] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5027), 1, + STATE(4765), 1, sym_comment, - ACTIONS(1780), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1778), 11, + ACTIONS(7837), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396374,39 +371713,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191363] = 9, + anon_sym_RPAREN, + anon_sym_RBRACE, + [187325] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(7419), 1, - anon_sym_COLON, - ACTIONS(8108), 1, - anon_sym_COMMA, - ACTIONS(8110), 1, - anon_sym_DASH, - STATE(5028), 1, + ACTIONS(1495), 1, + aux_sym_unquoted_token2, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(7839), 1, + anon_sym_DOLLAR, + ACTIONS(7843), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7845), 1, + aux_sym__immediate_decimal_token5, + STATE(4766), 1, sym_comment, - STATE(5416), 1, - aux_sym_shebang_repeat1, - STATE(5483), 1, - sym_param_type, - ACTIONS(8106), 7, + STATE(6311), 1, + sym__immediate_decimal, + ACTIONS(7841), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3369), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1493), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [187363] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4767), 1, + sym_comment, + ACTIONS(1056), 2, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1058), 11, + anon_sym_EQ, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [191397] = 4, + [187387] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8114), 1, - sym__space, - STATE(5029), 1, + STATE(4768), 1, sym_comment, - ACTIONS(8112), 12, + ACTIONS(2370), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2368), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396418,68 +371782,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [191421] = 15, + [187411] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(7651), 1, + ACTIONS(1879), 1, + anon_sym_DASH, + STATE(4769), 1, + sym_comment, + ACTIONS(1881), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(7653), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(7655), 1, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7657), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7659), 1, anon_sym_DASH_DASH, - ACTIONS(7661), 1, + aux_sym_ctrl_match_token1, + [187435] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2368), 1, anon_sym_DASH, - STATE(4455), 1, - sym_param_long_flag, - STATE(4800), 1, - sym__param_name, - STATE(5030), 1, + STATE(4770), 1, sym_comment, - STATE(5220), 1, - sym_param_short_flag, - STATE(5253), 1, - sym_param_opt, - STATE(5295), 1, - sym_param_rest, - STATE(5358), 1, - aux_sym_shebang_repeat1, - [191467] = 5, - ACTIONS(247), 1, + ACTIONS(2370), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [187459] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8116), 1, - aux_sym__immediate_decimal_token2, - STATE(5031), 1, + ACTIONS(1515), 1, + sym__entry_separator, + ACTIONS(2986), 1, + anon_sym_DOLLAR, + ACTIONS(5367), 1, + anon_sym_DOT, + ACTIONS(7825), 1, + anon_sym_LPAREN2, + ACTIONS(7847), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7849), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7851), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7853), 1, + aux_sym__immediate_decimal_token5, + STATE(4771), 1, sym_comment, - ACTIONS(1519), 3, + STATE(5796), 1, + sym__immediate_decimal, + ACTIONS(1505), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(5687), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [187501] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2412), 1, anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1521), 9, - ts_builtin_sym_end, + STATE(4772), 1, + sym_comment, + ACTIONS(2414), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [191493] = 4, - ACTIONS(3), 1, + aux_sym_ctrl_match_token1, + [187525] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5032), 1, + STATE(4773), 1, sym_comment, - ACTIONS(1841), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1839), 11, + ACTIONS(7855), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396491,35 +371888,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191517] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5033), 1, - sym_comment, - ACTIONS(2133), 6, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LPAREN2, - ACTIONS(2131), 7, - sym_identifier, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DASH, - aux_sym__unquoted_in_list_token4, - [191541] = 4, + anon_sym_RBRACE, + [187547] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5034), 1, + STATE(4774), 1, sym_comment, - ACTIONS(1749), 2, + ACTIONS(1923), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1747), 11, + ACTIONS(1921), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396531,15 +371910,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191565] = 4, + [187571] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5035), 1, + STATE(4775), 1, sym_comment, - ACTIONS(1798), 2, + ACTIONS(2366), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1796), 11, + ACTIONS(2364), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396551,15 +371930,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191589] = 4, + [187595] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5036), 1, + STATE(4776), 1, sym_comment, - ACTIONS(7925), 2, + ACTIONS(2455), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7923), 11, + ACTIONS(2453), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396571,111 +371950,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191613] = 11, + [187619] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1457), 1, - aux_sym_unquoted_token2, - ACTIONS(6262), 1, - anon_sym_LPAREN2, - ACTIONS(8118), 1, - anon_sym_DOLLAR, - ACTIONS(8122), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8124), 1, - aux_sym__immediate_decimal_token5, - STATE(5037), 1, - sym_comment, - STATE(6881), 1, - sym__immediate_decimal, - ACTIONS(8120), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3590), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1455), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [191651] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1429), 1, - aux_sym_unquoted_token2, - ACTIONS(6262), 1, - anon_sym_LPAREN2, - ACTIONS(8118), 1, - anon_sym_DOLLAR, - ACTIONS(8122), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8124), 1, - aux_sym__immediate_decimal_token5, - STATE(5038), 1, - sym_comment, - STATE(6863), 1, - sym__immediate_decimal, - ACTIONS(8120), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3591), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1427), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [191689] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1711), 1, - anon_sym_LPAREN2, - ACTIONS(1719), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2085), 1, - anon_sym_DASH, - STATE(5039), 1, - sym_comment, - ACTIONS(2087), 10, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [191717] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8128), 1, + ACTIONS(2416), 1, anon_sym_DASH, - STATE(5040), 1, + STATE(4777), 1, sym_comment, - ACTIONS(8126), 12, + ACTIONS(2418), 12, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [191741] = 4, + aux_sym_ctrl_match_token1, + [187643] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5041), 1, + STATE(4778), 1, sym_comment, - ACTIONS(1881), 2, + ACTIONS(2366), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1879), 11, + ACTIONS(2364), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396687,12 +371990,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191765] = 3, + [187667] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5042), 1, + STATE(4779), 1, sym_comment, - ACTIONS(8130), 13, + ACTIONS(7819), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396706,18 +372009,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [191787] = 6, + [187689] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1709), 1, + STATE(4780), 1, + sym_comment, + ACTIONS(7857), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [187711] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2364), 1, anon_sym_DASH, - ACTIONS(1711), 1, - anon_sym_LPAREN2, - ACTIONS(1719), 1, - aux_sym__unquoted_in_list_token2, - STATE(5043), 1, + STATE(4781), 1, sym_comment, - ACTIONS(1717), 10, + ACTIONS(2366), 12, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -396728,14 +372047,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [191815] = 4, - ACTIONS(247), 1, + aux_sym_ctrl_match_token1, + [187735] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5044), 1, + STATE(4782), 1, sym_comment, - STATE(5100), 1, - aux_sym_shebang_repeat1, - ACTIONS(8132), 12, + ACTIONS(1881), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1879), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396747,41 +372068,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [191839] = 9, + [187759] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(8136), 1, - anon_sym_EQ, - ACTIONS(8138), 1, - anon_sym_COMMA, - ACTIONS(8140), 1, + ACTIONS(7861), 1, anon_sym_DASH, - STATE(5045), 1, - sym_comment, - STATE(5392), 1, - aux_sym_shebang_repeat1, - STATE(5408), 1, - sym_param_value, - ACTIONS(8134), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [191873] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5046), 1, + STATE(4783), 1, sym_comment, - ACTIONS(1589), 2, - anon_sym_DASH, - aux_sym__unquoted_in_list_token2, - ACTIONS(1591), 11, + ACTIONS(7859), 12, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -396790,93 +372085,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [191897] = 9, + [187783] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(7419), 1, - anon_sym_COLON, - ACTIONS(8140), 1, + ACTIONS(1076), 1, anon_sym_DASH, - ACTIONS(8142), 1, - anon_sym_COMMA, - STATE(5047), 1, + STATE(4784), 1, sym_comment, - STATE(5447), 1, - aux_sym_shebang_repeat1, - STATE(5482), 1, - sym_param_type, - ACTIONS(8134), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [191931] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(8136), 1, + ACTIONS(1078), 12, anon_sym_EQ, - ACTIONS(8146), 1, - anon_sym_COMMA, - ACTIONS(8148), 1, - anon_sym_DASH, - STATE(5048), 1, - sym_comment, - STATE(5199), 1, - aux_sym_shebang_repeat1, - STATE(5471), 1, - sym_param_value, - ACTIONS(8144), 7, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [191965] = 9, + aux_sym_ctrl_match_token1, + [187807] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(7419), 1, - anon_sym_COLON, - ACTIONS(8146), 1, - anon_sym_COMMA, - ACTIONS(8148), 1, + ACTIONS(7865), 1, anon_sym_DASH, - STATE(5049), 1, + STATE(4785), 1, sym_comment, - STATE(5471), 1, - sym_param_type, - STATE(5479), 1, - aux_sym_shebang_repeat1, - ACTIONS(8144), 7, + ACTIONS(7863), 12, + anon_sym_EQ, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [191999] = 4, + [187831] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5050), 1, - sym_comment, - ACTIONS(1569), 2, + ACTIONS(7869), 1, anon_sym_DASH, - aux_sym__unquoted_in_list_token2, - ACTIONS(1571), 11, + STATE(4786), 1, + sym_comment, + ACTIONS(7867), 12, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -396885,49 +372145,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [192023] = 15, + [187855] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(7651), 1, - sym_identifier, - ACTIONS(7655), 1, - anon_sym_DOLLAR, - ACTIONS(7657), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7659), 1, - anon_sym_DASH_DASH, - ACTIONS(7661), 1, - anon_sym_DASH, - ACTIONS(7729), 1, - anon_sym_RBRACK, - STATE(4455), 1, - sym_param_long_flag, - STATE(4800), 1, - sym__param_name, - STATE(5051), 1, - sym_comment, - STATE(5220), 1, - sym_param_short_flag, - STATE(5253), 1, - sym_param_opt, - STATE(5295), 1, - sym_param_rest, - STATE(5358), 1, + STATE(690), 1, aux_sym_shebang_repeat1, - [192069] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5052), 1, + STATE(4787), 1, sym_comment, - ACTIONS(2385), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2383), 11, + ACTIONS(7871), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396939,14 +372167,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192093] = 4, - ACTIONS(247), 1, + anon_sym_RPAREN, + [187879] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(5053), 1, + STATE(4788), 1, sym_comment, - ACTIONS(8150), 12, + ACTIONS(2374), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2372), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396958,55 +372188,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [192117] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5054), 1, - sym_comment, - ACTIONS(1473), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1475), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [192141] = 6, + [187903] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2081), 1, - anon_sym_LPAREN2, - ACTIONS(2083), 1, - aux_sym__unquoted_in_list_token4, - STATE(5055), 1, - sym_comment, - ACTIONS(1008), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1006), 6, - sym_identifier, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DASH, - [192169] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5056), 1, + STATE(4789), 1, sym_comment, - ACTIONS(8152), 13, + ACTIONS(2418), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2416), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397018,17 +372208,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [192191] = 4, + [187927] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5057), 1, + STATE(4790), 1, sym_comment, - ACTIONS(2328), 2, + ACTIONS(2378), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2326), 11, + ACTIONS(2376), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397040,15 +372228,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192215] = 4, + [187951] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5058), 1, - sym_comment, - ACTIONS(1648), 2, + ACTIONS(1894), 1, anon_sym_DASH, - aux_sym__unquoted_in_list_token2, - ACTIONS(1650), 11, + STATE(4791), 1, + sym_comment, + ACTIONS(1896), 12, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -397059,38 +372247,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [192239] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2091), 1, - anon_sym_LPAREN2, - ACTIONS(2095), 1, - aux_sym__unquoted_in_list_token4, - STATE(5059), 1, - sym_comment, - ACTIONS(2093), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2089), 6, - sym_identifier, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DASH, - [192267] = 4, + aux_sym_ctrl_match_token1, + [187975] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5060), 1, - sym_comment, - ACTIONS(1721), 2, + ACTIONS(7576), 1, anon_sym_DASH, - aux_sym__unquoted_in_list_token2, - ACTIONS(1723), 11, + STATE(4792), 1, + sym_comment, + ACTIONS(7572), 12, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -397099,18 +372265,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [192291] = 4, - ACTIONS(3), 1, + [187999] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5061), 1, + STATE(4793), 1, sym_comment, - ACTIONS(2338), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2336), 11, + ACTIONS(7873), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397122,35 +372285,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192315] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5062), 1, - sym_comment, - ACTIONS(1481), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1483), 10, - sym__newline, - anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [192339] = 4, + [188021] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5063), 1, + STATE(4794), 1, sym_comment, - ACTIONS(2305), 2, + ACTIONS(1861), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2303), 11, + ACTIONS(1859), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397162,31 +372307,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192363] = 3, + [188045] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5064), 1, + STATE(4795), 1, sym_comment, - ACTIONS(6849), 13, + ACTIONS(1565), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1567), 10, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_RBRACE, - [192385] = 3, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [188069] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5065), 1, + STATE(4796), 1, sym_comment, - ACTIONS(8084), 13, + ACTIONS(7875), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397199,87 +372345,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [192407] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5066), 1, - sym_comment, - ACTIONS(1837), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1835), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [192431] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5067), 1, - sym_comment, - ACTIONS(5151), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5153), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [192455] = 15, + anon_sym_RBRACE, + [188091] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(7651), 1, + ACTIONS(1945), 1, + anon_sym_DASH, + STATE(4797), 1, + sym_comment, + ACTIONS(1947), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(7655), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7657), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7659), 1, anon_sym_DASH_DASH, - ACTIONS(7661), 1, + aux_sym_ctrl_match_token1, + [188115] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1961), 1, anon_sym_DASH, - ACTIONS(8154), 1, - anon_sym_PIPE, - STATE(4455), 1, - sym_param_long_flag, - STATE(4800), 1, - sym__param_name, - STATE(5068), 1, + STATE(4798), 1, sym_comment, - STATE(5220), 1, - sym_param_short_flag, - STATE(5253), 1, - sym_param_opt, - STATE(5295), 1, - sym_param_rest, - STATE(5358), 1, - aux_sym_shebang_repeat1, - [192501] = 4, + ACTIONS(1963), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [188139] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8156), 1, - anon_sym_catch, - STATE(5069), 1, + STATE(4799), 1, sym_comment, - ACTIONS(7844), 12, - ts_builtin_sym_end, + ACTIONS(7877), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397291,15 +372403,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192525] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [188161] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5070), 1, + STATE(4800), 1, sym_comment, - ACTIONS(2350), 2, + ACTIONS(5024), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2348), 11, + ACTIONS(5026), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397311,15 +372425,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192549] = 4, - ACTIONS(3), 1, + [188185] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5071), 1, + STATE(4801), 1, sym_comment, - ACTIONS(5202), 2, + ACTIONS(1060), 2, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1062), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [188209] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7879), 1, + anon_sym_else, + STATE(4802), 1, + sym_comment, + ACTIONS(7809), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(5204), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397331,67 +372465,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192573] = 15, + [188233] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(7651), 1, - sym_identifier, - ACTIONS(7655), 1, - anon_sym_DOLLAR, - ACTIONS(7657), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7659), 1, - anon_sym_DASH_DASH, - ACTIONS(7661), 1, + ACTIONS(2384), 1, anon_sym_DASH, - ACTIONS(7663), 1, - anon_sym_RPAREN, - STATE(4455), 1, - sym_param_long_flag, - STATE(4800), 1, - sym__param_name, - STATE(5072), 1, - sym_comment, - STATE(5220), 1, - sym_param_short_flag, - STATE(5253), 1, - sym_param_opt, - STATE(5295), 1, - sym_param_rest, - STATE(5358), 1, - aux_sym_shebang_repeat1, - [192619] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2099), 1, - anon_sym_LPAREN2, - ACTIONS(2103), 1, - aux_sym__unquoted_in_list_token4, - STATE(5073), 1, + STATE(4803), 1, sym_comment, - ACTIONS(2101), 5, + ACTIONS(2386), 12, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2097), 6, - sym_identifier, - anon_sym_COLON, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - [192647] = 4, + aux_sym_ctrl_match_token1, + [188257] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5053), 1, - aux_sym_shebang_repeat1, - STATE(5074), 1, + STATE(4804), 1, sym_comment, - ACTIONS(8158), 12, + ACTIONS(6600), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397404,15 +372503,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [192671] = 4, + anon_sym_RBRACE, + [188279] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5075), 1, + STATE(4805), 1, sym_comment, - ACTIONS(2273), 2, + ACTIONS(2487), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2271), 11, + ACTIONS(2485), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397424,40 +372524,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192695] = 6, - ACTIONS(3), 1, + [188303] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2099), 1, - anon_sym_LPAREN2, - ACTIONS(2103), 1, - aux_sym__unquoted_in_list_token4, - STATE(5076), 1, + STATE(4806), 1, sym_comment, - ACTIONS(2107), 5, + ACTIONS(1052), 2, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1054), 11, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2105), 6, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [188327] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2420), 1, + anon_sym_DASH, + STATE(4807), 1, + sym_comment, + ACTIONS(2422), 12, + anon_sym_EQ, sym_identifier, + sym__newline, + anon_sym_PIPE, anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - [192723] = 6, + aux_sym_ctrl_match_token1, + [188351] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1457), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2117), 1, + ACTIONS(2424), 1, anon_sym_DASH, - ACTIONS(2119), 1, - anon_sym_LPAREN2, - STATE(5077), 1, + STATE(4808), 1, sym_comment, - ACTIONS(2121), 10, + ACTIONS(2426), 12, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -397468,15 +372583,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [192751] = 4, + aux_sym_ctrl_match_token1, + [188375] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5078), 1, + STATE(4809), 1, sym_comment, - ACTIONS(2243), 2, + ACTIONS(5028), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2241), 11, + ACTIONS(5030), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397488,15 +372604,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192775] = 4, + [188399] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5079), 1, + STATE(4810), 1, sym_comment, - ACTIONS(7929), 2, + ACTIONS(2459), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7927), 11, + ACTIONS(2457), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397508,15 +372624,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192799] = 4, + [188423] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5080), 1, + STATE(4811), 1, sym_comment, - ACTIONS(5210), 2, + ACTIONS(7095), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5212), 11, + ACTIONS(7093), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397528,32 +372644,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192823] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5081), 1, - sym_comment, - ACTIONS(1519), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1521), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [192847] = 3, - ACTIONS(247), 1, + [188447] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5082), 1, + STATE(4812), 1, sym_comment, - ACTIONS(8160), 13, + ACTIONS(2491), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2489), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397565,14 +372664,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [192869] = 3, - ACTIONS(247), 1, + [188471] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5083), 1, + STATE(4813), 1, sym_comment, - ACTIONS(8162), 13, + ACTIONS(2483), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2481), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397584,14 +372684,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [192891] = 3, - ACTIONS(247), 1, + [188495] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5084), 1, + STATE(4814), 1, sym_comment, - ACTIONS(8164), 13, + ACTIONS(2495), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2493), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397603,17 +372704,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [192913] = 4, + [188519] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5085), 1, + STATE(4815), 1, sym_comment, - ACTIONS(8084), 2, + ACTIONS(2499), 2, ts_builtin_sym_end, sym__space, - ACTIONS(8082), 11, + ACTIONS(2497), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397625,36 +372724,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192937] = 5, + [188543] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8168), 1, - anon_sym_LT, - ACTIONS(8170), 1, - anon_sym_DASH, - STATE(5086), 1, - sym_comment, - ACTIONS(8166), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [192963] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5087), 1, + STATE(4816), 1, sym_comment, - ACTIONS(1537), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1525), 11, + ACTIONS(7881), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397666,84 +372741,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192987] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1429), 1, - aux_sym_unquoted_token2, - ACTIONS(3645), 1, - anon_sym_DOLLAR, - ACTIONS(6262), 1, - anon_sym_LPAREN2, - ACTIONS(8172), 1, - anon_sym_DOT, - ACTIONS(8176), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8178), 1, - aux_sym__immediate_decimal_token5, - STATE(5088), 1, - sym_comment, - STATE(6122), 1, - sym__immediate_decimal, - ACTIONS(1427), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(8174), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6195), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [193027] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5089), 1, - sym_comment, - ACTIONS(1585), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1587), 10, - sym__newline, - anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [193051] = 5, + [188565] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8170), 1, + ACTIONS(2372), 1, anon_sym_DASH, - ACTIONS(8180), 1, - anon_sym_LT, - STATE(5090), 1, + STATE(4817), 1, sym_comment, - ACTIONS(8166), 11, + ACTIONS(2374), 12, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [193077] = 4, - ACTIONS(3), 1, + aux_sym_ctrl_match_token1, + [188589] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5091), 1, + STATE(4818), 1, sym_comment, - ACTIONS(2265), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2263), 11, + ACTIONS(7883), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397755,37 +372780,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [193101] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2123), 1, - anon_sym_DASH, - ACTIONS(2125), 1, - anon_sym_LPAREN2, - ACTIONS(2129), 1, - aux_sym__unquoted_in_list_token2, - STATE(5092), 1, - sym_comment, - ACTIONS(2127), 10, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [193129] = 4, + anon_sym_RBRACE, + [188611] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5093), 1, + STATE(4819), 1, sym_comment, - ACTIONS(2361), 2, + ACTIONS(2503), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2359), 11, + ACTIONS(2501), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397797,12 +372802,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [193153] = 3, - ACTIONS(247), 1, + [188635] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5094), 1, + STATE(4820), 1, sym_comment, - ACTIONS(8182), 13, + ACTIONS(1896), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1894), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397814,14 +372822,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [193175] = 3, - ACTIONS(247), 1, + [188659] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5095), 1, + STATE(4821), 1, sym_comment, - ACTIONS(8184), 13, + ACTIONS(2347), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2345), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397833,14 +372842,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [193197] = 3, - ACTIONS(247), 1, + [188683] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5096), 1, + STATE(4822), 1, sym_comment, - ACTIONS(8186), 13, + ACTIONS(1845), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1843), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397852,19 +372862,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [193219] = 5, + [188707] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8188), 1, - anon_sym_QMARK2, - STATE(5097), 1, - sym_comment, - ACTIONS(970), 2, + ACTIONS(1949), 1, anon_sym_DASH, - anon_sym_DOT, - ACTIONS(972), 10, + STATE(4823), 1, + sym_comment, + ACTIONS(1951), 12, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -397875,17 +372881,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [193245] = 5, + aux_sym_ctrl_match_token1, + [188731] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8190), 1, - anon_sym_QMARK2, - STATE(5098), 1, - sym_comment, - ACTIONS(980), 2, + ACTIONS(2376), 1, anon_sym_DASH, - anon_sym_DOT, - ACTIONS(982), 10, + STATE(4824), 1, + sym_comment, + ACTIONS(2378), 12, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -397896,45 +372901,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [193271] = 15, + aux_sym_ctrl_match_token1, + [188755] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(7651), 1, + ACTIONS(2428), 1, + anon_sym_DASH, + STATE(4825), 1, + sym_comment, + ACTIONS(2430), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(7655), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7657), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7659), 1, anon_sym_DASH_DASH, - ACTIONS(7661), 1, + aux_sym_ctrl_match_token1, + [188779] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2432), 1, anon_sym_DASH, - ACTIONS(7739), 1, + STATE(4826), 1, + sym_comment, + ACTIONS(2434), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - STATE(4455), 1, - sym_param_long_flag, - STATE(4800), 1, - sym__param_name, - STATE(5099), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [188803] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2388), 1, + anon_sym_DASH, + STATE(4827), 1, sym_comment, - STATE(5220), 1, - sym_param_short_flag, - STATE(5253), 1, - sym_param_opt, - STATE(5295), 1, - sym_param_rest, - STATE(5358), 1, - aux_sym_shebang_repeat1, - [193317] = 4, + ACTIONS(2390), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [188827] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(5100), 1, + STATE(4828), 1, sym_comment, - ACTIONS(8192), 12, + ACTIONS(7759), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397947,15 +372980,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193341] = 4, + anon_sym_RBRACE, + [188849] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5101), 1, + STATE(4829), 1, sym_comment, - ACTIONS(2403), 2, + ACTIONS(5012), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2401), 11, + ACTIONS(5014), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397967,16 +373001,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [193365] = 4, + [188873] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8194), 1, - anon_sym_else, - STATE(5102), 1, - sym_comment, - ACTIONS(7907), 12, - ts_builtin_sym_end, + ACTIONS(3215), 1, + aux_sym_record_entry_token1, + ACTIONS(7817), 1, sym__newline, + STATE(4830), 1, + sym_comment, + ACTIONS(7819), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -397987,16 +373021,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [193389] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [188899] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5103), 1, - sym_comment, - ACTIONS(2072), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2066), 11, + ACTIONS(3215), 1, + aux_sym_record_entry_token1, + ACTIONS(7885), 1, sym__newline, + STATE(4831), 1, + sym_comment, + ACTIONS(7857), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -398007,15 +373042,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [193413] = 4, + anon_sym_RBRACE, + [188925] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7366), 1, + sym_identifier, + ACTIONS(7372), 1, + anon_sym_DOLLAR, + ACTIONS(7374), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7376), 1, + anon_sym_DASH_DASH, + ACTIONS(7378), 1, + anon_sym_DASH, + ACTIONS(7433), 1, + anon_sym_PIPE, + STATE(4039), 1, + sym_param_long_flag, + STATE(4242), 1, + sym__param_name, + STATE(4576), 1, + aux_sym_parameter_parens_repeat1, + STATE(4832), 1, + sym_comment, + STATE(5079), 1, + sym_param_rest, + STATE(5080), 1, + sym_param_opt, + STATE(5082), 1, + sym_param_short_flag, + STATE(5442), 1, + sym_parameter, + [188971] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3215), 1, + aux_sym_record_entry_token1, + ACTIONS(7887), 1, + anon_sym_DOLLAR, + ACTIONS(7889), 1, + anon_sym_DASH_DASH, + ACTIONS(7891), 1, + anon_sym_DASH, + ACTIONS(7893), 1, + aux_sym_ctrl_match_token1, + STATE(1608), 1, + sym_block, + STATE(1609), 1, + sym_val_closure, + STATE(4833), 1, + sym_comment, + STATE(5027), 1, + aux_sym_ctrl_do_repeat1, + STATE(5943), 1, + sym__flag, + STATE(670), 2, + sym__blosure, + sym_val_variable, + STATE(5900), 2, + sym_short_flag, + sym_long_flag, + [189013] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5104), 1, + STATE(4834), 1, sym_comment, - ACTIONS(1869), 2, + ACTIONS(5046), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1867), 11, + ACTIONS(5048), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398027,15 +373123,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [193437] = 4, + [189037] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5105), 1, + STATE(4835), 1, sym_comment, - ACTIONS(1978), 2, + ACTIONS(7672), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1972), 11, + ACTIONS(7670), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398047,16 +373143,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [193461] = 5, + [189061] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3269), 1, - aux_sym_record_entry_token1, - ACTIONS(8196), 1, + ACTIONS(1575), 1, + anon_sym_DASH, + ACTIONS(4433), 1, + anon_sym_DOT_DOT2, + ACTIONS(6790), 1, + aux_sym_unquoted_token2, + ACTIONS(7895), 1, + sym_filesize_unit, + ACTIONS(7897), 1, + sym_duration_unit, + STATE(4836), 1, + sym_comment, + ACTIONS(4435), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1587), 6, sym__newline, - STATE(5106), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [189095] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4837), 1, sym_comment, - ACTIONS(8198), 11, + ACTIONS(2067), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2061), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -398067,16 +373188,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - [193487] = 4, + [189119] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5107), 1, + STATE(4838), 1, sym_comment, - ACTIONS(1966), 2, + ACTIONS(5118), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1960), 11, + ACTIONS(5120), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [189143] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4839), 1, + sym_comment, + ACTIONS(7899), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398088,15 +373225,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [193511] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [189165] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5108), 1, + STATE(4840), 1, sym_comment, - ACTIONS(2257), 2, + ACTIONS(7680), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2255), 11, + ACTIONS(7678), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398108,16 +373247,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [193535] = 5, + [189189] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3269), 1, + ACTIONS(3213), 1, aux_sym_record_entry_token1, - ACTIONS(8200), 1, + ACTIONS(7885), 1, sym__newline, - STATE(5109), 1, + STATE(4841), 1, sym_comment, - ACTIONS(8202), 11, + ACTIONS(7857), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -398129,15 +373268,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RBRACE, - [193561] = 4, + [189215] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5110), 1, + STATE(4842), 1, sym_comment, - ACTIONS(2334), 2, + ACTIONS(2382), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2332), 11, + ACTIONS(2380), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398149,15 +373288,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [193585] = 4, + [189239] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5111), 1, + STATE(4843), 1, sym_comment, - ACTIONS(1901), 2, + ACTIONS(7807), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1899), 11, + ACTIONS(7805), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398169,15 +373308,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [193609] = 4, + [189263] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(5112), 1, + ACTIONS(1493), 1, + sym__entry_separator, + ACTIONS(2986), 1, + anon_sym_DOLLAR, + ACTIONS(7825), 1, + anon_sym_LPAREN2, + ACTIONS(7901), 1, + anon_sym_DOT, + ACTIONS(7903), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7905), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7907), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7909), 1, + aux_sym__immediate_decimal_token5, + STATE(4844), 1, + sym_comment, + STATE(5896), 1, + sym__immediate_decimal, + ACTIONS(1479), 2, + anon_sym_RBRACE, + anon_sym__, + STATE(5826), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [189305] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2380), 1, + anon_sym_DASH, + STATE(4845), 1, + sym_comment, + ACTIONS(2382), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [189329] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4846), 1, sym_comment, - ACTIONS(5158), 2, + ACTIONS(2394), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5160), 11, + ACTIONS(2392), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398189,15 +373377,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [193633] = 4, - ACTIONS(3), 1, + [189353] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5113), 1, + STATE(690), 1, + aux_sym_shebang_repeat1, + STATE(4847), 1, sym_comment, - ACTIONS(5162), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5164), 11, + ACTIONS(7911), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398209,12 +373396,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [193657] = 3, + anon_sym_RPAREN, + [189377] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5114), 1, + STATE(4848), 1, + sym_comment, + ACTIONS(1517), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1519), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [189401] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4849), 1, sym_comment, - ACTIONS(8204), 13, + ACTIONS(5016), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5018), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398226,14 +373437,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [193679] = 3, + [189425] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5115), 1, + STATE(4850), 1, sym_comment, - ACTIONS(8206), 13, + ACTIONS(7913), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398247,15 +373456,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [193701] = 4, + [189447] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7366), 1, + sym_identifier, + ACTIONS(7372), 1, + anon_sym_DOLLAR, + ACTIONS(7374), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7376), 1, + anon_sym_DASH_DASH, + ACTIONS(7378), 1, + anon_sym_DASH, + ACTIONS(7915), 1, + anon_sym_RBRACK, + STATE(4039), 1, + sym_param_long_flag, + STATE(4242), 1, + sym__param_name, + STATE(4576), 1, + aux_sym_parameter_parens_repeat1, + STATE(4851), 1, + sym_comment, + STATE(5079), 1, + sym_param_rest, + STATE(5080), 1, + sym_param_opt, + STATE(5082), 1, + sym_param_short_flag, + STATE(5442), 1, + sym_parameter, + [189493] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4852), 1, + sym_comment, + ACTIONS(1497), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1499), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [189517] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5116), 1, + STATE(4853), 1, sym_comment, - ACTIONS(2411), 2, + ACTIONS(1947), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2409), 11, + ACTIONS(1945), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398267,15 +373527,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [193725] = 4, - ACTIONS(3), 1, + [189541] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5117), 1, + STATE(4854), 1, sym_comment, - ACTIONS(2415), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2413), 11, + ACTIONS(1639), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1641), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [189565] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4855), 1, + sym_comment, + ACTIONS(7917), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398287,15 +373564,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [193749] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [189587] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1553), 1, + aux_sym_unquoted_token2, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(7839), 1, + anon_sym_DOLLAR, + ACTIONS(7843), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7845), 1, + aux_sym__immediate_decimal_token5, + STATE(4856), 1, + sym_comment, + STATE(6235), 1, + sym__immediate_decimal, + ACTIONS(7841), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3360), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1551), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [189625] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5118), 1, + STATE(4857), 1, sym_comment, - ACTIONS(2261), 2, + ACTIONS(2402), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2259), 11, + ACTIONS(2400), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398307,15 +373613,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [193773] = 4, + [189649] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5119), 1, + STATE(4858), 1, sym_comment, - ACTIONS(2253), 2, + ACTIONS(7684), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2251), 11, + ACTIONS(7682), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398327,12 +373633,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [193797] = 3, + [189673] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5120), 1, + STATE(4859), 1, sym_comment, - ACTIONS(6863), 13, + ACTIONS(7919), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398346,15 +373652,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [193819] = 4, - ACTIONS(3), 1, + [189695] = 15, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5121), 1, + ACTIONS(7366), 1, + sym_identifier, + ACTIONS(7372), 1, + anon_sym_DOLLAR, + ACTIONS(7374), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7376), 1, + anon_sym_DASH_DASH, + ACTIONS(7378), 1, + anon_sym_DASH, + ACTIONS(7921), 1, + anon_sym_RBRACK, + STATE(4039), 1, + sym_param_long_flag, + STATE(4242), 1, + sym__param_name, + STATE(4576), 1, + aux_sym_parameter_parens_repeat1, + STATE(4860), 1, sym_comment, - ACTIONS(1745), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1741), 11, + STATE(5079), 1, + sym_param_rest, + STATE(5080), 1, + sym_param_opt, + STATE(5082), 1, + sym_param_short_flag, + STATE(5442), 1, + sym_parameter, + [189741] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7366), 1, + sym_identifier, + ACTIONS(7372), 1, + anon_sym_DOLLAR, + ACTIONS(7374), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7376), 1, + anon_sym_DASH_DASH, + ACTIONS(7378), 1, + anon_sym_DASH, + ACTIONS(7481), 1, + anon_sym_RBRACK, + STATE(4039), 1, + sym_param_long_flag, + STATE(4242), 1, + sym__param_name, + STATE(4576), 1, + aux_sym_parameter_parens_repeat1, + STATE(4861), 1, + sym_comment, + STATE(5079), 1, + sym_param_rest, + STATE(5080), 1, + sym_param_opt, + STATE(5082), 1, + sym_param_short_flag, + STATE(5442), 1, + sym_parameter, + [189787] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7925), 1, + anon_sym_DASH, + STATE(4862), 1, + sym_comment, + ACTIONS(7923), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [189811] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4863), 1, + sym_comment, + ACTIONS(7927), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398366,15 +373751,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [193843] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [189833] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5122), 1, + STATE(4864), 1, sym_comment, - ACTIONS(1008), 2, + ACTIONS(7759), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1006), 11, + ACTIONS(7757), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398386,15 +373773,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [193867] = 4, + [189857] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5123), 1, + STATE(4865), 1, sym_comment, - ACTIONS(7355), 2, + ACTIONS(2430), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7353), 11, + ACTIONS(2428), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398406,15 +373793,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [193891] = 4, + [189881] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7366), 1, + sym_identifier, + ACTIONS(7372), 1, + anon_sym_DOLLAR, + ACTIONS(7374), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7376), 1, + anon_sym_DASH_DASH, + ACTIONS(7378), 1, + anon_sym_DASH, + ACTIONS(7929), 1, + anon_sym_RPAREN, + STATE(4039), 1, + sym_param_long_flag, + STATE(4242), 1, + sym__param_name, + STATE(4576), 1, + aux_sym_parameter_parens_repeat1, + STATE(4866), 1, + sym_comment, + STATE(5079), 1, + sym_param_rest, + STATE(5080), 1, + sym_param_opt, + STATE(5082), 1, + sym_param_short_flag, + STATE(5442), 1, + sym_parameter, + [189927] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5124), 1, + STATE(4867), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(2422), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5168), 11, + ACTIONS(2420), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398426,15 +373844,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [193915] = 4, + [189951] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3483), 1, + anon_sym_DOLLAR, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(6084), 1, + anon_sym_DOT, + ACTIONS(6088), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6090), 1, + aux_sym__immediate_decimal_token5, + STATE(4868), 1, + sym_comment, + STATE(5879), 1, + sym__immediate_decimal, + ACTIONS(6086), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5878), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1515), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [189989] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2457), 1, + anon_sym_DASH, + STATE(4869), 1, + sym_comment, + ACTIONS(2459), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [190013] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5125), 1, + STATE(4870), 1, sym_comment, - ACTIONS(5170), 2, + ACTIONS(2426), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5172), 11, + ACTIONS(2424), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398446,12 +373911,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [193939] = 3, + [190037] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5126), 1, + ACTIONS(7931), 1, + anon_sym_catch, + STATE(4871), 1, sym_comment, - ACTIONS(8208), 13, + ACTIONS(7778), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398463,17 +373931,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [193961] = 4, + [190061] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5127), 1, + STATE(4872), 1, sym_comment, - ACTIONS(2391), 2, + ACTIONS(2410), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2389), 11, + ACTIONS(2408), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398485,15 +373951,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [193985] = 4, + [190085] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5128), 1, + STATE(4873), 1, sym_comment, - ACTIONS(2419), 2, + ACTIONS(1951), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2417), 11, + ACTIONS(1949), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398505,15 +373971,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [194009] = 4, - ACTIONS(3), 1, + [190109] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5129), 1, + STATE(4874), 1, sym_comment, - ACTIONS(2423), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2421), 11, + ACTIONS(7933), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398525,15 +373988,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [194033] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [190131] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(5130), 1, + ACTIONS(1515), 1, + sym__entry_separator, + ACTIONS(2986), 1, + anon_sym_DOLLAR, + ACTIONS(7825), 1, + anon_sym_LPAREN2, + ACTIONS(7903), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7905), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7907), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7909), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7935), 1, + anon_sym_DOT, + STATE(4875), 1, sym_comment, - ACTIONS(2427), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2425), 11, + STATE(5825), 1, + sym__immediate_decimal, + ACTIONS(1505), 2, + anon_sym_RBRACE, + anon_sym__, + STATE(5824), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [190173] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4876), 1, + sym_comment, + ACTIONS(7937), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398545,15 +374036,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [194057] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [190195] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5131), 1, + STATE(4877), 1, sym_comment, - ACTIONS(2431), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2429), 11, + ACTIONS(7939), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398565,35 +374055,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [194081] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [190217] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5132), 1, + ACTIONS(7943), 1, + anon_sym_QMARK, + ACTIONS(7945), 1, + anon_sym_DASH, + STATE(4878), 1, sym_comment, - ACTIONS(2435), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2433), 11, + ACTIONS(7941), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [194105] = 4, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [190243] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2364), 1, + anon_sym_DASH, + STATE(4879), 1, + sym_comment, + ACTIONS(2366), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [190267] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5133), 1, + STATE(4880), 1, sym_comment, - ACTIONS(2439), 2, + ACTIONS(2467), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2437), 11, + ACTIONS(2465), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398605,15 +374118,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [194129] = 4, + [190291] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5134), 1, + STATE(4881), 1, sym_comment, - ACTIONS(2443), 2, + ACTIONS(5077), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2441), 11, + ACTIONS(5079), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398625,12 +374138,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [194153] = 3, - ACTIONS(247), 1, + [190315] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5135), 1, + STATE(4882), 1, sym_comment, - ACTIONS(8210), 13, + ACTIONS(1892), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1890), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398642,17 +374158,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [194175] = 4, + [190339] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5136), 1, + STATE(4883), 1, sym_comment, - ACTIONS(5137), 2, + ACTIONS(2471), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5139), 11, + ACTIONS(2469), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398664,15 +374178,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [194199] = 4, + [190363] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5137), 1, + STATE(4884), 1, sym_comment, - ACTIONS(2283), 2, + ACTIONS(1587), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2281), 11, + ACTIONS(1575), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398684,49 +374198,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [194223] = 15, + [190387] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(7651), 1, + ACTIONS(1843), 1, + anon_sym_DASH, + STATE(4885), 1, + sym_comment, + ACTIONS(1845), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(7655), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7657), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7659), 1, anon_sym_DASH_DASH, - ACTIONS(7661), 1, + aux_sym_ctrl_match_token1, + [190411] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2400), 1, anon_sym_DASH, - ACTIONS(7751), 1, - anon_sym_RPAREN, - STATE(4455), 1, - sym_param_long_flag, - STATE(4800), 1, - sym__param_name, - STATE(5138), 1, + STATE(4886), 1, sym_comment, - STATE(5220), 1, - sym_param_short_flag, - STATE(5253), 1, - sym_param_opt, - STATE(5295), 1, - sym_param_rest, - STATE(5358), 1, - aux_sym_shebang_repeat1, - [194269] = 6, + ACTIONS(2402), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [190435] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5625), 1, - anon_sym_LPAREN2, - ACTIONS(8214), 1, + ACTIONS(1575), 1, anon_sym_DASH, - STATE(5139), 1, + ACTIONS(7005), 1, + aux_sym__unquoted_in_list_token2, + STATE(4887), 1, sym_comment, - STATE(7970), 1, - sym__expr_parenthesized_immediate, - ACTIONS(8212), 10, + ACTIONS(1587), 11, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -398737,44 +374259,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [194297] = 13, + [190461] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4888), 1, + sym_comment, + ACTIONS(2434), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2432), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [190485] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3269), 1, - aux_sym_record_entry_token1, - ACTIONS(8216), 1, + ACTIONS(7366), 1, + sym_identifier, + ACTIONS(7372), 1, anon_sym_DOLLAR, - ACTIONS(8218), 1, + ACTIONS(7374), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7376), 1, anon_sym_DASH_DASH, - ACTIONS(8220), 1, + ACTIONS(7378), 1, anon_sym_DASH, - ACTIONS(8222), 1, - aux_sym_ctrl_match_token1, - STATE(1814), 1, - sym_val_closure, - STATE(1850), 1, - sym_block, - STATE(5140), 1, + ACTIONS(7947), 1, + anon_sym_PIPE, + STATE(4039), 1, + sym_param_long_flag, + STATE(4242), 1, + sym__param_name, + STATE(4576), 1, + aux_sym_parameter_parens_repeat1, + STATE(4889), 1, sym_comment, - STATE(5272), 1, - aux_sym_ctrl_do_repeat1, - STATE(6260), 1, - sym__flag, - STATE(674), 2, - sym__blosure, - sym_val_variable, - STATE(6245), 2, - sym_short_flag, - sym_long_flag, - [194339] = 4, + STATE(5079), 1, + sym_param_rest, + STATE(5080), 1, + sym_param_opt, + STATE(5082), 1, + sym_param_short_flag, + STATE(5442), 1, + sym_parameter, + [190531] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5141), 1, + STATE(4890), 1, sym_comment, - ACTIONS(7992), 2, + ACTIONS(2386), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7990), 11, + ACTIONS(2384), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398786,12 +374330,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [194363] = 3, + [190555] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5142), 1, + STATE(4891), 1, sym_comment, - ACTIONS(8198), 13, + ACTIONS(7949), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398805,15 +374349,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [194385] = 4, + [190577] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5143), 1, + STATE(4892), 1, sym_comment, - ACTIONS(7855), 2, + ACTIONS(2438), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7853), 11, + ACTIONS(2436), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398825,36 +374369,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [194409] = 5, - ACTIONS(247), 1, + [190601] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8226), 1, - anon_sym_QMARK, - ACTIONS(8228), 1, - anon_sym_DASH, - STATE(5144), 1, + STATE(4893), 1, sym_comment, - ACTIONS(8224), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5020), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5022), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [194435] = 4, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [190625] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5145), 1, + STATE(4894), 1, sym_comment, - ACTIONS(2297), 2, + ACTIONS(5042), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2295), 11, + ACTIONS(5044), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398866,56 +374409,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [194459] = 6, + [190649] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5625), 1, - anon_sym_LPAREN2, - ACTIONS(8232), 1, - anon_sym_DASH, - STATE(5146), 1, - sym_comment, - STATE(7970), 1, - sym__expr_parenthesized_immediate, - ACTIONS(8230), 10, + ACTIONS(7366), 1, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(7372), 1, anon_sym_DOLLAR, + ACTIONS(7374), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7376), 1, anon_sym_DASH_DASH, - [194487] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5625), 1, - anon_sym_LPAREN2, - ACTIONS(7998), 1, + ACTIONS(7378), 1, anon_sym_DASH, - STATE(5147), 1, + ACTIONS(7540), 1, + anon_sym_RPAREN, + STATE(4039), 1, + sym_param_long_flag, + STATE(4242), 1, + sym__param_name, + STATE(4576), 1, + aux_sym_parameter_parens_repeat1, + STATE(4895), 1, sym_comment, - STATE(7557), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7996), 10, - sym_identifier, + STATE(5079), 1, + sym_param_rest, + STATE(5080), 1, + sym_param_opt, + STATE(5082), 1, + sym_param_short_flag, + STATE(5442), 1, + sym_parameter, + [190695] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4896), 1, + sym_comment, + ACTIONS(5034), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5036), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [190719] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1479), 1, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1493), 1, + sym__entry_separator, + ACTIONS(1495), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2986), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [194515] = 3, + ACTIONS(7825), 1, + anon_sym_LPAREN2, + ACTIONS(7847), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7849), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7851), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7853), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7951), 1, + anon_sym_DOT, + STATE(4897), 1, + sym_comment, + STATE(5627), 1, + sym__immediate_decimal, + STATE(5792), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [190763] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5148), 1, + STATE(4847), 1, + aux_sym_shebang_repeat1, + STATE(4898), 1, sym_comment, - ACTIONS(8202), 13, + ACTIONS(7953), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398928,37 +374510,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [194537] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8012), 1, - aux_sym__immediate_decimal_token2, - STATE(5149), 1, - sym_comment, - ACTIONS(1473), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1475), 9, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [194563] = 4, + [190787] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5150), 1, + STATE(4899), 1, sym_comment, - ACTIONS(2354), 2, + ACTIONS(5038), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2352), 11, + ACTIONS(5040), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398970,37 +374530,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [194587] = 5, - ACTIONS(247), 1, + [190811] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7986), 1, - aux_sym__immediate_decimal_token2, - STATE(5151), 1, + STATE(4900), 1, sym_comment, - ACTIONS(1589), 3, - sym_identifier, - anon_sym_DASH, - aux_sym__unquoted_in_list_token2, - ACTIONS(1591), 9, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [194613] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3239), 1, - aux_sym_record_entry_token1, - ACTIONS(8196), 1, + ACTIONS(2398), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2396), 11, sym__newline, - STATE(5152), 1, - sym_comment, - ACTIONS(8198), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -399011,17 +374550,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - [194639] = 5, - ACTIONS(247), 1, + [190835] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3239), 1, - aux_sym_record_entry_token1, - ACTIONS(8200), 1, - sym__newline, - STATE(5153), 1, + STATE(4901), 1, sym_comment, - ACTIONS(8202), 11, + ACTIONS(2390), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2388), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -399032,88 +374570,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - [194665] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(8102), 1, - anon_sym_COMMA, - ACTIONS(8104), 1, - anon_sym_DASH, - ACTIONS(8136), 1, - anon_sym_EQ, - STATE(5154), 1, - sym_comment, - STATE(5311), 1, - aux_sym_shebang_repeat1, - STATE(5435), 1, - sym_param_value, - ACTIONS(8100), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [194699] = 13, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3239), 1, - aux_sym_record_entry_token1, - ACTIONS(8216), 1, - anon_sym_DOLLAR, - ACTIONS(8218), 1, - anon_sym_DASH_DASH, - ACTIONS(8220), 1, - anon_sym_DASH, - ACTIONS(8222), 1, - aux_sym_ctrl_match_token1, - STATE(1814), 1, - sym_val_closure, - STATE(1850), 1, - sym_block, - STATE(5155), 1, - sym_comment, - STATE(5272), 1, - aux_sym_ctrl_do_repeat1, - STATE(6260), 1, - sym__flag, - STATE(674), 2, - sym__blosure, - sym_val_variable, - STATE(6245), 2, - sym_short_flag, - sym_long_flag, - [194741] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8234), 1, - aux_sym__immediate_decimal_token2, - STATE(5156), 1, - sym_comment, - ACTIONS(1648), 3, - sym_identifier, - anon_sym_DASH, - aux_sym__unquoted_in_list_token2, - ACTIONS(1650), 9, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [194767] = 3, - ACTIONS(247), 1, + [190859] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5157), 1, + STATE(4902), 1, sym_comment, - ACTIONS(8236), 13, + ACTIONS(1869), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1867), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399125,17 +374590,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [194789] = 4, - ACTIONS(3), 1, + [190883] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5158), 1, + STATE(4903), 1, sym_comment, - ACTIONS(1857), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1855), 11, + ACTIONS(6608), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399147,46 +374607,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [194813] = 15, + anon_sym_RPAREN, + anon_sym_RBRACE, + [190905] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(7651), 1, - sym_identifier, - ACTIONS(7655), 1, - anon_sym_DOLLAR, - ACTIONS(7657), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7659), 1, - anon_sym_DASH_DASH, - ACTIONS(7661), 1, - anon_sym_DASH, - ACTIONS(8238), 1, - anon_sym_RBRACK, - STATE(4455), 1, - sym_param_long_flag, - STATE(4800), 1, - sym__param_name, - STATE(5159), 1, - sym_comment, - STATE(5220), 1, - sym_param_short_flag, - STATE(5253), 1, - sym_param_opt, - STATE(5295), 1, - sym_param_rest, - STATE(5358), 1, - aux_sym_shebang_repeat1, - [194859] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5160), 1, + STATE(4904), 1, sym_comment, - ACTIONS(2365), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2363), 11, + ACTIONS(7955), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399198,66 +374626,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [194883] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [190927] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8242), 1, - anon_sym_AT, - ACTIONS(8244), 1, + ACTIONS(2355), 1, anon_sym_DASH, - STATE(5161), 1, + STATE(4905), 1, sym_comment, - STATE(5414), 1, - sym_param_cmd, - ACTIONS(8240), 10, + ACTIONS(2357), 12, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [194911] = 9, + aux_sym_ctrl_match_token1, + [190951] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(8136), 1, - anon_sym_EQ, - ACTIONS(8248), 1, - anon_sym_COMMA, - ACTIONS(8250), 1, + ACTIONS(2443), 1, anon_sym_DASH, - STATE(5162), 1, - sym_comment, - STATE(5238), 1, - aux_sym_shebang_repeat1, - STATE(5481), 1, - sym_param_value, - ACTIONS(8246), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [194945] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7383), 1, - anon_sym_DOT, - ACTIONS(7385), 1, - aux_sym__immediate_decimal_token2, - STATE(5163), 1, + STATE(4906), 1, sym_comment, - ACTIONS(1589), 2, + ACTIONS(2445), 12, + anon_sym_EQ, sym_identifier, - anon_sym_DASH, - ACTIONS(1591), 9, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -399267,199 +374667,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [194973] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(7651), 1, - sym_identifier, - ACTIONS(7655), 1, - anon_sym_DOLLAR, - ACTIONS(7657), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7659), 1, - anon_sym_DASH_DASH, - ACTIONS(7661), 1, - anon_sym_DASH, - ACTIONS(8252), 1, - anon_sym_RBRACK, - STATE(4455), 1, - sym_param_long_flag, - STATE(4800), 1, - sym__param_name, - STATE(5164), 1, - sym_comment, - STATE(5220), 1, - sym_param_short_flag, - STATE(5253), 1, - sym_param_opt, - STATE(5295), 1, - sym_param_rest, - STATE(5358), 1, - aux_sym_shebang_repeat1, - [195019] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3645), 1, - anon_sym_DOLLAR, - ACTIONS(6262), 1, - anon_sym_LPAREN2, - ACTIONS(6264), 1, - anon_sym_DOT, - ACTIONS(6268), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6270), 1, - aux_sym__immediate_decimal_token5, - STATE(5165), 1, - sym_comment, - STATE(6194), 1, - sym__immediate_decimal, - ACTIONS(6266), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6193), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1441), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [195057] = 9, + aux_sym_ctrl_match_token1, + [190975] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(7419), 1, - anon_sym_COLON, - ACTIONS(8248), 1, - anon_sym_COMMA, - ACTIONS(8250), 1, + ACTIONS(2404), 1, anon_sym_DASH, - STATE(5166), 1, + STATE(4907), 1, sym_comment, - STATE(5443), 1, - aux_sym_shebang_repeat1, - STATE(5481), 1, - sym_param_type, - ACTIONS(8246), 7, + ACTIONS(2406), 12, + anon_sym_EQ, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195091] = 9, + aux_sym_ctrl_match_token1, + [190999] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(8108), 1, - anon_sym_COMMA, - ACTIONS(8110), 1, + ACTIONS(2453), 1, anon_sym_DASH, - ACTIONS(8136), 1, - anon_sym_EQ, - STATE(5167), 1, + STATE(4908), 1, sym_comment, - STATE(5302), 1, - aux_sym_shebang_repeat1, - STATE(5483), 1, - sym_param_value, - ACTIONS(8106), 7, + ACTIONS(2455), 12, + anon_sym_EQ, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195125] = 15, + aux_sym_ctrl_match_token1, + [191023] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(7651), 1, + ACTIONS(7366), 1, sym_identifier, - ACTIONS(7655), 1, + ACTIONS(7372), 1, anon_sym_DOLLAR, - ACTIONS(7657), 1, + ACTIONS(7374), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7659), 1, + ACTIONS(7376), 1, anon_sym_DASH_DASH, - ACTIONS(7661), 1, + ACTIONS(7378), 1, anon_sym_DASH, - ACTIONS(8254), 1, + ACTIONS(7380), 1, anon_sym_RPAREN, - STATE(4455), 1, + STATE(4039), 1, sym_param_long_flag, - STATE(4800), 1, + STATE(4242), 1, sym__param_name, - STATE(5168), 1, + STATE(4576), 1, + aux_sym_parameter_parens_repeat1, + STATE(4909), 1, sym_comment, - STATE(5220), 1, - sym_param_short_flag, - STATE(5253), 1, - sym_param_opt, - STATE(5295), 1, + STATE(5079), 1, sym_param_rest, - STATE(5358), 1, - aux_sym_shebang_repeat1, - [195171] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5169), 1, - sym_comment, - ACTIONS(2313), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2311), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [195195] = 6, + STATE(5080), 1, + sym_param_opt, + STATE(5082), 1, + sym_param_short_flag, + STATE(5442), 1, + sym_parameter, + [191069] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5625), 1, - anon_sym_LPAREN2, - ACTIONS(8258), 1, - anon_sym_DASH, - STATE(5170), 1, - sym_comment, - STATE(7970), 1, - sym__expr_parenthesized_immediate, - ACTIONS(8256), 10, + ACTIONS(7366), 1, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(7370), 1, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(7372), 1, anon_sym_DOLLAR, + ACTIONS(7374), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7376), 1, anon_sym_DASH_DASH, - [195223] = 6, + ACTIONS(7378), 1, + anon_sym_DASH, + STATE(4039), 1, + sym_param_long_flag, + STATE(4242), 1, + sym__param_name, + STATE(4576), 1, + aux_sym_parameter_parens_repeat1, + STATE(4910), 1, + sym_comment, + STATE(5079), 1, + sym_param_rest, + STATE(5080), 1, + sym_param_opt, + STATE(5082), 1, + sym_param_short_flag, + STATE(5442), 1, + sym_parameter, + [191115] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5625), 1, - anon_sym_LPAREN2, - ACTIONS(8262), 1, + ACTIONS(1859), 1, anon_sym_DASH, - STATE(5171), 1, + STATE(4911), 1, sym_comment, - STATE(7970), 1, - sym__expr_parenthesized_immediate, - ACTIONS(8260), 10, + ACTIONS(1861), 12, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -399470,65 +374789,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195251] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(8136), 1, - anon_sym_EQ, - ACTIONS(8266), 1, - anon_sym_COMMA, - ACTIONS(8268), 1, - anon_sym_DASH, - STATE(5172), 1, - sym_comment, - STATE(5309), 1, - aux_sym_shebang_repeat1, - STATE(5395), 1, - sym_param_value, - ACTIONS(8264), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [195285] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1525), 1, - anon_sym_DASH, - ACTIONS(4694), 1, - anon_sym_DOT_DOT2, - ACTIONS(7059), 1, - aux_sym_unquoted_token2, - ACTIONS(8270), 1, - sym_filesize_unit, - ACTIONS(8272), 1, - sym_duration_unit, - STATE(5173), 1, - sym_comment, - ACTIONS(4696), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1537), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [195319] = 4, + aux_sym_ctrl_match_token1, + [191139] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5174), 1, + STATE(4912), 1, sym_comment, - ACTIONS(2342), 2, + ACTIONS(7151), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2340), 11, + ACTIONS(7149), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399540,66 +374810,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [195343] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5625), 1, - anon_sym_LPAREN2, - ACTIONS(7954), 1, - anon_sym_DASH, - STATE(5175), 1, - sym_comment, - STATE(7557), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7952), 10, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [195371] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1441), 1, - sym__entry_separator, - ACTIONS(2921), 1, - anon_sym_DOLLAR, - ACTIONS(5520), 1, - anon_sym_DOT, - ACTIONS(8086), 1, - anon_sym_LPAREN2, - ACTIONS(8090), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8092), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8094), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8096), 1, - aux_sym__immediate_decimal_token5, - STATE(5176), 1, - sym_comment, - STATE(6182), 1, - sym__immediate_decimal, - ACTIONS(1431), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(6181), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [195413] = 4, + [191163] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5177), 1, + STATE(4913), 1, sym_comment, - ACTIONS(1772), 2, + ACTIONS(7676), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1770), 11, + ACTIONS(7674), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399611,46 +374830,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [195437] = 15, + [191187] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, + ACTIONS(7790), 1, + aux_sym__immediate_decimal_token2, + STATE(4914), 1, + sym_comment, + ACTIONS(1497), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1499), 9, + ts_builtin_sym_end, sym__newline, - ACTIONS(7651), 1, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [191213] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7366), 1, sym_identifier, - ACTIONS(7655), 1, + ACTIONS(7372), 1, anon_sym_DOLLAR, - ACTIONS(7657), 1, + ACTIONS(7374), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7659), 1, + ACTIONS(7376), 1, anon_sym_DASH_DASH, - ACTIONS(7661), 1, + ACTIONS(7378), 1, anon_sym_DASH, - ACTIONS(8274), 1, + ACTIONS(7957), 1, anon_sym_RPAREN, - STATE(4455), 1, + STATE(4039), 1, sym_param_long_flag, - STATE(4800), 1, + STATE(4242), 1, sym__param_name, - STATE(5178), 1, + STATE(4576), 1, + aux_sym_parameter_parens_repeat1, + STATE(4915), 1, sym_comment, - STATE(5220), 1, - sym_param_short_flag, - STATE(5253), 1, - sym_param_opt, - STATE(5295), 1, + STATE(5079), 1, sym_param_rest, - STATE(5358), 1, - aux_sym_shebang_repeat1, - [195483] = 4, - ACTIONS(3), 1, + STATE(5080), 1, + sym_param_opt, + STATE(5082), 1, + sym_param_short_flag, + STATE(5442), 1, + sym_parameter, + [191259] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5179), 1, + STATE(4916), 1, sym_comment, - ACTIONS(2317), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2315), 11, + ACTIONS(7959), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399662,37 +374899,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [195507] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1429), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1690), 1, - anon_sym_DASH, - ACTIONS(1692), 1, - anon_sym_LPAREN2, - STATE(5180), 1, - sym_comment, - ACTIONS(1698), 10, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [195535] = 4, + anon_sym_RBRACE, + [191281] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5181), 1, + STATE(4917), 1, sym_comment, - ACTIONS(2369), 2, + ACTIONS(7265), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2367), 11, + ACTIONS(7263), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399704,15 +374921,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [195559] = 4, + [191305] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5182), 1, + STATE(4918), 1, sym_comment, - ACTIONS(2373), 2, + ACTIONS(5112), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2371), 11, + ACTIONS(5114), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399724,70 +374941,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [195583] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1413), 1, - anon_sym_RBRACE, - ACTIONS(1427), 1, - sym__entry_separator, - ACTIONS(1429), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(2921), 1, - anon_sym_DOLLAR, - ACTIONS(8086), 1, - anon_sym_LPAREN2, - ACTIONS(8276), 1, - anon_sym_DOT, - ACTIONS(8278), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8280), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8282), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8284), 1, - aux_sym__immediate_decimal_token5, - STATE(5183), 1, - sym_comment, - STATE(5843), 1, - sym__immediate_decimal, - STATE(6192), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [195627] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(7419), 1, - anon_sym_COLON, - ACTIONS(8268), 1, - anon_sym_DASH, - ACTIONS(8286), 1, - anon_sym_COMMA, - STATE(5184), 1, - sym_comment, - STATE(5430), 1, - sym_param_type, - STATE(5433), 1, - aux_sym_shebang_repeat1, - ACTIONS(8264), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [195661] = 4, + [191329] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5185), 1, + STATE(4919), 1, sym_comment, - ACTIONS(5141), 2, + ACTIONS(2479), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5143), 11, + ACTIONS(2477), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399799,15 +374961,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [195685] = 4, + [191353] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5186), 1, - sym_comment, - ACTIONS(2346), 2, - ts_builtin_sym_end, + ACTIONS(7963), 1, sym__space, - ACTIONS(2344), 11, + STATE(4920), 1, + sym_comment, + ACTIONS(7961), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399819,15 +374980,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [195709] = 4, + anon_sym_RPAREN, + [191377] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1495), 1, + aux_sym_unquoted_token2, + ACTIONS(3483), 1, + anon_sym_DOLLAR, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(7965), 1, + anon_sym_DOT, + ACTIONS(7969), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7971), 1, + aux_sym__immediate_decimal_token5, + STATE(4921), 1, + sym_comment, + STATE(5800), 1, + sym__immediate_decimal, + ACTIONS(1493), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(7967), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5880), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [191417] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5187), 1, + STATE(4922), 1, sym_comment, - ACTIONS(7497), 2, + ACTIONS(2406), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7495), 11, + ACTIONS(2404), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399839,15 +375029,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [195733] = 4, + [191441] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1867), 1, + anon_sym_DASH, + STATE(4923), 1, + sym_comment, + ACTIONS(1869), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [191465] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7975), 1, + anon_sym_DASH, + STATE(4924), 1, + sym_comment, + ACTIONS(7973), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [191489] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1871), 1, + anon_sym_DASH, + STATE(4925), 1, + sym_comment, + ACTIONS(1873), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [191513] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2408), 1, + anon_sym_DASH, + STATE(4926), 1, + sym_comment, + ACTIONS(2410), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [191537] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5959), 1, + anon_sym_DASH, + STATE(4927), 1, + sym_comment, + ACTIONS(5961), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [191561] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5188), 1, + STATE(4928), 1, sym_comment, - ACTIONS(2381), 2, + ACTIONS(1873), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2379), 11, + ACTIONS(1871), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399859,15 +375149,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [195757] = 4, + [191585] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5189), 1, + STATE(4929), 1, sym_comment, - ACTIONS(5129), 2, + ACTIONS(1963), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5131), 11, + ACTIONS(1961), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399879,12 +375169,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [195781] = 3, + [191609] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5190), 1, + STATE(4787), 1, + aux_sym_shebang_repeat1, + STATE(4930), 1, sym_comment, - ACTIONS(8288), 13, + ACTIONS(7977), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399897,74 +375189,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [195803] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5191), 1, - sym_comment, - ACTIONS(5133), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5135), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [195827] = 6, + [191633] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5625), 1, - anon_sym_LPAREN2, - ACTIONS(7975), 1, - anon_sym_DASH, - STATE(5192), 1, - sym_comment, - STATE(7557), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7973), 10, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3213), 1, + aux_sym_record_entry_token1, + ACTIONS(7887), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + ACTIONS(7889), 1, anon_sym_DASH_DASH, - [195855] = 3, + ACTIONS(7891), 1, + anon_sym_DASH, + ACTIONS(7893), 1, + aux_sym_ctrl_match_token1, + STATE(1608), 1, + sym_block, + STATE(1609), 1, + sym_val_closure, + STATE(4931), 1, + sym_comment, + STATE(5027), 1, + aux_sym_ctrl_do_repeat1, + STATE(5943), 1, + sym__flag, + STATE(670), 2, + sym__blosure, + sym_val_variable, + STATE(5900), 2, + sym_short_flag, + sym_long_flag, + [191675] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(5193), 1, + ACTIONS(7979), 1, + aux_sym__immediate_decimal_token2, + STATE(4932), 1, sym_comment, - ACTIONS(8290), 13, + ACTIONS(1565), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1567), 9, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [195877] = 3, - ACTIONS(247), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [191701] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5194), 1, + STATE(4933), 1, sym_comment, - ACTIONS(8292), 13, + ACTIONS(7692), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7690), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399976,17 +375259,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [195899] = 4, + [191725] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5195), 1, + STATE(4934), 1, sym_comment, - ACTIONS(5218), 2, + ACTIONS(2323), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5220), 11, + ACTIONS(2321), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399998,15 +375279,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [195923] = 4, + [191749] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5196), 1, + STATE(4935), 1, sym_comment, - ACTIONS(2407), 2, + ACTIONS(2475), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2405), 11, + ACTIONS(2473), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400018,39 +375299,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [195947] = 11, + [191773] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1457), 1, - aux_sym_unquoted_token2, - ACTIONS(6262), 1, - anon_sym_LPAREN2, - ACTIONS(8118), 1, - anon_sym_DOLLAR, - ACTIONS(8296), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8298), 1, - aux_sym__immediate_decimal_token5, - STATE(5197), 1, + ACTIONS(1890), 1, + anon_sym_DASH, + STATE(4936), 1, sym_comment, - STATE(7054), 1, - sym__immediate_decimal, - ACTIONS(1455), 2, + ACTIONS(1892), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(8294), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3590), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [195984] = 3, - ACTIONS(247), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [191797] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5198), 1, + STATE(4937), 1, sym_comment, - ACTIONS(8206), 12, + ACTIONS(2357), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2355), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400062,35 +375339,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [196005] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(8302), 1, - anon_sym_EQ, - ACTIONS(8304), 1, - anon_sym_COMMA, - ACTIONS(8306), 1, - anon_sym_DASH, - STATE(5199), 1, - sym_comment, - STATE(5358), 1, - aux_sym_shebang_repeat1, - ACTIONS(8300), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [196036] = 3, - ACTIONS(247), 1, + [191821] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5200), 1, + STATE(4938), 1, sym_comment, - ACTIONS(8308), 12, + ACTIONS(2451), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2449), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400102,13 +375359,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [196057] = 3, + [191845] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5201), 1, + STATE(4939), 1, sym_comment, - ACTIONS(8310), 12, + ACTIONS(7981), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400121,14 +375377,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [196078] = 4, + anon_sym_RBRACE, + [191867] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1879), 1, + ACTIONS(2396), 1, anon_sym_DASH, - STATE(5202), 1, + STATE(4940), 1, sym_comment, - ACTIONS(1881), 11, + ACTIONS(2398), 12, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -400140,14 +375398,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - [196101] = 4, + [191891] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2348), 1, + ACTIONS(2392), 1, anon_sym_DASH, - STATE(5203), 1, + STATE(4941), 1, sym_comment, - ACTIONS(2350), 11, + ACTIONS(2394), 12, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -400159,31 +375418,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - [196124] = 4, + [191915] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4942), 1, + sym_comment, + ACTIONS(2041), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2035), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [191939] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4943), 1, + sym_comment, + ACTIONS(2049), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2043), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [191963] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5204), 1, + STATE(4944), 1, sym_comment, - ACTIONS(994), 2, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(996), 10, - sym_identifier, + ACTIONS(7983), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [196147] = 3, - ACTIONS(247), 1, + anon_sym_RBRACE, + [191985] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5205), 1, + STATE(4945), 1, sym_comment, - ACTIONS(8312), 12, + ACTIONS(1078), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1076), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400195,74 +375497,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [196168] = 6, + [192009] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2099), 1, - anon_sym_LPAREN2, - ACTIONS(2103), 1, - aux_sym__unquoted_in_list_token4, - STATE(5206), 1, + STATE(4946), 1, sym_comment, - ACTIONS(2097), 5, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DASH, - ACTIONS(2101), 5, + ACTIONS(2057), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2051), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - [196195] = 6, - ACTIONS(3), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [192033] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2099), 1, - anon_sym_LPAREN2, - ACTIONS(2103), 1, - aux_sym__unquoted_in_list_token4, - STATE(5207), 1, + ACTIONS(7987), 1, + anon_sym_DASH, + STATE(4947), 1, sym_comment, - ACTIONS(2105), 5, + ACTIONS(7985), 12, + anon_sym_EQ, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DASH, - ACTIONS(2107), 5, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - [196222] = 4, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [192057] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5208), 1, + STATE(4948), 1, sym_comment, - ACTIONS(1585), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1587), 9, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [196245] = 3, + ACTIONS(7328), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(7330), 10, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [192080] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5209), 1, + STATE(4949), 1, sym_comment, - ACTIONS(8314), 12, + ACTIONS(7981), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400274,15 +375574,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [196266] = 4, + [192101] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2303), 1, + ACTIONS(7498), 1, anon_sym_DASH, - STATE(5210), 1, + STATE(4950), 1, sym_comment, - ACTIONS(2305), 11, + ACTIONS(7496), 11, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -400293,15 +375593,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [196289] = 4, + [192124] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2352), 1, + ACTIONS(7991), 1, anon_sym_DASH, - STATE(5211), 1, + STATE(4951), 1, sym_comment, - ACTIONS(2354), 11, + ACTIONS(7989), 11, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -400312,15 +375612,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [196312] = 4, + [192147] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1747), 1, + ACTIONS(7995), 1, anon_sym_DASH, - STATE(5212), 1, + STATE(4952), 1, sym_comment, - ACTIONS(1749), 11, + ACTIONS(7993), 11, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -400331,75 +375631,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [196335] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5213), 1, - sym_comment, - ACTIONS(6925), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [196356] = 8, + [192170] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(8140), 1, + ACTIONS(1575), 1, anon_sym_DASH, - ACTIONS(8316), 1, - anon_sym_EQ, - ACTIONS(8318), 1, - anon_sym_COMMA, - STATE(5214), 1, + STATE(4953), 1, sym_comment, - STATE(5358), 1, - aux_sym_shebang_repeat1, - ACTIONS(8134), 7, + ACTIONS(1587), 11, + anon_sym_EQ, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [196387] = 4, + [192193] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8322), 1, + ACTIONS(7999), 1, anon_sym_DASH, - STATE(5215), 1, + STATE(4954), 1, sym_comment, - ACTIONS(8320), 11, + ACTIONS(7997), 11, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [196410] = 4, + [192216] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1855), 1, + ACTIONS(2436), 1, anon_sym_DASH, - STATE(5216), 1, + STATE(4955), 1, sym_comment, - ACTIONS(1857), 11, + ACTIONS(2438), 11, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -400410,13 +375688,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [196433] = 3, + [192239] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5217), 1, + STATE(4956), 1, sym_comment, - ACTIONS(8324), 12, + ACTIONS(6600), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400428,13 +375706,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [196454] = 3, + [192260] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5218), 1, + STATE(4957), 1, sym_comment, - ACTIONS(8326), 12, + ACTIONS(8001), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400447,13 +375724,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [196475] = 3, + [192281] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5219), 1, + STATE(4958), 1, sym_comment, - ACTIONS(8184), 12, - ts_builtin_sym_end, + ACTIONS(8003), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400465,50 +375741,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [196496] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8330), 1, - anon_sym_DASH, - STATE(5220), 1, - sym_comment, - ACTIONS(8328), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [196519] = 4, + [192302] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_DASH, - STATE(5221), 1, + STATE(4959), 1, sym_comment, - ACTIONS(1798), 11, - sym_identifier, + ACTIONS(8005), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [196542] = 3, + [192323] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5222), 1, + STATE(4960), 1, sym_comment, - ACTIONS(8332), 12, + ACTIONS(8007), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400521,18 +375778,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [196563] = 6, + [192344] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5245), 1, - sym__newline, - STATE(687), 1, - aux_sym__pipe_separator, - STATE(5223), 1, + STATE(4961), 1, sym_comment, - STATE(5418), 1, - aux_sym_shebang_repeat1, - ACTIONS(2866), 9, + ACTIONS(8009), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -400542,36 +375795,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [196590] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(8146), 1, - anon_sym_COMMA, - ACTIONS(8148), 1, - anon_sym_DASH, - ACTIONS(8316), 1, - anon_sym_EQ, - STATE(5224), 1, - sym_comment, - STATE(5358), 1, - aux_sym_shebang_repeat1, - ACTIONS(8144), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [196621] = 3, + [192365] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5225), 1, + STATE(4962), 1, sym_comment, - ACTIONS(8162), 12, - ts_builtin_sym_end, + ACTIONS(8011), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400583,13 +375813,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [196642] = 3, + anon_sym_RPAREN, + [192386] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5226), 1, + STATE(4963), 1, sym_comment, - ACTIONS(8182), 12, - ts_builtin_sym_end, + ACTIONS(8013), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400601,31 +375831,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [196663] = 4, + anon_sym_RPAREN, + [192407] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2255), 1, - anon_sym_DASH, - STATE(5227), 1, + STATE(4964), 1, sym_comment, - ACTIONS(2257), 11, - sym_identifier, + ACTIONS(8015), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [196686] = 3, + [192428] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5228), 1, + STATE(4965), 1, sym_comment, - ACTIONS(8164), 12, + ACTIONS(6608), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -400638,89 +375868,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [196707] = 6, + [192449] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8334), 1, - anon_sym_DOT, - ACTIONS(8336), 1, - aux_sym__immediate_decimal_token2, - STATE(5229), 1, + STATE(4966), 1, sym_comment, - ACTIONS(1473), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1475), 7, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [196734] = 13, + ACTIONS(8017), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [192470] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2746), 1, - anon_sym_DOLLAR, - ACTIONS(5479), 1, + ACTIONS(1549), 1, + anon_sym_RBRACK, + ACTIONS(1551), 1, + sym__entry_separator, + ACTIONS(1553), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(7825), 1, anon_sym_LPAREN2, - ACTIONS(5483), 1, + ACTIONS(8019), 1, + anon_sym_DOLLAR, + ACTIONS(8021), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8023), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5485), 1, + ACTIONS(8025), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5487), 1, + ACTIONS(8027), 1, aux_sym__immediate_decimal_token5, - ACTIONS(5635), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8338), 1, - anon_sym_RBRACK, - ACTIONS(8340), 1, - anon_sym_DOLLAR2, - ACTIONS(8342), 1, - aux_sym__immediate_decimal_token1, - STATE(2829), 1, - sym__immediate_decimal, - STATE(5230), 1, + STATE(4967), 1, sym_comment, - STATE(2947), 2, + STATE(6637), 1, + sym__immediate_decimal, + STATE(2898), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [196775] = 13, - ACTIONS(3), 1, + [192511] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5564), 1, - anon_sym_LPAREN2, - ACTIONS(5568), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5570), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5786), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8340), 1, - anon_sym_DOLLAR2, - ACTIONS(8344), 1, - anon_sym_RBRACK, - ACTIONS(8346), 1, - anon_sym_DOLLAR, - ACTIONS(8348), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8350), 1, - aux_sym__immediate_decimal_token5, - STATE(2946), 1, - sym__immediate_decimal, - STATE(5231), 1, + STATE(4968), 1, sym_comment, - STATE(3060), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [196816] = 3, + ACTIONS(8029), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [192532] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5232), 1, + STATE(4969), 1, sym_comment, - ACTIONS(8352), 12, + ACTIONS(8031), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400733,31 +375950,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [196837] = 4, + [192553] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2359), 1, - anon_sym_DASH, - STATE(5233), 1, + STATE(4970), 1, sym_comment, - ACTIONS(2361), 11, - sym_identifier, + ACTIONS(8033), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [196860] = 3, + [192574] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5234), 1, + STATE(4971), 1, sym_comment, - ACTIONS(8354), 12, + ACTIONS(6662), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400770,50 +375986,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [196881] = 4, + [192595] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5235), 1, + STATE(4972), 1, sym_comment, - ACTIONS(986), 2, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(988), 10, - sym_identifier, + ACTIONS(8035), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [196904] = 4, + [192616] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5236), 1, + STATE(4973), 1, sym_comment, - ACTIONS(1519), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1521), 9, + ACTIONS(7819), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [192637] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8037), 1, + anon_sym_DOT, + ACTIONS(8039), 1, + aux_sym__immediate_decimal_token2, + STATE(4974), 1, + sym_comment, + ACTIONS(1497), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1499), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [196927] = 3, + sym__entry_separator, + [192664] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5237), 1, + STATE(4975), 1, sym_comment, - ACTIONS(8356), 12, + ACTIONS(8041), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400826,54 +376061,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [196948] = 8, + [192685] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(8302), 1, - anon_sym_EQ, - ACTIONS(8360), 1, - anon_sym_COMMA, - ACTIONS(8362), 1, - anon_sym_DASH, - STATE(5238), 1, + STATE(4976), 1, sym_comment, - STATE(5358), 1, - aux_sym_shebang_repeat1, - ACTIONS(8358), 7, - sym_identifier, + ACTIONS(7881), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [196979] = 4, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [192706] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5239), 1, + STATE(4977), 1, sym_comment, - ACTIONS(990), 2, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(992), 10, - sym_identifier, + ACTIONS(7883), 12, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [197002] = 3, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [192727] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5240), 1, + STATE(4978), 1, sym_comment, - ACTIONS(8364), 12, + ACTIONS(7857), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400885,44 +376115,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [197023] = 12, - ACTIONS(247), 1, + [192748] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8043), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8045), 1, + aux_sym__immediate_decimal_token2, + STATE(4979), 1, + sym_comment, + ACTIONS(1517), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1519), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [192775] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8216), 1, + ACTIONS(1479), 1, + anon_sym_RBRACE, + ACTIONS(1493), 1, + sym__entry_separator, + ACTIONS(2986), 1, anon_sym_DOLLAR, - ACTIONS(8218), 1, - anon_sym_DASH_DASH, - ACTIONS(8220), 1, - anon_sym_DASH, - ACTIONS(8222), 1, - aux_sym_ctrl_match_token1, - STATE(1814), 1, - sym_val_closure, - STATE(1850), 1, - sym_block, - STATE(5241), 1, + ACTIONS(7825), 1, + anon_sym_LPAREN2, + ACTIONS(7847), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7849), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7851), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7853), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7901), 1, + anon_sym_DOT, + STATE(4980), 1, sym_comment, - STATE(5272), 1, - aux_sym_ctrl_do_repeat1, - STATE(6260), 1, - sym__flag, - STATE(674), 2, - sym__blosure, + STATE(6032), 1, + sym__immediate_decimal, + STATE(5792), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - STATE(6245), 2, - sym_short_flag, - sym_long_flag, - [197062] = 5, + [192816] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1525), 1, + ACTIONS(7392), 1, anon_sym_DASH, - ACTIONS(7303), 1, - aux_sym__unquoted_in_list_token2, - STATE(5242), 1, + STATE(4981), 1, sym_comment, - ACTIONS(1537), 10, + ACTIONS(7390), 11, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -400933,40 +376183,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [197087] = 13, - ACTIONS(3), 1, + [192839] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5564), 1, + ACTIONS(1495), 1, + aux_sym_unquoted_token2, + ACTIONS(6082), 1, anon_sym_LPAREN2, - ACTIONS(5568), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5570), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5786), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8340), 1, - anon_sym_DOLLAR2, - ACTIONS(8346), 1, + ACTIONS(7839), 1, anon_sym_DOLLAR, - ACTIONS(8348), 1, + ACTIONS(8049), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8350), 1, + ACTIONS(8051), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8366), 1, - anon_sym_RBRACK, - STATE(2946), 1, - sym__immediate_decimal, - STATE(5243), 1, + STATE(4982), 1, sym_comment, - STATE(3060), 2, + STATE(6756), 1, + sym__immediate_decimal, + ACTIONS(1493), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(8047), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3369), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [197128] = 3, + [192876] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5244), 1, + STATE(4983), 1, sym_comment, - ACTIONS(8368), 12, + ACTIONS(8053), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400979,108 +376227,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [197149] = 4, + [192897] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2263), 1, - anon_sym_DASH, - STATE(5245), 1, + STATE(4984), 1, sym_comment, - ACTIONS(2265), 11, - sym_identifier, + ACTIONS(8055), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [197172] = 4, + [192918] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5246), 1, + STATE(4985), 1, sym_comment, - ACTIONS(1473), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1475), 9, - ts_builtin_sym_end, + ACTIONS(8057), 12, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [197195] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1778), 1, - anon_sym_DASH, - STATE(5247), 1, - sym_comment, - ACTIONS(1780), 11, - sym_identifier, - sym__newline, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [197218] = 4, + [192939] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_DASH, - STATE(5248), 1, + STATE(4986), 1, sym_comment, - ACTIONS(2297), 11, - sym_identifier, + ACTIONS(8059), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [197241] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5249), 1, - sym_comment, - ACTIONS(7564), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7566), 10, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [197264] = 3, + [192960] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5250), 1, + STATE(4987), 1, sym_comment, - ACTIONS(8290), 12, - ts_builtin_sym_end, + ACTIONS(8061), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -401092,80 +376298,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [197285] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8370), 1, - anon_sym_DOT, - ACTIONS(8372), 1, - aux_sym__immediate_decimal_token2, - STATE(5251), 1, - sym_comment, - ACTIONS(1475), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1473), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [197312] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1427), 1, - aux_sym_ctrl_match_token1, - ACTIONS(1429), 1, - aux_sym_unquoted_token2, - ACTIONS(6262), 1, - anon_sym_LPAREN2, - ACTIONS(8374), 1, - anon_sym_DOLLAR, - ACTIONS(8376), 1, - anon_sym_DOT, - ACTIONS(8380), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8382), 1, - aux_sym__immediate_decimal_token5, - STATE(5252), 1, - sym_comment, - STATE(6219), 1, - sym__immediate_decimal, - ACTIONS(8378), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6807), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [197351] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8386), 1, - anon_sym_DASH, - STATE(5253), 1, - sym_comment, - ACTIONS(8384), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [197374] = 3, + [192981] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5254), 1, + STATE(4988), 1, sym_comment, - ACTIONS(6849), 12, - ts_builtin_sym_end, + ACTIONS(8063), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -401177,15 +376316,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [197395] = 3, + anon_sym_RPAREN, + [193002] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(5255), 1, - sym_comment, - ACTIONS(8160), 12, - ts_builtin_sym_end, + ACTIONS(5095), 1, sym__newline, - anon_sym_SEMI, + STATE(681), 1, + aux_sym__pipe_separator, + STATE(4989), 1, + sym_comment, + STATE(5112), 1, + aux_sym_shebang_repeat1, + ACTIONS(2936), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -401195,12 +376338,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [197416] = 3, + [193029] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5256), 1, + STATE(4990), 1, sym_comment, - ACTIONS(8388), 12, + ACTIONS(8065), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -401213,12 +376356,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [197437] = 3, + [193050] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5257), 1, + STATE(4991), 1, sym_comment, - ACTIONS(8390), 12, + ACTIONS(8067), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -401231,50 +376374,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [197458] = 4, + [193071] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6189), 1, - anon_sym_DASH, - STATE(5258), 1, + STATE(4992), 1, sym_comment, - ACTIONS(6191), 11, - sym_identifier, + ACTIONS(7959), 12, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [197481] = 4, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [193092] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2340), 1, - anon_sym_DASH, - STATE(5259), 1, + STATE(4993), 1, sym_comment, - ACTIONS(2342), 11, - sym_identifier, + ACTIONS(8069), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [197504] = 3, + [193113] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5260), 1, + STATE(4994), 1, sym_comment, - ACTIONS(8392), 12, + ACTIONS(8071), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -401287,12 +376428,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [197525] = 3, + [193134] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5261), 1, + STATE(4995), 1, sym_comment, - ACTIONS(8394), 12, + ACTIONS(7919), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -401304,82 +376446,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [197546] = 6, + [193155] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1429), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1690), 1, - anon_sym_DASH, - ACTIONS(1692), 1, - anon_sym_LPAREN2, - STATE(5262), 1, + STATE(4996), 1, sym_comment, - ACTIONS(1698), 9, - sym_identifier, + ACTIONS(7927), 12, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [197573] = 4, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [193176] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2251), 1, - anon_sym_DASH, - STATE(5263), 1, + STATE(4997), 1, sym_comment, - ACTIONS(2253), 11, - sym_identifier, + ACTIONS(1497), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1499), 9, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_SEMI, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [197596] = 13, - ACTIONS(3), 1, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [193199] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1443), 1, - anon_sym_RBRACE, - ACTIONS(1455), 1, - sym__entry_separator, - ACTIONS(1457), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(8086), 1, + ACTIONS(1553), 1, + aux_sym_unquoted_token2, + ACTIONS(6082), 1, anon_sym_LPAREN2, - ACTIONS(8396), 1, + ACTIONS(7839), 1, anon_sym_DOLLAR, - ACTIONS(8398), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8400), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8402), 1, + ACTIONS(8049), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8404), 1, + ACTIONS(8051), 1, aux_sym__immediate_decimal_token5, - STATE(5264), 1, + STATE(4998), 1, sym_comment, - STATE(6862), 1, + STATE(7293), 1, sym__immediate_decimal, - STATE(3121), 2, + ACTIONS(1551), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(8047), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3360), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [197637] = 3, + [193236] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5265), 1, + STATE(4999), 1, sym_comment, - ACTIONS(8186), 12, - ts_builtin_sym_end, + ACTIONS(8073), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -401391,109 +376526,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [197658] = 6, + anon_sym_RPAREN, + [193257] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8406), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8408), 1, - aux_sym__immediate_decimal_token2, - STATE(5266), 1, + STATE(5000), 1, sym_comment, - ACTIONS(1481), 3, + ACTIONS(1517), 3, anon_sym_DASH, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1483), 7, - anon_sym_DOLLAR, + ACTIONS(1519), 9, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + anon_sym_as, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [197685] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1741), 1, - anon_sym_DASH, - STATE(5267), 1, - sym_comment, - ACTIONS(1745), 11, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [197708] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2363), 1, - anon_sym_DASH, - STATE(5268), 1, - sym_comment, - ACTIONS(2365), 11, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [197731] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2367), 1, - anon_sym_DASH, - STATE(5269), 1, - sym_comment, - ACTIONS(2369), 11, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [197754] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8412), 1, - anon_sym_DASH, - STATE(5270), 1, - sym_comment, - ACTIONS(8410), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [197777] = 3, + [193280] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5271), 1, + STATE(5001), 1, sym_comment, - ACTIONS(8414), 12, + ACTIONS(8075), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -401506,100 +376564,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [197798] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8216), 1, - anon_sym_DOLLAR, - ACTIONS(8218), 1, - anon_sym_DASH_DASH, - ACTIONS(8220), 1, - anon_sym_DASH, - ACTIONS(8222), 1, - aux_sym_ctrl_match_token1, - STATE(1814), 1, - sym_val_closure, - STATE(1850), 1, - sym_block, - STATE(5272), 1, - sym_comment, - STATE(5785), 1, - aux_sym_ctrl_do_repeat1, - STATE(6260), 1, - sym__flag, - STATE(673), 2, - sym__blosure, - sym_val_variable, - STATE(6245), 2, - sym_short_flag, - sym_long_flag, - [197837] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2311), 1, - anon_sym_DASH, - STATE(5273), 1, - sym_comment, - ACTIONS(2313), 11, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [197860] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(8108), 1, - anon_sym_COMMA, - ACTIONS(8110), 1, - anon_sym_DASH, - ACTIONS(8316), 1, - anon_sym_EQ, - STATE(5274), 1, - sym_comment, - STATE(5358), 1, - aux_sym_shebang_repeat1, - ACTIONS(8106), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [197891] = 4, + [193301] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2311), 1, - anon_sym_DASH, - STATE(5275), 1, + STATE(5002), 1, sym_comment, - ACTIONS(2313), 11, - sym_identifier, + ACTIONS(8077), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [197914] = 3, + [193322] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5276), 1, + STATE(5003), 1, sym_comment, - ACTIONS(8416), 12, + ACTIONS(8079), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -401612,33 +376600,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [197935] = 6, + [193343] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8418), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8420), 1, - aux_sym__immediate_decimal_token2, - STATE(5277), 1, + STATE(5004), 1, sym_comment, - ACTIONS(1483), 4, - anon_sym_DOLLAR, + ACTIONS(1565), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1567), 9, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, + anon_sym_as, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1481), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token2, - [197962] = 3, + [193366] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5278), 1, + STATE(5005), 1, sym_comment, - ACTIONS(8422), 12, + ACTIONS(8081), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -401651,96 +376637,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [197983] = 4, + [193387] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1899), 1, - anon_sym_DASH, - STATE(5279), 1, + STATE(5006), 1, sym_comment, - ACTIONS(1901), 11, - sym_identifier, + ACTIONS(8083), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [198006] = 4, + [193408] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1835), 1, - anon_sym_DASH, - STATE(5280), 1, + STATE(5007), 1, sym_comment, - ACTIONS(1837), 11, - sym_identifier, + ACTIONS(8085), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [198029] = 6, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [193429] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1457), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2117), 1, - anon_sym_DASH, - ACTIONS(2119), 1, - anon_sym_LPAREN2, - STATE(5281), 1, + STATE(5008), 1, sym_comment, - ACTIONS(2121), 9, - sym_identifier, + ACTIONS(8087), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [198056] = 4, + [193450] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8426), 1, - anon_sym_DASH, - STATE(5282), 1, + STATE(5009), 1, sym_comment, - ACTIONS(8424), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(1639), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1641), 9, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_SEMI, anon_sym_DASH_DASH, - [198079] = 6, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [193473] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5245), 1, - sym__newline, - STATE(685), 1, - aux_sym__pipe_separator, - STATE(5283), 1, + STATE(5010), 1, sym_comment, - STATE(5418), 1, - aux_sym_shebang_repeat1, - ACTIONS(2866), 9, + ACTIONS(8089), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -401750,31 +376727,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [198106] = 4, + anon_sym_RPAREN, + [193494] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2371), 1, - anon_sym_DASH, - STATE(5284), 1, + STATE(5011), 1, sym_comment, - ACTIONS(2373), 11, - sym_identifier, + ACTIONS(7937), 12, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [198129] = 3, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [193515] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5285), 1, + STATE(5012), 1, sym_comment, - ACTIONS(8236), 12, + ACTIONS(7939), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -401787,72 +376764,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [198150] = 4, + [193536] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2379), 1, - anon_sym_DASH, - STATE(5286), 1, + STATE(5013), 1, sym_comment, - ACTIONS(2381), 11, - sym_identifier, + ACTIONS(8091), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [198173] = 4, + [193557] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8430), 1, - anon_sym_DASH, - STATE(5287), 1, + STATE(5014), 1, sym_comment, - ACTIONS(8428), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8093), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [198196] = 6, - ACTIONS(3), 1, + [193578] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2081), 1, - anon_sym_LPAREN2, - ACTIONS(2083), 1, - aux_sym__unquoted_in_list_token4, - STATE(5288), 1, + STATE(5015), 1, sym_comment, - ACTIONS(1006), 5, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DASH, - ACTIONS(1008), 5, + ACTIONS(8095), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - [198223] = 3, + [193599] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5289), 1, + STATE(5016), 1, sym_comment, - ACTIONS(6863), 12, - ts_builtin_sym_end, + ACTIONS(8097), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -401864,31 +376835,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [198244] = 4, + anon_sym_RPAREN, + [193620] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2336), 1, - anon_sym_DASH, - STATE(5290), 1, + STATE(5017), 1, sym_comment, - ACTIONS(2338), 11, - sym_identifier, + ACTIONS(8099), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [198267] = 3, + [193641] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5291), 1, + STATE(5018), 1, sym_comment, - ACTIONS(8432), 12, + ACTIONS(8101), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -401901,134 +376872,322 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [198288] = 4, + [193662] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1839), 1, - anon_sym_DASH, - STATE(5292), 1, + STATE(5019), 1, sym_comment, - ACTIONS(1841), 11, - sym_identifier, + ACTIONS(8103), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [198311] = 4, + [193683] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2383), 1, - anon_sym_DASH, - STATE(5293), 1, + STATE(5020), 1, sym_comment, - ACTIONS(2385), 11, - sym_identifier, + ACTIONS(8105), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [198334] = 4, + [193704] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8436), 1, + ACTIONS(7889), 1, + anon_sym_DASH_DASH, + ACTIONS(7891), 1, anon_sym_DASH, - STATE(5294), 1, + ACTIONS(8107), 1, + anon_sym_DOLLAR, + ACTIONS(8109), 1, + aux_sym_ctrl_match_token1, + STATE(1896), 1, + sym_block, + STATE(1899), 1, + sym_val_closure, + STATE(5021), 1, sym_comment, - ACTIONS(8434), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, + STATE(5025), 1, + aux_sym_ctrl_do_repeat1, + STATE(5943), 1, + sym__flag, + STATE(677), 2, + sym__blosure, + sym_val_variable, + STATE(5900), 2, + sym_short_flag, + sym_long_flag, + [193743] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1493), 1, + sym__entry_separator, + ACTIONS(7825), 1, + anon_sym_LPAREN2, + ACTIONS(7907), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7909), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8019), 1, + anon_sym_DOLLAR, + ACTIONS(8111), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8113), 1, + aux_sym__immediate_decimal_token3, + STATE(5022), 1, + sym_comment, + STATE(7279), 1, + sym__immediate_decimal, + ACTIONS(1479), 2, + anon_sym_RBRACE, + anon_sym__, + STATE(6828), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [193782] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1479), 1, + anon_sym_RBRACE, + ACTIONS(1493), 1, + sym__entry_separator, + ACTIONS(1495), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7825), 1, + anon_sym_LPAREN2, + ACTIONS(8019), 1, + anon_sym_DOLLAR, + ACTIONS(8115), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8117), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8119), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8121), 1, + aux_sym__immediate_decimal_token5, + STATE(5023), 1, + sym_comment, + STATE(6118), 1, + sym__immediate_decimal, + STATE(2901), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [193823] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1479), 1, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1493), 1, + sym__entry_separator, + ACTIONS(1495), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(7825), 1, + anon_sym_LPAREN2, + ACTIONS(8019), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [198357] = 4, + ACTIONS(8021), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8023), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8025), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8027), 1, + aux_sym__immediate_decimal_token5, + STATE(5024), 1, + sym_comment, + STATE(6594), 1, + sym__immediate_decimal, + STATE(2901), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [193864] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8440), 1, + ACTIONS(7889), 1, + anon_sym_DASH_DASH, + ACTIONS(7891), 1, anon_sym_DASH, - STATE(5295), 1, + ACTIONS(8107), 1, + anon_sym_DOLLAR, + ACTIONS(8109), 1, + aux_sym_ctrl_match_token1, + STATE(1896), 1, + sym_block, + STATE(1899), 1, + sym_val_closure, + STATE(5025), 1, sym_comment, - ACTIONS(8438), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + STATE(5422), 1, + aux_sym_ctrl_do_repeat1, + STATE(5943), 1, + sym__flag, + STATE(678), 2, + sym__blosure, + sym_val_variable, + STATE(5900), 2, + sym_short_flag, + sym_long_flag, + [193903] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7887), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + ACTIONS(7889), 1, anon_sym_DASH_DASH, - [198380] = 4, + ACTIONS(7891), 1, + anon_sym_DASH, + ACTIONS(7893), 1, + aux_sym_ctrl_match_token1, + STATE(1608), 1, + sym_block, + STATE(1609), 1, + sym_val_closure, + STATE(5026), 1, + sym_comment, + STATE(5027), 1, + aux_sym_ctrl_do_repeat1, + STATE(5943), 1, + sym__flag, + STATE(670), 2, + sym__blosure, + sym_val_variable, + STATE(5900), 2, + sym_short_flag, + sym_long_flag, + [193942] = 12, ACTIONS(247), 1, anon_sym_POUND, - STATE(5296), 1, - sym_comment, - ACTIONS(1589), 2, - anon_sym_DASH, - aux_sym__unquoted_in_list_token2, - ACTIONS(1591), 10, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(7887), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + ACTIONS(7889), 1, anon_sym_DASH_DASH, + ACTIONS(7891), 1, + anon_sym_DASH, + ACTIONS(7893), 1, + aux_sym_ctrl_match_token1, + STATE(1608), 1, + sym_block, + STATE(1609), 1, + sym_val_closure, + STATE(5027), 1, + sym_comment, + STATE(5422), 1, + aux_sym_ctrl_do_repeat1, + STATE(5943), 1, + sym__flag, + STATE(671), 2, + sym__blosure, + sym_val_variable, + STATE(5900), 2, + sym_short_flag, + sym_long_flag, + [193981] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1551), 1, + sym__entry_separator, + ACTIONS(7825), 1, anon_sym_LPAREN2, - [198403] = 12, + ACTIONS(7907), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7909), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8019), 1, + anon_sym_DOLLAR, + ACTIONS(8111), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8113), 1, + aux_sym__immediate_decimal_token3, + STATE(5028), 1, + sym_comment, + STATE(6990), 1, + sym__immediate_decimal, + ACTIONS(1549), 2, + anon_sym_RBRACE, + anon_sym__, + STATE(6948), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [194020] = 13, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1549), 1, + anon_sym_RBRACE, + ACTIONS(1551), 1, + sym__entry_separator, ACTIONS(1553), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7825), 1, + anon_sym_LPAREN2, + ACTIONS(8019), 1, + anon_sym_DOLLAR, + ACTIONS(8115), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8117), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8119), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8121), 1, + aux_sym__immediate_decimal_token5, + STATE(5029), 1, + sym_comment, + STATE(6242), 1, + sym__immediate_decimal, + STATE(2898), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [194061] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1515), 1, sym__entry_separator, - ACTIONS(8086), 1, + ACTIONS(7825), 1, anon_sym_LPAREN2, - ACTIONS(8094), 1, + ACTIONS(7851), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8096), 1, + ACTIONS(7853), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8396), 1, + ACTIONS(8019), 1, anon_sym_DOLLAR, - ACTIONS(8442), 1, + ACTIONS(8123), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8444), 1, + ACTIONS(8125), 1, aux_sym__immediate_decimal_token3, - STATE(3109), 1, + STATE(2900), 1, sym__immediate_decimal, - STATE(5297), 1, + STATE(5030), 1, sym_comment, - ACTIONS(1551), 2, + ACTIONS(1505), 2, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(3106), 2, + STATE(2875), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [198442] = 3, + [194100] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5298), 1, + STATE(5031), 1, sym_comment, - ACTIONS(8446), 12, + ACTIONS(7983), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402040,93 +377199,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [198463] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8450), 1, - anon_sym_DASH, - STATE(5299), 1, - sym_comment, - ACTIONS(8448), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [198486] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8454), 1, - anon_sym_DASH, - STATE(5300), 1, - sym_comment, - ACTIONS(8452), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [198509] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2326), 1, - anon_sym_DASH, - STATE(5301), 1, - sym_comment, - ACTIONS(2328), 11, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [198532] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(8302), 1, - anon_sym_EQ, - ACTIONS(8458), 1, - anon_sym_COMMA, - ACTIONS(8460), 1, - anon_sym_DASH, - STATE(5302), 1, - sym_comment, - STATE(5358), 1, - aux_sym_shebang_repeat1, - ACTIONS(8456), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [198563] = 3, + [194121] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5303), 1, + STATE(5032), 1, sym_comment, - ACTIONS(8462), 12, + ACTIONS(7837), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402138,34 +377217,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [198584] = 6, - ACTIONS(247), 1, + [194142] = 13, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5304), 1, + ACTIONS(5375), 1, + anon_sym_LPAREN2, + ACTIONS(5379), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5381), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5625), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8127), 1, + anon_sym_RBRACK, + ACTIONS(8129), 1, + anon_sym_DOLLAR, + ACTIONS(8131), 1, + anon_sym_DOLLAR2, + ACTIONS(8133), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8135), 1, + aux_sym__immediate_decimal_token5, + STATE(2753), 1, + sym__immediate_decimal, + STATE(5033), 1, sym_comment, - ACTIONS(6931), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6937), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6933), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6935), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [198611] = 3, + STATE(2829), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [194183] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5305), 1, + STATE(5034), 1, sym_comment, - ACTIONS(8198), 12, + ACTIONS(7917), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -402178,12 +377263,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [198632] = 3, + [194204] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5306), 1, + STATE(5035), 1, sym_comment, - ACTIONS(8464), 12, + ACTIONS(6668), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402196,82 +377281,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [198653] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5307), 1, - sym_comment, - ACTIONS(7560), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7562), 10, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [198676] = 13, + [194225] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5564), 1, + ACTIONS(5375), 1, anon_sym_LPAREN2, - ACTIONS(5568), 1, + ACTIONS(5379), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5570), 1, + ACTIONS(5381), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5786), 1, + ACTIONS(5625), 1, aux_sym__unquoted_in_list_token3, - ACTIONS(8340), 1, - anon_sym_DOLLAR2, - ACTIONS(8346), 1, + ACTIONS(8129), 1, anon_sym_DOLLAR, - ACTIONS(8348), 1, + ACTIONS(8131), 1, + anon_sym_DOLLAR2, + ACTIONS(8133), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8350), 1, + ACTIONS(8135), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8466), 1, + ACTIONS(8137), 1, anon_sym_RBRACK, - STATE(2946), 1, + STATE(2753), 1, sym__immediate_decimal, - STATE(5308), 1, + STATE(5036), 1, sym_comment, - STATE(3060), 2, + STATE(2829), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [198717] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(8302), 1, - anon_sym_EQ, - ACTIONS(8470), 1, - anon_sym_COMMA, - ACTIONS(8472), 1, - anon_sym_DASH, - STATE(5309), 1, - sym_comment, - STATE(5358), 1, - aux_sym_shebang_repeat1, - ACTIONS(8468), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [198748] = 3, + [194266] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5310), 1, + STATE(5037), 1, sym_comment, - ACTIONS(8474), 12, + ACTIONS(7933), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402283,38 +377327,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [198769] = 8, + [194287] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(8302), 1, - anon_sym_EQ, - ACTIONS(8478), 1, - anon_sym_COMMA, - ACTIONS(8480), 1, + ACTIONS(8141), 1, anon_sym_DASH, - STATE(5311), 1, + STATE(5038), 1, sym_comment, - STATE(5358), 1, - aux_sym_shebang_repeat1, - ACTIONS(8476), 7, + ACTIONS(8139), 11, + anon_sym_EQ, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [198800] = 4, + [194310] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1006), 1, + ACTIONS(7487), 1, anon_sym_DASH, - STATE(5312), 1, + STATE(5039), 1, sym_comment, - ACTIONS(1008), 11, + ACTIONS(7485), 11, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -402325,13 +377365,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [198823] = 3, + [194333] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5375), 1, + anon_sym_LPAREN2, + ACTIONS(5379), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5381), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5625), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8129), 1, + anon_sym_DOLLAR, + ACTIONS(8131), 1, + anon_sym_DOLLAR2, + ACTIONS(8133), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8135), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8143), 1, + anon_sym_RBRACK, + STATE(2753), 1, + sym__immediate_decimal, + STATE(5040), 1, + sym_comment, + STATE(2829), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [194374] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5313), 1, + STATE(5041), 1, sym_comment, - ACTIONS(8482), 12, + ACTIONS(8145), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402344,138 +377411,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [198844] = 10, + [194395] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8149), 1, + anon_sym_DASH, + STATE(5042), 1, + sym_comment, + ACTIONS(8147), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [194418] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6262), 1, + ACTIONS(8149), 1, + anon_sym_DASH, + STATE(5043), 1, + sym_comment, + ACTIONS(8147), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [194441] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5375), 1, anon_sym_LPAREN2, - ACTIONS(6268), 1, + ACTIONS(5379), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5381), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5625), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8129), 1, + anon_sym_DOLLAR, + ACTIONS(8131), 1, + anon_sym_DOLLAR2, + ACTIONS(8133), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6270), 1, + ACTIONS(8135), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8118), 1, - anon_sym_DOLLAR, - STATE(3581), 1, + ACTIONS(8151), 1, + anon_sym_RBRACK, + STATE(2753), 1, sym__immediate_decimal, - STATE(5314), 1, + STATE(5044), 1, sym_comment, - ACTIONS(6286), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3579), 2, + STATE(2829), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1441), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [198879] = 11, - ACTIONS(247), 1, + [194482] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6260), 1, - anon_sym_DOLLAR, - ACTIONS(6262), 1, + ACTIONS(1515), 1, + sym__entry_separator, + ACTIONS(7825), 1, anon_sym_LPAREN2, - ACTIONS(6319), 1, - anon_sym_DOT, - ACTIONS(8380), 1, + ACTIONS(7907), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8382), 1, + ACTIONS(7909), 1, aux_sym__immediate_decimal_token5, - STATE(5315), 1, - sym_comment, - STATE(6377), 1, - sym__immediate_decimal, - ACTIONS(1427), 2, - sym__newline, - aux_sym_ctrl_match_token1, - ACTIONS(8378), 2, + ACTIONS(8019), 1, + anon_sym_DOLLAR, + ACTIONS(8111), 1, aux_sym__immediate_decimal_token1, + ACTIONS(8113), 1, aux_sym__immediate_decimal_token3, - STATE(6379), 2, + STATE(5045), 1, + sym_comment, + STATE(6805), 1, + sym__immediate_decimal, + ACTIONS(1505), 2, + anon_sym_RBRACE, + anon_sym__, + STATE(6790), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [198916] = 10, - ACTIONS(247), 1, + [194521] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6262), 1, + ACTIONS(1619), 1, + sym__entry_separator, + ACTIONS(7825), 1, anon_sym_LPAREN2, - ACTIONS(6268), 1, + ACTIONS(7907), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6270), 1, + ACTIONS(7909), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8118), 1, + ACTIONS(8019), 1, anon_sym_DOLLAR, - STATE(3585), 1, - sym__immediate_decimal, - STATE(5316), 1, - sym_comment, - ACTIONS(6286), 2, + ACTIONS(8111), 1, aux_sym__immediate_decimal_token1, + ACTIONS(8113), 1, aux_sym__immediate_decimal_token3, - STATE(3584), 2, + STATE(5046), 1, + sym_comment, + STATE(6785), 1, + sym__immediate_decimal, + ACTIONS(1617), 2, + anon_sym_RBRACE, + anon_sym__, + STATE(6779), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1553), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [198951] = 10, - ACTIONS(247), 1, + [194560] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6262), 1, + ACTIONS(1623), 1, + sym__entry_separator, + ACTIONS(7825), 1, anon_sym_LPAREN2, - ACTIONS(6268), 1, + ACTIONS(7907), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6270), 1, + ACTIONS(7909), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8118), 1, + ACTIONS(8019), 1, anon_sym_DOLLAR, - STATE(3587), 1, - sym__immediate_decimal, - STATE(5317), 1, - sym_comment, - ACTIONS(6286), 2, + ACTIONS(8111), 1, aux_sym__immediate_decimal_token1, + ACTIONS(8113), 1, aux_sym__immediate_decimal_token3, - STATE(3586), 2, + STATE(5047), 1, + sym_comment, + STATE(6845), 1, + sym__immediate_decimal, + ACTIONS(1621), 2, + anon_sym_RBRACE, + anon_sym__, + STATE(6824), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1557), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [198986] = 10, - ACTIONS(247), 1, + [194599] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6262), 1, + ACTIONS(1563), 1, + sym__entry_separator, + ACTIONS(7825), 1, anon_sym_LPAREN2, - ACTIONS(6268), 1, + ACTIONS(7907), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6270), 1, + ACTIONS(7909), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8118), 1, + ACTIONS(8019), 1, anon_sym_DOLLAR, - STATE(3589), 1, - sym__immediate_decimal, - STATE(5318), 1, - sym_comment, - ACTIONS(6286), 2, + ACTIONS(8111), 1, aux_sym__immediate_decimal_token1, + ACTIONS(8113), 1, aux_sym__immediate_decimal_token3, - STATE(3611), 2, + STATE(5048), 1, + sym_comment, + STATE(6893), 1, + sym__immediate_decimal, + ACTIONS(1561), 2, + anon_sym_RBRACE, + anon_sym__, + STATE(6855), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1509), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [199021] = 3, + [194638] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5319), 1, + STATE(5049), 1, sym_comment, - ACTIONS(8484), 12, + ACTIONS(8153), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402488,61 +377603,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [199042] = 8, + [194659] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, + STATE(5050), 1, + sym_comment, + ACTIONS(8155), 12, sym__newline, - ACTIONS(8248), 1, - anon_sym_COMMA, - ACTIONS(8250), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [194680] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2061), 1, anon_sym_DASH, - ACTIONS(8316), 1, - anon_sym_EQ, - STATE(5320), 1, + STATE(5051), 1, sym_comment, - STATE(5358), 1, - aux_sym_shebang_repeat1, - ACTIONS(8246), 7, + ACTIONS(2067), 11, + anon_sym_EQ, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [199073] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6260), 1, - anon_sym_DOLLAR, - ACTIONS(6262), 1, - anon_sym_LPAREN2, - ACTIONS(6264), 1, - anon_sym_DOT, - ACTIONS(8380), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8382), 1, - aux_sym__immediate_decimal_token5, - STATE(5321), 1, - sym_comment, - STATE(6378), 1, - sym__immediate_decimal, - ACTIONS(1441), 2, - sym__newline, - aux_sym_ctrl_match_token1, - ACTIONS(8378), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6204), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [199110] = 3, + [194703] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5322), 1, + STATE(5052), 1, sym_comment, - ACTIONS(8486), 12, + ACTIONS(7875), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402554,13 +377658,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [199131] = 3, + [194724] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5323), 1, + STATE(5053), 1, sym_comment, - ACTIONS(8488), 12, + ACTIONS(8157), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402573,39 +377676,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [199152] = 12, + [194745] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8218), 1, - anon_sym_DASH_DASH, - ACTIONS(8220), 1, - anon_sym_DASH, - ACTIONS(8490), 1, - anon_sym_DOLLAR, - ACTIONS(8492), 1, - aux_sym_ctrl_match_token1, - STATE(1997), 1, - sym_block, - STATE(2090), 1, - sym_val_closure, - STATE(5324), 1, - sym_comment, - STATE(5381), 1, - aux_sym_ctrl_do_repeat1, - STATE(6260), 1, - sym__flag, - STATE(682), 2, - sym__blosure, - sym_val_variable, - STATE(6245), 2, - sym_short_flag, - sym_long_flag, - [199191] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5325), 1, + STATE(5054), 1, sym_comment, - ACTIONS(8494), 12, + ACTIONS(8159), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402618,14 +377694,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [199212] = 3, + [194766] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(5326), 1, - sym_comment, - ACTIONS(8496), 12, + ACTIONS(5095), 1, sym__newline, - anon_sym_SEMI, + STATE(683), 1, + aux_sym__pipe_separator, + STATE(5055), 1, + sym_comment, + STATE(5112), 1, + aux_sym_shebang_repeat1, + ACTIONS(2936), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -402635,51 +377715,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [199233] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2344), 1, - anon_sym_DASH, - STATE(5327), 1, - sym_comment, - ACTIONS(2346), 11, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [199256] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5328), 1, - sym_comment, - ACTIONS(1721), 2, - anon_sym_DASH, - aux_sym__unquoted_in_list_token2, - ACTIONS(1723), 10, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [199279] = 3, + [194793] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5329), 1, + STATE(5056), 1, sym_comment, - ACTIONS(8498), 12, + ACTIONS(8161), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402692,163 +377733,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [199300] = 6, + [194814] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1711), 1, - anon_sym_LPAREN2, - ACTIONS(1719), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2085), 1, - anon_sym_DASH, - STATE(5330), 1, + ACTIONS(8163), 1, + anon_sym_DOT, + ACTIONS(8165), 1, + aux_sym__immediate_decimal_token2, + STATE(5057), 1, sym_comment, - ACTIONS(2087), 9, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1497), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1499), 7, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [199327] = 4, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [194841] = 12, ACTIONS(247), 1, anon_sym_POUND, - STATE(5331), 1, + ACTIONS(1493), 1, + aux_sym_ctrl_match_token1, + ACTIONS(1495), 1, + aux_sym_unquoted_token2, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(8167), 1, + anon_sym_DOLLAR, + ACTIONS(8169), 1, + anon_sym_DOT, + ACTIONS(8173), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8175), 1, + aux_sym__immediate_decimal_token5, + STATE(5058), 1, sym_comment, - ACTIONS(8500), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(8502), 10, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [199350] = 3, + STATE(5950), 1, + sym__immediate_decimal, + ACTIONS(8171), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6599), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [194880] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5332), 1, + ACTIONS(2449), 1, + anon_sym_DASH, + STATE(5059), 1, sym_comment, - ACTIONS(8504), 12, + ACTIONS(2451), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [199371] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [194903] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8508), 1, + ACTIONS(2035), 1, anon_sym_DASH, - STATE(5333), 1, + STATE(5060), 1, sym_comment, - ACTIONS(8506), 11, + ACTIONS(2041), 11, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [199394] = 4, + [194926] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8170), 1, + ACTIONS(2043), 1, anon_sym_DASH, - STATE(5334), 1, + STATE(5061), 1, sym_comment, - ACTIONS(8166), 11, + ACTIONS(2049), 11, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [199417] = 4, + [194949] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8512), 1, + ACTIONS(2051), 1, anon_sym_DASH, - STATE(5335), 1, + STATE(5062), 1, sym_comment, - ACTIONS(8510), 11, + ACTIONS(2057), 11, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [199440] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5336), 1, - sym_comment, - ACTIONS(8152), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [199461] = 3, + [194972] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(5337), 1, + ACTIONS(8177), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8179), 1, + aux_sym__immediate_decimal_token2, + STATE(5063), 1, sym_comment, - ACTIONS(8514), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [199482] = 3, + ACTIONS(1517), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1519), 7, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [194999] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5338), 1, + STATE(5064), 1, sym_comment, - ACTIONS(6927), 12, + ACTIONS(7913), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402860,131 +377896,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [199503] = 6, + [195020] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1709), 1, + ACTIONS(2465), 1, anon_sym_DASH, - ACTIONS(1711), 1, - anon_sym_LPAREN2, - ACTIONS(1719), 1, - aux_sym__unquoted_in_list_token2, - STATE(5339), 1, + STATE(5065), 1, sym_comment, - ACTIONS(1717), 9, + ACTIONS(2467), 11, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [199530] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5340), 1, - sym_comment, - ACTIONS(8516), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(8518), 10, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [199553] = 4, + [195043] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8522), 1, + ACTIONS(2469), 1, anon_sym_DASH, - STATE(5341), 1, + STATE(5066), 1, sym_comment, - ACTIONS(8520), 11, + ACTIONS(2471), 11, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [199576] = 8, + [195066] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(8102), 1, - anon_sym_COMMA, - ACTIONS(8104), 1, + ACTIONS(2473), 1, anon_sym_DASH, - ACTIONS(8316), 1, - anon_sym_EQ, - STATE(5342), 1, + STATE(5067), 1, sym_comment, - STATE(5358), 1, - aux_sym_shebang_repeat1, - ACTIONS(8100), 7, + ACTIONS(2475), 11, + anon_sym_EQ, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [199607] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5343), 1, - sym_comment, - ACTIONS(8524), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [199628] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5344), 1, - sym_comment, - ACTIONS(8526), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [199649] = 3, + [195089] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5345), 1, + STATE(5068), 1, sym_comment, - ACTIONS(8528), 12, + ACTIONS(7899), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402996,218 +377971,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [199670] = 12, + [195110] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1441), 1, + ACTIONS(1619), 1, sym__entry_separator, - ACTIONS(8086), 1, + ACTIONS(7825), 1, anon_sym_LPAREN2, - ACTIONS(8094), 1, + ACTIONS(7851), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8096), 1, + ACTIONS(7853), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8396), 1, + ACTIONS(8019), 1, anon_sym_DOLLAR, - ACTIONS(8442), 1, + ACTIONS(8123), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8444), 1, + ACTIONS(8125), 1, aux_sym__immediate_decimal_token3, - STATE(3167), 1, + STATE(2863), 1, sym__immediate_decimal, - STATE(5346), 1, + STATE(5069), 1, sym_comment, - ACTIONS(1431), 2, + ACTIONS(1617), 2, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(3166), 2, + STATE(2918), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [199709] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5347), 1, - sym_comment, - ACTIONS(8530), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [199730] = 12, + [195149] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1557), 1, + ACTIONS(1623), 1, sym__entry_separator, - ACTIONS(8086), 1, + ACTIONS(7825), 1, anon_sym_LPAREN2, - ACTIONS(8094), 1, + ACTIONS(7851), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8096), 1, + ACTIONS(7853), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8396), 1, + ACTIONS(8019), 1, anon_sym_DOLLAR, - ACTIONS(8442), 1, + ACTIONS(8123), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8444), 1, + ACTIONS(8125), 1, aux_sym__immediate_decimal_token3, - STATE(3113), 1, + STATE(2884), 1, sym__immediate_decimal, - STATE(5348), 1, + STATE(5070), 1, sym_comment, - ACTIONS(1555), 2, + ACTIONS(1621), 2, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(3111), 2, + STATE(2876), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [199769] = 12, + [195188] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1509), 1, + ACTIONS(1563), 1, sym__entry_separator, - ACTIONS(8086), 1, + ACTIONS(7825), 1, anon_sym_LPAREN2, - ACTIONS(8094), 1, + ACTIONS(7851), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8096), 1, + ACTIONS(7853), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8396), 1, + ACTIONS(8019), 1, anon_sym_DOLLAR, - ACTIONS(8442), 1, + ACTIONS(8123), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8444), 1, + ACTIONS(8125), 1, aux_sym__immediate_decimal_token3, - STATE(3120), 1, + STATE(2890), 1, sym__immediate_decimal, - STATE(5349), 1, + STATE(5071), 1, sym_comment, - ACTIONS(1501), 2, + ACTIONS(1561), 2, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(3114), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [199808] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5350), 1, - sym_comment, - ACTIONS(6957), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6963), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6959), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6961), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [199835] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5564), 1, - anon_sym_LPAREN2, - ACTIONS(5568), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5570), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5786), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8338), 1, - anon_sym_RBRACK, - ACTIONS(8340), 1, - anon_sym_DOLLAR2, - ACTIONS(8346), 1, - anon_sym_DOLLAR, - ACTIONS(8348), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8350), 1, - aux_sym__immediate_decimal_token5, - STATE(2946), 1, - sym__immediate_decimal, - STATE(5351), 1, - sym_comment, - STATE(3060), 2, + STATE(2887), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [199876] = 4, + [195227] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5352), 1, - sym_comment, - ACTIONS(1648), 2, + ACTIONS(2477), 1, anon_sym_DASH, - aux_sym__unquoted_in_list_token2, - ACTIONS(1650), 10, + STATE(5072), 1, + sym_comment, + ACTIONS(2479), 11, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [199899] = 3, + [195250] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5353), 1, + ACTIONS(2481), 1, + anon_sym_DASH, + STATE(5073), 1, sym_comment, - ACTIONS(8208), 12, - ts_builtin_sym_end, + ACTIONS(2483), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [199920] = 3, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [195273] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5354), 1, + ACTIONS(2485), 1, + anon_sym_DASH, + STATE(5074), 1, sym_comment, - ACTIONS(8532), 12, + ACTIONS(2487), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [199941] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [195296] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6143), 1, + ACTIONS(2489), 1, anon_sym_DASH, - STATE(5355), 1, + STATE(5075), 1, sym_comment, - ACTIONS(6145), 11, + ACTIONS(2491), 11, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -403218,81 +378128,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [199964] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1413), 1, - anon_sym_RBRACE, - ACTIONS(1427), 1, - sym__entry_separator, - ACTIONS(1429), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(8086), 1, - anon_sym_LPAREN2, - ACTIONS(8396), 1, - anon_sym_DOLLAR, - ACTIONS(8398), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8400), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8402), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8404), 1, - aux_sym__immediate_decimal_token5, - STATE(5356), 1, - sym_comment, - STATE(6873), 1, - sym__immediate_decimal, - STATE(3169), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [200005] = 3, + [195319] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5357), 1, + ACTIONS(2493), 1, + anon_sym_DASH, + STATE(5076), 1, sym_comment, - ACTIONS(8210), 12, - ts_builtin_sym_end, + ACTIONS(2495), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [200026] = 5, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [195342] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1755), 1, + ACTIONS(2497), 1, anon_sym_DASH, - ACTIONS(8534), 1, - sym__newline, - STATE(5358), 2, + STATE(5077), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1757), 9, + ACTIONS(2499), 11, anon_sym_EQ, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [200051] = 4, + [195365] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8539), 1, + ACTIONS(2501), 1, anon_sym_DASH, - STATE(5359), 1, + STATE(5078), 1, sym_comment, - ACTIONS(8537), 11, + ACTIONS(2503), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -403304,53 +378185,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [200074] = 8, + [195388] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(8268), 1, + ACTIONS(8183), 1, anon_sym_DASH, - ACTIONS(8316), 1, - anon_sym_EQ, - ACTIONS(8541), 1, - anon_sym_COMMA, - STATE(5358), 1, - aux_sym_shebang_repeat1, - STATE(5360), 1, + STATE(5079), 1, sym_comment, - ACTIONS(8264), 7, + ACTIONS(8181), 11, + anon_sym_EQ, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [200105] = 3, + [195411] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5361), 1, + ACTIONS(8187), 1, + anon_sym_DASH, + STATE(5080), 1, sym_comment, - ACTIONS(8543), 12, + ACTIONS(8185), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [200126] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [195434] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5362), 1, + STATE(5081), 1, sym_comment, - ACTIONS(8545), 12, + ACTIONS(7873), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -403362,15 +378241,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [200147] = 4, + [195455] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2271), 1, + ACTIONS(8191), 1, anon_sym_DASH, - STATE(5363), 1, + STATE(5082), 1, sym_comment, - ACTIONS(2273), 11, + ACTIONS(8189), 11, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -403381,34 +378260,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [200170] = 6, + [195478] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2123), 1, + ACTIONS(5114), 1, anon_sym_DASH, - ACTIONS(2125), 1, - anon_sym_LPAREN2, - ACTIONS(2129), 1, - aux_sym__unquoted_in_list_token2, - STATE(5364), 1, + STATE(5083), 1, sym_comment, - ACTIONS(2127), 9, + ACTIONS(5112), 11, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [200197] = 3, + [195501] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5365), 1, + STATE(5084), 1, sym_comment, - ACTIONS(8288), 12, + ACTIONS(7877), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -403421,32 +378297,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [200218] = 3, + [195522] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5366), 1, + ACTIONS(5120), 1, + anon_sym_DASH, + STATE(5085), 1, sym_comment, - ACTIONS(8547), 12, + ACTIONS(5118), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [200239] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [195545] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2241), 1, + ACTIONS(8195), 1, anon_sym_DASH, - STATE(5367), 1, + STATE(5086), 1, sym_comment, - ACTIONS(2243), 11, + ACTIONS(8193), 11, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -403457,34 +378335,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [200262] = 4, + [195568] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5368), 1, - sym_comment, - ACTIONS(1569), 2, + ACTIONS(8199), 1, anon_sym_DASH, - aux_sym__unquoted_in_list_token2, - ACTIONS(1571), 10, + STATE(5087), 1, + sym_comment, + ACTIONS(8197), 11, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [200285] = 4, + [195591] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2332), 1, + ACTIONS(8203), 1, anon_sym_DASH, - STATE(5369), 1, + STATE(5088), 1, sym_comment, - ACTIONS(2334), 11, + ACTIONS(8201), 11, + anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, @@ -403495,114 +378373,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [200308] = 3, + [195614] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5370), 1, + ACTIONS(8207), 1, + anon_sym_DASH, + STATE(5089), 1, sym_comment, - ACTIONS(8202), 12, - ts_builtin_sym_end, + ACTIONS(8205), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [200329] = 4, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [195637] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8551), 1, + ACTIONS(8211), 1, + sym__newline, + ACTIONS(8214), 1, anon_sym_DASH, - STATE(5371), 1, + STATE(5090), 1, sym_comment, - ACTIONS(8549), 11, + ACTIONS(1349), 2, anon_sym_EQ, + anon_sym_COLON, + ACTIONS(8209), 8, sym_identifier, - sym__newline, anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [200352] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1443), 1, - anon_sym_RBRACK, - ACTIONS(1455), 1, - sym__entry_separator, - ACTIONS(1457), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(8086), 1, - anon_sym_LPAREN2, - ACTIONS(8396), 1, - anon_sym_DOLLAR, - ACTIONS(8553), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8555), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8557), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8559), 1, - aux_sym__immediate_decimal_token5, - STATE(5372), 1, - sym_comment, - STATE(6796), 1, - sym__immediate_decimal, - STATE(3121), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [200393] = 3, + [195664] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5373), 1, + ACTIONS(8218), 1, + anon_sym_DASH, + STATE(5091), 1, sym_comment, - ACTIONS(8130), 12, - ts_builtin_sym_end, + ACTIONS(8216), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [200414] = 3, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [195687] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5374), 1, + ACTIONS(5079), 1, + anon_sym_DASH, + STATE(5092), 1, sym_comment, - ACTIONS(8561), 12, + ACTIONS(5077), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [200435] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [195710] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(5375), 1, + STATE(5093), 1, + sym_comment, + ACTIONS(6708), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6714), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6710), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6712), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [195737] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5094), 1, sym_comment, - ACTIONS(8084), 12, + ACTIONS(7855), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -403615,12 +378490,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [200456] = 3, + [195758] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5376), 1, + STATE(5095), 1, + sym_comment, + ACTIONS(8220), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(8222), 10, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [195781] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5096), 1, sym_comment, - ACTIONS(8563), 12, + ACTIONS(7949), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -403632,217 +378527,266 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [200477] = 13, - ACTIONS(3), 1, + [195802] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1413), 1, - anon_sym_RBRACK, - ACTIONS(1427), 1, - sym__entry_separator, - ACTIONS(1429), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(8086), 1, - anon_sym_LPAREN2, - ACTIONS(8396), 1, - anon_sym_DOLLAR, - ACTIONS(8553), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8555), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8557), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8559), 1, - aux_sym__immediate_decimal_token5, - STATE(5377), 1, + STATE(5097), 1, sym_comment, - STATE(6889), 1, - sym__immediate_decimal, - STATE(3169), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [200518] = 4, - ACTIONS(3), 1, + ACTIONS(6682), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6688), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6684), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6686), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [195829] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5378), 1, + ACTIONS(8224), 1, + anon_sym_DOT, + ACTIONS(8226), 1, + aux_sym__immediate_decimal_token2, + STATE(5098), 1, sym_comment, - ACTIONS(2131), 6, - sym_identifier, + ACTIONS(1499), 4, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1497), 6, + sym_identifier, anon_sym_DASH, - aux_sym__unquoted_in_list_token4, - ACTIONS(2133), 6, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LPAREN2, - [200541] = 14, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [195856] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(7651), 1, - sym_identifier, - ACTIONS(7655), 1, - anon_sym_DOLLAR, - ACTIONS(7657), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7659), 1, - anon_sym_DASH_DASH, - ACTIONS(7661), 1, - anon_sym_DASH, - STATE(4455), 1, - sym_param_long_flag, - STATE(4800), 1, - sym__param_name, - STATE(5220), 1, - sym_param_short_flag, - STATE(5253), 1, - sym_param_opt, - STATE(5295), 1, - sym_param_rest, - STATE(5358), 1, - aux_sym_shebang_repeat1, - STATE(5379), 1, + STATE(5099), 1, sym_comment, - [200584] = 9, + ACTIONS(7352), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(7354), 10, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [195879] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1525), 1, + ACTIONS(8228), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8230), 1, + aux_sym__immediate_decimal_token2, + STATE(5100), 1, + sym_comment, + ACTIONS(1519), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1517), 6, + sym_identifier, anon_sym_DASH, - ACTIONS(4694), 1, anon_sym_DOT_DOT2, - ACTIONS(7091), 1, - aux_sym_unquoted_token2, - ACTIONS(8565), 1, sym_filesize_unit, - ACTIONS(8567), 1, sym_duration_unit, - STATE(5380), 1, - sym_comment, - ACTIONS(4696), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1537), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [200617] = 12, + aux_sym_unquoted_token2, + [195906] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8218), 1, - anon_sym_DASH_DASH, - ACTIONS(8220), 1, - anon_sym_DASH, - ACTIONS(8490), 1, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(6088), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6090), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7839), 1, anon_sym_DOLLAR, - ACTIONS(8492), 1, - aux_sym_ctrl_match_token1, - STATE(1997), 1, - sym_block, - STATE(2090), 1, - sym_val_closure, - STATE(5381), 1, + STATE(3367), 1, + sym__immediate_decimal, + STATE(5101), 1, sym_comment, - STATE(5785), 1, - aux_sym_ctrl_do_repeat1, - STATE(6260), 1, - sym__flag, - STATE(679), 2, - sym__blosure, + ACTIONS(6094), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3366), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - STATE(6245), 2, - sym_short_flag, - sym_long_flag, - [200656] = 4, + ACTIONS(1515), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [195941] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1770), 1, - anon_sym_DASH, - STATE(5382), 1, + ACTIONS(6080), 1, + anon_sym_DOLLAR, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(6110), 1, + anon_sym_DOT, + ACTIONS(8173), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8175), 1, + aux_sym__immediate_decimal_token5, + STATE(5102), 1, sym_comment, - ACTIONS(1772), 11, - sym_identifier, + STATE(6088), 1, + sym__immediate_decimal, + ACTIONS(1493), 2, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - [200679] = 3, + ACTIONS(8171), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6091), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [195978] = 10, ACTIONS(247), 1, anon_sym_POUND, - STATE(5383), 1, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(6088), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6090), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7839), 1, + anon_sym_DOLLAR, + STATE(3355), 1, + sym__immediate_decimal, + STATE(5103), 1, sym_comment, - ACTIONS(8569), 12, - sym__newline, - anon_sym_SEMI, + ACTIONS(6094), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3354), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1619), 3, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [200700] = 4, + anon_sym_if, + anon_sym_EQ_GT, + [196013] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2315), 1, - anon_sym_DASH, - STATE(5384), 1, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(6088), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6090), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7839), 1, + anon_sym_DOLLAR, + STATE(3384), 1, + sym__immediate_decimal, + STATE(5104), 1, sym_comment, - ACTIONS(2317), 11, - sym_identifier, - sym__newline, + ACTIONS(6094), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3356), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1623), 3, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [200723] = 6, - ACTIONS(3), 1, + anon_sym_if, + anon_sym_EQ_GT, + [196048] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2091), 1, + ACTIONS(6082), 1, anon_sym_LPAREN2, - ACTIONS(2095), 1, - aux_sym__unquoted_in_list_token4, - STATE(5385), 1, + ACTIONS(6088), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6090), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7839), 1, + anon_sym_DOLLAR, + STATE(3359), 1, + sym__immediate_decimal, + STATE(5105), 1, sym_comment, - ACTIONS(2089), 5, - sym_identifier, + ACTIONS(6094), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3358), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1563), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [196083] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5106), 1, + sym_comment, + ACTIONS(8232), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(8234), 10, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [196106] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6080), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DASH, - ACTIONS(2093), 5, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(6084), 1, + anon_sym_DOT, + ACTIONS(8173), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8175), 1, + aux_sym__immediate_decimal_token5, + STATE(5107), 1, + sym_comment, + STATE(6090), 1, + sym__immediate_decimal, + ACTIONS(1515), 2, sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - [200750] = 3, + aux_sym_ctrl_match_token1, + ACTIONS(8171), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6089), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [196143] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5386), 1, + STATE(5108), 1, sym_comment, - ACTIONS(8571), 12, + ACTIONS(7759), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -403854,13 +378798,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [200771] = 3, + [196164] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5387), 1, + STATE(5109), 1, sym_comment, - ACTIONS(8292), 12, + ACTIONS(7955), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -403873,15 +378816,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [200792] = 3, + [196185] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2816), 1, + anon_sym_DOLLAR, + ACTIONS(5299), 1, + anon_sym_LPAREN2, + ACTIONS(5303), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5305), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5307), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(5468), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8131), 1, + anon_sym_DOLLAR2, + ACTIONS(8143), 1, + anon_sym_RBRACK, + ACTIONS(8236), 1, + aux_sym__immediate_decimal_token1, + STATE(2612), 1, + sym__immediate_decimal, + STATE(5110), 1, + sym_comment, + STATE(2756), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [196226] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(5388), 1, + ACTIONS(1575), 1, + anon_sym_DASH, + ACTIONS(4433), 1, + anon_sym_DOT_DOT2, + ACTIONS(6844), 1, + aux_sym_unquoted_token2, + ACTIONS(8238), 1, + sym_filesize_unit, + ACTIONS(8240), 1, + sym_duration_unit, + STATE(5111), 1, sym_comment, - ACTIONS(8204), 12, + ACTIONS(4435), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1587), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [196259] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5095), 1, + sym__newline, + STATE(690), 1, + aux_sym_shebang_repeat1, + STATE(5112), 1, + sym_comment, + ACTIONS(2961), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -403891,78 +378887,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [200813] = 4, + [196283] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1551), 1, + aux_sym_ctrl_match_token1, + ACTIONS(1553), 1, + aux_sym_unquoted_token2, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(8242), 1, + anon_sym_DOLLAR, + ACTIONS(8246), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8248), 1, + aux_sym__immediate_decimal_token5, + STATE(5113), 1, + sym_comment, + STATE(7316), 1, + sym__immediate_decimal, + ACTIONS(8244), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3360), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [196319] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8575), 1, + ACTIONS(8252), 1, + anon_sym_DASH_DASH, + ACTIONS(8254), 1, anon_sym_DASH, - STATE(5389), 1, + ACTIONS(8256), 1, + anon_sym_as, + STATE(5114), 1, sym_comment, - ACTIONS(8573), 11, - anon_sym_EQ, - sym_identifier, + STATE(5126), 1, + aux_sym_ctrl_do_repeat1, + STATE(5598), 1, + sym__flag, + STATE(5452), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8250), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [196351] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8260), 1, + anon_sym_DASH, + STATE(5115), 1, + sym_comment, + STATE(5116), 1, + aux_sym_parameter_repeat2, + ACTIONS(7058), 2, sym__newline, + anon_sym_COMMA, + ACTIONS(8258), 7, + sym_identifier, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [200836] = 4, + [196377] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(5390), 1, - sym_comment, - ACTIONS(1481), 3, + ACTIONS(8267), 1, anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1483), 9, - ts_builtin_sym_end, + ACTIONS(8264), 2, sym__newline, - anon_sym_SEMI, + anon_sym_COMMA, + STATE(5116), 2, + sym_comment, + aux_sym_parameter_repeat2, + ACTIONS(8262), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [200859] = 3, + [196401] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(5391), 1, + ACTIONS(7176), 1, + anon_sym_DASH, + STATE(5116), 1, + aux_sym_parameter_repeat2, + STATE(5117), 1, sym_comment, - ACTIONS(8577), 12, + ACTIONS(7058), 2, sym__newline, - anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(7174), 7, + sym_identifier, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - [200880] = 8, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [196427] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(8302), 1, - anon_sym_EQ, - ACTIONS(8581), 1, - anon_sym_COMMA, - ACTIONS(8583), 1, + ACTIONS(8271), 1, anon_sym_DASH, - STATE(5358), 1, - aux_sym_shebang_repeat1, - STATE(5392), 1, + STATE(5116), 1, + aux_sym_parameter_repeat2, + STATE(5118), 1, sym_comment, - ACTIONS(8579), 7, + ACTIONS(7058), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(8269), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -403970,106 +379014,263 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [200911] = 11, + [196453] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3213), 1, + aux_sym_record_entry_token1, + ACTIONS(6092), 1, + anon_sym_DOLLAR, + ACTIONS(8273), 1, + sym_identifier, + ACTIONS(8275), 1, + anon_sym_DASH_DASH, + ACTIONS(8277), 1, + anon_sym_DASH, + STATE(5119), 1, + sym_comment, + STATE(5240), 1, + aux_sym_ctrl_do_repeat1, + STATE(5319), 1, + sym_val_variable, + STATE(5943), 1, + sym__flag, + STATE(6137), 1, + sym__variable_name, + STATE(5900), 2, + sym_short_flag, + sym_long_flag, + [196491] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3259), 1, + aux_sym_expr_unary_token1, + ACTIONS(8279), 1, + anon_sym_LPAREN, + ACTIONS(8281), 1, + anon_sym_DOLLAR, + ACTIONS(8283), 1, + anon_sym_DASH, + STATE(1644), 1, + sym__expr_unary_minus, + STATE(5120), 1, + sym_comment, + ACTIONS(3197), 2, + anon_sym_true, + anon_sym_false, + STATE(1649), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [196523] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8285), 1, + anon_sym_LT, + STATE(5121), 1, + sym_comment, + ACTIONS(7572), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + aux_sym_ctrl_match_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [196545] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8287), 1, + anon_sym_LT, + STATE(5122), 1, + sym_comment, + ACTIONS(7572), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + aux_sym_ctrl_match_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [196567] = 9, + ACTIONS(91), 1, + aux_sym_expr_unary_token1, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5754), 1, + anon_sym_LPAREN, + ACTIONS(6336), 1, + anon_sym_DOLLAR, + ACTIONS(8289), 1, + anon_sym_DASH, + STATE(2398), 1, + sym__expr_unary_minus, + STATE(5123), 1, + sym_comment, + ACTIONS(3311), 2, + anon_sym_true, + anon_sym_false, + STATE(2347), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [196599] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1429), 1, + ACTIONS(8165), 1, + aux_sym__immediate_decimal_token2, + STATE(5124), 1, + sym_comment, + ACTIONS(1497), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(6262), 1, - anon_sym_LPAREN2, - ACTIONS(8118), 1, + ACTIONS(1499), 7, anon_sym_DOLLAR, - ACTIONS(8296), 1, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [196623] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1549), 1, + anon_sym_RBRACE, + ACTIONS(1551), 1, + sym__entry_separator, + ACTIONS(7825), 1, + anon_sym_LPAREN2, + ACTIONS(7851), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8298), 1, + ACTIONS(7853), 1, aux_sym__immediate_decimal_token5, - STATE(5393), 1, - sym_comment, - STATE(6970), 1, - sym__immediate_decimal, - ACTIONS(1427), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(8294), 2, + ACTIONS(8019), 1, + anon_sym_DOLLAR, + ACTIONS(8123), 1, aux_sym__immediate_decimal_token1, + ACTIONS(8125), 1, aux_sym__immediate_decimal_token3, - STATE(3591), 2, + STATE(5125), 1, + sym_comment, + STATE(6990), 1, + sym__immediate_decimal, + STATE(2898), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [200948] = 3, + [196661] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(5394), 1, + ACTIONS(8252), 1, + anon_sym_DASH_DASH, + ACTIONS(8254), 1, + anon_sym_DASH, + ACTIONS(8293), 1, + anon_sym_as, + STATE(5126), 1, sym_comment, - ACTIONS(8585), 12, + STATE(5129), 1, + aux_sym_ctrl_do_repeat1, + STATE(5598), 1, + sym__flag, + STATE(5452), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8291), 4, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [200969] = 7, + anon_sym_RBRACE, + [196693] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(8472), 1, + ACTIONS(8252), 1, + anon_sym_DASH_DASH, + ACTIONS(8254), 1, anon_sym_DASH, - ACTIONS(8587), 1, - anon_sym_COMMA, - STATE(5395), 1, + ACTIONS(8297), 1, + anon_sym_as, + STATE(5127), 1, sym_comment, - STATE(5477), 1, - aux_sym_shebang_repeat1, - ACTIONS(8468), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, + STATE(5140), 1, + aux_sym_ctrl_do_repeat1, + STATE(5598), 1, + sym__flag, + STATE(5452), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8295), 4, + sym__newline, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [200997] = 9, - ACTIONS(91), 1, - aux_sym_expr_unary_token1, + anon_sym_RBRACE, + [196725] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5954), 1, - anon_sym_LPAREN, - ACTIONS(6535), 1, + ACTIONS(1493), 1, + aux_sym_ctrl_match_token1, + ACTIONS(1495), 1, + aux_sym_unquoted_token2, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(8242), 1, anon_sym_DOLLAR, - ACTIONS(8589), 1, - anon_sym_DASH, - STATE(2610), 1, - sym__expr_unary_minus, - STATE(5396), 1, + ACTIONS(8246), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8248), 1, + aux_sym__immediate_decimal_token5, + STATE(5128), 1, sym_comment, - ACTIONS(3309), 2, - anon_sym_true, - anon_sym_false, - STATE(2587), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, + STATE(7400), 1, + sym__immediate_decimal, + ACTIONS(8244), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3369), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - [201029] = 5, + [196761] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8301), 1, + anon_sym_DASH_DASH, + ACTIONS(8304), 1, + anon_sym_DASH, + STATE(5598), 1, + sym__flag, + STATE(5129), 2, + sym_comment, + aux_sym_ctrl_do_repeat1, + STATE(5452), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8299), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_as, + [196789] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8336), 1, + ACTIONS(8307), 1, aux_sym__immediate_decimal_token2, - STATE(5397), 1, + STATE(5130), 1, sym_comment, - ACTIONS(1473), 3, + ACTIONS(1565), 3, anon_sym_DASH, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1475), 7, + ACTIONS(1567), 7, anon_sym_DOLLAR, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, @@ -404077,80 +379278,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [201053] = 6, + [196813] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8591), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8593), 1, + ACTIONS(8039), 1, aux_sym__immediate_decimal_token2, - STATE(5398), 1, + STATE(5131), 1, sym_comment, - ACTIONS(1481), 3, + ACTIONS(1497), 4, anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_list_token2, - ACTIONS(1483), 6, + ACTIONS(1499), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [201079] = 4, + [196837] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2405), 1, + ACTIONS(8311), 1, anon_sym_DASH, - STATE(5399), 1, + STATE(5116), 1, + aux_sym_parameter_repeat2, + STATE(5132), 1, sym_comment, - ACTIONS(2407), 10, - sym_identifier, + ACTIONS(7058), 2, sym__newline, + anon_sym_COMMA, + ACTIONS(8309), 7, + sym_identifier, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [201101] = 9, - ACTIONS(247), 1, + [196863] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3507), 1, - aux_sym_expr_unary_token1, - ACTIONS(6284), 1, - anon_sym_DOLLAR, - ACTIONS(6699), 1, - anon_sym_LPAREN, - ACTIONS(8597), 1, - anon_sym_DASH, - STATE(4680), 1, - sym__expr_unary_minus, - STATE(5400), 1, + ACTIONS(8313), 1, + anon_sym_DOT, + STATE(5133), 1, sym_comment, - ACTIONS(8595), 2, - anon_sym_true, - anon_sym_false, - STATE(4686), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [201133] = 6, + STATE(5175), 1, + aux_sym_cell_path_repeat1, + STATE(5425), 1, + sym_path, + STATE(5575), 1, + sym_cell_path, + ACTIONS(1013), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1011), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym__, + anon_sym_DOT_DOT2, + [196893] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8599), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8601), 1, + ACTIONS(8315), 1, + anon_sym_DOT, + ACTIONS(8317), 1, aux_sym__immediate_decimal_token2, - STATE(5401), 1, + STATE(5134), 1, sym_comment, - ACTIONS(1481), 2, + ACTIONS(1497), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1483), 7, + ACTIONS(1499), 7, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, @@ -404158,150 +379359,218 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [201159] = 11, + [196919] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1441), 1, + ACTIONS(1515), 1, aux_sym_ctrl_match_token1, - ACTIONS(6262), 1, + ACTIONS(6082), 1, anon_sym_LPAREN2, - ACTIONS(6264), 1, + ACTIONS(6084), 1, anon_sym_DOT, - ACTIONS(8374), 1, + ACTIONS(8167), 1, anon_sym_DOLLAR, - ACTIONS(8380), 1, + ACTIONS(8173), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8382), 1, + ACTIONS(8175), 1, aux_sym__immediate_decimal_token5, - STATE(5402), 1, + STATE(5135), 1, sym_comment, - STATE(6805), 1, + STATE(6597), 1, sym__immediate_decimal, - ACTIONS(8378), 2, + ACTIONS(8171), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6804), 2, + STATE(6588), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201195] = 9, + [196955] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8319), 1, + aux_sym__immediate_decimal_token2, + STATE(5136), 1, + sym_comment, + ACTIONS(1565), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1567), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [196979] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3455), 1, + ACTIONS(3441), 1, aux_sym_expr_unary_token1, - ACTIONS(8603), 1, + ACTIONS(6596), 1, anon_sym_LPAREN, - ACTIONS(8605), 1, + ACTIONS(6732), 1, anon_sym_DOLLAR, - ACTIONS(8607), 1, + ACTIONS(8323), 1, anon_sym_DASH, - STATE(1154), 1, + STATE(4560), 1, sym__expr_unary_minus, - STATE(5403), 1, + STATE(5137), 1, sym_comment, - ACTIONS(5253), 2, + ACTIONS(8321), 2, anon_sym_true, anon_sym_false, - STATE(1175), 4, + STATE(4566), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [201227] = 7, + [197011] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1479), 1, + anon_sym_RBRACE, + ACTIONS(1493), 1, + sym__entry_separator, + ACTIONS(7825), 1, + anon_sym_LPAREN2, + ACTIONS(7851), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7853), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8019), 1, + anon_sym_DOLLAR, + ACTIONS(8123), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8125), 1, + aux_sym__immediate_decimal_token3, + STATE(5138), 1, + sym_comment, + STATE(7279), 1, + sym__immediate_decimal, + STATE(2901), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [197049] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(8611), 1, - anon_sym_COMMA, - ACTIONS(8613), 1, - anon_sym_DASH, - STATE(5358), 1, - aux_sym_shebang_repeat1, - STATE(5404), 1, + ACTIONS(8325), 1, + anon_sym_DOT, + ACTIONS(8327), 1, + aux_sym__immediate_decimal_token2, + STATE(5139), 1, sym_comment, - ACTIONS(8609), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + ACTIONS(1499), 3, anon_sym_DASH_DASH, - [201255] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1497), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [197075] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7954), 1, + ACTIONS(8252), 1, + anon_sym_DASH_DASH, + ACTIONS(8254), 1, anon_sym_DASH, - STATE(5405), 1, + ACTIONS(8331), 1, + anon_sym_as, + STATE(5129), 1, + aux_sym_ctrl_do_repeat1, + STATE(5140), 1, sym_comment, - ACTIONS(7952), 10, - sym_identifier, + STATE(5598), 1, + sym__flag, + STATE(5452), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8329), 4, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [201277] = 6, + anon_sym_RBRACE, + [197107] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8615), 1, + ACTIONS(8333), 1, anon_sym_DOT, - ACTIONS(8617), 1, + ACTIONS(8335), 1, aux_sym__immediate_decimal_token2, - STATE(5406), 1, + STATE(5141), 1, sym_comment, - ACTIONS(1473), 3, - anon_sym_RBRACK, + ACTIONS(1497), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1475), 6, + aux_sym__unquoted_in_record_token2, + ACTIONS(1499), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [201303] = 9, - ACTIONS(209), 1, - aux_sym_expr_unary_token1, + [197133] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8619), 1, - anon_sym_LPAREN, - ACTIONS(8621), 1, + ACTIONS(3393), 1, + aux_sym_expr_unary_token1, + ACTIONS(6092), 1, anon_sym_DOLLAR, - ACTIONS(8623), 1, + ACTIONS(6468), 1, + anon_sym_LPAREN, + ACTIONS(8339), 1, anon_sym_DASH, - STATE(1709), 1, + STATE(4266), 1, sym__expr_unary_minus, - STATE(5407), 1, + STATE(5142), 1, sym_comment, - ACTIONS(3243), 2, + ACTIONS(8337), 2, anon_sym_true, anon_sym_false, - STATE(1730), 4, + STATE(4355), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [201335] = 7, + [197165] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8341), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8343), 1, + aux_sym__immediate_decimal_token2, + STATE(5143), 1, + sym_comment, + ACTIONS(1517), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1519), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [197191] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(8583), 1, + ACTIONS(7135), 1, anon_sym_DASH, - ACTIONS(8625), 1, - anon_sym_COMMA, - STATE(5408), 1, + STATE(5116), 1, + aux_sym_parameter_repeat2, + STATE(5144), 1, sym_comment, - STATE(5451), 1, - aux_sym_shebang_repeat1, - ACTIONS(8579), 7, + ACTIONS(7058), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(7133), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -404309,914 +379578,1130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [201363] = 4, + [197217] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2389), 1, + ACTIONS(7143), 1, anon_sym_DASH, - STATE(5409), 1, + STATE(5116), 1, + aux_sym_parameter_repeat2, + STATE(5145), 1, sym_comment, - ACTIONS(2391), 10, - sym_identifier, + ACTIONS(7058), 2, sym__newline, + anon_sym_COMMA, + ACTIONS(7141), 7, + sym_identifier, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [201385] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8627), 1, - anon_sym_DOT, - ACTIONS(8629), 1, - aux_sym__immediate_decimal_token2, - STATE(5410), 1, - sym_comment, - ACTIONS(1475), 3, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1473), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [201411] = 4, + [197243] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2409), 1, + ACTIONS(487), 1, + aux_sym_expr_unary_token1, + ACTIONS(8345), 1, + anon_sym_LPAREN, + ACTIONS(8347), 1, + anon_sym_DOLLAR, + ACTIONS(8349), 1, anon_sym_DASH, - STATE(5411), 1, + STATE(2236), 1, + sym__expr_unary_minus, + STATE(5146), 1, sym_comment, - ACTIONS(2411), 10, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [201433] = 12, + ACTIONS(5091), 2, + anon_sym_true, + anon_sym_false, + STATE(2254), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [197275] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3239), 1, + ACTIONS(3215), 1, aux_sym_record_entry_token1, - ACTIONS(6284), 1, + ACTIONS(6092), 1, anon_sym_DOLLAR, - ACTIONS(8631), 1, + ACTIONS(8273), 1, sym_identifier, - ACTIONS(8633), 1, + ACTIONS(8275), 1, anon_sym_DASH_DASH, - ACTIONS(8635), 1, + ACTIONS(8277), 1, anon_sym_DASH, - STATE(5412), 1, + STATE(5147), 1, sym_comment, - STATE(5529), 1, + STATE(5240), 1, aux_sym_ctrl_do_repeat1, - STATE(5619), 1, + STATE(5319), 1, sym_val_variable, - STATE(6260), 1, + STATE(5943), 1, sym__flag, - STATE(6775), 1, + STATE(6137), 1, sym__variable_name, - STATE(6245), 2, + STATE(5900), 2, sym_short_flag, sym_long_flag, - [201471] = 4, + [197313] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1972), 1, - anon_sym_DASH, - STATE(5413), 1, + ACTIONS(8226), 1, + aux_sym__immediate_decimal_token2, + STATE(5148), 1, sym_comment, - ACTIONS(1978), 10, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1499), 4, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [201493] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1497), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [197337] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8639), 1, - anon_sym_DASH, - STATE(5414), 1, - sym_comment, - ACTIONS(8637), 10, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1493), 1, + anon_sym_EQ_GT, + ACTIONS(3483), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [201515] = 7, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(6088), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6090), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6110), 1, + anon_sym_DOT, + STATE(5149), 1, + sym_comment, + STATE(6644), 1, + sym__immediate_decimal, + ACTIONS(6086), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5880), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [197373] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(8643), 1, - anon_sym_COMMA, - ACTIONS(8645), 1, - anon_sym_DASH, - STATE(5358), 1, - aux_sym_shebang_repeat1, - STATE(5415), 1, + ACTIONS(8351), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8353), 1, + aux_sym__immediate_decimal_token2, + STATE(5150), 1, sym_comment, - ACTIONS(8641), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + ACTIONS(1519), 3, anon_sym_DASH_DASH, - [201543] = 7, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1517), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [197399] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(8458), 1, - anon_sym_COMMA, - ACTIONS(8460), 1, - anon_sym_DASH, - STATE(5358), 1, - aux_sym_shebang_repeat1, - STATE(5416), 1, + ACTIONS(8355), 1, + aux_sym__immediate_decimal_token2, + STATE(5151), 1, sym_comment, - ACTIONS(8456), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(1567), 4, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [201571] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1565), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [197423] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8647), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8649), 1, - aux_sym__immediate_decimal_token2, - STATE(5417), 1, + ACTIONS(8313), 1, + anon_sym_DOT, + STATE(5152), 1, sym_comment, - ACTIONS(1481), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1483), 6, - anon_sym_LPAREN2, + STATE(5175), 1, + aux_sym_cell_path_repeat1, + STATE(5425), 1, + sym_path, + STATE(5577), 1, + sym_cell_path, + ACTIONS(1688), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - [201597] = 5, - ACTIONS(247), 1, + ACTIONS(1686), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym__, + anon_sym_DOT_DOT2, + [197453] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5245), 1, - sym__newline, - STATE(728), 1, - aux_sym_shebang_repeat1, - STATE(5418), 1, + ACTIONS(8313), 1, + anon_sym_DOT, + STATE(5153), 1, sym_comment, - ACTIONS(2891), 9, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [201621] = 9, + STATE(5175), 1, + aux_sym_cell_path_repeat1, + STATE(5425), 1, + sym_path, + STATE(5586), 1, + sym_cell_path, + ACTIONS(1629), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1625), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym__, + anon_sym_DOT_DOT2, + [197483] = 9, + ACTIONS(209), 1, + aux_sym_expr_unary_token1, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3387), 1, - aux_sym_expr_unary_token1, - ACTIONS(8623), 1, + ACTIONS(8283), 1, anon_sym_DASH, - ACTIONS(8651), 1, + ACTIONS(8357), 1, anon_sym_LPAREN, - ACTIONS(8653), 1, + ACTIONS(8359), 1, anon_sym_DOLLAR, - STATE(1709), 1, + STATE(1644), 1, sym__expr_unary_minus, - STATE(5419), 1, + STATE(5154), 1, sym_comment, - ACTIONS(3243), 2, + ACTIONS(3197), 2, anon_sym_true, anon_sym_false, - STATE(1730), 4, + STATE(1649), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [201653] = 4, + [197515] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5220), 1, + ACTIONS(3299), 1, + aux_sym_expr_unary_token1, + ACTIONS(8279), 1, + anon_sym_LPAREN, + ACTIONS(8283), 1, anon_sym_DASH, - STATE(5420), 1, - sym_comment, - ACTIONS(5218), 10, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(8361), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [201675] = 4, + STATE(1644), 1, + sym__expr_unary_minus, + STATE(5155), 1, + sym_comment, + ACTIONS(3197), 2, + anon_sym_true, + anon_sym_false, + STATE(1649), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [197547] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1935), 1, - anon_sym_DASH, - STATE(5421), 1, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(6092), 1, + anon_sym_DOLLAR, + ACTIONS(8173), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8175), 1, + aux_sym__immediate_decimal_token5, + STATE(3486), 1, + sym__immediate_decimal, + STATE(5156), 1, sym_comment, - ACTIONS(1941), 10, - sym_identifier, + ACTIONS(1493), 2, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [201697] = 6, + aux_sym_ctrl_match_token1, + ACTIONS(8363), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3369), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [197581] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8655), 1, - anon_sym_DOT, - ACTIONS(8657), 1, - aux_sym__immediate_decimal_token2, - STATE(5422), 1, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(6092), 1, + anon_sym_DOLLAR, + ACTIONS(8173), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8175), 1, + aux_sym__immediate_decimal_token5, + STATE(3479), 1, + sym__immediate_decimal, + STATE(5157), 1, sym_comment, - ACTIONS(1473), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1475), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [201723] = 4, + ACTIONS(1551), 2, + sym__newline, + aux_sym_ctrl_match_token1, + ACTIONS(8363), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3360), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [197615] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2417), 1, - anon_sym_DASH, - STATE(5423), 1, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(6092), 1, + anon_sym_DOLLAR, + ACTIONS(8173), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8175), 1, + aux_sym__immediate_decimal_token5, + STATE(3367), 1, + sym__immediate_decimal, + STATE(5158), 1, sym_comment, - ACTIONS(2419), 10, - sym_identifier, + ACTIONS(1515), 2, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [201745] = 9, + aux_sym_ctrl_match_token1, + ACTIONS(8363), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3366), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [197649] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3425), 1, - aux_sym_expr_unary_token1, - ACTIONS(8623), 1, - anon_sym_DASH, - ACTIONS(8659), 1, - anon_sym_LPAREN, - ACTIONS(8661), 1, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(6092), 1, anon_sym_DOLLAR, - STATE(1709), 1, - sym__expr_unary_minus, - STATE(5424), 1, + ACTIONS(8173), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8175), 1, + aux_sym__immediate_decimal_token5, + STATE(3355), 1, + sym__immediate_decimal, + STATE(5159), 1, sym_comment, - ACTIONS(3243), 2, - anon_sym_true, - anon_sym_false, - STATE(1730), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, + ACTIONS(1619), 2, + sym__newline, + aux_sym_ctrl_match_token1, + ACTIONS(8363), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3354), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - [201777] = 4, + [197683] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2413), 1, - anon_sym_DASH, - STATE(5425), 1, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(6092), 1, + anon_sym_DOLLAR, + ACTIONS(8173), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8175), 1, + aux_sym__immediate_decimal_token5, + STATE(3384), 1, + sym__immediate_decimal, + STATE(5160), 1, sym_comment, - ACTIONS(2415), 10, - sym_identifier, + ACTIONS(1623), 2, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [201799] = 4, + aux_sym_ctrl_match_token1, + ACTIONS(8363), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3356), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [197717] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7975), 1, - anon_sym_DASH, - STATE(5426), 1, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(6092), 1, + anon_sym_DOLLAR, + ACTIONS(8173), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8175), 1, + aux_sym__immediate_decimal_token5, + STATE(3359), 1, + sym__immediate_decimal, + STATE(5161), 1, sym_comment, - ACTIONS(7973), 10, - sym_identifier, + ACTIONS(1563), 2, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [201821] = 9, + aux_sym_ctrl_match_token1, + ACTIONS(8363), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3358), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [197751] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8665), 1, - anon_sym_DASH_DASH, - ACTIONS(8667), 1, - anon_sym_DASH, - ACTIONS(8669), 1, - anon_sym_as, - STATE(5427), 1, + ACTIONS(1493), 1, + aux_sym_ctrl_match_token1, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(6110), 1, + anon_sym_DOT, + ACTIONS(8167), 1, + anon_sym_DOLLAR, + ACTIONS(8173), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8175), 1, + aux_sym__immediate_decimal_token5, + STATE(5162), 1, sym_comment, - STATE(5484), 1, - aux_sym_ctrl_do_repeat1, - STATE(5867), 1, - sym__flag, - STATE(5714), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8663), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [201853] = 4, + STATE(6097), 1, + sym__immediate_decimal, + ACTIONS(8171), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6599), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [197787] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5204), 1, - anon_sym_DASH, - STATE(5428), 1, + ACTIONS(8365), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8367), 1, + aux_sym__immediate_decimal_token2, + STATE(5163), 1, sym_comment, - ACTIONS(5202), 10, - anon_sym_EQ, - sym_identifier, - sym__newline, + ACTIONS(1517), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1519), 7, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [201875] = 7, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [197813] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(8673), 1, - anon_sym_COMMA, - ACTIONS(8675), 1, - anon_sym_DASH, - STATE(5358), 1, - aux_sym_shebang_repeat1, - STATE(5429), 1, + STATE(5164), 1, sym_comment, - ACTIONS(8671), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(1641), 4, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [201903] = 7, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1639), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [197834] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(8472), 1, - anon_sym_DASH, - ACTIONS(8677), 1, - anon_sym_COMMA, - STATE(5415), 1, - aux_sym_shebang_repeat1, - STATE(5430), 1, + ACTIONS(1493), 1, + aux_sym_ctrl_match_token1, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(8173), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8175), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8242), 1, + anon_sym_DOLLAR, + STATE(3486), 1, + sym__immediate_decimal, + STATE(5165), 1, sym_comment, - ACTIONS(8468), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(8363), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3369), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [197867] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5357), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [201931] = 4, - ACTIONS(247), 1, + ACTIONS(5359), 1, + anon_sym_LPAREN2, + ACTIONS(5361), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5363), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5365), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(5468), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8369), 1, + aux_sym__immediate_decimal_token1, + STATE(2850), 1, + sym__immediate_decimal, + STATE(5166), 1, + sym_comment, + STATE(2859), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [197902] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2421), 1, - anon_sym_DASH, - STATE(5431), 1, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(7967), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8371), 1, + anon_sym_DOLLAR, + ACTIONS(8373), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8375), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8377), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8379), 1, + aux_sym_unquoted_token3, + STATE(5167), 1, sym_comment, - ACTIONS(2423), 10, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + STATE(5816), 1, + sym__immediate_decimal, + STATE(5874), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [197937] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(8047), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8379), 1, + aux_sym_unquoted_token3, + ACTIONS(8381), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [201953] = 4, - ACTIONS(247), 1, + ACTIONS(8383), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8385), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8387), 1, + aux_sym__immediate_decimal_token5, + STATE(5168), 1, + sym_comment, + STATE(7220), 1, + sym__immediate_decimal, + STATE(3344), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [197972] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2425), 1, - anon_sym_DASH, - STATE(5432), 1, + ACTIONS(2089), 1, + anon_sym_DOLLAR, + ACTIONS(6740), 1, + anon_sym_LPAREN2, + ACTIONS(6744), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6746), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6748), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6750), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6874), 1, + aux_sym_unquoted_token3, + STATE(4010), 1, + sym__immediate_decimal, + STATE(5169), 1, sym_comment, - ACTIONS(2427), 10, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + STATE(4248), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [198007] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4263), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [201975] = 7, - ACTIONS(247), 1, + ACTIONS(6740), 1, + anon_sym_LPAREN2, + ACTIONS(6774), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6776), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6778), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6780), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6874), 1, + aux_sym_unquoted_token3, + STATE(4424), 1, + sym__immediate_decimal, + STATE(5170), 1, + sym_comment, + STATE(4656), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [198042] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(8472), 1, - anon_sym_DASH, - ACTIONS(8679), 1, - anon_sym_COMMA, - STATE(5358), 1, - aux_sym_shebang_repeat1, - STATE(5433), 1, + ACTIONS(2764), 1, + anon_sym_DOLLAR, + ACTIONS(3789), 1, + anon_sym_LPAREN2, + ACTIONS(3793), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(3795), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4299), 1, + aux_sym_unquoted_token3, + ACTIONS(8389), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8391), 1, + aux_sym__immediate_decimal_token5, + STATE(1246), 1, + sym__immediate_decimal, + STATE(5171), 1, sym_comment, - ACTIONS(8468), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + STATE(1415), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [198077] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3934), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [202003] = 4, - ACTIONS(247), 1, + ACTIONS(3936), 1, + anon_sym_LPAREN2, + ACTIONS(3938), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(3940), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4299), 1, + aux_sym_unquoted_token3, + ACTIONS(8393), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8395), 1, + aux_sym__immediate_decimal_token5, + STATE(1535), 1, + sym__immediate_decimal, + STATE(5172), 1, + sym_comment, + STATE(1778), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [198112] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2429), 1, - anon_sym_DASH, - STATE(5434), 1, + STATE(5173), 1, sym_comment, - ACTIONS(2431), 10, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(1565), 4, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [202025] = 7, - ACTIONS(247), 1, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1567), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [198133] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(8478), 1, - anon_sym_COMMA, - ACTIONS(8480), 1, - anon_sym_DASH, - STATE(5429), 1, - aux_sym_shebang_repeat1, - STATE(5435), 1, + STATE(5174), 1, sym_comment, - ACTIONS(8476), 7, - sym_identifier, - anon_sym_PIPE, + ACTIONS(1639), 4, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [202053] = 4, - ACTIONS(247), 1, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1641), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [198154] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2433), 1, - anon_sym_DASH, - STATE(5436), 1, + ACTIONS(8313), 1, + anon_sym_DOT, + STATE(5175), 1, sym_comment, - ACTIONS(2435), 10, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, + STATE(5189), 1, + aux_sym_cell_path_repeat1, + STATE(5425), 1, + sym_path, + ACTIONS(1019), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1017), 4, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [202075] = 11, + anon_sym_RBRACE, + anon_sym__, + anon_sym_DOT_DOT2, + [198181] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1455), 1, + ACTIONS(1619), 1, aux_sym_ctrl_match_token1, - ACTIONS(1457), 1, - aux_sym_unquoted_token2, - ACTIONS(6262), 1, + ACTIONS(6082), 1, anon_sym_LPAREN2, - ACTIONS(8681), 1, - anon_sym_DOLLAR, - ACTIONS(8685), 1, + ACTIONS(8173), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8687), 1, + ACTIONS(8175), 1, aux_sym__immediate_decimal_token5, - STATE(5437), 1, - sym_comment, - STATE(7569), 1, + ACTIONS(8242), 1, + anon_sym_DOLLAR, + STATE(3355), 1, sym__immediate_decimal, - ACTIONS(8683), 2, + STATE(5176), 1, + sym_comment, + ACTIONS(8363), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3590), 2, + STATE(3354), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [202111] = 4, + [198214] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1960), 1, - anon_sym_DASH, - STATE(5438), 1, - sym_comment, - ACTIONS(1966), 10, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1623), 1, + aux_sym_ctrl_match_token1, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(8173), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8175), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8242), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [202133] = 4, - ACTIONS(247), 1, + STATE(3384), 1, + sym__immediate_decimal, + STATE(5177), 1, + sym_comment, + ACTIONS(8363), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3356), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [198247] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2437), 1, - anon_sym_DASH, - STATE(5439), 1, + ACTIONS(1481), 1, + anon_sym_DOLLAR, + ACTIONS(1483), 1, + anon_sym_LPAREN2, + ACTIONS(1487), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(1489), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(1491), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(1589), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(8397), 1, + aux_sym__immediate_decimal_token1, + STATE(285), 1, + sym__immediate_decimal, + STATE(5178), 1, sym_comment, - ACTIONS(2439), 10, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + STATE(391), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [198282] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1539), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [202155] = 7, + ACTIONS(1541), 1, + anon_sym_LPAREN2, + ACTIONS(1543), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(1545), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(1547), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(1589), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(8399), 1, + aux_sym__immediate_decimal_token1, + STATE(418), 1, + sym__immediate_decimal, + STATE(5179), 1, + sym_comment, + STATE(549), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [198317] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(8478), 1, - anon_sym_COMMA, - ACTIONS(8480), 1, - anon_sym_DASH, - STATE(5358), 1, - aux_sym_shebang_repeat1, - STATE(5440), 1, - sym_comment, - ACTIONS(8476), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(1563), 1, + aux_sym_ctrl_match_token1, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(8173), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8175), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8242), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [202183] = 4, + STATE(3359), 1, + sym__immediate_decimal, + STATE(5180), 1, + sym_comment, + ACTIONS(8363), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3358), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [198350] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2441), 1, - anon_sym_DASH, - STATE(5441), 1, + STATE(5181), 1, sym_comment, - ACTIONS(2443), 10, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1497), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1499), 7, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [202205] = 4, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [198371] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5212), 1, + ACTIONS(8401), 1, + anon_sym_DASH_DASH, + ACTIONS(8404), 1, anon_sym_DASH, - STATE(5442), 1, + STATE(5795), 1, + sym__flag, + STATE(5182), 2, sym_comment, - ACTIONS(5210), 10, - anon_sym_EQ, - sym_identifier, + aux_sym_ctrl_do_repeat1, + STATE(5862), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8299), 4, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [202227] = 7, - ACTIONS(247), 1, + anon_sym_SEMI, + anon_sym_as, + [198398] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(8360), 1, - anon_sym_COMMA, - ACTIONS(8362), 1, - anon_sym_DASH, - STATE(5358), 1, - aux_sym_shebang_repeat1, - STATE(5443), 1, + ACTIONS(1527), 1, + anon_sym_LPAREN2, + ACTIONS(1531), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(1533), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1676), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(3623), 1, + anon_sym_DOLLAR, + ACTIONS(8407), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8409), 1, + aux_sym__immediate_decimal_token5, + STATE(330), 1, + sym__immediate_decimal, + STATE(5183), 1, sym_comment, - ACTIONS(8358), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + STATE(417), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [198433] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1593), 1, + anon_sym_LPAREN2, + ACTIONS(1595), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(1597), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1676), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(8411), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [202255] = 9, + ACTIONS(8413), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8415), 1, + aux_sym__immediate_decimal_token5, + STATE(474), 1, + sym__immediate_decimal, + STATE(5184), 1, + sym_comment, + STATE(630), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [198468] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8417), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8419), 1, + aux_sym__immediate_decimal_token2, + STATE(5185), 1, + sym_comment, + ACTIONS(1517), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1519), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [198493] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8665), 1, + ACTIONS(3213), 1, + aux_sym_record_entry_token1, + ACTIONS(6092), 1, + anon_sym_DOLLAR, + ACTIONS(8273), 1, + sym_identifier, + ACTIONS(8421), 1, anon_sym_DASH_DASH, - ACTIONS(8667), 1, + ACTIONS(8423), 1, anon_sym_DASH, - ACTIONS(8691), 1, - anon_sym_as, - STATE(5444), 1, + STATE(5186), 1, sym_comment, - STATE(5484), 1, - aux_sym_ctrl_do_repeat1, - STATE(5867), 1, + STATE(5319), 1, + sym_val_variable, + STATE(5872), 1, + sym__variable_name, + STATE(6661), 1, sym__flag, - STATE(5714), 2, + STATE(5900), 2, sym_short_flag, sym_long_flag, - ACTIONS(8689), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [202287] = 11, - ACTIONS(247), 1, + [198528] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1427), 1, - anon_sym_EQ_GT, - ACTIONS(3645), 1, + ACTIONS(2986), 1, anon_sym_DOLLAR, - ACTIONS(6262), 1, + ACTIONS(5468), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(7825), 1, anon_sym_LPAREN2, - ACTIONS(6268), 1, + ACTIONS(7847), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7849), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7851), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6270), 1, + ACTIONS(7853), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6319), 1, - anon_sym_DOT, - STATE(5445), 1, + STATE(5187), 1, sym_comment, - STATE(6914), 1, + STATE(5595), 1, sym__immediate_decimal, - ACTIONS(6266), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6195), 2, + STATE(5820), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [202323] = 5, + [198563] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8693), 1, - aux_sym__immediate_decimal_token2, - STATE(5446), 1, + STATE(5188), 1, sym_comment, - ACTIONS(1521), 4, + ACTIONS(1517), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1519), 7, anon_sym_DOLLAR, anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1519), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token2, - [202347] = 7, - ACTIONS(247), 1, + [198584] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(8583), 1, - anon_sym_DASH, - ACTIONS(8695), 1, - anon_sym_COMMA, - STATE(5358), 1, - aux_sym_shebang_repeat1, - STATE(5447), 1, + ACTIONS(8425), 1, + anon_sym_DOT, + STATE(5425), 1, + sym_path, + STATE(5189), 2, sym_comment, - ACTIONS(8579), 7, - sym_identifier, - anon_sym_PIPE, + aux_sym_cell_path_repeat1, + ACTIONS(1023), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1021), 4, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [202375] = 4, + anon_sym_RBRACE, + anon_sym__, + anon_sym_DOT_DOT2, + [198609] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7998), 1, - anon_sym_DASH, - STATE(5448), 1, + STATE(5190), 1, sym_comment, - ACTIONS(7996), 10, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1565), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1567), 7, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [202397] = 6, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [198630] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8697), 1, - anon_sym_DOT, - ACTIONS(8699), 1, - aux_sym__immediate_decimal_token2, - STATE(5449), 1, + STATE(5191), 1, sym_comment, - ACTIONS(1473), 3, + ACTIONS(1497), 4, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1475), 6, + aux_sym__unquoted_in_list_token2, + ACTIONS(1499), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [202423] = 9, + [198651] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3225), 1, - aux_sym_expr_unary_token1, - ACTIONS(8623), 1, + STATE(5192), 1, + sym_comment, + ACTIONS(1639), 3, anon_sym_DASH, - ACTIONS(8651), 1, - anon_sym_LPAREN, - ACTIONS(8701), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1641), 7, anon_sym_DOLLAR, - STATE(1709), 1, - sym__expr_unary_minus, - STATE(5450), 1, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [198672] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5375), 1, + anon_sym_LPAREN2, + ACTIONS(5379), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5381), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5625), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8129), 1, + anon_sym_DOLLAR, + ACTIONS(8133), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8135), 1, + aux_sym__immediate_decimal_token5, + STATE(2753), 1, + sym__immediate_decimal, + STATE(5193), 1, sym_comment, - ACTIONS(3243), 2, - anon_sym_true, - anon_sym_false, - STATE(1730), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, + STATE(2829), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - [202455] = 7, + [198707] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(8705), 1, - anon_sym_COMMA, - ACTIONS(8707), 1, - anon_sym_DASH, - STATE(5358), 1, - aux_sym_shebang_repeat1, - STATE(5451), 1, - sym_comment, - ACTIONS(8703), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(1551), 1, + aux_sym_ctrl_match_token1, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(8173), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8175), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8242), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [202483] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(8707), 1, - anon_sym_DASH, - ACTIONS(8709), 1, - anon_sym_COMMA, - STATE(5358), 1, - aux_sym_shebang_repeat1, - STATE(5452), 1, + STATE(3479), 1, + sym__immediate_decimal, + STATE(5194), 1, sym_comment, - ACTIONS(8703), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [202511] = 4, + ACTIONS(8363), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3360), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [198740] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2066), 1, + ACTIONS(1575), 1, anon_sym_DASH, - STATE(5453), 1, + ACTIONS(4433), 1, + anon_sym_DOT_DOT2, + ACTIONS(8428), 1, + sym_filesize_unit, + ACTIONS(8430), 1, + sym_duration_unit, + ACTIONS(8432), 1, + aux_sym_unquoted_token2, + STATE(5195), 1, sym_comment, - ACTIONS(2072), 10, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4435), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1587), 3, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [202533] = 4, + aux_sym_ctrl_match_token1, + [198771] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8711), 1, - anon_sym_LT, - STATE(5454), 1, + STATE(5196), 1, sym_comment, - ACTIONS(8166), 10, + ACTIONS(7985), 10, anon_sym_EQ, sym_identifier, anon_sym_DASH_GT, @@ -405227,51 +380712,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [202555] = 5, - ACTIONS(247), 1, + [198790] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8372), 1, - aux_sym__immediate_decimal_token2, - STATE(5455), 1, + STATE(5197), 1, sym_comment, - ACTIONS(1475), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(1517), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1519), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1473), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token2, - [202579] = 4, + sym__entry_separator, + [198811] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1273), 1, - anon_sym_DASH, - STATE(5456), 1, + ACTIONS(8317), 1, + aux_sym__immediate_decimal_token2, + STATE(5198), 1, sym_comment, - ACTIONS(1277), 10, - anon_sym_EQ, - sym_identifier, - sym__newline, + ACTIONS(1497), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1499), 7, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [198834] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5403), 1, + anon_sym_LPAREN2, + ACTIONS(5405), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5407), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5625), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8434), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [202601] = 4, + ACTIONS(8436), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8438), 1, + aux_sym__immediate_decimal_token5, + STATE(2964), 1, + sym__immediate_decimal, + STATE(5199), 1, + sym_comment, + STATE(3013), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [198869] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8713), 1, - anon_sym_LT, - STATE(5457), 1, + ACTIONS(1515), 1, + aux_sym_ctrl_match_token1, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(8173), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8175), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8242), 1, + anon_sym_DOLLAR, + STATE(3367), 1, + sym__immediate_decimal, + STATE(5200), 1, + sym_comment, + ACTIONS(8363), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3366), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [198902] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5201), 1, sym_comment, - ACTIONS(8166), 10, + ACTIONS(7813), 10, anon_sym_EQ, sym_identifier, anon_sym_DASH_GT, @@ -405282,531 +380810,466 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [202623] = 10, + [198921] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6262), 1, - anon_sym_LPAREN2, - ACTIONS(6284), 1, - anon_sym_DOLLAR, - ACTIONS(8380), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8382), 1, - aux_sym__immediate_decimal_token5, - STATE(3723), 1, - sym__immediate_decimal, - STATE(5458), 1, + ACTIONS(8440), 1, + aux_sym__immediate_decimal_token2, + STATE(5202), 1, sym_comment, - ACTIONS(1427), 2, - sym__newline, - aux_sym_ctrl_match_token1, - ACTIONS(8715), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3591), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [202657] = 10, + ACTIONS(1565), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1567), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [198944] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6262), 1, - anon_sym_LPAREN2, - ACTIONS(6284), 1, + ACTIONS(8442), 1, + anon_sym_DOT, + ACTIONS(8444), 1, + aux_sym__immediate_decimal_token2, + STATE(5203), 1, + sym_comment, + ACTIONS(1499), 3, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1497), 5, + sym_identifier, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [198969] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1589), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(2986), 1, anon_sym_DOLLAR, - ACTIONS(8380), 1, + ACTIONS(7825), 1, + anon_sym_LPAREN2, + ACTIONS(7829), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7831), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7833), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8382), 1, + ACTIONS(7835), 1, aux_sym__immediate_decimal_token5, - STATE(3731), 1, - sym__immediate_decimal, - STATE(5459), 1, + STATE(5204), 1, sym_comment, - ACTIONS(1455), 2, - sym__newline, - aux_sym_ctrl_match_token1, - ACTIONS(8715), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3590), 2, + STATE(5626), 1, + sym__immediate_decimal, + STATE(5820), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [202691] = 10, - ACTIONS(247), 1, + [199004] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6262), 1, - anon_sym_LPAREN2, - ACTIONS(6284), 1, + ACTIONS(2537), 1, anon_sym_DOLLAR, - ACTIONS(8380), 1, + ACTIONS(3706), 1, + anon_sym_LPAREN2, + ACTIONS(3710), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(3712), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3924), 1, + aux_sym_unquoted_token3, + ACTIONS(8446), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8382), 1, + ACTIONS(8448), 1, aux_sym__immediate_decimal_token5, - STATE(3581), 1, + STATE(1216), 1, sym__immediate_decimal, - STATE(5460), 1, + STATE(5205), 1, sym_comment, - ACTIONS(1441), 2, - sym__newline, - aux_sym_ctrl_match_token1, - ACTIONS(8715), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3579), 2, + STATE(1324), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [202725] = 10, - ACTIONS(247), 1, + [199039] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6262), 1, - anon_sym_LPAREN2, - ACTIONS(6284), 1, + ACTIONS(3882), 1, anon_sym_DOLLAR, - ACTIONS(8380), 1, + ACTIONS(3884), 1, + anon_sym_LPAREN2, + ACTIONS(3886), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(3888), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3924), 1, + aux_sym_unquoted_token3, + ACTIONS(8450), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8382), 1, + ACTIONS(8452), 1, aux_sym__immediate_decimal_token5, - STATE(3585), 1, + STATE(1460), 1, sym__immediate_decimal, - STATE(5461), 1, + STATE(5206), 1, sym_comment, - ACTIONS(1553), 2, - sym__newline, - aux_sym_ctrl_match_token1, - ACTIONS(8715), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3584), 2, + STATE(1576), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [202759] = 10, - ACTIONS(247), 1, + [199074] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6262), 1, + ACTIONS(1589), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(7825), 1, anon_sym_LPAREN2, - ACTIONS(6284), 1, + ACTIONS(8019), 1, anon_sym_DOLLAR, - ACTIONS(8380), 1, + ACTIONS(8115), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8117), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8119), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8382), 1, + ACTIONS(8121), 1, aux_sym__immediate_decimal_token5, - STATE(3587), 1, - sym__immediate_decimal, - STATE(5462), 1, + STATE(5207), 1, sym_comment, - ACTIONS(1557), 2, - sym__newline, - aux_sym_ctrl_match_token1, - ACTIONS(8715), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3586), 2, + STATE(6591), 1, + sym__immediate_decimal, + STATE(2859), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [202793] = 10, + [199109] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6262), 1, - anon_sym_LPAREN2, - ACTIONS(6284), 1, - anon_sym_DOLLAR, - ACTIONS(8380), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8382), 1, - aux_sym__immediate_decimal_token5, - STATE(3589), 1, - sym__immediate_decimal, - STATE(5463), 1, + STATE(5208), 1, sym_comment, - ACTIONS(1509), 2, - sym__newline, + ACTIONS(7821), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, aux_sym_ctrl_match_token1, - ACTIONS(8715), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3611), 2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [199128] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1575), 1, + anon_sym_RBRACE, + ACTIONS(1577), 1, + anon_sym_LPAREN2, + ACTIONS(1587), 1, + sym__entry_separator, + ACTIONS(1589), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(8454), 1, + anon_sym_DOT_DOT2, + ACTIONS(8458), 1, + sym_filesize_unit, + ACTIONS(8460), 1, + sym_duration_unit, + STATE(5209), 1, + sym_comment, + STATE(7340), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - [202827] = 4, + ACTIONS(8456), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [199163] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8462), 1, + anon_sym_DOT, + ACTIONS(8464), 1, + aux_sym__immediate_decimal_token2, + STATE(5210), 1, + sym_comment, + ACTIONS(1643), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1645), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [199188] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1525), 1, + ACTIONS(1017), 1, anon_sym_DASH, - STATE(5464), 1, + ACTIONS(8466), 1, + anon_sym_DOT, + STATE(5211), 1, sym_comment, - ACTIONS(1537), 10, + STATE(5250), 1, + aux_sym_cell_path_repeat1, + STATE(5465), 1, + sym_path, + ACTIONS(1019), 6, + anon_sym_EQ, sym_identifier, sym__newline, - anon_sym_PIPE, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [202849] = 6, - ACTIONS(247), 1, + [199215] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8717), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8719), 1, + ACTIONS(8468), 1, + anon_sym_DOT, + ACTIONS(8470), 1, aux_sym__immediate_decimal_token2, - STATE(5465), 1, + STATE(5212), 1, sym_comment, - ACTIONS(1483), 3, - anon_sym_DASH_DASH, + ACTIONS(1497), 3, + anon_sym_RBRACE, + anon_sym__, + anon_sym_DOT_DOT2, + ACTIONS(1499), 5, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1481), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token2, - [202875] = 9, + sym__entry_separator, + [199240] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8665), 1, + ACTIONS(6336), 1, + anon_sym_DOLLAR, + ACTIONS(8275), 1, anon_sym_DASH_DASH, - ACTIONS(8667), 1, + ACTIONS(8277), 1, anon_sym_DASH, - ACTIONS(8723), 1, - anon_sym_as, - STATE(5444), 1, - aux_sym_ctrl_do_repeat1, - STATE(5466), 1, + ACTIONS(8472), 1, + sym_identifier, + STATE(5213), 1, sym_comment, - STATE(5867), 1, + STATE(5463), 1, + aux_sym_ctrl_do_repeat1, + STATE(5943), 1, sym__flag, - STATE(5714), 2, + STATE(6786), 1, + sym_val_variable, + STATE(7038), 1, + sym__variable_name, + STATE(5900), 2, sym_short_flag, sym_long_flag, - ACTIONS(8721), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [202907] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(493), 1, - aux_sym_expr_unary_token1, - ACTIONS(8725), 1, - anon_sym_LPAREN, - ACTIONS(8727), 1, - anon_sym_DOLLAR, - ACTIONS(8729), 1, - anon_sym_DASH, - STATE(2384), 1, - sym__expr_unary_minus, - STATE(5467), 1, - sym_comment, - ACTIONS(5241), 2, - anon_sym_true, - anon_sym_false, - STATE(2386), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [202939] = 12, + [199275] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3269), 1, - aux_sym_record_entry_token1, - ACTIONS(6284), 1, + ACTIONS(6336), 1, anon_sym_DOLLAR, - ACTIONS(8631), 1, - sym_identifier, - ACTIONS(8633), 1, + ACTIONS(8275), 1, anon_sym_DASH_DASH, - ACTIONS(8635), 1, + ACTIONS(8277), 1, anon_sym_DASH, - STATE(5468), 1, - sym_comment, - STATE(5529), 1, + ACTIONS(8472), 1, + sym_identifier, + STATE(5213), 1, aux_sym_ctrl_do_repeat1, - STATE(5619), 1, - sym_val_variable, - STATE(6260), 1, + STATE(5214), 1, + sym_comment, + STATE(5943), 1, sym__flag, - STATE(6775), 1, + STATE(6786), 1, + sym_val_variable, + STATE(7004), 1, sym__variable_name, - STATE(6245), 2, + STATE(5900), 2, sym_short_flag, sym_long_flag, - [202977] = 7, - ACTIONS(247), 1, + [199310] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(8733), 1, - anon_sym_COMMA, - ACTIONS(8735), 1, - anon_sym_DASH, - STATE(5358), 1, - aux_sym_shebang_repeat1, - STATE(5469), 1, + ACTIONS(8335), 1, + aux_sym__immediate_decimal_token2, + STATE(5215), 1, sym_comment, - ACTIONS(8731), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [203005] = 7, + ACTIONS(1497), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1499), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [199333] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(8739), 1, - anon_sym_COMMA, - ACTIONS(8741), 1, + ACTIONS(8474), 1, + anon_sym_DASH_DASH, + ACTIONS(8476), 1, anon_sym_DASH, - STATE(5358), 1, - aux_sym_shebang_repeat1, - STATE(5470), 1, + ACTIONS(8478), 1, + anon_sym_as, + STATE(5182), 1, + aux_sym_ctrl_do_repeat1, + STATE(5216), 1, sym_comment, - ACTIONS(8737), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [203033] = 7, + STATE(5795), 1, + sym__flag, + STATE(5862), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8329), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [199364] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(8304), 1, - anon_sym_COMMA, - ACTIONS(8306), 1, - anon_sym_DASH, - STATE(5469), 1, - aux_sym_shebang_repeat1, - STATE(5471), 1, + STATE(5217), 1, sym_comment, - ACTIONS(8300), 7, + ACTIONS(7923), 10, + anon_sym_EQ, sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [203061] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1427), 1, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, aux_sym_ctrl_match_token1, - ACTIONS(6262), 1, - anon_sym_LPAREN2, - ACTIONS(6319), 1, - anon_sym_DOT, - ACTIONS(8374), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [199383] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3433), 1, anon_sym_DOLLAR, - ACTIONS(8380), 1, + ACTIONS(6301), 1, + anon_sym_LPAREN2, + ACTIONS(6726), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6844), 1, + aux_sym_unquoted_token3, + ACTIONS(8480), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8482), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8382), 1, + ACTIONS(8484), 1, aux_sym__immediate_decimal_token5, - STATE(5472), 1, - sym_comment, - STATE(6742), 1, + STATE(3947), 1, sym__immediate_decimal, - ACTIONS(8378), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6807), 2, + STATE(5218), 1, + sym_comment, + STATE(4137), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [203097] = 11, - ACTIONS(247), 1, + [199418] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1427), 1, - aux_sym_ctrl_match_token1, - ACTIONS(1429), 1, - aux_sym_unquoted_token2, - ACTIONS(6262), 1, - anon_sym_LPAREN2, - ACTIONS(8681), 1, + ACTIONS(4394), 1, anon_sym_DOLLAR, - ACTIONS(8685), 1, + ACTIONS(6301), 1, + anon_sym_LPAREN2, + ACTIONS(6734), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6844), 1, + aux_sym_unquoted_token3, + ACTIONS(8486), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8488), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8687), 1, + ACTIONS(8490), 1, aux_sym__immediate_decimal_token5, - STATE(5473), 1, - sym_comment, - STATE(7657), 1, + STATE(4166), 1, sym__immediate_decimal, - ACTIONS(8683), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3591), 2, + STATE(5219), 1, + sym_comment, + STATE(4571), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [203133] = 9, - ACTIONS(247), 1, + [199453] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8665), 1, - anon_sym_DASH_DASH, - ACTIONS(8667), 1, - anon_sym_DASH, - ACTIONS(8745), 1, - anon_sym_as, - STATE(5427), 1, - aux_sym_ctrl_do_repeat1, - STATE(5474), 1, + ACTIONS(3385), 1, + anon_sym_DOLLAR, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(6702), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6790), 1, + aux_sym_unquoted_token3, + ACTIONS(8492), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8494), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8496), 1, + aux_sym__immediate_decimal_token5, + STATE(3930), 1, + sym__immediate_decimal, + STATE(5220), 1, sym_comment, - STATE(5867), 1, - sym__flag, - STATE(5714), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8743), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [203165] = 5, - ACTIONS(247), 1, + STATE(3310), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [199488] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1525), 1, - anon_sym_DASH, - ACTIONS(7303), 1, - aux_sym__unquoted_in_list_token2, - STATE(5475), 1, - sym_comment, - ACTIONS(1537), 9, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3991), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [203189] = 5, - ACTIONS(247), 1, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(6716), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6790), 1, + aux_sym_unquoted_token3, + ACTIONS(8498), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8500), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8502), 1, + aux_sym__immediate_decimal_token5, + STATE(4109), 1, + sym__immediate_decimal, + STATE(5221), 1, + sym_comment, + STATE(3344), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [199523] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8747), 1, + ACTIONS(8504), 1, aux_sym__immediate_decimal_token2, - STATE(5476), 1, + STATE(5222), 1, sym_comment, - ACTIONS(1519), 3, - anon_sym_DASH, + ACTIONS(1565), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1521), 7, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1567), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [203213] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(8645), 1, - anon_sym_DASH, - ACTIONS(8749), 1, - anon_sym_COMMA, - STATE(5358), 1, - aux_sym_shebang_repeat1, - STATE(5477), 1, - sym_comment, - ACTIONS(8641), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [203241] = 4, + sym__entry_separator, + [199546] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2401), 1, + ACTIONS(1898), 1, anon_sym_DASH, - STATE(5478), 1, - sym_comment, - ACTIONS(2403), 10, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [203263] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7417), 1, + ACTIONS(8506), 1, sym__newline, - ACTIONS(8304), 1, - anon_sym_COMMA, - ACTIONS(8306), 1, - anon_sym_DASH, - STATE(5358), 1, - aux_sym_shebang_repeat1, - STATE(5479), 1, - sym_comment, - ACTIONS(8300), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [203291] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3561), 1, - aux_sym_expr_unary_token1, - ACTIONS(6857), 1, - anon_sym_LPAREN, - ACTIONS(6989), 1, - anon_sym_DOLLAR, - ACTIONS(8753), 1, - anon_sym_DASH, - STATE(4797), 1, - sym__expr_unary_minus, - STATE(5480), 1, + STATE(5223), 2, sym_comment, - ACTIONS(8751), 2, - anon_sym_true, - anon_sym_false, - STATE(4805), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [203323] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(8360), 1, - anon_sym_COMMA, - ACTIONS(8362), 1, - anon_sym_DASH, - STATE(5404), 1, aux_sym_shebang_repeat1, - STATE(5481), 1, - sym_comment, - ACTIONS(8358), 7, + ACTIONS(1900), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -405814,349 +381277,243 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [203351] = 7, + [199569] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7417), 1, - sym__newline, - ACTIONS(8583), 1, + ACTIONS(8214), 1, anon_sym_DASH, - ACTIONS(8755), 1, - anon_sym_COMMA, - STATE(5452), 1, - aux_sym_shebang_repeat1, - STATE(5482), 1, + STATE(5224), 1, sym_comment, - ACTIONS(8579), 7, + ACTIONS(8209), 9, sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [203379] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7417), 1, sym__newline, - ACTIONS(8458), 1, - anon_sym_COMMA, - ACTIONS(8460), 1, - anon_sym_DASH, - STATE(5470), 1, - aux_sym_shebang_repeat1, - STATE(5483), 1, - sym_comment, - ACTIONS(8456), 7, - sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [203407] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8759), 1, - anon_sym_DASH_DASH, - ACTIONS(8762), 1, - anon_sym_DASH, - STATE(5867), 1, - sym__flag, - STATE(5484), 2, - sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(5714), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8757), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_as, - [203435] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1539), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(8086), 1, - anon_sym_LPAREN2, - ACTIONS(8396), 1, - anon_sym_DOLLAR, - ACTIONS(8398), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8400), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8402), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8404), 1, - aux_sym__immediate_decimal_token5, - STATE(5485), 1, - sym_comment, - STATE(6725), 1, - sym__immediate_decimal, - STATE(3148), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [203470] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2921), 1, - anon_sym_DOLLAR, - ACTIONS(5635), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8086), 1, - anon_sym_LPAREN2, - ACTIONS(8090), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8092), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8094), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8096), 1, - aux_sym__immediate_decimal_token5, - STATE(5486), 1, - sym_comment, - STATE(5932), 1, - sym__immediate_decimal, - STATE(5984), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [203505] = 11, + [199590] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5635), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8086), 1, - anon_sym_LPAREN2, - ACTIONS(8396), 1, - anon_sym_DOLLAR, - ACTIONS(8553), 1, + ACTIONS(8509), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8555), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8557), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8559), 1, - aux_sym__immediate_decimal_token5, - STATE(5487), 1, + ACTIONS(8511), 1, + aux_sym__immediate_decimal_token2, + STATE(5225), 1, sym_comment, - STATE(6810), 1, - sym__immediate_decimal, - STATE(3148), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [203540] = 6, + ACTIONS(1517), 3, + anon_sym_RBRACE, + anon_sym__, + anon_sym_DOT_DOT2, + ACTIONS(1519), 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [199615] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8765), 1, - anon_sym_DOT, - ACTIONS(8767), 1, + ACTIONS(8513), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8515), 1, aux_sym__immediate_decimal_token2, - STATE(5488), 1, + STATE(5226), 1, sym_comment, - ACTIONS(1475), 3, + ACTIONS(1519), 3, anon_sym_DOLLAR, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1473), 5, + ACTIONS(1517), 5, sym_identifier, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [203565] = 11, - ACTIONS(3), 1, + [199640] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1525), 1, - anon_sym_RBRACK, - ACTIONS(1537), 1, - sym__entry_separator, - ACTIONS(5625), 1, - anon_sym_LPAREN2, - ACTIONS(5635), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(8769), 1, + ACTIONS(4433), 1, anon_sym_DOT_DOT2, - ACTIONS(8773), 1, + ACTIONS(8432), 1, + aux_sym_unquoted_token2, + ACTIONS(8517), 1, sym_filesize_unit, - ACTIONS(8775), 1, + ACTIONS(8519), 1, sym_duration_unit, - STATE(5489), 1, + STATE(5227), 1, sym_comment, - STATE(7640), 1, - sym__expr_parenthesized_immediate, - ACTIONS(8771), 2, + ACTIONS(1575), 2, + sym_identifier, + anon_sym_DASH, + ACTIONS(1587), 2, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + ACTIONS(4435), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [203600] = 6, - ACTIONS(247), 1, + [199671] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8777), 1, + ACTIONS(5468), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(7825), 1, + anon_sym_LPAREN2, + ACTIONS(8019), 1, + anon_sym_DOLLAR, + ACTIONS(8021), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8779), 1, - aux_sym__immediate_decimal_token2, - STATE(5490), 1, + ACTIONS(8023), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8025), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8027), 1, + aux_sym__immediate_decimal_token5, + STATE(5228), 1, sym_comment, - ACTIONS(1483), 3, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1481), 5, - sym_identifier, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [203625] = 11, + STATE(6419), 1, + sym__immediate_decimal, + STATE(2859), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [199706] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6535), 1, - anon_sym_DOLLAR, - ACTIONS(8633), 1, + ACTIONS(8474), 1, anon_sym_DASH_DASH, - ACTIONS(8635), 1, + ACTIONS(8476), 1, anon_sym_DASH, - ACTIONS(8781), 1, - sym_identifier, - STATE(5491), 1, - sym_comment, - STATE(5786), 1, + ACTIONS(8521), 1, + anon_sym_as, + STATE(5182), 1, aux_sym_ctrl_do_repeat1, - STATE(6260), 1, + STATE(5229), 1, + sym_comment, + STATE(5795), 1, sym__flag, - STATE(7129), 1, - sym_val_variable, - STATE(7335), 1, - sym__variable_name, - STATE(6245), 2, + STATE(5862), 2, sym_short_flag, sym_long_flag, - [203660] = 10, + ACTIONS(8291), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [199737] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1427), 1, - aux_sym_ctrl_match_token1, - ACTIONS(6262), 1, - anon_sym_LPAREN2, - ACTIONS(8380), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8382), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8681), 1, - anon_sym_DOLLAR, - STATE(3723), 1, - sym__immediate_decimal, - STATE(5492), 1, + ACTIONS(8474), 1, + anon_sym_DASH_DASH, + ACTIONS(8476), 1, + anon_sym_DASH, + ACTIONS(8523), 1, + anon_sym_as, + STATE(5216), 1, + aux_sym_ctrl_do_repeat1, + STATE(5230), 1, sym_comment, - ACTIONS(8715), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3591), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [203693] = 11, - ACTIONS(3), 1, + STATE(5795), 1, + sym__flag, + STATE(5862), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8295), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [199768] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2694), 1, + ACTIONS(6092), 1, anon_sym_DOLLAR, - ACTIONS(4041), 1, - anon_sym_LPAREN2, - ACTIONS(4045), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(4047), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4302), 1, - aux_sym_unquoted_token3, - ACTIONS(8783), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8785), 1, - aux_sym__immediate_decimal_token5, - STATE(1485), 1, - sym__immediate_decimal, - STATE(5493), 1, + ACTIONS(8273), 1, + sym_identifier, + ACTIONS(8275), 1, + anon_sym_DASH_DASH, + ACTIONS(8277), 1, + anon_sym_DASH, + STATE(5231), 1, sym_comment, - STATE(1600), 2, - sym__expr_parenthesized_immediate, + STATE(5240), 1, + aux_sym_ctrl_do_repeat1, + STATE(5319), 1, sym_val_variable, - [203728] = 11, - ACTIONS(3), 1, + STATE(5943), 1, + sym__flag, + STATE(6137), 1, + sym__variable_name, + STATE(5900), 2, + sym_short_flag, + sym_long_flag, + [199803] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4124), 1, + ACTIONS(3215), 1, + aux_sym_record_entry_token1, + ACTIONS(6092), 1, anon_sym_DOLLAR, - ACTIONS(4126), 1, - anon_sym_LPAREN2, - ACTIONS(4128), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(4130), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4302), 1, - aux_sym_unquoted_token3, - ACTIONS(8787), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8789), 1, - aux_sym__immediate_decimal_token5, - STATE(1718), 1, - sym__immediate_decimal, - STATE(5494), 1, + ACTIONS(8273), 1, + sym_identifier, + ACTIONS(8421), 1, + anon_sym_DASH_DASH, + ACTIONS(8423), 1, + anon_sym_DASH, + STATE(5232), 1, sym_comment, - STATE(2085), 2, - sym__expr_parenthesized_immediate, + STATE(5319), 1, sym_val_variable, - [203763] = 8, - ACTIONS(3), 1, + STATE(5872), 1, + sym__variable_name, + STATE(6661), 1, + sym__flag, + STATE(5900), 2, + sym_short_flag, + sym_long_flag, + [199838] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8791), 1, - anon_sym_DOT, - STATE(5495), 1, + ACTIONS(8474), 1, + anon_sym_DASH_DASH, + ACTIONS(8476), 1, + anon_sym_DASH, + ACTIONS(8525), 1, + anon_sym_as, + STATE(5229), 1, + aux_sym_ctrl_do_repeat1, + STATE(5233), 1, sym_comment, - STATE(5648), 1, - aux_sym_cell_path_repeat1, - STATE(5845), 1, - sym_path, - STATE(6135), 1, - sym_cell_path, - ACTIONS(1599), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(1603), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [203792] = 11, - ACTIONS(3), 1, + STATE(5795), 1, + sym__flag, + STATE(5862), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8250), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [199869] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5564), 1, - anon_sym_LPAREN2, - ACTIONS(5568), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5570), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5786), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8346), 1, - anon_sym_DOLLAR, - ACTIONS(8348), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8350), 1, - aux_sym__immediate_decimal_token5, - STATE(2946), 1, - sym__immediate_decimal, - STATE(5496), 1, + STATE(5234), 1, sym_comment, - STATE(3060), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [203827] = 3, + ACTIONS(7859), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + aux_sym_ctrl_match_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [199888] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5497), 1, + STATE(5235), 1, sym_comment, - ACTIONS(8549), 10, + ACTIONS(7863), 10, anon_sym_EQ, sym_identifier, anon_sym_DASH_GT, @@ -406167,43987 +381524,43473 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [203846] = 9, - ACTIONS(247), 1, + [199907] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1525), 1, - anon_sym_DASH, - ACTIONS(4694), 1, + ACTIONS(1575), 1, + anon_sym_RBRACK, + ACTIONS(1587), 1, + sym__entry_separator, + ACTIONS(5458), 1, + anon_sym_LPAREN2, + ACTIONS(5468), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(8527), 1, anon_sym_DOT_DOT2, - ACTIONS(8793), 1, + ACTIONS(8531), 1, sym_filesize_unit, - ACTIONS(8795), 1, + ACTIONS(8533), 1, sym_duration_unit, - ACTIONS(8797), 1, - aux_sym_unquoted_token2, - STATE(5498), 1, + STATE(5236), 1, sym_comment, - ACTIONS(4696), 2, + STATE(7357), 1, + sym__expr_parenthesized_immediate, + ACTIONS(8529), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1537), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [203877] = 11, + [199942] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5609), 1, + ACTIONS(3523), 1, + anon_sym_DOLLAR, + ACTIONS(6848), 1, anon_sym_LPAREN2, - ACTIONS(5611), 1, + ACTIONS(6852), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5613), 1, + ACTIONS(6854), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5786), 1, + ACTIONS(7005), 1, aux_sym__unquoted_in_list_token3, - ACTIONS(8799), 1, - anon_sym_DOLLAR, - ACTIONS(8801), 1, + ACTIONS(8535), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8803), 1, + ACTIONS(8537), 1, aux_sym__immediate_decimal_token5, - STATE(3234), 1, + STATE(4251), 1, sym__immediate_decimal, - STATE(5499), 1, + STATE(5237), 1, sym_comment, - STATE(3249), 2, + STATE(4477), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [203912] = 4, + [199977] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5500), 1, + STATE(5238), 1, sym_comment, - ACTIONS(1473), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1475), 7, + ACTIONS(1499), 4, anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1497), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - [203933] = 11, + aux_sym_unquoted_token2, + [199998] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6848), 1, + anon_sym_LPAREN2, + ACTIONS(6912), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6914), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7005), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8539), 1, + anon_sym_DOLLAR, + ACTIONS(8541), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8543), 1, + aux_sym__immediate_decimal_token5, + STATE(4596), 1, + sym__immediate_decimal, + STATE(5239), 1, + sym_comment, + STATE(5051), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [200033] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6284), 1, + ACTIONS(6092), 1, anon_sym_DOLLAR, - ACTIONS(8631), 1, + ACTIONS(8273), 1, sym_identifier, - ACTIONS(8633), 1, + ACTIONS(8275), 1, anon_sym_DASH_DASH, - ACTIONS(8635), 1, + ACTIONS(8277), 1, anon_sym_DASH, - STATE(5501), 1, + STATE(5240), 1, sym_comment, - STATE(5529), 1, - aux_sym_ctrl_do_repeat1, - STATE(5619), 1, + STATE(5319), 1, sym_val_variable, - STATE(6260), 1, + STATE(5463), 1, + aux_sym_ctrl_do_repeat1, + STATE(5943), 1, sym__flag, - STATE(6775), 1, + STATE(6555), 1, sym__variable_name, - STATE(6245), 2, + STATE(5900), 2, sym_short_flag, sym_long_flag, - [203968] = 4, + [200068] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5502), 1, + STATE(5241), 1, sym_comment, - ACTIONS(1481), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1483), 7, + ACTIONS(1519), 4, anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1517), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - [203989] = 11, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [200089] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(7145), 1, + ACTIONS(1493), 1, + anon_sym_EQ_GT, + ACTIONS(6082), 1, anon_sym_LPAREN2, - ACTIONS(7149), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7151), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7303), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8805), 1, + ACTIONS(6088), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8807), 1, + ACTIONS(6090), 1, aux_sym__immediate_decimal_token5, - STATE(4666), 1, + ACTIONS(7839), 1, + anon_sym_DOLLAR, + STATE(3486), 1, sym__immediate_decimal, - STATE(5503), 1, + STATE(5242), 1, sym_comment, - STATE(5007), 2, + ACTIONS(6094), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3369), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [204024] = 11, - ACTIONS(3), 1, + [200122] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7145), 1, + ACTIONS(1551), 1, + anon_sym_EQ_GT, + ACTIONS(6082), 1, anon_sym_LPAREN2, - ACTIONS(7226), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7228), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7303), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8809), 1, - anon_sym_DOLLAR, - ACTIONS(8811), 1, + ACTIONS(6088), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8813), 1, + ACTIONS(6090), 1, aux_sym__immediate_decimal_token5, - STATE(5180), 1, + ACTIONS(7839), 1, + anon_sym_DOLLAR, + STATE(3479), 1, sym__immediate_decimal, - STATE(5504), 1, + STATE(5243), 1, sym_comment, - STATE(5421), 2, + ACTIONS(6094), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3360), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [204059] = 11, + [200155] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4889), 1, + ACTIONS(4680), 1, aux_sym_unquoted_token3, - ACTIONS(6262), 1, + ACTIONS(6082), 1, anon_sym_LPAREN2, - ACTIONS(7913), 1, + ACTIONS(7613), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8815), 1, + ACTIONS(8371), 1, anon_sym_DOLLAR, - ACTIONS(8817), 1, + ACTIONS(8545), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8819), 1, + ACTIONS(8547), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8821), 1, + ACTIONS(8549), 1, aux_sym__immediate_decimal_token5, - STATE(5505), 1, + STATE(5244), 1, sym_comment, - STATE(5885), 1, + STATE(5576), 1, sym__immediate_decimal, - STATE(6189), 2, + STATE(5874), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [204094] = 11, + [200190] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4889), 1, + ACTIONS(4680), 1, aux_sym_unquoted_token3, - ACTIONS(6262), 1, + ACTIONS(6082), 1, anon_sym_LPAREN2, - ACTIONS(8120), 1, + ACTIONS(7841), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8823), 1, + ACTIONS(8381), 1, anon_sym_DOLLAR, - ACTIONS(8825), 1, + ACTIONS(8551), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8827), 1, + ACTIONS(8553), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8829), 1, + ACTIONS(8555), 1, aux_sym__immediate_decimal_token5, - STATE(5506), 1, + STATE(5245), 1, sym_comment, - STATE(6541), 1, + STATE(6531), 1, sym__immediate_decimal, - STATE(3604), 2, + STATE(3344), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [204129] = 10, - ACTIONS(247), 1, + [200225] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1455), 1, - aux_sym_ctrl_match_token1, - ACTIONS(6262), 1, + ACTIONS(3692), 1, + anon_sym_DOLLAR, + ACTIONS(6082), 1, anon_sym_LPAREN2, - ACTIONS(8380), 1, + ACTIONS(8171), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8379), 1, + aux_sym_unquoted_token3, + ACTIONS(8557), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8559), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8382), 1, + ACTIONS(8561), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8681), 1, - anon_sym_DOLLAR, - STATE(3731), 1, - sym__immediate_decimal, - STATE(5507), 1, + STATE(5246), 1, sym_comment, - ACTIONS(8715), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3590), 2, + STATE(5934), 1, + sym__immediate_decimal, + STATE(6211), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [204162] = 4, + [200260] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(5508), 1, + ACTIONS(8327), 1, + aux_sym__immediate_decimal_token2, + STATE(5247), 1, sym_comment, - ACTIONS(1519), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1521), 7, - anon_sym_DOLLAR, + ACTIONS(1499), 3, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1497), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - [204183] = 4, + aux_sym_unquoted_token2, + [200283] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4089), 1, + anon_sym_DOLLAR, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(8244), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8379), 1, + aux_sym_unquoted_token3, + ACTIONS(8563), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8565), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8567), 1, + aux_sym__immediate_decimal_token5, + STATE(5248), 1, + sym_comment, + STATE(7394), 1, + sym__immediate_decimal, + STATE(3344), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [200318] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5509), 1, + STATE(5249), 1, sym_comment, - ACTIONS(1585), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1587), 7, + ACTIONS(1567), 4, anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1565), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - [204204] = 11, + aux_sym_unquoted_token2, + [200339] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1021), 1, + anon_sym_DASH, + ACTIONS(8569), 1, + anon_sym_DOT, + STATE(5465), 1, + sym_path, + STATE(5250), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(1023), 6, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [200364] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2159), 1, + ACTIONS(2174), 1, anon_sym_DOLLAR, - ACTIONS(7033), 1, + ACTIONS(6792), 1, anon_sym_LPAREN2, - ACTIONS(7037), 1, + ACTIONS(6796), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7039), 1, + ACTIONS(6798), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7041), 1, + ACTIONS(6800), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7043), 1, + ACTIONS(6802), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7183), 1, + ACTIONS(6930), 1, aux_sym_unquoted_token3, - STATE(4430), 1, + STATE(4070), 1, sym__immediate_decimal, - STATE(5510), 1, + STATE(5251), 1, sym_comment, - STATE(4578), 2, + STATE(4390), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [204239] = 11, + [200399] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4413), 1, + ACTIONS(4227), 1, anon_sym_DOLLAR, - ACTIONS(7033), 1, + ACTIONS(6792), 1, anon_sym_LPAREN2, - ACTIONS(7073), 1, + ACTIONS(6810), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7075), 1, + ACTIONS(6812), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7077), 1, + ACTIONS(6814), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7079), 1, + ACTIONS(6816), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7183), 1, + ACTIONS(6930), 1, aux_sym_unquoted_token3, - STATE(4817), 1, + STATE(4491), 1, sym__immediate_decimal, - STATE(5511), 1, + STATE(5252), 1, sym_comment, - STATE(5019), 2, + STATE(4837), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [204274] = 9, - ACTIONS(247), 1, + [200434] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8831), 1, - anon_sym_DASH_DASH, - ACTIONS(8833), 1, - anon_sym_DASH, - ACTIONS(8835), 1, - anon_sym_as, - STATE(5512), 1, + ACTIONS(8572), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8574), 1, + aux_sym__immediate_decimal_token2, + STATE(5253), 1, sym_comment, - STATE(5550), 1, - aux_sym_ctrl_do_repeat1, - STATE(6006), 1, - sym__flag, - STATE(6161), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8743), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [204305] = 5, - ACTIONS(247), 1, + ACTIONS(1631), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1633), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [200459] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8657), 1, + ACTIONS(8576), 1, + anon_sym_DOT, + ACTIONS(8578), 1, aux_sym__immediate_decimal_token2, - STATE(5513), 1, + STATE(5254), 1, sym_comment, - ACTIONS(1473), 2, + ACTIONS(1497), 3, + sym__newline, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1475), 7, + ACTIONS(1499), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [200484] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5255), 1, + sym_comment, + ACTIONS(7572), 10, + anon_sym_EQ, + sym_identifier, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + aux_sym_ctrl_match_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [200503] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1686), 1, + anon_sym_DOT_DOT2, + ACTIONS(6099), 1, + anon_sym_DOT, + STATE(1484), 1, + sym_cell_path, + STATE(3086), 1, + aux_sym_cell_path_repeat1, + STATE(3122), 1, + sym_path, + STATE(5256), 1, + sym_comment, + ACTIONS(1688), 5, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [204328] = 5, + [200532] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8837), 1, - aux_sym__immediate_decimal_token2, - STATE(5514), 1, + ACTIONS(1625), 1, + anon_sym_DOT_DOT2, + ACTIONS(6099), 1, + anon_sym_DOT, + STATE(1533), 1, + sym_cell_path, + STATE(3086), 1, + aux_sym_cell_path_repeat1, + STATE(3122), 1, + sym_path, + STATE(5257), 1, sym_comment, - ACTIONS(1519), 2, + ACTIONS(1629), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [200561] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1011), 1, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1521), 7, + ACTIONS(6099), 1, + anon_sym_DOT, + STATE(3086), 1, + aux_sym_cell_path_repeat1, + STATE(3122), 1, + sym_path, + STATE(4119), 1, + sym_cell_path, + STATE(5258), 1, + sym_comment, + ACTIONS(1013), 5, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + [200590] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8580), 1, + aux_sym__immediate_decimal_token2, + STATE(5259), 1, + sym_comment, + ACTIONS(1567), 3, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1565), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - [204351] = 5, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [200613] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8617), 1, - aux_sym__immediate_decimal_token2, - STATE(5515), 1, + STATE(5260), 1, sym_comment, - ACTIONS(1473), 3, - anon_sym_RBRACK, + ACTIONS(1565), 2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1475), 6, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1567), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [204374] = 11, - ACTIONS(3), 1, + [200633] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1461), 1, + ACTIONS(7825), 1, anon_sym_LPAREN2, - ACTIONS(1465), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(1467), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1567), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(3857), 1, + ACTIONS(8582), 1, anon_sym_DOLLAR, - ACTIONS(8839), 1, + ACTIONS(8584), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8841), 1, + ACTIONS(8586), 1, aux_sym__immediate_decimal_token5, - STATE(298), 1, - sym__immediate_decimal, - STATE(5516), 1, + STATE(5261), 1, sym_comment, - STATE(444), 2, + STATE(5828), 1, + sym__immediate_decimal, + ACTIONS(7903), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5819), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [204409] = 11, - ACTIONS(3), 1, + [200663] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1491), 1, + ACTIONS(6301), 1, anon_sym_LPAREN2, - ACTIONS(1493), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(1495), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1567), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(8843), 1, - anon_sym_DOLLAR, - ACTIONS(8845), 1, + ACTIONS(6307), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8847), 1, + ACTIONS(6309), 1, aux_sym__immediate_decimal_token5, - STATE(510), 1, + ACTIONS(6336), 1, + anon_sym_DOLLAR, + STATE(3792), 1, sym__immediate_decimal, - STATE(5517), 1, + STATE(5262), 1, + sym_comment, + ACTIONS(6371), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1778), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [200693] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7825), 1, + anon_sym_LPAREN2, + ACTIONS(8584), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8586), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8588), 1, + anon_sym_DOLLAR, + STATE(5263), 1, sym_comment, - STATE(600), 2, + STATE(7144), 1, + sym__immediate_decimal, + ACTIONS(8111), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7086), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [204444] = 9, + [200723] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8831), 1, + ACTIONS(8590), 1, + anon_sym_DOT, + ACTIONS(8592), 1, + aux_sym__immediate_decimal_token2, + STATE(5264), 1, + sym_comment, + ACTIONS(1643), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1645), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [200747] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8594), 1, + anon_sym_EQ2, + ACTIONS(8596), 1, + sym_short_flag_identifier, + STATE(5265), 1, + sym_comment, + ACTIONS(4747), 3, anon_sym_DASH_DASH, - ACTIONS(8833), 1, anon_sym_DASH, - ACTIONS(8849), 1, anon_sym_as, - STATE(5518), 1, - sym_comment, - STATE(5554), 1, - aux_sym_ctrl_do_repeat1, - STATE(6006), 1, - sym__flag, - STATE(6161), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8689), 3, - ts_builtin_sym_end, + ACTIONS(4749), 4, sym__newline, anon_sym_SEMI, - [204475] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [200771] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8699), 1, + ACTIONS(8598), 1, + anon_sym_DOT, + ACTIONS(8600), 1, aux_sym__immediate_decimal_token2, - STATE(5519), 1, + STATE(5266), 1, sym_comment, - ACTIONS(1473), 3, - anon_sym_RBRACE, + ACTIONS(1497), 2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1475), 6, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1499), 5, + anon_sym_in, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [204498] = 5, + [200795] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8851), 1, + ACTIONS(8464), 1, aux_sym__immediate_decimal_token2, - STATE(5520), 1, + STATE(5267), 1, sym_comment, - ACTIONS(1519), 3, + ACTIONS(1643), 4, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1521), 6, + aux_sym__unquoted_in_list_token2, + ACTIONS(1645), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - [204521] = 8, + [200817] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8791), 1, - anon_sym_DOT, - STATE(5521), 1, + STATE(5268), 1, sym_comment, - STATE(5648), 1, - aux_sym_cell_path_repeat1, - STATE(5845), 1, - sym_path, - STATE(6154), 1, - sym_cell_path, - ACTIONS(945), 3, - anon_sym_RBRACK, + ACTIONS(1517), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, - ACTIONS(947), 3, + aux_sym__unquoted_in_record_token2, + ACTIONS(1519), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - [204550] = 3, + [200837] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(5522), 1, + ACTIONS(7825), 1, + anon_sym_LPAREN2, + ACTIONS(8588), 1, + anon_sym_DOLLAR, + ACTIONS(8602), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8604), 1, + aux_sym__immediate_decimal_token5, + STATE(5269), 1, sym_comment, - ACTIONS(8448), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [204569] = 10, + STATE(6198), 1, + sym__immediate_decimal, + ACTIONS(8115), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2862), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [200867] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1441), 1, - aux_sym_ctrl_match_token1, - ACTIONS(6262), 1, + ACTIONS(6740), 1, anon_sym_LPAREN2, - ACTIONS(8380), 1, + ACTIONS(8606), 1, + anon_sym_DOLLAR, + ACTIONS(8608), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8382), 1, + ACTIONS(8610), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8681), 1, - anon_sym_DOLLAR, - STATE(3581), 1, + STATE(4751), 1, sym__immediate_decimal, - STATE(5523), 1, + STATE(5270), 1, sym_comment, - ACTIONS(8715), 2, + ACTIONS(6806), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3579), 2, + STATE(4750), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [204602] = 3, + [200897] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(5524), 1, + ACTIONS(8612), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8614), 1, + aux_sym__immediate_decimal_token2, + STATE(5271), 1, sym_comment, - ACTIONS(8452), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [204621] = 7, - ACTIONS(247), 1, + ACTIONS(1517), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1519), 5, + anon_sym_in, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [200921] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(951), 1, - anon_sym_DASH, - ACTIONS(8853), 1, - anon_sym_DOT, - STATE(5525), 1, + ACTIONS(8616), 1, + aux_sym__immediate_decimal_token2, + STATE(5272), 1, sym_comment, - STATE(5575), 1, - aux_sym_cell_path_repeat1, - STATE(5711), 1, - sym_path, - ACTIONS(953), 6, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - sym__table_head_separator, - [204648] = 11, - ACTIONS(3), 1, + ACTIONS(1565), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1567), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [200943] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1539), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(2921), 1, - anon_sym_DOLLAR, - ACTIONS(8086), 1, + ACTIONS(3884), 1, anon_sym_LPAREN2, - ACTIONS(8278), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8280), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8282), 1, + ACTIONS(3890), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8284), 1, + ACTIONS(3892), 1, aux_sym__immediate_decimal_token5, - STATE(5526), 1, - sym_comment, - STATE(5914), 1, + ACTIONS(7887), 1, + anon_sym_DOLLAR, + STATE(1428), 1, sym__immediate_decimal, - STATE(5984), 2, + STATE(5273), 1, + sym_comment, + ACTIONS(3888), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1590), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [204683] = 6, + [200973] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8855), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8857), 1, - aux_sym__immediate_decimal_token2, - STATE(5527), 1, + STATE(5274), 1, sym_comment, - ACTIONS(1569), 4, + ACTIONS(1046), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1044), 6, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym__, + anon_sym_QMARK2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1571), 4, + anon_sym_DOT, + [200993] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3884), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [204708] = 5, + ACTIONS(3930), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(3932), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7887), 1, + anon_sym_DOLLAR, + STATE(1589), 1, + sym__immediate_decimal, + STATE(5275), 1, + sym_comment, + ACTIONS(3928), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1588), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [201023] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8859), 1, - aux_sym__immediate_decimal_token2, - STATE(5528), 1, + STATE(5276), 1, sym_comment, - ACTIONS(1519), 3, - anon_sym_RBRACK, + ACTIONS(1565), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1521), 6, + aux_sym__unquoted_in_record_token2, + ACTIONS(1567), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [204731] = 11, + [201043] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6284), 1, + ACTIONS(6092), 1, anon_sym_DOLLAR, - ACTIONS(8631), 1, + ACTIONS(8273), 1, sym_identifier, - ACTIONS(8633), 1, + ACTIONS(8421), 1, anon_sym_DASH_DASH, - ACTIONS(8635), 1, + ACTIONS(8423), 1, anon_sym_DASH, - STATE(5529), 1, + STATE(5277), 1, sym_comment, - STATE(5619), 1, + STATE(5319), 1, sym_val_variable, - STATE(5786), 1, - aux_sym_ctrl_do_repeat1, - STATE(6260), 1, - sym__flag, - STATE(6604), 1, + STATE(5827), 1, sym__variable_name, - STATE(6245), 2, + STATE(6648), 1, + sym__flag, + STATE(5900), 2, sym_short_flag, sym_long_flag, - [204766] = 11, + [201075] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1525), 1, + ACTIONS(8470), 1, + aux_sym__immediate_decimal_token2, + STATE(5278), 1, + sym_comment, + ACTIONS(1497), 3, anon_sym_RBRACE, - ACTIONS(1527), 1, - anon_sym_LPAREN2, - ACTIONS(1537), 1, - sym__entry_separator, - ACTIONS(1539), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(8861), 1, + anon_sym__, anon_sym_DOT_DOT2, - ACTIONS(8865), 1, - sym_filesize_unit, - ACTIONS(8867), 1, - sym_duration_unit, - STATE(5530), 1, - sym_comment, - STATE(7599), 1, - sym__expr_parenthesized_immediate, - ACTIONS(8863), 2, + ACTIONS(1499), 5, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [204801] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4694), 1, - anon_sym_DOT_DOT2, - ACTIONS(8797), 1, - aux_sym_unquoted_token2, - ACTIONS(8869), 1, sym_filesize_unit, - ACTIONS(8871), 1, sym_duration_unit, - STATE(5531), 1, - sym_comment, - ACTIONS(1525), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(1537), 2, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - ACTIONS(4696), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [204832] = 8, + sym__entry_separator, + [201097] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1599), 1, - anon_sym_DOT_DOT2, - ACTIONS(6310), 1, - anon_sym_DOT, - STATE(1780), 1, - sym_cell_path, - STATE(3342), 1, - aux_sym_cell_path_repeat1, - STATE(3383), 1, - sym_path, - STATE(5532), 1, + ACTIONS(6301), 1, + anon_sym_LPAREN2, + ACTIONS(6732), 1, + anon_sym_DOLLAR, + ACTIONS(6736), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6738), 1, + aux_sym__immediate_decimal_token5, + STATE(4177), 1, + sym__immediate_decimal, + STATE(5279), 1, sym_comment, - ACTIONS(1603), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(6734), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4502), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [201127] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5280), 1, + sym_comment, + ACTIONS(1639), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1641), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [204861] = 3, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [201147] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(5533), 1, + ACTIONS(5401), 1, + anon_sym_DOLLAR, + ACTIONS(5403), 1, + anon_sym_LPAREN2, + ACTIONS(5498), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5500), 1, + aux_sym__immediate_decimal_token5, + STATE(3019), 1, + sym__immediate_decimal, + STATE(5281), 1, sym_comment, - ACTIONS(8520), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [204880] = 8, + ACTIONS(5496), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3018), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [201177] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(945), 1, - anon_sym_DOT_DOT2, - ACTIONS(6310), 1, - anon_sym_DOT, - STATE(3342), 1, - aux_sym_cell_path_repeat1, - STATE(3383), 1, - sym_path, - STATE(4362), 1, - sym_cell_path, - STATE(5534), 1, + STATE(5282), 1, sym_comment, - ACTIONS(947), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1641), 3, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [204909] = 11, - ACTIONS(3), 1, + ACTIONS(1639), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [201197] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(7145), 1, + ACTIONS(6082), 1, anon_sym_LPAREN2, - ACTIONS(7199), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7201), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7303), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8873), 1, + ACTIONS(6092), 1, + anon_sym_DOLLAR, + ACTIONS(6718), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8875), 1, + ACTIONS(6720), 1, aux_sym__immediate_decimal_token5, - STATE(4791), 1, + STATE(4141), 1, sym__immediate_decimal, - STATE(5535), 1, + STATE(5283), 1, sym_comment, - STATE(5007), 2, + ACTIONS(6716), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3383), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [204944] = 11, - ACTIONS(3), 1, + [201227] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5548), 1, - anon_sym_DOLLAR, - ACTIONS(5550), 1, + ACTIONS(6848), 1, anon_sym_LPAREN2, - ACTIONS(5552), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5554), 1, + ACTIONS(6856), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5556), 1, + ACTIONS(6858), 1, aux_sym__immediate_decimal_token5, - ACTIONS(5635), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8877), 1, - aux_sym__immediate_decimal_token1, - STATE(3046), 1, + ACTIONS(6910), 1, + anon_sym_DOLLAR, + STATE(5066), 1, sym__immediate_decimal, - STATE(5536), 1, + STATE(5284), 1, sym_comment, - STATE(3148), 2, + ACTIONS(6987), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5065), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [204979] = 11, - ACTIONS(3), 1, + [201257] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6262), 1, + ACTIONS(3936), 1, anon_sym_LPAREN2, - ACTIONS(6636), 1, - aux_sym_unquoted_token3, - ACTIONS(8174), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8815), 1, + ACTIONS(4011), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4013), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8107), 1, anon_sym_DOLLAR, - ACTIONS(8879), 1, + STATE(1788), 1, + sym__immediate_decimal, + STATE(5285), 1, + sym_comment, + ACTIONS(4009), 2, + aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - ACTIONS(8881), 1, + STATE(1787), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [201287] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7825), 1, + anon_sym_LPAREN2, + ACTIONS(8584), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8883), 1, + ACTIONS(8586), 1, aux_sym__immediate_decimal_token5, - STATE(5537), 1, + ACTIONS(8588), 1, + anon_sym_DOLLAR, + STATE(5286), 1, sym_comment, - STATE(6167), 1, + STATE(6757), 1, sym__immediate_decimal, - STATE(6189), 2, + ACTIONS(8111), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7083), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [205014] = 11, - ACTIONS(3), 1, + [201317] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6262), 1, + ACTIONS(6848), 1, anon_sym_LPAREN2, - ACTIONS(6636), 1, - aux_sym_unquoted_token3, - ACTIONS(8294), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8823), 1, + ACTIONS(6910), 1, anon_sym_DOLLAR, - ACTIONS(8885), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8887), 1, + ACTIONS(6916), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8889), 1, + ACTIONS(6918), 1, aux_sym__immediate_decimal_token5, - STATE(5538), 1, - sym_comment, - STATE(7247), 1, + STATE(4623), 1, sym__immediate_decimal, - STATE(3604), 2, + STATE(5287), 1, + sym_comment, + ACTIONS(6914), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5067), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [205049] = 4, + [201347] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(5539), 1, - sym_comment, - ACTIONS(1475), 4, + ACTIONS(5359), 1, + anon_sym_LPAREN2, + ACTIONS(8618), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1473), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [205070] = 4, + ACTIONS(8622), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8624), 1, + aux_sym__immediate_decimal_token5, + STATE(2858), 1, + sym__immediate_decimal, + STATE(5288), 1, + sym_comment, + ACTIONS(8620), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2926), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [201377] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5540), 1, + STATE(5289), 1, sym_comment, - ACTIONS(1483), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(1497), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1499), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1481), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token2, - [205091] = 11, - ACTIONS(3), 1, + [201397] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2018), 1, - anon_sym_DOLLAR, - ACTIONS(7003), 1, - anon_sym_LPAREN2, - ACTIONS(7007), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7009), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7011), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7013), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7127), 1, - aux_sym_unquoted_token3, - STATE(4307), 1, - sym__immediate_decimal, - STATE(5541), 1, + ACTIONS(1345), 1, + anon_sym_DASH, + STATE(5290), 1, sym_comment, - STATE(4521), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [205126] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4449), 1, + ACTIONS(1349), 8, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, - ACTIONS(7003), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [201417] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5359), 1, anon_sym_LPAREN2, - ACTIONS(7019), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7021), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7023), 1, + ACTIONS(8618), 1, + anon_sym_DOLLAR, + ACTIONS(8626), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7025), 1, + ACTIONS(8628), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7127), 1, - aux_sym_unquoted_token3, - STATE(4614), 1, + STATE(2830), 1, sym__immediate_decimal, - STATE(5542), 1, + STATE(5291), 1, sym_comment, - STATE(4983), 2, + ACTIONS(8369), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2862), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [205161] = 10, + [201447] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1553), 1, - aux_sym_ctrl_match_token1, - ACTIONS(6262), 1, + ACTIONS(7825), 1, anon_sym_LPAREN2, - ACTIONS(8380), 1, + ACTIONS(8584), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8382), 1, + ACTIONS(8586), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8681), 1, + ACTIONS(8588), 1, anon_sym_DOLLAR, - STATE(3585), 1, - sym__immediate_decimal, - STATE(5543), 1, + STATE(5292), 1, sym_comment, - ACTIONS(8715), 2, + STATE(7082), 1, + sym__immediate_decimal, + ACTIONS(8111), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3584), 2, + STATE(7081), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [205194] = 10, + [201477] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1557), 1, - aux_sym_ctrl_match_token1, - ACTIONS(6262), 1, + ACTIONS(1591), 1, + anon_sym_DOLLAR, + ACTIONS(1593), 1, anon_sym_LPAREN2, - ACTIONS(8380), 1, + ACTIONS(1599), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8382), 1, + ACTIONS(1601), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8681), 1, - anon_sym_DOLLAR, - STATE(3587), 1, + STATE(491), 1, sym__immediate_decimal, - STATE(5544), 1, + STATE(5293), 1, sym_comment, - ACTIONS(8715), 2, + ACTIONS(1597), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3586), 2, + STATE(641), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [205227] = 10, + [201507] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1509), 1, - aux_sym_ctrl_match_token1, - ACTIONS(6262), 1, + ACTIONS(1591), 1, + anon_sym_DOLLAR, + ACTIONS(1593), 1, anon_sym_LPAREN2, - ACTIONS(8380), 1, + ACTIONS(1682), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8382), 1, + ACTIONS(1684), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8681), 1, - anon_sym_DOLLAR, - STATE(3589), 1, + STATE(591), 1, sym__immediate_decimal, - STATE(5545), 1, + STATE(5294), 1, sym_comment, - ACTIONS(8715), 2, + ACTIONS(1680), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3611), 2, + STATE(629), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [205260] = 4, + [201537] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(5546), 1, - sym_comment, - ACTIONS(1521), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1519), 6, - sym_identifier, - anon_sym_DASH, + ACTIONS(4680), 1, + aux_sym_unquoted_token2, + ACTIONS(8630), 1, anon_sym_DOT_DOT2, + ACTIONS(8634), 1, sym_filesize_unit, + ACTIONS(8636), 1, sym_duration_unit, - aux_sym_unquoted_token2, - [205281] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5547), 1, + STATE(5295), 1, sym_comment, - ACTIONS(1587), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(8632), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1585), 6, - sym_identifier, - anon_sym_DASH, + ACTIONS(1587), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [201565] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1587), 1, + anon_sym_DASH_DASH, + ACTIONS(4433), 1, anon_sym_DOT_DOT2, + ACTIONS(8432), 1, + aux_sym_unquoted_token2, + ACTIONS(8638), 1, sym_filesize_unit, + ACTIONS(8640), 1, sym_duration_unit, - aux_sym_unquoted_token2, - [205302] = 11, - ACTIONS(3), 1, + STATE(5296), 1, + sym_comment, + ACTIONS(1575), 2, + sym_identifier, + anon_sym_DASH, + ACTIONS(4435), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [201595] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1415), 1, - anon_sym_DOLLAR, - ACTIONS(1417), 1, + ACTIONS(1541), 1, anon_sym_LPAREN2, - ACTIONS(1421), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(1423), 1, + ACTIONS(8642), 1, + anon_sym_DOLLAR, + ACTIONS(8644), 1, aux_sym__immediate_decimal_token4, - ACTIONS(1425), 1, + ACTIONS(8646), 1, aux_sym__immediate_decimal_token5, - ACTIONS(1539), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(8891), 1, - aux_sym__immediate_decimal_token1, - STATE(251), 1, + STATE(422), 1, sym__immediate_decimal, - STATE(5548), 1, + STATE(5297), 1, sym_comment, - STATE(373), 2, + ACTIONS(8399), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(570), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [205337] = 11, - ACTIONS(3), 1, + [201625] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1445), 1, - anon_sym_DOLLAR, - ACTIONS(1447), 1, + ACTIONS(1541), 1, anon_sym_LPAREN2, - ACTIONS(1449), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(1451), 1, + ACTIONS(8642), 1, + anon_sym_DOLLAR, + ACTIONS(8650), 1, aux_sym__immediate_decimal_token4, - ACTIONS(1453), 1, + ACTIONS(8652), 1, aux_sym__immediate_decimal_token5, - ACTIONS(1539), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(8893), 1, - aux_sym__immediate_decimal_token1, - STATE(421), 1, + STATE(569), 1, sym__immediate_decimal, - STATE(5549), 1, + STATE(5298), 1, sym_comment, - STATE(571), 2, + ACTIONS(8648), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(568), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [205372] = 9, - ACTIONS(247), 1, + [201655] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8831), 1, - anon_sym_DASH_DASH, - ACTIONS(8833), 1, - anon_sym_DASH, - ACTIONS(8895), 1, - anon_sym_as, - STATE(5550), 1, + ACTIONS(8654), 1, + anon_sym_DOT, + ACTIONS(8656), 1, + aux_sym__immediate_decimal_token2, + STATE(5299), 1, sym_comment, - STATE(5554), 1, - aux_sym_ctrl_do_repeat1, - STATE(6006), 1, - sym__flag, - STATE(6161), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8663), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [205403] = 9, + ACTIONS(1643), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1645), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [201679] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8831), 1, - anon_sym_DASH_DASH, - ACTIONS(8833), 1, - anon_sym_DASH, - ACTIONS(8897), 1, - anon_sym_as, - STATE(5518), 1, - aux_sym_ctrl_do_repeat1, - STATE(5551), 1, - sym_comment, - STATE(6006), 1, - sym__flag, - STATE(6161), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8721), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [205434] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6262), 1, - anon_sym_LPAREN2, - ACTIONS(6636), 1, - aux_sym_unquoted_token3, - ACTIONS(8378), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8899), 1, + ACTIONS(6299), 1, anon_sym_DOLLAR, - ACTIONS(8901), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8903), 1, + ACTIONS(6301), 1, + anon_sym_LPAREN2, + ACTIONS(6307), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8905), 1, + ACTIONS(6309), 1, aux_sym__immediate_decimal_token5, - STATE(5552), 1, - sym_comment, - STATE(6207), 1, + STATE(3530), 1, sym__immediate_decimal, - STATE(6884), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [205469] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4252), 1, - anon_sym_DOLLAR, - ACTIONS(6262), 1, - anon_sym_LPAREN2, - ACTIONS(6636), 1, - aux_sym_unquoted_token3, - ACTIONS(8683), 1, + STATE(5300), 1, + sym_comment, + ACTIONS(6305), 2, aux_sym__immediate_decimal_token1, - ACTIONS(8907), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8909), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8911), 1, - aux_sym__immediate_decimal_token5, - STATE(5553), 1, - sym_comment, - STATE(7724), 1, - sym__immediate_decimal, - STATE(3604), 2, + STATE(3529), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [205504] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8913), 1, - anon_sym_DASH_DASH, - ACTIONS(8916), 1, - anon_sym_DASH, - STATE(6006), 1, - sym__flag, - STATE(5554), 2, - sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(6161), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8757), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_as, - [205531] = 6, + [201709] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8919), 1, - anon_sym_DOT, - ACTIONS(8921), 1, + ACTIONS(8658), 1, aux_sym__immediate_decimal_token2, - STATE(5555), 1, + STATE(5301), 1, sym_comment, - ACTIONS(1589), 4, - anon_sym_RBRACK, + ACTIONS(1565), 3, anon_sym_RBRACE, + anon_sym__, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1591), 4, - anon_sym_LPAREN2, + ACTIONS(1567), 5, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - [205556] = 11, + [201731] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6535), 1, - anon_sym_DOLLAR, - ACTIONS(8633), 1, - anon_sym_DASH_DASH, - ACTIONS(8635), 1, - anon_sym_DASH, - ACTIONS(8781), 1, - sym_identifier, - STATE(5491), 1, - aux_sym_ctrl_do_repeat1, - STATE(5556), 1, - sym_comment, - STATE(6260), 1, - sym__flag, - STATE(7125), 1, - sym__variable_name, - STATE(7129), 1, - sym_val_variable, - STATE(6245), 2, - sym_short_flag, - sym_long_flag, - [205591] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7145), 1, + ACTIONS(6301), 1, anon_sym_LPAREN2, - ACTIONS(7271), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7273), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7303), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8809), 1, - anon_sym_DOLLAR, - ACTIONS(8923), 1, + ACTIONS(6307), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8925), 1, + ACTIONS(6309), 1, aux_sym__immediate_decimal_token5, - STATE(5262), 1, + ACTIONS(6336), 1, + anon_sym_DOLLAR, + STATE(1788), 1, sym__immediate_decimal, - STATE(5557), 1, + STATE(5302), 1, sym_comment, - STATE(5421), 2, + ACTIONS(6371), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1787), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [205626] = 11, - ACTIONS(3), 1, + [201761] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2469), 1, - anon_sym_DOLLAR, - ACTIONS(4002), 1, + ACTIONS(6301), 1, anon_sym_LPAREN2, - ACTIONS(4006), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(4008), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4122), 1, - aux_sym_unquoted_token3, - ACTIONS(8927), 1, + ACTIONS(6307), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8929), 1, + ACTIONS(6309), 1, aux_sym__immediate_decimal_token5, - STATE(1443), 1, + ACTIONS(6336), 1, + anon_sym_DOLLAR, + STATE(3775), 1, sym__immediate_decimal, - STATE(5558), 1, + STATE(5303), 1, sym_comment, - STATE(1559), 2, + ACTIONS(6371), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1789), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [205661] = 11, - ACTIONS(3), 1, + [201791] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4060), 1, + ACTIONS(6080), 1, anon_sym_DOLLAR, - ACTIONS(4062), 1, + ACTIONS(6082), 1, anon_sym_LPAREN2, - ACTIONS(4064), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(4066), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4122), 1, - aux_sym_unquoted_token3, - ACTIONS(8931), 1, + ACTIONS(6088), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8933), 1, + ACTIONS(6090), 1, aux_sym__immediate_decimal_token5, - STATE(1603), 1, + STATE(3421), 1, sym__immediate_decimal, - STATE(5559), 1, + STATE(5304), 1, sym_comment, - STATE(1832), 2, + ACTIONS(6086), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3310), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [205696] = 11, - ACTIONS(3), 1, + [201821] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3553), 1, - anon_sym_DOLLAR, - ACTIONS(6557), 1, + ACTIONS(6082), 1, anon_sym_LPAREN2, - ACTIONS(6977), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7091), 1, - aux_sym_unquoted_token3, - ACTIONS(8935), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8937), 1, + ACTIONS(8173), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8939), 1, + ACTIONS(8175), 1, aux_sym__immediate_decimal_token5, - STATE(4219), 1, + ACTIONS(8242), 1, + anon_sym_DOLLAR, + STATE(3474), 1, sym__immediate_decimal, - STATE(5560), 1, + STATE(5305), 1, sym_comment, - STATE(4418), 2, + ACTIONS(8363), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3383), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [205731] = 11, + [201851] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4567), 1, - anon_sym_DOLLAR, - ACTIONS(6557), 1, + ACTIONS(8660), 1, + aux_sym__immediate_decimal_token2, + STATE(5306), 1, + sym_comment, + ACTIONS(1705), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1707), 4, anon_sym_LPAREN2, - ACTIONS(6991), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7091), 1, - aux_sym_unquoted_token3, - ACTIONS(8941), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8943), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [201873] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3936), 1, + anon_sym_LPAREN2, + ACTIONS(3942), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8945), 1, + ACTIONS(3944), 1, aux_sym__immediate_decimal_token5, - STATE(4449), 1, + ACTIONS(8107), 1, + anon_sym_DOLLAR, + STATE(1539), 1, sym__immediate_decimal, - STATE(5561), 1, + STATE(5307), 1, sym_comment, - STATE(4855), 2, + ACTIONS(3940), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1789), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [205766] = 11, + [201903] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5308), 1, + sym_comment, + ACTIONS(1517), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1519), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [201923] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8662), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8664), 1, + aux_sym__immediate_decimal_token2, + STATE(5309), 1, + sym_comment, + ACTIONS(1631), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1633), 5, + sym__newline, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [201947] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3499), 1, - anon_sym_DOLLAR, - ACTIONS(6262), 1, + ACTIONS(8666), 1, + anon_sym_QMARK2, + STATE(5310), 1, + sym_comment, + ACTIONS(1036), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1034), 5, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym__, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [201969] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6082), 1, anon_sym_LPAREN2, - ACTIONS(6967), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7059), 1, - aux_sym_unquoted_token3, - ACTIONS(8947), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8949), 1, + ACTIONS(8173), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8951), 1, + ACTIONS(8175), 1, aux_sym__immediate_decimal_token5, - STATE(4186), 1, + ACTIONS(8242), 1, + anon_sym_DOLLAR, + STATE(3466), 1, sym__immediate_decimal, - STATE(5562), 1, + STATE(5311), 1, sym_comment, - STATE(3563), 2, + ACTIONS(8363), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3344), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [205801] = 11, - ACTIONS(3), 1, + [201999] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4228), 1, - anon_sym_DOLLAR, - ACTIONS(6262), 1, + ACTIONS(8668), 1, + sym_long_flag_identifier, + ACTIONS(8670), 1, + anon_sym_EQ2, + STATE(5312), 1, + sym_comment, + ACTIONS(4735), 2, + anon_sym_DASH, + anon_sym_as, + ACTIONS(4737), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + [202023] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6082), 1, anon_sym_LPAREN2, - ACTIONS(6983), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7059), 1, - aux_sym_unquoted_token3, - ACTIONS(8953), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8955), 1, + ACTIONS(6088), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8957), 1, + ACTIONS(6090), 1, aux_sym__immediate_decimal_token5, - STATE(4336), 1, + ACTIONS(6092), 1, + anon_sym_DOLLAR, + STATE(3466), 1, sym__immediate_decimal, - STATE(5563), 1, + STATE(5313), 1, sym_comment, - STATE(3604), 2, + ACTIONS(6094), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3344), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [205836] = 11, + [202053] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3269), 1, - aux_sym_record_entry_token1, - ACTIONS(6284), 1, - anon_sym_DOLLAR, - ACTIONS(8631), 1, - sym_identifier, - ACTIONS(8959), 1, - anon_sym_DASH_DASH, - ACTIONS(8961), 1, + ACTIONS(8674), 1, anon_sym_DASH, - STATE(5564), 1, + STATE(5314), 1, sym_comment, - STATE(5619), 1, + ACTIONS(8672), 8, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + [202073] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7825), 1, + anon_sym_LPAREN2, + ACTIONS(8588), 1, + anon_sym_DOLLAR, + ACTIONS(8676), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8678), 1, + aux_sym__immediate_decimal_token5, + STATE(5315), 1, + sym_comment, + STATE(7144), 1, + sym__immediate_decimal, + ACTIONS(8123), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2859), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - STATE(6187), 1, - sym__variable_name, - STATE(6945), 1, - sym__flag, - STATE(6245), 2, - sym_short_flag, - sym_long_flag, - [205871] = 5, + [202103] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8629), 1, + ACTIONS(8680), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8682), 1, aux_sym__immediate_decimal_token2, - STATE(5565), 1, + STATE(5316), 1, sym_comment, - ACTIONS(1475), 3, + ACTIONS(1631), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1633), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [202127] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5317), 1, + sym_comment, + ACTIONS(1519), 3, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1473), 6, + ACTIONS(1517), 6, sym_identifier, anon_sym_DASH, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [205894] = 3, + [202147] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8684), 1, + anon_sym_QMARK2, + STATE(5318), 1, + sym_comment, + ACTIONS(1030), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1028), 5, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym__, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [202169] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5566), 1, + ACTIONS(8688), 1, + anon_sym_DASH, + STATE(5319), 1, sym_comment, - ACTIONS(8166), 10, + ACTIONS(8686), 8, anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [205913] = 5, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + [202189] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8963), 1, + ACTIONS(8690), 1, aux_sym__immediate_decimal_token2, - STATE(5567), 1, + STATE(5320), 1, sym_comment, - ACTIONS(1521), 3, - anon_sym_DASH_DASH, + ACTIONS(1567), 3, + anon_sym_DOLLAR, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1519), 6, + ACTIONS(1565), 5, sym_identifier, - anon_sym_DASH, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [205936] = 6, + [202211] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8965), 1, - anon_sym_DOT, - ACTIONS(8967), 1, + ACTIONS(8692), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8694), 1, aux_sym__immediate_decimal_token2, - STATE(5568), 1, + STATE(5321), 1, sym_comment, - ACTIONS(1473), 3, - sym__newline, + ACTIONS(1631), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1475), 5, - sym__space, + aux_sym__unquoted_in_record_token2, + ACTIONS(1633), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [205961] = 6, - ACTIONS(3), 1, + sym__entry_separator, + [202235] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8969), 1, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(6088), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6090), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7839), 1, + anon_sym_DOLLAR, + STATE(3474), 1, + sym__immediate_decimal, + STATE(5322), 1, + sym_comment, + ACTIONS(6094), 2, aux_sym__immediate_decimal_token1, - ACTIONS(8971), 1, - aux_sym__immediate_decimal_token2, - STATE(5569), 1, + aux_sym__immediate_decimal_token3, + STATE(3383), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [202265] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7825), 1, + anon_sym_LPAREN2, + ACTIONS(8588), 1, + anon_sym_DOLLAR, + ACTIONS(8676), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8678), 1, + aux_sym__immediate_decimal_token5, + STATE(2858), 1, + sym__immediate_decimal, + STATE(5323), 1, sym_comment, - ACTIONS(1481), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1483), 5, - sym__space, + ACTIONS(8123), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2926), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [202295] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5324), 1, + sym_comment, + ACTIONS(1499), 3, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1497), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - [205986] = 11, + aux_sym_unquoted_token2, + [202315] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3239), 1, - aux_sym_record_entry_token1, - ACTIONS(6284), 1, + ACTIONS(6740), 1, + anon_sym_LPAREN2, + ACTIONS(8606), 1, anon_sym_DOLLAR, - ACTIONS(8631), 1, - sym_identifier, - ACTIONS(8959), 1, - anon_sym_DASH_DASH, - ACTIONS(8961), 1, - anon_sym_DASH, - STATE(5570), 1, + ACTIONS(8696), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8698), 1, + aux_sym__immediate_decimal_token5, + STATE(4313), 1, + sym__immediate_decimal, + STATE(5325), 1, sym_comment, - STATE(5619), 1, + ACTIONS(6774), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4753), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - STATE(6187), 1, - sym__variable_name, - STATE(6945), 1, - sym__flag, - STATE(6245), 2, - sym_short_flag, - sym_long_flag, - [206021] = 10, + [202345] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1427), 1, - anon_sym_EQ_GT, - ACTIONS(6262), 1, + ACTIONS(6082), 1, anon_sym_LPAREN2, - ACTIONS(6268), 1, + ACTIONS(7839), 1, + anon_sym_DOLLAR, + ACTIONS(8049), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6270), 1, + ACTIONS(8051), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8118), 1, - anon_sym_DOLLAR, - STATE(3723), 1, - sym__immediate_decimal, - STATE(5571), 1, + STATE(5326), 1, sym_comment, - ACTIONS(6286), 2, + STATE(6954), 1, + sym__immediate_decimal, + ACTIONS(8047), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3591), 2, + STATE(3383), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [206054] = 10, + [202375] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1455), 1, + STATE(5327), 1, + sym_comment, + ACTIONS(1639), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1641), 7, + anon_sym_PIPE, + anon_sym_if, anon_sym_EQ_GT, - ACTIONS(6262), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [202395] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6792), 1, anon_sym_LPAREN2, - ACTIONS(6268), 1, + ACTIONS(8700), 1, + anon_sym_DOLLAR, + ACTIONS(8702), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6270), 1, + ACTIONS(8704), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8118), 1, - anon_sym_DOLLAR, - STATE(3731), 1, + STATE(4883), 1, sym__immediate_decimal, - STATE(5572), 1, + STATE(5328), 1, sym_comment, - ACTIONS(6286), 2, + ACTIONS(6860), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3590), 2, + STATE(4880), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [206087] = 3, + [202425] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(5573), 1, + ACTIONS(6792), 1, + anon_sym_LPAREN2, + ACTIONS(8700), 1, + anon_sym_DOLLAR, + ACTIONS(8706), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8708), 1, + aux_sym__immediate_decimal_token5, + STATE(4492), 1, + sym__immediate_decimal, + STATE(5329), 1, sym_comment, - ACTIONS(8506), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [206106] = 3, + ACTIONS(6810), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4935), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [202455] = 10, ACTIONS(247), 1, anon_sym_POUND, - STATE(5574), 1, - sym_comment, - ACTIONS(8510), 10, - anon_sym_EQ, + ACTIONS(6092), 1, + anon_sym_DOLLAR, + ACTIONS(8273), 1, sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - aux_sym_ctrl_match_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [206125] = 6, + ACTIONS(8421), 1, + anon_sym_DASH_DASH, + ACTIONS(8423), 1, + anon_sym_DASH, + STATE(5319), 1, + sym_val_variable, + STATE(5330), 1, + sym_comment, + STATE(5872), 1, + sym__variable_name, + STATE(6661), 1, + sym__flag, + STATE(5900), 2, + sym_short_flag, + sym_long_flag, + [202487] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(955), 1, + ACTIONS(1034), 1, anon_sym_DASH, - ACTIONS(8973), 1, - anon_sym_DOT, - STATE(5711), 1, - sym_path, - STATE(5575), 2, + ACTIONS(8710), 1, + anon_sym_QMARK2, + STATE(5331), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(957), 6, + ACTIONS(1036), 7, anon_sym_EQ, sym_identifier, + sym__newline, anon_sym_COLON, anon_sym_DOLLAR, anon_sym_DASH_DASH, - sym__table_head_separator, - [206150] = 9, + anon_sym_DOT, + [202509] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6262), 1, + ACTIONS(6082), 1, anon_sym_LPAREN2, - ACTIONS(6268), 1, + ACTIONS(8242), 1, + anon_sym_DOLLAR, + ACTIONS(8246), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6270), 1, + ACTIONS(8248), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8118), 1, - anon_sym_DOLLAR, - STATE(3716), 1, - sym__immediate_decimal, - STATE(5576), 1, + STATE(5332), 1, sym_comment, - ACTIONS(6286), 2, + STATE(7447), 1, + sym__immediate_decimal, + ACTIONS(8244), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3569), 2, + STATE(3383), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [206180] = 4, - ACTIONS(3), 1, + [202539] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5577), 1, + ACTIONS(1028), 1, + anon_sym_DASH, + ACTIONS(8712), 1, + anon_sym_QMARK2, + STATE(5333), 1, sym_comment, - ACTIONS(1481), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1483), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [206200] = 9, + ACTIONS(1030), 7, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT, + [202561] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6260), 1, + ACTIONS(5401), 1, anon_sym_DOLLAR, - ACTIONS(6262), 1, + ACTIONS(5403), 1, anon_sym_LPAREN2, - ACTIONS(6268), 1, + ACTIONS(5409), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6270), 1, + ACTIONS(5411), 1, aux_sym__immediate_decimal_token5, - STATE(3646), 1, + STATE(2946), 1, sym__immediate_decimal, - STATE(5578), 1, + STATE(5334), 1, sym_comment, - ACTIONS(6266), 2, + ACTIONS(5407), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3563), 2, + STATE(3020), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [206230] = 5, + [202591] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8767), 1, - aux_sym__immediate_decimal_token2, - STATE(5579), 1, - sym_comment, - ACTIONS(1475), 3, + ACTIONS(3483), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1473), 5, - sym_identifier, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [206252] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6262), 1, + ACTIONS(6082), 1, anon_sym_LPAREN2, - ACTIONS(6268), 1, + ACTIONS(6088), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6270), 1, + ACTIONS(6090), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6284), 1, - anon_sym_DOLLAR, - STATE(3725), 1, - sym__immediate_decimal, - STATE(5580), 1, + STATE(5335), 1, sym_comment, - ACTIONS(6286), 2, + STATE(6643), 1, + sym__immediate_decimal, + ACTIONS(6086), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3604), 2, + STATE(5874), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [206282] = 9, + [202621] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6555), 1, - anon_sym_DOLLAR, - ACTIONS(6557), 1, + ACTIONS(6082), 1, anon_sym_LPAREN2, - ACTIONS(6561), 1, + ACTIONS(6088), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6563), 1, + ACTIONS(6090), 1, aux_sym__immediate_decimal_token5, - STATE(3898), 1, + ACTIONS(7839), 1, + anon_sym_DOLLAR, + STATE(3466), 1, sym__immediate_decimal, - STATE(5581), 1, + STATE(5336), 1, sym_comment, - ACTIONS(6559), 2, + ACTIONS(6094), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3974), 2, + STATE(3344), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [206312] = 9, + [202651] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6262), 1, + ACTIONS(6082), 1, anon_sym_LPAREN2, - ACTIONS(8380), 1, + ACTIONS(6088), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8382), 1, + ACTIONS(6090), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8681), 1, + ACTIONS(7839), 1, anon_sym_DOLLAR, - STATE(3610), 1, + STATE(3381), 1, sym__immediate_decimal, - STATE(5582), 1, + STATE(5337), 1, sym_comment, - ACTIONS(8715), 2, + ACTIONS(6094), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3609), 2, + STATE(3380), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [206342] = 6, - ACTIONS(3), 1, + [202681] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8976), 1, + ACTIONS(8714), 1, anon_sym_DOT, - ACTIONS(8978), 1, + ACTIONS(8716), 1, aux_sym__immediate_decimal_token2, - STATE(5583), 1, + STATE(5338), 1, sym_comment, - ACTIONS(1589), 3, - anon_sym_RBRACE, + ACTIONS(1643), 2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1591), 4, + aux_sym_unquoted_token2, + ACTIONS(1645), 5, + sym__newline, + aux_sym_ctrl_match_token1, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [206366] = 8, + [202705] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4889), 1, - aux_sym_unquoted_token2, - ACTIONS(8980), 1, - anon_sym_DOT_DOT2, - ACTIONS(8984), 1, - sym_filesize_unit, - ACTIONS(8986), 1, - sym_duration_unit, - STATE(5584), 1, + ACTIONS(6080), 1, + anon_sym_DOLLAR, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(8173), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8175), 1, + aux_sym__immediate_decimal_token5, + STATE(5339), 1, sym_comment, - ACTIONS(8982), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1537), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [206394] = 9, + STATE(6087), 1, + sym__immediate_decimal, + ACTIONS(8171), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6086), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [202735] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6262), 1, + ACTIONS(6082), 1, anon_sym_LPAREN2, - ACTIONS(8380), 1, + ACTIONS(6088), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8382), 1, + ACTIONS(6090), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8681), 1, + ACTIONS(6092), 1, anon_sym_DOLLAR, - STATE(3716), 1, + STATE(3381), 1, sym__immediate_decimal, - STATE(5585), 1, + STATE(5340), 1, sym_comment, - ACTIONS(8715), 2, + ACTIONS(6094), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3569), 2, + STATE(3380), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [206424] = 6, + [202765] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8988), 1, + ACTIONS(7825), 1, + anon_sym_LPAREN2, + ACTIONS(8588), 1, + anon_sym_DOLLAR, + ACTIONS(8676), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8678), 1, + aux_sym__immediate_decimal_token5, + STATE(5341), 1, + sym_comment, + STATE(6757), 1, + sym__immediate_decimal, + ACTIONS(8123), 2, aux_sym__immediate_decimal_token1, - ACTIONS(8990), 1, + aux_sym__immediate_decimal_token3, + STATE(2862), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [202795] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8444), 1, aux_sym__immediate_decimal_token2, - STATE(5586), 1, + STATE(5342), 1, sym_comment, - ACTIONS(1569), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1571), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1499), 3, + anon_sym_DOLLAR, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [206448] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5587), 1, - sym_comment, - ACTIONS(1519), 3, - anon_sym_RBRACK, + ACTIONS(1497), 5, + sym_identifier, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1521), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [206468] = 9, + aux_sym_unquoted_token2, + [202817] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6262), 1, + ACTIONS(6082), 1, anon_sym_LPAREN2, - ACTIONS(6268), 1, + ACTIONS(6088), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6270), 1, + ACTIONS(6090), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6284), 1, + ACTIONS(6092), 1, anon_sym_DOLLAR, - STATE(3610), 1, + STATE(3474), 1, sym__immediate_decimal, - STATE(5588), 1, + STATE(5343), 1, sym_comment, - ACTIONS(6286), 2, + ACTIONS(6094), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3609), 2, + STATE(3383), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [206498] = 9, + [202847] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5528), 1, - anon_sym_DOLLAR, - ACTIONS(5530), 1, + ACTIONS(7825), 1, anon_sym_LPAREN2, - ACTIONS(5536), 1, + ACTIONS(8588), 1, + anon_sym_DOLLAR, + ACTIONS(8718), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5538), 1, + ACTIONS(8720), 1, aux_sym__immediate_decimal_token5, - STATE(3095), 1, - sym__immediate_decimal, - STATE(5589), 1, + STATE(5344), 1, sym_comment, - ACTIONS(5534), 2, + STATE(6645), 1, + sym__immediate_decimal, + ACTIONS(8021), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3089), 2, + STATE(2862), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [206528] = 4, - ACTIONS(247), 1, + [202877] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8994), 1, - anon_sym_DASH, - STATE(5590), 1, + STATE(5345), 1, sym_comment, - ACTIONS(8992), 8, - sym_identifier, - sym__newline, - anon_sym_PIPE, + ACTIONS(1042), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1040), 6, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [206548] = 4, + anon_sym_RBRACE, + anon_sym__, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [202897] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8998), 1, - anon_sym_DASH, - STATE(5591), 1, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(6092), 1, + anon_sym_DOLLAR, + ACTIONS(8173), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8175), 1, + aux_sym__immediate_decimal_token5, + STATE(3381), 1, + sym__immediate_decimal, + STATE(5346), 1, sym_comment, - ACTIONS(8996), 8, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(8363), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3380), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [202927] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(6092), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [206568] = 6, + ACTIONS(8173), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8175), 1, + aux_sym__immediate_decimal_token5, + STATE(3474), 1, + sym__immediate_decimal, + STATE(5347), 1, + sym_comment, + ACTIONS(8363), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3383), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [202957] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9000), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9002), 1, + ACTIONS(8578), 1, aux_sym__immediate_decimal_token2, - STATE(5592), 1, + STATE(5348), 1, sym_comment, - ACTIONS(1569), 3, - anon_sym_RBRACE, + ACTIONS(1497), 3, + sym__newline, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1571), 4, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1499), 5, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [206592] = 5, - ACTIONS(247), 1, + sym_filesize_unit, + sym_duration_unit, + [202979] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(970), 1, - anon_sym_DASH, - ACTIONS(9004), 1, - anon_sym_QMARK2, - STATE(5593), 1, + STATE(5349), 1, sym_comment, - ACTIONS(972), 7, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(1050), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1048), 6, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym__, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, anon_sym_DOT, - sym__table_head_separator, - [206614] = 4, + [202999] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8998), 1, - anon_sym_DASH, - STATE(5594), 1, + STATE(5350), 1, sym_comment, - ACTIONS(8996), 8, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + ACTIONS(1567), 3, anon_sym_DASH_DASH, - [206634] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(980), 1, - anon_sym_DASH, - ACTIONS(9006), 1, - anon_sym_QMARK2, - STATE(5595), 1, - sym_comment, - ACTIONS(982), 7, - anon_sym_EQ, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1565), 6, sym_identifier, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT, - sym__table_head_separator, - [206656] = 9, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [203019] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6535), 1, - anon_sym_DOLLAR, - ACTIONS(6557), 1, + ACTIONS(6082), 1, anon_sym_LPAREN2, - ACTIONS(6561), 1, + ACTIONS(8173), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6563), 1, + ACTIONS(8175), 1, aux_sym__immediate_decimal_token5, - STATE(2018), 1, + ACTIONS(8242), 1, + anon_sym_DOLLAR, + STATE(3381), 1, sym__immediate_decimal, - STATE(5596), 1, + STATE(5351), 1, sym_comment, - ACTIONS(6575), 2, + ACTIONS(8363), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2017), 2, + STATE(3380), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [206686] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9010), 1, - anon_sym_DASH, - STATE(5597), 1, - sym_comment, - ACTIONS(9008), 8, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [206706] = 4, - ACTIONS(247), 1, + [203049] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9014), 1, - anon_sym_DASH, - STATE(5598), 1, + STATE(5352), 1, sym_comment, - ACTIONS(9012), 8, - anon_sym_EQ, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, + ACTIONS(1497), 3, anon_sym_RBRACE, - [206726] = 9, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1499), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [203069] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6262), 1, + ACTIONS(6082), 1, anon_sym_LPAREN2, - ACTIONS(8374), 1, + ACTIONS(6092), 1, anon_sym_DOLLAR, - ACTIONS(8380), 1, + ACTIONS(8173), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8382), 1, + ACTIONS(8175), 1, aux_sym__immediate_decimal_token5, - STATE(5599), 1, - sym_comment, - STATE(6726), 1, + STATE(3466), 1, sym__immediate_decimal, - ACTIONS(8378), 2, + STATE(5353), 1, + sym_comment, + ACTIONS(8363), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6884), 2, + STATE(3344), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [206756] = 9, + [203099] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6262), 1, + ACTIONS(6301), 1, anon_sym_LPAREN2, - ACTIONS(8380), 1, + ACTIONS(6307), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8382), 1, + ACTIONS(6309), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8681), 1, + ACTIONS(6732), 1, anon_sym_DOLLAR, - STATE(3725), 1, + STATE(4497), 1, sym__immediate_decimal, - STATE(5600), 1, + STATE(5354), 1, sym_comment, - ACTIONS(8715), 2, + ACTIONS(6371), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3604), 2, + STATE(4495), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [206786] = 4, + [203129] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9018), 1, - anon_sym_DASH, - STATE(5601), 1, - sym_comment, - ACTIONS(9016), 8, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(8167), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [206806] = 4, + ACTIONS(8173), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8175), 1, + aux_sym__immediate_decimal_token5, + STATE(5355), 1, + sym_comment, + STATE(6656), 1, + sym__immediate_decimal, + ACTIONS(8171), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6211), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [203159] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9018), 1, - anon_sym_DASH, - STATE(5602), 1, - sym_comment, - ACTIONS(9016), 8, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(6082), 1, + anon_sym_LPAREN2, + ACTIONS(7839), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [206826] = 4, + ACTIONS(7843), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7845), 1, + aux_sym__immediate_decimal_token5, + STATE(5356), 1, + sym_comment, + STATE(6654), 1, + sym__immediate_decimal, + ACTIONS(7841), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3383), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [203189] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9022), 1, - anon_sym_DASH, - STATE(5603), 1, + ACTIONS(7825), 1, + anon_sym_LPAREN2, + ACTIONS(8582), 1, + anon_sym_DOLLAR, + ACTIONS(8676), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8678), 1, + aux_sym__immediate_decimal_token5, + STATE(5357), 1, + sym_comment, + STATE(6036), 1, + sym__immediate_decimal, + ACTIONS(7847), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5820), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [203219] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1587), 1, + sym__entry_separator, + ACTIONS(8722), 1, + anon_sym_DOT_DOT2, + ACTIONS(8726), 1, + sym_filesize_unit, + ACTIONS(8728), 1, + sym_duration_unit, + STATE(5358), 1, sym_comment, - ACTIONS(9020), 8, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [206846] = 4, + ACTIONS(1575), 2, + anon_sym_RBRACE, + anon_sym__, + ACTIONS(8724), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [203246] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9026), 1, + ACTIONS(1969), 1, anon_sym_DASH, - STATE(5604), 1, + ACTIONS(8466), 1, + anon_sym_DOT, + STATE(4797), 1, + sym_cell_path, + STATE(5211), 1, + aux_sym_cell_path_repeat1, + STATE(5359), 1, sym_comment, - ACTIONS(9024), 8, + STATE(5465), 1, + sym_path, + ACTIONS(1971), 3, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [206866] = 4, + [203273] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8613), 1, + ACTIONS(1839), 1, anon_sym_DASH, - STATE(5605), 1, + ACTIONS(8466), 1, + anon_sym_DOT, + STATE(4886), 1, + sym_cell_path, + STATE(5211), 1, + aux_sym_cell_path_repeat1, + STATE(5360), 1, sym_comment, - ACTIONS(8609), 8, + STATE(5465), 1, + sym_path, + ACTIONS(1841), 3, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [206886] = 4, + [203300] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8140), 1, - anon_sym_DASH, - STATE(5606), 1, - sym_comment, - ACTIONS(8134), 8, + ACTIONS(8730), 1, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [206906] = 5, - ACTIONS(3), 1, + ACTIONS(8733), 1, + anon_sym_GT, + ACTIONS(8735), 1, + anon_sym_DQUOTE, + STATE(4704), 1, + sym__str_double_quotes, + STATE(5623), 1, + sym_val_string, + ACTIONS(8738), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5361), 2, + sym_comment, + aux_sym_collection_type_repeat1, + [203327] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9028), 1, + ACTIONS(8741), 1, aux_sym__immediate_decimal_token2, - STATE(5607), 1, + STATE(5362), 1, sym_comment, - ACTIONS(1648), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(1705), 2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1650), 4, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1707), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [206928] = 4, + [203348] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8741), 1, + ACTIONS(1890), 1, anon_sym_DASH, - STATE(5608), 1, + ACTIONS(8466), 1, + anon_sym_DOT, + STATE(4807), 1, + sym_cell_path, + STATE(5211), 1, + aux_sym_cell_path_repeat1, + STATE(5363), 1, sym_comment, - ACTIONS(8737), 8, + STATE(5465), 1, + sym_path, + ACTIONS(1892), 3, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [206948] = 4, - ACTIONS(3), 1, + [203375] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5609), 1, + STATE(5364), 1, sym_comment, - ACTIONS(1585), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1587), 6, - anon_sym_LPAREN2, + ACTIONS(1641), 3, + anon_sym_DOLLAR, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1639), 5, + sym_identifier, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [206968] = 4, - ACTIONS(247), 1, + aux_sym_unquoted_token2, + [203394] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8645), 1, - anon_sym_DASH, - STATE(5610), 1, - sym_comment, - ACTIONS(8641), 8, - sym_identifier, + ACTIONS(7736), 1, sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + ACTIONS(7738), 1, + sym__space, + ACTIONS(7740), 1, anon_sym_DASH_DASH, - [206988] = 9, + ACTIONS(7742), 1, + anon_sym_DASH, + STATE(5365), 1, + sym_comment, + STATE(5526), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(7445), 1, + sym__flag, + STATE(4627), 2, + sym_short_flag, + sym_long_flag, + [203423] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6535), 1, - anon_sym_DOLLAR, - ACTIONS(6557), 1, - anon_sym_LPAREN2, - ACTIONS(6561), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6563), 1, - aux_sym__immediate_decimal_token5, - STATE(4052), 1, - sym__immediate_decimal, - STATE(5611), 1, + ACTIONS(8743), 1, + anon_sym_DOT, + STATE(1951), 1, + sym_cell_path, + STATE(2590), 1, + sym_path, + STATE(5366), 1, sym_comment, - ACTIONS(6575), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2061), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [207018] = 4, + STATE(5588), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1833), 4, + anon_sym_PIPE, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + [203448] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8148), 1, - anon_sym_DASH, - STATE(5612), 1, + ACTIONS(8743), 1, + anon_sym_DOT, + STATE(1952), 1, + sym_cell_path, + STATE(2590), 1, + sym_path, + STATE(5367), 1, sym_comment, - ACTIONS(8144), 8, - sym_identifier, - sym__newline, + STATE(5588), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1837), 4, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [207038] = 9, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + [203473] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6557), 1, - anon_sym_LPAREN2, - ACTIONS(6561), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6563), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6989), 1, - anon_sym_DOLLAR, - STATE(4772), 1, - sym__immediate_decimal, - STATE(5613), 1, + ACTIONS(8743), 1, + anon_sym_DOT, + STATE(1954), 1, + sym_cell_path, + STATE(2590), 1, + sym_path, + STATE(5368), 1, sym_comment, - ACTIONS(6575), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4762), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [207068] = 4, + STATE(5588), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1841), 4, + anon_sym_PIPE, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + [203498] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8583), 1, - anon_sym_DASH, - STATE(5614), 1, + ACTIONS(8743), 1, + anon_sym_DOT, + STATE(1955), 1, + sym_cell_path, + STATE(2590), 1, + sym_path, + STATE(5369), 1, sym_comment, - ACTIONS(8579), 8, - sym_identifier, - sym__newline, + STATE(5588), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1845), 4, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [207088] = 9, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + [203523] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7033), 1, - anon_sym_LPAREN2, - ACTIONS(9030), 1, - anon_sym_DOLLAR, - ACTIONS(9032), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9034), 1, - aux_sym__immediate_decimal_token5, - STATE(4774), 1, - sym__immediate_decimal, - STATE(5615), 1, + ACTIONS(8743), 1, + anon_sym_DOT, + STATE(1988), 1, + sym_cell_path, + STATE(2590), 1, + sym_path, + STATE(5370), 1, sym_comment, - ACTIONS(7073), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5117), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [207118] = 4, + STATE(5588), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1849), 4, + anon_sym_PIPE, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + [203548] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8583), 1, - anon_sym_DASH, - STATE(5616), 1, + ACTIONS(8743), 1, + anon_sym_DOT, + STATE(1958), 1, + sym_cell_path, + STATE(2590), 1, + sym_path, + STATE(5371), 1, sym_comment, - ACTIONS(8579), 8, - sym_identifier, - sym__newline, + STATE(5588), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1853), 4, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [207138] = 4, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + [203573] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8645), 1, - anon_sym_DASH, - STATE(5617), 1, + ACTIONS(8743), 1, + anon_sym_DOT, + STATE(1959), 1, + sym_cell_path, + STATE(2590), 1, + sym_path, + STATE(5372), 1, sym_comment, - ACTIONS(8641), 8, - sym_identifier, - sym__newline, + STATE(5588), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1857), 4, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [207158] = 4, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + [203598] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8583), 1, - anon_sym_DASH, - STATE(5618), 1, + ACTIONS(8743), 1, + anon_sym_DOT, + STATE(1963), 1, + sym_cell_path, + STATE(2590), 1, + sym_path, + STATE(5373), 1, sym_comment, - ACTIONS(8579), 8, - sym_identifier, - sym__newline, + STATE(5588), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1861), 4, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [207178] = 4, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + [203623] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9038), 1, - anon_sym_DASH, - STATE(5619), 1, + ACTIONS(8743), 1, + anon_sym_DOT, + STATE(1964), 1, + sym_cell_path, + STATE(2590), 1, + sym_path, + STATE(5374), 1, sym_comment, - ACTIONS(9036), 8, - anon_sym_EQ, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - [207198] = 9, + STATE(5588), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1865), 4, + anon_sym_PIPE, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + [203648] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5607), 1, - anon_sym_DOLLAR, - ACTIONS(5609), 1, - anon_sym_LPAREN2, - ACTIONS(5615), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5617), 1, - aux_sym__immediate_decimal_token5, - STATE(3239), 1, - sym__immediate_decimal, - STATE(5620), 1, + ACTIONS(8743), 1, + anon_sym_DOT, + STATE(1966), 1, + sym_cell_path, + STATE(2590), 1, + sym_path, + STATE(5375), 1, sym_comment, - ACTIONS(5613), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3268), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [207228] = 4, + STATE(5588), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1869), 4, + anon_sym_PIPE, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + [203673] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9042), 1, - anon_sym_DASH, - STATE(5621), 1, + ACTIONS(8743), 1, + anon_sym_DOT, + STATE(1968), 1, + sym_cell_path, + STATE(2590), 1, + sym_path, + STATE(5376), 1, sym_comment, - ACTIONS(9040), 8, - sym_identifier, - sym__newline, + STATE(5588), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1873), 4, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [207248] = 4, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + [203698] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(5622), 1, + ACTIONS(8743), 1, + anon_sym_DOT, + STATE(1969), 1, + sym_cell_path, + STATE(2590), 1, + sym_path, + STATE(5377), 1, sym_comment, - ACTIONS(1473), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1475), 7, + STATE(5588), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1877), 4, anon_sym_PIPE, anon_sym_if, + aux_sym_ctrl_match_token1, anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [207268] = 4, + [203723] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8645), 1, - anon_sym_DASH, - STATE(5623), 1, + ACTIONS(8743), 1, + anon_sym_DOT, + STATE(1973), 1, + sym_cell_path, + STATE(2590), 1, + sym_path, + STATE(5378), 1, sym_comment, - ACTIONS(8641), 8, - sym_identifier, - sym__newline, + STATE(5588), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1971), 4, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [207288] = 4, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + [203748] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8306), 1, - anon_sym_DASH, - STATE(5624), 1, + ACTIONS(8743), 1, + anon_sym_DOT, + STATE(1975), 1, + sym_cell_path, + STATE(2590), 1, + sym_path, + STATE(5379), 1, sym_comment, - ACTIONS(8300), 8, - sym_identifier, - sym__newline, + STATE(5588), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1892), 4, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [207308] = 9, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + [203773] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6262), 1, - anon_sym_LPAREN2, - ACTIONS(8681), 1, - anon_sym_DOLLAR, - ACTIONS(8685), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8687), 1, - aux_sym__immediate_decimal_token5, - STATE(5625), 1, + ACTIONS(8743), 1, + anon_sym_DOT, + STATE(1976), 1, + sym_cell_path, + STATE(2590), 1, + sym_path, + STATE(5380), 1, sym_comment, - STATE(7617), 1, - sym__immediate_decimal, - ACTIONS(8683), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3569), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [207338] = 4, + STATE(5588), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1896), 4, + anon_sym_PIPE, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + [203798] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8110), 1, - anon_sym_DASH, - STATE(5626), 1, + ACTIONS(8743), 1, + anon_sym_DOT, + STATE(1977), 1, + sym_cell_path, + STATE(2590), 1, + sym_path, + STATE(5381), 1, sym_comment, - ACTIONS(8106), 8, - sym_identifier, - sym__newline, + STATE(5588), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1939), 4, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [207358] = 9, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + [203823] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4126), 1, - anon_sym_LPAREN2, - ACTIONS(4132), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4134), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8490), 1, - anon_sym_DOLLAR, - STATE(1681), 1, - sym__immediate_decimal, - STATE(5627), 1, + ACTIONS(8743), 1, + anon_sym_DOT, + STATE(1978), 1, + sym_cell_path, + STATE(2590), 1, + sym_path, + STATE(5382), 1, sym_comment, - ACTIONS(4130), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2061), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [207388] = 6, + STATE(5588), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1947), 4, + anon_sym_PIPE, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + [203848] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9044), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9046), 1, - aux_sym__immediate_decimal_token2, - STATE(5628), 1, + ACTIONS(8743), 1, + anon_sym_DOT, + STATE(1980), 1, + sym_cell_path, + STATE(2590), 1, + sym_path, + STATE(5383), 1, sym_comment, - ACTIONS(1569), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1571), 5, - sym__newline, + STATE(5588), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1951), 4, + anon_sym_PIPE, + anon_sym_if, aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [207412] = 9, + anon_sym_EQ_GT, + [203873] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8086), 1, - anon_sym_LPAREN2, - ACTIONS(9048), 1, - anon_sym_DOLLAR, - ACTIONS(9050), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9052), 1, - aux_sym__immediate_decimal_token5, - STATE(3143), 1, - sym__immediate_decimal, - STATE(5629), 1, + ACTIONS(5637), 1, + anon_sym_DOT, + STATE(1681), 1, + sym_cell_path, + STATE(2590), 1, + sym_path, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(5384), 1, sym_comment, - ACTIONS(8442), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3139), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [207442] = 9, + ACTIONS(1959), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [203898] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6262), 1, - anon_sym_LPAREN2, - ACTIONS(6268), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6270), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6284), 1, - anon_sym_DOLLAR, - STATE(3716), 1, - sym__immediate_decimal, - STATE(5630), 1, + ACTIONS(8745), 1, + sym_long_flag_identifier, + ACTIONS(8747), 1, + anon_sym_EQ2, + STATE(5385), 1, sym_comment, - ACTIONS(6286), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3569), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [207472] = 4, + ACTIONS(4735), 2, + anon_sym_DASH, + anon_sym_as, + ACTIONS(4737), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + [203921] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8268), 1, - anon_sym_DASH, - STATE(5631), 1, + ACTIONS(5637), 1, + anon_sym_DOT, + STATE(1686), 1, + sym_cell_path, + STATE(2590), 1, + sym_path, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(5386), 1, sym_comment, - ACTIONS(8264), 8, - sym_identifier, + ACTIONS(1963), 4, sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [207492] = 6, + anon_sym_RBRACE, + [203946] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9054), 1, + ACTIONS(1011), 1, + anon_sym_DOT_DOT2, + ACTIONS(8749), 1, anon_sym_DOT, - ACTIONS(9056), 1, - aux_sym__immediate_decimal_token2, - STATE(5632), 1, + STATE(1206), 1, + sym_path, + STATE(3091), 1, + sym_cell_path, + STATE(5387), 1, sym_comment, - ACTIONS(1473), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1475), 5, - anon_sym_in, + STATE(5602), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1013), 3, + aux_sym_ctrl_match_token1, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [207516] = 10, + [203973] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6284), 1, + ACTIONS(1957), 1, + anon_sym_DASH, + ACTIONS(5637), 1, + anon_sym_DOT, + STATE(2590), 1, + sym_path, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(4798), 1, + sym_cell_path, + STATE(5388), 1, + sym_comment, + ACTIONS(1959), 3, anon_sym_DOLLAR, - ACTIONS(8631), 1, - sym_identifier, - ACTIONS(8959), 1, anon_sym_DASH_DASH, - ACTIONS(8961), 1, + aux_sym_ctrl_match_token1, + [204000] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1961), 1, anon_sym_DASH, - STATE(5619), 1, - sym_val_variable, - STATE(5633), 1, + ACTIONS(5637), 1, + anon_sym_DOT, + STATE(2590), 1, + sym_path, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(4869), 1, + sym_cell_path, + STATE(5389), 1, sym_comment, - STATE(6187), 1, - sym__variable_name, - STATE(6945), 1, - sym__flag, - STATE(6245), 2, - sym_short_flag, - sym_long_flag, - [207548] = 6, + ACTIONS(1963), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [204027] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9058), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9060), 1, - aux_sym__immediate_decimal_token2, - STATE(5634), 1, + ACTIONS(1829), 1, + anon_sym_DASH, + ACTIONS(5637), 1, + anon_sym_DOT, + STATE(2590), 1, + sym_path, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(4940), 1, + sym_cell_path, + STATE(5390), 1, sym_comment, - ACTIONS(1481), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1483), 5, - anon_sym_in, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [207572] = 9, + ACTIONS(1833), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [204054] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4126), 1, - anon_sym_LPAREN2, - ACTIONS(4214), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4216), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8490), 1, - anon_sym_DOLLAR, - STATE(2018), 1, - sym__immediate_decimal, - STATE(5635), 1, + ACTIONS(1835), 1, + anon_sym_DASH, + ACTIONS(5637), 1, + anon_sym_DOT, + STATE(2590), 1, + sym_path, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(4885), 1, + sym_cell_path, + STATE(5391), 1, sym_comment, - ACTIONS(4212), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2017), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [207602] = 4, + ACTIONS(1837), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [204081] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(5636), 1, + ACTIONS(1839), 1, + anon_sym_DASH, + ACTIONS(5637), 1, + anon_sym_DOT, + STATE(2590), 1, + sym_path, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(4886), 1, + sym_cell_path, + STATE(5392), 1, sym_comment, - ACTIONS(1481), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1483), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [207622] = 9, + ACTIONS(1841), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [204108] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5458), 1, - anon_sym_DOLLAR, - ACTIONS(5460), 1, - anon_sym_LPAREN2, - ACTIONS(5468), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5470), 1, - aux_sym__immediate_decimal_token5, - STATE(2839), 1, - sym__immediate_decimal, - STATE(5637), 1, + ACTIONS(1843), 1, + anon_sym_DASH, + ACTIONS(5637), 1, + anon_sym_DOT, + STATE(2590), 1, + sym_path, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(4907), 1, + sym_cell_path, + STATE(5393), 1, sym_comment, - ACTIONS(5466), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2851), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [207652] = 9, + ACTIONS(1845), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [204135] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5528), 1, - anon_sym_DOLLAR, - ACTIONS(5530), 1, - anon_sym_LPAREN2, - ACTIONS(5536), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5538), 1, - aux_sym__immediate_decimal_token5, - STATE(3117), 1, - sym__immediate_decimal, - STATE(5638), 1, + ACTIONS(1847), 1, + anon_sym_DASH, + ACTIONS(5637), 1, + anon_sym_DOT, + STATE(2590), 1, + sym_path, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(4911), 1, + sym_cell_path, + STATE(5394), 1, sym_comment, - ACTIONS(5534), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3150), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [207682] = 4, + ACTIONS(1849), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [204162] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8104), 1, + ACTIONS(1851), 1, anon_sym_DASH, - STATE(5639), 1, + ACTIONS(5637), 1, + anon_sym_DOT, + STATE(2590), 1, + sym_path, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(4923), 1, + sym_cell_path, + STATE(5395), 1, sym_comment, - ACTIONS(8100), 8, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(1853), 3, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [207702] = 4, + aux_sym_ctrl_match_token1, + [204189] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8645), 1, + ACTIONS(1855), 1, anon_sym_DASH, - STATE(5640), 1, + ACTIONS(5637), 1, + anon_sym_DOT, + STATE(2590), 1, + sym_path, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(4925), 1, + sym_cell_path, + STATE(5396), 1, sym_comment, - ACTIONS(8641), 8, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(1857), 3, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [207722] = 4, + aux_sym_ctrl_match_token1, + [204216] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(5641), 1, + ACTIONS(1859), 1, + anon_sym_DASH, + ACTIONS(5637), 1, + anon_sym_DOT, + STATE(2590), 1, + sym_path, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(4926), 1, + sym_cell_path, + STATE(5397), 1, sym_comment, - ACTIONS(1519), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1521), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [207742] = 9, + ACTIONS(1861), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [204243] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7003), 1, - anon_sym_LPAREN2, - ACTIONS(9062), 1, - anon_sym_DOLLAR, - ACTIONS(9064), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9066), 1, - aux_sym__immediate_decimal_token5, - STATE(4648), 1, - sym__immediate_decimal, - STATE(5642), 1, + ACTIONS(1863), 1, + anon_sym_DASH, + ACTIONS(5637), 1, + anon_sym_DOT, + STATE(2590), 1, + sym_path, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(4936), 1, + sym_cell_path, + STATE(5398), 1, sym_comment, - ACTIONS(7019), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5016), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [207772] = 9, + ACTIONS(1865), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [204270] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6262), 1, - anon_sym_LPAREN2, - ACTIONS(8118), 1, + ACTIONS(1867), 1, + anon_sym_DASH, + ACTIONS(5637), 1, + anon_sym_DOT, + STATE(2590), 1, + sym_path, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(4772), 1, + sym_cell_path, + STATE(5399), 1, + sym_comment, + ACTIONS(1869), 3, anon_sym_DOLLAR, - ACTIONS(8296), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8298), 1, - aux_sym__immediate_decimal_token5, - STATE(5643), 1, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [204297] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1871), 1, + anon_sym_DASH, + ACTIONS(5637), 1, + anon_sym_DOT, + STATE(2590), 1, + sym_path, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(4777), 1, + sym_cell_path, + STATE(5400), 1, sym_comment, - STATE(7024), 1, - sym__immediate_decimal, - ACTIONS(8294), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3569), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [207802] = 9, + ACTIONS(1873), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [204324] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7033), 1, - anon_sym_LPAREN2, - ACTIONS(9030), 1, + ACTIONS(1875), 1, + anon_sym_DASH, + ACTIONS(5637), 1, + anon_sym_DOT, + STATE(2590), 1, + sym_path, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(4791), 1, + sym_cell_path, + STATE(5401), 1, + sym_comment, + ACTIONS(1877), 3, anon_sym_DOLLAR, - ACTIONS(9068), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9070), 1, - aux_sym__immediate_decimal_token5, - STATE(5116), 1, - sym__immediate_decimal, - STATE(5644), 1, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [204351] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1969), 1, + anon_sym_DASH, + ACTIONS(5637), 1, + anon_sym_DOT, + STATE(2590), 1, + sym_path, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(4797), 1, + sym_cell_path, + STATE(5402), 1, sym_comment, - ACTIONS(7105), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5196), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [207832] = 4, + ACTIONS(1971), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [204378] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(5645), 1, + ACTIONS(1890), 1, + anon_sym_DASH, + ACTIONS(5637), 1, + anon_sym_DOT, + STATE(2590), 1, + sym_path, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(4807), 1, + sym_cell_path, + STATE(5403), 1, sym_comment, - ACTIONS(1585), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1587), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [207852] = 9, + ACTIONS(1892), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [204405] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6262), 1, - anon_sym_LPAREN2, - ACTIONS(8118), 1, + ACTIONS(1894), 1, + anon_sym_DASH, + ACTIONS(5637), 1, + anon_sym_DOT, + STATE(2590), 1, + sym_path, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(4808), 1, + sym_cell_path, + STATE(5404), 1, + sym_comment, + ACTIONS(1896), 3, anon_sym_DOLLAR, - ACTIONS(8122), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8124), 1, - aux_sym__immediate_decimal_token5, - STATE(5646), 1, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [204432] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1937), 1, + anon_sym_DASH, + ACTIONS(5637), 1, + anon_sym_DOT, + STATE(2590), 1, + sym_path, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(4823), 1, + sym_cell_path, + STATE(5405), 1, sym_comment, - STATE(6789), 1, - sym__immediate_decimal, - ACTIONS(8120), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3569), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [207882] = 6, + ACTIONS(1939), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [204459] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1945), 1, + anon_sym_DASH, + ACTIONS(5637), 1, + anon_sym_DOT, + STATE(2590), 1, + sym_path, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(4825), 1, + sym_cell_path, + STATE(5406), 1, + sym_comment, + ACTIONS(1947), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [204486] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9072), 1, - anon_sym_EQ2, - ACTIONS(9074), 1, - sym_short_flag_identifier, - STATE(5647), 1, + ACTIONS(1949), 1, + anon_sym_DASH, + ACTIONS(5637), 1, + anon_sym_DOT, + STATE(2590), 1, + sym_path, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(4826), 1, + sym_cell_path, + STATE(5407), 1, sym_comment, - ACTIONS(4942), 3, + ACTIONS(1951), 3, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_as, - ACTIONS(4944), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [207906] = 7, - ACTIONS(3), 1, + aux_sym_ctrl_match_token1, + [204513] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8791), 1, + ACTIONS(1965), 1, + anon_sym_DASH, + ACTIONS(5637), 1, anon_sym_DOT, - STATE(5648), 1, - sym_comment, - STATE(5685), 1, + STATE(2590), 1, + sym_path, + STATE(2616), 1, aux_sym_cell_path_repeat1, - STATE(5845), 1, + STATE(4769), 1, + sym_cell_path, + STATE(5408), 1, + sym_comment, + ACTIONS(1967), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [204540] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1879), 1, + anon_sym_DASH, + ACTIONS(5637), 1, + anon_sym_DOT, + STATE(2590), 1, sym_path, - ACTIONS(951), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(953), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [207932] = 9, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(4906), 1, + sym_cell_path, + STATE(5409), 1, + sym_comment, + ACTIONS(1881), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [204567] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7003), 1, - anon_sym_LPAREN2, - ACTIONS(9062), 1, + ACTIONS(1575), 1, + sym_identifier, + ACTIONS(1587), 1, anon_sym_DOLLAR, - ACTIONS(9076), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9078), 1, - aux_sym__immediate_decimal_token5, - STATE(5015), 1, - sym__immediate_decimal, - STATE(5649), 1, + ACTIONS(4433), 1, + anon_sym_DOT_DOT2, + ACTIONS(8432), 1, + aux_sym_unquoted_token2, + ACTIONS(8751), 1, + sym_filesize_unit, + ACTIONS(8753), 1, + sym_duration_unit, + STATE(5410), 1, sym_comment, - ACTIONS(7095), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5014), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [207962] = 4, + ACTIONS(4435), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [204596] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5650), 1, + STATE(5411), 1, sym_comment, - ACTIONS(1473), 3, + ACTIONS(1705), 4, anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_list_token2, - ACTIONS(1475), 6, + ACTIONS(1707), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - [207982] = 9, + [204615] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1537), 1, - anon_sym_DASH_DASH, - ACTIONS(4694), 1, - anon_sym_DOT_DOT2, - ACTIONS(8797), 1, - aux_sym_unquoted_token2, - ACTIONS(9080), 1, - sym_filesize_unit, - ACTIONS(9082), 1, - sym_duration_unit, - STATE(5651), 1, - sym_comment, - ACTIONS(1525), 2, - sym_identifier, + ACTIONS(1829), 1, anon_sym_DASH, - ACTIONS(4696), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [208012] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4062), 1, - anon_sym_LPAREN2, - ACTIONS(4068), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4070), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8216), 1, - anon_sym_DOLLAR, - STATE(1612), 1, - sym__immediate_decimal, - STATE(5652), 1, + ACTIONS(8466), 1, + anon_sym_DOT, + STATE(4940), 1, + sym_cell_path, + STATE(5211), 1, + aux_sym_cell_path_repeat1, + STATE(5412), 1, sym_comment, - ACTIONS(4066), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1855), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [208042] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4062), 1, - anon_sym_LPAREN2, - ACTIONS(4148), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4150), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8216), 1, + STATE(5465), 1, + sym_path, + ACTIONS(1833), 3, + sym_identifier, anon_sym_DOLLAR, - STATE(1854), 1, - sym__immediate_decimal, - STATE(5653), 1, - sym_comment, - ACTIONS(4146), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1853), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [208072] = 4, + anon_sym_DASH_DASH, + [204642] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8675), 1, + ACTIONS(1894), 1, anon_sym_DASH, - STATE(5654), 1, + ACTIONS(8466), 1, + anon_sym_DOT, + STATE(4808), 1, + sym_cell_path, + STATE(5211), 1, + aux_sym_cell_path_repeat1, + STATE(5413), 1, sym_comment, - ACTIONS(8671), 8, + STATE(5465), 1, + sym_path, + ACTIONS(1896), 3, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [208092] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6557), 1, - anon_sym_LPAREN2, - ACTIONS(6989), 1, - anon_sym_DOLLAR, - ACTIONS(6993), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6995), 1, - aux_sym__immediate_decimal_token5, - STATE(4519), 1, - sym__immediate_decimal, - STATE(5655), 1, - sym_comment, - ACTIONS(6991), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4776), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [208122] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5607), 1, - anon_sym_DOLLAR, - ACTIONS(5609), 1, - anon_sym_LPAREN2, - ACTIONS(5698), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5700), 1, - aux_sym__immediate_decimal_token5, - STATE(3267), 1, - sym__immediate_decimal, - STATE(5656), 1, - sym_comment, - ACTIONS(5696), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3263), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [208152] = 9, + [204669] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6262), 1, - anon_sym_LPAREN2, - ACTIONS(6284), 1, - anon_sym_DOLLAR, - ACTIONS(6985), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6987), 1, - aux_sym__immediate_decimal_token5, - STATE(4325), 1, - sym__immediate_decimal, - STATE(5657), 1, + ACTIONS(1937), 1, + anon_sym_DASH, + ACTIONS(8466), 1, + anon_sym_DOT, + STATE(4823), 1, + sym_cell_path, + STATE(5211), 1, + aux_sym_cell_path_repeat1, + STATE(5414), 1, sym_comment, - ACTIONS(6983), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3569), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [208182] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7145), 1, - anon_sym_LPAREN2, - ACTIONS(7153), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7155), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7224), 1, + STATE(5465), 1, + sym_path, + ACTIONS(1939), 3, + sym_identifier, anon_sym_DOLLAR, - STATE(5411), 1, - sym__immediate_decimal, - STATE(5658), 1, - sym_comment, - ACTIONS(7266), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5399), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [208212] = 9, + anon_sym_DASH_DASH, + [204696] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7145), 1, - anon_sym_LPAREN2, - ACTIONS(7224), 1, - anon_sym_DOLLAR, - ACTIONS(7230), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7232), 1, - aux_sym__immediate_decimal_token5, - STATE(5077), 1, - sym__immediate_decimal, - STATE(5659), 1, + ACTIONS(1945), 1, + anon_sym_DASH, + ACTIONS(8466), 1, + anon_sym_DOT, + STATE(4825), 1, + sym_cell_path, + STATE(5211), 1, + aux_sym_cell_path_repeat1, + STATE(5415), 1, sym_comment, - ACTIONS(7228), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5425), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [208242] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_LPAREN2, - ACTIONS(9084), 1, + STATE(5465), 1, + sym_path, + ACTIONS(1947), 3, + sym_identifier, anon_sym_DOLLAR, - ACTIONS(9088), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9090), 1, - aux_sym__immediate_decimal_token5, - STATE(3143), 1, - sym__immediate_decimal, - STATE(5660), 1, - sym_comment, - ACTIONS(9086), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3139), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [208272] = 4, - ACTIONS(247), 1, + anon_sym_DASH_DASH, + [204723] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5661), 1, + STATE(5416), 1, sym_comment, - ACTIONS(1475), 3, - anon_sym_DASH_DASH, + ACTIONS(1497), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1499), 5, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1473), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token2, - [208292] = 4, + [204742] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8362), 1, + ACTIONS(1949), 1, anon_sym_DASH, - STATE(5662), 1, + ACTIONS(8466), 1, + anon_sym_DOT, + STATE(4826), 1, + sym_cell_path, + STATE(5211), 1, + aux_sym_cell_path_repeat1, + STATE(5417), 1, sym_comment, - ACTIONS(8358), 8, + STATE(5465), 1, + sym_path, + ACTIONS(1951), 3, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [208312] = 9, + [204769] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_LPAREN2, - ACTIONS(9084), 1, - anon_sym_DOLLAR, - ACTIONS(9092), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9094), 1, - aux_sym__immediate_decimal_token5, - STATE(3049), 1, - sym__immediate_decimal, - STATE(5663), 1, + ACTIONS(1060), 1, + anon_sym_DASH, + STATE(5418), 1, sym_comment, - ACTIONS(8877), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3144), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [208342] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5528), 1, + ACTIONS(1062), 7, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_COLON, anon_sym_DOLLAR, - ACTIONS(5530), 1, - anon_sym_LPAREN2, - ACTIONS(5536), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5538), 1, - aux_sym__immediate_decimal_token5, - STATE(3088), 1, - sym__immediate_decimal, - STATE(5664), 1, - sym_comment, - ACTIONS(5534), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3087), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [208372] = 5, + anon_sym_DASH_DASH, + anon_sym_DOT, + [204788] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9096), 1, - aux_sym__immediate_decimal_token2, - STATE(5665), 1, + ACTIONS(1052), 1, + anon_sym_DASH, + STATE(5419), 1, sym_comment, - ACTIONS(1521), 3, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1519), 5, + ACTIONS(1054), 7, + anon_sym_EQ, sym_identifier, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [208394] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7145), 1, - anon_sym_LPAREN2, - ACTIONS(7224), 1, + sym__newline, + anon_sym_COLON, anon_sym_DOLLAR, - ACTIONS(7275), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7277), 1, - aux_sym__immediate_decimal_token5, - STATE(5281), 1, - sym__immediate_decimal, - STATE(5666), 1, - sym_comment, - ACTIONS(7273), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5425), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [208424] = 9, + anon_sym_DASH_DASH, + anon_sym_DOT, + [204807] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1489), 1, - anon_sym_DOLLAR, - ACTIONS(1491), 1, - anon_sym_LPAREN2, - ACTIONS(1581), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(1583), 1, - aux_sym__immediate_decimal_token5, - STATE(606), 1, - sym__immediate_decimal, - STATE(5667), 1, + ACTIONS(5018), 1, + anon_sym_DASH, + STATE(5420), 1, sym_comment, - ACTIONS(1579), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(605), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [208454] = 4, + ACTIONS(5016), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + [204826] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5668), 1, + ACTIONS(5022), 1, + anon_sym_DASH, + STATE(5421), 1, sym_comment, - ACTIONS(1483), 3, + ACTIONS(5020), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1481), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [208474] = 9, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + [204845] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1489), 1, + ACTIONS(8755), 1, + anon_sym_DASH_DASH, + ACTIONS(8758), 1, + anon_sym_DASH, + STATE(5943), 1, + sym__flag, + ACTIONS(8299), 2, anon_sym_DOLLAR, - ACTIONS(1491), 1, - anon_sym_LPAREN2, - ACTIONS(1497), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(1499), 1, - aux_sym__immediate_decimal_token5, - STATE(521), 1, - sym__immediate_decimal, - STATE(5669), 1, + aux_sym_ctrl_match_token1, + STATE(5422), 2, sym_comment, - ACTIONS(1495), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(610), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [208504] = 9, - ACTIONS(247), 1, + aux_sym_ctrl_do_repeat1, + STATE(5900), 2, + sym_short_flag, + sym_long_flag, + [204870] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1447), 1, - anon_sym_LPAREN2, - ACTIONS(9098), 1, - anon_sym_DOLLAR, - ACTIONS(9102), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9104), 1, - aux_sym__immediate_decimal_token5, - STATE(577), 1, - sym__immediate_decimal, - STATE(5670), 1, + STATE(5423), 1, sym_comment, - ACTIONS(9100), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(576), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [208534] = 4, + ACTIONS(1755), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1757), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [204889] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5671), 1, + ACTIONS(8761), 1, + anon_sym_DOT, + ACTIONS(8763), 1, + aux_sym__immediate_decimal_token2, + STATE(5424), 1, sym_comment, - ACTIONS(1473), 3, + ACTIONS(1643), 3, anon_sym_RBRACE, + anon_sym__, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1475), 6, - anon_sym_LPAREN2, + ACTIONS(1645), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - [208554] = 4, - ACTIONS(247), 1, + [204912] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5672), 1, + STATE(5425), 1, sym_comment, - ACTIONS(1521), 3, - anon_sym_DASH_DASH, + ACTIONS(1058), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1519), 6, - sym_identifier, - anon_sym_DASH, + sym__entry_separator, + ACTIONS(1056), 5, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym__, anon_sym_DOT_DOT2, + anon_sym_DOT, + [204931] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5426), 1, + sym_comment, + ACTIONS(1517), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1519), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token2, - [208574] = 9, + [204950] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1447), 1, - anon_sym_LPAREN2, - ACTIONS(9098), 1, - anon_sym_DOLLAR, - ACTIONS(9106), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9108), 1, - aux_sym__immediate_decimal_token5, - STATE(436), 1, - sym__immediate_decimal, - STATE(5673), 1, + ACTIONS(5036), 1, + anon_sym_DASH, + STATE(5427), 1, sym_comment, - ACTIONS(8893), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(578), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [208604] = 4, + ACTIONS(5034), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + [204969] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(5674), 1, - sym_comment, - ACTIONS(1587), 3, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1585), 6, + ACTIONS(4051), 1, + anon_sym_DQUOTE, + ACTIONS(8765), 1, sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [208624] = 6, + ACTIONS(8767), 1, + anon_sym_GT, + STATE(4704), 1, + sym__str_double_quotes, + STATE(5428), 1, + sym_comment, + STATE(5443), 1, + aux_sym_collection_type_repeat1, + STATE(5623), 1, + sym_val_string, + ACTIONS(4053), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [204998] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9110), 1, - anon_sym_DOT, - ACTIONS(9112), 1, + ACTIONS(8769), 1, aux_sym__immediate_decimal_token2, - STATE(5675), 1, + STATE(5429), 1, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1705), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1591), 5, + ACTIONS(1707), 5, sym__newline, aux_sym_ctrl_match_token1, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [208648] = 5, - ACTIONS(3), 1, + [205019] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8967), 1, + ACTIONS(8600), 1, aux_sym__immediate_decimal_token2, - STATE(5676), 1, + STATE(5430), 1, sym_comment, - ACTIONS(1473), 3, - sym__newline, + ACTIONS(1497), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1475), 5, - sym__space, + ACTIONS(1499), 5, + anon_sym_in, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [208670] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9114), 1, - anon_sym_DOT, - ACTIONS(9116), 1, - aux_sym__immediate_decimal_token2, - STATE(5677), 1, - sym_comment, - ACTIONS(1589), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1591), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [208694] = 5, + [205040] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9118), 1, - aux_sym__immediate_decimal_token2, - STATE(5678), 1, + STATE(5431), 1, sym_comment, - ACTIONS(1519), 3, + ACTIONS(1565), 3, sym__newline, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1521), 5, + ACTIONS(1567), 5, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [208716] = 6, + [205059] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9120), 1, - sym_long_flag_identifier, - ACTIONS(9122), 1, - anon_sym_EQ2, - STATE(5679), 1, - sym_comment, - ACTIONS(4950), 2, + ACTIONS(5040), 1, anon_sym_DASH, - anon_sym_as, - ACTIONS(4952), 5, + STATE(5432), 1, + sym_comment, + ACTIONS(5038), 7, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, - [208740] = 4, + anon_sym_as, + [205078] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5680), 1, + STATE(5433), 1, sym_comment, - ACTIONS(1481), 3, - anon_sym_RBRACE, + ACTIONS(1639), 3, + sym__newline, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1483), 6, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1641), 5, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [208760] = 4, - ACTIONS(247), 1, + [205097] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8707), 1, - anon_sym_DASH, - STATE(5681), 1, + ACTIONS(1013), 1, + sym__entry_separator, + ACTIONS(8771), 1, + anon_sym_DOT, + STATE(5434), 1, sym_comment, - ACTIONS(8703), 8, - sym_identifier, - sym__newline, - anon_sym_PIPE, + STATE(5541), 1, + aux_sym_cell_path_repeat1, + STATE(5575), 1, + sym_cell_path, + STATE(5978), 1, + sym_path, + ACTIONS(1011), 3, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [208780] = 4, + anon_sym_RBRACE, + anon_sym__, + [205124] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8707), 1, - anon_sym_DASH, - STATE(5682), 1, + ACTIONS(8773), 1, + anon_sym_EQ2, + ACTIONS(8775), 1, + sym_short_flag_identifier, + STATE(5435), 1, sym_comment, - ACTIONS(8703), 8, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + ACTIONS(4747), 3, anon_sym_DASH_DASH, - [208800] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8707), 1, anon_sym_DASH, - STATE(5683), 1, - sym_comment, - ACTIONS(8703), 8, - sym_identifier, + anon_sym_as, + ACTIONS(4749), 3, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [208820] = 4, + anon_sym_SEMI, + [205147] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8707), 1, + ACTIONS(1965), 1, anon_sym_DASH, - STATE(5684), 1, + ACTIONS(8466), 1, + anon_sym_DOT, + STATE(4769), 1, + sym_cell_path, + STATE(5211), 1, + aux_sym_cell_path_repeat1, + STATE(5436), 1, sym_comment, - ACTIONS(8703), 8, + STATE(5465), 1, + sym_path, + ACTIONS(1967), 3, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [208840] = 6, - ACTIONS(3), 1, + [205174] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9124), 1, + ACTIONS(5637), 1, anon_sym_DOT, - STATE(5845), 1, + STATE(2466), 1, + sym_cell_path, + STATE(2590), 1, sym_path, - STATE(5685), 2, - sym_comment, + STATE(2616), 1, aux_sym_cell_path_repeat1, - ACTIONS(955), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(957), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [208864] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6284), 1, - anon_sym_DOLLAR, - ACTIONS(8631), 1, - sym_identifier, - ACTIONS(8959), 1, - anon_sym_DASH_DASH, - ACTIONS(8961), 1, - anon_sym_DASH, - STATE(5619), 1, - sym_val_variable, - STATE(5686), 1, + STATE(5437), 1, sym_comment, - STATE(6179), 1, - sym__variable_name, - STATE(6389), 1, - sym__flag, - STATE(6245), 2, - sym_short_flag, - sym_long_flag, - [208896] = 4, + ACTIONS(1688), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [205199] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5687), 1, + ACTIONS(8656), 1, + aux_sym__immediate_decimal_token2, + STATE(5438), 1, sym_comment, - ACTIONS(1519), 3, + ACTIONS(1643), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_record_token2, - ACTIONS(1521), 6, + ACTIONS(1645), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - [208916] = 4, + [205220] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8735), 1, + ACTIONS(1843), 1, anon_sym_DASH, - STATE(5688), 1, + ACTIONS(8466), 1, + anon_sym_DOT, + STATE(4907), 1, + sym_cell_path, + STATE(5211), 1, + aux_sym_cell_path_repeat1, + STATE(5439), 1, sym_comment, - ACTIONS(8731), 8, + STATE(5465), 1, + sym_path, + ACTIONS(1845), 3, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [208936] = 4, - ACTIONS(247), 1, + [205247] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8460), 1, - anon_sym_DASH, - STATE(5689), 1, + ACTIONS(2241), 1, + aux_sym_unquoted_token4, + STATE(5440), 1, sym_comment, - ACTIONS(8456), 8, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + ACTIONS(1076), 3, anon_sym_DASH_DASH, - [208956] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8472), 1, anon_sym_DASH, - STATE(5690), 1, - sym_comment, - ACTIONS(8468), 8, - sym_identifier, + anon_sym_as, + ACTIONS(1078), 4, sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [208976] = 4, + anon_sym_RBRACE, + [205268] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8472), 1, - anon_sym_DASH, - STATE(5691), 1, + ACTIONS(8777), 1, + anon_sym_DOT, + ACTIONS(8779), 1, + aux_sym__immediate_decimal_token2, + STATE(5441), 1, sym_comment, - ACTIONS(8468), 8, - sym_identifier, - sym__newline, + ACTIONS(1643), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1645), 4, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [208996] = 4, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [205291] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8472), 1, + ACTIONS(8783), 1, anon_sym_DASH, - STATE(5692), 1, + STATE(5442), 1, sym_comment, - ACTIONS(8468), 8, + ACTIONS(8781), 7, sym_identifier, - sym__newline, anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [209016] = 4, + [205310] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8480), 1, - anon_sym_DASH, - STATE(5693), 1, - sym_comment, - ACTIONS(8476), 8, + ACTIONS(4051), 1, + anon_sym_DQUOTE, + ACTIONS(8765), 1, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [209036] = 4, - ACTIONS(247), 1, + ACTIONS(8785), 1, + anon_sym_GT, + STATE(4704), 1, + sym__str_double_quotes, + STATE(5361), 1, + aux_sym_collection_type_repeat1, + STATE(5443), 1, + sym_comment, + STATE(5623), 1, + sym_val_string, + ACTIONS(4053), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [205339] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8250), 1, - anon_sym_DASH, - STATE(5694), 1, + ACTIONS(1967), 1, + sym__entry_separator, + ACTIONS(8771), 1, + anon_sym_DOT, + STATE(5444), 1, sym_comment, - ACTIONS(8246), 8, - sym_identifier, - sym__newline, - anon_sym_PIPE, + STATE(5541), 1, + aux_sym_cell_path_repeat1, + STATE(5978), 1, + sym_path, + STATE(6571), 1, + sym_cell_path, + ACTIONS(1965), 3, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [209056] = 9, - ACTIONS(247), 1, + anon_sym_RBRACE, + anon_sym__, + [205366] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3645), 1, - anon_sym_DOLLAR, - ACTIONS(6262), 1, - anon_sym_LPAREN2, - ACTIONS(6268), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6270), 1, - aux_sym__immediate_decimal_token5, - STATE(5695), 1, + ACTIONS(8787), 1, + aux_sym__immediate_decimal_token2, + STATE(5445), 1, sym_comment, - STATE(6913), 1, - sym__immediate_decimal, - ACTIONS(6266), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6189), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [209086] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6262), 1, + ACTIONS(1705), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1707), 4, anon_sym_LPAREN2, - ACTIONS(6268), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6270), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8118), 1, - anon_sym_DOLLAR, - STATE(3725), 1, - sym__immediate_decimal, - STATE(5696), 1, - sym_comment, - ACTIONS(6286), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3604), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [209116] = 9, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [205387] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6262), 1, - anon_sym_LPAREN2, - ACTIONS(6268), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6270), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8118), 1, - anon_sym_DOLLAR, - STATE(3610), 1, - sym__immediate_decimal, - STATE(5697), 1, + STATE(5446), 1, sym_comment, - ACTIONS(6286), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3609), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [209146] = 9, - ACTIONS(247), 1, + ACTIONS(1062), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1060), 5, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym__, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [205406] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6260), 1, - anon_sym_DOLLAR, - ACTIONS(6262), 1, - anon_sym_LPAREN2, - ACTIONS(8380), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8382), 1, - aux_sym__immediate_decimal_token5, - STATE(5698), 1, + STATE(5447), 1, sym_comment, - STATE(6376), 1, - sym__immediate_decimal, - ACTIONS(8378), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6375), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [209176] = 9, + ACTIONS(1054), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1052), 5, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym__, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [205425] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8086), 1, - anon_sym_LPAREN2, - ACTIONS(9048), 1, - anon_sym_DOLLAR, - ACTIONS(9127), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9129), 1, - aux_sym__immediate_decimal_token5, - STATE(5699), 1, + ACTIONS(1847), 1, + anon_sym_DASH, + ACTIONS(8466), 1, + anon_sym_DOT, + STATE(4911), 1, + sym_cell_path, + STATE(5211), 1, + aux_sym_cell_path_repeat1, + STATE(5448), 1, sym_comment, - STATE(6660), 1, - sym__immediate_decimal, - ACTIONS(8553), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3144), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [209206] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6535), 1, + STATE(5465), 1, + sym_path, + ACTIONS(1849), 3, + sym_identifier, anon_sym_DOLLAR, - ACTIONS(6557), 1, - anon_sym_LPAREN2, - ACTIONS(6561), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6563), 1, - aux_sym__immediate_decimal_token5, - STATE(4051), 1, - sym__immediate_decimal, - STATE(5700), 1, - sym_comment, - ACTIONS(6575), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2085), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [209236] = 4, + anon_sym_DASH_DASH, + [205452] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(5701), 1, + ACTIONS(1881), 1, + sym__entry_separator, + ACTIONS(8771), 1, + anon_sym_DOT, + STATE(5449), 1, sym_comment, - ACTIONS(1585), 3, + STATE(5541), 1, + aux_sym_cell_path_repeat1, + STATE(5978), 1, + sym_path, + STATE(6126), 1, + sym_cell_path, + ACTIONS(1879), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1587), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [209256] = 5, + anon_sym__, + [205479] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1851), 1, + anon_sym_DASH, + ACTIONS(8466), 1, + anon_sym_DOT, + STATE(4923), 1, + sym_cell_path, + STATE(5211), 1, + aux_sym_cell_path_repeat1, + STATE(5450), 1, + sym_comment, + STATE(5465), 1, + sym_path, + ACTIONS(1853), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [205506] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8921), 1, - aux_sym__immediate_decimal_token2, - STATE(5702), 1, + STATE(5451), 1, sym_comment, - ACTIONS(1589), 4, + ACTIONS(1643), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_list_token2, - ACTIONS(1591), 4, + ACTIONS(1645), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [209278] = 9, + [205525] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6262), 1, - anon_sym_LPAREN2, - ACTIONS(6284), 1, - anon_sym_DOLLAR, - ACTIONS(8380), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8382), 1, - aux_sym__immediate_decimal_token5, - STATE(3610), 1, - sym__immediate_decimal, - STATE(5703), 1, - sym_comment, - ACTIONS(8715), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3609), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [209308] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6262), 1, - anon_sym_LPAREN2, - ACTIONS(6284), 1, - anon_sym_DOLLAR, - ACTIONS(8380), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8382), 1, - aux_sym__immediate_decimal_token5, - STATE(3716), 1, - sym__immediate_decimal, - STATE(5704), 1, + ACTIONS(5014), 1, + anon_sym_DASH, + STATE(5452), 1, sym_comment, - ACTIONS(8715), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3569), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [209338] = 9, + ACTIONS(5012), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + [205544] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6262), 1, - anon_sym_LPAREN2, - ACTIONS(6284), 1, - anon_sym_DOLLAR, - ACTIONS(8380), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8382), 1, - aux_sym__immediate_decimal_token5, - STATE(3725), 1, - sym__immediate_decimal, - STATE(5705), 1, + ACTIONS(5026), 1, + anon_sym_DASH, + STATE(5453), 1, sym_comment, - ACTIONS(8715), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3604), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [209368] = 9, + ACTIONS(5024), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + [205563] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8086), 1, - anon_sym_LPAREN2, - ACTIONS(9048), 1, - anon_sym_DOLLAR, - ACTIONS(9131), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9133), 1, - aux_sym__immediate_decimal_token5, - STATE(5706), 1, + ACTIONS(5030), 1, + anon_sym_DASH, + STATE(5454), 1, sym_comment, - STATE(6652), 1, - sym__immediate_decimal, - ACTIONS(8398), 2, + ACTIONS(5028), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + [205582] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8789), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3144), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [209398] = 5, + ACTIONS(8791), 1, + aux_sym__immediate_decimal_token2, + STATE(5455), 1, + sym_comment, + ACTIONS(1631), 3, + anon_sym_RBRACE, + anon_sym__, + anon_sym_DOT_DOT2, + ACTIONS(1633), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [205605] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9056), 1, + ACTIONS(8716), 1, aux_sym__immediate_decimal_token2, - STATE(5707), 1, + STATE(5456), 1, sym_comment, - ACTIONS(1473), 2, + ACTIONS(1643), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1475), 5, - anon_sym_in, + ACTIONS(1645), 5, + sym__newline, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [209419] = 4, + [205626] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5131), 1, + ACTIONS(1879), 1, anon_sym_DASH, - STATE(5708), 1, + ACTIONS(8466), 1, + anon_sym_DOT, + STATE(4906), 1, + sym_cell_path, + STATE(5211), 1, + aux_sym_cell_path_repeat1, + STATE(5457), 1, + sym_comment, + STATE(5465), 1, + sym_path, + ACTIONS(1881), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [205653] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5637), 1, + anon_sym_DOT, + STATE(2432), 1, + sym_cell_path, + STATE(2590), 1, + sym_path, + STATE(2616), 1, + aux_sym_cell_path_repeat1, + STATE(5458), 1, sym_comment, - ACTIONS(5129), 7, + ACTIONS(1629), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_as, - [209438] = 9, + [205678] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1855), 1, + anon_sym_DASH, + ACTIONS(8466), 1, + anon_sym_DOT, + STATE(4925), 1, + sym_cell_path, + STATE(5211), 1, + aux_sym_cell_path_repeat1, + STATE(5459), 1, + sym_comment, + STATE(5465), 1, + sym_path, + ACTIONS(1857), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [205705] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4286), 1, + ACTIONS(1835), 1, + anon_sym_DASH, + ACTIONS(8466), 1, + anon_sym_DOT, + STATE(4885), 1, + sym_cell_path, + STATE(5211), 1, + aux_sym_cell_path_repeat1, + STATE(5460), 1, + sym_comment, + STATE(5465), 1, + sym_path, + ACTIONS(1837), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [205732] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4051), 1, anon_sym_DQUOTE, - ACTIONS(9135), 1, + ACTIONS(8765), 1, sym_identifier, - ACTIONS(9137), 1, + ACTIONS(8793), 1, anon_sym_GT, - STATE(4863), 1, + STATE(4704), 1, sym__str_double_quotes, - STATE(5709), 1, + STATE(5461), 1, sym_comment, - STATE(5834), 1, + STATE(5496), 1, aux_sym_collection_type_repeat1, - STATE(5882), 1, + STATE(5623), 1, sym_val_string, - ACTIONS(4288), 2, + ACTIONS(4053), 2, sym__str_single_quotes, sym__str_back_ticks, - [209467] = 9, + [205761] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4286), 1, - anon_sym_DQUOTE, - ACTIONS(9135), 1, + ACTIONS(8797), 1, + anon_sym_COMMA, + ACTIONS(8799), 1, + anon_sym_AT, + STATE(5462), 1, + sym_comment, + STATE(5837), 1, + sym_param_cmd, + ACTIONS(8795), 5, sym_identifier, - ACTIONS(9139), 1, anon_sym_GT, - STATE(4863), 1, - sym__str_double_quotes, - STATE(5710), 1, - sym_comment, - STATE(5834), 1, - aux_sym_collection_type_repeat1, - STATE(5882), 1, - sym_val_string, - ACTIONS(4288), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [209496] = 4, + [205784] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(994), 1, + ACTIONS(8801), 1, + anon_sym_DASH_DASH, + ACTIONS(8804), 1, anon_sym_DASH, - STATE(5711), 1, - sym_comment, - ACTIONS(996), 7, - anon_sym_EQ, + STATE(5943), 1, + sym__flag, + ACTIONS(8299), 2, sym_identifier, - anon_sym_COLON, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT, - sym__table_head_separator, - [209515] = 8, + STATE(5463), 2, + sym_comment, + aux_sym_ctrl_do_repeat1, + STATE(5900), 2, + sym_short_flag, + sym_long_flag, + [205809] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1774), 1, - anon_sym_DASH, - ACTIONS(8853), 1, - anon_sym_DOT, - STATE(5247), 1, - sym_cell_path, - STATE(5525), 1, - aux_sym_cell_path_repeat1, - STATE(5711), 1, - sym_path, - STATE(5712), 1, + ACTIONS(8799), 1, + anon_sym_AT, + ACTIONS(8809), 1, + anon_sym_COMMA, + STATE(5464), 1, sym_comment, - ACTIONS(1776), 3, + STATE(5851), 1, + sym_param_cmd, + ACTIONS(8807), 5, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [209542] = 4, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [205832] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5135), 1, + ACTIONS(1056), 1, anon_sym_DASH, - STATE(5713), 1, + STATE(5465), 1, sym_comment, - ACTIONS(5133), 7, + ACTIONS(1058), 7, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - [209561] = 4, + anon_sym_DOT, + [205851] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5153), 1, - anon_sym_DASH, - STATE(5714), 1, + ACTIONS(8811), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8813), 1, + aux_sym__immediate_decimal_token2, + STATE(5466), 1, sym_comment, - ACTIONS(5151), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - [209580] = 8, + ACTIONS(1631), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1633), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [205874] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1778), 1, + ACTIONS(1859), 1, anon_sym_DASH, - ACTIONS(8853), 1, + ACTIONS(8466), 1, anon_sym_DOT, - STATE(5227), 1, + STATE(4926), 1, sym_cell_path, - STATE(5525), 1, + STATE(5211), 1, aux_sym_cell_path_repeat1, - STATE(5711), 1, + STATE(5465), 1, sym_path, - STATE(5715), 1, + STATE(5467), 1, sym_comment, - ACTIONS(1780), 3, + ACTIONS(1861), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [209607] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5704), 1, - anon_sym_DOT, - STATE(2649), 1, - sym_cell_path, - STATE(2760), 1, - sym_path, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(5716), 1, - sym_comment, - ACTIONS(1603), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [209632] = 4, + [205901] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5717), 1, + STATE(5468), 1, sym_comment, - ACTIONS(1569), 4, - anon_sym_RBRACK, + ACTIONS(1497), 3, anon_sym_RBRACE, + anon_sym__, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1571), 4, - anon_sym_LPAREN2, + ACTIONS(1499), 5, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - [209651] = 4, + [205920] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5718), 1, + STATE(5469), 1, sym_comment, - ACTIONS(964), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(962), 5, - anon_sym_RBRACK, + ACTIONS(2259), 4, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_as, + aux_sym_unquoted_token4, + ACTIONS(2261), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [209670] = 5, - ACTIONS(247), 1, + [205939] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9112), 1, - aux_sym__immediate_decimal_token2, - STATE(5719), 1, - sym_comment, - ACTIONS(1589), 2, + ACTIONS(1575), 1, + sym__newline, + ACTIONS(1587), 1, + sym__space, + ACTIONS(4433), 1, anon_sym_DOT_DOT2, + ACTIONS(6874), 1, aux_sym_unquoted_token2, - ACTIONS(1591), 5, - sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, + ACTIONS(8815), 1, + sym_filesize_unit, + ACTIONS(8817), 1, + sym_duration_unit, + STATE(5470), 1, + sym_comment, + ACTIONS(4435), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [209691] = 5, - ACTIONS(247), 1, + [205968] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9116), 1, - aux_sym__immediate_decimal_token2, - STATE(5720), 1, + STATE(5471), 1, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1517), 3, + anon_sym_RBRACE, + anon_sym__, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1591), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1519), 5, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [209712] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1525), 1, - sym__newline, - ACTIONS(1537), 1, - sym__space, - ACTIONS(4694), 1, - anon_sym_DOT_DOT2, - ACTIONS(7127), 1, - aux_sym_unquoted_token2, - ACTIONS(9141), 1, sym_filesize_unit, - ACTIONS(9143), 1, sym_duration_unit, - STATE(5721), 1, + sym__entry_separator, + [205987] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5472), 1, sym_comment, - ACTIONS(4696), 2, + ACTIONS(1565), 3, + anon_sym_RBRACE, + anon_sym__, + anon_sym_DOT_DOT2, + ACTIONS(1567), 5, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [209741] = 7, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [206006] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9145), 1, - anon_sym_DOT, - STATE(2128), 1, - sym_cell_path, - STATE(2760), 1, - sym_path, - STATE(5722), 1, + ACTIONS(4051), 1, + anon_sym_DQUOTE, + ACTIONS(8765), 1, + sym_identifier, + ACTIONS(8819), 1, + anon_sym_GT, + STATE(4704), 1, + sym__str_double_quotes, + STATE(5473), 1, sym_comment, - STATE(5898), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1849), 4, - anon_sym_PIPE, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - [209766] = 7, - ACTIONS(247), 1, + STATE(5491), 1, + aux_sym_collection_type_repeat1, + STATE(5623), 1, + sym_val_string, + ACTIONS(4053), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [206035] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9145), 1, + ACTIONS(1963), 1, + sym__entry_separator, + ACTIONS(8771), 1, anon_sym_DOT, - STATE(2131), 1, - sym_cell_path, - STATE(2760), 1, - sym_path, - STATE(5723), 1, + STATE(5474), 1, sym_comment, - STATE(5898), 1, + STATE(5541), 1, aux_sym_cell_path_repeat1, - ACTIONS(1873), 4, - anon_sym_PIPE, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - [209791] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9145), 1, - anon_sym_DOT, - STATE(2147), 1, - sym_cell_path, - STATE(2760), 1, + STATE(5978), 1, sym_path, - STATE(5724), 1, + STATE(6368), 1, + sym_cell_path, + ACTIONS(1961), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym__, + [206062] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5475), 1, sym_comment, - STATE(5898), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1877), 4, - anon_sym_PIPE, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - [209816] = 7, + ACTIONS(1639), 3, + anon_sym_RBRACE, + anon_sym__, + anon_sym_DOT_DOT2, + ACTIONS(1641), 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [206081] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9145), 1, - anon_sym_DOT, - STATE(2166), 1, - sym_cell_path, - STATE(2760), 1, - sym_path, - STATE(5725), 1, + ACTIONS(4906), 1, + anon_sym_DASH, + ACTIONS(8821), 1, + anon_sym_EQ2, + STATE(5476), 1, sym_comment, - STATE(5898), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1881), 4, - anon_sym_PIPE, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - [209841] = 7, + ACTIONS(4904), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [206102] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9145), 1, + ACTIONS(1863), 1, + anon_sym_DASH, + ACTIONS(8466), 1, anon_sym_DOT, - STATE(2172), 1, + STATE(4936), 1, sym_cell_path, - STATE(2760), 1, + STATE(5211), 1, + aux_sym_cell_path_repeat1, + STATE(5465), 1, sym_path, - STATE(5726), 1, + STATE(5477), 1, sym_comment, - STATE(5898), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1885), 4, - anon_sym_PIPE, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - [209866] = 7, + ACTIONS(1865), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [206129] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9145), 1, - anon_sym_DOT, - STATE(2145), 1, - sym_cell_path, - STATE(2760), 1, - sym_path, - STATE(5727), 1, + ACTIONS(5044), 1, + anon_sym_DASH, + STATE(5478), 1, sym_comment, - STATE(5898), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1893), 4, - anon_sym_PIPE, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - [209891] = 7, + ACTIONS(5042), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + [206148] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9145), 1, - anon_sym_DOT, - STATE(2124), 1, - sym_cell_path, - STATE(2760), 1, - sym_path, - STATE(5728), 1, + ACTIONS(5048), 1, + anon_sym_DASH, + STATE(5479), 1, sym_comment, - STATE(5898), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1897), 4, - anon_sym_PIPE, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - [209916] = 7, + ACTIONS(5046), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + [206167] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9145), 1, - anon_sym_DOT, - STATE(2173), 1, - sym_cell_path, - STATE(2760), 1, - sym_path, - STATE(5729), 1, + ACTIONS(4916), 1, + anon_sym_DASH, + ACTIONS(8823), 1, + anon_sym_EQ2, + STATE(5480), 1, sym_comment, - STATE(5898), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1749), 4, - anon_sym_PIPE, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - [209941] = 7, + ACTIONS(4914), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [206188] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9145), 1, + ACTIONS(1011), 1, + anon_sym_DASH, + ACTIONS(8466), 1, anon_sym_DOT, - STATE(2133), 1, + STATE(4519), 1, sym_cell_path, - STATE(2760), 1, + STATE(5211), 1, + aux_sym_cell_path_repeat1, + STATE(5465), 1, sym_path, - STATE(5730), 1, + STATE(5481), 1, sym_comment, - STATE(5898), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1826), 4, - anon_sym_PIPE, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - [209966] = 7, + ACTIONS(1013), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [206215] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5482), 1, + sym_comment, + ACTIONS(1631), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1633), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [206234] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9145), 1, + ACTIONS(1686), 1, + anon_sym_DOT_DOT2, + ACTIONS(8749), 1, anon_sym_DOT, - STATE(2136), 1, - sym_cell_path, - STATE(2760), 1, + STATE(1206), 1, sym_path, - STATE(5731), 1, + STATE(1484), 1, + sym_cell_path, + STATE(5483), 1, sym_comment, - STATE(5898), 1, + STATE(5602), 1, aux_sym_cell_path_repeat1, - ACTIONS(1857), 4, - anon_sym_PIPE, - anon_sym_if, + ACTIONS(1688), 3, aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - [209991] = 7, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [206261] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9145), 1, + ACTIONS(1867), 1, + anon_sym_DASH, + ACTIONS(8466), 1, anon_sym_DOT, - STATE(2138), 1, + STATE(4772), 1, sym_cell_path, - STATE(2760), 1, + STATE(5211), 1, + aux_sym_cell_path_repeat1, + STATE(5465), 1, sym_path, - STATE(5732), 1, + STATE(5484), 1, sym_comment, - STATE(5898), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1798), 4, - anon_sym_PIPE, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - [210016] = 7, + ACTIONS(1869), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [206288] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9145), 1, + ACTIONS(1625), 1, + anon_sym_DOT_DOT2, + ACTIONS(8749), 1, anon_sym_DOT, - STATE(2150), 1, - sym_cell_path, - STATE(2760), 1, + STATE(1206), 1, sym_path, - STATE(5733), 1, + STATE(1533), 1, + sym_cell_path, + STATE(5485), 1, sym_comment, - STATE(5898), 1, + STATE(5602), 1, aux_sym_cell_path_repeat1, - ACTIONS(1810), 4, - anon_sym_PIPE, - anon_sym_if, + ACTIONS(1629), 3, aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - [210041] = 7, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [206315] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9145), 1, - anon_sym_DOT, - STATE(2156), 1, - sym_cell_path, - STATE(2760), 1, - sym_path, - STATE(5734), 1, + STATE(5486), 1, sym_comment, - STATE(5898), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1822), 4, - anon_sym_PIPE, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - [210066] = 7, + ACTIONS(1499), 3, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1497), 5, + sym_identifier, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [206334] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9145), 1, + ACTIONS(1957), 1, + anon_sym_DASH, + ACTIONS(8466), 1, anon_sym_DOT, - STATE(2167), 1, + STATE(4798), 1, sym_cell_path, - STATE(2760), 1, + STATE(5211), 1, + aux_sym_cell_path_repeat1, + STATE(5465), 1, sym_path, - STATE(5735), 1, + STATE(5487), 1, sym_comment, - STATE(5898), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1745), 4, - anon_sym_PIPE, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - [210091] = 7, + ACTIONS(1959), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [206361] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9145), 1, - anon_sym_DOT, - STATE(2169), 1, - sym_cell_path, - STATE(2760), 1, - sym_path, - STATE(5736), 1, + ACTIONS(6352), 1, + sym_filesize_unit, + ACTIONS(6354), 1, + sym_duration_unit, + ACTIONS(8379), 1, + aux_sym_unquoted_token2, + ACTIONS(8825), 1, + anon_sym_DOT_DOT2, + STATE(5488), 1, sym_comment, - STATE(5898), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1901), 4, + ACTIONS(1587), 2, anon_sym_PIPE, - anon_sym_if, - aux_sym_ctrl_match_token1, anon_sym_EQ_GT, - [210116] = 7, + ACTIONS(8827), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [206388] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(5489), 1, + sym_comment, + ACTIONS(2293), 3, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_as, + ACTIONS(2297), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [206409] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9145), 1, - anon_sym_DOT, - STATE(2171), 1, - sym_cell_path, - STATE(2760), 1, - sym_path, - STATE(5737), 1, + ACTIONS(8829), 1, + aux_sym__immediate_decimal_token2, + STATE(5490), 1, sym_comment, - STATE(5898), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1833), 4, - anon_sym_PIPE, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - [210141] = 7, + ACTIONS(1565), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1567), 5, + anon_sym_in, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [206430] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9145), 1, - anon_sym_DOT, - STATE(2127), 1, - sym_cell_path, - STATE(2760), 1, - sym_path, - STATE(5738), 1, + ACTIONS(4051), 1, + anon_sym_DQUOTE, + ACTIONS(8765), 1, + sym_identifier, + ACTIONS(8831), 1, + anon_sym_GT, + STATE(4704), 1, + sym__str_double_quotes, + STATE(5361), 1, + aux_sym_collection_type_repeat1, + STATE(5491), 1, sym_comment, - STATE(5898), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1837), 4, - anon_sym_PIPE, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - [210166] = 7, + STATE(5623), 1, + sym_val_string, + ACTIONS(4053), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [206459] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9145), 1, - anon_sym_DOT, - STATE(2129), 1, - sym_cell_path, - STATE(2760), 1, - sym_path, - STATE(5739), 1, + ACTIONS(8592), 1, + aux_sym__immediate_decimal_token2, + STATE(5492), 1, sym_comment, - STATE(5898), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1841), 4, + ACTIONS(1643), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1645), 5, anon_sym_PIPE, anon_sym_if, - aux_sym_ctrl_match_token1, anon_sym_EQ_GT, - [210191] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5704), 1, - anon_sym_DOT, - STATE(1743), 1, - sym_cell_path, - STATE(2760), 1, - sym_path, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(5740), 1, - sym_comment, - ACTIONS(1764), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [210216] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [206480] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5741), 1, + STATE(5493), 1, sym_comment, - ACTIONS(1483), 3, + ACTIONS(1519), 3, anon_sym_DOLLAR, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1481), 5, + ACTIONS(1517), 5, sym_identifier, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [210235] = 7, - ACTIONS(247), 1, + [206499] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5704), 1, - anon_sym_DOT, - STATE(1782), 1, - sym_cell_path, - STATE(2760), 1, - sym_path, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(5742), 1, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + STATE(5494), 1, sym_comment, - ACTIONS(1772), 4, + ACTIONS(2243), 3, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_as, + ACTIONS(2247), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [210260] = 8, - ACTIONS(247), 1, + [206520] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(945), 1, - anon_sym_DOT_DOT2, - ACTIONS(9147), 1, - anon_sym_DOT, - STATE(1399), 1, - sym_path, - STATE(3345), 1, - sym_cell_path, - STATE(5743), 1, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + STATE(5495), 1, sym_comment, - STATE(5911), 1, - aux_sym_cell_path_repeat1, - ACTIONS(947), 3, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [210287] = 8, + ACTIONS(2251), 3, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_as, + ACTIONS(2253), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [206541] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1762), 1, - anon_sym_DASH, - ACTIONS(5704), 1, - anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(5382), 1, - sym_cell_path, - STATE(5744), 1, + ACTIONS(4051), 1, + anon_sym_DQUOTE, + ACTIONS(8765), 1, + sym_identifier, + ACTIONS(8833), 1, + anon_sym_GT, + STATE(4704), 1, + sym__str_double_quotes, + STATE(5361), 1, + aux_sym_collection_type_repeat1, + STATE(5496), 1, sym_comment, - ACTIONS(1764), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [210314] = 8, + STATE(5623), 1, + sym_val_string, + ACTIONS(4053), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [206570] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1770), 1, + ACTIONS(1961), 1, anon_sym_DASH, - ACTIONS(5704), 1, + ACTIONS(8466), 1, anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(5210), 1, + STATE(4869), 1, sym_cell_path, - STATE(5745), 1, + STATE(5211), 1, + aux_sym_cell_path_repeat1, + STATE(5465), 1, + sym_path, + STATE(5497), 1, sym_comment, - ACTIONS(1772), 3, + ACTIONS(1963), 3, + sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [210341] = 8, + [206597] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1847), 1, + ACTIONS(1575), 1, anon_sym_DASH, - ACTIONS(5704), 1, - anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(5327), 1, - sym_cell_path, - STATE(5746), 1, + ACTIONS(6790), 1, + aux_sym_unquoted_token2, + STATE(5498), 1, sym_comment, - ACTIONS(1849), 3, - anon_sym_DOLLAR, + ACTIONS(1587), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [210368] = 8, + anon_sym_RBRACE, + anon_sym_as, + [206618] = 8, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(1871), 1, anon_sym_DASH, - ACTIONS(5704), 1, + ACTIONS(8466), 1, anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(5202), 1, + STATE(4777), 1, sym_cell_path, - STATE(5747), 1, + STATE(5211), 1, + aux_sym_cell_path_repeat1, + STATE(5465), 1, + sym_path, + STATE(5499), 1, sym_comment, ACTIONS(1873), 3, + sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [210395] = 8, + [206645] = 8, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(1875), 1, anon_sym_DASH, - ACTIONS(5704), 1, + ACTIONS(8466), 1, anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(5203), 1, + STATE(4791), 1, sym_cell_path, - STATE(5748), 1, + STATE(5211), 1, + aux_sym_cell_path_repeat1, + STATE(5465), 1, + sym_path, + STATE(5500), 1, sym_comment, ACTIONS(1877), 3, + sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [210422] = 8, + [206672] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1879), 1, - anon_sym_DASH, - ACTIONS(5704), 1, - anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(5211), 1, - sym_cell_path, - STATE(5749), 1, + STATE(5501), 1, sym_comment, - ACTIONS(1881), 3, + ACTIONS(1567), 3, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [210449] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1565), 5, + sym_identifier, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [206691] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1883), 1, - anon_sym_DASH, - ACTIONS(5704), 1, - anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(5212), 1, - sym_cell_path, - STATE(5750), 1, - sym_comment, - ACTIONS(1885), 3, - anon_sym_DOLLAR, + ACTIONS(8835), 1, + sym_identifier, + ACTIONS(8837), 1, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [210476] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1891), 1, + ACTIONS(8839), 1, anon_sym_DASH, - ACTIONS(5704), 1, - anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(5216), 1, - sym_cell_path, - STATE(5751), 1, + STATE(5502), 1, sym_comment, - ACTIONS(1893), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [210503] = 8, + STATE(5605), 1, + aux_sym_ctrl_do_repeat1, + STATE(5943), 1, + sym__flag, + STATE(5900), 2, + sym_short_flag, + sym_long_flag, + [206717] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1895), 1, - anon_sym_DASH, - ACTIONS(5704), 1, - anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(5221), 1, - sym_cell_path, - STATE(5752), 1, + STATE(5503), 1, sym_comment, - ACTIONS(1897), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [210530] = 8, + ACTIONS(1705), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1707), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [206735] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1747), 1, - anon_sym_DASH, - ACTIONS(5704), 1, - anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(5233), 1, - sym_cell_path, - STATE(5753), 1, - sym_comment, - ACTIONS(1749), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(6078), 1, aux_sym_ctrl_match_token1, - [210557] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1824), 1, - anon_sym_DASH, - ACTIONS(5704), 1, - anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(5267), 1, - sym_cell_path, - STATE(5754), 1, - sym_comment, - ACTIONS(1826), 3, - anon_sym_DOLLAR, + ACTIONS(8841), 1, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [210584] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1855), 1, + ACTIONS(8843), 1, anon_sym_DASH, - ACTIONS(5704), 1, - anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(5268), 1, - sym_cell_path, - STATE(5755), 1, + STATE(5504), 1, sym_comment, - ACTIONS(1857), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [210611] = 8, + STATE(6096), 1, + sym_block, + STATE(7457), 1, + sym__flag, + STATE(5900), 2, + sym_short_flag, + sym_long_flag, + [206761] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_DASH, - ACTIONS(5704), 1, + ACTIONS(8466), 1, anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(5269), 1, + STATE(3091), 1, sym_cell_path, - STATE(5756), 1, - sym_comment, - ACTIONS(1798), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [210638] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1808), 1, - anon_sym_DASH, - ACTIONS(5704), 1, - anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(2761), 1, + STATE(5211), 1, aux_sym_cell_path_repeat1, - STATE(5279), 1, - sym_cell_path, - STATE(5757), 1, - sym_comment, - ACTIONS(1810), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [210665] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1820), 1, - anon_sym_DASH, - ACTIONS(5704), 1, - anon_sym_DOT, - STATE(2760), 1, + STATE(5465), 1, sym_path, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(5280), 1, - sym_cell_path, - STATE(5758), 1, + STATE(5505), 1, + sym_comment, + ACTIONS(1013), 3, + anon_sym_EQ, + sym__newline, + anon_sym_COLON, + [206785] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2241), 1, + aux_sym_unquoted_token4, + STATE(5506), 1, sym_comment, - ACTIONS(1822), 3, - anon_sym_DOLLAR, + ACTIONS(1076), 3, anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [210692] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1741), 1, anon_sym_DASH, - ACTIONS(5704), 1, + anon_sym_as, + ACTIONS(1078), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [206805] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1837), 1, + sym__entry_separator, + ACTIONS(8771), 1, anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(5284), 1, + STATE(2915), 1, sym_cell_path, - STATE(5759), 1, + STATE(5507), 1, sym_comment, - ACTIONS(1745), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [210719] = 8, - ACTIONS(247), 1, + STATE(5541), 1, + aux_sym_cell_path_repeat1, + STATE(5978), 1, + sym_path, + ACTIONS(1835), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [206831] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1899), 1, - anon_sym_DASH, - ACTIONS(5704), 1, + ACTIONS(1841), 1, + sym__entry_separator, + ACTIONS(8771), 1, anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(5286), 1, + STATE(2923), 1, sym_cell_path, - STATE(5760), 1, + STATE(5508), 1, sym_comment, - ACTIONS(1901), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [210746] = 8, + STATE(5541), 1, + aux_sym_cell_path_repeat1, + STATE(5978), 1, + sym_path, + ACTIONS(1839), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [206857] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1831), 1, - anon_sym_DASH, - ACTIONS(5704), 1, - anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(5292), 1, - sym_cell_path, - STATE(5761), 1, + STATE(5509), 1, sym_comment, - ACTIONS(1833), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [210773] = 8, + ACTIONS(1755), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1757), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [206875] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1835), 1, + ACTIONS(6078), 1, + aux_sym_ctrl_match_token1, + ACTIONS(8841), 1, + anon_sym_DASH_DASH, + ACTIONS(8843), 1, anon_sym_DASH, - ACTIONS(5704), 1, - anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(5293), 1, - sym_cell_path, - STATE(5762), 1, + STATE(5510), 1, sym_comment, - ACTIONS(1837), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [210800] = 8, + STATE(6524), 1, + sym_block, + STATE(7443), 1, + sym__flag, + STATE(5900), 2, + sym_short_flag, + sym_long_flag, + [206901] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1839), 1, - anon_sym_DASH, - ACTIONS(5704), 1, - anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(5301), 1, - sym_cell_path, - STATE(5763), 1, + ACTIONS(1806), 1, + aux_sym_unquoted_token2, + ACTIONS(8845), 1, + anon_sym_DOT_DOT2, + STATE(5511), 1, sym_comment, - ACTIONS(1841), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [210827] = 8, - ACTIONS(247), 1, + ACTIONS(8847), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1804), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [206923] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1774), 1, - anon_sym_DASH, - ACTIONS(5704), 1, + ACTIONS(1959), 1, + sym__entry_separator, + ACTIONS(8771), 1, anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(2761), 1, + STATE(5512), 1, + sym_comment, + STATE(5541), 1, aux_sym_cell_path_repeat1, - STATE(5247), 1, + STATE(5978), 1, + sym_path, + STATE(6541), 1, sym_cell_path, - STATE(5764), 1, + ACTIONS(1957), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [206949] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5513), 1, sym_comment, - ACTIONS(1776), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(1643), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1645), 5, + sym__newline, aux_sym_ctrl_match_token1, - [210854] = 8, - ACTIONS(247), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [206967] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1778), 1, - anon_sym_DASH, - ACTIONS(5704), 1, + ACTIONS(6067), 1, + sym__entry_separator, + ACTIONS(8771), 1, anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(2761), 1, + STATE(5514), 1, + sym_comment, + STATE(5541), 1, aux_sym_cell_path_repeat1, - STATE(5227), 1, + STATE(5978), 1, + sym_path, + STATE(6541), 1, sym_cell_path, - STATE(5765), 1, - sym_comment, - ACTIONS(1780), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(6096), 2, + anon_sym_RBRACE, + anon_sym__, + [206993] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1587), 1, aux_sym_ctrl_match_token1, - [210881] = 5, + ACTIONS(4433), 1, + anon_sym_DOT_DOT2, + ACTIONS(6385), 1, + sym_filesize_unit, + ACTIONS(6387), 1, + sym_duration_unit, + ACTIONS(8379), 1, + aux_sym_unquoted_token2, + STATE(5515), 1, + sym_comment, + ACTIONS(4435), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [207019] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8978), 1, - aux_sym__immediate_decimal_token2, - STATE(5766), 1, - sym_comment, - ACTIONS(1589), 3, + ACTIONS(1796), 1, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1591), 4, + ACTIONS(1798), 1, anon_sym_LPAREN2, + ACTIONS(1804), 1, + sym__entry_separator, + ACTIONS(1806), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(8849), 1, + anon_sym_DOT_DOT2, + STATE(5516), 1, + sym_comment, + ACTIONS(8851), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [210902] = 6, + [207045] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9149), 1, - anon_sym_DOT, - ACTIONS(9151), 1, - aux_sym__immediate_decimal_token2, - STATE(5767), 1, + STATE(5517), 1, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1639), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1591), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1641), 5, + anon_sym_in, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [210925] = 4, + sym_filesize_unit, + sym_duration_unit, + [207063] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5768), 1, + ACTIONS(8853), 1, + aux_sym__immediate_decimal_token2, + STATE(5518), 1, sym_comment, - ACTIONS(1648), 4, - anon_sym_RBRACK, + ACTIONS(1705), 3, anon_sym_RBRACE, + anon_sym__, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1650), 4, - anon_sym_LPAREN2, + ACTIONS(1707), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [210944] = 5, - ACTIONS(3), 1, + [207083] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9153), 1, - anon_sym_QMARK2, - STATE(5769), 1, + STATE(5519), 1, sym_comment, - ACTIONS(972), 3, + ACTIONS(1755), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1757), 5, + sym__newline, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(970), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [210965] = 4, + [207101] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5139), 1, - anon_sym_DASH, - STATE(5770), 1, + STATE(5520), 1, sym_comment, - ACTIONS(5137), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + ACTIONS(1497), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1499), 5, anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - [210984] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9155), 1, - anon_sym_QMARK2, - STATE(5771), 1, - sym_comment, - ACTIONS(982), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [207119] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1833), 1, sym__entry_separator, - ACTIONS(980), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, + ACTIONS(8771), 1, anon_sym_DOT, - [211005] = 4, + STATE(5521), 1, + sym_comment, + STATE(5541), 1, + aux_sym_cell_path_repeat1, + STATE(5978), 1, + sym_path, + STATE(7028), 1, + sym_cell_path, + ACTIONS(1829), 2, + anon_sym_RBRACE, + anon_sym__, + [207145] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5143), 1, + ACTIONS(8841), 1, + anon_sym_DASH_DASH, + ACTIONS(8843), 1, anon_sym_DASH, - STATE(5772), 1, + ACTIONS(8855), 1, + aux_sym_ctrl_match_token1, + STATE(5522), 1, sym_comment, - ACTIONS(5141), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + STATE(6464), 1, + sym_val_record, + STATE(7296), 1, + sym__flag, + STATE(5900), 2, + sym_short_flag, + sym_long_flag, + [207171] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6078), 1, + aux_sym_ctrl_match_token1, + ACTIONS(8841), 1, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - [211024] = 4, + ACTIONS(8843), 1, + anon_sym_DASH, + STATE(5523), 1, + sym_comment, + STATE(6328), 1, + sym_block, + STATE(7404), 1, + sym__flag, + STATE(5900), 2, + sym_short_flag, + sym_long_flag, + [207197] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5773), 1, + STATE(5524), 1, sym_comment, - ACTIONS(1521), 3, - anon_sym_DOLLAR, + ACTIONS(1517), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1519), 5, + anon_sym_in, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1519), 5, - sym_identifier, - anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token2, - [211043] = 4, + [207215] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(986), 1, + ACTIONS(8837), 1, + anon_sym_DASH_DASH, + ACTIONS(8839), 1, anon_sym_DASH, - STATE(5774), 1, - sym_comment, - ACTIONS(988), 7, - anon_sym_EQ, + ACTIONS(8857), 1, sym_identifier, - anon_sym_COLON, + STATE(5525), 1, + sym_comment, + STATE(5539), 1, + aux_sym_ctrl_do_repeat1, + STATE(5943), 1, + sym__flag, + STATE(5900), 2, + sym_short_flag, + sym_long_flag, + [207241] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8859), 1, + sym__newline, + ACTIONS(8862), 1, + sym__space, + STATE(5526), 2, + sym_comment, + aux_sym_ctrl_do_parenthesized_repeat2, + ACTIONS(3559), 4, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DOT, - sym__table_head_separator, - [211062] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(990), 1, anon_sym_DASH, - STATE(5775), 1, + aux_sym_ctrl_match_token1, + [207261] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(5527), 1, sym_comment, - ACTIONS(992), 7, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_DOLLAR, + ACTIONS(2293), 3, anon_sym_DASH_DASH, - anon_sym_DOT, - sym__table_head_separator, - [211081] = 5, + anon_sym_DASH, + anon_sym_as, + ACTIONS(2297), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [207281] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9157), 1, - aux_sym__immediate_decimal_token2, - STATE(5776), 1, + ACTIONS(1837), 1, + sym__entry_separator, + ACTIONS(8771), 1, + anon_sym_DOT, + STATE(5528), 1, sym_comment, - ACTIONS(1648), 3, + STATE(5541), 1, + aux_sym_cell_path_repeat1, + STATE(5978), 1, + sym_path, + STATE(7121), 1, + sym_cell_path, + ACTIONS(1835), 2, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1650), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [211102] = 4, + anon_sym__, + [207307] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5777), 1, + STATE(5529), 1, sym_comment, - ACTIONS(1721), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(2261), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + ACTIONS(2259), 4, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_as, + aux_sym_unquoted_token4, + [207325] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1587), 1, + aux_sym_ctrl_match_token1, + ACTIONS(6385), 1, + sym_filesize_unit, + ACTIONS(6387), 1, + sym_duration_unit, + ACTIONS(8379), 1, + aux_sym_unquoted_token2, + ACTIONS(8865), 1, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1723), 4, - anon_sym_LPAREN2, + STATE(5530), 1, + sym_comment, + ACTIONS(8867), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [211121] = 5, + [207351] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6065), 1, + aux_sym_ctrl_match_token1, + ACTIONS(8841), 1, + anon_sym_DASH_DASH, + ACTIONS(8843), 1, + anon_sym_DASH, + STATE(5531), 1, + sym_comment, + STATE(7093), 1, + sym_block, + STATE(7359), 1, + sym__flag, + STATE(5900), 2, + sym_short_flag, + sym_long_flag, + [207377] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6065), 1, + aux_sym_ctrl_match_token1, + ACTIONS(8841), 1, + anon_sym_DASH_DASH, + ACTIONS(8843), 1, + anon_sym_DASH, + STATE(5532), 1, + sym_comment, + STATE(7094), 1, + sym_block, + STATE(7364), 1, + sym__flag, + STATE(5900), 2, + sym_short_flag, + sym_long_flag, + [207403] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9159), 1, + ACTIONS(8779), 1, aux_sym__immediate_decimal_token2, - STATE(5778), 1, + STATE(5533), 1, sym_comment, - ACTIONS(1648), 2, + ACTIONS(1643), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1650), 5, + ACTIONS(1645), 4, anon_sym_PIPE, - anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [211142] = 4, + [207423] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5779), 1, + STATE(5534), 1, sym_comment, - ACTIONS(978), 3, + ACTIONS(2135), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(976), 5, + ACTIONS(2133), 4, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_QMARK2, + anon_sym__, anon_sym_DOT_DOT2, + [207441] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1841), 1, + sym__entry_separator, + ACTIONS(8771), 1, anon_sym_DOT, - [211161] = 6, + STATE(5535), 1, + sym_comment, + STATE(5541), 1, + aux_sym_cell_path_repeat1, + STATE(5978), 1, + sym_path, + STATE(7227), 1, + sym_cell_path, + ACTIONS(1839), 2, + anon_sym_RBRACE, + anon_sym__, + [207467] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9161), 1, - anon_sym_EQ2, - ACTIONS(9163), 1, - sym_short_flag_identifier, - STATE(5780), 1, + STATE(5536), 1, + sym_comment, + ACTIONS(1705), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1707), 5, + sym__newline, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [207485] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1845), 1, + sym__entry_separator, + ACTIONS(8771), 1, + anon_sym_DOT, + STATE(2866), 1, + sym_cell_path, + STATE(5537), 1, sym_comment, - ACTIONS(4942), 3, + STATE(5541), 1, + aux_sym_cell_path_repeat1, + STATE(5978), 1, + sym_path, + ACTIONS(1843), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [207511] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6065), 1, + aux_sym_ctrl_match_token1, + ACTIONS(8841), 1, anon_sym_DASH_DASH, + ACTIONS(8843), 1, anon_sym_DASH, - anon_sym_as, - ACTIONS(4944), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [211184] = 8, + STATE(5538), 1, + sym_comment, + STATE(7099), 1, + sym_block, + STATE(7367), 1, + sym__flag, + STATE(5900), 2, + sym_short_flag, + sym_long_flag, + [207537] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1762), 1, + ACTIONS(8837), 1, + anon_sym_DASH_DASH, + ACTIONS(8839), 1, anon_sym_DASH, - ACTIONS(8853), 1, + ACTIONS(8869), 1, + sym_identifier, + STATE(5539), 1, + sym_comment, + STATE(5605), 1, + aux_sym_ctrl_do_repeat1, + STATE(5943), 1, + sym__flag, + STATE(5900), 2, + sym_short_flag, + sym_long_flag, + [207563] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1849), 1, + sym__entry_separator, + ACTIONS(8771), 1, anon_sym_DOT, - STATE(5382), 1, + STATE(2869), 1, sym_cell_path, - STATE(5525), 1, + STATE(5540), 1, + sym_comment, + STATE(5541), 1, aux_sym_cell_path_repeat1, - STATE(5711), 1, + STATE(5978), 1, sym_path, - STATE(5781), 1, + ACTIONS(1847), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [207589] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1019), 1, + sym__entry_separator, + ACTIONS(8771), 1, + anon_sym_DOT, + STATE(5541), 1, sym_comment, - ACTIONS(1764), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [211211] = 9, - ACTIONS(247), 1, + STATE(5551), 1, + aux_sym_cell_path_repeat1, + STATE(5978), 1, + sym_path, + ACTIONS(1017), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym__, + [207613] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4286), 1, - anon_sym_DQUOTE, - ACTIONS(9135), 1, - sym_identifier, - ACTIONS(9165), 1, - anon_sym_GT, - STATE(4863), 1, - sym__str_double_quotes, - STATE(5782), 1, + ACTIONS(1853), 1, + sym__entry_separator, + ACTIONS(8771), 1, + anon_sym_DOT, + STATE(2874), 1, + sym_cell_path, + STATE(5541), 1, + aux_sym_cell_path_repeat1, + STATE(5542), 1, sym_comment, - STATE(5834), 1, - aux_sym_collection_type_repeat1, - STATE(5882), 1, - sym_val_string, - ACTIONS(4288), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [211240] = 5, + STATE(5978), 1, + sym_path, + ACTIONS(1851), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [207639] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1525), 1, - anon_sym_DASH, - ACTIONS(7059), 1, - aux_sym_unquoted_token2, - STATE(5783), 1, + ACTIONS(3213), 1, + aux_sym_record_entry_token1, + ACTIONS(8871), 1, + anon_sym_alias, + ACTIONS(8873), 1, + anon_sym_const, + ACTIONS(8875), 1, + anon_sym_def, + ACTIONS(8877), 1, + anon_sym_extern, + ACTIONS(8879), 1, + anon_sym_module, + ACTIONS(8881), 1, + anon_sym_use, + STATE(5543), 1, sym_comment, - ACTIONS(1537), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + [207667] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1857), 1, + sym__entry_separator, + ACTIONS(8771), 1, + anon_sym_DOT, + STATE(2906), 1, + sym_cell_path, + STATE(5541), 1, + aux_sym_cell_path_repeat1, + STATE(5544), 1, + sym_comment, + STATE(5978), 1, + sym_path, + ACTIONS(1855), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_as, - [211261] = 4, - ACTIONS(247), 1, + [207693] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5784), 1, + ACTIONS(1845), 1, + sym__entry_separator, + ACTIONS(8771), 1, + anon_sym_DOT, + STATE(5541), 1, + aux_sym_cell_path_repeat1, + STATE(5545), 1, sym_comment, - ACTIONS(1587), 3, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1585), 5, - sym_identifier, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [211280] = 7, + STATE(5978), 1, + sym_path, + STATE(6683), 1, + sym_cell_path, + ACTIONS(1843), 2, + anon_sym_RBRACE, + anon_sym__, + [207719] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1849), 1, + sym__entry_separator, + ACTIONS(8771), 1, + anon_sym_DOT, + STATE(5541), 1, + aux_sym_cell_path_repeat1, + STATE(5546), 1, + sym_comment, + STATE(5978), 1, + sym_path, + STATE(6690), 1, + sym_cell_path, + ACTIONS(1847), 2, + anon_sym_RBRACE, + anon_sym__, + [207745] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9167), 1, - anon_sym_DASH_DASH, - ACTIONS(9170), 1, + ACTIONS(4906), 1, anon_sym_DASH, - STATE(6260), 1, - sym__flag, - ACTIONS(8757), 2, - anon_sym_DOLLAR, - aux_sym_ctrl_match_token1, - STATE(5785), 2, + ACTIONS(8883), 1, + anon_sym_EQ2, + STATE(5547), 1, sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(6245), 2, - sym_short_flag, - sym_long_flag, - [211305] = 7, + ACTIONS(4904), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [207765] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9173), 1, + ACTIONS(8837), 1, anon_sym_DASH_DASH, - ACTIONS(9176), 1, + ACTIONS(8839), 1, anon_sym_DASH, - STATE(6260), 1, - sym__flag, - ACTIONS(8757), 2, + ACTIONS(8885), 1, sym_identifier, - anon_sym_DOLLAR, - STATE(5786), 2, - sym_comment, + STATE(5502), 1, aux_sym_ctrl_do_repeat1, - STATE(6245), 2, + STATE(5548), 1, + sym_comment, + STATE(5943), 1, + sym__flag, + STATE(5900), 2, sym_short_flag, sym_long_flag, - [211330] = 5, + [207791] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1853), 1, + sym__entry_separator, + ACTIONS(8771), 1, + anon_sym_DOT, + STATE(5541), 1, + aux_sym_cell_path_repeat1, + STATE(5549), 1, + sym_comment, + STATE(5978), 1, + sym_path, + STATE(6711), 1, + sym_cell_path, + ACTIONS(1851), 2, + anon_sym_RBRACE, + anon_sym__, + [207817] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9179), 1, + ACTIONS(8887), 1, aux_sym__immediate_decimal_token2, - STATE(5787), 1, + STATE(5550), 1, sym_comment, - ACTIONS(1519), 2, + ACTIONS(1705), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1521), 5, - anon_sym_in, + ACTIONS(1707), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [211351] = 8, + [207837] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1023), 1, + sym__entry_separator, + ACTIONS(8889), 1, + anon_sym_DOT, + STATE(5978), 1, + sym_path, + STATE(5551), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(1021), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym__, + [207859] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1861), 1, + sym__entry_separator, + ACTIONS(8771), 1, + anon_sym_DOT, + STATE(2867), 1, + sym_cell_path, + STATE(5541), 1, + aux_sym_cell_path_repeat1, + STATE(5552), 1, + sym_comment, + STATE(5978), 1, + sym_path, + ACTIONS(1859), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [207885] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1839), 1, - anon_sym_DASH, - ACTIONS(8853), 1, + ACTIONS(8743), 1, anon_sym_DOT, - STATE(5301), 1, + STATE(2590), 1, + sym_path, + STATE(5553), 1, + sym_comment, + STATE(5588), 1, + aux_sym_cell_path_repeat1, + STATE(7288), 1, sym_cell_path, - STATE(5525), 1, + ACTIONS(5786), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [207909] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1865), 1, + sym__entry_separator, + ACTIONS(8771), 1, + anon_sym_DOT, + STATE(2881), 1, + sym_cell_path, + STATE(5541), 1, aux_sym_cell_path_repeat1, - STATE(5711), 1, + STATE(5554), 1, + sym_comment, + STATE(5978), 1, sym_path, - STATE(5788), 1, + ACTIONS(1863), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [207935] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1869), 1, + sym__entry_separator, + ACTIONS(8771), 1, + anon_sym_DOT, + STATE(2886), 1, + sym_cell_path, + STATE(5541), 1, + aux_sym_cell_path_repeat1, + STATE(5555), 1, sym_comment, - ACTIONS(1841), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [211378] = 9, - ACTIONS(247), 1, + STATE(5978), 1, + sym_path, + ACTIONS(1867), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [207961] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4286), 1, - anon_sym_DQUOTE, - ACTIONS(9135), 1, - sym_identifier, - ACTIONS(9181), 1, - anon_sym_GT, - STATE(4863), 1, - sym__str_double_quotes, - STATE(5710), 1, - aux_sym_collection_type_repeat1, - STATE(5789), 1, + ACTIONS(1873), 1, + sym__entry_separator, + ACTIONS(8771), 1, + anon_sym_DOT, + STATE(2927), 1, + sym_cell_path, + STATE(5541), 1, + aux_sym_cell_path_repeat1, + STATE(5556), 1, sym_comment, - STATE(5882), 1, - sym_val_string, - ACTIONS(4288), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [211407] = 5, + STATE(5978), 1, + sym_path, + ACTIONS(1871), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [207987] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2083), 1, - aux_sym_unquoted_token4, - STATE(5790), 1, + ACTIONS(1877), 1, + sym__entry_separator, + ACTIONS(8771), 1, + anon_sym_DOT, + STATE(2897), 1, + sym_cell_path, + STATE(5541), 1, + aux_sym_cell_path_repeat1, + STATE(5557), 1, sym_comment, - ACTIONS(1006), 3, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_as, - ACTIONS(1008), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + STATE(5978), 1, + sym_path, + ACTIONS(1875), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - [211428] = 6, - ACTIONS(247), 1, + [208013] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9183), 1, - sym_long_flag_identifier, - ACTIONS(9185), 1, - anon_sym_EQ2, - STATE(5791), 1, + ACTIONS(1971), 1, + sym__entry_separator, + ACTIONS(8771), 1, + anon_sym_DOT, + STATE(2916), 1, + sym_cell_path, + STATE(5541), 1, + aux_sym_cell_path_repeat1, + STATE(5558), 1, + sym_comment, + STATE(5978), 1, + sym_path, + ACTIONS(1969), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [208039] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8892), 1, + anon_sym_DOT, + STATE(5559), 1, + sym_comment, + STATE(5815), 1, + aux_sym_cell_path_repeat1, + STATE(6548), 1, + sym_path, + STATE(7007), 1, + sym_cell_path, + ACTIONS(1879), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [208063] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + STATE(5560), 1, sym_comment, - ACTIONS(4950), 2, + ACTIONS(2243), 3, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_as, - ACTIONS(4952), 4, + ACTIONS(2247), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - [211451] = 8, - ACTIONS(247), 1, + [208083] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1770), 1, - anon_sym_DASH, - ACTIONS(8853), 1, + ACTIONS(1892), 1, + sym__entry_separator, + ACTIONS(8771), 1, anon_sym_DOT, - STATE(5210), 1, + STATE(2878), 1, sym_cell_path, - STATE(5525), 1, + STATE(5541), 1, aux_sym_cell_path_repeat1, - STATE(5711), 1, + STATE(5561), 1, + sym_comment, + STATE(5978), 1, sym_path, - STATE(5792), 1, + ACTIONS(1890), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [208109] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1896), 1, + sym__entry_separator, + ACTIONS(8771), 1, + anon_sym_DOT, + STATE(2919), 1, + sym_cell_path, + STATE(5541), 1, + aux_sym_cell_path_repeat1, + STATE(5562), 1, sym_comment, - ACTIONS(1772), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [211478] = 9, - ACTIONS(247), 1, + STATE(5978), 1, + sym_path, + ACTIONS(1894), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [208135] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1537), 1, - anon_sym_DOLLAR, - ACTIONS(4694), 1, - anon_sym_DOT_DOT2, - ACTIONS(8797), 1, - aux_sym_unquoted_token2, - ACTIONS(9187), 1, - sym_filesize_unit, - ACTIONS(9189), 1, - sym_duration_unit, - STATE(5793), 1, + ACTIONS(1939), 1, + sym__entry_separator, + ACTIONS(8771), 1, + anon_sym_DOT, + STATE(2921), 1, + sym_cell_path, + STATE(5541), 1, + aux_sym_cell_path_repeat1, + STATE(5563), 1, sym_comment, - ACTIONS(4696), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [211507] = 4, - ACTIONS(247), 1, + STATE(5978), 1, + sym_path, + ACTIONS(1937), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [208161] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5160), 1, - anon_sym_DASH, - STATE(5794), 1, + ACTIONS(1857), 1, + sym__entry_separator, + ACTIONS(8771), 1, + anon_sym_DOT, + STATE(5541), 1, + aux_sym_cell_path_repeat1, + STATE(5564), 1, sym_comment, - ACTIONS(5158), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, + STATE(5978), 1, + sym_path, + STATE(6716), 1, + sym_cell_path, + ACTIONS(1855), 2, anon_sym_RBRACE, - anon_sym_as, - [211526] = 4, - ACTIONS(247), 1, + anon_sym__, + [208187] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5164), 1, - anon_sym_DASH, - STATE(5795), 1, + ACTIONS(1947), 1, + sym__entry_separator, + ACTIONS(8771), 1, + anon_sym_DOT, + STATE(2882), 1, + sym_cell_path, + STATE(5541), 1, + aux_sym_cell_path_repeat1, + STATE(5565), 1, sym_comment, - ACTIONS(5162), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, + STATE(5978), 1, + sym_path, + ACTIONS(1945), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_as, - [211545] = 9, + [208213] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3215), 1, + aux_sym_record_entry_token1, + ACTIONS(8871), 1, + anon_sym_alias, + ACTIONS(8873), 1, + anon_sym_const, + ACTIONS(8875), 1, + anon_sym_def, + ACTIONS(8877), 1, + anon_sym_extern, + ACTIONS(8879), 1, + anon_sym_module, + ACTIONS(8881), 1, + anon_sym_use, + STATE(5566), 1, + sym_comment, + [208241] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7824), 1, - sym__newline, - ACTIONS(7826), 1, - sym__space, - ACTIONS(7828), 1, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + STATE(5567), 1, + sym_comment, + ACTIONS(2251), 3, anon_sym_DASH_DASH, - ACTIONS(7830), 1, anon_sym_DASH, - STATE(5796), 1, + anon_sym_as, + ACTIONS(2253), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [208261] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1861), 1, + sym__entry_separator, + ACTIONS(8771), 1, + anon_sym_DOT, + STATE(5541), 1, + aux_sym_cell_path_repeat1, + STATE(5568), 1, sym_comment, - STATE(5840), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7712), 1, - sym__flag, - STATE(4979), 2, - sym_short_flag, - sym_long_flag, - [211574] = 4, + STATE(5978), 1, + sym_path, + STATE(6816), 1, + sym_cell_path, + ACTIONS(1859), 2, + anon_sym_RBRACE, + anon_sym__, + [208287] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(5797), 1, + ACTIONS(6078), 1, + aux_sym_ctrl_match_token1, + ACTIONS(8841), 1, + anon_sym_DASH_DASH, + ACTIONS(8843), 1, + anon_sym_DASH, + STATE(5569), 1, sym_comment, - ACTIONS(1475), 3, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1473), 5, - sym_identifier, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [211593] = 8, - ACTIONS(247), 1, + STATE(6636), 1, + sym_block, + STATE(7458), 1, + sym__flag, + STATE(5900), 2, + sym_short_flag, + sym_long_flag, + [208313] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(945), 1, - anon_sym_DASH, - ACTIONS(8853), 1, + ACTIONS(1951), 1, + sym__entry_separator, + ACTIONS(8771), 1, anon_sym_DOT, - STATE(4906), 1, + STATE(2891), 1, sym_cell_path, - STATE(5525), 1, + STATE(5541), 1, aux_sym_cell_path_repeat1, - STATE(5711), 1, - sym_path, - STATE(5798), 1, + STATE(5570), 1, sym_comment, - ACTIONS(947), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [211620] = 8, - ACTIONS(247), 1, + STATE(5978), 1, + sym_path, + ACTIONS(1949), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [208339] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1847), 1, - anon_sym_DASH, - ACTIONS(8853), 1, + ACTIONS(1865), 1, + sym__entry_separator, + ACTIONS(8771), 1, anon_sym_DOT, - STATE(5327), 1, + STATE(5541), 1, + aux_sym_cell_path_repeat1, + STATE(5571), 1, + sym_comment, + STATE(5978), 1, + sym_path, + STATE(6821), 1, sym_cell_path, - STATE(5525), 1, + ACTIONS(1863), 2, + anon_sym_RBRACE, + anon_sym__, + [208365] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1869), 1, + sym__entry_separator, + ACTIONS(8771), 1, + anon_sym_DOT, + STATE(5541), 1, aux_sym_cell_path_repeat1, - STATE(5711), 1, + STATE(5572), 1, + sym_comment, + STATE(5978), 1, sym_path, - STATE(5799), 1, + STATE(6825), 1, + sym_cell_path, + ACTIONS(1867), 2, + anon_sym_RBRACE, + anon_sym__, + [208391] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5573), 1, sym_comment, - ACTIONS(1849), 3, + ACTIONS(8894), 7, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [211647] = 5, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [208407] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9191), 1, - aux_sym__immediate_decimal_token2, - STATE(5800), 1, - sym_comment, - ACTIONS(1648), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1650), 5, - sym__newline, + ACTIONS(6078), 1, aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [211668] = 4, + ACTIONS(8841), 1, + anon_sym_DASH_DASH, + ACTIONS(8843), 1, + anon_sym_DASH, + STATE(5574), 1, + sym_comment, + STATE(6316), 1, + sym_block, + STATE(7451), 1, + sym__flag, + STATE(5900), 2, + sym_short_flag, + sym_long_flag, + [208433] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5801), 1, + STATE(5575), 1, sym_comment, - ACTIONS(968), 3, + ACTIONS(1066), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(966), 5, + ACTIONS(1064), 4, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_QMARK2, + anon_sym__, anon_sym_DOT_DOT2, - anon_sym_DOT, - [211687] = 8, + [208451] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6577), 1, - sym_filesize_unit, - ACTIONS(6579), 1, - sym_duration_unit, - ACTIONS(6636), 1, + ACTIONS(1495), 1, aux_sym_unquoted_token2, - ACTIONS(9193), 1, + ACTIONS(8896), 1, anon_sym_DOT_DOT2, - STATE(5802), 1, + STATE(5576), 1, sym_comment, - ACTIONS(1537), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(9195), 2, + ACTIONS(8898), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [211714] = 4, + ACTIONS(1794), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [208473] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5803), 1, + STATE(5577), 1, sym_comment, - ACTIONS(1473), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1475), 5, - sym__space, + ACTIONS(1629), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [211733] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(5804), 1, - sym_comment, - ACTIONS(2089), 3, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_as, - ACTIONS(2093), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + sym__entry_separator, + ACTIONS(1625), 4, + anon_sym_RBRACK, anon_sym_RBRACE, - [211754] = 9, + anon_sym__, + anon_sym_DOT_DOT2, + [208491] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4286), 1, - anon_sym_DQUOTE, - ACTIONS(9135), 1, + STATE(5578), 1, + sym_comment, + ACTIONS(5077), 7, sym_identifier, - ACTIONS(9197), 1, + anon_sym_COMMA, anon_sym_GT, - STATE(4863), 1, - sym__str_double_quotes, - STATE(5709), 1, - aux_sym_collection_type_repeat1, - STATE(5805), 1, - sym_comment, - STATE(5882), 1, - sym_val_string, - ACTIONS(4288), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [211783] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5806), 1, - sym_comment, - ACTIONS(1481), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1483), 5, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [211802] = 5, - ACTIONS(3), 1, + aux_sym_record_entry_token1, + [208507] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - STATE(5807), 1, - sym_comment, - ACTIONS(2097), 3, + ACTIONS(6065), 1, + aux_sym_ctrl_match_token1, + ACTIONS(8841), 1, anon_sym_DASH_DASH, + ACTIONS(8843), 1, anon_sym_DASH, - anon_sym_as, - ACTIONS(2101), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [211823] = 5, + STATE(5579), 1, + sym_comment, + STATE(6788), 1, + sym_block, + STATE(7380), 1, + sym__flag, + STATE(5900), 2, + sym_short_flag, + sym_long_flag, + [208533] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - STATE(5808), 1, + STATE(5580), 1, sym_comment, - ACTIONS(2105), 3, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_as, - ACTIONS(2107), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2021), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(2019), 4, + anon_sym_RBRACK, anon_sym_RBRACE, - [211844] = 6, + anon_sym__, + anon_sym_DOT_DOT2, + [208551] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9201), 1, - anon_sym_COMMA, - ACTIONS(9203), 1, - anon_sym_AT, - STATE(5809), 1, - sym_comment, - STATE(6025), 1, - sym_param_cmd, - ACTIONS(9199), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [211867] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5810), 1, + STATE(5581), 1, sym_comment, - ACTIONS(1519), 3, - sym__newline, + ACTIONS(1631), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1521), 5, - sym__space, + ACTIONS(1633), 5, + sym__newline, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [211886] = 4, + [208569] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5811), 1, + STATE(5582), 1, sym_comment, - ACTIONS(1585), 3, - sym__newline, + ACTIONS(1643), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1587), 5, - sym__space, + aux_sym__unquoted_in_record_token2, + ACTIONS(1645), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [211905] = 8, - ACTIONS(247), 1, + sym__entry_separator, + [208587] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1871), 1, - anon_sym_DASH, - ACTIONS(8853), 1, + ACTIONS(1873), 1, + sym__entry_separator, + ACTIONS(8771), 1, anon_sym_DOT, - STATE(5202), 1, - sym_cell_path, - STATE(5525), 1, + STATE(5541), 1, aux_sym_cell_path_repeat1, - STATE(5711), 1, - sym_path, - STATE(5812), 1, + STATE(5583), 1, sym_comment, - ACTIONS(1873), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [211932] = 8, - ACTIONS(247), 1, + STATE(5978), 1, + sym_path, + STATE(6829), 1, + sym_cell_path, + ACTIONS(1871), 2, + anon_sym_RBRACE, + anon_sym__, + [208613] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1875), 1, - anon_sym_DASH, - ACTIONS(8853), 1, + ACTIONS(1877), 1, + sym__entry_separator, + ACTIONS(8771), 1, anon_sym_DOT, - STATE(5203), 1, - sym_cell_path, - STATE(5525), 1, + STATE(5541), 1, aux_sym_cell_path_repeat1, - STATE(5711), 1, - sym_path, - STATE(5813), 1, + STATE(5584), 1, sym_comment, - ACTIONS(1877), 3, - sym_identifier, - anon_sym_DOLLAR, + STATE(5978), 1, + sym_path, + STATE(6831), 1, + sym_cell_path, + ACTIONS(1875), 2, + anon_sym_RBRACE, + anon_sym__, + [208639] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6065), 1, + aux_sym_ctrl_match_token1, + ACTIONS(8841), 1, anon_sym_DASH_DASH, - [211959] = 6, + ACTIONS(8843), 1, + anon_sym_DASH, + STATE(5585), 1, + sym_comment, + STATE(6750), 1, + sym_block, + STATE(7298), 1, + sym__flag, + STATE(5900), 2, + sym_short_flag, + sym_long_flag, + [208665] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5586), 1, + sym_comment, + ACTIONS(2139), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(2137), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym__, + anon_sym_DOT_DOT2, + [208683] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9203), 1, - anon_sym_AT, - ACTIONS(9207), 1, - anon_sym_COMMA, - STATE(5814), 1, + ACTIONS(1495), 1, + aux_sym_unquoted_token2, + ACTIONS(8173), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8175), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8900), 1, + anon_sym_DOT, + STATE(5587), 1, sym_comment, - STATE(6031), 1, - sym_param_cmd, - ACTIONS(9205), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [211982] = 8, + STATE(6453), 1, + sym__immediate_decimal, + ACTIONS(8171), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [208709] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1879), 1, - anon_sym_DASH, - ACTIONS(8853), 1, + ACTIONS(8743), 1, anon_sym_DOT, - STATE(5211), 1, - sym_cell_path, - STATE(5525), 1, - aux_sym_cell_path_repeat1, - STATE(5711), 1, + STATE(2590), 1, sym_path, - STATE(5815), 1, + STATE(5588), 1, sym_comment, - ACTIONS(1881), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [212009] = 8, + STATE(5589), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1019), 4, + anon_sym_PIPE, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + [208731] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1883), 1, - anon_sym_DASH, - ACTIONS(8853), 1, + ACTIONS(8902), 1, anon_sym_DOT, - STATE(5212), 1, - sym_cell_path, - STATE(5525), 1, - aux_sym_cell_path_repeat1, - STATE(5711), 1, + STATE(2590), 1, sym_path, - STATE(5816), 1, + STATE(5589), 2, sym_comment, - ACTIONS(1885), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [212036] = 5, - ACTIONS(247), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1023), 4, + anon_sym_PIPE, + anon_sym_if, + aux_sym_ctrl_match_token1, + anon_sym_EQ_GT, + [208751] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5007), 1, - anon_sym_DASH, - ACTIONS(9209), 1, - anon_sym_EQ2, - STATE(5817), 1, + ACTIONS(1971), 1, + sym__entry_separator, + ACTIONS(8771), 1, + anon_sym_DOT, + STATE(5541), 1, + aux_sym_cell_path_repeat1, + STATE(5590), 1, sym_comment, - ACTIONS(5005), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + STATE(5978), 1, + sym_path, + STATE(6836), 1, + sym_cell_path, + ACTIONS(1969), 2, anon_sym_RBRACE, - anon_sym_as, - [212057] = 8, - ACTIONS(247), 1, + anon_sym__, + [208777] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1891), 1, - anon_sym_DASH, - ACTIONS(8853), 1, + STATE(5591), 1, + sym_comment, + ACTIONS(1631), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1633), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [208795] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1892), 1, + sym__entry_separator, + ACTIONS(8771), 1, anon_sym_DOT, - STATE(5216), 1, - sym_cell_path, - STATE(5525), 1, + STATE(5541), 1, aux_sym_cell_path_repeat1, - STATE(5711), 1, + STATE(5592), 1, + sym_comment, + STATE(5978), 1, sym_path, - STATE(5818), 1, + STATE(6846), 1, + sym_cell_path, + ACTIONS(1890), 2, + anon_sym_RBRACE, + anon_sym__, + [208821] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5593), 1, sym_comment, - ACTIONS(1893), 3, + ACTIONS(5112), 7, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [212084] = 8, - ACTIONS(247), 1, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + aux_sym_record_entry_token1, + [208837] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1895), 1, - anon_sym_DASH, - ACTIONS(8853), 1, + ACTIONS(1896), 1, + sym__entry_separator, + ACTIONS(8771), 1, anon_sym_DOT, - STATE(5221), 1, - sym_cell_path, - STATE(5525), 1, + STATE(5541), 1, aux_sym_cell_path_repeat1, - STATE(5711), 1, + STATE(5594), 1, + sym_comment, + STATE(5978), 1, sym_path, - STATE(5819), 1, + STATE(6850), 1, + sym_cell_path, + ACTIONS(1894), 2, + anon_sym_RBRACE, + anon_sym__, + [208863] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1495), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1786), 1, + anon_sym_RBRACK, + ACTIONS(1788), 1, + anon_sym_LPAREN2, + ACTIONS(1794), 1, + sym__entry_separator, + ACTIONS(8905), 1, + anon_sym_DOT_DOT2, + STATE(5595), 1, sym_comment, - ACTIONS(1897), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [212111] = 5, + ACTIONS(8907), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [208889] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5041), 1, - anon_sym_DASH, - ACTIONS(9211), 1, - anon_sym_EQ2, - STATE(5820), 1, + ACTIONS(1587), 1, + anon_sym_in, + ACTIONS(4433), 1, + anon_sym_DOT_DOT2, + ACTIONS(6790), 1, + aux_sym_unquoted_token2, + ACTIONS(8909), 1, + sym_filesize_unit, + ACTIONS(8911), 1, + sym_duration_unit, + STATE(5596), 1, sym_comment, - ACTIONS(5039), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [212132] = 4, + ACTIONS(4435), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [208915] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5168), 1, + ACTIONS(6065), 1, + aux_sym_ctrl_match_token1, + ACTIONS(8841), 1, + anon_sym_DASH_DASH, + ACTIONS(8843), 1, anon_sym_DASH, - STATE(5821), 1, + STATE(5597), 1, sym_comment, - ACTIONS(5166), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - [212151] = 4, + STATE(6804), 1, + sym_block, + STATE(7466), 1, + sym__flag, + STATE(5900), 2, + sym_short_flag, + sym_long_flag, + [208941] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5172), 1, + ACTIONS(8915), 1, anon_sym_DASH, - STATE(5822), 1, + STATE(5598), 1, sym_comment, - ACTIONS(5170), 7, + ACTIONS(8913), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, anon_sym_as, - [212170] = 8, + [208959] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1747), 1, - anon_sym_DASH, - ACTIONS(8853), 1, - anon_sym_DOT, - STATE(5233), 1, - sym_cell_path, - STATE(5525), 1, - aux_sym_cell_path_repeat1, - STATE(5711), 1, - sym_path, - STATE(5823), 1, - sym_comment, - ACTIONS(1749), 3, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(6065), 1, + aux_sym_ctrl_match_token1, + ACTIONS(8841), 1, anon_sym_DASH_DASH, - [212197] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1824), 1, + ACTIONS(8843), 1, anon_sym_DASH, - ACTIONS(8853), 1, - anon_sym_DOT, - STATE(5267), 1, - sym_cell_path, - STATE(5525), 1, - aux_sym_cell_path_repeat1, - STATE(5711), 1, - sym_path, - STATE(5824), 1, + STATE(5599), 1, sym_comment, - ACTIONS(1826), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [212224] = 8, + STATE(6900), 1, + sym_block, + STATE(7366), 1, + sym__flag, + STATE(5900), 2, + sym_short_flag, + sym_long_flag, + [208985] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1855), 1, + ACTIONS(1575), 1, anon_sym_DASH, - ACTIONS(8853), 1, - anon_sym_DOT, - STATE(5268), 1, - sym_cell_path, - STATE(5525), 1, - aux_sym_cell_path_repeat1, - STATE(5711), 1, - sym_path, - STATE(5825), 1, + ACTIONS(6844), 1, + aux_sym_unquoted_token2, + STATE(5600), 1, sym_comment, - ACTIONS(1857), 3, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(1587), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - [212251] = 8, + anon_sym_as, + [209005] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_DASH, - ACTIONS(8853), 1, + ACTIONS(8743), 1, anon_sym_DOT, - STATE(5269), 1, + STATE(2590), 1, + sym_path, + STATE(4119), 1, sym_cell_path, - STATE(5525), 1, + STATE(5588), 1, aux_sym_cell_path_repeat1, - STATE(5711), 1, - sym_path, - STATE(5826), 1, + STATE(5601), 1, sym_comment, - ACTIONS(1798), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [212278] = 8, + ACTIONS(1013), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [209029] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1808), 1, - anon_sym_DASH, - ACTIONS(8853), 1, + ACTIONS(1017), 1, + anon_sym_DOT_DOT2, + ACTIONS(8749), 1, anon_sym_DOT, - STATE(5279), 1, - sym_cell_path, - STATE(5525), 1, - aux_sym_cell_path_repeat1, - STATE(5711), 1, + STATE(1206), 1, sym_path, - STATE(5827), 1, + STATE(5602), 1, sym_comment, - ACTIONS(1810), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [212305] = 8, + STATE(5603), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1019), 3, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [209053] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1820), 1, - anon_sym_DASH, - ACTIONS(8853), 1, + ACTIONS(1021), 1, + anon_sym_DOT_DOT2, + ACTIONS(8917), 1, anon_sym_DOT, - STATE(5280), 1, - sym_cell_path, - STATE(5525), 1, - aux_sym_cell_path_repeat1, - STATE(5711), 1, + STATE(1206), 1, sym_path, - STATE(5828), 1, + STATE(5603), 2, sym_comment, - ACTIONS(1822), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [212332] = 8, - ACTIONS(247), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1023), 3, + aux_sym_ctrl_match_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [209075] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1741), 1, - anon_sym_DASH, - ACTIONS(8853), 1, + ACTIONS(1915), 1, + sym__entry_separator, + ACTIONS(8771), 1, anon_sym_DOT, - STATE(5284), 1, + STATE(498), 1, sym_cell_path, - STATE(5525), 1, + STATE(5541), 1, aux_sym_cell_path_repeat1, - STATE(5711), 1, - sym_path, - STATE(5829), 1, - sym_comment, - ACTIONS(1745), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [212359] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5830), 1, + STATE(5604), 1, sym_comment, - ACTIONS(1589), 4, + STATE(5978), 1, + sym_path, + ACTIONS(1913), 2, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1591), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [212378] = 4, - ACTIONS(3), 1, + [209101] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5831), 1, - sym_comment, - ACTIONS(2131), 4, + ACTIONS(8299), 1, + sym_identifier, + ACTIONS(8920), 1, anon_sym_DASH_DASH, + ACTIONS(8923), 1, anon_sym_DASH, - anon_sym_as, - aux_sym_unquoted_token4, - ACTIONS(2133), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [212397] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9213), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9215), 1, - aux_sym__immediate_decimal_token2, - STATE(5832), 1, + STATE(5943), 1, + sym__flag, + STATE(5605), 2, sym_comment, - ACTIONS(1569), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1571), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [212420] = 8, + aux_sym_ctrl_do_repeat1, + STATE(5900), 2, + sym_short_flag, + sym_long_flag, + [209125] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1899), 1, - anon_sym_DASH, - ACTIONS(8853), 1, - anon_sym_DOT, - STATE(5286), 1, - sym_cell_path, - STATE(5525), 1, - aux_sym_cell_path_repeat1, - STATE(5711), 1, - sym_path, - STATE(5833), 1, + STATE(5606), 1, sym_comment, - ACTIONS(1901), 3, + ACTIONS(5118), 7, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [212447] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9217), 1, - sym_identifier, - ACTIONS(9220), 1, + anon_sym_COMMA, anon_sym_GT, - ACTIONS(9222), 1, anon_sym_DQUOTE, - STATE(4863), 1, - sym__str_double_quotes, - STATE(5882), 1, - sym_val_string, - ACTIONS(9225), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(5834), 2, - sym_comment, - aux_sym_collection_type_repeat1, - [212474] = 8, + aux_sym_record_entry_token1, + [209141] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1831), 1, + ACTIONS(6065), 1, + aux_sym_ctrl_match_token1, + ACTIONS(8841), 1, + anon_sym_DASH_DASH, + ACTIONS(8843), 1, anon_sym_DASH, - ACTIONS(8853), 1, + STATE(5607), 1, + sym_comment, + STATE(6921), 1, + sym_block, + STATE(7401), 1, + sym__flag, + STATE(5900), 2, + sym_short_flag, + sym_long_flag, + [209167] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1919), 1, + sym__entry_separator, + ACTIONS(8771), 1, anon_sym_DOT, - STATE(5292), 1, + STATE(499), 1, sym_cell_path, - STATE(5525), 1, + STATE(5541), 1, aux_sym_cell_path_repeat1, - STATE(5711), 1, - sym_path, - STATE(5835), 1, + STATE(5608), 1, sym_comment, - ACTIONS(1833), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [212501] = 8, + STATE(5978), 1, + sym_path, + ACTIONS(1917), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [209193] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1835), 1, + ACTIONS(6078), 1, + aux_sym_ctrl_match_token1, + ACTIONS(8841), 1, + anon_sym_DASH_DASH, + ACTIONS(8843), 1, anon_sym_DASH, - ACTIONS(8853), 1, - anon_sym_DOT, - STATE(5293), 1, - sym_cell_path, - STATE(5525), 1, - aux_sym_cell_path_repeat1, - STATE(5711), 1, - sym_path, - STATE(5836), 1, + STATE(5609), 1, sym_comment, - ACTIONS(1837), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [212528] = 9, + STATE(6200), 1, + sym_block, + STATE(7435), 1, + sym__flag, + STATE(5900), 2, + sym_short_flag, + sym_long_flag, + [209219] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4286), 1, - anon_sym_DQUOTE, - ACTIONS(9135), 1, - sym_identifier, - ACTIONS(9228), 1, - anon_sym_GT, - STATE(4863), 1, - sym__str_double_quotes, - STATE(5782), 1, - aux_sym_collection_type_repeat1, - STATE(5837), 1, + ACTIONS(6078), 1, + aux_sym_ctrl_match_token1, + ACTIONS(8841), 1, + anon_sym_DASH_DASH, + ACTIONS(8843), 1, + anon_sym_DASH, + STATE(5610), 1, sym_comment, - STATE(5882), 1, - sym_val_string, - ACTIONS(4288), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [212557] = 5, - ACTIONS(3), 1, + STATE(6202), 1, + sym_block, + STATE(7439), 1, + sym__flag, + STATE(5900), 2, + sym_short_flag, + sym_long_flag, + [209245] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2083), 1, - aux_sym_unquoted_token4, - STATE(5838), 1, - sym_comment, - ACTIONS(1006), 3, + ACTIONS(6078), 1, + aux_sym_ctrl_match_token1, + ACTIONS(8841), 1, anon_sym_DASH_DASH, + ACTIONS(8843), 1, anon_sym_DASH, - anon_sym_as, - ACTIONS(1008), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [212577] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1861), 1, - sym__entry_separator, - ACTIONS(9230), 1, - anon_sym_DOT, - STATE(489), 1, - sym_cell_path, - STATE(5839), 1, + STATE(5611), 1, sym_comment, - STATE(6174), 1, - aux_sym_cell_path_repeat1, - STATE(6792), 1, - sym_path, - ACTIONS(1859), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [212603] = 5, - ACTIONS(3), 1, + STATE(6212), 1, + sym_block, + STATE(7452), 1, + sym__flag, + STATE(5900), 2, + sym_short_flag, + sym_long_flag, + [209271] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9232), 1, - sym__newline, - ACTIONS(9235), 1, - sym__space, - STATE(5840), 2, + ACTIONS(4916), 1, + anon_sym_DASH, + ACTIONS(8926), 1, + anon_sym_EQ2, + STATE(5612), 1, sym_comment, - aux_sym_ctrl_do_parenthesized_repeat2, - ACTIONS(3933), 4, - anon_sym_DOLLAR, + ACTIONS(4914), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - anon_sym_DASH, - aux_sym_ctrl_match_token1, - [212623] = 8, + anon_sym_as, + [209291] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1865), 1, + ACTIONS(1833), 1, sym__entry_separator, - ACTIONS(9230), 1, + ACTIONS(8771), 1, anon_sym_DOT, - STATE(491), 1, + STATE(2925), 1, sym_cell_path, - STATE(5841), 1, - sym_comment, - STATE(6174), 1, + STATE(5541), 1, aux_sym_cell_path_repeat1, - STATE(6792), 1, + STATE(5613), 1, + sym_comment, + STATE(5978), 1, sym_path, - ACTIONS(1863), 2, + ACTIONS(1829), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [212649] = 8, + [209317] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1537), 1, - aux_sym_ctrl_match_token1, - ACTIONS(4694), 1, + STATE(5614), 1, + sym_comment, + ACTIONS(1643), 2, anon_sym_DOT_DOT2, - ACTIONS(6608), 1, - sym_filesize_unit, - ACTIONS(6610), 1, - sym_duration_unit, - ACTIONS(6636), 1, aux_sym_unquoted_token2, - STATE(5842), 1, - sym_comment, - ACTIONS(4696), 2, + ACTIONS(1645), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [212675] = 8, + [209335] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1495), 1, + aux_sym_unquoted_token2, + ACTIONS(8173), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8175), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8928), 1, + anon_sym_DOT, + STATE(5615), 1, + sym_comment, + STATE(6085), 1, + sym__immediate_decimal, + ACTIONS(8171), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [209361] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1709), 1, + STATE(5616), 1, + sym_comment, + ACTIONS(1705), 3, anon_sym_RBRACE, - ACTIONS(1711), 1, - anon_sym_LPAREN2, - ACTIONS(1717), 1, - sym__entry_separator, - ACTIONS(1719), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(9238), 1, anon_sym_DOT_DOT2, - STATE(5843), 1, - sym_comment, - ACTIONS(9240), 2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1707), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [212701] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6298), 1, - aux_sym_ctrl_match_token1, - ACTIONS(9242), 1, - anon_sym_DASH_DASH, - ACTIONS(9244), 1, - anon_sym_DASH, - STATE(5844), 1, - sym_comment, - STATE(6728), 1, - sym_block, - STATE(7559), 1, - sym__flag, - STATE(6245), 2, - sym_short_flag, - sym_long_flag, - [212727] = 4, + sym__entry_separator, + [209379] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5845), 1, + STATE(5617), 1, sym_comment, - ACTIONS(996), 3, + ACTIONS(1755), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1757), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(994), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [212745] = 4, + [209397] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5846), 1, + STATE(5618), 1, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1565), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1591), 5, - sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, + ACTIONS(1567), 5, + anon_sym_in, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [212763] = 8, - ACTIONS(247), 1, + sym_filesize_unit, + sym_duration_unit, + [209415] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9246), 1, - sym_identifier, - ACTIONS(9248), 1, - anon_sym_DASH_DASH, - ACTIONS(9250), 1, - anon_sym_DASH, - STATE(5847), 1, + ACTIONS(1939), 1, + sym__entry_separator, + ACTIONS(8771), 1, + anon_sym_DOT, + STATE(5541), 1, + aux_sym_cell_path_repeat1, + STATE(5619), 1, sym_comment, - STATE(5916), 1, - aux_sym_ctrl_do_repeat1, - STATE(6260), 1, - sym__flag, - STATE(6245), 2, - sym_short_flag, - sym_long_flag, - [212789] = 5, + STATE(5978), 1, + sym_path, + STATE(6851), 1, + sym_cell_path, + ACTIONS(1937), 2, + anon_sym_RBRACE, + anon_sym__, + [209441] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1947), 1, + sym__entry_separator, + ACTIONS(8771), 1, + anon_sym_DOT, + STATE(5541), 1, + aux_sym_cell_path_repeat1, + STATE(5620), 1, + sym_comment, + STATE(5978), 1, + sym_path, + STATE(6856), 1, + sym_cell_path, + ACTIONS(1945), 2, + anon_sym_RBRACE, + anon_sym__, + [209467] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5007), 1, - anon_sym_DASH, - ACTIONS(9252), 1, - anon_sym_EQ2, - STATE(5848), 1, + ACTIONS(8932), 1, + anon_sym_COLON, + ACTIONS(8934), 1, + anon_sym_COMMA, + STATE(5621), 1, sym_comment, - ACTIONS(5005), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [212809] = 4, + ACTIONS(8930), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [209487] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(5849), 1, - sym_comment, - ACTIONS(988), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(1951), 1, sym__entry_separator, - ACTIONS(986), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, + ACTIONS(8771), 1, anon_sym_DOT, - [212827] = 8, + STATE(5541), 1, + aux_sym_cell_path_repeat1, + STATE(5622), 1, + sym_comment, + STATE(5978), 1, + sym_path, + STATE(6869), 1, + sym_cell_path, + ACTIONS(1949), 2, + anon_sym_RBRACE, + anon_sym__, + [209513] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6298), 1, - aux_sym_ctrl_match_token1, - ACTIONS(9242), 1, - anon_sym_DASH_DASH, - ACTIONS(9244), 1, - anon_sym_DASH, - STATE(5850), 1, + ACTIONS(8938), 1, + anon_sym_COLON, + ACTIONS(8940), 1, + anon_sym_COMMA, + STATE(5623), 1, sym_comment, - STATE(6416), 1, - sym_block, - STATE(7551), 1, - sym__flag, - STATE(6245), 2, - sym_short_flag, - sym_long_flag, - [212853] = 4, + ACTIONS(8936), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [209533] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(5851), 1, - sym_comment, - ACTIONS(992), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(1923), 1, sym__entry_separator, - ACTIONS(990), 4, + ACTIONS(8771), 1, + anon_sym_DOT, + STATE(471), 1, + sym_cell_path, + STATE(5541), 1, + aux_sym_cell_path_repeat1, + STATE(5624), 1, + sym_comment, + STATE(5978), 1, + sym_path, + ACTIONS(1921), 2, anon_sym_RBRACK, anon_sym_RBRACE, + [209559] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8763), 1, + aux_sym__immediate_decimal_token2, + STATE(5625), 1, + sym_comment, + ACTIONS(1643), 3, + anon_sym_RBRACE, + anon_sym__, anon_sym_DOT_DOT2, - anon_sym_DOT, - [212871] = 8, + ACTIONS(1645), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [209579] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1849), 1, + ACTIONS(1495), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1786), 1, + anon_sym_RBRACE, + ACTIONS(1788), 1, + anon_sym_LPAREN2, + ACTIONS(1794), 1, sym__entry_separator, - ACTIONS(9230), 1, - anon_sym_DOT, - STATE(3161), 1, - sym_cell_path, - STATE(5852), 1, + ACTIONS(8942), 1, + anon_sym_DOT_DOT2, + STATE(5626), 1, sym_comment, - STATE(6174), 1, - aux_sym_cell_path_repeat1, - STATE(6792), 1, - sym_path, - ACTIONS(1847), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [212897] = 8, + ACTIONS(8944), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [209605] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1709), 1, + ACTIONS(1796), 1, anon_sym_RBRACK, - ACTIONS(1711), 1, + ACTIONS(1798), 1, anon_sym_LPAREN2, - ACTIONS(1717), 1, + ACTIONS(1804), 1, sym__entry_separator, - ACTIONS(1719), 1, + ACTIONS(1806), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(9254), 1, + ACTIONS(8946), 1, anon_sym_DOT_DOT2, - STATE(5853), 1, + STATE(5627), 1, sym_comment, - ACTIONS(9256), 2, + ACTIONS(8948), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [209631] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1575), 1, + anon_sym_RBRACE, + ACTIONS(1587), 1, + sym__entry_separator, + ACTIONS(8726), 1, + sym_filesize_unit, + ACTIONS(8728), 1, + sym_duration_unit, + ACTIONS(8950), 1, + anon_sym_DOT_DOT2, + STATE(5628), 1, + sym_comment, + ACTIONS(8952), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [212923] = 8, + [209657] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6298), 1, - aux_sym_ctrl_match_token1, - ACTIONS(9242), 1, - anon_sym_DASH_DASH, - ACTIONS(9244), 1, - anon_sym_DASH, - STATE(5854), 1, + STATE(5629), 1, sym_comment, - STATE(6858), 1, - sym_block, - STATE(7553), 1, - sym__flag, - STATE(6245), 2, - sym_short_flag, - sym_long_flag, - [212949] = 8, - ACTIONS(3), 1, + ACTIONS(1631), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1633), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [209675] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1745), 1, - sym__entry_separator, - ACTIONS(9230), 1, + ACTIONS(8743), 1, anon_sym_DOT, - STATE(3086), 1, - sym_cell_path, - STATE(5855), 1, - sym_comment, - STATE(6174), 1, - aux_sym_cell_path_repeat1, - STATE(6792), 1, + STATE(2590), 1, sym_path, - ACTIONS(1741), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [212975] = 8, + STATE(5588), 1, + aux_sym_cell_path_repeat1, + STATE(5630), 1, + sym_comment, + STATE(7006), 1, + sym_cell_path, + ACTIONS(5731), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [209699] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1833), 1, - sym__entry_separator, - ACTIONS(9230), 1, + ACTIONS(8892), 1, anon_sym_DOT, - STATE(3093), 1, - sym_cell_path, - STATE(5856), 1, + STATE(5631), 1, sym_comment, - STATE(6174), 1, + STATE(5815), 1, aux_sym_cell_path_repeat1, - STATE(6792), 1, + STATE(6548), 1, sym_path, - ACTIONS(1831), 2, + STATE(6938), 1, + sym_cell_path, + ACTIONS(1965), 3, anon_sym_RBRACK, - anon_sym_RBRACE, - [213001] = 8, + sym__entry_separator, + sym__table_head_separator, + [209723] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6298), 1, - aux_sym_ctrl_match_token1, - ACTIONS(9242), 1, + ACTIONS(8841), 1, anon_sym_DASH_DASH, - ACTIONS(9244), 1, + ACTIONS(8843), 1, anon_sym_DASH, - STATE(5857), 1, + ACTIONS(8954), 1, + aux_sym_ctrl_match_token1, + STATE(5632), 1, sym_comment, - STATE(6860), 1, - sym_block, - STATE(7554), 1, + STATE(6898), 1, + sym_val_record, + STATE(7372), 1, sym__flag, - STATE(6245), 2, + STATE(5900), 2, sym_short_flag, sym_long_flag, - [213027] = 8, + [209749] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6300), 1, - aux_sym_ctrl_match_token1, - ACTIONS(9242), 1, - anon_sym_DASH_DASH, - ACTIONS(9244), 1, - anon_sym_DASH, - STATE(5858), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + ACTIONS(8958), 1, + anon_sym_RBRACK, + STATE(5633), 1, sym_comment, - STATE(7013), 1, - sym_block, - STATE(7690), 1, - sym__flag, - STATE(6245), 2, - sym_short_flag, - sym_long_flag, - [213053] = 6, - ACTIONS(247), 1, + STATE(6046), 1, + aux_sym_shebang_repeat1, + STATE(7111), 1, + sym_val_list, + STATE(7154), 1, + aux_sym_val_table_repeat1, + [209774] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1719), 1, - aux_sym_unquoted_token2, - ACTIONS(9258), 1, - anon_sym_DOT_DOT2, - STATE(5859), 1, + ACTIONS(8960), 1, + anon_sym_LPAREN, + ACTIONS(8964), 1, + anon_sym_DQUOTE2, + STATE(5634), 1, sym_comment, - ACTIONS(9260), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1717), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [213075] = 8, + STATE(5708), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6534), 1, + sym_expr_interpolated, + ACTIONS(8962), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [209797] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6300), 1, - aux_sym_ctrl_match_token1, - ACTIONS(9242), 1, - anon_sym_DASH_DASH, - ACTIONS(9244), 1, - anon_sym_DASH, - STATE(5860), 1, + ACTIONS(3004), 1, + anon_sym_DQUOTE, + ACTIONS(8966), 1, + aux_sym_path_token1, + STATE(5318), 1, + sym_val_string, + STATE(5345), 1, + sym__str_double_quotes, + STATE(5635), 1, sym_comment, - STATE(7032), 1, - sym_block, - STATE(7558), 1, - sym__flag, - STATE(6245), 2, - sym_short_flag, - sym_long_flag, - [213101] = 8, - ACTIONS(247), 1, + ACTIONS(3006), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [209820] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6300), 1, - aux_sym_ctrl_match_token1, - ACTIONS(9242), 1, - anon_sym_DASH_DASH, - ACTIONS(9244), 1, - anon_sym_DASH, - STATE(5861), 1, + ACTIONS(5399), 1, + aux_sym_unquoted_token3, + ACTIONS(8171), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8557), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8559), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8561), 1, + aux_sym__immediate_decimal_token5, + STATE(5636), 1, sym_comment, - STATE(7046), 1, - sym_block, - STATE(7618), 1, - sym__flag, - STATE(6245), 2, - sym_short_flag, - sym_long_flag, - [213127] = 3, - ACTIONS(247), 1, + STATE(6635), 1, + sym__immediate_decimal, + [209845] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5862), 1, + ACTIONS(5399), 1, + aux_sym_unquoted_token3, + ACTIONS(8244), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8563), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8565), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8567), 1, + aux_sym__immediate_decimal_token5, + STATE(5637), 1, sym_comment, - ACTIONS(5210), 7, - sym_identifier, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym_record_entry_token1, - [213143] = 4, + STATE(7714), 1, + sym__immediate_decimal, + [209870] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5863), 1, + ACTIONS(8960), 1, + anon_sym_LPAREN, + ACTIONS(8968), 1, + anon_sym_DQUOTE2, + STATE(5638), 1, sym_comment, - ACTIONS(1589), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1591), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [213161] = 5, + STATE(5642), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6534), 1, + sym_expr_interpolated, + ACTIONS(8962), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [209893] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(5864), 1, + ACTIONS(6930), 1, + aux_sym_unquoted_token3, + ACTIONS(8171), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8557), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8559), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8561), 1, + aux_sym__immediate_decimal_token5, + STATE(5639), 1, sym_comment, - ACTIONS(2089), 3, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_as, - ACTIONS(2093), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [213181] = 8, - ACTIONS(247), 1, + STATE(6635), 1, + sym__immediate_decimal, + [209918] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6298), 1, - aux_sym_ctrl_match_token1, - ACTIONS(9242), 1, - anon_sym_DASH_DASH, - ACTIONS(9244), 1, - anon_sym_DASH, - STATE(5865), 1, + ACTIONS(6930), 1, + aux_sym_unquoted_token3, + ACTIONS(8244), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8563), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8565), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8567), 1, + aux_sym__immediate_decimal_token5, + STATE(5640), 1, sym_comment, - STATE(6782), 1, - sym_block, - STATE(7589), 1, - sym__flag, - STATE(6245), 2, - sym_short_flag, - sym_long_flag, - [213207] = 8, + STATE(7714), 1, + sym__immediate_decimal, + [209943] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1837), 1, + ACTIONS(1905), 1, + anon_sym_RBRACE, + ACTIONS(1907), 1, sym__entry_separator, - ACTIONS(9230), 1, + ACTIONS(8771), 1, anon_sym_DOT, - STATE(3097), 1, + STATE(544), 1, sym_cell_path, - STATE(5866), 1, - sym_comment, - STATE(6174), 1, + STATE(5541), 1, aux_sym_cell_path_repeat1, - STATE(6792), 1, + STATE(5641), 1, + sym_comment, + STATE(5978), 1, sym_path, - ACTIONS(1835), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [213233] = 4, - ACTIONS(247), 1, + [209968] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9264), 1, - anon_sym_DASH, - STATE(5867), 1, + ACTIONS(8960), 1, + anon_sym_LPAREN, + ACTIONS(8970), 1, + anon_sym_DQUOTE2, + STATE(5642), 1, sym_comment, - ACTIONS(9262), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [213251] = 4, - ACTIONS(3), 1, + STATE(5892), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6534), 1, + sym_expr_interpolated, + ACTIONS(8962), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [209991] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5868), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8972), 1, + aux_sym_ctrl_match_token1, + STATE(1608), 1, + sym_block, + STATE(1609), 1, + sym_val_closure, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(5053), 1, + sym__blosure, + STATE(5643), 1, sym_comment, - ACTIONS(1648), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1650), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [213269] = 5, - ACTIONS(3), 1, + [210016] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - STATE(5869), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + ACTIONS(8974), 1, + anon_sym_RBRACK, + STATE(5644), 1, sym_comment, - ACTIONS(2097), 3, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_as, - ACTIONS(2101), 3, - ts_builtin_sym_end, + STATE(6051), 1, + aux_sym_shebang_repeat1, + STATE(7169), 1, + aux_sym_val_table_repeat1, + STATE(7286), 1, + sym_val_list, + [210041] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2808), 1, sym__newline, - anon_sym_SEMI, - [213289] = 5, - ACTIONS(3), 1, + ACTIONS(8972), 1, + aux_sym_ctrl_match_token1, + STATE(1608), 1, + sym_block, + STATE(1609), 1, + sym_val_closure, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(4963), 1, + sym__blosure, + STATE(5645), 1, + sym_comment, + [210066] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - STATE(5870), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8972), 1, + aux_sym_ctrl_match_token1, + STATE(1608), 1, + sym_block, + STATE(1609), 1, + sym_val_closure, + STATE(4963), 1, + sym__blosure, + STATE(5646), 1, sym_comment, - ACTIONS(2105), 3, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_as, - ACTIONS(2107), 3, - ts_builtin_sym_end, + STATE(5649), 1, + aux_sym_shebang_repeat1, + [210091] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2808), 1, sym__newline, - anon_sym_SEMI, - [213309] = 4, + ACTIONS(8972), 1, + aux_sym_ctrl_match_token1, + STATE(1608), 1, + sym_block, + STATE(1609), 1, + sym_val_closure, + STATE(5053), 1, + sym__blosure, + STATE(5645), 1, + aux_sym_shebang_repeat1, + STATE(5647), 1, + sym_comment, + [210116] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(5871), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + ACTIONS(8976), 1, + anon_sym_RBRACK, + STATE(5648), 1, sym_comment, - ACTIONS(1648), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1650), 5, + STATE(6052), 1, + aux_sym_shebang_repeat1, + STATE(6665), 1, + sym_val_list, + STATE(7172), 1, + aux_sym_val_table_repeat1, + [210141] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2808), 1, sym__newline, + ACTIONS(8972), 1, aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [213327] = 8, + STATE(1608), 1, + sym_block, + STATE(1609), 1, + sym_val_closure, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(4993), 1, + sym__blosure, + STATE(5649), 1, + sym_comment, + [210166] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8978), 1, + anon_sym_DQUOTE, + ACTIONS(8982), 1, + aux_sym_path_token1, + STATE(5650), 1, + sym_comment, + STATE(5706), 1, + sym_val_string, + STATE(5801), 1, + sym__str_double_quotes, + ACTIONS(8980), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [210189] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1901), 1, + ACTIONS(7080), 1, + anon_sym_RBRACK, + ACTIONS(7082), 1, sym__entry_separator, - ACTIONS(9230), 1, + ACTIONS(8771), 1, anon_sym_DOT, - STATE(3090), 1, - sym_cell_path, - STATE(5872), 1, - sym_comment, - STATE(6174), 1, + STATE(5541), 1, aux_sym_cell_path_repeat1, - STATE(6792), 1, + STATE(5651), 1, + sym_comment, + STATE(5978), 1, sym_path, - ACTIONS(1899), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [213353] = 4, + STATE(7358), 1, + sym_cell_path, + [210214] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(5873), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8972), 1, + aux_sym_ctrl_match_token1, + STATE(1608), 1, + sym_block, + STATE(1609), 1, + sym_val_closure, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(4964), 1, + sym__blosure, + STATE(5652), 1, sym_comment, - ACTIONS(1589), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1591), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [213371] = 8, - ACTIONS(3), 1, + [210239] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1764), 1, - sym__entry_separator, - ACTIONS(9230), 1, - anon_sym_DOT, - STATE(523), 1, - sym_cell_path, - STATE(5874), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8972), 1, + aux_sym_ctrl_match_token1, + STATE(1608), 1, + sym_block, + STATE(1609), 1, + sym_val_closure, + STATE(4964), 1, + sym__blosure, + STATE(5653), 1, sym_comment, - STATE(6174), 1, - aux_sym_cell_path_repeat1, - STATE(6792), 1, - sym_path, - ACTIONS(1762), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [213397] = 8, + STATE(5809), 1, + aux_sym_shebang_repeat1, + [210264] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(947), 1, - sym__entry_separator, - ACTIONS(9230), 1, - anon_sym_DOT, - STATE(5875), 1, + ACTIONS(8960), 1, + anon_sym_LPAREN, + ACTIONS(8984), 1, + anon_sym_DQUOTE2, + STATE(5654), 1, sym_comment, - STATE(6154), 1, - sym_cell_path, - STATE(6174), 1, - aux_sym_cell_path_repeat1, - STATE(6792), 1, - sym_path, - ACTIONS(945), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [213423] = 7, + STATE(5659), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6534), 1, + sym_expr_interpolated, + ACTIONS(8962), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [210287] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9145), 1, - anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(5876), 1, + ACTIONS(3413), 1, + anon_sym_DQUOTE, + ACTIONS(8986), 1, + aux_sym_path_token1, + STATE(2553), 1, + sym_val_string, + STATE(2643), 1, + sym__str_double_quotes, + STATE(5655), 1, sym_comment, - STATE(5898), 1, - aux_sym_cell_path_repeat1, - STATE(7126), 1, - sym_cell_path, - ACTIONS(5993), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [213447] = 7, + ACTIONS(3415), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [210310] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9266), 1, - anon_sym_DOT, - STATE(5877), 1, + ACTIONS(6874), 1, + aux_sym_unquoted_token3, + ACTIONS(8171), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8557), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8559), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8561), 1, + aux_sym__immediate_decimal_token5, + STATE(5656), 1, sym_comment, - STATE(6077), 1, - aux_sym_cell_path_repeat1, - STATE(6519), 1, - sym_path, - STATE(7056), 1, - sym_cell_path, - ACTIONS(1774), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [213471] = 5, + STATE(6635), 1, + sym__immediate_decimal, + [210335] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6874), 1, + aux_sym_unquoted_token3, + ACTIONS(8244), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8563), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8565), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8567), 1, + aux_sym__immediate_decimal_token5, + STATE(5657), 1, + sym_comment, + STATE(7714), 1, + sym__immediate_decimal, + [210360] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1525), 1, + ACTIONS(5044), 1, anon_sym_DASH, - ACTIONS(7091), 1, - aux_sym_unquoted_token2, - STATE(5878), 1, + STATE(5658), 1, sym_comment, - ACTIONS(1537), 5, + ACTIONS(5042), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [213491] = 7, + [210377] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9266), 1, - anon_sym_DOT, - STATE(5879), 1, - sym_comment, - STATE(6077), 1, - aux_sym_cell_path_repeat1, - STATE(6519), 1, - sym_path, - STATE(7371), 1, - sym_cell_path, - ACTIONS(1778), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [213515] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5880), 1, + ACTIONS(8960), 1, + anon_sym_LPAREN, + ACTIONS(8988), 1, + anon_sym_DQUOTE2, + STATE(5659), 1, sym_comment, - ACTIONS(1648), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1650), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [213533] = 4, + STATE(5892), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6534), 1, + sym_expr_interpolated, + ACTIONS(8962), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [210400] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5881), 1, + STATE(5660), 1, sym_comment, - ACTIONS(1721), 3, + ACTIONS(1643), 3, anon_sym_RBRACE, + anon_sym__, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1723), 4, - anon_sym_LPAREN2, + ACTIONS(1645), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [213551] = 5, + [210417] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9270), 1, - anon_sym_COLON, - ACTIONS(9272), 1, - anon_sym_COMMA, - STATE(5882), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + ACTIONS(8990), 1, + anon_sym_RBRACK, + STATE(5661), 1, sym_comment, - ACTIONS(9268), 5, + STATE(6053), 1, + aux_sym_shebang_repeat1, + STATE(6684), 1, + sym_val_list, + STATE(7178), 1, + aux_sym_val_table_repeat1, + [210442] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3213), 1, + aux_sym_record_entry_token1, + ACTIONS(8273), 1, sym_identifier, - anon_sym_GT, + ACTIONS(8992), 1, + anon_sym_DOLLAR, + STATE(5319), 1, + sym_val_variable, + STATE(5662), 1, + sym_comment, + STATE(5967), 1, + sym__variable_name, + STATE(6547), 1, + sym__assignment_pattern, + [210467] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + ACTIONS(8994), 1, + anon_sym_RBRACK, + STATE(5663), 1, + sym_comment, + STATE(6054), 1, + aux_sym_shebang_repeat1, + STATE(6688), 1, + sym_val_list, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [210492] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(507), 1, anon_sym_DQUOTE, + ACTIONS(8996), 1, + aux_sym_path_token1, + STATE(1707), 1, + sym__str_double_quotes, + STATE(1987), 1, + sym_val_string, + STATE(5664), 1, + sym_comment, + ACTIONS(509), 2, sym__str_single_quotes, sym__str_back_ticks, - [213571] = 8, - ACTIONS(247), 1, + [210515] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9242), 1, - anon_sym_DASH_DASH, - ACTIONS(9244), 1, - anon_sym_DASH, - ACTIONS(9274), 1, - aux_sym_ctrl_match_token1, - STATE(5883), 1, + STATE(5665), 1, sym_comment, - STATE(6495), 1, - sym_val_record, - STATE(7676), 1, - sym__flag, - STATE(6245), 2, - sym_short_flag, - sym_long_flag, - [213597] = 9, - ACTIONS(247), 1, + ACTIONS(1046), 2, + anon_sym_DOT, + sym__entry_separator, + ACTIONS(1044), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym__, + anon_sym_QMARK2, + [210532] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3239), 1, - aux_sym_record_entry_token1, - ACTIONS(9276), 1, - anon_sym_alias, - ACTIONS(9278), 1, - anon_sym_const, - ACTIONS(9280), 1, - anon_sym_def, - ACTIONS(9282), 1, - anon_sym_extern, - ACTIONS(9284), 1, - anon_sym_module, - ACTIONS(9286), 1, - anon_sym_use, - STATE(5884), 1, + ACTIONS(7093), 1, + anon_sym_RBRACK, + ACTIONS(7095), 1, + sym__entry_separator, + ACTIONS(8771), 1, + anon_sym_DOT, + STATE(5541), 1, + aux_sym_cell_path_repeat1, + STATE(5666), 1, + sym_comment, + STATE(5978), 1, + sym_path, + STATE(7459), 1, + sym_cell_path, + [210557] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8960), 1, + anon_sym_LPAREN, + ACTIONS(8998), 1, + anon_sym_DQUOTE2, + STATE(5667), 1, + sym_comment, + STATE(5671), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6534), 1, + sym_expr_interpolated, + ACTIONS(8962), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [210580] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6377), 1, + aux_sym_unquoted_token3, + ACTIONS(8171), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8557), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8559), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8561), 1, + aux_sym__immediate_decimal_token5, + STATE(5668), 1, + sym_comment, + STATE(6635), 1, + sym__immediate_decimal, + [210605] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6377), 1, + aux_sym_unquoted_token3, + ACTIONS(8244), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8563), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8565), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8567), 1, + aux_sym__immediate_decimal_token5, + STATE(5669), 1, sym_comment, - [213625] = 6, + STATE(7714), 1, + sym__immediate_decimal, + [210630] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1429), 1, + ACTIONS(1643), 1, aux_sym_unquoted_token2, - ACTIONS(9288), 1, - anon_sym_DOT_DOT2, - STATE(5885), 1, + ACTIONS(9000), 1, + anon_sym_DOT, + ACTIONS(9002), 1, + aux_sym__immediate_decimal_token2, + STATE(5670), 1, sym_comment, - ACTIONS(9290), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1698), 3, + ACTIONS(1645), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [213647] = 9, - ACTIONS(247), 1, + [210651] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3269), 1, - aux_sym_record_entry_token1, - ACTIONS(9276), 1, - anon_sym_alias, - ACTIONS(9278), 1, - anon_sym_const, - ACTIONS(9280), 1, - anon_sym_def, - ACTIONS(9282), 1, - anon_sym_extern, - ACTIONS(9284), 1, - anon_sym_module, - ACTIONS(9286), 1, - anon_sym_use, - STATE(5886), 1, + ACTIONS(8960), 1, + anon_sym_LPAREN, + ACTIONS(9004), 1, + anon_sym_DQUOTE2, + STATE(5671), 1, sym_comment, - [213675] = 8, + STATE(5892), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6534), 1, + sym_expr_interpolated, + ACTIONS(8962), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [210674] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1537), 1, - anon_sym_in, - ACTIONS(4694), 1, - anon_sym_DOT_DOT2, - ACTIONS(7059), 1, - aux_sym_unquoted_token2, - ACTIONS(9292), 1, - sym_filesize_unit, - ACTIONS(9294), 1, - sym_duration_unit, - STATE(5887), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + ACTIONS(9006), 1, + anon_sym_RBRACK, + STATE(5672), 1, sym_comment, - ACTIONS(4696), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [213701] = 8, + STATE(6055), 1, + aux_sym_shebang_repeat1, + STATE(6706), 1, + sym_val_list, + STATE(7185), 1, + aux_sym_val_table_repeat1, + [210699] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9248), 1, + ACTIONS(9008), 1, anon_sym_DASH_DASH, - ACTIONS(9250), 1, + ACTIONS(9010), 1, anon_sym_DASH, - ACTIONS(9296), 1, - sym_identifier, - STATE(5847), 1, - aux_sym_ctrl_do_repeat1, - STATE(5888), 1, + ACTIONS(9012), 1, + anon_sym_in, + STATE(5673), 1, sym_comment, - STATE(6260), 1, + STATE(7590), 1, sym__flag, - STATE(6245), 2, + STATE(5452), 2, sym_short_flag, sym_long_flag, - [213727] = 8, + [210722] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1841), 1, - sym__entry_separator, - ACTIONS(9230), 1, - anon_sym_DOT, - STATE(3098), 1, - sym_cell_path, - STATE(5889), 1, - sym_comment, - STATE(6174), 1, - aux_sym_cell_path_repeat1, - STATE(6792), 1, - sym_path, - ACTIONS(1839), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [213753] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6300), 1, - aux_sym_ctrl_match_token1, - ACTIONS(9242), 1, - anon_sym_DASH_DASH, - ACTIONS(9244), 1, - anon_sym_DASH, - STATE(5890), 1, + ACTIONS(4680), 1, + aux_sym_unquoted_token3, + ACTIONS(8171), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8557), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8559), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8561), 1, + aux_sym__immediate_decimal_token5, + STATE(5674), 1, sym_comment, - STATE(7525), 1, - sym_block, - STATE(7718), 1, - sym__flag, - STATE(6245), 2, - sym_short_flag, - sym_long_flag, - [213779] = 8, + STATE(6059), 1, + sym__immediate_decimal, + [210747] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1772), 1, - sym__entry_separator, - ACTIONS(9230), 1, - anon_sym_DOT, - STATE(507), 1, - sym_cell_path, - STATE(5891), 1, + ACTIONS(4680), 1, + aux_sym_unquoted_token3, + ACTIONS(8244), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8563), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8565), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8567), 1, + aux_sym__immediate_decimal_token5, + STATE(5675), 1, sym_comment, - STATE(6174), 1, - aux_sym_cell_path_repeat1, - STATE(6792), 1, - sym_path, - ACTIONS(1770), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [213805] = 8, + STATE(7433), 1, + sym__immediate_decimal, + [210772] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9248), 1, - anon_sym_DASH_DASH, - ACTIONS(9250), 1, - anon_sym_DASH, - ACTIONS(9298), 1, - sym_identifier, - STATE(5892), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + ACTIONS(9014), 1, + anon_sym_RBRACK, + STATE(5676), 1, sym_comment, - STATE(5904), 1, - aux_sym_ctrl_do_repeat1, - STATE(6260), 1, - sym__flag, - STATE(6245), 2, - sym_short_flag, - sym_long_flag, - [213831] = 4, + STATE(6056), 1, + aux_sym_shebang_repeat1, + STATE(6710), 1, + sym_val_list, + STATE(7188), 1, + aux_sym_val_table_repeat1, + [210797] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(5893), 1, + ACTIONS(9016), 1, + anon_sym_DQUOTE, + ACTIONS(9020), 1, + aux_sym_path_token1, + STATE(1089), 1, + sym_val_string, + STATE(1170), 1, + sym__str_double_quotes, + STATE(5677), 1, sym_comment, - ACTIONS(1569), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1571), 5, - sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [213849] = 8, + ACTIONS(9018), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [210820] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6300), 1, + ACTIONS(6078), 1, aux_sym_ctrl_match_token1, - ACTIONS(9242), 1, - anon_sym_DASH_DASH, - ACTIONS(9244), 1, - anon_sym_DASH, - STATE(5894), 1, + STATE(5678), 1, sym_comment, - STATE(7211), 1, + STATE(6314), 1, sym_block, - STATE(7679), 1, - sym__flag, - STATE(6245), 2, - sym_short_flag, - sym_long_flag, - [213875] = 8, + ACTIONS(9022), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [210839] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9242), 1, - anon_sym_DASH_DASH, - ACTIONS(9244), 1, - anon_sym_DASH, - ACTIONS(9300), 1, - aux_sym_ctrl_match_token1, - STATE(5895), 1, - sym_comment, - STATE(7258), 1, - sym_val_record, - STATE(7546), 1, - sym__flag, - STATE(6245), 2, - sym_short_flag, - sym_long_flag, - [213901] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1873), 1, - sym__entry_separator, - ACTIONS(9230), 1, - anon_sym_DOT, - STATE(3124), 1, - sym_cell_path, - STATE(5896), 1, + ACTIONS(3213), 1, + aux_sym_record_entry_token1, + ACTIONS(8273), 1, + sym_identifier, + ACTIONS(8992), 1, + anon_sym_DOLLAR, + STATE(5319), 1, + sym_val_variable, + STATE(5679), 1, sym_comment, - STATE(6174), 1, - aux_sym_cell_path_repeat1, - STATE(6792), 1, - sym_path, - ACTIONS(1871), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [213927] = 8, + STATE(5967), 1, + sym__variable_name, + STATE(6550), 1, + sym__assignment_pattern, + [210864] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1776), 1, - sym__entry_separator, - ACTIONS(9230), 1, - anon_sym_DOT, - STATE(476), 1, - sym_cell_path, - STATE(5897), 1, + ACTIONS(8960), 1, + anon_sym_LPAREN, + ACTIONS(9024), 1, + anon_sym_DQUOTE2, + STATE(5680), 1, sym_comment, - STATE(6174), 1, - aux_sym_cell_path_repeat1, - STATE(6792), 1, - sym_path, - ACTIONS(1774), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [213953] = 6, + STATE(5684), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6534), 1, + sym_expr_interpolated, + ACTIONS(8962), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [210887] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9145), 1, - anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(5898), 1, - sym_comment, - STATE(5899), 1, - aux_sym_cell_path_repeat1, - ACTIONS(953), 4, - anon_sym_PIPE, - anon_sym_if, + ACTIONS(6078), 1, aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - [213975] = 5, - ACTIONS(247), 1, + STATE(5681), 1, + sym_comment, + STATE(6335), 1, + sym_block, + ACTIONS(9026), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [210906] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9302), 1, - anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(5899), 2, + ACTIONS(4441), 1, + aux_sym_unquoted_token3, + ACTIONS(8171), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8557), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8559), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8561), 1, + aux_sym__immediate_decimal_token5, + STATE(5682), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(957), 4, - anon_sym_PIPE, - anon_sym_if, - aux_sym_ctrl_match_token1, - anon_sym_EQ_GT, - [213995] = 8, - ACTIONS(247), 1, + STATE(6635), 1, + sym__immediate_decimal, + [210931] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6300), 1, - aux_sym_ctrl_match_token1, - ACTIONS(9242), 1, - anon_sym_DASH_DASH, - ACTIONS(9244), 1, - anon_sym_DASH, - STATE(5900), 1, + ACTIONS(4441), 1, + aux_sym_unquoted_token3, + ACTIONS(8244), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8563), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8565), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8567), 1, + aux_sym__immediate_decimal_token5, + STATE(5683), 1, sym_comment, - STATE(6952), 1, - sym_block, - STATE(7627), 1, - sym__flag, - STATE(6245), 2, - sym_short_flag, - sym_long_flag, - [214021] = 8, + STATE(7714), 1, + sym__immediate_decimal, + [210956] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1877), 1, - sym__entry_separator, - ACTIONS(9230), 1, - anon_sym_DOT, - STATE(3127), 1, - sym_cell_path, - STATE(5901), 1, + ACTIONS(8960), 1, + anon_sym_LPAREN, + ACTIONS(9028), 1, + anon_sym_DQUOTE2, + STATE(5684), 1, sym_comment, - STATE(6174), 1, - aux_sym_cell_path_repeat1, - STATE(6792), 1, - sym_path, - ACTIONS(1875), 2, + STATE(5892), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6534), 1, + sym_expr_interpolated, + ACTIONS(8962), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [210979] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + ACTIONS(9030), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [214047] = 4, + STATE(5685), 1, + sym_comment, + STATE(6057), 1, + aux_sym_shebang_repeat1, + STATE(6733), 1, + sym_val_list, + STATE(7192), 1, + aux_sym_val_table_repeat1, + [211004] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5902), 1, + STATE(5686), 1, sym_comment, - ACTIONS(1721), 2, + ACTIONS(1631), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1723), 5, + ACTIONS(1633), 4, anon_sym_PIPE, - anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [214065] = 4, - ACTIONS(247), 1, + [211021] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5903), 1, - sym_comment, - ACTIONS(1473), 2, + ACTIONS(2041), 1, + sym__entry_separator, + ACTIONS(9032), 1, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1475), 5, - anon_sym_in, + STATE(5687), 1, + sym_comment, + ACTIONS(2035), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(9034), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [214083] = 8, + [211042] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9248), 1, - anon_sym_DASH_DASH, - ACTIONS(9250), 1, - anon_sym_DASH, - ACTIONS(9305), 1, - sym_identifier, - STATE(5904), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + ACTIONS(9036), 1, + anon_sym_RBRACK, + STATE(5688), 1, sym_comment, - STATE(5916), 1, - aux_sym_ctrl_do_repeat1, - STATE(6260), 1, - sym__flag, - STATE(6245), 2, - sym_short_flag, - sym_long_flag, - [214109] = 8, + STATE(6058), 1, + aux_sym_shebang_repeat1, + STATE(6739), 1, + sym_val_list, + STATE(7194), 1, + aux_sym_val_table_repeat1, + [211067] = 7, + ACTIONS(233), 1, + anon_sym_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6300), 1, - aux_sym_ctrl_match_token1, - ACTIONS(9242), 1, - anon_sym_DASH_DASH, - ACTIONS(9244), 1, - anon_sym_DASH, - STATE(5905), 1, + ACTIONS(9038), 1, + aux_sym_path_token1, + STATE(1389), 1, + sym__str_double_quotes, + STATE(1463), 1, + sym_val_string, + STATE(5689), 1, sym_comment, - STATE(7323), 1, - sym_block, - STATE(7648), 1, - sym__flag, - STATE(6245), 2, - sym_short_flag, - sym_long_flag, - [214135] = 4, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [211090] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(5906), 1, + ACTIONS(6078), 1, + aux_sym_ctrl_match_token1, + STATE(5690), 1, sym_comment, - ACTIONS(1721), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1723), 5, + STATE(6175), 1, + sym_block, + ACTIONS(9040), 4, sym__newline, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [214153] = 4, - ACTIONS(247), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [211109] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5907), 1, + ACTIONS(1909), 1, + anon_sym_RBRACE, + ACTIONS(1911), 1, + sym__entry_separator, + ACTIONS(8771), 1, + anon_sym_DOT, + STATE(565), 1, + sym_cell_path, + STATE(5541), 1, + aux_sym_cell_path_repeat1, + STATE(5691), 1, sym_comment, - ACTIONS(1481), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1483), 5, - anon_sym_in, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [214171] = 5, - ACTIONS(247), 1, + STATE(5978), 1, + sym_path, + [211134] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9309), 1, - anon_sym_COLON, - ACTIONS(9311), 1, - anon_sym_COMMA, - STATE(5908), 1, + ACTIONS(8960), 1, + anon_sym_LPAREN, + ACTIONS(9042), 1, + anon_sym_DQUOTE2, + STATE(5692), 1, sym_comment, - ACTIONS(9307), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [214191] = 4, + STATE(5695), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6534), 1, + sym_expr_interpolated, + ACTIONS(8962), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [211157] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(5909), 1, + ACTIONS(6844), 1, + aux_sym_unquoted_token3, + ACTIONS(8171), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8557), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8559), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8561), 1, + aux_sym__immediate_decimal_token5, + STATE(5693), 1, sym_comment, - ACTIONS(2133), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - ACTIONS(2131), 4, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_as, - aux_sym_unquoted_token4, - [214209] = 7, - ACTIONS(247), 1, + STATE(6635), 1, + sym__immediate_decimal, + [211182] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9145), 1, - anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(4362), 1, - sym_cell_path, - STATE(5898), 1, - aux_sym_cell_path_repeat1, - STATE(5910), 1, + ACTIONS(6844), 1, + aux_sym_unquoted_token3, + ACTIONS(8244), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8563), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8565), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8567), 1, + aux_sym__immediate_decimal_token5, + STATE(5694), 1, sym_comment, - ACTIONS(947), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [214233] = 7, - ACTIONS(247), 1, + STATE(7714), 1, + sym__immediate_decimal, + [211207] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(951), 1, - anon_sym_DOT_DOT2, - ACTIONS(9147), 1, - anon_sym_DOT, - STATE(1399), 1, - sym_path, - STATE(5911), 1, + ACTIONS(8960), 1, + anon_sym_LPAREN, + ACTIONS(9044), 1, + anon_sym_DQUOTE2, + STATE(5695), 1, sym_comment, - STATE(5912), 1, - aux_sym_cell_path_repeat1, - ACTIONS(953), 3, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [214257] = 6, + STATE(5892), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6534), 1, + sym_expr_interpolated, + ACTIONS(8962), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [211230] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(955), 1, - anon_sym_DOT_DOT2, - ACTIONS(9313), 1, - anon_sym_DOT, - STATE(1399), 1, - sym_path, - STATE(5912), 2, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + ACTIONS(9046), 1, + anon_sym_RBRACK, + STATE(5696), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(957), 3, - aux_sym_ctrl_match_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [214279] = 5, + STATE(6060), 1, + aux_sym_shebang_repeat1, + STATE(6761), 1, + sym_val_list, + STATE(7200), 1, + aux_sym_val_table_repeat1, + [211255] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5041), 1, - anon_sym_DASH, - ACTIONS(9316), 1, - anon_sym_EQ2, - STATE(5913), 1, + ACTIONS(6078), 1, + aux_sym_ctrl_match_token1, + STATE(5697), 1, sym_comment, - ACTIONS(5039), 5, - ts_builtin_sym_end, + STATE(6187), 1, + sym_block, + ACTIONS(9040), 4, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [214299] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1429), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(1690), 1, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(1692), 1, - anon_sym_LPAREN2, - ACTIONS(1698), 1, - sym__entry_separator, - ACTIONS(9318), 1, - anon_sym_DOT_DOT2, - STATE(5914), 1, - sym_comment, - ACTIONS(9320), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [214325] = 8, + [211274] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1429), 1, - aux_sym_unquoted_token2, - ACTIONS(8380), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8382), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9322), 1, - anon_sym_DOT, - STATE(5915), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + ACTIONS(9048), 1, + anon_sym_RBRACK, + STATE(5698), 1, sym_comment, - STATE(6216), 1, - sym__immediate_decimal, - ACTIONS(8378), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [214351] = 7, + STATE(5898), 1, + aux_sym_shebang_repeat1, + STATE(6767), 1, + sym_val_list, + STATE(7202), 1, + aux_sym_val_table_repeat1, + [211299] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8757), 1, - sym_identifier, - ACTIONS(9324), 1, - anon_sym_DASH_DASH, - ACTIONS(9327), 1, - anon_sym_DASH, - STATE(6260), 1, - sym__flag, - STATE(5916), 2, + ACTIONS(9050), 1, + anon_sym_DQUOTE, + ACTIONS(9054), 1, + aux_sym_path_token1, + STATE(1073), 1, + sym_val_string, + STATE(1079), 1, + sym__str_double_quotes, + STATE(5699), 1, sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(6245), 2, - sym_short_flag, - sym_long_flag, - [214375] = 7, + ACTIONS(9052), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [211322] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9145), 1, - anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(5898), 1, - aux_sym_cell_path_repeat1, - STATE(5917), 1, + ACTIONS(3213), 1, + aux_sym_record_entry_token1, + ACTIONS(8273), 1, + sym_identifier, + ACTIONS(8992), 1, + anon_sym_DOLLAR, + STATE(5319), 1, + sym_val_variable, + STATE(5700), 1, sym_comment, - STATE(7120), 1, - sym_cell_path, - ACTIONS(6011), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [214399] = 4, - ACTIONS(247), 1, + STATE(5967), 1, + sym__variable_name, + STATE(6551), 1, + sym__assignment_pattern, + [211347] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5918), 1, + ACTIONS(8960), 1, + anon_sym_LPAREN, + ACTIONS(9056), 1, + anon_sym_DQUOTE2, + STATE(5701), 1, sym_comment, - ACTIONS(1519), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1521), 5, - anon_sym_in, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [214417] = 8, + STATE(5892), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6534), 1, + sym_expr_interpolated, + ACTIONS(8962), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [211370] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6300), 1, - aux_sym_ctrl_match_token1, - ACTIONS(9242), 1, - anon_sym_DASH_DASH, - ACTIONS(9244), 1, - anon_sym_DASH, - STATE(5919), 1, + ACTIONS(9058), 1, + anon_sym_DQUOTE, + ACTIONS(9062), 1, + aux_sym_path_token1, + STATE(1179), 1, + sym__str_double_quotes, + STATE(1186), 1, + sym_val_string, + STATE(5702), 1, sym_comment, - STATE(6961), 1, - sym_block, - STATE(7552), 1, - sym__flag, - STATE(6245), 2, - sym_short_flag, - sym_long_flag, - [214443] = 8, + ACTIONS(9060), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [211393] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1881), 1, - sym__entry_separator, - ACTIONS(9230), 1, - anon_sym_DOT, - STATE(3142), 1, - sym_cell_path, - STATE(5920), 1, + ACTIONS(8960), 1, + anon_sym_LPAREN, + ACTIONS(9064), 1, + anon_sym_DQUOTE2, + STATE(5703), 1, sym_comment, - STATE(6174), 1, - aux_sym_cell_path_repeat1, - STATE(6792), 1, - sym_path, - ACTIONS(1879), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [214469] = 8, + STATE(5705), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6534), 1, + sym_expr_interpolated, + ACTIONS(8962), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [211416] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1885), 1, - sym__entry_separator, - ACTIONS(9230), 1, - anon_sym_DOT, - STATE(3145), 1, - sym_cell_path, - STATE(5921), 1, + ACTIONS(9066), 1, + anon_sym_QMARK2, + STATE(5704), 1, sym_comment, - STATE(6174), 1, - aux_sym_cell_path_repeat1, - STATE(6792), 1, - sym_path, - ACTIONS(1883), 2, + ACTIONS(1036), 2, + anon_sym_DOT, + sym__entry_separator, + ACTIONS(1034), 3, anon_sym_RBRACK, anon_sym_RBRACE, - [214495] = 8, + anon_sym__, + [211435] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1893), 1, - sym__entry_separator, - ACTIONS(9230), 1, - anon_sym_DOT, - STATE(3154), 1, - sym_cell_path, - STATE(5922), 1, + ACTIONS(8960), 1, + anon_sym_LPAREN, + ACTIONS(9068), 1, + anon_sym_DQUOTE2, + STATE(5705), 1, sym_comment, - STATE(6174), 1, - aux_sym_cell_path_repeat1, - STATE(6792), 1, - sym_path, - ACTIONS(1891), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [214521] = 8, + STATE(5892), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6534), 1, + sym_expr_interpolated, + ACTIONS(8962), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [211458] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1897), 1, - sym__entry_separator, - ACTIONS(9230), 1, - anon_sym_DOT, - STATE(3156), 1, - sym_cell_path, - STATE(5923), 1, + ACTIONS(9070), 1, + anon_sym_QMARK2, + STATE(5706), 1, sym_comment, - STATE(6174), 1, - aux_sym_cell_path_repeat1, - STATE(6792), 1, - sym_path, - ACTIONS(1895), 2, + ACTIONS(1030), 2, + anon_sym_DOT, + sym__entry_separator, + ACTIONS(1028), 3, anon_sym_RBRACK, anon_sym_RBRACE, - [214547] = 8, + anon_sym__, + [211477] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1429), 1, - aux_sym_unquoted_token2, - ACTIONS(8380), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8382), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9330), 1, - anon_sym_DOT, - STATE(5924), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + ACTIONS(9072), 1, + anon_sym_RBRACK, + STATE(5707), 1, sym_comment, - STATE(6802), 1, - sym__immediate_decimal, - ACTIONS(8378), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [214573] = 5, - ACTIONS(247), 1, + STATE(6061), 1, + aux_sym_shebang_repeat1, + STATE(6789), 1, + sym_val_list, + STATE(7208), 1, + aux_sym_val_table_repeat1, + [211502] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9151), 1, - aux_sym__immediate_decimal_token2, - STATE(5925), 1, + ACTIONS(8960), 1, + anon_sym_LPAREN, + ACTIONS(9074), 1, + anon_sym_DQUOTE2, + STATE(5708), 1, sym_comment, - ACTIONS(1589), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1591), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [214593] = 8, - ACTIONS(3), 1, + STATE(5892), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6534), 1, + sym_expr_interpolated, + ACTIONS(8962), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [211525] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1869), 1, - sym__entry_separator, - ACTIONS(9230), 1, - anon_sym_DOT, - STATE(499), 1, - sym_cell_path, - STATE(5926), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + ACTIONS(9076), 1, + anon_sym_RBRACK, + STATE(5709), 1, sym_comment, - STATE(6174), 1, - aux_sym_cell_path_repeat1, - STATE(6792), 1, - sym_path, - ACTIONS(1867), 2, + STATE(6026), 1, + aux_sym_shebang_repeat1, + STATE(7062), 1, + aux_sym_val_table_repeat1, + STATE(7079), 1, + sym_val_list, + [211550] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + ACTIONS(9078), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [214619] = 3, + STATE(5710), 1, + sym_comment, + STATE(6062), 1, + aux_sym_shebang_repeat1, + STATE(6794), 1, + sym_val_list, + STATE(7210), 1, + aux_sym_val_table_repeat1, + [211575] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(5927), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + ACTIONS(9080), 1, + anon_sym_RBRACK, + STATE(5711), 1, sym_comment, - ACTIONS(5218), 7, - sym_identifier, - anon_sym_COMMA, - anon_sym_GT, + STATE(6038), 1, + aux_sym_shebang_repeat1, + STATE(6678), 1, + sym_val_list, + STATE(7128), 1, + aux_sym_val_table_repeat1, + [211600] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9082), 1, anon_sym_DQUOTE, + ACTIONS(9086), 1, + aux_sym_path_token1, + STATE(1487), 1, + sym_val_string, + STATE(1516), 1, + sym__str_double_quotes, + STATE(5712), 1, + sym_comment, + ACTIONS(9084), 2, sym__str_single_quotes, sym__str_back_ticks, - aux_sym_record_entry_token1, - [214635] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1780), 1, - sym__entry_separator, - ACTIONS(9230), 1, - anon_sym_DOT, - STATE(488), 1, - sym_cell_path, - STATE(5928), 1, - sym_comment, - STATE(6174), 1, - aux_sym_cell_path_repeat1, - STATE(6792), 1, - sym_path, - ACTIONS(1778), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [214661] = 4, + [211623] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(5929), 1, - sym_comment, - ACTIONS(1585), 2, + ACTIONS(6490), 1, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1587), 5, - anon_sym_in, + STATE(5713), 1, + sym_comment, + ACTIONS(6492), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [214679] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5930), 1, - sym_comment, - ACTIONS(1569), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1571), 5, + ACTIONS(5863), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [214697] = 4, - ACTIONS(3), 1, + [211642] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5931), 1, + ACTIONS(9088), 1, + sym__newline, + ACTIONS(9090), 1, + anon_sym_SEMI, + ACTIONS(9092), 1, + anon_sym_RPAREN, + STATE(238), 1, + aux_sym__parenthesized_body_repeat1, + STATE(5714), 1, sym_comment, - ACTIONS(1569), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1571), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [214715] = 8, + STATE(6238), 1, + aux_sym__block_body_repeat1, + STATE(6970), 1, + aux_sym_shebang_repeat1, + [211667] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1429), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1690), 1, - anon_sym_RBRACK, - ACTIONS(1692), 1, - anon_sym_LPAREN2, - ACTIONS(1698), 1, - sym__entry_separator, - ACTIONS(9332), 1, - anon_sym_DOT_DOT2, - STATE(5932), 1, + ACTIONS(8960), 1, + anon_sym_LPAREN, + ACTIONS(9094), 1, + anon_sym_DQUOTE2, + STATE(5715), 1, sym_comment, - ACTIONS(9334), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [214741] = 8, + STATE(5717), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6534), 1, + sym_expr_interpolated, + ACTIONS(8962), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [211690] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4051), 1, + anon_sym_DQUOTE, + ACTIONS(9096), 1, + aux_sym_path_token1, + STATE(4704), 1, + sym__str_double_quotes, + STATE(5333), 1, + sym_val_string, + STATE(5716), 1, + sym_comment, + ACTIONS(4053), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [211713] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1822), 1, - sym__entry_separator, - ACTIONS(9230), 1, - anon_sym_DOT, - STATE(3085), 1, - sym_cell_path, - STATE(5933), 1, + ACTIONS(8960), 1, + anon_sym_LPAREN, + ACTIONS(9098), 1, + anon_sym_DQUOTE2, + STATE(5717), 1, sym_comment, - STATE(6174), 1, - aux_sym_cell_path_repeat1, - STATE(6792), 1, - sym_path, - ACTIONS(1820), 2, + STATE(5892), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6534), 1, + sym_expr_interpolated, + ACTIONS(8962), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [211736] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + ACTIONS(9100), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [214767] = 5, + STATE(5718), 1, + sym_comment, + STATE(6063), 1, + aux_sym_shebang_repeat1, + STATE(6811), 1, + sym_val_list, + STATE(7214), 1, + aux_sym_val_table_repeat1, + [211761] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9336), 1, - aux_sym__immediate_decimal_token2, - STATE(5934), 1, + ACTIONS(5018), 1, + anon_sym_DASH, + STATE(5719), 1, + sym_comment, + ACTIONS(5016), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [211778] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5720), 1, sym_comment, - ACTIONS(1648), 2, + ACTIONS(1705), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1650), 4, + ACTIONS(1707), 4, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [214787] = 3, + [211795] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(5935), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + ACTIONS(9102), 1, + anon_sym_RBRACK, + STATE(5721), 1, sym_comment, - ACTIONS(5202), 7, - sym_identifier, - anon_sym_COMMA, - anon_sym_GT, + STATE(6064), 1, + aux_sym_shebang_repeat1, + STATE(6815), 1, + sym_val_list, + STATE(7217), 1, + aux_sym_val_table_repeat1, + [211820] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5022), 1, + anon_sym_DASH, + STATE(5722), 1, + sym_comment, + ACTIONS(5020), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [211837] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(507), 1, anon_sym_DQUOTE, + ACTIONS(8986), 1, + aux_sym_path_token1, + STATE(1707), 1, + sym__str_double_quotes, + STATE(2553), 1, + sym_val_string, + STATE(5723), 1, + sym_comment, + ACTIONS(509), 2, sym__str_single_quotes, sym__str_back_ticks, - aux_sym_record_entry_token1, - [214803] = 8, + [211860] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6298), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8972), 1, aux_sym_ctrl_match_token1, - ACTIONS(9242), 1, - anon_sym_DASH_DASH, - ACTIONS(9244), 1, - anon_sym_DASH, - STATE(5936), 1, - sym_comment, - STATE(6853), 1, + STATE(1608), 1, sym_block, - STATE(7710), 1, - sym__flag, - STATE(6245), 2, - sym_short_flag, - sym_long_flag, - [214829] = 8, + STATE(1609), 1, + sym_val_closure, + STATE(5054), 1, + sym__blosure, + STATE(5652), 1, + aux_sym_shebang_repeat1, + STATE(5724), 1, + sym_comment, + [211885] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6298), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8972), 1, aux_sym_ctrl_match_token1, - ACTIONS(9242), 1, - anon_sym_DASH_DASH, - ACTIONS(9244), 1, - anon_sym_DASH, - STATE(5937), 1, - sym_comment, - STATE(6854), 1, + STATE(1608), 1, sym_block, - STATE(7713), 1, - sym__flag, - STATE(6245), 2, - sym_short_flag, - sym_long_flag, - [214855] = 8, + STATE(1609), 1, + sym_val_closure, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(5010), 1, + sym__blosure, + STATE(5725), 1, + sym_comment, + [211910] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6298), 1, - aux_sym_ctrl_match_token1, - ACTIONS(9242), 1, - anon_sym_DASH_DASH, - ACTIONS(9244), 1, - anon_sym_DASH, - STATE(5938), 1, + ACTIONS(1631), 1, + aux_sym_unquoted_token2, + ACTIONS(9104), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9106), 1, + aux_sym__immediate_decimal_token2, + STATE(5726), 1, sym_comment, - STATE(6855), 1, - sym_block, - STATE(7714), 1, - sym__flag, - STATE(6245), 2, - sym_short_flag, - sym_long_flag, - [214881] = 8, + ACTIONS(1633), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [211931] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1749), 1, - sym__entry_separator, - ACTIONS(9230), 1, - anon_sym_DOT, - STATE(3159), 1, - sym_cell_path, - STATE(5939), 1, + ACTIONS(8960), 1, + anon_sym_LPAREN, + ACTIONS(9108), 1, + anon_sym_DQUOTE2, + STATE(5727), 1, sym_comment, - STATE(6174), 1, - aux_sym_cell_path_repeat1, - STATE(6792), 1, - sym_path, - ACTIONS(1747), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [214907] = 8, + STATE(5728), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6534), 1, + sym_expr_interpolated, + ACTIONS(8962), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [211954] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1826), 1, - sym__entry_separator, - ACTIONS(9230), 1, - anon_sym_DOT, - STATE(3080), 1, - sym_cell_path, - STATE(5940), 1, + ACTIONS(8960), 1, + anon_sym_LPAREN, + ACTIONS(9110), 1, + anon_sym_DQUOTE2, + STATE(5728), 1, sym_comment, - STATE(6174), 1, - aux_sym_cell_path_repeat1, - STATE(6792), 1, - sym_path, - ACTIONS(1824), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [214933] = 8, - ACTIONS(3), 1, + STATE(5892), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6534), 1, + sym_expr_interpolated, + ACTIONS(8962), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [211977] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1857), 1, - sym__entry_separator, - ACTIONS(9230), 1, - anon_sym_DOT, - STATE(3082), 1, - sym_cell_path, - STATE(5941), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + ACTIONS(9112), 1, + anon_sym_RBRACK, + STATE(5729), 1, sym_comment, - STATE(6174), 1, - aux_sym_cell_path_repeat1, - STATE(6792), 1, - sym_path, - ACTIONS(1855), 2, + STATE(6065), 1, + aux_sym_shebang_repeat1, + STATE(6837), 1, + sym_val_list, + STATE(7222), 1, + aux_sym_val_table_repeat1, + [212002] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + ACTIONS(9114), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [214959] = 8, + STATE(5730), 1, + sym_comment, + STATE(6066), 1, + aux_sym_shebang_repeat1, + STATE(6842), 1, + sym_val_list, + STATE(7224), 1, + aux_sym_val_table_repeat1, + [212027] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9020), 1, + aux_sym_path_token1, + ACTIONS(9116), 1, + anon_sym_DQUOTE, + STATE(1089), 1, + sym_val_string, + STATE(3120), 1, + sym__str_double_quotes, + STATE(5731), 1, + sym_comment, + ACTIONS(9118), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [212050] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1798), 1, - sym__entry_separator, - ACTIONS(9230), 1, - anon_sym_DOT, - STATE(3083), 1, - sym_cell_path, - STATE(5942), 1, + ACTIONS(8960), 1, + anon_sym_LPAREN, + ACTIONS(9120), 1, + anon_sym_DQUOTE2, + STATE(5732), 1, sym_comment, - STATE(6174), 1, - aux_sym_cell_path_repeat1, - STATE(6792), 1, - sym_path, - ACTIONS(1796), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [214985] = 8, + STATE(5733), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6534), 1, + sym_expr_interpolated, + ACTIONS(8962), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [212073] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1810), 1, - sym__entry_separator, - ACTIONS(9230), 1, - anon_sym_DOT, - STATE(3084), 1, - sym_cell_path, - STATE(5943), 1, + ACTIONS(8960), 1, + anon_sym_LPAREN, + ACTIONS(9122), 1, + anon_sym_DQUOTE2, + STATE(5733), 1, sym_comment, - STATE(6174), 1, - aux_sym_cell_path_repeat1, - STATE(6792), 1, - sym_path, - ACTIONS(1808), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [215011] = 3, + STATE(5892), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6534), 1, + sym_expr_interpolated, + ACTIONS(8962), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [212096] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(5944), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + ACTIONS(9124), 1, + anon_sym_RBRACK, + STATE(5734), 1, sym_comment, - ACTIONS(9338), 7, - sym_identifier, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [215027] = 8, + STATE(6067), 1, + aux_sym_shebang_repeat1, + STATE(6865), 1, + sym_val_list, + STATE(7228), 1, + aux_sym_val_table_repeat1, + [212121] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, + ACTIONS(2808), 1, sym__newline, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - ACTIONS(9342), 1, + ACTIONS(9126), 1, anon_sym_RBRACK, - STATE(5945), 1, + STATE(5735), 1, sym_comment, - STATE(6339), 1, + STATE(6068), 1, aux_sym_shebang_repeat1, - STATE(7415), 1, - aux_sym_val_table_repeat1, - STATE(7526), 1, + STATE(6868), 1, sym_val_list, - [215052] = 7, + STATE(7230), 1, + aux_sym_val_table_repeat1, + [212146] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9344), 1, + ACTIONS(439), 1, anon_sym_DQUOTE, - ACTIONS(9348), 1, + ACTIONS(9038), 1, aux_sym_path_token1, - STATE(5946), 1, - sym_comment, - STATE(6294), 1, + STATE(1463), 1, sym_val_string, - STATE(6380), 1, + STATE(1946), 1, sym__str_double_quotes, - ACTIONS(9346), 2, + STATE(5736), 1, + sym_comment, + ACTIONS(441), 2, sym__str_single_quotes, sym__str_back_ticks, - [215075] = 8, + [212169] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9276), 1, - anon_sym_alias, - ACTIONS(9278), 1, - anon_sym_const, - ACTIONS(9280), 1, - anon_sym_def, - ACTIONS(9282), 1, - anon_sym_extern, - ACTIONS(9284), 1, - anon_sym_module, - ACTIONS(9286), 1, - anon_sym_use, - STATE(5947), 1, + ACTIONS(9128), 1, + anon_sym_EQ2, + ACTIONS(9130), 1, + sym_short_flag_identifier, + STATE(5737), 1, sym_comment, - [215100] = 7, + ACTIONS(4747), 2, + anon_sym_DASH_DASH, + anon_sym_DASH, + ACTIONS(4749), 2, + anon_sym_DOLLAR, + aux_sym_ctrl_match_token1, + [212190] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1457), 1, + STATE(5738), 1, + sym_comment, + ACTIONS(1755), 2, + anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(8685), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8687), 1, - aux_sym__immediate_decimal_token5, - STATE(5948), 1, + ACTIONS(1757), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [212207] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8960), 1, + anon_sym_LPAREN, + ACTIONS(9132), 1, + anon_sym_DQUOTE2, + STATE(5739), 1, sym_comment, - STATE(7915), 1, - sym__immediate_decimal, - ACTIONS(8683), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [215123] = 8, + STATE(5740), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6534), 1, + sym_expr_interpolated, + ACTIONS(8962), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [212230] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8960), 1, + anon_sym_LPAREN, + ACTIONS(9134), 1, + anon_sym_DQUOTE2, + STATE(5740), 1, + sym_comment, + STATE(5892), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6534), 1, + sym_expr_interpolated, + ACTIONS(8962), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [212253] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, + ACTIONS(2808), 1, sym__newline, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - ACTIONS(9350), 1, + ACTIONS(9136), 1, anon_sym_RBRACK, - STATE(5949), 1, + STATE(5741), 1, sym_comment, - STATE(6319), 1, + STATE(6069), 1, aux_sym_shebang_repeat1, - STATE(7292), 1, + STATE(6887), 1, sym_val_list, - STATE(7321), 1, + STATE(7235), 1, aux_sym_val_table_repeat1, - [215148] = 5, + [212278] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6298), 1, - aux_sym_ctrl_match_token1, - STATE(5950), 1, - sym_comment, - STATE(6737), 1, - sym_block, - ACTIONS(9352), 4, + ACTIONS(2808), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215167] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6298), 1, - aux_sym_ctrl_match_token1, - STATE(5951), 1, + ACTIONS(8956), 1, + anon_sym_LBRACK, + ACTIONS(9138), 1, + anon_sym_RBRACK, + STATE(5742), 1, sym_comment, - STATE(6739), 1, - sym_block, - ACTIONS(9352), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215186] = 5, + STATE(6070), 1, + aux_sym_shebang_repeat1, + STATE(6891), 1, + sym_val_list, + STATE(7237), 1, + aux_sym_val_table_repeat1, + [212303] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6298), 1, - aux_sym_ctrl_match_token1, - STATE(5952), 1, + ACTIONS(3461), 1, + anon_sym_DQUOTE, + ACTIONS(9140), 1, + aux_sym_path_token1, + STATE(3509), 1, + sym__str_double_quotes, + STATE(3516), 1, + sym_val_string, + STATE(5743), 1, sym_comment, - STATE(6767), 1, - sym_block, - ACTIONS(9354), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215205] = 7, + ACTIONS(3463), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [212326] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9356), 1, + ACTIONS(8960), 1, anon_sym_LPAREN, - ACTIONS(9360), 1, + ACTIONS(9142), 1, anon_sym_DQUOTE2, - STATE(5953), 1, + STATE(5744), 1, sym_comment, - STATE(5956), 1, + STATE(5745), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6937), 1, + STATE(6534), 1, sym_expr_interpolated, - ACTIONS(9358), 2, + ACTIONS(8962), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [215228] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4722), 1, - aux_sym_unquoted_token3, - ACTIONS(8378), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8901), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8903), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8905), 1, - aux_sym__immediate_decimal_token5, - STATE(5954), 1, - sym_comment, - STATE(6684), 1, - sym__immediate_decimal, - [215253] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4722), 1, - aux_sym_unquoted_token3, - ACTIONS(8683), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8907), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8909), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8911), 1, - aux_sym__immediate_decimal_token5, - STATE(5955), 1, - sym_comment, - STATE(7761), 1, - sym__immediate_decimal, - [215278] = 7, + [212349] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9356), 1, + ACTIONS(8960), 1, anon_sym_LPAREN, - ACTIONS(9362), 1, + ACTIONS(9144), 1, anon_sym_DQUOTE2, - STATE(5956), 1, + STATE(5745), 1, sym_comment, - STATE(6177), 1, + STATE(5892), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6937), 1, + STATE(6534), 1, sym_expr_interpolated, - ACTIONS(9358), 2, + ACTIONS(8962), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [215301] = 8, + [212372] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, + ACTIONS(2808), 1, sym__newline, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - ACTIONS(9364), 1, + ACTIONS(9146), 1, anon_sym_RBRACK, - STATE(5957), 1, + STATE(5746), 1, sym_comment, - STATE(6334), 1, + STATE(6071), 1, aux_sym_shebang_repeat1, - STATE(7334), 1, + STATE(6908), 1, sym_val_list, - STATE(7399), 1, + STATE(7241), 1, aux_sym_val_table_repeat1, - [215326] = 8, + [212397] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, + ACTIONS(2808), 1, sym__newline, - ACTIONS(9366), 1, - aux_sym_ctrl_match_token1, - STATE(1814), 1, - sym_val_closure, - STATE(1850), 1, - sym_block, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(5323), 1, - sym__blosure, - STATE(5958), 1, - sym_comment, - [215351] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - ACTIONS(9368), 1, + ACTIONS(9148), 1, anon_sym_RBRACK, - STATE(5959), 1, + STATE(5747), 1, sym_comment, - STATE(6299), 1, + STATE(6072), 1, aux_sym_shebang_repeat1, - STATE(7041), 1, + STATE(6912), 1, sym_val_list, - STATE(7312), 1, + STATE(7243), 1, aux_sym_val_table_repeat1, - [215376] = 8, + [212422] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4245), 1, + anon_sym_DQUOTE, + ACTIONS(9150), 1, + aux_sym_path_token1, + STATE(4462), 1, + sym__str_double_quotes, + STATE(4530), 1, + sym_val_string, + STATE(5748), 1, + sym_comment, + ACTIONS(4247), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [212445] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, + ACTIONS(2808), 1, sym__newline, - ACTIONS(9366), 1, - aux_sym_ctrl_match_token1, - STATE(1814), 1, - sym_val_closure, - STATE(1850), 1, - sym_block, - STATE(5244), 1, - sym__blosure, - STATE(5960), 1, + ACTIONS(8956), 1, + anon_sym_LBRACK, + ACTIONS(9152), 1, + anon_sym_RBRACK, + STATE(5749), 1, sym_comment, - STATE(6043), 1, + STATE(6073), 1, aux_sym_shebang_repeat1, - [215401] = 8, + STATE(6925), 1, + sym_val_list, + STATE(7247), 1, + aux_sym_val_table_repeat1, + [212470] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, + ACTIONS(2808), 1, sym__newline, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - ACTIONS(9370), 1, + ACTIONS(9154), 1, anon_sym_RBRACK, - STATE(5961), 1, + STATE(5750), 1, sym_comment, - STATE(6335), 1, + STATE(6074), 1, aux_sym_shebang_repeat1, - STATE(7342), 1, + STATE(6929), 1, sym_val_list, - STATE(7401), 1, + STATE(7250), 1, aux_sym_val_table_repeat1, - [215426] = 7, + [212495] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2939), 1, + ACTIONS(9156), 1, anon_sym_DQUOTE, - ACTIONS(9372), 1, + ACTIONS(9160), 1, aux_sym_path_token1, - STATE(5771), 1, - sym_val_string, - STATE(5801), 1, + STATE(1085), 1, sym__str_double_quotes, - STATE(5962), 1, + STATE(1174), 1, + sym_val_string, + STATE(5751), 1, sym_comment, - ACTIONS(2941), 2, + ACTIONS(9158), 2, sym__str_single_quotes, sym__str_back_ticks, - [215449] = 8, + [212518] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9374), 1, - anon_sym_alias, - ACTIONS(9376), 1, - anon_sym_const, - ACTIONS(9378), 1, - anon_sym_def, - ACTIONS(9380), 1, - anon_sym_extern, - ACTIONS(9382), 1, - anon_sym_module, - ACTIONS(9384), 1, - anon_sym_use, - STATE(5963), 1, + ACTIONS(5026), 1, + anon_sym_DASH, + STATE(5752), 1, sym_comment, - [215474] = 8, - ACTIONS(3), 1, + ACTIONS(5024), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [212535] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8378), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8901), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8903), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8905), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9386), 1, - aux_sym_unquoted_token3, - STATE(5964), 1, + ACTIONS(5030), 1, + anon_sym_DASH, + STATE(5753), 1, sym_comment, - STATE(6684), 1, - sym__immediate_decimal, - [215499] = 6, + ACTIONS(5028), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [212552] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4944), 1, - anon_sym_DOLLAR, - ACTIONS(9388), 1, - anon_sym_EQ2, - ACTIONS(9390), 1, - sym_short_flag_identifier, - STATE(5965), 1, + ACTIONS(6490), 1, + anon_sym_DOT_DOT2, + STATE(5754), 1, sym_comment, - ACTIONS(4942), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH, - [215520] = 8, - ACTIONS(3), 1, + ACTIONS(6492), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5869), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [212571] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1782), 1, - anon_sym_RBRACE, - ACTIONS(1784), 1, - sym__entry_separator, - ACTIONS(9230), 1, - anon_sym_DOT, - STATE(569), 1, - sym_cell_path, - STATE(5966), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + ACTIONS(9162), 1, + anon_sym_RBRACK, + STATE(5755), 1, sym_comment, - STATE(6174), 1, - aux_sym_cell_path_repeat1, - STATE(6792), 1, - sym_path, - [215545] = 7, - ACTIONS(3), 1, + STATE(6075), 1, + aux_sym_shebang_repeat1, + STATE(6939), 1, + sym_val_list, + STATE(7254), 1, + aux_sym_val_table_repeat1, + [212596] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9356), 1, - anon_sym_LPAREN, - ACTIONS(9392), 1, - anon_sym_DQUOTE2, - STATE(5967), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + ACTIONS(9164), 1, + anon_sym_RBRACK, + STATE(5756), 1, sym_comment, - STATE(5970), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6937), 1, - sym_expr_interpolated, - ACTIONS(9358), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [215568] = 8, - ACTIONS(3), 1, + STATE(6076), 1, + aux_sym_shebang_repeat1, + STATE(6944), 1, + sym_val_list, + STATE(7256), 1, + aux_sym_val_table_repeat1, + [212621] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7183), 1, - aux_sym_unquoted_token3, - ACTIONS(8378), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8901), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8903), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8905), 1, - aux_sym__immediate_decimal_token5, - STATE(5968), 1, + ACTIONS(9166), 1, + anon_sym_DQUOTE, + ACTIONS(9170), 1, + aux_sym_path_token1, + STATE(2227), 1, + sym_val_string, + STATE(2341), 1, + sym__str_double_quotes, + STATE(5757), 1, sym_comment, - STATE(6684), 1, - sym__immediate_decimal, - [215593] = 8, + ACTIONS(9168), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [212644] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7183), 1, - aux_sym_unquoted_token3, - ACTIONS(8683), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8907), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8909), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8911), 1, - aux_sym__immediate_decimal_token5, - STATE(5969), 1, + STATE(5758), 1, sym_comment, - STATE(7761), 1, - sym__immediate_decimal, - [215618] = 7, + ACTIONS(1050), 2, + anon_sym_DOT, + sym__entry_separator, + ACTIONS(1048), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym__, + anon_sym_QMARK2, + [212661] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9356), 1, - anon_sym_LPAREN, - ACTIONS(9394), 1, - anon_sym_DQUOTE2, - STATE(5970), 1, + ACTIONS(9172), 1, + anon_sym_DOT, + ACTIONS(9174), 1, + aux_sym__immediate_decimal_token2, + STATE(5759), 1, sym_comment, - STATE(6177), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6937), 1, - sym_expr_interpolated, - ACTIONS(9358), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [215641] = 5, + ACTIONS(1643), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1645), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [212682] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6298), 1, - aux_sym_ctrl_match_token1, - STATE(5971), 1, - sym_comment, - STATE(6402), 1, - sym_block, - ACTIONS(9396), 4, + ACTIONS(2808), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215660] = 8, + ACTIONS(8956), 1, + anon_sym_LBRACK, + ACTIONS(9176), 1, + anon_sym_RBRACK, + STATE(5760), 1, + sym_comment, + STATE(6077), 1, + aux_sym_shebang_repeat1, + STATE(6958), 1, + sym_val_list, + STATE(7261), 1, + aux_sym_val_table_repeat1, + [212707] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, + ACTIONS(2808), 1, sym__newline, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - ACTIONS(9398), 1, + ACTIONS(9178), 1, anon_sym_RBRACK, - STATE(5972), 1, + STATE(5761), 1, sym_comment, - STATE(6336), 1, + STATE(6078), 1, aux_sym_shebang_repeat1, - STATE(7406), 1, - aux_sym_val_table_repeat1, - STATE(7427), 1, + STATE(6961), 1, sym_val_list, - [215685] = 5, + STATE(7263), 1, + aux_sym_val_table_repeat1, + [212732] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6298), 1, - aux_sym_ctrl_match_token1, - STATE(5973), 1, + ACTIONS(9116), 1, + anon_sym_DQUOTE, + ACTIONS(9180), 1, + aux_sym_path_token1, + STATE(3114), 1, + sym_val_string, + STATE(3120), 1, + sym__str_double_quotes, + STATE(5762), 1, sym_comment, - STATE(6414), 1, - sym_block, - ACTIONS(9396), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215704] = 4, + ACTIONS(9118), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [212755] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5131), 1, - anon_sym_DASH, - STATE(5974), 1, - sym_comment, - ACTIONS(5129), 5, - ts_builtin_sym_end, + ACTIONS(2808), 1, sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [215721] = 8, + ACTIONS(8956), 1, + anon_sym_LBRACK, + ACTIONS(9182), 1, + anon_sym_RBRACK, + STATE(5763), 1, + sym_comment, + STATE(6079), 1, + aux_sym_shebang_repeat1, + STATE(6969), 1, + sym_val_list, + STATE(7267), 1, + aux_sym_val_table_repeat1, + [212780] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, + ACTIONS(2808), 1, sym__newline, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - ACTIONS(9400), 1, + ACTIONS(9184), 1, anon_sym_RBRACK, - STATE(5975), 1, + STATE(5764), 1, sym_comment, - STATE(6337), 1, + STATE(6080), 1, aux_sym_shebang_repeat1, - STATE(7408), 1, - aux_sym_val_table_repeat1, - STATE(7444), 1, + STATE(6974), 1, sym_val_list, - [215746] = 7, + STATE(7269), 1, + aux_sym_val_table_repeat1, + [212805] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9402), 1, + ACTIONS(4283), 1, anon_sym_DQUOTE, - ACTIONS(9406), 1, + ACTIONS(9186), 1, aux_sym_path_token1, - STATE(5976), 1, - sym_comment, - STATE(6259), 1, + STATE(4280), 1, sym_val_string, - STATE(6301), 1, + STATE(4321), 1, sym__str_double_quotes, - ACTIONS(9404), 2, + STATE(5765), 1, + sym_comment, + ACTIONS(4285), 2, sym__str_single_quotes, sym__str_back_ticks, - [215769] = 6, + [212828] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9408), 1, + ACTIONS(9188), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9410), 1, + ACTIONS(9190), 1, aux_sym__immediate_decimal_token2, - STATE(5977), 1, + STATE(5766), 1, sym_comment, - ACTIONS(1569), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1571), 2, + ACTIONS(1631), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1633), 2, anon_sym_LPAREN2, sym__entry_separator, - [215790] = 7, - ACTIONS(3), 1, + [212849] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9356), 1, - anon_sym_LPAREN, - ACTIONS(9412), 1, - anon_sym_DQUOTE2, - STATE(5978), 1, + ACTIONS(9192), 1, + anon_sym_DQUOTE, + ACTIONS(9196), 1, + aux_sym_path_token1, + STATE(1274), 1, + sym__str_double_quotes, + STATE(1296), 1, + sym_val_string, + STATE(5767), 1, sym_comment, - STATE(5982), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6937), 1, - sym_expr_interpolated, - ACTIONS(9358), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [215813] = 4, + ACTIONS(9194), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [212872] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5168), 1, - anon_sym_DASH, - STATE(5979), 1, - sym_comment, - ACTIONS(5166), 5, - ts_builtin_sym_end, + ACTIONS(2808), 1, sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [215830] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7127), 1, - aux_sym_unquoted_token3, - ACTIONS(8378), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8901), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8903), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8905), 1, - aux_sym__immediate_decimal_token5, - STATE(5980), 1, - sym_comment, - STATE(6684), 1, - sym__immediate_decimal, - [215855] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7127), 1, - aux_sym_unquoted_token3, - ACTIONS(8683), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8907), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8909), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8911), 1, - aux_sym__immediate_decimal_token5, - STATE(5981), 1, + ACTIONS(8956), 1, + anon_sym_LBRACK, + ACTIONS(9198), 1, + anon_sym_RBRACK, + STATE(5768), 1, sym_comment, - STATE(7761), 1, - sym__immediate_decimal, - [215880] = 7, - ACTIONS(3), 1, + STATE(5911), 1, + aux_sym_shebang_repeat1, + STATE(6780), 1, + sym_val_list, + STATE(6833), 1, + aux_sym_val_table_repeat1, + [212897] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9356), 1, - anon_sym_LPAREN, - ACTIONS(9414), 1, - anon_sym_DQUOTE2, - STATE(5982), 1, + ACTIONS(9200), 1, + anon_sym_DQUOTE, + ACTIONS(9204), 1, + aux_sym_path_token1, + STATE(1416), 1, + sym__str_double_quotes, + STATE(1454), 1, + sym_val_string, + STATE(5769), 1, sym_comment, - STATE(6177), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6937), 1, - sym_expr_interpolated, - ACTIONS(9358), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [215903] = 8, - ACTIONS(3), 1, + ACTIONS(9202), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [212920] = 7, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7353), 1, - anon_sym_RBRACK, - ACTIONS(7355), 1, - sym__entry_separator, - ACTIONS(9230), 1, - anon_sym_DOT, - STATE(5983), 1, + ACTIONS(9206), 1, + aux_sym_path_token1, + STATE(1389), 1, + sym__str_double_quotes, + STATE(5770), 1, sym_comment, - STATE(6174), 1, - aux_sym_cell_path_repeat1, - STATE(6792), 1, - sym_path, - STATE(7593), 1, - sym_cell_path, - [215928] = 6, - ACTIONS(3), 1, + STATE(6136), 1, + sym_val_string, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [212943] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1941), 1, - sym__entry_separator, - ACTIONS(9416), 1, - anon_sym_DOT_DOT2, - STATE(5984), 1, + ACTIONS(9208), 1, + anon_sym_DQUOTE, + ACTIONS(9212), 1, + aux_sym_path_token1, + STATE(4051), 1, + sym__str_double_quotes, + STATE(4073), 1, + sym_val_string, + STATE(5771), 1, sym_comment, - ACTIONS(1935), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(9418), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [215949] = 8, + ACTIONS(9210), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [212966] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9420), 1, - anon_sym_RBRACK, - STATE(5985), 1, + ACTIONS(9214), 1, + anon_sym_DQUOTE, + ACTIONS(9218), 1, + aux_sym_path_token1, + STATE(2580), 1, + sym__str_double_quotes, + STATE(2604), 1, + sym_val_string, + STATE(5772), 1, sym_comment, - STATE(6340), 1, - aux_sym_shebang_repeat1, - STATE(7417), 1, - aux_sym_val_table_repeat1, - STATE(7534), 1, - sym_val_list, - [215974] = 7, + ACTIONS(9216), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [212989] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(511), 1, + ACTIONS(9220), 1, anon_sym_DQUOTE, - ACTIONS(9422), 1, + ACTIONS(9224), 1, aux_sym_path_token1, - STATE(1851), 1, + STATE(4032), 1, sym__str_double_quotes, - STATE(2157), 1, + STATE(4037), 1, sym_val_string, - STATE(5986), 1, + STATE(5773), 1, sym_comment, - ACTIONS(513), 2, + ACTIONS(9222), 2, sym__str_single_quotes, sym__str_back_ticks, - [215997] = 8, + [213012] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9424), 1, - anon_sym_RBRACK, - STATE(5987), 1, + ACTIONS(9226), 1, + anon_sym_DQUOTE, + ACTIONS(9230), 1, + aux_sym_path_token1, + STATE(3346), 1, + sym__str_double_quotes, + STATE(3351), 1, + sym_val_string, + STATE(5774), 1, sym_comment, - STATE(6297), 1, - aux_sym_shebang_repeat1, - STATE(7307), 1, - aux_sym_val_table_repeat1, - STATE(7436), 1, - sym_val_list, - [216022] = 5, + ACTIONS(9228), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [213035] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9274), 1, - aux_sym_ctrl_match_token1, - STATE(5988), 1, + ACTIONS(9232), 1, + anon_sym_DQUOTE, + ACTIONS(9236), 1, + aux_sym_path_token1, + STATE(1212), 1, + sym_val_string, + STATE(1222), 1, + sym__str_double_quotes, + STATE(5775), 1, sym_comment, - STATE(6595), 1, - sym_val_record, - ACTIONS(9426), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [216041] = 7, - ACTIONS(3), 1, + ACTIONS(9234), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [213058] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9356), 1, - anon_sym_LPAREN, - ACTIONS(9428), 1, - anon_sym_DQUOTE2, - STATE(5989), 1, + ACTIONS(9238), 1, + anon_sym_DQUOTE, + ACTIONS(9242), 1, + aux_sym_path_token1, + STATE(3936), 1, + sym_val_string, + STATE(3949), 1, + sym__str_double_quotes, + STATE(5776), 1, sym_comment, - STATE(5992), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6937), 1, - sym_expr_interpolated, - ACTIONS(9358), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [216064] = 8, - ACTIONS(3), 1, + ACTIONS(9240), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [213081] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6600), 1, - aux_sym_unquoted_token3, - ACTIONS(8378), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8901), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8903), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8905), 1, - aux_sym__immediate_decimal_token5, - STATE(5990), 1, + ACTIONS(9206), 1, + aux_sym_path_token1, + ACTIONS(9244), 1, + anon_sym_DQUOTE, + STATE(5777), 1, sym_comment, - STATE(6684), 1, - sym__immediate_decimal, - [216089] = 8, - ACTIONS(3), 1, + STATE(6136), 1, + sym_val_string, + STATE(6901), 1, + sym__str_double_quotes, + ACTIONS(9246), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [213104] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6600), 1, - aux_sym_unquoted_token3, - ACTIONS(8683), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8907), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8909), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8911), 1, - aux_sym__immediate_decimal_token5, - STATE(5991), 1, + ACTIONS(9248), 1, + anon_sym_DQUOTE, + ACTIONS(9252), 1, + aux_sym_path_token1, + STATE(2635), 1, + sym__str_double_quotes, + STATE(2652), 1, + sym_val_string, + STATE(5778), 1, sym_comment, - STATE(7761), 1, - sym__immediate_decimal, - [216114] = 7, - ACTIONS(3), 1, + ACTIONS(9250), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [213127] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9356), 1, - anon_sym_LPAREN, - ACTIONS(9430), 1, - anon_sym_DQUOTE2, - STATE(5992), 1, + ACTIONS(9254), 1, + anon_sym_DQUOTE, + ACTIONS(9258), 1, + aux_sym_path_token1, + STATE(2893), 1, + sym__str_double_quotes, + STATE(2922), 1, + sym_val_string, + STATE(5779), 1, sym_comment, - STATE(6177), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6937), 1, - sym_expr_interpolated, - ACTIONS(9358), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [216137] = 7, + ACTIONS(9256), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [213150] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9432), 1, + ACTIONS(9260), 1, anon_sym_DQUOTE, - ACTIONS(9436), 1, + ACTIONS(9264), 1, aux_sym_path_token1, - STATE(1394), 1, - sym_val_string, - STATE(1401), 1, + STATE(360), 1, sym__str_double_quotes, - STATE(5993), 1, + STATE(396), 1, + sym_val_string, + STATE(5780), 1, sym_comment, - ACTIONS(9434), 2, + ACTIONS(9262), 2, sym__str_single_quotes, sym__str_back_ticks, - [216160] = 8, + [213173] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, + ACTIONS(2808), 1, sym__newline, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - ACTIONS(9438), 1, + ACTIONS(9266), 1, anon_sym_RBRACK, - STATE(5994), 1, + STATE(5781), 1, sym_comment, - STATE(6342), 1, + STATE(6050), 1, aux_sym_shebang_repeat1, - STATE(6962), 1, - sym_val_list, - STATE(7422), 1, + STATE(7163), 1, aux_sym_val_table_repeat1, - [216185] = 4, + STATE(7177), 1, + sym_val_list, + [213198] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5135), 1, - anon_sym_DASH, - STATE(5995), 1, + ACTIONS(3547), 1, + anon_sym_DQUOTE, + ACTIONS(9268), 1, + aux_sym_path_token1, + STATE(4678), 1, + sym_val_string, + STATE(4690), 1, + sym__str_double_quotes, + STATE(5782), 1, sym_comment, - ACTIONS(5133), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [216202] = 8, + ACTIONS(3549), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [213221] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9440), 1, - anon_sym_RBRACK, - STATE(5996), 1, + ACTIONS(9270), 1, + anon_sym_DQUOTE, + ACTIONS(9274), 1, + aux_sym_path_token1, + STATE(4180), 1, + sym_val_string, + STATE(4200), 1, + sym__str_double_quotes, + STATE(5783), 1, sym_comment, - STATE(6343), 1, - aux_sym_shebang_repeat1, - STATE(6966), 1, - sym_val_list, - STATE(7424), 1, - aux_sym_val_table_repeat1, - [216227] = 7, + ACTIONS(9272), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [213244] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9442), 1, + ACTIONS(4352), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(9276), 1, aux_sym_path_token1, - STATE(1319), 1, + STATE(3471), 1, sym__str_double_quotes, - STATE(1381), 1, + STATE(3477), 1, sym_val_string, - STATE(5997), 1, + STATE(5784), 1, sym_comment, - ACTIONS(9444), 2, + ACTIONS(4354), 2, sym__str_single_quotes, sym__str_back_ticks, - [216250] = 6, + [213267] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1473), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(9448), 1, - anon_sym_DOT, - ACTIONS(9450), 1, - aux_sym__immediate_decimal_token2, - STATE(5998), 1, + ACTIONS(9278), 1, + anon_sym_DQUOTE, + ACTIONS(9282), 1, + aux_sym_path_token1, + STATE(2570), 1, + sym__str_double_quotes, + STATE(2597), 1, + sym_val_string, + STATE(5785), 1, sym_comment, - ACTIONS(1475), 3, - sym_filesize_unit, - sym_duration_unit, - aux_sym_record_entry_token1, - [216271] = 5, + ACTIONS(9280), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [213290] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9274), 1, - aux_sym_ctrl_match_token1, - STATE(5999), 1, - sym_comment, - STATE(6599), 1, - sym_val_record, - ACTIONS(9452), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [216290] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1008), 1, - aux_sym_ctrl_match_token1, - ACTIONS(2083), 1, - aux_sym_unquoted_token4, - STATE(6000), 1, + ACTIONS(9284), 1, + anon_sym_DQUOTE, + ACTIONS(9288), 1, + aux_sym_path_token1, + STATE(2806), 1, + sym_val_string, + STATE(2807), 1, + sym__str_double_quotes, + STATE(5786), 1, sym_comment, - ACTIONS(1006), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - [216309] = 7, - ACTIONS(3), 1, + ACTIONS(9286), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [213313] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9356), 1, - anon_sym_LPAREN, - ACTIONS(9454), 1, - anon_sym_DQUOTE2, - STATE(6001), 1, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + ACTIONS(9294), 1, + aux_sym_path_token1, + STATE(137), 1, + sym_val_string, + STATE(139), 1, + sym__str_double_quotes, + STATE(5787), 1, sym_comment, - STATE(6004), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6937), 1, - sym_expr_interpolated, - ACTIONS(9358), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [216332] = 8, - ACTIONS(3), 1, + ACTIONS(9292), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [213336] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4702), 1, - aux_sym_unquoted_token3, - ACTIONS(8378), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8901), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8903), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8905), 1, - aux_sym__immediate_decimal_token5, - STATE(6002), 1, + ACTIONS(9296), 1, + anon_sym_DQUOTE, + ACTIONS(9300), 1, + aux_sym_path_token1, + STATE(441), 1, + sym_val_string, + STATE(442), 1, + sym__str_double_quotes, + STATE(5788), 1, sym_comment, - STATE(6684), 1, - sym__immediate_decimal, - [216357] = 8, - ACTIONS(3), 1, + ACTIONS(9298), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [213359] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4702), 1, - aux_sym_unquoted_token3, - ACTIONS(8683), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8907), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8909), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8911), 1, - aux_sym__immediate_decimal_token5, - STATE(6003), 1, + ACTIONS(9302), 1, + anon_sym_DQUOTE, + ACTIONS(9306), 1, + aux_sym_path_token1, + STATE(319), 1, + sym__str_double_quotes, + STATE(339), 1, + sym_val_string, + STATE(5789), 1, sym_comment, - STATE(7761), 1, - sym__immediate_decimal, - [216382] = 7, - ACTIONS(3), 1, + ACTIONS(9304), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [213382] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9356), 1, - anon_sym_LPAREN, - ACTIONS(9456), 1, - anon_sym_DQUOTE2, - STATE(6004), 1, + ACTIONS(9308), 1, + anon_sym_DQUOTE, + ACTIONS(9312), 1, + aux_sym_path_token1, + STATE(243), 1, + sym_val_string, + STATE(244), 1, + sym__str_double_quotes, + STATE(5790), 1, sym_comment, - STATE(6177), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6937), 1, - sym_expr_interpolated, - ACTIONS(9358), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [216405] = 8, + ACTIONS(9310), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [213405] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, + ACTIONS(2808), 1, sym__newline, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - ACTIONS(9458), 1, + ACTIONS(9314), 1, anon_sym_RBRACK, - STATE(6005), 1, + STATE(5791), 1, sym_comment, - STATE(6344), 1, + STATE(5945), 1, aux_sym_shebang_repeat1, - STATE(6986), 1, + STATE(6860), 1, sym_val_list, - STATE(7429), 1, + STATE(6871), 1, aux_sym_val_table_repeat1, - [216430] = 4, + [213430] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2057), 1, + sym__entry_separator, + ACTIONS(9316), 1, + anon_sym_DOT_DOT2, + STATE(5792), 1, + sym_comment, + ACTIONS(2051), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(9318), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [213451] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9320), 1, + anon_sym_DOT, + ACTIONS(9322), 1, + aux_sym__immediate_decimal_token2, + STATE(5793), 1, + sym_comment, + ACTIONS(1643), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1645), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [213472] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1078), 1, + sym__entry_separator, + ACTIONS(9324), 1, + anon_sym_DOT_DOT2, + STATE(5794), 1, + sym_comment, + ACTIONS(1076), 2, + anon_sym_RBRACE, + anon_sym__, + ACTIONS(9326), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [213493] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9264), 1, + ACTIONS(8915), 1, anon_sym_DASH, - STATE(6006), 1, + STATE(5795), 1, sym_comment, - ACTIONS(9262), 5, + ACTIONS(8913), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [216447] = 5, - ACTIONS(247), 1, + [213510] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6687), 1, + ACTIONS(2049), 1, + sym__entry_separator, + ACTIONS(9328), 1, anon_sym_DOT_DOT2, - STATE(6007), 1, + STATE(5796), 1, sym_comment, - ACTIONS(6689), 2, + ACTIONS(2043), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(9330), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(6042), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [216466] = 8, - ACTIONS(3), 1, + [213531] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4920), 1, - aux_sym_unquoted_token3, - ACTIONS(8378), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8901), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8903), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8905), 1, - aux_sym__immediate_decimal_token5, - STATE(6008), 1, + ACTIONS(3215), 1, + aux_sym_record_entry_token1, + ACTIONS(8273), 1, + sym_identifier, + ACTIONS(8992), 1, + anon_sym_DOLLAR, + STATE(5319), 1, + sym_val_variable, + STATE(5797), 1, sym_comment, - STATE(6287), 1, - sym__immediate_decimal, - [216491] = 8, + STATE(5967), 1, + sym__variable_name, + STATE(6547), 1, + sym__assignment_pattern, + [213556] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9460), 1, - anon_sym_RBRACK, - STATE(6009), 1, + ACTIONS(3215), 1, + aux_sym_record_entry_token1, + ACTIONS(8273), 1, + sym_identifier, + ACTIONS(8992), 1, + anon_sym_DOLLAR, + STATE(5319), 1, + sym_val_variable, + STATE(5798), 1, sym_comment, - STATE(6345), 1, - aux_sym_shebang_repeat1, - STATE(6991), 1, - sym_val_list, - STATE(7432), 1, - aux_sym_val_table_repeat1, - [216516] = 7, - ACTIONS(233), 1, - anon_sym_DQUOTE, + STATE(5967), 1, + sym__variable_name, + STATE(6550), 1, + sym__assignment_pattern, + [213581] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9462), 1, - aux_sym_path_token1, - STATE(1560), 1, - sym_val_string, - STATE(1668), 1, - sym__str_double_quotes, - STATE(6010), 1, - sym_comment, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [216539] = 5, + ACTIONS(3215), 1, + aux_sym_record_entry_token1, + ACTIONS(8273), 1, + sym_identifier, + ACTIONS(8992), 1, + anon_sym_DOLLAR, + STATE(5319), 1, + sym_val_variable, + STATE(5799), 1, + sym_comment, + STATE(5967), 1, + sym__variable_name, + STATE(6551), 1, + sym__assignment_pattern, + [213606] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6687), 1, + ACTIONS(1806), 1, + aux_sym_unquoted_token2, + ACTIONS(9332), 1, anon_sym_DOT_DOT2, - STATE(6011), 1, + STATE(5800), 1, sym_comment, - ACTIONS(6689), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(6048), 3, + ACTIONS(1804), 2, anon_sym_PIPE, - anon_sym_if, anon_sym_EQ_GT, - [216558] = 8, + ACTIONS(9334), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [213627] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4920), 1, - aux_sym_unquoted_token3, - ACTIONS(8683), 1, + STATE(5801), 1, + sym_comment, + ACTIONS(1042), 2, + anon_sym_DOT, + sym__entry_separator, + ACTIONS(1040), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym__, + anon_sym_QMARK2, + [213644] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9336), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8907), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8909), 1, + ACTIONS(9338), 1, + aux_sym__immediate_decimal_token2, + STATE(5802), 1, + sym_comment, + ACTIONS(1631), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1633), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [213665] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1553), 1, + aux_sym_unquoted_token2, + ACTIONS(8246), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8911), 1, + ACTIONS(8248), 1, aux_sym__immediate_decimal_token5, - STATE(6012), 1, + STATE(5803), 1, sym_comment, - STATE(7647), 1, + STATE(7468), 1, sym__immediate_decimal, - [216583] = 7, + ACTIONS(8244), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [213688] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9356), 1, - anon_sym_LPAREN, - ACTIONS(9464), 1, - anon_sym_DQUOTE2, - STATE(6013), 1, + ACTIONS(2297), 1, + aux_sym_ctrl_match_token1, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(5804), 1, sym_comment, - STATE(6017), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6937), 1, - sym_expr_interpolated, - ACTIONS(9358), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [216606] = 8, + ACTIONS(2293), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + [213707] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7091), 1, + ACTIONS(4618), 1, aux_sym_unquoted_token3, - ACTIONS(8378), 1, + ACTIONS(8171), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8901), 1, + ACTIONS(8557), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8903), 1, + ACTIONS(8559), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8905), 1, + ACTIONS(8561), 1, aux_sym__immediate_decimal_token5, - STATE(6014), 1, + STATE(5805), 1, sym_comment, - STATE(6684), 1, + STATE(6059), 1, sym__immediate_decimal, - [216631] = 8, + [213732] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1078), 1, + aux_sym_ctrl_match_token1, + ACTIONS(2241), 1, + aux_sym_unquoted_token4, + STATE(5806), 1, + sym_comment, + ACTIONS(1076), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + [213751] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7091), 1, + ACTIONS(4618), 1, aux_sym_unquoted_token3, - ACTIONS(8683), 1, + ACTIONS(8244), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8907), 1, + ACTIONS(8563), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8909), 1, + ACTIONS(8565), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8911), 1, + ACTIONS(8567), 1, aux_sym__immediate_decimal_token5, - STATE(6015), 1, + STATE(5807), 1, sym_comment, - STATE(7761), 1, + STATE(7433), 1, sym__immediate_decimal, - [216656] = 8, + [213776] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1078), 1, + sym__entry_separator, + ACTIONS(9340), 1, + anon_sym_DOT_DOT2, + STATE(5808), 1, + sym_comment, + ACTIONS(1076), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(9342), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [213797] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9466), 1, + ACTIONS(2808), 1, sym__newline, - ACTIONS(9468), 1, - anon_sym_SEMI, - ACTIONS(9470), 1, - anon_sym_RPAREN, - STATE(247), 1, - aux_sym__parenthesized_body_repeat1, - STATE(6016), 1, - sym_comment, - STATE(6501), 1, - aux_sym__block_body_repeat1, - STATE(7297), 1, + ACTIONS(8972), 1, + aux_sym_ctrl_match_token1, + STATE(1608), 1, + sym_block, + STATE(1609), 1, + sym_val_closure, + STATE(2586), 1, aux_sym_shebang_repeat1, - [216681] = 7, + STATE(4994), 1, + sym__blosure, + STATE(5809), 1, + sym_comment, + [213822] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9356), 1, + ACTIONS(8960), 1, anon_sym_LPAREN, - ACTIONS(9472), 1, + ACTIONS(9344), 1, anon_sym_DQUOTE2, - STATE(6017), 1, + STATE(5810), 1, sym_comment, - STATE(6177), 1, + STATE(5814), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6937), 1, + STATE(6534), 1, sym_expr_interpolated, - ACTIONS(9358), 2, + ACTIONS(8962), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [216704] = 8, + [213845] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9474), 1, - anon_sym_RBRACK, - STATE(6018), 1, + ACTIONS(8871), 1, + anon_sym_alias, + ACTIONS(8873), 1, + anon_sym_const, + ACTIONS(8875), 1, + anon_sym_def, + ACTIONS(8877), 1, + anon_sym_extern, + ACTIONS(8879), 1, + anon_sym_module, + ACTIONS(8881), 1, + anon_sym_use, + STATE(5811), 1, sym_comment, - STATE(6347), 1, - aux_sym_shebang_repeat1, - STATE(7019), 1, - sym_val_list, - STATE(7437), 1, - aux_sym_val_table_repeat1, - [216729] = 8, + [213870] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6636), 1, - aux_sym_unquoted_token3, - ACTIONS(8378), 1, + ACTIONS(8171), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8901), 1, + ACTIONS(8432), 1, + aux_sym_unquoted_token3, + ACTIONS(8557), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8903), 1, + ACTIONS(8559), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8905), 1, + ACTIONS(8561), 1, aux_sym__immediate_decimal_token5, - STATE(6019), 1, + STATE(5812), 1, sym_comment, - STATE(6684), 1, + STATE(6635), 1, sym__immediate_decimal, - [216754] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9476), 1, - anon_sym_RBRACK, - STATE(6020), 1, - sym_comment, - STATE(6348), 1, - aux_sym_shebang_repeat1, - STATE(7022), 1, - sym_val_list, - STATE(7440), 1, - aux_sym_val_table_repeat1, - [216779] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9478), 1, - anon_sym_DQUOTE, - ACTIONS(9482), 1, - aux_sym_path_token1, - STATE(1267), 1, - sym_val_string, - STATE(1273), 1, - sym__str_double_quotes, - STATE(6021), 1, - sym_comment, - ACTIONS(9480), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [216802] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1569), 1, - aux_sym_unquoted_token2, - ACTIONS(9484), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9486), 1, - aux_sym__immediate_decimal_token2, - STATE(6022), 1, - sym_comment, - ACTIONS(1571), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [216823] = 8, + [213895] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6636), 1, - aux_sym_unquoted_token3, - ACTIONS(8683), 1, + ACTIONS(8244), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8907), 1, + ACTIONS(8432), 1, + aux_sym_unquoted_token3, + ACTIONS(8563), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8909), 1, + ACTIONS(8565), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8911), 1, + ACTIONS(8567), 1, aux_sym__immediate_decimal_token5, - STATE(6023), 1, + STATE(5813), 1, sym_comment, - STATE(7761), 1, + STATE(7714), 1, sym__immediate_decimal, - [216848] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6024), 1, - sym_comment, - ACTIONS(1943), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(1945), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [216865] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9490), 1, - anon_sym_COMMA, - STATE(6025), 1, - sym_comment, - ACTIONS(9488), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [216882] = 7, + [213920] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9356), 1, + ACTIONS(8960), 1, anon_sym_LPAREN, - ACTIONS(9492), 1, + ACTIONS(9346), 1, anon_sym_DQUOTE2, - STATE(6026), 1, + STATE(5814), 1, sym_comment, - STATE(6028), 1, + STATE(5892), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6937), 1, + STATE(6534), 1, sym_expr_interpolated, - ACTIONS(9358), 2, + ACTIONS(8962), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [216905] = 6, + [213943] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9494), 1, + ACTIONS(8892), 1, anon_sym_DOT, - ACTIONS(9496), 1, - aux_sym__immediate_decimal_token2, - STATE(6027), 1, + STATE(5815), 1, sym_comment, - ACTIONS(1589), 2, + STATE(5859), 1, + aux_sym_cell_path_repeat1, + STATE(6548), 1, + sym_path, + ACTIONS(1017), 3, anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1591), 2, - anon_sym_LPAREN2, sym__entry_separator, - [216926] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9356), 1, - anon_sym_LPAREN, - ACTIONS(9498), 1, - anon_sym_DQUOTE2, - STATE(6028), 1, - sym_comment, - STATE(6177), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6937), 1, - sym_expr_interpolated, - ACTIONS(9358), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [216949] = 6, + sym__table_head_separator, + [213964] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4694), 1, - anon_sym_DOT_DOT2, - ACTIONS(6636), 1, + ACTIONS(1495), 1, aux_sym_unquoted_token2, - STATE(6029), 1, + ACTIONS(9348), 1, + anon_sym_DOT_DOT2, + STATE(5816), 1, sym_comment, - ACTIONS(4696), 2, + ACTIONS(1794), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(9350), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(9500), 2, - sym_filesize_unit, - sym_duration_unit, - [216970] = 8, + [213985] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9502), 1, - anon_sym_RBRACK, - STATE(6030), 1, + ACTIONS(4735), 1, + anon_sym_DASH, + ACTIONS(9352), 1, + sym_long_flag_identifier, + ACTIONS(9354), 1, + anon_sym_EQ2, + STATE(5817), 1, sym_comment, - STATE(6350), 1, - aux_sym_shebang_repeat1, - STATE(7038), 1, - sym_val_list, - STATE(7446), 1, - aux_sym_val_table_repeat1, - [216995] = 4, + ACTIONS(4737), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [214006] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9506), 1, - anon_sym_COMMA, - STATE(6031), 1, + ACTIONS(9356), 1, + sym_long_flag_identifier, + ACTIONS(9358), 1, + anon_sym_EQ2, + STATE(5818), 1, sym_comment, - ACTIONS(9504), 5, + ACTIONS(4735), 2, sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [217012] = 7, + anon_sym_DASH, + ACTIONS(4737), 2, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [214027] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9356), 1, - anon_sym_LPAREN, - ACTIONS(9508), 1, - anon_sym_DQUOTE2, - STATE(6032), 1, + ACTIONS(2067), 1, + sym__entry_separator, + ACTIONS(9360), 1, + anon_sym_DOT_DOT2, + STATE(5819), 1, sym_comment, - STATE(6119), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6937), 1, - sym_expr_interpolated, - ACTIONS(9358), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [217035] = 8, + ACTIONS(2061), 2, + anon_sym_RBRACE, + anon_sym__, + ACTIONS(9362), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [214048] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5562), 1, - aux_sym_unquoted_token3, - ACTIONS(8378), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8901), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8903), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8905), 1, - aux_sym__immediate_decimal_token5, - STATE(6033), 1, + ACTIONS(2067), 1, + sym__entry_separator, + ACTIONS(9364), 1, + anon_sym_DOT_DOT2, + STATE(5820), 1, sym_comment, - STATE(6684), 1, - sym__immediate_decimal, - [217060] = 8, + ACTIONS(2061), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(9366), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [214069] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, + ACTIONS(2808), 1, sym__newline, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - ACTIONS(9510), 1, + ACTIONS(9368), 1, anon_sym_RBRACK, - STATE(6034), 1, + STATE(5821), 1, sym_comment, - STATE(6351), 1, + STATE(6042), 1, aux_sym_shebang_repeat1, - STATE(7044), 1, + STATE(6988), 1, sym_val_list, - STATE(7448), 1, + STATE(7137), 1, aux_sym_val_table_repeat1, - [217085] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8683), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8907), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8909), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8911), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9386), 1, - aux_sym_unquoted_token3, - STATE(6035), 1, - sym_comment, - STATE(7761), 1, - sym__immediate_decimal, - [217110] = 7, + [214094] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9512), 1, - anon_sym_DQUOTE, - ACTIONS(9516), 1, - aux_sym_path_token1, - STATE(1724), 1, - sym_val_string, - STATE(1778), 1, - sym__str_double_quotes, - STATE(6036), 1, + ACTIONS(673), 1, + anon_sym_RPAREN, + ACTIONS(9088), 1, + sym__newline, + ACTIONS(9090), 1, + anon_sym_SEMI, + STATE(238), 1, + aux_sym__parenthesized_body_repeat1, + STATE(5822), 1, sym_comment, - ACTIONS(9514), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [217133] = 8, + STATE(6428), 1, + aux_sym__block_body_repeat1, + STATE(6970), 1, + aux_sym_shebang_repeat1, + [214119] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5562), 1, - aux_sym_unquoted_token3, - ACTIONS(8683), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8907), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8909), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8911), 1, - aux_sym__immediate_decimal_token5, - STATE(6037), 1, + STATE(5823), 1, sym_comment, - STATE(7761), 1, - sym__immediate_decimal, - [217158] = 6, + ACTIONS(1631), 3, + anon_sym_RBRACE, + anon_sym__, + anon_sym_DOT_DOT2, + ACTIONS(1633), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [214136] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(957), 1, + ACTIONS(2041), 1, sym__entry_separator, - ACTIONS(9518), 1, - anon_sym_DOT, - STATE(6792), 1, - sym_path, - ACTIONS(955), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(6038), 2, - sym_comment, - aux_sym_cell_path_repeat1, - [217179] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5139), 1, - anon_sym_DASH, - STATE(6039), 1, + ACTIONS(9370), 1, + anon_sym_DOT_DOT2, + STATE(5824), 1, sym_comment, - ACTIONS(5137), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [217196] = 7, + ACTIONS(2035), 2, + anon_sym_RBRACE, + anon_sym__, + ACTIONS(9372), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [214157] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9356), 1, - anon_sym_LPAREN, - ACTIONS(9521), 1, - anon_sym_DQUOTE2, - STATE(6040), 1, + ACTIONS(2049), 1, + sym__entry_separator, + ACTIONS(9374), 1, + anon_sym_DOT_DOT2, + STATE(5825), 1, sym_comment, - STATE(6041), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6937), 1, - sym_expr_interpolated, - ACTIONS(9358), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [217219] = 7, + ACTIONS(2043), 2, + anon_sym_RBRACE, + anon_sym__, + ACTIONS(9376), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [214178] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9356), 1, - anon_sym_LPAREN, - ACTIONS(9523), 1, - anon_sym_DQUOTE2, - STATE(6041), 1, - sym_comment, - STATE(6177), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6937), 1, - sym_expr_interpolated, - ACTIONS(9358), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [217242] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9525), 1, - anon_sym_RBRACK, - STATE(6042), 1, - sym_comment, - STATE(6353), 1, - aux_sym_shebang_repeat1, - STATE(7066), 1, - sym_val_list, - STATE(7453), 1, - aux_sym_val_table_repeat1, - [217267] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9366), 1, - aux_sym_ctrl_match_token1, - STATE(1814), 1, - sym_val_closure, - STATE(1850), 1, - sym_block, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(5271), 1, - sym__blosure, - STATE(6043), 1, + ACTIONS(2057), 1, + sym__entry_separator, + ACTIONS(9378), 1, + anon_sym_DOT_DOT2, + STATE(5826), 1, sym_comment, - [217292] = 4, + ACTIONS(2051), 2, + anon_sym_RBRACE, + anon_sym__, + ACTIONS(9380), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [214199] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5143), 1, - anon_sym_DASH, - STATE(6044), 1, - sym_comment, - ACTIONS(5141), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(9008), 1, anon_sym_DASH_DASH, - anon_sym_as, - [217309] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9527), 1, - anon_sym_RBRACK, - STATE(6045), 1, - sym_comment, - STATE(6354), 1, - aux_sym_shebang_repeat1, - STATE(7070), 1, - sym_val_list, - STATE(7456), 1, - aux_sym_val_table_repeat1, - [217334] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(9462), 1, - aux_sym_path_token1, - STATE(1560), 1, - sym_val_string, - STATE(1969), 1, - sym__str_double_quotes, - STATE(6046), 1, + ACTIONS(9010), 1, + anon_sym_DASH, + ACTIONS(9382), 1, + anon_sym_in, + STATE(5827), 1, sym_comment, - ACTIONS(443), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [217357] = 8, - ACTIONS(247), 1, + STATE(7493), 1, + sym__flag, + STATE(5452), 2, + sym_short_flag, + sym_long_flag, + [214222] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9366), 1, - aux_sym_ctrl_match_token1, - STATE(1814), 1, - sym_val_closure, - STATE(1850), 1, - sym_block, - STATE(5271), 1, - sym__blosure, - STATE(6047), 1, + ACTIONS(1794), 1, + sym__entry_separator, + ACTIONS(9384), 1, + anon_sym_DOT_DOT2, + STATE(5828), 1, sym_comment, - STATE(6180), 1, - aux_sym_shebang_repeat1, - [217382] = 4, + ACTIONS(1786), 2, + anon_sym_RBRACE, + anon_sym__, + ACTIONS(9386), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [214243] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2133), 1, + ACTIONS(2247), 1, aux_sym_ctrl_match_token1, - STATE(6048), 1, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + STATE(5829), 1, sym_comment, - ACTIONS(2131), 5, + ACTIONS(2243), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, - aux_sym_unquoted_token4, - [217399] = 7, + [214262] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9356), 1, - anon_sym_LPAREN, - ACTIONS(9529), 1, - anon_sym_DQUOTE2, - STATE(6049), 1, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + ACTIONS(2253), 1, + aux_sym_ctrl_match_token1, + STATE(5830), 1, sym_comment, - STATE(6050), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6937), 1, - sym_expr_interpolated, - ACTIONS(9358), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [217422] = 7, - ACTIONS(3), 1, + ACTIONS(2251), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + [214281] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9356), 1, - anon_sym_LPAREN, - ACTIONS(9531), 1, - anon_sym_DQUOTE2, - STATE(6050), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + ACTIONS(9388), 1, + anon_sym_RBRACK, + STATE(5831), 1, sym_comment, - STATE(6177), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6937), 1, - sym_expr_interpolated, - ACTIONS(9358), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [217445] = 8, + STATE(6043), 1, + aux_sym_shebang_repeat1, + STATE(6993), 1, + sym_val_list, + STATE(7140), 1, + aux_sym_val_table_repeat1, + [214306] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, + ACTIONS(2808), 1, sym__newline, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - ACTIONS(9533), 1, + ACTIONS(9390), 1, anon_sym_RBRACK, - STATE(6051), 1, + STATE(5832), 1, sym_comment, - STATE(6355), 1, + STATE(6039), 1, aux_sym_shebang_repeat1, - STATE(7087), 1, + STATE(6746), 1, sym_val_list, - STATE(7461), 1, + STATE(7130), 1, aux_sym_val_table_repeat1, - [217470] = 4, + [214331] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5160), 1, + ACTIONS(5040), 1, anon_sym_DASH, - STATE(6052), 1, + STATE(5833), 1, sym_comment, - ACTIONS(5158), 5, + ACTIONS(5038), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [217487] = 8, + [214348] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9535), 1, - anon_sym_RBRACK, - STATE(6053), 1, + ACTIONS(9392), 1, + anon_sym_alias, + ACTIONS(9394), 1, + anon_sym_const, + ACTIONS(9396), 1, + anon_sym_def, + ACTIONS(9398), 1, + anon_sym_extern, + ACTIONS(9400), 1, + anon_sym_module, + ACTIONS(9402), 1, + anon_sym_use, + STATE(5834), 1, sym_comment, - STATE(6356), 1, - aux_sym_shebang_repeat1, - STATE(7091), 1, - sym_val_list, - STATE(7463), 1, - aux_sym_val_table_repeat1, - [217512] = 7, + [214373] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4431), 1, + ACTIONS(9404), 1, anon_sym_DQUOTE, - ACTIONS(9537), 1, + ACTIONS(9408), 1, aux_sym_path_token1, - STATE(4755), 1, + STATE(2350), 1, sym__str_double_quotes, - STATE(4784), 1, + STATE(2418), 1, sym_val_string, - STATE(6054), 1, + STATE(5835), 1, sym_comment, - ACTIONS(4433), 2, + ACTIONS(9406), 2, sym__str_single_quotes, sym__str_back_ticks, - [217535] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9539), 1, - anon_sym_DOT, - ACTIONS(9541), 1, - aux_sym__immediate_decimal_token2, - STATE(6055), 1, - sym_comment, - ACTIONS(1589), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1591), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [217556] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5164), 1, - anon_sym_DASH, - STATE(6056), 1, - sym_comment, - ACTIONS(5162), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [217573] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9356), 1, - anon_sym_LPAREN, - ACTIONS(9543), 1, - anon_sym_DQUOTE2, - STATE(6057), 1, - sym_comment, - STATE(6059), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6937), 1, - sym_expr_interpolated, - ACTIONS(9358), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [217596] = 8, + [214396] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, + ACTIONS(2808), 1, sym__newline, - ACTIONS(9366), 1, + ACTIONS(8972), 1, aux_sym_ctrl_match_token1, - STATE(1814), 1, - sym_val_closure, - STATE(1850), 1, + STATE(1608), 1, sym_block, - STATE(5376), 1, + STATE(1609), 1, + sym_val_closure, + STATE(4994), 1, sym__blosure, - STATE(6058), 1, - sym_comment, - STATE(6201), 1, + STATE(5725), 1, aux_sym_shebang_repeat1, - [217621] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9356), 1, - anon_sym_LPAREN, - ACTIONS(9545), 1, - anon_sym_DQUOTE2, - STATE(6059), 1, - sym_comment, - STATE(6177), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6937), 1, - sym_expr_interpolated, - ACTIONS(9358), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [217644] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9547), 1, - anon_sym_RBRACK, - STATE(6060), 1, + STATE(5836), 1, sym_comment, - STATE(6357), 1, - aux_sym_shebang_repeat1, - STATE(7105), 1, - sym_val_list, - STATE(7467), 1, - aux_sym_val_table_repeat1, - [217669] = 8, + [214421] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9549), 1, - anon_sym_RBRACK, - STATE(6061), 1, + ACTIONS(9412), 1, + anon_sym_COMMA, + STATE(5837), 1, sym_comment, - STATE(6358), 1, - aux_sym_shebang_repeat1, - STATE(7109), 1, - sym_val_list, - STATE(7470), 1, - aux_sym_val_table_repeat1, - [217694] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9551), 1, + ACTIONS(9410), 5, + sym_identifier, + anon_sym_GT, anon_sym_DQUOTE, - ACTIONS(9555), 1, - aux_sym_path_token1, - STATE(1274), 1, - sym_val_string, - STATE(1292), 1, - sym__str_double_quotes, - STATE(6062), 1, - sym_comment, - ACTIONS(9553), 2, sym__str_single_quotes, sym__str_back_ticks, - [217717] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3269), 1, - aux_sym_record_entry_token1, - ACTIONS(8631), 1, - sym_identifier, - ACTIONS(9557), 1, - anon_sym_DOLLAR, - STATE(5619), 1, - sym_val_variable, - STATE(6063), 1, - sym_comment, - STATE(6891), 1, - sym__assignment_pattern, - STATE(7113), 1, - sym__variable_name, - [217742] = 7, + [214438] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9356), 1, + ACTIONS(8960), 1, anon_sym_LPAREN, - ACTIONS(9559), 1, + ACTIONS(9414), 1, anon_sym_DQUOTE2, - STATE(6064), 1, + STATE(5838), 1, sym_comment, - STATE(6065), 1, + STATE(5858), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6937), 1, + STATE(6534), 1, sym_expr_interpolated, - ACTIONS(9358), 2, + ACTIONS(8962), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [217765] = 7, + [214461] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8855), 1, + aux_sym_ctrl_match_token1, + STATE(5839), 1, + sym_comment, + STATE(6552), 1, + sym_val_record, + ACTIONS(9416), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [214480] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9356), 1, - anon_sym_LPAREN, - ACTIONS(9561), 1, - anon_sym_DQUOTE2, - STATE(6065), 1, + ACTIONS(4712), 1, + aux_sym_unquoted_token3, + ACTIONS(8171), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8557), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8559), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8561), 1, + aux_sym__immediate_decimal_token5, + STATE(5840), 1, sym_comment, - STATE(6177), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6937), 1, - sym_expr_interpolated, - ACTIONS(9358), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [217788] = 8, - ACTIONS(247), 1, + STATE(6059), 1, + sym__immediate_decimal, + [214505] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9563), 1, - anon_sym_RBRACK, - STATE(6066), 1, + ACTIONS(8171), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8557), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8559), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8561), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9418), 1, + aux_sym_unquoted_token3, + STATE(5841), 1, sym_comment, - STATE(6359), 1, - aux_sym_shebang_repeat1, - STATE(7128), 1, - sym_val_list, - STATE(7475), 1, - aux_sym_val_table_repeat1, - [217813] = 8, + STATE(6635), 1, + sym__immediate_decimal, + [214530] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, + ACTIONS(8855), 1, + aux_sym_ctrl_match_token1, + STATE(5842), 1, + sym_comment, + STATE(6553), 1, + sym_val_record, + ACTIONS(9420), 4, sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9565), 1, - anon_sym_RBRACK, - STATE(6067), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [214549] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4712), 1, + aux_sym_unquoted_token3, + ACTIONS(8244), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8563), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8565), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8567), 1, + aux_sym__immediate_decimal_token5, + STATE(5843), 1, sym_comment, - STATE(6360), 1, - aux_sym_shebang_repeat1, - STATE(7132), 1, - sym_val_list, - STATE(7478), 1, - aux_sym_val_table_repeat1, - [217838] = 7, - ACTIONS(247), 1, + STATE(7433), 1, + sym__immediate_decimal, + [214574] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9567), 1, - anon_sym_DQUOTE, - ACTIONS(9571), 1, - aux_sym_path_token1, - STATE(2378), 1, - sym_val_string, - STATE(2405), 1, - sym__str_double_quotes, - STATE(6068), 1, + ACTIONS(8171), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8379), 1, + aux_sym_unquoted_token3, + ACTIONS(8557), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8559), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8561), 1, + aux_sym__immediate_decimal_token5, + STATE(5844), 1, sym_comment, - ACTIONS(9569), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [217861] = 8, + STATE(6635), 1, + sym__immediate_decimal, + [214599] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3269), 1, - aux_sym_record_entry_token1, - ACTIONS(8631), 1, - sym_identifier, - ACTIONS(9557), 1, + ACTIONS(4749), 1, anon_sym_DOLLAR, - STATE(5619), 1, - sym_val_variable, - STATE(6069), 1, - sym_comment, - STATE(6895), 1, - sym__assignment_pattern, - STATE(7113), 1, - sym__variable_name, - [217886] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9356), 1, - anon_sym_LPAREN, - ACTIONS(9573), 1, - anon_sym_DQUOTE2, - STATE(6070), 1, + ACTIONS(9422), 1, + anon_sym_EQ2, + ACTIONS(9424), 1, + sym_short_flag_identifier, + STATE(5845), 1, sym_comment, - STATE(6071), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6937), 1, - sym_expr_interpolated, - ACTIONS(9358), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [217909] = 7, + ACTIONS(4747), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH, + [214620] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9356), 1, - anon_sym_LPAREN, - ACTIONS(9575), 1, - anon_sym_DQUOTE2, - STATE(6071), 1, + ACTIONS(8244), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8379), 1, + aux_sym_unquoted_token3, + ACTIONS(8563), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8565), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8567), 1, + aux_sym__immediate_decimal_token5, + STATE(5846), 1, sym_comment, - STATE(6177), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6937), 1, - sym_expr_interpolated, - ACTIONS(9358), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [217932] = 8, + STATE(7714), 1, + sym__immediate_decimal, + [214645] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9577), 1, - anon_sym_RBRACK, - STATE(6072), 1, + ACTIONS(4433), 1, + anon_sym_DOT_DOT2, + ACTIONS(8379), 1, + aux_sym_unquoted_token2, + STATE(5847), 1, sym_comment, - STATE(6361), 1, - aux_sym_shebang_repeat1, - STATE(7147), 1, - sym_val_list, - STATE(7483), 1, - aux_sym_val_table_repeat1, - [217957] = 8, - ACTIONS(247), 1, + ACTIONS(4435), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(9426), 2, + sym_filesize_unit, + sym_duration_unit, + [214666] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9579), 1, - anon_sym_RBRACK, - STATE(6073), 1, + STATE(5848), 1, sym_comment, - STATE(6362), 1, - aux_sym_shebang_repeat1, - STATE(7151), 1, - sym_val_list, - STATE(7486), 1, - aux_sym_val_table_repeat1, - [217982] = 7, + ACTIONS(1705), 3, + anon_sym_RBRACE, + anon_sym__, + anon_sym_DOT_DOT2, + ACTIONS(1707), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [214683] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9581), 1, - anon_sym_DQUOTE, - ACTIONS(9585), 1, - aux_sym_path_token1, - STATE(3349), 1, - sym_val_string, - STATE(3356), 1, - sym__str_double_quotes, - STATE(6074), 1, + ACTIONS(8875), 1, + anon_sym_def, + ACTIONS(8877), 1, + anon_sym_extern, + ACTIONS(8879), 1, + anon_sym_module, + ACTIONS(8881), 1, + anon_sym_use, + ACTIONS(9428), 1, + anon_sym_alias, + ACTIONS(9430), 1, + anon_sym_const, + STATE(5849), 1, sym_comment, - ACTIONS(9583), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [218005] = 8, - ACTIONS(247), 1, + [214708] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9587), 1, - anon_sym_RBRACK, - STATE(6075), 1, + ACTIONS(8244), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8563), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8565), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8567), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9418), 1, + aux_sym_unquoted_token3, + STATE(5850), 1, sym_comment, - STATE(6214), 1, - aux_sym_shebang_repeat1, - STATE(7372), 1, - sym_val_list, - STATE(7374), 1, - aux_sym_val_table_repeat1, - [218030] = 4, + STATE(7714), 1, + sym__immediate_decimal, + [214733] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9434), 1, + anon_sym_COMMA, + STATE(5851), 1, + sym_comment, + ACTIONS(9432), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [214750] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6076), 1, + STATE(5852), 1, sym_comment, - ACTIONS(1953), 3, - anon_sym_RBRACK, + ACTIONS(1755), 3, anon_sym_RBRACE, + anon_sym__, anon_sym_DOT_DOT2, - ACTIONS(1955), 3, + ACTIONS(1757), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [218047] = 6, - ACTIONS(3), 1, + [214767] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9266), 1, - anon_sym_DOT, - STATE(6077), 1, + ACTIONS(5048), 1, + anon_sym_DASH, + STATE(5853), 1, sym_comment, - STATE(6129), 1, - aux_sym_cell_path_repeat1, - STATE(6519), 1, - sym_path, - ACTIONS(951), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [218068] = 8, + ACTIONS(5046), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [214784] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9589), 1, - anon_sym_RBRACK, - STATE(6078), 1, + ACTIONS(1553), 1, + aux_sym_unquoted_token2, + ACTIONS(8246), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8248), 1, + aux_sym__immediate_decimal_token5, + STATE(5854), 1, sym_comment, - STATE(6363), 1, - aux_sym_shebang_repeat1, - STATE(7164), 1, - sym_val_list, - STATE(7491), 1, - aux_sym_val_table_repeat1, - [218093] = 8, - ACTIONS(247), 1, + STATE(7478), 1, + sym__immediate_decimal, + ACTIONS(8244), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [214807] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9591), 1, - anon_sym_RBRACK, - STATE(6079), 1, + ACTIONS(2261), 1, + aux_sym_ctrl_match_token1, + STATE(5855), 1, sym_comment, - STATE(6364), 1, - aux_sym_shebang_repeat1, - STATE(7167), 1, - sym_val_list, - STATE(7493), 1, - aux_sym_val_table_repeat1, - [218118] = 7, + ACTIONS(2259), 5, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + aux_sym_unquoted_token4, + [214824] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4469), 1, - anon_sym_DQUOTE, - ACTIONS(9593), 1, - aux_sym_path_token1, - STATE(4660), 1, - sym__str_double_quotes, - STATE(4689), 1, - sym_val_string, - STATE(6080), 1, + ACTIONS(1495), 1, + aux_sym_unquoted_token2, + ACTIONS(8246), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8248), 1, + aux_sym__immediate_decimal_token5, + STATE(5856), 1, sym_comment, - ACTIONS(4471), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [218141] = 8, + STATE(7709), 1, + sym__immediate_decimal, + ACTIONS(8244), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [214847] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9466), 1, - sym__newline, - ACTIONS(9468), 1, - anon_sym_SEMI, - ACTIONS(9595), 1, - anon_sym_RPAREN, - STATE(247), 1, - aux_sym__parenthesized_body_repeat1, - STATE(6081), 1, + ACTIONS(4433), 1, + anon_sym_DOT_DOT2, + ACTIONS(9418), 1, + aux_sym_unquoted_token2, + STATE(5857), 1, sym_comment, - STATE(6400), 1, - aux_sym__block_body_repeat1, - STATE(7297), 1, - aux_sym_shebang_repeat1, - [218166] = 8, - ACTIONS(247), 1, + ACTIONS(4435), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(9426), 2, + sym_filesize_unit, + sym_duration_unit, + [214868] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9597), 1, - anon_sym_RBRACK, - STATE(6082), 1, + ACTIONS(8960), 1, + anon_sym_LPAREN, + ACTIONS(9436), 1, + anon_sym_DQUOTE2, + STATE(5858), 1, sym_comment, - STATE(6365), 1, - aux_sym_shebang_repeat1, - STATE(7180), 1, - sym_val_list, - STATE(7497), 1, - aux_sym_val_table_repeat1, - [218191] = 8, - ACTIONS(247), 1, + STATE(5892), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6534), 1, + sym_expr_interpolated, + ACTIONS(8962), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [214891] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9599), 1, - anon_sym_RBRACK, - STATE(6083), 1, + ACTIONS(9438), 1, + anon_sym_DOT, + STATE(6548), 1, + sym_path, + STATE(5859), 2, sym_comment, - STATE(6366), 1, - aux_sym_shebang_repeat1, - STATE(7185), 1, - sym_val_list, - STATE(7499), 1, - aux_sym_val_table_repeat1, - [218216] = 7, + aux_sym_cell_path_repeat1, + ACTIONS(1021), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [214910] = 7, + ACTIONS(111), 1, + anon_sym_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9446), 1, + ACTIONS(9441), 1, aux_sym_path_token1, - ACTIONS(9581), 1, - anon_sym_DQUOTE, - STATE(1381), 1, + STATE(1967), 1, sym_val_string, - STATE(3356), 1, + STATE(1984), 1, sym__str_double_quotes, - STATE(6084), 1, + STATE(5860), 1, sym_comment, - ACTIONS(9583), 2, + ACTIONS(113), 2, sym__str_single_quotes, sym__str_back_ticks, - [218239] = 7, + [214933] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9356), 1, + ACTIONS(8960), 1, anon_sym_LPAREN, - ACTIONS(9601), 1, + ACTIONS(9443), 1, anon_sym_DQUOTE2, - STATE(6085), 1, + STATE(5861), 1, sym_comment, - STATE(6130), 1, + STATE(5869), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6937), 1, + STATE(6534), 1, sym_expr_interpolated, - ACTIONS(9358), 2, + ACTIONS(8962), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [218262] = 8, + [214956] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, + ACTIONS(5014), 1, + anon_sym_DASH, + STATE(5862), 1, + sym_comment, + ACTIONS(5012), 5, + ts_builtin_sym_end, sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9603), 1, - anon_sym_RBRACK, - STATE(6086), 1, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [214973] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9324), 1, + anon_sym_DOT_DOT2, + ACTIONS(9447), 1, + sym__entry_separator, + STATE(5863), 1, sym_comment, - STATE(6367), 1, - aux_sym_shebang_repeat1, - STATE(7197), 1, - sym_val_list, - STATE(7504), 1, - aux_sym_val_table_repeat1, - [218287] = 8, + ACTIONS(9326), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(9445), 2, + anon_sym_RBRACE, + anon_sym__, + [214994] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, + ACTIONS(2808), 1, sym__newline, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - ACTIONS(9605), 1, + ACTIONS(9449), 1, anon_sym_RBRACK, - STATE(6087), 1, + STATE(5864), 1, sym_comment, - STATE(6368), 1, + STATE(6047), 1, aux_sym_shebang_repeat1, - STATE(7202), 1, + STATE(7114), 1, sym_val_list, - STATE(7506), 1, + STATE(7156), 1, aux_sym_val_table_repeat1, - [218312] = 7, + [215019] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6790), 1, + aux_sym_unquoted_token3, + ACTIONS(8171), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8557), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8559), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8561), 1, + aux_sym__immediate_decimal_token5, + STATE(5865), 1, + sym_comment, + STATE(6635), 1, + sym__immediate_decimal, + [215044] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6790), 1, + aux_sym_unquoted_token3, + ACTIONS(8244), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8563), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8565), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8567), 1, + aux_sym__immediate_decimal_token5, + STATE(5866), 1, + sym_comment, + STATE(7714), 1, + sym__immediate_decimal, + [215069] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(511), 1, - anon_sym_DQUOTE, - ACTIONS(9607), 1, - aux_sym_path_token1, - STATE(1851), 1, - sym__str_double_quotes, - STATE(2723), 1, - sym_val_string, - STATE(6088), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8972), 1, + aux_sym_ctrl_match_token1, + STATE(1608), 1, + sym_block, + STATE(1609), 1, + sym_val_closure, + STATE(4972), 1, + sym__blosure, + STATE(5643), 1, + aux_sym_shebang_repeat1, + STATE(5867), 1, sym_comment, - ACTIONS(513), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [218335] = 8, + [215094] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, + ACTIONS(9088), 1, sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9609), 1, - anon_sym_RBRACK, - STATE(6089), 1, + ACTIONS(9090), 1, + anon_sym_SEMI, + ACTIONS(9451), 1, + anon_sym_RPAREN, + STATE(238), 1, + aux_sym__parenthesized_body_repeat1, + STATE(5868), 1, sym_comment, - STATE(6332), 1, + STATE(6361), 1, + aux_sym__block_body_repeat1, + STATE(6970), 1, aux_sym_shebang_repeat1, - STATE(7280), 1, - sym_val_list, - STATE(7393), 1, - aux_sym_val_table_repeat1, - [218360] = 8, + [215119] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8960), 1, + anon_sym_LPAREN, + ACTIONS(9453), 1, + anon_sym_DQUOTE2, + STATE(5869), 1, + sym_comment, + STATE(5892), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6534), 1, + sym_expr_interpolated, + ACTIONS(8962), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [215142] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, + ACTIONS(2808), 1, sym__newline, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - ACTIONS(9611), 1, + ACTIONS(9455), 1, anon_sym_RBRACK, - STATE(6090), 1, + STATE(5870), 1, sym_comment, - STATE(6370), 1, + STATE(6044), 1, aux_sym_shebang_repeat1, - STATE(7218), 1, + STATE(7056), 1, sym_val_list, - STATE(7513), 1, + STATE(7146), 1, aux_sym_val_table_repeat1, - [218385] = 7, + [215167] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9613), 1, - anon_sym_DQUOTE, - ACTIONS(9617), 1, - aux_sym_path_token1, - STATE(1452), 1, - sym_val_string, - STATE(1504), 1, - sym__str_double_quotes, - STATE(6091), 1, + ACTIONS(1495), 1, + aux_sym_unquoted_token2, + ACTIONS(8246), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8248), 1, + aux_sym__immediate_decimal_token5, + STATE(5871), 1, sym_comment, - ACTIONS(9615), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [218408] = 7, + STATE(7456), 1, + sym__immediate_decimal, + ACTIONS(8244), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [215190] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9619), 1, - anon_sym_DQUOTE, - ACTIONS(9623), 1, - aux_sym_path_token1, - STATE(1617), 1, - sym__str_double_quotes, - STATE(1624), 1, - sym_val_string, - STATE(6092), 1, + ACTIONS(9008), 1, + anon_sym_DASH_DASH, + ACTIONS(9010), 1, + anon_sym_DASH, + ACTIONS(9457), 1, + anon_sym_in, + STATE(5872), 1, sym_comment, - ACTIONS(9621), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [218431] = 7, + STATE(7764), 1, + sym__flag, + STATE(5452), 2, + sym_short_flag, + sym_long_flag, + [215213] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9625), 1, + ACTIONS(9008), 1, anon_sym_DASH_DASH, - ACTIONS(9627), 1, + ACTIONS(9010), 1, anon_sym_DASH, - ACTIONS(9629), 1, + ACTIONS(9459), 1, anon_sym_in, - STATE(6093), 1, + STATE(5873), 1, sym_comment, - STATE(7732), 1, + STATE(7766), 1, sym__flag, - STATE(5714), 2, + STATE(5452), 2, sym_short_flag, sym_long_flag, - [218454] = 7, - ACTIONS(233), 1, - anon_sym_DQUOTE, + [215236] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9631), 1, - aux_sym_path_token1, - STATE(1668), 1, - sym__str_double_quotes, - STATE(6094), 1, + ACTIONS(9461), 1, + anon_sym_DOT_DOT2, + STATE(5874), 1, sym_comment, - STATE(7291), 1, - sym_val_string, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [218477] = 7, + ACTIONS(9463), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2067), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [215255] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3581), 1, - anon_sym_DQUOTE, - ACTIONS(9633), 1, - aux_sym_path_token1, - STATE(3756), 1, - sym__str_double_quotes, - STATE(3776), 1, - sym_val_string, - STATE(6095), 1, + ACTIONS(6078), 1, + aux_sym_ctrl_match_token1, + STATE(5875), 1, sym_comment, - ACTIONS(3583), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [218500] = 7, + STATE(6611), 1, + sym_block, + ACTIONS(9465), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [215274] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9635), 1, - anon_sym_DQUOTE, - ACTIONS(9639), 1, - aux_sym_path_token1, - STATE(4364), 1, - sym_val_string, - STATE(4392), 1, - sym__str_double_quotes, - STATE(6096), 1, + ACTIONS(1517), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(9467), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9469), 1, + aux_sym__immediate_decimal_token2, + STATE(5876), 1, sym_comment, - ACTIONS(9637), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [218523] = 7, - ACTIONS(247), 1, + ACTIONS(1519), 3, + sym_filesize_unit, + sym_duration_unit, + aux_sym_record_entry_token1, + [215295] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9641), 1, - anon_sym_DQUOTE, - ACTIONS(9645), 1, - aux_sym_path_token1, - STATE(2788), 1, - sym_val_string, - STATE(2801), 1, - sym__str_double_quotes, - STATE(6097), 1, + ACTIONS(8960), 1, + anon_sym_LPAREN, + ACTIONS(9471), 1, + anon_sym_DQUOTE2, + STATE(5701), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(5877), 1, sym_comment, - ACTIONS(9643), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [218546] = 7, + STATE(6534), 1, + sym_expr_interpolated, + ACTIONS(8962), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [215318] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9647), 1, - anon_sym_DQUOTE, - ACTIONS(9651), 1, - aux_sym_path_token1, - STATE(4286), 1, - sym_val_string, - STATE(4311), 1, - sym__str_double_quotes, - STATE(6098), 1, + ACTIONS(9473), 1, + anon_sym_DOT_DOT2, + STATE(5878), 1, sym_comment, - ACTIONS(9649), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [218569] = 7, + ACTIONS(9475), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2041), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [215337] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9653), 1, - anon_sym_DQUOTE, - ACTIONS(9657), 1, - aux_sym_path_token1, - STATE(3626), 1, - sym_val_string, - STATE(3630), 1, - sym__str_double_quotes, - STATE(6099), 1, + ACTIONS(9477), 1, + anon_sym_DOT_DOT2, + STATE(5879), 1, sym_comment, - ACTIONS(9655), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [218592] = 7, + ACTIONS(9479), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2049), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [215356] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9659), 1, - anon_sym_DQUOTE, - ACTIONS(9663), 1, - aux_sym_path_token1, - STATE(1432), 1, - sym_val_string, - STATE(1434), 1, - sym__str_double_quotes, - STATE(6100), 1, + ACTIONS(9481), 1, + anon_sym_DOT_DOT2, + STATE(5880), 1, sym_comment, - ACTIONS(9661), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [218615] = 7, + ACTIONS(9483), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2057), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [215375] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9665), 1, - anon_sym_DQUOTE, - ACTIONS(9669), 1, - aux_sym_path_token1, - STATE(4222), 1, - sym__str_double_quotes, - STATE(4239), 1, - sym_val_string, - STATE(6101), 1, + ACTIONS(6078), 1, + aux_sym_ctrl_match_token1, + STATE(5881), 1, sym_comment, - ACTIONS(9667), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [218638] = 7, + STATE(6615), 1, + sym_block, + ACTIONS(9465), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [215394] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9671), 1, - anon_sym_DQUOTE, - ACTIONS(9675), 1, - aux_sym_path_token1, - STATE(2836), 1, - sym_val_string, - STATE(2906), 1, - sym__str_double_quotes, - STATE(6102), 1, + STATE(5882), 1, sym_comment, - ACTIONS(9673), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [218661] = 7, + ACTIONS(1643), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1645), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [215411] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9677), 1, - anon_sym_DQUOTE, - ACTIONS(9681), 1, - aux_sym_path_token1, - STATE(3102), 1, - sym_val_string, - STATE(3178), 1, - sym__str_double_quotes, - STATE(6103), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + ACTIONS(9485), 1, + anon_sym_RBRACK, + STATE(5883), 1, sym_comment, - ACTIONS(9679), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [218684] = 7, + STATE(6045), 1, + aux_sym_shebang_repeat1, + STATE(7068), 1, + sym_val_list, + STATE(7148), 1, + aux_sym_val_table_repeat1, + [215436] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9683), 1, + ACTIONS(9487), 1, anon_sym_DQUOTE, - ACTIONS(9687), 1, + ACTIONS(9491), 1, aux_sym_path_token1, - STATE(399), 1, - sym_val_string, - STATE(402), 1, - sym__str_double_quotes, - STATE(6104), 1, + STATE(5884), 1, sym_comment, - ACTIONS(9685), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [218707] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9689), 1, - anon_sym_DQUOTE, - ACTIONS(9693), 1, - aux_sym_path_token1, - STATE(478), 1, + STATE(6004), 1, sym__str_double_quotes, - STATE(514), 1, + STATE(6083), 1, sym_val_string, - STATE(6105), 1, - sym_comment, - ACTIONS(9691), 2, + ACTIONS(9489), 2, sym__str_single_quotes, sym__str_back_ticks, - [218730] = 7, + [215459] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3705), 1, - anon_sym_DQUOTE, - ACTIONS(9695), 1, - aux_sym_path_token1, - STATE(4919), 1, - sym__str_double_quotes, - STATE(5098), 1, - sym_val_string, - STATE(6106), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + ACTIONS(9493), 1, + anon_sym_RBRACK, + STATE(5885), 1, sym_comment, - ACTIONS(3707), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [218753] = 7, - ACTIONS(247), 1, + STATE(6025), 1, + aux_sym_shebang_repeat1, + STATE(6936), 1, + sym_val_list, + STATE(7057), 1, + aux_sym_val_table_repeat1, + [215484] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9697), 1, - anon_sym_DQUOTE, - ACTIONS(9701), 1, - aux_sym_path_token1, - STATE(4549), 1, - sym__str_double_quotes, - STATE(4664), 1, - sym_val_string, - STATE(6107), 1, + ACTIONS(8960), 1, + anon_sym_LPAREN, + ACTIONS(9495), 1, + anon_sym_DQUOTE2, + STATE(5886), 1, sym_comment, - ACTIONS(9699), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [218776] = 7, - ACTIONS(247), 1, + STATE(5889), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6534), 1, + sym_expr_interpolated, + ACTIONS(8962), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [215507] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4525), 1, - anon_sym_DQUOTE, - ACTIONS(9703), 1, - aux_sym_path_token1, - STATE(3735), 1, - sym__str_double_quotes, - STATE(3750), 1, - sym_val_string, - STATE(6108), 1, + ACTIONS(4568), 1, + aux_sym_unquoted_token3, + ACTIONS(8171), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8557), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8559), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8561), 1, + aux_sym__immediate_decimal_token5, + STATE(5887), 1, sym_comment, - ACTIONS(4527), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [218799] = 7, - ACTIONS(247), 1, + STATE(6635), 1, + sym__immediate_decimal, + [215532] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9705), 1, - anon_sym_DQUOTE, - ACTIONS(9709), 1, - aux_sym_path_token1, - STATE(2825), 1, - sym_val_string, - STATE(2833), 1, - sym__str_double_quotes, - STATE(6109), 1, + ACTIONS(4568), 1, + aux_sym_unquoted_token3, + ACTIONS(8244), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8563), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8565), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8567), 1, + aux_sym__immediate_decimal_token5, + STATE(5888), 1, sym_comment, - ACTIONS(9707), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [218822] = 7, - ACTIONS(247), 1, + STATE(7714), 1, + sym__immediate_decimal, + [215557] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9711), 1, - anon_sym_DQUOTE, - ACTIONS(9715), 1, - aux_sym_path_token1, - STATE(3030), 1, - sym_val_string, - STATE(3067), 1, - sym__str_double_quotes, - STATE(6110), 1, + ACTIONS(8960), 1, + anon_sym_LPAREN, + ACTIONS(9497), 1, + anon_sym_DQUOTE2, + STATE(5889), 1, sym_comment, - ACTIONS(9713), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [218845] = 7, + STATE(5892), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6534), 1, + sym_expr_interpolated, + ACTIONS(8962), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [215580] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9717), 1, - anon_sym_DQUOTE, - ACTIONS(9721), 1, - aux_sym_path_token1, - STATE(967), 1, - sym_val_string, - STATE(972), 1, - sym__str_double_quotes, - STATE(6111), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + ACTIONS(9499), 1, + anon_sym_RBRACK, + STATE(5890), 1, sym_comment, - ACTIONS(9719), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [218868] = 7, - ACTIONS(247), 1, + STATE(6049), 1, + aux_sym_shebang_repeat1, + STATE(7153), 1, + sym_val_list, + STATE(7161), 1, + aux_sym_val_table_repeat1, + [215605] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9723), 1, - anon_sym_DQUOTE, - ACTIONS(9727), 1, - aux_sym_path_token1, - STATE(764), 1, - sym_val_string, - STATE(769), 1, - sym__str_double_quotes, - STATE(6112), 1, + ACTIONS(3768), 1, + sym__space, + STATE(5891), 1, sym_comment, - ACTIONS(9725), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [218891] = 7, - ACTIONS(247), 1, + ACTIONS(3766), 5, + sym__newline, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + aux_sym_ctrl_match_token1, + [215622] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9729), 1, - anon_sym_DQUOTE, - ACTIONS(9733), 1, - aux_sym_path_token1, - STATE(146), 1, - sym__str_double_quotes, - STATE(149), 1, - sym_val_string, - STATE(6113), 1, + ACTIONS(9501), 1, + anon_sym_LPAREN, + ACTIONS(9507), 1, + anon_sym_DQUOTE2, + STATE(6534), 1, + sym_expr_interpolated, + ACTIONS(9504), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + STATE(5892), 2, sym_comment, - ACTIONS(9731), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [218914] = 7, + aux_sym__inter_double_quotes_repeat1, + [215643] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9735), 1, - anon_sym_DQUOTE, - ACTIONS(9739), 1, - aux_sym_path_token1, - STATE(433), 1, - sym_val_string, - STATE(438), 1, - sym__str_double_quotes, - STATE(6114), 1, + ACTIONS(1497), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(9509), 1, + anon_sym_DOT, + ACTIONS(9511), 1, + aux_sym__immediate_decimal_token2, + STATE(5893), 1, sym_comment, - ACTIONS(9737), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [218937] = 7, - ACTIONS(247), 1, + ACTIONS(1499), 3, + sym_filesize_unit, + sym_duration_unit, + aux_sym_record_entry_token1, + [215664] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9741), 1, - anon_sym_DQUOTE, - ACTIONS(9745), 1, - aux_sym_path_token1, - STATE(297), 1, - sym__str_double_quotes, - STATE(320), 1, - sym_val_string, - STATE(6115), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9340), 1, + anon_sym_DOT_DOT2, + ACTIONS(9513), 1, + anon_sym_RBRACE, + STATE(5894), 1, sym_comment, - ACTIONS(9743), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [218960] = 7, + STATE(7009), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9342), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [215687] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9747), 1, - anon_sym_DQUOTE, - ACTIONS(9751), 1, - aux_sym_path_token1, - STATE(2775), 1, - sym_val_string, - STATE(2776), 1, - sym__str_double_quotes, - STATE(6116), 1, + ACTIONS(5036), 1, + anon_sym_DASH, + STATE(5895), 1, sym_comment, - ACTIONS(9749), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [218983] = 7, - ACTIONS(247), 1, + ACTIONS(5034), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [215704] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9753), 1, - anon_sym_DQUOTE, - ACTIONS(9757), 1, - aux_sym_path_token1, - STATE(2983), 1, - sym__str_double_quotes, - STATE(3011), 1, - sym_val_string, - STATE(6117), 1, + ACTIONS(1804), 1, + sym__entry_separator, + ACTIONS(9515), 1, + anon_sym_DOT_DOT2, + STATE(5896), 1, sym_comment, - ACTIONS(9755), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [219006] = 7, + ACTIONS(1796), 2, + anon_sym_RBRACE, + anon_sym__, + ACTIONS(9517), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [215725] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9759), 1, + ACTIONS(9519), 1, anon_sym_DQUOTE, - ACTIONS(9763), 1, + ACTIONS(9523), 1, aux_sym_path_token1, - STATE(255), 1, - sym__str_double_quotes, - STATE(259), 1, + STATE(473), 1, sym_val_string, - STATE(6118), 1, + STATE(475), 1, + sym__str_double_quotes, + STATE(5897), 1, sym_comment, - ACTIONS(9761), 2, + ACTIONS(9521), 2, sym__str_single_quotes, sym__str_back_ticks, - [219029] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9356), 1, - anon_sym_LPAREN, - ACTIONS(9765), 1, - anon_sym_DQUOTE2, - STATE(6119), 1, - sym_comment, - STATE(6177), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6937), 1, - sym_expr_interpolated, - ACTIONS(9358), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [219052] = 8, + [215748] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, + ACTIONS(2808), 1, sym__newline, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - ACTIONS(9767), 1, - anon_sym_RBRACK, - STATE(6120), 1, - sym_comment, - STATE(6322), 1, + STATE(2586), 1, aux_sym_shebang_repeat1, - STATE(6999), 1, + STATE(5898), 1, + sym_comment, + STATE(6771), 1, sym_val_list, - STATE(7365), 1, + STATE(7203), 1, aux_sym_val_table_repeat1, - [219077] = 4, + [215770] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3954), 1, + ACTIONS(7736), 1, + sym__newline, + ACTIONS(7738), 1, sym__space, - STATE(6121), 1, + STATE(4707), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(5899), 1, sym_comment, - ACTIONS(3952), 5, - sym__newline, + STATE(5986), 1, + aux_sym_ctrl_do_parenthesized_repeat1, + STATE(7399), 1, + sym__flags_parenthesized, + [215792] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5014), 1, + anon_sym_DASH, + STATE(5900), 1, + sym_comment, + ACTIONS(5012), 4, + sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, aux_sym_ctrl_match_token1, - [219094] = 6, + [215808] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5832), 1, + sym__entry_separator, + ACTIONS(5857), 1, + anon_sym_RBRACE, + ACTIONS(9525), 1, + anon_sym__, + STATE(2828), 1, + aux_sym__multiple_types_repeat1, + STATE(5901), 1, + sym_comment, + STATE(7610), 1, + sym_default_arm, + [215830] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5832), 1, + sym__entry_separator, + ACTIONS(5871), 1, + anon_sym_RBRACE, + ACTIONS(9525), 1, + anon_sym__, + STATE(2846), 1, + aux_sym__multiple_types_repeat1, + STATE(5902), 1, + sym_comment, + STATE(7589), 1, + sym_default_arm, + [215852] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1719), 1, - aux_sym_unquoted_token2, - ACTIONS(9769), 1, - anon_sym_DOT_DOT2, - STATE(6122), 1, + ACTIONS(6065), 1, + aux_sym_ctrl_match_token1, + STATE(5903), 1, sym_comment, - ACTIONS(1717), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(9771), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [219115] = 8, + STATE(6732), 1, + sym_block, + ACTIONS(9040), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [215870] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3239), 1, - aux_sym_record_entry_token1, - ACTIONS(8631), 1, - sym_identifier, - ACTIONS(9557), 1, - anon_sym_DOLLAR, - STATE(5619), 1, - sym_val_variable, - STATE(6123), 1, + ACTIONS(6065), 1, + aux_sym_ctrl_match_token1, + STATE(5904), 1, sym_comment, - STATE(6891), 1, - sym__assignment_pattern, - STATE(7113), 1, - sym__variable_name, - [219140] = 8, + STATE(6734), 1, + sym_block, + ACTIONS(9040), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [215888] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3239), 1, - aux_sym_record_entry_token1, - ACTIONS(8631), 1, - sym_identifier, - ACTIONS(9557), 1, - anon_sym_DOLLAR, - STATE(5619), 1, - sym_val_variable, - STATE(6124), 1, + ACTIONS(6065), 1, + aux_sym_ctrl_match_token1, + STATE(5905), 1, sym_comment, - STATE(6895), 1, - sym__assignment_pattern, - STATE(7113), 1, - sym__variable_name, - [219165] = 8, + STATE(7075), 1, + sym_block, + ACTIONS(9465), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [215906] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3239), 1, - aux_sym_record_entry_token1, - ACTIONS(8631), 1, - sym_identifier, - ACTIONS(9557), 1, - anon_sym_DOLLAR, - STATE(5619), 1, - sym_val_variable, - STATE(6125), 1, + ACTIONS(6065), 1, + aux_sym_ctrl_match_token1, + STATE(5906), 1, sym_comment, - STATE(6935), 1, - sym__assignment_pattern, - STATE(7113), 1, - sym__variable_name, - [219190] = 8, + STATE(6852), 1, + sym_block, + ACTIONS(9465), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [215924] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3269), 1, - aux_sym_record_entry_token1, - ACTIONS(8631), 1, + ACTIONS(8273), 1, sym_identifier, - ACTIONS(9557), 1, + ACTIONS(8992), 1, anon_sym_DOLLAR, - STATE(5619), 1, + STATE(5319), 1, sym_val_variable, - STATE(6126), 1, + STATE(5907), 1, sym_comment, - STATE(6935), 1, - sym__assignment_pattern, - STATE(7113), 1, + STATE(6017), 1, sym__variable_name, - [219215] = 8, + STATE(7054), 1, + sym__assignment_pattern, + [215946] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, + STATE(212), 1, + aux_sym__block_body_repeat1, + STATE(5908), 1, + sym_comment, + ACTIONS(145), 2, sym__newline, - ACTIONS(9366), 1, + anon_sym_SEMI, + ACTIONS(1664), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [215964] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1967), 1, aux_sym_ctrl_match_token1, - STATE(1814), 1, - sym_val_closure, - STATE(1850), 1, - sym_block, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(5386), 1, - sym__blosure, - STATE(6127), 1, + ACTIONS(8743), 1, + anon_sym_DOT, + STATE(2182), 1, + sym_cell_path, + STATE(2590), 1, + sym_path, + STATE(5588), 1, + aux_sym_cell_path_repeat1, + STATE(5909), 1, sym_comment, - [219240] = 4, + [215986] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5172), 1, - anon_sym_DASH, - STATE(6128), 1, + ACTIONS(1959), 1, + aux_sym_ctrl_match_token1, + ACTIONS(8743), 1, + anon_sym_DOT, + STATE(2184), 1, + sym_cell_path, + STATE(2590), 1, + sym_path, + STATE(5588), 1, + aux_sym_cell_path_repeat1, + STATE(5910), 1, sym_comment, - ACTIONS(5170), 5, - ts_builtin_sym_end, + [216008] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2808), 1, sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [219257] = 5, - ACTIONS(3), 1, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(5911), 1, + sym_comment, + STATE(7277), 1, + sym_val_list, + STATE(7283), 1, + aux_sym_val_table_repeat1, + [216030] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9773), 1, + ACTIONS(1881), 1, + aux_sym_ctrl_match_token1, + ACTIONS(8743), 1, anon_sym_DOT, - STATE(6519), 1, + STATE(2201), 1, + sym_cell_path, + STATE(2590), 1, sym_path, - STATE(6129), 2, - sym_comment, + STATE(5588), 1, aux_sym_cell_path_repeat1, - ACTIONS(955), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [219276] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9356), 1, - anon_sym_LPAREN, - ACTIONS(9776), 1, - anon_sym_DQUOTE2, - STATE(6130), 1, + STATE(5912), 1, sym_comment, - STATE(6177), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6937), 1, - sym_expr_interpolated, - ACTIONS(9358), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [219299] = 6, + [216052] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1481), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(9778), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9780), 1, - aux_sym__immediate_decimal_token2, - STATE(6131), 1, + ACTIONS(1963), 1, + aux_sym_ctrl_match_token1, + ACTIONS(8743), 1, + anon_sym_DOT, + STATE(2207), 1, + sym_cell_path, + STATE(2590), 1, + sym_path, + STATE(5588), 1, + aux_sym_cell_path_repeat1, + STATE(5913), 1, sym_comment, - ACTIONS(1483), 3, - sym_filesize_unit, - sym_duration_unit, - aux_sym_record_entry_token1, - [219320] = 5, + [216074] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6298), 1, - aux_sym_ctrl_match_token1, - STATE(6132), 1, + ACTIONS(8273), 1, + sym_identifier, + ACTIONS(8992), 1, + anon_sym_DOLLAR, + STATE(5319), 1, + sym_val_variable, + STATE(5914), 1, sym_comment, - STATE(6428), 1, - sym_block, - ACTIONS(9782), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + STATE(6017), 1, + sym__variable_name, + STATE(7101), 1, + sym__assignment_pattern, + [216096] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5832), 1, + sym__entry_separator, + ACTIONS(5931), 1, anon_sym_RBRACE, - [219339] = 6, + ACTIONS(9525), 1, + anon_sym__, + STATE(2797), 1, + aux_sym__multiple_types_repeat1, + STATE(5915), 1, + sym_comment, + STATE(7805), 1, + sym_default_arm, + [216118] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9784), 1, - sym_long_flag_identifier, - ACTIONS(9786), 1, - anon_sym_EQ2, - STATE(6133), 1, + STATE(5916), 1, sym_comment, - ACTIONS(4950), 2, + ACTIONS(9527), 5, sym_identifier, - anon_sym_DASH, - ACTIONS(4952), 2, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [219360] = 7, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [216132] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4286), 1, - anon_sym_DQUOTE, - ACTIONS(9788), 1, - aux_sym_path_token1, - STATE(4863), 1, - sym__str_double_quotes, - STATE(5595), 1, - sym_val_string, - STATE(6134), 1, + STATE(5917), 1, sym_comment, - ACTIONS(4288), 2, + ACTIONS(9529), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [219383] = 4, + [216146] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1013), 1, + aux_sym_record_entry_token1, + ACTIONS(9531), 1, + anon_sym_DOT, + STATE(1204), 1, + sym_cell_path, + STATE(5918), 1, + sym_comment, + STATE(6658), 1, + aux_sym_cell_path_repeat1, + STATE(6721), 1, + sym_path, + [216168] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6135), 1, + ACTIONS(1645), 1, + sym__entry_separator, + ACTIONS(8464), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(9533), 1, + anon_sym_DOT, + STATE(5919), 1, sym_comment, - ACTIONS(1982), 3, + ACTIONS(1643), 2, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(1984), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [219400] = 5, - ACTIONS(3), 1, + [216188] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2101), 1, - aux_sym_ctrl_match_token1, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - STATE(6136), 1, - sym_comment, - ACTIONS(2097), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(5036), 1, anon_sym_DASH, - [219419] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - ACTIONS(2107), 1, - aux_sym_ctrl_match_token1, - STATE(6137), 1, + STATE(5920), 1, sym_comment, - ACTIONS(2105), 4, + ACTIONS(5034), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, - [219438] = 7, + aux_sym_ctrl_match_token1, + [216204] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8853), 1, - anon_sym_DOT, - STATE(3345), 1, - sym_cell_path, - STATE(5525), 1, - aux_sym_cell_path_repeat1, - STATE(5711), 1, - sym_path, - STATE(6138), 1, + STATE(5921), 1, sym_comment, - ACTIONS(947), 2, - anon_sym_EQ, - anon_sym_COLON, - [219461] = 6, + ACTIONS(9535), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [216218] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9790), 1, - anon_sym_EQ2, - ACTIONS(9792), 1, - sym_short_flag_identifier, - STATE(6139), 1, - sym_comment, - ACTIONS(4942), 2, - anon_sym_DASH_DASH, + ACTIONS(5040), 1, anon_sym_DASH, - ACTIONS(4944), 2, + STATE(5922), 1, + sym_comment, + ACTIONS(5038), 4, + sym_identifier, anon_sym_DOLLAR, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - [219482] = 7, + [216234] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1429), 1, - aux_sym_unquoted_token2, - ACTIONS(8685), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8687), 1, - aux_sym__immediate_decimal_token5, - STATE(6140), 1, + STATE(5923), 1, sym_comment, - STATE(7575), 1, - sym__immediate_decimal, - ACTIONS(8683), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [219505] = 6, + ACTIONS(9537), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [216248] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1589), 1, + ACTIONS(1643), 1, aux_sym_unquoted_token2, - ACTIONS(9794), 1, - anon_sym_DOT, - ACTIONS(9796), 1, + ACTIONS(9002), 1, aux_sym__immediate_decimal_token2, - STATE(6141), 1, + STATE(5924), 1, sym_comment, - ACTIONS(1591), 3, + ACTIONS(1645), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [219526] = 8, + [216266] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4817), 1, - aux_sym_unquoted_token3, - ACTIONS(8378), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8901), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8903), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8905), 1, - aux_sym__immediate_decimal_token5, - STATE(6142), 1, + ACTIONS(1645), 1, + sym__entry_separator, + ACTIONS(8763), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(9539), 1, + anon_sym_DOT, + STATE(5925), 1, sym_comment, - STATE(6287), 1, - sym__immediate_decimal, - [219551] = 7, + ACTIONS(1643), 2, + anon_sym_RBRACE, + anon_sym__, + [216286] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1429), 1, - aux_sym_unquoted_token2, - ACTIONS(8685), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8687), 1, - aux_sym__immediate_decimal_token5, - STATE(6143), 1, + STATE(5926), 1, sym_comment, - STATE(7729), 1, - sym__immediate_decimal, - ACTIONS(8683), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [219574] = 8, + ACTIONS(9541), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [216300] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4817), 1, - aux_sym_unquoted_token3, - ACTIONS(8683), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8907), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8909), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8911), 1, - aux_sym__immediate_decimal_token5, - STATE(6144), 1, + ACTIONS(9543), 1, + anon_sym_LPAREN, + ACTIONS(9545), 1, + sym_unescaped_interpolated_content, + ACTIONS(9547), 1, + anon_sym_SQUOTE, + STATE(5927), 1, sym_comment, - STATE(7647), 1, - sym__immediate_decimal, - [219599] = 6, + STATE(5929), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7273), 1, + sym_expr_interpolated, + [216322] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4950), 1, - anon_sym_DASH, - ACTIONS(9798), 1, - sym_long_flag_identifier, - ACTIONS(9800), 1, - anon_sym_EQ2, - STATE(6145), 1, - sym_comment, - ACTIONS(4952), 3, + ACTIONS(8273), 1, + sym_identifier, + ACTIONS(8992), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [219620] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9802), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9804), 1, - aux_sym__immediate_decimal_token2, - STATE(6146), 1, + STATE(5319), 1, + sym_val_variable, + STATE(5928), 1, sym_comment, - ACTIONS(1569), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1571), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [219641] = 8, + STATE(5983), 1, + sym__variable_name, + STATE(6698), 1, + sym__assignment_pattern_parenthesized, + [216344] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1843), 1, - anon_sym_RBRACE, - ACTIONS(1845), 1, - sym__entry_separator, - ACTIONS(9230), 1, - anon_sym_DOT, - STATE(567), 1, - sym_cell_path, - STATE(6147), 1, - sym_comment, - STATE(6174), 1, - aux_sym_cell_path_repeat1, - STATE(6792), 1, - sym_path, - [219666] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4694), 1, - anon_sym_DOT_DOT2, - ACTIONS(9386), 1, - aux_sym_unquoted_token2, - STATE(6148), 1, + ACTIONS(9543), 1, + anon_sym_LPAREN, + ACTIONS(9545), 1, + sym_unescaped_interpolated_content, + ACTIONS(9549), 1, + anon_sym_SQUOTE, + STATE(5929), 1, sym_comment, - ACTIONS(4696), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(9500), 2, - sym_filesize_unit, - sym_duration_unit, - [219687] = 7, + STATE(6082), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7273), 1, + sym_expr_interpolated, + [216366] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9356), 1, + ACTIONS(9543), 1, anon_sym_LPAREN, - ACTIONS(9806), 1, - anon_sym_DQUOTE2, - STATE(6149), 1, + ACTIONS(9545), 1, + sym_unescaped_interpolated_content, + ACTIONS(9551), 1, + anon_sym_SQUOTE, + STATE(5930), 1, sym_comment, - STATE(6197), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6937), 1, + STATE(6093), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7273), 1, sym_expr_interpolated, - ACTIONS(9358), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [219710] = 7, - ACTIONS(111), 1, - anon_sym_DQUOTE, + [216388] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9808), 1, - aux_sym_path_token1, - STATE(2140), 1, - sym_val_string, - STATE(2144), 1, - sym__str_double_quotes, - STATE(6150), 1, - sym_comment, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [219733] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4889), 1, - aux_sym_unquoted_token3, - ACTIONS(8378), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8901), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8903), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8905), 1, - aux_sym__immediate_decimal_token5, - STATE(6151), 1, - sym_comment, - STATE(6287), 1, - sym__immediate_decimal, - [219758] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4889), 1, - aux_sym_unquoted_token3, - ACTIONS(8683), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8907), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8909), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8911), 1, - aux_sym__immediate_decimal_token5, - STATE(6152), 1, + ACTIONS(1497), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(9511), 1, + aux_sym__immediate_decimal_token2, + STATE(5931), 1, sym_comment, - STATE(7647), 1, - sym__immediate_decimal, - [219783] = 7, - ACTIONS(3), 1, + ACTIONS(1499), 3, + sym_filesize_unit, + sym_duration_unit, + aux_sym_record_entry_token1, + [216406] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9356), 1, - anon_sym_LPAREN, - ACTIONS(9810), 1, - anon_sym_DQUOTE2, - STATE(6153), 1, + ACTIONS(1705), 1, + aux_sym_unquoted_token2, + ACTIONS(9553), 1, + aux_sym__immediate_decimal_token2, + STATE(5932), 1, sym_comment, - STATE(6158), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6937), 1, - sym_expr_interpolated, - ACTIONS(9358), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [219806] = 4, - ACTIONS(3), 1, + ACTIONS(1707), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [216424] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6154), 1, + STATE(209), 1, + aux_sym__block_body_repeat1, + STATE(5933), 1, sym_comment, - ACTIONS(1021), 3, - anon_sym_RBRACK, + ACTIONS(145), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(669), 2, + anon_sym_RPAREN, anon_sym_RBRACE, + [216442] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1495), 1, + aux_sym_unquoted_token2, + ACTIONS(1794), 1, + aux_sym_ctrl_match_token1, + ACTIONS(9555), 1, anon_sym_DOT_DOT2, - ACTIONS(1023), 3, + STATE(5934), 1, + sym_comment, + ACTIONS(9557), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [219823] = 8, - ACTIONS(3), 1, + [216462] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8378), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8797), 1, - aux_sym_unquoted_token3, - ACTIONS(8901), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8903), 1, + ACTIONS(1643), 1, + aux_sym_unquoted_token2, + ACTIONS(9559), 1, + anon_sym_DOT, + ACTIONS(9561), 1, + aux_sym__immediate_decimal_token2, + STATE(5935), 1, + sym_comment, + ACTIONS(1645), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [216482] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8246), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8905), 1, + ACTIONS(8248), 1, aux_sym__immediate_decimal_token5, - STATE(6155), 1, + STATE(5936), 1, sym_comment, - STATE(6684), 1, + STATE(7713), 1, sym__immediate_decimal, - [219848] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8683), 1, + ACTIONS(8244), 2, aux_sym__immediate_decimal_token1, - ACTIONS(8797), 1, - aux_sym_unquoted_token3, - ACTIONS(8907), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8909), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8911), 1, - aux_sym__immediate_decimal_token5, - STATE(6156), 1, + [216502] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5018), 1, + anon_sym_DASH, + STATE(5937), 1, sym_comment, - STATE(7761), 1, - sym__immediate_decimal, - [219873] = 8, + ACTIONS(5016), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [216518] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9466), 1, - sym__newline, - ACTIONS(9468), 1, - anon_sym_SEMI, - ACTIONS(9812), 1, - anon_sym_RPAREN, - STATE(247), 1, - aux_sym__parenthesized_body_repeat1, - STATE(6157), 1, + ACTIONS(5022), 1, + anon_sym_DASH, + STATE(5938), 1, sym_comment, - STATE(6411), 1, - aux_sym__block_body_repeat1, - STATE(7297), 1, - aux_sym_shebang_repeat1, - [219898] = 7, + ACTIONS(5020), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [216534] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9356), 1, - anon_sym_LPAREN, - ACTIONS(9814), 1, - anon_sym_DQUOTE2, - STATE(6158), 1, + ACTIONS(9174), 1, + aux_sym__immediate_decimal_token2, + STATE(5939), 1, sym_comment, - STATE(6177), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6937), 1, - sym_expr_interpolated, - ACTIONS(9358), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [219921] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9816), 1, + ACTIONS(1643), 2, anon_sym_RBRACK, - STATE(6159), 1, - sym_comment, - STATE(6323), 1, - aux_sym_shebang_repeat1, - STATE(7052), 1, - sym_val_list, - STATE(7368), 1, - aux_sym_val_table_repeat1, - [219946] = 8, + aux_sym__unquoted_in_list_token2, + ACTIONS(1645), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [216552] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9818), 1, - anon_sym_RBRACK, - STATE(6160), 1, + ACTIONS(4888), 1, + anon_sym_DASH, + STATE(5940), 1, sym_comment, - STATE(6326), 1, - aux_sym_shebang_repeat1, - STATE(7235), 1, - sym_val_list, - STATE(7376), 1, - aux_sym_val_table_repeat1, - [219971] = 4, + ACTIONS(4886), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [216568] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5153), 1, - anon_sym_DASH, - STATE(6161), 1, + ACTIONS(8954), 1, + aux_sym_ctrl_match_token1, + STATE(5941), 1, sym_comment, - ACTIONS(5151), 5, + STATE(6968), 1, + sym_val_record, + ACTIONS(9416), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [219988] = 8, - ACTIONS(247), 1, + [216586] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9280), 1, - anon_sym_def, - ACTIONS(9282), 1, - anon_sym_extern, - ACTIONS(9284), 1, - anon_sym_module, - ACTIONS(9286), 1, - anon_sym_use, - ACTIONS(9820), 1, - anon_sym_alias, - ACTIONS(9822), 1, - anon_sym_const, - STATE(6162), 1, + ACTIONS(5832), 1, + sym__entry_separator, + ACTIONS(9525), 1, + anon_sym__, + ACTIONS(9563), 1, + anon_sym_RBRACE, + STATE(2840), 1, + aux_sym__multiple_types_repeat1, + STATE(5942), 1, sym_comment, - [220013] = 8, - ACTIONS(3), 1, + STATE(7780), 1, + sym_default_arm, + [216608] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2957), 1, - aux_sym_unquoted_token3, - ACTIONS(8378), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8901), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8903), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8905), 1, - aux_sym__immediate_decimal_token5, - STATE(6163), 1, + ACTIONS(8915), 1, + anon_sym_DASH, + STATE(5943), 1, sym_comment, - STATE(6287), 1, - sym__immediate_decimal, - [220038] = 8, + ACTIONS(8913), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [216624] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9824), 1, - anon_sym_RBRACK, - STATE(6164), 1, + ACTIONS(9565), 1, + anon_sym_PIPE, + ACTIONS(9567), 1, + anon_sym_if, + ACTIONS(9569), 1, + anon_sym_EQ_GT, + STATE(5944), 1, sym_comment, - STATE(6329), 1, - aux_sym_shebang_repeat1, - STATE(7344), 1, - sym_val_list, - STATE(7383), 1, - aux_sym_val_table_repeat1, - [220063] = 8, + STATE(7012), 1, + aux_sym_match_pattern_repeat1, + STATE(7747), 1, + sym_match_guard, + [216646] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, + ACTIONS(2808), 1, sym__newline, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - ACTIONS(9826), 1, - anon_sym_RBRACK, - STATE(6165), 1, - sym_comment, - STATE(6330), 1, + STATE(2586), 1, aux_sym_shebang_repeat1, - STATE(7348), 1, + STATE(5945), 1, + sym_comment, + STATE(6994), 1, sym_val_list, - STATE(7386), 1, + STATE(7002), 1, aux_sym_val_table_repeat1, - [220088] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2957), 1, - aux_sym_unquoted_token3, - ACTIONS(8683), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8907), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8909), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8911), 1, - aux_sym__immediate_decimal_token5, - STATE(6166), 1, - sym_comment, - STATE(7647), 1, - sym__immediate_decimal, - [220113] = 6, + [216668] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1429), 1, - aux_sym_unquoted_token2, - ACTIONS(9828), 1, - anon_sym_DOT_DOT2, - STATE(6167), 1, + STATE(5946), 1, sym_comment, - ACTIONS(1698), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(9830), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [220134] = 5, - ACTIONS(3), 1, + ACTIONS(9571), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [216682] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2093), 1, - aux_sym_ctrl_match_token1, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(6168), 1, + ACTIONS(5044), 1, + anon_sym_DASH, + STATE(5947), 1, sym_comment, - ACTIONS(2089), 4, + ACTIONS(5042), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, - [220153] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9832), 1, - anon_sym_RBRACK, - STATE(6169), 1, - sym_comment, - STATE(6327), 1, - aux_sym_shebang_repeat1, - STATE(7240), 1, - sym_val_list, - STATE(7378), 1, - aux_sym_val_table_repeat1, - [220178] = 7, + aux_sym_ctrl_match_token1, + [216698] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1457), 1, - aux_sym_unquoted_token2, - ACTIONS(8685), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8687), 1, - aux_sym__immediate_decimal_token5, - STATE(6170), 1, + ACTIONS(5048), 1, + anon_sym_DASH, + STATE(5948), 1, sym_comment, - STATE(7636), 1, - sym__immediate_decimal, - ACTIONS(8683), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [220201] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9366), 1, + ACTIONS(5046), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - STATE(1814), 1, - sym_val_closure, - STATE(1850), 1, - sym_block, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(5391), 1, - sym__blosure, - STATE(6171), 1, - sym_comment, - [220226] = 7, - ACTIONS(247), 1, + [216714] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9834), 1, - anon_sym_DQUOTE, - ACTIONS(9838), 1, - aux_sym_path_token1, - STATE(2622), 1, - sym__str_double_quotes, - STATE(2624), 1, - sym_val_string, - STATE(6172), 1, + ACTIONS(9322), 1, + aux_sym__immediate_decimal_token2, + STATE(5949), 1, sym_comment, - ACTIONS(9836), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [220249] = 4, + ACTIONS(1643), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1645), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [216732] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(6173), 1, - sym_comment, - ACTIONS(1589), 2, - anon_sym_DOT_DOT2, + ACTIONS(1804), 1, + aux_sym_ctrl_match_token1, + ACTIONS(1806), 1, aux_sym_unquoted_token2, - ACTIONS(1591), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(9573), 1, + anon_sym_DOT_DOT2, + STATE(5950), 1, + sym_comment, + ACTIONS(9575), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [220266] = 7, - ACTIONS(3), 1, + [216752] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(953), 1, - sym__entry_separator, - ACTIONS(9230), 1, - anon_sym_DOT, - STATE(6038), 1, - aux_sym_cell_path_repeat1, - STATE(6174), 1, + ACTIONS(1631), 1, + aux_sym_unquoted_token2, + ACTIONS(9577), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9579), 1, + aux_sym__immediate_decimal_token2, + STATE(5951), 1, sym_comment, - STATE(6792), 1, - sym_path, - ACTIONS(951), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [220289] = 6, + ACTIONS(1633), 2, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + [216772] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1008), 1, + ACTIONS(5832), 1, sym__entry_separator, - ACTIONS(9840), 1, - anon_sym_DOT_DOT2, - STATE(6175), 1, - sym_comment, - ACTIONS(1006), 2, - anon_sym_RBRACK, + ACTIONS(9525), 1, + anon_sym__, + ACTIONS(9581), 1, anon_sym_RBRACE, - ACTIONS(9842), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [220310] = 8, - ACTIONS(3), 1, + STATE(2799), 1, + aux_sym__multiple_types_repeat1, + STATE(5952), 1, + sym_comment, + STATE(7519), 1, + sym_default_arm, + [216794] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7391), 1, - anon_sym_RBRACK, - ACTIONS(7393), 1, - sym__entry_separator, - ACTIONS(9230), 1, + ACTIONS(1967), 1, + sym__table_head_separator, + ACTIONS(9583), 1, anon_sym_DOT, - STATE(6174), 1, - aux_sym_cell_path_repeat1, - STATE(6176), 1, + STATE(2654), 1, + sym_cell_path, + STATE(5953), 1, sym_comment, - STATE(6792), 1, + STATE(6566), 1, + aux_sym_cell_path_repeat1, + STATE(6721), 1, sym_path, - STATE(7723), 1, + [216816] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1881), 1, + sym__table_head_separator, + ACTIONS(9583), 1, + anon_sym_DOT, + STATE(2660), 1, sym_cell_path, - [220335] = 6, + STATE(5954), 1, + sym_comment, + STATE(6566), 1, + aux_sym_cell_path_repeat1, + STATE(6721), 1, + sym_path, + [216838] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8273), 1, + sym_identifier, + ACTIONS(8992), 1, + anon_sym_DOLLAR, + STATE(5319), 1, + sym_val_variable, + STATE(5955), 1, + sym_comment, + STATE(5967), 1, + sym__variable_name, + STATE(6547), 1, + sym__assignment_pattern, + [216860] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9844), 1, + ACTIONS(9543), 1, anon_sym_LPAREN, - ACTIONS(9850), 1, - anon_sym_DQUOTE2, - STATE(6937), 1, + ACTIONS(9545), 1, + sym_unescaped_interpolated_content, + ACTIONS(9585), 1, + anon_sym_SQUOTE, + STATE(5956), 1, + sym_comment, + STATE(5960), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7273), 1, sym_expr_interpolated, - ACTIONS(9847), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - STATE(6177), 2, + [216882] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8273), 1, + sym_identifier, + ACTIONS(8992), 1, + anon_sym_DOLLAR, + STATE(5319), 1, + sym_val_variable, + STATE(5957), 1, sym_comment, - aux_sym__inter_double_quotes_repeat1, - [220356] = 4, + STATE(5967), 1, + sym__variable_name, + STATE(6550), 1, + sym__assignment_pattern, + [216904] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(6178), 1, + ACTIONS(8954), 1, + aux_sym_ctrl_match_token1, + STATE(5958), 1, sym_comment, - ACTIONS(1569), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1571), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [220373] = 7, + STATE(7032), 1, + sym_val_record, + ACTIONS(9420), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [216922] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9625), 1, - anon_sym_DASH_DASH, - ACTIONS(9627), 1, - anon_sym_DASH, - ACTIONS(9852), 1, - anon_sym_in, - STATE(6179), 1, + ACTIONS(8273), 1, + sym_identifier, + ACTIONS(8992), 1, + anon_sym_DOLLAR, + STATE(5319), 1, + sym_val_variable, + STATE(5959), 1, sym_comment, - STATE(7790), 1, - sym__flag, - STATE(5714), 2, - sym_short_flag, - sym_long_flag, - [220396] = 8, + STATE(5967), 1, + sym__variable_name, + STATE(6551), 1, + sym__assignment_pattern, + [216944] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9543), 1, + anon_sym_LPAREN, + ACTIONS(9545), 1, + sym_unescaped_interpolated_content, + ACTIONS(9587), 1, + anon_sym_SQUOTE, + STATE(5960), 1, + sym_comment, + STATE(6082), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7273), 1, + sym_expr_interpolated, + [216966] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9366), 1, - aux_sym_ctrl_match_token1, - STATE(1814), 1, - sym_val_closure, - STATE(1850), 1, - sym_block, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(5237), 1, - sym__blosure, - STATE(6180), 1, + ACTIONS(4926), 1, + anon_sym_DASH, + STATE(5961), 1, sym_comment, - [220421] = 6, + ACTIONS(4924), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [216982] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2072), 1, - sym__entry_separator, - ACTIONS(9854), 1, - anon_sym_DOT_DOT2, - STATE(6181), 1, + ACTIONS(9589), 1, + aux_sym__immediate_decimal_token2, + STATE(5962), 1, sym_comment, - ACTIONS(2066), 2, - anon_sym_RBRACK, + ACTIONS(1705), 2, anon_sym_RBRACE, - ACTIONS(9856), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [220442] = 6, + aux_sym__unquoted_in_record_token2, + ACTIONS(1707), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [217000] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(1993), 1, + anon_sym_RBRACE, + ACTIONS(1999), 1, sym__entry_separator, - ACTIONS(9858), 1, + ACTIONS(9340), 1, anon_sym_DOT_DOT2, - STATE(6182), 1, + STATE(5963), 1, sym_comment, - ACTIONS(1972), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(9860), 2, + ACTIONS(9342), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [220463] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9366), 1, - aux_sym_ctrl_match_token1, - STATE(1814), 1, - sym_val_closure, - STATE(1850), 1, - sym_block, - STATE(5237), 1, - sym__blosure, - STATE(6127), 1, - aux_sym_shebang_repeat1, - STATE(6183), 1, - sym_comment, - [220488] = 7, + [217020] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9356), 1, + ACTIONS(9543), 1, anon_sym_LPAREN, - ACTIONS(9862), 1, - anon_sym_DQUOTE2, - STATE(6184), 1, + ACTIONS(9545), 1, + sym_unescaped_interpolated_content, + ACTIONS(9591), 1, + anon_sym_SQUOTE, + STATE(5964), 1, sym_comment, - STATE(6196), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6937), 1, + STATE(5976), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7273), 1, sym_expr_interpolated, - ACTIONS(9358), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [220511] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6185), 1, - sym_comment, - ACTIONS(1648), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1650), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [220528] = 4, + [217042] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(6186), 1, + ACTIONS(8273), 1, + sym_identifier, + ACTIONS(8992), 1, + anon_sym_DOLLAR, + STATE(5319), 1, + sym_val_variable, + STATE(5965), 1, sym_comment, - ACTIONS(1721), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1723), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [220545] = 7, + STATE(5983), 1, + sym__variable_name, + STATE(6700), 1, + sym__assignment_pattern_parenthesized, + [217064] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9625), 1, - anon_sym_DASH_DASH, - ACTIONS(9627), 1, - anon_sym_DASH, - ACTIONS(9864), 1, - anon_sym_in, - STATE(6187), 1, + ACTIONS(8273), 1, + sym_identifier, + ACTIONS(8992), 1, + anon_sym_DOLLAR, + STATE(5319), 1, + sym_val_variable, + STATE(5966), 1, sym_comment, - STATE(8009), 1, - sym__flag, - STATE(5714), 2, - sym_short_flag, - sym_long_flag, - [220568] = 7, + STATE(5967), 1, + sym__variable_name, + STATE(6307), 1, + sym__assignment_pattern, + [217086] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9625), 1, - anon_sym_DASH_DASH, - ACTIONS(9627), 1, - anon_sym_DASH, - ACTIONS(9866), 1, - anon_sym_in, - STATE(6188), 1, + ACTIONS(5095), 1, + sym__newline, + ACTIONS(9593), 1, + anon_sym_EQ, + ACTIONS(9595), 1, + anon_sym_COLON, + STATE(5967), 1, sym_comment, - STATE(8011), 1, - sym__flag, - STATE(5714), 2, - sym_short_flag, - sym_long_flag, - [220591] = 5, - ACTIONS(247), 1, + STATE(7041), 1, + aux_sym_shebang_repeat1, + STATE(7710), 1, + sym_param_type, + [217108] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9868), 1, - anon_sym_DOT_DOT2, - STATE(6189), 1, + ACTIONS(9543), 1, + anon_sym_LPAREN, + ACTIONS(9545), 1, + sym_unescaped_interpolated_content, + ACTIONS(9597), 1, + anon_sym_SQUOTE, + STATE(5968), 1, sym_comment, - ACTIONS(9870), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1941), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [220610] = 8, + STATE(5969), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7273), 1, + sym_expr_interpolated, + [217130] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7059), 1, - aux_sym_unquoted_token3, - ACTIONS(8378), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8901), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8903), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8905), 1, - aux_sym__immediate_decimal_token5, - STATE(6190), 1, + ACTIONS(9543), 1, + anon_sym_LPAREN, + ACTIONS(9545), 1, + sym_unescaped_interpolated_content, + ACTIONS(9599), 1, + anon_sym_SQUOTE, + STATE(5969), 1, sym_comment, - STATE(6684), 1, - sym__immediate_decimal, - [220635] = 8, + STATE(6082), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7273), 1, + sym_expr_interpolated, + [217152] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7059), 1, - aux_sym_unquoted_token3, - ACTIONS(8683), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8907), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8909), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8911), 1, - aux_sym__immediate_decimal_token5, - STATE(6191), 1, + ACTIONS(9601), 1, + sym__newline, + ACTIONS(9604), 1, + sym__space, + STATE(5365), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(7399), 1, + sym__flags_parenthesized, + STATE(5970), 2, sym_comment, - STATE(7761), 1, - sym__immediate_decimal, - [220660] = 6, + aux_sym_ctrl_do_parenthesized_repeat1, + [217172] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1966), 1, - sym__entry_separator, - ACTIONS(9872), 1, - anon_sym_DOT_DOT2, - STATE(6192), 1, + ACTIONS(9543), 1, + anon_sym_LPAREN, + ACTIONS(9545), 1, + sym_unescaped_interpolated_content, + ACTIONS(9607), 1, + anon_sym_SQUOTE, + STATE(5971), 1, sym_comment, - ACTIONS(1960), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(9874), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [220681] = 5, - ACTIONS(247), 1, + STATE(5972), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7273), 1, + sym_expr_interpolated, + [217194] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9876), 1, - anon_sym_DOT_DOT2, - STATE(6193), 1, + ACTIONS(9543), 1, + anon_sym_LPAREN, + ACTIONS(9545), 1, + sym_unescaped_interpolated_content, + ACTIONS(9609), 1, + anon_sym_SQUOTE, + STATE(5972), 1, sym_comment, - ACTIONS(9878), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2072), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [220700] = 5, - ACTIONS(247), 1, + STATE(6082), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7273), 1, + sym_expr_interpolated, + [217216] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9880), 1, - anon_sym_DOT_DOT2, - STATE(6194), 1, + ACTIONS(9543), 1, + anon_sym_LPAREN, + ACTIONS(9545), 1, + sym_unescaped_interpolated_content, + ACTIONS(9611), 1, + anon_sym_SQUOTE, + STATE(5973), 1, sym_comment, - ACTIONS(9882), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1978), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [220719] = 5, - ACTIONS(247), 1, + STATE(5975), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7273), 1, + sym_expr_interpolated, + [217238] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9884), 1, - anon_sym_DOT_DOT2, - STATE(6195), 1, + ACTIONS(9613), 1, + aux_sym__immediate_decimal_token2, + STATE(5974), 1, sym_comment, - ACTIONS(9886), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [220738] = 7, + ACTIONS(1705), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1707), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [217256] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9356), 1, + ACTIONS(9543), 1, anon_sym_LPAREN, - ACTIONS(9888), 1, - anon_sym_DQUOTE2, - STATE(6177), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6196), 1, + ACTIONS(9545), 1, + sym_unescaped_interpolated_content, + ACTIONS(9615), 1, + anon_sym_SQUOTE, + STATE(5975), 1, sym_comment, - STATE(6937), 1, + STATE(6082), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7273), 1, sym_expr_interpolated, - ACTIONS(9358), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [220761] = 7, + [217278] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9356), 1, + ACTIONS(9543), 1, anon_sym_LPAREN, - ACTIONS(9890), 1, - anon_sym_DQUOTE2, - STATE(6177), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6197), 1, + ACTIONS(9545), 1, + sym_unescaped_interpolated_content, + ACTIONS(9617), 1, + anon_sym_SQUOTE, + STATE(5976), 1, sym_comment, - STATE(6937), 1, + STATE(6082), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7273), 1, sym_expr_interpolated, - ACTIONS(9358), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [220784] = 8, + [217300] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9892), 1, - anon_sym_RBRACK, - STATE(6198), 1, + ACTIONS(1643), 1, + aux_sym_unquoted_token2, + ACTIONS(9619), 1, + anon_sym_DOT, + ACTIONS(9621), 1, + aux_sym__immediate_decimal_token2, + STATE(5977), 1, sym_comment, - STATE(6331), 1, - aux_sym_shebang_repeat1, - STATE(7271), 1, - sym_val_list, - STATE(7390), 1, - aux_sym_val_table_repeat1, - [220809] = 7, - ACTIONS(247), 1, + ACTIONS(1645), 2, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + [217320] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3527), 1, - anon_sym_DQUOTE, - ACTIONS(9607), 1, - aux_sym_path_token1, - STATE(2723), 1, - sym_val_string, - STATE(2802), 1, - sym__str_double_quotes, - STATE(6199), 1, + STATE(5978), 1, sym_comment, - ACTIONS(3529), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [220832] = 8, - ACTIONS(247), 1, + ACTIONS(1058), 2, + anon_sym_DOT, + sym__entry_separator, + ACTIONS(1056), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym__, + [217336] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9366), 1, - aux_sym_ctrl_match_token1, - STATE(1814), 1, - sym_val_closure, - STATE(1850), 1, - sym_block, - STATE(5391), 1, - sym__blosure, - STATE(5958), 1, - aux_sym_shebang_repeat1, - STATE(6200), 1, + ACTIONS(9543), 1, + anon_sym_LPAREN, + ACTIONS(9545), 1, + sym_unescaped_interpolated_content, + ACTIONS(9623), 1, + anon_sym_SQUOTE, + STATE(5979), 1, sym_comment, - [220857] = 8, - ACTIONS(247), 1, + STATE(5980), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7273), 1, + sym_expr_interpolated, + [217358] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9366), 1, - aux_sym_ctrl_match_token1, - STATE(1814), 1, - sym_val_closure, - STATE(1850), 1, - sym_block, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(5240), 1, - sym__blosure, - STATE(6201), 1, + ACTIONS(9543), 1, + anon_sym_LPAREN, + ACTIONS(9545), 1, + sym_unescaped_interpolated_content, + ACTIONS(9625), 1, + anon_sym_SQUOTE, + STATE(5980), 1, sym_comment, - [220882] = 8, + STATE(6082), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7273), 1, + sym_expr_interpolated, + [217380] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9366), 1, - aux_sym_ctrl_match_token1, - STATE(1814), 1, - sym_val_closure, - STATE(1850), 1, - sym_block, - STATE(5240), 1, - sym__blosure, - STATE(6171), 1, - aux_sym_shebang_repeat1, - STATE(6202), 1, + ACTIONS(8273), 1, + sym_identifier, + ACTIONS(8992), 1, + anon_sym_DOLLAR, + STATE(5319), 1, + sym_val_variable, + STATE(5981), 1, + sym_comment, + STATE(5983), 1, + sym__variable_name, + STATE(6945), 1, + sym__assignment_pattern_parenthesized, + [217402] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9543), 1, + anon_sym_LPAREN, + ACTIONS(9545), 1, + sym_unescaped_interpolated_content, + ACTIONS(9627), 1, + anon_sym_SQUOTE, + STATE(5982), 1, sym_comment, - [220907] = 8, + STATE(5984), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7273), 1, + sym_expr_interpolated, + [217424] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, + ACTIONS(5095), 1, sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9894), 1, - anon_sym_RBRACK, - STATE(6203), 1, + ACTIONS(9595), 1, + anon_sym_COLON, + ACTIONS(9629), 1, + anon_sym_EQ, + STATE(5983), 1, sym_comment, - STATE(6369), 1, + STATE(7041), 1, aux_sym_shebang_repeat1, - STATE(7215), 1, - sym_val_list, - STATE(7510), 1, - aux_sym_val_table_repeat1, - [220932] = 5, - ACTIONS(247), 1, + STATE(7746), 1, + sym_param_type, + [217446] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9896), 1, - anon_sym_DOT_DOT2, - STATE(6204), 1, + ACTIONS(9543), 1, + anon_sym_LPAREN, + ACTIONS(9545), 1, + sym_unescaped_interpolated_content, + ACTIONS(9631), 1, + anon_sym_SQUOTE, + STATE(5984), 1, sym_comment, - ACTIONS(2072), 2, - sym__newline, - aux_sym_ctrl_match_token1, - ACTIONS(9898), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [220950] = 7, - ACTIONS(247), 1, + STATE(6082), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7273), 1, + sym_expr_interpolated, + [217468] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(947), 1, - aux_sym_record_entry_token1, - ACTIONS(9900), 1, - anon_sym_DOT, - STATE(1409), 1, - sym_cell_path, - STATE(6205), 1, + ACTIONS(9543), 1, + anon_sym_LPAREN, + ACTIONS(9545), 1, + sym_unescaped_interpolated_content, + ACTIONS(9633), 1, + anon_sym_SQUOTE, + STATE(5985), 1, sym_comment, - STATE(6439), 1, - aux_sym_cell_path_repeat1, - STATE(7697), 1, - sym_path, - [220972] = 5, - ACTIONS(247), 1, + STATE(5987), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7273), 1, + sym_expr_interpolated, + [217490] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(224), 1, - aux_sym__block_body_repeat1, - STATE(6206), 1, - sym_comment, - ACTIONS(145), 2, + ACTIONS(7736), 1, sym__newline, - anon_sym_SEMI, - ACTIONS(1609), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [220990] = 6, - ACTIONS(247), 1, + ACTIONS(7738), 1, + sym__space, + STATE(4745), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(5970), 1, + aux_sym_ctrl_do_parenthesized_repeat1, + STATE(5986), 1, + sym_comment, + STATE(7399), 1, + sym__flags_parenthesized, + [217512] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1429), 1, - aux_sym_unquoted_token2, - ACTIONS(1698), 1, - aux_sym_ctrl_match_token1, - ACTIONS(9902), 1, - anon_sym_DOT_DOT2, - STATE(6207), 1, + ACTIONS(9543), 1, + anon_sym_LPAREN, + ACTIONS(9545), 1, + sym_unescaped_interpolated_content, + ACTIONS(9635), 1, + anon_sym_SQUOTE, + STATE(5987), 1, sym_comment, - ACTIONS(9904), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [221010] = 4, + STATE(6082), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7273), 1, + sym_expr_interpolated, + [217534] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5131), 1, + ACTIONS(5026), 1, anon_sym_DASH, - STATE(6208), 1, + STATE(5988), 1, sym_comment, - ACTIONS(5129), 4, + ACTIONS(5024), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - [221026] = 4, + [217550] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5135), 1, + ACTIONS(5030), 1, anon_sym_DASH, - STATE(6209), 1, + STATE(5989), 1, sym_comment, - ACTIONS(5133), 4, + ACTIONS(5028), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, aux_sym_ctrl_match_token1, - [221042] = 7, + [217566] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9906), 1, + ACTIONS(9543), 1, anon_sym_LPAREN, - ACTIONS(9908), 1, + ACTIONS(9545), 1, sym_unescaped_interpolated_content, - ACTIONS(9910), 1, + ACTIONS(9637), 1, anon_sym_SQUOTE, - STATE(6210), 1, + STATE(5990), 1, sym_comment, - STATE(6211), 1, + STATE(5991), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7246), 1, + STATE(7273), 1, sym_expr_interpolated, - [221064] = 7, + [217588] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9906), 1, + ACTIONS(9543), 1, anon_sym_LPAREN, - ACTIONS(9908), 1, + ACTIONS(9545), 1, sym_unescaped_interpolated_content, - ACTIONS(9912), 1, + ACTIONS(9639), 1, anon_sym_SQUOTE, - STATE(6211), 1, + STATE(5991), 1, sym_comment, - STATE(6241), 1, + STATE(6082), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7246), 1, + STATE(7273), 1, sym_expr_interpolated, - [221086] = 6, + [217610] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8685), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8687), 1, - aux_sym__immediate_decimal_token5, - STATE(6212), 1, + ACTIONS(6065), 1, + aux_sym_ctrl_match_token1, + STATE(5992), 1, sym_comment, - STATE(7645), 1, - sym__immediate_decimal, - ACTIONS(8683), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [221106] = 7, + STATE(6717), 1, + sym_block, + ACTIONS(9022), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [217628] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9906), 1, + ACTIONS(9543), 1, anon_sym_LPAREN, - ACTIONS(9908), 1, + ACTIONS(9545), 1, sym_unescaped_interpolated_content, - ACTIONS(9914), 1, + ACTIONS(9641), 1, anon_sym_SQUOTE, - STATE(6213), 1, + STATE(5993), 1, sym_comment, - STATE(6230), 1, + STATE(5994), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7246), 1, + STATE(7273), 1, sym_expr_interpolated, - [221128] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6214), 1, - sym_comment, - STATE(7515), 1, - sym_val_list, - STATE(7521), 1, - aux_sym_val_table_repeat1, - [221150] = 7, + [217650] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9906), 1, + ACTIONS(9543), 1, anon_sym_LPAREN, - ACTIONS(9908), 1, + ACTIONS(9545), 1, sym_unescaped_interpolated_content, - ACTIONS(9916), 1, + ACTIONS(9643), 1, anon_sym_SQUOTE, - STATE(6215), 1, + STATE(5994), 1, sym_comment, - STATE(6218), 1, + STATE(6082), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7246), 1, + STATE(7273), 1, sym_expr_interpolated, - [221172] = 6, - ACTIONS(247), 1, + [217672] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1711), 1, - anon_sym_LPAREN2, - ACTIONS(1719), 1, - aux_sym_unquoted_token2, - ACTIONS(9918), 1, + ACTIONS(2023), 1, + anon_sym_RBRACE, + ACTIONS(2025), 1, + sym__entry_separator, + ACTIONS(9340), 1, anon_sym_DOT_DOT2, - STATE(6216), 1, + STATE(5995), 1, sym_comment, - ACTIONS(9920), 2, + ACTIONS(9342), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [221192] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8631), 1, - sym_identifier, - ACTIONS(9557), 1, - anon_sym_DOLLAR, - STATE(5619), 1, - sym_val_variable, - STATE(6217), 1, - sym_comment, - STATE(6409), 1, - sym__assignment_pattern, - STATE(7113), 1, - sym__variable_name, - [221214] = 7, + [217692] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9906), 1, + ACTIONS(9543), 1, anon_sym_LPAREN, - ACTIONS(9908), 1, + ACTIONS(9545), 1, sym_unescaped_interpolated_content, - ACTIONS(9922), 1, + ACTIONS(9645), 1, anon_sym_SQUOTE, - STATE(6218), 1, + STATE(5996), 1, sym_comment, - STATE(6241), 1, + STATE(5998), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7246), 1, + STATE(7273), 1, sym_expr_interpolated, - [221236] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1717), 1, - aux_sym_ctrl_match_token1, - ACTIONS(1719), 1, - aux_sym_unquoted_token2, - ACTIONS(9924), 1, - anon_sym_DOT_DOT2, - STATE(6219), 1, - sym_comment, - ACTIONS(9926), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [221256] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6300), 1, - aux_sym_ctrl_match_token1, - STATE(6220), 1, - sym_comment, - STATE(7205), 1, - sym_block, - ACTIONS(9352), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [221274] = 5, + [217714] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6300), 1, - aux_sym_ctrl_match_token1, - STATE(6221), 1, + STATE(211), 1, + aux_sym__block_body_repeat1, + STATE(5997), 1, sym_comment, - STATE(7209), 1, - sym_block, - ACTIONS(9352), 3, - ts_builtin_sym_end, + ACTIONS(145), 2, sym__newline, anon_sym_SEMI, - [221292] = 7, + ACTIONS(1655), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [217732] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9906), 1, + ACTIONS(9543), 1, anon_sym_LPAREN, - ACTIONS(9908), 1, + ACTIONS(9545), 1, sym_unescaped_interpolated_content, - ACTIONS(9928), 1, + ACTIONS(9647), 1, anon_sym_SQUOTE, - STATE(6222), 1, + STATE(5998), 1, sym_comment, - STATE(6225), 1, + STATE(6082), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7246), 1, + STATE(7273), 1, sym_expr_interpolated, - [221314] = 6, - ACTIONS(247), 1, + [217754] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1569), 1, - aux_sym_unquoted_token2, - ACTIONS(9930), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9932), 1, - aux_sym__immediate_decimal_token2, - STATE(6223), 1, + ACTIONS(5832), 1, + sym__entry_separator, + ACTIONS(5883), 1, + anon_sym_RBRACE, + ACTIONS(9525), 1, + anon_sym__, + STATE(2801), 1, + aux_sym__multiple_types_repeat1, + STATE(5999), 1, sym_comment, - ACTIONS(1571), 2, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - [221334] = 7, + STATE(7523), 1, + sym_default_arm, + [217776] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9906), 1, + ACTIONS(9543), 1, anon_sym_LPAREN, - ACTIONS(9908), 1, + ACTIONS(9545), 1, sym_unescaped_interpolated_content, - ACTIONS(9934), 1, + ACTIONS(9649), 1, anon_sym_SQUOTE, - STATE(6224), 1, + STATE(6000), 1, sym_comment, - STATE(6228), 1, + STATE(6001), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7246), 1, + STATE(7273), 1, sym_expr_interpolated, - [221356] = 7, + [217798] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9906), 1, + ACTIONS(9543), 1, anon_sym_LPAREN, - ACTIONS(9908), 1, + ACTIONS(9545), 1, sym_unescaped_interpolated_content, - ACTIONS(9936), 1, + ACTIONS(9651), 1, anon_sym_SQUOTE, - STATE(6225), 1, + STATE(6001), 1, sym_comment, - STATE(6241), 1, + STATE(6082), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7246), 1, + STATE(7273), 1, sym_expr_interpolated, - [221378] = 7, - ACTIONS(247), 1, + [217820] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1603), 1, - aux_sym_record_entry_token1, - ACTIONS(9900), 1, + ACTIONS(5827), 1, + anon_sym_RBRACE, + ACTIONS(5832), 1, + sym__entry_separator, + ACTIONS(9525), 1, + anon_sym__, + STATE(2818), 1, + aux_sym__multiple_types_repeat1, + STATE(6002), 1, + sym_comment, + STATE(7599), 1, + sym_default_arm, + [217842] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9543), 1, + anon_sym_LPAREN, + ACTIONS(9545), 1, + sym_unescaped_interpolated_content, + ACTIONS(9653), 1, + anon_sym_SQUOTE, + STATE(6003), 1, + sym_comment, + STATE(6005), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7273), 1, + sym_expr_interpolated, + [217864] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1042), 1, anon_sym_DOT, - STATE(1528), 1, - sym_cell_path, - STATE(6226), 1, + STATE(6004), 1, sym_comment, - STATE(6439), 1, - aux_sym_cell_path_repeat1, - STATE(7697), 1, - sym_path, - [221400] = 7, + ACTIONS(1040), 4, + anon_sym_RBRACK, + anon_sym_QMARK2, + sym__entry_separator, + sym__table_head_separator, + [217880] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9906), 1, + ACTIONS(9543), 1, anon_sym_LPAREN, - ACTIONS(9908), 1, + ACTIONS(9545), 1, sym_unescaped_interpolated_content, - ACTIONS(9938), 1, + ACTIONS(9655), 1, anon_sym_SQUOTE, - STATE(6227), 1, + STATE(6005), 1, sym_comment, - STATE(6229), 1, + STATE(6082), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7246), 1, + STATE(7273), 1, sym_expr_interpolated, - [221422] = 7, + [217902] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9906), 1, + ACTIONS(5832), 1, + sym__entry_separator, + ACTIONS(5903), 1, + anon_sym_RBRACE, + ACTIONS(9525), 1, + anon_sym__, + STATE(2814), 1, + aux_sym__multiple_types_repeat1, + STATE(6006), 1, + sym_comment, + STATE(7721), 1, + sym_default_arm, + [217924] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9543), 1, anon_sym_LPAREN, - ACTIONS(9908), 1, + ACTIONS(9545), 1, sym_unescaped_interpolated_content, - ACTIONS(9940), 1, + ACTIONS(9657), 1, anon_sym_SQUOTE, - STATE(6228), 1, + STATE(6007), 1, sym_comment, - STATE(6241), 1, + STATE(6082), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7246), 1, + STATE(7273), 1, sym_expr_interpolated, - [221444] = 7, + [217946] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9906), 1, + STATE(6008), 1, + sym_comment, + ACTIONS(1062), 2, + anon_sym_DOT, + sym__entry_separator, + ACTIONS(1060), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym__, + [217962] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6009), 1, + sym_comment, + ACTIONS(1054), 2, + anon_sym_DOT, + sym__entry_separator, + ACTIONS(1052), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym__, + [217978] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9543), 1, anon_sym_LPAREN, - ACTIONS(9908), 1, + ACTIONS(9545), 1, sym_unescaped_interpolated_content, - ACTIONS(9942), 1, + ACTIONS(9659), 1, anon_sym_SQUOTE, - STATE(6229), 1, + STATE(6010), 1, sym_comment, - STATE(6241), 1, + STATE(6011), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7246), 1, + STATE(7273), 1, sym_expr_interpolated, - [221466] = 7, + [218000] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9906), 1, + ACTIONS(9543), 1, anon_sym_LPAREN, - ACTIONS(9908), 1, + ACTIONS(9545), 1, sym_unescaped_interpolated_content, - ACTIONS(9944), 1, + ACTIONS(9661), 1, anon_sym_SQUOTE, - STATE(6230), 1, + STATE(6011), 1, sym_comment, - STATE(6241), 1, + STATE(6082), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7246), 1, + STATE(7273), 1, sym_expr_interpolated, - [221488] = 6, + [218022] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1589), 1, + ACTIONS(1688), 1, + aux_sym_record_entry_token1, + ACTIONS(9531), 1, + anon_sym_DOT, + STATE(1313), 1, + sym_cell_path, + STATE(6012), 1, + sym_comment, + STATE(6658), 1, + aux_sym_cell_path_repeat1, + STATE(6721), 1, + sym_path, + [218044] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5739), 1, + anon_sym_RBRACK, + ACTIONS(5745), 1, + sym__entry_separator, + ACTIONS(9340), 1, + anon_sym_DOT_DOT2, + STATE(6013), 1, + sym_comment, + ACTIONS(9342), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [218064] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1575), 1, + anon_sym_DASH, + ACTIONS(8432), 1, aux_sym_unquoted_token2, - ACTIONS(9946), 1, + STATE(6014), 1, + sym_comment, + ACTIONS(1587), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [218082] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1046), 1, anon_sym_DOT, - ACTIONS(9948), 1, - aux_sym__immediate_decimal_token2, - STATE(6231), 1, + STATE(6015), 1, sym_comment, - ACTIONS(1591), 2, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - [221508] = 4, + ACTIONS(1044), 4, + anon_sym_RBRACK, + anon_sym_QMARK2, + sym__entry_separator, + sym__table_head_separator, + [218098] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1629), 1, + aux_sym_record_entry_token1, + ACTIONS(9531), 1, + anon_sym_DOT, + STATE(1308), 1, + sym_cell_path, + STATE(6016), 1, + sym_comment, + STATE(6658), 1, + aux_sym_cell_path_repeat1, + STATE(6721), 1, + sym_path, + [218120] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5095), 1, + sym__newline, + ACTIONS(9595), 1, + anon_sym_COLON, + ACTIONS(9663), 1, + anon_sym_EQ, + STATE(6017), 1, + sym_comment, + STATE(7041), 1, + aux_sym_shebang_repeat1, + STATE(7529), 1, + sym_param_type, + [218142] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5832), 1, + sym__entry_separator, + ACTIONS(5913), 1, + anon_sym_RBRACE, + ACTIONS(9525), 1, + anon_sym__, + STATE(2851), 1, + aux_sym__multiple_types_repeat1, + STATE(6018), 1, + sym_comment, + STATE(7490), 1, + sym_default_arm, + [218164] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(978), 1, + ACTIONS(1050), 1, anon_sym_DOT, - STATE(6232), 1, + STATE(6019), 1, sym_comment, - ACTIONS(976), 4, + ACTIONS(1048), 4, anon_sym_RBRACK, anon_sym_QMARK2, sym__entry_separator, sym__table_head_separator, - [221524] = 5, + [218180] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5832), 1, + sym__entry_separator, + ACTIONS(9525), 1, + anon_sym__, + ACTIONS(9665), 1, + anon_sym_RBRACE, + STATE(2836), 1, + aux_sym__multiple_types_repeat1, + STATE(6020), 1, + sym_comment, + STATE(7802), 1, + sym_default_arm, + [218202] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5832), 1, + sym__entry_separator, + ACTIONS(9525), 1, + anon_sym__, + ACTIONS(9667), 1, + anon_sym_RBRACE, + STATE(2796), 1, + aux_sym__multiple_types_repeat1, + STATE(6021), 1, + sym_comment, + STATE(7813), 1, + sym_default_arm, + [218224] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1589), 1, + ACTIONS(3215), 1, + aux_sym_record_entry_token1, + ACTIONS(9669), 1, + anon_sym_use, + ACTIONS(9671), 1, + anon_sym_list, + ACTIONS(9673), 1, + anon_sym_hide, + ACTIONS(9675), 1, + anon_sym_new, + STATE(6022), 1, + sym_comment, + [218246] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5832), 1, + sym__entry_separator, + ACTIONS(5836), 1, + anon_sym_RBRACE, + ACTIONS(9525), 1, + anon_sym__, + STATE(2825), 1, + aux_sym__multiple_types_repeat1, + STATE(6023), 1, + sym_comment, + STATE(7602), 1, + sym_default_arm, + [218268] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4906), 1, + anon_sym_DASH, + ACTIONS(9677), 1, + anon_sym_EQ2, + STATE(6024), 1, + sym_comment, + ACTIONS(4904), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [218286] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6025), 1, + sym_comment, + STATE(7061), 1, + aux_sym_val_table_repeat1, + STATE(7076), 1, + sym_val_list, + [218308] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6026), 1, + sym_comment, + STATE(7023), 1, + sym_val_list, + STATE(7066), 1, + aux_sym_val_table_repeat1, + [218330] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4916), 1, + anon_sym_DASH, + ACTIONS(9679), 1, + anon_sym_EQ2, + STATE(6027), 1, + sym_comment, + ACTIONS(4914), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [218348] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9681), 1, + anon_sym_EQ2, + ACTIONS(9683), 1, + sym_short_flag_identifier, + STATE(6028), 1, + sym_comment, + ACTIONS(4747), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH, + [218366] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8273), 1, + sym_identifier, + ACTIONS(8992), 1, + anon_sym_DOLLAR, + STATE(5319), 1, + sym_val_variable, + STATE(6017), 1, + sym__variable_name, + STATE(6029), 1, + sym_comment, + STATE(7024), 1, + sym__assignment_pattern, + [218388] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1631), 1, aux_sym_unquoted_token2, - ACTIONS(9796), 1, + ACTIONS(9685), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9687), 1, aux_sym__immediate_decimal_token2, - STATE(6233), 1, + STATE(6030), 1, sym_comment, - ACTIONS(1591), 3, + ACTIONS(1633), 2, anon_sym_PIPE, - anon_sym_if, anon_sym_EQ_GT, - [221542] = 7, - ACTIONS(3), 1, + [218408] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9906), 1, - anon_sym_LPAREN, - ACTIONS(9908), 1, - sym_unescaped_interpolated_content, - ACTIONS(9950), 1, - anon_sym_SQUOTE, - STATE(6234), 1, + ACTIONS(1565), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(9689), 1, + aux_sym__immediate_decimal_token2, + STATE(6031), 1, sym_comment, - STATE(6235), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7246), 1, - sym_expr_interpolated, - [221564] = 7, + ACTIONS(1567), 3, + sym_filesize_unit, + sym_duration_unit, + aux_sym_record_entry_token1, + [218426] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9906), 1, - anon_sym_LPAREN, - ACTIONS(9908), 1, - sym_unescaped_interpolated_content, - ACTIONS(9952), 1, - anon_sym_SQUOTE, - STATE(6235), 1, + ACTIONS(1796), 1, + anon_sym_RBRACE, + ACTIONS(1804), 1, + sym__entry_separator, + ACTIONS(9691), 1, + anon_sym_DOT_DOT2, + STATE(6032), 1, sym_comment, - STATE(6241), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7246), 1, - sym_expr_interpolated, - [221586] = 7, - ACTIONS(3), 1, + ACTIONS(9693), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [218446] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9906), 1, - anon_sym_LPAREN, - ACTIONS(9908), 1, - sym_unescaped_interpolated_content, - ACTIONS(9954), 1, - anon_sym_SQUOTE, - STATE(6236), 1, + ACTIONS(1575), 1, + anon_sym_DASH, + ACTIONS(8432), 1, + aux_sym_unquoted_token2, + STATE(6033), 1, sym_comment, - STATE(6241), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7246), 1, - sym_expr_interpolated, - [221608] = 6, + ACTIONS(1587), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + aux_sym_ctrl_match_token1, + [218464] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8273), 1, + sym_identifier, + ACTIONS(8992), 1, + anon_sym_DOLLAR, + STATE(5319), 1, + sym_val_variable, + STATE(5983), 1, + sym__variable_name, + STATE(6034), 1, + sym_comment, + STATE(6703), 1, + sym__assignment_pattern_parenthesized, + [218486] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1013), 1, + aux_sym_ctrl_match_token1, + ACTIONS(8743), 1, + anon_sym_DOT, + STATE(2590), 1, + sym_path, + STATE(3091), 1, + sym_cell_path, + STATE(5588), 1, + aux_sym_cell_path_repeat1, + STATE(6035), 1, + sym_comment, + [218508] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9956), 1, + ACTIONS(1786), 1, + anon_sym_RBRACE, + ACTIONS(1794), 1, + sym__entry_separator, + ACTIONS(9695), 1, + anon_sym_DOT_DOT2, + STATE(6036), 1, + sym_comment, + ACTIONS(9697), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [218528] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4906), 1, + anon_sym_DASH, + ACTIONS(9699), 1, + anon_sym_EQ2, + STATE(6037), 1, + sym_comment, + ACTIONS(4904), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [218546] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2808), 1, sym__newline, - ACTIONS(9959), 1, - sym__space, - STATE(5796), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7571), 1, - sym__flags_parenthesized, - STATE(6237), 2, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6038), 1, + sym_comment, + STATE(6742), 1, + sym_val_list, + STATE(7129), 1, + aux_sym_val_table_repeat1, + [218568] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6039), 1, + sym_comment, + STATE(6826), 1, + sym_val_list, + STATE(7131), 1, + aux_sym_val_table_repeat1, + [218590] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4737), 1, + anon_sym_DASH_DASH, + ACTIONS(9701), 1, + sym_long_flag_identifier, + ACTIONS(9703), 1, + anon_sym_EQ2, + STATE(6040), 1, + sym_comment, + ACTIONS(4735), 2, + sym_identifier, + anon_sym_DASH, + [218610] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4916), 1, + anon_sym_DASH, + ACTIONS(9705), 1, + anon_sym_EQ2, + STATE(6041), 1, + sym_comment, + ACTIONS(4914), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [218628] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6042), 1, + sym_comment, + STATE(6991), 1, + sym_val_list, + STATE(7138), 1, + aux_sym_val_table_repeat1, + [218650] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6043), 1, + sym_comment, + STATE(6998), 1, + sym_val_list, + STATE(7141), 1, + aux_sym_val_table_repeat1, + [218672] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6044), 1, + sym_comment, + STATE(7064), 1, + sym_val_list, + STATE(7147), 1, + aux_sym_val_table_repeat1, + [218694] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6045), 1, + sym_comment, + STATE(7084), 1, + sym_val_list, + STATE(7149), 1, + aux_sym_val_table_repeat1, + [218716] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6046), 1, + sym_comment, + STATE(7112), 1, + sym_val_list, + STATE(7155), 1, + aux_sym_val_table_repeat1, + [218738] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6047), 1, + sym_comment, + STATE(7116), 1, + sym_val_list, + STATE(7157), 1, + aux_sym_val_table_repeat1, + [218760] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8273), 1, + sym_identifier, + ACTIONS(8992), 1, + anon_sym_DOLLAR, + STATE(5319), 1, + sym_val_variable, + STATE(6017), 1, + sym__variable_name, + STATE(6048), 1, sym_comment, - aux_sym_ctrl_do_parenthesized_repeat1, - [221628] = 4, + STATE(6983), 1, + sym__assignment_pattern, + [218782] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5160), 1, - anon_sym_DASH, - STATE(6238), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6049), 1, sym_comment, - ACTIONS(5158), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [221644] = 5, + STATE(7162), 1, + aux_sym_val_table_repeat1, + STATE(7171), 1, + sym_val_list, + [218804] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9300), 1, - aux_sym_ctrl_match_token1, - STATE(6239), 1, - sym_comment, - STATE(7324), 1, - sym_val_record, - ACTIONS(9426), 3, - ts_builtin_sym_end, + ACTIONS(2808), 1, sym__newline, - anon_sym_SEMI, - [221662] = 5, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6050), 1, + sym_comment, + STATE(7164), 1, + aux_sym_val_table_repeat1, + STATE(7197), 1, + sym_val_list, + [218826] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9300), 1, - aux_sym_ctrl_match_token1, - STATE(6240), 1, - sym_comment, - STATE(7326), 1, - sym_val_record, - ACTIONS(9452), 3, - ts_builtin_sym_end, + ACTIONS(2808), 1, sym__newline, - anon_sym_SEMI, - [221680] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9962), 1, - anon_sym_LPAREN, - ACTIONS(9965), 1, - sym_unescaped_interpolated_content, - ACTIONS(9968), 1, - anon_sym_SQUOTE, - STATE(7246), 1, - sym_expr_interpolated, - STATE(6241), 2, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6051), 1, sym_comment, - aux_sym__inter_single_quotes_repeat1, - [221700] = 7, - ACTIONS(3), 1, + STATE(7015), 1, + sym_val_list, + STATE(7170), 1, + aux_sym_val_table_repeat1, + [218848] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9906), 1, - anon_sym_LPAREN, - ACTIONS(9908), 1, - sym_unescaped_interpolated_content, - ACTIONS(9970), 1, - anon_sym_SQUOTE, - STATE(6242), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6052), 1, sym_comment, - STATE(6243), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7246), 1, - sym_expr_interpolated, - [221722] = 7, - ACTIONS(3), 1, + STATE(6668), 1, + sym_val_list, + STATE(7173), 1, + aux_sym_val_table_repeat1, + [218870] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9906), 1, - anon_sym_LPAREN, - ACTIONS(9908), 1, - sym_unescaped_interpolated_content, - ACTIONS(9972), 1, - anon_sym_SQUOTE, - STATE(6241), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6243), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6053), 1, sym_comment, - STATE(7246), 1, - sym_expr_interpolated, - [221744] = 5, + STATE(6686), 1, + sym_val_list, + STATE(7179), 1, + aux_sym_val_table_repeat1, + [218892] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(223), 1, - aux_sym__block_body_repeat1, - STATE(6244), 1, - sym_comment, - ACTIONS(145), 2, + ACTIONS(2808), 1, sym__newline, - anon_sym_SEMI, - ACTIONS(1613), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [221762] = 4, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6054), 1, + sym_comment, + STATE(6691), 1, + sym_val_list, + STATE(7181), 1, + aux_sym_val_table_repeat1, + [218914] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5153), 1, - anon_sym_DASH, - STATE(6245), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6055), 1, sym_comment, - ACTIONS(5151), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [221778] = 7, - ACTIONS(3), 1, + STATE(6708), 1, + sym_val_list, + STATE(7186), 1, + aux_sym_val_table_repeat1, + [218936] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9906), 1, - anon_sym_LPAREN, - ACTIONS(9908), 1, - sym_unescaped_interpolated_content, - ACTIONS(9974), 1, - anon_sym_SQUOTE, - STATE(6246), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6056), 1, sym_comment, - STATE(6247), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7246), 1, - sym_expr_interpolated, - [221800] = 7, - ACTIONS(3), 1, + STATE(6714), 1, + sym_val_list, + STATE(7189), 1, + aux_sym_val_table_repeat1, + [218958] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9906), 1, - anon_sym_LPAREN, - ACTIONS(9908), 1, - sym_unescaped_interpolated_content, - ACTIONS(9976), 1, - anon_sym_SQUOTE, - STATE(6241), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6247), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6057), 1, sym_comment, - STATE(7246), 1, - sym_expr_interpolated, - [221822] = 7, + STATE(6737), 1, + sym_val_list, + STATE(7193), 1, + aux_sym_val_table_repeat1, + [218980] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3269), 1, - aux_sym_record_entry_token1, - ACTIONS(9978), 1, - anon_sym_use, - ACTIONS(9980), 1, - anon_sym_list, - ACTIONS(9982), 1, - anon_sym_hide, - ACTIONS(9984), 1, - anon_sym_new, - STATE(6248), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6058), 1, sym_comment, - [221844] = 6, - ACTIONS(3), 1, + STATE(6744), 1, + sym_val_list, + STATE(7195), 1, + aux_sym_val_table_repeat1, + [219002] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1905), 1, - anon_sym_RBRACE, - ACTIONS(1911), 1, - sym__entry_separator, - ACTIONS(9840), 1, + ACTIONS(1495), 1, + aux_sym_unquoted_token2, + ACTIONS(1788), 1, + anon_sym_LPAREN2, + ACTIONS(9707), 1, anon_sym_DOT_DOT2, - STATE(6249), 1, + STATE(6059), 1, sym_comment, - ACTIONS(9842), 2, + ACTIONS(9709), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [221864] = 3, + [219022] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(6250), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6060), 1, sym_comment, - ACTIONS(9986), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [221878] = 7, - ACTIONS(3), 1, + STATE(6765), 1, + sym_val_list, + STATE(7201), 1, + aux_sym_val_table_repeat1, + [219044] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9906), 1, - anon_sym_LPAREN, - ACTIONS(9908), 1, - sym_unescaped_interpolated_content, - ACTIONS(9988), 1, - anon_sym_SQUOTE, - STATE(6251), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6061), 1, sym_comment, - STATE(6252), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7246), 1, - sym_expr_interpolated, - [221900] = 7, - ACTIONS(3), 1, + STATE(6792), 1, + sym_val_list, + STATE(7209), 1, + aux_sym_val_table_repeat1, + [219066] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9906), 1, - anon_sym_LPAREN, - ACTIONS(9908), 1, - sym_unescaped_interpolated_content, - ACTIONS(9990), 1, - anon_sym_SQUOTE, - STATE(6241), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6252), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6062), 1, sym_comment, - STATE(7246), 1, - sym_expr_interpolated, - [221922] = 3, + STATE(6798), 1, + sym_val_list, + STATE(7211), 1, + aux_sym_val_table_repeat1, + [219088] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(6253), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6063), 1, sym_comment, - ACTIONS(9992), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [221936] = 5, + STATE(6813), 1, + sym_val_list, + STATE(7215), 1, + aux_sym_val_table_repeat1, + [219110] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1525), 1, - anon_sym_DASH, - ACTIONS(8797), 1, - aux_sym_unquoted_token2, - STATE(6254), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6064), 1, sym_comment, - ACTIONS(1537), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [221954] = 5, - ACTIONS(3), 1, + STATE(6819), 1, + sym_val_list, + STATE(7218), 1, + aux_sym_val_table_repeat1, + [219132] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9994), 1, - anon_sym_QMARK2, - STATE(6255), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6065), 1, sym_comment, - ACTIONS(970), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(972), 2, - anon_sym_DOT, - sym__entry_separator, - [221972] = 7, - ACTIONS(3), 1, + STATE(6840), 1, + sym_val_list, + STATE(7223), 1, + aux_sym_val_table_repeat1, + [219154] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9906), 1, - anon_sym_LPAREN, - ACTIONS(9908), 1, - sym_unescaped_interpolated_content, - ACTIONS(9996), 1, - anon_sym_SQUOTE, - STATE(6256), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6066), 1, sym_comment, - STATE(6258), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7246), 1, - sym_expr_interpolated, - [221994] = 4, + STATE(6847), 1, + sym_val_list, + STATE(7225), 1, + aux_sym_val_table_repeat1, + [219176] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3487), 1, - anon_sym_DASH, - STATE(6257), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6067), 1, sym_comment, - ACTIONS(3485), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [222010] = 7, - ACTIONS(3), 1, + STATE(6866), 1, + sym_val_list, + STATE(7229), 1, + aux_sym_val_table_repeat1, + [219198] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9906), 1, - anon_sym_LPAREN, - ACTIONS(9908), 1, - sym_unescaped_interpolated_content, - ACTIONS(9998), 1, - anon_sym_SQUOTE, - STATE(6241), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6258), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6068), 1, sym_comment, - STATE(7246), 1, - sym_expr_interpolated, - [222032] = 5, - ACTIONS(3), 1, + STATE(6873), 1, + sym_val_list, + STATE(7231), 1, + aux_sym_val_table_repeat1, + [219220] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10000), 1, - anon_sym_QMARK2, - STATE(6259), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6069), 1, sym_comment, - ACTIONS(980), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(982), 2, - anon_sym_DOT, - sym__entry_separator, - [222050] = 4, + STATE(6889), 1, + sym_val_list, + STATE(7236), 1, + aux_sym_val_table_repeat1, + [219242] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9264), 1, - anon_sym_DASH, - STATE(6260), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6070), 1, sym_comment, - ACTIONS(9262), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [222066] = 7, - ACTIONS(3), 1, + STATE(6895), 1, + sym_val_list, + STATE(7238), 1, + aux_sym_val_table_repeat1, + [219264] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9906), 1, - anon_sym_LPAREN, - ACTIONS(9908), 1, - sym_unescaped_interpolated_content, - ACTIONS(10002), 1, - anon_sym_SQUOTE, - STATE(6261), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6071), 1, sym_comment, - STATE(6263), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7246), 1, - sym_expr_interpolated, - [222088] = 7, + STATE(6910), 1, + sym_val_list, + STATE(7242), 1, + aux_sym_val_table_repeat1, + [219286] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8631), 1, - sym_identifier, - ACTIONS(9557), 1, - anon_sym_DOLLAR, - STATE(5619), 1, - sym_val_variable, - STATE(6262), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6072), 1, sym_comment, - STATE(6953), 1, - sym__assignment_pattern, - STATE(7002), 1, - sym__variable_name, - [222110] = 7, - ACTIONS(3), 1, + STATE(6917), 1, + sym_val_list, + STATE(7244), 1, + aux_sym_val_table_repeat1, + [219308] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9906), 1, - anon_sym_LPAREN, - ACTIONS(9908), 1, - sym_unescaped_interpolated_content, - ACTIONS(10004), 1, - anon_sym_SQUOTE, - STATE(6241), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6263), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6073), 1, sym_comment, - STATE(7246), 1, - sym_expr_interpolated, - [222132] = 6, - ACTIONS(3), 1, + STATE(6927), 1, + sym_val_list, + STATE(7248), 1, + aux_sym_val_table_repeat1, + [219330] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1591), 1, - sym__entry_separator, - ACTIONS(8921), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(10006), 1, - anon_sym_DOT, - STATE(6264), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6074), 1, sym_comment, - ACTIONS(1589), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [222152] = 4, + STATE(6932), 1, + sym_val_list, + STATE(7251), 1, + aux_sym_val_table_repeat1, + [219352] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5164), 1, - anon_sym_DASH, - STATE(6265), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6075), 1, sym_comment, - ACTIONS(5162), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [222168] = 7, - ACTIONS(3), 1, + STATE(6942), 1, + sym_val_list, + STATE(7255), 1, + aux_sym_val_table_repeat1, + [219374] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9906), 1, - anon_sym_LPAREN, - ACTIONS(9908), 1, - sym_unescaped_interpolated_content, - ACTIONS(10008), 1, - anon_sym_SQUOTE, - STATE(6266), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6076), 1, sym_comment, - STATE(6267), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7246), 1, - sym_expr_interpolated, - [222190] = 7, - ACTIONS(3), 1, + STATE(6949), 1, + sym_val_list, + STATE(7257), 1, + aux_sym_val_table_repeat1, + [219396] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9906), 1, - anon_sym_LPAREN, - ACTIONS(9908), 1, - sym_unescaped_interpolated_content, - ACTIONS(10010), 1, - anon_sym_SQUOTE, - STATE(6241), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6267), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6077), 1, sym_comment, - STATE(7246), 1, - sym_expr_interpolated, - [222212] = 4, + STATE(6959), 1, + sym_val_list, + STATE(7262), 1, + aux_sym_val_table_repeat1, + [219418] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3375), 1, - anon_sym_DASH, - STATE(6268), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6078), 1, sym_comment, - ACTIONS(3373), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [222228] = 5, + STATE(6964), 1, + sym_val_list, + STATE(7264), 1, + aux_sym_val_table_repeat1, + [219440] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6300), 1, - aux_sym_ctrl_match_token1, - STATE(6269), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6079), 1, sym_comment, - STATE(7516), 1, - sym_block, - ACTIONS(9354), 3, - ts_builtin_sym_end, + STATE(6972), 1, + sym_val_list, + STATE(7268), 1, + aux_sym_val_table_repeat1, + [219462] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2808), 1, sym__newline, - anon_sym_SEMI, - [222246] = 7, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6080), 1, + sym_comment, + STATE(6978), 1, + sym_val_list, + STATE(7270), 1, + aux_sym_val_table_repeat1, + [219484] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9906), 1, - anon_sym_LPAREN, - ACTIONS(9908), 1, - sym_unescaped_interpolated_content, - ACTIONS(10012), 1, - anon_sym_SQUOTE, - STATE(6270), 1, + ACTIONS(1036), 1, + anon_sym_DOT, + ACTIONS(9711), 1, + anon_sym_QMARK2, + STATE(6081), 1, sym_comment, - STATE(6271), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7246), 1, - sym_expr_interpolated, - [222268] = 7, + ACTIONS(1034), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [219502] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9906), 1, + ACTIONS(9713), 1, anon_sym_LPAREN, - ACTIONS(9908), 1, + ACTIONS(9716), 1, sym_unescaped_interpolated_content, - ACTIONS(10014), 1, + ACTIONS(9719), 1, anon_sym_SQUOTE, - STATE(6241), 1, + STATE(7273), 1, + sym_expr_interpolated, + STATE(6082), 2, + sym_comment, aux_sym__inter_single_quotes_repeat1, - STATE(6271), 1, + [219522] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1030), 1, + anon_sym_DOT, + ACTIONS(9721), 1, + anon_sym_QMARK2, + STATE(6083), 1, sym_comment, - STATE(7246), 1, - sym_expr_interpolated, - [222290] = 4, + ACTIONS(1028), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [219540] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5168), 1, - anon_sym_DASH, - STATE(6272), 1, + ACTIONS(8246), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8248), 1, + aux_sym__immediate_decimal_token5, + STATE(6084), 1, sym_comment, - ACTIONS(5166), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [222306] = 6, - ACTIONS(3), 1, + STATE(7412), 1, + sym__immediate_decimal, + ACTIONS(8244), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [219560] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1949), 1, - anon_sym_RBRACE, - ACTIONS(1951), 1, - sym__entry_separator, - ACTIONS(9840), 1, + ACTIONS(1798), 1, + anon_sym_LPAREN2, + ACTIONS(1806), 1, + aux_sym_unquoted_token2, + ACTIONS(9723), 1, anon_sym_DOT_DOT2, - STATE(6273), 1, + STATE(6085), 1, sym_comment, - ACTIONS(9842), 2, + ACTIONS(9725), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [222326] = 4, + [219580] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5172), 1, - anon_sym_DASH, - STATE(6274), 1, + ACTIONS(9727), 1, + anon_sym_DOT_DOT2, + STATE(6086), 1, sym_comment, - ACTIONS(5170), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(2067), 2, + sym__newline, aux_sym_ctrl_match_token1, - [222342] = 7, + ACTIONS(9729), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [219598] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8631), 1, - sym_identifier, - ACTIONS(9557), 1, - anon_sym_DOLLAR, - STATE(5619), 1, - sym_val_variable, - STATE(6275), 1, - sym_comment, - STATE(7276), 1, - sym__variable_name, - STATE(7320), 1, - sym__assignment_pattern_parenthesized, - [222364] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(964), 1, - anon_sym_DOT, - STATE(6276), 1, + ACTIONS(9731), 1, + anon_sym_DOT_DOT2, + STATE(6087), 1, sym_comment, - ACTIONS(962), 4, - anon_sym_RBRACK, - anon_sym_QMARK2, - sym__entry_separator, - sym__table_head_separator, - [222380] = 5, + ACTIONS(1794), 2, + sym__newline, + aux_sym_ctrl_match_token1, + ACTIONS(9733), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [219616] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1648), 1, - aux_sym_unquoted_token2, - ACTIONS(10016), 1, - aux_sym__immediate_decimal_token2, - STATE(6277), 1, + ACTIONS(9735), 1, + anon_sym_DOT_DOT2, + STATE(6088), 1, sym_comment, - ACTIONS(1650), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [222398] = 5, - ACTIONS(3), 1, + ACTIONS(1804), 2, + sym__newline, + aux_sym_ctrl_match_token1, + ACTIONS(9737), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [219634] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9496), 1, - aux_sym__immediate_decimal_token2, - STATE(6278), 1, + ACTIONS(9739), 1, + anon_sym_DOT_DOT2, + STATE(6089), 1, sym_comment, - ACTIONS(1589), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1591), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [222416] = 5, + ACTIONS(2041), 2, + sym__newline, + aux_sym_ctrl_match_token1, + ACTIONS(9741), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [219652] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1519), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(10018), 1, - aux_sym__immediate_decimal_token2, - STATE(6279), 1, + ACTIONS(9743), 1, + anon_sym_DOT_DOT2, + STATE(6090), 1, sym_comment, - ACTIONS(1521), 3, - sym_filesize_unit, - sym_duration_unit, - aux_sym_record_entry_token1, - [222434] = 6, + ACTIONS(2049), 2, + sym__newline, + aux_sym_ctrl_match_token1, + ACTIONS(9745), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [219670] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1589), 1, - aux_sym_unquoted_token2, - ACTIONS(10020), 1, - anon_sym_DOT, - ACTIONS(10022), 1, - aux_sym__immediate_decimal_token2, - STATE(6280), 1, + ACTIONS(9747), 1, + anon_sym_DOT_DOT2, + STATE(6091), 1, sym_comment, - ACTIONS(1591), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [222454] = 3, + ACTIONS(2057), 2, + sym__newline, + aux_sym_ctrl_match_token1, + ACTIONS(9749), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [219688] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(6281), 1, + ACTIONS(3213), 1, + aux_sym_record_entry_token1, + ACTIONS(9669), 1, + anon_sym_use, + ACTIONS(9671), 1, + anon_sym_list, + ACTIONS(9673), 1, + anon_sym_hide, + ACTIONS(9675), 1, + anon_sym_new, + STATE(6092), 1, sym_comment, - ACTIONS(10024), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [222468] = 3, - ACTIONS(247), 1, + [219710] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6282), 1, + ACTIONS(9543), 1, + anon_sym_LPAREN, + ACTIONS(9545), 1, + sym_unescaped_interpolated_content, + ACTIONS(9751), 1, + anon_sym_SQUOTE, + STATE(6082), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6093), 1, sym_comment, - ACTIONS(10026), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [222482] = 5, + STATE(7273), 1, + sym_expr_interpolated, + [219732] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6300), 1, + ACTIONS(6065), 1, aux_sym_ctrl_match_token1, - STATE(6283), 1, + STATE(6094), 1, sym_comment, - STATE(7322), 1, + STATE(7052), 1, sym_block, - ACTIONS(9396), 3, + ACTIONS(9026), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [222500] = 5, - ACTIONS(247), 1, + [219750] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6300), 1, - aux_sym_ctrl_match_token1, - STATE(6284), 1, + ACTIONS(9543), 1, + anon_sym_LPAREN, + ACTIONS(9545), 1, + sym_unescaped_interpolated_content, + ACTIONS(9753), 1, + anon_sym_SQUOTE, + STATE(6007), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6095), 1, sym_comment, - STATE(7325), 1, - sym_block, - ACTIONS(9396), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [222518] = 5, + STATE(7273), 1, + sym_expr_interpolated, + [219772] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6300), 1, - aux_sym_ctrl_match_token1, - STATE(6285), 1, + STATE(6096), 1, sym_comment, - STATE(7157), 1, - sym_block, - ACTIONS(9782), 3, - ts_builtin_sym_end, + ACTIONS(9755), 4, sym__newline, anon_sym_SEMI, - [222536] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8631), 1, - sym_identifier, - ACTIONS(9557), 1, - anon_sym_DOLLAR, - STATE(5619), 1, - sym_val_variable, - STATE(6286), 1, - sym_comment, - STATE(7002), 1, - sym__variable_name, - STATE(7057), 1, - sym__assignment_pattern, - [222558] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [219785] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1429), 1, - aux_sym_unquoted_token2, - ACTIONS(1692), 1, - anon_sym_LPAREN2, - ACTIONS(10028), 1, + ACTIONS(1804), 1, + aux_sym_ctrl_match_token1, + ACTIONS(9757), 1, anon_sym_DOT_DOT2, - STATE(6287), 1, + STATE(6097), 1, sym_comment, - ACTIONS(10030), 2, + ACTIONS(9759), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [222578] = 7, + [219802] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7824), 1, - sym__newline, - ACTIONS(7826), 1, - sym__space, - STATE(4967), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(6237), 1, - aux_sym_ctrl_do_parenthesized_repeat1, - STATE(6288), 1, + STATE(6098), 1, sym_comment, - STATE(7571), 1, - sym__flags_parenthesized, - [222600] = 7, - ACTIONS(247), 1, + ACTIONS(1705), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1707), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [219817] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8631), 1, - sym_identifier, - ACTIONS(9557), 1, - anon_sym_DOLLAR, - STATE(5619), 1, - sym_val_variable, - STATE(6289), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(9763), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6099), 1, sym_comment, - STATE(7275), 1, - sym__assignment_pattern_parenthesized, - STATE(7276), 1, - sym__variable_name, - [222622] = 7, + [219836] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3239), 1, - aux_sym_record_entry_token1, - ACTIONS(9978), 1, - anon_sym_use, - ACTIONS(9980), 1, - anon_sym_list, - ACTIONS(9982), 1, - anon_sym_hide, - ACTIONS(9984), 1, - anon_sym_new, - STATE(6290), 1, + STATE(6100), 1, sym_comment, - [222644] = 4, - ACTIONS(247), 1, + ACTIONS(9765), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [219849] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5139), 1, - anon_sym_DASH, - STATE(6291), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(9767), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6101), 1, sym_comment, - ACTIONS(5137), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [222660] = 4, - ACTIONS(247), 1, + [219868] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5143), 1, - anon_sym_DASH, - STATE(6292), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(9769), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6102), 1, sym_comment, - ACTIONS(5141), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [222676] = 5, + [219887] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(972), 1, - anon_sym_DOT, - ACTIONS(10032), 1, - anon_sym_QMARK2, - STATE(6293), 1, - sym_comment, - ACTIONS(970), 3, - anon_sym_RBRACK, + ACTIONS(5537), 1, sym__entry_separator, - sym__table_head_separator, - [222694] = 5, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(9771), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6103), 1, + sym_comment, + [219906] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(982), 1, - anon_sym_DOT, - ACTIONS(10034), 1, - anon_sym_QMARK2, - STATE(6294), 1, - sym_comment, - ACTIONS(980), 3, - anon_sym_RBRACK, + ACTIONS(5537), 1, sym__entry_separator, - sym__table_head_separator, - [222712] = 5, - ACTIONS(247), 1, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(9773), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6104), 1, + sym_comment, + [219925] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5007), 1, - anon_sym_DASH, - ACTIONS(10036), 1, - anon_sym_EQ2, - STATE(6295), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(9775), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6105), 1, sym_comment, - ACTIONS(5005), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [222730] = 7, - ACTIONS(247), 1, + [219944] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8631), 1, - sym_identifier, - ACTIONS(9557), 1, - anon_sym_DOLLAR, - STATE(5619), 1, - sym_val_variable, - STATE(6296), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(9777), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6106), 1, sym_comment, - STATE(7276), 1, - sym__variable_name, - STATE(7278), 1, - sym__assignment_pattern_parenthesized, - [222752] = 7, - ACTIONS(247), 1, + [219963] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6297), 1, + ACTIONS(9779), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6107), 1, sym_comment, - STATE(7039), 1, - sym_val_list, - STATE(7311), 1, - aux_sym_val_table_repeat1, - [222774] = 7, + [219982] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1776), 1, - aux_sym_ctrl_match_token1, - ACTIONS(9145), 1, - anon_sym_DOT, - STATE(2435), 1, - sym_cell_path, - STATE(2760), 1, - sym_path, - STATE(5898), 1, - aux_sym_cell_path_repeat1, - STATE(6298), 1, + STATE(6108), 1, + sym_comment, + ACTIONS(9781), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [219995] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1798), 1, + anon_sym_LPAREN2, + ACTIONS(1806), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(2160), 1, + anon_sym_RBRACE, + ACTIONS(2162), 1, + sym__entry_separator, + STATE(6109), 1, sym_comment, - [222796] = 7, + [220014] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6299), 1, + ACTIONS(9669), 1, + anon_sym_use, + ACTIONS(9671), 1, + anon_sym_list, + ACTIONS(9673), 1, + anon_sym_hide, + ACTIONS(9675), 1, + anon_sym_new, + STATE(6110), 1, sym_comment, - STATE(7179), 1, - sym_val_list, - STATE(7314), 1, - aux_sym_val_table_repeat1, - [222818] = 5, + [220033] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1525), 1, - anon_sym_DASH, - ACTIONS(8797), 1, - aux_sym_unquoted_token2, - STATE(6300), 1, + STATE(6111), 1, sym_comment, - ACTIONS(1537), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [222836] = 4, + ACTIONS(6124), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + aux_sym_ctrl_match_token1, + [220046] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6301), 1, + STATE(6112), 1, sym_comment, - ACTIONS(968), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(966), 3, - anon_sym_RBRACK, + ACTIONS(1755), 2, anon_sym_RBRACE, - anon_sym_QMARK2, - [222852] = 5, + aux_sym__unquoted_in_record_token2, + ACTIONS(1757), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [220061] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5041), 1, - anon_sym_DASH, - ACTIONS(10038), 1, - anon_sym_EQ2, - STATE(6302), 1, + STATE(6113), 1, sym_comment, - ACTIONS(5039), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - aux_sym_ctrl_match_token1, - [222870] = 7, - ACTIONS(247), 1, + ACTIONS(9783), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [220074] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1776), 1, - sym__table_head_separator, - ACTIONS(8853), 1, - anon_sym_DOT, - STATE(2864), 1, - sym_cell_path, - STATE(5525), 1, - aux_sym_cell_path_repeat1, - STATE(5711), 1, - sym_path, - STATE(6303), 1, + ACTIONS(9785), 1, + anon_sym_DQUOTE, + STATE(6114), 1, + sym_comment, + STATE(6174), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9787), 2, + sym__escaped_str_content, + sym_escape_sequence, + [220091] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4735), 1, + sym__newline, + ACTIONS(4737), 1, + sym__space, + ACTIONS(9789), 1, + sym_long_flag_identifier, + ACTIONS(9791), 1, + anon_sym_EQ2, + STATE(6115), 1, sym_comment, - [222892] = 7, + [220110] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1780), 1, - sym__table_head_separator, - ACTIONS(8853), 1, - anon_sym_DOT, - STATE(2866), 1, - sym_cell_path, - STATE(5525), 1, - aux_sym_cell_path_repeat1, - STATE(5711), 1, - sym_path, - STATE(6304), 1, + STATE(6116), 1, sym_comment, - [222914] = 5, + ACTIONS(6126), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + aux_sym_ctrl_match_token1, + [220123] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10040), 1, - anon_sym_EQ2, - ACTIONS(10042), 1, - sym_short_flag_identifier, - STATE(6305), 1, + STATE(6117), 1, sym_comment, - ACTIONS(4942), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH, - [222932] = 5, + ACTIONS(9793), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [220136] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9541), 1, - aux_sym__immediate_decimal_token2, - STATE(6306), 1, - sym_comment, - ACTIONS(1589), 2, + ACTIONS(1796), 1, anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1591), 2, + ACTIONS(1798), 1, anon_sym_LPAREN2, + ACTIONS(1804), 1, sym__entry_separator, - [222950] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9906), 1, - anon_sym_LPAREN, - ACTIONS(9908), 1, - sym_unescaped_interpolated_content, - ACTIONS(10044), 1, - anon_sym_SQUOTE, - STATE(6307), 1, + ACTIONS(1806), 1, + aux_sym__unquoted_in_record_token2, + STATE(6118), 1, sym_comment, - STATE(6313), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7246), 1, - sym_expr_interpolated, - [222972] = 7, + [220155] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8631), 1, - sym_identifier, - ACTIONS(9557), 1, - anon_sym_DOLLAR, - STATE(5619), 1, - sym_val_variable, - STATE(6308), 1, + ACTIONS(9795), 1, + anon_sym_QMARK2, + STATE(6119), 1, sym_comment, - STATE(7276), 1, - sym__variable_name, - STATE(7279), 1, - sym__assignment_pattern_parenthesized, - [222994] = 4, + ACTIONS(1036), 3, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [220170] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6309), 1, + ACTIONS(2247), 1, + anon_sym_PIPE, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + STATE(6120), 1, sym_comment, - ACTIONS(978), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(976), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK2, - [223010] = 7, + ACTIONS(2243), 2, + anon_sym_if, + anon_sym_EQ_GT, + [220187] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8631), 1, - sym_identifier, - ACTIONS(9557), 1, - anon_sym_DOLLAR, - STATE(5619), 1, - sym_val_variable, - STATE(6310), 1, + STATE(6121), 1, sym_comment, - STATE(7002), 1, - sym__variable_name, - STATE(7058), 1, - sym__assignment_pattern, - [223032] = 4, - ACTIONS(3), 1, + ACTIONS(9797), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [220200] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6311), 1, + STATE(6122), 1, sym_comment, - ACTIONS(964), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(962), 3, - anon_sym_RBRACK, + ACTIONS(9797), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_QMARK2, - [223048] = 6, + [220213] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8685), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8687), 1, - aux_sym__immediate_decimal_token5, - STATE(6312), 1, + STATE(6123), 1, sym_comment, - STATE(8004), 1, - sym__immediate_decimal, - ACTIONS(8683), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [223068] = 7, + ACTIONS(9799), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [220226] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9906), 1, - anon_sym_LPAREN, - ACTIONS(9908), 1, - sym_unescaped_interpolated_content, - ACTIONS(10046), 1, - anon_sym_SQUOTE, - STATE(6241), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6313), 1, + ACTIONS(4747), 1, + sym__newline, + ACTIONS(4749), 1, + sym__space, + ACTIONS(9801), 1, + anon_sym_EQ2, + ACTIONS(9803), 1, + sym_short_flag_identifier, + STATE(6124), 1, sym_comment, - STATE(7246), 1, - sym_expr_interpolated, - [223090] = 7, + [220245] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1780), 1, - aux_sym_ctrl_match_token1, - ACTIONS(9145), 1, - anon_sym_DOT, - STATE(2538), 1, - sym_cell_path, - STATE(2760), 1, - sym_path, - STATE(5898), 1, - aux_sym_cell_path_repeat1, - STATE(6314), 1, + STATE(6125), 1, sym_comment, - [223112] = 7, - ACTIONS(247), 1, + ACTIONS(9793), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [220258] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1772), 1, - aux_sym_ctrl_match_token1, - ACTIONS(9145), 1, - anon_sym_DOT, - STATE(2456), 1, - sym_cell_path, - STATE(2760), 1, - sym_path, - STATE(5898), 1, - aux_sym_cell_path_repeat1, - STATE(6315), 1, + ACTIONS(2445), 1, + sym__entry_separator, + STATE(6126), 1, sym_comment, - [223134] = 7, + ACTIONS(2443), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym__, + [220273] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8631), 1, - sym_identifier, - ACTIONS(9557), 1, - anon_sym_DOLLAR, - STATE(5619), 1, - sym_val_variable, - STATE(6316), 1, + ACTIONS(9805), 1, + anon_sym_LBRACK, + ACTIONS(9807), 1, + anon_sym_LPAREN, + STATE(5690), 1, + sym_parameter_parens, + STATE(5697), 1, + sym_parameter_bracks, + STATE(6127), 1, sym_comment, - STATE(7002), 1, - sym__variable_name, - STATE(7079), 1, - sym__assignment_pattern, - [223156] = 6, + [220292] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5942), 1, - anon_sym_RBRACK, - ACTIONS(5948), 1, - sym__entry_separator, - ACTIONS(9840), 1, - anon_sym_DOT_DOT2, - STATE(6317), 1, + ACTIONS(9809), 1, + anon_sym_DQUOTE, + STATE(6128), 1, sym_comment, - ACTIONS(9842), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [223176] = 7, + STATE(6133), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9787), 2, + sym__escaped_str_content, + sym_escape_sequence, + [220309] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10048), 1, + ACTIONS(1643), 1, + aux_sym_unquoted_token2, + STATE(6129), 1, + sym_comment, + ACTIONS(1645), 3, anon_sym_PIPE, - ACTIONS(10050), 1, anon_sym_if, - ACTIONS(10052), 1, anon_sym_EQ_GT, - STATE(6318), 1, - sym_comment, - STATE(7141), 1, - aux_sym_match_pattern_repeat1, - STATE(7849), 1, - sym_match_guard, - [223198] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6319), 1, - sym_comment, - STATE(7362), 1, - sym_val_list, - STATE(7363), 1, - aux_sym_val_table_repeat1, - [223220] = 7, - ACTIONS(247), 1, + [220324] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(947), 1, - aux_sym_ctrl_match_token1, - ACTIONS(9145), 1, - anon_sym_DOT, - STATE(2760), 1, - sym_path, - STATE(3345), 1, - sym_cell_path, - STATE(5898), 1, - aux_sym_cell_path_repeat1, - STATE(6320), 1, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + ACTIONS(2253), 1, + anon_sym_PIPE, + STATE(6130), 1, sym_comment, - [223242] = 5, + ACTIONS(2251), 2, + anon_sym_if, + anon_sym_EQ_GT, + [220341] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5007), 1, + ACTIONS(1575), 1, anon_sym_DASH, - ACTIONS(10054), 1, - anon_sym_EQ2, - STATE(6321), 1, + ACTIONS(8432), 1, + aux_sym_unquoted_token2, + STATE(6131), 1, sym_comment, - ACTIONS(5005), 3, + ACTIONS(1587), 2, sym_identifier, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - [223260] = 7, + [220358] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, + ACTIONS(9805), 1, anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6322), 1, + ACTIONS(9807), 1, + anon_sym_LPAREN, + STATE(3065), 1, + sym_parameter_parens, + STATE(3066), 1, + sym_parameter_bracks, + STATE(6132), 1, sym_comment, - STATE(7049), 1, - sym_val_list, - STATE(7366), 1, - aux_sym_val_table_repeat1, - [223282] = 7, - ACTIONS(247), 1, + [220377] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6323), 1, + ACTIONS(9811), 1, + anon_sym_DQUOTE, + STATE(6133), 1, sym_comment, - STATE(7106), 1, - sym_val_list, - STATE(7369), 1, - aux_sym_val_table_repeat1, - [223304] = 6, + STATE(6592), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9787), 2, + sym__escaped_str_content, + sym_escape_sequence, + [220394] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4952), 1, - anon_sym_DASH_DASH, - ACTIONS(10056), 1, - sym_long_flag_identifier, - ACTIONS(10058), 1, - anon_sym_EQ2, - STATE(6324), 1, + STATE(6134), 1, sym_comment, - ACTIONS(4950), 2, + ACTIONS(9813), 4, sym_identifier, - anon_sym_DASH, - [223324] = 5, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [220407] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5041), 1, - anon_sym_DASH, - ACTIONS(10060), 1, - anon_sym_EQ2, - STATE(6325), 1, + STATE(6135), 1, sym_comment, - ACTIONS(5039), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [223342] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2738), 1, + ACTIONS(9815), 4, sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6326), 1, - sym_comment, - STATE(7238), 1, - sym_val_list, - STATE(7377), 1, - aux_sym_val_table_repeat1, - [223364] = 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [220420] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6327), 1, - sym_comment, - STATE(7243), 1, - sym_val_list, - STATE(7379), 1, - aux_sym_val_table_repeat1, - [223386] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9906), 1, - anon_sym_LPAREN, - ACTIONS(9908), 1, - sym_unescaped_interpolated_content, - ACTIONS(10062), 1, - anon_sym_SQUOTE, - STATE(6236), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6328), 1, + ACTIONS(9817), 1, + anon_sym_QMARK2, + STATE(6136), 1, sym_comment, - STATE(7246), 1, - sym_expr_interpolated, - [223408] = 7, + ACTIONS(1030), 3, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [220435] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6329), 1, + STATE(6137), 1, sym_comment, - STATE(7346), 1, - sym_val_list, - STATE(7384), 1, - aux_sym_val_table_repeat1, - [223430] = 7, + ACTIONS(9819), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [220448] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, + STATE(6138), 1, + sym_comment, + ACTIONS(9815), 4, sym__newline, - ACTIONS(9340), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [220461] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6330), 1, + ACTIONS(9821), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6139), 1, sym_comment, - STATE(7351), 1, - sym_val_list, - STATE(7387), 1, - aux_sym_val_table_repeat1, - [223452] = 7, - ACTIONS(247), 1, + [220480] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6331), 1, + ACTIONS(9823), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6140), 1, sym_comment, - STATE(7273), 1, - sym_val_list, - STATE(7391), 1, - aux_sym_val_table_repeat1, - [223474] = 7, - ACTIONS(247), 1, + [220499] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6332), 1, + ACTIONS(9825), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6141), 1, sym_comment, - STATE(7288), 1, - sym_val_list, - STATE(7394), 1, - aux_sym_val_table_repeat1, - [223496] = 7, + [220518] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7824), 1, - sym__newline, - ACTIONS(7826), 1, - sym__space, - STATE(4865), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(6288), 1, - aux_sym_ctrl_do_parenthesized_repeat1, - STATE(6333), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(9827), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6142), 1, sym_comment, - STATE(7571), 1, - sym__flags_parenthesized, - [223518] = 7, - ACTIONS(247), 1, + [220537] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6334), 1, + ACTIONS(9829), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6143), 1, sym_comment, - STATE(7339), 1, - sym_val_list, - STATE(7400), 1, - aux_sym_val_table_repeat1, - [223540] = 7, - ACTIONS(247), 1, + [220556] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6335), 1, + ACTIONS(9831), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6144), 1, sym_comment, - STATE(7345), 1, - sym_val_list, - STATE(7402), 1, - aux_sym_val_table_repeat1, - [223562] = 7, - ACTIONS(247), 1, + [220575] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6336), 1, + ACTIONS(9833), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6145), 1, sym_comment, - STATE(7407), 1, - aux_sym_val_table_repeat1, - STATE(7439), 1, - sym_val_list, - [223584] = 7, - ACTIONS(247), 1, + [220594] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6337), 1, + ACTIONS(9835), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6146), 1, sym_comment, - STATE(7409), 1, - aux_sym_val_table_repeat1, - STATE(7458), 1, - sym_val_list, - [223606] = 3, + [220613] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6338), 1, + STATE(6147), 1, sym_comment, - ACTIONS(10064), 5, + ACTIONS(9837), 4, sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [223620] = 7, - ACTIONS(247), 1, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [220626] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6339), 1, + ACTIONS(9839), 1, + anon_sym_DQUOTE, + STATE(6148), 1, sym_comment, - STATE(7416), 1, - aux_sym_val_table_repeat1, - STATE(7530), 1, - sym_val_list, - [223642] = 7, + STATE(6152), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9787), 2, + sym__escaped_str_content, + sym_escape_sequence, + [220643] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6340), 1, + ACTIONS(1023), 1, + aux_sym_record_entry_token1, + ACTIONS(9841), 1, + anon_sym_DOT, + STATE(6721), 1, + sym_path, + STATE(6149), 2, sym_comment, - STATE(7418), 1, - aux_sym_val_table_repeat1, - STATE(7538), 1, - sym_val_list, - [223664] = 3, + aux_sym_cell_path_repeat1, + [220660] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6341), 1, + STATE(6150), 1, sym_comment, - ACTIONS(10066), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [223678] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2738), 1, + ACTIONS(6206), 4, + ts_builtin_sym_end, sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6342), 1, - sym_comment, - STATE(6964), 1, - sym_val_list, - STATE(7423), 1, - aux_sym_val_table_repeat1, - [223700] = 7, + anon_sym_SEMI, + aux_sym_ctrl_match_token1, + [220673] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6343), 1, + STATE(6151), 1, sym_comment, - STATE(6968), 1, - sym_val_list, - STATE(7425), 1, - aux_sym_val_table_repeat1, - [223722] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2738), 1, + ACTIONS(6208), 4, + ts_builtin_sym_end, sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6344), 1, + anon_sym_SEMI, + aux_sym_ctrl_match_token1, + [220686] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9844), 1, + anon_sym_DQUOTE, + STATE(6152), 1, sym_comment, - STATE(6989), 1, - sym_val_list, - STATE(7430), 1, - aux_sym_val_table_repeat1, - [223744] = 7, - ACTIONS(247), 1, + STATE(6592), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9787), 2, + sym__escaped_str_content, + sym_escape_sequence, + [220703] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6345), 1, + ACTIONS(5458), 1, + anon_sym_LPAREN2, + ACTIONS(7568), 1, + sym__entry_separator, + ACTIONS(7570), 1, + anon_sym_RBRACK, + STATE(6153), 1, sym_comment, - STATE(6996), 1, - sym_val_list, - STATE(7433), 1, - aux_sym_val_table_repeat1, - [223766] = 5, + STATE(7793), 1, + sym__expr_parenthesized_immediate, + [220722] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1473), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(9450), 1, - aux_sym__immediate_decimal_token2, - STATE(6346), 1, + STATE(6154), 1, sym_comment, - ACTIONS(1475), 3, - sym_filesize_unit, - sym_duration_unit, - aux_sym_record_entry_token1, - [223784] = 7, + ACTIONS(9846), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [220735] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6347), 1, + STATE(6155), 1, sym_comment, - STATE(7020), 1, - sym_val_list, - STATE(7438), 1, - aux_sym_val_table_repeat1, - [223806] = 7, + ACTIONS(9797), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [220748] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, + STATE(6156), 1, + sym_comment, + ACTIONS(9797), 4, sym__newline, - ACTIONS(9340), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [220761] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6348), 1, + ACTIONS(9848), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6157), 1, sym_comment, - STATE(7025), 1, - sym_val_list, - STATE(7441), 1, - aux_sym_val_table_repeat1, - [223828] = 5, + [220780] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10068), 1, - aux_sym__immediate_decimal_token2, - STATE(6349), 1, - sym_comment, - ACTIONS(1648), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1650), 2, - anon_sym_LPAREN2, + ACTIONS(5537), 1, sym__entry_separator, - [223846] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6350), 1, + ACTIONS(9850), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6158), 1, sym_comment, - STATE(7042), 1, - sym_val_list, - STATE(7447), 1, - aux_sym_val_table_repeat1, - [223868] = 7, - ACTIONS(247), 1, + [220799] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6351), 1, + ACTIONS(9852), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6159), 1, sym_comment, - STATE(7047), 1, - sym_val_list, - STATE(7449), 1, - aux_sym_val_table_repeat1, - [223890] = 5, + [220818] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10070), 1, - aux_sym__immediate_decimal_token2, - STATE(6352), 1, - sym_comment, - ACTIONS(1648), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1650), 2, - anon_sym_LPAREN2, + ACTIONS(5537), 1, sym__entry_separator, - [223908] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6353), 1, + ACTIONS(9854), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6160), 1, sym_comment, - STATE(7068), 1, - sym_val_list, - STATE(7454), 1, - aux_sym_val_table_repeat1, - [223930] = 7, - ACTIONS(247), 1, + [220837] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6354), 1, + ACTIONS(9856), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6161), 1, sym_comment, - STATE(7074), 1, - sym_val_list, - STATE(7457), 1, - aux_sym_val_table_repeat1, - [223952] = 7, - ACTIONS(247), 1, + [220856] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6355), 1, + ACTIONS(9858), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6162), 1, sym_comment, - STATE(7089), 1, - sym_val_list, - STATE(7462), 1, - aux_sym_val_table_repeat1, - [223974] = 7, - ACTIONS(247), 1, + [220875] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6356), 1, + ACTIONS(9860), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6163), 1, sym_comment, - STATE(7095), 1, - sym_val_list, - STATE(7464), 1, - aux_sym_val_table_repeat1, - [223996] = 7, - ACTIONS(247), 1, + [220894] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6357), 1, + ACTIONS(9862), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6164), 1, sym_comment, - STATE(7107), 1, - sym_val_list, - STATE(7468), 1, - aux_sym_val_table_repeat1, - [224018] = 7, + [220913] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6358), 1, + STATE(6165), 1, sym_comment, - STATE(7114), 1, - sym_val_list, - STATE(7471), 1, - aux_sym_val_table_repeat1, - [224040] = 7, + ACTIONS(9864), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [220926] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6359), 1, + STATE(6166), 1, sym_comment, - STATE(7130), 1, - sym_val_list, - STATE(7476), 1, - aux_sym_val_table_repeat1, - [224062] = 7, + ACTIONS(9866), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [220939] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, + STATE(6167), 1, + sym_comment, + ACTIONS(9868), 4, sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6360), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [220952] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9870), 1, + anon_sym_DQUOTE, + STATE(6168), 1, sym_comment, - STATE(7136), 1, - sym_val_list, - STATE(7479), 1, - aux_sym_val_table_repeat1, - [224084] = 7, - ACTIONS(247), 1, + STATE(6172), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9787), 2, + sym__escaped_str_content, + sym_escape_sequence, + [220969] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6361), 1, + ACTIONS(9872), 1, + anon_sym_DQUOTE, + STATE(6169), 1, sym_comment, - STATE(7149), 1, - sym_val_list, - STATE(7484), 1, - aux_sym_val_table_repeat1, - [224106] = 7, + STATE(6197), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9787), 2, + sym__escaped_str_content, + sym_escape_sequence, + [220986] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, + STATE(6170), 1, + sym_comment, + ACTIONS(9874), 4, sym__newline, - ACTIONS(9340), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [220999] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6362), 1, + ACTIONS(9876), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6171), 1, sym_comment, - STATE(7155), 1, - sym_val_list, - STATE(7487), 1, - aux_sym_val_table_repeat1, - [224128] = 7, - ACTIONS(247), 1, + [221018] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6363), 1, + ACTIONS(9878), 1, + anon_sym_DQUOTE, + STATE(6172), 1, sym_comment, - STATE(7165), 1, - sym_val_list, - STATE(7492), 1, - aux_sym_val_table_repeat1, - [224150] = 7, + STATE(6592), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9787), 2, + sym__escaped_str_content, + sym_escape_sequence, + [221035] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, + ACTIONS(2808), 1, sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2777), 1, + ACTIONS(6078), 1, + aux_sym_ctrl_match_token1, + STATE(2586), 1, aux_sym_shebang_repeat1, - STATE(6364), 1, + STATE(4712), 1, + sym_block, + STATE(6173), 1, sym_comment, - STATE(7171), 1, - sym_val_list, - STATE(7494), 1, - aux_sym_val_table_repeat1, - [224172] = 7, - ACTIONS(247), 1, + [221054] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6365), 1, + ACTIONS(9880), 1, + anon_sym_DQUOTE, + STATE(6174), 1, sym_comment, - STATE(7183), 1, - sym_val_list, - STATE(7498), 1, - aux_sym_val_table_repeat1, - [224194] = 7, + STATE(6592), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9787), 2, + sym__escaped_str_content, + sym_escape_sequence, + [221071] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, + STATE(6175), 1, + sym_comment, + ACTIONS(9882), 4, sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6366), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221084] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6176), 1, sym_comment, - STATE(7188), 1, - sym_val_list, - STATE(7500), 1, - aux_sym_val_table_repeat1, - [224216] = 7, + ACTIONS(1705), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1707), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [221099] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, + ACTIONS(2808), 1, sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2777), 1, + ACTIONS(6078), 1, + aux_sym_ctrl_match_token1, + STATE(2586), 1, aux_sym_shebang_repeat1, - STATE(6367), 1, + STATE(4718), 1, + sym_block, + STATE(6177), 1, sym_comment, - STATE(7200), 1, - sym_val_list, - STATE(7505), 1, - aux_sym_val_table_repeat1, - [224238] = 7, - ACTIONS(247), 1, + [221118] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6368), 1, - sym_comment, - STATE(7206), 1, - sym_val_list, - STATE(7507), 1, - aux_sym_val_table_repeat1, - [224260] = 7, - ACTIONS(247), 1, + ACTIONS(9884), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6178), 1, + sym_comment, + [221137] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6369), 1, + ACTIONS(9886), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6179), 1, sym_comment, - STATE(7216), 1, - sym_val_list, - STATE(7511), 1, - aux_sym_val_table_repeat1, - [224282] = 7, - ACTIONS(247), 1, + [221156] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(9340), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6370), 1, + ACTIONS(9888), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6180), 1, sym_comment, - STATE(7221), 1, - sym_val_list, - STATE(7514), 1, - aux_sym_val_table_repeat1, - [224304] = 7, + [221175] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9906), 1, - anon_sym_LPAREN, - ACTIONS(9908), 1, - sym_unescaped_interpolated_content, - ACTIONS(10072), 1, - anon_sym_SQUOTE, - STATE(6371), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(9890), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6181), 1, sym_comment, - STATE(6374), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7246), 1, - sym_expr_interpolated, - [224326] = 7, - ACTIONS(247), 1, + [221194] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8631), 1, - sym_identifier, - ACTIONS(9557), 1, - anon_sym_DOLLAR, - STATE(5619), 1, - sym_val_variable, - STATE(6372), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(9892), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6182), 1, sym_comment, - STATE(6891), 1, - sym__assignment_pattern, - STATE(7113), 1, - sym__variable_name, - [224348] = 7, - ACTIONS(247), 1, + [221213] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8631), 1, - sym_identifier, - ACTIONS(9557), 1, - anon_sym_DOLLAR, - STATE(5619), 1, - sym_val_variable, - STATE(6373), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(9894), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6183), 1, sym_comment, - STATE(6895), 1, - sym__assignment_pattern, - STATE(7113), 1, - sym__variable_name, - [224370] = 7, + [221232] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9906), 1, - anon_sym_LPAREN, - ACTIONS(9908), 1, - sym_unescaped_interpolated_content, - ACTIONS(10074), 1, - anon_sym_SQUOTE, - STATE(6241), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6374), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(9896), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6184), 1, sym_comment, - STATE(7246), 1, - sym_expr_interpolated, - [224392] = 5, - ACTIONS(247), 1, + [221251] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10076), 1, - anon_sym_DOT_DOT2, - STATE(6375), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(9898), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6185), 1, sym_comment, - ACTIONS(1941), 2, - sym__newline, - aux_sym_ctrl_match_token1, - ACTIONS(10078), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [224410] = 5, + [221270] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10080), 1, - anon_sym_DOT_DOT2, - STATE(6376), 1, - sym_comment, - ACTIONS(1698), 2, + ACTIONS(2808), 1, sym__newline, + ACTIONS(6078), 1, aux_sym_ctrl_match_token1, - ACTIONS(10082), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [224428] = 5, + STATE(4723), 1, + sym_block, + STATE(6173), 1, + aux_sym_shebang_repeat1, + STATE(6186), 1, + sym_comment, + [221289] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10084), 1, - anon_sym_DOT_DOT2, - STATE(6377), 1, + STATE(6187), 1, sym_comment, - ACTIONS(1717), 2, + ACTIONS(9882), 4, sym__newline, - aux_sym_ctrl_match_token1, - ACTIONS(10086), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [224446] = 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221302] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10088), 1, - anon_sym_DOT_DOT2, - STATE(6378), 1, + STATE(6188), 1, sym_comment, - ACTIONS(1978), 2, + ACTIONS(9900), 4, sym__newline, - aux_sym_ctrl_match_token1, - ACTIONS(10090), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [224464] = 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221315] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10092), 1, - anon_sym_DOT_DOT2, - STATE(6379), 1, + STATE(6189), 1, sym_comment, - ACTIONS(1966), 2, - sym__newline, - aux_sym_ctrl_match_token1, - ACTIONS(10094), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [224482] = 4, + ACTIONS(9902), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [221328] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(968), 1, - anon_sym_DOT, - STATE(6380), 1, + ACTIONS(9904), 1, + anon_sym_DQUOTE, + STATE(6190), 1, sym_comment, - ACTIONS(966), 4, - anon_sym_RBRACK, - anon_sym_QMARK2, - sym__entry_separator, - sym__table_head_separator, - [224498] = 5, - ACTIONS(247), 1, + STATE(6195), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9787), 2, + sym__escaped_str_content, + sym_escape_sequence, + [221345] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(225), 1, - aux_sym__block_body_repeat1, - STATE(6381), 1, - sym_comment, - ACTIONS(145), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(609), 2, - anon_sym_RPAREN, + ACTIONS(2293), 1, anon_sym_RBRACE, - [224516] = 6, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2297), 1, + sym__entry_separator, + ACTIONS(2299), 1, + aux_sym__unquoted_in_record_token4, + STATE(6191), 1, + sym_comment, + [221364] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1569), 1, + ACTIONS(1705), 1, aux_sym_unquoted_token2, - ACTIONS(10096), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10098), 1, + ACTIONS(9906), 1, aux_sym__immediate_decimal_token2, - STATE(6382), 1, + STATE(6192), 1, sym_comment, - ACTIONS(1571), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [224536] = 7, + ACTIONS(1707), 2, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + [221381] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8631), 1, - sym_identifier, - ACTIONS(9557), 1, - anon_sym_DOLLAR, - STATE(5619), 1, - sym_val_variable, - STATE(6383), 1, + ACTIONS(1517), 1, + aux_sym_cmd_identifier_token41, + STATE(6193), 1, sym_comment, - STATE(6935), 1, - sym__assignment_pattern, - STATE(7113), 1, - sym__variable_name, - [224558] = 7, + ACTIONS(1519), 3, + sym_filesize_unit, + sym_duration_unit, + aux_sym_record_entry_token1, + [221396] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1764), 1, + ACTIONS(6482), 1, + anon_sym_DOT_DOT2, + ACTIONS(9908), 1, aux_sym_ctrl_match_token1, - ACTIONS(9145), 1, - anon_sym_DOT, - STATE(2436), 1, - sym_cell_path, - STATE(2760), 1, - sym_path, - STATE(5898), 1, - aux_sym_cell_path_repeat1, - STATE(6384), 1, + STATE(6194), 1, sym_comment, - [224580] = 4, - ACTIONS(247), 1, + ACTIONS(6484), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [221413] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1721), 1, - aux_sym_unquoted_token2, - STATE(6385), 1, + ACTIONS(9910), 1, + anon_sym_DQUOTE, + STATE(6195), 1, sym_comment, - ACTIONS(1723), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [224595] = 6, + STATE(6592), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9787), 2, + sym__escaped_str_content, + sym_escape_sequence, + [221430] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4950), 1, - sym__newline, - ACTIONS(4952), 1, - sym__space, - ACTIONS(10100), 1, - sym_long_flag_identifier, - ACTIONS(10102), 1, - anon_sym_EQ2, - STATE(6386), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(9912), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6196), 1, sym_comment, - [224614] = 5, - ACTIONS(247), 1, + [221449] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1525), 1, - anon_sym_DASH, - ACTIONS(8797), 1, - aux_sym_unquoted_token2, - STATE(6387), 1, + ACTIONS(9914), 1, + anon_sym_DQUOTE, + STATE(6197), 1, sym_comment, - ACTIONS(1537), 2, - sym_identifier, - anon_sym_DASH_DASH, - [224631] = 6, + STATE(6592), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9787), 2, + sym__escaped_str_content, + sym_escape_sequence, + [221466] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5625), 1, + ACTIONS(1553), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(2218), 1, + anon_sym_RBRACE, + ACTIONS(2220), 1, anon_sym_LPAREN2, - ACTIONS(5942), 1, - anon_sym_RBRACK, - ACTIONS(5948), 1, + ACTIONS(2222), 1, sym__entry_separator, - STATE(6388), 1, + STATE(6198), 1, sym_comment, - STATE(7650), 1, - sym__expr_parenthesized_immediate, - [224650] = 6, + [221485] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6284), 1, - anon_sym_DOLLAR, - ACTIONS(8631), 1, - sym_identifier, - STATE(5619), 1, - sym_val_variable, - STATE(6093), 1, - sym__variable_name, - STATE(6389), 1, + STATE(6199), 1, sym_comment, - [224669] = 6, - ACTIONS(3), 1, + ACTIONS(9916), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221498] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1006), 1, - anon_sym_RBRACK, - ACTIONS(1008), 1, - sym__entry_separator, - ACTIONS(2081), 1, - anon_sym_LPAREN2, - ACTIONS(2083), 1, - aux_sym__unquoted_in_list_token4, - STATE(6390), 1, + STATE(6200), 1, + sym_comment, + ACTIONS(9918), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221511] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9805), 1, + anon_sym_LBRACK, + ACTIONS(9807), 1, + anon_sym_LPAREN, + STATE(5875), 1, + sym_parameter_parens, + STATE(5881), 1, + sym_parameter_bracks, + STATE(6201), 1, sym_comment, - [224688] = 3, + [221530] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6391), 1, + STATE(6202), 1, sym_comment, - ACTIONS(8320), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_AT, - aux_sym_ctrl_match_token1, - [224701] = 6, + ACTIONS(9918), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221543] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10106), 1, + ACTIONS(9920), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6392), 1, + STATE(6203), 1, sym_comment, - [224720] = 6, + [221562] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10108), 1, + ACTIONS(9922), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6393), 1, + STATE(6204), 1, sym_comment, - [224739] = 6, + [221581] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10110), 1, + ACTIONS(9924), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6394), 1, + STATE(6205), 1, sym_comment, - [224758] = 6, + [221600] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10112), 1, + ACTIONS(9926), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6395), 1, + STATE(6206), 1, sym_comment, - [224777] = 6, + [221619] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10114), 1, + ACTIONS(9928), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6396), 1, + STATE(6207), 1, sym_comment, - [224796] = 6, + [221638] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10116), 1, + ACTIONS(9930), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6397), 1, + STATE(6208), 1, sym_comment, - [224815] = 6, + [221657] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10118), 1, + ACTIONS(9932), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6398), 1, + STATE(6209), 1, sym_comment, - [224834] = 6, + [221676] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10120), 1, + ACTIONS(9934), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6399), 1, + STATE(6210), 1, sym_comment, - [224853] = 5, + [221695] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10122), 1, - anon_sym_RPAREN, - STATE(226), 1, - aux_sym__block_body_repeat1, - STATE(6400), 1, + ACTIONS(2067), 1, + aux_sym_ctrl_match_token1, + ACTIONS(9936), 1, + anon_sym_DOT_DOT2, + STATE(6211), 1, sym_comment, - ACTIONS(145), 2, - sym__newline, - anon_sym_SEMI, - [224870] = 3, + ACTIONS(9938), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [221712] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6401), 1, + STATE(6212), 1, sym_comment, - ACTIONS(10124), 4, + ACTIONS(9940), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [224883] = 3, + [221725] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6402), 1, + STATE(6213), 1, sym_comment, - ACTIONS(10126), 4, + ACTIONS(9942), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [221738] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5095), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [224896] = 5, + ACTIONS(9944), 1, + anon_sym_EQ, + ACTIONS(9946), 1, + anon_sym_COLON, + STATE(690), 1, + aux_sym_shebang_repeat1, + STATE(6214), 1, + sym_comment, + [221757] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10128), 1, + ACTIONS(9948), 1, anon_sym_DQUOTE, - STATE(6403), 1, + STATE(6215), 1, sym_comment, - STATE(6882), 1, + STATE(6218), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [224913] = 3, - ACTIONS(247), 1, + [221774] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6404), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(9950), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6216), 1, sym_comment, - ACTIONS(10132), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [224926] = 6, + [221793] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10134), 1, + ACTIONS(9952), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6405), 1, + STATE(6217), 1, sym_comment, - [224945] = 5, + [221812] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10136), 1, + ACTIONS(9954), 1, anon_sym_DQUOTE, - STATE(6406), 1, + STATE(6218), 1, sym_comment, - STATE(6410), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [224962] = 6, + [221829] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10138), 1, + ACTIONS(9956), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6407), 1, + STATE(6219), 1, sym_comment, - [224981] = 6, + [221848] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10140), 1, + ACTIONS(9958), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6408), 1, + STATE(6220), 1, + sym_comment, + [221867] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(9960), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6221), 1, + sym_comment, + [221886] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(9962), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6222), 1, + sym_comment, + [221905] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(9964), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6223), 1, + sym_comment, + [221924] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(9966), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6224), 1, + sym_comment, + [221943] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(9968), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6225), 1, + sym_comment, + [221962] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(9970), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6226), 1, + sym_comment, + [221981] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(9972), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6227), 1, sym_comment, - [225000] = 3, + [222000] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(6409), 1, + ACTIONS(9974), 1, + anon_sym_LBRACK, + ACTIONS(9976), 1, + anon_sym_LPAREN, + STATE(5905), 1, + sym_parameter_parens, + STATE(5906), 1, + sym_parameter_bracks, + STATE(6228), 1, sym_comment, - ACTIONS(10142), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [225013] = 5, + [222019] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1587), 1, + aux_sym_record_entry_token1, + ACTIONS(9978), 1, + aux_sym_cmd_identifier_token41, + STATE(6229), 1, + sym_comment, + ACTIONS(9980), 2, + sym_filesize_unit, + sym_duration_unit, + [222036] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6230), 1, + sym_comment, + ACTIONS(9982), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [222049] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10144), 1, + ACTIONS(9984), 1, anon_sym_DQUOTE, - STATE(6410), 1, + STATE(6231), 1, sym_comment, - STATE(6882), 1, + STATE(6236), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [225030] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9470), 1, - anon_sym_RPAREN, - STATE(226), 1, - aux_sym__block_body_repeat1, - STATE(6411), 1, - sym_comment, - ACTIONS(145), 2, - sym__newline, - anon_sym_SEMI, - [225047] = 6, + [222066] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10146), 1, + ACTIONS(9986), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6412), 1, + STATE(6232), 1, sym_comment, - [225066] = 4, + [222085] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(6413), 1, + STATE(6233), 1, sym_comment, - ACTIONS(2089), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH, - [225081] = 3, + ACTIONS(1755), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1757), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [222100] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(6414), 1, + ACTIONS(1631), 1, + aux_sym_unquoted_token2, + STATE(6234), 1, sym_comment, - ACTIONS(10126), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [225094] = 4, + ACTIONS(1633), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [222115] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2230), 1, + aux_sym_unquoted_token2, + STATE(6235), 1, + sym_comment, + ACTIONS(2228), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [222130] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6415), 1, + ACTIONS(9988), 1, + anon_sym_DQUOTE, + STATE(6236), 1, sym_comment, - ACTIONS(2131), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token4, - ACTIONS(2133), 2, - anon_sym_LPAREN2, + STATE(6592), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9787), 2, + sym__escaped_str_content, + sym_escape_sequence, + [222147] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5537), 1, sym__entry_separator, - [225109] = 3, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(9990), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6237), 1, + sym_comment, + [222166] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(6416), 1, + ACTIONS(9992), 1, + anon_sym_RPAREN, + STATE(210), 1, + aux_sym__block_body_repeat1, + STATE(6238), 1, sym_comment, - ACTIONS(10148), 4, + ACTIONS(145), 2, sym__newline, anon_sym_SEMI, + [222183] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9992), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - [225122] = 6, + STATE(6239), 1, + sym_comment, + STATE(6560), 1, + aux_sym__block_body_repeat1, + ACTIONS(145), 2, + sym__newline, + anon_sym_SEMI, + [222200] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9978), 1, - anon_sym_use, - ACTIONS(9980), 1, - anon_sym_list, - ACTIONS(9982), 1, - anon_sym_hide, - ACTIONS(9984), 1, - anon_sym_new, - STATE(6417), 1, + ACTIONS(1497), 1, + aux_sym_cmd_identifier_token41, + STATE(6240), 1, sym_comment, - [225141] = 4, + ACTIONS(1499), 3, + sym_filesize_unit, + sym_duration_unit, + aux_sym_record_entry_token1, + [222215] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1569), 1, - aux_sym_unquoted_token2, - STATE(6418), 1, + STATE(6241), 1, sym_comment, - ACTIONS(1571), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [225156] = 3, + ACTIONS(9994), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [222228] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2224), 1, + anon_sym_RBRACE, + ACTIONS(2226), 1, + anon_sym_LPAREN2, + ACTIONS(2228), 1, + sym__entry_separator, + ACTIONS(2230), 1, + aux_sym__unquoted_in_record_token2, + STATE(6242), 1, + sym_comment, + [222247] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6419), 1, + STATE(6243), 1, sym_comment, - ACTIONS(10150), 4, + ACTIONS(9996), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [225169] = 6, + [222260] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10152), 1, + ACTIONS(9998), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6420), 1, + STATE(6244), 1, sym_comment, - [225188] = 6, + [222279] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10154), 1, + ACTIONS(10000), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6421), 1, + STATE(6245), 1, sym_comment, - [225207] = 6, + [222298] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10156), 1, + ACTIONS(10002), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6422), 1, + STATE(6246), 1, sym_comment, - [225226] = 6, + [222317] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10158), 1, + ACTIONS(10004), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6423), 1, + STATE(6247), 1, sym_comment, - [225245] = 6, + [222336] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10160), 1, + ACTIONS(10006), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6424), 1, + STATE(6248), 1, sym_comment, - [225264] = 6, + [222355] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10162), 1, + ACTIONS(10008), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6425), 1, + STATE(6249), 1, sym_comment, - [225283] = 6, + [222374] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10164), 1, + ACTIONS(10010), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6426), 1, + STATE(6250), 1, sym_comment, - [225302] = 6, + [222393] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10166), 1, + ACTIONS(10012), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6427), 1, + STATE(6251), 1, sym_comment, - [225321] = 3, + [222412] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6428), 1, + STATE(6252), 1, sym_comment, - ACTIONS(10168), 4, + ACTIONS(10014), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [225334] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - STATE(6429), 1, - sym_comment, - ACTIONS(2097), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH, - [225349] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - STATE(6430), 1, - sym_comment, - ACTIONS(2105), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH, - [225364] = 3, + [222425] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6431), 1, + STATE(6253), 1, sym_comment, - ACTIONS(10170), 4, + ACTIONS(10016), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [225377] = 3, + [222438] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6432), 1, + STATE(6254), 1, sym_comment, - ACTIONS(10172), 4, + ACTIONS(10018), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [225390] = 5, + [222451] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10174), 1, + ACTIONS(10020), 1, anon_sym_DQUOTE, - STATE(6433), 1, + STATE(6255), 1, sym_comment, - STATE(6437), 1, + STATE(6258), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [225407] = 6, + [222468] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10176), 1, + ACTIONS(10022), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6434), 1, + STATE(6256), 1, sym_comment, - [225426] = 3, + [222487] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6435), 1, + STATE(6257), 1, sym_comment, - ACTIONS(10178), 4, + ACTIONS(10018), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [225439] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(6298), 1, - aux_sym_ctrl_match_token1, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(5004), 1, - sym_block, - STATE(6436), 1, - sym_comment, - [225458] = 5, + [222500] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10180), 1, + ACTIONS(10024), 1, anon_sym_DQUOTE, - STATE(6437), 1, + STATE(6258), 1, sym_comment, - STATE(6882), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [225475] = 3, + [222517] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(10026), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6259), 1, + sym_comment, + [222536] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6438), 1, + STATE(6260), 1, sym_comment, - ACTIONS(10182), 4, + ACTIONS(10028), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [225488] = 6, + [222549] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(953), 1, - aux_sym_record_entry_token1, - ACTIONS(9900), 1, - anon_sym_DOT, - STATE(6439), 1, + STATE(6261), 1, sym_comment, - STATE(6440), 1, - aux_sym_cell_path_repeat1, - STATE(7697), 1, - sym_path, - [225507] = 5, - ACTIONS(247), 1, + ACTIONS(10030), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [222562] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(957), 1, - aux_sym_record_entry_token1, - ACTIONS(10184), 1, - anon_sym_DOT, - STATE(7697), 1, - sym_path, - STATE(6440), 2, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(10032), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6262), 1, sym_comment, - aux_sym_cell_path_repeat1, - [225524] = 6, + [222581] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5625), 1, - anon_sym_LPAREN2, - ACTIONS(8230), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(8232), 1, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(10034), 1, anon_sym_RBRACK, - STATE(6441), 1, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6263), 1, sym_comment, - STATE(7970), 1, - sym__expr_parenthesized_immediate, - [225543] = 5, + [222600] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10187), 1, - anon_sym_DQUOTE, - STATE(6442), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(10036), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6264), 1, sym_comment, - STATE(6861), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, - sym__escaped_str_content, - sym_escape_sequence, - [225560] = 3, - ACTIONS(247), 1, + [222619] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6443), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(10038), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6265), 1, sym_comment, - ACTIONS(10189), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [225573] = 6, + [222638] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10191), 1, + ACTIONS(10040), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6444), 1, + STATE(6266), 1, sym_comment, - [225592] = 6, + [222657] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10193), 1, + ACTIONS(10042), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6445), 1, + STATE(6267), 1, sym_comment, - [225611] = 6, + [222676] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10195), 1, + ACTIONS(10044), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6446), 1, + STATE(6268), 1, sym_comment, - [225630] = 6, + [222695] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10197), 1, + ACTIONS(10046), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6447), 1, + STATE(6269), 1, + sym_comment, + [222714] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1705), 1, + aux_sym_unquoted_token2, + STATE(6270), 1, + sym_comment, + ACTIONS(1707), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [222729] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(6078), 1, + aux_sym_ctrl_match_token1, + STATE(4702), 1, + sym_block, + STATE(6177), 1, + aux_sym_shebang_repeat1, + STATE(6271), 1, + sym_comment, + [222748] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6272), 1, + sym_comment, + ACTIONS(10048), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [222761] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6273), 1, + sym_comment, + ACTIONS(10050), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [222774] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10052), 1, + anon_sym_DQUOTE, + STATE(6274), 1, + sym_comment, + STATE(6276), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9787), 2, + sym__escaped_str_content, + sym_escape_sequence, + [222791] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1078), 1, + sym__entry_separator, + STATE(6275), 1, + sym_comment, + ACTIONS(1076), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym__, + [222806] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10054), 1, + anon_sym_DQUOTE, + STATE(6276), 1, + sym_comment, + STATE(6592), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9787), 2, + sym__escaped_str_content, + sym_escape_sequence, + [222823] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1755), 1, + aux_sym_unquoted_token2, + STATE(6277), 1, + sym_comment, + ACTIONS(1757), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [222838] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2386), 1, + sym__entry_separator, + STATE(6278), 1, + sym_comment, + ACTIONS(2384), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym__, + [222853] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8972), 1, + aux_sym_ctrl_match_token1, + STATE(1608), 1, + sym_block, + STATE(1609), 1, + sym_val_closure, + STATE(4773), 1, + sym__blosure, + STATE(6279), 1, + sym_comment, + [222872] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2293), 1, + anon_sym_RBRACK, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2297), 1, + sym__entry_separator, + ACTIONS(2299), 1, + aux_sym__unquoted_in_list_token4, + STATE(6280), 1, + sym_comment, + [222891] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(6078), 1, + aux_sym_ctrl_match_token1, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(4682), 1, + sym_block, + STATE(6281), 1, sym_comment, - [225649] = 6, + [222910] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10199), 1, + ACTIONS(10056), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6448), 1, + STATE(6282), 1, sym_comment, - [225668] = 6, + [222929] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10201), 1, + ACTIONS(10058), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6449), 1, + STATE(6283), 1, sym_comment, - [225687] = 6, + [222948] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10203), 1, + ACTIONS(10060), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6450), 1, + STATE(6284), 1, sym_comment, - [225706] = 6, + [222967] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10205), 1, + ACTIONS(10062), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6451), 1, + STATE(6285), 1, sym_comment, - [225725] = 3, - ACTIONS(247), 1, + [222986] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6452), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(10064), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6286), 1, sym_comment, - ACTIONS(10207), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [225738] = 6, + [223005] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10209), 1, + ACTIONS(10066), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6453), 1, + STATE(6287), 1, sym_comment, - [225757] = 3, - ACTIONS(247), 1, + [223024] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6454), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(10068), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6288), 1, sym_comment, - ACTIONS(10211), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [225770] = 3, + [223043] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(10070), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6289), 1, + sym_comment, + [223062] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6455), 1, + STATE(6290), 1, sym_comment, - ACTIONS(10213), 4, + ACTIONS(10072), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [225783] = 5, + [223075] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10215), 1, + ACTIONS(2241), 1, + aux_sym_unquoted_token4, + STATE(6291), 1, + sym_comment, + ACTIONS(1076), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH, + [223090] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10074), 1, anon_sym_DQUOTE, - STATE(6456), 1, + STATE(6292), 1, sym_comment, - STATE(6459), 1, + STATE(6295), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [225800] = 6, - ACTIONS(3), 1, + [223107] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10217), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6457), 1, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(6078), 1, + aux_sym_ctrl_match_token1, + STATE(4612), 1, + sym_block, + STATE(6281), 1, + aux_sym_shebang_repeat1, + STATE(6293), 1, sym_comment, - [225819] = 6, - ACTIONS(3), 1, + [223126] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10219), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6458), 1, + STATE(6294), 1, sym_comment, - [225838] = 5, + ACTIONS(10076), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [223139] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10221), 1, + ACTIONS(10078), 1, anon_sym_DQUOTE, - STATE(6459), 1, + STATE(6295), 1, sym_comment, - STATE(6882), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [225855] = 6, - ACTIONS(3), 1, + [223156] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10223), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6460), 1, + ACTIONS(1806), 1, + aux_sym_unquoted_token2, + STATE(6296), 1, sym_comment, - [225874] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2093), 1, + ACTIONS(2162), 3, anon_sym_PIPE, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(6461), 1, - sym_comment, - ACTIONS(2089), 2, anon_sym_if, anon_sym_EQ_GT, - [225891] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1613), 1, - ts_builtin_sym_end, - STATE(243), 1, - aux_sym__block_body_repeat1, - STATE(6462), 1, - sym_comment, - ACTIONS(33), 2, - sym__newline, - anon_sym_SEMI, - [225908] = 6, + [223171] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1006), 1, - anon_sym_RBRACE, - ACTIONS(1008), 1, + ACTIONS(2390), 1, sym__entry_separator, - ACTIONS(2081), 1, - anon_sym_LPAREN2, - ACTIONS(2083), 1, - aux_sym__unquoted_in_record_token4, - STATE(6463), 1, - sym_comment, - [225927] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9112), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(10225), 1, - anon_sym_DOT, - STATE(6464), 1, + STATE(6297), 1, sym_comment, - ACTIONS(1591), 2, - sym__newline, - aux_sym_ctrl_match_token1, - [225944] = 6, + ACTIONS(2388), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym__, + [223186] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10227), 1, + ACTIONS(1076), 1, anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6465), 1, + ACTIONS(1078), 1, + sym__entry_separator, + ACTIONS(2239), 1, + anon_sym_LPAREN2, + ACTIONS(2241), 1, + aux_sym__unquoted_in_list_token4, + STATE(6298), 1, sym_comment, - [225963] = 6, + [223205] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10229), 1, + ACTIONS(10080), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6466), 1, + STATE(6299), 1, sym_comment, - [225982] = 6, + [223224] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10231), 1, + ACTIONS(10082), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6467), 1, + STATE(6300), 1, sym_comment, - [226001] = 6, + [223243] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10233), 1, + ACTIONS(10084), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6468), 1, + STATE(6301), 1, sym_comment, - [226020] = 6, + [223262] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10235), 1, + ACTIONS(10086), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6469), 1, + STATE(6302), 1, sym_comment, - [226039] = 6, + [223281] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10237), 1, + ACTIONS(10088), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6470), 1, + STATE(6303), 1, sym_comment, - [226058] = 6, + [223300] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10239), 1, + ACTIONS(10090), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6471), 1, + STATE(6304), 1, sym_comment, - [226077] = 6, + [223319] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10241), 1, + ACTIONS(10092), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6472), 1, + STATE(6305), 1, sym_comment, - [226096] = 6, + [223338] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10243), 1, + ACTIONS(10094), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6473), 1, + STATE(6306), 1, sym_comment, - [226115] = 6, + [223357] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10245), 1, - anon_sym_LBRACK, - ACTIONS(10247), 1, - anon_sym_LPAREN, - STATE(3323), 1, - sym_parameter_parens, - STATE(3328), 1, - sym_parameter_bracks, - STATE(6474), 1, + STATE(6307), 1, sym_comment, - [226134] = 6, - ACTIONS(3), 1, + ACTIONS(10096), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [223370] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10249), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6475), 1, + STATE(6308), 1, sym_comment, - [226153] = 3, + ACTIONS(10098), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [223383] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6476), 1, + STATE(6309), 1, sym_comment, - ACTIONS(10251), 4, + ACTIONS(10100), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [226166] = 5, + [223396] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10253), 1, + ACTIONS(10102), 1, anon_sym_DQUOTE, - STATE(6477), 1, + STATE(6310), 1, sym_comment, - STATE(6481), 1, + STATE(6313), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [226183] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10255), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6478), 1, - sym_comment, - [226202] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10257), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6479), 1, - sym_comment, - [226221] = 4, + [223413] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4889), 1, + ACTIONS(1806), 1, aux_sym_unquoted_token2, - STATE(6480), 1, + STATE(6311), 1, sym_comment, - ACTIONS(1537), 3, + ACTIONS(1804), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [226236] = 5, + [223428] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6312), 1, + sym_comment, + ACTIONS(10104), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [223441] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10259), 1, + ACTIONS(10106), 1, anon_sym_DQUOTE, - STATE(6481), 1, + STATE(6313), 1, sym_comment, - STATE(6882), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [226253] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10261), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6482), 1, - sym_comment, - [226272] = 3, + [223458] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6483), 1, + STATE(6314), 1, sym_comment, - ACTIONS(10263), 4, + ACTIONS(10108), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [226285] = 5, + [223471] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10122), 1, - anon_sym_RPAREN, - STATE(6484), 1, + STATE(6315), 1, sym_comment, - STATE(6784), 1, - aux_sym__block_body_repeat1, - ACTIONS(145), 2, + ACTIONS(10104), 4, sym__newline, anon_sym_SEMI, - [226302] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [223484] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5625), 1, - anon_sym_LPAREN2, - ACTIONS(8212), 1, - sym__entry_separator, - ACTIONS(8214), 1, - anon_sym_RBRACK, - STATE(6485), 1, + STATE(6316), 1, sym_comment, - STATE(7970), 1, - sym__expr_parenthesized_immediate, - [226321] = 6, + ACTIONS(10110), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [223497] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10265), 1, + ACTIONS(10112), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6486), 1, + STATE(6317), 1, sym_comment, - [226340] = 6, + [223516] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10267), 1, + ACTIONS(10114), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6487), 1, + STATE(6318), 1, sym_comment, - [226359] = 6, + [223535] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10269), 1, + ACTIONS(10116), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6488), 1, + STATE(6319), 1, sym_comment, - [226378] = 6, + [223554] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10271), 1, + ACTIONS(10118), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6489), 1, + STATE(6320), 1, sym_comment, - [226397] = 6, + [223573] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10273), 1, + ACTIONS(10120), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6490), 1, + STATE(6321), 1, sym_comment, - [226416] = 6, + [223592] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10275), 1, + ACTIONS(10122), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6491), 1, + STATE(6322), 1, sym_comment, - [226435] = 6, + [223611] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10277), 1, + ACTIONS(10124), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6492), 1, + STATE(6323), 1, sym_comment, - [226454] = 6, + [223630] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10279), 1, + ACTIONS(10126), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6493), 1, + STATE(6324), 1, sym_comment, - [226473] = 4, - ACTIONS(3), 1, + [223649] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6494), 1, + STATE(6325), 1, sym_comment, - ACTIONS(2131), 2, + ACTIONS(10128), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym__unquoted_in_record_token4, - ACTIONS(2133), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [226488] = 3, + [223662] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6495), 1, + STATE(6326), 1, sym_comment, - ACTIONS(10281), 4, + ACTIONS(10130), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [226501] = 3, + [223675] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6496), 1, + STATE(6327), 1, sym_comment, - ACTIONS(10283), 4, + ACTIONS(10132), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [226514] = 5, + [223688] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6328), 1, + sym_comment, + ACTIONS(9755), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [223701] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10285), 1, + ACTIONS(10134), 1, anon_sym_DQUOTE, - STATE(6497), 1, + STATE(6329), 1, sym_comment, - STATE(6500), 1, + STATE(6332), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [226531] = 6, - ACTIONS(3), 1, + [223718] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10287), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6498), 1, + STATE(6330), 1, sym_comment, - [226550] = 6, + ACTIONS(10136), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [223731] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10245), 1, - anon_sym_LBRACK, - ACTIONS(10247), 1, - anon_sym_LPAREN, - STATE(3338), 1, - sym_parameter_parens, - STATE(3340), 1, - sym_parameter_bracks, - STATE(6499), 1, + STATE(6331), 1, sym_comment, - [226569] = 5, + ACTIONS(10138), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [223744] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10289), 1, + ACTIONS(10140), 1, anon_sym_DQUOTE, - STATE(6500), 1, + STATE(6332), 1, sym_comment, - STATE(6882), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [226586] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9595), 1, - anon_sym_RPAREN, - STATE(226), 1, - aux_sym__block_body_repeat1, - STATE(6501), 1, - sym_comment, - ACTIONS(145), 2, - sym__newline, - anon_sym_SEMI, - [226603] = 3, + [223761] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6502), 1, + STATE(6333), 1, sym_comment, - ACTIONS(10291), 4, + ACTIONS(10142), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [226616] = 6, + [223774] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10293), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6503), 1, + STATE(6334), 1, sym_comment, - [226635] = 6, + ACTIONS(2259), 4, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH, + aux_sym_unquoted_token4, + [223787] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10295), 1, - anon_sym_LBRACK, - ACTIONS(10297), 1, - anon_sym_LPAREN, - STATE(6220), 1, - sym_parameter_parens, - STATE(6221), 1, - sym_parameter_bracks, - STATE(6504), 1, + STATE(6335), 1, sym_comment, - [226654] = 6, + ACTIONS(10144), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [223800] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10299), 1, + ACTIONS(10146), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6505), 1, + STATE(6336), 1, sym_comment, - [226673] = 6, + [223819] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10301), 1, + ACTIONS(10148), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6506), 1, + STATE(6337), 1, sym_comment, - [226692] = 6, + [223838] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10303), 1, + ACTIONS(10150), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6507), 1, + STATE(6338), 1, sym_comment, - [226711] = 6, + [223857] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10305), 1, + ACTIONS(10152), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6508), 1, + STATE(6339), 1, sym_comment, - [226730] = 6, + [223876] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10307), 1, + ACTIONS(10154), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6509), 1, + STATE(6340), 1, sym_comment, - [226749] = 6, + [223895] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10309), 1, + ACTIONS(10156), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6510), 1, + STATE(6341), 1, sym_comment, - [226768] = 6, + [223914] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10311), 1, + ACTIONS(10158), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6511), 1, + STATE(6342), 1, sym_comment, - [226787] = 6, + [223933] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10313), 1, + ACTIONS(10160), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6512), 1, + STATE(6343), 1, sym_comment, - [226806] = 6, - ACTIONS(3), 1, + [223952] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5625), 1, - anon_sym_LPAREN2, - ACTIONS(8260), 1, - sym__entry_separator, - ACTIONS(8262), 1, - anon_sym_RBRACK, - STATE(6513), 1, + STATE(6344), 1, sym_comment, - STATE(7970), 1, - sym__expr_parenthesized_immediate, - [226825] = 3, + ACTIONS(10162), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [223965] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6514), 1, + STATE(6345), 1, sym_comment, - ACTIONS(10315), 4, + ACTIONS(10164), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [226838] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6515), 1, - sym_comment, - ACTIONS(10317), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [226851] = 5, + [223978] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10319), 1, + ACTIONS(10166), 1, anon_sym_DQUOTE, - STATE(6516), 1, + STATE(6346), 1, sym_comment, - STATE(6520), 1, + STATE(6349), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [226868] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4942), 1, - sym__newline, - ACTIONS(4944), 1, - sym__space, - ACTIONS(10321), 1, - anon_sym_EQ2, - ACTIONS(10323), 1, - sym_short_flag_identifier, - STATE(6517), 1, - sym_comment, - [226887] = 5, - ACTIONS(3), 1, + [223995] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2101), 1, - anon_sym_PIPE, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - STATE(6518), 1, + ACTIONS(1655), 1, + ts_builtin_sym_end, + STATE(234), 1, + aux_sym__block_body_repeat1, + STATE(6347), 1, sym_comment, - ACTIONS(2097), 2, - anon_sym_if, - anon_sym_EQ_GT, - [226904] = 4, - ACTIONS(3), 1, + ACTIONS(33), 2, + sym__newline, + anon_sym_SEMI, + [224012] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(996), 1, - anon_sym_DOT, - STATE(6519), 1, + STATE(6348), 1, sym_comment, - ACTIONS(994), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [226919] = 5, + ACTIONS(10168), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [224025] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10325), 1, + ACTIONS(10170), 1, anon_sym_DQUOTE, - STATE(6520), 1, + STATE(6349), 1, sym_comment, - STATE(6882), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [226936] = 6, + [224042] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(2455), 1, sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10327), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6521), 1, - sym_comment, - [226955] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - ACTIONS(2107), 1, - anon_sym_PIPE, - STATE(6522), 1, + STATE(6350), 1, sym_comment, - ACTIONS(2105), 2, - anon_sym_if, - anon_sym_EQ_GT, - [226972] = 3, + ACTIONS(2453), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym__, + [224057] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6523), 1, + STATE(6351), 1, sym_comment, - ACTIONS(10329), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [226985] = 5, - ACTIONS(3), 1, + ACTIONS(10172), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [224070] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10331), 1, - anon_sym_DQUOTE, - STATE(6524), 1, + STATE(6352), 1, sym_comment, - STATE(6648), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, - sym__escaped_str_content, - sym_escape_sequence, - [227002] = 6, + ACTIONS(10174), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [224083] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10333), 1, + ACTIONS(10176), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6525), 1, + STATE(6353), 1, sym_comment, - [227021] = 6, + [224102] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10335), 1, + ACTIONS(10178), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6526), 1, + STATE(6354), 1, sym_comment, - [227040] = 6, + [224121] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10337), 1, + ACTIONS(10180), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6527), 1, + STATE(6355), 1, sym_comment, - [227059] = 6, + [224140] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10339), 1, + ACTIONS(10182), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6528), 1, + STATE(6356), 1, sym_comment, - [227078] = 6, + [224159] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10341), 1, + ACTIONS(10184), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6529), 1, + STATE(6357), 1, sym_comment, - [227097] = 6, + [224178] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10343), 1, + ACTIONS(10186), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6530), 1, + STATE(6358), 1, sym_comment, - [227116] = 6, + [224197] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10345), 1, + ACTIONS(10188), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6531), 1, + STATE(6359), 1, sym_comment, - [227135] = 6, + [224216] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10347), 1, + ACTIONS(10190), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6532), 1, - sym_comment, - [227154] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2099), 1, - anon_sym_LPAREN2, - ACTIONS(2103), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(2105), 1, - anon_sym_RBRACK, - ACTIONS(2107), 1, - sym__entry_separator, - STATE(6533), 1, + STATE(6360), 1, sym_comment, - [227173] = 6, - ACTIONS(3), 1, + [224235] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10349), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6534), 1, + ACTIONS(9092), 1, + anon_sym_RPAREN, + STATE(210), 1, + aux_sym__block_body_repeat1, + STATE(6361), 1, sym_comment, - [227192] = 3, + ACTIONS(145), 2, + sym__newline, + anon_sym_SEMI, + [224252] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6535), 1, + STATE(6362), 1, sym_comment, - ACTIONS(10351), 4, + ACTIONS(10192), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [227205] = 6, - ACTIONS(3), 1, + [224265] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10353), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6536), 1, + STATE(6363), 1, sym_comment, - [227224] = 5, + ACTIONS(10194), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [224278] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10355), 1, + ACTIONS(10196), 1, anon_sym_DQUOTE, - STATE(6537), 1, + STATE(6364), 1, sym_comment, - STATE(6539), 1, + STATE(6366), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [227241] = 6, - ACTIONS(3), 1, + [224295] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10357), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6538), 1, + STATE(6365), 1, sym_comment, - [227260] = 5, + ACTIONS(10198), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [224308] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10359), 1, + ACTIONS(10200), 1, anon_sym_DQUOTE, - STATE(6539), 1, + STATE(6366), 1, sym_comment, - STATE(6882), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [227277] = 6, + [224325] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9366), 1, - aux_sym_ctrl_match_token1, - STATE(1814), 1, - sym_val_closure, - STATE(1850), 1, - sym_block, - STATE(5056), 1, - sym__blosure, - STATE(6540), 1, + ACTIONS(9092), 1, + anon_sym_RPAREN, + STATE(6238), 1, + aux_sym__block_body_repeat1, + STATE(6367), 1, sym_comment, - [227296] = 4, - ACTIONS(247), 1, + ACTIONS(145), 2, + sym__newline, + anon_sym_SEMI, + [224342] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1429), 1, - aux_sym_unquoted_token2, - STATE(6541), 1, + ACTIONS(2459), 1, + sym__entry_separator, + STATE(6368), 1, sym_comment, - ACTIONS(1698), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [227311] = 6, + ACTIONS(2457), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym__, + [224357] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10361), 1, + ACTIONS(10202), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6542), 1, + STATE(6369), 1, sym_comment, - [227330] = 6, + [224376] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10363), 1, + ACTIONS(10204), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6543), 1, + STATE(6370), 1, sym_comment, - [227349] = 6, + [224395] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10365), 1, + ACTIONS(10206), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6544), 1, + STATE(6371), 1, sym_comment, - [227368] = 6, + [224414] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10367), 1, + ACTIONS(10208), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6545), 1, + STATE(6372), 1, sym_comment, - [227387] = 6, + [224433] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10369), 1, + ACTIONS(10210), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6546), 1, + STATE(6373), 1, sym_comment, - [227406] = 6, + [224452] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10371), 1, + ACTIONS(10212), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6547), 1, + STATE(6374), 1, sym_comment, - [227425] = 6, + [224471] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10373), 1, + ACTIONS(10214), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6548), 1, + STATE(6375), 1, sym_comment, - [227444] = 6, + [224490] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10375), 1, + ACTIONS(10216), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6549), 1, + STATE(6376), 1, sym_comment, - [227463] = 3, + [224509] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6550), 1, + STATE(6377), 1, sym_comment, - ACTIONS(10377), 4, + ACTIONS(10218), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [227476] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5625), 1, - anon_sym_LPAREN2, - ACTIONS(8256), 1, - sym__entry_separator, - ACTIONS(8258), 1, - anon_sym_RBRACK, - STATE(6551), 1, - sym_comment, - STATE(7970), 1, - sym__expr_parenthesized_immediate, - [227495] = 3, + [224522] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6552), 1, + STATE(6378), 1, sym_comment, - ACTIONS(10379), 4, + ACTIONS(10220), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [227508] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10381), 1, - anon_sym_DQUOTE, - STATE(6553), 1, - sym_comment, - STATE(6555), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, - sym__escaped_str_content, - sym_escape_sequence, - [227525] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10383), 1, - aux_sym_ctrl_match_token1, - STATE(1997), 1, - sym_block, - STATE(2090), 1, - sym_val_closure, - STATE(5336), 1, - sym__blosure, - STATE(6554), 1, - sym_comment, - [227544] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10385), 1, - anon_sym_DQUOTE, - STATE(6555), 1, - sym_comment, - STATE(6882), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, - sym__escaped_str_content, - sym_escape_sequence, - [227561] = 3, + [224535] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6556), 1, + STATE(6379), 1, sym_comment, - ACTIONS(10387), 4, + ACTIONS(10222), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [227574] = 6, + [224548] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10389), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6557), 1, + ACTIONS(10224), 1, + anon_sym_DQUOTE, + STATE(6380), 1, sym_comment, - [227593] = 6, + STATE(6382), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9787), 2, + sym__escaped_str_content, + sym_escape_sequence, + [224565] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10391), 1, + ACTIONS(10226), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6558), 1, + STATE(6381), 1, sym_comment, - [227612] = 6, + [224584] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10393), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6559), 1, + ACTIONS(10228), 1, + anon_sym_DQUOTE, + STATE(6382), 1, sym_comment, - [227631] = 6, + STATE(6592), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9787), 2, + sym__escaped_str_content, + sym_escape_sequence, + [224601] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10395), 1, + ACTIONS(10230), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6560), 1, + STATE(6383), 1, sym_comment, - [227650] = 6, + [224620] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10397), 1, + ACTIONS(10232), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6561), 1, + STATE(6384), 1, sym_comment, - [227669] = 6, + [224639] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10399), 1, + ACTIONS(10234), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6562), 1, + STATE(6385), 1, sym_comment, - [227688] = 6, + [224658] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10401), 1, + ACTIONS(10236), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6563), 1, + STATE(6386), 1, sym_comment, - [227707] = 6, + [224677] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10403), 1, + ACTIONS(10238), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6564), 1, + STATE(6387), 1, sym_comment, - [227726] = 6, + [224696] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10405), 1, + ACTIONS(10240), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6565), 1, + STATE(6388), 1, sym_comment, - [227745] = 6, + [224715] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10407), 1, + ACTIONS(10242), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6566), 1, + STATE(6389), 1, sym_comment, - [227764] = 6, + [224734] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10409), 1, + ACTIONS(10244), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6567), 1, + STATE(6390), 1, sym_comment, - [227783] = 3, + [224753] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6568), 1, + STATE(6391), 1, sym_comment, - ACTIONS(10411), 4, + ACTIONS(10246), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [227796] = 5, + [224766] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10413), 1, + ACTIONS(10248), 1, anon_sym_DQUOTE, - STATE(6569), 1, + STATE(6392), 1, sym_comment, - STATE(6570), 1, + STATE(6393), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [227813] = 5, + [224783] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10415), 1, + ACTIONS(10250), 1, anon_sym_DQUOTE, - STATE(6570), 1, + STATE(6393), 1, sym_comment, - STATE(6882), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [227830] = 6, + [224800] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10417), 1, + ACTIONS(10252), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6571), 1, - sym_comment, - [227849] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1648), 1, - aux_sym_unquoted_token2, - STATE(6572), 1, + STATE(6394), 1, sym_comment, - ACTIONS(1650), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [227864] = 6, + [224819] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10419), 1, + ACTIONS(10254), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6573), 1, + STATE(6395), 1, sym_comment, - [227883] = 6, + [224838] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10421), 1, + ACTIONS(10256), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6574), 1, + STATE(6396), 1, sym_comment, - [227902] = 6, + [224857] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10423), 1, + ACTIONS(10258), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6575), 1, + STATE(6397), 1, sym_comment, - [227921] = 6, + [224876] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10425), 1, + ACTIONS(10260), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6576), 1, + STATE(6398), 1, sym_comment, - [227940] = 6, + [224895] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10427), 1, + ACTIONS(10262), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6577), 1, + STATE(6399), 1, sym_comment, - [227959] = 6, + [224914] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10429), 1, + ACTIONS(10264), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6578), 1, + STATE(6400), 1, sym_comment, - [227978] = 6, + [224933] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10431), 1, + ACTIONS(10266), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6579), 1, + STATE(6401), 1, sym_comment, - [227997] = 6, + [224952] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10433), 1, + ACTIONS(10268), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6580), 1, - sym_comment, - [228016] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6581), 1, + STATE(6402), 1, sym_comment, - ACTIONS(10435), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [228029] = 3, + [224971] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6582), 1, + STATE(6403), 1, sym_comment, - ACTIONS(10437), 4, + ACTIONS(10270), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [228042] = 5, + [224984] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10439), 1, + ACTIONS(10272), 1, anon_sym_DQUOTE, - STATE(6583), 1, + STATE(6404), 1, sym_comment, - STATE(6584), 1, + STATE(6405), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [228059] = 5, + [225001] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10441), 1, + ACTIONS(10274), 1, anon_sym_DQUOTE, - STATE(6584), 1, + STATE(6405), 1, sym_comment, - STATE(6882), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [228076] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6585), 1, - sym_comment, - ACTIONS(10443), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [228089] = 6, + [225018] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, + ACTIONS(2808), 1, sym__newline, - ACTIONS(6298), 1, - aux_sym_ctrl_match_token1, - STATE(2777), 1, + ACTIONS(10276), 1, + anon_sym_LBRACK, + STATE(2586), 1, aux_sym_shebang_repeat1, - STATE(4883), 1, - sym_block, - STATE(6586), 1, + STATE(6406), 1, sym_comment, - [228108] = 6, + STATE(7796), 1, + sym_val_list, + [225037] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10445), 1, + ACTIONS(10278), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6587), 1, + STATE(6407), 1, sym_comment, - [228127] = 6, + [225056] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10447), 1, + ACTIONS(10280), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6588), 1, + STATE(6408), 1, sym_comment, - [228146] = 6, + [225075] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10449), 1, + ACTIONS(10282), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6589), 1, + STATE(6409), 1, sym_comment, - [228165] = 6, + [225094] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10451), 1, + ACTIONS(10284), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6590), 1, + STATE(6410), 1, sym_comment, - [228184] = 6, + [225113] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10453), 1, + ACTIONS(10286), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6591), 1, + STATE(6411), 1, sym_comment, - [228203] = 6, - ACTIONS(3), 1, + [225132] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9805), 1, anon_sym_LBRACK, - ACTIONS(10455), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6592), 1, + ACTIONS(9807), 1, + anon_sym_LPAREN, + STATE(3076), 1, + sym_parameter_parens, + STATE(3077), 1, + sym_parameter_bracks, + STATE(6412), 1, sym_comment, - [228222] = 6, + [225151] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10457), 1, + ACTIONS(10288), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6593), 1, + STATE(6413), 1, sym_comment, - [228241] = 6, + [225170] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10459), 1, + ACTIONS(10290), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6594), 1, + STATE(6414), 1, sym_comment, - [228260] = 3, + [225189] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(6595), 1, + ACTIONS(10292), 1, + aux_sym_ctrl_match_token1, + STATE(1896), 1, + sym_block, + STATE(1899), 1, + sym_val_closure, + STATE(5094), 1, + sym__blosure, + STATE(6415), 1, sym_comment, - ACTIONS(10461), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [228273] = 3, + [225208] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6596), 1, + STATE(6416), 1, sym_comment, - ACTIONS(10463), 4, + ACTIONS(10294), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [228286] = 5, + [225221] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10465), 1, + ACTIONS(10296), 1, anon_sym_DQUOTE, - STATE(6597), 1, + STATE(6417), 1, sym_comment, - STATE(6598), 1, + STATE(6418), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [228303] = 5, + [225238] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10467), 1, + ACTIONS(10298), 1, anon_sym_DQUOTE, - STATE(6598), 1, + STATE(6418), 1, sym_comment, - STATE(6882), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [228320] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6599), 1, - sym_comment, - ACTIONS(10469), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [228333] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6600), 1, - sym_comment, - ACTIONS(10471), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [228346] = 5, + [225255] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10473), 1, - anon_sym_DQUOTE, - STATE(6601), 1, - sym_comment, - STATE(6603), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, - sym__escaped_str_content, - sym_escape_sequence, - [228363] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6602), 1, + ACTIONS(1495), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1786), 1, + anon_sym_RBRACK, + ACTIONS(1788), 1, + anon_sym_LPAREN2, + ACTIONS(1794), 1, + sym__entry_separator, + STATE(6419), 1, sym_comment, - ACTIONS(10475), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [228376] = 5, + [225274] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10477), 1, - anon_sym_DQUOTE, - STATE(6603), 1, - sym_comment, - STATE(6882), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, - sym__escaped_str_content, - sym_escape_sequence, - [228393] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6604), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(10300), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6420), 1, sym_comment, - ACTIONS(10479), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [228406] = 3, - ACTIONS(247), 1, + [225293] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6605), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(10302), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6421), 1, sym_comment, - ACTIONS(10481), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [228419] = 5, + [225312] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10483), 1, - anon_sym_DQUOTE, - STATE(6606), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(10304), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6422), 1, sym_comment, - STATE(6607), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, - sym__escaped_str_content, - sym_escape_sequence, - [228436] = 5, + [225331] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10485), 1, - anon_sym_DQUOTE, - STATE(6607), 1, - sym_comment, - STATE(6882), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, - sym__escaped_str_content, - sym_escape_sequence, - [228453] = 6, - ACTIONS(247), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(10306), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6423), 1, + sym_comment, + [225350] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10245), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10247), 1, - anon_sym_LPAREN, - STATE(3330), 1, - sym_parameter_bracks, - STATE(3339), 1, - sym_parameter_parens, - STATE(6608), 1, + ACTIONS(10308), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6424), 1, sym_comment, - [228472] = 3, - ACTIONS(247), 1, + [225369] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6609), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(10310), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6425), 1, sym_comment, - ACTIONS(10487), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [228485] = 5, + [225388] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10489), 1, - anon_sym_DQUOTE, - STATE(6610), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(10312), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6426), 1, sym_comment, - STATE(6611), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, - sym__escaped_str_content, - sym_escape_sequence, - [228502] = 5, + [225407] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10491), 1, - anon_sym_DQUOTE, - STATE(6611), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(10314), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6427), 1, sym_comment, - STATE(6882), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, - sym__escaped_str_content, - sym_escape_sequence, - [228519] = 3, + [225426] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(6612), 1, + ACTIONS(9451), 1, + anon_sym_RPAREN, + STATE(210), 1, + aux_sym__block_body_repeat1, + STATE(6428), 1, sym_comment, - ACTIONS(10493), 4, + ACTIONS(145), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [228532] = 3, + [225443] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6613), 1, + STATE(6429), 1, sym_comment, - ACTIONS(10495), 4, + ACTIONS(10316), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [228545] = 5, + [225456] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10497), 1, + ACTIONS(10318), 1, anon_sym_DQUOTE, - STATE(6614), 1, + STATE(6430), 1, sym_comment, - STATE(6615), 1, + STATE(6431), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [228562] = 5, + [225473] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10499), 1, + ACTIONS(10320), 1, anon_sym_DQUOTE, - STATE(6615), 1, + STATE(6431), 1, sym_comment, - STATE(6882), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [228579] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6616), 1, - sym_comment, - ACTIONS(10501), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [228592] = 3, + [225490] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6617), 1, + STATE(6432), 1, sym_comment, - ACTIONS(10503), 4, + ACTIONS(10322), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [228605] = 5, + [225503] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10505), 1, + ACTIONS(10324), 1, anon_sym_DQUOTE, - STATE(6618), 1, + STATE(6433), 1, sym_comment, - STATE(6619), 1, + STATE(6434), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [228622] = 5, + [225520] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10507), 1, + ACTIONS(10326), 1, anon_sym_DQUOTE, - STATE(6619), 1, + STATE(6434), 1, sym_comment, - STATE(6882), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [228639] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6620), 1, - sym_comment, - ACTIONS(10509), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [228652] = 3, + [225537] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6621), 1, + STATE(6435), 1, sym_comment, - ACTIONS(10511), 4, + ACTIONS(10328), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [228665] = 5, + [225550] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10513), 1, + ACTIONS(10330), 1, anon_sym_DQUOTE, - STATE(6622), 1, + STATE(6436), 1, sym_comment, - STATE(6623), 1, + STATE(6437), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [228682] = 5, + [225567] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10515), 1, + ACTIONS(10332), 1, anon_sym_DQUOTE, - STATE(6623), 1, + STATE(6437), 1, sym_comment, - STATE(6882), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [228699] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6624), 1, - sym_comment, - ACTIONS(1589), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1591), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [228714] = 3, + [225584] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6625), 1, + STATE(6438), 1, sym_comment, - ACTIONS(10517), 4, + ACTIONS(10334), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [228727] = 5, + [225597] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10519), 1, + ACTIONS(10336), 1, anon_sym_DQUOTE, - STATE(6626), 1, + STATE(6439), 1, sym_comment, - STATE(6627), 1, + STATE(6440), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [228744] = 5, + [225614] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10521), 1, + ACTIONS(10338), 1, anon_sym_DQUOTE, - STATE(6627), 1, + STATE(6440), 1, sym_comment, - STATE(6882), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [228761] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10523), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6628), 1, - sym_comment, - [228780] = 3, + [225631] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6629), 1, + STATE(6441), 1, sym_comment, - ACTIONS(10525), 4, + ACTIONS(10340), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [228793] = 5, + [225644] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10527), 1, + ACTIONS(10342), 1, anon_sym_DQUOTE, - STATE(6630), 1, + STATE(6442), 1, sym_comment, - STATE(6631), 1, + STATE(6443), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [228810] = 5, + [225661] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10529), 1, + ACTIONS(10344), 1, anon_sym_DQUOTE, - STATE(6631), 1, + STATE(6443), 1, sym_comment, - STATE(6882), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [228827] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10245), 1, - anon_sym_LBRACK, - ACTIONS(10247), 1, - anon_sym_LPAREN, - STATE(3336), 1, - sym_parameter_parens, - STATE(3337), 1, - sym_parameter_bracks, - STATE(6632), 1, - sym_comment, - [228846] = 3, + [225678] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6633), 1, + STATE(6444), 1, sym_comment, - ACTIONS(10531), 4, + ACTIONS(10346), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [228859] = 5, + [225691] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10533), 1, + ACTIONS(10348), 1, anon_sym_DQUOTE, - STATE(6634), 1, + STATE(6445), 1, sym_comment, - STATE(6635), 1, + STATE(6446), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [228876] = 5, + [225708] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10535), 1, + ACTIONS(10350), 1, anon_sym_DQUOTE, - STATE(6635), 1, + STATE(6446), 1, sym_comment, - STATE(6882), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [228893] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1519), 1, - aux_sym_cmd_identifier_token41, - STATE(6636), 1, - sym_comment, - ACTIONS(1521), 3, - sym_filesize_unit, - sym_duration_unit, - aux_sym_record_entry_token1, - [228908] = 3, + [225725] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6637), 1, + STATE(6447), 1, sym_comment, - ACTIONS(10537), 4, + ACTIONS(10352), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [228921] = 5, + [225738] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10539), 1, + ACTIONS(10354), 1, anon_sym_DQUOTE, - STATE(6638), 1, + STATE(6448), 1, sym_comment, - STATE(6639), 1, + STATE(6449), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [228938] = 5, + [225755] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10541), 1, + ACTIONS(10356), 1, anon_sym_DQUOTE, - STATE(6639), 1, + STATE(6449), 1, sym_comment, - STATE(6882), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [228955] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(6298), 1, - aux_sym_ctrl_match_token1, - STATE(4884), 1, - sym_block, - STATE(6436), 1, - aux_sym_shebang_repeat1, - STATE(6640), 1, - sym_comment, - [228974] = 3, + [225772] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6641), 1, + STATE(6450), 1, sym_comment, - ACTIONS(10543), 4, + ACTIONS(10358), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [228987] = 5, + [225785] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10545), 1, + ACTIONS(10360), 1, anon_sym_DQUOTE, - STATE(6642), 1, + STATE(6451), 1, sym_comment, - STATE(6643), 1, + STATE(6452), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [229004] = 5, + [225802] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10547), 1, + ACTIONS(10362), 1, anon_sym_DQUOTE, - STATE(6643), 1, + STATE(6452), 1, sym_comment, - STATE(6882), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [229021] = 6, + [225819] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10295), 1, - anon_sym_LBRACK, - ACTIONS(10297), 1, - anon_sym_LPAREN, - STATE(6283), 1, - sym_parameter_parens, - STATE(6284), 1, - sym_parameter_bracks, - STATE(6644), 1, + ACTIONS(1806), 1, + aux_sym_unquoted_token2, + ACTIONS(10364), 1, + anon_sym_DOT_DOT2, + STATE(6453), 1, sym_comment, - [229040] = 3, + ACTIONS(10366), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [225836] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6645), 1, + STATE(6454), 1, sym_comment, - ACTIONS(10549), 4, + ACTIONS(10368), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [229053] = 5, + [225849] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10551), 1, + ACTIONS(10370), 1, anon_sym_DQUOTE, - STATE(6646), 1, + STATE(6455), 1, sym_comment, - STATE(6647), 1, + STATE(6456), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [229070] = 5, + [225866] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10553), 1, + ACTIONS(10372), 1, anon_sym_DQUOTE, - STATE(6647), 1, + STATE(6456), 1, sym_comment, - STATE(6882), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [229087] = 5, - ACTIONS(3), 1, + [225883] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10555), 1, - anon_sym_DQUOTE, - STATE(6648), 1, + ACTIONS(1719), 1, + anon_sym_SEMI, + ACTIONS(2808), 1, + sym__newline, + STATE(238), 1, + aux_sym__parenthesized_body_repeat1, + STATE(6457), 1, sym_comment, - STATE(6882), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, - sym__escaped_str_content, - sym_escape_sequence, - [229104] = 3, + STATE(6970), 1, + aux_sym_shebang_repeat1, + [225902] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6649), 1, + STATE(6458), 1, sym_comment, - ACTIONS(10557), 4, + ACTIONS(10374), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [229117] = 5, + [225915] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10559), 1, + ACTIONS(10376), 1, anon_sym_DQUOTE, - STATE(6650), 1, + STATE(6459), 1, sym_comment, - STATE(6651), 1, + STATE(6460), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [229134] = 5, + [225932] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10561), 1, + ACTIONS(10378), 1, anon_sym_DQUOTE, - STATE(6651), 1, + STATE(6460), 1, sym_comment, - STATE(6882), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [229151] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1457), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(2117), 1, - anon_sym_RBRACE, - ACTIONS(2119), 1, - anon_sym_LPAREN2, - ACTIONS(2121), 1, - sym__entry_separator, - STATE(6652), 1, - sym_comment, - [229170] = 3, + [225949] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6653), 1, + STATE(6461), 1, sym_comment, - ACTIONS(10563), 4, + ACTIONS(10380), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [229183] = 5, + [225962] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10565), 1, + ACTIONS(10382), 1, anon_sym_DQUOTE, - STATE(6654), 1, + STATE(6462), 1, sym_comment, - STATE(6655), 1, + STATE(6463), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [229200] = 5, + [225979] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10567), 1, + ACTIONS(10384), 1, anon_sym_DQUOTE, - STATE(6655), 1, + STATE(6463), 1, sym_comment, - STATE(6882), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [229217] = 5, + [225996] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(609), 1, - ts_builtin_sym_end, - STATE(233), 1, - aux_sym__block_body_repeat1, - STATE(6656), 1, + STATE(6464), 1, sym_comment, - ACTIONS(33), 2, + ACTIONS(10386), 4, sym__newline, anon_sym_SEMI, - [229234] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [226009] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6657), 1, + STATE(6465), 1, sym_comment, - ACTIONS(10569), 4, + ACTIONS(10388), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [229247] = 5, + [226022] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10571), 1, + ACTIONS(10390), 1, anon_sym_DQUOTE, - STATE(6658), 1, + STATE(6466), 1, sym_comment, - STATE(6659), 1, + STATE(6467), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [229264] = 5, + [226039] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10573), 1, + ACTIONS(10392), 1, anon_sym_DQUOTE, - STATE(6659), 1, + STATE(6467), 1, sym_comment, - STATE(6882), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [229281] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1457), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2117), 1, - anon_sym_RBRACK, - ACTIONS(2119), 1, - anon_sym_LPAREN2, - ACTIONS(2121), 1, - sym__entry_separator, - STATE(6660), 1, - sym_comment, - [229300] = 3, + [226056] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6661), 1, + STATE(6468), 1, sym_comment, - ACTIONS(10575), 4, + ACTIONS(10394), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [229313] = 5, + [226069] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10577), 1, + ACTIONS(10396), 1, anon_sym_DQUOTE, - STATE(6662), 1, + STATE(6469), 1, sym_comment, - STATE(6663), 1, + STATE(6470), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [229330] = 5, + [226086] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10579), 1, + ACTIONS(10398), 1, anon_sym_DQUOTE, - STATE(6663), 1, + STATE(6470), 1, sym_comment, - STATE(6882), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [229347] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10581), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6664), 1, - sym_comment, - [229366] = 3, + [226103] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6665), 1, + STATE(6471), 1, sym_comment, - ACTIONS(10583), 4, + ACTIONS(10400), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [229379] = 5, + [226116] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10585), 1, + ACTIONS(10402), 1, anon_sym_DQUOTE, - STATE(6666), 1, + STATE(6472), 1, sym_comment, - STATE(6667), 1, + STATE(6473), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [229396] = 5, + [226133] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10587), 1, + ACTIONS(10404), 1, anon_sym_DQUOTE, - STATE(6667), 1, + STATE(6473), 1, sym_comment, - STATE(6882), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [229413] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10589), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6668), 1, - sym_comment, - [229432] = 3, + [226150] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6669), 1, + STATE(6474), 1, sym_comment, - ACTIONS(10591), 4, + ACTIONS(10406), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [229445] = 5, + [226163] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10593), 1, + ACTIONS(10408), 1, anon_sym_DQUOTE, - STATE(6670), 1, + STATE(6475), 1, sym_comment, - STATE(6671), 1, + STATE(6476), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [229462] = 5, + [226180] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10595), 1, + ACTIONS(10410), 1, anon_sym_DQUOTE, - STATE(6671), 1, + STATE(6476), 1, sym_comment, - STATE(6882), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [229479] = 6, - ACTIONS(3), 1, + [226197] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10597), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6672), 1, + STATE(6477), 1, sym_comment, - [229498] = 3, + ACTIONS(10412), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [226210] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6673), 1, + STATE(6478), 1, sym_comment, - ACTIONS(10599), 4, + ACTIONS(10414), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [229511] = 5, + [226223] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10601), 1, + ACTIONS(10416), 1, anon_sym_DQUOTE, - STATE(6674), 1, + STATE(6479), 1, sym_comment, - STATE(6675), 1, + STATE(6480), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [229528] = 5, + [226240] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10603), 1, + ACTIONS(10418), 1, anon_sym_DQUOTE, - STATE(6675), 1, + STATE(6480), 1, sym_comment, - STATE(6882), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [229545] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1481), 1, - aux_sym_cmd_identifier_token41, - STATE(6676), 1, - sym_comment, - ACTIONS(1483), 3, - sym_filesize_unit, - sym_duration_unit, - aux_sym_record_entry_token1, - [229560] = 3, + [226257] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6677), 1, + STATE(6481), 1, sym_comment, - ACTIONS(10605), 4, + ACTIONS(10420), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [229573] = 5, + [226270] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10607), 1, + ACTIONS(10422), 1, anon_sym_DQUOTE, - STATE(6678), 1, + STATE(6482), 1, sym_comment, - STATE(6679), 1, + STATE(6483), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [229590] = 5, + [226287] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10609), 1, + ACTIONS(10424), 1, anon_sym_DQUOTE, - STATE(6679), 1, + STATE(6483), 1, sym_comment, - STATE(6882), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [229607] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10611), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6680), 1, - sym_comment, - [229626] = 3, + [226304] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6681), 1, + STATE(6484), 1, sym_comment, - ACTIONS(10613), 4, + ACTIONS(10426), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [229639] = 5, + [226317] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10615), 1, + ACTIONS(10428), 1, anon_sym_DQUOTE, - STATE(6682), 1, + STATE(6485), 1, sym_comment, - STATE(6683), 1, + STATE(6486), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [229656] = 5, + [226334] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10617), 1, + ACTIONS(10430), 1, anon_sym_DQUOTE, - STATE(6683), 1, + STATE(6486), 1, sym_comment, - STATE(6882), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [229673] = 5, - ACTIONS(247), 1, + [226351] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1429), 1, - aux_sym_unquoted_token2, - ACTIONS(10619), 1, - anon_sym_DOT_DOT2, - STATE(6684), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(10432), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6487), 1, sym_comment, - ACTIONS(10621), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [229690] = 3, + [226370] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6685), 1, + STATE(6488), 1, sym_comment, - ACTIONS(10623), 4, + ACTIONS(10434), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [229703] = 5, + [226383] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10625), 1, + ACTIONS(10436), 1, anon_sym_DQUOTE, - STATE(6686), 1, + STATE(6489), 1, sym_comment, - STATE(6687), 1, + STATE(6490), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [229720] = 5, + [226400] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10627), 1, + ACTIONS(10438), 1, anon_sym_DQUOTE, - STATE(6687), 1, + STATE(6490), 1, sym_comment, - STATE(6882), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [229737] = 3, - ACTIONS(247), 1, + [226417] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6688), 1, + STATE(6491), 1, sym_comment, - ACTIONS(10629), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2259), 2, anon_sym_RBRACE, - [229750] = 3, + aux_sym__unquoted_in_record_token4, + ACTIONS(2261), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [226432] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6689), 1, + STATE(6492), 1, sym_comment, - ACTIONS(10631), 4, + ACTIONS(10440), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [229763] = 5, + [226445] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10633), 1, + ACTIONS(10442), 1, anon_sym_DQUOTE, - STATE(6690), 1, + STATE(6493), 1, sym_comment, - STATE(6691), 1, + STATE(6494), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [229780] = 5, + [226462] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10635), 1, + ACTIONS(10444), 1, anon_sym_DQUOTE, - STATE(6691), 1, + STATE(6494), 1, sym_comment, - STATE(6882), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [229797] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6692), 1, - sym_comment, - ACTIONS(10443), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [229810] = 3, + [226479] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6693), 1, + STATE(6495), 1, sym_comment, - ACTIONS(10637), 4, + ACTIONS(10446), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [229823] = 5, + [226492] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10639), 1, + ACTIONS(10448), 1, anon_sym_DQUOTE, - STATE(6694), 1, + STATE(6496), 1, sym_comment, - STATE(6695), 1, + STATE(6497), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [229840] = 5, + [226509] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10641), 1, + ACTIONS(10450), 1, anon_sym_DQUOTE, - STATE(6695), 1, + STATE(6497), 1, sym_comment, - STATE(6882), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [229857] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10643), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6696), 1, - sym_comment, - [229876] = 3, + [226526] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6697), 1, + STATE(6498), 1, sym_comment, - ACTIONS(10645), 4, + ACTIONS(10452), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [229889] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10647), 1, - anon_sym_DQUOTE, - STATE(6698), 1, - sym_comment, - STATE(6699), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, - sym__escaped_str_content, - sym_escape_sequence, - [229906] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10649), 1, - anon_sym_DQUOTE, - STATE(6699), 1, - sym_comment, - STATE(6882), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, - sym__escaped_str_content, - sym_escape_sequence, - [229923] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10651), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6700), 1, - sym_comment, - [229942] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10653), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6701), 1, - sym_comment, - [229961] = 5, + [226539] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10655), 1, + ACTIONS(10454), 1, anon_sym_DQUOTE, - STATE(6702), 1, + STATE(6499), 1, sym_comment, - STATE(6703), 1, + STATE(6500), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [229978] = 5, + [226556] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10657), 1, + ACTIONS(10456), 1, anon_sym_DQUOTE, - STATE(6703), 1, + STATE(6500), 1, sym_comment, - STATE(6882), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [229995] = 3, + [226573] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6704), 1, + STATE(6501), 1, sym_comment, - ACTIONS(10659), 4, + ACTIONS(10458), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [230008] = 5, + [226586] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10661), 1, + ACTIONS(10460), 1, anon_sym_DQUOTE, - STATE(6705), 1, + STATE(6502), 1, sym_comment, - STATE(6706), 1, + STATE(6503), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [230025] = 5, + [226603] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10663), 1, + ACTIONS(10462), 1, anon_sym_DQUOTE, - STATE(6706), 1, + STATE(6503), 1, sym_comment, - STATE(6882), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [230042] = 3, + [226620] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6707), 1, + STATE(6504), 1, sym_comment, - ACTIONS(10665), 4, + ACTIONS(10464), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [230055] = 5, + [226633] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10667), 1, + ACTIONS(10466), 1, anon_sym_DQUOTE, - STATE(6708), 1, + STATE(6505), 1, sym_comment, - STATE(6709), 1, + STATE(6506), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [230072] = 5, + [226650] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10669), 1, + ACTIONS(10468), 1, anon_sym_DQUOTE, - STATE(6709), 1, + STATE(6506), 1, sym_comment, - STATE(6882), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [230089] = 3, + [226667] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6710), 1, + STATE(6507), 1, sym_comment, - ACTIONS(10671), 4, + ACTIONS(10470), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [230102] = 5, + [226680] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10673), 1, + ACTIONS(10472), 1, anon_sym_DQUOTE, - STATE(6711), 1, + STATE(6508), 1, sym_comment, - STATE(6712), 1, + STATE(6509), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [230119] = 5, + [226697] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10675), 1, + ACTIONS(10474), 1, anon_sym_DQUOTE, - STATE(6712), 1, + STATE(6509), 1, sym_comment, - STATE(6882), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [230136] = 5, + [226714] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10677), 1, + ACTIONS(10476), 1, anon_sym_DQUOTE, - STATE(6713), 1, + STATE(6510), 1, sym_comment, - STATE(6714), 1, + STATE(6511), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [230153] = 5, + [226731] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10679), 1, + ACTIONS(10478), 1, anon_sym_DQUOTE, - STATE(6714), 1, + STATE(6511), 1, sym_comment, - STATE(6882), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [230170] = 5, + [226748] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10681), 1, + ACTIONS(10480), 1, anon_sym_DQUOTE, - STATE(6715), 1, + STATE(6512), 1, sym_comment, - STATE(6716), 1, + STATE(6513), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [230187] = 5, + [226765] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10683), 1, + ACTIONS(10482), 1, anon_sym_DQUOTE, - STATE(6716), 1, + STATE(6513), 1, sym_comment, - STATE(6882), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [230204] = 5, + [226782] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10685), 1, + ACTIONS(10484), 1, anon_sym_DQUOTE, - STATE(6717), 1, + STATE(6514), 1, sym_comment, - STATE(6718), 1, + STATE(6515), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [230221] = 5, + [226799] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10687), 1, + ACTIONS(10486), 1, anon_sym_DQUOTE, - STATE(6718), 1, + STATE(6515), 1, sym_comment, - STATE(6882), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [230238] = 5, + [226816] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10689), 1, + ACTIONS(10488), 1, anon_sym_DQUOTE, - STATE(6719), 1, + STATE(6516), 1, sym_comment, - STATE(6720), 1, + STATE(6517), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [230255] = 5, + [226833] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10691), 1, + ACTIONS(10490), 1, anon_sym_DQUOTE, - STATE(6720), 1, + STATE(6517), 1, sym_comment, - STATE(6882), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [230272] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1537), 1, - aux_sym_record_entry_token1, - ACTIONS(10693), 1, - aux_sym_cmd_identifier_token41, - STATE(6721), 1, - sym_comment, - ACTIONS(10695), 2, - sym_filesize_unit, - sym_duration_unit, - [230289] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6722), 1, - sym_comment, - ACTIONS(10697), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [230302] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10245), 1, - anon_sym_LBRACK, - ACTIONS(10247), 1, - anon_sym_LPAREN, - STATE(3321), 1, - sym_parameter_parens, - STATE(3322), 1, - sym_parameter_bracks, - STATE(6723), 1, - sym_comment, - [230321] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6724), 1, - sym_comment, - ACTIONS(986), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(988), 2, - anon_sym_DOT, - sym__entry_separator, - [230336] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1429), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(1690), 1, - anon_sym_RBRACE, - ACTIONS(1692), 1, - anon_sym_LPAREN2, - ACTIONS(1698), 1, - sym__entry_separator, - STATE(6725), 1, - sym_comment, - [230355] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1698), 1, - aux_sym_ctrl_match_token1, - ACTIONS(10699), 1, - anon_sym_DOT_DOT2, - STATE(6726), 1, - sym_comment, - ACTIONS(10701), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [230372] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6727), 1, - sym_comment, - ACTIONS(990), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(992), 2, - anon_sym_DOT, - sym__entry_separator, - [230387] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6728), 1, - sym_comment, - ACTIONS(10703), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [230400] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1585), 1, - aux_sym_cmd_identifier_token41, - STATE(6729), 1, - sym_comment, - ACTIONS(1587), 3, - sym_filesize_unit, - sym_duration_unit, - aux_sym_record_entry_token1, - [230415] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10705), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6730), 1, - sym_comment, - [230434] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10707), 1, - anon_sym_LPAREN, - STATE(6731), 1, - sym_comment, - ACTIONS(10709), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [230449] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10245), 1, - anon_sym_LBRACK, - ACTIONS(10247), 1, - anon_sym_LPAREN, - STATE(5971), 1, - sym_parameter_parens, - STATE(5973), 1, - sym_parameter_bracks, - STATE(6732), 1, - sym_comment, - [230468] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10711), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6733), 1, - sym_comment, - [230487] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6734), 1, - sym_comment, - ACTIONS(10713), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [230500] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6735), 1, - sym_comment, - ACTIONS(10715), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [230513] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6736), 1, - sym_comment, - ACTIONS(10715), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [230526] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6737), 1, - sym_comment, - ACTIONS(10717), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [230539] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10719), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6738), 1, - sym_comment, - [230558] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6739), 1, - sym_comment, - ACTIONS(10717), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [230571] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6740), 1, - sym_comment, - ACTIONS(10721), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [230584] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10723), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6741), 1, - sym_comment, - [230603] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1717), 1, - aux_sym_ctrl_match_token1, - ACTIONS(10725), 1, - anon_sym_DOT_DOT2, - STATE(6742), 1, - sym_comment, - ACTIONS(10727), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [230620] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10729), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6743), 1, - sym_comment, - [230639] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10731), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6744), 1, - sym_comment, - [230658] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10245), 1, - anon_sym_LBRACK, - ACTIONS(10247), 1, - anon_sym_LPAREN, - STATE(3324), 1, - sym_parameter_parens, - STATE(3325), 1, - sym_parameter_bracks, - STATE(6745), 1, - sym_comment, - [230677] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10245), 1, - anon_sym_LBRACK, - ACTIONS(10247), 1, - anon_sym_LPAREN, - STATE(3326), 1, - sym_parameter_parens, - STATE(3327), 1, - sym_parameter_bracks, - STATE(6746), 1, - sym_comment, - [230696] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10733), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6747), 1, - sym_comment, - [230715] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10735), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6748), 1, - sym_comment, - [230734] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10737), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6749), 1, - sym_comment, - [230753] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6750), 1, - sym_comment, - ACTIONS(6367), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - aux_sym_ctrl_match_token1, - [230766] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6751), 1, - sym_comment, - ACTIONS(6421), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - aux_sym_ctrl_match_token1, - [230779] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6752), 1, - sym_comment, - ACTIONS(10739), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [230792] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10245), 1, - anon_sym_LBRACK, - ACTIONS(10247), 1, - anon_sym_LPAREN, - STATE(3320), 1, - sym_parameter_parens, - STATE(3329), 1, - sym_parameter_bracks, - STATE(6753), 1, - sym_comment, - [230811] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6754), 1, - sym_comment, - ACTIONS(10739), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [230824] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6755), 1, - sym_comment, - ACTIONS(10715), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [230837] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6756), 1, - sym_comment, - ACTIONS(10741), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [230850] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6757), 1, - sym_comment, - ACTIONS(10715), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [230863] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6758), 1, - sym_comment, - ACTIONS(10743), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [230876] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10745), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6759), 1, - sym_comment, - [230895] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6760), 1, - sym_comment, - ACTIONS(10747), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [230908] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6761), 1, - sym_comment, - ACTIONS(10749), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [230921] = 5, + [226850] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10751), 1, + ACTIONS(10492), 1, anon_sym_DQUOTE, - STATE(6762), 1, + STATE(6518), 1, sym_comment, - STATE(6777), 1, + STATE(6519), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [230938] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6763), 1, - sym_comment, - ACTIONS(2131), 4, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH, - aux_sym_unquoted_token4, - [230951] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6764), 1, - sym_comment, - ACTIONS(10753), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [230964] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6765), 1, - sym_comment, - ACTIONS(10755), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [230977] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6766), 1, - sym_comment, - ACTIONS(1569), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1571), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [230992] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6767), 1, - sym_comment, - ACTIONS(10757), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [231005] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6768), 1, - sym_comment, - ACTIONS(10759), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [231018] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1589), 1, - aux_sym_unquoted_token2, - ACTIONS(9948), 1, - aux_sym__immediate_decimal_token2, - STATE(6769), 1, - sym_comment, - ACTIONS(1591), 2, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - [231035] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6770), 1, - sym_comment, - ACTIONS(1589), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1591), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [231050] = 5, + [226867] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10761), 1, + ACTIONS(10494), 1, anon_sym_DQUOTE, - STATE(6771), 1, + STATE(6519), 1, sym_comment, - STATE(6850), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [231067] = 6, + [226884] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10763), 1, - anon_sym_use, - ACTIONS(10765), 1, - anon_sym_list, - ACTIONS(10767), 1, - anon_sym_hide, - ACTIONS(10769), 1, - anon_sym_new, - STATE(6772), 1, + STATE(6520), 1, sym_comment, - [231086] = 3, + ACTIONS(10496), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [226897] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6773), 1, + STATE(6521), 1, sym_comment, - ACTIONS(10771), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [231099] = 3, + ACTIONS(10498), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [226910] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6774), 1, + STATE(6522), 1, sym_comment, - ACTIONS(10773), 4, + ACTIONS(10498), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [231112] = 3, + [226923] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(6775), 1, + ACTIONS(9805), 1, + anon_sym_LBRACK, + ACTIONS(9807), 1, + anon_sym_LPAREN, + STATE(3067), 1, + sym_parameter_parens, + STATE(3068), 1, + sym_parameter_bracks, + STATE(6523), 1, + sym_comment, + [226942] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6524), 1, sym_comment, - ACTIONS(10775), 4, + ACTIONS(10500), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [231125] = 5, - ACTIONS(3), 1, + [226955] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10777), 1, - anon_sym_DQUOTE, - STATE(6776), 1, + ACTIONS(6482), 1, + anon_sym_DOT_DOT2, + ACTIONS(10502), 1, + aux_sym_ctrl_match_token1, + STATE(6525), 1, sym_comment, - STATE(6790), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, - sym__escaped_str_content, - sym_escape_sequence, - [231142] = 5, + ACTIONS(6484), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [226972] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10779), 1, - anon_sym_DQUOTE, - STATE(6777), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(10504), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6526), 1, sym_comment, - STATE(6882), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, - sym__escaped_str_content, - sym_escape_sequence, - [231159] = 3, + [226991] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6778), 1, + STATE(6527), 1, sym_comment, - ACTIONS(10781), 4, + ACTIONS(10506), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [231172] = 3, + [227004] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6779), 1, + STATE(6528), 1, sym_comment, - ACTIONS(10783), 4, + ACTIONS(10508), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [231185] = 4, + [227017] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6780), 1, + STATE(6529), 1, sym_comment, - ACTIONS(1721), 2, + ACTIONS(1643), 2, anon_sym_RBRACK, aux_sym__unquoted_in_list_token2, - ACTIONS(1723), 2, + ACTIONS(1645), 2, anon_sym_LPAREN2, sym__entry_separator, - [231200] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2083), 1, - aux_sym_unquoted_token4, - STATE(6781), 1, - sym_comment, - ACTIONS(1006), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH, - [231215] = 3, + [227032] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6782), 1, + STATE(6530), 1, sym_comment, - ACTIONS(10785), 4, + ACTIONS(10510), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [231228] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(6298), 1, - aux_sym_ctrl_match_token1, - STATE(5006), 1, - sym_block, - STATE(6586), 1, - aux_sym_shebang_repeat1, - STATE(6783), 1, - sym_comment, - [231247] = 5, + [227045] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10787), 1, - anon_sym_RPAREN, - STATE(226), 1, - aux_sym__block_body_repeat1, - STATE(6784), 1, + ACTIONS(1495), 1, + aux_sym_unquoted_token2, + STATE(6531), 1, sym_comment, - ACTIONS(145), 2, - sym__newline, - anon_sym_SEMI, - [231264] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2083), 1, - aux_sym_unquoted_token4, - ACTIONS(6048), 1, + ACTIONS(1794), 3, anon_sym_PIPE, - STATE(6785), 1, - sym_comment, - ACTIONS(5964), 2, anon_sym_if, anon_sym_EQ_GT, - [231281] = 4, - ACTIONS(3), 1, + [227060] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(988), 1, - anon_sym_DOT, - STATE(6786), 1, + ACTIONS(9805), 1, + anon_sym_LBRACK, + ACTIONS(9807), 1, + anon_sym_LPAREN, + STATE(3069), 1, + sym_parameter_parens, + STATE(3070), 1, + sym_parameter_bracks, + STATE(6532), 1, sym_comment, - ACTIONS(986), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [231296] = 4, - ACTIONS(3), 1, + [227079] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(992), 1, - anon_sym_DOT, - STATE(6787), 1, + ACTIONS(9805), 1, + anon_sym_LBRACK, + ACTIONS(9807), 1, + anon_sym_LPAREN, + STATE(3072), 1, + sym_parameter_parens, + STATE(3073), 1, + sym_parameter_bracks, + STATE(6533), 1, sym_comment, - ACTIONS(990), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [231311] = 5, + [227098] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10789), 1, - anon_sym_DQUOTE, - STATE(6788), 1, + ACTIONS(10512), 1, + anon_sym_LPAREN, + STATE(6534), 1, sym_comment, - STATE(6882), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, - sym__escaped_str_content, - sym_escape_sequence, - [231328] = 4, + ACTIONS(10514), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [227113] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1457), 1, - aux_sym_unquoted_token2, - STATE(6789), 1, + ACTIONS(9805), 1, + anon_sym_LBRACK, + ACTIONS(9807), 1, + anon_sym_LPAREN, + STATE(3074), 1, + sym_parameter_parens, + STATE(3075), 1, + sym_parameter_bracks, + STATE(6535), 1, sym_comment, - ACTIONS(2121), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [231343] = 5, + [227132] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(6536), 1, + sym_comment, + ACTIONS(2293), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH, + [227147] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10791), 1, + ACTIONS(10516), 1, anon_sym_DQUOTE, - STATE(6790), 1, + STATE(6537), 1, sym_comment, - STATE(6882), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [231360] = 5, - ACTIONS(247), 1, + [227164] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1648), 1, - aux_sym_unquoted_token2, - ACTIONS(10793), 1, - aux_sym__immediate_decimal_token2, - STATE(6791), 1, + ACTIONS(2261), 1, + anon_sym_PIPE, + STATE(6538), 1, sym_comment, - ACTIONS(1650), 2, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - [231377] = 4, + ACTIONS(2259), 3, + anon_sym_if, + anon_sym_EQ_GT, + aux_sym_unquoted_token4, + [227179] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6792), 1, + ACTIONS(2366), 1, + sym__entry_separator, + STATE(6539), 1, sym_comment, - ACTIONS(994), 2, + ACTIONS(2364), 3, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(996), 2, - anon_sym_DOT, - sym__entry_separator, - [231392] = 6, + anon_sym__, + [227194] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(2366), 1, sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10795), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6793), 1, - sym_comment, - [231411] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6794), 1, + STATE(6540), 1, sym_comment, - ACTIONS(10797), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2364), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [231424] = 6, + anon_sym__, + [227209] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(1963), 1, sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10799), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6795), 1, + STATE(6541), 1, sym_comment, - [231443] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2123), 1, + ACTIONS(1961), 3, anon_sym_RBRACK, - ACTIONS(2125), 1, - anon_sym_LPAREN2, - ACTIONS(2127), 1, - sym__entry_separator, - ACTIONS(2129), 1, - aux_sym__unquoted_in_list_token2, - STATE(6796), 1, - sym_comment, - [231462] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(6298), 1, - aux_sym_ctrl_match_token1, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(4916), 1, - sym_block, - STATE(6797), 1, - sym_comment, - [231481] = 6, + anon_sym_RBRACE, + anon_sym__, + [227224] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10801), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6798), 1, + ACTIONS(2297), 1, + anon_sym_PIPE, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(6542), 1, sym_comment, - [231500] = 6, + ACTIONS(2293), 2, + anon_sym_if, + anon_sym_EQ_GT, + [227241] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10803), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6799), 1, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + STATE(6543), 1, sym_comment, - [231519] = 6, + ACTIONS(2243), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH, + [227256] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10805), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6800), 1, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + STATE(6544), 1, sym_comment, - [231538] = 6, + ACTIONS(2251), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH, + [227271] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10807), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6801), 1, - sym_comment, - [231557] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1719), 1, - aux_sym_unquoted_token2, - ACTIONS(10809), 1, + ACTIONS(9340), 1, anon_sym_DOT_DOT2, - STATE(6802), 1, - sym_comment, - ACTIONS(10811), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [231574] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(9447), 1, sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10813), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6803), 1, - sym_comment, - [231593] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2072), 1, - aux_sym_ctrl_match_token1, - ACTIONS(10815), 1, - anon_sym_DOT_DOT2, - STATE(6804), 1, + STATE(6545), 1, sym_comment, - ACTIONS(10817), 2, + ACTIONS(9342), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [231610] = 5, + [227288] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1978), 1, - aux_sym_ctrl_match_token1, - ACTIONS(10819), 1, - anon_sym_DOT_DOT2, - STATE(6805), 1, - sym_comment, - ACTIONS(10821), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [231627] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2089), 1, - anon_sym_RBRACK, - ACTIONS(2091), 1, - anon_sym_LPAREN2, - ACTIONS(2093), 1, - sym__entry_separator, - ACTIONS(2095), 1, - aux_sym__unquoted_in_list_token4, - STATE(6806), 1, + ACTIONS(1643), 1, + aux_sym_unquoted_token2, + ACTIONS(9561), 1, + aux_sym__immediate_decimal_token2, + STATE(6546), 1, sym_comment, - [231646] = 5, + ACTIONS(1645), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [227305] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1966), 1, - aux_sym_ctrl_match_token1, - ACTIONS(10823), 1, - anon_sym_DOT_DOT2, - STATE(6807), 1, + STATE(6547), 1, sym_comment, - ACTIONS(10825), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [231663] = 6, + ACTIONS(10518), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [227318] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10827), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6808), 1, + ACTIONS(1058), 1, + anon_sym_DOT, + STATE(6548), 1, sym_comment, - [231682] = 6, + ACTIONS(1056), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [227333] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10829), 1, + ACTIONS(10520), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6809), 1, - sym_comment, - [231701] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1429), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1690), 1, - anon_sym_RBRACK, - ACTIONS(1692), 1, - anon_sym_LPAREN2, - ACTIONS(1698), 1, - sym__entry_separator, - STATE(6810), 1, + STATE(6549), 1, sym_comment, - [231720] = 3, + [227352] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6811), 1, + STATE(6550), 1, sym_comment, - ACTIONS(10831), 4, + ACTIONS(10522), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [231733] = 3, + [227365] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6812), 1, + STATE(6551), 1, sym_comment, - ACTIONS(10831), 4, + ACTIONS(10524), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [231746] = 3, + [227378] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6813), 1, + STATE(6552), 1, sym_comment, - ACTIONS(10833), 4, + ACTIONS(10526), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [231759] = 3, + [227391] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6814), 1, + STATE(6553), 1, sym_comment, - ACTIONS(10833), 4, + ACTIONS(10528), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [231772] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10835), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6815), 1, - sym_comment, - [231791] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10837), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6816), 1, - sym_comment, - [231810] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10839), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6817), 1, - sym_comment, - [231829] = 6, - ACTIONS(3), 1, + [227404] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10841), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6818), 1, + STATE(6554), 1, sym_comment, - [231848] = 6, - ACTIONS(3), 1, + ACTIONS(10530), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [227417] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10843), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6819), 1, + STATE(6555), 1, sym_comment, - [231867] = 6, + ACTIONS(10532), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [227430] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5458), 1, + anon_sym_LPAREN2, + ACTIONS(7709), 1, sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10845), 1, + ACTIONS(7711), 1, anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6820), 1, + STATE(6556), 1, sym_comment, - [231886] = 6, - ACTIONS(3), 1, + STATE(7793), 1, + sym__expr_parenthesized_immediate, + [227449] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10847), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6821), 1, + STATE(6557), 1, sym_comment, - [231905] = 6, - ACTIONS(3), 1, + ACTIONS(10534), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [227462] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10849), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6822), 1, + STATE(6558), 1, sym_comment, - [231924] = 6, + ACTIONS(10536), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [227475] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10851), 1, + ACTIONS(5458), 1, + anon_sym_LPAREN2, + ACTIONS(5739), 1, anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6823), 1, - sym_comment, - [231943] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5745), 1, sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10853), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6824), 1, - sym_comment, - [231962] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6825), 1, - sym_comment, - ACTIONS(10855), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [231975] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6826), 1, + STATE(6559), 1, sym_comment, - ACTIONS(10857), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [231988] = 3, + STATE(7398), 1, + sym__expr_parenthesized_immediate, + [227494] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(6827), 1, + ACTIONS(10538), 1, + anon_sym_RPAREN, + STATE(210), 1, + aux_sym__block_body_repeat1, + STATE(6560), 1, sym_comment, - ACTIONS(6419), 4, - ts_builtin_sym_end, + ACTIONS(145), 2, sym__newline, anon_sym_SEMI, - aux_sym_ctrl_match_token1, - [232001] = 3, + [227511] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(6828), 1, + ACTIONS(4735), 1, + sym_identifier, + ACTIONS(4737), 1, + anon_sym_DOLLAR, + ACTIONS(10540), 1, + sym_long_flag_identifier, + ACTIONS(10542), 1, + anon_sym_EQ2, + STATE(6561), 1, sym_comment, - ACTIONS(6333), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - aux_sym_ctrl_match_token1, - [232014] = 3, + [227530] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(6829), 1, + ACTIONS(1565), 1, + aux_sym_cmd_identifier_token41, + STATE(6562), 1, sym_comment, - ACTIONS(10831), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [232027] = 3, + ACTIONS(1567), 3, + sym_filesize_unit, + sym_duration_unit, + aux_sym_record_entry_token1, + [227545] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6830), 1, + STATE(6563), 1, sym_comment, - ACTIONS(10831), 4, + ACTIONS(10544), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [232040] = 6, - ACTIONS(3), 1, + [227558] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9805), 1, anon_sym_LBRACK, - ACTIONS(10859), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6831), 1, + ACTIONS(9807), 1, + anon_sym_LPAREN, + STATE(3062), 1, + sym_parameter_parens, + STATE(3063), 1, + sym_parameter_bracks, + STATE(6564), 1, sym_comment, - [232059] = 6, + [227577] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1711), 1, - anon_sym_LPAREN2, - ACTIONS(1719), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2085), 1, + STATE(6565), 1, + sym_comment, + ACTIONS(2259), 2, anon_sym_RBRACK, - ACTIONS(2087), 1, + aux_sym__unquoted_in_list_token4, + ACTIONS(2261), 2, + anon_sym_LPAREN2, sym__entry_separator, - STATE(6832), 1, - sym_comment, - [232078] = 6, + [227592] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1659), 1, - anon_sym_SEMI, - ACTIONS(2738), 1, - sym__newline, - STATE(247), 1, - aux_sym__parenthesized_body_repeat1, - STATE(6833), 1, + ACTIONS(1019), 1, + sym__table_head_separator, + ACTIONS(9583), 1, + anon_sym_DOT, + STATE(6566), 1, sym_comment, - STATE(7297), 1, - aux_sym_shebang_repeat1, - [232097] = 3, + STATE(6567), 1, + aux_sym_cell_path_repeat1, + STATE(6721), 1, + sym_path, + [227611] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(6834), 1, + ACTIONS(1023), 1, + sym__table_head_separator, + ACTIONS(10546), 1, + anon_sym_DOT, + STATE(6721), 1, + sym_path, + STATE(6567), 2, sym_comment, - ACTIONS(10861), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [232110] = 5, + aux_sym_cell_path_repeat1, + [227628] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9470), 1, - anon_sym_RPAREN, - STATE(6501), 1, + ACTIONS(669), 1, + ts_builtin_sym_end, + STATE(240), 1, aux_sym__block_body_repeat1, - STATE(6835), 1, - sym_comment, - ACTIONS(145), 2, - sym__newline, - anon_sym_SEMI, - [232127] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6836), 1, + STATE(6568), 1, sym_comment, - ACTIONS(10863), 4, + ACTIONS(33), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [232140] = 3, + [227645] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(6837), 1, + ACTIONS(8716), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(10549), 1, + anon_sym_DOT, + STATE(6569), 1, sym_comment, - ACTIONS(10865), 4, + ACTIONS(1645), 2, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [232153] = 3, + aux_sym_ctrl_match_token1, + [227662] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(6838), 1, + ACTIONS(4747), 1, + sym_identifier, + ACTIONS(4749), 1, + anon_sym_DOLLAR, + ACTIONS(10551), 1, + anon_sym_EQ2, + ACTIONS(10553), 1, + sym_short_flag_identifier, + STATE(6570), 1, sym_comment, - ACTIONS(10867), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [232166] = 6, + [227681] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(1881), 1, sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10869), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6839), 1, + STATE(6571), 1, sym_comment, - [232185] = 6, + ACTIONS(1879), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym__, + [227696] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10871), 1, + ACTIONS(10555), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6840), 1, + STATE(6572), 1, sym_comment, - [232204] = 5, + [227715] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5007), 1, - anon_sym_DASH, - ACTIONS(10873), 1, - anon_sym_EQ2, - STATE(6841), 1, - sym_comment, - ACTIONS(5005), 2, - sym_identifier, - anon_sym_DASH_DASH, - [232221] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10875), 1, - anon_sym_DQUOTE, - STATE(6842), 1, + ACTIONS(9974), 1, + anon_sym_LBRACK, + ACTIONS(9976), 1, + anon_sym_LPAREN, + STATE(5903), 1, + sym_parameter_parens, + STATE(5904), 1, + sym_parameter_bracks, + STATE(6573), 1, sym_comment, - STATE(6857), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, - sym__escaped_str_content, - sym_escape_sequence, - [232238] = 5, + [227734] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1609), 1, - ts_builtin_sym_end, - STATE(235), 1, - aux_sym__block_body_repeat1, - STATE(6843), 1, + ACTIONS(1643), 1, + aux_sym_unquoted_token2, + ACTIONS(9621), 1, + aux_sym__immediate_decimal_token2, + STATE(6574), 1, sym_comment, - ACTIONS(33), 2, - sym__newline, - anon_sym_SEMI, - [232255] = 5, + ACTIONS(1645), 2, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + [227751] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5041), 1, - anon_sym_DASH, - ACTIONS(10877), 1, - anon_sym_EQ2, - STATE(6844), 1, + ACTIONS(1705), 1, + aux_sym_unquoted_token2, + ACTIONS(10557), 1, + aux_sym__immediate_decimal_token2, + STATE(6575), 1, sym_comment, - ACTIONS(5039), 2, - sym_identifier, - anon_sym_DASH_DASH, - [232272] = 6, + ACTIONS(1707), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [227768] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10879), 1, + ACTIONS(10559), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6845), 1, + STATE(6576), 1, sym_comment, - [232291] = 6, + [227787] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10881), 1, + ACTIONS(10561), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6846), 1, + STATE(6577), 1, sym_comment, - [232310] = 6, + [227806] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10883), 1, + ACTIONS(10563), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6847), 1, + STATE(6578), 1, sym_comment, - [232329] = 4, + [227825] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2133), 1, - anon_sym_PIPE, - STATE(6848), 1, - sym_comment, - ACTIONS(2131), 3, - anon_sym_if, - anon_sym_EQ_GT, - aux_sym_unquoted_token4, - [232344] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6849), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(10565), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6579), 1, sym_comment, - ACTIONS(10885), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [232357] = 5, + [227844] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10887), 1, - anon_sym_DQUOTE, - STATE(6850), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(10567), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6580), 1, sym_comment, - STATE(6882), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, - sym__escaped_str_content, - sym_escape_sequence, - [232374] = 6, + [227863] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10889), 1, + ACTIONS(10569), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6851), 1, + STATE(6581), 1, sym_comment, - [232393] = 4, + [227882] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6852), 1, - sym_comment, - ACTIONS(1569), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1571), 2, - anon_sym_LPAREN2, + ACTIONS(5537), 1, sym__entry_separator, - [232408] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6853), 1, - sym_comment, - ACTIONS(10891), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [232421] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6854), 1, - sym_comment, - ACTIONS(10891), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [232434] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6855), 1, - sym_comment, - ACTIONS(10893), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [232447] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1719), 1, - aux_sym_unquoted_token2, - STATE(6856), 1, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(10571), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6582), 1, sym_comment, - ACTIONS(2087), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [232462] = 5, + [227901] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10895), 1, - anon_sym_DQUOTE, - STATE(6857), 1, - sym_comment, - STATE(6882), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, - sym__escaped_str_content, - sym_escape_sequence, - [232479] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6858), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(10573), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6583), 1, sym_comment, - ACTIONS(10897), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [232492] = 5, + [227920] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9595), 1, - anon_sym_RPAREN, - STATE(6400), 1, - aux_sym__block_body_repeat1, - STATE(6859), 1, + STATE(6584), 1, sym_comment, - ACTIONS(145), 2, - sym__newline, - anon_sym_SEMI, - [232509] = 3, + ACTIONS(10575), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [227933] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6860), 1, + STATE(6585), 1, sym_comment, - ACTIONS(10897), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [232522] = 5, + ACTIONS(10577), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [227946] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10899), 1, - anon_sym_DQUOTE, - STATE(6861), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(10579), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6586), 1, sym_comment, - STATE(6882), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, - sym__escaped_str_content, - sym_escape_sequence, - [232539] = 6, + [227965] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2123), 1, - anon_sym_RBRACE, - ACTIONS(2125), 1, - anon_sym_LPAREN2, - ACTIONS(2127), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(2129), 1, - aux_sym__unquoted_in_record_token2, - STATE(6862), 1, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(10581), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6587), 1, sym_comment, - [232558] = 4, + [227984] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1719), 1, - aux_sym_unquoted_token2, - STATE(6863), 1, + ACTIONS(2041), 1, + aux_sym_ctrl_match_token1, + ACTIONS(10583), 1, + anon_sym_DOT_DOT2, + STATE(6588), 1, sym_comment, - ACTIONS(1717), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [232573] = 6, + ACTIONS(10585), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [228001] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2097), 1, + ACTIONS(1076), 1, anon_sym_RBRACE, - ACTIONS(2099), 1, - anon_sym_LPAREN2, - ACTIONS(2101), 1, + ACTIONS(1078), 1, sym__entry_separator, - ACTIONS(2103), 1, - aux_sym__unquoted_in_record_token4, - STATE(6864), 1, - sym_comment, - [232592] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(10901), 1, - anon_sym_LBRACK, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(6865), 1, - sym_comment, - STATE(7886), 1, - sym_val_list, - [232611] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2099), 1, + ACTIONS(2239), 1, anon_sym_LPAREN2, - ACTIONS(2103), 1, + ACTIONS(2241), 1, aux_sym__unquoted_in_record_token4, - ACTIONS(2105), 1, - anon_sym_RBRACE, - ACTIONS(2107), 1, - sym__entry_separator, - STATE(6866), 1, + STATE(6589), 1, sym_comment, - [232630] = 6, + [228020] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10903), 1, + ACTIONS(1798), 1, + anon_sym_LPAREN2, + ACTIONS(1806), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2160), 1, anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6867), 1, + ACTIONS(2162), 1, + sym__entry_separator, + STATE(6590), 1, sym_comment, - [232649] = 6, + [228039] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1711), 1, - anon_sym_LPAREN2, - ACTIONS(1719), 1, + ACTIONS(1495), 1, aux_sym__unquoted_in_record_token2, - ACTIONS(2085), 1, + ACTIONS(1786), 1, anon_sym_RBRACE, - ACTIONS(2087), 1, + ACTIONS(1788), 1, + anon_sym_LPAREN2, + ACTIONS(1794), 1, sym__entry_separator, - STATE(6868), 1, + STATE(6591), 1, sym_comment, - [232668] = 6, + [228058] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10905), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6869), 1, + ACTIONS(10587), 1, + anon_sym_DQUOTE, + ACTIONS(10589), 2, + sym__escaped_str_content, + sym_escape_sequence, + STATE(6592), 2, sym_comment, - [232687] = 6, - ACTIONS(3), 1, + aux_sym__str_double_quotes_repeat1, + [228073] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10907), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6870), 1, + ACTIONS(4906), 1, + anon_sym_DASH, + ACTIONS(10592), 1, + anon_sym_EQ2, + STATE(6593), 1, sym_comment, - [232706] = 6, + ACTIONS(4904), 2, + sym_identifier, + anon_sym_DASH_DASH, + [228090] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10909), 1, + ACTIONS(1796), 1, anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6871), 1, - sym_comment, - [232725] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10911), 1, - anon_sym_DQUOTE, - STATE(6788), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6872), 1, - sym_comment, - ACTIONS(10130), 2, - sym__escaped_str_content, - sym_escape_sequence, - [232742] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1709), 1, - anon_sym_RBRACE, - ACTIONS(1711), 1, + ACTIONS(1798), 1, anon_sym_LPAREN2, - ACTIONS(1717), 1, + ACTIONS(1804), 1, sym__entry_separator, - ACTIONS(1719), 1, - aux_sym__unquoted_in_record_token2, - STATE(6873), 1, + ACTIONS(1806), 1, + aux_sym__unquoted_in_list_token2, + STATE(6594), 1, sym_comment, - [232761] = 6, + [228109] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10913), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6874), 1, + ACTIONS(2241), 1, + aux_sym_unquoted_token4, + ACTIONS(5869), 1, + anon_sym_PIPE, + STATE(6595), 1, sym_comment, - [232780] = 6, - ACTIONS(3), 1, + ACTIONS(5747), 2, + anon_sym_if, + anon_sym_EQ_GT, + [228126] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10915), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6875), 1, + ACTIONS(4916), 1, + anon_sym_DASH, + ACTIONS(10594), 1, + anon_sym_EQ2, + STATE(6596), 1, + sym_comment, + ACTIONS(4914), 2, + sym_identifier, + anon_sym_DASH_DASH, + [228143] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2049), 1, + aux_sym_ctrl_match_token1, + ACTIONS(10596), 1, + anon_sym_DOT_DOT2, + STATE(6597), 1, sym_comment, - [232799] = 4, + ACTIONS(10598), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [228160] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1473), 1, + ACTIONS(1639), 1, aux_sym_cmd_identifier_token41, - STATE(6876), 1, + STATE(6598), 1, sym_comment, - ACTIONS(1475), 3, + ACTIONS(1641), 3, sym_filesize_unit, sym_duration_unit, aux_sym_record_entry_token1, - [232814] = 6, - ACTIONS(3), 1, + [228175] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10917), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6877), 1, + ACTIONS(2057), 1, + aux_sym_ctrl_match_token1, + ACTIONS(10600), 1, + anon_sym_DOT_DOT2, + STATE(6599), 1, sym_comment, - [232833] = 6, + ACTIONS(10602), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [228192] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10919), 1, + ACTIONS(1062), 1, + anon_sym_DOT, + STATE(6600), 1, + sym_comment, + ACTIONS(1060), 3, anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6878), 1, + sym__entry_separator, + sym__table_head_separator, + [228207] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10604), 1, + anon_sym_LPAREN, + STATE(6601), 1, + sym_comment, + ACTIONS(10606), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [228222] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6602), 1, + sym_comment, + ACTIONS(10608), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [228235] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6603), 1, sym_comment, - [232852] = 4, + ACTIONS(10610), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [228248] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1589), 1, - aux_sym_unquoted_token2, - STATE(6879), 1, + ACTIONS(9805), 1, + anon_sym_LBRACK, + ACTIONS(9807), 1, + anon_sym_LPAREN, + STATE(3056), 1, + sym_parameter_bracks, + STATE(3057), 1, + sym_parameter_parens, + STATE(6604), 1, sym_comment, - ACTIONS(1591), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [232867] = 6, + [228267] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10921), 1, + ACTIONS(2243), 1, anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6880), 1, + ACTIONS(2245), 1, + anon_sym_LPAREN2, + ACTIONS(2247), 1, + sym__entry_separator, + ACTIONS(2249), 1, + aux_sym__unquoted_in_list_token4, + STATE(6605), 1, sym_comment, - [232886] = 4, - ACTIONS(247), 1, + [228286] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2129), 1, - aux_sym_unquoted_token2, - STATE(6881), 1, + ACTIONS(2374), 1, + sym__entry_separator, + STATE(6606), 1, sym_comment, - ACTIONS(2127), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [232901] = 4, + ACTIONS(2372), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym__, + [228301] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10923), 1, - anon_sym_DQUOTE, - ACTIONS(10925), 2, - sym__escaped_str_content, - sym_escape_sequence, - STATE(6882), 2, + ACTIONS(2245), 1, + anon_sym_LPAREN2, + ACTIONS(2249), 1, + aux_sym__unquoted_in_list_token4, + ACTIONS(2251), 1, + anon_sym_RBRACK, + ACTIONS(2253), 1, + sym__entry_separator, + STATE(6607), 1, sym_comment, - aux_sym__str_double_quotes_repeat1, - [232916] = 3, + [228320] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6883), 1, + STATE(6608), 1, sym_comment, - ACTIONS(10928), 4, + ACTIONS(10612), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [232929] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1941), 1, - aux_sym_ctrl_match_token1, - ACTIONS(10930), 1, - anon_sym_DOT_DOT2, - STATE(6884), 1, - sym_comment, - ACTIONS(10932), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [232946] = 5, + [228333] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10934), 1, - anon_sym_DQUOTE, - STATE(6885), 1, + ACTIONS(2378), 1, + sym__entry_separator, + STATE(6609), 1, sym_comment, - STATE(6892), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, - sym__escaped_str_content, - sym_escape_sequence, - [232963] = 3, + ACTIONS(2376), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym__, + [228348] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6886), 1, + STATE(6610), 1, sym_comment, - ACTIONS(6339), 4, - ts_builtin_sym_end, + ACTIONS(10610), 4, sym__newline, anon_sym_SEMI, - aux_sym_ctrl_match_token1, - [232976] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [228361] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6887), 1, + STATE(6611), 1, sym_comment, - ACTIONS(1648), 2, + ACTIONS(10614), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1650), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [232991] = 4, + [228374] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6888), 1, - sym_comment, - ACTIONS(1648), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1650), 2, - anon_sym_LPAREN2, + ACTIONS(5537), 1, sym__entry_separator, - [233006] = 6, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(10616), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6612), 1, + sym_comment, + [228393] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1709), 1, - anon_sym_RBRACK, - ACTIONS(1711), 1, - anon_sym_LPAREN2, - ACTIONS(1717), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(1719), 1, - aux_sym__unquoted_in_list_token2, - STATE(6889), 1, + ACTIONS(9761), 1, + anon_sym_LBRACK, + ACTIONS(10618), 1, + anon_sym_RBRACK, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(6613), 1, sym_comment, - [233025] = 6, + [228412] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10936), 1, + ACTIONS(10620), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6890), 1, + STATE(6614), 1, sym_comment, - [233044] = 3, + [228431] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6891), 1, + STATE(6615), 1, sym_comment, - ACTIONS(10938), 4, + ACTIONS(10614), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [233057] = 5, + [228444] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10940), 1, - anon_sym_DQUOTE, - STATE(6882), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6892), 1, + ACTIONS(2307), 1, + sym__entry_separator, + ACTIONS(10622), 1, + anon_sym_LBRACK2, + STATE(6616), 1, sym_comment, - ACTIONS(10130), 2, - sym__escaped_str_content, - sym_escape_sequence, - [233074] = 3, + ACTIONS(2303), 2, + anon_sym_RBRACE, + anon_sym__, + [228461] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(6893), 1, + ACTIONS(9451), 1, + anon_sym_RPAREN, + STATE(6361), 1, + aux_sym__block_body_repeat1, + STATE(6617), 1, sym_comment, - ACTIONS(6417), 4, - ts_builtin_sym_end, + ACTIONS(145), 2, sym__newline, anon_sym_SEMI, - aux_sym_ctrl_match_token1, - [233087] = 3, + [228478] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6894), 1, + STATE(6618), 1, sym_comment, - ACTIONS(10942), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [233100] = 3, + ACTIONS(10624), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [228491] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6895), 1, + STATE(6619), 1, sym_comment, - ACTIONS(10944), 4, + ACTIONS(10626), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [233113] = 4, + [228504] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10946), 1, - anon_sym_LPAREN, - STATE(6896), 1, + ACTIONS(1054), 1, + anon_sym_DOT, + STATE(6620), 1, sym_comment, - ACTIONS(10948), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [233128] = 3, + ACTIONS(1052), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [228519] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6897), 1, + STATE(6621), 1, sym_comment, - ACTIONS(10950), 4, + ACTIONS(6210), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [233141] = 3, + aux_sym_ctrl_match_token1, + [228532] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6898), 1, + STATE(6622), 1, + sym_comment, + ACTIONS(6212), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + aux_sym_ctrl_match_token1, + [228545] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6623), 1, sym_comment, - ACTIONS(10950), 4, + ACTIONS(10628), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [233154] = 5, - ACTIONS(3), 1, + [228558] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10952), 1, - anon_sym_DQUOTE, - STATE(6403), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6899), 1, + STATE(6624), 1, sym_comment, - ACTIONS(10130), 2, - sym__escaped_str_content, - sym_escape_sequence, - [233171] = 6, - ACTIONS(3), 1, + ACTIONS(10628), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [228571] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10954), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6900), 1, + STATE(6625), 1, sym_comment, - [233190] = 6, + ACTIONS(10610), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [228584] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10956), 1, + ACTIONS(10630), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6901), 1, + STATE(6626), 1, sym_comment, - [233209] = 6, + [228603] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10958), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6902), 1, + STATE(6627), 1, sym_comment, - [233228] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10960), 1, + ACTIONS(1631), 2, anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6903), 1, - sym_comment, - [233247] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5770), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1633), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10962), 1, - anon_sym_RBRACK, - STATE(2820), 1, - aux_sym__multiple_types_repeat1, - STATE(6904), 1, - sym_comment, - [233266] = 3, + [228618] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6905), 1, + STATE(6628), 1, sym_comment, - ACTIONS(10964), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [233279] = 3, + ACTIONS(10632), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [228631] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6906), 1, + STATE(6629), 1, sym_comment, - ACTIONS(10966), 4, + ACTIONS(10610), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [233292] = 3, + [228644] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6907), 1, + STATE(6630), 1, sym_comment, - ACTIONS(10968), 4, + ACTIONS(10634), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [233305] = 6, + [228657] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2089), 1, + ACTIONS(5458), 1, + anon_sym_LPAREN2, + ACTIONS(7782), 1, + sym__entry_separator, + ACTIONS(7784), 1, + anon_sym_RBRACK, + STATE(6631), 1, + sym_comment, + STATE(7793), 1, + sym__expr_parenthesized_immediate, + [228676] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6632), 1, + sym_comment, + ACTIONS(1643), 2, anon_sym_RBRACE, - ACTIONS(2091), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1645), 2, anon_sym_LPAREN2, - ACTIONS(2093), 1, sym__entry_separator, - ACTIONS(2095), 1, - aux_sym__unquoted_in_record_token4, - STATE(6908), 1, + [228691] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6633), 1, sym_comment, - [233324] = 5, + ACTIONS(7867), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_AT, + aux_sym_ctrl_match_token1, + [228704] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10970), 1, + ACTIONS(10636), 1, anon_sym_DQUOTE, - STATE(6909), 1, - sym_comment, - STATE(6920), 1, + STATE(6537), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, + STATE(6634), 1, + sym_comment, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [233341] = 3, + [228721] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(6910), 1, + ACTIONS(1495), 1, + aux_sym_unquoted_token2, + ACTIONS(10638), 1, + anon_sym_DOT_DOT2, + STATE(6635), 1, + sym_comment, + ACTIONS(10640), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [228738] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6636), 1, sym_comment, - ACTIONS(10972), 4, + ACTIONS(10642), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [233354] = 6, + [228751] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2224), 1, + anon_sym_RBRACK, + ACTIONS(2226), 1, + anon_sym_LPAREN2, + ACTIONS(2228), 1, + sym__entry_separator, + ACTIONS(2230), 1, + aux_sym__unquoted_in_list_token2, + STATE(6637), 1, + sym_comment, + [228770] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10974), 1, + ACTIONS(10644), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6911), 1, + STATE(6638), 1, sym_comment, - [233373] = 6, + [228789] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, + ACTIONS(1664), 1, + ts_builtin_sym_end, + STATE(223), 1, + aux_sym__block_body_repeat1, + STATE(6639), 1, + sym_comment, + ACTIONS(33), 2, sym__newline, - ACTIONS(10901), 1, + anon_sym_SEMI, + [228806] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10646), 1, + anon_sym_use, + ACTIONS(10648), 1, + anon_sym_list, + ACTIONS(10650), 1, + anon_sym_hide, + ACTIONS(10652), 1, + anon_sym_new, + STATE(6640), 1, + sym_comment, + [228825] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6641), 1, + sym_comment, + ACTIONS(1631), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1633), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [228840] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2808), 1, + sym__newline, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(2777), 1, + STATE(2586), 1, aux_sym_shebang_repeat1, - STATE(6912), 1, + STATE(6642), 1, sym_comment, - STATE(7926), 1, + STATE(7757), 1, sym_val_list, - [233392] = 5, + [228859] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1698), 1, + ACTIONS(1794), 1, anon_sym_EQ_GT, - ACTIONS(10976), 1, + ACTIONS(10654), 1, anon_sym_DOT_DOT2, - STATE(6913), 1, + STATE(6643), 1, sym_comment, - ACTIONS(10978), 2, + ACTIONS(10656), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [233409] = 5, + [228876] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1717), 1, + ACTIONS(1804), 1, anon_sym_EQ_GT, - ACTIONS(10980), 1, + ACTIONS(10658), 1, anon_sym_DOT_DOT2, - STATE(6914), 1, + STATE(6644), 1, sym_comment, - ACTIONS(10982), 2, + ACTIONS(10660), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [233426] = 3, + [228893] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1553), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2218), 1, + anon_sym_RBRACK, + ACTIONS(2220), 1, + anon_sym_LPAREN2, + ACTIONS(2222), 1, + sym__entry_separator, + STATE(6645), 1, + sym_comment, + [228912] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6915), 1, + STATE(6646), 1, sym_comment, - ACTIONS(10984), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(10662), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [228925] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2243), 1, anon_sym_RBRACE, - [233439] = 3, + ACTIONS(2245), 1, + anon_sym_LPAREN2, + ACTIONS(2247), 1, + sym__entry_separator, + ACTIONS(2249), 1, + aux_sym__unquoted_in_record_token4, + STATE(6647), 1, + sym_comment, + [228944] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(6916), 1, + ACTIONS(6092), 1, + anon_sym_DOLLAR, + ACTIONS(8273), 1, + sym_identifier, + STATE(5319), 1, + sym_val_variable, + STATE(5673), 1, + sym__variable_name, + STATE(6648), 1, sym_comment, - ACTIONS(10986), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + [228963] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10664), 1, + anon_sym_DQUOTE, + STATE(6649), 1, + sym_comment, + STATE(6655), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9787), 2, + sym__escaped_str_content, + sym_escape_sequence, + [228980] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2245), 1, + anon_sym_LPAREN2, + ACTIONS(2249), 1, + aux_sym__unquoted_in_record_token4, + ACTIONS(2251), 1, anon_sym_RBRACE, - [233452] = 6, + ACTIONS(2253), 1, + sym__entry_separator, + STATE(6650), 1, + sym_comment, + [228999] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(6298), 1, - aux_sym_ctrl_match_token1, - STATE(4867), 1, - sym_block, - STATE(6797), 1, - aux_sym_shebang_repeat1, - STATE(6917), 1, + ACTIONS(4680), 1, + aux_sym_unquoted_token2, + STATE(6651), 1, sym_comment, - [233471] = 6, + ACTIONS(1587), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [229014] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10988), 1, + ACTIONS(10666), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6918), 1, + STATE(6652), 1, sym_comment, - [233490] = 6, + [229033] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10990), 1, + ACTIONS(10668), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6919), 1, + STATE(6653), 1, sym_comment, - [233509] = 5, + [229052] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1553), 1, + aux_sym_unquoted_token2, + STATE(6654), 1, + sym_comment, + ACTIONS(2222), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [229067] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10992), 1, + ACTIONS(10670), 1, anon_sym_DQUOTE, - STATE(6882), 1, + STATE(6592), 1, aux_sym__str_double_quotes_repeat1, - STATE(6920), 1, + STATE(6655), 1, sym_comment, - ACTIONS(10130), 2, + ACTIONS(9787), 2, sym__escaped_str_content, sym_escape_sequence, - [233526] = 6, + [229084] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10245), 1, - anon_sym_LBRACK, - ACTIONS(10247), 1, + ACTIONS(1794), 1, + aux_sym_ctrl_match_token1, + ACTIONS(10672), 1, + anon_sym_DOT_DOT2, + STATE(6656), 1, + sym_comment, + ACTIONS(10674), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [229101] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5458), 1, + anon_sym_LPAREN2, + ACTIONS(7559), 1, + sym__entry_separator, + ACTIONS(7561), 1, + anon_sym_RBRACK, + STATE(6657), 1, + sym_comment, + STATE(7793), 1, + sym__expr_parenthesized_immediate, + [229120] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1019), 1, + aux_sym_record_entry_token1, + ACTIONS(9531), 1, + anon_sym_DOT, + STATE(6149), 1, + aux_sym_cell_path_repeat1, + STATE(6658), 1, + sym_comment, + STATE(6721), 1, + sym_path, + [229139] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10676), 1, anon_sym_LPAREN, - STATE(5950), 1, - sym_parameter_parens, - STATE(5951), 1, - sym_parameter_bracks, - STATE(6921), 1, + STATE(6659), 1, sym_comment, - [233545] = 3, + ACTIONS(10678), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [229154] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6922), 1, + STATE(6660), 1, sym_comment, - ACTIONS(10972), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [233558] = 6, + ACTIONS(10680), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [229167] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6092), 1, + anon_sym_DOLLAR, + ACTIONS(8273), 1, + sym_identifier, + STATE(5319), 1, + sym_val_variable, + STATE(5873), 1, + sym__variable_name, + STATE(6661), 1, + sym_comment, + [229186] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, + ACTIONS(9761), 1, anon_sym_LBRACK, - ACTIONS(10994), 1, + ACTIONS(10682), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(6923), 1, + STATE(6662), 1, sym_comment, - [233577] = 3, - ACTIONS(247), 1, + [229205] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6924), 1, + ACTIONS(10684), 1, + sym__table_head_separator, + STATE(6663), 1, sym_comment, - ACTIONS(10996), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [233590] = 6, + ACTIONS(1076), 2, + anon_sym_RBRACK, + sym__entry_separator, + [229219] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - ACTIONS(10998), 1, + ACTIONS(10686), 1, anon_sym_RBRACK, - STATE(2820), 1, + STATE(6180), 1, aux_sym__multiple_types_repeat1, - STATE(6925), 1, + STATE(6664), 1, sym_comment, - [233609] = 3, - ACTIONS(247), 1, + [229235] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6926), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(10688), 1, + anon_sym_RBRACK, + STATE(6181), 1, + aux_sym__multiple_types_repeat1, + STATE(6665), 1, sym_comment, - ACTIONS(11000), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [233622] = 3, - ACTIONS(247), 1, + [229251] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6927), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(10690), 1, + anon_sym_RBRACK, + STATE(6182), 1, + aux_sym__multiple_types_repeat1, + STATE(6666), 1, sym_comment, - ACTIONS(10509), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [233635] = 5, + [229267] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11002), 1, - anon_sym_DQUOTE, - STATE(6928), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(10692), 1, + anon_sym_RBRACK, + STATE(6487), 1, + aux_sym__multiple_types_repeat1, + STATE(6667), 1, sym_comment, - STATE(6943), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10130), 2, - sym__escaped_str_content, - sym_escape_sequence, - [233652] = 3, - ACTIONS(247), 1, + [229283] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6929), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(10694), 1, + anon_sym_RBRACK, + STATE(6183), 1, + aux_sym__multiple_types_repeat1, + STATE(6668), 1, sym_comment, - ACTIONS(11004), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [233665] = 4, + [229299] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6930), 1, - sym_comment, - ACTIONS(1721), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1723), 2, - anon_sym_LPAREN2, + ACTIONS(5537), 1, sym__entry_separator, - [233680] = 5, - ACTIONS(247), 1, + ACTIONS(10696), 1, + anon_sym_RBRACK, + STATE(6184), 1, + aux_sym__multiple_types_repeat1, + STATE(6669), 1, + sym_comment, + [229315] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1589), 1, - aux_sym_unquoted_token2, - ACTIONS(10022), 1, - aux_sym__immediate_decimal_token2, - STATE(6931), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(10698), 1, + anon_sym_RBRACK, + STATE(6185), 1, + aux_sym__multiple_types_repeat1, + STATE(6670), 1, sym_comment, - ACTIONS(1591), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [233697] = 6, - ACTIONS(247), 1, + [229331] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4942), 1, - sym_identifier, - ACTIONS(4944), 1, - anon_sym_DOLLAR, - ACTIONS(11006), 1, - anon_sym_EQ2, - ACTIONS(11008), 1, - sym_short_flag_identifier, - STATE(6932), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + ACTIONS(4712), 1, + aux_sym_unquoted_token4, + STATE(6671), 1, sym_comment, - [233716] = 3, + STATE(7427), 1, + sym__expr_parenthesized_immediate, + [229347] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6933), 1, + STATE(6672), 1, sym_comment, - ACTIONS(11010), 4, + ACTIONS(10700), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_RBRACE, - [233729] = 3, + [229359] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(10702), 1, + anon_sym_RBRACK, + STATE(2569), 1, + aux_sym__multiple_types_repeat1, + STATE(6673), 1, + sym_comment, + [229375] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(6934), 1, + ACTIONS(10704), 1, + anon_sym_RBRACK, + ACTIONS(10706), 1, + sym_hex_digit, + STATE(6674), 1, sym_comment, - ACTIONS(11012), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [233742] = 3, + STATE(7151), 1, + aux_sym_val_binary_repeat1, + [229391] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(6935), 1, + ACTIONS(1705), 1, + aux_sym_unquoted_token2, + STATE(6675), 1, sym_comment, - ACTIONS(11014), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [233755] = 3, + ACTIONS(1707), 2, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + [229405] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6936), 1, + STATE(6676), 1, sym_comment, - ACTIONS(11016), 4, + ACTIONS(10708), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_RBRACE, - [233768] = 4, - ACTIONS(3), 1, + [229417] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11018), 1, - anon_sym_LPAREN, - STATE(6937), 1, + ACTIONS(10706), 1, + sym_hex_digit, + ACTIONS(10710), 1, + anon_sym_RBRACK, + STATE(6677), 1, sym_comment, - ACTIONS(11020), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [233783] = 3, - ACTIONS(247), 1, + STATE(6682), 1, + aux_sym_val_binary_repeat1, + [229433] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6938), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(10712), 1, + anon_sym_RBRACK, + STATE(6381), 1, + aux_sym__multiple_types_repeat1, + STATE(6678), 1, sym_comment, - ACTIONS(11022), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [233796] = 3, - ACTIONS(247), 1, + [229449] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6939), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(10714), 1, + anon_sym_RBRACK, + STATE(6638), 1, + aux_sym__multiple_types_repeat1, + STATE(6679), 1, sym_comment, - ACTIONS(11024), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [233809] = 3, + [229465] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6940), 1, + STATE(6680), 1, sym_comment, - ACTIONS(11026), 4, + ACTIONS(9797), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [233822] = 6, - ACTIONS(247), 1, + [229477] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4950), 1, - sym_identifier, - ACTIONS(4952), 1, - anon_sym_DOLLAR, - ACTIONS(11028), 1, - sym_long_flag_identifier, - ACTIONS(11030), 1, - anon_sym_EQ2, - STATE(6941), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + ACTIONS(6844), 1, + aux_sym_unquoted_token4, + STATE(6681), 1, sym_comment, - [233841] = 5, + STATE(7371), 1, + sym__expr_parenthesized_immediate, + [229493] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1648), 1, - aux_sym_unquoted_token2, - ACTIONS(11032), 1, - aux_sym__immediate_decimal_token2, - STATE(6942), 1, + ACTIONS(10706), 1, + sym_hex_digit, + ACTIONS(10716), 1, + anon_sym_RBRACK, + STATE(6682), 1, sym_comment, - ACTIONS(1650), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [233858] = 5, + STATE(7151), 1, + aux_sym_val_binary_repeat1, + [229509] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11034), 1, - anon_sym_DQUOTE, - STATE(6882), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6943), 1, + ACTIONS(2406), 1, + sym__entry_separator, + STATE(6683), 1, sym_comment, - ACTIONS(10130), 2, - sym__escaped_str_content, - sym_escape_sequence, - [233875] = 6, + ACTIONS(2404), 2, + anon_sym_RBRACE, + anon_sym__, + [229523] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2097), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(10718), 1, anon_sym_RBRACK, - ACTIONS(2099), 1, - anon_sym_LPAREN2, - ACTIONS(2101), 1, + STATE(6203), 1, + aux_sym__multiple_types_repeat1, + STATE(6684), 1, + sym_comment, + [229539] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2317), 1, sym__entry_separator, - ACTIONS(2103), 1, - aux_sym__unquoted_in_list_token4, - STATE(6944), 1, + ACTIONS(2339), 1, + anon_sym_RBRACE, + STATE(485), 1, + aux_sym__multiple_types_repeat1, + STATE(6685), 1, sym_comment, - [233894] = 6, - ACTIONS(247), 1, + [229555] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6284), 1, - anon_sym_DOLLAR, - ACTIONS(8631), 1, - sym_identifier, - STATE(5619), 1, - sym_val_variable, - STATE(6188), 1, - sym__variable_name, - STATE(6945), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(10720), 1, + anon_sym_RBRACK, + STATE(6204), 1, + aux_sym__multiple_types_repeat1, + STATE(6686), 1, sym_comment, - [233913] = 3, - ACTIONS(247), 1, + [229571] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6946), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(10722), 1, + anon_sym_RBRACK, + STATE(6205), 1, + aux_sym__multiple_types_repeat1, + STATE(6687), 1, sym_comment, - ACTIONS(11036), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [233926] = 4, + [229587] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11038), 1, - sym__table_head_separator, - STATE(6947), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(10724), 1, + anon_sym_RBRACK, + STATE(6206), 1, + aux_sym__multiple_types_repeat1, + STATE(6688), 1, sym_comment, - ACTIONS(1006), 2, + [229603] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(10726), 1, anon_sym_RBRACK, + STATE(6207), 1, + aux_sym__multiple_types_repeat1, + STATE(6689), 1, + sym_comment, + [229619] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1861), 1, sym__entry_separator, - [233940] = 5, + STATE(6690), 1, + sym_comment, + ACTIONS(1859), 2, + anon_sym_RBRACE, + anon_sym__, + [229633] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11040), 1, + ACTIONS(10728), 1, anon_sym_RBRACK, - STATE(6831), 1, + STATE(6208), 1, aux_sym__multiple_types_repeat1, - STATE(6948), 1, + STATE(6691), 1, sym_comment, - [233956] = 3, - ACTIONS(247), 1, + [229649] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6949), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(10730), 1, + anon_sym_RBRACK, + STATE(6209), 1, + aux_sym__multiple_types_repeat1, + STATE(6692), 1, sym_comment, - ACTIONS(11042), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [233968] = 3, - ACTIONS(247), 1, + [229665] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6950), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(10732), 1, + anon_sym_RBRACK, + STATE(6210), 1, + aux_sym__multiple_types_repeat1, + STATE(6693), 1, sym_comment, - ACTIONS(6042), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [233980] = 3, + [229681] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6951), 1, + STATE(6694), 1, sym_comment, - ACTIONS(11044), 3, + ACTIONS(9797), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [233992] = 3, + [229693] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6952), 1, + STATE(6695), 1, sym_comment, - ACTIONS(10891), 3, + ACTIONS(9793), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [234004] = 3, + [229705] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + ACTIONS(4299), 1, + aux_sym_unquoted_token4, + STATE(6696), 1, + sym_comment, + STATE(7403), 1, + sym__expr_parenthesized_immediate, + [229721] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1575), 1, + sym__newline, + ACTIONS(1587), 1, + sym__space, + ACTIONS(6874), 1, + aux_sym_unquoted_token2, + STATE(6697), 1, + sym_comment, + [229737] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6953), 1, + STATE(6698), 1, sym_comment, - ACTIONS(10938), 3, - ts_builtin_sym_end, + ACTIONS(10734), 3, sym__newline, anon_sym_SEMI, - [234016] = 5, - ACTIONS(247), 1, + anon_sym_RPAREN, + [229749] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11046), 1, + ACTIONS(1575), 1, anon_sym_RBRACK, - ACTIONS(11048), 1, - sym_hex_digit, - STATE(6954), 1, + ACTIONS(1587), 1, + sym__entry_separator, + ACTIONS(5468), 1, + aux_sym__unquoted_in_list_token2, + STATE(6699), 1, sym_comment, - STATE(6960), 1, - aux_sym_val_binary_repeat1, - [234032] = 5, + [229765] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11048), 1, + STATE(6700), 1, + sym_comment, + ACTIONS(10736), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [229777] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10706), 1, sym_hex_digit, - ACTIONS(11050), 1, + ACTIONS(10738), 1, anon_sym_RBRACK, - STATE(6955), 1, + STATE(6701), 1, sym_comment, - STATE(6992), 1, + STATE(6705), 1, aux_sym_val_binary_repeat1, - [234048] = 3, + [229793] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6956), 1, + STATE(6702), 1, sym_comment, - ACTIONS(11052), 3, + ACTIONS(9864), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [234060] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6957), 1, - sym_comment, - ACTIONS(6234), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [234072] = 3, + [229805] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6958), 1, + STATE(6703), 1, sym_comment, - ACTIONS(6238), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [234084] = 5, + ACTIONS(10740), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [229817] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - ACTIONS(7059), 1, + ACTIONS(6790), 1, aux_sym_unquoted_token4, - STATE(6959), 1, + STATE(6704), 1, sym_comment, - STATE(7585), 1, + STATE(7339), 1, sym__expr_parenthesized_immediate, - [234100] = 5, + [229833] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11048), 1, + ACTIONS(10706), 1, sym_hex_digit, - ACTIONS(11054), 1, + ACTIONS(10742), 1, anon_sym_RBRACK, - STATE(6960), 1, + STATE(6705), 1, sym_comment, - STATE(7162), 1, + STATE(7151), 1, aux_sym_val_binary_repeat1, - [234116] = 3, + [229849] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(10744), 1, + anon_sym_RBRACK, + STATE(6220), 1, + aux_sym__multiple_types_repeat1, + STATE(6706), 1, + sym_comment, + [229865] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6961), 1, + STATE(6707), 1, sym_comment, - ACTIONS(10893), 3, + ACTIONS(9868), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [234128] = 5, + [229877] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11056), 1, + ACTIONS(10746), 1, anon_sym_RBRACK, - STATE(6867), 1, + STATE(6221), 1, aux_sym__multiple_types_repeat1, - STATE(6962), 1, - sym_comment, - [234144] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1719), 1, - aux_sym_unquoted_token2, - STATE(6963), 1, + STATE(6708), 1, sym_comment, - ACTIONS(2087), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [234158] = 5, + [229893] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11058), 1, + ACTIONS(10748), 1, anon_sym_RBRACK, - STATE(6869), 1, + STATE(6222), 1, aux_sym__multiple_types_repeat1, - STATE(6964), 1, + STATE(6709), 1, sym_comment, - [234174] = 5, + [229909] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11060), 1, + ACTIONS(10750), 1, anon_sym_RBRACK, - STATE(6870), 1, + STATE(6223), 1, aux_sym__multiple_types_repeat1, - STATE(6965), 1, + STATE(6710), 1, sym_comment, - [234190] = 5, + [229925] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(1869), 1, sym__entry_separator, - ACTIONS(11062), 1, - anon_sym_RBRACK, - STATE(6871), 1, - aux_sym__multiple_types_repeat1, - STATE(6966), 1, + STATE(6711), 1, sym_comment, - [234206] = 5, + ACTIONS(1867), 2, + anon_sym_RBRACE, + anon_sym__, + [229939] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11064), 1, + ACTIONS(10752), 1, anon_sym_RBRACK, - STATE(6874), 1, + STATE(6224), 1, aux_sym__multiple_types_repeat1, - STATE(6967), 1, + STATE(6712), 1, + sym_comment, + [229955] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10754), 1, + anon_sym_EQ2, + STATE(6713), 1, sym_comment, - [234222] = 5, + ACTIONS(4904), 2, + sym_identifier, + anon_sym_DOLLAR, + [229969] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11066), 1, + ACTIONS(10756), 1, anon_sym_RBRACK, - STATE(6875), 1, + STATE(6225), 1, aux_sym__multiple_types_repeat1, - STATE(6968), 1, + STATE(6714), 1, sym_comment, - [234238] = 5, + [229985] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11068), 1, + ACTIONS(10758), 1, anon_sym_RBRACK, - STATE(6877), 1, + STATE(6226), 1, aux_sym__multiple_types_repeat1, - STATE(6969), 1, + STATE(6715), 1, sym_comment, - [234254] = 4, - ACTIONS(247), 1, + [230001] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1719), 1, - aux_sym_unquoted_token2, - STATE(6970), 1, + ACTIONS(1873), 1, + sym__entry_separator, + STATE(6716), 1, sym_comment, - ACTIONS(1717), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [234268] = 4, + ACTIONS(1871), 2, + anon_sym_RBRACE, + anon_sym__, + [230015] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11072), 1, - anon_sym_COMMA, - STATE(6971), 1, + STATE(6717), 1, sym_comment, - ACTIONS(11070), 2, - anon_sym_RBRACK, - sym_hex_digit, - [234282] = 5, + ACTIONS(10108), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [230027] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11074), 1, + ACTIONS(10760), 1, anon_sym_RBRACK, - STATE(6878), 1, + STATE(6227), 1, aux_sym__multiple_types_repeat1, - STATE(6972), 1, + STATE(6718), 1, sym_comment, - [234298] = 5, - ACTIONS(3), 1, + [230043] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1006), 1, + STATE(6719), 1, + sym_comment, + ACTIONS(9793), 3, + ts_builtin_sym_end, sym__newline, - ACTIONS(1008), 1, - sym__space, - ACTIONS(2083), 1, - aux_sym_unquoted_token4, - STATE(6973), 1, + anon_sym_SEMI, + [230055] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6720), 1, sym_comment, - [234314] = 5, + ACTIONS(10138), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [230067] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11048), 1, - sym_hex_digit, - ACTIONS(11076), 1, - anon_sym_RBRACK, - STATE(6974), 1, + STATE(6721), 1, sym_comment, - STATE(7162), 1, - aux_sym_val_binary_repeat1, - [234330] = 3, + ACTIONS(1058), 3, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [230079] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6975), 1, + STATE(6722), 1, sym_comment, - ACTIONS(5886), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [234342] = 5, - ACTIONS(3), 1, + ACTIONS(9815), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [230091] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2279), 1, - sym__entry_separator, - ACTIONS(11078), 1, - anon_sym_RBRACE, - STATE(528), 1, - aux_sym__multiple_types_repeat1, - STATE(6976), 1, + STATE(6723), 1, sym_comment, - [234358] = 5, + ACTIONS(10762), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [230103] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5552), 1, sym__entry_separator, - ACTIONS(11080), 1, + ACTIONS(10764), 1, anon_sym_RBRACK, - STATE(2799), 1, + STATE(2594), 1, aux_sym__multiple_types_repeat1, - STATE(6977), 1, + STATE(6724), 1, sym_comment, - [234374] = 3, + [230119] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6978), 1, + STATE(6725), 1, sym_comment, - ACTIONS(6048), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [234386] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11082), 1, - anon_sym_POUND_BANG, - ACTIONS(11084), 1, + ACTIONS(10628), 3, + ts_builtin_sym_end, sym__newline, - STATE(6979), 1, + anon_sym_SEMI, + [230131] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10706), 1, + sym_hex_digit, + ACTIONS(10766), 1, + anon_sym_RBRACK, + STATE(6726), 1, sym_comment, - STATE(7053), 1, - aux_sym_shebang_repeat1, - [234402] = 5, - ACTIONS(3), 1, + STATE(6730), 1, + aux_sym_val_binary_repeat1, + [230147] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2279), 1, - sym__entry_separator, - ACTIONS(11086), 1, - anon_sym_RBRACE, - STATE(498), 1, - aux_sym__multiple_types_repeat1, - STATE(6980), 1, + STATE(6727), 1, sym_comment, - [234418] = 3, + ACTIONS(10506), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [230159] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6981), 1, + STATE(6728), 1, + sym_comment, + ACTIONS(10510), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [230171] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6729), 1, sym_comment, - ACTIONS(10759), 3, + ACTIONS(9846), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [234430] = 5, + [230183] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11048), 1, + ACTIONS(10706), 1, sym_hex_digit, - ACTIONS(11088), 1, + ACTIONS(10768), 1, anon_sym_RBRACK, - STATE(6982), 1, + STATE(6730), 1, sym_comment, - STATE(6985), 1, + STATE(7151), 1, aux_sym_val_binary_repeat1, - [234446] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - ACTIONS(4920), 1, - aux_sym_unquoted_token4, - STATE(6983), 1, - sym_comment, - STATE(7583), 1, - sym__expr_parenthesized_immediate, - [234462] = 5, - ACTIONS(3), 1, + [230199] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - ACTIONS(2957), 1, - aux_sym_unquoted_token4, - STATE(6984), 1, + ACTIONS(4735), 1, + anon_sym_in, + ACTIONS(10770), 1, + sym_long_flag_identifier, + ACTIONS(10772), 1, + anon_sym_EQ2, + STATE(6731), 1, sym_comment, - STATE(7594), 1, - sym__expr_parenthesized_immediate, - [234478] = 5, + [230215] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11048), 1, - sym_hex_digit, - ACTIONS(11090), 1, - anon_sym_RBRACK, - STATE(6985), 1, + STATE(6732), 1, sym_comment, - STATE(7162), 1, - aux_sym_val_binary_repeat1, - [234494] = 5, + ACTIONS(9882), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [230227] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11092), 1, + ACTIONS(10774), 1, anon_sym_RBRACK, - STATE(6900), 1, + STATE(6244), 1, aux_sym__multiple_types_repeat1, - STATE(6986), 1, + STATE(6733), 1, sym_comment, - [234510] = 4, + [230243] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1271), 1, - anon_sym_RPAREN, - STATE(6987), 1, + STATE(6734), 1, sym_comment, - ACTIONS(1268), 2, + ACTIONS(9882), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [234524] = 3, + [230255] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6988), 1, + STATE(6735), 1, sym_comment, - ACTIONS(10773), 3, + ACTIONS(10030), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [234536] = 5, + [230267] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1806), 1, + aux_sym_unquoted_token2, + STATE(6736), 1, + sym_comment, + ACTIONS(2162), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [230281] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11094), 1, + ACTIONS(10776), 1, anon_sym_RBRACK, - STATE(6901), 1, + STATE(6245), 1, aux_sym__multiple_types_repeat1, - STATE(6989), 1, + STATE(6737), 1, sym_comment, - [234552] = 5, + [230297] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11096), 1, + ACTIONS(10778), 1, anon_sym_RBRACK, - STATE(6902), 1, + STATE(6246), 1, aux_sym__multiple_types_repeat1, - STATE(6990), 1, + STATE(6738), 1, sym_comment, - [234568] = 5, + [230313] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11098), 1, + ACTIONS(10780), 1, anon_sym_RBRACK, - STATE(6903), 1, + STATE(6247), 1, aux_sym__multiple_types_repeat1, - STATE(6991), 1, + STATE(6739), 1, sym_comment, - [234584] = 5, + [230329] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11048), 1, - sym_hex_digit, - ACTIONS(11100), 1, - anon_sym_RBRACK, - STATE(6992), 1, + ACTIONS(6122), 1, + anon_sym_AT, + ACTIONS(7587), 1, + anon_sym_EQ, + STATE(5042), 1, + sym_param_cmd, + STATE(6740), 1, sym_comment, - STATE(7162), 1, - aux_sym_val_binary_repeat1, - [234600] = 5, + [230345] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11102), 1, + ACTIONS(10782), 1, anon_sym_RBRACK, - STATE(6904), 1, + STATE(6248), 1, aux_sym__multiple_types_repeat1, - STATE(6993), 1, - sym_comment, - [234616] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6994), 1, + STATE(6741), 1, sym_comment, - ACTIONS(10753), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [234628] = 5, - ACTIONS(247), 1, + [230361] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11048), 1, - sym_hex_digit, - ACTIONS(11104), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(10784), 1, anon_sym_RBRACK, - STATE(6974), 1, - aux_sym_val_binary_repeat1, - STATE(6995), 1, + STATE(6572), 1, + aux_sym__multiple_types_repeat1, + STATE(6742), 1, sym_comment, - [234644] = 5, + [230377] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11106), 1, + ACTIONS(10786), 1, anon_sym_RBRACK, - STATE(6911), 1, + STATE(6586), 1, aux_sym__multiple_types_repeat1, - STATE(6996), 1, + STATE(6743), 1, sym_comment, - [234660] = 5, + [230393] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11108), 1, + ACTIONS(10788), 1, anon_sym_RBRACK, - STATE(6918), 1, + STATE(6249), 1, aux_sym__multiple_types_repeat1, - STATE(6997), 1, + STATE(6744), 1, sym_comment, - [234676] = 5, + [230409] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11110), 1, + ACTIONS(10790), 1, anon_sym_RBRACK, - STATE(6919), 1, + STATE(6250), 1, aux_sym__multiple_types_repeat1, - STATE(6998), 1, + STATE(6745), 1, sym_comment, - [234692] = 5, + [230425] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11112), 1, + ACTIONS(10792), 1, anon_sym_RBRACK, - STATE(6453), 1, + STATE(6587), 1, aux_sym__multiple_types_repeat1, - STATE(6999), 1, + STATE(6746), 1, sym_comment, - [234708] = 3, + [230441] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7000), 1, + STATE(6747), 1, sym_comment, - ACTIONS(10755), 3, + ACTIONS(9815), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [234720] = 3, + [230453] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(10794), 1, + anon_sym_RBRACK, + STATE(6251), 1, + aux_sym__multiple_types_repeat1, + STATE(6748), 1, + sym_comment, + [230469] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7001), 1, + STATE(6749), 1, sym_comment, - ACTIONS(10509), 3, + ACTIONS(9900), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [234732] = 5, + [230481] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11114), 1, - anon_sym_EQ, - ACTIONS(11116), 1, - anon_sym_COLON, - STATE(7002), 1, + STATE(6750), 1, sym_comment, - STATE(7991), 1, - sym_param_type, - [234748] = 3, + ACTIONS(10642), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [230493] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7003), 1, + STATE(6751), 1, sym_comment, - ACTIONS(10781), 3, + ACTIONS(10014), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [234760] = 5, - ACTIONS(247), 1, + [230505] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(3717), 1, - anon_sym_RBRACE, - STATE(7004), 1, + ACTIONS(5552), 1, + sym__entry_separator, + ACTIONS(10796), 1, + anon_sym_RBRACK, + STATE(2587), 1, + aux_sym__multiple_types_repeat1, + STATE(6752), 1, sym_comment, - STATE(7143), 1, - aux_sym_shebang_repeat1, - [234776] = 3, + [230521] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7005), 1, + STATE(6753), 1, sym_comment, - ACTIONS(10797), 3, + ACTIONS(10142), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [234788] = 3, + [230533] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(7006), 1, + ACTIONS(10706), 1, + sym_hex_digit, + ACTIONS(10798), 1, + anon_sym_RBRACK, + STATE(6754), 1, sym_comment, - ACTIONS(11118), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [234800] = 5, + STATE(6758), 1, + aux_sym_val_binary_repeat1, + [230549] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(3667), 1, - anon_sym_RBRACE, - STATE(7007), 1, + ACTIONS(6122), 1, + anon_sym_AT, + ACTIONS(10800), 1, + anon_sym_GT, + STATE(6755), 1, sym_comment, - STATE(7148), 1, - aux_sym_shebang_repeat1, - [234816] = 5, - ACTIONS(3), 1, + STATE(7708), 1, + sym_param_cmd, + [230565] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2083), 1, - aux_sym_unquoted_token4, - ACTIONS(5964), 1, - anon_sym_EQ_GT, - ACTIONS(6048), 1, - anon_sym_PIPE, - STATE(7008), 1, + ACTIONS(1806), 1, + aux_sym_unquoted_token2, + STATE(6756), 1, sym_comment, - [234832] = 3, - ACTIONS(247), 1, + ACTIONS(1804), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [230579] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7009), 1, + ACTIONS(2222), 1, + sym__entry_separator, + STATE(6757), 1, sym_comment, - ACTIONS(11120), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [234844] = 5, + ACTIONS(2218), 2, + anon_sym_RBRACE, + anon_sym__, + [230593] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11048), 1, + ACTIONS(10706), 1, sym_hex_digit, - ACTIONS(11122), 1, + ACTIONS(10802), 1, anon_sym_RBRACK, - STATE(7010), 1, + STATE(6758), 1, sym_comment, - STATE(7016), 1, + STATE(7151), 1, aux_sym_val_binary_repeat1, - [234860] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2091), 1, - anon_sym_LPAREN2, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - ACTIONS(11124), 1, - sym__space, - STATE(7011), 1, - sym_comment, - [234876] = 3, + [230609] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7012), 1, + STATE(6759), 1, sym_comment, - ACTIONS(10509), 3, + ACTIONS(9994), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [234888] = 3, + [230621] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7013), 1, + STATE(6760), 1, sym_comment, - ACTIONS(10148), 3, + ACTIONS(10610), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [234900] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11126), 1, - sym__table_head_separator, - STATE(7014), 1, - sym_comment, - ACTIONS(1006), 2, - anon_sym_RBRACK, - sym__entry_separator, - [234914] = 5, + [230633] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11128), 1, + ACTIONS(10804), 1, anon_sym_RBRACK, - STATE(2821), 1, + STATE(6262), 1, aux_sym__multiple_types_repeat1, - STATE(7015), 1, + STATE(6761), 1, sym_comment, - [234930] = 5, - ACTIONS(247), 1, + [230649] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11048), 1, - sym_hex_digit, - ACTIONS(11130), 1, - anon_sym_RBRACK, - STATE(7016), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + ACTIONS(6930), 1, + aux_sym_unquoted_token4, + STATE(6762), 1, sym_comment, - STATE(7162), 1, - aux_sym_val_binary_repeat1, - [234946] = 5, + STATE(7317), 1, + sym__expr_parenthesized_immediate, + [230665] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6337), 1, - anon_sym_AT, - ACTIONS(8240), 1, - anon_sym_EQ, - STATE(5414), 1, - sym_param_cmd, - STATE(7017), 1, + ACTIONS(4747), 1, + anon_sym_in, + ACTIONS(10806), 1, + anon_sym_EQ2, + ACTIONS(10808), 1, + sym_short_flag_identifier, + STATE(6763), 1, sym_comment, - [234962] = 5, + [230681] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1527), 1, - anon_sym_LPAREN2, - ACTIONS(1567), 1, - aux_sym__unquoted_in_record_token4, - STATE(7018), 1, + ACTIONS(10810), 1, + anon_sym_POUND_BANG, + ACTIONS(10812), 1, + sym__newline, + STATE(6764), 1, sym_comment, - STATE(7625), 1, - sym__expr_parenthesized_immediate, - [234978] = 5, + STATE(7289), 1, + aux_sym_shebang_repeat1, + [230697] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11132), 1, + ACTIONS(10814), 1, anon_sym_RBRACK, - STATE(6392), 1, + STATE(6263), 1, aux_sym__multiple_types_repeat1, - STATE(7019), 1, + STATE(6765), 1, sym_comment, - [234994] = 5, + [230713] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11134), 1, + ACTIONS(10816), 1, anon_sym_RBRACK, - STATE(6393), 1, + STATE(6264), 1, aux_sym__multiple_types_repeat1, - STATE(7020), 1, + STATE(6766), 1, sym_comment, - [235010] = 5, + [230729] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11136), 1, + ACTIONS(10818), 1, anon_sym_RBRACK, - STATE(6394), 1, + STATE(6265), 1, aux_sym__multiple_types_repeat1, - STATE(7021), 1, + STATE(6767), 1, sym_comment, - [235026] = 5, - ACTIONS(3), 1, + [230745] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(11138), 1, - anon_sym_RBRACK, - STATE(6395), 1, - aux_sym__multiple_types_repeat1, - STATE(7022), 1, + ACTIONS(10820), 1, + anon_sym_LBRACK, + STATE(7441), 1, + sym_val_list, + STATE(6768), 2, sym_comment, - [235042] = 5, + aux_sym_val_table_repeat1, + [230759] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11140), 1, + ACTIONS(10823), 1, anon_sym_RBRACK, - STATE(6396), 1, + STATE(6266), 1, aux_sym__multiple_types_repeat1, - STATE(7023), 1, + STATE(6769), 1, sym_comment, - [235058] = 4, + [230775] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1457), 1, - aux_sym_unquoted_token2, - STATE(7024), 1, + STATE(6770), 1, sym_comment, - ACTIONS(2121), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [235072] = 5, + ACTIONS(10496), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [230787] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11142), 1, + ACTIONS(10825), 1, anon_sym_RBRACK, - STATE(6397), 1, + STATE(6267), 1, aux_sym__multiple_types_repeat1, - STATE(7025), 1, + STATE(6771), 1, sym_comment, - [235088] = 5, + [230803] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11144), 1, + ACTIONS(10827), 1, anon_sym_RBRACK, - STATE(6398), 1, + STATE(6268), 1, aux_sym__multiple_types_repeat1, - STATE(7026), 1, + STATE(6772), 1, + sym_comment, + [230819] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6773), 1, + sym_comment, + ACTIONS(1062), 3, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [230831] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6774), 1, sym_comment, - [235104] = 5, + ACTIONS(1054), 3, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [230843] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11146), 1, + ACTIONS(10829), 1, anon_sym_RBRACK, - STATE(6399), 1, + STATE(6269), 1, aux_sym__multiple_types_repeat1, - STATE(7027), 1, - sym_comment, - [235120] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8797), 1, - aux_sym_unquoted_token2, - STATE(7028), 1, + STATE(6775), 1, sym_comment, - ACTIONS(1537), 2, - sym_identifier, - anon_sym_DOLLAR, - [235134] = 3, + [230859] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7029), 1, + STATE(6776), 1, sym_comment, - ACTIONS(10377), 3, + ACTIONS(10104), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [235146] = 3, + [230871] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7030), 1, + STATE(6777), 1, sym_comment, - ACTIONS(10317), 3, + ACTIONS(10498), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [235158] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6636), 1, - aux_sym_unquoted_token2, - STATE(7031), 1, - sym_comment, - ACTIONS(1537), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [235172] = 3, + [230883] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7032), 1, + STATE(6778), 1, sym_comment, - ACTIONS(10897), 3, + ACTIONS(10632), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [235184] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11148), 1, - anon_sym_EQ2, - STATE(7033), 1, - sym_comment, - ACTIONS(5039), 2, - sym_identifier, - anon_sym_DOLLAR, - [235198] = 5, - ACTIONS(247), 1, + [230895] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11048), 1, - sym_hex_digit, - ACTIONS(11150), 1, - anon_sym_RBRACK, - STATE(7034), 1, + ACTIONS(2479), 1, + sym__entry_separator, + STATE(6779), 1, sym_comment, - STATE(7037), 1, - aux_sym_val_binary_repeat1, - [235214] = 5, + ACTIONS(2477), 2, + anon_sym_RBRACE, + anon_sym__, + [230909] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5745), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11152), 1, + ACTIONS(10831), 1, anon_sym_RBRACK, - STATE(2783), 1, + STATE(6232), 1, aux_sym__multiple_types_repeat1, - STATE(7035), 1, + STATE(6780), 1, sym_comment, - [235230] = 5, + [230925] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5745), 1, + ACTIONS(2451), 1, sym__entry_separator, - ACTIONS(11154), 1, - anon_sym_RBRACK, - STATE(2784), 1, - aux_sym__multiple_types_repeat1, - STATE(7036), 1, + STATE(6781), 1, sym_comment, - [235246] = 5, + ACTIONS(2449), 2, + anon_sym_RBRACE, + anon_sym__, + [230939] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11048), 1, + ACTIONS(10706), 1, sym_hex_digit, - ACTIONS(11156), 1, + ACTIONS(10833), 1, anon_sym_RBRACK, - STATE(7037), 1, + STATE(6782), 1, sym_comment, - STATE(7162), 1, + STATE(6787), 1, aux_sym_val_binary_repeat1, - [235262] = 5, - ACTIONS(3), 1, + [230955] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(11158), 1, - anon_sym_RBRACK, - STATE(6420), 1, - aux_sym__multiple_types_repeat1, - STATE(7038), 1, + STATE(6783), 1, sym_comment, - [235278] = 5, - ACTIONS(3), 1, + ACTIONS(10498), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [230967] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(11160), 1, - anon_sym_RBRACK, - STATE(6405), 1, - aux_sym__multiple_types_repeat1, - STATE(7039), 1, + STATE(6784), 1, sym_comment, - [235294] = 5, + ACTIONS(8672), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [230979] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(2483), 1, sym__entry_separator, - ACTIONS(11162), 1, - anon_sym_RBRACK, - STATE(6408), 1, - aux_sym__multiple_types_repeat1, - STATE(7040), 1, + STATE(6785), 1, sym_comment, - [235310] = 5, - ACTIONS(3), 1, + ACTIONS(2481), 2, + anon_sym_RBRACE, + anon_sym__, + [230993] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(11164), 1, - anon_sym_RBRACK, - STATE(6412), 1, - aux_sym__multiple_types_repeat1, - STATE(7041), 1, + STATE(6786), 1, sym_comment, - [235326] = 5, - ACTIONS(3), 1, + ACTIONS(8686), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [231005] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(11166), 1, + ACTIONS(10706), 1, + sym_hex_digit, + ACTIONS(10835), 1, anon_sym_RBRACK, - STATE(6421), 1, - aux_sym__multiple_types_repeat1, - STATE(7042), 1, + STATE(6787), 1, sym_comment, - [235342] = 5, - ACTIONS(3), 1, + STATE(7151), 1, + aux_sym_val_binary_repeat1, + [231021] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(11168), 1, - anon_sym_RBRACK, - STATE(6422), 1, - aux_sym__multiple_types_repeat1, - STATE(7043), 1, + STATE(6788), 1, sym_comment, - [235358] = 5, + ACTIONS(10500), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [231033] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11170), 1, + ACTIONS(10837), 1, anon_sym_RBRACK, - STATE(6423), 1, + STATE(6282), 1, aux_sym__multiple_types_repeat1, - STATE(7044), 1, + STATE(6789), 1, sym_comment, - [235374] = 5, + [231049] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(2041), 1, sym__entry_separator, - ACTIONS(11172), 1, - anon_sym_RBRACK, - STATE(6424), 1, - aux_sym__multiple_types_repeat1, - STATE(7045), 1, + STATE(6790), 1, sym_comment, - [235390] = 3, + ACTIONS(2035), 2, + anon_sym_RBRACE, + anon_sym__, + [231063] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7046), 1, + STATE(6791), 1, sym_comment, - ACTIONS(10897), 3, + ACTIONS(10104), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [235402] = 5, + [231075] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11174), 1, + ACTIONS(10839), 1, anon_sym_RBRACK, - STATE(6425), 1, + STATE(6283), 1, aux_sym__multiple_types_repeat1, - STATE(7047), 1, + STATE(6792), 1, sym_comment, - [235418] = 5, + [231091] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11176), 1, + ACTIONS(10841), 1, anon_sym_RBRACK, - STATE(6426), 1, + STATE(6284), 1, aux_sym__multiple_types_repeat1, - STATE(7048), 1, + STATE(6793), 1, sym_comment, - [235434] = 5, + [231107] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11178), 1, + ACTIONS(10843), 1, anon_sym_RBRACK, - STATE(6534), 1, + STATE(6285), 1, aux_sym__multiple_types_repeat1, - STATE(7049), 1, + STATE(6794), 1, + sym_comment, + [231123] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6795), 1, sym_comment, - [235450] = 5, + ACTIONS(9765), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [231135] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11180), 1, + ACTIONS(10845), 1, anon_sym_RBRACK, - STATE(6536), 1, + STATE(6286), 1, aux_sym__multiple_types_repeat1, - STATE(7050), 1, + STATE(6796), 1, + sym_comment, + [231151] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6797), 1, sym_comment, - [235466] = 5, + ACTIONS(9781), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [231163] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11182), 1, + ACTIONS(10847), 1, anon_sym_RBRACK, - STATE(6427), 1, + STATE(6287), 1, aux_sym__multiple_types_repeat1, - STATE(7051), 1, + STATE(6798), 1, sym_comment, - [235482] = 5, + [231179] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11184), 1, + ACTIONS(10849), 1, anon_sym_RBRACK, - STATE(6538), 1, + STATE(6288), 1, aux_sym__multiple_types_repeat1, - STATE(7052), 1, + STATE(6799), 1, sym_comment, - [235498] = 4, + [231195] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1757), 1, - anon_sym_POUND_BANG, - ACTIONS(11186), 1, - sym__newline, - STATE(7053), 2, - sym_comment, - aux_sym_shebang_repeat1, - [235512] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2129), 1, - aux_sym_unquoted_token2, - STATE(7054), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(10851), 1, + anon_sym_RBRACK, + STATE(6289), 1, + aux_sym__multiple_types_repeat1, + STATE(6800), 1, sym_comment, - ACTIONS(2127), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [235526] = 5, + [231211] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(2317), 1, sym__entry_separator, - ACTIONS(11189), 1, - anon_sym_RBRACK, - STATE(2822), 1, + ACTIONS(10853), 1, + anon_sym_RBRACE, + STATE(469), 1, aux_sym__multiple_types_repeat1, - STATE(7055), 1, + STATE(6801), 1, sym_comment, - [235542] = 3, - ACTIONS(3), 1, + [231227] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7056), 1, + ACTIONS(6122), 1, + anon_sym_AT, + ACTIONS(10855), 1, + anon_sym_GT, + STATE(6802), 1, sym_comment, - ACTIONS(1778), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [235554] = 3, + STATE(7550), 1, + sym_param_cmd, + [231243] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7057), 1, + STATE(6803), 1, sym_comment, - ACTIONS(10944), 3, + ACTIONS(9874), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [235566] = 3, + [231255] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7058), 1, + STATE(6804), 1, sym_comment, - ACTIONS(11014), 3, + ACTIONS(10110), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [235578] = 5, + [231267] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2279), 1, + ACTIONS(2049), 1, sym__entry_separator, - ACTIONS(11191), 1, + STATE(6805), 1, + sym_comment, + ACTIONS(2043), 2, anon_sym_RBRACE, - STATE(502), 1, - aux_sym__multiple_types_repeat1, - STATE(7059), 1, + anon_sym__, + [231281] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10706), 1, + sym_hex_digit, + ACTIONS(10857), 1, + anon_sym_RBRACK, + STATE(6806), 1, sym_comment, - [235594] = 5, + STATE(6810), 1, + aux_sym_val_binary_repeat1, + [231297] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(3941), 1, - anon_sym_RBRACE, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(7060), 1, + STATE(6807), 1, sym_comment, - [235610] = 4, + ACTIONS(10610), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [231309] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1721), 1, - aux_sym_unquoted_token2, - STATE(7061), 1, + STATE(6808), 1, sym_comment, - ACTIONS(1723), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [235624] = 5, + ACTIONS(10610), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [231321] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11048), 1, + ACTIONS(10706), 1, sym_hex_digit, - ACTIONS(11193), 1, + ACTIONS(10859), 1, anon_sym_RBRACK, - STATE(7062), 1, + STATE(6809), 1, sym_comment, - STATE(7064), 1, + STATE(7151), 1, aux_sym_val_binary_repeat1, - [235640] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4952), 1, - aux_sym_ctrl_match_token1, - ACTIONS(11195), 1, - sym_long_flag_identifier, - ACTIONS(11197), 1, - anon_sym_EQ2, - STATE(7063), 1, - sym_comment, - [235656] = 5, + [231337] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11048), 1, + ACTIONS(10706), 1, sym_hex_digit, - ACTIONS(11199), 1, + ACTIONS(10861), 1, anon_sym_RBRACK, - STATE(7064), 1, + STATE(6810), 1, sym_comment, - STATE(7162), 1, + STATE(7151), 1, aux_sym_val_binary_repeat1, - [235672] = 3, + [231353] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(10863), 1, + anon_sym_RBRACK, + STATE(6299), 1, + aux_sym__multiple_types_repeat1, + STATE(6811), 1, + sym_comment, + [231369] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7065), 1, + STATE(6812), 1, sym_comment, - ACTIONS(6242), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [235684] = 5, + ACTIONS(10218), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [231381] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11201), 1, + ACTIONS(10865), 1, anon_sym_RBRACK, - STATE(6444), 1, + STATE(6300), 1, aux_sym__multiple_types_repeat1, - STATE(7066), 1, + STATE(6813), 1, sym_comment, - [235700] = 5, + [231397] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2089), 1, - sym__newline, - ACTIONS(2093), 1, - sym__space, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(7067), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(10867), 1, + anon_sym_RBRACK, + STATE(6301), 1, + aux_sym__multiple_types_repeat1, + STATE(6814), 1, sym_comment, - [235716] = 5, + [231413] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11203), 1, + ACTIONS(10869), 1, anon_sym_RBRACK, - STATE(6445), 1, + STATE(6302), 1, aux_sym__multiple_types_repeat1, - STATE(7068), 1, + STATE(6815), 1, sym_comment, - [235732] = 5, + [231429] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(2410), 1, sym__entry_separator, - ACTIONS(11205), 1, - anon_sym_RBRACK, - STATE(6446), 1, - aux_sym__multiple_types_repeat1, - STATE(7069), 1, + STATE(6816), 1, sym_comment, - [235748] = 5, + ACTIONS(2408), 2, + anon_sym_RBRACE, + anon_sym__, + [231443] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11207), 1, + ACTIONS(10871), 1, anon_sym_RBRACK, - STATE(6447), 1, + STATE(6303), 1, aux_sym__multiple_types_repeat1, - STATE(7070), 1, + STATE(6817), 1, + sym_comment, + [231459] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6122), 1, + anon_sym_AT, + ACTIONS(10873), 1, + anon_sym_GT, + STATE(6818), 1, sym_comment, - [235764] = 5, + STATE(7722), 1, + sym_param_cmd, + [231475] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11209), 1, + ACTIONS(10875), 1, anon_sym_RBRACK, - STATE(6448), 1, + STATE(6304), 1, aux_sym__multiple_types_repeat1, - STATE(7071), 1, + STATE(6819), 1, sym_comment, - [235780] = 5, - ACTIONS(247), 1, + [231491] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(3745), 1, - anon_sym_RBRACE, - STATE(7072), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(10877), 1, + anon_sym_RBRACK, + STATE(6305), 1, + aux_sym__multiple_types_repeat1, + STATE(6820), 1, sym_comment, - STATE(7283), 1, - aux_sym_shebang_repeat1, - [235796] = 3, - ACTIONS(247), 1, + [231507] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7073), 1, + ACTIONS(1892), 1, + sym__entry_separator, + STATE(6821), 1, sym_comment, - ACTIONS(11016), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [235808] = 5, + ACTIONS(1890), 2, + anon_sym_RBRACE, + anon_sym__, + [231521] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11211), 1, + ACTIONS(10879), 1, anon_sym_RBRACK, - STATE(6449), 1, + STATE(6306), 1, aux_sym__multiple_types_repeat1, - STATE(7074), 1, + STATE(6822), 1, sym_comment, - [235824] = 5, + [231537] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11213), 1, + ACTIONS(10881), 1, anon_sym_RBRACK, - STATE(6450), 1, + STATE(6612), 1, aux_sym__multiple_types_repeat1, - STATE(7075), 1, + STATE(6823), 1, sym_comment, - [235840] = 3, - ACTIONS(247), 1, + [231553] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7076), 1, + ACTIONS(2487), 1, + sym__entry_separator, + STATE(6824), 1, sym_comment, - ACTIONS(11022), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [235852] = 3, - ACTIONS(247), 1, + ACTIONS(2485), 2, + anon_sym_RBRACE, + anon_sym__, + [231567] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7077), 1, + ACTIONS(2414), 1, + sym__entry_separator, + STATE(6825), 1, sym_comment, - ACTIONS(10831), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [235864] = 5, + ACTIONS(2412), 2, + anon_sym_RBRACE, + anon_sym__, + [231581] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11215), 1, + ACTIONS(10883), 1, anon_sym_RBRACK, - STATE(6451), 1, + STATE(6613), 1, aux_sym__multiple_types_repeat1, - STATE(7078), 1, - sym_comment, - [235880] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7079), 1, + STATE(6826), 1, sym_comment, - ACTIONS(10142), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [235892] = 5, + [231597] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2097), 1, - sym__newline, - ACTIONS(2101), 1, - sym__space, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - STATE(7080), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(10885), 1, + anon_sym_RBRACK, + STATE(6614), 1, + aux_sym__multiple_types_repeat1, + STATE(6827), 1, sym_comment, - [235908] = 5, + [231613] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - ACTIONS(2105), 1, - sym__newline, - ACTIONS(2107), 1, - sym__space, - STATE(7081), 1, + ACTIONS(2057), 1, + sym__entry_separator, + STATE(6828), 1, sym_comment, - [235924] = 3, - ACTIONS(247), 1, + ACTIONS(2051), 2, + anon_sym_RBRACE, + anon_sym__, + [231627] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7082), 1, + ACTIONS(2418), 1, + sym__entry_separator, + STATE(6829), 1, sym_comment, - ACTIONS(10831), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [235936] = 3, + ACTIONS(2416), 2, + anon_sym_RBRACE, + anon_sym__, + [231641] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7083), 1, + STATE(6830), 1, sym_comment, - ACTIONS(6246), 3, + ACTIONS(5649), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [235948] = 5, + [231653] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1896), 1, + sym__entry_separator, + STATE(6831), 1, + sym_comment, + ACTIONS(1894), 2, + anon_sym_RBRACE, + anon_sym__, + [231667] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11048), 1, + ACTIONS(10706), 1, sym_hex_digit, - ACTIONS(11217), 1, + ACTIONS(10887), 1, anon_sym_RBRACK, - STATE(7084), 1, + STATE(6832), 1, sym_comment, - STATE(7086), 1, + STATE(6835), 1, aux_sym_val_binary_repeat1, - [235964] = 4, + [231683] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1569), 1, - aux_sym_unquoted_token2, - STATE(7085), 1, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(6667), 1, + sym_val_list, + STATE(6768), 1, + aux_sym_val_table_repeat1, + STATE(6833), 1, sym_comment, - ACTIONS(1571), 2, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - [235978] = 5, + [231699] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10889), 1, + anon_sym_EQ2, + STATE(6834), 1, + sym_comment, + ACTIONS(4914), 2, + sym_identifier, + anon_sym_DOLLAR, + [231713] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11048), 1, + ACTIONS(10706), 1, sym_hex_digit, - ACTIONS(11219), 1, + ACTIONS(10891), 1, anon_sym_RBRACK, - STATE(7086), 1, + STATE(6835), 1, sym_comment, - STATE(7162), 1, + STATE(7151), 1, aux_sym_val_binary_repeat1, - [235994] = 5, + [231729] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1947), 1, + sym__entry_separator, + STATE(6836), 1, + sym_comment, + ACTIONS(1945), 2, + anon_sym_RBRACE, + anon_sym__, + [231743] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11221), 1, + ACTIONS(10893), 1, anon_sym_RBRACK, - STATE(6465), 1, + STATE(6317), 1, aux_sym__multiple_types_repeat1, - STATE(7087), 1, + STATE(6837), 1, + sym_comment, + [231759] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10897), 1, + sym__entry_separator, + STATE(6838), 1, sym_comment, - [236010] = 3, + ACTIONS(10895), 2, + anon_sym_RBRACE, + anon_sym__, + [231773] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7088), 1, + STATE(6839), 1, sym_comment, - ACTIONS(11012), 3, + ACTIONS(10128), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [236022] = 5, + [231785] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11223), 1, + ACTIONS(10899), 1, anon_sym_RBRACK, - STATE(6466), 1, + STATE(6318), 1, aux_sym__multiple_types_repeat1, - STATE(7089), 1, + STATE(6840), 1, sym_comment, - [236038] = 5, + [231801] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11225), 1, + ACTIONS(10901), 1, anon_sym_RBRACK, - STATE(6467), 1, + STATE(6319), 1, aux_sym__multiple_types_repeat1, - STATE(7090), 1, + STATE(6841), 1, sym_comment, - [236054] = 5, + [231817] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11227), 1, + ACTIONS(10903), 1, anon_sym_RBRACK, - STATE(6468), 1, + STATE(6320), 1, aux_sym__multiple_types_repeat1, - STATE(7091), 1, + STATE(6842), 1, sym_comment, - [236070] = 3, + [231833] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(7092), 1, + ACTIONS(9567), 1, + anon_sym_if, + ACTIONS(10905), 1, + anon_sym_EQ_GT, + STATE(6843), 1, sym_comment, - ACTIONS(10629), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [236082] = 5, + STATE(7747), 1, + sym_match_guard, + [231849] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11229), 1, + ACTIONS(10907), 1, anon_sym_RBRACK, - STATE(6469), 1, + STATE(6321), 1, aux_sym__multiple_types_repeat1, - STATE(7093), 1, + STATE(6844), 1, sym_comment, - [236098] = 4, + [231865] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11231), 1, - anon_sym_DQUOTE, - STATE(7094), 1, + ACTIONS(2491), 1, + sym__entry_separator, + STATE(6845), 1, sym_comment, - ACTIONS(11233), 2, - sym__escaped_str_content, - sym_escape_sequence, - [236112] = 5, + ACTIONS(2489), 2, + anon_sym_RBRACE, + anon_sym__, + [231879] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(2422), 1, sym__entry_separator, - ACTIONS(11235), 1, - anon_sym_RBRACK, - STATE(6470), 1, - aux_sym__multiple_types_repeat1, - STATE(7095), 1, + STATE(6846), 1, sym_comment, - [236128] = 5, + ACTIONS(2420), 2, + anon_sym_RBRACE, + anon_sym__, + [231893] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11237), 1, + ACTIONS(10909), 1, anon_sym_RBRACK, - STATE(6471), 1, + STATE(6322), 1, aux_sym__multiple_types_repeat1, - STATE(7096), 1, + STATE(6847), 1, sym_comment, - [236144] = 5, - ACTIONS(247), 1, + [231909] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4944), 1, - aux_sym_ctrl_match_token1, - ACTIONS(11239), 1, - anon_sym_EQ2, - ACTIONS(11241), 1, - sym_short_flag_identifier, - STATE(7097), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(10911), 1, + anon_sym_RBRACK, + STATE(6323), 1, + aux_sym__multiple_types_repeat1, + STATE(6848), 1, sym_comment, - [236160] = 5, + [231925] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11243), 1, + ACTIONS(10913), 1, anon_sym_RBRACK, - STATE(6472), 1, + STATE(6324), 1, aux_sym__multiple_types_repeat1, - STATE(7098), 1, + STATE(6849), 1, + sym_comment, + [231941] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2426), 1, + sym__entry_separator, + STATE(6850), 1, + sym_comment, + ACTIONS(2424), 2, + anon_sym_RBRACE, + anon_sym__, + [231955] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1951), 1, + sym__entry_separator, + STATE(6851), 1, sym_comment, - [236176] = 3, + ACTIONS(1949), 2, + anon_sym_RBRACE, + anon_sym__, + [231969] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7099), 1, + STATE(6852), 1, sym_comment, - ACTIONS(10833), 3, + ACTIONS(10614), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [236188] = 5, + [231981] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6337), 1, - anon_sym_AT, - ACTIONS(11245), 1, - anon_sym_GT, - STATE(7100), 1, + ACTIONS(1343), 1, + anon_sym_RPAREN, + STATE(6853), 1, sym_comment, - STATE(7733), 1, - sym_param_cmd, - [236204] = 5, + ACTIONS(1340), 2, + sym__newline, + anon_sym_SEMI, + [231995] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2241), 1, + aux_sym_unquoted_token4, + ACTIONS(5747), 1, + anon_sym_EQ_GT, + ACTIONS(5869), 1, + anon_sym_PIPE, + STATE(6854), 1, + sym_comment, + [232011] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2495), 1, + sym__entry_separator, + STATE(6855), 1, + sym_comment, + ACTIONS(2493), 2, + anon_sym_RBRACE, + anon_sym__, + [232025] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2430), 1, + sym__entry_separator, + STATE(6856), 1, + sym_comment, + ACTIONS(2428), 2, + anon_sym_RBRACE, + anon_sym__, + [232039] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6857), 1, + sym_comment, + ACTIONS(10915), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [232051] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2317), 1, + sym__entry_separator, + ACTIONS(10917), 1, + anon_sym_RBRACE, + STATE(470), 1, + aux_sym__multiple_types_repeat1, + STATE(6858), 1, + sym_comment, + [232067] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11048), 1, + ACTIONS(10706), 1, sym_hex_digit, - ACTIONS(11247), 1, + ACTIONS(10919), 1, anon_sym_RBRACK, - STATE(7101), 1, + STATE(6859), 1, sym_comment, - STATE(7104), 1, + STATE(6864), 1, aux_sym_val_binary_repeat1, - [236220] = 5, + [232083] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11249), 1, + ACTIONS(10921), 1, anon_sym_RBRACK, - STATE(6664), 1, + STATE(6171), 1, aux_sym__multiple_types_repeat1, - STATE(7102), 1, + STATE(6860), 1, sym_comment, - [236236] = 3, + [232099] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7103), 1, + STATE(6861), 1, sym_comment, - ACTIONS(10833), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [236248] = 5, + ACTIONS(5863), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [232111] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6862), 1, + sym_comment, + ACTIONS(6025), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [232123] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2382), 1, + sym__entry_separator, + STATE(6863), 1, + sym_comment, + ACTIONS(2380), 2, + anon_sym_RBRACE, + anon_sym__, + [232137] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11048), 1, + ACTIONS(10706), 1, sym_hex_digit, - ACTIONS(11251), 1, + ACTIONS(10923), 1, anon_sym_RBRACK, - STATE(7104), 1, + STATE(6864), 1, sym_comment, - STATE(7162), 1, + STATE(7151), 1, aux_sym_val_binary_repeat1, - [236264] = 5, + [232153] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11253), 1, + ACTIONS(10925), 1, anon_sym_RBRACK, - STATE(6486), 1, + STATE(6336), 1, aux_sym__multiple_types_repeat1, - STATE(7105), 1, + STATE(6865), 1, sym_comment, - [236280] = 5, + [232169] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11255), 1, + ACTIONS(10927), 1, anon_sym_RBRACK, - STATE(6668), 1, + STATE(6337), 1, aux_sym__multiple_types_repeat1, - STATE(7106), 1, + STATE(6866), 1, + sym_comment, + [232185] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(10929), 1, + anon_sym_RBRACK, + STATE(6338), 1, + aux_sym__multiple_types_repeat1, + STATE(6867), 1, + sym_comment, + [232201] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(10931), 1, + anon_sym_RBRACK, + STATE(6339), 1, + aux_sym__multiple_types_repeat1, + STATE(6868), 1, + sym_comment, + [232217] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2434), 1, + sym__entry_separator, + STATE(6869), 1, + sym_comment, + ACTIONS(2432), 2, + anon_sym_RBRACE, + anon_sym__, + [232231] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(10933), 1, + anon_sym_RBRACK, + STATE(6340), 1, + aux_sym__multiple_types_repeat1, + STATE(6870), 1, + sym_comment, + [232247] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(6768), 1, + aux_sym_val_table_repeat1, + STATE(6871), 1, + sym_comment, + STATE(7014), 1, + sym_val_list, + [232263] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4904), 1, + sym__space, + ACTIONS(4906), 1, + sym__newline, + ACTIONS(10935), 1, + anon_sym_EQ2, + STATE(6872), 1, sym_comment, - [236296] = 5, + [232279] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11257), 1, + ACTIONS(10937), 1, anon_sym_RBRACK, - STATE(6487), 1, + STATE(6341), 1, aux_sym__multiple_types_repeat1, - STATE(7107), 1, + STATE(6873), 1, sym_comment, - [236312] = 5, + [232295] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11259), 1, + ACTIONS(10939), 1, anon_sym_RBRACK, - STATE(6488), 1, + STATE(6342), 1, aux_sym__multiple_types_repeat1, - STATE(7108), 1, + STATE(6874), 1, sym_comment, - [236328] = 5, + [232311] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11261), 1, + ACTIONS(10941), 1, anon_sym_RBRACK, - STATE(6489), 1, + STATE(6343), 1, aux_sym__multiple_types_repeat1, - STATE(7109), 1, + STATE(6875), 1, sym_comment, - [236344] = 5, + [232327] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(6360), 1, sym__entry_separator, - ACTIONS(11263), 1, + ACTIONS(10943), 1, anon_sym_RBRACK, - STATE(6672), 1, + STATE(3374), 1, aux_sym__multiple_types_repeat1, - STATE(7110), 1, + STATE(6876), 1, sym_comment, - [236360] = 5, + [232343] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(11265), 1, - anon_sym_RBRACK, - STATE(6490), 1, - aux_sym__multiple_types_repeat1, - STATE(7111), 1, - sym_comment, - [236376] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11267), 1, - aux_sym_cmd_identifier_token41, - STATE(7112), 1, + STATE(6877), 1, sym_comment, - ACTIONS(11269), 2, - sym_filesize_unit, - sym_duration_unit, - [236390] = 5, - ACTIONS(247), 1, + ACTIONS(2259), 3, + sym_identifier, + anon_sym_DOLLAR, + aux_sym_unquoted_token4, + [232355] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11116), 1, - anon_sym_COLON, - ACTIONS(11271), 1, - anon_sym_EQ, - STATE(7113), 1, + ACTIONS(1587), 1, + sym__entry_separator, + STATE(6878), 1, sym_comment, - STATE(7777), 1, - sym_param_type, - [236406] = 5, + ACTIONS(1575), 2, + anon_sym_RBRACE, + anon_sym__, + [232369] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(2317), 1, sym__entry_separator, - ACTIONS(11273), 1, - anon_sym_RBRACK, - STATE(6491), 1, + ACTIONS(10945), 1, + anon_sym_RBRACE, + STATE(486), 1, aux_sym__multiple_types_repeat1, - STATE(7114), 1, + STATE(6879), 1, sym_comment, - [236422] = 5, + [232385] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(7572), 1, sym__entry_separator, - ACTIONS(11275), 1, + ACTIONS(7576), 1, anon_sym_RBRACK, - STATE(6492), 1, - aux_sym__multiple_types_repeat1, - STATE(7115), 1, + ACTIONS(10947), 1, + anon_sym_LT, + STATE(6880), 1, sym_comment, - [236438] = 5, + [232401] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(7572), 1, sym__entry_separator, - ACTIONS(11277), 1, + ACTIONS(7576), 1, anon_sym_RBRACK, - STATE(6493), 1, - aux_sym__multiple_types_repeat1, - STATE(7116), 1, - sym_comment, - [236454] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7117), 1, - sym_comment, - ACTIONS(10124), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [236466] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7118), 1, - sym_comment, - ACTIONS(9012), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [236478] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7119), 1, - sym_comment, - ACTIONS(6252), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [236490] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7120), 1, - sym_comment, - ACTIONS(6250), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [236502] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4950), 1, - anon_sym_in, - ACTIONS(11279), 1, - sym_long_flag_identifier, - ACTIONS(11281), 1, - anon_sym_EQ2, - STATE(7121), 1, + ACTIONS(10949), 1, + anon_sym_LT, + STATE(6881), 1, sym_comment, - [236518] = 5, + [232417] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5039), 1, - sym__space, - ACTIONS(5041), 1, - sym__newline, - ACTIONS(11283), 1, - anon_sym_EQ2, - STATE(7122), 1, + ACTIONS(2438), 1, + sym__entry_separator, + STATE(6882), 1, sym_comment, - [236534] = 5, + ACTIONS(2436), 2, + anon_sym_RBRACE, + anon_sym__, + [232431] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11048), 1, + ACTIONS(10706), 1, sym_hex_digit, - ACTIONS(11285), 1, + ACTIONS(10951), 1, anon_sym_RBRACK, - STATE(7123), 1, + STATE(6883), 1, sym_comment, - STATE(7127), 1, + STATE(6886), 1, aux_sym_val_binary_repeat1, - [236550] = 3, - ACTIONS(247), 1, + [232447] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7124), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(10953), 1, + anon_sym_RBRACK, + STATE(6626), 1, + aux_sym__multiple_types_repeat1, + STATE(6884), 1, sym_comment, - ACTIONS(6252), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [236562] = 3, + [232463] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(7125), 1, + STATE(284), 1, + aux_sym__block_body_repeat1, + STATE(6885), 1, sym_comment, - ACTIONS(10775), 3, - ts_builtin_sym_end, + ACTIONS(145), 2, sym__newline, anon_sym_SEMI, - [236574] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7126), 1, - sym_comment, - ACTIONS(6256), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [236586] = 5, + [232477] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11048), 1, + ACTIONS(10706), 1, sym_hex_digit, - ACTIONS(11287), 1, + ACTIONS(10955), 1, anon_sym_RBRACK, - STATE(7127), 1, + STATE(6886), 1, sym_comment, - STATE(7162), 1, + STATE(7151), 1, aux_sym_val_binary_repeat1, - [236602] = 5, + [232493] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11289), 1, + ACTIONS(10957), 1, anon_sym_RBRACK, - STATE(6505), 1, + STATE(6353), 1, aux_sym__multiple_types_repeat1, - STATE(7128), 1, + STATE(6887), 1, sym_comment, - [236618] = 3, + [232509] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7129), 1, + STATE(6888), 1, sym_comment, - ACTIONS(9036), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [236630] = 5, + ACTIONS(6029), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [232521] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11291), 1, + ACTIONS(10959), 1, anon_sym_RBRACK, - STATE(6506), 1, + STATE(6354), 1, aux_sym__multiple_types_repeat1, - STATE(7130), 1, + STATE(6889), 1, sym_comment, - [236646] = 5, + [232537] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11293), 1, + ACTIONS(10961), 1, anon_sym_RBRACK, - STATE(6507), 1, + STATE(6355), 1, aux_sym__multiple_types_repeat1, - STATE(7131), 1, + STATE(6890), 1, sym_comment, - [236662] = 5, + [232553] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11295), 1, + ACTIONS(10963), 1, anon_sym_RBRACK, - STATE(6508), 1, + STATE(6356), 1, aux_sym__multiple_types_repeat1, - STATE(7132), 1, - sym_comment, - [236678] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1648), 1, - aux_sym_unquoted_token2, - STATE(7133), 1, + STATE(6891), 1, sym_comment, - ACTIONS(1650), 2, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - [236692] = 5, + [232569] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11297), 1, + ACTIONS(10965), 1, anon_sym_RBRACK, - STATE(6509), 1, + STATE(6357), 1, aux_sym__multiple_types_repeat1, - STATE(7134), 1, + STATE(6892), 1, + sym_comment, + [232585] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2499), 1, + sym__entry_separator, + STATE(6893), 1, sym_comment, - [236708] = 5, + ACTIONS(2497), 2, + anon_sym_RBRACE, + anon_sym__, + [232599] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4942), 1, - anon_sym_in, - ACTIONS(11299), 1, - anon_sym_EQ2, - ACTIONS(11301), 1, - sym_short_flag_identifier, - STATE(7135), 1, + ACTIONS(6122), 1, + anon_sym_AT, + ACTIONS(7661), 1, + anon_sym_EQ, + STATE(4952), 1, + sym_param_cmd, + STATE(6894), 1, sym_comment, - [236724] = 5, + [232615] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11303), 1, + ACTIONS(10967), 1, anon_sym_RBRACK, - STATE(6510), 1, + STATE(6358), 1, aux_sym__multiple_types_repeat1, - STATE(7136), 1, + STATE(6895), 1, sym_comment, - [236740] = 5, + [232631] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11305), 1, + ACTIONS(10969), 1, anon_sym_RBRACK, - STATE(6511), 1, + STATE(6359), 1, aux_sym__multiple_types_repeat1, - STATE(7137), 1, + STATE(6896), 1, + sym_comment, + [232647] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6897), 1, + sym_comment, + ACTIONS(10136), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [232659] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6898), 1, sym_comment, - [236756] = 5, + ACTIONS(10386), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [232671] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11307), 1, + ACTIONS(10971), 1, anon_sym_RBRACK, - STATE(6512), 1, + STATE(6360), 1, aux_sym__multiple_types_repeat1, - STATE(7138), 1, - sym_comment, - [236772] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5625), 1, - anon_sym_LPAREN2, - ACTIONS(7303), 1, - aux_sym__unquoted_in_list_token4, - STATE(7139), 1, + STATE(6899), 1, sym_comment, - STATE(7549), 1, - sym__expr_parenthesized_immediate, - [236788] = 3, + [232687] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7140), 1, + STATE(6900), 1, sym_comment, - ACTIONS(10263), 3, + ACTIONS(9755), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [236800] = 5, + [232699] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10048), 1, - anon_sym_PIPE, - ACTIONS(11309), 1, - anon_sym_EQ_GT, - STATE(7141), 1, + STATE(6901), 1, sym_comment, - STATE(7277), 1, - aux_sym_match_pattern_repeat1, - [236816] = 5, + ACTIONS(1042), 3, + anon_sym_QMARK2, + anon_sym_DOT, + sym__table_head_separator, + [232711] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11048), 1, - sym_hex_digit, - ACTIONS(11311), 1, - anon_sym_RBRACK, - STATE(7142), 1, + STATE(6902), 1, sym_comment, - STATE(7146), 1, - aux_sym_val_binary_repeat1, - [236832] = 5, + ACTIONS(10018), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [232723] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(3998), 1, - anon_sym_RBRACE, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(7143), 1, + STATE(6903), 1, sym_comment, - [236848] = 5, + ACTIONS(1046), 3, + anon_sym_QMARK2, + anon_sym_DOT, + sym__table_head_separator, + [232735] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, + STATE(6904), 1, + sym_comment, + ACTIONS(10194), 3, + ts_builtin_sym_end, sym__newline, - ACTIONS(3998), 1, - anon_sym_RBRACE, - STATE(7144), 1, + anon_sym_SEMI, + [232747] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10706), 1, + sym_hex_digit, + ACTIONS(10973), 1, + anon_sym_RBRACK, + STATE(6905), 1, sym_comment, - STATE(7249), 1, - aux_sym_shebang_repeat1, - [236864] = 5, + STATE(6907), 1, + aux_sym_val_binary_repeat1, + [232763] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10050), 1, - anon_sym_if, - ACTIONS(11313), 1, - anon_sym_EQ_GT, - STATE(7145), 1, + STATE(6906), 1, sym_comment, - STATE(7849), 1, - sym_match_guard, - [236880] = 5, + ACTIONS(1050), 3, + anon_sym_QMARK2, + anon_sym_DOT, + sym__table_head_separator, + [232775] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11048), 1, + ACTIONS(10706), 1, sym_hex_digit, - ACTIONS(11315), 1, + ACTIONS(10975), 1, anon_sym_RBRACK, - STATE(7146), 1, + STATE(6907), 1, sym_comment, - STATE(7162), 1, + STATE(7151), 1, aux_sym_val_binary_repeat1, - [236896] = 5, + [232791] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11317), 1, + ACTIONS(10977), 1, anon_sym_RBRACK, - STATE(6525), 1, + STATE(6369), 1, aux_sym__multiple_types_repeat1, - STATE(7147), 1, + STATE(6908), 1, sym_comment, - [236912] = 5, + [232807] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(4000), 1, - anon_sym_RBRACE, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(7148), 1, + STATE(6909), 1, sym_comment, - [236928] = 5, + ACTIONS(10979), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [232819] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11319), 1, + ACTIONS(10981), 1, anon_sym_RBRACK, - STATE(6526), 1, + STATE(6370), 1, aux_sym__multiple_types_repeat1, - STATE(7149), 1, + STATE(6910), 1, sym_comment, - [236944] = 5, + [232835] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11321), 1, + ACTIONS(10983), 1, anon_sym_RBRACK, - STATE(6527), 1, + STATE(6371), 1, aux_sym__multiple_types_repeat1, - STATE(7150), 1, + STATE(6911), 1, sym_comment, - [236960] = 5, + [232851] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11323), 1, + ACTIONS(10985), 1, anon_sym_RBRACK, - STATE(6528), 1, + STATE(6372), 1, aux_sym__multiple_types_repeat1, - STATE(7151), 1, + STATE(6912), 1, sym_comment, - [236976] = 5, + [232867] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(4000), 1, - anon_sym_RBRACE, - STATE(7152), 1, + STATE(6913), 1, sym_comment, - STATE(7250), 1, - aux_sym_shebang_repeat1, - [236992] = 5, + ACTIONS(10987), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [232879] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11325), 1, + ACTIONS(10989), 1, anon_sym_RBRACK, - STATE(6529), 1, + STATE(6373), 1, aux_sym__multiple_types_repeat1, - STATE(7153), 1, + STATE(6914), 1, + sym_comment, + [232895] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6915), 1, sym_comment, - [237008] = 5, + ACTIONS(5869), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [232907] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(11327), 1, - anon_sym_RBRACK, - STATE(6696), 1, - aux_sym__multiple_types_repeat1, - STATE(7154), 1, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + ACTIONS(10991), 1, + sym__space, + STATE(6916), 1, sym_comment, - [237024] = 5, + [232923] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11329), 1, + ACTIONS(10993), 1, anon_sym_RBRACK, - STATE(6530), 1, + STATE(6374), 1, aux_sym__multiple_types_repeat1, - STATE(7155), 1, + STATE(6917), 1, sym_comment, - [237040] = 5, + [232939] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11331), 1, + ACTIONS(10995), 1, anon_sym_RBRACK, - STATE(6531), 1, + STATE(6375), 1, aux_sym__multiple_types_repeat1, - STATE(7156), 1, + STATE(6918), 1, sym_comment, - [237056] = 3, + [232955] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7157), 1, + STATE(6919), 1, sym_comment, - ACTIONS(10168), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [237068] = 5, + ACTIONS(10997), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [232967] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11333), 1, + ACTIONS(10999), 1, anon_sym_RBRACK, - STATE(6532), 1, + STATE(6376), 1, aux_sym__multiple_types_repeat1, - STATE(7158), 1, - sym_comment, - [237084] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(3941), 1, - anon_sym_RBRACE, - STATE(7159), 1, - sym_comment, - STATE(7281), 1, - aux_sym_shebang_repeat1, - [237100] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3269), 1, - aux_sym_record_entry_token1, - ACTIONS(6298), 1, - aux_sym_ctrl_match_token1, - STATE(6401), 1, - sym_block, - STATE(7160), 1, + STATE(6920), 1, sym_comment, - [237116] = 3, + [232983] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7161), 1, + STATE(6921), 1, sym_comment, - ACTIONS(10172), 3, + ACTIONS(9755), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [237128] = 4, - ACTIONS(247), 1, + [232995] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11335), 1, + ACTIONS(5552), 1, + sym__entry_separator, + ACTIONS(11001), 1, anon_sym_RBRACK, - ACTIONS(11337), 1, - sym_hex_digit, - STATE(7162), 2, + STATE(2574), 1, + aux_sym__multiple_types_repeat1, + STATE(6922), 1, sym_comment, - aux_sym_val_binary_repeat1, - [237142] = 4, + [233011] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10707), 1, - anon_sym_LPAREN, - STATE(7163), 1, + ACTIONS(9447), 1, + sym__entry_separator, + STATE(6923), 1, sym_comment, - ACTIONS(10709), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [237156] = 5, + ACTIONS(9445), 2, + anon_sym_RBRACE, + anon_sym__, + [233025] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11340), 1, + ACTIONS(11003), 1, anon_sym_RBRACK, - STATE(6542), 1, + STATE(2608), 1, aux_sym__multiple_types_repeat1, - STATE(7164), 1, + STATE(6924), 1, sym_comment, - [237172] = 5, + [233041] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11342), 1, + ACTIONS(11005), 1, anon_sym_RBRACK, - STATE(6543), 1, + STATE(6383), 1, aux_sym__multiple_types_repeat1, - STATE(7165), 1, + STATE(6925), 1, sym_comment, - [237188] = 5, + [233057] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(6360), 1, sym__entry_separator, - ACTIONS(11344), 1, + ACTIONS(11007), 1, anon_sym_RBRACK, - STATE(6544), 1, + STATE(3357), 1, aux_sym__multiple_types_repeat1, - STATE(7166), 1, + STATE(6926), 1, sym_comment, - [237204] = 5, + [233073] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11346), 1, + ACTIONS(11009), 1, anon_sym_RBRACK, - STATE(6545), 1, + STATE(6384), 1, aux_sym__multiple_types_repeat1, - STATE(7167), 1, + STATE(6927), 1, sym_comment, - [237220] = 5, - ACTIONS(247), 1, + [233089] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6337), 1, - anon_sym_AT, - ACTIONS(11348), 1, - anon_sym_GT, - STATE(7168), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(11011), 1, + anon_sym_RBRACK, + STATE(6385), 1, + aux_sym__multiple_types_repeat1, + STATE(6928), 1, sym_comment, - STATE(7869), 1, - sym_param_cmd, - [237236] = 5, + [233105] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11350), 1, + ACTIONS(11013), 1, anon_sym_RBRACK, - STATE(6546), 1, + STATE(6386), 1, aux_sym__multiple_types_repeat1, - STATE(7169), 1, + STATE(6929), 1, + sym_comment, + [233121] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(11015), 1, + anon_sym_RBRACK, + STATE(6387), 1, + aux_sym__multiple_types_repeat1, + STATE(6930), 1, sym_comment, - [237252] = 3, + [233137] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7170), 1, + STATE(6931), 1, sym_comment, - ACTIONS(10178), 3, + ACTIONS(10048), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [237264] = 5, + [233149] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11352), 1, + ACTIONS(11017), 1, anon_sym_RBRACK, - STATE(6547), 1, + STATE(6388), 1, aux_sym__multiple_types_repeat1, - STATE(7171), 1, + STATE(6932), 1, sym_comment, - [237280] = 5, + [233165] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11354), 1, + ACTIONS(11019), 1, anon_sym_RBRACK, - STATE(6548), 1, + STATE(6389), 1, aux_sym__multiple_types_repeat1, - STATE(7172), 1, + STATE(6933), 1, sym_comment, - [237296] = 5, + [233181] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(3679), 1, + sym__newline, + ACTIONS(3681), 1, + sym__space, + STATE(1018), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(6934), 1, + sym_comment, + [233197] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11356), 1, + ACTIONS(11021), 1, anon_sym_RBRACK, - STATE(6549), 1, + STATE(6390), 1, aux_sym__multiple_types_repeat1, - STATE(7173), 1, + STATE(6935), 1, sym_comment, - [237312] = 5, + [233213] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5745), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11358), 1, + ACTIONS(11023), 1, anon_sym_RBRACK, - STATE(2785), 1, + STATE(6549), 1, aux_sym__multiple_types_repeat1, - STATE(7174), 1, + STATE(6936), 1, sym_comment, - [237328] = 3, + [233229] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7175), 1, + STATE(6937), 1, sym_comment, - ACTIONS(10435), 3, + ACTIONS(10610), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [237340] = 5, + [233241] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6938), 1, + sym_comment, + ACTIONS(1879), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [233253] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11360), 1, + ACTIONS(11025), 1, anon_sym_RBRACK, - STATE(6566), 1, + STATE(6395), 1, aux_sym__multiple_types_repeat1, - STATE(7176), 1, + STATE(6939), 1, sym_comment, - [237356] = 3, + [233269] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(7177), 1, + ACTIONS(6122), 1, + anon_sym_AT, + ACTIONS(7725), 1, + anon_sym_EQ, + STATE(4954), 1, + sym_param_cmd, + STATE(6940), 1, sym_comment, - ACTIONS(10189), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [237368] = 3, - ACTIONS(247), 1, + [233285] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7178), 1, + ACTIONS(6360), 1, + sym__entry_separator, + ACTIONS(11027), 1, + anon_sym_RBRACK, + STATE(3339), 1, + aux_sym__multiple_types_repeat1, + STATE(6941), 1, sym_comment, - ACTIONS(10207), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [237380] = 5, + [233301] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11362), 1, + ACTIONS(11029), 1, anon_sym_RBRACK, - STATE(6567), 1, + STATE(6396), 1, aux_sym__multiple_types_repeat1, - STATE(7179), 1, + STATE(6942), 1, sym_comment, - [237396] = 5, + [233317] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11364), 1, + ACTIONS(11031), 1, anon_sym_RBRACK, - STATE(6558), 1, + STATE(6397), 1, aux_sym__multiple_types_repeat1, - STATE(7180), 1, + STATE(6943), 1, sym_comment, - [237412] = 5, + [233333] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11366), 1, + ACTIONS(11033), 1, anon_sym_RBRACK, - STATE(6571), 1, + STATE(6398), 1, aux_sym__multiple_types_repeat1, - STATE(7181), 1, + STATE(6944), 1, sym_comment, - [237428] = 3, + [233349] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7182), 1, + STATE(6945), 1, sym_comment, - ACTIONS(10443), 3, - ts_builtin_sym_end, + ACTIONS(11035), 3, sym__newline, anon_sym_SEMI, - [237440] = 5, + anon_sym_RPAREN, + [233361] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11368), 1, + ACTIONS(11037), 1, anon_sym_RBRACK, - STATE(6559), 1, + STATE(6399), 1, aux_sym__multiple_types_repeat1, - STATE(7183), 1, + STATE(6946), 1, sym_comment, - [237456] = 5, - ACTIONS(3), 1, + [233377] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(11370), 1, - anon_sym_RBRACK, - STATE(6560), 1, - aux_sym__multiple_types_repeat1, - STATE(7184), 1, + ACTIONS(1631), 1, + aux_sym_unquoted_token2, + STATE(6947), 1, sym_comment, - [237472] = 5, + ACTIONS(1633), 2, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + [233391] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(2503), 1, sym__entry_separator, - ACTIONS(11372), 1, - anon_sym_RBRACK, - STATE(6561), 1, - aux_sym__multiple_types_repeat1, - STATE(7185), 1, + STATE(6948), 1, sym_comment, - [237488] = 5, + ACTIONS(2501), 2, + anon_sym_RBRACE, + anon_sym__, + [233405] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11374), 1, + ACTIONS(11039), 1, anon_sym_RBRACK, - STATE(6562), 1, + STATE(6400), 1, aux_sym__multiple_types_repeat1, - STATE(7186), 1, - sym_comment, - [237504] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5005), 1, - sym__space, - ACTIONS(5007), 1, - sym__newline, - ACTIONS(11376), 1, - anon_sym_EQ2, - STATE(7187), 1, + STATE(6949), 1, sym_comment, - [237520] = 5, + [233421] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11378), 1, + ACTIONS(11041), 1, anon_sym_RBRACK, - STATE(6563), 1, + STATE(6401), 1, aux_sym__multiple_types_repeat1, - STATE(7188), 1, + STATE(6950), 1, sym_comment, - [237536] = 5, + [233437] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11380), 1, + ACTIONS(11043), 1, anon_sym_RBRACK, - STATE(6564), 1, + STATE(6402), 1, aux_sym__multiple_types_repeat1, - STATE(7189), 1, + STATE(6951), 1, sym_comment, - [237552] = 3, + [233453] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7190), 1, + STATE(6952), 1, sym_comment, - ACTIONS(10713), 3, + ACTIONS(10018), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [237564] = 5, - ACTIONS(3), 1, + [233465] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(11382), 1, - anon_sym_RBRACK, - STATE(6565), 1, - aux_sym__multiple_types_repeat1, - STATE(7191), 1, + ACTIONS(11045), 1, + aux_sym_cmd_identifier_token41, + STATE(6953), 1, sym_comment, - [237580] = 3, + ACTIONS(11047), 2, + sym_filesize_unit, + sym_duration_unit, + [233479] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(7192), 1, + ACTIONS(1553), 1, + aux_sym_unquoted_token2, + STATE(6954), 1, sym_comment, - ACTIONS(10715), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [237592] = 3, + ACTIONS(2222), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [233493] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7193), 1, + STATE(6955), 1, sym_comment, - ACTIONS(10443), 3, + ACTIONS(10624), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [237604] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11048), 1, - sym_hex_digit, - ACTIONS(11384), 1, - anon_sym_RBRACK, - STATE(7194), 1, - sym_comment, - STATE(7336), 1, - aux_sym_val_binary_repeat1, - [237620] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11388), 1, - anon_sym_COMMA, - STATE(7195), 1, - sym_comment, - ACTIONS(11386), 2, - sym__newline, - anon_sym_RBRACE, - [237634] = 4, + [233505] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11392), 1, - anon_sym_COMMA, - STATE(7196), 1, + STATE(6956), 1, sym_comment, - ACTIONS(11390), 2, + ACTIONS(11049), 3, sym__newline, - anon_sym_RBRACE, - [237648] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(11394), 1, - anon_sym_RBRACK, - STATE(6573), 1, - aux_sym__multiple_types_repeat1, - STATE(7197), 1, - sym_comment, - [237664] = 3, + anon_sym_SEMI, + anon_sym_RPAREN, + [233517] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7198), 1, + STATE(6957), 1, sym_comment, - ACTIONS(10715), 3, - ts_builtin_sym_end, + ACTIONS(11051), 3, sym__newline, anon_sym_SEMI, - [237676] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6337), 1, - anon_sym_AT, - ACTIONS(11396), 1, - anon_sym_GT, - STATE(7199), 1, - sym_comment, - STATE(7922), 1, - sym_param_cmd, - [237692] = 5, + anon_sym_RPAREN, + [233529] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11398), 1, + ACTIONS(11053), 1, anon_sym_RBRACK, - STATE(6574), 1, + STATE(6407), 1, aux_sym__multiple_types_repeat1, - STATE(7200), 1, + STATE(6958), 1, sym_comment, - [237708] = 5, + [233545] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11400), 1, + ACTIONS(11055), 1, anon_sym_RBRACK, - STATE(6575), 1, + STATE(6408), 1, aux_sym__multiple_types_repeat1, - STATE(7201), 1, + STATE(6959), 1, sym_comment, - [237724] = 5, + [233561] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11402), 1, + ACTIONS(11057), 1, anon_sym_RBRACK, - STATE(6576), 1, + STATE(6409), 1, aux_sym__multiple_types_repeat1, - STATE(7202), 1, + STATE(6960), 1, sym_comment, - [237740] = 5, + [233577] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11404), 1, + ACTIONS(11059), 1, anon_sym_RBRACK, - STATE(6577), 1, + STATE(6410), 1, aux_sym__multiple_types_repeat1, - STATE(7203), 1, - sym_comment, - [237756] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11408), 1, - anon_sym_COMMA, - STATE(7204), 1, + STATE(6961), 1, sym_comment, - ACTIONS(11406), 2, - sym__newline, - anon_sym_RBRACE, - [237770] = 3, + [233593] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(7205), 1, + ACTIONS(4785), 1, + aux_sym_cmd_identifier_token41, + STATE(6962), 1, sym_comment, - ACTIONS(10717), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [237782] = 5, + ACTIONS(11061), 2, + sym_filesize_unit, + sym_duration_unit, + [233607] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11410), 1, + ACTIONS(11063), 1, anon_sym_RBRACK, - STATE(6578), 1, + STATE(6411), 1, aux_sym__multiple_types_repeat1, - STATE(7206), 1, + STATE(6963), 1, sym_comment, - [237798] = 5, + [233623] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11412), 1, + ACTIONS(11065), 1, anon_sym_RBRACK, - STATE(6579), 1, + STATE(6662), 1, aux_sym__multiple_types_repeat1, - STATE(7207), 1, + STATE(6964), 1, sym_comment, - [237814] = 5, + [233639] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(10104), 1, - anon_sym_LBRACK, - STATE(2820), 1, + ACTIONS(11067), 1, + anon_sym_RBRACK, + STATE(6413), 1, aux_sym__multiple_types_repeat1, - STATE(7208), 1, + STATE(6965), 1, sym_comment, - [237830] = 3, + [233655] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7209), 1, + STATE(6966), 1, sym_comment, - ACTIONS(10717), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [237842] = 5, + ACTIONS(6043), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [233667] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11414), 1, + ACTIONS(11069), 1, anon_sym_RBRACK, - STATE(6580), 1, + STATE(6414), 1, aux_sym__multiple_types_repeat1, - STATE(7210), 1, + STATE(6967), 1, sym_comment, - [237858] = 3, + [233683] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7211), 1, + STATE(6968), 1, sym_comment, - ACTIONS(10703), 3, + ACTIONS(10526), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [237870] = 3, - ACTIONS(247), 1, + [233695] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7212), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(11071), 1, + anon_sym_RBRACK, + STATE(6420), 1, + aux_sym__multiple_types_repeat1, + STATE(6969), 1, sym_comment, - ACTIONS(10783), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [237882] = 4, + [233711] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11418), 1, - anon_sym_COMMA, - STATE(7213), 1, - sym_comment, - ACTIONS(11416), 2, + ACTIONS(2808), 1, sym__newline, - anon_sym_RBRACE, - [237896] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4983), 1, - aux_sym_cmd_identifier_token41, - STATE(7214), 1, + ACTIONS(11073), 1, + anon_sym_SEMI, + STATE(2586), 1, + aux_sym_shebang_repeat1, + STATE(6970), 1, sym_comment, - ACTIONS(11420), 2, - sym_filesize_unit, - sym_duration_unit, - [237910] = 5, + [233727] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(1575), 1, + anon_sym_RBRACE, + ACTIONS(1587), 1, sym__entry_separator, - ACTIONS(11422), 1, - anon_sym_RBRACK, - STATE(6587), 1, - aux_sym__multiple_types_repeat1, - STATE(7215), 1, + ACTIONS(1589), 1, + aux_sym__unquoted_in_record_token2, + STATE(6971), 1, sym_comment, - [237926] = 5, + [233743] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11424), 1, + ACTIONS(11075), 1, anon_sym_RBRACK, - STATE(6588), 1, + STATE(6421), 1, aux_sym__multiple_types_repeat1, - STATE(7216), 1, + STATE(6972), 1, sym_comment, - [237942] = 5, + [233759] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11426), 1, + ACTIONS(11077), 1, anon_sym_RBRACK, - STATE(6589), 1, + STATE(6422), 1, aux_sym__multiple_types_repeat1, - STATE(7217), 1, + STATE(6973), 1, sym_comment, - [237958] = 5, + [233775] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11428), 1, + ACTIONS(11079), 1, anon_sym_RBRACK, - STATE(6590), 1, + STATE(6423), 1, aux_sym__multiple_types_repeat1, - STATE(7218), 1, + STATE(6974), 1, sym_comment, - [237974] = 5, - ACTIONS(3), 1, + [233791] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1525), 1, - anon_sym_RBRACE, - ACTIONS(1537), 1, - sym__entry_separator, - ACTIONS(1539), 1, - aux_sym__unquoted_in_record_token2, - STATE(7219), 1, + ACTIONS(10706), 1, + sym_hex_digit, + ACTIONS(11081), 1, + anon_sym_RBRACK, + STATE(6975), 1, sym_comment, - [237990] = 5, + STATE(6986), 1, + aux_sym_val_binary_repeat1, + [233807] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11430), 1, + ACTIONS(11083), 1, anon_sym_RBRACK, - STATE(6591), 1, + STATE(6424), 1, aux_sym__multiple_types_repeat1, - STATE(7220), 1, + STATE(6976), 1, sym_comment, - [238006] = 5, + [233823] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5552), 1, sym__entry_separator, - ACTIONS(11432), 1, + ACTIONS(11085), 1, anon_sym_RBRACK, - STATE(6592), 1, + STATE(2579), 1, aux_sym__multiple_types_repeat1, - STATE(7221), 1, + STATE(6977), 1, sym_comment, - [238022] = 5, + [233839] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11434), 1, + ACTIONS(11087), 1, anon_sym_RBRACK, - STATE(6593), 1, + STATE(6425), 1, aux_sym__multiple_types_repeat1, - STATE(7222), 1, - sym_comment, - [238038] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7223), 1, + STATE(6978), 1, sym_comment, - ACTIONS(11436), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [238050] = 5, + [233855] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11438), 1, + ACTIONS(11089), 1, anon_sym_RBRACK, - STATE(6594), 1, + STATE(6426), 1, aux_sym__multiple_types_repeat1, - STATE(7224), 1, - sym_comment, - [238066] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11048), 1, - sym_hex_digit, - ACTIONS(11440), 1, - anon_sym_RBRACK, - STATE(7225), 1, + STATE(6979), 1, sym_comment, - STATE(7232), 1, - aux_sym_val_binary_repeat1, - [238082] = 4, + [233871] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11442), 1, - anon_sym_LPAREN, - STATE(7226), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(11091), 1, + anon_sym_RBRACK, + STATE(6427), 1, + aux_sym__multiple_types_repeat1, + STATE(6980), 1, sym_comment, - ACTIONS(11444), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [238096] = 5, - ACTIONS(3), 1, + [233887] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3893), 1, - sym__newline, - ACTIONS(3895), 1, - sym__space, - STATE(1227), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7227), 1, + ACTIONS(3213), 1, + aux_sym_record_entry_token1, + ACTIONS(6078), 1, + aux_sym_ctrl_match_token1, + STATE(6563), 1, + sym_block, + STATE(6981), 1, sym_comment, - [238112] = 3, + [233903] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7228), 1, + STATE(6982), 1, sym_comment, - ACTIONS(11446), 3, + ACTIONS(11093), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [238124] = 3, + [233915] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7229), 1, + STATE(6983), 1, sym_comment, - ACTIONS(10721), 3, + ACTIONS(10518), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [238136] = 3, + [233927] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(7230), 1, + ACTIONS(4737), 1, + aux_sym_ctrl_match_token1, + ACTIONS(11095), 1, + sym_long_flag_identifier, + ACTIONS(11097), 1, + anon_sym_EQ2, + STATE(6984), 1, sym_comment, - ACTIONS(10387), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [238148] = 5, + [233943] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - ACTIONS(7127), 1, + ACTIONS(6874), 1, aux_sym_unquoted_token4, - STATE(7231), 1, + STATE(6985), 1, sym_comment, - STATE(7699), 1, + STATE(7453), 1, sym__expr_parenthesized_immediate, - [238164] = 5, + [233959] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11048), 1, + ACTIONS(10706), 1, sym_hex_digit, - ACTIONS(11448), 1, - anon_sym_RBRACK, - STATE(7162), 1, - aux_sym_val_binary_repeat1, - STATE(7232), 1, - sym_comment, - [238180] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5625), 1, - anon_sym_LPAREN2, - ACTIONS(5635), 1, - aux_sym__unquoted_in_list_token4, - STATE(7233), 1, - sym_comment, - STATE(7640), 1, - sym__expr_parenthesized_immediate, - [238196] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6585), 1, - sym__entry_separator, - ACTIONS(11450), 1, - anon_sym_RBRACK, - STATE(3633), 1, - aux_sym__multiple_types_repeat1, - STATE(7234), 1, - sym_comment, - [238212] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(11452), 1, + ACTIONS(11099), 1, anon_sym_RBRACK, - STATE(6809), 1, - aux_sym__multiple_types_repeat1, - STATE(7235), 1, - sym_comment, - [238228] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6585), 1, - sym__entry_separator, - ACTIONS(11454), 1, - anon_sym_RBRACK, - STATE(3634), 1, - aux_sym__multiple_types_repeat1, - STATE(7236), 1, + STATE(6986), 1, sym_comment, - [238244] = 3, + STATE(7151), 1, + aux_sym_val_binary_repeat1, + [233975] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7237), 1, + STATE(6987), 1, sym_comment, - ACTIONS(11024), 3, - ts_builtin_sym_end, + ACTIONS(11101), 3, sym__newline, anon_sym_SEMI, - [238256] = 5, + anon_sym_RPAREN, + [233987] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11456), 1, + ACTIONS(11103), 1, anon_sym_RBRACK, - STATE(6815), 1, + STATE(6099), 1, aux_sym__multiple_types_repeat1, - STATE(7238), 1, + STATE(6988), 1, sym_comment, - [238272] = 5, - ACTIONS(3), 1, + [234003] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(11458), 1, - anon_sym_RBRACK, - STATE(6816), 1, - aux_sym__multiple_types_repeat1, - STATE(7239), 1, + STATE(6989), 1, sym_comment, - [238288] = 5, + ACTIONS(6043), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [234015] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(2228), 1, sym__entry_separator, - ACTIONS(11460), 1, - anon_sym_RBRACK, - STATE(6839), 1, - aux_sym__multiple_types_repeat1, - STATE(7240), 1, - sym_comment, - [238304] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1525), 1, - sym__newline, - ACTIONS(1537), 1, - sym__space, - ACTIONS(7127), 1, - aux_sym_unquoted_token2, - STATE(7241), 1, + STATE(6990), 1, sym_comment, - [238320] = 5, + ACTIONS(2224), 2, + anon_sym_RBRACE, + anon_sym__, + [234029] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11462), 1, + ACTIONS(11105), 1, anon_sym_RBRACK, - STATE(6840), 1, + STATE(6101), 1, aux_sym__multiple_types_repeat1, - STATE(7242), 1, + STATE(6991), 1, sym_comment, - [238336] = 5, + [234045] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11464), 1, + ACTIONS(11107), 1, anon_sym_RBRACK, - STATE(6845), 1, + STATE(6102), 1, aux_sym__multiple_types_repeat1, - STATE(7243), 1, + STATE(6992), 1, sym_comment, - [238352] = 5, + [234061] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11466), 1, + ACTIONS(11109), 1, anon_sym_RBRACK, - STATE(6846), 1, + STATE(6103), 1, aux_sym__multiple_types_repeat1, - STATE(7244), 1, + STATE(6993), 1, sym_comment, - [238368] = 5, + [234077] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11468), 1, + ACTIONS(11111), 1, anon_sym_RBRACK, - STATE(6847), 1, + STATE(6196), 1, aux_sym__multiple_types_repeat1, - STATE(7245), 1, + STATE(6994), 1, sym_comment, - [238384] = 4, + [234093] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11470), 1, - anon_sym_LPAREN, - STATE(7246), 1, - sym_comment, - ACTIONS(11472), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [238398] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1429), 1, - aux_sym_unquoted_token2, - STATE(7247), 1, - sym_comment, - ACTIONS(1698), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [238412] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7248), 1, - sym_comment, - ACTIONS(10986), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [238424] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(11474), 1, - anon_sym_RBRACE, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(7249), 1, - sym_comment, - [238440] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(11476), 1, - anon_sym_RBRACE, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(7250), 1, + ACTIONS(5458), 1, + anon_sym_LPAREN2, + ACTIONS(5468), 1, + aux_sym__unquoted_in_list_token4, + STATE(6995), 1, sym_comment, - [238456] = 5, + STATE(7357), 1, + sym__expr_parenthesized_immediate, + [234109] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6585), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11478), 1, + ACTIONS(11113), 1, anon_sym_RBRACK, - STATE(3640), 1, + STATE(6104), 1, aux_sym__multiple_types_repeat1, - STATE(7251), 1, - sym_comment, - [238472] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7252), 1, - sym_comment, - ACTIONS(10739), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [238484] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7253), 1, + STATE(6996), 1, sym_comment, - ACTIONS(10739), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [238496] = 3, + [234125] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(7254), 1, + ACTIONS(6122), 1, + anon_sym_AT, + ACTIONS(7587), 1, + anon_sym_EQ, + STATE(5043), 1, + sym_param_cmd, + STATE(6997), 1, sym_comment, - ACTIONS(10715), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [238508] = 4, + [234141] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2133), 1, - sym__space, - STATE(7255), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(11115), 1, + anon_sym_RBRACK, + STATE(6105), 1, + aux_sym__multiple_types_repeat1, + STATE(6998), 1, sym_comment, - ACTIONS(2131), 2, - sym__newline, - aux_sym_unquoted_token4, - [238522] = 3, - ACTIONS(247), 1, + [234157] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7256), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(11117), 1, + anon_sym_RBRACK, + STATE(6106), 1, + aux_sym__multiple_types_repeat1, + STATE(6999), 1, sym_comment, - ACTIONS(10715), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [238534] = 5, + [234173] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11480), 1, + ACTIONS(11119), 1, anon_sym_RBRACK, - STATE(6700), 1, + STATE(6107), 1, aux_sym__multiple_types_repeat1, - STATE(7257), 1, + STATE(7000), 1, sym_comment, - [238550] = 3, + [234189] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7258), 1, + STATE(7001), 1, sym_comment, - ACTIONS(10281), 3, + ACTIONS(10198), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [238562] = 3, + [234201] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(7259), 1, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(6768), 1, + aux_sym_val_table_repeat1, + STATE(7002), 1, sym_comment, - ACTIONS(10743), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [238574] = 3, + STATE(7205), 1, + sym_val_list, + [234217] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7260), 1, + STATE(7003), 1, sym_comment, - ACTIONS(10831), 3, + ACTIONS(10162), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [238586] = 3, + [234229] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7261), 1, + STATE(7004), 1, sym_comment, - ACTIONS(10831), 3, + ACTIONS(9819), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [238598] = 3, + [234241] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7262), 1, + STATE(7005), 1, sym_comment, - ACTIONS(11482), 3, + ACTIONS(10168), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [238610] = 4, + [234253] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11484), 1, - aux_sym_cmd_identifier_token41, - STATE(7263), 1, + STATE(7006), 1, sym_comment, - ACTIONS(11486), 2, - sym_filesize_unit, - sym_duration_unit, - [238624] = 4, + ACTIONS(6047), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [234265] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(7264), 1, + STATE(7007), 1, sym_comment, - ACTIONS(2089), 2, - sym_identifier, - anon_sym_DOLLAR, - [238638] = 5, + ACTIONS(2443), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [234277] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5745), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11488), 1, - anon_sym_RBRACK, - STATE(2798), 1, + ACTIONS(11121), 1, + anon_sym_RBRACE, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(7265), 1, + STATE(7008), 1, sym_comment, - [238654] = 5, - ACTIONS(247), 1, + [234293] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11048), 1, - sym_hex_digit, - ACTIONS(11490), 1, - anon_sym_RBRACK, - STATE(7266), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(11123), 1, + anon_sym_RBRACE, + STATE(2558), 1, + aux_sym__multiple_types_repeat1, + STATE(7009), 1, sym_comment, - STATE(7270), 1, - aux_sym_val_binary_repeat1, - [238670] = 3, + [234309] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7267), 1, + STATE(7010), 1, sym_comment, - ACTIONS(10211), 3, + ACTIONS(10508), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [238682] = 5, + [234321] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5745), 1, + ACTIONS(2261), 1, sym__entry_separator, - ACTIONS(11492), 1, - anon_sym_RBRACK, - STATE(2828), 1, - aux_sym__multiple_types_repeat1, - STATE(7268), 1, + STATE(7011), 1, + sym_comment, + ACTIONS(2259), 2, + anon_sym_RBRACE, + anon_sym__, + [234335] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9565), 1, + anon_sym_PIPE, + ACTIONS(11125), 1, + anon_sym_EQ_GT, + STATE(7012), 1, sym_comment, - [238698] = 5, + STATE(7039), 1, + aux_sym_match_pattern_repeat1, + [234351] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(1577), 1, anon_sym_LPAREN2, - ACTIONS(4889), 1, - aux_sym_unquoted_token4, - STATE(7269), 1, + ACTIONS(1589), 1, + aux_sym__unquoted_in_record_token4, + STATE(7013), 1, sym_comment, - STATE(7561), 1, + STATE(7340), 1, sym__expr_parenthesized_immediate, - [238714] = 5, - ACTIONS(247), 1, + [234367] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11048), 1, - sym_hex_digit, - ACTIONS(11494), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(11127), 1, anon_sym_RBRACK, - STATE(7162), 1, - aux_sym_val_binary_repeat1, - STATE(7270), 1, + STATE(6219), 1, + aux_sym__multiple_types_repeat1, + STATE(7014), 1, sym_comment, - [238730] = 5, + [234383] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11496), 1, + ACTIONS(11129), 1, anon_sym_RBRACK, - STATE(6701), 1, + STATE(6179), 1, aux_sym__multiple_types_repeat1, - STATE(7271), 1, + STATE(7015), 1, sym_comment, - [238746] = 3, + [234399] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(7272), 1, + ACTIONS(11131), 1, + aux_sym_cmd_identifier_token41, + STATE(7016), 1, sym_comment, - ACTIONS(10863), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [238758] = 5, + ACTIONS(11133), 2, + sym_filesize_unit, + sym_duration_unit, + [234413] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(2394), 1, sym__entry_separator, - ACTIONS(11498), 1, + STATE(7017), 1, + sym_comment, + ACTIONS(2392), 2, + anon_sym_RBRACE, + anon_sym__, + [234427] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(11135), 1, anon_sym_RBRACK, - STATE(6521), 1, + STATE(6256), 1, aux_sym__multiple_types_repeat1, - STATE(7273), 1, + STATE(7018), 1, sym_comment, - [238774] = 5, + [234443] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11500), 1, + ACTIONS(11137), 1, anon_sym_RBRACK, - STATE(6557), 1, + STATE(6652), 1, aux_sym__multiple_types_repeat1, - STATE(7274), 1, + STATE(7019), 1, sym_comment, - [238790] = 3, + [234459] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7275), 1, + STATE(7020), 1, sym_comment, - ACTIONS(11502), 3, + ACTIONS(10634), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [238802] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11116), 1, - anon_sym_COLON, - ACTIONS(11504), 1, - anon_sym_EQ, - STATE(7276), 1, - sym_comment, - STATE(7861), 1, - sym_param_type, - [238818] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11506), 1, - anon_sym_PIPE, - ACTIONS(11509), 1, - anon_sym_EQ_GT, - STATE(7277), 2, - sym_comment, - aux_sym_match_pattern_repeat1, - [238832] = 3, + [234471] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7278), 1, + STATE(7021), 1, sym_comment, - ACTIONS(11511), 3, + ACTIONS(10172), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [238844] = 3, + [234483] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(7279), 1, + ACTIONS(11139), 1, + aux_sym_cmd_identifier_token41, + STATE(7022), 1, sym_comment, - ACTIONS(11513), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [238856] = 5, + ACTIONS(11141), 2, + sym_filesize_unit, + sym_duration_unit, + [234497] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11515), 1, + ACTIONS(11143), 1, anon_sym_RBRACK, - STATE(6628), 1, + STATE(6259), 1, aux_sym__multiple_types_repeat1, - STATE(7280), 1, + STATE(7023), 1, sym_comment, - [238872] = 5, + [234513] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(11517), 1, - anon_sym_RBRACE, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(7281), 1, - sym_comment, - [238888] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11519), 1, - sym__table_head_separator, - STATE(7282), 1, + STATE(7024), 1, sym_comment, - ACTIONS(1006), 2, - anon_sym_RBRACK, - sym__entry_separator, - [238902] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2738), 1, + ACTIONS(10096), 3, + ts_builtin_sym_end, sym__newline, - ACTIONS(4027), 1, - anon_sym_RBRACE, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(7283), 1, - sym_comment, - [238918] = 5, + anon_sym_SEMI, + [234525] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11521), 1, + ACTIONS(11145), 1, anon_sym_RBRACK, - STATE(6851), 1, + STATE(6394), 1, aux_sym__multiple_types_repeat1, - STATE(7284), 1, + STATE(7025), 1, sym_comment, - [238934] = 4, - ACTIONS(3), 1, + [234541] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2083), 1, - aux_sym_unquoted_token4, - STATE(7285), 1, + ACTIONS(8432), 1, + aux_sym_unquoted_token2, + STATE(7026), 1, sym_comment, - ACTIONS(1006), 2, + ACTIONS(1587), 2, sym_identifier, anon_sym_DOLLAR, - [238948] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11523), 1, - anon_sym_QMARK2, - STATE(7286), 1, - sym_comment, - ACTIONS(972), 2, - anon_sym_DOT, - aux_sym_record_entry_token1, - [238962] = 5, + [234555] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3239), 1, - aux_sym_record_entry_token1, - ACTIONS(6298), 1, - aux_sym_ctrl_match_token1, - STATE(6401), 1, - sym_block, - STATE(7287), 1, + ACTIONS(10706), 1, + sym_hex_digit, + ACTIONS(11147), 1, + anon_sym_RBRACK, + STATE(7027), 1, sym_comment, - [238978] = 5, + STATE(7050), 1, + aux_sym_val_binary_repeat1, + [234571] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(2398), 1, sym__entry_separator, - ACTIONS(11525), 1, - anon_sym_RBRACK, - STATE(6880), 1, - aux_sym__multiple_types_repeat1, - STATE(7288), 1, + STATE(7028), 1, sym_comment, - [238994] = 5, + ACTIONS(2396), 2, + anon_sym_RBRACE, + anon_sym__, + [234585] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, + STATE(7029), 1, + sym_comment, + ACTIONS(10222), 3, + ts_builtin_sym_end, sym__newline, - ACTIONS(11527), 1, - anon_sym_RBRACE, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(7289), 1, + anon_sym_SEMI, + [234597] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1076), 1, + sym__newline, + ACTIONS(1078), 1, + sym__space, + ACTIONS(2241), 1, + aux_sym_unquoted_token4, + STATE(7030), 1, sym_comment, - [239010] = 5, + [234613] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(11529), 1, - anon_sym_RBRACK, - STATE(6923), 1, - aux_sym__multiple_types_repeat1, - STATE(7290), 1, + ACTIONS(11149), 1, + sym__table_head_separator, + STATE(7031), 1, sym_comment, - [239026] = 4, + ACTIONS(1076), 2, + anon_sym_RBRACK, + sym__entry_separator, + [234627] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11531), 1, - anon_sym_QMARK2, - STATE(7291), 1, + STATE(7032), 1, sym_comment, - ACTIONS(982), 2, - anon_sym_DOT, - aux_sym_record_entry_token1, - [239040] = 5, + ACTIONS(10528), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [234639] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5552), 1, sym__entry_separator, - ACTIONS(11533), 1, + ACTIONS(11151), 1, anon_sym_RBRACK, - STATE(6503), 1, + STATE(2581), 1, aux_sym__multiple_types_repeat1, - STATE(7292), 1, + STATE(7033), 1, sym_comment, - [239056] = 5, + [234655] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(2162), 1, sym__entry_separator, - ACTIONS(11535), 1, - anon_sym_RBRACK, - STATE(6407), 1, - aux_sym__multiple_types_repeat1, - STATE(7293), 1, + STATE(7034), 1, sym_comment, - [239072] = 5, + ACTIONS(2160), 2, + anon_sym_RBRACE, + anon_sym__, + [234669] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3239), 1, - aux_sym_record_entry_token1, - ACTIONS(6298), 1, - aux_sym_ctrl_match_token1, - STATE(6515), 1, - sym_block, - STATE(7294), 1, + ACTIONS(4894), 1, + aux_sym_cmd_identifier_token41, + STATE(7035), 1, sym_comment, - [239088] = 5, + ACTIONS(11153), 2, + sym_filesize_unit, + sym_duration_unit, + [234683] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3239), 1, + ACTIONS(3215), 1, aux_sym_record_entry_token1, - ACTIONS(6298), 1, + ACTIONS(6078), 1, aux_sym_ctrl_match_token1, - STATE(4872), 1, + STATE(6563), 1, sym_block, - STATE(7295), 1, + STATE(7036), 1, sym_comment, - [239104] = 4, + [234699] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1721), 1, - aux_sym_unquoted_token2, - STATE(7296), 1, + STATE(7037), 1, sym_comment, - ACTIONS(1723), 2, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - [239118] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2738), 1, + ACTIONS(10530), 3, + ts_builtin_sym_end, sym__newline, - ACTIONS(11537), 1, anon_sym_SEMI, - STATE(2777), 1, - aux_sym_shebang_repeat1, - STATE(7297), 1, - sym_comment, - [239134] = 3, + [234711] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7298), 1, + STATE(7038), 1, sym_comment, - ACTIONS(10865), 3, + ACTIONS(10532), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [239146] = 5, - ACTIONS(3), 1, + [234723] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5745), 1, - sym__entry_separator, - ACTIONS(11539), 1, - anon_sym_RBRACK, - STATE(2796), 1, - aux_sym__multiple_types_repeat1, - STATE(7299), 1, + ACTIONS(11155), 1, + anon_sym_PIPE, + ACTIONS(11158), 1, + anon_sym_EQ_GT, + STATE(7039), 2, + sym_comment, + aux_sym_match_pattern_repeat1, + [234737] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3215), 1, + aux_sym_record_entry_token1, + ACTIONS(6078), 1, + aux_sym_ctrl_match_token1, + STATE(6628), 1, + sym_block, + STATE(7040), 1, sym_comment, - [239162] = 5, + [234753] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2738), 1, + ACTIONS(5095), 1, sym__newline, - ACTIONS(4027), 1, - anon_sym_RBRACE, - STATE(7289), 1, + ACTIONS(11160), 1, + anon_sym_COLON, + STATE(690), 1, aux_sym_shebang_repeat1, - STATE(7300), 1, + STATE(7041), 1, sym_comment, - [239178] = 4, - ACTIONS(3), 1, + [234769] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11541), 1, - sym__table_head_separator, - STATE(7301), 1, + STATE(7042), 1, sym_comment, - ACTIONS(1006), 2, - anon_sym_RBRACK, - sym__entry_separator, - [239192] = 3, + ACTIONS(10534), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [234781] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7302), 1, + STATE(7043), 1, sym_comment, - ACTIONS(10867), 3, + ACTIONS(10536), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [239204] = 5, + [234793] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3215), 1, + aux_sym_record_entry_token1, + ACTIONS(6078), 1, + aux_sym_ctrl_match_token1, + STATE(4731), 1, + sym_block, + STATE(7044), 1, + sym_comment, + [234809] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(11543), 1, - anon_sym_RBRACK, - STATE(2795), 1, - aux_sym__multiple_types_repeat1, - STATE(7303), 1, + ACTIONS(1577), 1, + anon_sym_LPAREN2, + ACTIONS(1676), 1, + aux_sym__unquoted_in_record_token4, + STATE(7045), 1, sym_comment, - [239220] = 5, + STATE(7323), 1, + sym__expr_parenthesized_immediate, + [234825] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2091), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - ACTIONS(2095), 1, + ACTIONS(4680), 1, aux_sym_unquoted_token4, - ACTIONS(11545), 1, - sym__space, - STATE(7304), 1, + STATE(7046), 1, sym_comment, - [239236] = 5, + STATE(7332), 1, + sym__expr_parenthesized_immediate, + [234841] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8166), 1, + ACTIONS(5552), 1, sym__entry_separator, - ACTIONS(8170), 1, + ACTIONS(11162), 1, anon_sym_RBRACK, - ACTIONS(11547), 1, - anon_sym_LT, - STATE(7305), 1, + STATE(2593), 1, + aux_sym__multiple_types_repeat1, + STATE(7047), 1, sym_comment, - [239252] = 5, + [234857] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8166), 1, + ACTIONS(11164), 1, + sym__table_head_separator, + STATE(7048), 1, + sym_comment, + ACTIONS(1076), 2, + anon_sym_RBRACK, sym__entry_separator, - ACTIONS(8170), 1, + [234871] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10706), 1, + sym_hex_digit, + ACTIONS(11166), 1, anon_sym_RBRACK, - ACTIONS(11549), 1, - anon_sym_LT, - STATE(7306), 1, + STATE(7049), 1, sym_comment, - [239268] = 5, + STATE(7077), 1, + aux_sym_val_binary_repeat1, + [234887] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(7040), 1, - sym_val_list, - STATE(7307), 1, + ACTIONS(10706), 1, + sym_hex_digit, + ACTIONS(11168), 1, + anon_sym_RBRACK, + STATE(7050), 1, sym_comment, - STATE(7367), 1, - aux_sym_val_table_repeat1, - [239284] = 5, + STATE(7151), 1, + aux_sym_val_binary_repeat1, + [234903] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - ACTIONS(7183), 1, - aux_sym_unquoted_token4, - STATE(7308), 1, + ACTIONS(11170), 1, + sym__table_head_separator, + STATE(7051), 1, sym_comment, - STATE(7619), 1, - sym__expr_parenthesized_immediate, - [239300] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2279), 1, + ACTIONS(1076), 2, + anon_sym_RBRACK, sym__entry_separator, - ACTIONS(2301), 1, - anon_sym_RBRACE, - STATE(516), 1, - aux_sym__multiple_types_repeat1, - STATE(7309), 1, - sym_comment, - [239316] = 3, + [234917] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7310), 1, + STATE(7052), 1, sym_comment, - ACTIONS(10950), 3, + ACTIONS(10144), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [239328] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(7176), 1, - sym_val_list, - STATE(7311), 1, - sym_comment, - STATE(7367), 1, - aux_sym_val_table_repeat1, - [239344] = 5, - ACTIONS(247), 1, + [234929] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(7181), 1, - sym_val_list, - STATE(7312), 1, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + ACTIONS(11172), 1, + sym__space, + STATE(7053), 1, sym_comment, - STATE(7367), 1, - aux_sym_val_table_repeat1, - [239360] = 3, + [234945] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7313), 1, + STATE(7054), 1, sym_comment, - ACTIONS(10291), 3, + ACTIONS(10522), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [239372] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(7257), 1, - sym_val_list, - STATE(7314), 1, - sym_comment, - STATE(7367), 1, - aux_sym_val_table_repeat1, - [239388] = 5, + [234957] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1527), 1, - anon_sym_LPAREN2, - ACTIONS(1539), 1, - aux_sym__unquoted_in_record_token4, - STATE(7315), 1, + ACTIONS(11174), 1, + anon_sym_DQUOTE, + STATE(7055), 1, sym_comment, - STATE(7599), 1, - sym__expr_parenthesized_immediate, - [239404] = 5, + ACTIONS(11176), 2, + sym__escaped_str_content, + sym_escape_sequence, + [234971] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11551), 1, + ACTIONS(11178), 1, anon_sym_RBRACK, - STATE(6890), 1, + STATE(6139), 1, aux_sym__multiple_types_repeat1, - STATE(7316), 1, - sym_comment, - [239420] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7317), 1, - sym_comment, - ACTIONS(10950), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [239432] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11553), 1, - aux_sym_cmd_identifier_token41, - STATE(7318), 1, - sym_comment, - ACTIONS(11555), 2, - sym_filesize_unit, - sym_duration_unit, - [239446] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11048), 1, - sym_hex_digit, - ACTIONS(11557), 1, - anon_sym_RBRACK, - STATE(7319), 1, - sym_comment, - STATE(7333), 1, - aux_sym_val_binary_repeat1, - [239462] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7320), 1, + STATE(7056), 1, sym_comment, - ACTIONS(11559), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [239474] = 5, + [234987] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7321), 1, + STATE(6768), 1, + aux_sym_val_table_repeat1, + STATE(7057), 1, sym_comment, - STATE(7364), 1, + STATE(7078), 1, sym_val_list, - STATE(7367), 1, - aux_sym_val_table_repeat1, - [239490] = 3, + [235003] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(7322), 1, + ACTIONS(8379), 1, + aux_sym_unquoted_token2, + STATE(7058), 1, sym_comment, - ACTIONS(10126), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [239502] = 3, - ACTIONS(247), 1, + ACTIONS(1587), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [235017] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7323), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(11180), 1, + anon_sym_RBRACK, + STATE(2592), 1, + aux_sym__multiple_types_repeat1, + STATE(7059), 1, sym_comment, - ACTIONS(10785), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [239514] = 3, + [235033] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7324), 1, + STATE(7060), 1, sym_comment, - ACTIONS(10461), 3, + ACTIONS(10626), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [239526] = 3, + [235045] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(7325), 1, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(6768), 1, + aux_sym_val_table_repeat1, + STATE(7018), 1, + sym_val_list, + STATE(7061), 1, sym_comment, - ACTIONS(10126), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [239538] = 3, + [235061] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(7326), 1, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(6768), 1, + aux_sym_val_table_repeat1, + STATE(7025), 1, + sym_val_list, + STATE(7062), 1, sym_comment, - ACTIONS(10469), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [239550] = 3, - ACTIONS(247), 1, + [235077] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7327), 1, + ACTIONS(11182), 1, + anon_sym_LPAREN, + STATE(7063), 1, sym_comment, - ACTIONS(10150), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [239562] = 5, + ACTIONS(11184), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [235091] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5745), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11561), 1, + ACTIONS(11186), 1, anon_sym_RBRACK, - STATE(2793), 1, + STATE(6140), 1, aux_sym__multiple_types_repeat1, - STATE(7328), 1, + STATE(7064), 1, sym_comment, - [239578] = 5, - ACTIONS(247), 1, + [235107] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3269), 1, - aux_sym_record_entry_token1, - ACTIONS(6298), 1, - aux_sym_ctrl_match_token1, - STATE(4872), 1, - sym_block, - STATE(7329), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(11188), 1, + anon_sym_RBRACK, + STATE(6141), 1, + aux_sym__multiple_types_repeat1, + STATE(7065), 1, sym_comment, - [239594] = 3, + [235123] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(7330), 1, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(6768), 1, + aux_sym_val_table_repeat1, + STATE(7019), 1, + sym_val_list, + STATE(7066), 1, sym_comment, - ACTIONS(10475), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [239606] = 3, + [235139] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(7331), 1, - sym_comment, - ACTIONS(10182), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [239618] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - ACTIONS(4817), 1, - aux_sym_unquoted_token4, - STATE(7332), 1, + ACTIONS(11192), 1, + anon_sym_COMMA, + STATE(7067), 1, sym_comment, - STATE(7615), 1, - sym__expr_parenthesized_immediate, - [239634] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11048), 1, - sym_hex_digit, - ACTIONS(11563), 1, + ACTIONS(11190), 2, anon_sym_RBRACK, - STATE(7162), 1, - aux_sym_val_binary_repeat1, - STATE(7333), 1, - sym_comment, - [239650] = 5, + sym_hex_digit, + [235153] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11565), 1, + ACTIONS(11194), 1, anon_sym_RBRACK, - STATE(6457), 1, + STATE(6142), 1, aux_sym__multiple_types_repeat1, - STATE(7334), 1, + STATE(7068), 1, sym_comment, - [239666] = 3, - ACTIONS(247), 1, + [235169] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7335), 1, - sym_comment, - ACTIONS(10479), 3, - ts_builtin_sym_end, + ACTIONS(4914), 1, + sym__space, + ACTIONS(4916), 1, sym__newline, - anon_sym_SEMI, - [239678] = 5, + ACTIONS(11196), 1, + anon_sym_EQ2, + STATE(7069), 1, + sym_comment, + [235185] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11048), 1, - sym_hex_digit, - ACTIONS(11567), 1, - anon_sym_RBRACK, - STATE(7162), 1, - aux_sym_val_binary_repeat1, - STATE(7336), 1, + ACTIONS(1643), 1, + aux_sym_unquoted_token2, + STATE(7070), 1, sym_comment, - [239694] = 5, + ACTIONS(1645), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [235199] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1525), 1, - anon_sym_RBRACK, - ACTIONS(1537), 1, - sym__entry_separator, - ACTIONS(5635), 1, - aux_sym__unquoted_in_list_token2, - STATE(7337), 1, + ACTIONS(2261), 1, + sym__space, + STATE(7071), 1, sym_comment, - [239710] = 3, - ACTIONS(247), 1, + ACTIONS(2259), 2, + sym__newline, + aux_sym_unquoted_token4, + [235213] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7338), 1, + ACTIONS(5552), 1, + sym__entry_separator, + ACTIONS(11198), 1, + anon_sym_RBRACK, + STATE(2577), 1, + aux_sym__multiple_types_repeat1, + STATE(7072), 1, sym_comment, - ACTIONS(10966), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [239722] = 5, + [235229] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5552), 1, sym__entry_separator, - ACTIONS(11569), 1, + ACTIONS(11200), 1, anon_sym_RBRACK, - STATE(6458), 1, + STATE(2578), 1, aux_sym__multiple_types_repeat1, - STATE(7339), 1, + STATE(7073), 1, sym_comment, - [239738] = 5, + [235245] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11571), 1, + ACTIONS(11202), 1, anon_sym_RBRACK, - STATE(6460), 1, + STATE(6143), 1, aux_sym__multiple_types_repeat1, - STATE(7340), 1, + STATE(7074), 1, sym_comment, - [239754] = 3, + [235261] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7341), 1, + STATE(7075), 1, sym_comment, - ACTIONS(10968), 3, + ACTIONS(10614), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [239766] = 5, + [235273] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11573), 1, + ACTIONS(11204), 1, anon_sym_RBRACK, - STATE(6473), 1, + STATE(6237), 1, aux_sym__multiple_types_repeat1, - STATE(7342), 1, + STATE(7076), 1, sym_comment, - [239782] = 5, - ACTIONS(3), 1, + [235289] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(11575), 1, + ACTIONS(10706), 1, + sym_hex_digit, + ACTIONS(11206), 1, anon_sym_RBRACK, - STATE(6475), 1, - aux_sym__multiple_types_repeat1, - STATE(7343), 1, + STATE(7077), 1, sym_comment, - [239798] = 5, + STATE(7151), 1, + aux_sym_val_binary_repeat1, + [235305] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11577), 1, + ACTIONS(11208), 1, anon_sym_RBRACK, - STATE(6817), 1, + STATE(6526), 1, aux_sym__multiple_types_repeat1, - STATE(7344), 1, + STATE(7078), 1, sym_comment, - [239814] = 5, + [235321] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11579), 1, + ACTIONS(11210), 1, anon_sym_RBRACK, - STATE(6478), 1, + STATE(6216), 1, aux_sym__multiple_types_repeat1, - STATE(7345), 1, + STATE(7079), 1, sym_comment, - [239830] = 5, + [235337] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(6360), 1, sym__entry_separator, - ACTIONS(11581), 1, + ACTIONS(11212), 1, anon_sym_RBRACK, - STATE(6818), 1, + STATE(3372), 1, aux_sym__multiple_types_repeat1, - STATE(7346), 1, + STATE(7080), 1, sym_comment, - [239846] = 5, + [235353] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(2467), 1, sym__entry_separator, - ACTIONS(11583), 1, - anon_sym_RBRACK, - STATE(6819), 1, - aux_sym__multiple_types_repeat1, - STATE(7347), 1, + STATE(7081), 1, sym_comment, - [239862] = 5, + ACTIONS(2465), 2, + anon_sym_RBRACE, + anon_sym__, + [235367] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(2471), 1, sym__entry_separator, - ACTIONS(11585), 1, - anon_sym_RBRACK, - STATE(6820), 1, - aux_sym__multiple_types_repeat1, - STATE(7348), 1, + STATE(7082), 1, sym_comment, - [239878] = 5, + ACTIONS(2469), 2, + anon_sym_RBRACE, + anon_sym__, + [235381] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(2475), 1, sym__entry_separator, - ACTIONS(11587), 1, - anon_sym_RBRACK, - STATE(6479), 1, - aux_sym__multiple_types_repeat1, - STATE(7349), 1, + STATE(7083), 1, sym_comment, - [239894] = 5, + ACTIONS(2473), 2, + anon_sym_RBRACE, + anon_sym__, + [235395] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11589), 1, + ACTIONS(11214), 1, anon_sym_RBRACK, - STATE(6821), 1, + STATE(6144), 1, aux_sym__multiple_types_repeat1, - STATE(7350), 1, + STATE(7084), 1, sym_comment, - [239910] = 5, + [235411] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11591), 1, + ACTIONS(11216), 1, anon_sym_RBRACK, - STATE(6822), 1, + STATE(6145), 1, aux_sym__multiple_types_repeat1, - STATE(7351), 1, + STATE(7085), 1, sym_comment, - [239926] = 5, + [235427] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(2067), 1, sym__entry_separator, - ACTIONS(11593), 1, - anon_sym_RBRACK, - STATE(6823), 1, - aux_sym__multiple_types_repeat1, - STATE(7352), 1, + STATE(7086), 1, sym_comment, - [239942] = 5, + ACTIONS(2061), 2, + anon_sym_RBRACE, + anon_sym__, + [235441] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11595), 1, - anon_sym_RBRACK, - STATE(6482), 1, + ACTIONS(9761), 1, + anon_sym_LBRACK, + STATE(2558), 1, aux_sym__multiple_types_repeat1, - STATE(7353), 1, + STATE(7087), 1, sym_comment, - [239958] = 5, + [235457] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11597), 1, + ACTIONS(11218), 1, anon_sym_RBRACK, - STATE(6824), 1, + STATE(6146), 1, aux_sym__multiple_types_repeat1, - STATE(7354), 1, + STATE(7088), 1, sym_comment, - [239974] = 4, + [235473] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7089), 1, + sym_comment, + ACTIONS(10028), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [235485] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - STATE(7355), 1, + ACTIONS(5458), 1, + anon_sym_LPAREN2, + ACTIONS(7005), 1, + aux_sym__unquoted_in_list_token4, + STATE(7090), 1, sym_comment, - ACTIONS(2097), 2, - sym_identifier, - anon_sym_DOLLAR, - [239988] = 4, + STATE(7333), 1, + sym__expr_parenthesized_immediate, + [235501] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(270), 1, - aux_sym__block_body_repeat1, - STATE(7356), 1, + ACTIONS(4749), 1, + aux_sym_ctrl_match_token1, + ACTIONS(11220), 1, + anon_sym_EQ2, + ACTIONS(11222), 1, + sym_short_flag_identifier, + STATE(7091), 1, sym_comment, - ACTIONS(145), 2, + [235517] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7092), 1, + sym_comment, + ACTIONS(9916), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [235529] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7093), 1, + sym_comment, + ACTIONS(9918), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [235541] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7094), 1, + sym_comment, + ACTIONS(9918), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [240002] = 4, + [235553] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2103), 1, + ACTIONS(2299), 1, aux_sym_unquoted_token4, - STATE(7357), 1, + STATE(7095), 1, sym_comment, - ACTIONS(2105), 2, + ACTIONS(2293), 2, sym_identifier, anon_sym_DOLLAR, - [240016] = 4, + [235567] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1631), 1, + aux_sym_unquoted_token2, + STATE(7096), 1, + sym_comment, + ACTIONS(1633), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [235581] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11599), 1, - sym__table_head_separator, - STATE(7358), 1, + ACTIONS(2241), 1, + aux_sym_unquoted_token4, + STATE(7097), 1, sym_comment, - ACTIONS(1006), 2, - anon_sym_RBRACK, - sym__entry_separator, - [240030] = 3, + ACTIONS(1076), 2, + sym_identifier, + anon_sym_DOLLAR, + [235595] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(7359), 1, + ACTIONS(3213), 1, + aux_sym_record_entry_token1, + ACTIONS(6078), 1, + aux_sym_ctrl_match_token1, + STATE(6628), 1, + sym_block, + STATE(7098), 1, + sym_comment, + [235611] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7099), 1, sym_comment, - ACTIONS(10984), 3, + ACTIONS(9940), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [240042] = 3, + [235623] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2293), 1, + sym__newline, + ACTIONS(2297), 1, + sym__space, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(7100), 1, + sym_comment, + [235639] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7360), 1, + STATE(7101), 1, sym_comment, - ACTIONS(10996), 3, + ACTIONS(10524), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [240054] = 4, + [235651] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11601), 1, - sym__table_head_separator, - STATE(7361), 1, - sym_comment, - ACTIONS(1006), 2, - anon_sym_RBRACK, + ACTIONS(2247), 1, sym__entry_separator, - [240068] = 5, + STATE(7102), 1, + sym_comment, + ACTIONS(2243), 2, + anon_sym_RBRACE, + anon_sym__, + [235665] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(2253), 1, sym__entry_separator, - ACTIONS(11603), 1, - anon_sym_RBRACK, - STATE(6799), 1, - aux_sym__multiple_types_repeat1, - STATE(7362), 1, + STATE(7103), 1, sym_comment, - [240084] = 5, + ACTIONS(2251), 2, + anon_sym_RBRACE, + anon_sym__, + [235679] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(7316), 1, - sym_val_list, - STATE(7363), 1, + ACTIONS(11224), 1, + aux_sym_cmd_identifier_token41, + STATE(7104), 1, sym_comment, - STATE(7367), 1, - aux_sym_val_table_repeat1, - [240100] = 5, - ACTIONS(3), 1, + ACTIONS(11226), 2, + sym_filesize_unit, + sym_duration_unit, + [235693] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(11605), 1, - anon_sym_RBRACK, - STATE(6680), 1, - aux_sym__multiple_types_repeat1, - STATE(7364), 1, + ACTIONS(3213), 1, + aux_sym_record_entry_token1, + ACTIONS(6078), 1, + aux_sym_ctrl_match_token1, + STATE(4731), 1, + sym_block, + STATE(7105), 1, sym_comment, - [240116] = 5, + [235709] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(7050), 1, - sym_val_list, - STATE(7365), 1, + STATE(7106), 1, sym_comment, - STATE(7367), 1, - aux_sym_val_table_repeat1, - [240132] = 5, + ACTIONS(10076), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [235721] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(7102), 1, - sym_val_list, - STATE(7366), 1, + STATE(7107), 1, sym_comment, - STATE(7367), 1, - aux_sym_val_table_repeat1, - [240148] = 4, + ACTIONS(10098), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [235733] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11607), 1, - anon_sym_LBRACK, - STATE(7698), 1, - sym_val_list, - STATE(7367), 2, + STATE(7108), 1, sym_comment, - aux_sym_val_table_repeat1, - [240162] = 5, + ACTIONS(10544), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [235745] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(7110), 1, - sym_val_list, - STATE(7367), 1, - aux_sym_val_table_repeat1, - STATE(7368), 1, + ACTIONS(1643), 1, + aux_sym_unquoted_token2, + STATE(7109), 1, sym_comment, - [240178] = 5, + ACTIONS(1645), 2, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + [235759] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(7154), 1, - sym_val_list, - STATE(7367), 1, - aux_sym_val_table_repeat1, - STATE(7369), 1, + STATE(7110), 1, sym_comment, - [240194] = 5, - ACTIONS(247), 1, + ACTIONS(9783), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [235771] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3269), 1, - aux_sym_record_entry_token1, - ACTIONS(6298), 1, - aux_sym_ctrl_match_token1, - STATE(6515), 1, - sym_block, - STATE(7370), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(11228), 1, + anon_sym_RBRACK, + STATE(6576), 1, + aux_sym__multiple_types_repeat1, + STATE(7111), 1, + sym_comment, + [235787] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(11230), 1, + anon_sym_RBRACK, + STATE(6577), 1, + aux_sym__multiple_types_repeat1, + STATE(7112), 1, + sym_comment, + [235803] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(11232), 1, + anon_sym_RBRACK, + STATE(6578), 1, + aux_sym__multiple_types_repeat1, + STATE(7113), 1, + sym_comment, + [235819] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(11234), 1, + anon_sym_RBRACK, + STATE(6579), 1, + aux_sym__multiple_types_repeat1, + STATE(7114), 1, sym_comment, - [240210] = 3, + [235835] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(7371), 1, - sym_comment, - ACTIONS(2255), 3, - anon_sym_RBRACK, + ACTIONS(5537), 1, sym__entry_separator, - sym__table_head_separator, - [240222] = 5, + ACTIONS(11236), 1, + anon_sym_RBRACK, + STATE(6580), 1, + aux_sym__multiple_types_repeat1, + STATE(7115), 1, + sym_comment, + [235851] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11610), 1, + ACTIONS(11238), 1, anon_sym_RBRACK, - STATE(6759), 1, + STATE(6581), 1, aux_sym__multiple_types_repeat1, - STATE(7372), 1, + STATE(7116), 1, sym_comment, - [240238] = 4, + [235867] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11612), 1, - sym__table_head_separator, - STATE(7373), 1, - sym_comment, - ACTIONS(1006), 2, - anon_sym_RBRACK, + ACTIONS(5537), 1, sym__entry_separator, - [240252] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(7367), 1, - aux_sym_val_table_repeat1, - STATE(7374), 1, + ACTIONS(11240), 1, + anon_sym_RBRACK, + STATE(6582), 1, + aux_sym__multiple_types_repeat1, + STATE(7117), 1, sym_comment, - STATE(7529), 1, - sym_val_list, - [240268] = 4, - ACTIONS(3), 1, + [235883] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11614), 1, - sym__table_head_separator, - STATE(7375), 1, + STATE(7118), 1, sym_comment, - ACTIONS(1006), 2, - anon_sym_RBRACK, - sym__entry_separator, - [240282] = 5, + ACTIONS(10174), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [235895] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(7239), 1, - sym_val_list, - STATE(7367), 1, - aux_sym_val_table_repeat1, - STATE(7376), 1, + ACTIONS(10706), 1, + sym_hex_digit, + ACTIONS(11242), 1, + anon_sym_RBRACK, + STATE(7119), 1, sym_comment, - [240298] = 5, - ACTIONS(247), 1, + STATE(7139), 1, + aux_sym_val_binary_repeat1, + [235911] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(7242), 1, - sym_val_list, - STATE(7367), 1, - aux_sym_val_table_repeat1, - STATE(7377), 1, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(11244), 1, + anon_sym_RBRACK, + STATE(6583), 1, + aux_sym__multiple_types_repeat1, + STATE(7120), 1, sym_comment, - [240314] = 5, - ACTIONS(247), 1, + [235927] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(7244), 1, - sym_val_list, - STATE(7367), 1, - aux_sym_val_table_repeat1, - STATE(7378), 1, + ACTIONS(1845), 1, + sym__entry_separator, + STATE(7121), 1, sym_comment, - [240330] = 5, + ACTIONS(1843), 2, + anon_sym_RBRACE, + anon_sym__, + [235941] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(7245), 1, - sym_val_list, - STATE(7367), 1, - aux_sym_val_table_repeat1, - STATE(7379), 1, + STATE(7122), 1, sym_comment, - [240346] = 4, + ACTIONS(10412), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [235953] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11616), 1, + ACTIONS(11246), 1, sym__table_head_separator, - STATE(7380), 1, + STATE(7123), 1, sym_comment, - ACTIONS(1006), 2, + ACTIONS(1076), 2, anon_sym_RBRACK, sym__entry_separator, - [240360] = 4, - ACTIONS(247), 1, + [235967] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10693), 1, - aux_sym_cmd_identifier_token41, - STATE(7381), 1, + ACTIONS(2243), 1, + sym__newline, + ACTIONS(2247), 1, + sym__space, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + STATE(7124), 1, sym_comment, - ACTIONS(10695), 2, - sym_filesize_unit, - sym_duration_unit, - [240374] = 4, + [235983] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + ACTIONS(2251), 1, + sym__newline, + ACTIONS(2253), 1, + sym__space, + STATE(7125), 1, + sym_comment, + [235999] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11618), 1, + ACTIONS(11248), 1, sym__table_head_separator, - STATE(7382), 1, + STATE(7126), 1, sym_comment, - ACTIONS(1006), 2, + ACTIONS(1076), 2, anon_sym_RBRACK, sym__entry_separator, - [240388] = 5, + [236013] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4976), 1, + sym__entry_separator, + STATE(7127), 1, + sym_comment, + ACTIONS(4979), 2, + anon_sym_RBRACE, + anon_sym__, + [236027] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7347), 1, + STATE(6743), 1, sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7383), 1, + STATE(7128), 1, sym_comment, - [240404] = 5, + [236043] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7350), 1, - sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7384), 1, + STATE(6823), 1, + sym_val_list, + STATE(7129), 1, sym_comment, - [240420] = 3, + [236059] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(7385), 1, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(6768), 1, + aux_sym_val_table_repeat1, + STATE(6827), 1, + sym_val_list, + STATE(7130), 1, sym_comment, - ACTIONS(10493), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [240432] = 5, + [236075] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7352), 1, - sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7386), 1, + STATE(6884), 1, + sym_val_list, + STATE(7131), 1, sym_comment, - [240448] = 5, + [236091] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(7354), 1, - sym_val_list, - STATE(7367), 1, - aux_sym_val_table_repeat1, - STATE(7387), 1, + STATE(7132), 1, + sym_comment, + ACTIONS(10628), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [236103] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1705), 1, + aux_sym_unquoted_token2, + STATE(7133), 1, sym_comment, - [240464] = 4, + ACTIONS(1707), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [236117] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11620), 1, + ACTIONS(11250), 1, sym__table_head_separator, - STATE(7388), 1, + STATE(7134), 1, sym_comment, - ACTIONS(1006), 2, + ACTIONS(1076), 2, anon_sym_RBRACK, sym__entry_separator, - [240478] = 4, + [236131] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + ACTIONS(4618), 1, + aux_sym_unquoted_token4, + STATE(7135), 1, + sym_comment, + STATE(7411), 1, + sym__expr_parenthesized_immediate, + [236147] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11622), 1, + ACTIONS(11252), 1, sym__table_head_separator, - STATE(7389), 1, + STATE(7136), 1, sym_comment, - ACTIONS(1006), 2, + ACTIONS(1076), 2, anon_sym_RBRACK, sym__entry_separator, - [240492] = 5, + [236161] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7274), 1, - sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7390), 1, + STATE(6992), 1, + sym_val_list, + STATE(7137), 1, sym_comment, - [240508] = 5, + [236177] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7284), 1, - sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7391), 1, + STATE(6996), 1, + sym_val_list, + STATE(7138), 1, sym_comment, - [240524] = 3, + [236193] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(7392), 1, + ACTIONS(10706), 1, + sym_hex_digit, + ACTIONS(11254), 1, + anon_sym_RBRACK, + STATE(7139), 1, sym_comment, - ACTIONS(10697), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [240536] = 5, + STATE(7151), 1, + aux_sym_val_binary_repeat1, + [236209] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7290), 1, - sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7393), 1, + STATE(6999), 1, + sym_val_list, + STATE(7140), 1, sym_comment, - [240552] = 5, + [236225] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7293), 1, - sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7394), 1, + STATE(7000), 1, + sym_val_list, + STATE(7141), 1, sym_comment, - [240568] = 5, + [236241] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11048), 1, - sym_hex_digit, - ACTIONS(11624), 1, - anon_sym_RBRACK, - STATE(7395), 1, + STATE(7142), 1, sym_comment, - STATE(7420), 1, - aux_sym_val_binary_repeat1, - [240584] = 4, + ACTIONS(10130), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [236253] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11626), 1, + ACTIONS(11256), 1, sym__table_head_separator, - STATE(7396), 1, + STATE(7143), 1, sym_comment, - ACTIONS(1006), 2, + ACTIONS(1076), 2, anon_sym_RBRACK, sym__entry_separator, - [240598] = 3, - ACTIONS(247), 1, + [236267] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7397), 1, + ACTIONS(1794), 1, + sym__entry_separator, + STATE(7144), 1, sym_comment, - ACTIONS(10972), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [240610] = 4, + ACTIONS(1786), 2, + anon_sym_RBRACE, + anon_sym__, + [236281] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11628), 1, + ACTIONS(11258), 1, sym__table_head_separator, - STATE(7398), 1, + STATE(7145), 1, sym_comment, - ACTIONS(1006), 2, + ACTIONS(1076), 2, anon_sym_RBRACK, sym__entry_separator, - [240624] = 5, + [236295] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7340), 1, - sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7399), 1, + STATE(7065), 1, + sym_val_list, + STATE(7146), 1, sym_comment, - [240640] = 5, + [236311] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7343), 1, - sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7400), 1, + STATE(7074), 1, + sym_val_list, + STATE(7147), 1, sym_comment, - [240656] = 5, + [236327] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7349), 1, - sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7401), 1, + STATE(7085), 1, + sym_val_list, + STATE(7148), 1, sym_comment, - [240672] = 5, + [236343] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7353), 1, - sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7402), 1, - sym_comment, - [240688] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7403), 1, + STATE(7088), 1, + sym_val_list, + STATE(7149), 1, sym_comment, - ACTIONS(10972), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [240700] = 4, + [236359] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11630), 1, + ACTIONS(11260), 1, sym__table_head_separator, - STATE(7404), 1, + STATE(7150), 1, sym_comment, - ACTIONS(1006), 2, + ACTIONS(1076), 2, anon_sym_RBRACK, sym__entry_separator, - [240714] = 4, + [236373] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11262), 1, + anon_sym_RBRACK, + ACTIONS(11264), 1, + sym_hex_digit, + STATE(7151), 2, + sym_comment, + aux_sym_val_binary_repeat1, + [236387] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11632), 1, + ACTIONS(11267), 1, sym__table_head_separator, - STATE(7405), 1, + STATE(7152), 1, sym_comment, - ACTIONS(1006), 2, + ACTIONS(1076), 2, anon_sym_RBRACK, sym__entry_separator, - [240728] = 5, + [236401] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(11269), 1, + anon_sym_RBRACK, + STATE(6157), 1, + aux_sym__multiple_types_repeat1, + STATE(7153), 1, + sym_comment, + [236417] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7406), 1, - sym_comment, - STATE(7442), 1, + STATE(7113), 1, sym_val_list, - [240744] = 5, + STATE(7154), 1, + sym_comment, + [236433] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7407), 1, - sym_comment, - STATE(7452), 1, + STATE(7115), 1, sym_val_list, - [240760] = 5, + STATE(7155), 1, + sym_comment, + [236449] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7408), 1, - sym_comment, - STATE(7460), 1, + STATE(7117), 1, sym_val_list, - [240776] = 5, + STATE(7156), 1, + sym_comment, + [236465] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7409), 1, - sym_comment, - STATE(7469), 1, + STATE(7120), 1, sym_val_list, - [240792] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7410), 1, + STATE(7157), 1, sym_comment, - ACTIONS(10501), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [240804] = 4, + [236481] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11634), 1, + ACTIONS(11271), 1, sym__table_head_separator, - STATE(7411), 1, + STATE(7158), 1, sym_comment, - ACTIONS(1006), 2, + ACTIONS(1076), 2, anon_sym_RBRACK, sym__entry_separator, - [240818] = 5, + [236495] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5745), 1, + ACTIONS(2297), 1, sym__entry_separator, - ACTIONS(11636), 1, - anon_sym_RBRACK, - STATE(2827), 1, - aux_sym__multiple_types_repeat1, - STATE(7412), 1, + STATE(7159), 1, sym_comment, - [240834] = 4, + ACTIONS(2293), 2, + anon_sym_RBRACE, + anon_sym__, + [236509] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11638), 1, + ACTIONS(11273), 1, sym__table_head_separator, - STATE(7413), 1, + STATE(7160), 1, sym_comment, - ACTIONS(1006), 2, + ACTIONS(1076), 2, anon_sym_RBRACK, sym__entry_separator, - [240848] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - ACTIONS(4122), 1, - aux_sym_unquoted_token4, - STATE(7414), 1, - sym_comment, - STATE(7677), 1, - sym__expr_parenthesized_immediate, - [240864] = 5, + [236523] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7415), 1, + STATE(7161), 1, sym_comment, - STATE(7531), 1, + STATE(7175), 1, sym_val_list, - [240880] = 5, + [236539] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7416), 1, + STATE(7162), 1, sym_comment, - STATE(7536), 1, + STATE(7187), 1, sym_val_list, - [240896] = 5, + [236555] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7417), 1, + STATE(7163), 1, sym_comment, - STATE(7539), 1, + STATE(7199), 1, sym_val_list, - [240912] = 5, + [236571] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(6948), 1, - sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7418), 1, + STATE(7164), 1, sym_comment, - [240928] = 4, + STATE(7207), 1, + sym_val_list, + [236587] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11640), 1, + ACTIONS(11275), 1, sym__table_head_separator, - STATE(7419), 1, + STATE(7165), 1, sym_comment, - ACTIONS(1006), 2, + ACTIONS(1076), 2, anon_sym_RBRACK, sym__entry_separator, - [240942] = 5, - ACTIONS(247), 1, + [236601] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11048), 1, - sym_hex_digit, - ACTIONS(11642), 1, - anon_sym_RBRACK, - STATE(7162), 1, - aux_sym_val_binary_repeat1, - STATE(7420), 1, + ACTIONS(10604), 1, + anon_sym_LPAREN, + STATE(7166), 1, sym_comment, - [240958] = 4, + ACTIONS(10606), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [236615] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11644), 1, + ACTIONS(11277), 1, sym__table_head_separator, - STATE(7421), 1, + STATE(7167), 1, sym_comment, - ACTIONS(1006), 2, + ACTIONS(1076), 2, anon_sym_RBRACK, sym__entry_separator, - [240972] = 5, + [236629] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(10706), 1, + sym_hex_digit, + ACTIONS(11279), 1, + anon_sym_RBRACK, + STATE(6674), 1, + aux_sym_val_binary_repeat1, + STATE(7168), 1, + sym_comment, + [236645] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(6965), 1, + STATE(6664), 1, sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7422), 1, + STATE(7169), 1, sym_comment, - [240988] = 5, + [236661] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(6967), 1, + STATE(6666), 1, sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7423), 1, + STATE(7170), 1, + sym_comment, + [236677] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(11281), 1, + anon_sym_RBRACK, + STATE(6158), 1, + aux_sym__multiple_types_repeat1, + STATE(7171), 1, sym_comment, - [241004] = 5, + [236693] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(6969), 1, + STATE(6669), 1, sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7424), 1, + STATE(7172), 1, sym_comment, - [241020] = 5, + [236709] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(6972), 1, + STATE(6670), 1, sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7425), 1, + STATE(7173), 1, sym_comment, - [241036] = 4, + [236725] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11646), 1, + ACTIONS(11283), 1, sym__table_head_separator, - STATE(7426), 1, + STATE(7174), 1, sym_comment, - ACTIONS(1006), 2, + ACTIONS(1076), 2, anon_sym_RBRACK, sym__entry_separator, - [241050] = 5, + [236739] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11648), 1, + ACTIONS(11285), 1, anon_sym_RBRACK, - STATE(6733), 1, + STATE(6159), 1, aux_sym__multiple_types_repeat1, - STATE(7427), 1, + STATE(7175), 1, sym_comment, - [241066] = 4, + [236755] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11650), 1, + ACTIONS(11287), 1, sym__table_head_separator, - STATE(7428), 1, + STATE(7176), 1, sym_comment, - ACTIONS(1006), 2, + ACTIONS(1076), 2, anon_sym_RBRACK, sym__entry_separator, - [241080] = 5, + [236769] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(11289), 1, + anon_sym_RBRACK, + STATE(6160), 1, + aux_sym__multiple_types_repeat1, + STATE(7177), 1, + sym_comment, + [236785] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(6990), 1, + STATE(6687), 1, sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7429), 1, + STATE(7178), 1, sym_comment, - [241096] = 5, + [236801] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(6993), 1, + STATE(6689), 1, sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7430), 1, - sym_comment, - [241112] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7431), 1, + STATE(7179), 1, sym_comment, - ACTIONS(11652), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [241124] = 5, + [236817] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(6997), 1, + STATE(6692), 1, sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7432), 1, + STATE(7180), 1, sym_comment, - [241140] = 5, + [236833] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(6998), 1, + STATE(6693), 1, sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7433), 1, + STATE(7181), 1, sym_comment, - [241156] = 4, + [236849] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11654), 1, + ACTIONS(11291), 1, sym__table_head_separator, - STATE(7434), 1, + STATE(7182), 1, sym_comment, - ACTIONS(1006), 2, + ACTIONS(1076), 2, anon_sym_RBRACK, sym__entry_separator, - [241170] = 4, + [236863] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11656), 1, + ACTIONS(11293), 1, sym__table_head_separator, - STATE(7435), 1, + STATE(7183), 1, sym_comment, - ACTIONS(1006), 2, + ACTIONS(1076), 2, anon_sym_RBRACK, sym__entry_separator, - [241184] = 5, - ACTIONS(3), 1, + [236877] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(11658), 1, - anon_sym_RBRACK, - STATE(6498), 1, - aux_sym__multiple_types_repeat1, - STATE(7436), 1, + STATE(7184), 1, sym_comment, - [241200] = 5, + ACTIONS(9797), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [236889] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7021), 1, + STATE(6709), 1, sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7437), 1, + STATE(7185), 1, sym_comment, - [241216] = 5, + [236905] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7023), 1, + STATE(6712), 1, sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7438), 1, + STATE(7186), 1, sym_comment, - [241232] = 5, + [236921] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11660), 1, + ACTIONS(11295), 1, anon_sym_RBRACK, - STATE(6738), 1, + STATE(6161), 1, aux_sym__multiple_types_repeat1, - STATE(7439), 1, + STATE(7187), 1, sym_comment, - [241248] = 5, + [236937] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7026), 1, + STATE(6715), 1, sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7440), 1, + STATE(7188), 1, sym_comment, - [241264] = 5, + [236953] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7027), 1, + STATE(6718), 1, sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7441), 1, - sym_comment, - [241280] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(11662), 1, - anon_sym_RBRACK, - STATE(6741), 1, - aux_sym__multiple_types_repeat1, - STATE(7442), 1, + STATE(7189), 1, sym_comment, - [241296] = 4, + [236969] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11664), 1, + ACTIONS(11297), 1, sym__table_head_separator, - STATE(7443), 1, + STATE(7190), 1, sym_comment, - ACTIONS(1006), 2, + ACTIONS(1076), 2, anon_sym_RBRACK, sym__entry_separator, - [241310] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(11666), 1, - anon_sym_RBRACK, - STATE(6743), 1, - aux_sym__multiple_types_repeat1, - STATE(7444), 1, - sym_comment, - [241326] = 4, + [236983] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11668), 1, + ACTIONS(11299), 1, sym__table_head_separator, - STATE(7445), 1, + STATE(7191), 1, sym_comment, - ACTIONS(1006), 2, + ACTIONS(1076), 2, anon_sym_RBRACK, sym__entry_separator, - [241340] = 5, + [236997] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7043), 1, + STATE(6738), 1, sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7446), 1, + STATE(7192), 1, sym_comment, - [241356] = 5, + [237013] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7045), 1, + STATE(6741), 1, sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7447), 1, + STATE(7193), 1, sym_comment, - [241372] = 5, + [237029] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7048), 1, + STATE(6745), 1, sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7448), 1, + STATE(7194), 1, sym_comment, - [241388] = 5, + [237045] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7051), 1, + STATE(6748), 1, sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7449), 1, + STATE(7195), 1, sym_comment, - [241404] = 4, + [237061] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11670), 1, + ACTIONS(11301), 1, sym__table_head_separator, - STATE(7450), 1, + STATE(7196), 1, sym_comment, - ACTIONS(1006), 2, + ACTIONS(1076), 2, anon_sym_RBRACK, sym__entry_separator, - [241418] = 4, + [237075] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5537), 1, + sym__entry_separator, + ACTIONS(11303), 1, + anon_sym_RBRACK, + STATE(6162), 1, + aux_sym__multiple_types_repeat1, + STATE(7197), 1, + sym_comment, + [237091] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11672), 1, + ACTIONS(11305), 1, sym__table_head_separator, - STATE(7451), 1, + STATE(7198), 1, sym_comment, - ACTIONS(1006), 2, + ACTIONS(1076), 2, anon_sym_RBRACK, sym__entry_separator, - [241432] = 5, + [237105] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11674), 1, + ACTIONS(11307), 1, anon_sym_RBRACK, - STATE(6744), 1, + STATE(6163), 1, aux_sym__multiple_types_repeat1, - STATE(7452), 1, + STATE(7199), 1, sym_comment, - [241448] = 5, + [237121] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7069), 1, + STATE(6766), 1, sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7453), 1, + STATE(7200), 1, sym_comment, - [241464] = 5, + [237137] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7071), 1, - sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7454), 1, - sym_comment, - [241480] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7455), 1, + STATE(6769), 1, + sym_val_list, + STATE(7201), 1, sym_comment, - ACTIONS(11010), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [241492] = 5, + [237153] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7075), 1, - sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7456), 1, + STATE(6772), 1, + sym_val_list, + STATE(7202), 1, sym_comment, - [241508] = 5, + [237169] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7078), 1, - sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7457), 1, + STATE(6775), 1, + sym_val_list, + STATE(7203), 1, + sym_comment, + [237185] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11309), 1, + sym__table_head_separator, + STATE(7204), 1, sym_comment, - [241524] = 5, + ACTIONS(1076), 2, + anon_sym_RBRACK, + sym__entry_separator, + [237199] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11676), 1, + ACTIONS(11311), 1, anon_sym_RBRACK, - STATE(6747), 1, + STATE(6653), 1, aux_sym__multiple_types_repeat1, - STATE(7458), 1, + STATE(7205), 1, sym_comment, - [241540] = 4, + [237215] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11678), 1, + ACTIONS(11313), 1, sym__table_head_separator, - STATE(7459), 1, + STATE(7206), 1, sym_comment, - ACTIONS(1006), 2, + ACTIONS(1076), 2, anon_sym_RBRACK, sym__entry_separator, - [241554] = 5, + [237229] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11680), 1, + ACTIONS(11315), 1, anon_sym_RBRACK, - STATE(6748), 1, + STATE(6164), 1, aux_sym__multiple_types_repeat1, - STATE(7460), 1, + STATE(7207), 1, sym_comment, - [241570] = 5, + [237245] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7090), 1, - sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7461), 1, + STATE(6793), 1, + sym_val_list, + STATE(7208), 1, sym_comment, - [241586] = 5, + [237261] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7093), 1, - sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7462), 1, + STATE(6796), 1, + sym_val_list, + STATE(7209), 1, sym_comment, - [241602] = 5, + [237277] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7096), 1, - sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7463), 1, + STATE(6799), 1, + sym_val_list, + STATE(7210), 1, sym_comment, - [241618] = 5, + [237293] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7098), 1, - sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7464), 1, + STATE(6800), 1, + sym_val_list, + STATE(7211), 1, sym_comment, - [241634] = 4, + [237309] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11682), 1, + ACTIONS(11317), 1, sym__table_head_separator, - STATE(7465), 1, + STATE(7212), 1, sym_comment, - ACTIONS(1006), 2, + ACTIONS(1076), 2, anon_sym_RBRACK, sym__entry_separator, - [241648] = 4, + [237323] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11684), 1, + ACTIONS(11319), 1, sym__table_head_separator, - STATE(7466), 1, + STATE(7213), 1, sym_comment, - ACTIONS(1006), 2, + ACTIONS(1076), 2, anon_sym_RBRACK, sym__entry_separator, - [241662] = 5, + [237337] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7108), 1, - sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7467), 1, + STATE(6814), 1, + sym_val_list, + STATE(7214), 1, sym_comment, - [241678] = 5, + [237353] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7111), 1, - sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7468), 1, + STATE(6817), 1, + sym_val_list, + STATE(7215), 1, sym_comment, - [241694] = 5, + [237369] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(11686), 1, - anon_sym_RBRACK, - STATE(6749), 1, - aux_sym__multiple_types_repeat1, - STATE(7469), 1, + ACTIONS(11321), 1, + sym__table_head_separator, + STATE(7216), 1, sym_comment, - [241710] = 5, + ACTIONS(1076), 2, + anon_sym_RBRACK, + sym__entry_separator, + [237383] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7115), 1, - sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7470), 1, + STATE(6820), 1, + sym_val_list, + STATE(7217), 1, sym_comment, - [241726] = 5, + [237399] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7116), 1, - sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7471), 1, + STATE(6822), 1, + sym_val_list, + STATE(7218), 1, sym_comment, - [241742] = 4, + [237415] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11688), 1, + ACTIONS(11323), 1, sym__table_head_separator, - STATE(7472), 1, + STATE(7219), 1, sym_comment, - ACTIONS(1006), 2, + ACTIONS(1076), 2, anon_sym_RBRACK, sym__entry_separator, - [241756] = 4, + [237429] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1495), 1, + aux_sym_unquoted_token2, + STATE(7220), 1, + sym_comment, + ACTIONS(1794), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [237443] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11690), 1, + ACTIONS(11325), 1, sym__table_head_separator, - STATE(7473), 1, + STATE(7221), 1, sym_comment, - ACTIONS(1006), 2, + ACTIONS(1076), 2, anon_sym_RBRACK, sym__entry_separator, - [241770] = 5, - ACTIONS(3), 1, + [237457] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - ACTIONS(4302), 1, - aux_sym_unquoted_token4, - STATE(7474), 1, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(6768), 1, + aux_sym_val_table_repeat1, + STATE(6841), 1, + sym_val_list, + STATE(7222), 1, sym_comment, - STATE(7630), 1, - sym__expr_parenthesized_immediate, - [241786] = 5, + [237473] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7131), 1, - sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7475), 1, + STATE(6844), 1, + sym_val_list, + STATE(7223), 1, sym_comment, - [241802] = 5, + [237489] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7134), 1, - sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7476), 1, + STATE(6848), 1, + sym_val_list, + STATE(7224), 1, sym_comment, - [241818] = 4, + [237505] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1589), 1, - aux_sym_unquoted_token2, - STATE(7477), 1, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(6768), 1, + aux_sym_val_table_repeat1, + STATE(6849), 1, + sym_val_list, + STATE(7225), 1, sym_comment, - ACTIONS(1591), 2, - aux_sym_ctrl_match_token1, - anon_sym_LPAREN2, - [241832] = 5, + [237521] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11327), 1, + sym__table_head_separator, + STATE(7226), 1, + sym_comment, + ACTIONS(1076), 2, + anon_sym_RBRACK, + sym__entry_separator, + [237535] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2402), 1, + sym__entry_separator, + STATE(7227), 1, + sym_comment, + ACTIONS(2400), 2, + anon_sym_RBRACE, + anon_sym__, + [237549] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7137), 1, + STATE(6768), 1, + aux_sym_val_table_repeat1, + STATE(6867), 1, sym_val_list, - STATE(7367), 1, + STATE(7228), 1, + sym_comment, + [237565] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7478), 1, + STATE(6870), 1, + sym_val_list, + STATE(7229), 1, sym_comment, - [241848] = 5, + [237581] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7138), 1, + STATE(6768), 1, + aux_sym_val_table_repeat1, + STATE(6874), 1, sym_val_list, - STATE(7367), 1, + STATE(7230), 1, + sym_comment, + [237597] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7479), 1, + STATE(6875), 1, + sym_val_list, + STATE(7231), 1, sym_comment, - [241864] = 4, + [237613] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11692), 1, + ACTIONS(11329), 1, sym__table_head_separator, - STATE(7480), 1, + STATE(7232), 1, sym_comment, - ACTIONS(1006), 2, + ACTIONS(1076), 2, anon_sym_RBRACK, sym__entry_separator, - [241878] = 4, + [237627] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11694), 1, + ACTIONS(11331), 1, sym__table_head_separator, - STATE(7481), 1, + STATE(7233), 1, sym_comment, - ACTIONS(1006), 2, + ACTIONS(1076), 2, anon_sym_RBRACK, sym__entry_separator, - [241892] = 4, + [237641] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11696), 1, - aux_sym_cmd_identifier_token41, - STATE(7482), 1, + STATE(7234), 1, sym_comment, - ACTIONS(11698), 2, - sym_filesize_unit, - sym_duration_unit, - [241906] = 5, + ACTIONS(9797), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [237653] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7150), 1, - sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7483), 1, + STATE(6890), 1, + sym_val_list, + STATE(7235), 1, sym_comment, - [241922] = 5, + [237669] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7153), 1, + STATE(6768), 1, + aux_sym_val_table_repeat1, + STATE(6892), 1, sym_val_list, - STATE(7367), 1, + STATE(7236), 1, + sym_comment, + [237685] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7484), 1, + STATE(6896), 1, + sym_val_list, + STATE(7237), 1, sym_comment, - [241938] = 5, + [237701] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10050), 1, - anon_sym_if, - ACTIONS(11700), 1, - anon_sym_EQ_GT, - STATE(7485), 1, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(6768), 1, + aux_sym_val_table_repeat1, + STATE(6899), 1, + sym_val_list, + STATE(7238), 1, sym_comment, - STATE(7849), 1, - sym_match_guard, - [241954] = 5, + [237717] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11333), 1, + sym__table_head_separator, + STATE(7239), 1, + sym_comment, + ACTIONS(1076), 2, + anon_sym_RBRACK, + sym__entry_separator, + [237731] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11335), 1, + sym__table_head_separator, + STATE(7240), 1, + sym_comment, + ACTIONS(1076), 2, + anon_sym_RBRACK, + sym__entry_separator, + [237745] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7156), 1, + STATE(6768), 1, + aux_sym_val_table_repeat1, + STATE(6911), 1, sym_val_list, - STATE(7367), 1, + STATE(7241), 1, + sym_comment, + [237761] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7486), 1, + STATE(6914), 1, + sym_val_list, + STATE(7242), 1, sym_comment, - [241970] = 5, + [237777] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7158), 1, + STATE(6768), 1, + aux_sym_val_table_repeat1, + STATE(6918), 1, sym_val_list, - STATE(7367), 1, + STATE(7243), 1, + sym_comment, + [237793] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7487), 1, + STATE(6920), 1, + sym_val_list, + STATE(7244), 1, sym_comment, - [241986] = 4, + [237809] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11702), 1, + ACTIONS(11337), 1, sym__table_head_separator, - STATE(7488), 1, + STATE(7245), 1, sym_comment, - ACTIONS(1006), 2, + ACTIONS(1076), 2, anon_sym_RBRACK, sym__entry_separator, - [242000] = 4, + [237823] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11704), 1, + ACTIONS(11339), 1, sym__table_head_separator, - STATE(7489), 1, + STATE(7246), 1, sym_comment, - ACTIONS(1006), 2, + ACTIONS(1076), 2, anon_sym_RBRACK, sym__entry_separator, - [242014] = 3, + [237837] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(7490), 1, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(6768), 1, + aux_sym_val_table_repeat1, + STATE(6928), 1, + sym_val_list, + STATE(7247), 1, sym_comment, - ACTIONS(11706), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [242026] = 5, + [237853] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7166), 1, - sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7491), 1, + STATE(6930), 1, + sym_val_list, + STATE(7248), 1, sym_comment, - [242042] = 5, + [237869] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(7169), 1, - sym_val_list, - STATE(7367), 1, - aux_sym_val_table_repeat1, - STATE(7492), 1, + ACTIONS(9978), 1, + aux_sym_cmd_identifier_token41, + STATE(7249), 1, sym_comment, - [242058] = 5, + ACTIONS(9980), 2, + sym_filesize_unit, + sym_duration_unit, + [237883] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7172), 1, - sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7493), 1, + STATE(6933), 1, + sym_val_list, + STATE(7250), 1, sym_comment, - [242074] = 5, + [237899] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7173), 1, - sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7494), 1, + STATE(6935), 1, + sym_val_list, + STATE(7251), 1, sym_comment, - [242090] = 4, + [237915] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11708), 1, + ACTIONS(11341), 1, sym__table_head_separator, - STATE(7495), 1, + STATE(7252), 1, sym_comment, - ACTIONS(1006), 2, + ACTIONS(1076), 2, anon_sym_RBRACK, sym__entry_separator, - [242104] = 4, + [237929] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11710), 1, + ACTIONS(11343), 1, sym__table_head_separator, - STATE(7496), 1, + STATE(7253), 1, sym_comment, - ACTIONS(1006), 2, + ACTIONS(1076), 2, anon_sym_RBRACK, sym__entry_separator, - [242118] = 5, + [237943] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7184), 1, - sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7497), 1, + STATE(6943), 1, + sym_val_list, + STATE(7254), 1, sym_comment, - [242134] = 5, + [237959] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7186), 1, - sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7498), 1, + STATE(6946), 1, + sym_val_list, + STATE(7255), 1, sym_comment, - [242150] = 5, + [237975] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7189), 1, - sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7499), 1, + STATE(6950), 1, + sym_val_list, + STATE(7256), 1, sym_comment, - [242166] = 5, + [237991] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7191), 1, - sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7500), 1, + STATE(6951), 1, + sym_val_list, + STATE(7257), 1, sym_comment, - [242182] = 4, + [238007] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11712), 1, + ACTIONS(11345), 1, sym__table_head_separator, - STATE(7501), 1, + STATE(7258), 1, sym_comment, - ACTIONS(1006), 2, + ACTIONS(1076), 2, anon_sym_RBRACK, sym__entry_separator, - [242196] = 4, + [238021] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11714), 1, + ACTIONS(11347), 1, sym__table_head_separator, - STATE(7502), 1, + STATE(7259), 1, sym_comment, - ACTIONS(1006), 2, + ACTIONS(1076), 2, anon_sym_RBRACK, sym__entry_separator, - [242210] = 3, + [238035] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7503), 1, + STATE(7260), 1, sym_comment, - ACTIONS(11026), 3, + ACTIONS(9996), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [242222] = 5, + [238047] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7201), 1, - sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7504), 1, + STATE(6960), 1, + sym_val_list, + STATE(7261), 1, sym_comment, - [242238] = 5, + [238063] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7203), 1, - sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7505), 1, + STATE(6963), 1, + sym_val_list, + STATE(7262), 1, sym_comment, - [242254] = 5, + [238079] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7207), 1, - sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7506), 1, + STATE(6965), 1, + sym_val_list, + STATE(7263), 1, sym_comment, - [242270] = 5, + [238095] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7210), 1, - sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7507), 1, + STATE(6967), 1, + sym_val_list, + STATE(7264), 1, sym_comment, - [242286] = 4, + [238111] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11716), 1, + ACTIONS(11349), 1, sym__table_head_separator, - STATE(7508), 1, + STATE(7265), 1, sym_comment, - ACTIONS(1006), 2, + ACTIONS(1076), 2, anon_sym_RBRACK, sym__entry_separator, - [242300] = 4, + [238125] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11718), 1, + ACTIONS(11351), 1, sym__table_head_separator, - STATE(7509), 1, + STATE(7266), 1, sym_comment, - ACTIONS(1006), 2, + ACTIONS(1076), 2, anon_sym_RBRACK, sym__entry_separator, - [242314] = 5, + [238139] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7217), 1, - sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7510), 1, + STATE(6973), 1, + sym_val_list, + STATE(7267), 1, sym_comment, - [242330] = 5, + [238155] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7220), 1, - sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7511), 1, - sym_comment, - [242346] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2738), 1, - sym__newline, - ACTIONS(3743), 1, - anon_sym_RBRACE, - STATE(7060), 1, - aux_sym_shebang_repeat1, - STATE(7512), 1, + STATE(6976), 1, + sym_val_list, + STATE(7268), 1, sym_comment, - [242362] = 5, + [238171] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7222), 1, - sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7513), 1, + STATE(6979), 1, + sym_val_list, + STATE(7269), 1, sym_comment, - [242378] = 5, + [238187] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(8956), 1, anon_sym_LBRACK, - STATE(7224), 1, - sym_val_list, - STATE(7367), 1, + STATE(6768), 1, aux_sym_val_table_repeat1, - STATE(7514), 1, + STATE(6980), 1, + sym_val_list, + STATE(7270), 1, sym_comment, - [242394] = 5, + [238203] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(11720), 1, - anon_sym_RBRACK, - STATE(6925), 1, - aux_sym__multiple_types_repeat1, - STATE(7515), 1, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + STATE(7271), 1, + sym_comment, + ACTIONS(2243), 2, + sym_identifier, + anon_sym_DOLLAR, + [238217] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + STATE(7272), 1, + sym_comment, + ACTIONS(2251), 2, + sym_identifier, + anon_sym_DOLLAR, + [238231] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11353), 1, + anon_sym_LPAREN, + STATE(7273), 1, sym_comment, - [242410] = 3, + ACTIONS(11355), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [238245] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7516), 1, + STATE(7274), 1, sym_comment, - ACTIONS(10757), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [242422] = 5, + ACTIONS(6033), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [238257] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11048), 1, + ACTIONS(10706), 1, sym_hex_digit, - ACTIONS(11722), 1, + ACTIONS(11357), 1, anon_sym_RBRACK, - STATE(7517), 1, + STATE(6809), 1, + aux_sym_val_binary_repeat1, + STATE(7275), 1, sym_comment, - STATE(7524), 1, + [238273] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10706), 1, + sym_hex_digit, + ACTIONS(11359), 1, + anon_sym_RBRACK, + STATE(7276), 1, + sym_comment, + STATE(7282), 1, aux_sym_val_binary_repeat1, - [242438] = 5, + [238289] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11724), 1, + ACTIONS(11361), 1, anon_sym_RBRACK, - STATE(6730), 1, + STATE(6217), 1, aux_sym__multiple_types_repeat1, - STATE(7518), 1, + STATE(7277), 1, sym_comment, - [242454] = 3, + [238305] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(7519), 1, + ACTIONS(1755), 1, + aux_sym_unquoted_token2, + STATE(7278), 1, sym_comment, - ACTIONS(11726), 3, + ACTIONS(1757), 2, anon_sym_PIPE, - anon_sym_if, anon_sym_EQ_GT, - [242466] = 4, + [238319] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11728), 1, - sym__table_head_separator, - STATE(7520), 1, - sym_comment, - ACTIONS(1006), 2, - anon_sym_RBRACK, + ACTIONS(1804), 1, sym__entry_separator, - [242480] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(7367), 1, - aux_sym_val_table_repeat1, - STATE(7518), 1, - sym_val_list, - STATE(7521), 1, + STATE(7279), 1, sym_comment, - [242496] = 3, + ACTIONS(1796), 2, + anon_sym_RBRACE, + anon_sym__, + [238333] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(7522), 1, + ACTIONS(1755), 1, + aux_sym_unquoted_token2, + STATE(7280), 1, sym_comment, - ACTIONS(10885), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [242508] = 5, + ACTIONS(1757), 2, + aux_sym_ctrl_match_token1, + anon_sym_LPAREN2, + [238347] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - ACTIONS(7091), 1, + ACTIONS(3924), 1, aux_sym_unquoted_token4, - STATE(7523), 1, + STATE(7281), 1, sym_comment, - STATE(7719), 1, + STATE(7469), 1, sym__expr_parenthesized_immediate, - [242524] = 5, + [238363] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11048), 1, + ACTIONS(10706), 1, sym_hex_digit, - ACTIONS(11730), 1, + ACTIONS(11363), 1, anon_sym_RBRACK, - STATE(7162), 1, + STATE(7151), 1, aux_sym_val_binary_repeat1, - STATE(7524), 1, + STATE(7282), 1, sym_comment, - [242540] = 3, + [238379] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(7525), 1, + ACTIONS(8956), 1, + anon_sym_LBRACK, + STATE(6679), 1, + sym_val_list, + STATE(6768), 1, + aux_sym_val_table_repeat1, + STATE(7283), 1, sym_comment, - ACTIONS(10891), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [242552] = 5, + [238395] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(2370), 1, sym__entry_separator, - ACTIONS(11732), 1, - anon_sym_RBRACK, - STATE(6793), 1, - aux_sym__multiple_types_repeat1, - STATE(7526), 1, - sym_comment, - [242568] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5071), 1, - aux_sym_cmd_identifier_token41, - STATE(7527), 1, + STATE(7284), 1, sym_comment, - ACTIONS(11734), 2, - sym_filesize_unit, - sym_duration_unit, - [242582] = 4, + ACTIONS(2368), 2, + anon_sym_RBRACE, + anon_sym__, + [238409] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1589), 1, - aux_sym_unquoted_token2, - STATE(7528), 1, + STATE(7285), 1, sym_comment, - ACTIONS(1591), 2, + ACTIONS(6037), 3, anon_sym_PIPE, + anon_sym_if, anon_sym_EQ_GT, - [242596] = 5, + [238421] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11736), 1, + ACTIONS(11365), 1, anon_sym_RBRACK, - STATE(6434), 1, + STATE(6178), 1, aux_sym__multiple_types_repeat1, - STATE(7529), 1, + STATE(7286), 1, sym_comment, - [242612] = 5, + [238437] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11738), 1, + ACTIONS(11367), 1, anon_sym_RBRACK, - STATE(6795), 1, + STATE(2568), 1, aux_sym__multiple_types_repeat1, - STATE(7530), 1, + STATE(7287), 1, sym_comment, - [242628] = 5, - ACTIONS(3), 1, + [238453] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(11740), 1, - anon_sym_RBRACK, - STATE(6798), 1, - aux_sym__multiple_types_repeat1, - STATE(7531), 1, + STATE(7288), 1, sym_comment, - [242644] = 3, + ACTIONS(6041), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [238465] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7532), 1, + ACTIONS(1900), 1, + anon_sym_POUND_BANG, + ACTIONS(11369), 1, + sym__newline, + STATE(7289), 2, sym_comment, - ACTIONS(2131), 3, - sym_identifier, - anon_sym_DOLLAR, - aux_sym_unquoted_token4, - [242656] = 5, + aux_sym_shebang_repeat1, + [238479] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7290), 1, + sym_comment, + ACTIONS(10608), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [238491] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6585), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11742), 1, - anon_sym_RBRACK, - STATE(3621), 1, + ACTIONS(11372), 1, + anon_sym_RBRACE, + STATE(7008), 1, aux_sym__multiple_types_repeat1, - STATE(7533), 1, + STATE(7291), 1, sym_comment, - [242672] = 5, + [238507] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - ACTIONS(11744), 1, - anon_sym_RBRACK, - STATE(6800), 1, + ACTIONS(9513), 1, + anon_sym_RBRACE, + STATE(7009), 1, aux_sym__multiple_types_repeat1, - STATE(7534), 1, + STATE(7292), 1, sym_comment, - [242688] = 4, + [238523] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1569), 1, + ACTIONS(2230), 1, aux_sym_unquoted_token2, - STATE(7535), 1, + STATE(7293), 1, sym_comment, - ACTIONS(1571), 2, + ACTIONS(2228), 2, anon_sym_PIPE, anon_sym_EQ_GT, - [242702] = 5, - ACTIONS(3), 1, + [238537] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(11746), 1, - anon_sym_RBRACK, - STATE(6801), 1, - aux_sym__multiple_types_repeat1, - STATE(7536), 1, + ACTIONS(4904), 1, + anon_sym_in, + ACTIONS(11374), 1, + anon_sym_EQ2, + STATE(7294), 1, sym_comment, - [242718] = 4, + [238550] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1648), 1, - aux_sym_unquoted_token2, - STATE(7537), 1, + STATE(7295), 1, sym_comment, - ACTIONS(1650), 2, + ACTIONS(11158), 2, anon_sym_PIPE, anon_sym_EQ_GT, - [242732] = 5, - ACTIONS(3), 1, + [238561] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(11748), 1, - anon_sym_RBRACK, - STATE(6803), 1, - aux_sym__multiple_types_repeat1, - STATE(7538), 1, + ACTIONS(8855), 1, + aux_sym_ctrl_match_token1, + STATE(6241), 1, + sym_val_record, + STATE(7296), 1, sym_comment, - [242748] = 5, - ACTIONS(3), 1, + [238574] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5770), 1, - sym__entry_separator, - ACTIONS(11750), 1, - anon_sym_RBRACK, - STATE(6808), 1, - aux_sym__multiple_types_repeat1, - STATE(7539), 1, + ACTIONS(3213), 1, + aux_sym_record_entry_token1, + ACTIONS(11376), 1, + anon_sym_make, + STATE(7297), 1, sym_comment, - [242764] = 4, + [238587] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11752), 1, - anon_sym_EQ2, - STATE(7540), 1, + ACTIONS(6065), 1, + aux_sym_ctrl_match_token1, + STATE(7092), 1, + sym_block, + STATE(7298), 1, sym_comment, - ACTIONS(5005), 2, - sym_identifier, - anon_sym_DOLLAR, - [242778] = 4, + [238600] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(1577), 1, anon_sym_LPAREN2, - STATE(7541), 1, + STATE(7299), 1, sym_comment, - STATE(7583), 1, + STATE(7340), 1, sym__expr_parenthesized_immediate, - [242791] = 4, - ACTIONS(247), 1, + [238613] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6300), 1, - aux_sym_ctrl_match_token1, - STATE(7261), 1, - sym_block, - STATE(7542), 1, + ACTIONS(3787), 1, + sym__space, + STATE(1033), 1, + aux_sym_pipe_element_repeat1, + STATE(7300), 1, sym_comment, - [242804] = 4, - ACTIONS(247), 1, + [238626] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6298), 1, - aux_sym_ctrl_match_token1, - STATE(6812), 1, - sym_block, - STATE(7543), 1, + ACTIONS(11378), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7301), 1, sym_comment, - [242817] = 4, + STATE(7392), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [238639] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5039), 1, - aux_sym_ctrl_match_token1, - ACTIONS(11754), 1, - anon_sym_EQ2, - STATE(7544), 1, + ACTIONS(9567), 1, + anon_sym_if, + STATE(7302), 1, sym_comment, - [242830] = 3, + STATE(7747), 1, + sym_match_guard, + [238652] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7545), 1, + ACTIONS(6360), 1, + sym__entry_separator, + STATE(3409), 1, + aux_sym__multiple_types_repeat1, + STATE(7303), 1, sym_comment, - ACTIONS(2131), 2, - anon_sym_in, - aux_sym_unquoted_token4, - [242841] = 4, - ACTIONS(247), 1, + [238665] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9300), 1, - aux_sym_ctrl_match_token1, - STATE(7230), 1, - sym_val_record, - STATE(7546), 1, + ACTIONS(11380), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7304), 1, sym_comment, - [242854] = 4, + STATE(7392), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [238678] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6662), 1, - anon_sym_LPAREN2, - ACTIONS(11756), 1, - aux_sym__record_key_token1, - STATE(7547), 1, + ACTIONS(11382), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7305), 1, sym_comment, - [242867] = 4, + STATE(7308), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [238691] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5233), 1, - sym__entry_separator, - ACTIONS(5235), 1, - anon_sym_RBRACK, - STATE(7548), 1, + ACTIONS(2293), 1, + anon_sym_in, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(7306), 1, sym_comment, - [242880] = 4, + [238704] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11758), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7549), 1, + ACTIONS(11384), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7307), 1, sym_comment, - STATE(7675), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [242893] = 4, + STATE(7392), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [238717] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4037), 1, - sym__space, - STATE(1251), 1, - aux_sym_pipe_element_repeat1, - STATE(7550), 1, + ACTIONS(11386), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7308), 1, sym_comment, - [242906] = 4, + STATE(7392), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [238730] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6298), 1, + ACTIONS(6065), 1, aux_sym_ctrl_match_token1, - STATE(6581), 1, + STATE(7184), 1, sym_block, - STATE(7551), 1, + STATE(7309), 1, sym_comment, - [242919] = 4, + [238743] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6300), 1, + ACTIONS(6078), 1, aux_sym_ctrl_match_token1, - STATE(7029), 1, + STATE(6254), 1, sym_block, - STATE(7552), 1, + STATE(7310), 1, sym_comment, - [242932] = 4, + [238756] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6298), 1, + ACTIONS(4904), 1, aux_sym_ctrl_match_token1, - STATE(6585), 1, - sym_block, - STATE(7553), 1, + ACTIONS(11388), 1, + anon_sym_EQ2, + STATE(7311), 1, sym_comment, - [242945] = 4, + [238769] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6298), 1, + ACTIONS(6078), 1, aux_sym_ctrl_match_token1, - STATE(6692), 1, + STATE(6257), 1, sym_block, - STATE(7554), 1, + STATE(7312), 1, sym_comment, - [242958] = 4, - ACTIONS(247), 1, + [238782] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6300), 1, - aux_sym_ctrl_match_token1, + ACTIONS(6429), 1, + anon_sym_LPAREN2, + ACTIONS(11390), 1, + aux_sym__record_key_token1, STATE(7313), 1, - sym_block, - STATE(7555), 1, sym_comment, - [242971] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6298), 1, - aux_sym_ctrl_match_token1, - STATE(6515), 1, - sym_block, - STATE(7556), 1, - sym_comment, - [242984] = 4, + [238795] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11760), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7557), 1, + ACTIONS(7813), 1, + sym__entry_separator, + ACTIONS(7815), 1, + anon_sym_RBRACK, + STATE(7314), 1, sym_comment, - STATE(7685), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [242997] = 4, + [238808] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6300), 1, - aux_sym_ctrl_match_token1, - STATE(7182), 1, - sym_block, - STATE(7558), 1, + ACTIONS(5458), 1, + anon_sym_LPAREN2, + STATE(7315), 1, sym_comment, - [243010] = 4, + STATE(7333), 1, + sym__expr_parenthesized_immediate, + [238821] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6298), 1, + ACTIONS(2228), 1, aux_sym_ctrl_match_token1, - STATE(6915), 1, - sym_block, - STATE(7559), 1, - sym_comment, - [243023] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1006), 1, - anon_sym_in, - ACTIONS(2083), 1, - aux_sym_unquoted_token4, - STATE(7560), 1, + ACTIONS(2230), 1, + aux_sym_unquoted_token2, + STATE(7316), 1, sym_comment, - [243036] = 4, + [238834] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11762), 1, + ACTIONS(11392), 1, aux_sym__unquoted_with_expr_token1, - STATE(7561), 1, + STATE(7317), 1, sym_comment, - STATE(7564), 1, + STATE(7460), 1, aux_sym__unquoted_with_expr_repeat1, - [243049] = 4, + [238847] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11764), 1, + ACTIONS(11394), 1, aux_sym__unquoted_with_expr_token1, - STATE(7562), 1, + STATE(7318), 1, sym_comment, - STATE(7567), 1, + STATE(7461), 1, aux_sym__unquoted_with_expr_repeat1, - [243062] = 3, + [238860] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(7563), 1, + ACTIONS(6065), 1, + aux_sym_ctrl_match_token1, + STATE(6694), 1, + sym_block, + STATE(7319), 1, sym_comment, - ACTIONS(11509), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [243073] = 4, + [238873] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11766), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7564), 1, - sym_comment, - STATE(7642), 1, - aux_sym__unquoted_with_expr_repeat1, - [243086] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5625), 1, - anon_sym_LPAREN2, - STATE(7549), 1, - sym__expr_parenthesized_immediate, - STATE(7565), 1, + ACTIONS(7985), 1, + sym__entry_separator, + ACTIONS(7987), 1, + anon_sym_RBRACK, + STATE(7320), 1, sym_comment, - [243099] = 4, + [238886] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10050), 1, - anon_sym_if, - STATE(7566), 1, + ACTIONS(3215), 1, + aux_sym_record_entry_token1, + ACTIONS(11376), 1, + anon_sym_make, + STATE(7321), 1, sym_comment, - STATE(7849), 1, - sym_match_guard, - [243112] = 4, + [238899] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11768), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7567), 1, - sym_comment, - STATE(7642), 1, - aux_sym__unquoted_with_expr_repeat1, - [243125] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6300), 1, - aux_sym_ctrl_match_token1, - STATE(7030), 1, - sym_block, - STATE(7568), 1, + ACTIONS(7923), 1, + sym__entry_separator, + ACTIONS(7925), 1, + anon_sym_RBRACK, + STATE(7322), 1, sym_comment, - [243138] = 4, - ACTIONS(247), 1, + [238912] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2127), 1, - aux_sym_ctrl_match_token1, - ACTIONS(2129), 1, - aux_sym_unquoted_token2, - STATE(7569), 1, + ACTIONS(11396), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7307), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(7323), 1, sym_comment, - [243151] = 3, + [238925] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7570), 1, + ACTIONS(11398), 1, + anon_sym_RBRACK, + ACTIONS(11400), 1, + sym__entry_separator, + STATE(7324), 1, sym_comment, - ACTIONS(1277), 2, - anon_sym_POUND_BANG, - sym__newline, - [243162] = 4, + [238938] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11770), 1, - sym__newline, - ACTIONS(11772), 1, - sym__space, - STATE(7571), 1, + ACTIONS(5739), 1, + anon_sym_RBRACK, + ACTIONS(5745), 1, + sym__entry_separator, + STATE(7325), 1, sym_comment, - [243175] = 4, + [238951] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6298), 1, - aux_sym_ctrl_match_token1, - STATE(6829), 1, - sym_block, - STATE(7572), 1, + ACTIONS(5458), 1, + anon_sym_LPAREN2, + STATE(7326), 1, sym_comment, - [243188] = 4, - ACTIONS(247), 1, + STATE(7357), 1, + sym__expr_parenthesized_immediate, + [238964] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3239), 1, - aux_sym_record_entry_token1, - ACTIONS(11774), 1, - anon_sym_make, - STATE(7573), 1, + ACTIONS(11402), 1, + anon_sym_RBRACK, + ACTIONS(11404), 1, + sym__entry_separator, + STATE(7327), 1, sym_comment, - [243201] = 4, + [238977] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6298), 1, + ACTIONS(6078), 1, aux_sym_ctrl_match_token1, - STATE(6830), 1, + STATE(6121), 1, sym_block, - STATE(7574), 1, + STATE(7328), 1, sym_comment, - [243214] = 4, + [238990] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1711), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - ACTIONS(1719), 1, - aux_sym_unquoted_token2, - STATE(7575), 1, - sym_comment, - [243227] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11776), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7576), 1, + STATE(7317), 1, + sym__expr_parenthesized_immediate, + STATE(7329), 1, sym_comment, - STATE(7709), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [243240] = 4, + [239003] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6300), 1, + ACTIONS(6078), 1, aux_sym_ctrl_match_token1, - STATE(7252), 1, + STATE(6122), 1, sym_block, - STATE(7577), 1, - sym_comment, - [243253] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11778), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7578), 1, - sym_comment, - STATE(7709), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [243266] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11780), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7579), 1, - sym_comment, - STATE(7614), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [243279] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7580), 1, - sym_comment, - ACTIONS(988), 2, - anon_sym_DOT, - aux_sym_record_entry_token1, - [243290] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7581), 1, + STATE(7330), 1, sym_comment, - ACTIONS(992), 2, - anon_sym_DOT, - aux_sym_record_entry_token1, - [243301] = 4, + [239016] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5210), 1, + ACTIONS(7572), 1, sym__entry_separator, - ACTIONS(5212), 1, + ACTIONS(7576), 1, anon_sym_RBRACK, - STATE(7582), 1, - sym_comment, - [243314] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11782), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7583), 1, - sym_comment, - STATE(7708), 1, - aux_sym__unquoted_with_expr_repeat1, - [243327] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5005), 1, - aux_sym_ctrl_match_token1, - ACTIONS(11784), 1, - anon_sym_EQ2, - STATE(7584), 1, + STATE(7331), 1, sym_comment, - [243340] = 4, + [239029] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11786), 1, + ACTIONS(11406), 1, aux_sym__unquoted_with_expr_token1, - STATE(7585), 1, + STATE(7332), 1, sym_comment, - STATE(7612), 1, + STATE(7345), 1, aux_sym__unquoted_with_expr_repeat1, - [243353] = 4, + [239042] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11788), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7586), 1, - sym_comment, - STATE(7711), 1, - aux_sym__unquoted_with_expr_repeat1, - [243366] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(7587), 1, + ACTIONS(11408), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7333), 1, sym_comment, - STATE(7619), 1, - sym__expr_parenthesized_immediate, - [243379] = 4, + STATE(7396), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [239055] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8166), 1, + ACTIONS(5081), 1, sym__entry_separator, - ACTIONS(8170), 1, + ACTIONS(5083), 1, anon_sym_RBRACK, - STATE(7588), 1, - sym_comment, - [243392] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6298), 1, - aux_sym_ctrl_match_token1, - STATE(6849), 1, - sym_block, - STATE(7589), 1, - sym_comment, - [243405] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11790), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7590), 1, + STATE(7334), 1, sym_comment, - STATE(7613), 1, - aux_sym__unquoted_with_expr_repeat1, - [243418] = 4, + [239068] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8320), 1, + ACTIONS(5085), 1, sym__entry_separator, - ACTIONS(8322), 1, + ACTIONS(5087), 1, anon_sym_RBRACK, - STATE(7591), 1, + STATE(7335), 1, sym_comment, - [243431] = 4, + [239081] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1527), 1, - anon_sym_LPAREN2, - STATE(7592), 1, - sym_comment, - STATE(7599), 1, - sym__expr_parenthesized_immediate, - [243444] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7990), 1, - anon_sym_RBRACK, - ACTIONS(7992), 1, - sym__entry_separator, - STATE(7593), 1, - sym_comment, - [243457] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11792), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7594), 1, - sym_comment, - STATE(7609), 1, - aux_sym__unquoted_with_expr_repeat1, - [243470] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5745), 1, - sym__entry_separator, - STATE(2838), 1, - aux_sym__multiple_types_repeat1, - STATE(7595), 1, + ACTIONS(11410), 1, + anon_sym_DASH, + STATE(7336), 1, sym_comment, - [243483] = 4, + STATE(7513), 1, + sym_param_short_flag, + [239094] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1527), 1, + ACTIONS(1577), 1, anon_sym_LPAREN2, - STATE(7596), 1, - sym_comment, - STATE(7625), 1, + STATE(7323), 1, sym__expr_parenthesized_immediate, - [243496] = 4, + STATE(7337), 1, + sym_comment, + [239107] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11794), 1, + ACTIONS(11412), 1, aux_sym__unquoted_with_expr_token1, - STATE(7597), 1, + STATE(7338), 1, sym_comment, - STATE(7611), 1, + STATE(7346), 1, aux_sym__unquoted_with_expr_repeat1, - [243509] = 4, + [239120] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11796), 1, + ACTIONS(11414), 1, aux_sym__unquoted_with_expr_token1, - STATE(7598), 1, + STATE(7339), 1, sym_comment, - STATE(7642), 1, + STATE(7351), 1, aux_sym__unquoted_with_expr_repeat1, - [243522] = 4, + [239133] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11798), 1, + ACTIONS(11416), 1, aux_sym__unquoted_in_record_with_expr_token1, - STATE(7576), 1, + STATE(7301), 1, aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(7599), 1, + STATE(7340), 1, sym_comment, - [243535] = 4, + [239146] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11800), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7600), 1, - sym_comment, - STATE(7642), 1, - aux_sym__unquoted_with_expr_repeat1, - [243548] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6300), 1, - aux_sym_ctrl_match_token1, - STATE(7253), 1, - sym_block, - STATE(7601), 1, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym__unquoted_in_record_token4, + STATE(7341), 1, sym_comment, - [243561] = 4, - ACTIONS(247), 1, + [239159] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5625), 1, - anon_sym_LPAREN2, - STATE(7602), 1, + ACTIONS(11418), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7342), 1, sym_comment, - STATE(7970), 1, - sym__expr_parenthesized_immediate, - [243574] = 4, + STATE(7352), 1, + aux_sym__unquoted_with_expr_repeat1, + [239172] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11802), 1, + ACTIONS(11420), 1, aux_sym__unquoted_in_record_with_expr_token1, - STATE(7578), 1, + STATE(7304), 1, aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(7603), 1, - sym_comment, - [243587] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7604), 1, + STATE(7343), 1, sym_comment, - ACTIONS(11804), 2, - sym__newline, - anon_sym_RBRACE, - [243598] = 4, + [239185] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(2317), 1, sym__entry_separator, - STATE(2860), 1, + STATE(566), 1, aux_sym__multiple_types_repeat1, - STATE(7605), 1, - sym_comment, - [243611] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6298), 1, - aux_sym_ctrl_match_token1, - STATE(6502), 1, - sym_block, - STATE(7606), 1, + STATE(7344), 1, sym_comment, - [243624] = 4, + [239198] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2089), 1, - anon_sym_in, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(7607), 1, - sym_comment, - [243637] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1537), 1, - anon_sym_in, - ACTIONS(7059), 1, - aux_sym_unquoted_token2, - STATE(7608), 1, + ACTIONS(11422), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7345), 1, sym_comment, - [243650] = 4, + STATE(7395), 1, + aux_sym__unquoted_with_expr_repeat1, + [239211] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11806), 1, + ACTIONS(11424), 1, aux_sym__unquoted_with_expr_token1, - STATE(7609), 1, + STATE(7346), 1, sym_comment, - STATE(7642), 1, + STATE(7395), 1, aux_sym__unquoted_with_expr_repeat1, - [243663] = 4, + [239224] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6298), 1, + ACTIONS(6078), 1, aux_sym_ctrl_match_token1, - STATE(4872), 1, + STATE(6155), 1, sym_block, - STATE(7610), 1, + STATE(7347), 1, sym_comment, - [243676] = 4, - ACTIONS(3), 1, + [239237] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11808), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7611), 1, + ACTIONS(6078), 1, + aux_sym_ctrl_match_token1, + STATE(6156), 1, + sym_block, + STATE(7348), 1, sym_comment, - STATE(7642), 1, - aux_sym__unquoted_with_expr_repeat1, - [243689] = 4, + [239250] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11810), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7612), 1, + ACTIONS(7867), 1, + sym__entry_separator, + ACTIONS(7869), 1, + anon_sym_RBRACK, + STATE(7349), 1, sym_comment, - STATE(7642), 1, - aux_sym__unquoted_with_expr_repeat1, - [243702] = 4, + [239263] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11812), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7613), 1, + ACTIONS(5552), 1, + sym__entry_separator, + STATE(2636), 1, + aux_sym__multiple_types_repeat1, + STATE(7350), 1, sym_comment, - STATE(7642), 1, - aux_sym__unquoted_with_expr_repeat1, - [243715] = 3, + [239276] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11814), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7614), 2, + ACTIONS(11426), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7351), 1, sym_comment, - aux_sym__unquoted_in_list_with_expr_repeat1, - [243726] = 4, + STATE(7395), 1, + aux_sym__unquoted_with_expr_repeat1, + [239289] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11817), 1, + ACTIONS(11428), 1, aux_sym__unquoted_with_expr_token1, - STATE(7615), 1, + STATE(7352), 1, sym_comment, - STATE(7620), 1, + STATE(7395), 1, aux_sym__unquoted_with_expr_repeat1, - [243739] = 4, + [239302] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11819), 1, + ACTIONS(11430), 1, aux_sym__unquoted_with_expr_token1, - STATE(7616), 1, + STATE(7353), 1, sym_comment, - STATE(7621), 1, + STATE(7395), 1, aux_sym__unquoted_with_expr_repeat1, - [243752] = 4, + [239315] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1457), 1, - aux_sym_unquoted_token2, - ACTIONS(2121), 1, + ACTIONS(6065), 1, aux_sym_ctrl_match_token1, - STATE(7617), 1, + STATE(7234), 1, + sym_block, + STATE(7354), 1, sym_comment, - [243765] = 4, + [239328] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6300), 1, + ACTIONS(6065), 1, aux_sym_ctrl_match_token1, - STATE(7193), 1, + STATE(6902), 1, sym_block, - STATE(7618), 1, - sym_comment, - [243778] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11821), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7598), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7619), 1, + STATE(7355), 1, sym_comment, - [243791] = 4, + [239341] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11823), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7620), 1, + STATE(7356), 1, sym_comment, - STATE(7642), 1, - aux_sym__unquoted_with_expr_repeat1, - [243804] = 4, + ACTIONS(1349), 2, + anon_sym_POUND_BANG, + sym__newline, + [239352] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11825), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7621), 1, + ACTIONS(11432), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7357), 1, sym_comment, - STATE(7642), 1, - aux_sym__unquoted_with_expr_repeat1, - [243817] = 4, + STATE(7449), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [239365] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8448), 1, - sym__entry_separator, - ACTIONS(8450), 1, + ACTIONS(7093), 1, anon_sym_RBRACK, - STATE(7622), 1, + ACTIONS(7095), 1, + sym__entry_separator, + STATE(7358), 1, sym_comment, - [243830] = 4, + [239378] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5039), 1, - anon_sym_in, - ACTIONS(11827), 1, - anon_sym_EQ2, - STATE(7623), 1, + ACTIONS(6065), 1, + aux_sym_ctrl_match_token1, + STATE(6776), 1, + sym_block, + STATE(7359), 1, sym_comment, - [243843] = 4, + [239391] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11829), 1, - anon_sym_RBRACK, - ACTIONS(11831), 1, + ACTIONS(7859), 1, sym__entry_separator, - STATE(7624), 1, + ACTIONS(7861), 1, + anon_sym_RBRACK, + STATE(7360), 1, sym_comment, - [243856] = 4, + [239404] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11833), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7625), 1, + ACTIONS(7863), 1, + sym__entry_separator, + ACTIONS(7865), 1, + anon_sym_RBRACK, + STATE(7361), 1, sym_comment, - STATE(7725), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [243869] = 4, - ACTIONS(3), 1, + [239417] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11835), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7600), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7626), 1, + ACTIONS(6065), 1, + aux_sym_ctrl_match_token1, + STATE(6680), 1, + sym_block, + STATE(7362), 1, sym_comment, - [243882] = 4, + [239430] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6300), 1, + ACTIONS(6078), 1, aux_sym_ctrl_match_token1, - STATE(7012), 1, + STATE(6623), 1, sym_block, - STATE(7627), 1, + STATE(7363), 1, sym_comment, - [243895] = 4, - ACTIONS(3), 1, + [239443] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11837), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7628), 1, + ACTIONS(6065), 1, + aux_sym_ctrl_match_token1, + STATE(6791), 1, + sym_block, + STATE(7364), 1, sym_comment, - STATE(7726), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [243908] = 4, + [239456] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5942), 1, - anon_sym_RBRACK, - ACTIONS(5948), 1, - sym__entry_separator, - STATE(7629), 1, + STATE(7365), 1, sym_comment, - [243921] = 4, - ACTIONS(3), 1, + ACTIONS(2259), 2, + anon_sym_in, + aux_sym_unquoted_token4, + [239467] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11839), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7630), 1, + ACTIONS(6065), 1, + aux_sym_ctrl_match_token1, + STATE(6777), 1, + sym_block, + STATE(7366), 1, sym_comment, - STATE(7703), 1, - aux_sym__unquoted_with_expr_repeat1, - [243934] = 4, + [239480] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6065), 1, + aux_sym_ctrl_match_token1, + STATE(6839), 1, + sym_block, + STATE(7367), 1, + sym_comment, + [239493] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11841), 1, - sym__newline, - ACTIONS(11843), 1, - sym__space, - STATE(7631), 1, + ACTIONS(2243), 1, + anon_sym_in, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + STATE(7368), 1, sym_comment, - [243947] = 3, - ACTIONS(247), 1, + [239506] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7632), 1, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + ACTIONS(2251), 1, + anon_sym_in, + STATE(7369), 1, sym_comment, - ACTIONS(11845), 2, - anon_sym_RBRACK, - sym_hex_digit, - [243958] = 4, + [239519] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6298), 1, + ACTIONS(11434), 1, aux_sym_ctrl_match_token1, - STATE(4904), 1, + STATE(4871), 1, sym_block, - STATE(7633), 1, + STATE(7370), 1, sym_comment, - [243971] = 4, + [239532] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11847), 1, + ACTIONS(11436), 1, aux_sym__unquoted_with_expr_token1, - STATE(7634), 1, + STATE(7371), 1, sym_comment, - STATE(7656), 1, + STATE(7384), 1, aux_sym__unquoted_with_expr_repeat1, - [243984] = 4, + [239545] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6298), 1, + ACTIONS(8954), 1, aux_sym_ctrl_match_token1, - STATE(6910), 1, + STATE(6759), 1, + sym_val_record, + STATE(7372), 1, + sym_comment, + [239558] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6078), 1, + aux_sym_ctrl_match_token1, + STATE(6477), 1, sym_block, - STATE(7635), 1, + STATE(7373), 1, sym_comment, - [243997] = 4, + [239571] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2125), 1, - anon_sym_LPAREN2, - ACTIONS(2129), 1, - aux_sym_unquoted_token2, - STATE(7636), 1, + ACTIONS(6078), 1, + aux_sym_ctrl_match_token1, + STATE(6624), 1, + sym_block, + STATE(7374), 1, sym_comment, - [244010] = 4, + [239584] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8452), 1, + ACTIONS(5112), 1, sym__entry_separator, - ACTIONS(8454), 1, + ACTIONS(5114), 1, anon_sym_RBRACK, - STATE(7637), 1, + STATE(7375), 1, sym_comment, - [244023] = 4, + [239597] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11849), 1, - anon_sym_RBRACK, - ACTIONS(11851), 1, - sym__entry_separator, - STATE(7638), 1, + ACTIONS(11438), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7376), 1, sym_comment, - [244036] = 4, + STATE(7393), 1, + aux_sym__unquoted_with_expr_repeat1, + [239610] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6298), 1, + ACTIONS(6065), 1, aux_sym_ctrl_match_token1, - STATE(6922), 1, + STATE(7132), 1, sym_block, - STATE(7639), 1, + STATE(7377), 1, sym_comment, - [244049] = 4, + [239623] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11853), 1, + ACTIONS(11440), 1, aux_sym__unquoted_in_list_with_expr_token1, - STATE(7579), 1, + STATE(7378), 1, + sym_comment, + STATE(7414), 1, aux_sym__unquoted_in_list_with_expr_repeat1, - STATE(7640), 1, + [239636] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7379), 1, sym_comment, - [244062] = 4, + ACTIONS(11442), 2, + anon_sym_RBRACK, + sym_hex_digit, + [239647] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6300), 1, + ACTIONS(6065), 1, aux_sym_ctrl_match_token1, - STATE(7260), 1, + STATE(7010), 1, sym_block, - STATE(7641), 1, + STATE(7380), 1, sym_comment, - [244075] = 3, + [239660] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11855), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7642), 2, + ACTIONS(11444), 1, + anon_sym_RBRACK, + ACTIONS(11446), 1, + sym__entry_separator, + STATE(7381), 1, sym_comment, - aux_sym__unquoted_with_expr_repeat1, - [244086] = 4, + [239673] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2279), 1, - sym__entry_separator, - STATE(570), 1, - aux_sym__multiple_types_repeat1, - STATE(7643), 1, + ACTIONS(1076), 1, + anon_sym_in, + ACTIONS(2241), 1, + aux_sym_unquoted_token4, + STATE(7382), 1, sym_comment, - [244099] = 4, + [239686] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - STATE(7630), 1, - sym__expr_parenthesized_immediate, - STATE(7644), 1, + STATE(7383), 1, sym_comment, - [244112] = 4, - ACTIONS(247), 1, + STATE(7427), 1, + sym__expr_parenthesized_immediate, + [239699] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1457), 1, - aux_sym_unquoted_token2, - ACTIONS(2119), 1, - anon_sym_LPAREN2, - STATE(7645), 1, + ACTIONS(11448), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7384), 1, sym_comment, - [244125] = 4, - ACTIONS(247), 1, + STATE(7395), 1, + aux_sym__unquoted_with_expr_repeat1, + [239712] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11858), 1, - sym_identifier, - ACTIONS(11860), 1, - anon_sym_DOLLAR, - STATE(7646), 1, + ACTIONS(11450), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7385), 1, sym_comment, - [244138] = 4, + STATE(7436), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [239725] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1429), 1, + ACTIONS(1587), 1, + anon_sym_in, + ACTIONS(6790), 1, aux_sym_unquoted_token2, - ACTIONS(1692), 1, - anon_sym_LPAREN2, - STATE(7647), 1, + STATE(7386), 1, sym_comment, - [244151] = 4, + [239738] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6300), 1, + ACTIONS(6078), 1, aux_sym_ctrl_match_token1, - STATE(7522), 1, + STATE(4756), 1, sym_block, - STATE(7648), 1, - sym_comment, - [244164] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(7649), 1, + STATE(7387), 1, sym_comment, - STATE(7699), 1, - sym__expr_parenthesized_immediate, - [244177] = 4, + [239751] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11862), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7650), 1, + ACTIONS(7821), 1, + sym__entry_separator, + ACTIONS(7823), 1, + anon_sym_RBRACK, + STATE(7388), 1, sym_comment, - STATE(7661), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [244190] = 4, + [239764] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1719), 1, + ACTIONS(1806), 1, aux_sym_unquoted_token2, - ACTIONS(2087), 1, + ACTIONS(2162), 1, aux_sym_ctrl_match_token1, - STATE(7651), 1, - sym_comment, - [244203] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5625), 1, - anon_sym_LPAREN2, - STATE(7640), 1, - sym__expr_parenthesized_immediate, - STATE(7652), 1, + STATE(7389), 1, sym_comment, - [244216] = 4, - ACTIONS(247), 1, + [239777] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(7561), 1, - sym__expr_parenthesized_immediate, - STATE(7653), 1, + ACTIONS(11452), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7390), 1, sym_comment, - [244229] = 4, + STATE(7418), 1, + aux_sym__unquoted_with_expr_repeat1, + [239790] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - STATE(7654), 1, + STATE(7391), 1, sym_comment, - STATE(7887), 1, + STATE(7453), 1, sym__expr_parenthesized_immediate, - [244242] = 4, - ACTIONS(247), 1, + [239803] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2947), 1, - anon_sym_LPAREN2, - STATE(7615), 1, - sym__expr_parenthesized_immediate, - STATE(7655), 1, + ACTIONS(11454), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7392), 2, sym_comment, - [244255] = 4, + aux_sym__unquoted_in_record_with_expr_repeat1, + [239814] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11864), 1, + ACTIONS(11457), 1, aux_sym__unquoted_with_expr_token1, - STATE(7642), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7656), 1, + STATE(7393), 1, sym_comment, - [244268] = 4, + STATE(7395), 1, + aux_sym__unquoted_with_expr_repeat1, + [239827] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1717), 1, - aux_sym_ctrl_match_token1, - ACTIONS(1719), 1, + ACTIONS(1495), 1, aux_sym_unquoted_token2, - STATE(7657), 1, + ACTIONS(1794), 1, + aux_sym_ctrl_match_token1, + STATE(7394), 1, sym_comment, - [244281] = 4, - ACTIONS(247), 1, + [239840] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6298), 1, - aux_sym_ctrl_match_token1, - STATE(6752), 1, - sym_block, - STATE(7658), 1, + ACTIONS(11459), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7395), 2, sym_comment, - [244294] = 4, + aux_sym__unquoted_with_expr_repeat1, + [239851] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5202), 1, - sym__entry_separator, - ACTIONS(5204), 1, - anon_sym_RBRACK, - STATE(7659), 1, + ACTIONS(11462), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7396), 1, sym_comment, - [244307] = 4, + STATE(7436), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [239864] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - STATE(7660), 1, - sym_comment, - STATE(7677), 1, + STATE(7332), 1, sym__expr_parenthesized_immediate, - [244320] = 4, + STATE(7397), 1, + sym_comment, + [239877] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11866), 1, + ACTIONS(11464), 1, aux_sym__unquoted_in_list_with_expr_token1, - STATE(7614), 1, + STATE(7385), 1, aux_sym__unquoted_in_list_with_expr_repeat1, - STATE(7661), 1, + STATE(7398), 1, sym_comment, - [244333] = 4, - ACTIONS(247), 1, + [239890] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6298), 1, - aux_sym_ctrl_match_token1, - STATE(6754), 1, - sym_block, - STATE(7662), 1, + ACTIONS(11466), 1, + sym__newline, + ACTIONS(11468), 1, + sym__space, + STATE(7399), 1, sym_comment, - [244346] = 4, + [239903] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6300), 1, + ACTIONS(1804), 1, aux_sym_ctrl_match_token1, - STATE(7077), 1, - sym_block, - STATE(7663), 1, + ACTIONS(1806), 1, + aux_sym_unquoted_token2, + STATE(7400), 1, sym_comment, - [244359] = 4, + [239916] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6300), 1, + ACTIONS(6065), 1, aux_sym_ctrl_match_token1, - STATE(7117), 1, + STATE(6783), 1, sym_block, - STATE(7664), 1, + STATE(7401), 1, sym_comment, - [244372] = 4, + [239929] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - STATE(7665), 1, + STATE(7402), 1, sym_comment, - STATE(7719), 1, + STATE(7411), 1, sym__expr_parenthesized_immediate, - [244385] = 4, + [239942] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11470), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7403), 1, + sym_comment, + STATE(7408), 1, + aux_sym__unquoted_with_expr_repeat1, + [239955] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6300), 1, + ACTIONS(6078), 1, aux_sym_ctrl_match_token1, - STATE(7082), 1, + STATE(6522), 1, sym_block, - STATE(7666), 1, - sym_comment, - [244398] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2091), 1, - anon_sym_LPAREN2, - ACTIONS(2095), 1, - aux_sym__unquoted_in_list_token4, - STATE(7667), 1, + STATE(7404), 1, sym_comment, - [244411] = 4, + [239968] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2097), 1, - anon_sym_in, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - STATE(7668), 1, + ACTIONS(11472), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7405), 1, sym_comment, - [244424] = 4, + STATE(7417), 1, + aux_sym__unquoted_with_expr_repeat1, + [239981] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - STATE(7585), 1, + STATE(7406), 1, + sym_comment, + STATE(7570), 1, sym__expr_parenthesized_immediate, - STATE(7669), 1, + [239994] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11474), 1, + sym_identifier, + ACTIONS(11476), 1, + anon_sym_DOLLAR, + STATE(7407), 1, sym_comment, - [244437] = 4, + [240007] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - ACTIONS(2105), 1, - anon_sym_in, - STATE(7670), 1, + ACTIONS(11478), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7395), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(7408), 1, sym_comment, - [244450] = 4, - ACTIONS(247), 1, + [240020] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11868), 1, - aux_sym_ctrl_match_token1, - STATE(5069), 1, - sym_block, - STATE(7671), 1, + ACTIONS(5537), 1, + sym__entry_separator, + STATE(2625), 1, + aux_sym__multiple_types_repeat1, + STATE(7409), 1, sym_comment, - [244463] = 4, + [240033] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2947), 1, + ACTIONS(3914), 1, anon_sym_LPAREN2, - STATE(7594), 1, - sym__expr_parenthesized_immediate, - STATE(7672), 1, + STATE(7410), 1, sym_comment, - [244476] = 4, + STATE(7469), 1, + sym__expr_parenthesized_immediate, + [240046] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11870), 1, - anon_sym_RBRACK, - ACTIONS(11872), 1, - sym__entry_separator, - STATE(7673), 1, + ACTIONS(11480), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7411), 1, sym_comment, - [244489] = 4, - ACTIONS(3), 1, + STATE(7420), 1, + aux_sym__unquoted_with_expr_repeat1, + [240059] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2091), 1, + ACTIONS(1553), 1, + aux_sym_unquoted_token2, + ACTIONS(2220), 1, anon_sym_LPAREN2, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(7674), 1, + STATE(7412), 1, + sym_comment, + [240072] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11482), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7413), 1, sym_comment, - [244502] = 4, + STATE(7421), 1, + aux_sym__unquoted_with_expr_repeat1, + [240085] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11874), 1, + ACTIONS(11484), 1, aux_sym__unquoted_in_list_with_expr_token1, - STATE(7614), 1, + STATE(7414), 1, + sym_comment, + STATE(7436), 1, aux_sym__unquoted_in_list_with_expr_repeat1, - STATE(7675), 1, + [240098] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5832), 1, + sym__entry_separator, + STATE(2937), 1, + aux_sym__multiple_types_repeat1, + STATE(7415), 1, sym_comment, - [244515] = 4, + [240111] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9274), 1, - aux_sym_ctrl_match_token1, - STATE(6556), 1, - sym_val_record, - STATE(7676), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(7371), 1, + sym__expr_parenthesized_immediate, + STATE(7416), 1, sym_comment, - [244528] = 4, + [240124] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11876), 1, + ACTIONS(11486), 1, aux_sym__unquoted_with_expr_token1, - STATE(7677), 1, + STATE(7395), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(7417), 1, sym_comment, - STATE(7682), 1, + [240137] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11488), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7395), 1, aux_sym__unquoted_with_expr_repeat1, - [244541] = 4, + STATE(7418), 1, + sym_comment, + [240150] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(7339), 1, + sym__expr_parenthesized_immediate, + STATE(7419), 1, + sym_comment, + [240163] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11878), 1, + ACTIONS(11490), 1, aux_sym__unquoted_with_expr_token1, - STATE(7678), 1, + STATE(7395), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(7420), 1, sym_comment, - STATE(7683), 1, + [240176] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11492), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7395), 1, aux_sym__unquoted_with_expr_repeat1, - [244554] = 4, + STATE(7421), 1, + sym_comment, + [240189] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6300), 1, + ACTIONS(6065), 1, aux_sym_ctrl_match_token1, - STATE(7359), 1, + STATE(6952), 1, sym_block, - STATE(7679), 1, + STATE(7422), 1, sym_comment, - [244567] = 4, + [240202] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8549), 1, + ACTIONS(5077), 1, sym__entry_separator, - ACTIONS(8551), 1, + ACTIONS(5079), 1, anon_sym_RBRACK, - STATE(7680), 1, - sym_comment, - [244580] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5005), 1, - anon_sym_in, - ACTIONS(11880), 1, - anon_sym_EQ2, - STATE(7681), 1, + STATE(7423), 1, sym_comment, - [244593] = 4, + [240215] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11882), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7642), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7682), 1, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(7424), 1, sym_comment, - [244606] = 4, + [240228] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11884), 1, + ACTIONS(11494), 1, aux_sym__unquoted_with_expr_token1, - STATE(7642), 1, + STATE(7395), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(7683), 1, + STATE(7425), 1, sym_comment, - [244619] = 4, - ACTIONS(3), 1, + [240241] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2091), 1, - anon_sym_LPAREN2, - ACTIONS(2095), 1, - aux_sym__unquoted_in_record_token4, - STATE(7684), 1, + ACTIONS(6065), 1, + aux_sym_ctrl_match_token1, + STATE(7108), 1, + sym_block, + STATE(7426), 1, sym_comment, - [244632] = 4, + [240254] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11886), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7614), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - STATE(7685), 1, + ACTIONS(11496), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7425), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(7427), 1, sym_comment, - [244645] = 4, - ACTIONS(247), 1, + [240267] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11888), 1, - anon_sym_DASH, - STATE(7686), 1, + ACTIONS(11498), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7428), 1, sym_comment, - STATE(7806), 1, - sym_param_short_flag, - [244658] = 4, + STATE(7431), 1, + aux_sym__unquoted_with_expr_repeat1, + [240280] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11868), 1, + ACTIONS(6065), 1, aux_sym_ctrl_match_token1, - STATE(5102), 1, + STATE(6778), 1, sym_block, - STATE(7687), 1, + STATE(7429), 1, sym_comment, - [244671] = 4, + [240293] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6300), 1, - aux_sym_ctrl_match_token1, - STATE(7397), 1, - sym_block, - STATE(7688), 1, + ACTIONS(5458), 1, + anon_sym_LPAREN2, + STATE(7430), 1, sym_comment, - [244684] = 4, - ACTIONS(247), 1, + STATE(7793), 1, + sym__expr_parenthesized_immediate, + [240306] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3269), 1, - aux_sym_record_entry_token1, - ACTIONS(11774), 1, - anon_sym_make, - STATE(7689), 1, + ACTIONS(11500), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7395), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(7431), 1, sym_comment, - [244697] = 4, + [240319] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6300), 1, + ACTIONS(6078), 1, aux_sym_ctrl_match_token1, - STATE(7175), 1, + STATE(6563), 1, sym_block, - STATE(7690), 1, + STATE(7432), 1, sym_comment, - [244710] = 4, - ACTIONS(3), 1, + [240332] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5206), 1, - sym__entry_separator, - ACTIONS(5208), 1, - anon_sym_RBRACK, - STATE(7691), 1, + ACTIONS(1495), 1, + aux_sym_unquoted_token2, + ACTIONS(1788), 1, + anon_sym_LPAREN2, + STATE(7433), 1, sym_comment, - [244723] = 4, + [240345] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6298), 1, - aux_sym_ctrl_match_token1, - STATE(6401), 1, - sym_block, - STATE(7692), 1, + ACTIONS(3914), 1, + anon_sym_LPAREN2, + STATE(7403), 1, + sym__expr_parenthesized_immediate, + STATE(7434), 1, sym_comment, - [244736] = 3, + [240358] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(7693), 1, + ACTIONS(6078), 1, + aux_sym_ctrl_match_token1, + STATE(6312), 1, + sym_block, + STATE(7435), 1, sym_comment, - ACTIONS(11890), 2, - sym__newline, - anon_sym_RBRACE, - [244747] = 3, - ACTIONS(247), 1, + [240371] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7694), 1, + ACTIONS(11502), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7436), 2, sym_comment, - ACTIONS(11892), 2, - sym__newline, - anon_sym_RBRACE, - [244758] = 4, + aux_sym__unquoted_in_list_with_expr_repeat1, + [240382] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5218), 1, - sym__entry_separator, - ACTIONS(5220), 1, - anon_sym_RBRACK, - STATE(7695), 1, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym__unquoted_in_list_token4, + STATE(7437), 1, sym_comment, - [244771] = 4, + [240395] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1537), 1, + ACTIONS(1587), 1, aux_sym_record_entry_token1, - ACTIONS(10693), 1, + ACTIONS(9978), 1, aux_sym_cmd_identifier_token37, - STATE(7696), 1, + STATE(7438), 1, sym_comment, - [244784] = 3, + [240408] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(7697), 1, + ACTIONS(6078), 1, + aux_sym_ctrl_match_token1, + STATE(6315), 1, + sym_block, + STATE(7439), 1, sym_comment, - ACTIONS(996), 2, - anon_sym_DOT, - aux_sym_record_entry_token1, - [244795] = 4, + [240421] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6065), 1, + aux_sym_ctrl_match_token1, + STATE(6725), 1, + sym_block, + STATE(7440), 1, + sym_comment, + [240434] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, + ACTIONS(5537), 1, sym__entry_separator, - STATE(7208), 1, + STATE(7087), 1, aux_sym__multiple_types_repeat1, - STATE(7698), 1, + STATE(7441), 1, sym_comment, - [244808] = 4, - ACTIONS(3), 1, + [240447] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11894), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7699), 1, + ACTIONS(4914), 1, + aux_sym_ctrl_match_token1, + ACTIONS(11505), 1, + anon_sym_EQ2, + STATE(7442), 1, sym_comment, - STATE(7704), 1, - aux_sym__unquoted_with_expr_repeat1, - [244821] = 4, - ACTIONS(3), 1, + [240460] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11896), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7700), 1, + ACTIONS(6078), 1, + aux_sym_ctrl_match_token1, + STATE(6528), 1, + sym_block, + STATE(7443), 1, sym_comment, - STATE(7705), 1, - aux_sym__unquoted_with_expr_repeat1, - [244834] = 4, + [240473] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6298), 1, + ACTIONS(11434), 1, aux_sym_ctrl_match_token1, - STATE(6811), 1, + STATE(4802), 1, sym_block, - STATE(7701), 1, + STATE(7444), 1, sym_comment, - [244847] = 4, + [240486] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6585), 1, - sym__entry_separator, - STATE(3657), 1, - aux_sym__multiple_types_repeat1, - STATE(7702), 1, + ACTIONS(11507), 1, + sym__newline, + ACTIONS(11509), 1, + sym__space, + STATE(7445), 1, sym_comment, - [244860] = 4, - ACTIONS(3), 1, + [240499] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11898), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7642), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7703), 1, + ACTIONS(1587), 1, + aux_sym_ctrl_match_token1, + ACTIONS(8379), 1, + aux_sym_unquoted_token2, + STATE(7446), 1, + sym_comment, + [240512] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1553), 1, + aux_sym_unquoted_token2, + ACTIONS(2222), 1, + aux_sym_ctrl_match_token1, + STATE(7447), 1, + sym_comment, + [240525] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6078), 1, + aux_sym_ctrl_match_token1, + STATE(6628), 1, + sym_block, + STATE(7448), 1, sym_comment, - [244873] = 4, + [240538] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11900), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7642), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7704), 1, + ACTIONS(11511), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7436), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + STATE(7449), 1, sym_comment, - [244886] = 4, + [240551] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11902), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7642), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7705), 1, + ACTIONS(5118), 1, + sym__entry_separator, + ACTIONS(5120), 1, + anon_sym_RBRACK, + STATE(7450), 1, sym_comment, - [244899] = 4, + [240564] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1527), 1, - anon_sym_LPAREN2, - STATE(7706), 1, + ACTIONS(6078), 1, + aux_sym_ctrl_match_token1, + STATE(6520), 1, + sym_block, + STATE(7451), 1, sym_comment, - STATE(7950), 1, - sym__expr_parenthesized_immediate, - [244912] = 4, + [240577] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6300), 1, + ACTIONS(6078), 1, aux_sym_ctrl_match_token1, - STATE(7403), 1, + STATE(6325), 1, sym_block, - STATE(7707), 1, + STATE(7452), 1, sym_comment, - [244925] = 4, + [240590] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11904), 1, + ACTIONS(11513), 1, aux_sym__unquoted_with_expr_token1, - STATE(7642), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7708), 1, + STATE(7453), 1, sym_comment, - [244938] = 3, + STATE(7463), 1, + aux_sym__unquoted_with_expr_repeat1, + [240603] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11906), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7709), 2, + ACTIONS(11515), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7454), 1, sym_comment, - aux_sym__unquoted_in_record_with_expr_repeat1, - [244949] = 4, + STATE(7464), 1, + aux_sym__unquoted_with_expr_repeat1, + [240616] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6298), 1, + ACTIONS(6078), 1, aux_sym_ctrl_match_token1, - STATE(6927), 1, + STATE(4731), 1, sym_block, - STATE(7710), 1, - sym_comment, - [244962] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11909), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7642), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7711), 1, + STATE(7455), 1, sym_comment, - [244975] = 4, - ACTIONS(3), 1, + [240629] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11911), 1, - sym__newline, - ACTIONS(11913), 1, - sym__space, - STATE(7712), 1, + ACTIONS(1798), 1, + anon_sym_LPAREN2, + ACTIONS(1806), 1, + aux_sym_unquoted_token2, + STATE(7456), 1, sym_comment, - [244988] = 4, + [240642] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6298), 1, + ACTIONS(6078), 1, aux_sym_ctrl_match_token1, - STATE(6620), 1, + STATE(6521), 1, sym_block, - STATE(7713), 1, + STATE(7457), 1, sym_comment, - [245001] = 4, + [240655] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6298), 1, + ACTIONS(6078), 1, aux_sym_ctrl_match_token1, - STATE(6550), 1, + STATE(6199), 1, sym_block, - STATE(7714), 1, + STATE(7458), 1, sym_comment, - [245014] = 4, + [240668] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8506), 1, - sym__entry_separator, - ACTIONS(8508), 1, + ACTIONS(7805), 1, anon_sym_RBRACK, - STATE(7715), 1, - sym_comment, - [245027] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8510), 1, + ACTIONS(7807), 1, sym__entry_separator, - ACTIONS(8512), 1, - anon_sym_RBRACK, - STATE(7716), 1, + STATE(7459), 1, sym_comment, - [245040] = 4, + [240681] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8520), 1, - sym__entry_separator, - ACTIONS(8522), 1, - anon_sym_RBRACK, - STATE(7717), 1, - sym_comment, - [245053] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6300), 1, - aux_sym_ctrl_match_token1, - STATE(7001), 1, - sym_block, - STATE(7718), 1, + ACTIONS(11517), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7395), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(7460), 1, sym_comment, - [245066] = 4, + [240694] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11915), 1, + ACTIONS(11519), 1, aux_sym__unquoted_with_expr_token1, - STATE(7719), 1, - sym_comment, - STATE(7721), 1, + STATE(7395), 1, aux_sym__unquoted_with_expr_repeat1, - [245079] = 4, + STATE(7461), 1, + sym_comment, + [240707] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11917), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7720), 1, + ACTIONS(11521), 1, + sym__newline, + ACTIONS(11523), 1, + sym__space, + STATE(7462), 1, sym_comment, - STATE(7722), 1, - aux_sym__unquoted_with_expr_repeat1, - [245092] = 4, + [240720] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11919), 1, + ACTIONS(11525), 1, aux_sym__unquoted_with_expr_token1, - STATE(7642), 1, + STATE(7395), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(7721), 1, + STATE(7463), 1, sym_comment, - [245105] = 4, + [240733] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11921), 1, + ACTIONS(11527), 1, aux_sym__unquoted_with_expr_token1, - STATE(7642), 1, + STATE(7395), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(7722), 1, + STATE(7464), 1, sym_comment, - [245118] = 4, - ACTIONS(3), 1, + [240746] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7353), 1, - anon_sym_RBRACK, - ACTIONS(7355), 1, - sym__entry_separator, - STATE(7723), 1, + ACTIONS(4914), 1, + anon_sym_in, + ACTIONS(11529), 1, + anon_sym_EQ2, + STATE(7465), 1, sym_comment, - [245131] = 4, + [240759] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1429), 1, - aux_sym_unquoted_token2, - ACTIONS(1698), 1, + ACTIONS(6065), 1, aux_sym_ctrl_match_token1, - STATE(7724), 1, + STATE(6770), 1, + sym_block, + STATE(7466), 1, sym_comment, - [245144] = 4, - ACTIONS(3), 1, + [240772] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11923), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7709), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(7725), 1, + ACTIONS(6065), 1, + aux_sym_ctrl_match_token1, + STATE(7122), 1, + sym_block, + STATE(7467), 1, sym_comment, - [245157] = 4, + [240785] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2226), 1, + anon_sym_LPAREN2, + ACTIONS(2230), 1, + aux_sym_unquoted_token2, + STATE(7468), 1, + sym_comment, + [240798] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11925), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7709), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(7726), 1, + ACTIONS(11531), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7353), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(7469), 1, sym_comment, - [245170] = 3, + [240811] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(7727), 1, + ACTIONS(1577), 1, + anon_sym_LPAREN2, + STATE(7470), 1, sym_comment, - ACTIONS(11927), 2, - sym__newline, + STATE(7795), 1, + sym__expr_parenthesized_immediate, + [240824] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11533), 1, anon_sym_RBRACE, - [245181] = 3, + STATE(7471), 1, + sym_comment, + [240834] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11929), 1, + ACTIONS(11535), 1, anon_sym_RBRACK, - STATE(7728), 1, + STATE(7472), 1, sym_comment, - [245191] = 3, + [240844] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1719), 1, - aux_sym_unquoted_token2, - STATE(7729), 1, + ACTIONS(11537), 1, + aux_sym_ctrl_match_token1, + STATE(7473), 1, sym_comment, - [245201] = 3, + [240854] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11931), 1, - anon_sym_RBRACE, - STATE(7730), 1, + ACTIONS(11539), 1, + ts_builtin_sym_end, + STATE(7474), 1, sym_comment, - [245211] = 3, + [240864] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(547), 1, - anon_sym_RPAREN2, - STATE(7731), 1, + ACTIONS(11541), 1, + sym_identifier, + STATE(7475), 1, sym_comment, - [245221] = 3, + [240874] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11933), 1, - anon_sym_in, - STATE(7732), 1, + ACTIONS(11543), 1, + aux_sym_env_var_token2, + STATE(7476), 1, + sym_comment, + [240884] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5399), 1, + aux_sym_unquoted_token4, + STATE(7477), 1, sym_comment, - [245231] = 3, + [240894] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11935), 1, - anon_sym_GT, - STATE(7733), 1, + ACTIONS(2230), 1, + aux_sym_unquoted_token2, + STATE(7478), 1, sym_comment, - [245241] = 3, + [240904] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11937), 1, - anon_sym_RBRACE, - STATE(7734), 1, + ACTIONS(11545), 1, + aux_sym_cmd_identifier_token41, + STATE(7479), 1, sym_comment, - [245251] = 3, - ACTIONS(3), 1, + [240914] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9386), 1, - aux_sym_unquoted_token4, - STATE(7735), 1, + ACTIONS(11547), 1, + anon_sym_RBRACK, + STATE(7480), 1, sym_comment, - [245261] = 3, + [240924] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11939), 1, - anon_sym_RBRACE, - STATE(7736), 1, + ACTIONS(11549), 1, + anon_sym_RPAREN, + STATE(7481), 1, sym_comment, - [245271] = 3, + [240934] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11941), 1, + ACTIONS(11551), 1, anon_sym_RBRACE, - STATE(7737), 1, + STATE(7482), 1, sym_comment, - [245281] = 3, - ACTIONS(3), 1, + [240944] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7127), 1, - aux_sym_unquoted_token4, - STATE(7738), 1, + ACTIONS(11553), 1, + anon_sym_RBRACE, + STATE(7483), 1, sym_comment, - [245291] = 3, + [240954] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11943), 1, - anon_sym_RBRACK, - STATE(7739), 1, + ACTIONS(11555), 1, + sym_identifier, + STATE(7484), 1, sym_comment, - [245301] = 3, + [240964] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11945), 1, + ACTIONS(11557), 1, anon_sym_RBRACE, - STATE(7740), 1, + STATE(7485), 1, + sym_comment, + [240974] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6844), 1, + aux_sym_unquoted_token2, + STATE(7486), 1, + sym_comment, + [240984] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11559), 1, + sym_identifier, + STATE(7487), 1, sym_comment, - [245311] = 3, + [240994] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4889), 1, + ACTIONS(6844), 1, aux_sym_unquoted_token4, - STATE(7741), 1, + STATE(7488), 1, sym_comment, - [245321] = 3, + [241004] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11947), 1, - ts_builtin_sym_end, - STATE(7742), 1, + ACTIONS(11561), 1, + anon_sym_RBRACK, + STATE(7489), 1, sym_comment, - [245331] = 3, + [241014] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11949), 1, - aux_sym_ctrl_match_token1, - STATE(7743), 1, + ACTIONS(11563), 1, + anon_sym_RBRACE, + STATE(7490), 1, sym_comment, - [245341] = 3, + [241024] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11951), 1, + ACTIONS(11565), 1, aux_sym_ctrl_match_token1, - STATE(7744), 1, + STATE(7491), 1, sym_comment, - [245351] = 3, + [241034] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11953), 1, - anon_sym_EQ_GT, - STATE(7745), 1, + ACTIONS(6377), 1, + aux_sym_unquoted_token2, + STATE(7492), 1, sym_comment, - [245361] = 3, + [241044] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11955), 1, - anon_sym_RBRACE, - STATE(7746), 1, + ACTIONS(11567), 1, + anon_sym_in, + STATE(7493), 1, sym_comment, - [245371] = 3, + [241054] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11957), 1, - sym_identifier, - STATE(7747), 1, + ACTIONS(11569), 1, + anon_sym_RBRACK, + STATE(7494), 1, sym_comment, - [245381] = 3, + [241064] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11959), 1, + ACTIONS(11571), 1, anon_sym_RPAREN, - STATE(7748), 1, + STATE(7495), 1, sym_comment, - [245391] = 3, + [241074] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(527), 1, - anon_sym_RPAREN2, - STATE(7749), 1, + ACTIONS(11573), 1, + anon_sym_RPAREN, + STATE(7496), 1, sym_comment, - [245401] = 3, + [241084] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11961), 1, - anon_sym_RBRACK, - STATE(7750), 1, + ACTIONS(11575), 1, + aux_sym_ctrl_match_token1, + STATE(7497), 1, sym_comment, - [245411] = 3, + [241094] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11963), 1, - anon_sym_RBRACK, - STATE(7751), 1, + ACTIONS(11577), 1, + anon_sym_RPAREN, + STATE(7498), 1, sym_comment, - [245421] = 3, + [241104] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11965), 1, + ACTIONS(11579), 1, anon_sym_RBRACE, - STATE(7752), 1, + STATE(7499), 1, sym_comment, - [245431] = 3, + [241114] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4702), 1, - aux_sym_unquoted_token2, - STATE(7753), 1, + ACTIONS(11376), 1, + anon_sym_make, + STATE(7500), 1, sym_comment, - [245441] = 3, + [241124] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11967), 1, + ACTIONS(5289), 1, + anon_sym_LBRACK2, + STATE(7501), 1, + sym_comment, + [241134] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8379), 1, + aux_sym_unquoted_token4, + STATE(7502), 1, + sym_comment, + [241144] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7005), 1, + aux_sym__unquoted_in_list_token2, + STATE(7503), 1, + sym_comment, + [241154] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11581), 1, anon_sym_RBRACE, - STATE(7754), 1, + STATE(7504), 1, sym_comment, - [245451] = 3, + [241164] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11969), 1, - anon_sym_RBRACK, - STATE(7755), 1, + ACTIONS(11583), 1, + ts_builtin_sym_end, + STATE(7505), 1, sym_comment, - [245461] = 3, + [241174] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11971), 1, - anon_sym_RPAREN, - STATE(7756), 1, + ACTIONS(11585), 1, + aux_sym_ctrl_match_token1, + STATE(7506), 1, sym_comment, - [245471] = 3, + [241184] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11973), 1, - anon_sym_RPAREN, - STATE(7757), 1, + ACTIONS(5873), 1, + anon_sym_LBRACK2, + STATE(7507), 1, sym_comment, - [245481] = 3, + [241194] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11975), 1, - anon_sym_RBRACE, - STATE(7758), 1, + ACTIONS(11587), 1, + anon_sym_DASH_GT, + STATE(7508), 1, sym_comment, - [245491] = 3, + [241204] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11977), 1, - anon_sym_RBRACE, - STATE(7759), 1, + ACTIONS(11589), 1, + anon_sym_RBRACK, + STATE(7509), 1, sym_comment, - [245501] = 3, + [241214] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11979), 1, - anon_sym_RBRACE, - STATE(7760), 1, + ACTIONS(11591), 1, + anon_sym_RBRACK, + STATE(7510), 1, sym_comment, - [245511] = 3, + [241224] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1429), 1, - aux_sym_unquoted_token2, - STATE(7761), 1, + ACTIONS(11593), 1, + anon_sym_RPAREN, + STATE(7511), 1, sym_comment, - [245521] = 3, + [241234] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11981), 1, - anon_sym_RBRACE, - STATE(7762), 1, + ACTIONS(11595), 1, + anon_sym_RPAREN, + STATE(7512), 1, sym_comment, - [245531] = 3, + [241244] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11983), 1, - anon_sym_RBRACE, - STATE(7763), 1, + ACTIONS(11597), 1, + anon_sym_RPAREN, + STATE(7513), 1, sym_comment, - [245541] = 3, + [241254] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11985), 1, - aux_sym_record_entry_token1, - STATE(7764), 1, + ACTIONS(11599), 1, + aux_sym_cmd_identifier_token41, + STATE(7514), 1, sym_comment, - [245551] = 3, + [241264] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6636), 1, - aux_sym_unquoted_token4, - STATE(7765), 1, + ACTIONS(11139), 1, + aux_sym_cmd_identifier_token37, + STATE(7515), 1, sym_comment, - [245561] = 3, + [241274] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11987), 1, + ACTIONS(11601), 1, anon_sym_RPAREN, - STATE(7766), 1, + STATE(7516), 1, sym_comment, - [245571] = 3, + [241284] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11989), 1, - anon_sym_RPAREN, - STATE(7767), 1, + ACTIONS(5399), 1, + aux_sym_unquoted_token2, + STATE(7517), 1, sym_comment, - [245581] = 3, - ACTIONS(3), 1, + [241294] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11991), 1, - aux_sym_shebang_token1, - STATE(7768), 1, + ACTIONS(11603), 1, + anon_sym_RBRACE, + STATE(7518), 1, sym_comment, - [245591] = 3, + [241304] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11993), 1, - anon_sym_RBRACK, - STATE(7769), 1, + ACTIONS(11605), 1, + anon_sym_RBRACE, + STATE(7519), 1, sym_comment, - [245601] = 3, + [241314] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5635), 1, - aux_sym__unquoted_in_list_token2, - STATE(7770), 1, + ACTIONS(11607), 1, + anon_sym_RBRACE, + STATE(7520), 1, sym_comment, - [245611] = 3, + [241324] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11995), 1, - anon_sym_RBRACK, - STATE(7771), 1, + ACTIONS(11609), 1, + anon_sym_DASH_GT, + STATE(7521), 1, + sym_comment, + [241334] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4894), 1, + aux_sym_cmd_identifier_token37, + STATE(7522), 1, sym_comment, - [245621] = 3, + [241344] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11997), 1, + ACTIONS(11611), 1, + anon_sym_RBRACE, + STATE(7523), 1, + sym_comment, + [241354] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11613), 1, anon_sym_RPAREN, - STATE(7772), 1, + STATE(7524), 1, sym_comment, - [245631] = 3, + [241364] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11851), 1, - aux_sym_ctrl_match_token1, - STATE(7773), 1, + ACTIONS(11615), 1, + anon_sym_RBRACE, + STATE(7525), 1, + sym_comment, + [241374] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11617), 1, + anon_sym_RBRACK, + STATE(7526), 1, sym_comment, - [245641] = 3, + [241384] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5194), 1, - anon_sym_LBRACK2, - STATE(7774), 1, + ACTIONS(11619), 1, + anon_sym_RPAREN, + STATE(7527), 1, sym_comment, - [245651] = 3, + [241394] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11999), 1, + ACTIONS(11621), 1, anon_sym_RBRACE, - STATE(7775), 1, + STATE(7528), 1, sym_comment, - [245661] = 3, + [241404] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7059), 1, - aux_sym_unquoted_token2, - STATE(7776), 1, + ACTIONS(11623), 1, + anon_sym_EQ, + STATE(7529), 1, sym_comment, - [245671] = 3, + [241414] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12001), 1, - anon_sym_EQ, - STATE(7777), 1, + ACTIONS(11625), 1, + anon_sym_RBRACE, + STATE(7530), 1, sym_comment, - [245681] = 3, - ACTIONS(247), 1, + [241424] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3239), 1, - aux_sym_record_entry_token1, - STATE(7778), 1, + ACTIONS(6790), 1, + aux_sym_unquoted_token4, + STATE(7531), 1, sym_comment, - [245691] = 3, + [241434] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12003), 1, + ACTIONS(11627), 1, anon_sym_RBRACK, - STATE(7779), 1, + STATE(7532), 1, sym_comment, - [245701] = 3, + [241444] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12005), 1, + ACTIONS(11629), 1, anon_sym_RPAREN, - STATE(7780), 1, + STATE(7533), 1, sym_comment, - [245711] = 3, + [241454] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12007), 1, + ACTIONS(11631), 1, anon_sym_RPAREN, - STATE(7781), 1, + STATE(7534), 1, sym_comment, - [245721] = 3, + [241464] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12009), 1, + ACTIONS(11633), 1, aux_sym_ctrl_match_token1, - STATE(7782), 1, + STATE(7535), 1, sym_comment, - [245731] = 3, + [241474] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12011), 1, + ACTIONS(11635), 1, anon_sym_RPAREN, - STATE(7783), 1, + STATE(7536), 1, sym_comment, - [245741] = 3, + [241484] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12009), 1, - aux_sym_ctrl_match_token1, - STATE(7784), 1, + ACTIONS(11637), 1, + anon_sym_RBRACE, + STATE(7537), 1, sym_comment, - [245751] = 3, + [241494] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12013), 1, + ACTIONS(11639), 1, anon_sym_RBRACE, - STATE(7785), 1, + STATE(7538), 1, sym_comment, - [245761] = 3, + [241504] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12015), 1, + ACTIONS(11641), 1, anon_sym_RBRACE, - STATE(7786), 1, + STATE(7539), 1, sym_comment, - [245771] = 3, + [241514] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12017), 1, - aux_sym_cmd_identifier_token41, - STATE(7787), 1, + ACTIONS(11643), 1, + anon_sym_RPAREN, + STATE(7540), 1, sym_comment, - [245781] = 3, + [241524] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7303), 1, - aux_sym__unquoted_in_list_token2, - STATE(7788), 1, + ACTIONS(11645), 1, + anon_sym_LPAREN2, + STATE(7541), 1, sym_comment, - [245791] = 3, - ACTIONS(247), 1, + [241534] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(559), 1, - anon_sym_RPAREN2, - STATE(7789), 1, + ACTIONS(2019), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7542), 1, sym_comment, - [245801] = 3, + [241544] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12019), 1, - anon_sym_in, - STATE(7790), 1, + ACTIONS(11647), 1, + anon_sym_RBRACE, + STATE(7543), 1, sym_comment, - [245811] = 3, + [241554] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12021), 1, - aux_sym_env_var_token2, - STATE(7791), 1, + ACTIONS(11649), 1, + anon_sym_RPAREN, + STATE(7544), 1, sym_comment, - [245821] = 3, + [241564] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12023), 1, - aux_sym_ctrl_match_token1, - STATE(7792), 1, + ACTIONS(11651), 1, + anon_sym_RBRACE, + STATE(7545), 1, sym_comment, - [245831] = 3, - ACTIONS(247), 1, + [241574] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12025), 1, - anon_sym_GT, - STATE(7793), 1, + ACTIONS(11045), 1, + aux_sym_cmd_identifier_token37, + STATE(7546), 1, sym_comment, - [245841] = 3, + [241584] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(605), 1, - ts_builtin_sym_end, - STATE(7794), 1, + ACTIONS(11653), 1, + anon_sym_RBRACE, + STATE(7547), 1, sym_comment, - [245851] = 3, + [241594] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4981), 1, - anon_sym_LBRACK2, - STATE(7795), 1, + ACTIONS(11655), 1, + aux_sym_cmd_identifier_token41, + STATE(7548), 1, sym_comment, - [245861] = 3, + [241604] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12027), 1, - aux_sym_ctrl_match_token1, - STATE(7796), 1, + ACTIONS(5058), 1, + anon_sym_LBRACK2, + STATE(7549), 1, sym_comment, - [245871] = 3, + [241614] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12029), 1, - anon_sym_RPAREN2, - STATE(7797), 1, + ACTIONS(11657), 1, + anon_sym_GT, + STATE(7550), 1, sym_comment, - [245881] = 3, + [241624] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12031), 1, - anon_sym_RBRACE, - STATE(7798), 1, + ACTIONS(4680), 1, + aux_sym_unquoted_token2, + STATE(7551), 1, sym_comment, - [245891] = 3, + [241634] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12033), 1, - sym_identifier, - STATE(7799), 1, + ACTIONS(11659), 1, + anon_sym_RPAREN, + STATE(7552), 1, sym_comment, - [245901] = 3, + [241644] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12035), 1, - anon_sym_RPAREN, - STATE(7800), 1, + ACTIONS(3215), 1, + aux_sym_record_entry_token1, + STATE(7553), 1, sym_comment, - [245911] = 3, + [241654] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12037), 1, - anon_sym_RPAREN, - STATE(7801), 1, + ACTIONS(10502), 1, + aux_sym_ctrl_match_token1, + STATE(7554), 1, sym_comment, - [245921] = 3, - ACTIONS(3), 1, + [241664] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5786), 1, - aux_sym__unquoted_in_list_token4, - STATE(7802), 1, + ACTIONS(11661), 1, + aux_sym_ctrl_match_token1, + STATE(7555), 1, sym_comment, - [245931] = 3, + [241674] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1539), 1, - aux_sym__unquoted_in_record_token2, - STATE(7803), 1, + ACTIONS(11663), 1, + aux_sym_record_entry_token1, + STATE(7556), 1, sym_comment, - [245941] = 3, + [241684] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12039), 1, + ACTIONS(11665), 1, anon_sym_make, - STATE(7804), 1, + STATE(7557), 1, sym_comment, - [245951] = 3, + [241694] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12041), 1, + ACTIONS(11667), 1, anon_sym_RPAREN, - STATE(7805), 1, + STATE(7558), 1, sym_comment, - [245961] = 3, + [241704] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12043), 1, - anon_sym_RPAREN, - STATE(7806), 1, + ACTIONS(11669), 1, + anon_sym_RBRACE, + STATE(7559), 1, sym_comment, - [245971] = 3, + [241714] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12045), 1, - sym_long_flag_identifier, - STATE(7807), 1, + ACTIONS(11671), 1, + anon_sym_RBRACE, + STATE(7560), 1, sym_comment, - [245981] = 3, + [241724] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12047), 1, - anon_sym_RBRACE, - STATE(7808), 1, + ACTIONS(11673), 1, + anon_sym_EQ, + STATE(7561), 1, sym_comment, - [245991] = 3, + [241734] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12049), 1, - aux_sym_ctrl_match_token1, - STATE(7809), 1, + ACTIONS(11675), 1, + anon_sym_RBRACE, + STATE(7562), 1, sym_comment, - [246001] = 3, + [241744] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(571), 1, - anon_sym_RPAREN2, - STATE(7810), 1, + ACTIONS(11677), 1, + anon_sym_RBRACE, + STATE(7563), 1, sym_comment, - [246011] = 3, + [241754] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12051), 1, + ACTIONS(11679), 1, aux_sym_ctrl_match_token1, - STATE(7811), 1, + STATE(7564), 1, sym_comment, - [246021] = 3, + [241764] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5174), 1, - anon_sym_LBRACK2, - STATE(7812), 1, + ACTIONS(11681), 1, + anon_sym_RBRACE, + STATE(7565), 1, sym_comment, - [246031] = 3, - ACTIONS(3), 1, + [241774] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11553), 1, - aux_sym_cmd_identifier_token37, - STATE(7813), 1, + ACTIONS(3924), 1, + aux_sym_unquoted_token2, + STATE(7566), 1, sym_comment, - [246041] = 3, + [241784] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12053), 1, - anon_sym_RPAREN, - STATE(7814), 1, + ACTIONS(11683), 1, + anon_sym_RBRACE, + STATE(7567), 1, sym_comment, - [246051] = 3, + [241794] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12055), 1, - anon_sym_RBRACE, - STATE(7815), 1, + ACTIONS(4932), 1, + anon_sym_LBRACK2, + STATE(7568), 1, sym_comment, - [246061] = 3, + [241804] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7127), 1, - aux_sym_unquoted_token2, - STATE(7816), 1, + ACTIONS(4552), 1, + aux_sym_record_entry_token1, + STATE(7569), 1, + sym_comment, + [241814] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11685), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7570), 1, sym_comment, - [246071] = 3, + [241824] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12057), 1, - anon_sym_EQ_GT, - STATE(7817), 1, + ACTIONS(11687), 1, + anon_sym_RBRACE, + STATE(7571), 1, sym_comment, - [246081] = 3, + [241834] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12059), 1, - anon_sym_RPAREN, - STATE(7818), 1, + ACTIONS(11689), 1, + anon_sym_RBRACE, + STATE(7572), 1, sym_comment, - [246091] = 3, + [241844] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5424), 1, - anon_sym_LBRACK2, - STATE(7819), 1, + ACTIONS(11691), 1, + anon_sym_RBRACE, + STATE(7573), 1, sym_comment, - [246101] = 3, + [241854] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12061), 1, - anon_sym_RBRACK, - STATE(7820), 1, + ACTIONS(11693), 1, + anon_sym_RBRACE, + STATE(7574), 1, + sym_comment, + [241864] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11695), 1, + anon_sym_RPAREN, + STATE(7575), 1, sym_comment, - [246111] = 3, + [241874] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12063), 1, + ACTIONS(11697), 1, anon_sym_RBRACK, - STATE(7821), 1, + STATE(7576), 1, sym_comment, - [246121] = 3, + [241884] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12065), 1, + ACTIONS(11699), 1, anon_sym_RPAREN, - STATE(7822), 1, + STATE(7577), 1, sym_comment, - [246131] = 3, + [241894] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12067), 1, + ACTIONS(11701), 1, anon_sym_RBRACE, - STATE(7823), 1, + STATE(7578), 1, sym_comment, - [246141] = 3, + [241904] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12069), 1, - anon_sym_RPAREN, - STATE(7824), 1, + ACTIONS(11703), 1, + aux_sym_record_entry_token1, + STATE(7579), 1, sym_comment, - [246151] = 3, - ACTIONS(3), 1, + [241914] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4722), 1, - aux_sym_unquoted_token4, - STATE(7825), 1, + ACTIONS(11705), 1, + anon_sym_RBRACE, + STATE(7580), 1, sym_comment, - [246161] = 3, + [241924] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7977), 1, - anon_sym_LBRACK2, - STATE(7826), 1, + ACTIONS(11707), 1, + aux_sym_ctrl_match_token1, + STATE(7581), 1, sym_comment, - [246171] = 3, + [241934] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12071), 1, - anon_sym_RBRACK, - STATE(7827), 1, + ACTIONS(5010), 1, + anon_sym_LBRACK2, + STATE(7582), 1, sym_comment, - [246181] = 3, + [241944] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12073), 1, - anon_sym_RBRACE, - STATE(7828), 1, + ACTIONS(11709), 1, + anon_sym_RPAREN, + STATE(7583), 1, sym_comment, - [246191] = 3, + [241954] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12075), 1, + ACTIONS(11711), 1, anon_sym_RPAREN, - STATE(7829), 1, + STATE(7584), 1, sym_comment, - [246201] = 3, + [241964] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12077), 1, + ACTIONS(11713), 1, anon_sym_RBRACE, - STATE(7830), 1, + STATE(7585), 1, sym_comment, - [246211] = 3, + [241974] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12079), 1, - anon_sym_RBRACE, - STATE(7831), 1, + ACTIONS(11715), 1, + anon_sym_RPAREN, + STATE(7586), 1, sym_comment, - [246221] = 3, + [241984] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11267), 1, - aux_sym_cmd_identifier_token37, - STATE(7832), 1, + ACTIONS(2133), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7587), 1, sym_comment, - [246231] = 3, + [241994] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12081), 1, - anon_sym_RBRACE, - STATE(7833), 1, + ACTIONS(563), 1, + anon_sym_RPAREN2, + STATE(7588), 1, sym_comment, - [246241] = 3, + [242004] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12083), 1, - anon_sym_RPAREN, - STATE(7834), 1, + ACTIONS(11717), 1, + anon_sym_RBRACE, + STATE(7589), 1, sym_comment, - [246251] = 3, + [242014] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12085), 1, - sym_identifier, - STATE(7835), 1, + ACTIONS(11719), 1, + anon_sym_in, + STATE(7590), 1, sym_comment, - [246261] = 3, + [242024] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12087), 1, - anon_sym_RPAREN, - STATE(7836), 1, + ACTIONS(11721), 1, + anon_sym_RBRACE, + STATE(7591), 1, sym_comment, - [246271] = 3, + [242034] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12089), 1, - sym_identifier, - STATE(7837), 1, + ACTIONS(4618), 1, + aux_sym_unquoted_token2, + STATE(7592), 1, sym_comment, - [246281] = 3, + [242044] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12091), 1, - anon_sym_RBRACE, - STATE(7838), 1, + ACTIONS(11723), 1, + aux_sym_ctrl_match_token1, + STATE(7593), 1, sym_comment, - [246291] = 3, + [242054] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4122), 1, - aux_sym_unquoted_token2, - STATE(7839), 1, + ACTIONS(7599), 1, + anon_sym_LBRACK2, + STATE(7594), 1, sym_comment, - [246301] = 3, + [242064] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5855), 1, - anon_sym_LBRACK2, - STATE(7840), 1, + ACTIONS(11725), 1, + anon_sym_RPAREN, + STATE(7595), 1, sym_comment, - [246311] = 3, + [242074] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12093), 1, - anon_sym_RBRACE, - STATE(7841), 1, + ACTIONS(11727), 1, + sym_identifier, + STATE(7596), 1, sym_comment, - [246321] = 3, + [242084] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12095), 1, - anon_sym_RBRACE, - STATE(7842), 1, + ACTIONS(11729), 1, + anon_sym_RPAREN, + STATE(7597), 1, sym_comment, - [246331] = 3, - ACTIONS(3), 1, + [242094] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2103), 1, - aux_sym_unquoted_token4, - STATE(7843), 1, + ACTIONS(11731), 1, + sym_identifier, + STATE(7598), 1, sym_comment, - [246341] = 3, + [242104] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12097), 1, + ACTIONS(11733), 1, anon_sym_RBRACE, - STATE(7844), 1, + STATE(7599), 1, sym_comment, - [246351] = 3, + [242114] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12099), 1, - anon_sym_RPAREN, - STATE(7845), 1, + ACTIONS(5468), 1, + aux_sym__unquoted_in_list_token2, + STATE(7600), 1, sym_comment, - [246361] = 3, + [242124] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12101), 1, - anon_sym_DASH_GT, - STATE(7846), 1, + ACTIONS(1676), 1, + aux_sym__unquoted_in_record_token2, + STATE(7601), 1, sym_comment, - [246371] = 3, + [242134] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12103), 1, - anon_sym_RPAREN, - STATE(7847), 1, + ACTIONS(11735), 1, + anon_sym_RBRACE, + STATE(7602), 1, sym_comment, - [246381] = 3, + [242144] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2285), 1, - aux_sym_record_entry_token1, - STATE(7848), 1, + ACTIONS(11737), 1, + anon_sym_RBRACE, + STATE(7603), 1, sym_comment, - [246391] = 3, + [242154] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11309), 1, - anon_sym_EQ_GT, - STATE(7849), 1, + ACTIONS(11739), 1, + sym_identifier, + STATE(7604), 1, sym_comment, - [246401] = 3, - ACTIONS(3), 1, + [242164] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4702), 1, - aux_sym_unquoted_token4, - STATE(7850), 1, + ACTIONS(5659), 1, + anon_sym_LBRACK2, + STATE(7605), 1, sym_comment, - [246411] = 3, + [242174] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12105), 1, + ACTIONS(11741), 1, anon_sym_RBRACK, - STATE(7851), 1, + STATE(7606), 1, sym_comment, - [246421] = 3, - ACTIONS(247), 1, + [242184] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7796), 1, - anon_sym_LBRACK2, - STATE(7852), 1, + ACTIONS(11131), 1, + aux_sym_cmd_identifier_token37, + STATE(7607), 1, sym_comment, - [246431] = 3, + [242194] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12107), 1, + ACTIONS(11743), 1, anon_sym_RPAREN, - STATE(7853), 1, + STATE(7608), 1, sym_comment, - [246441] = 3, + [242204] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12109), 1, - anon_sym_GT, - STATE(7854), 1, + ACTIONS(9908), 1, + aux_sym_ctrl_match_token1, + STATE(7609), 1, sym_comment, - [246451] = 3, + [242214] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12111), 1, + ACTIONS(11745), 1, anon_sym_RBRACE, - STATE(7855), 1, + STATE(7610), 1, sym_comment, - [246461] = 3, + [242224] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12113), 1, + ACTIONS(11747), 1, anon_sym_RBRACE, - STATE(7856), 1, + STATE(7611), 1, sym_comment, - [246471] = 3, + [242234] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12115), 1, - anon_sym_RBRACE, - STATE(7857), 1, + ACTIONS(11749), 1, + anon_sym_EQ, + STATE(7612), 1, sym_comment, - [246481] = 3, + [242244] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12117), 1, - aux_sym_cmd_identifier_token41, - STATE(7858), 1, + ACTIONS(11751), 1, + anon_sym_RBRACE, + STATE(7613), 1, sym_comment, - [246491] = 3, + [242254] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12119), 1, - anon_sym_RBRACE, - STATE(7859), 1, + ACTIONS(11753), 1, + anon_sym_RPAREN, + STATE(7614), 1, sym_comment, - [246501] = 3, + [242264] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12121), 1, + ACTIONS(11755), 1, anon_sym_RPAREN, - STATE(7860), 1, + STATE(7615), 1, + sym_comment, + [242274] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7437), 1, + anon_sym_LBRACK2, + STATE(7616), 1, sym_comment, - [246511] = 3, + [242284] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12123), 1, + ACTIONS(11757), 1, anon_sym_EQ, - STATE(7861), 1, + STATE(7617), 1, sym_comment, - [246521] = 3, + [242294] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12125), 1, - anon_sym_DASH_GT, - STATE(7862), 1, + ACTIONS(11759), 1, + anon_sym_RBRACK, + STATE(7618), 1, sym_comment, - [246531] = 3, + [242304] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12127), 1, + ACTIONS(11761), 1, anon_sym_RPAREN, - STATE(7863), 1, + STATE(7619), 1, sym_comment, - [246541] = 3, - ACTIONS(247), 1, + [242314] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8098), 1, - anon_sym_LBRACK2, - STATE(7864), 1, + ACTIONS(2133), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7620), 1, sym_comment, - [246551] = 3, + [242324] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8797), 1, - aux_sym_unquoted_token2, - STATE(7865), 1, + ACTIONS(11763), 1, + anon_sym_RBRACE, + STATE(7621), 1, sym_comment, - [246561] = 3, + [242334] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12129), 1, + ACTIONS(11765), 1, anon_sym_RPAREN, - STATE(7866), 1, + STATE(7622), 1, + sym_comment, + [242344] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11767), 1, + aux_sym_ctrl_match_token1, + STATE(7623), 1, sym_comment, - [246571] = 3, + [242354] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12131), 1, + ACTIONS(11769), 1, anon_sym_RBRACK, - STATE(7867), 1, + STATE(7624), 1, sym_comment, - [246581] = 3, + [242364] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12133), 1, + ACTIONS(11771), 1, anon_sym_RPAREN, - STATE(7868), 1, + STATE(7625), 1, sym_comment, - [246591] = 3, - ACTIONS(247), 1, + [242374] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12135), 1, - anon_sym_GT, - STATE(7869), 1, + ACTIONS(6377), 1, + aux_sym_unquoted_token4, + STATE(7626), 1, sym_comment, - [246601] = 3, + [242384] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12137), 1, - anon_sym_RBRACE, - STATE(7870), 1, + ACTIONS(7668), 1, + anon_sym_LBRACK2, + STATE(7627), 1, sym_comment, - [246611] = 3, + [242394] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12139), 1, + ACTIONS(11773), 1, anon_sym_RBRACK, - STATE(7871), 1, + STATE(7628), 1, sym_comment, - [246621] = 3, + [242404] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(541), 1, - anon_sym_RPAREN2, - STATE(7872), 1, + ACTIONS(11775), 1, + anon_sym_GT, + STATE(7629), 1, sym_comment, - [246631] = 3, + [242414] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12141), 1, - anon_sym_RBRACE, - STATE(7873), 1, + ACTIONS(11777), 1, + anon_sym_RPAREN, + STATE(7630), 1, sym_comment, - [246641] = 3, + [242424] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12143), 1, - anon_sym_LPAREN2, - STATE(7874), 1, + ACTIONS(539), 1, + anon_sym_RPAREN2, + STATE(7631), 1, sym_comment, - [246651] = 3, + [242434] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12145), 1, - anon_sym_RPAREN, - STATE(7875), 1, + ACTIONS(11779), 1, + sym_long_flag_identifier, + STATE(7632), 1, sym_comment, - [246661] = 3, + [242444] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5059), 1, - anon_sym_LBRACK2, - STATE(7876), 1, + ACTIONS(6790), 1, + aux_sym_unquoted_token2, + STATE(7633), 1, sym_comment, - [246671] = 3, + [242454] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12147), 1, - anon_sym_RPAREN, - STATE(7877), 1, + ACTIONS(11781), 1, + anon_sym_RBRACK, + STATE(7634), 1, sym_comment, - [246681] = 3, + [242464] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12149), 1, + ACTIONS(11783), 1, anon_sym_EQ, - STATE(7878), 1, + STATE(7635), 1, sym_comment, - [246691] = 3, + [242474] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12151), 1, + ACTIONS(11785), 1, anon_sym_RPAREN, - STATE(7879), 1, + STATE(7636), 1, sym_comment, - [246701] = 3, + [242484] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12153), 1, - anon_sym_RPAREN, - STATE(7880), 1, + ACTIONS(11787), 1, + anon_sym_RBRACE, + STATE(7637), 1, sym_comment, - [246711] = 3, + [242494] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12155), 1, - aux_sym_record_entry_token1, - STATE(7881), 1, + ACTIONS(4868), 1, + anon_sym_LBRACK2, + STATE(7638), 1, sym_comment, - [246721] = 3, + [242504] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5786), 1, - aux_sym__unquoted_in_list_token2, - STATE(7882), 1, + ACTIONS(11789), 1, + anon_sym_RBRACE, + STATE(7639), 1, sym_comment, - [246731] = 3, - ACTIONS(3), 1, + [242514] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1953), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7883), 1, + ACTIONS(11791), 1, + anon_sym_EQ_GT, + STATE(7640), 1, sym_comment, - [246741] = 3, + [242524] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12157), 1, + ACTIONS(11793), 1, anon_sym_RBRACE, - STATE(7884), 1, + STATE(7641), 1, sym_comment, - [246751] = 3, + [242534] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(551), 1, - anon_sym_RPAREN2, - STATE(7885), 1, + ACTIONS(11795), 1, + anon_sym_RBRACE, + STATE(7642), 1, sym_comment, - [246761] = 3, + [242544] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12159), 1, - sym__table_head_separator, - STATE(7886), 1, + ACTIONS(11797), 1, + anon_sym_RBRACE, + STATE(7643), 1, sym_comment, - [246771] = 3, - ACTIONS(3), 1, + [242554] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12161), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7887), 1, + ACTIONS(11799), 1, + anon_sym_EQ, + STATE(7644), 1, sym_comment, - [246781] = 3, + [242564] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7289), 1, - anon_sym_LBRACK2, - STATE(7888), 1, + ACTIONS(11801), 1, + sym_param_short_flag_identifier, + STATE(7645), 1, sym_comment, - [246791] = 3, + [242574] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12163), 1, - sym_identifier, - STATE(7889), 1, + ACTIONS(11803), 1, + anon_sym_RBRACK, + STATE(7646), 1, sym_comment, - [246801] = 3, + [242584] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4817), 1, - aux_sym_unquoted_token2, - STATE(7890), 1, + ACTIONS(2327), 1, + aux_sym_record_entry_token1, + STATE(7647), 1, sym_comment, - [246811] = 3, + [242594] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1567), 1, - aux_sym__unquoted_in_record_token2, - STATE(7891), 1, + ACTIONS(7025), 1, + anon_sym_LBRACK2, + STATE(7648), 1, + sym_comment, + [242604] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2133), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7649), 1, sym_comment, - [246821] = 3, + [242614] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12165), 1, - anon_sym_RBRACK, - STATE(7892), 1, + ACTIONS(11805), 1, + anon_sym_GT, + STATE(7650), 1, sym_comment, - [246831] = 3, + [242624] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12167), 1, - ts_builtin_sym_end, - STATE(7893), 1, + ACTIONS(11807), 1, + sym__table_head_separator, + STATE(7651), 1, sym_comment, - [246841] = 3, + [242634] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2019), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7652), 1, + sym_comment, + [242644] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(9418), 1, aux_sym_unquoted_token2, - STATE(7894), 1, + STATE(7653), 1, sym_comment, - [246851] = 3, + [242654] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12169), 1, - anon_sym_RBRACK, - STATE(7895), 1, + ACTIONS(675), 1, + ts_builtin_sym_end, + STATE(7654), 1, sym_comment, - [246861] = 3, + [242664] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12171), 1, - anon_sym_RPAREN, - STATE(7896), 1, + ACTIONS(11679), 1, + aux_sym_ctrl_match_token1, + STATE(7655), 1, sym_comment, - [246871] = 3, + [242674] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12173), 1, - anon_sym_RBRACE, - STATE(7897), 1, + ACTIONS(11809), 1, + anon_sym_RBRACK, + STATE(7656), 1, sym_comment, - [246881] = 3, + [242684] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12175), 1, - anon_sym_RBRACE, - STATE(7898), 1, + ACTIONS(11811), 1, + anon_sym_RPAREN, + STATE(7657), 1, sym_comment, - [246891] = 3, + [242694] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7173), 1, + ACTIONS(6920), 1, anon_sym_LBRACK2, - STATE(7899), 1, + STATE(7658), 1, sym_comment, - [246901] = 3, - ACTIONS(247), 1, + [242704] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12177), 1, - anon_sym_EQ, - STATE(7900), 1, + ACTIONS(5625), 1, + aux_sym__unquoted_in_list_token4, + STATE(7659), 1, sym_comment, - [246911] = 3, + [242714] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12179), 1, + ACTIONS(11813), 1, sym__space, - STATE(7901), 1, + STATE(7660), 1, sym_comment, - [246921] = 3, + [242724] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12181), 1, + ACTIONS(11815), 1, anon_sym_RBRACE, - STATE(7902), 1, - sym_comment, - [246931] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(12183), 1, - anon_sym_RPAREN, - STATE(7903), 1, + STATE(7661), 1, sym_comment, - [246941] = 3, + [242734] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12185), 1, + ACTIONS(11817), 1, anon_sym_RPAREN, - STATE(7904), 1, + STATE(7662), 1, sym_comment, - [246951] = 3, + [242744] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12187), 1, - sym_param_short_flag_identifier, - STATE(7905), 1, + ACTIONS(11819), 1, + anon_sym_RBRACK, + STATE(7663), 1, sym_comment, - [246961] = 3, + [242754] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12189), 1, - anon_sym_RBRACE, - STATE(7906), 1, + ACTIONS(5323), 1, + aux_sym_cmd_identifier_token41, + STATE(7664), 1, sym_comment, - [246971] = 3, - ACTIONS(247), 1, + [242764] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12191), 1, - anon_sym_RBRACK, - STATE(7907), 1, + ACTIONS(4785), 1, + aux_sym_cmd_identifier_token37, + STATE(7665), 1, sym_comment, - [246981] = 3, + [242774] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12193), 1, - anon_sym_RPAREN, - STATE(7908), 1, - sym_comment, - [246991] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12195), 1, - aux_sym_comment_token1, - STATE(7909), 1, + ACTIONS(547), 1, + anon_sym_RPAREN2, + STATE(7666), 1, sym_comment, - [247001] = 3, + [242784] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6220), 1, + ACTIONS(6011), 1, anon_sym_LBRACK2, - STATE(7910), 1, + STATE(7667), 1, sym_comment, - [247011] = 3, + [242794] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4920), 1, - aux_sym_unquoted_token2, - STATE(7911), 1, + ACTIONS(11821), 1, + anon_sym_RPAREN, + STATE(7668), 1, sym_comment, - [247021] = 3, + [242804] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10693), 1, - aux_sym_cmd_identifier_token37, - STATE(7912), 1, + ACTIONS(11823), 1, + aux_sym_shebang_token1, + STATE(7669), 1, sym_comment, - [247031] = 3, + [242814] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12197), 1, - anon_sym_RPAREN, - STATE(7913), 1, + ACTIONS(5625), 1, + aux_sym__unquoted_in_list_token2, + STATE(7670), 1, sym_comment, - [247041] = 3, + [242824] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12199), 1, - anon_sym_RPAREN, - STATE(7914), 1, + ACTIONS(11825), 1, + anon_sym_RBRACE, + STATE(7671), 1, sym_comment, - [247051] = 3, + [242834] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2129), 1, + ACTIONS(6930), 1, aux_sym_unquoted_token2, - STATE(7915), 1, + STATE(7672), 1, sym_comment, - [247061] = 3, + [242844] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7183), 1, - aux_sym_unquoted_token2, - STATE(7916), 1, + ACTIONS(11827), 1, + anon_sym_RBRACE, + STATE(7673), 1, sym_comment, - [247071] = 3, + [242854] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12201), 1, - anon_sym_GT, - STATE(7917), 1, + ACTIONS(11829), 1, + anon_sym_RPAREN, + STATE(7674), 1, sym_comment, - [247081] = 3, + [242864] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12203), 1, - sym__table_head_separator, - STATE(7918), 1, + ACTIONS(11831), 1, + anon_sym_RBRACK, + STATE(7675), 1, sym_comment, - [247091] = 3, + [242874] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2083), 1, + ACTIONS(6930), 1, aux_sym_unquoted_token4, - STATE(7919), 1, - sym_comment, - [247101] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1953), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7920), 1, + STATE(7676), 1, sym_comment, - [247111] = 3, + [242884] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6723), 1, + ACTIONS(6486), 1, anon_sym_LBRACK2, - STATE(7921), 1, + STATE(7677), 1, sym_comment, - [247121] = 3, - ACTIONS(247), 1, + [242894] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12205), 1, - anon_sym_GT, - STATE(7922), 1, + ACTIONS(6874), 1, + aux_sym_unquoted_token4, + STATE(7678), 1, sym_comment, - [247131] = 3, + [242904] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12207), 1, - anon_sym_RBRACE, - STATE(7923), 1, + ACTIONS(4299), 1, + aux_sym_unquoted_token2, + STATE(7679), 1, sym_comment, - [247141] = 3, + [242914] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12209), 1, - aux_sym_ctrl_match_token1, - STATE(7924), 1, + ACTIONS(11833), 1, + anon_sym_RBRACE, + STATE(7680), 1, sym_comment, - [247151] = 3, + [242924] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12211), 1, - anon_sym_RPAREN, - STATE(7925), 1, + ACTIONS(11835), 1, + anon_sym_RBRACK, + STATE(7681), 1, sym_comment, - [247161] = 3, + [242934] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12213), 1, - sym__table_head_separator, - STATE(7926), 1, + ACTIONS(11837), 1, + anon_sym_RBRACE, + STATE(7682), 1, sym_comment, - [247171] = 3, + [242944] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8797), 1, + ACTIONS(8432), 1, aux_sym_unquoted_token4, - STATE(7927), 1, + STATE(7683), 1, sym_comment, - [247181] = 3, + [242954] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9386), 1, - aux_sym_unquoted_token2, - STATE(7928), 1, + ACTIONS(1589), 1, + aux_sym__unquoted_in_record_token2, + STATE(7684), 1, sym_comment, - [247191] = 3, + [242964] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12215), 1, - sym_identifier, - STATE(7929), 1, - sym_comment, - [247201] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6600), 1, - aux_sym_unquoted_token4, - STATE(7930), 1, + ACTIONS(11839), 1, + aux_sym_ctrl_match_token1, + STATE(7685), 1, sym_comment, - [247211] = 3, + [242974] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12217), 1, - anon_sym_RBRACE, - STATE(7931), 1, + ACTIONS(11841), 1, + sym_identifier, + STATE(7686), 1, sym_comment, - [247221] = 3, + [242984] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3377), 1, + ACTIONS(10622), 1, anon_sym_LBRACK2, - STATE(7932), 1, - sym_comment, - [247231] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12219), 1, - sym__space, - STATE(7933), 1, - sym_comment, - [247241] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(12221), 1, - sym_identifier, - STATE(7934), 1, + STATE(7687), 1, sym_comment, - [247251] = 3, + [242994] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12223), 1, + ACTIONS(11843), 1, anon_sym_RBRACK, - STATE(7935), 1, + STATE(7688), 1, sym_comment, - [247261] = 3, + [243004] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12225), 1, - anon_sym_RBRACK, - STATE(7936), 1, + ACTIONS(11845), 1, + anon_sym_RPAREN, + STATE(7689), 1, sym_comment, - [247271] = 3, + [243014] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12227), 1, + ACTIONS(11847), 1, anon_sym_RPAREN, - STATE(7937), 1, + STATE(7690), 1, sym_comment, - [247281] = 3, + [243024] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12229), 1, + ACTIONS(11849), 1, anon_sym_RBRACE, - STATE(7938), 1, + STATE(7691), 1, sym_comment, - [247291] = 3, + [243034] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4728), 1, - aux_sym_record_entry_token1, - STATE(7939), 1, + ACTIONS(11851), 1, + anon_sym_RPAREN, + STATE(7692), 1, sym_comment, - [247301] = 3, + [243044] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12231), 1, + ACTIONS(11853), 1, anon_sym_RBRACE, - STATE(7940), 1, + STATE(7693), 1, sym_comment, - [247311] = 3, + [243054] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12233), 1, + ACTIONS(11855), 1, anon_sym_RBRACE, - STATE(7941), 1, + STATE(7694), 1, sym_comment, - [247321] = 3, + [243064] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2387), 1, - anon_sym_LBRACK2, - STATE(7942), 1, + ACTIONS(11857), 1, + anon_sym_RBRACE, + STATE(7695), 1, sym_comment, - [247331] = 3, + [243074] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12235), 1, + ACTIONS(11859), 1, anon_sym_RPAREN, - STATE(7943), 1, + STATE(7696), 1, sym_comment, - [247341] = 3, + [243084] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12237), 1, - anon_sym_EQ, - STATE(7944), 1, + ACTIONS(2447), 1, + anon_sym_LBRACK2, + STATE(7697), 1, sym_comment, - [247351] = 3, + [243094] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12239), 1, - sym_identifier, - STATE(7945), 1, + ACTIONS(11861), 1, + anon_sym_EQ_GT, + STATE(7698), 1, sym_comment, - [247361] = 3, - ACTIONS(247), 1, + [243104] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12241), 1, - anon_sym_RPAREN, - STATE(7946), 1, + ACTIONS(11863), 1, + aux_sym_comment_token1, + STATE(7699), 1, sym_comment, - [247371] = 3, + [243114] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12243), 1, - anon_sym_RPAREN, - STATE(7947), 1, + ACTIONS(3213), 1, + aux_sym_record_entry_token1, + STATE(7700), 1, sym_comment, - [247381] = 3, + [243124] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12245), 1, - anon_sym_EQ, - STATE(7948), 1, + ACTIONS(11865), 1, + anon_sym_RBRACK, + STATE(7701), 1, sym_comment, - [247391] = 3, + [243134] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12247), 1, - anon_sym_RBRACK, - STATE(7949), 1, + ACTIONS(551), 1, + anon_sym_RPAREN2, + STATE(7702), 1, sym_comment, - [247401] = 3, + [243144] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12249), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7950), 1, - sym_comment, - [247411] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2237), 1, - anon_sym_LBRACK2, - STATE(7951), 1, + ACTIONS(2241), 1, + aux_sym_unquoted_token4, + STATE(7703), 1, sym_comment, - [247421] = 3, + [243154] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12251), 1, + ACTIONS(11867), 1, anon_sym_RPAREN, - STATE(7952), 1, + STATE(7704), 1, sym_comment, - [247431] = 3, + [243164] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5335), 1, - aux_sym_cmd_identifier_token41, - STATE(7953), 1, + ACTIONS(11869), 1, + anon_sym_GT, + STATE(7705), 1, sym_comment, - [247441] = 3, + [243174] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12253), 1, - aux_sym_ctrl_match_token1, - STATE(7954), 1, + ACTIONS(2305), 1, + anon_sym_LBRACK2, + STATE(7706), 1, sym_comment, - [247451] = 3, + [243184] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12255), 1, - anon_sym_RPAREN, - STATE(7955), 1, + ACTIONS(11871), 1, + anon_sym_RBRACE, + STATE(7707), 1, sym_comment, - [247461] = 3, + [243194] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12257), 1, - anon_sym_RPAREN, - STATE(7956), 1, + ACTIONS(11873), 1, + anon_sym_GT, + STATE(7708), 1, sym_comment, - [247471] = 3, + [243204] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7091), 1, + ACTIONS(1806), 1, aux_sym_unquoted_token2, - STATE(7957), 1, + STATE(7709), 1, sym_comment, - [247481] = 3, + [243214] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12259), 1, - anon_sym_RPAREN, - STATE(7958), 1, + ACTIONS(11875), 1, + anon_sym_EQ, + STATE(7710), 1, sym_comment, - [247491] = 3, + [243224] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12261), 1, - anon_sym_RPAREN, - STATE(7959), 1, + ACTIONS(11877), 1, + anon_sym_RBRACK, + STATE(7711), 1, sym_comment, - [247501] = 3, + [243234] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12263), 1, - anon_sym_RBRACE, - STATE(7960), 1, + ACTIONS(11879), 1, + anon_sym_RPAREN2, + STATE(7712), 1, sym_comment, - [247511] = 3, + [243244] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12265), 1, - anon_sym_RBRACE, - STATE(7961), 1, + ACTIONS(1553), 1, + aux_sym_unquoted_token2, + STATE(7713), 1, sym_comment, - [247521] = 3, + [243254] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12267), 1, - anon_sym_RBRACE, - STATE(7962), 1, + ACTIONS(1495), 1, + aux_sym_unquoted_token2, + STATE(7714), 1, sym_comment, - [247531] = 3, + [243264] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12269), 1, - anon_sym_RPAREN, - STATE(7963), 1, + ACTIONS(5136), 1, + aux_sym_cmd_identifier_token41, + STATE(7715), 1, sym_comment, - [247541] = 3, + [243274] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12271), 1, + ACTIONS(11881), 1, anon_sym_RPAREN, - STATE(7964), 1, + STATE(7716), 1, sym_comment, - [247551] = 3, + [243284] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12273), 1, - aux_sym_cmd_identifier_token41, - STATE(7965), 1, + ACTIONS(11883), 1, + anon_sym_RBRACE, + STATE(7717), 1, sym_comment, - [247561] = 3, + [243294] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12275), 1, - anon_sym_RBRACE, - STATE(7966), 1, + ACTIONS(11446), 1, + aux_sym_ctrl_match_token1, + STATE(7718), 1, sym_comment, - [247571] = 3, + [243304] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12277), 1, + ACTIONS(11885), 1, anon_sym_RPAREN, - STATE(7967), 1, + STATE(7719), 1, sym_comment, - [247581] = 3, + [243314] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(555), 1, + ACTIONS(575), 1, anon_sym_RPAREN2, - STATE(7968), 1, + STATE(7720), 1, sym_comment, - [247591] = 3, + [243324] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12279), 1, - anon_sym_RPAREN, - STATE(7969), 1, + ACTIONS(11887), 1, + anon_sym_RBRACE, + STATE(7721), 1, sym_comment, - [247601] = 3, - ACTIONS(3), 1, + [243334] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12281), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7970), 1, + ACTIONS(11889), 1, + anon_sym_GT, + STATE(7722), 1, + sym_comment, + [243344] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11891), 1, + anon_sym_RPAREN, + STATE(7723), 1, sym_comment, - [247611] = 3, + [243354] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11696), 1, - aux_sym_cmd_identifier_token37, - STATE(7971), 1, + ACTIONS(9418), 1, + aux_sym_unquoted_token4, + STATE(7724), 1, sym_comment, - [247621] = 3, + [243364] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1953), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7972), 1, + ACTIONS(11224), 1, + aux_sym_cmd_identifier_token37, + STATE(7725), 1, sym_comment, - [247631] = 3, + [243374] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12283), 1, + ACTIONS(11893), 1, anon_sym_RPAREN, - STATE(7973), 1, + STATE(7726), 1, sym_comment, - [247641] = 3, + [243384] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(603), 1, - anon_sym_RPAREN2, - STATE(7974), 1, + ACTIONS(11895), 1, + anon_sym_RBRACE, + STATE(7727), 1, sym_comment, - [247651] = 3, + [243394] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12285), 1, - anon_sym_RPAREN, - STATE(7975), 1, + ACTIONS(11897), 1, + aux_sym_ctrl_match_token1, + STATE(7728), 1, sym_comment, - [247661] = 3, - ACTIONS(3), 1, + [243404] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11484), 1, - aux_sym_cmd_identifier_token37, - STATE(7976), 1, + ACTIONS(11899), 1, + anon_sym_RBRACE, + STATE(7729), 1, sym_comment, - [247671] = 3, + [243414] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5430), 1, - aux_sym_cmd_identifier_token41, - STATE(7977), 1, + ACTIONS(11901), 1, + anon_sym_RBRACK, + STATE(7730), 1, sym_comment, - [247681] = 3, + [243424] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12287), 1, + ACTIONS(11903), 1, anon_sym_RBRACE, - STATE(7978), 1, + STATE(7731), 1, sym_comment, - [247691] = 3, + [243434] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12289), 1, - anon_sym_RBRACK, - STATE(7979), 1, + ACTIONS(11905), 1, + anon_sym_RPAREN, + STATE(7732), 1, sym_comment, - [247701] = 3, + [243444] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12291), 1, - anon_sym_RPAREN, - STATE(7980), 1, + ACTIONS(6874), 1, + aux_sym_unquoted_token2, + STATE(7733), 1, sym_comment, - [247711] = 3, + [243454] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5562), 1, - aux_sym_unquoted_token2, - STATE(7981), 1, + ACTIONS(11907), 1, + sym__table_head_separator, + STATE(7734), 1, sym_comment, - [247721] = 3, + [243464] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12293), 1, - anon_sym_RPAREN, - STATE(7982), 1, + ACTIONS(11909), 1, + aux_sym_cmd_identifier_token41, + STATE(7735), 1, + sym_comment, + [243474] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11911), 1, + anon_sym_RBRACE, + STATE(7736), 1, + sym_comment, + [243484] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11913), 1, + anon_sym_RBRACE, + STATE(7737), 1, sym_comment, - [247731] = 3, + [243494] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12295), 1, + ACTIONS(11915), 1, anon_sym_RPAREN, - STATE(7983), 1, + STATE(7738), 1, sym_comment, - [247741] = 3, + [243504] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11774), 1, - anon_sym_make, - STATE(7984), 1, + ACTIONS(11917), 1, + anon_sym_RPAREN, + STATE(7739), 1, sym_comment, - [247751] = 3, + [243514] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12297), 1, - anon_sym_RBRACE, - STATE(7985), 1, + ACTIONS(11919), 1, + anon_sym_EQ, + STATE(7740), 1, sym_comment, - [247761] = 3, + [243524] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7059), 1, + ACTIONS(4441), 1, aux_sym_unquoted_token4, - STATE(7986), 1, + STATE(7741), 1, sym_comment, - [247771] = 3, + [243534] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12299), 1, - anon_sym_RPAREN, - STATE(7987), 1, + ACTIONS(4568), 1, + aux_sym_unquoted_token2, + STATE(7742), 1, sym_comment, - [247781] = 3, + [243544] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12301), 1, - anon_sym_RBRACK, - STATE(7988), 1, + ACTIONS(559), 1, + anon_sym_RPAREN2, + STATE(7743), 1, sym_comment, - [247791] = 3, + [243554] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12303), 1, + ACTIONS(11921), 1, anon_sym_RPAREN, - STATE(7989), 1, + STATE(7744), 1, sym_comment, - [247801] = 3, + [243564] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12305), 1, - aux_sym_ctrl_match_token1, - STATE(7990), 1, + ACTIONS(11923), 1, + anon_sym_RPAREN, + STATE(7745), 1, sym_comment, - [247811] = 3, + [243574] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12307), 1, + ACTIONS(11925), 1, anon_sym_EQ, - STATE(7991), 1, + STATE(7746), 1, sym_comment, - [247821] = 3, + [243584] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12309), 1, - anon_sym_RBRACE, - STATE(7992), 1, + ACTIONS(11125), 1, + anon_sym_EQ_GT, + STATE(7747), 1, sym_comment, - [247831] = 3, + [243594] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12311), 1, - anon_sym_RPAREN, - STATE(7993), 1, + ACTIONS(11927), 1, + anon_sym_RBRACK, + STATE(7748), 1, sym_comment, - [247841] = 3, + [243604] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1943), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7994), 1, + ACTIONS(4568), 1, + aux_sym_unquoted_token4, + STATE(7749), 1, sym_comment, - [247851] = 3, + [243614] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12313), 1, - anon_sym_RBRACE, - STATE(7995), 1, + ACTIONS(11929), 1, + anon_sym_RPAREN, + STATE(7750), 1, sym_comment, - [247861] = 3, - ACTIONS(3), 1, + [243624] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1943), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7996), 1, + ACTIONS(11931), 1, + anon_sym_RPAREN, + STATE(7751), 1, sym_comment, - [247871] = 3, + [243634] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12315), 1, + ACTIONS(11933), 1, anon_sym_RBRACK, - STATE(7997), 1, + STATE(7752), 1, sym_comment, - [247881] = 3, + [243644] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12317), 1, - anon_sym_EQ, - STATE(7998), 1, + ACTIONS(4441), 1, + aux_sym_unquoted_token2, + STATE(7753), 1, sym_comment, - [247891] = 3, + [243654] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12319), 1, - anon_sym_RPAREN, - STATE(7999), 1, + ACTIONS(11935), 1, + aux_sym_ctrl_match_token1, + STATE(7754), 1, sym_comment, - [247901] = 3, + [243664] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4889), 1, - aux_sym_unquoted_token2, - STATE(8000), 1, + ACTIONS(11937), 1, + anon_sym_RBRACK, + STATE(7755), 1, sym_comment, - [247911] = 3, + [243674] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12321), 1, + ACTIONS(11939), 1, anon_sym_LPAREN2, - STATE(8001), 1, + STATE(7756), 1, sym_comment, - [247921] = 3, + [243684] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12323), 1, - aux_sym_ctrl_match_token1, - STATE(8002), 1, + ACTIONS(11941), 1, + sym__table_head_separator, + STATE(7757), 1, sym_comment, - [247931] = 3, + [243694] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12325), 1, - anon_sym_EQ_GT, - STATE(8003), 1, + ACTIONS(11943), 1, + anon_sym_RPAREN, + STATE(7758), 1, sym_comment, - [247941] = 3, + [243704] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1457), 1, - aux_sym_unquoted_token2, - STATE(8004), 1, + ACTIONS(11945), 1, + anon_sym_RPAREN, + STATE(7759), 1, sym_comment, - [247951] = 3, - ACTIONS(3), 1, + [243714] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7183), 1, - aux_sym_unquoted_token4, - STATE(8005), 1, + ACTIONS(11947), 1, + anon_sym_RPAREN, + STATE(7760), 1, sym_comment, - [247961] = 3, + [243724] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12327), 1, - anon_sym_RBRACK, - STATE(8006), 1, + ACTIONS(11949), 1, + anon_sym_RBRACE, + STATE(7761), 1, sym_comment, - [247971] = 3, + [243734] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12329), 1, - aux_sym_ctrl_match_token1, - STATE(8007), 1, + ACTIONS(11951), 1, + anon_sym_RBRACE, + STATE(7762), 1, sym_comment, - [247981] = 3, + [243744] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12331), 1, + ACTIONS(11953), 1, anon_sym_RPAREN, - STATE(8008), 1, + STATE(7763), 1, sym_comment, - [247991] = 3, + [243754] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12333), 1, + ACTIONS(11955), 1, anon_sym_in, - STATE(8009), 1, + STATE(7764), 1, sym_comment, - [248001] = 3, + [243764] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12335), 1, - anon_sym_RBRACE, - STATE(8010), 1, + ACTIONS(10905), 1, + anon_sym_EQ_GT, + STATE(7765), 1, sym_comment, - [248011] = 3, + [243774] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12337), 1, + ACTIONS(11957), 1, anon_sym_in, - STATE(8011), 1, + STATE(7766), 1, sym_comment, - [248021] = 3, + [243784] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12339), 1, + ACTIONS(11959), 1, anon_sym_RBRACE, - STATE(8012), 1, - sym_comment, - [248031] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2957), 1, - aux_sym_unquoted_token2, - STATE(8013), 1, + STATE(7767), 1, sym_comment, - [248041] = 3, + [243794] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12341), 1, - anon_sym_RBRACK, - STATE(8014), 1, + ACTIONS(11961), 1, + anon_sym_RBRACE, + STATE(7768), 1, sym_comment, - [248051] = 3, - ACTIONS(247), 1, + [243804] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12343), 1, - aux_sym_cmd_identifier_token41, - STATE(8015), 1, + ACTIONS(11963), 1, + aux_sym_shebang_token1, + STATE(7769), 1, sym_comment, - [248061] = 3, + [243814] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12345), 1, + ACTIONS(11965), 1, anon_sym_RPAREN, - STATE(8016), 1, + STATE(7770), 1, sym_comment, - [248071] = 3, - ACTIONS(247), 1, + [243824] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12347), 1, - anon_sym_RBRACK, - STATE(8017), 1, + ACTIONS(2249), 1, + aux_sym_unquoted_token4, + STATE(7771), 1, sym_comment, - [248081] = 3, + [243834] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12349), 1, - anon_sym_RPAREN, - STATE(8018), 1, + ACTIONS(8432), 1, + aux_sym_unquoted_token2, + STATE(7772), 1, sym_comment, - [248091] = 3, + [243844] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12351), 1, - anon_sym_EQ, - STATE(8019), 1, + ACTIONS(11967), 1, + aux_sym_cmd_identifier_token41, + STATE(7773), 1, sym_comment, - [248101] = 3, - ACTIONS(3), 1, + [243854] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12353), 1, - aux_sym_shebang_token1, - STATE(8020), 1, + ACTIONS(8379), 1, + aux_sym_unquoted_token2, + STATE(7774), 1, sym_comment, - [248111] = 3, + [243864] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12355), 1, + ACTIONS(11969), 1, anon_sym_RBRACE, - STATE(8021), 1, + STATE(7775), 1, sym_comment, - [248121] = 3, + [243874] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12357), 1, - anon_sym_RBRACE, - STATE(8022), 1, + ACTIONS(11971), 1, + anon_sym_RBRACK, + STATE(7776), 1, sym_comment, - [248131] = 3, - ACTIONS(247), 1, + [243884] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12359), 1, - anon_sym_RPAREN, - STATE(8023), 1, + ACTIONS(2019), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7777), 1, sym_comment, - [248141] = 3, + [243894] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7091), 1, - aux_sym_unquoted_token4, - STATE(8024), 1, + ACTIONS(11973), 1, + sym__space, + STATE(7778), 1, sym_comment, - [248151] = 3, - ACTIONS(247), 1, + [243904] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12361), 1, - anon_sym_RPAREN, - STATE(8025), 1, + ACTIONS(9978), 1, + aux_sym_cmd_identifier_token37, + STATE(7779), 1, sym_comment, - [248161] = 3, + [243914] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6081), 1, - anon_sym_LBRACK2, - STATE(8026), 1, + ACTIONS(11975), 1, + anon_sym_RBRACE, + STATE(7780), 1, sym_comment, - [248171] = 3, + [243924] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12363), 1, - anon_sym_RPAREN, - STATE(8027), 1, + ACTIONS(11977), 1, + anon_sym_RBRACE, + STATE(7781), 1, sym_comment, - [248181] = 3, - ACTIONS(3), 1, + [243934] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1943), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(8028), 1, + ACTIONS(11979), 1, + anon_sym_RPAREN, + STATE(7782), 1, sym_comment, - [248191] = 3, + [243944] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12365), 1, + ACTIONS(521), 1, anon_sym_RPAREN2, - STATE(8029), 1, + STATE(7783), 1, sym_comment, - [248201] = 3, - ACTIONS(3), 1, + [243954] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5071), 1, - aux_sym_cmd_identifier_token37, - STATE(8030), 1, + ACTIONS(4712), 1, + aux_sym_unquoted_token2, + STATE(7784), 1, sym_comment, - [248211] = 3, + [243964] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12367), 1, - aux_sym_cmd_identifier_token41, - STATE(8031), 1, + ACTIONS(11981), 1, + anon_sym_RPAREN, + STATE(7785), 1, sym_comment, - [248221] = 3, + [243974] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6600), 1, - aux_sym_unquoted_token2, - STATE(8032), 1, + ACTIONS(11983), 1, + anon_sym_RPAREN, + STATE(7786), 1, sym_comment, - [248231] = 3, + [243984] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12369), 1, - anon_sym_RBRACE, - STATE(8033), 1, + ACTIONS(11985), 1, + anon_sym_RPAREN, + STATE(7787), 1, sym_comment, - [248241] = 3, + [243994] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6662), 1, - anon_sym_LPAREN2, - STATE(8034), 1, + ACTIONS(489), 1, + anon_sym_RPAREN2, + STATE(7788), 1, sym_comment, - [248251] = 3, + [244004] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12371), 1, - anon_sym_RBRACK, - STATE(8035), 1, + ACTIONS(11987), 1, + sym_identifier, + STATE(7789), 1, sym_comment, - [248261] = 3, + [244014] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12373), 1, + ACTIONS(6429), 1, anon_sym_LPAREN2, - STATE(8036), 1, + STATE(7790), 1, sym_comment, - [248271] = 3, + [244024] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12375), 1, - anon_sym_RBRACE, - STATE(8037), 1, + ACTIONS(11989), 1, + anon_sym_RPAREN, + STATE(7791), 1, sym_comment, - [248281] = 3, + [244034] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12377), 1, + ACTIONS(11991), 1, anon_sym_LPAREN2, - STATE(8038), 1, + STATE(7792), 1, sym_comment, - [248291] = 3, - ACTIONS(247), 1, + [244044] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12379), 1, - anon_sym_RBRACK, - STATE(8039), 1, + ACTIONS(11993), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7793), 1, sym_comment, - [248301] = 3, + [244054] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12381), 1, + ACTIONS(11995), 1, anon_sym_LPAREN2, - STATE(8040), 1, + STATE(7794), 1, sym_comment, - [248311] = 3, - ACTIONS(247), 1, + [244064] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12383), 1, - anon_sym_RBRACK, - STATE(8041), 1, + ACTIONS(11997), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7795), 1, sym_comment, - [248321] = 3, + [244074] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12385), 1, - anon_sym_RPAREN, - STATE(8042), 1, + ACTIONS(11999), 1, + sym__table_head_separator, + STATE(7796), 1, sym_comment, - [248331] = 3, + [244084] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12387), 1, + ACTIONS(12001), 1, anon_sym_RBRACE, - STATE(8043), 1, + STATE(7797), 1, sym_comment, - [248341] = 3, + [244094] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12389), 1, - aux_sym_ctrl_match_token1, - STATE(8044), 1, + ACTIONS(12003), 1, + anon_sym_RBRACK, + STATE(7798), 1, + sym_comment, + [244104] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(12005), 1, + anon_sym_RBRACE, + STATE(7799), 1, sym_comment, - [248351] = 3, + [244114] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12389), 1, + ACTIONS(11537), 1, aux_sym_ctrl_match_token1, - STATE(8045), 1, + STATE(7800), 1, sym_comment, - [248361] = 3, + [244124] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12391), 1, - anon_sym_RBRACE, - STATE(8046), 1, + ACTIONS(12007), 1, + anon_sym_RBRACK, + STATE(7801), 1, sym_comment, - [248371] = 3, + [244134] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12393), 1, + ACTIONS(12009), 1, anon_sym_RBRACE, - STATE(8047), 1, + STATE(7802), 1, sym_comment, - [248381] = 3, + [244144] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12395), 1, - anon_sym_RBRACK, - STATE(8048), 1, + ACTIONS(12011), 1, + anon_sym_RPAREN, + STATE(7803), 1, sym_comment, - [248391] = 3, + [244154] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6636), 1, - aux_sym_unquoted_token2, - STATE(8049), 1, + ACTIONS(12013), 1, + anon_sym_RBRACE, + STATE(7804), 1, sym_comment, - [248401] = 3, + [244164] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12397), 1, - aux_sym_ctrl_match_token1, - STATE(8050), 1, + ACTIONS(12015), 1, + anon_sym_RBRACE, + STATE(7805), 1, sym_comment, - [248411] = 3, - ACTIONS(247), 1, + [244174] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4302), 1, - aux_sym_unquoted_token2, - STATE(8051), 1, + ACTIONS(11390), 1, + aux_sym__record_key_token1, + STATE(7806), 1, sym_comment, - [248421] = 3, + [244184] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12399), 1, - anon_sym_RPAREN, - STATE(8052), 1, + ACTIONS(12017), 1, + anon_sym_RPAREN2, + STATE(7807), 1, sym_comment, - [248431] = 3, + [244194] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3269), 1, - aux_sym_record_entry_token1, - STATE(8053), 1, + ACTIONS(12019), 1, + anon_sym_EQ_GT, + STATE(7808), 1, sym_comment, - [248441] = 3, + [244204] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12401), 1, - sym__table_head_separator, - STATE(8054), 1, + ACTIONS(12021), 1, + anon_sym_RPAREN, + STATE(7809), 1, sym_comment, - [248451] = 3, + [244214] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12403), 1, - anon_sym_RPAREN, - STATE(8055), 1, + ACTIONS(12023), 1, + anon_sym_RBRACE, + STATE(7810), 1, sym_comment, - [248461] = 3, + [244224] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12405), 1, + ACTIONS(12025), 1, anon_sym_RBRACE, - STATE(8056), 1, + STATE(7811), 1, sym_comment, - [248471] = 3, + [244234] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12407), 1, - anon_sym_RPAREN, - STATE(8057), 1, + ACTIONS(12027), 1, + anon_sym_RBRACE, + STATE(7812), 1, sym_comment, - [248481] = 3, - ACTIONS(3), 1, + [244244] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11756), 1, - aux_sym__record_key_token1, - STATE(8058), 1, + ACTIONS(12029), 1, + anon_sym_RBRACE, + STATE(7813), 1, sym_comment, - [248491] = 3, + [244254] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5562), 1, + ACTIONS(4680), 1, aux_sym_unquoted_token4, - STATE(8059), 1, + STATE(7814), 1, sym_comment, - [248501] = 3, - ACTIONS(3), 1, + [244264] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4983), 1, - aux_sym_cmd_identifier_token37, - STATE(8060), 1, + ACTIONS(12031), 1, + anon_sym_RPAREN, + STATE(7815), 1, sym_comment, - [248511] = 1, - ACTIONS(12409), 1, + [244274] = 1, + ACTIONS(12033), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1678)] = 0, - [SMALL_STATE(1679)] = 73, - [SMALL_STATE(1680)] = 146, - [SMALL_STATE(1681)] = 219, - [SMALL_STATE(1682)] = 296, - [SMALL_STATE(1683)] = 369, - [SMALL_STATE(1684)] = 442, - [SMALL_STATE(1685)] = 517, - [SMALL_STATE(1686)] = 622, - [SMALL_STATE(1687)] = 695, - [SMALL_STATE(1688)] = 772, - [SMALL_STATE(1689)] = 845, - [SMALL_STATE(1690)] = 918, - [SMALL_STATE(1691)] = 993, - [SMALL_STATE(1692)] = 1070, - [SMALL_STATE(1693)] = 1143, - [SMALL_STATE(1694)] = 1226, - [SMALL_STATE(1695)] = 1303, - [SMALL_STATE(1696)] = 1378, - [SMALL_STATE(1697)] = 1455, - [SMALL_STATE(1698)] = 1562, - [SMALL_STATE(1699)] = 1637, - [SMALL_STATE(1700)] = 1710, - [SMALL_STATE(1701)] = 1785, - [SMALL_STATE(1702)] = 1892, - [SMALL_STATE(1703)] = 1965, - [SMALL_STATE(1704)] = 2042, - [SMALL_STATE(1705)] = 2115, - [SMALL_STATE(1706)] = 2188, - [SMALL_STATE(1707)] = 2261, - [SMALL_STATE(1708)] = 2338, - [SMALL_STATE(1709)] = 2413, - [SMALL_STATE(1710)] = 2486, - [SMALL_STATE(1711)] = 2561, - [SMALL_STATE(1712)] = 2636, - [SMALL_STATE(1713)] = 2711, - [SMALL_STATE(1714)] = 2786, - [SMALL_STATE(1715)] = 2893, - [SMALL_STATE(1716)] = 2966, - [SMALL_STATE(1717)] = 3039, - [SMALL_STATE(1718)] = 3116, - [SMALL_STATE(1719)] = 3193, - [SMALL_STATE(1720)] = 3268, - [SMALL_STATE(1721)] = 3341, - [SMALL_STATE(1722)] = 3414, - [SMALL_STATE(1723)] = 3487, - [SMALL_STATE(1724)] = 3562, - [SMALL_STATE(1725)] = 3637, - [SMALL_STATE(1726)] = 3714, - [SMALL_STATE(1727)] = 3787, - [SMALL_STATE(1728)] = 3860, - [SMALL_STATE(1729)] = 3937, - [SMALL_STATE(1730)] = 4042, - [SMALL_STATE(1731)] = 4115, - [SMALL_STATE(1732)] = 4188, - [SMALL_STATE(1733)] = 4265, - [SMALL_STATE(1734)] = 4342, - [SMALL_STATE(1735)] = 4415, - [SMALL_STATE(1736)] = 4492, - [SMALL_STATE(1737)] = 4565, - [SMALL_STATE(1738)] = 4638, - [SMALL_STATE(1739)] = 4711, - [SMALL_STATE(1740)] = 4788, - [SMALL_STATE(1741)] = 4861, - [SMALL_STATE(1742)] = 4938, - [SMALL_STATE(1743)] = 5021, - [SMALL_STATE(1744)] = 5094, - [SMALL_STATE(1745)] = 5167, - [SMALL_STATE(1746)] = 5240, - [SMALL_STATE(1747)] = 5345, - [SMALL_STATE(1748)] = 5418, - [SMALL_STATE(1749)] = 5491, - [SMALL_STATE(1750)] = 5564, - [SMALL_STATE(1751)] = 5637, - [SMALL_STATE(1752)] = 5718, - [SMALL_STATE(1753)] = 5799, - [SMALL_STATE(1754)] = 5880, - [SMALL_STATE(1755)] = 5961, - [SMALL_STATE(1756)] = 6042, - [SMALL_STATE(1757)] = 6123, - [SMALL_STATE(1758)] = 6204, - [SMALL_STATE(1759)] = 6285, - [SMALL_STATE(1760)] = 6366, - [SMALL_STATE(1761)] = 6447, - [SMALL_STATE(1762)] = 6528, - [SMALL_STATE(1763)] = 6609, - [SMALL_STATE(1764)] = 6690, - [SMALL_STATE(1765)] = 6771, - [SMALL_STATE(1766)] = 6852, - [SMALL_STATE(1767)] = 6933, - [SMALL_STATE(1768)] = 7014, - [SMALL_STATE(1769)] = 7095, - [SMALL_STATE(1770)] = 7176, - [SMALL_STATE(1771)] = 7257, - [SMALL_STATE(1772)] = 7338, - [SMALL_STATE(1773)] = 7411, - [SMALL_STATE(1774)] = 7484, - [SMALL_STATE(1775)] = 7561, - [SMALL_STATE(1776)] = 7634, - [SMALL_STATE(1777)] = 7711, - [SMALL_STATE(1778)] = 7784, - [SMALL_STATE(1779)] = 7857, - [SMALL_STATE(1780)] = 7930, - [SMALL_STATE(1781)] = 8003, - [SMALL_STATE(1782)] = 8076, - [SMALL_STATE(1783)] = 8149, - [SMALL_STATE(1784)] = 8222, - [SMALL_STATE(1785)] = 8295, - [SMALL_STATE(1786)] = 8368, - [SMALL_STATE(1787)] = 8441, - [SMALL_STATE(1788)] = 8514, - [SMALL_STATE(1789)] = 8587, - [SMALL_STATE(1790)] = 8660, - [SMALL_STATE(1791)] = 8733, - [SMALL_STATE(1792)] = 8806, - [SMALL_STATE(1793)] = 8879, - [SMALL_STATE(1794)] = 8952, - [SMALL_STATE(1795)] = 9025, - [SMALL_STATE(1796)] = 9098, - [SMALL_STATE(1797)] = 9171, - [SMALL_STATE(1798)] = 9244, - [SMALL_STATE(1799)] = 9317, - [SMALL_STATE(1800)] = 9390, - [SMALL_STATE(1801)] = 9463, - [SMALL_STATE(1802)] = 9536, - [SMALL_STATE(1803)] = 9609, - [SMALL_STATE(1804)] = 9682, - [SMALL_STATE(1805)] = 9757, - [SMALL_STATE(1806)] = 9830, - [SMALL_STATE(1807)] = 9903, - [SMALL_STATE(1808)] = 9980, - [SMALL_STATE(1809)] = 10053, - [SMALL_STATE(1810)] = 10130, - [SMALL_STATE(1811)] = 10203, - [SMALL_STATE(1812)] = 10276, - [SMALL_STATE(1813)] = 10349, - [SMALL_STATE(1814)] = 10430, - [SMALL_STATE(1815)] = 10502, - [SMALL_STATE(1816)] = 10582, - [SMALL_STATE(1817)] = 10688, - [SMALL_STATE(1818)] = 10832, - [SMALL_STATE(1819)] = 10906, - [SMALL_STATE(1820)] = 10978, - [SMALL_STATE(1821)] = 11084, - [SMALL_STATE(1822)] = 11156, - [SMALL_STATE(1823)] = 11236, - [SMALL_STATE(1824)] = 11316, - [SMALL_STATE(1825)] = 11388, - [SMALL_STATE(1826)] = 11462, - [SMALL_STATE(1827)] = 11534, - [SMALL_STATE(1828)] = 11606, - [SMALL_STATE(1829)] = 11712, - [SMALL_STATE(1830)] = 11792, - [SMALL_STATE(1831)] = 11936, - [SMALL_STATE(1832)] = 12008, - [SMALL_STATE(1833)] = 12080, - [SMALL_STATE(1834)] = 12152, - [SMALL_STATE(1835)] = 12224, - [SMALL_STATE(1836)] = 12304, - [SMALL_STATE(1837)] = 12378, - [SMALL_STATE(1838)] = 12458, - [SMALL_STATE(1839)] = 12532, - [SMALL_STATE(1840)] = 12606, - [SMALL_STATE(1841)] = 12678, - [SMALL_STATE(1842)] = 12750, - [SMALL_STATE(1843)] = 12822, - [SMALL_STATE(1844)] = 12894, - [SMALL_STATE(1845)] = 12966, - [SMALL_STATE(1846)] = 13038, - [SMALL_STATE(1847)] = 13110, - [SMALL_STATE(1848)] = 13182, - [SMALL_STATE(1849)] = 13254, - [SMALL_STATE(1850)] = 13326, - [SMALL_STATE(1851)] = 13398, - [SMALL_STATE(1852)] = 13470, - [SMALL_STATE(1853)] = 13544, - [SMALL_STATE(1854)] = 13616, - [SMALL_STATE(1855)] = 13688, - [SMALL_STATE(1856)] = 13760, - [SMALL_STATE(1857)] = 13840, - [SMALL_STATE(1858)] = 13912, - [SMALL_STATE(1859)] = 13984, - [SMALL_STATE(1860)] = 14056, - [SMALL_STATE(1861)] = 14128, - [SMALL_STATE(1862)] = 14200, - [SMALL_STATE(1863)] = 14272, - [SMALL_STATE(1864)] = 14344, - [SMALL_STATE(1865)] = 14424, - [SMALL_STATE(1866)] = 14504, - [SMALL_STATE(1867)] = 14584, - [SMALL_STATE(1868)] = 14656, - [SMALL_STATE(1869)] = 14728, - [SMALL_STATE(1870)] = 14800, - [SMALL_STATE(1871)] = 14872, - [SMALL_STATE(1872)] = 14944, - [SMALL_STATE(1873)] = 15024, - [SMALL_STATE(1874)] = 15096, - [SMALL_STATE(1875)] = 15168, - [SMALL_STATE(1876)] = 15248, - [SMALL_STATE(1877)] = 15328, - [SMALL_STATE(1878)] = 15408, - [SMALL_STATE(1879)] = 15482, - [SMALL_STATE(1880)] = 15562, - [SMALL_STATE(1881)] = 15634, - [SMALL_STATE(1882)] = 15714, - [SMALL_STATE(1883)] = 15794, - [SMALL_STATE(1884)] = 15866, - [SMALL_STATE(1885)] = 15938, - [SMALL_STATE(1886)] = 16018, - [SMALL_STATE(1887)] = 16098, - [SMALL_STATE(1888)] = 16170, - [SMALL_STATE(1889)] = 16250, - [SMALL_STATE(1890)] = 16330, - [SMALL_STATE(1891)] = 16410, - [SMALL_STATE(1892)] = 16482, - [SMALL_STATE(1893)] = 16554, - [SMALL_STATE(1894)] = 16634, - [SMALL_STATE(1895)] = 16714, - [SMALL_STATE(1896)] = 16794, - [SMALL_STATE(1897)] = 16866, - [SMALL_STATE(1898)] = 16938, - [SMALL_STATE(1899)] = 17018, - [SMALL_STATE(1900)] = 17090, - [SMALL_STATE(1901)] = 17162, - [SMALL_STATE(1902)] = 17242, - [SMALL_STATE(1903)] = 17314, - [SMALL_STATE(1904)] = 17386, - [SMALL_STATE(1905)] = 17458, - [SMALL_STATE(1906)] = 17530, - [SMALL_STATE(1907)] = 17602, - [SMALL_STATE(1908)] = 17674, - [SMALL_STATE(1909)] = 17746, - [SMALL_STATE(1910)] = 17818, - [SMALL_STATE(1911)] = 17890, - [SMALL_STATE(1912)] = 17964, - [SMALL_STATE(1913)] = 18036, - [SMALL_STATE(1914)] = 18108, - [SMALL_STATE(1915)] = 18180, - [SMALL_STATE(1916)] = 18252, - [SMALL_STATE(1917)] = 18324, - [SMALL_STATE(1918)] = 18396, - [SMALL_STATE(1919)] = 18470, - [SMALL_STATE(1920)] = 18614, - [SMALL_STATE(1921)] = 18758, - [SMALL_STATE(1922)] = 18902, - [SMALL_STATE(1923)] = 19046, - [SMALL_STATE(1924)] = 19118, - [SMALL_STATE(1925)] = 19190, - [SMALL_STATE(1926)] = 19262, - [SMALL_STATE(1927)] = 19334, - [SMALL_STATE(1928)] = 19406, - [SMALL_STATE(1929)] = 19478, - [SMALL_STATE(1930)] = 19550, - [SMALL_STATE(1931)] = 19622, - [SMALL_STATE(1932)] = 19694, - [SMALL_STATE(1933)] = 19766, - [SMALL_STATE(1934)] = 19844, - [SMALL_STATE(1935)] = 19920, - [SMALL_STATE(1936)] = 19992, - [SMALL_STATE(1937)] = 20064, - [SMALL_STATE(1938)] = 20136, - [SMALL_STATE(1939)] = 20208, - [SMALL_STATE(1940)] = 20280, - [SMALL_STATE(1941)] = 20352, - [SMALL_STATE(1942)] = 20424, - [SMALL_STATE(1943)] = 20496, - [SMALL_STATE(1944)] = 20568, - [SMALL_STATE(1945)] = 20640, - [SMALL_STATE(1946)] = 20712, - [SMALL_STATE(1947)] = 20784, - [SMALL_STATE(1948)] = 20856, - [SMALL_STATE(1949)] = 20928, - [SMALL_STATE(1950)] = 21072, - [SMALL_STATE(1951)] = 21146, - [SMALL_STATE(1952)] = 21218, - [SMALL_STATE(1953)] = 21362, - [SMALL_STATE(1954)] = 21436, - [SMALL_STATE(1955)] = 21508, - [SMALL_STATE(1956)] = 21579, - [SMALL_STATE(1957)] = 21650, - [SMALL_STATE(1958)] = 21721, - [SMALL_STATE(1959)] = 21798, - [SMALL_STATE(1960)] = 21877, - [SMALL_STATE(1961)] = 21948, - [SMALL_STATE(1962)] = 22019, - [SMALL_STATE(1963)] = 22096, - [SMALL_STATE(1964)] = 22173, - [SMALL_STATE(1965)] = 22250, - [SMALL_STATE(1966)] = 22321, - [SMALL_STATE(1967)] = 22400, - [SMALL_STATE(1968)] = 22471, - [SMALL_STATE(1969)] = 22550, - [SMALL_STATE(1970)] = 22621, - [SMALL_STATE(1971)] = 22692, - [SMALL_STATE(1972)] = 22769, - [SMALL_STATE(1973)] = 22848, - [SMALL_STATE(1974)] = 22919, - [SMALL_STATE(1975)] = 22996, - [SMALL_STATE(1976)] = 23067, - [SMALL_STATE(1977)] = 23144, - [SMALL_STATE(1978)] = 23221, - [SMALL_STATE(1979)] = 23298, - [SMALL_STATE(1980)] = 23369, - [SMALL_STATE(1981)] = 23446, - [SMALL_STATE(1982)] = 23517, - [SMALL_STATE(1983)] = 23588, - [SMALL_STATE(1984)] = 23659, - [SMALL_STATE(1985)] = 23730, - [SMALL_STATE(1986)] = 23807, - [SMALL_STATE(1987)] = 23878, - [SMALL_STATE(1988)] = 23955, - [SMALL_STATE(1989)] = 24026, - [SMALL_STATE(1990)] = 24099, - [SMALL_STATE(1991)] = 24170, - [SMALL_STATE(1992)] = 24241, - [SMALL_STATE(1993)] = 24318, - [SMALL_STATE(1994)] = 24389, - [SMALL_STATE(1995)] = 24468, - [SMALL_STATE(1996)] = 24545, - [SMALL_STATE(1997)] = 24616, - [SMALL_STATE(1998)] = 24687, - [SMALL_STATE(1999)] = 24766, - [SMALL_STATE(2000)] = 24843, - [SMALL_STATE(2001)] = 24922, - [SMALL_STATE(2002)] = 24993, - [SMALL_STATE(2003)] = 25064, - [SMALL_STATE(2004)] = 25135, - [SMALL_STATE(2005)] = 25212, - [SMALL_STATE(2006)] = 25287, - [SMALL_STATE(2007)] = 25364, - [SMALL_STATE(2008)] = 25435, - [SMALL_STATE(2009)] = 25512, - [SMALL_STATE(2010)] = 25589, - [SMALL_STATE(2011)] = 25660, - [SMALL_STATE(2012)] = 25731, - [SMALL_STATE(2013)] = 25802, - [SMALL_STATE(2014)] = 25879, - [SMALL_STATE(2015)] = 25950, - [SMALL_STATE(2016)] = 26027, - [SMALL_STATE(2017)] = 26104, - [SMALL_STATE(2018)] = 26175, - [SMALL_STATE(2019)] = 26246, - [SMALL_STATE(2020)] = 26323, - [SMALL_STATE(2021)] = 26394, - [SMALL_STATE(2022)] = 26465, - [SMALL_STATE(2023)] = 26542, - [SMALL_STATE(2024)] = 26613, - [SMALL_STATE(2025)] = 26684, - [SMALL_STATE(2026)] = 26755, - [SMALL_STATE(2027)] = 26834, - [SMALL_STATE(2028)] = 26905, - [SMALL_STATE(2029)] = 26976, - [SMALL_STATE(2030)] = 27055, - [SMALL_STATE(2031)] = 27134, - [SMALL_STATE(2032)] = 27211, - [SMALL_STATE(2033)] = 27282, - [SMALL_STATE(2034)] = 27359, - [SMALL_STATE(2035)] = 27430, - [SMALL_STATE(2036)] = 27507, - [SMALL_STATE(2037)] = 27578, - [SMALL_STATE(2038)] = 27649, - [SMALL_STATE(2039)] = 27726, - [SMALL_STATE(2040)] = 27797, - [SMALL_STATE(2041)] = 27868, - [SMALL_STATE(2042)] = 27939, - [SMALL_STATE(2043)] = 28010, - [SMALL_STATE(2044)] = 28081, - [SMALL_STATE(2045)] = 28152, - [SMALL_STATE(2046)] = 28229, - [SMALL_STATE(2047)] = 28306, - [SMALL_STATE(2048)] = 28377, - [SMALL_STATE(2049)] = 28448, - [SMALL_STATE(2050)] = 28527, - [SMALL_STATE(2051)] = 28604, - [SMALL_STATE(2052)] = 28681, - [SMALL_STATE(2053)] = 28758, - [SMALL_STATE(2054)] = 28829, - [SMALL_STATE(2055)] = 28906, - [SMALL_STATE(2056)] = 28977, - [SMALL_STATE(2057)] = 29056, - [SMALL_STATE(2058)] = 29127, - [SMALL_STATE(2059)] = 29204, - [SMALL_STATE(2060)] = 29281, - [SMALL_STATE(2061)] = 29352, - [SMALL_STATE(2062)] = 29423, - [SMALL_STATE(2063)] = 29494, - [SMALL_STATE(2064)] = 29571, - [SMALL_STATE(2065)] = 29642, - [SMALL_STATE(2066)] = 29713, - [SMALL_STATE(2067)] = 29790, - [SMALL_STATE(2068)] = 29861, - [SMALL_STATE(2069)] = 29938, - [SMALL_STATE(2070)] = 30009, - [SMALL_STATE(2071)] = 30088, - [SMALL_STATE(2072)] = 30159, - [SMALL_STATE(2073)] = 30236, - [SMALL_STATE(2074)] = 30307, - [SMALL_STATE(2075)] = 30378, - [SMALL_STATE(2076)] = 30449, - [SMALL_STATE(2077)] = 30526, - [SMALL_STATE(2078)] = 30597, - [SMALL_STATE(2079)] = 30668, - [SMALL_STATE(2080)] = 30739, - [SMALL_STATE(2081)] = 30810, - [SMALL_STATE(2082)] = 30887, - [SMALL_STATE(2083)] = 30964, - [SMALL_STATE(2084)] = 31035, - [SMALL_STATE(2085)] = 31106, - [SMALL_STATE(2086)] = 31177, - [SMALL_STATE(2087)] = 31248, - [SMALL_STATE(2088)] = 31319, - [SMALL_STATE(2089)] = 31390, - [SMALL_STATE(2090)] = 31461, - [SMALL_STATE(2091)] = 31532, - [SMALL_STATE(2092)] = 31611, - [SMALL_STATE(2093)] = 31688, - [SMALL_STATE(2094)] = 31767, - [SMALL_STATE(2095)] = 31838, - [SMALL_STATE(2096)] = 31915, - [SMALL_STATE(2097)] = 31994, - [SMALL_STATE(2098)] = 32073, - [SMALL_STATE(2099)] = 32150, - [SMALL_STATE(2100)] = 32225, - [SMALL_STATE(2101)] = 32304, - [SMALL_STATE(2102)] = 32375, - [SMALL_STATE(2103)] = 32446, - [SMALL_STATE(2104)] = 32525, - [SMALL_STATE(2105)] = 32596, - [SMALL_STATE(2106)] = 32673, - [SMALL_STATE(2107)] = 32752, - [SMALL_STATE(2108)] = 32829, - [SMALL_STATE(2109)] = 32906, - [SMALL_STATE(2110)] = 32983, - [SMALL_STATE(2111)] = 33060, - [SMALL_STATE(2112)] = 33131, - [SMALL_STATE(2113)] = 33202, - [SMALL_STATE(2114)] = 33281, - [SMALL_STATE(2115)] = 33352, - [SMALL_STATE(2116)] = 33423, - [SMALL_STATE(2117)] = 33502, - [SMALL_STATE(2118)] = 33581, - [SMALL_STATE(2119)] = 33652, - [SMALL_STATE(2120)] = 33729, - [SMALL_STATE(2121)] = 33806, - [SMALL_STATE(2122)] = 33885, - [SMALL_STATE(2123)] = 33962, - [SMALL_STATE(2124)] = 34041, - [SMALL_STATE(2125)] = 34111, - [SMALL_STATE(2126)] = 34181, - [SMALL_STATE(2127)] = 34251, - [SMALL_STATE(2128)] = 34321, - [SMALL_STATE(2129)] = 34391, - [SMALL_STATE(2130)] = 34461, - [SMALL_STATE(2131)] = 34531, - [SMALL_STATE(2132)] = 34601, - [SMALL_STATE(2133)] = 34671, - [SMALL_STATE(2134)] = 34741, - [SMALL_STATE(2135)] = 34811, - [SMALL_STATE(2136)] = 34881, - [SMALL_STATE(2137)] = 34951, - [SMALL_STATE(2138)] = 35021, - [SMALL_STATE(2139)] = 35091, - [SMALL_STATE(2140)] = 35165, - [SMALL_STATE(2141)] = 35237, - [SMALL_STATE(2142)] = 35309, - [SMALL_STATE(2143)] = 35379, - [SMALL_STATE(2144)] = 35453, - [SMALL_STATE(2145)] = 35523, - [SMALL_STATE(2146)] = 35593, - [SMALL_STATE(2147)] = 35663, - [SMALL_STATE(2148)] = 35733, - [SMALL_STATE(2149)] = 35803, - [SMALL_STATE(2150)] = 35877, - [SMALL_STATE(2151)] = 35947, - [SMALL_STATE(2152)] = 36019, - [SMALL_STATE(2153)] = 36089, - [SMALL_STATE(2154)] = 36163, - [SMALL_STATE(2155)] = 36241, - [SMALL_STATE(2156)] = 36311, - [SMALL_STATE(2157)] = 36381, - [SMALL_STATE(2158)] = 36453, - [SMALL_STATE(2159)] = 36523, - [SMALL_STATE(2160)] = 36599, - [SMALL_STATE(2161)] = 36677, - [SMALL_STATE(2162)] = 36751, - [SMALL_STATE(2163)] = 36825, - [SMALL_STATE(2164)] = 36965, - [SMALL_STATE(2165)] = 37035, - [SMALL_STATE(2166)] = 37109, - [SMALL_STATE(2167)] = 37179, - [SMALL_STATE(2168)] = 37249, - [SMALL_STATE(2169)] = 37319, - [SMALL_STATE(2170)] = 37389, - [SMALL_STATE(2171)] = 37459, - [SMALL_STATE(2172)] = 37529, - [SMALL_STATE(2173)] = 37599, - [SMALL_STATE(2174)] = 37669, - [SMALL_STATE(2175)] = 37809, - [SMALL_STATE(2176)] = 37883, - [SMALL_STATE(2177)] = 37961, - [SMALL_STATE(2178)] = 38035, - [SMALL_STATE(2179)] = 38109, - [SMALL_STATE(2180)] = 38179, - [SMALL_STATE(2181)] = 38250, - [SMALL_STATE(2182)] = 38321, - [SMALL_STATE(2183)] = 38392, - [SMALL_STATE(2184)] = 38463, - [SMALL_STATE(2185)] = 38534, - [SMALL_STATE(2186)] = 38605, - [SMALL_STATE(2187)] = 38676, - [SMALL_STATE(2188)] = 38747, - [SMALL_STATE(2189)] = 38818, - [SMALL_STATE(2190)] = 38889, - [SMALL_STATE(2191)] = 39026, - [SMALL_STATE(2192)] = 39163, - [SMALL_STATE(2193)] = 39234, - [SMALL_STATE(2194)] = 39307, - [SMALL_STATE(2195)] = 39380, - [SMALL_STATE(2196)] = 39453, - [SMALL_STATE(2197)] = 39526, - [SMALL_STATE(2198)] = 39595, - [SMALL_STATE(2199)] = 39664, - [SMALL_STATE(2200)] = 39733, - [SMALL_STATE(2201)] = 39804, - [SMALL_STATE(2202)] = 39875, - [SMALL_STATE(2203)] = 39946, - [SMALL_STATE(2204)] = 40015, - [SMALL_STATE(2205)] = 40086, - [SMALL_STATE(2206)] = 40157, - [SMALL_STATE(2207)] = 40228, - [SMALL_STATE(2208)] = 40299, - [SMALL_STATE(2209)] = 40370, - [SMALL_STATE(2210)] = 40441, - [SMALL_STATE(2211)] = 40512, - [SMALL_STATE(2212)] = 40583, - [SMALL_STATE(2213)] = 40654, - [SMALL_STATE(2214)] = 40725, - [SMALL_STATE(2215)] = 40796, - [SMALL_STATE(2216)] = 40867, - [SMALL_STATE(2217)] = 40938, - [SMALL_STATE(2218)] = 41009, - [SMALL_STATE(2219)] = 41080, - [SMALL_STATE(2220)] = 41151, - [SMALL_STATE(2221)] = 41222, - [SMALL_STATE(2222)] = 41293, - [SMALL_STATE(2223)] = 41364, - [SMALL_STATE(2224)] = 41435, - [SMALL_STATE(2225)] = 41506, - [SMALL_STATE(2226)] = 41577, - [SMALL_STATE(2227)] = 41648, - [SMALL_STATE(2228)] = 41719, - [SMALL_STATE(2229)] = 41792, - [SMALL_STATE(2230)] = 41863, - [SMALL_STATE(2231)] = 41934, - [SMALL_STATE(2232)] = 42005, - [SMALL_STATE(2233)] = 42076, - [SMALL_STATE(2234)] = 42147, - [SMALL_STATE(2235)] = 42218, - [SMALL_STATE(2236)] = 42291, - [SMALL_STATE(2237)] = 42362, - [SMALL_STATE(2238)] = 42433, - [SMALL_STATE(2239)] = 42504, - [SMALL_STATE(2240)] = 42575, - [SMALL_STATE(2241)] = 42646, - [SMALL_STATE(2242)] = 42717, - [SMALL_STATE(2243)] = 42790, - [SMALL_STATE(2244)] = 42861, - [SMALL_STATE(2245)] = 42932, - [SMALL_STATE(2246)] = 43003, - [SMALL_STATE(2247)] = 43076, - [SMALL_STATE(2248)] = 43149, - [SMALL_STATE(2249)] = 43222, - [SMALL_STATE(2250)] = 43359, - [SMALL_STATE(2251)] = 43496, - [SMALL_STATE(2252)] = 43569, - [SMALL_STATE(2253)] = 43642, - [SMALL_STATE(2254)] = 43715, - [SMALL_STATE(2255)] = 43788, - [SMALL_STATE(2256)] = 43861, - [SMALL_STATE(2257)] = 43930, - [SMALL_STATE(2258)] = 44003, - [SMALL_STATE(2259)] = 44076, - [SMALL_STATE(2260)] = 44147, - [SMALL_STATE(2261)] = 44218, - [SMALL_STATE(2262)] = 44289, - [SMALL_STATE(2263)] = 44360, - [SMALL_STATE(2264)] = 44431, - [SMALL_STATE(2265)] = 44502, - [SMALL_STATE(2266)] = 44573, - [SMALL_STATE(2267)] = 44644, - [SMALL_STATE(2268)] = 44715, - [SMALL_STATE(2269)] = 44786, - [SMALL_STATE(2270)] = 44857, - [SMALL_STATE(2271)] = 44928, - [SMALL_STATE(2272)] = 44999, - [SMALL_STATE(2273)] = 45070, - [SMALL_STATE(2274)] = 45143, - [SMALL_STATE(2275)] = 45216, - [SMALL_STATE(2276)] = 45291, - [SMALL_STATE(2277)] = 45364, - [SMALL_STATE(2278)] = 45433, - [SMALL_STATE(2279)] = 45502, - [SMALL_STATE(2280)] = 45571, - [SMALL_STATE(2281)] = 45640, - [SMALL_STATE(2282)] = 45717, - [SMALL_STATE(2283)] = 45788, - [SMALL_STATE(2284)] = 45859, - [SMALL_STATE(2285)] = 45930, - [SMALL_STATE(2286)] = 46001, - [SMALL_STATE(2287)] = 46072, - [SMALL_STATE(2288)] = 46143, - [SMALL_STATE(2289)] = 46214, - [SMALL_STATE(2290)] = 46285, - [SMALL_STATE(2291)] = 46356, - [SMALL_STATE(2292)] = 46427, - [SMALL_STATE(2293)] = 46498, - [SMALL_STATE(2294)] = 46569, - [SMALL_STATE(2295)] = 46640, - [SMALL_STATE(2296)] = 46711, - [SMALL_STATE(2297)] = 46812, - [SMALL_STATE(2298)] = 46881, - [SMALL_STATE(2299)] = 46952, - [SMALL_STATE(2300)] = 47029, - [SMALL_STATE(2301)] = 47130, - [SMALL_STATE(2302)] = 47201, - [SMALL_STATE(2303)] = 47272, - [SMALL_STATE(2304)] = 47343, - [SMALL_STATE(2305)] = 47414, - [SMALL_STATE(2306)] = 47487, - [SMALL_STATE(2307)] = 47560, - [SMALL_STATE(2308)] = 47633, - [SMALL_STATE(2309)] = 47706, - [SMALL_STATE(2310)] = 47775, - [SMALL_STATE(2311)] = 47844, - [SMALL_STATE(2312)] = 47945, - [SMALL_STATE(2313)] = 48016, - [SMALL_STATE(2314)] = 48087, - [SMALL_STATE(2315)] = 48158, - [SMALL_STATE(2316)] = 48229, - [SMALL_STATE(2317)] = 48300, - [SMALL_STATE(2318)] = 48371, - [SMALL_STATE(2319)] = 48442, - [SMALL_STATE(2320)] = 48513, - [SMALL_STATE(2321)] = 48584, - [SMALL_STATE(2322)] = 48655, - [SMALL_STATE(2323)] = 48792, - [SMALL_STATE(2324)] = 48863, - [SMALL_STATE(2325)] = 48934, - [SMALL_STATE(2326)] = 49005, - [SMALL_STATE(2327)] = 49076, - [SMALL_STATE(2328)] = 49213, - [SMALL_STATE(2329)] = 49284, - [SMALL_STATE(2330)] = 49355, - [SMALL_STATE(2331)] = 49456, - [SMALL_STATE(2332)] = 49593, - [SMALL_STATE(2333)] = 49730, - [SMALL_STATE(2334)] = 49801, - [SMALL_STATE(2335)] = 49872, - [SMALL_STATE(2336)] = 49943, - [SMALL_STATE(2337)] = 50014, - [SMALL_STATE(2338)] = 50087, - [SMALL_STATE(2339)] = 50160, - [SMALL_STATE(2340)] = 50231, - [SMALL_STATE(2341)] = 50302, - [SMALL_STATE(2342)] = 50373, - [SMALL_STATE(2343)] = 50444, - [SMALL_STATE(2344)] = 50515, - [SMALL_STATE(2345)] = 50586, - [SMALL_STATE(2346)] = 50657, - [SMALL_STATE(2347)] = 50730, - [SMALL_STATE(2348)] = 50803, - [SMALL_STATE(2349)] = 50874, - [SMALL_STATE(2350)] = 50945, - [SMALL_STATE(2351)] = 51016, - [SMALL_STATE(2352)] = 51087, - [SMALL_STATE(2353)] = 51158, - [SMALL_STATE(2354)] = 51229, - [SMALL_STATE(2355)] = 51300, - [SMALL_STATE(2356)] = 51370, - [SMALL_STATE(2357)] = 51464, - [SMALL_STATE(2358)] = 51534, - [SMALL_STATE(2359)] = 51614, - [SMALL_STATE(2360)] = 51692, - [SMALL_STATE(2361)] = 51764, - [SMALL_STATE(2362)] = 51838, - [SMALL_STATE(2363)] = 51914, - [SMALL_STATE(2364)] = 51996, - [SMALL_STATE(2365)] = 52080, - [SMALL_STATE(2366)] = 52166, - [SMALL_STATE(2367)] = 52254, - [SMALL_STATE(2368)] = 52326, - [SMALL_STATE(2369)] = 52416, - [SMALL_STATE(2370)] = 52508, - [SMALL_STATE(2371)] = 52582, - [SMALL_STATE(2372)] = 52676, - [SMALL_STATE(2373)] = 52746, - [SMALL_STATE(2374)] = 52826, - [SMALL_STATE(2375)] = 52900, - [SMALL_STATE(2376)] = 52978, - [SMALL_STATE(2377)] = 53054, - [SMALL_STATE(2378)] = 53124, - [SMALL_STATE(2379)] = 53194, - [SMALL_STATE(2380)] = 53270, - [SMALL_STATE(2381)] = 53340, - [SMALL_STATE(2382)] = 53410, - [SMALL_STATE(2383)] = 53480, - [SMALL_STATE(2384)] = 53558, - [SMALL_STATE(2385)] = 53626, - [SMALL_STATE(2386)] = 53724, - [SMALL_STATE(2387)] = 53792, - [SMALL_STATE(2388)] = 53890, - [SMALL_STATE(2389)] = 53960, - [SMALL_STATE(2390)] = 54030, - [SMALL_STATE(2391)] = 54128, - [SMALL_STATE(2392)] = 54210, - [SMALL_STATE(2393)] = 54278, - [SMALL_STATE(2394)] = 54372, - [SMALL_STATE(2395)] = 54456, - [SMALL_STATE(2396)] = 54530, - [SMALL_STATE(2397)] = 54618, - [SMALL_STATE(2398)] = 54694, - [SMALL_STATE(2399)] = 54778, - [SMALL_STATE(2400)] = 54848, - [SMALL_STATE(2401)] = 54926, - [SMALL_STATE(2402)] = 55022, - [SMALL_STATE(2403)] = 55106, - [SMALL_STATE(2404)] = 55192, - [SMALL_STATE(2405)] = 55278, - [SMALL_STATE(2406)] = 55346, - [SMALL_STATE(2407)] = 55416, - [SMALL_STATE(2408)] = 55484, - [SMALL_STATE(2409)] = 55572, - [SMALL_STATE(2410)] = 55640, - [SMALL_STATE(2411)] = 55730, - [SMALL_STATE(2412)] = 55816, - [SMALL_STATE(2413)] = 55908, - [SMALL_STATE(2414)] = 55978, - [SMALL_STATE(2415)] = 56048, - [SMALL_STATE(2416)] = 56142, - [SMALL_STATE(2417)] = 56230, - [SMALL_STATE(2418)] = 56300, - [SMALL_STATE(2419)] = 56396, - [SMALL_STATE(2420)] = 56478, - [SMALL_STATE(2421)] = 56546, - [SMALL_STATE(2422)] = 56628, - [SMALL_STATE(2423)] = 56708, - [SMALL_STATE(2424)] = 56796, - [SMALL_STATE(2425)] = 56894, - [SMALL_STATE(2426)] = 56966, - [SMALL_STATE(2427)] = 57056, - [SMALL_STATE(2428)] = 57190, - [SMALL_STATE(2429)] = 57280, - [SMALL_STATE(2430)] = 57350, - [SMALL_STATE(2431)] = 57420, - [SMALL_STATE(2432)] = 57488, - [SMALL_STATE(2433)] = 57568, - [SMALL_STATE(2434)] = 57638, - [SMALL_STATE(2435)] = 57708, - [SMALL_STATE(2436)] = 57776, - [SMALL_STATE(2437)] = 57844, - [SMALL_STATE(2438)] = 57912, - [SMALL_STATE(2439)] = 58002, - [SMALL_STATE(2440)] = 58072, - [SMALL_STATE(2441)] = 58144, - [SMALL_STATE(2442)] = 58218, - [SMALL_STATE(2443)] = 58298, - [SMALL_STATE(2444)] = 58380, - [SMALL_STATE(2445)] = 58464, - [SMALL_STATE(2446)] = 58550, - [SMALL_STATE(2447)] = 58638, - [SMALL_STATE(2448)] = 58728, - [SMALL_STATE(2449)] = 58820, - [SMALL_STATE(2450)] = 58898, - [SMALL_STATE(2451)] = 58974, - [SMALL_STATE(2452)] = 59066, - [SMALL_STATE(2453)] = 59164, - [SMALL_STATE(2454)] = 59232, - [SMALL_STATE(2455)] = 59316, - [SMALL_STATE(2456)] = 59408, - [SMALL_STATE(2457)] = 59476, - [SMALL_STATE(2458)] = 59548, - [SMALL_STATE(2459)] = 59640, - [SMALL_STATE(2460)] = 59714, - [SMALL_STATE(2461)] = 59808, - [SMALL_STATE(2462)] = 59942, - [SMALL_STATE(2463)] = 60036, - [SMALL_STATE(2464)] = 60170, - [SMALL_STATE(2465)] = 60304, - [SMALL_STATE(2466)] = 60372, - [SMALL_STATE(2467)] = 60440, - [SMALL_STATE(2468)] = 60510, - [SMALL_STATE(2469)] = 60578, - [SMALL_STATE(2470)] = 60646, - [SMALL_STATE(2471)] = 60732, - [SMALL_STATE(2472)] = 60800, - [SMALL_STATE(2473)] = 60868, - [SMALL_STATE(2474)] = 60964, - [SMALL_STATE(2475)] = 61040, - [SMALL_STATE(2476)] = 61112, - [SMALL_STATE(2477)] = 61192, - [SMALL_STATE(2478)] = 61266, - [SMALL_STATE(2479)] = 61340, - [SMALL_STATE(2480)] = 61422, - [SMALL_STATE(2481)] = 61498, - [SMALL_STATE(2482)] = 61580, - [SMALL_STATE(2483)] = 61656, - [SMALL_STATE(2484)] = 61724, - [SMALL_STATE(2485)] = 61802, - [SMALL_STATE(2486)] = 61880, - [SMALL_STATE(2487)] = 61964, - [SMALL_STATE(2488)] = 62046, - [SMALL_STATE(2489)] = 62126, - [SMALL_STATE(2490)] = 62210, - [SMALL_STATE(2491)] = 62294, - [SMALL_STATE(2492)] = 62428, - [SMALL_STATE(2493)] = 62514, - [SMALL_STATE(2494)] = 62648, - [SMALL_STATE(2495)] = 62734, - [SMALL_STATE(2496)] = 62820, - [SMALL_STATE(2497)] = 62908, - [SMALL_STATE(2498)] = 63042, - [SMALL_STATE(2499)] = 63176, - [SMALL_STATE(2500)] = 63264, - [SMALL_STATE(2501)] = 63334, - [SMALL_STATE(2502)] = 63432, - [SMALL_STATE(2503)] = 63566, - [SMALL_STATE(2504)] = 63656, - [SMALL_STATE(2505)] = 63790, - [SMALL_STATE(2506)] = 63924, - [SMALL_STATE(2507)] = 64058, - [SMALL_STATE(2508)] = 64144, - [SMALL_STATE(2509)] = 64234, - [SMALL_STATE(2510)] = 64320, - [SMALL_STATE(2511)] = 64412, - [SMALL_STATE(2512)] = 64480, - [SMALL_STATE(2513)] = 64548, - [SMALL_STATE(2514)] = 64618, - [SMALL_STATE(2515)] = 64710, - [SMALL_STATE(2516)] = 64804, - [SMALL_STATE(2517)] = 64892, - [SMALL_STATE(2518)] = 64986, - [SMALL_STATE(2519)] = 65082, - [SMALL_STATE(2520)] = 65174, - [SMALL_STATE(2521)] = 65254, - [SMALL_STATE(2522)] = 65322, - [SMALL_STATE(2523)] = 65404, - [SMALL_STATE(2524)] = 65478, - [SMALL_STATE(2525)] = 65568, - [SMALL_STATE(2526)] = 65654, - [SMALL_STATE(2527)] = 65732, - [SMALL_STATE(2528)] = 65812, - [SMALL_STATE(2529)] = 65882, - [SMALL_STATE(2530)] = 65956, - [SMALL_STATE(2531)] = 66054, - [SMALL_STATE(2532)] = 66152, - [SMALL_STATE(2533)] = 66250, - [SMALL_STATE(2534)] = 66348, - [SMALL_STATE(2535)] = 66420, - [SMALL_STATE(2536)] = 66496, - [SMALL_STATE(2537)] = 66574, - [SMALL_STATE(2538)] = 66708, - [SMALL_STATE(2539)] = 66776, - [SMALL_STATE(2540)] = 66843, - [SMALL_STATE(2541)] = 66910, - [SMALL_STATE(2542)] = 66977, - [SMALL_STATE(2543)] = 67068, - [SMALL_STATE(2544)] = 67135, - [SMALL_STATE(2545)] = 67202, - [SMALL_STATE(2546)] = 67269, - [SMALL_STATE(2547)] = 67336, - [SMALL_STATE(2548)] = 67403, - [SMALL_STATE(2549)] = 67470, - [SMALL_STATE(2550)] = 67537, - [SMALL_STATE(2551)] = 67604, - [SMALL_STATE(2552)] = 67671, - [SMALL_STATE(2553)] = 67748, - [SMALL_STATE(2554)] = 67831, - [SMALL_STATE(2555)] = 67898, - [SMALL_STATE(2556)] = 67965, - [SMALL_STATE(2557)] = 68032, - [SMALL_STATE(2558)] = 68099, - [SMALL_STATE(2559)] = 68174, - [SMALL_STATE(2560)] = 68257, - [SMALL_STATE(2561)] = 68324, - [SMALL_STATE(2562)] = 68391, - [SMALL_STATE(2563)] = 68462, - [SMALL_STATE(2564)] = 68529, - [SMALL_STATE(2565)] = 68596, - [SMALL_STATE(2566)] = 68663, - [SMALL_STATE(2567)] = 68730, - [SMALL_STATE(2568)] = 68797, - [SMALL_STATE(2569)] = 68864, - [SMALL_STATE(2570)] = 68931, - [SMALL_STATE(2571)] = 69014, - [SMALL_STATE(2572)] = 69081, - [SMALL_STATE(2573)] = 69148, - [SMALL_STATE(2574)] = 69233, - [SMALL_STATE(2575)] = 69300, - [SMALL_STATE(2576)] = 69367, - [SMALL_STATE(2577)] = 69434, - [SMALL_STATE(2578)] = 69501, - [SMALL_STATE(2579)] = 69568, - [SMALL_STATE(2580)] = 69635, - [SMALL_STATE(2581)] = 69702, - [SMALL_STATE(2582)] = 69769, - [SMALL_STATE(2583)] = 69840, - [SMALL_STATE(2584)] = 69913, - [SMALL_STATE(2585)] = 69984, - [SMALL_STATE(2586)] = 70051, - [SMALL_STATE(2587)] = 70118, - [SMALL_STATE(2588)] = 70185, - [SMALL_STATE(2589)] = 70252, - [SMALL_STATE(2590)] = 70331, - [SMALL_STATE(2591)] = 70398, - [SMALL_STATE(2592)] = 70465, - [SMALL_STATE(2593)] = 70548, - [SMALL_STATE(2594)] = 70617, - [SMALL_STATE(2595)] = 70684, - [SMALL_STATE(2596)] = 70767, - [SMALL_STATE(2597)] = 70834, - [SMALL_STATE(2598)] = 70901, - [SMALL_STATE(2599)] = 70978, - [SMALL_STATE(2600)] = 71045, - [SMALL_STATE(2601)] = 71112, - [SMALL_STATE(2602)] = 71195, - [SMALL_STATE(2603)] = 71262, - [SMALL_STATE(2604)] = 71329, - [SMALL_STATE(2605)] = 71398, - [SMALL_STATE(2606)] = 71485, - [SMALL_STATE(2607)] = 71566, - [SMALL_STATE(2608)] = 71633, - [SMALL_STATE(2609)] = 71700, - [SMALL_STATE(2610)] = 71767, - [SMALL_STATE(2611)] = 71834, - [SMALL_STATE(2612)] = 71921, - [SMALL_STATE(2613)] = 71988, - [SMALL_STATE(2614)] = 72055, - [SMALL_STATE(2615)] = 72122, - [SMALL_STATE(2616)] = 72205, - [SMALL_STATE(2617)] = 72288, - [SMALL_STATE(2618)] = 72355, - [SMALL_STATE(2619)] = 72422, - [SMALL_STATE(2620)] = 72489, - [SMALL_STATE(2621)] = 72556, - [SMALL_STATE(2622)] = 72623, - [SMALL_STATE(2623)] = 72690, - [SMALL_STATE(2624)] = 72759, - [SMALL_STATE(2625)] = 72828, - [SMALL_STATE(2626)] = 72911, - [SMALL_STATE(2627)] = 72978, - [SMALL_STATE(2628)] = 73045, - [SMALL_STATE(2629)] = 73112, - [SMALL_STATE(2630)] = 73201, - [SMALL_STATE(2631)] = 73268, - [SMALL_STATE(2632)] = 73351, - [SMALL_STATE(2633)] = 73443, - [SMALL_STATE(2634)] = 73533, - [SMALL_STATE(2635)] = 73625, - [SMALL_STATE(2636)] = 73709, - [SMALL_STATE(2637)] = 73801, - [SMALL_STATE(2638)] = 73893, - [SMALL_STATE(2639)] = 73977, - [SMALL_STATE(2640)] = 74057, - [SMALL_STATE(2641)] = 74123, - [SMALL_STATE(2642)] = 74203, - [SMALL_STATE(2643)] = 74283, - [SMALL_STATE(2644)] = 74349, - [SMALL_STATE(2645)] = 74415, - [SMALL_STATE(2646)] = 74481, - [SMALL_STATE(2647)] = 74573, - [SMALL_STATE(2648)] = 74665, - [SMALL_STATE(2649)] = 74757, - [SMALL_STATE(2650)] = 74823, - [SMALL_STATE(2651)] = 74889, - [SMALL_STATE(2652)] = 74955, - [SMALL_STATE(2653)] = 75021, - [SMALL_STATE(2654)] = 75087, - [SMALL_STATE(2655)] = 75153, - [SMALL_STATE(2656)] = 75245, - [SMALL_STATE(2657)] = 75337, - [SMALL_STATE(2658)] = 75403, - [SMALL_STATE(2659)] = 75469, - [SMALL_STATE(2660)] = 75561, - [SMALL_STATE(2661)] = 75653, - [SMALL_STATE(2662)] = 75745, - [SMALL_STATE(2663)] = 75811, - [SMALL_STATE(2664)] = 75877, - [SMALL_STATE(2665)] = 75957, - [SMALL_STATE(2666)] = 76041, - [SMALL_STATE(2667)] = 76107, - [SMALL_STATE(2668)] = 76175, - [SMALL_STATE(2669)] = 76255, - [SMALL_STATE(2670)] = 76329, - [SMALL_STATE(2671)] = 76395, - [SMALL_STATE(2672)] = 76463, - [SMALL_STATE(2673)] = 76529, - [SMALL_STATE(2674)] = 76595, - [SMALL_STATE(2675)] = 76668, - [SMALL_STATE(2676)] = 76733, - [SMALL_STATE(2677)] = 76798, - [SMALL_STATE(2678)] = 76887, - [SMALL_STATE(2679)] = 76960, - [SMALL_STATE(2680)] = 77049, - [SMALL_STATE(2681)] = 77138, - [SMALL_STATE(2682)] = 77227, - [SMALL_STATE(2683)] = 77300, - [SMALL_STATE(2684)] = 77389, - [SMALL_STATE(2685)] = 77462, - [SMALL_STATE(2686)] = 77531, - [SMALL_STATE(2687)] = 77620, - [SMALL_STATE(2688)] = 77689, - [SMALL_STATE(2689)] = 77762, - [SMALL_STATE(2690)] = 77851, - [SMALL_STATE(2691)] = 77920, - [SMALL_STATE(2692)] = 77985, - [SMALL_STATE(2693)] = 78058, - [SMALL_STATE(2694)] = 78131, - [SMALL_STATE(2695)] = 78204, - [SMALL_STATE(2696)] = 78277, - [SMALL_STATE(2697)] = 78342, - [SMALL_STATE(2698)] = 78407, - [SMALL_STATE(2699)] = 78472, - [SMALL_STATE(2700)] = 78537, - [SMALL_STATE(2701)] = 78626, - [SMALL_STATE(2702)] = 78695, - [SMALL_STATE(2703)] = 78766, - [SMALL_STATE(2704)] = 78835, - [SMALL_STATE(2705)] = 78924, - [SMALL_STATE(2706)] = 79013, - [SMALL_STATE(2707)] = 79102, - [SMALL_STATE(2708)] = 79191, - [SMALL_STATE(2709)] = 79264, - [SMALL_STATE(2710)] = 79329, - [SMALL_STATE(2711)] = 79402, - [SMALL_STATE(2712)] = 79491, - [SMALL_STATE(2713)] = 79556, - [SMALL_STATE(2714)] = 79629, - [SMALL_STATE(2715)] = 79718, - [SMALL_STATE(2716)] = 79807, - [SMALL_STATE(2717)] = 79872, - [SMALL_STATE(2718)] = 79937, - [SMALL_STATE(2719)] = 80026, - [SMALL_STATE(2720)] = 80099, - [SMALL_STATE(2721)] = 80172, - [SMALL_STATE(2722)] = 80239, - [SMALL_STATE(2723)] = 80328, - [SMALL_STATE(2724)] = 80395, - [SMALL_STATE(2725)] = 80468, - [SMALL_STATE(2726)] = 80541, - [SMALL_STATE(2727)] = 80630, - [SMALL_STATE(2728)] = 80703, - [SMALL_STATE(2729)] = 80776, - [SMALL_STATE(2730)] = 80849, - [SMALL_STATE(2731)] = 80938, - [SMALL_STATE(2732)] = 81011, - [SMALL_STATE(2733)] = 81084, - [SMALL_STATE(2734)] = 81173, - [SMALL_STATE(2735)] = 81246, - [SMALL_STATE(2736)] = 81335, - [SMALL_STATE(2737)] = 81424, - [SMALL_STATE(2738)] = 81513, - [SMALL_STATE(2739)] = 81602, - [SMALL_STATE(2740)] = 81691, - [SMALL_STATE(2741)] = 81780, - [SMALL_STATE(2742)] = 81845, - [SMALL_STATE(2743)] = 81910, - [SMALL_STATE(2744)] = 81999, - [SMALL_STATE(2745)] = 82080, - [SMALL_STATE(2746)] = 82169, - [SMALL_STATE(2747)] = 82258, - [SMALL_STATE(2748)] = 82323, - [SMALL_STATE(2749)] = 82388, - [SMALL_STATE(2750)] = 82469, - [SMALL_STATE(2751)] = 82542, - [SMALL_STATE(2752)] = 82623, - [SMALL_STATE(2753)] = 82704, - [SMALL_STATE(2754)] = 82793, - [SMALL_STATE(2755)] = 82866, - [SMALL_STATE(2756)] = 82955, - [SMALL_STATE(2757)] = 83028, - [SMALL_STATE(2758)] = 83094, - [SMALL_STATE(2759)] = 83164, - [SMALL_STATE(2760)] = 83230, - [SMALL_STATE(2761)] = 83294, - [SMALL_STATE(2762)] = 83364, - [SMALL_STATE(2763)] = 83430, - [SMALL_STATE(2764)] = 83494, - [SMALL_STATE(2765)] = 83564, - [SMALL_STATE(2766)] = 83632, - [SMALL_STATE(2767)] = 83700, - [SMALL_STATE(2768)] = 83764, - [SMALL_STATE(2769)] = 83828, - [SMALL_STATE(2770)] = 83896, - [SMALL_STATE(2771)] = 83960, - [SMALL_STATE(2772)] = 84032, - [SMALL_STATE(2773)] = 84098, - [SMALL_STATE(2774)] = 84166, - [SMALL_STATE(2775)] = 84232, - [SMALL_STATE(2776)] = 84298, - [SMALL_STATE(2777)] = 84362, - [SMALL_STATE(2778)] = 84428, - [SMALL_STATE(2779)] = 84496, - [SMALL_STATE(2780)] = 84568, - [SMALL_STATE(2781)] = 84635, - [SMALL_STATE(2782)] = 84704, - [SMALL_STATE(2783)] = 84767, - [SMALL_STATE(2784)] = 84834, - [SMALL_STATE(2785)] = 84901, - [SMALL_STATE(2786)] = 84968, - [SMALL_STATE(2787)] = 85033, - [SMALL_STATE(2788)] = 85100, - [SMALL_STATE(2789)] = 85165, - [SMALL_STATE(2790)] = 85232, - [SMALL_STATE(2791)] = 85297, - [SMALL_STATE(2792)] = 85360, - [SMALL_STATE(2793)] = 85423, - [SMALL_STATE(2794)] = 85490, - [SMALL_STATE(2795)] = 85555, - [SMALL_STATE(2796)] = 85622, - [SMALL_STATE(2797)] = 85689, - [SMALL_STATE(2798)] = 85752, - [SMALL_STATE(2799)] = 85819, - [SMALL_STATE(2800)] = 85886, - [SMALL_STATE(2801)] = 85959, - [SMALL_STATE(2802)] = 86022, - [SMALL_STATE(2803)] = 86085, - [SMALL_STATE(2804)] = 86148, - [SMALL_STATE(2805)] = 86219, - [SMALL_STATE(2806)] = 86286, - [SMALL_STATE(2807)] = 86349, - [SMALL_STATE(2808)] = 86412, - [SMALL_STATE(2809)] = 86475, - [SMALL_STATE(2810)] = 86538, - [SMALL_STATE(2811)] = 86609, - [SMALL_STATE(2812)] = 86676, - [SMALL_STATE(2813)] = 86739, - [SMALL_STATE(2814)] = 86802, - [SMALL_STATE(2815)] = 86865, - [SMALL_STATE(2816)] = 86928, - [SMALL_STATE(2817)] = 86991, - [SMALL_STATE(2818)] = 87054, - [SMALL_STATE(2819)] = 87117, - [SMALL_STATE(2820)] = 87184, - [SMALL_STATE(2821)] = 87247, - [SMALL_STATE(2822)] = 87314, - [SMALL_STATE(2823)] = 87381, - [SMALL_STATE(2824)] = 87446, - [SMALL_STATE(2825)] = 87509, - [SMALL_STATE(2826)] = 87574, - [SMALL_STATE(2827)] = 87637, - [SMALL_STATE(2828)] = 87704, - [SMALL_STATE(2829)] = 87771, - [SMALL_STATE(2830)] = 87842, - [SMALL_STATE(2831)] = 87909, - [SMALL_STATE(2832)] = 87982, - [SMALL_STATE(2833)] = 88045, - [SMALL_STATE(2834)] = 88108, - [SMALL_STATE(2835)] = 88170, - [SMALL_STATE(2836)] = 88234, - [SMALL_STATE(2837)] = 88298, - [SMALL_STATE(2838)] = 88364, - [SMALL_STATE(2839)] = 88428, - [SMALL_STATE(2840)] = 88494, - [SMALL_STATE(2841)] = 88556, - [SMALL_STATE(2842)] = 88618, - [SMALL_STATE(2843)] = 88684, - [SMALL_STATE(2844)] = 88748, - [SMALL_STATE(2845)] = 88810, - [SMALL_STATE(2846)] = 88872, - [SMALL_STATE(2847)] = 88934, - [SMALL_STATE(2848)] = 89000, - [SMALL_STATE(2849)] = 89064, - [SMALL_STATE(2850)] = 89134, - [SMALL_STATE(2851)] = 89196, - [SMALL_STATE(2852)] = 89262, - [SMALL_STATE(2853)] = 89324, - [SMALL_STATE(2854)] = 89388, - [SMALL_STATE(2855)] = 89450, - [SMALL_STATE(2856)] = 89512, - [SMALL_STATE(2857)] = 89574, - [SMALL_STATE(2858)] = 89636, - [SMALL_STATE(2859)] = 89700, - [SMALL_STATE(2860)] = 89764, - [SMALL_STATE(2861)] = 89828, - [SMALL_STATE(2862)] = 89940, - [SMALL_STATE(2863)] = 90012, - [SMALL_STATE(2864)] = 90076, - [SMALL_STATE(2865)] = 90138, - [SMALL_STATE(2866)] = 90200, - [SMALL_STATE(2867)] = 90262, - [SMALL_STATE(2868)] = 90324, - [SMALL_STATE(2869)] = 90394, - [SMALL_STATE(2870)] = 90464, - [SMALL_STATE(2871)] = 90534, - [SMALL_STATE(2872)] = 90604, - [SMALL_STATE(2873)] = 90674, - [SMALL_STATE(2874)] = 90738, - [SMALL_STATE(2875)] = 90810, - [SMALL_STATE(2876)] = 90880, - [SMALL_STATE(2877)] = 90950, - [SMALL_STATE(2878)] = 91016, - [SMALL_STATE(2879)] = 91082, - [SMALL_STATE(2880)] = 91152, - [SMALL_STATE(2881)] = 91222, - [SMALL_STATE(2882)] = 91292, - [SMALL_STATE(2883)] = 91362, - [SMALL_STATE(2884)] = 91474, - [SMALL_STATE(2885)] = 91544, - [SMALL_STATE(2886)] = 91606, - [SMALL_STATE(2887)] = 91676, - [SMALL_STATE(2888)] = 91790, - [SMALL_STATE(2889)] = 91860, - [SMALL_STATE(2890)] = 91930, - [SMALL_STATE(2891)] = 92000, - [SMALL_STATE(2892)] = 92070, - [SMALL_STATE(2893)] = 92132, - [SMALL_STATE(2894)] = 92194, - [SMALL_STATE(2895)] = 92256, - [SMALL_STATE(2896)] = 92320, - [SMALL_STATE(2897)] = 92384, - [SMALL_STATE(2898)] = 92446, - [SMALL_STATE(2899)] = 92508, - [SMALL_STATE(2900)] = 92572, - [SMALL_STATE(2901)] = 92686, - [SMALL_STATE(2902)] = 92752, - [SMALL_STATE(2903)] = 92818, - [SMALL_STATE(2904)] = 92882, - [SMALL_STATE(2905)] = 92950, - [SMALL_STATE(2906)] = 93016, - [SMALL_STATE(2907)] = 93078, - [SMALL_STATE(2908)] = 93140, - [SMALL_STATE(2909)] = 93206, - [SMALL_STATE(2910)] = 93268, - [SMALL_STATE(2911)] = 93332, - [SMALL_STATE(2912)] = 93402, - [SMALL_STATE(2913)] = 93511, - [SMALL_STATE(2914)] = 93572, - [SMALL_STATE(2915)] = 93641, - [SMALL_STATE(2916)] = 93704, - [SMALL_STATE(2917)] = 93765, - [SMALL_STATE(2918)] = 93826, - [SMALL_STATE(2919)] = 93887, - [SMALL_STATE(2920)] = 93948, - [SMALL_STATE(2921)] = 94015, - [SMALL_STATE(2922)] = 94076, - [SMALL_STATE(2923)] = 94137, - [SMALL_STATE(2924)] = 94198, - [SMALL_STATE(2925)] = 94259, - [SMALL_STATE(2926)] = 94368, - [SMALL_STATE(2927)] = 94433, - [SMALL_STATE(2928)] = 94494, - [SMALL_STATE(2929)] = 94555, - [SMALL_STATE(2930)] = 94616, - [SMALL_STATE(2931)] = 94727, - [SMALL_STATE(2932)] = 94838, - [SMALL_STATE(2933)] = 94903, - [SMALL_STATE(2934)] = 94968, - [SMALL_STATE(2935)] = 95077, - [SMALL_STATE(2936)] = 95186, - [SMALL_STATE(2937)] = 95247, - [SMALL_STATE(2938)] = 95314, - [SMALL_STATE(2939)] = 95377, - [SMALL_STATE(2940)] = 95438, - [SMALL_STATE(2941)] = 95503, - [SMALL_STATE(2942)] = 95572, - [SMALL_STATE(2943)] = 95641, - [SMALL_STATE(2944)] = 95702, - [SMALL_STATE(2945)] = 95763, - [SMALL_STATE(2946)] = 95824, - [SMALL_STATE(2947)] = 95891, - [SMALL_STATE(2948)] = 95956, - [SMALL_STATE(2949)] = 96017, - [SMALL_STATE(2950)] = 96086, - [SMALL_STATE(2951)] = 96147, - [SMALL_STATE(2952)] = 96216, - [SMALL_STATE(2953)] = 96285, - [SMALL_STATE(2954)] = 96354, - [SMALL_STATE(2955)] = 96417, - [SMALL_STATE(2956)] = 96486, - [SMALL_STATE(2957)] = 96551, - [SMALL_STATE(2958)] = 96620, - [SMALL_STATE(2959)] = 96681, - [SMALL_STATE(2960)] = 96750, - [SMALL_STATE(2961)] = 96819, - [SMALL_STATE(2962)] = 96888, - [SMALL_STATE(2963)] = 96957, - [SMALL_STATE(2964)] = 97026, - [SMALL_STATE(2965)] = 97095, - [SMALL_STATE(2966)] = 97164, - [SMALL_STATE(2967)] = 97233, - [SMALL_STATE(2968)] = 97302, - [SMALL_STATE(2969)] = 97363, - [SMALL_STATE(2970)] = 97432, - [SMALL_STATE(2971)] = 97493, - [SMALL_STATE(2972)] = 97556, - [SMALL_STATE(2973)] = 97625, - [SMALL_STATE(2974)] = 97686, - [SMALL_STATE(2975)] = 97753, - [SMALL_STATE(2976)] = 97816, - [SMALL_STATE(2977)] = 97881, - [SMALL_STATE(2978)] = 97942, - [SMALL_STATE(2979)] = 98007, - [SMALL_STATE(2980)] = 98068, - [SMALL_STATE(2981)] = 98129, - [SMALL_STATE(2982)] = 98190, - [SMALL_STATE(2983)] = 98251, - [SMALL_STATE(2984)] = 98312, - [SMALL_STATE(2985)] = 98373, - [SMALL_STATE(2986)] = 98434, - [SMALL_STATE(2987)] = 98495, - [SMALL_STATE(2988)] = 98556, - [SMALL_STATE(2989)] = 98617, - [SMALL_STATE(2990)] = 98678, - [SMALL_STATE(2991)] = 98739, - [SMALL_STATE(2992)] = 98806, - [SMALL_STATE(2993)] = 98867, - [SMALL_STATE(2994)] = 98928, - [SMALL_STATE(2995)] = 98997, - [SMALL_STATE(2996)] = 99058, - [SMALL_STATE(2997)] = 99119, - [SMALL_STATE(2998)] = 99180, - [SMALL_STATE(2999)] = 99241, - [SMALL_STATE(3000)] = 99304, - [SMALL_STATE(3001)] = 99365, - [SMALL_STATE(3002)] = 99426, - [SMALL_STATE(3003)] = 99487, - [SMALL_STATE(3004)] = 99548, - [SMALL_STATE(3005)] = 99609, - [SMALL_STATE(3006)] = 99670, - [SMALL_STATE(3007)] = 99731, - [SMALL_STATE(3008)] = 99792, - [SMALL_STATE(3009)] = 99857, - [SMALL_STATE(3010)] = 99918, - [SMALL_STATE(3011)] = 99981, - [SMALL_STATE(3012)] = 100044, - [SMALL_STATE(3013)] = 100105, - [SMALL_STATE(3014)] = 100166, - [SMALL_STATE(3015)] = 100227, - [SMALL_STATE(3016)] = 100288, - [SMALL_STATE(3017)] = 100349, - [SMALL_STATE(3018)] = 100410, - [SMALL_STATE(3019)] = 100471, - [SMALL_STATE(3020)] = 100532, - [SMALL_STATE(3021)] = 100593, - [SMALL_STATE(3022)] = 100662, - [SMALL_STATE(3023)] = 100722, - [SMALL_STATE(3024)] = 100794, - [SMALL_STATE(3025)] = 100854, - [SMALL_STATE(3026)] = 100918, - [SMALL_STATE(3027)] = 100980, - [SMALL_STATE(3028)] = 101040, - [SMALL_STATE(3029)] = 101100, - [SMALL_STATE(3030)] = 101162, - [SMALL_STATE(3031)] = 101224, - [SMALL_STATE(3032)] = 101290, - [SMALL_STATE(3033)] = 101354, - [SMALL_STATE(3034)] = 101418, - [SMALL_STATE(3035)] = 101482, - [SMALL_STATE(3036)] = 101546, - [SMALL_STATE(3037)] = 101610, - [SMALL_STATE(3038)] = 101674, - [SMALL_STATE(3039)] = 101738, - [SMALL_STATE(3040)] = 101802, - [SMALL_STATE(3041)] = 101862, - [SMALL_STATE(3042)] = 101926, - [SMALL_STATE(3043)] = 101990, - [SMALL_STATE(3044)] = 102054, - [SMALL_STATE(3045)] = 102118, - [SMALL_STATE(3046)] = 102178, - [SMALL_STATE(3047)] = 102242, - [SMALL_STATE(3048)] = 102306, - [SMALL_STATE(3049)] = 102366, - [SMALL_STATE(3050)] = 102430, - [SMALL_STATE(3051)] = 102490, - [SMALL_STATE(3052)] = 102554, - [SMALL_STATE(3053)] = 102618, - [SMALL_STATE(3054)] = 102680, - [SMALL_STATE(3055)] = 102742, - [SMALL_STATE(3056)] = 102804, - [SMALL_STATE(3057)] = 102864, - [SMALL_STATE(3058)] = 102924, - [SMALL_STATE(3059)] = 102986, - [SMALL_STATE(3060)] = 103050, - [SMALL_STATE(3061)] = 103114, - [SMALL_STATE(3062)] = 103174, - [SMALL_STATE(3063)] = 103234, - [SMALL_STATE(3064)] = 103294, - [SMALL_STATE(3065)] = 103360, - [SMALL_STATE(3066)] = 103420, - [SMALL_STATE(3067)] = 103480, - [SMALL_STATE(3068)] = 103540, - [SMALL_STATE(3069)] = 103600, - [SMALL_STATE(3070)] = 103660, - [SMALL_STATE(3071)] = 103720, - [SMALL_STATE(3072)] = 103784, - [SMALL_STATE(3073)] = 103848, - [SMALL_STATE(3074)] = 103908, - [SMALL_STATE(3075)] = 103972, - [SMALL_STATE(3076)] = 104036, - [SMALL_STATE(3077)] = 104104, - [SMALL_STATE(3078)] = 104164, - [SMALL_STATE(3079)] = 104228, - [SMALL_STATE(3080)] = 104287, - [SMALL_STATE(3081)] = 104346, - [SMALL_STATE(3082)] = 104405, - [SMALL_STATE(3083)] = 104464, - [SMALL_STATE(3084)] = 104523, - [SMALL_STATE(3085)] = 104582, - [SMALL_STATE(3086)] = 104641, - [SMALL_STATE(3087)] = 104700, - [SMALL_STATE(3088)] = 104759, - [SMALL_STATE(3089)] = 104818, - [SMALL_STATE(3090)] = 104877, - [SMALL_STATE(3091)] = 104936, - [SMALL_STATE(3092)] = 104995, - [SMALL_STATE(3093)] = 105054, - [SMALL_STATE(3094)] = 105113, - [SMALL_STATE(3095)] = 105172, - [SMALL_STATE(3096)] = 105231, - [SMALL_STATE(3097)] = 105292, - [SMALL_STATE(3098)] = 105351, - [SMALL_STATE(3099)] = 105410, - [SMALL_STATE(3100)] = 105471, - [SMALL_STATE(3101)] = 105532, - [SMALL_STATE(3102)] = 105593, - [SMALL_STATE(3103)] = 105654, - [SMALL_STATE(3104)] = 105715, - [SMALL_STATE(3105)] = 105776, - [SMALL_STATE(3106)] = 105837, - [SMALL_STATE(3107)] = 105896, - [SMALL_STATE(3108)] = 105955, - [SMALL_STATE(3109)] = 106016, - [SMALL_STATE(3110)] = 106075, - [SMALL_STATE(3111)] = 106136, - [SMALL_STATE(3112)] = 106195, - [SMALL_STATE(3113)] = 106256, - [SMALL_STATE(3114)] = 106315, - [SMALL_STATE(3115)] = 106374, - [SMALL_STATE(3116)] = 106433, - [SMALL_STATE(3117)] = 106494, - [SMALL_STATE(3118)] = 106553, - [SMALL_STATE(3119)] = 106612, - [SMALL_STATE(3120)] = 106671, - [SMALL_STATE(3121)] = 106730, - [SMALL_STATE(3122)] = 106789, - [SMALL_STATE(3123)] = 106848, - [SMALL_STATE(3124)] = 106907, - [SMALL_STATE(3125)] = 106966, - [SMALL_STATE(3126)] = 107025, - [SMALL_STATE(3127)] = 107084, - [SMALL_STATE(3128)] = 107143, - [SMALL_STATE(3129)] = 107202, - [SMALL_STATE(3130)] = 107261, - [SMALL_STATE(3131)] = 107320, - [SMALL_STATE(3132)] = 107379, - [SMALL_STATE(3133)] = 107440, - [SMALL_STATE(3134)] = 107499, - [SMALL_STATE(3135)] = 107558, - [SMALL_STATE(3136)] = 107617, - [SMALL_STATE(3137)] = 107676, - [SMALL_STATE(3138)] = 107735, - [SMALL_STATE(3139)] = 107794, - [SMALL_STATE(3140)] = 107853, - [SMALL_STATE(3141)] = 107912, - [SMALL_STATE(3142)] = 107971, - [SMALL_STATE(3143)] = 108030, - [SMALL_STATE(3144)] = 108089, - [SMALL_STATE(3145)] = 108148, - [SMALL_STATE(3146)] = 108207, - [SMALL_STATE(3147)] = 108270, - [SMALL_STATE(3148)] = 108331, - [SMALL_STATE(3149)] = 108390, - [SMALL_STATE(3150)] = 108451, - [SMALL_STATE(3151)] = 108510, - [SMALL_STATE(3152)] = 108571, - [SMALL_STATE(3153)] = 108632, - [SMALL_STATE(3154)] = 108691, - [SMALL_STATE(3155)] = 108750, - [SMALL_STATE(3156)] = 108813, - [SMALL_STATE(3157)] = 108872, - [SMALL_STATE(3158)] = 108933, - [SMALL_STATE(3159)] = 108996, - [SMALL_STATE(3160)] = 109055, - [SMALL_STATE(3161)] = 109118, - [SMALL_STATE(3162)] = 109177, - [SMALL_STATE(3163)] = 109236, - [SMALL_STATE(3164)] = 109295, - [SMALL_STATE(3165)] = 109368, - [SMALL_STATE(3166)] = 109427, - [SMALL_STATE(3167)] = 109486, - [SMALL_STATE(3168)] = 109545, - [SMALL_STATE(3169)] = 109616, - [SMALL_STATE(3170)] = 109675, - [SMALL_STATE(3171)] = 109734, - [SMALL_STATE(3172)] = 109793, - [SMALL_STATE(3173)] = 109852, - [SMALL_STATE(3174)] = 109911, - [SMALL_STATE(3175)] = 109974, - [SMALL_STATE(3176)] = 110033, - [SMALL_STATE(3177)] = 110094, - [SMALL_STATE(3178)] = 110153, - [SMALL_STATE(3179)] = 110212, - [SMALL_STATE(3180)] = 110271, - [SMALL_STATE(3181)] = 110330, - [SMALL_STATE(3182)] = 110389, - [SMALL_STATE(3183)] = 110448, - [SMALL_STATE(3184)] = 110511, - [SMALL_STATE(3185)] = 110571, - [SMALL_STATE(3186)] = 110629, - [SMALL_STATE(3187)] = 110687, - [SMALL_STATE(3188)] = 110745, - [SMALL_STATE(3189)] = 110805, - [SMALL_STATE(3190)] = 110863, - [SMALL_STATE(3191)] = 110921, - [SMALL_STATE(3192)] = 110979, - [SMALL_STATE(3193)] = 111037, - [SMALL_STATE(3194)] = 111097, - [SMALL_STATE(3195)] = 111155, - [SMALL_STATE(3196)] = 111213, - [SMALL_STATE(3197)] = 111273, - [SMALL_STATE(3198)] = 111331, - [SMALL_STATE(3199)] = 111391, - [SMALL_STATE(3200)] = 111449, - [SMALL_STATE(3201)] = 111507, - [SMALL_STATE(3202)] = 111565, - [SMALL_STATE(3203)] = 111623, - [SMALL_STATE(3204)] = 111681, - [SMALL_STATE(3205)] = 111739, - [SMALL_STATE(3206)] = 111797, - [SMALL_STATE(3207)] = 111855, - [SMALL_STATE(3208)] = 111913, - [SMALL_STATE(3209)] = 111971, - [SMALL_STATE(3210)] = 112031, - [SMALL_STATE(3211)] = 112091, - [SMALL_STATE(3212)] = 112151, - [SMALL_STATE(3213)] = 112211, - [SMALL_STATE(3214)] = 112271, - [SMALL_STATE(3215)] = 112331, - [SMALL_STATE(3216)] = 112391, - [SMALL_STATE(3217)] = 112449, - [SMALL_STATE(3218)] = 112507, - [SMALL_STATE(3219)] = 112565, - [SMALL_STATE(3220)] = 112623, - [SMALL_STATE(3221)] = 112681, - [SMALL_STATE(3222)] = 112739, - [SMALL_STATE(3223)] = 112797, - [SMALL_STATE(3224)] = 112855, - [SMALL_STATE(3225)] = 112921, - [SMALL_STATE(3226)] = 112979, - [SMALL_STATE(3227)] = 113037, - [SMALL_STATE(3228)] = 113095, - [SMALL_STATE(3229)] = 113153, - [SMALL_STATE(3230)] = 113211, - [SMALL_STATE(3231)] = 113269, - [SMALL_STATE(3232)] = 113327, - [SMALL_STATE(3233)] = 113385, - [SMALL_STATE(3234)] = 113443, - [SMALL_STATE(3235)] = 113503, - [SMALL_STATE(3236)] = 113563, - [SMALL_STATE(3237)] = 113623, - [SMALL_STATE(3238)] = 113683, - [SMALL_STATE(3239)] = 113743, - [SMALL_STATE(3240)] = 113803, - [SMALL_STATE(3241)] = 113863, - [SMALL_STATE(3242)] = 113923, - [SMALL_STATE(3243)] = 113980, - [SMALL_STATE(3244)] = 114037, - [SMALL_STATE(3245)] = 114094, - [SMALL_STATE(3246)] = 114151, - [SMALL_STATE(3247)] = 114208, - [SMALL_STATE(3248)] = 114265, - [SMALL_STATE(3249)] = 114322, - [SMALL_STATE(3250)] = 114379, - [SMALL_STATE(3251)] = 114436, - [SMALL_STATE(3252)] = 114493, - [SMALL_STATE(3253)] = 114550, - [SMALL_STATE(3254)] = 114607, - [SMALL_STATE(3255)] = 114664, - [SMALL_STATE(3256)] = 114721, - [SMALL_STATE(3257)] = 114778, - [SMALL_STATE(3258)] = 114835, - [SMALL_STATE(3259)] = 114892, - [SMALL_STATE(3260)] = 114949, - [SMALL_STATE(3261)] = 115006, - [SMALL_STATE(3262)] = 115063, - [SMALL_STATE(3263)] = 115120, - [SMALL_STATE(3264)] = 115177, - [SMALL_STATE(3265)] = 115234, - [SMALL_STATE(3266)] = 115291, - [SMALL_STATE(3267)] = 115348, - [SMALL_STATE(3268)] = 115405, - [SMALL_STATE(3269)] = 115462, - [SMALL_STATE(3270)] = 115519, - [SMALL_STATE(3271)] = 115576, - [SMALL_STATE(3272)] = 115633, - [SMALL_STATE(3273)] = 115690, - [SMALL_STATE(3274)] = 115747, - [SMALL_STATE(3275)] = 115804, - [SMALL_STATE(3276)] = 115861, - [SMALL_STATE(3277)] = 115918, - [SMALL_STATE(3278)] = 115975, - [SMALL_STATE(3279)] = 116032, - [SMALL_STATE(3280)] = 116089, - [SMALL_STATE(3281)] = 116146, - [SMALL_STATE(3282)] = 116203, - [SMALL_STATE(3283)] = 116260, - [SMALL_STATE(3284)] = 116317, - [SMALL_STATE(3285)] = 116374, - [SMALL_STATE(3286)] = 116431, - [SMALL_STATE(3287)] = 116488, - [SMALL_STATE(3288)] = 116545, - [SMALL_STATE(3289)] = 116602, - [SMALL_STATE(3290)] = 116659, - [SMALL_STATE(3291)] = 116716, - [SMALL_STATE(3292)] = 116773, - [SMALL_STATE(3293)] = 116830, - [SMALL_STATE(3294)] = 116887, - [SMALL_STATE(3295)] = 116944, - [SMALL_STATE(3296)] = 117001, - [SMALL_STATE(3297)] = 117058, - [SMALL_STATE(3298)] = 117115, - [SMALL_STATE(3299)] = 117172, - [SMALL_STATE(3300)] = 117229, - [SMALL_STATE(3301)] = 117286, - [SMALL_STATE(3302)] = 117343, - [SMALL_STATE(3303)] = 117400, - [SMALL_STATE(3304)] = 117457, - [SMALL_STATE(3305)] = 117514, - [SMALL_STATE(3306)] = 117571, - [SMALL_STATE(3307)] = 117628, - [SMALL_STATE(3308)] = 117685, - [SMALL_STATE(3309)] = 117758, - [SMALL_STATE(3310)] = 117815, - [SMALL_STATE(3311)] = 117872, - [SMALL_STATE(3312)] = 117929, - [SMALL_STATE(3313)] = 117986, - [SMALL_STATE(3314)] = 118051, - [SMALL_STATE(3315)] = 118108, - [SMALL_STATE(3316)] = 118167, - [SMALL_STATE(3317)] = 118232, - [SMALL_STATE(3318)] = 118299, - [SMALL_STATE(3319)] = 118356, - [SMALL_STATE(3320)] = 118426, - [SMALL_STATE(3321)] = 118502, - [SMALL_STATE(3322)] = 118578, - [SMALL_STATE(3323)] = 118654, - [SMALL_STATE(3324)] = 118730, - [SMALL_STATE(3325)] = 118806, - [SMALL_STATE(3326)] = 118882, - [SMALL_STATE(3327)] = 118958, - [SMALL_STATE(3328)] = 119034, - [SMALL_STATE(3329)] = 119110, - [SMALL_STATE(3330)] = 119186, - [SMALL_STATE(3331)] = 119262, - [SMALL_STATE(3332)] = 119324, - [SMALL_STATE(3333)] = 119380, - [SMALL_STATE(3334)] = 119450, - [SMALL_STATE(3335)] = 119520, - [SMALL_STATE(3336)] = 119590, - [SMALL_STATE(3337)] = 119666, - [SMALL_STATE(3338)] = 119742, - [SMALL_STATE(3339)] = 119818, - [SMALL_STATE(3340)] = 119894, - [SMALL_STATE(3341)] = 119970, - [SMALL_STATE(3342)] = 120033, - [SMALL_STATE(3343)] = 120094, - [SMALL_STATE(3344)] = 120159, - [SMALL_STATE(3345)] = 120218, - [SMALL_STATE(3346)] = 120273, - [SMALL_STATE(3347)] = 120327, - [SMALL_STATE(3348)] = 120383, - [SMALL_STATE(3349)] = 120439, - [SMALL_STATE(3350)] = 120495, - [SMALL_STATE(3351)] = 120551, - [SMALL_STATE(3352)] = 120621, - [SMALL_STATE(3353)] = 120683, - [SMALL_STATE(3354)] = 120739, - [SMALL_STATE(3355)] = 120797, - [SMALL_STATE(3356)] = 120859, - [SMALL_STATE(3357)] = 120913, - [SMALL_STATE(3358)] = 120967, - [SMALL_STATE(3359)] = 121025, - [SMALL_STATE(3360)] = 121079, - [SMALL_STATE(3361)] = 121135, - [SMALL_STATE(3362)] = 121190, - [SMALL_STATE(3363)] = 121243, - [SMALL_STATE(3364)] = 121296, - [SMALL_STATE(3365)] = 121353, - [SMALL_STATE(3366)] = 121406, - [SMALL_STATE(3367)] = 121461, - [SMALL_STATE(3368)] = 121514, - [SMALL_STATE(3369)] = 121567, - [SMALL_STATE(3370)] = 121634, - [SMALL_STATE(3371)] = 121687, - [SMALL_STATE(3372)] = 121742, - [SMALL_STATE(3373)] = 121799, - [SMALL_STATE(3374)] = 121852, - [SMALL_STATE(3375)] = 121909, - [SMALL_STATE(3376)] = 121962, - [SMALL_STATE(3377)] = 122029, - [SMALL_STATE(3378)] = 122096, - [SMALL_STATE(3379)] = 122151, - [SMALL_STATE(3380)] = 122206, - [SMALL_STATE(3381)] = 122273, - [SMALL_STATE(3382)] = 122326, - [SMALL_STATE(3383)] = 122383, - [SMALL_STATE(3384)] = 122436, - [SMALL_STATE(3385)] = 122489, - [SMALL_STATE(3386)] = 122544, - [SMALL_STATE(3387)] = 122600, - [SMALL_STATE(3388)] = 122650, - [SMALL_STATE(3389)] = 122714, - [SMALL_STATE(3390)] = 122766, - [SMALL_STATE(3391)] = 122818, - [SMALL_STATE(3392)] = 122870, - [SMALL_STATE(3393)] = 122922, - [SMALL_STATE(3394)] = 122974, - [SMALL_STATE(3395)] = 123038, - [SMALL_STATE(3396)] = 123088, - [SMALL_STATE(3397)] = 123140, - [SMALL_STATE(3398)] = 123194, - [SMALL_STATE(3399)] = 123250, - [SMALL_STATE(3400)] = 123312, - [SMALL_STATE(3401)] = 123376, - [SMALL_STATE(3402)] = 123442, - [SMALL_STATE(3403)] = 123510, - [SMALL_STATE(3404)] = 123580, - [SMALL_STATE(3405)] = 123652, - [SMALL_STATE(3406)] = 123726, - [SMALL_STATE(3407)] = 123786, - [SMALL_STATE(3408)] = 123844, - [SMALL_STATE(3409)] = 123908, - [SMALL_STATE(3410)] = 123962, - [SMALL_STATE(3411)] = 124012, - [SMALL_STATE(3412)] = 124068, - [SMALL_STATE(3413)] = 124120, - [SMALL_STATE(3414)] = 124178, - [SMALL_STATE(3415)] = 124238, - [SMALL_STATE(3416)] = 124304, - [SMALL_STATE(3417)] = 124356, - [SMALL_STATE(3418)] = 124424, - [SMALL_STATE(3419)] = 124494, - [SMALL_STATE(3420)] = 124566, - [SMALL_STATE(3421)] = 124640, - [SMALL_STATE(3422)] = 124716, - [SMALL_STATE(3423)] = 124794, - [SMALL_STATE(3424)] = 124848, - [SMALL_STATE(3425)] = 124912, - [SMALL_STATE(3426)] = 124974, - [SMALL_STATE(3427)] = 125038, - [SMALL_STATE(3428)] = 125094, - [SMALL_STATE(3429)] = 125150, - [SMALL_STATE(3430)] = 125208, - [SMALL_STATE(3431)] = 125266, - [SMALL_STATE(3432)] = 125326, - [SMALL_STATE(3433)] = 125386, - [SMALL_STATE(3434)] = 125452, - [SMALL_STATE(3435)] = 125518, - [SMALL_STATE(3436)] = 125586, - [SMALL_STATE(3437)] = 125654, - [SMALL_STATE(3438)] = 125724, - [SMALL_STATE(3439)] = 125794, - [SMALL_STATE(3440)] = 125866, - [SMALL_STATE(3441)] = 125938, - [SMALL_STATE(3442)] = 126012, - [SMALL_STATE(3443)] = 126086, - [SMALL_STATE(3444)] = 126162, - [SMALL_STATE(3445)] = 126238, - [SMALL_STATE(3446)] = 126316, - [SMALL_STATE(3447)] = 126394, - [SMALL_STATE(3448)] = 126458, - [SMALL_STATE(3449)] = 126522, - [SMALL_STATE(3450)] = 126584, - [SMALL_STATE(3451)] = 126646, - [SMALL_STATE(3452)] = 126702, - [SMALL_STATE(3453)] = 126760, - [SMALL_STATE(3454)] = 126820, - [SMALL_STATE(3455)] = 126886, - [SMALL_STATE(3456)] = 126954, - [SMALL_STATE(3457)] = 127024, - [SMALL_STATE(3458)] = 127096, - [SMALL_STATE(3459)] = 127170, - [SMALL_STATE(3460)] = 127246, - [SMALL_STATE(3461)] = 127324, - [SMALL_STATE(3462)] = 127376, - [SMALL_STATE(3463)] = 127440, - [SMALL_STATE(3464)] = 127492, - [SMALL_STATE(3465)] = 127554, - [SMALL_STATE(3466)] = 127610, - [SMALL_STATE(3467)] = 127668, - [SMALL_STATE(3468)] = 127728, - [SMALL_STATE(3469)] = 127794, - [SMALL_STATE(3470)] = 127862, - [SMALL_STATE(3471)] = 127932, - [SMALL_STATE(3472)] = 128004, - [SMALL_STATE(3473)] = 128078, - [SMALL_STATE(3474)] = 128154, - [SMALL_STATE(3475)] = 128232, - [SMALL_STATE(3476)] = 128296, - [SMALL_STATE(3477)] = 128358, - [SMALL_STATE(3478)] = 128414, - [SMALL_STATE(3479)] = 128464, - [SMALL_STATE(3480)] = 128522, - [SMALL_STATE(3481)] = 128580, - [SMALL_STATE(3482)] = 128640, - [SMALL_STATE(3483)] = 128700, - [SMALL_STATE(3484)] = 128766, - [SMALL_STATE(3485)] = 128832, - [SMALL_STATE(3486)] = 128900, - [SMALL_STATE(3487)] = 128968, - [SMALL_STATE(3488)] = 129038, - [SMALL_STATE(3489)] = 129108, - [SMALL_STATE(3490)] = 129180, - [SMALL_STATE(3491)] = 129252, - [SMALL_STATE(3492)] = 129326, - [SMALL_STATE(3493)] = 129400, - [SMALL_STATE(3494)] = 129476, - [SMALL_STATE(3495)] = 129552, - [SMALL_STATE(3496)] = 129630, - [SMALL_STATE(3497)] = 129708, - [SMALL_STATE(3498)] = 129772, - [SMALL_STATE(3499)] = 129836, - [SMALL_STATE(3500)] = 129898, - [SMALL_STATE(3501)] = 129960, - [SMALL_STATE(3502)] = 130016, - [SMALL_STATE(3503)] = 130074, - [SMALL_STATE(3504)] = 130134, - [SMALL_STATE(3505)] = 130200, - [SMALL_STATE(3506)] = 130268, - [SMALL_STATE(3507)] = 130338, - [SMALL_STATE(3508)] = 130410, - [SMALL_STATE(3509)] = 130484, - [SMALL_STATE(3510)] = 130560, - [SMALL_STATE(3511)] = 130638, - [SMALL_STATE(3512)] = 130702, - [SMALL_STATE(3513)] = 130764, - [SMALL_STATE(3514)] = 130816, - [SMALL_STATE(3515)] = 130868, - [SMALL_STATE(3516)] = 130920, - [SMALL_STATE(3517)] = 130972, - [SMALL_STATE(3518)] = 131026, - [SMALL_STATE(3519)] = 131080, - [SMALL_STATE(3520)] = 131130, - [SMALL_STATE(3521)] = 131184, - [SMALL_STATE(3522)] = 131238, - [SMALL_STATE(3523)] = 131288, - [SMALL_STATE(3524)] = 131347, - [SMALL_STATE(3525)] = 131408, - [SMALL_STATE(3526)] = 131459, - [SMALL_STATE(3527)] = 131512, - [SMALL_STATE(3528)] = 131567, - [SMALL_STATE(3529)] = 131628, - [SMALL_STATE(3530)] = 131691, - [SMALL_STATE(3531)] = 131756, - [SMALL_STATE(3532)] = 131823, - [SMALL_STATE(3533)] = 131892, - [SMALL_STATE(3534)] = 131963, - [SMALL_STATE(3535)] = 132036, - [SMALL_STATE(3536)] = 132095, - [SMALL_STATE(3537)] = 132152, - [SMALL_STATE(3538)] = 132207, - [SMALL_STATE(3539)] = 132262, - [SMALL_STATE(3540)] = 132313, - [SMALL_STATE(3541)] = 132362, - [SMALL_STATE(3542)] = 132417, - [SMALL_STATE(3543)] = 132466, - [SMALL_STATE(3544)] = 132521, - [SMALL_STATE(3545)] = 132574, - [SMALL_STATE(3546)] = 132629, - [SMALL_STATE(3547)] = 132678, - [SMALL_STATE(3548)] = 132739, - [SMALL_STATE(3549)] = 132793, - [SMALL_STATE(3550)] = 132847, - [SMALL_STATE(3551)] = 132901, - [SMALL_STATE(3552)] = 132955, - [SMALL_STATE(3553)] = 133007, - [SMALL_STATE(3554)] = 133065, - [SMALL_STATE(3555)] = 133127, - [SMALL_STATE(3556)] = 133185, - [SMALL_STATE(3557)] = 133271, - [SMALL_STATE(3558)] = 133323, - [SMALL_STATE(3559)] = 133377, - [SMALL_STATE(3560)] = 133429, - [SMALL_STATE(3561)] = 133483, - [SMALL_STATE(3562)] = 133547, - [SMALL_STATE(3563)] = 133633, - [SMALL_STATE(3564)] = 133687, - [SMALL_STATE(3565)] = 133741, - [SMALL_STATE(3566)] = 133795, - [SMALL_STATE(3567)] = 133849, - [SMALL_STATE(3568)] = 133901, - [SMALL_STATE(3569)] = 133956, - [SMALL_STATE(3570)] = 134005, - [SMALL_STATE(3571)] = 134054, - [SMALL_STATE(3572)] = 134105, - [SMALL_STATE(3573)] = 134188, - [SMALL_STATE(3574)] = 134243, - [SMALL_STATE(3575)] = 134292, - [SMALL_STATE(3576)] = 134345, - [SMALL_STATE(3577)] = 134398, - [SMALL_STATE(3578)] = 134481, - [SMALL_STATE(3579)] = 134536, - [SMALL_STATE(3580)] = 134585, - [SMALL_STATE(3581)] = 134640, - [SMALL_STATE(3582)] = 134689, - [SMALL_STATE(3583)] = 134738, - [SMALL_STATE(3584)] = 134801, - [SMALL_STATE(3585)] = 134850, - [SMALL_STATE(3586)] = 134899, - [SMALL_STATE(3587)] = 134948, - [SMALL_STATE(3588)] = 134997, - [SMALL_STATE(3589)] = 135048, - [SMALL_STATE(3590)] = 135097, - [SMALL_STATE(3591)] = 135146, - [SMALL_STATE(3592)] = 135195, - [SMALL_STATE(3593)] = 135244, - [SMALL_STATE(3594)] = 135299, - [SMALL_STATE(3595)] = 135348, - [SMALL_STATE(3596)] = 135397, - [SMALL_STATE(3597)] = 135446, - [SMALL_STATE(3598)] = 135501, - [SMALL_STATE(3599)] = 135552, - [SMALL_STATE(3600)] = 135601, - [SMALL_STATE(3601)] = 135652, - [SMALL_STATE(3602)] = 135717, - [SMALL_STATE(3603)] = 135772, - [SMALL_STATE(3604)] = 135837, - [SMALL_STATE(3605)] = 135886, - [SMALL_STATE(3606)] = 135937, - [SMALL_STATE(3607)] = 135990, - [SMALL_STATE(3608)] = 136041, - [SMALL_STATE(3609)] = 136090, - [SMALL_STATE(3610)] = 136139, - [SMALL_STATE(3611)] = 136188, - [SMALL_STATE(3612)] = 136237, - [SMALL_STATE(3613)] = 136299, - [SMALL_STATE(3614)] = 136347, - [SMALL_STATE(3615)] = 136395, - [SMALL_STATE(3616)] = 136443, - [SMALL_STATE(3617)] = 136491, - [SMALL_STATE(3618)] = 136551, - [SMALL_STATE(3619)] = 136599, - [SMALL_STATE(3620)] = 136647, - [SMALL_STATE(3621)] = 136709, - [SMALL_STATE(3622)] = 136761, - [SMALL_STATE(3623)] = 136809, - [SMALL_STATE(3624)] = 136857, - [SMALL_STATE(3625)] = 136907, - [SMALL_STATE(3626)] = 136957, - [SMALL_STATE(3627)] = 137007, - [SMALL_STATE(3628)] = 137055, - [SMALL_STATE(3629)] = 137103, - [SMALL_STATE(3630)] = 137161, - [SMALL_STATE(3631)] = 137209, - [SMALL_STATE(3632)] = 137259, - [SMALL_STATE(3633)] = 137307, - [SMALL_STATE(3634)] = 137359, - [SMALL_STATE(3635)] = 137411, - [SMALL_STATE(3636)] = 137473, - [SMALL_STATE(3637)] = 137521, - [SMALL_STATE(3638)] = 137583, - [SMALL_STATE(3639)] = 137645, - [SMALL_STATE(3640)] = 137707, - [SMALL_STATE(3641)] = 137759, - [SMALL_STATE(3642)] = 137807, - [SMALL_STATE(3643)] = 137855, - [SMALL_STATE(3644)] = 137915, - [SMALL_STATE(3645)] = 137963, - [SMALL_STATE(3646)] = 138018, - [SMALL_STATE(3647)] = 138069, - [SMALL_STATE(3648)] = 138116, - [SMALL_STATE(3649)] = 138163, - [SMALL_STATE(3650)] = 138210, - [SMALL_STATE(3651)] = 138257, - [SMALL_STATE(3652)] = 138308, - [SMALL_STATE(3653)] = 138355, - [SMALL_STATE(3654)] = 138402, - [SMALL_STATE(3655)] = 138457, - [SMALL_STATE(3656)] = 138508, - [SMALL_STATE(3657)] = 138559, - [SMALL_STATE(3658)] = 138608, - [SMALL_STATE(3659)] = 138663, - [SMALL_STATE(3660)] = 138718, - [SMALL_STATE(3661)] = 138773, - [SMALL_STATE(3662)] = 138828, - [SMALL_STATE(3663)] = 138875, - [SMALL_STATE(3664)] = 138930, - [SMALL_STATE(3665)] = 138985, - [SMALL_STATE(3666)] = 139040, - [SMALL_STATE(3667)] = 139095, - [SMALL_STATE(3668)] = 139150, - [SMALL_STATE(3669)] = 139205, - [SMALL_STATE(3670)] = 139260, - [SMALL_STATE(3671)] = 139315, - [SMALL_STATE(3672)] = 139370, - [SMALL_STATE(3673)] = 139425, - [SMALL_STATE(3674)] = 139480, - [SMALL_STATE(3675)] = 139535, - [SMALL_STATE(3676)] = 139590, - [SMALL_STATE(3677)] = 139645, - [SMALL_STATE(3678)] = 139700, - [SMALL_STATE(3679)] = 139755, - [SMALL_STATE(3680)] = 139810, - [SMALL_STATE(3681)] = 139865, - [SMALL_STATE(3682)] = 139912, - [SMALL_STATE(3683)] = 139966, - [SMALL_STATE(3684)] = 140020, - [SMALL_STATE(3685)] = 140074, - [SMALL_STATE(3686)] = 140128, - [SMALL_STATE(3687)] = 140182, - [SMALL_STATE(3688)] = 140236, - [SMALL_STATE(3689)] = 140290, - [SMALL_STATE(3690)] = 140338, - [SMALL_STATE(3691)] = 140392, - [SMALL_STATE(3692)] = 140446, - [SMALL_STATE(3693)] = 140500, - [SMALL_STATE(3694)] = 140552, - [SMALL_STATE(3695)] = 140604, - [SMALL_STATE(3696)] = 140658, - [SMALL_STATE(3697)] = 140712, - [SMALL_STATE(3698)] = 140766, - [SMALL_STATE(3699)] = 140812, - [SMALL_STATE(3700)] = 140866, - [SMALL_STATE(3701)] = 140920, - [SMALL_STATE(3702)] = 140974, - [SMALL_STATE(3703)] = 141028, - [SMALL_STATE(3704)] = 141080, - [SMALL_STATE(3705)] = 141134, - [SMALL_STATE(3706)] = 141188, - [SMALL_STATE(3707)] = 141242, - [SMALL_STATE(3708)] = 141296, - [SMALL_STATE(3709)] = 141350, - [SMALL_STATE(3710)] = 141398, - [SMALL_STATE(3711)] = 141448, - [SMALL_STATE(3712)] = 141502, - [SMALL_STATE(3713)] = 141548, - [SMALL_STATE(3714)] = 141594, - [SMALL_STATE(3715)] = 141648, - [SMALL_STATE(3716)] = 141702, - [SMALL_STATE(3717)] = 141747, - [SMALL_STATE(3718)] = 141798, - [SMALL_STATE(3719)] = 141843, - [SMALL_STATE(3720)] = 141888, - [SMALL_STATE(3721)] = 141937, - [SMALL_STATE(3722)] = 141982, - [SMALL_STATE(3723)] = 142027, - [SMALL_STATE(3724)] = 142072, - [SMALL_STATE(3725)] = 142117, - [SMALL_STATE(3726)] = 142162, - [SMALL_STATE(3727)] = 142207, - [SMALL_STATE(3728)] = 142252, - [SMALL_STATE(3729)] = 142303, - [SMALL_STATE(3730)] = 142348, - [SMALL_STATE(3731)] = 142399, - [SMALL_STATE(3732)] = 142444, - [SMALL_STATE(3733)] = 142495, - [SMALL_STATE(3734)] = 142545, - [SMALL_STATE(3735)] = 142593, - [SMALL_STATE(3736)] = 142637, - [SMALL_STATE(3737)] = 142685, - [SMALL_STATE(3738)] = 142733, - [SMALL_STATE(3739)] = 142781, - [SMALL_STATE(3740)] = 142831, - [SMALL_STATE(3741)] = 142879, - [SMALL_STATE(3742)] = 142923, - [SMALL_STATE(3743)] = 142967, - [SMALL_STATE(3744)] = 143015, - [SMALL_STATE(3745)] = 143063, - [SMALL_STATE(3746)] = 143111, - [SMALL_STATE(3747)] = 143161, - [SMALL_STATE(3748)] = 143209, - [SMALL_STATE(3749)] = 143253, - [SMALL_STATE(3750)] = 143299, - [SMALL_STATE(3751)] = 143345, - [SMALL_STATE(3752)] = 143393, - [SMALL_STATE(3753)] = 143437, - [SMALL_STATE(3754)] = 143485, - [SMALL_STATE(3755)] = 143533, - [SMALL_STATE(3756)] = 143578, - [SMALL_STATE(3757)] = 143621, - [SMALL_STATE(3758)] = 143710, - [SMALL_STATE(3759)] = 143755, - [SMALL_STATE(3760)] = 143802, - [SMALL_STATE(3761)] = 143845, - [SMALL_STATE(3762)] = 143892, - [SMALL_STATE(3763)] = 143937, - [SMALL_STATE(3764)] = 143980, - [SMALL_STATE(3765)] = 144023, - [SMALL_STATE(3766)] = 144068, - [SMALL_STATE(3767)] = 144115, - [SMALL_STATE(3768)] = 144160, - [SMALL_STATE(3769)] = 144205, - [SMALL_STATE(3770)] = 144248, - [SMALL_STATE(3771)] = 144299, - [SMALL_STATE(3772)] = 144388, - [SMALL_STATE(3773)] = 144433, - [SMALL_STATE(3774)] = 144480, - [SMALL_STATE(3775)] = 144527, - [SMALL_STATE(3776)] = 144570, - [SMALL_STATE(3777)] = 144615, - [SMALL_STATE(3778)] = 144658, - [SMALL_STATE(3779)] = 144705, - [SMALL_STATE(3780)] = 144748, - [SMALL_STATE(3781)] = 144793, - [SMALL_STATE(3782)] = 144840, - [SMALL_STATE(3783)] = 144885, - [SMALL_STATE(3784)] = 144928, - [SMALL_STATE(3785)] = 144975, - [SMALL_STATE(3786)] = 145020, - [SMALL_STATE(3787)] = 145065, - [SMALL_STATE(3788)] = 145108, - [SMALL_STATE(3789)] = 145155, - [SMALL_STATE(3790)] = 145200, - [SMALL_STATE(3791)] = 145246, - [SMALL_STATE(3792)] = 145292, - [SMALL_STATE(3793)] = 145338, - [SMALL_STATE(3794)] = 145386, - [SMALL_STATE(3795)] = 145434, - [SMALL_STATE(3796)] = 145484, - [SMALL_STATE(3797)] = 145534, - [SMALL_STATE(3798)] = 145590, - [SMALL_STATE(3799)] = 145646, - [SMALL_STATE(3800)] = 145704, - [SMALL_STATE(3801)] = 145762, - [SMALL_STATE(3802)] = 145822, - [SMALL_STATE(3803)] = 145882, - [SMALL_STATE(3804)] = 145944, - [SMALL_STATE(3805)] = 146006, - [SMALL_STATE(3806)] = 146070, - [SMALL_STATE(3807)] = 146134, - [SMALL_STATE(3808)] = 146200, - [SMALL_STATE(3809)] = 146266, - [SMALL_STATE(3810)] = 146334, - [SMALL_STATE(3811)] = 146402, - [SMALL_STATE(3812)] = 146456, - [SMALL_STATE(3813)] = 146510, - [SMALL_STATE(3814)] = 146562, - [SMALL_STATE(3815)] = 146614, - [SMALL_STATE(3816)] = 146660, - [SMALL_STATE(3817)] = 146708, - [SMALL_STATE(3818)] = 146758, - [SMALL_STATE(3819)] = 146814, - [SMALL_STATE(3820)] = 146872, - [SMALL_STATE(3821)] = 146932, - [SMALL_STATE(3822)] = 146994, - [SMALL_STATE(3823)] = 147058, - [SMALL_STATE(3824)] = 147124, - [SMALL_STATE(3825)] = 147192, - [SMALL_STATE(3826)] = 147246, - [SMALL_STATE(3827)] = 147298, - [SMALL_STATE(3828)] = 147344, - [SMALL_STATE(3829)] = 147392, - [SMALL_STATE(3830)] = 147442, - [SMALL_STATE(3831)] = 147498, - [SMALL_STATE(3832)] = 147556, - [SMALL_STATE(3833)] = 147616, - [SMALL_STATE(3834)] = 147678, - [SMALL_STATE(3835)] = 147742, - [SMALL_STATE(3836)] = 147808, - [SMALL_STATE(3837)] = 147876, - [SMALL_STATE(3838)] = 147930, - [SMALL_STATE(3839)] = 147982, - [SMALL_STATE(3840)] = 148028, - [SMALL_STATE(3841)] = 148074, - [SMALL_STATE(3842)] = 148122, - [SMALL_STATE(3843)] = 148170, - [SMALL_STATE(3844)] = 148220, - [SMALL_STATE(3845)] = 148270, - [SMALL_STATE(3846)] = 148326, - [SMALL_STATE(3847)] = 148382, - [SMALL_STATE(3848)] = 148440, - [SMALL_STATE(3849)] = 148498, - [SMALL_STATE(3850)] = 148558, - [SMALL_STATE(3851)] = 148618, - [SMALL_STATE(3852)] = 148680, - [SMALL_STATE(3853)] = 148742, - [SMALL_STATE(3854)] = 148806, - [SMALL_STATE(3855)] = 148870, - [SMALL_STATE(3856)] = 148936, - [SMALL_STATE(3857)] = 149002, - [SMALL_STATE(3858)] = 149070, - [SMALL_STATE(3859)] = 149138, - [SMALL_STATE(3860)] = 149192, - [SMALL_STATE(3861)] = 149246, - [SMALL_STATE(3862)] = 149298, - [SMALL_STATE(3863)] = 149350, - [SMALL_STATE(3864)] = 149396, - [SMALL_STATE(3865)] = 149444, - [SMALL_STATE(3866)] = 149494, - [SMALL_STATE(3867)] = 149550, - [SMALL_STATE(3868)] = 149608, - [SMALL_STATE(3869)] = 149668, - [SMALL_STATE(3870)] = 149730, - [SMALL_STATE(3871)] = 149794, - [SMALL_STATE(3872)] = 149860, - [SMALL_STATE(3873)] = 149928, - [SMALL_STATE(3874)] = 149982, - [SMALL_STATE(3875)] = 150034, - [SMALL_STATE(3876)] = 150076, - [SMALL_STATE(3877)] = 150118, - [SMALL_STATE(3878)] = 150160, - [SMALL_STATE(3879)] = 150202, - [SMALL_STATE(3880)] = 150244, - [SMALL_STATE(3881)] = 150286, - [SMALL_STATE(3882)] = 150330, - [SMALL_STATE(3883)] = 150372, - [SMALL_STATE(3884)] = 150414, - [SMALL_STATE(3885)] = 150456, - [SMALL_STATE(3886)] = 150498, - [SMALL_STATE(3887)] = 150540, - [SMALL_STATE(3888)] = 150590, - [SMALL_STATE(3889)] = 150632, - [SMALL_STATE(3890)] = 150674, - [SMALL_STATE(3891)] = 150720, - [SMALL_STATE(3892)] = 150762, - [SMALL_STATE(3893)] = 150808, - [SMALL_STATE(3894)] = 150850, - [SMALL_STATE(3895)] = 150892, - [SMALL_STATE(3896)] = 150934, - [SMALL_STATE(3897)] = 150976, - [SMALL_STATE(3898)] = 151018, - [SMALL_STATE(3899)] = 151064, - [SMALL_STATE(3900)] = 151106, - [SMALL_STATE(3901)] = 151148, - [SMALL_STATE(3902)] = 151190, - [SMALL_STATE(3903)] = 151232, - [SMALL_STATE(3904)] = 151274, - [SMALL_STATE(3905)] = 151316, - [SMALL_STATE(3906)] = 151358, - [SMALL_STATE(3907)] = 151400, - [SMALL_STATE(3908)] = 151442, - [SMALL_STATE(3909)] = 151484, - [SMALL_STATE(3910)] = 151526, - [SMALL_STATE(3911)] = 151568, - [SMALL_STATE(3912)] = 151610, - [SMALL_STATE(3913)] = 151654, - [SMALL_STATE(3914)] = 151696, - [SMALL_STATE(3915)] = 151738, - [SMALL_STATE(3916)] = 151780, - [SMALL_STATE(3917)] = 151824, - [SMALL_STATE(3918)] = 151866, - [SMALL_STATE(3919)] = 151908, - [SMALL_STATE(3920)] = 151950, - [SMALL_STATE(3921)] = 151992, - [SMALL_STATE(3922)] = 152036, - [SMALL_STATE(3923)] = 152082, - [SMALL_STATE(3924)] = 152130, - [SMALL_STATE(3925)] = 152184, - [SMALL_STATE(3926)] = 152240, - [SMALL_STATE(3927)] = 152298, - [SMALL_STATE(3928)] = 152358, - [SMALL_STATE(3929)] = 152420, - [SMALL_STATE(3930)] = 152484, - [SMALL_STATE(3931)] = 152550, - [SMALL_STATE(3932)] = 152602, - [SMALL_STATE(3933)] = 152652, - [SMALL_STATE(3934)] = 152694, - [SMALL_STATE(3935)] = 152736, - [SMALL_STATE(3936)] = 152778, - [SMALL_STATE(3937)] = 152822, - [SMALL_STATE(3938)] = 152868, - [SMALL_STATE(3939)] = 152920, - [SMALL_STATE(3940)] = 152974, - [SMALL_STATE(3941)] = 153030, - [SMALL_STATE(3942)] = 153088, - [SMALL_STATE(3943)] = 153148, - [SMALL_STATE(3944)] = 153210, - [SMALL_STATE(3945)] = 153274, - [SMALL_STATE(3946)] = 153324, - [SMALL_STATE(3947)] = 153372, - [SMALL_STATE(3948)] = 153414, - [SMALL_STATE(3949)] = 153460, - [SMALL_STATE(3950)] = 153502, - [SMALL_STATE(3951)] = 153544, - [SMALL_STATE(3952)] = 153586, - [SMALL_STATE(3953)] = 153632, - [SMALL_STATE(3954)] = 153680, - [SMALL_STATE(3955)] = 153730, - [SMALL_STATE(3956)] = 153786, - [SMALL_STATE(3957)] = 153844, - [SMALL_STATE(3958)] = 153904, - [SMALL_STATE(3959)] = 153966, - [SMALL_STATE(3960)] = 154030, - [SMALL_STATE(3961)] = 154096, - [SMALL_STATE(3962)] = 154164, - [SMALL_STATE(3963)] = 154218, - [SMALL_STATE(3964)] = 154260, - [SMALL_STATE(3965)] = 154302, - [SMALL_STATE(3966)] = 154354, - [SMALL_STATE(3967)] = 154396, - [SMALL_STATE(3968)] = 154438, - [SMALL_STATE(3969)] = 154484, - [SMALL_STATE(3970)] = 154526, - [SMALL_STATE(3971)] = 154568, - [SMALL_STATE(3972)] = 154610, - [SMALL_STATE(3973)] = 154654, - [SMALL_STATE(3974)] = 154698, - [SMALL_STATE(3975)] = 154744, - [SMALL_STATE(3976)] = 154786, - [SMALL_STATE(3977)] = 154869, - [SMALL_STATE(3978)] = 154952, - [SMALL_STATE(3979)] = 154993, - [SMALL_STATE(3980)] = 155076, - [SMALL_STATE(3981)] = 155159, - [SMALL_STATE(3982)] = 155226, - [SMALL_STATE(3983)] = 155267, - [SMALL_STATE(3984)] = 155312, - [SMALL_STATE(3985)] = 155395, - [SMALL_STATE(3986)] = 155462, - [SMALL_STATE(3987)] = 155503, - [SMALL_STATE(3988)] = 155586, - [SMALL_STATE(3989)] = 155669, - [SMALL_STATE(3990)] = 155752, - [SMALL_STATE(3991)] = 155835, - [SMALL_STATE(3992)] = 155918, - [SMALL_STATE(3993)] = 156001, - [SMALL_STATE(3994)] = 156084, - [SMALL_STATE(3995)] = 156167, - [SMALL_STATE(3996)] = 156250, - [SMALL_STATE(3997)] = 156291, - [SMALL_STATE(3998)] = 156374, - [SMALL_STATE(3999)] = 156457, - [SMALL_STATE(4000)] = 156540, - [SMALL_STATE(4001)] = 156623, - [SMALL_STATE(4002)] = 156706, - [SMALL_STATE(4003)] = 156789, - [SMALL_STATE(4004)] = 156834, - [SMALL_STATE(4005)] = 156917, - [SMALL_STATE(4006)] = 156958, - [SMALL_STATE(4007)] = 157041, - [SMALL_STATE(4008)] = 157108, - [SMALL_STATE(4009)] = 157191, - [SMALL_STATE(4010)] = 157258, - [SMALL_STATE(4011)] = 157341, - [SMALL_STATE(4012)] = 157424, - [SMALL_STATE(4013)] = 157465, - [SMALL_STATE(4014)] = 157506, - [SMALL_STATE(4015)] = 157573, - [SMALL_STATE(4016)] = 157640, - [SMALL_STATE(4017)] = 157723, - [SMALL_STATE(4018)] = 157781, - [SMALL_STATE(4019)] = 157843, - [SMALL_STATE(4020)] = 157883, - [SMALL_STATE(4021)] = 157923, - [SMALL_STATE(4022)] = 157965, - [SMALL_STATE(4023)] = 158009, - [SMALL_STATE(4024)] = 158059, - [SMALL_STATE(4025)] = 158111, - [SMALL_STATE(4026)] = 158165, - [SMALL_STATE(4027)] = 158221, - [SMALL_STATE(4028)] = 158281, - [SMALL_STATE(4029)] = 158343, - [SMALL_STATE(4030)] = 158391, - [SMALL_STATE(4031)] = 158437, - [SMALL_STATE(4032)] = 158491, - [SMALL_STATE(4033)] = 158537, - [SMALL_STATE(4034)] = 158581, - [SMALL_STATE(4035)] = 158637, - [SMALL_STATE(4036)] = 158681, - [SMALL_STATE(4037)] = 158729, - [SMALL_STATE(4038)] = 158771, - [SMALL_STATE(4039)] = 158815, - [SMALL_STATE(4040)] = 158859, - [SMALL_STATE(4041)] = 158903, - [SMALL_STATE(4042)] = 158943, - [SMALL_STATE(4043)] = 158995, - [SMALL_STATE(4044)] = 159053, - [SMALL_STATE(4045)] = 159113, - [SMALL_STATE(4046)] = 159163, - [SMALL_STATE(4047)] = 159240, - [SMALL_STATE(4048)] = 159285, - [SMALL_STATE(4049)] = 159346, - [SMALL_STATE(4050)] = 159385, - [SMALL_STATE(4051)] = 159446, - [SMALL_STATE(4052)] = 159485, - [SMALL_STATE(4053)] = 159524, - [SMALL_STATE(4054)] = 159601, - [SMALL_STATE(4055)] = 159678, - [SMALL_STATE(4056)] = 159739, - [SMALL_STATE(4057)] = 159800, - [SMALL_STATE(4058)] = 159877, - [SMALL_STATE(4059)] = 159916, - [SMALL_STATE(4060)] = 159993, - [SMALL_STATE(4061)] = 160070, - [SMALL_STATE(4062)] = 160147, - [SMALL_STATE(4063)] = 160186, - [SMALL_STATE(4064)] = 160263, - [SMALL_STATE(4065)] = 160340, - [SMALL_STATE(4066)] = 160401, - [SMALL_STATE(4067)] = 160462, - [SMALL_STATE(4068)] = 160523, - [SMALL_STATE(4069)] = 160600, - [SMALL_STATE(4070)] = 160661, - [SMALL_STATE(4071)] = 160700, - [SMALL_STATE(4072)] = 160777, - [SMALL_STATE(4073)] = 160854, - [SMALL_STATE(4074)] = 160915, - [SMALL_STATE(4075)] = 160959, - [SMALL_STATE(4076)] = 161013, - [SMALL_STATE(4077)] = 161066, - [SMALL_STATE(4078)] = 161117, - [SMALL_STATE(4079)] = 161168, - [SMALL_STATE(4080)] = 161218, - [SMALL_STATE(4081)] = 161258, - [SMALL_STATE(4082)] = 161308, - [SMALL_STATE(4083)] = 161358, - [SMALL_STATE(4084)] = 161414, - [SMALL_STATE(4085)] = 161454, - [SMALL_STATE(4086)] = 161497, - [SMALL_STATE(4087)] = 161540, - [SMALL_STATE(4088)] = 161593, - [SMALL_STATE(4089)] = 161632, - [SMALL_STATE(4090)] = 161679, - [SMALL_STATE(4091)] = 161722, - [SMALL_STATE(4092)] = 161765, - [SMALL_STATE(4093)] = 161802, - [SMALL_STATE(4094)] = 161857, - [SMALL_STATE(4095)] = 161900, - [SMALL_STATE(4096)] = 161937, - [SMALL_STATE(4097)] = 161980, - [SMALL_STATE(4098)] = 162033, - [SMALL_STATE(4099)] = 162076, - [SMALL_STATE(4100)] = 162115, - [SMALL_STATE(4101)] = 162158, - [SMALL_STATE(4102)] = 162201, - [SMALL_STATE(4103)] = 162254, - [SMALL_STATE(4104)] = 162297, - [SMALL_STATE(4105)] = 162340, - [SMALL_STATE(4106)] = 162387, - [SMALL_STATE(4107)] = 162430, - [SMALL_STATE(4108)] = 162473, - [SMALL_STATE(4109)] = 162520, - [SMALL_STATE(4110)] = 162567, - [SMALL_STATE(4111)] = 162614, - [SMALL_STATE(4112)] = 162657, - [SMALL_STATE(4113)] = 162700, - [SMALL_STATE(4114)] = 162743, - [SMALL_STATE(4115)] = 162786, - [SMALL_STATE(4116)] = 162829, - [SMALL_STATE(4117)] = 162872, - [SMALL_STATE(4118)] = 162915, - [SMALL_STATE(4119)] = 162958, - [SMALL_STATE(4120)] = 163001, - [SMALL_STATE(4121)] = 163039, - [SMALL_STATE(4122)] = 163081, - [SMALL_STATE(4123)] = 163119, - [SMALL_STATE(4124)] = 163153, - [SMALL_STATE(4125)] = 163191, - [SMALL_STATE(4126)] = 163243, - [SMALL_STATE(4127)] = 163279, - [SMALL_STATE(4128)] = 163325, - [SMALL_STATE(4129)] = 163377, - [SMALL_STATE(4130)] = 163411, - [SMALL_STATE(4131)] = 163463, - [SMALL_STATE(4132)] = 163513, - [SMALL_STATE(4133)] = 163549, - [SMALL_STATE(4134)] = 163583, - [SMALL_STATE(4135)] = 163633, - [SMALL_STATE(4136)] = 163683, - [SMALL_STATE(4137)] = 163717, - [SMALL_STATE(4138)] = 163755, - [SMALL_STATE(4139)] = 163805, - [SMALL_STATE(4140)] = 163846, - [SMALL_STATE(4141)] = 163887, - [SMALL_STATE(4142)] = 163928, - [SMALL_STATE(4143)] = 163977, - [SMALL_STATE(4144)] = 164018, - [SMALL_STATE(4145)] = 164059, - [SMALL_STATE(4146)] = 164100, - [SMALL_STATE(4147)] = 164141, - [SMALL_STATE(4148)] = 164182, - [SMALL_STATE(4149)] = 164223, - [SMALL_STATE(4150)] = 164256, - [SMALL_STATE(4151)] = 164297, - [SMALL_STATE(4152)] = 164338, - [SMALL_STATE(4153)] = 164387, - [SMALL_STATE(4154)] = 164428, - [SMALL_STATE(4155)] = 164469, - [SMALL_STATE(4156)] = 164510, - [SMALL_STATE(4157)] = 164551, - [SMALL_STATE(4158)] = 164588, - [SMALL_STATE(4159)] = 164625, - [SMALL_STATE(4160)] = 164666, - [SMALL_STATE(4161)] = 164701, - [SMALL_STATE(4162)] = 164748, - [SMALL_STATE(4163)] = 164789, - [SMALL_STATE(4164)] = 164830, - [SMALL_STATE(4165)] = 164867, - [SMALL_STATE(4166)] = 164908, - [SMALL_STATE(4167)] = 164949, - [SMALL_STATE(4168)] = 164990, - [SMALL_STATE(4169)] = 165027, - [SMALL_STATE(4170)] = 165068, - [SMALL_STATE(4171)] = 165103, - [SMALL_STATE(4172)] = 165144, - [SMALL_STATE(4173)] = 165185, - [SMALL_STATE(4174)] = 165220, - [SMALL_STATE(4175)] = 165269, - [SMALL_STATE(4176)] = 165302, - [SMALL_STATE(4177)] = 165335, - [SMALL_STATE(4178)] = 165368, - [SMALL_STATE(4179)] = 165403, - [SMALL_STATE(4180)] = 165452, - [SMALL_STATE(4181)] = 165493, - [SMALL_STATE(4182)] = 165531, - [SMALL_STATE(4183)] = 165565, - [SMALL_STATE(4184)] = 165597, - [SMALL_STATE(4185)] = 165649, - [SMALL_STATE(4186)] = 165687, - [SMALL_STATE(4187)] = 165725, - [SMALL_STATE(4188)] = 165757, - [SMALL_STATE(4189)] = 165791, - [SMALL_STATE(4190)] = 165827, - [SMALL_STATE(4191)] = 165861, - [SMALL_STATE(4192)] = 165897, - [SMALL_STATE(4193)] = 165929, - [SMALL_STATE(4194)] = 165963, - [SMALL_STATE(4195)] = 165997, - [SMALL_STATE(4196)] = 166043, - [SMALL_STATE(4197)] = 166075, - [SMALL_STATE(4198)] = 166107, - [SMALL_STATE(4199)] = 166139, - [SMALL_STATE(4200)] = 166171, - [SMALL_STATE(4201)] = 166203, - [SMALL_STATE(4202)] = 166235, - [SMALL_STATE(4203)] = 166271, - [SMALL_STATE(4204)] = 166311, - [SMALL_STATE(4205)] = 166343, - [SMALL_STATE(4206)] = 166375, - [SMALL_STATE(4207)] = 166415, - [SMALL_STATE(4208)] = 166446, - [SMALL_STATE(4209)] = 166479, - [SMALL_STATE(4210)] = 166510, - [SMALL_STATE(4211)] = 166541, - [SMALL_STATE(4212)] = 166572, - [SMALL_STATE(4213)] = 166603, - [SMALL_STATE(4214)] = 166634, - [SMALL_STATE(4215)] = 166665, - [SMALL_STATE(4216)] = 166696, - [SMALL_STATE(4217)] = 166729, - [SMALL_STATE(4218)] = 166760, - [SMALL_STATE(4219)] = 166791, - [SMALL_STATE(4220)] = 166828, - [SMALL_STATE(4221)] = 166859, - [SMALL_STATE(4222)] = 166910, - [SMALL_STATE(4223)] = 166941, - [SMALL_STATE(4224)] = 166972, - [SMALL_STATE(4225)] = 167003, - [SMALL_STATE(4226)] = 167044, - [SMALL_STATE(4227)] = 167083, - [SMALL_STATE(4228)] = 167116, - [SMALL_STATE(4229)] = 167147, - [SMALL_STATE(4230)] = 167178, - [SMALL_STATE(4231)] = 167209, - [SMALL_STATE(4232)] = 167240, - [SMALL_STATE(4233)] = 167277, - [SMALL_STATE(4234)] = 167326, - [SMALL_STATE(4235)] = 167361, - [SMALL_STATE(4236)] = 167392, - [SMALL_STATE(4237)] = 167427, - [SMALL_STATE(4238)] = 167466, - [SMALL_STATE(4239)] = 167499, - [SMALL_STATE(4240)] = 167532, - [SMALL_STATE(4241)] = 167581, - [SMALL_STATE(4242)] = 167616, - [SMALL_STATE(4243)] = 167647, - [SMALL_STATE(4244)] = 167678, - [SMALL_STATE(4245)] = 167709, - [SMALL_STATE(4246)] = 167740, - [SMALL_STATE(4247)] = 167771, - [SMALL_STATE(4248)] = 167806, - [SMALL_STATE(4249)] = 167841, - [SMALL_STATE(4250)] = 167878, - [SMALL_STATE(4251)] = 167909, - [SMALL_STATE(4252)] = 167940, - [SMALL_STATE(4253)] = 167971, - [SMALL_STATE(4254)] = 168020, - [SMALL_STATE(4255)] = 168051, - [SMALL_STATE(4256)] = 168086, - [SMALL_STATE(4257)] = 168121, - [SMALL_STATE(4258)] = 168152, - [SMALL_STATE(4259)] = 168183, - [SMALL_STATE(4260)] = 168214, - [SMALL_STATE(4261)] = 168245, - [SMALL_STATE(4262)] = 168276, - [SMALL_STATE(4263)] = 168307, - [SMALL_STATE(4264)] = 168338, - [SMALL_STATE(4265)] = 168369, - [SMALL_STATE(4266)] = 168400, - [SMALL_STATE(4267)] = 168431, - [SMALL_STATE(4268)] = 168462, - [SMALL_STATE(4269)] = 168493, - [SMALL_STATE(4270)] = 168524, - [SMALL_STATE(4271)] = 168555, - [SMALL_STATE(4272)] = 168586, - [SMALL_STATE(4273)] = 168617, - [SMALL_STATE(4274)] = 168648, - [SMALL_STATE(4275)] = 168680, - [SMALL_STATE(4276)] = 168714, - [SMALL_STATE(4277)] = 168760, - [SMALL_STATE(4278)] = 168790, - [SMALL_STATE(4279)] = 168826, - [SMALL_STATE(4280)] = 168860, - [SMALL_STATE(4281)] = 168906, - [SMALL_STATE(4282)] = 168954, - [SMALL_STATE(4283)] = 168988, - [SMALL_STATE(4284)] = 169018, - [SMALL_STATE(4285)] = 169052, - [SMALL_STATE(4286)] = 169082, - [SMALL_STATE(4287)] = 169114, - [SMALL_STATE(4288)] = 169146, - [SMALL_STATE(4289)] = 169178, - [SMALL_STATE(4290)] = 169208, - [SMALL_STATE(4291)] = 169240, - [SMALL_STATE(4292)] = 169272, - [SMALL_STATE(4293)] = 169302, - [SMALL_STATE(4294)] = 169334, - [SMALL_STATE(4295)] = 169364, - [SMALL_STATE(4296)] = 169394, - [SMALL_STATE(4297)] = 169426, - [SMALL_STATE(4298)] = 169470, - [SMALL_STATE(4299)] = 169504, - [SMALL_STATE(4300)] = 169550, - [SMALL_STATE(4301)] = 169582, - [SMALL_STATE(4302)] = 169622, - [SMALL_STATE(4303)] = 169652, - [SMALL_STATE(4304)] = 169684, - [SMALL_STATE(4305)] = 169716, - [SMALL_STATE(4306)] = 169746, - [SMALL_STATE(4307)] = 169794, - [SMALL_STATE(4308)] = 169832, - [SMALL_STATE(4309)] = 169870, - [SMALL_STATE(4310)] = 169902, - [SMALL_STATE(4311)] = 169934, - [SMALL_STATE(4312)] = 169964, - [SMALL_STATE(4313)] = 169994, - [SMALL_STATE(4314)] = 170024, - [SMALL_STATE(4315)] = 170070, - [SMALL_STATE(4316)] = 170100, - [SMALL_STATE(4317)] = 170129, - [SMALL_STATE(4318)] = 170158, - [SMALL_STATE(4319)] = 170187, - [SMALL_STATE(4320)] = 170218, - [SMALL_STATE(4321)] = 170247, - [SMALL_STATE(4322)] = 170278, - [SMALL_STATE(4323)] = 170307, - [SMALL_STATE(4324)] = 170344, - [SMALL_STATE(4325)] = 170375, - [SMALL_STATE(4326)] = 170406, - [SMALL_STATE(4327)] = 170437, - [SMALL_STATE(4328)] = 170466, - [SMALL_STATE(4329)] = 170495, - [SMALL_STATE(4330)] = 170532, - [SMALL_STATE(4331)] = 170561, - [SMALL_STATE(4332)] = 170590, - [SMALL_STATE(4333)] = 170619, - [SMALL_STATE(4334)] = 170656, - [SMALL_STATE(4335)] = 170685, - [SMALL_STATE(4336)] = 170722, - [SMALL_STATE(4337)] = 170753, - [SMALL_STATE(4338)] = 170786, - [SMALL_STATE(4339)] = 170815, - [SMALL_STATE(4340)] = 170844, - [SMALL_STATE(4341)] = 170873, - [SMALL_STATE(4342)] = 170910, - [SMALL_STATE(4343)] = 170939, - [SMALL_STATE(4344)] = 170968, - [SMALL_STATE(4345)] = 170997, - [SMALL_STATE(4346)] = 171026, - [SMALL_STATE(4347)] = 171063, - [SMALL_STATE(4348)] = 171094, - [SMALL_STATE(4349)] = 171123, - [SMALL_STATE(4350)] = 171152, - [SMALL_STATE(4351)] = 171189, - [SMALL_STATE(4352)] = 171218, - [SMALL_STATE(4353)] = 171247, - [SMALL_STATE(4354)] = 171276, - [SMALL_STATE(4355)] = 171313, - [SMALL_STATE(4356)] = 171350, - [SMALL_STATE(4357)] = 171379, - [SMALL_STATE(4358)] = 171408, - [SMALL_STATE(4359)] = 171437, - [SMALL_STATE(4360)] = 171466, - [SMALL_STATE(4361)] = 171495, - [SMALL_STATE(4362)] = 171526, - [SMALL_STATE(4363)] = 171555, - [SMALL_STATE(4364)] = 171584, - [SMALL_STATE(4365)] = 171615, - [SMALL_STATE(4366)] = 171646, - [SMALL_STATE(4367)] = 171675, - [SMALL_STATE(4368)] = 171704, - [SMALL_STATE(4369)] = 171737, - [SMALL_STATE(4370)] = 171774, - [SMALL_STATE(4371)] = 171811, - [SMALL_STATE(4372)] = 171840, - [SMALL_STATE(4373)] = 171877, - [SMALL_STATE(4374)] = 171910, - [SMALL_STATE(4375)] = 171943, - [SMALL_STATE(4376)] = 171980, - [SMALL_STATE(4377)] = 172013, - [SMALL_STATE(4378)] = 172050, - [SMALL_STATE(4379)] = 172079, - [SMALL_STATE(4380)] = 172110, - [SMALL_STATE(4381)] = 172147, - [SMALL_STATE(4382)] = 172176, - [SMALL_STATE(4383)] = 172213, - [SMALL_STATE(4384)] = 172250, - [SMALL_STATE(4385)] = 172281, - [SMALL_STATE(4386)] = 172324, - [SMALL_STATE(4387)] = 172355, - [SMALL_STATE(4388)] = 172384, - [SMALL_STATE(4389)] = 172421, - [SMALL_STATE(4390)] = 172450, - [SMALL_STATE(4391)] = 172483, - [SMALL_STATE(4392)] = 172520, - [SMALL_STATE(4393)] = 172549, - [SMALL_STATE(4394)] = 172580, - [SMALL_STATE(4395)] = 172611, - [SMALL_STATE(4396)] = 172648, - [SMALL_STATE(4397)] = 172677, - [SMALL_STATE(4398)] = 172706, - [SMALL_STATE(4399)] = 172737, - [SMALL_STATE(4400)] = 172768, - [SMALL_STATE(4401)] = 172797, - [SMALL_STATE(4402)] = 172834, - [SMALL_STATE(4403)] = 172863, - [SMALL_STATE(4404)] = 172900, - [SMALL_STATE(4405)] = 172929, - [SMALL_STATE(4406)] = 172960, - [SMALL_STATE(4407)] = 172989, - [SMALL_STATE(4408)] = 173018, - [SMALL_STATE(4409)] = 173047, - [SMALL_STATE(4410)] = 173076, - [SMALL_STATE(4411)] = 173113, - [SMALL_STATE(4412)] = 173142, - [SMALL_STATE(4413)] = 173179, - [SMALL_STATE(4414)] = 173208, - [SMALL_STATE(4415)] = 173245, - [SMALL_STATE(4416)] = 173274, - [SMALL_STATE(4417)] = 173307, - [SMALL_STATE(4418)] = 173336, - [SMALL_STATE(4419)] = 173367, - [SMALL_STATE(4420)] = 173398, - [SMALL_STATE(4421)] = 173429, - [SMALL_STATE(4422)] = 173460, - [SMALL_STATE(4423)] = 173489, - [SMALL_STATE(4424)] = 173518, - [SMALL_STATE(4425)] = 173547, - [SMALL_STATE(4426)] = 173584, - [SMALL_STATE(4427)] = 173621, - [SMALL_STATE(4428)] = 173652, - [SMALL_STATE(4429)] = 173683, - [SMALL_STATE(4430)] = 173716, - [SMALL_STATE(4431)] = 173753, - [SMALL_STATE(4432)] = 173784, - [SMALL_STATE(4433)] = 173821, - [SMALL_STATE(4434)] = 173858, - [SMALL_STATE(4435)] = 173895, - [SMALL_STATE(4436)] = 173924, - [SMALL_STATE(4437)] = 173955, - [SMALL_STATE(4438)] = 173992, - [SMALL_STATE(4439)] = 174029, - [SMALL_STATE(4440)] = 174058, - [SMALL_STATE(4441)] = 174094, - [SMALL_STATE(4442)] = 174126, - [SMALL_STATE(4443)] = 174154, - [SMALL_STATE(4444)] = 174186, - [SMALL_STATE(4445)] = 174214, - [SMALL_STATE(4446)] = 174250, - [SMALL_STATE(4447)] = 174282, - [SMALL_STATE(4448)] = 174310, - [SMALL_STATE(4449)] = 174338, - [SMALL_STATE(4450)] = 174368, - [SMALL_STATE(4451)] = 174400, - [SMALL_STATE(4452)] = 174432, - [SMALL_STATE(4453)] = 174460, - [SMALL_STATE(4454)] = 174496, - [SMALL_STATE(4455)] = 174526, - [SMALL_STATE(4456)] = 174572, - [SMALL_STATE(4457)] = 174602, - [SMALL_STATE(4458)] = 174654, - [SMALL_STATE(4459)] = 174690, - [SMALL_STATE(4460)] = 174722, - [SMALL_STATE(4461)] = 174750, - [SMALL_STATE(4462)] = 174786, - [SMALL_STATE(4463)] = 174822, - [SMALL_STATE(4464)] = 174854, - [SMALL_STATE(4465)] = 174890, - [SMALL_STATE(4466)] = 174922, - [SMALL_STATE(4467)] = 174958, - [SMALL_STATE(4468)] = 174986, - [SMALL_STATE(4469)] = 175022, - [SMALL_STATE(4470)] = 175058, - [SMALL_STATE(4471)] = 175088, - [SMALL_STATE(4472)] = 175124, - [SMALL_STATE(4473)] = 175154, - [SMALL_STATE(4474)] = 175182, - [SMALL_STATE(4475)] = 175210, - [SMALL_STATE(4476)] = 175238, - [SMALL_STATE(4477)] = 175274, - [SMALL_STATE(4478)] = 175306, - [SMALL_STATE(4479)] = 175342, - [SMALL_STATE(4480)] = 175370, - [SMALL_STATE(4481)] = 175406, - [SMALL_STATE(4482)] = 175444, - [SMALL_STATE(4483)] = 175474, - [SMALL_STATE(4484)] = 175504, - [SMALL_STATE(4485)] = 175540, - [SMALL_STATE(4486)] = 175572, - [SMALL_STATE(4487)] = 175600, - [SMALL_STATE(4488)] = 175630, - [SMALL_STATE(4489)] = 175666, - [SMALL_STATE(4490)] = 175702, - [SMALL_STATE(4491)] = 175732, - [SMALL_STATE(4492)] = 175768, - [SMALL_STATE(4493)] = 175804, - [SMALL_STATE(4494)] = 175840, - [SMALL_STATE(4495)] = 175870, - [SMALL_STATE(4496)] = 175906, - [SMALL_STATE(4497)] = 175942, - [SMALL_STATE(4498)] = 175976, - [SMALL_STATE(4499)] = 176008, - [SMALL_STATE(4500)] = 176040, - [SMALL_STATE(4501)] = 176076, - [SMALL_STATE(4502)] = 176106, - [SMALL_STATE(4503)] = 176142, - [SMALL_STATE(4504)] = 176178, - [SMALL_STATE(4505)] = 176224, - [SMALL_STATE(4506)] = 176254, - [SMALL_STATE(4507)] = 176290, - [SMALL_STATE(4508)] = 176318, - [SMALL_STATE(4509)] = 176354, - [SMALL_STATE(4510)] = 176388, - [SMALL_STATE(4511)] = 176420, - [SMALL_STATE(4512)] = 176456, - [SMALL_STATE(4513)] = 176484, - [SMALL_STATE(4514)] = 176512, - [SMALL_STATE(4515)] = 176550, - [SMALL_STATE(4516)] = 176578, - [SMALL_STATE(4517)] = 176608, - [SMALL_STATE(4518)] = 176636, - [SMALL_STATE(4519)] = 176666, - [SMALL_STATE(4520)] = 176696, - [SMALL_STATE(4521)] = 176728, - [SMALL_STATE(4522)] = 176760, - [SMALL_STATE(4523)] = 176796, - [SMALL_STATE(4524)] = 176828, - [SMALL_STATE(4525)] = 176858, - [SMALL_STATE(4526)] = 176885, - [SMALL_STATE(4527)] = 176914, - [SMALL_STATE(4528)] = 176939, - [SMALL_STATE(4529)] = 176968, - [SMALL_STATE(4530)] = 176999, - [SMALL_STATE(4531)] = 177028, - [SMALL_STATE(4532)] = 177055, - [SMALL_STATE(4533)] = 177082, - [SMALL_STATE(4534)] = 177113, - [SMALL_STATE(4535)] = 177144, - [SMALL_STATE(4536)] = 177171, - [SMALL_STATE(4537)] = 177202, - [SMALL_STATE(4538)] = 177229, - [SMALL_STATE(4539)] = 177256, - [SMALL_STATE(4540)] = 177283, - [SMALL_STATE(4541)] = 177316, - [SMALL_STATE(4542)] = 177345, - [SMALL_STATE(4543)] = 177374, - [SMALL_STATE(4544)] = 177403, - [SMALL_STATE(4545)] = 177434, - [SMALL_STATE(4546)] = 177463, - [SMALL_STATE(4547)] = 177494, - [SMALL_STATE(4548)] = 177525, - [SMALL_STATE(4549)] = 177556, - [SMALL_STATE(4550)] = 177583, - [SMALL_STATE(4551)] = 177614, - [SMALL_STATE(4552)] = 177645, - [SMALL_STATE(4553)] = 177672, - [SMALL_STATE(4554)] = 177703, - [SMALL_STATE(4555)] = 177730, - [SMALL_STATE(4556)] = 177761, - [SMALL_STATE(4557)] = 177788, - [SMALL_STATE(4558)] = 177819, - [SMALL_STATE(4559)] = 177850, - [SMALL_STATE(4560)] = 177877, - [SMALL_STATE(4561)] = 177912, - [SMALL_STATE(4562)] = 177943, - [SMALL_STATE(4563)] = 177974, - [SMALL_STATE(4564)] = 178001, - [SMALL_STATE(4565)] = 178028, - [SMALL_STATE(4566)] = 178059, - [SMALL_STATE(4567)] = 178088, - [SMALL_STATE(4568)] = 178115, - [SMALL_STATE(4569)] = 178148, - [SMALL_STATE(4570)] = 178181, - [SMALL_STATE(4571)] = 178210, - [SMALL_STATE(4572)] = 178237, - [SMALL_STATE(4573)] = 178266, - [SMALL_STATE(4574)] = 178295, - [SMALL_STATE(4575)] = 178322, - [SMALL_STATE(4576)] = 178357, - [SMALL_STATE(4577)] = 178388, - [SMALL_STATE(4578)] = 178413, - [SMALL_STATE(4579)] = 178444, - [SMALL_STATE(4580)] = 178475, - [SMALL_STATE(4581)] = 178510, - [SMALL_STATE(4582)] = 178545, - [SMALL_STATE(4583)] = 178572, - [SMALL_STATE(4584)] = 178599, - [SMALL_STATE(4585)] = 178632, - [SMALL_STATE(4586)] = 178659, - [SMALL_STATE(4587)] = 178692, - [SMALL_STATE(4588)] = 178719, - [SMALL_STATE(4589)] = 178746, - [SMALL_STATE(4590)] = 178773, - [SMALL_STATE(4591)] = 178804, - [SMALL_STATE(4592)] = 178831, - [SMALL_STATE(4593)] = 178856, - [SMALL_STATE(4594)] = 178883, - [SMALL_STATE(4595)] = 178910, - [SMALL_STATE(4596)] = 178939, - [SMALL_STATE(4597)] = 178968, - [SMALL_STATE(4598)] = 178995, - [SMALL_STATE(4599)] = 179022, - [SMALL_STATE(4600)] = 179053, - [SMALL_STATE(4601)] = 179088, - [SMALL_STATE(4602)] = 179115, - [SMALL_STATE(4603)] = 179146, - [SMALL_STATE(4604)] = 179171, - [SMALL_STATE(4605)] = 179198, - [SMALL_STATE(4606)] = 179233, - [SMALL_STATE(4607)] = 179260, - [SMALL_STATE(4608)] = 179293, - [SMALL_STATE(4609)] = 179324, - [SMALL_STATE(4610)] = 179355, - [SMALL_STATE(4611)] = 179384, - [SMALL_STATE(4612)] = 179409, - [SMALL_STATE(4613)] = 179440, - [SMALL_STATE(4614)] = 179473, - [SMALL_STATE(4615)] = 179504, - [SMALL_STATE(4616)] = 179537, - [SMALL_STATE(4617)] = 179564, - [SMALL_STATE(4618)] = 179595, - [SMALL_STATE(4619)] = 179622, - [SMALL_STATE(4620)] = 179655, - [SMALL_STATE(4621)] = 179688, - [SMALL_STATE(4622)] = 179717, - [SMALL_STATE(4623)] = 179748, - [SMALL_STATE(4624)] = 179779, - [SMALL_STATE(4625)] = 179810, - [SMALL_STATE(4626)] = 179835, - [SMALL_STATE(4627)] = 179862, - [SMALL_STATE(4628)] = 179895, - [SMALL_STATE(4629)] = 179924, - [SMALL_STATE(4630)] = 179951, - [SMALL_STATE(4631)] = 179982, - [SMALL_STATE(4632)] = 180013, - [SMALL_STATE(4633)] = 180046, - [SMALL_STATE(4634)] = 180079, - [SMALL_STATE(4635)] = 180112, - [SMALL_STATE(4636)] = 180145, - [SMALL_STATE(4637)] = 180178, - [SMALL_STATE(4638)] = 180205, - [SMALL_STATE(4639)] = 180232, - [SMALL_STATE(4640)] = 180263, - [SMALL_STATE(4641)] = 180294, - [SMALL_STATE(4642)] = 180325, - [SMALL_STATE(4643)] = 180350, - [SMALL_STATE(4644)] = 180385, - [SMALL_STATE(4645)] = 180412, - [SMALL_STATE(4646)] = 180441, - [SMALL_STATE(4647)] = 180476, - [SMALL_STATE(4648)] = 180503, - [SMALL_STATE(4649)] = 180534, - [SMALL_STATE(4650)] = 180565, - [SMALL_STATE(4651)] = 180592, - [SMALL_STATE(4652)] = 180623, - [SMALL_STATE(4653)] = 180654, - [SMALL_STATE(4654)] = 180685, - [SMALL_STATE(4655)] = 180718, - [SMALL_STATE(4656)] = 180743, - [SMALL_STATE(4657)] = 180774, - [SMALL_STATE(4658)] = 180805, - [SMALL_STATE(4659)] = 180832, - [SMALL_STATE(4660)] = 180865, - [SMALL_STATE(4661)] = 180892, - [SMALL_STATE(4662)] = 180917, - [SMALL_STATE(4663)] = 180944, - [SMALL_STATE(4664)] = 180973, - [SMALL_STATE(4665)] = 181002, - [SMALL_STATE(4666)] = 181033, - [SMALL_STATE(4667)] = 181068, - [SMALL_STATE(4668)] = 181099, - [SMALL_STATE(4669)] = 181126, - [SMALL_STATE(4670)] = 181157, - [SMALL_STATE(4671)] = 181182, - [SMALL_STATE(4672)] = 181209, - [SMALL_STATE(4673)] = 181238, - [SMALL_STATE(4674)] = 181265, - [SMALL_STATE(4675)] = 181296, - [SMALL_STATE(4676)] = 181323, - [SMALL_STATE(4677)] = 181352, - [SMALL_STATE(4678)] = 181383, - [SMALL_STATE(4679)] = 181410, - [SMALL_STATE(4680)] = 181441, - [SMALL_STATE(4681)] = 181466, - [SMALL_STATE(4682)] = 181499, - [SMALL_STATE(4683)] = 181528, - [SMALL_STATE(4684)] = 181553, - [SMALL_STATE(4685)] = 181582, - [SMALL_STATE(4686)] = 181609, - [SMALL_STATE(4687)] = 181634, - [SMALL_STATE(4688)] = 181661, - [SMALL_STATE(4689)] = 181690, - [SMALL_STATE(4690)] = 181719, - [SMALL_STATE(4691)] = 181746, - [SMALL_STATE(4692)] = 181777, - [SMALL_STATE(4693)] = 181804, - [SMALL_STATE(4694)] = 181835, - [SMALL_STATE(4695)] = 181868, - [SMALL_STATE(4696)] = 181895, - [SMALL_STATE(4697)] = 181924, - [SMALL_STATE(4698)] = 181951, - [SMALL_STATE(4699)] = 181982, - [SMALL_STATE(4700)] = 182013, - [SMALL_STATE(4701)] = 182044, - [SMALL_STATE(4702)] = 182075, - [SMALL_STATE(4703)] = 182104, - [SMALL_STATE(4704)] = 182135, - [SMALL_STATE(4705)] = 182164, - [SMALL_STATE(4706)] = 182191, - [SMALL_STATE(4707)] = 182222, - [SMALL_STATE(4708)] = 182255, - [SMALL_STATE(4709)] = 182280, - [SMALL_STATE(4710)] = 182311, - [SMALL_STATE(4711)] = 182336, - [SMALL_STATE(4712)] = 182367, - [SMALL_STATE(4713)] = 182394, - [SMALL_STATE(4714)] = 182428, - [SMALL_STATE(4715)] = 182460, - [SMALL_STATE(4716)] = 182494, - [SMALL_STATE(4717)] = 182528, - [SMALL_STATE(4718)] = 182562, - [SMALL_STATE(4719)] = 182588, - [SMALL_STATE(4720)] = 182612, - [SMALL_STATE(4721)] = 182664, - [SMALL_STATE(4722)] = 182716, - [SMALL_STATE(4723)] = 182740, - [SMALL_STATE(4724)] = 182774, - [SMALL_STATE(4725)] = 182798, - [SMALL_STATE(4726)] = 182822, - [SMALL_STATE(4727)] = 182846, - [SMALL_STATE(4728)] = 182870, - [SMALL_STATE(4729)] = 182894, - [SMALL_STATE(4730)] = 182920, - [SMALL_STATE(4731)] = 182944, - [SMALL_STATE(4732)] = 182970, - [SMALL_STATE(4733)] = 182998, - [SMALL_STATE(4734)] = 183022, - [SMALL_STATE(4735)] = 183046, - [SMALL_STATE(4736)] = 183074, - [SMALL_STATE(4737)] = 183108, - [SMALL_STATE(4738)] = 183132, - [SMALL_STATE(4739)] = 183166, - [SMALL_STATE(4740)] = 183190, - [SMALL_STATE(4741)] = 183216, - [SMALL_STATE(4742)] = 183242, - [SMALL_STATE(4743)] = 183270, - [SMALL_STATE(4744)] = 183294, - [SMALL_STATE(4745)] = 183328, - [SMALL_STATE(4746)] = 183372, - [SMALL_STATE(4747)] = 183424, - [SMALL_STATE(4748)] = 183476, - [SMALL_STATE(4749)] = 183510, - [SMALL_STATE(4750)] = 183540, - [SMALL_STATE(4751)] = 183568, - [SMALL_STATE(4752)] = 183598, - [SMALL_STATE(4753)] = 183628, - [SMALL_STATE(4754)] = 183656, - [SMALL_STATE(4755)] = 183686, - [SMALL_STATE(4756)] = 183712, - [SMALL_STATE(4757)] = 183740, - [SMALL_STATE(4758)] = 183770, - [SMALL_STATE(4759)] = 183800, - [SMALL_STATE(4760)] = 183826, - [SMALL_STATE(4761)] = 183856, - [SMALL_STATE(4762)] = 183882, - [SMALL_STATE(4763)] = 183906, - [SMALL_STATE(4764)] = 183936, - [SMALL_STATE(4765)] = 183966, - [SMALL_STATE(4766)] = 183996, - [SMALL_STATE(4767)] = 184040, - [SMALL_STATE(4768)] = 184066, - [SMALL_STATE(4769)] = 184110, - [SMALL_STATE(4770)] = 184162, - [SMALL_STATE(4771)] = 184192, - [SMALL_STATE(4772)] = 184216, - [SMALL_STATE(4773)] = 184240, - [SMALL_STATE(4774)] = 184270, - [SMALL_STATE(4775)] = 184300, - [SMALL_STATE(4776)] = 184334, - [SMALL_STATE(4777)] = 184358, - [SMALL_STATE(4778)] = 184384, - [SMALL_STATE(4779)] = 184414, - [SMALL_STATE(4780)] = 184440, - [SMALL_STATE(4781)] = 184492, - [SMALL_STATE(4782)] = 184526, - [SMALL_STATE(4783)] = 184566, - [SMALL_STATE(4784)] = 184594, - [SMALL_STATE(4785)] = 184622, - [SMALL_STATE(4786)] = 184656, - [SMALL_STATE(4787)] = 184708, - [SMALL_STATE(4788)] = 184748, - [SMALL_STATE(4789)] = 184776, - [SMALL_STATE(4790)] = 184828, - [SMALL_STATE(4791)] = 184854, - [SMALL_STATE(4792)] = 184888, - [SMALL_STATE(4793)] = 184918, - [SMALL_STATE(4794)] = 184952, - [SMALL_STATE(4795)] = 184982, - [SMALL_STATE(4796)] = 185016, - [SMALL_STATE(4797)] = 185060, - [SMALL_STATE(4798)] = 185084, - [SMALL_STATE(4799)] = 185110, - [SMALL_STATE(4800)] = 185136, - [SMALL_STATE(4801)] = 185176, - [SMALL_STATE(4802)] = 185206, - [SMALL_STATE(4803)] = 185230, - [SMALL_STATE(4804)] = 185260, - [SMALL_STATE(4805)] = 185288, - [SMALL_STATE(4806)] = 185312, - [SMALL_STATE(4807)] = 185338, - [SMALL_STATE(4808)] = 185364, - [SMALL_STATE(4809)] = 185388, - [SMALL_STATE(4810)] = 185412, - [SMALL_STATE(4811)] = 185442, - [SMALL_STATE(4812)] = 185472, - [SMALL_STATE(4813)] = 185506, - [SMALL_STATE(4814)] = 185532, - [SMALL_STATE(4815)] = 185556, - [SMALL_STATE(4816)] = 185582, - [SMALL_STATE(4817)] = 185606, - [SMALL_STATE(4818)] = 185636, - [SMALL_STATE(4819)] = 185670, - [SMALL_STATE(4820)] = 185700, - [SMALL_STATE(4821)] = 185726, - [SMALL_STATE(4822)] = 185758, - [SMALL_STATE(4823)] = 185786, - [SMALL_STATE(4824)] = 185812, - [SMALL_STATE(4825)] = 185836, - [SMALL_STATE(4826)] = 185864, - [SMALL_STATE(4827)] = 185890, - [SMALL_STATE(4828)] = 185924, - [SMALL_STATE(4829)] = 185950, - [SMALL_STATE(4830)] = 185978, - [SMALL_STATE(4831)] = 186006, - [SMALL_STATE(4832)] = 186032, - [SMALL_STATE(4833)] = 186058, - [SMALL_STATE(4834)] = 186092, - [SMALL_STATE(4835)] = 186122, - [SMALL_STATE(4836)] = 186156, - [SMALL_STATE(4837)] = 186190, - [SMALL_STATE(4838)] = 186242, - [SMALL_STATE(4839)] = 186294, - [SMALL_STATE(4840)] = 186318, - [SMALL_STATE(4841)] = 186352, - [SMALL_STATE(4842)] = 186382, - [SMALL_STATE(4843)] = 186410, - [SMALL_STATE(4844)] = 186438, - [SMALL_STATE(4845)] = 186472, - [SMALL_STATE(4846)] = 186496, - [SMALL_STATE(4847)] = 186522, - [SMALL_STATE(4848)] = 186548, - [SMALL_STATE(4849)] = 186574, - [SMALL_STATE(4850)] = 186598, - [SMALL_STATE(4851)] = 186622, - [SMALL_STATE(4852)] = 186652, - [SMALL_STATE(4853)] = 186676, - [SMALL_STATE(4854)] = 186702, - [SMALL_STATE(4855)] = 186726, - [SMALL_STATE(4856)] = 186750, - [SMALL_STATE(4857)] = 186784, - [SMALL_STATE(4858)] = 186814, - [SMALL_STATE(4859)] = 186848, - [SMALL_STATE(4860)] = 186888, - [SMALL_STATE(4861)] = 186913, - [SMALL_STATE(4862)] = 186944, - [SMALL_STATE(4863)] = 186969, - [SMALL_STATE(4864)] = 186994, - [SMALL_STATE(4865)] = 187019, - [SMALL_STATE(4866)] = 187064, - [SMALL_STATE(4867)] = 187089, - [SMALL_STATE(4868)] = 187118, - [SMALL_STATE(4869)] = 187143, - [SMALL_STATE(4870)] = 187172, - [SMALL_STATE(4871)] = 187199, - [SMALL_STATE(4872)] = 187224, - [SMALL_STATE(4873)] = 187249, - [SMALL_STATE(4874)] = 187274, - [SMALL_STATE(4875)] = 187301, - [SMALL_STATE(4876)] = 187326, - [SMALL_STATE(4877)] = 187353, - [SMALL_STATE(4878)] = 187378, - [SMALL_STATE(4879)] = 187403, - [SMALL_STATE(4880)] = 187428, - [SMALL_STATE(4881)] = 187453, - [SMALL_STATE(4882)] = 187480, - [SMALL_STATE(4883)] = 187509, - [SMALL_STATE(4884)] = 187538, - [SMALL_STATE(4885)] = 187567, - [SMALL_STATE(4886)] = 187592, - [SMALL_STATE(4887)] = 187621, - [SMALL_STATE(4888)] = 187646, - [SMALL_STATE(4889)] = 187671, - [SMALL_STATE(4890)] = 187696, - [SMALL_STATE(4891)] = 187721, - [SMALL_STATE(4892)] = 187746, - [SMALL_STATE(4893)] = 187773, - [SMALL_STATE(4894)] = 187798, - [SMALL_STATE(4895)] = 187823, - [SMALL_STATE(4896)] = 187848, - [SMALL_STATE(4897)] = 187879, - [SMALL_STATE(4898)] = 187904, - [SMALL_STATE(4899)] = 187929, - [SMALL_STATE(4900)] = 187954, - [SMALL_STATE(4901)] = 187981, - [SMALL_STATE(4902)] = 188010, - [SMALL_STATE(4903)] = 188035, - [SMALL_STATE(4904)] = 188060, - [SMALL_STATE(4905)] = 188085, - [SMALL_STATE(4906)] = 188126, - [SMALL_STATE(4907)] = 188151, - [SMALL_STATE(4908)] = 188176, - [SMALL_STATE(4909)] = 188201, - [SMALL_STATE(4910)] = 188226, - [SMALL_STATE(4911)] = 188251, - [SMALL_STATE(4912)] = 188274, - [SMALL_STATE(4913)] = 188299, - [SMALL_STATE(4914)] = 188324, - [SMALL_STATE(4915)] = 188349, - [SMALL_STATE(4916)] = 188374, - [SMALL_STATE(4917)] = 188403, - [SMALL_STATE(4918)] = 188430, - [SMALL_STATE(4919)] = 188457, - [SMALL_STATE(4920)] = 188482, - [SMALL_STATE(4921)] = 188507, - [SMALL_STATE(4922)] = 188532, - [SMALL_STATE(4923)] = 188557, - [SMALL_STATE(4924)] = 188588, - [SMALL_STATE(4925)] = 188617, - [SMALL_STATE(4926)] = 188642, - [SMALL_STATE(4927)] = 188671, - [SMALL_STATE(4928)] = 188696, - [SMALL_STATE(4929)] = 188721, - [SMALL_STATE(4930)] = 188746, - [SMALL_STATE(4931)] = 188775, - [SMALL_STATE(4932)] = 188804, - [SMALL_STATE(4933)] = 188829, - [SMALL_STATE(4934)] = 188854, - [SMALL_STATE(4935)] = 188879, - [SMALL_STATE(4936)] = 188908, - [SMALL_STATE(4937)] = 188933, - [SMALL_STATE(4938)] = 188962, - [SMALL_STATE(4939)] = 188991, - [SMALL_STATE(4940)] = 189020, - [SMALL_STATE(4941)] = 189045, - [SMALL_STATE(4942)] = 189070, - [SMALL_STATE(4943)] = 189097, - [SMALL_STATE(4944)] = 189128, - [SMALL_STATE(4945)] = 189157, - [SMALL_STATE(4946)] = 189182, - [SMALL_STATE(4947)] = 189207, - [SMALL_STATE(4948)] = 189232, - [SMALL_STATE(4949)] = 189261, - [SMALL_STATE(4950)] = 189286, - [SMALL_STATE(4951)] = 189311, - [SMALL_STATE(4952)] = 189336, - [SMALL_STATE(4953)] = 189367, - [SMALL_STATE(4954)] = 189396, - [SMALL_STATE(4955)] = 189421, - [SMALL_STATE(4956)] = 189450, - [SMALL_STATE(4957)] = 189475, - [SMALL_STATE(4958)] = 189500, - [SMALL_STATE(4959)] = 189525, - [SMALL_STATE(4960)] = 189550, - [SMALL_STATE(4961)] = 189579, - [SMALL_STATE(4962)] = 189604, - [SMALL_STATE(4963)] = 189629, - [SMALL_STATE(4964)] = 189654, - [SMALL_STATE(4965)] = 189683, - [SMALL_STATE(4966)] = 189706, - [SMALL_STATE(4967)] = 189735, - [SMALL_STATE(4968)] = 189780, - [SMALL_STATE(4969)] = 189809, - [SMALL_STATE(4970)] = 189834, - [SMALL_STATE(4971)] = 189863, - [SMALL_STATE(4972)] = 189892, - [SMALL_STATE(4973)] = 189917, - [SMALL_STATE(4974)] = 189942, - [SMALL_STATE(4975)] = 189965, - [SMALL_STATE(4976)] = 189994, - [SMALL_STATE(4977)] = 190019, - [SMALL_STATE(4978)] = 190048, - [SMALL_STATE(4979)] = 190077, - [SMALL_STATE(4980)] = 190102, - [SMALL_STATE(4981)] = 190127, - [SMALL_STATE(4982)] = 190152, - [SMALL_STATE(4983)] = 190181, - [SMALL_STATE(4984)] = 190206, - [SMALL_STATE(4985)] = 190231, - [SMALL_STATE(4986)] = 190256, - [SMALL_STATE(4987)] = 190285, - [SMALL_STATE(4988)] = 190310, - [SMALL_STATE(4989)] = 190335, - [SMALL_STATE(4990)] = 190362, - [SMALL_STATE(4991)] = 190387, - [SMALL_STATE(4992)] = 190412, - [SMALL_STATE(4993)] = 190437, - [SMALL_STATE(4994)] = 190462, - [SMALL_STATE(4995)] = 190487, - [SMALL_STATE(4996)] = 190512, - [SMALL_STATE(4997)] = 190537, - [SMALL_STATE(4998)] = 190566, - [SMALL_STATE(4999)] = 190591, - [SMALL_STATE(5000)] = 190616, - [SMALL_STATE(5001)] = 190641, - [SMALL_STATE(5002)] = 190666, - [SMALL_STATE(5003)] = 190691, - [SMALL_STATE(5004)] = 190714, - [SMALL_STATE(5005)] = 190743, - [SMALL_STATE(5006)] = 190766, - [SMALL_STATE(5007)] = 190795, - [SMALL_STATE(5008)] = 190824, - [SMALL_STATE(5009)] = 190853, - [SMALL_STATE(5010)] = 190882, - [SMALL_STATE(5011)] = 190907, - [SMALL_STATE(5012)] = 190932, - [SMALL_STATE(5013)] = 190961, - [SMALL_STATE(5014)] = 190990, - [SMALL_STATE(5015)] = 191015, - [SMALL_STATE(5016)] = 191040, - [SMALL_STATE(5017)] = 191065, - [SMALL_STATE(5018)] = 191090, - [SMALL_STATE(5019)] = 191115, - [SMALL_STATE(5020)] = 191139, - [SMALL_STATE(5021)] = 191183, - [SMALL_STATE(5022)] = 191209, - [SMALL_STATE(5023)] = 191233, - [SMALL_STATE(5024)] = 191257, - [SMALL_STATE(5025)] = 191291, - [SMALL_STATE(5026)] = 191315, - [SMALL_STATE(5027)] = 191339, - [SMALL_STATE(5028)] = 191363, - [SMALL_STATE(5029)] = 191397, - [SMALL_STATE(5030)] = 191421, - [SMALL_STATE(5031)] = 191467, - [SMALL_STATE(5032)] = 191493, - [SMALL_STATE(5033)] = 191517, - [SMALL_STATE(5034)] = 191541, - [SMALL_STATE(5035)] = 191565, - [SMALL_STATE(5036)] = 191589, - [SMALL_STATE(5037)] = 191613, - [SMALL_STATE(5038)] = 191651, - [SMALL_STATE(5039)] = 191689, - [SMALL_STATE(5040)] = 191717, - [SMALL_STATE(5041)] = 191741, - [SMALL_STATE(5042)] = 191765, - [SMALL_STATE(5043)] = 191787, - [SMALL_STATE(5044)] = 191815, - [SMALL_STATE(5045)] = 191839, - [SMALL_STATE(5046)] = 191873, - [SMALL_STATE(5047)] = 191897, - [SMALL_STATE(5048)] = 191931, - [SMALL_STATE(5049)] = 191965, - [SMALL_STATE(5050)] = 191999, - [SMALL_STATE(5051)] = 192023, - [SMALL_STATE(5052)] = 192069, - [SMALL_STATE(5053)] = 192093, - [SMALL_STATE(5054)] = 192117, - [SMALL_STATE(5055)] = 192141, - [SMALL_STATE(5056)] = 192169, - [SMALL_STATE(5057)] = 192191, - [SMALL_STATE(5058)] = 192215, - [SMALL_STATE(5059)] = 192239, - [SMALL_STATE(5060)] = 192267, - [SMALL_STATE(5061)] = 192291, - [SMALL_STATE(5062)] = 192315, - [SMALL_STATE(5063)] = 192339, - [SMALL_STATE(5064)] = 192363, - [SMALL_STATE(5065)] = 192385, - [SMALL_STATE(5066)] = 192407, - [SMALL_STATE(5067)] = 192431, - [SMALL_STATE(5068)] = 192455, - [SMALL_STATE(5069)] = 192501, - [SMALL_STATE(5070)] = 192525, - [SMALL_STATE(5071)] = 192549, - [SMALL_STATE(5072)] = 192573, - [SMALL_STATE(5073)] = 192619, - [SMALL_STATE(5074)] = 192647, - [SMALL_STATE(5075)] = 192671, - [SMALL_STATE(5076)] = 192695, - [SMALL_STATE(5077)] = 192723, - [SMALL_STATE(5078)] = 192751, - [SMALL_STATE(5079)] = 192775, - [SMALL_STATE(5080)] = 192799, - [SMALL_STATE(5081)] = 192823, - [SMALL_STATE(5082)] = 192847, - [SMALL_STATE(5083)] = 192869, - [SMALL_STATE(5084)] = 192891, - [SMALL_STATE(5085)] = 192913, - [SMALL_STATE(5086)] = 192937, - [SMALL_STATE(5087)] = 192963, - [SMALL_STATE(5088)] = 192987, - [SMALL_STATE(5089)] = 193027, - [SMALL_STATE(5090)] = 193051, - [SMALL_STATE(5091)] = 193077, - [SMALL_STATE(5092)] = 193101, - [SMALL_STATE(5093)] = 193129, - [SMALL_STATE(5094)] = 193153, - [SMALL_STATE(5095)] = 193175, - [SMALL_STATE(5096)] = 193197, - [SMALL_STATE(5097)] = 193219, - [SMALL_STATE(5098)] = 193245, - [SMALL_STATE(5099)] = 193271, - [SMALL_STATE(5100)] = 193317, - [SMALL_STATE(5101)] = 193341, - [SMALL_STATE(5102)] = 193365, - [SMALL_STATE(5103)] = 193389, - [SMALL_STATE(5104)] = 193413, - [SMALL_STATE(5105)] = 193437, - [SMALL_STATE(5106)] = 193461, - [SMALL_STATE(5107)] = 193487, - [SMALL_STATE(5108)] = 193511, - [SMALL_STATE(5109)] = 193535, - [SMALL_STATE(5110)] = 193561, - [SMALL_STATE(5111)] = 193585, - [SMALL_STATE(5112)] = 193609, - [SMALL_STATE(5113)] = 193633, - [SMALL_STATE(5114)] = 193657, - [SMALL_STATE(5115)] = 193679, - [SMALL_STATE(5116)] = 193701, - [SMALL_STATE(5117)] = 193725, - [SMALL_STATE(5118)] = 193749, - [SMALL_STATE(5119)] = 193773, - [SMALL_STATE(5120)] = 193797, - [SMALL_STATE(5121)] = 193819, - [SMALL_STATE(5122)] = 193843, - [SMALL_STATE(5123)] = 193867, - [SMALL_STATE(5124)] = 193891, - [SMALL_STATE(5125)] = 193915, - [SMALL_STATE(5126)] = 193939, - [SMALL_STATE(5127)] = 193961, - [SMALL_STATE(5128)] = 193985, - [SMALL_STATE(5129)] = 194009, - [SMALL_STATE(5130)] = 194033, - [SMALL_STATE(5131)] = 194057, - [SMALL_STATE(5132)] = 194081, - [SMALL_STATE(5133)] = 194105, - [SMALL_STATE(5134)] = 194129, - [SMALL_STATE(5135)] = 194153, - [SMALL_STATE(5136)] = 194175, - [SMALL_STATE(5137)] = 194199, - [SMALL_STATE(5138)] = 194223, - [SMALL_STATE(5139)] = 194269, - [SMALL_STATE(5140)] = 194297, - [SMALL_STATE(5141)] = 194339, - [SMALL_STATE(5142)] = 194363, - [SMALL_STATE(5143)] = 194385, - [SMALL_STATE(5144)] = 194409, - [SMALL_STATE(5145)] = 194435, - [SMALL_STATE(5146)] = 194459, - [SMALL_STATE(5147)] = 194487, - [SMALL_STATE(5148)] = 194515, - [SMALL_STATE(5149)] = 194537, - [SMALL_STATE(5150)] = 194563, - [SMALL_STATE(5151)] = 194587, - [SMALL_STATE(5152)] = 194613, - [SMALL_STATE(5153)] = 194639, - [SMALL_STATE(5154)] = 194665, - [SMALL_STATE(5155)] = 194699, - [SMALL_STATE(5156)] = 194741, - [SMALL_STATE(5157)] = 194767, - [SMALL_STATE(5158)] = 194789, - [SMALL_STATE(5159)] = 194813, - [SMALL_STATE(5160)] = 194859, - [SMALL_STATE(5161)] = 194883, - [SMALL_STATE(5162)] = 194911, - [SMALL_STATE(5163)] = 194945, - [SMALL_STATE(5164)] = 194973, - [SMALL_STATE(5165)] = 195019, - [SMALL_STATE(5166)] = 195057, - [SMALL_STATE(5167)] = 195091, - [SMALL_STATE(5168)] = 195125, - [SMALL_STATE(5169)] = 195171, - [SMALL_STATE(5170)] = 195195, - [SMALL_STATE(5171)] = 195223, - [SMALL_STATE(5172)] = 195251, - [SMALL_STATE(5173)] = 195285, - [SMALL_STATE(5174)] = 195319, - [SMALL_STATE(5175)] = 195343, - [SMALL_STATE(5176)] = 195371, - [SMALL_STATE(5177)] = 195413, - [SMALL_STATE(5178)] = 195437, - [SMALL_STATE(5179)] = 195483, - [SMALL_STATE(5180)] = 195507, - [SMALL_STATE(5181)] = 195535, - [SMALL_STATE(5182)] = 195559, - [SMALL_STATE(5183)] = 195583, - [SMALL_STATE(5184)] = 195627, - [SMALL_STATE(5185)] = 195661, - [SMALL_STATE(5186)] = 195685, - [SMALL_STATE(5187)] = 195709, - [SMALL_STATE(5188)] = 195733, - [SMALL_STATE(5189)] = 195757, - [SMALL_STATE(5190)] = 195781, - [SMALL_STATE(5191)] = 195803, - [SMALL_STATE(5192)] = 195827, - [SMALL_STATE(5193)] = 195855, - [SMALL_STATE(5194)] = 195877, - [SMALL_STATE(5195)] = 195899, - [SMALL_STATE(5196)] = 195923, - [SMALL_STATE(5197)] = 195947, - [SMALL_STATE(5198)] = 195984, - [SMALL_STATE(5199)] = 196005, - [SMALL_STATE(5200)] = 196036, - [SMALL_STATE(5201)] = 196057, - [SMALL_STATE(5202)] = 196078, - [SMALL_STATE(5203)] = 196101, - [SMALL_STATE(5204)] = 196124, - [SMALL_STATE(5205)] = 196147, - [SMALL_STATE(5206)] = 196168, - [SMALL_STATE(5207)] = 196195, - [SMALL_STATE(5208)] = 196222, - [SMALL_STATE(5209)] = 196245, - [SMALL_STATE(5210)] = 196266, - [SMALL_STATE(5211)] = 196289, - [SMALL_STATE(5212)] = 196312, - [SMALL_STATE(5213)] = 196335, - [SMALL_STATE(5214)] = 196356, - [SMALL_STATE(5215)] = 196387, - [SMALL_STATE(5216)] = 196410, - [SMALL_STATE(5217)] = 196433, - [SMALL_STATE(5218)] = 196454, - [SMALL_STATE(5219)] = 196475, - [SMALL_STATE(5220)] = 196496, - [SMALL_STATE(5221)] = 196519, - [SMALL_STATE(5222)] = 196542, - [SMALL_STATE(5223)] = 196563, - [SMALL_STATE(5224)] = 196590, - [SMALL_STATE(5225)] = 196621, - [SMALL_STATE(5226)] = 196642, - [SMALL_STATE(5227)] = 196663, - [SMALL_STATE(5228)] = 196686, - [SMALL_STATE(5229)] = 196707, - [SMALL_STATE(5230)] = 196734, - [SMALL_STATE(5231)] = 196775, - [SMALL_STATE(5232)] = 196816, - [SMALL_STATE(5233)] = 196837, - [SMALL_STATE(5234)] = 196860, - [SMALL_STATE(5235)] = 196881, - [SMALL_STATE(5236)] = 196904, - [SMALL_STATE(5237)] = 196927, - [SMALL_STATE(5238)] = 196948, - [SMALL_STATE(5239)] = 196979, - [SMALL_STATE(5240)] = 197002, - [SMALL_STATE(5241)] = 197023, - [SMALL_STATE(5242)] = 197062, - [SMALL_STATE(5243)] = 197087, - [SMALL_STATE(5244)] = 197128, - [SMALL_STATE(5245)] = 197149, - [SMALL_STATE(5246)] = 197172, - [SMALL_STATE(5247)] = 197195, - [SMALL_STATE(5248)] = 197218, - [SMALL_STATE(5249)] = 197241, - [SMALL_STATE(5250)] = 197264, - [SMALL_STATE(5251)] = 197285, - [SMALL_STATE(5252)] = 197312, - [SMALL_STATE(5253)] = 197351, - [SMALL_STATE(5254)] = 197374, - [SMALL_STATE(5255)] = 197395, - [SMALL_STATE(5256)] = 197416, - [SMALL_STATE(5257)] = 197437, - [SMALL_STATE(5258)] = 197458, - [SMALL_STATE(5259)] = 197481, - [SMALL_STATE(5260)] = 197504, - [SMALL_STATE(5261)] = 197525, - [SMALL_STATE(5262)] = 197546, - [SMALL_STATE(5263)] = 197573, - [SMALL_STATE(5264)] = 197596, - [SMALL_STATE(5265)] = 197637, - [SMALL_STATE(5266)] = 197658, - [SMALL_STATE(5267)] = 197685, - [SMALL_STATE(5268)] = 197708, - [SMALL_STATE(5269)] = 197731, - [SMALL_STATE(5270)] = 197754, - [SMALL_STATE(5271)] = 197777, - [SMALL_STATE(5272)] = 197798, - [SMALL_STATE(5273)] = 197837, - [SMALL_STATE(5274)] = 197860, - [SMALL_STATE(5275)] = 197891, - [SMALL_STATE(5276)] = 197914, - [SMALL_STATE(5277)] = 197935, - [SMALL_STATE(5278)] = 197962, - [SMALL_STATE(5279)] = 197983, - [SMALL_STATE(5280)] = 198006, - [SMALL_STATE(5281)] = 198029, - [SMALL_STATE(5282)] = 198056, - [SMALL_STATE(5283)] = 198079, - [SMALL_STATE(5284)] = 198106, - [SMALL_STATE(5285)] = 198129, - [SMALL_STATE(5286)] = 198150, - [SMALL_STATE(5287)] = 198173, - [SMALL_STATE(5288)] = 198196, - [SMALL_STATE(5289)] = 198223, - [SMALL_STATE(5290)] = 198244, - [SMALL_STATE(5291)] = 198267, - [SMALL_STATE(5292)] = 198288, - [SMALL_STATE(5293)] = 198311, - [SMALL_STATE(5294)] = 198334, - [SMALL_STATE(5295)] = 198357, - [SMALL_STATE(5296)] = 198380, - [SMALL_STATE(5297)] = 198403, - [SMALL_STATE(5298)] = 198442, - [SMALL_STATE(5299)] = 198463, - [SMALL_STATE(5300)] = 198486, - [SMALL_STATE(5301)] = 198509, - [SMALL_STATE(5302)] = 198532, - [SMALL_STATE(5303)] = 198563, - [SMALL_STATE(5304)] = 198584, - [SMALL_STATE(5305)] = 198611, - [SMALL_STATE(5306)] = 198632, - [SMALL_STATE(5307)] = 198653, - [SMALL_STATE(5308)] = 198676, - [SMALL_STATE(5309)] = 198717, - [SMALL_STATE(5310)] = 198748, - [SMALL_STATE(5311)] = 198769, - [SMALL_STATE(5312)] = 198800, - [SMALL_STATE(5313)] = 198823, - [SMALL_STATE(5314)] = 198844, - [SMALL_STATE(5315)] = 198879, - [SMALL_STATE(5316)] = 198916, - [SMALL_STATE(5317)] = 198951, - [SMALL_STATE(5318)] = 198986, - [SMALL_STATE(5319)] = 199021, - [SMALL_STATE(5320)] = 199042, - [SMALL_STATE(5321)] = 199073, - [SMALL_STATE(5322)] = 199110, - [SMALL_STATE(5323)] = 199131, - [SMALL_STATE(5324)] = 199152, - [SMALL_STATE(5325)] = 199191, - [SMALL_STATE(5326)] = 199212, - [SMALL_STATE(5327)] = 199233, - [SMALL_STATE(5328)] = 199256, - [SMALL_STATE(5329)] = 199279, - [SMALL_STATE(5330)] = 199300, - [SMALL_STATE(5331)] = 199327, - [SMALL_STATE(5332)] = 199350, - [SMALL_STATE(5333)] = 199371, - [SMALL_STATE(5334)] = 199394, - [SMALL_STATE(5335)] = 199417, - [SMALL_STATE(5336)] = 199440, - [SMALL_STATE(5337)] = 199461, - [SMALL_STATE(5338)] = 199482, - [SMALL_STATE(5339)] = 199503, - [SMALL_STATE(5340)] = 199530, - [SMALL_STATE(5341)] = 199553, - [SMALL_STATE(5342)] = 199576, - [SMALL_STATE(5343)] = 199607, - [SMALL_STATE(5344)] = 199628, - [SMALL_STATE(5345)] = 199649, - [SMALL_STATE(5346)] = 199670, - [SMALL_STATE(5347)] = 199709, - [SMALL_STATE(5348)] = 199730, - [SMALL_STATE(5349)] = 199769, - [SMALL_STATE(5350)] = 199808, - [SMALL_STATE(5351)] = 199835, - [SMALL_STATE(5352)] = 199876, - [SMALL_STATE(5353)] = 199899, - [SMALL_STATE(5354)] = 199920, - [SMALL_STATE(5355)] = 199941, - [SMALL_STATE(5356)] = 199964, - [SMALL_STATE(5357)] = 200005, - [SMALL_STATE(5358)] = 200026, - [SMALL_STATE(5359)] = 200051, - [SMALL_STATE(5360)] = 200074, - [SMALL_STATE(5361)] = 200105, - [SMALL_STATE(5362)] = 200126, - [SMALL_STATE(5363)] = 200147, - [SMALL_STATE(5364)] = 200170, - [SMALL_STATE(5365)] = 200197, - [SMALL_STATE(5366)] = 200218, - [SMALL_STATE(5367)] = 200239, - [SMALL_STATE(5368)] = 200262, - [SMALL_STATE(5369)] = 200285, - [SMALL_STATE(5370)] = 200308, - [SMALL_STATE(5371)] = 200329, - [SMALL_STATE(5372)] = 200352, - [SMALL_STATE(5373)] = 200393, - [SMALL_STATE(5374)] = 200414, - [SMALL_STATE(5375)] = 200435, - [SMALL_STATE(5376)] = 200456, - [SMALL_STATE(5377)] = 200477, - [SMALL_STATE(5378)] = 200518, - [SMALL_STATE(5379)] = 200541, - [SMALL_STATE(5380)] = 200584, - [SMALL_STATE(5381)] = 200617, - [SMALL_STATE(5382)] = 200656, - [SMALL_STATE(5383)] = 200679, - [SMALL_STATE(5384)] = 200700, - [SMALL_STATE(5385)] = 200723, - [SMALL_STATE(5386)] = 200750, - [SMALL_STATE(5387)] = 200771, - [SMALL_STATE(5388)] = 200792, - [SMALL_STATE(5389)] = 200813, - [SMALL_STATE(5390)] = 200836, - [SMALL_STATE(5391)] = 200859, - [SMALL_STATE(5392)] = 200880, - [SMALL_STATE(5393)] = 200911, - [SMALL_STATE(5394)] = 200948, - [SMALL_STATE(5395)] = 200969, - [SMALL_STATE(5396)] = 200997, - [SMALL_STATE(5397)] = 201029, - [SMALL_STATE(5398)] = 201053, - [SMALL_STATE(5399)] = 201079, - [SMALL_STATE(5400)] = 201101, - [SMALL_STATE(5401)] = 201133, - [SMALL_STATE(5402)] = 201159, - [SMALL_STATE(5403)] = 201195, - [SMALL_STATE(5404)] = 201227, - [SMALL_STATE(5405)] = 201255, - [SMALL_STATE(5406)] = 201277, - [SMALL_STATE(5407)] = 201303, - [SMALL_STATE(5408)] = 201335, - [SMALL_STATE(5409)] = 201363, - [SMALL_STATE(5410)] = 201385, - [SMALL_STATE(5411)] = 201411, - [SMALL_STATE(5412)] = 201433, - [SMALL_STATE(5413)] = 201471, - [SMALL_STATE(5414)] = 201493, - [SMALL_STATE(5415)] = 201515, - [SMALL_STATE(5416)] = 201543, - [SMALL_STATE(5417)] = 201571, - [SMALL_STATE(5418)] = 201597, - [SMALL_STATE(5419)] = 201621, - [SMALL_STATE(5420)] = 201653, - [SMALL_STATE(5421)] = 201675, - [SMALL_STATE(5422)] = 201697, - [SMALL_STATE(5423)] = 201723, - [SMALL_STATE(5424)] = 201745, - [SMALL_STATE(5425)] = 201777, - [SMALL_STATE(5426)] = 201799, - [SMALL_STATE(5427)] = 201821, - [SMALL_STATE(5428)] = 201853, - [SMALL_STATE(5429)] = 201875, - [SMALL_STATE(5430)] = 201903, - [SMALL_STATE(5431)] = 201931, - [SMALL_STATE(5432)] = 201953, - [SMALL_STATE(5433)] = 201975, - [SMALL_STATE(5434)] = 202003, - [SMALL_STATE(5435)] = 202025, - [SMALL_STATE(5436)] = 202053, - [SMALL_STATE(5437)] = 202075, - [SMALL_STATE(5438)] = 202111, - [SMALL_STATE(5439)] = 202133, - [SMALL_STATE(5440)] = 202155, - [SMALL_STATE(5441)] = 202183, - [SMALL_STATE(5442)] = 202205, - [SMALL_STATE(5443)] = 202227, - [SMALL_STATE(5444)] = 202255, - [SMALL_STATE(5445)] = 202287, - [SMALL_STATE(5446)] = 202323, - [SMALL_STATE(5447)] = 202347, - [SMALL_STATE(5448)] = 202375, - [SMALL_STATE(5449)] = 202397, - [SMALL_STATE(5450)] = 202423, - [SMALL_STATE(5451)] = 202455, - [SMALL_STATE(5452)] = 202483, - [SMALL_STATE(5453)] = 202511, - [SMALL_STATE(5454)] = 202533, - [SMALL_STATE(5455)] = 202555, - [SMALL_STATE(5456)] = 202579, - [SMALL_STATE(5457)] = 202601, - [SMALL_STATE(5458)] = 202623, - [SMALL_STATE(5459)] = 202657, - [SMALL_STATE(5460)] = 202691, - [SMALL_STATE(5461)] = 202725, - [SMALL_STATE(5462)] = 202759, - [SMALL_STATE(5463)] = 202793, - [SMALL_STATE(5464)] = 202827, - [SMALL_STATE(5465)] = 202849, - [SMALL_STATE(5466)] = 202875, - [SMALL_STATE(5467)] = 202907, - [SMALL_STATE(5468)] = 202939, - [SMALL_STATE(5469)] = 202977, - [SMALL_STATE(5470)] = 203005, - [SMALL_STATE(5471)] = 203033, - [SMALL_STATE(5472)] = 203061, - [SMALL_STATE(5473)] = 203097, - [SMALL_STATE(5474)] = 203133, - [SMALL_STATE(5475)] = 203165, - [SMALL_STATE(5476)] = 203189, - [SMALL_STATE(5477)] = 203213, - [SMALL_STATE(5478)] = 203241, - [SMALL_STATE(5479)] = 203263, - [SMALL_STATE(5480)] = 203291, - [SMALL_STATE(5481)] = 203323, - [SMALL_STATE(5482)] = 203351, - [SMALL_STATE(5483)] = 203379, - [SMALL_STATE(5484)] = 203407, - [SMALL_STATE(5485)] = 203435, - [SMALL_STATE(5486)] = 203470, - [SMALL_STATE(5487)] = 203505, - [SMALL_STATE(5488)] = 203540, - [SMALL_STATE(5489)] = 203565, - [SMALL_STATE(5490)] = 203600, - [SMALL_STATE(5491)] = 203625, - [SMALL_STATE(5492)] = 203660, - [SMALL_STATE(5493)] = 203693, - [SMALL_STATE(5494)] = 203728, - [SMALL_STATE(5495)] = 203763, - [SMALL_STATE(5496)] = 203792, - [SMALL_STATE(5497)] = 203827, - [SMALL_STATE(5498)] = 203846, - [SMALL_STATE(5499)] = 203877, - [SMALL_STATE(5500)] = 203912, - [SMALL_STATE(5501)] = 203933, - [SMALL_STATE(5502)] = 203968, - [SMALL_STATE(5503)] = 203989, - [SMALL_STATE(5504)] = 204024, - [SMALL_STATE(5505)] = 204059, - [SMALL_STATE(5506)] = 204094, - [SMALL_STATE(5507)] = 204129, - [SMALL_STATE(5508)] = 204162, - [SMALL_STATE(5509)] = 204183, - [SMALL_STATE(5510)] = 204204, - [SMALL_STATE(5511)] = 204239, - [SMALL_STATE(5512)] = 204274, - [SMALL_STATE(5513)] = 204305, - [SMALL_STATE(5514)] = 204328, - [SMALL_STATE(5515)] = 204351, - [SMALL_STATE(5516)] = 204374, - [SMALL_STATE(5517)] = 204409, - [SMALL_STATE(5518)] = 204444, - [SMALL_STATE(5519)] = 204475, - [SMALL_STATE(5520)] = 204498, - [SMALL_STATE(5521)] = 204521, - [SMALL_STATE(5522)] = 204550, - [SMALL_STATE(5523)] = 204569, - [SMALL_STATE(5524)] = 204602, - [SMALL_STATE(5525)] = 204621, - [SMALL_STATE(5526)] = 204648, - [SMALL_STATE(5527)] = 204683, - [SMALL_STATE(5528)] = 204708, - [SMALL_STATE(5529)] = 204731, - [SMALL_STATE(5530)] = 204766, - [SMALL_STATE(5531)] = 204801, - [SMALL_STATE(5532)] = 204832, - [SMALL_STATE(5533)] = 204861, - [SMALL_STATE(5534)] = 204880, - [SMALL_STATE(5535)] = 204909, - [SMALL_STATE(5536)] = 204944, - [SMALL_STATE(5537)] = 204979, - [SMALL_STATE(5538)] = 205014, - [SMALL_STATE(5539)] = 205049, - [SMALL_STATE(5540)] = 205070, - [SMALL_STATE(5541)] = 205091, - [SMALL_STATE(5542)] = 205126, - [SMALL_STATE(5543)] = 205161, - [SMALL_STATE(5544)] = 205194, - [SMALL_STATE(5545)] = 205227, - [SMALL_STATE(5546)] = 205260, - [SMALL_STATE(5547)] = 205281, - [SMALL_STATE(5548)] = 205302, - [SMALL_STATE(5549)] = 205337, - [SMALL_STATE(5550)] = 205372, - [SMALL_STATE(5551)] = 205403, - [SMALL_STATE(5552)] = 205434, - [SMALL_STATE(5553)] = 205469, - [SMALL_STATE(5554)] = 205504, - [SMALL_STATE(5555)] = 205531, - [SMALL_STATE(5556)] = 205556, - [SMALL_STATE(5557)] = 205591, - [SMALL_STATE(5558)] = 205626, - [SMALL_STATE(5559)] = 205661, - [SMALL_STATE(5560)] = 205696, - [SMALL_STATE(5561)] = 205731, - [SMALL_STATE(5562)] = 205766, - [SMALL_STATE(5563)] = 205801, - [SMALL_STATE(5564)] = 205836, - [SMALL_STATE(5565)] = 205871, - [SMALL_STATE(5566)] = 205894, - [SMALL_STATE(5567)] = 205913, - [SMALL_STATE(5568)] = 205936, - [SMALL_STATE(5569)] = 205961, - [SMALL_STATE(5570)] = 205986, - [SMALL_STATE(5571)] = 206021, - [SMALL_STATE(5572)] = 206054, - [SMALL_STATE(5573)] = 206087, - [SMALL_STATE(5574)] = 206106, - [SMALL_STATE(5575)] = 206125, - [SMALL_STATE(5576)] = 206150, - [SMALL_STATE(5577)] = 206180, - [SMALL_STATE(5578)] = 206200, - [SMALL_STATE(5579)] = 206230, - [SMALL_STATE(5580)] = 206252, - [SMALL_STATE(5581)] = 206282, - [SMALL_STATE(5582)] = 206312, - [SMALL_STATE(5583)] = 206342, - [SMALL_STATE(5584)] = 206366, - [SMALL_STATE(5585)] = 206394, - [SMALL_STATE(5586)] = 206424, - [SMALL_STATE(5587)] = 206448, - [SMALL_STATE(5588)] = 206468, - [SMALL_STATE(5589)] = 206498, - [SMALL_STATE(5590)] = 206528, - [SMALL_STATE(5591)] = 206548, - [SMALL_STATE(5592)] = 206568, - [SMALL_STATE(5593)] = 206592, - [SMALL_STATE(5594)] = 206614, - [SMALL_STATE(5595)] = 206634, - [SMALL_STATE(5596)] = 206656, - [SMALL_STATE(5597)] = 206686, - [SMALL_STATE(5598)] = 206706, - [SMALL_STATE(5599)] = 206726, - [SMALL_STATE(5600)] = 206756, - [SMALL_STATE(5601)] = 206786, - [SMALL_STATE(5602)] = 206806, - [SMALL_STATE(5603)] = 206826, - [SMALL_STATE(5604)] = 206846, - [SMALL_STATE(5605)] = 206866, - [SMALL_STATE(5606)] = 206886, - [SMALL_STATE(5607)] = 206906, - [SMALL_STATE(5608)] = 206928, - [SMALL_STATE(5609)] = 206948, - [SMALL_STATE(5610)] = 206968, - [SMALL_STATE(5611)] = 206988, - [SMALL_STATE(5612)] = 207018, - [SMALL_STATE(5613)] = 207038, - [SMALL_STATE(5614)] = 207068, - [SMALL_STATE(5615)] = 207088, - [SMALL_STATE(5616)] = 207118, - [SMALL_STATE(5617)] = 207138, - [SMALL_STATE(5618)] = 207158, - [SMALL_STATE(5619)] = 207178, - [SMALL_STATE(5620)] = 207198, - [SMALL_STATE(5621)] = 207228, - [SMALL_STATE(5622)] = 207248, - [SMALL_STATE(5623)] = 207268, - [SMALL_STATE(5624)] = 207288, - [SMALL_STATE(5625)] = 207308, - [SMALL_STATE(5626)] = 207338, - [SMALL_STATE(5627)] = 207358, - [SMALL_STATE(5628)] = 207388, - [SMALL_STATE(5629)] = 207412, - [SMALL_STATE(5630)] = 207442, - [SMALL_STATE(5631)] = 207472, - [SMALL_STATE(5632)] = 207492, - [SMALL_STATE(5633)] = 207516, - [SMALL_STATE(5634)] = 207548, - [SMALL_STATE(5635)] = 207572, - [SMALL_STATE(5636)] = 207602, - [SMALL_STATE(5637)] = 207622, - [SMALL_STATE(5638)] = 207652, - [SMALL_STATE(5639)] = 207682, - [SMALL_STATE(5640)] = 207702, - [SMALL_STATE(5641)] = 207722, - [SMALL_STATE(5642)] = 207742, - [SMALL_STATE(5643)] = 207772, - [SMALL_STATE(5644)] = 207802, - [SMALL_STATE(5645)] = 207832, - [SMALL_STATE(5646)] = 207852, - [SMALL_STATE(5647)] = 207882, - [SMALL_STATE(5648)] = 207906, - [SMALL_STATE(5649)] = 207932, - [SMALL_STATE(5650)] = 207962, - [SMALL_STATE(5651)] = 207982, - [SMALL_STATE(5652)] = 208012, - [SMALL_STATE(5653)] = 208042, - [SMALL_STATE(5654)] = 208072, - [SMALL_STATE(5655)] = 208092, - [SMALL_STATE(5656)] = 208122, - [SMALL_STATE(5657)] = 208152, - [SMALL_STATE(5658)] = 208182, - [SMALL_STATE(5659)] = 208212, - [SMALL_STATE(5660)] = 208242, - [SMALL_STATE(5661)] = 208272, - [SMALL_STATE(5662)] = 208292, - [SMALL_STATE(5663)] = 208312, - [SMALL_STATE(5664)] = 208342, - [SMALL_STATE(5665)] = 208372, - [SMALL_STATE(5666)] = 208394, - [SMALL_STATE(5667)] = 208424, - [SMALL_STATE(5668)] = 208454, - [SMALL_STATE(5669)] = 208474, - [SMALL_STATE(5670)] = 208504, - [SMALL_STATE(5671)] = 208534, - [SMALL_STATE(5672)] = 208554, - [SMALL_STATE(5673)] = 208574, - [SMALL_STATE(5674)] = 208604, - [SMALL_STATE(5675)] = 208624, - [SMALL_STATE(5676)] = 208648, - [SMALL_STATE(5677)] = 208670, - [SMALL_STATE(5678)] = 208694, - [SMALL_STATE(5679)] = 208716, - [SMALL_STATE(5680)] = 208740, - [SMALL_STATE(5681)] = 208760, - [SMALL_STATE(5682)] = 208780, - [SMALL_STATE(5683)] = 208800, - [SMALL_STATE(5684)] = 208820, - [SMALL_STATE(5685)] = 208840, - [SMALL_STATE(5686)] = 208864, - [SMALL_STATE(5687)] = 208896, - [SMALL_STATE(5688)] = 208916, - [SMALL_STATE(5689)] = 208936, - [SMALL_STATE(5690)] = 208956, - [SMALL_STATE(5691)] = 208976, - [SMALL_STATE(5692)] = 208996, - [SMALL_STATE(5693)] = 209016, - [SMALL_STATE(5694)] = 209036, - [SMALL_STATE(5695)] = 209056, - [SMALL_STATE(5696)] = 209086, - [SMALL_STATE(5697)] = 209116, - [SMALL_STATE(5698)] = 209146, - [SMALL_STATE(5699)] = 209176, - [SMALL_STATE(5700)] = 209206, - [SMALL_STATE(5701)] = 209236, - [SMALL_STATE(5702)] = 209256, - [SMALL_STATE(5703)] = 209278, - [SMALL_STATE(5704)] = 209308, - [SMALL_STATE(5705)] = 209338, - [SMALL_STATE(5706)] = 209368, - [SMALL_STATE(5707)] = 209398, - [SMALL_STATE(5708)] = 209419, - [SMALL_STATE(5709)] = 209438, - [SMALL_STATE(5710)] = 209467, - [SMALL_STATE(5711)] = 209496, - [SMALL_STATE(5712)] = 209515, - [SMALL_STATE(5713)] = 209542, - [SMALL_STATE(5714)] = 209561, - [SMALL_STATE(5715)] = 209580, - [SMALL_STATE(5716)] = 209607, - [SMALL_STATE(5717)] = 209632, - [SMALL_STATE(5718)] = 209651, - [SMALL_STATE(5719)] = 209670, - [SMALL_STATE(5720)] = 209691, - [SMALL_STATE(5721)] = 209712, - [SMALL_STATE(5722)] = 209741, - [SMALL_STATE(5723)] = 209766, - [SMALL_STATE(5724)] = 209791, - [SMALL_STATE(5725)] = 209816, - [SMALL_STATE(5726)] = 209841, - [SMALL_STATE(5727)] = 209866, - [SMALL_STATE(5728)] = 209891, - [SMALL_STATE(5729)] = 209916, - [SMALL_STATE(5730)] = 209941, - [SMALL_STATE(5731)] = 209966, - [SMALL_STATE(5732)] = 209991, - [SMALL_STATE(5733)] = 210016, - [SMALL_STATE(5734)] = 210041, - [SMALL_STATE(5735)] = 210066, - [SMALL_STATE(5736)] = 210091, - [SMALL_STATE(5737)] = 210116, - [SMALL_STATE(5738)] = 210141, - [SMALL_STATE(5739)] = 210166, - [SMALL_STATE(5740)] = 210191, - [SMALL_STATE(5741)] = 210216, - [SMALL_STATE(5742)] = 210235, - [SMALL_STATE(5743)] = 210260, - [SMALL_STATE(5744)] = 210287, - [SMALL_STATE(5745)] = 210314, - [SMALL_STATE(5746)] = 210341, - [SMALL_STATE(5747)] = 210368, - [SMALL_STATE(5748)] = 210395, - [SMALL_STATE(5749)] = 210422, - [SMALL_STATE(5750)] = 210449, - [SMALL_STATE(5751)] = 210476, - [SMALL_STATE(5752)] = 210503, - [SMALL_STATE(5753)] = 210530, - [SMALL_STATE(5754)] = 210557, - [SMALL_STATE(5755)] = 210584, - [SMALL_STATE(5756)] = 210611, - [SMALL_STATE(5757)] = 210638, - [SMALL_STATE(5758)] = 210665, - [SMALL_STATE(5759)] = 210692, - [SMALL_STATE(5760)] = 210719, - [SMALL_STATE(5761)] = 210746, - [SMALL_STATE(5762)] = 210773, - [SMALL_STATE(5763)] = 210800, - [SMALL_STATE(5764)] = 210827, - [SMALL_STATE(5765)] = 210854, - [SMALL_STATE(5766)] = 210881, - [SMALL_STATE(5767)] = 210902, - [SMALL_STATE(5768)] = 210925, - [SMALL_STATE(5769)] = 210944, - [SMALL_STATE(5770)] = 210965, - [SMALL_STATE(5771)] = 210984, - [SMALL_STATE(5772)] = 211005, - [SMALL_STATE(5773)] = 211024, - [SMALL_STATE(5774)] = 211043, - [SMALL_STATE(5775)] = 211062, - [SMALL_STATE(5776)] = 211081, - [SMALL_STATE(5777)] = 211102, - [SMALL_STATE(5778)] = 211121, - [SMALL_STATE(5779)] = 211142, - [SMALL_STATE(5780)] = 211161, - [SMALL_STATE(5781)] = 211184, - [SMALL_STATE(5782)] = 211211, - [SMALL_STATE(5783)] = 211240, - [SMALL_STATE(5784)] = 211261, - [SMALL_STATE(5785)] = 211280, - [SMALL_STATE(5786)] = 211305, - [SMALL_STATE(5787)] = 211330, - [SMALL_STATE(5788)] = 211351, - [SMALL_STATE(5789)] = 211378, - [SMALL_STATE(5790)] = 211407, - [SMALL_STATE(5791)] = 211428, - [SMALL_STATE(5792)] = 211451, - [SMALL_STATE(5793)] = 211478, - [SMALL_STATE(5794)] = 211507, - [SMALL_STATE(5795)] = 211526, - [SMALL_STATE(5796)] = 211545, - [SMALL_STATE(5797)] = 211574, - [SMALL_STATE(5798)] = 211593, - [SMALL_STATE(5799)] = 211620, - [SMALL_STATE(5800)] = 211647, - [SMALL_STATE(5801)] = 211668, - [SMALL_STATE(5802)] = 211687, - [SMALL_STATE(5803)] = 211714, - [SMALL_STATE(5804)] = 211733, - [SMALL_STATE(5805)] = 211754, - [SMALL_STATE(5806)] = 211783, - [SMALL_STATE(5807)] = 211802, - [SMALL_STATE(5808)] = 211823, - [SMALL_STATE(5809)] = 211844, - [SMALL_STATE(5810)] = 211867, - [SMALL_STATE(5811)] = 211886, - [SMALL_STATE(5812)] = 211905, - [SMALL_STATE(5813)] = 211932, - [SMALL_STATE(5814)] = 211959, - [SMALL_STATE(5815)] = 211982, - [SMALL_STATE(5816)] = 212009, - [SMALL_STATE(5817)] = 212036, - [SMALL_STATE(5818)] = 212057, - [SMALL_STATE(5819)] = 212084, - [SMALL_STATE(5820)] = 212111, - [SMALL_STATE(5821)] = 212132, - [SMALL_STATE(5822)] = 212151, - [SMALL_STATE(5823)] = 212170, - [SMALL_STATE(5824)] = 212197, - [SMALL_STATE(5825)] = 212224, - [SMALL_STATE(5826)] = 212251, - [SMALL_STATE(5827)] = 212278, - [SMALL_STATE(5828)] = 212305, - [SMALL_STATE(5829)] = 212332, - [SMALL_STATE(5830)] = 212359, - [SMALL_STATE(5831)] = 212378, - [SMALL_STATE(5832)] = 212397, - [SMALL_STATE(5833)] = 212420, - [SMALL_STATE(5834)] = 212447, - [SMALL_STATE(5835)] = 212474, - [SMALL_STATE(5836)] = 212501, - [SMALL_STATE(5837)] = 212528, - [SMALL_STATE(5838)] = 212557, - [SMALL_STATE(5839)] = 212577, - [SMALL_STATE(5840)] = 212603, - [SMALL_STATE(5841)] = 212623, - [SMALL_STATE(5842)] = 212649, - [SMALL_STATE(5843)] = 212675, - [SMALL_STATE(5844)] = 212701, - [SMALL_STATE(5845)] = 212727, - [SMALL_STATE(5846)] = 212745, - [SMALL_STATE(5847)] = 212763, - [SMALL_STATE(5848)] = 212789, - [SMALL_STATE(5849)] = 212809, - [SMALL_STATE(5850)] = 212827, - [SMALL_STATE(5851)] = 212853, - [SMALL_STATE(5852)] = 212871, - [SMALL_STATE(5853)] = 212897, - [SMALL_STATE(5854)] = 212923, - [SMALL_STATE(5855)] = 212949, - [SMALL_STATE(5856)] = 212975, - [SMALL_STATE(5857)] = 213001, - [SMALL_STATE(5858)] = 213027, - [SMALL_STATE(5859)] = 213053, - [SMALL_STATE(5860)] = 213075, - [SMALL_STATE(5861)] = 213101, - [SMALL_STATE(5862)] = 213127, - [SMALL_STATE(5863)] = 213143, - [SMALL_STATE(5864)] = 213161, - [SMALL_STATE(5865)] = 213181, - [SMALL_STATE(5866)] = 213207, - [SMALL_STATE(5867)] = 213233, - [SMALL_STATE(5868)] = 213251, - [SMALL_STATE(5869)] = 213269, - [SMALL_STATE(5870)] = 213289, - [SMALL_STATE(5871)] = 213309, - [SMALL_STATE(5872)] = 213327, - [SMALL_STATE(5873)] = 213353, - [SMALL_STATE(5874)] = 213371, - [SMALL_STATE(5875)] = 213397, - [SMALL_STATE(5876)] = 213423, - [SMALL_STATE(5877)] = 213447, - [SMALL_STATE(5878)] = 213471, - [SMALL_STATE(5879)] = 213491, - [SMALL_STATE(5880)] = 213515, - [SMALL_STATE(5881)] = 213533, - [SMALL_STATE(5882)] = 213551, - [SMALL_STATE(5883)] = 213571, - [SMALL_STATE(5884)] = 213597, - [SMALL_STATE(5885)] = 213625, - [SMALL_STATE(5886)] = 213647, - [SMALL_STATE(5887)] = 213675, - [SMALL_STATE(5888)] = 213701, - [SMALL_STATE(5889)] = 213727, - [SMALL_STATE(5890)] = 213753, - [SMALL_STATE(5891)] = 213779, - [SMALL_STATE(5892)] = 213805, - [SMALL_STATE(5893)] = 213831, - [SMALL_STATE(5894)] = 213849, - [SMALL_STATE(5895)] = 213875, - [SMALL_STATE(5896)] = 213901, - [SMALL_STATE(5897)] = 213927, - [SMALL_STATE(5898)] = 213953, - [SMALL_STATE(5899)] = 213975, - [SMALL_STATE(5900)] = 213995, - [SMALL_STATE(5901)] = 214021, - [SMALL_STATE(5902)] = 214047, - [SMALL_STATE(5903)] = 214065, - [SMALL_STATE(5904)] = 214083, - [SMALL_STATE(5905)] = 214109, - [SMALL_STATE(5906)] = 214135, - [SMALL_STATE(5907)] = 214153, - [SMALL_STATE(5908)] = 214171, - [SMALL_STATE(5909)] = 214191, - [SMALL_STATE(5910)] = 214209, - [SMALL_STATE(5911)] = 214233, - [SMALL_STATE(5912)] = 214257, - [SMALL_STATE(5913)] = 214279, - [SMALL_STATE(5914)] = 214299, - [SMALL_STATE(5915)] = 214325, - [SMALL_STATE(5916)] = 214351, - [SMALL_STATE(5917)] = 214375, - [SMALL_STATE(5918)] = 214399, - [SMALL_STATE(5919)] = 214417, - [SMALL_STATE(5920)] = 214443, - [SMALL_STATE(5921)] = 214469, - [SMALL_STATE(5922)] = 214495, - [SMALL_STATE(5923)] = 214521, - [SMALL_STATE(5924)] = 214547, - [SMALL_STATE(5925)] = 214573, - [SMALL_STATE(5926)] = 214593, - [SMALL_STATE(5927)] = 214619, - [SMALL_STATE(5928)] = 214635, - [SMALL_STATE(5929)] = 214661, - [SMALL_STATE(5930)] = 214679, - [SMALL_STATE(5931)] = 214697, - [SMALL_STATE(5932)] = 214715, - [SMALL_STATE(5933)] = 214741, - [SMALL_STATE(5934)] = 214767, - [SMALL_STATE(5935)] = 214787, - [SMALL_STATE(5936)] = 214803, - [SMALL_STATE(5937)] = 214829, - [SMALL_STATE(5938)] = 214855, - [SMALL_STATE(5939)] = 214881, - [SMALL_STATE(5940)] = 214907, - [SMALL_STATE(5941)] = 214933, - [SMALL_STATE(5942)] = 214959, - [SMALL_STATE(5943)] = 214985, - [SMALL_STATE(5944)] = 215011, - [SMALL_STATE(5945)] = 215027, - [SMALL_STATE(5946)] = 215052, - [SMALL_STATE(5947)] = 215075, - [SMALL_STATE(5948)] = 215100, - [SMALL_STATE(5949)] = 215123, - [SMALL_STATE(5950)] = 215148, - [SMALL_STATE(5951)] = 215167, - [SMALL_STATE(5952)] = 215186, - [SMALL_STATE(5953)] = 215205, - [SMALL_STATE(5954)] = 215228, - [SMALL_STATE(5955)] = 215253, - [SMALL_STATE(5956)] = 215278, - [SMALL_STATE(5957)] = 215301, - [SMALL_STATE(5958)] = 215326, - [SMALL_STATE(5959)] = 215351, - [SMALL_STATE(5960)] = 215376, - [SMALL_STATE(5961)] = 215401, - [SMALL_STATE(5962)] = 215426, - [SMALL_STATE(5963)] = 215449, - [SMALL_STATE(5964)] = 215474, - [SMALL_STATE(5965)] = 215499, - [SMALL_STATE(5966)] = 215520, - [SMALL_STATE(5967)] = 215545, - [SMALL_STATE(5968)] = 215568, - [SMALL_STATE(5969)] = 215593, - [SMALL_STATE(5970)] = 215618, - [SMALL_STATE(5971)] = 215641, - [SMALL_STATE(5972)] = 215660, - [SMALL_STATE(5973)] = 215685, - [SMALL_STATE(5974)] = 215704, - [SMALL_STATE(5975)] = 215721, - [SMALL_STATE(5976)] = 215746, - [SMALL_STATE(5977)] = 215769, - [SMALL_STATE(5978)] = 215790, - [SMALL_STATE(5979)] = 215813, - [SMALL_STATE(5980)] = 215830, - [SMALL_STATE(5981)] = 215855, - [SMALL_STATE(5982)] = 215880, - [SMALL_STATE(5983)] = 215903, - [SMALL_STATE(5984)] = 215928, - [SMALL_STATE(5985)] = 215949, - [SMALL_STATE(5986)] = 215974, - [SMALL_STATE(5987)] = 215997, - [SMALL_STATE(5988)] = 216022, - [SMALL_STATE(5989)] = 216041, - [SMALL_STATE(5990)] = 216064, - [SMALL_STATE(5991)] = 216089, - [SMALL_STATE(5992)] = 216114, - [SMALL_STATE(5993)] = 216137, - [SMALL_STATE(5994)] = 216160, - [SMALL_STATE(5995)] = 216185, - [SMALL_STATE(5996)] = 216202, - [SMALL_STATE(5997)] = 216227, - [SMALL_STATE(5998)] = 216250, - [SMALL_STATE(5999)] = 216271, - [SMALL_STATE(6000)] = 216290, - [SMALL_STATE(6001)] = 216309, - [SMALL_STATE(6002)] = 216332, - [SMALL_STATE(6003)] = 216357, - [SMALL_STATE(6004)] = 216382, - [SMALL_STATE(6005)] = 216405, - [SMALL_STATE(6006)] = 216430, - [SMALL_STATE(6007)] = 216447, - [SMALL_STATE(6008)] = 216466, - [SMALL_STATE(6009)] = 216491, - [SMALL_STATE(6010)] = 216516, - [SMALL_STATE(6011)] = 216539, - [SMALL_STATE(6012)] = 216558, - [SMALL_STATE(6013)] = 216583, - [SMALL_STATE(6014)] = 216606, - [SMALL_STATE(6015)] = 216631, - [SMALL_STATE(6016)] = 216656, - [SMALL_STATE(6017)] = 216681, - [SMALL_STATE(6018)] = 216704, - [SMALL_STATE(6019)] = 216729, - [SMALL_STATE(6020)] = 216754, - [SMALL_STATE(6021)] = 216779, - [SMALL_STATE(6022)] = 216802, - [SMALL_STATE(6023)] = 216823, - [SMALL_STATE(6024)] = 216848, - [SMALL_STATE(6025)] = 216865, - [SMALL_STATE(6026)] = 216882, - [SMALL_STATE(6027)] = 216905, - [SMALL_STATE(6028)] = 216926, - [SMALL_STATE(6029)] = 216949, - [SMALL_STATE(6030)] = 216970, - [SMALL_STATE(6031)] = 216995, - [SMALL_STATE(6032)] = 217012, - [SMALL_STATE(6033)] = 217035, - [SMALL_STATE(6034)] = 217060, - [SMALL_STATE(6035)] = 217085, - [SMALL_STATE(6036)] = 217110, - [SMALL_STATE(6037)] = 217133, - [SMALL_STATE(6038)] = 217158, - [SMALL_STATE(6039)] = 217179, - [SMALL_STATE(6040)] = 217196, - [SMALL_STATE(6041)] = 217219, - [SMALL_STATE(6042)] = 217242, - [SMALL_STATE(6043)] = 217267, - [SMALL_STATE(6044)] = 217292, - [SMALL_STATE(6045)] = 217309, - [SMALL_STATE(6046)] = 217334, - [SMALL_STATE(6047)] = 217357, - [SMALL_STATE(6048)] = 217382, - [SMALL_STATE(6049)] = 217399, - [SMALL_STATE(6050)] = 217422, - [SMALL_STATE(6051)] = 217445, - [SMALL_STATE(6052)] = 217470, - [SMALL_STATE(6053)] = 217487, - [SMALL_STATE(6054)] = 217512, - [SMALL_STATE(6055)] = 217535, - [SMALL_STATE(6056)] = 217556, - [SMALL_STATE(6057)] = 217573, - [SMALL_STATE(6058)] = 217596, - [SMALL_STATE(6059)] = 217621, - [SMALL_STATE(6060)] = 217644, - [SMALL_STATE(6061)] = 217669, - [SMALL_STATE(6062)] = 217694, - [SMALL_STATE(6063)] = 217717, - [SMALL_STATE(6064)] = 217742, - [SMALL_STATE(6065)] = 217765, - [SMALL_STATE(6066)] = 217788, - [SMALL_STATE(6067)] = 217813, - [SMALL_STATE(6068)] = 217838, - [SMALL_STATE(6069)] = 217861, - [SMALL_STATE(6070)] = 217886, - [SMALL_STATE(6071)] = 217909, - [SMALL_STATE(6072)] = 217932, - [SMALL_STATE(6073)] = 217957, - [SMALL_STATE(6074)] = 217982, - [SMALL_STATE(6075)] = 218005, - [SMALL_STATE(6076)] = 218030, - [SMALL_STATE(6077)] = 218047, - [SMALL_STATE(6078)] = 218068, - [SMALL_STATE(6079)] = 218093, - [SMALL_STATE(6080)] = 218118, - [SMALL_STATE(6081)] = 218141, - [SMALL_STATE(6082)] = 218166, - [SMALL_STATE(6083)] = 218191, - [SMALL_STATE(6084)] = 218216, - [SMALL_STATE(6085)] = 218239, - [SMALL_STATE(6086)] = 218262, - [SMALL_STATE(6087)] = 218287, - [SMALL_STATE(6088)] = 218312, - [SMALL_STATE(6089)] = 218335, - [SMALL_STATE(6090)] = 218360, - [SMALL_STATE(6091)] = 218385, - [SMALL_STATE(6092)] = 218408, - [SMALL_STATE(6093)] = 218431, - [SMALL_STATE(6094)] = 218454, - [SMALL_STATE(6095)] = 218477, - [SMALL_STATE(6096)] = 218500, - [SMALL_STATE(6097)] = 218523, - [SMALL_STATE(6098)] = 218546, - [SMALL_STATE(6099)] = 218569, - [SMALL_STATE(6100)] = 218592, - [SMALL_STATE(6101)] = 218615, - [SMALL_STATE(6102)] = 218638, - [SMALL_STATE(6103)] = 218661, - [SMALL_STATE(6104)] = 218684, - [SMALL_STATE(6105)] = 218707, - [SMALL_STATE(6106)] = 218730, - [SMALL_STATE(6107)] = 218753, - [SMALL_STATE(6108)] = 218776, - [SMALL_STATE(6109)] = 218799, - [SMALL_STATE(6110)] = 218822, - [SMALL_STATE(6111)] = 218845, - [SMALL_STATE(6112)] = 218868, - [SMALL_STATE(6113)] = 218891, - [SMALL_STATE(6114)] = 218914, - [SMALL_STATE(6115)] = 218937, - [SMALL_STATE(6116)] = 218960, - [SMALL_STATE(6117)] = 218983, - [SMALL_STATE(6118)] = 219006, - [SMALL_STATE(6119)] = 219029, - [SMALL_STATE(6120)] = 219052, - [SMALL_STATE(6121)] = 219077, - [SMALL_STATE(6122)] = 219094, - [SMALL_STATE(6123)] = 219115, - [SMALL_STATE(6124)] = 219140, - [SMALL_STATE(6125)] = 219165, - [SMALL_STATE(6126)] = 219190, - [SMALL_STATE(6127)] = 219215, - [SMALL_STATE(6128)] = 219240, - [SMALL_STATE(6129)] = 219257, - [SMALL_STATE(6130)] = 219276, - [SMALL_STATE(6131)] = 219299, - [SMALL_STATE(6132)] = 219320, - [SMALL_STATE(6133)] = 219339, - [SMALL_STATE(6134)] = 219360, - [SMALL_STATE(6135)] = 219383, - [SMALL_STATE(6136)] = 219400, - [SMALL_STATE(6137)] = 219419, - [SMALL_STATE(6138)] = 219438, - [SMALL_STATE(6139)] = 219461, - [SMALL_STATE(6140)] = 219482, - [SMALL_STATE(6141)] = 219505, - [SMALL_STATE(6142)] = 219526, - [SMALL_STATE(6143)] = 219551, - [SMALL_STATE(6144)] = 219574, - [SMALL_STATE(6145)] = 219599, - [SMALL_STATE(6146)] = 219620, - [SMALL_STATE(6147)] = 219641, - [SMALL_STATE(6148)] = 219666, - [SMALL_STATE(6149)] = 219687, - [SMALL_STATE(6150)] = 219710, - [SMALL_STATE(6151)] = 219733, - [SMALL_STATE(6152)] = 219758, - [SMALL_STATE(6153)] = 219783, - [SMALL_STATE(6154)] = 219806, - [SMALL_STATE(6155)] = 219823, - [SMALL_STATE(6156)] = 219848, - [SMALL_STATE(6157)] = 219873, - [SMALL_STATE(6158)] = 219898, - [SMALL_STATE(6159)] = 219921, - [SMALL_STATE(6160)] = 219946, - [SMALL_STATE(6161)] = 219971, - [SMALL_STATE(6162)] = 219988, - [SMALL_STATE(6163)] = 220013, - [SMALL_STATE(6164)] = 220038, - [SMALL_STATE(6165)] = 220063, - [SMALL_STATE(6166)] = 220088, - [SMALL_STATE(6167)] = 220113, - [SMALL_STATE(6168)] = 220134, - [SMALL_STATE(6169)] = 220153, - [SMALL_STATE(6170)] = 220178, - [SMALL_STATE(6171)] = 220201, - [SMALL_STATE(6172)] = 220226, - [SMALL_STATE(6173)] = 220249, - [SMALL_STATE(6174)] = 220266, - [SMALL_STATE(6175)] = 220289, - [SMALL_STATE(6176)] = 220310, - [SMALL_STATE(6177)] = 220335, - [SMALL_STATE(6178)] = 220356, - [SMALL_STATE(6179)] = 220373, - [SMALL_STATE(6180)] = 220396, - [SMALL_STATE(6181)] = 220421, - [SMALL_STATE(6182)] = 220442, - [SMALL_STATE(6183)] = 220463, - [SMALL_STATE(6184)] = 220488, - [SMALL_STATE(6185)] = 220511, - [SMALL_STATE(6186)] = 220528, - [SMALL_STATE(6187)] = 220545, - [SMALL_STATE(6188)] = 220568, - [SMALL_STATE(6189)] = 220591, - [SMALL_STATE(6190)] = 220610, - [SMALL_STATE(6191)] = 220635, - [SMALL_STATE(6192)] = 220660, - [SMALL_STATE(6193)] = 220681, - [SMALL_STATE(6194)] = 220700, - [SMALL_STATE(6195)] = 220719, - [SMALL_STATE(6196)] = 220738, - [SMALL_STATE(6197)] = 220761, - [SMALL_STATE(6198)] = 220784, - [SMALL_STATE(6199)] = 220809, - [SMALL_STATE(6200)] = 220832, - [SMALL_STATE(6201)] = 220857, - [SMALL_STATE(6202)] = 220882, - [SMALL_STATE(6203)] = 220907, - [SMALL_STATE(6204)] = 220932, - [SMALL_STATE(6205)] = 220950, - [SMALL_STATE(6206)] = 220972, - [SMALL_STATE(6207)] = 220990, - [SMALL_STATE(6208)] = 221010, - [SMALL_STATE(6209)] = 221026, - [SMALL_STATE(6210)] = 221042, - [SMALL_STATE(6211)] = 221064, - [SMALL_STATE(6212)] = 221086, - [SMALL_STATE(6213)] = 221106, - [SMALL_STATE(6214)] = 221128, - [SMALL_STATE(6215)] = 221150, - [SMALL_STATE(6216)] = 221172, - [SMALL_STATE(6217)] = 221192, - [SMALL_STATE(6218)] = 221214, - [SMALL_STATE(6219)] = 221236, - [SMALL_STATE(6220)] = 221256, - [SMALL_STATE(6221)] = 221274, - [SMALL_STATE(6222)] = 221292, - [SMALL_STATE(6223)] = 221314, - [SMALL_STATE(6224)] = 221334, - [SMALL_STATE(6225)] = 221356, - [SMALL_STATE(6226)] = 221378, - [SMALL_STATE(6227)] = 221400, - [SMALL_STATE(6228)] = 221422, - [SMALL_STATE(6229)] = 221444, - [SMALL_STATE(6230)] = 221466, - [SMALL_STATE(6231)] = 221488, - [SMALL_STATE(6232)] = 221508, - [SMALL_STATE(6233)] = 221524, - [SMALL_STATE(6234)] = 221542, - [SMALL_STATE(6235)] = 221564, - [SMALL_STATE(6236)] = 221586, - [SMALL_STATE(6237)] = 221608, - [SMALL_STATE(6238)] = 221628, - [SMALL_STATE(6239)] = 221644, - [SMALL_STATE(6240)] = 221662, - [SMALL_STATE(6241)] = 221680, - [SMALL_STATE(6242)] = 221700, - [SMALL_STATE(6243)] = 221722, - [SMALL_STATE(6244)] = 221744, - [SMALL_STATE(6245)] = 221762, - [SMALL_STATE(6246)] = 221778, - [SMALL_STATE(6247)] = 221800, - [SMALL_STATE(6248)] = 221822, - [SMALL_STATE(6249)] = 221844, - [SMALL_STATE(6250)] = 221864, - [SMALL_STATE(6251)] = 221878, - [SMALL_STATE(6252)] = 221900, - [SMALL_STATE(6253)] = 221922, - [SMALL_STATE(6254)] = 221936, - [SMALL_STATE(6255)] = 221954, - [SMALL_STATE(6256)] = 221972, - [SMALL_STATE(6257)] = 221994, - [SMALL_STATE(6258)] = 222010, - [SMALL_STATE(6259)] = 222032, - [SMALL_STATE(6260)] = 222050, - [SMALL_STATE(6261)] = 222066, - [SMALL_STATE(6262)] = 222088, - [SMALL_STATE(6263)] = 222110, - [SMALL_STATE(6264)] = 222132, - [SMALL_STATE(6265)] = 222152, - [SMALL_STATE(6266)] = 222168, - [SMALL_STATE(6267)] = 222190, - [SMALL_STATE(6268)] = 222212, - [SMALL_STATE(6269)] = 222228, - [SMALL_STATE(6270)] = 222246, - [SMALL_STATE(6271)] = 222268, - [SMALL_STATE(6272)] = 222290, - [SMALL_STATE(6273)] = 222306, - [SMALL_STATE(6274)] = 222326, - [SMALL_STATE(6275)] = 222342, - [SMALL_STATE(6276)] = 222364, - [SMALL_STATE(6277)] = 222380, - [SMALL_STATE(6278)] = 222398, - [SMALL_STATE(6279)] = 222416, - [SMALL_STATE(6280)] = 222434, - [SMALL_STATE(6281)] = 222454, - [SMALL_STATE(6282)] = 222468, - [SMALL_STATE(6283)] = 222482, - [SMALL_STATE(6284)] = 222500, - [SMALL_STATE(6285)] = 222518, - [SMALL_STATE(6286)] = 222536, - [SMALL_STATE(6287)] = 222558, - [SMALL_STATE(6288)] = 222578, - [SMALL_STATE(6289)] = 222600, - [SMALL_STATE(6290)] = 222622, - [SMALL_STATE(6291)] = 222644, - [SMALL_STATE(6292)] = 222660, - [SMALL_STATE(6293)] = 222676, - [SMALL_STATE(6294)] = 222694, - [SMALL_STATE(6295)] = 222712, - [SMALL_STATE(6296)] = 222730, - [SMALL_STATE(6297)] = 222752, - [SMALL_STATE(6298)] = 222774, - [SMALL_STATE(6299)] = 222796, - [SMALL_STATE(6300)] = 222818, - [SMALL_STATE(6301)] = 222836, - [SMALL_STATE(6302)] = 222852, - [SMALL_STATE(6303)] = 222870, - [SMALL_STATE(6304)] = 222892, - [SMALL_STATE(6305)] = 222914, - [SMALL_STATE(6306)] = 222932, - [SMALL_STATE(6307)] = 222950, - [SMALL_STATE(6308)] = 222972, - [SMALL_STATE(6309)] = 222994, - [SMALL_STATE(6310)] = 223010, - [SMALL_STATE(6311)] = 223032, - [SMALL_STATE(6312)] = 223048, - [SMALL_STATE(6313)] = 223068, - [SMALL_STATE(6314)] = 223090, - [SMALL_STATE(6315)] = 223112, - [SMALL_STATE(6316)] = 223134, - [SMALL_STATE(6317)] = 223156, - [SMALL_STATE(6318)] = 223176, - [SMALL_STATE(6319)] = 223198, - [SMALL_STATE(6320)] = 223220, - [SMALL_STATE(6321)] = 223242, - [SMALL_STATE(6322)] = 223260, - [SMALL_STATE(6323)] = 223282, - [SMALL_STATE(6324)] = 223304, - [SMALL_STATE(6325)] = 223324, - [SMALL_STATE(6326)] = 223342, - [SMALL_STATE(6327)] = 223364, - [SMALL_STATE(6328)] = 223386, - [SMALL_STATE(6329)] = 223408, - [SMALL_STATE(6330)] = 223430, - [SMALL_STATE(6331)] = 223452, - [SMALL_STATE(6332)] = 223474, - [SMALL_STATE(6333)] = 223496, - [SMALL_STATE(6334)] = 223518, - [SMALL_STATE(6335)] = 223540, - [SMALL_STATE(6336)] = 223562, - [SMALL_STATE(6337)] = 223584, - [SMALL_STATE(6338)] = 223606, - [SMALL_STATE(6339)] = 223620, - [SMALL_STATE(6340)] = 223642, - [SMALL_STATE(6341)] = 223664, - [SMALL_STATE(6342)] = 223678, - [SMALL_STATE(6343)] = 223700, - [SMALL_STATE(6344)] = 223722, - [SMALL_STATE(6345)] = 223744, - [SMALL_STATE(6346)] = 223766, - [SMALL_STATE(6347)] = 223784, - [SMALL_STATE(6348)] = 223806, - [SMALL_STATE(6349)] = 223828, - [SMALL_STATE(6350)] = 223846, - [SMALL_STATE(6351)] = 223868, - [SMALL_STATE(6352)] = 223890, - [SMALL_STATE(6353)] = 223908, - [SMALL_STATE(6354)] = 223930, - [SMALL_STATE(6355)] = 223952, - [SMALL_STATE(6356)] = 223974, - [SMALL_STATE(6357)] = 223996, - [SMALL_STATE(6358)] = 224018, - [SMALL_STATE(6359)] = 224040, - [SMALL_STATE(6360)] = 224062, - [SMALL_STATE(6361)] = 224084, - [SMALL_STATE(6362)] = 224106, - [SMALL_STATE(6363)] = 224128, - [SMALL_STATE(6364)] = 224150, - [SMALL_STATE(6365)] = 224172, - [SMALL_STATE(6366)] = 224194, - [SMALL_STATE(6367)] = 224216, - [SMALL_STATE(6368)] = 224238, - [SMALL_STATE(6369)] = 224260, - [SMALL_STATE(6370)] = 224282, - [SMALL_STATE(6371)] = 224304, - [SMALL_STATE(6372)] = 224326, - [SMALL_STATE(6373)] = 224348, - [SMALL_STATE(6374)] = 224370, - [SMALL_STATE(6375)] = 224392, - [SMALL_STATE(6376)] = 224410, - [SMALL_STATE(6377)] = 224428, - [SMALL_STATE(6378)] = 224446, - [SMALL_STATE(6379)] = 224464, - [SMALL_STATE(6380)] = 224482, - [SMALL_STATE(6381)] = 224498, - [SMALL_STATE(6382)] = 224516, - [SMALL_STATE(6383)] = 224536, - [SMALL_STATE(6384)] = 224558, - [SMALL_STATE(6385)] = 224580, - [SMALL_STATE(6386)] = 224595, - [SMALL_STATE(6387)] = 224614, - [SMALL_STATE(6388)] = 224631, - [SMALL_STATE(6389)] = 224650, - [SMALL_STATE(6390)] = 224669, - [SMALL_STATE(6391)] = 224688, - [SMALL_STATE(6392)] = 224701, - [SMALL_STATE(6393)] = 224720, - [SMALL_STATE(6394)] = 224739, - [SMALL_STATE(6395)] = 224758, - [SMALL_STATE(6396)] = 224777, - [SMALL_STATE(6397)] = 224796, - [SMALL_STATE(6398)] = 224815, - [SMALL_STATE(6399)] = 224834, - [SMALL_STATE(6400)] = 224853, - [SMALL_STATE(6401)] = 224870, - [SMALL_STATE(6402)] = 224883, - [SMALL_STATE(6403)] = 224896, - [SMALL_STATE(6404)] = 224913, - [SMALL_STATE(6405)] = 224926, - [SMALL_STATE(6406)] = 224945, - [SMALL_STATE(6407)] = 224962, - [SMALL_STATE(6408)] = 224981, - [SMALL_STATE(6409)] = 225000, - [SMALL_STATE(6410)] = 225013, - [SMALL_STATE(6411)] = 225030, - [SMALL_STATE(6412)] = 225047, - [SMALL_STATE(6413)] = 225066, - [SMALL_STATE(6414)] = 225081, - [SMALL_STATE(6415)] = 225094, - [SMALL_STATE(6416)] = 225109, - [SMALL_STATE(6417)] = 225122, - [SMALL_STATE(6418)] = 225141, - [SMALL_STATE(6419)] = 225156, - [SMALL_STATE(6420)] = 225169, - [SMALL_STATE(6421)] = 225188, - [SMALL_STATE(6422)] = 225207, - [SMALL_STATE(6423)] = 225226, - [SMALL_STATE(6424)] = 225245, - [SMALL_STATE(6425)] = 225264, - [SMALL_STATE(6426)] = 225283, - [SMALL_STATE(6427)] = 225302, - [SMALL_STATE(6428)] = 225321, - [SMALL_STATE(6429)] = 225334, - [SMALL_STATE(6430)] = 225349, - [SMALL_STATE(6431)] = 225364, - [SMALL_STATE(6432)] = 225377, - [SMALL_STATE(6433)] = 225390, - [SMALL_STATE(6434)] = 225407, - [SMALL_STATE(6435)] = 225426, - [SMALL_STATE(6436)] = 225439, - [SMALL_STATE(6437)] = 225458, - [SMALL_STATE(6438)] = 225475, - [SMALL_STATE(6439)] = 225488, - [SMALL_STATE(6440)] = 225507, - [SMALL_STATE(6441)] = 225524, - [SMALL_STATE(6442)] = 225543, - [SMALL_STATE(6443)] = 225560, - [SMALL_STATE(6444)] = 225573, - [SMALL_STATE(6445)] = 225592, - [SMALL_STATE(6446)] = 225611, - [SMALL_STATE(6447)] = 225630, - [SMALL_STATE(6448)] = 225649, - [SMALL_STATE(6449)] = 225668, - [SMALL_STATE(6450)] = 225687, - [SMALL_STATE(6451)] = 225706, - [SMALL_STATE(6452)] = 225725, - [SMALL_STATE(6453)] = 225738, - [SMALL_STATE(6454)] = 225757, - [SMALL_STATE(6455)] = 225770, - [SMALL_STATE(6456)] = 225783, - [SMALL_STATE(6457)] = 225800, - [SMALL_STATE(6458)] = 225819, - [SMALL_STATE(6459)] = 225838, - [SMALL_STATE(6460)] = 225855, - [SMALL_STATE(6461)] = 225874, - [SMALL_STATE(6462)] = 225891, - [SMALL_STATE(6463)] = 225908, - [SMALL_STATE(6464)] = 225927, - [SMALL_STATE(6465)] = 225944, - [SMALL_STATE(6466)] = 225963, - [SMALL_STATE(6467)] = 225982, - [SMALL_STATE(6468)] = 226001, - [SMALL_STATE(6469)] = 226020, - [SMALL_STATE(6470)] = 226039, - [SMALL_STATE(6471)] = 226058, - [SMALL_STATE(6472)] = 226077, - [SMALL_STATE(6473)] = 226096, - [SMALL_STATE(6474)] = 226115, - [SMALL_STATE(6475)] = 226134, - [SMALL_STATE(6476)] = 226153, - [SMALL_STATE(6477)] = 226166, - [SMALL_STATE(6478)] = 226183, - [SMALL_STATE(6479)] = 226202, - [SMALL_STATE(6480)] = 226221, - [SMALL_STATE(6481)] = 226236, - [SMALL_STATE(6482)] = 226253, - [SMALL_STATE(6483)] = 226272, - [SMALL_STATE(6484)] = 226285, - [SMALL_STATE(6485)] = 226302, - [SMALL_STATE(6486)] = 226321, - [SMALL_STATE(6487)] = 226340, - [SMALL_STATE(6488)] = 226359, - [SMALL_STATE(6489)] = 226378, - [SMALL_STATE(6490)] = 226397, - [SMALL_STATE(6491)] = 226416, - [SMALL_STATE(6492)] = 226435, - [SMALL_STATE(6493)] = 226454, - [SMALL_STATE(6494)] = 226473, - [SMALL_STATE(6495)] = 226488, - [SMALL_STATE(6496)] = 226501, - [SMALL_STATE(6497)] = 226514, - [SMALL_STATE(6498)] = 226531, - [SMALL_STATE(6499)] = 226550, - [SMALL_STATE(6500)] = 226569, - [SMALL_STATE(6501)] = 226586, - [SMALL_STATE(6502)] = 226603, - [SMALL_STATE(6503)] = 226616, - [SMALL_STATE(6504)] = 226635, - [SMALL_STATE(6505)] = 226654, - [SMALL_STATE(6506)] = 226673, - [SMALL_STATE(6507)] = 226692, - [SMALL_STATE(6508)] = 226711, - [SMALL_STATE(6509)] = 226730, - [SMALL_STATE(6510)] = 226749, - [SMALL_STATE(6511)] = 226768, - [SMALL_STATE(6512)] = 226787, - [SMALL_STATE(6513)] = 226806, - [SMALL_STATE(6514)] = 226825, - [SMALL_STATE(6515)] = 226838, - [SMALL_STATE(6516)] = 226851, - [SMALL_STATE(6517)] = 226868, - [SMALL_STATE(6518)] = 226887, - [SMALL_STATE(6519)] = 226904, - [SMALL_STATE(6520)] = 226919, - [SMALL_STATE(6521)] = 226936, - [SMALL_STATE(6522)] = 226955, - [SMALL_STATE(6523)] = 226972, - [SMALL_STATE(6524)] = 226985, - [SMALL_STATE(6525)] = 227002, - [SMALL_STATE(6526)] = 227021, - [SMALL_STATE(6527)] = 227040, - [SMALL_STATE(6528)] = 227059, - [SMALL_STATE(6529)] = 227078, - [SMALL_STATE(6530)] = 227097, - [SMALL_STATE(6531)] = 227116, - [SMALL_STATE(6532)] = 227135, - [SMALL_STATE(6533)] = 227154, - [SMALL_STATE(6534)] = 227173, - [SMALL_STATE(6535)] = 227192, - [SMALL_STATE(6536)] = 227205, - [SMALL_STATE(6537)] = 227224, - [SMALL_STATE(6538)] = 227241, - [SMALL_STATE(6539)] = 227260, - [SMALL_STATE(6540)] = 227277, - [SMALL_STATE(6541)] = 227296, - [SMALL_STATE(6542)] = 227311, - [SMALL_STATE(6543)] = 227330, - [SMALL_STATE(6544)] = 227349, - [SMALL_STATE(6545)] = 227368, - [SMALL_STATE(6546)] = 227387, - [SMALL_STATE(6547)] = 227406, - [SMALL_STATE(6548)] = 227425, - [SMALL_STATE(6549)] = 227444, - [SMALL_STATE(6550)] = 227463, - [SMALL_STATE(6551)] = 227476, - [SMALL_STATE(6552)] = 227495, - [SMALL_STATE(6553)] = 227508, - [SMALL_STATE(6554)] = 227525, - [SMALL_STATE(6555)] = 227544, - [SMALL_STATE(6556)] = 227561, - [SMALL_STATE(6557)] = 227574, - [SMALL_STATE(6558)] = 227593, - [SMALL_STATE(6559)] = 227612, - [SMALL_STATE(6560)] = 227631, - [SMALL_STATE(6561)] = 227650, - [SMALL_STATE(6562)] = 227669, - [SMALL_STATE(6563)] = 227688, - [SMALL_STATE(6564)] = 227707, - [SMALL_STATE(6565)] = 227726, - [SMALL_STATE(6566)] = 227745, - [SMALL_STATE(6567)] = 227764, - [SMALL_STATE(6568)] = 227783, - [SMALL_STATE(6569)] = 227796, - [SMALL_STATE(6570)] = 227813, - [SMALL_STATE(6571)] = 227830, - [SMALL_STATE(6572)] = 227849, - [SMALL_STATE(6573)] = 227864, - [SMALL_STATE(6574)] = 227883, - [SMALL_STATE(6575)] = 227902, - [SMALL_STATE(6576)] = 227921, - [SMALL_STATE(6577)] = 227940, - [SMALL_STATE(6578)] = 227959, - [SMALL_STATE(6579)] = 227978, - [SMALL_STATE(6580)] = 227997, - [SMALL_STATE(6581)] = 228016, - [SMALL_STATE(6582)] = 228029, - [SMALL_STATE(6583)] = 228042, - [SMALL_STATE(6584)] = 228059, - [SMALL_STATE(6585)] = 228076, - [SMALL_STATE(6586)] = 228089, - [SMALL_STATE(6587)] = 228108, - [SMALL_STATE(6588)] = 228127, - [SMALL_STATE(6589)] = 228146, - [SMALL_STATE(6590)] = 228165, - [SMALL_STATE(6591)] = 228184, - [SMALL_STATE(6592)] = 228203, - [SMALL_STATE(6593)] = 228222, - [SMALL_STATE(6594)] = 228241, - [SMALL_STATE(6595)] = 228260, - [SMALL_STATE(6596)] = 228273, - [SMALL_STATE(6597)] = 228286, - [SMALL_STATE(6598)] = 228303, - [SMALL_STATE(6599)] = 228320, - [SMALL_STATE(6600)] = 228333, - [SMALL_STATE(6601)] = 228346, - [SMALL_STATE(6602)] = 228363, - [SMALL_STATE(6603)] = 228376, - [SMALL_STATE(6604)] = 228393, - [SMALL_STATE(6605)] = 228406, - [SMALL_STATE(6606)] = 228419, - [SMALL_STATE(6607)] = 228436, - [SMALL_STATE(6608)] = 228453, - [SMALL_STATE(6609)] = 228472, - [SMALL_STATE(6610)] = 228485, - [SMALL_STATE(6611)] = 228502, - [SMALL_STATE(6612)] = 228519, - [SMALL_STATE(6613)] = 228532, - [SMALL_STATE(6614)] = 228545, - [SMALL_STATE(6615)] = 228562, - [SMALL_STATE(6616)] = 228579, - [SMALL_STATE(6617)] = 228592, - [SMALL_STATE(6618)] = 228605, - [SMALL_STATE(6619)] = 228622, - [SMALL_STATE(6620)] = 228639, - [SMALL_STATE(6621)] = 228652, - [SMALL_STATE(6622)] = 228665, - [SMALL_STATE(6623)] = 228682, - [SMALL_STATE(6624)] = 228699, - [SMALL_STATE(6625)] = 228714, - [SMALL_STATE(6626)] = 228727, - [SMALL_STATE(6627)] = 228744, - [SMALL_STATE(6628)] = 228761, - [SMALL_STATE(6629)] = 228780, - [SMALL_STATE(6630)] = 228793, - [SMALL_STATE(6631)] = 228810, - [SMALL_STATE(6632)] = 228827, - [SMALL_STATE(6633)] = 228846, - [SMALL_STATE(6634)] = 228859, - [SMALL_STATE(6635)] = 228876, - [SMALL_STATE(6636)] = 228893, - [SMALL_STATE(6637)] = 228908, - [SMALL_STATE(6638)] = 228921, - [SMALL_STATE(6639)] = 228938, - [SMALL_STATE(6640)] = 228955, - [SMALL_STATE(6641)] = 228974, - [SMALL_STATE(6642)] = 228987, - [SMALL_STATE(6643)] = 229004, - [SMALL_STATE(6644)] = 229021, - [SMALL_STATE(6645)] = 229040, - [SMALL_STATE(6646)] = 229053, - [SMALL_STATE(6647)] = 229070, - [SMALL_STATE(6648)] = 229087, - [SMALL_STATE(6649)] = 229104, - [SMALL_STATE(6650)] = 229117, - [SMALL_STATE(6651)] = 229134, - [SMALL_STATE(6652)] = 229151, - [SMALL_STATE(6653)] = 229170, - [SMALL_STATE(6654)] = 229183, - [SMALL_STATE(6655)] = 229200, - [SMALL_STATE(6656)] = 229217, - [SMALL_STATE(6657)] = 229234, - [SMALL_STATE(6658)] = 229247, - [SMALL_STATE(6659)] = 229264, - [SMALL_STATE(6660)] = 229281, - [SMALL_STATE(6661)] = 229300, - [SMALL_STATE(6662)] = 229313, - [SMALL_STATE(6663)] = 229330, - [SMALL_STATE(6664)] = 229347, - [SMALL_STATE(6665)] = 229366, - [SMALL_STATE(6666)] = 229379, - [SMALL_STATE(6667)] = 229396, - [SMALL_STATE(6668)] = 229413, - [SMALL_STATE(6669)] = 229432, - [SMALL_STATE(6670)] = 229445, - [SMALL_STATE(6671)] = 229462, - [SMALL_STATE(6672)] = 229479, - [SMALL_STATE(6673)] = 229498, - [SMALL_STATE(6674)] = 229511, - [SMALL_STATE(6675)] = 229528, - [SMALL_STATE(6676)] = 229545, - [SMALL_STATE(6677)] = 229560, - [SMALL_STATE(6678)] = 229573, - [SMALL_STATE(6679)] = 229590, - [SMALL_STATE(6680)] = 229607, - [SMALL_STATE(6681)] = 229626, - [SMALL_STATE(6682)] = 229639, - [SMALL_STATE(6683)] = 229656, - [SMALL_STATE(6684)] = 229673, - [SMALL_STATE(6685)] = 229690, - [SMALL_STATE(6686)] = 229703, - [SMALL_STATE(6687)] = 229720, - [SMALL_STATE(6688)] = 229737, - [SMALL_STATE(6689)] = 229750, - [SMALL_STATE(6690)] = 229763, - [SMALL_STATE(6691)] = 229780, - [SMALL_STATE(6692)] = 229797, - [SMALL_STATE(6693)] = 229810, - [SMALL_STATE(6694)] = 229823, - [SMALL_STATE(6695)] = 229840, - [SMALL_STATE(6696)] = 229857, - [SMALL_STATE(6697)] = 229876, - [SMALL_STATE(6698)] = 229889, - [SMALL_STATE(6699)] = 229906, - [SMALL_STATE(6700)] = 229923, - [SMALL_STATE(6701)] = 229942, - [SMALL_STATE(6702)] = 229961, - [SMALL_STATE(6703)] = 229978, - [SMALL_STATE(6704)] = 229995, - [SMALL_STATE(6705)] = 230008, - [SMALL_STATE(6706)] = 230025, - [SMALL_STATE(6707)] = 230042, - [SMALL_STATE(6708)] = 230055, - [SMALL_STATE(6709)] = 230072, - [SMALL_STATE(6710)] = 230089, - [SMALL_STATE(6711)] = 230102, - [SMALL_STATE(6712)] = 230119, - [SMALL_STATE(6713)] = 230136, - [SMALL_STATE(6714)] = 230153, - [SMALL_STATE(6715)] = 230170, - [SMALL_STATE(6716)] = 230187, - [SMALL_STATE(6717)] = 230204, - [SMALL_STATE(6718)] = 230221, - [SMALL_STATE(6719)] = 230238, - [SMALL_STATE(6720)] = 230255, - [SMALL_STATE(6721)] = 230272, - [SMALL_STATE(6722)] = 230289, - [SMALL_STATE(6723)] = 230302, - [SMALL_STATE(6724)] = 230321, - [SMALL_STATE(6725)] = 230336, - [SMALL_STATE(6726)] = 230355, - [SMALL_STATE(6727)] = 230372, - [SMALL_STATE(6728)] = 230387, - [SMALL_STATE(6729)] = 230400, - [SMALL_STATE(6730)] = 230415, - [SMALL_STATE(6731)] = 230434, - [SMALL_STATE(6732)] = 230449, - [SMALL_STATE(6733)] = 230468, - [SMALL_STATE(6734)] = 230487, - [SMALL_STATE(6735)] = 230500, - [SMALL_STATE(6736)] = 230513, - [SMALL_STATE(6737)] = 230526, - [SMALL_STATE(6738)] = 230539, - [SMALL_STATE(6739)] = 230558, - [SMALL_STATE(6740)] = 230571, - [SMALL_STATE(6741)] = 230584, - [SMALL_STATE(6742)] = 230603, - [SMALL_STATE(6743)] = 230620, - [SMALL_STATE(6744)] = 230639, - [SMALL_STATE(6745)] = 230658, - [SMALL_STATE(6746)] = 230677, - [SMALL_STATE(6747)] = 230696, - [SMALL_STATE(6748)] = 230715, - [SMALL_STATE(6749)] = 230734, - [SMALL_STATE(6750)] = 230753, - [SMALL_STATE(6751)] = 230766, - [SMALL_STATE(6752)] = 230779, - [SMALL_STATE(6753)] = 230792, - [SMALL_STATE(6754)] = 230811, - [SMALL_STATE(6755)] = 230824, - [SMALL_STATE(6756)] = 230837, - [SMALL_STATE(6757)] = 230850, - [SMALL_STATE(6758)] = 230863, - [SMALL_STATE(6759)] = 230876, - [SMALL_STATE(6760)] = 230895, - [SMALL_STATE(6761)] = 230908, - [SMALL_STATE(6762)] = 230921, - [SMALL_STATE(6763)] = 230938, - [SMALL_STATE(6764)] = 230951, - [SMALL_STATE(6765)] = 230964, - [SMALL_STATE(6766)] = 230977, - [SMALL_STATE(6767)] = 230992, - [SMALL_STATE(6768)] = 231005, - [SMALL_STATE(6769)] = 231018, - [SMALL_STATE(6770)] = 231035, - [SMALL_STATE(6771)] = 231050, - [SMALL_STATE(6772)] = 231067, - [SMALL_STATE(6773)] = 231086, - [SMALL_STATE(6774)] = 231099, - [SMALL_STATE(6775)] = 231112, - [SMALL_STATE(6776)] = 231125, - [SMALL_STATE(6777)] = 231142, - [SMALL_STATE(6778)] = 231159, - [SMALL_STATE(6779)] = 231172, - [SMALL_STATE(6780)] = 231185, - [SMALL_STATE(6781)] = 231200, - [SMALL_STATE(6782)] = 231215, - [SMALL_STATE(6783)] = 231228, - [SMALL_STATE(6784)] = 231247, - [SMALL_STATE(6785)] = 231264, - [SMALL_STATE(6786)] = 231281, - [SMALL_STATE(6787)] = 231296, - [SMALL_STATE(6788)] = 231311, - [SMALL_STATE(6789)] = 231328, - [SMALL_STATE(6790)] = 231343, - [SMALL_STATE(6791)] = 231360, - [SMALL_STATE(6792)] = 231377, - [SMALL_STATE(6793)] = 231392, - [SMALL_STATE(6794)] = 231411, - [SMALL_STATE(6795)] = 231424, - [SMALL_STATE(6796)] = 231443, - [SMALL_STATE(6797)] = 231462, - [SMALL_STATE(6798)] = 231481, - [SMALL_STATE(6799)] = 231500, - [SMALL_STATE(6800)] = 231519, - [SMALL_STATE(6801)] = 231538, - [SMALL_STATE(6802)] = 231557, - [SMALL_STATE(6803)] = 231574, - [SMALL_STATE(6804)] = 231593, - [SMALL_STATE(6805)] = 231610, - [SMALL_STATE(6806)] = 231627, - [SMALL_STATE(6807)] = 231646, - [SMALL_STATE(6808)] = 231663, - [SMALL_STATE(6809)] = 231682, - [SMALL_STATE(6810)] = 231701, - [SMALL_STATE(6811)] = 231720, - [SMALL_STATE(6812)] = 231733, - [SMALL_STATE(6813)] = 231746, - [SMALL_STATE(6814)] = 231759, - [SMALL_STATE(6815)] = 231772, - [SMALL_STATE(6816)] = 231791, - [SMALL_STATE(6817)] = 231810, - [SMALL_STATE(6818)] = 231829, - [SMALL_STATE(6819)] = 231848, - [SMALL_STATE(6820)] = 231867, - [SMALL_STATE(6821)] = 231886, - [SMALL_STATE(6822)] = 231905, - [SMALL_STATE(6823)] = 231924, - [SMALL_STATE(6824)] = 231943, - [SMALL_STATE(6825)] = 231962, - [SMALL_STATE(6826)] = 231975, - [SMALL_STATE(6827)] = 231988, - [SMALL_STATE(6828)] = 232001, - [SMALL_STATE(6829)] = 232014, - [SMALL_STATE(6830)] = 232027, - [SMALL_STATE(6831)] = 232040, - [SMALL_STATE(6832)] = 232059, - [SMALL_STATE(6833)] = 232078, - [SMALL_STATE(6834)] = 232097, - [SMALL_STATE(6835)] = 232110, - [SMALL_STATE(6836)] = 232127, - [SMALL_STATE(6837)] = 232140, - [SMALL_STATE(6838)] = 232153, - [SMALL_STATE(6839)] = 232166, - [SMALL_STATE(6840)] = 232185, - [SMALL_STATE(6841)] = 232204, - [SMALL_STATE(6842)] = 232221, - [SMALL_STATE(6843)] = 232238, - [SMALL_STATE(6844)] = 232255, - [SMALL_STATE(6845)] = 232272, - [SMALL_STATE(6846)] = 232291, - [SMALL_STATE(6847)] = 232310, - [SMALL_STATE(6848)] = 232329, - [SMALL_STATE(6849)] = 232344, - [SMALL_STATE(6850)] = 232357, - [SMALL_STATE(6851)] = 232374, - [SMALL_STATE(6852)] = 232393, - [SMALL_STATE(6853)] = 232408, - [SMALL_STATE(6854)] = 232421, - [SMALL_STATE(6855)] = 232434, - [SMALL_STATE(6856)] = 232447, - [SMALL_STATE(6857)] = 232462, - [SMALL_STATE(6858)] = 232479, - [SMALL_STATE(6859)] = 232492, - [SMALL_STATE(6860)] = 232509, - [SMALL_STATE(6861)] = 232522, - [SMALL_STATE(6862)] = 232539, - [SMALL_STATE(6863)] = 232558, - [SMALL_STATE(6864)] = 232573, - [SMALL_STATE(6865)] = 232592, - [SMALL_STATE(6866)] = 232611, - [SMALL_STATE(6867)] = 232630, - [SMALL_STATE(6868)] = 232649, - [SMALL_STATE(6869)] = 232668, - [SMALL_STATE(6870)] = 232687, - [SMALL_STATE(6871)] = 232706, - [SMALL_STATE(6872)] = 232725, - [SMALL_STATE(6873)] = 232742, - [SMALL_STATE(6874)] = 232761, - [SMALL_STATE(6875)] = 232780, - [SMALL_STATE(6876)] = 232799, - [SMALL_STATE(6877)] = 232814, - [SMALL_STATE(6878)] = 232833, - [SMALL_STATE(6879)] = 232852, - [SMALL_STATE(6880)] = 232867, - [SMALL_STATE(6881)] = 232886, - [SMALL_STATE(6882)] = 232901, - [SMALL_STATE(6883)] = 232916, - [SMALL_STATE(6884)] = 232929, - [SMALL_STATE(6885)] = 232946, - [SMALL_STATE(6886)] = 232963, - [SMALL_STATE(6887)] = 232976, - [SMALL_STATE(6888)] = 232991, - [SMALL_STATE(6889)] = 233006, - [SMALL_STATE(6890)] = 233025, - [SMALL_STATE(6891)] = 233044, - [SMALL_STATE(6892)] = 233057, - [SMALL_STATE(6893)] = 233074, - [SMALL_STATE(6894)] = 233087, - [SMALL_STATE(6895)] = 233100, - [SMALL_STATE(6896)] = 233113, - [SMALL_STATE(6897)] = 233128, - [SMALL_STATE(6898)] = 233141, - [SMALL_STATE(6899)] = 233154, - [SMALL_STATE(6900)] = 233171, - [SMALL_STATE(6901)] = 233190, - [SMALL_STATE(6902)] = 233209, - [SMALL_STATE(6903)] = 233228, - [SMALL_STATE(6904)] = 233247, - [SMALL_STATE(6905)] = 233266, - [SMALL_STATE(6906)] = 233279, - [SMALL_STATE(6907)] = 233292, - [SMALL_STATE(6908)] = 233305, - [SMALL_STATE(6909)] = 233324, - [SMALL_STATE(6910)] = 233341, - [SMALL_STATE(6911)] = 233354, - [SMALL_STATE(6912)] = 233373, - [SMALL_STATE(6913)] = 233392, - [SMALL_STATE(6914)] = 233409, - [SMALL_STATE(6915)] = 233426, - [SMALL_STATE(6916)] = 233439, - [SMALL_STATE(6917)] = 233452, - [SMALL_STATE(6918)] = 233471, - [SMALL_STATE(6919)] = 233490, - [SMALL_STATE(6920)] = 233509, - [SMALL_STATE(6921)] = 233526, - [SMALL_STATE(6922)] = 233545, - [SMALL_STATE(6923)] = 233558, - [SMALL_STATE(6924)] = 233577, - [SMALL_STATE(6925)] = 233590, - [SMALL_STATE(6926)] = 233609, - [SMALL_STATE(6927)] = 233622, - [SMALL_STATE(6928)] = 233635, - [SMALL_STATE(6929)] = 233652, - [SMALL_STATE(6930)] = 233665, - [SMALL_STATE(6931)] = 233680, - [SMALL_STATE(6932)] = 233697, - [SMALL_STATE(6933)] = 233716, - [SMALL_STATE(6934)] = 233729, - [SMALL_STATE(6935)] = 233742, - [SMALL_STATE(6936)] = 233755, - [SMALL_STATE(6937)] = 233768, - [SMALL_STATE(6938)] = 233783, - [SMALL_STATE(6939)] = 233796, - [SMALL_STATE(6940)] = 233809, - [SMALL_STATE(6941)] = 233822, - [SMALL_STATE(6942)] = 233841, - [SMALL_STATE(6943)] = 233858, - [SMALL_STATE(6944)] = 233875, - [SMALL_STATE(6945)] = 233894, - [SMALL_STATE(6946)] = 233913, - [SMALL_STATE(6947)] = 233926, - [SMALL_STATE(6948)] = 233940, - [SMALL_STATE(6949)] = 233956, - [SMALL_STATE(6950)] = 233968, - [SMALL_STATE(6951)] = 233980, - [SMALL_STATE(6952)] = 233992, - [SMALL_STATE(6953)] = 234004, - [SMALL_STATE(6954)] = 234016, - [SMALL_STATE(6955)] = 234032, - [SMALL_STATE(6956)] = 234048, - [SMALL_STATE(6957)] = 234060, - [SMALL_STATE(6958)] = 234072, - [SMALL_STATE(6959)] = 234084, - [SMALL_STATE(6960)] = 234100, - [SMALL_STATE(6961)] = 234116, - [SMALL_STATE(6962)] = 234128, - [SMALL_STATE(6963)] = 234144, - [SMALL_STATE(6964)] = 234158, - [SMALL_STATE(6965)] = 234174, - [SMALL_STATE(6966)] = 234190, - [SMALL_STATE(6967)] = 234206, - [SMALL_STATE(6968)] = 234222, - [SMALL_STATE(6969)] = 234238, - [SMALL_STATE(6970)] = 234254, - [SMALL_STATE(6971)] = 234268, - [SMALL_STATE(6972)] = 234282, - [SMALL_STATE(6973)] = 234298, - [SMALL_STATE(6974)] = 234314, - [SMALL_STATE(6975)] = 234330, - [SMALL_STATE(6976)] = 234342, - [SMALL_STATE(6977)] = 234358, - [SMALL_STATE(6978)] = 234374, - [SMALL_STATE(6979)] = 234386, - [SMALL_STATE(6980)] = 234402, - [SMALL_STATE(6981)] = 234418, - [SMALL_STATE(6982)] = 234430, - [SMALL_STATE(6983)] = 234446, - [SMALL_STATE(6984)] = 234462, - [SMALL_STATE(6985)] = 234478, - [SMALL_STATE(6986)] = 234494, - [SMALL_STATE(6987)] = 234510, - [SMALL_STATE(6988)] = 234524, - [SMALL_STATE(6989)] = 234536, - [SMALL_STATE(6990)] = 234552, - [SMALL_STATE(6991)] = 234568, - [SMALL_STATE(6992)] = 234584, - [SMALL_STATE(6993)] = 234600, - [SMALL_STATE(6994)] = 234616, - [SMALL_STATE(6995)] = 234628, - [SMALL_STATE(6996)] = 234644, - [SMALL_STATE(6997)] = 234660, - [SMALL_STATE(6998)] = 234676, - [SMALL_STATE(6999)] = 234692, - [SMALL_STATE(7000)] = 234708, - [SMALL_STATE(7001)] = 234720, - [SMALL_STATE(7002)] = 234732, - [SMALL_STATE(7003)] = 234748, - [SMALL_STATE(7004)] = 234760, - [SMALL_STATE(7005)] = 234776, - [SMALL_STATE(7006)] = 234788, - [SMALL_STATE(7007)] = 234800, - [SMALL_STATE(7008)] = 234816, - [SMALL_STATE(7009)] = 234832, - [SMALL_STATE(7010)] = 234844, - [SMALL_STATE(7011)] = 234860, - [SMALL_STATE(7012)] = 234876, - [SMALL_STATE(7013)] = 234888, - [SMALL_STATE(7014)] = 234900, - [SMALL_STATE(7015)] = 234914, - [SMALL_STATE(7016)] = 234930, - [SMALL_STATE(7017)] = 234946, - [SMALL_STATE(7018)] = 234962, - [SMALL_STATE(7019)] = 234978, - [SMALL_STATE(7020)] = 234994, - [SMALL_STATE(7021)] = 235010, - [SMALL_STATE(7022)] = 235026, - [SMALL_STATE(7023)] = 235042, - [SMALL_STATE(7024)] = 235058, - [SMALL_STATE(7025)] = 235072, - [SMALL_STATE(7026)] = 235088, - [SMALL_STATE(7027)] = 235104, - [SMALL_STATE(7028)] = 235120, - [SMALL_STATE(7029)] = 235134, - [SMALL_STATE(7030)] = 235146, - [SMALL_STATE(7031)] = 235158, - [SMALL_STATE(7032)] = 235172, - [SMALL_STATE(7033)] = 235184, - [SMALL_STATE(7034)] = 235198, - [SMALL_STATE(7035)] = 235214, - [SMALL_STATE(7036)] = 235230, - [SMALL_STATE(7037)] = 235246, - [SMALL_STATE(7038)] = 235262, - [SMALL_STATE(7039)] = 235278, - [SMALL_STATE(7040)] = 235294, - [SMALL_STATE(7041)] = 235310, - [SMALL_STATE(7042)] = 235326, - [SMALL_STATE(7043)] = 235342, - [SMALL_STATE(7044)] = 235358, - [SMALL_STATE(7045)] = 235374, - [SMALL_STATE(7046)] = 235390, - [SMALL_STATE(7047)] = 235402, - [SMALL_STATE(7048)] = 235418, - [SMALL_STATE(7049)] = 235434, - [SMALL_STATE(7050)] = 235450, - [SMALL_STATE(7051)] = 235466, - [SMALL_STATE(7052)] = 235482, - [SMALL_STATE(7053)] = 235498, - [SMALL_STATE(7054)] = 235512, - [SMALL_STATE(7055)] = 235526, - [SMALL_STATE(7056)] = 235542, - [SMALL_STATE(7057)] = 235554, - [SMALL_STATE(7058)] = 235566, - [SMALL_STATE(7059)] = 235578, - [SMALL_STATE(7060)] = 235594, - [SMALL_STATE(7061)] = 235610, - [SMALL_STATE(7062)] = 235624, - [SMALL_STATE(7063)] = 235640, - [SMALL_STATE(7064)] = 235656, - [SMALL_STATE(7065)] = 235672, - [SMALL_STATE(7066)] = 235684, - [SMALL_STATE(7067)] = 235700, - [SMALL_STATE(7068)] = 235716, - [SMALL_STATE(7069)] = 235732, - [SMALL_STATE(7070)] = 235748, - [SMALL_STATE(7071)] = 235764, - [SMALL_STATE(7072)] = 235780, - [SMALL_STATE(7073)] = 235796, - [SMALL_STATE(7074)] = 235808, - [SMALL_STATE(7075)] = 235824, - [SMALL_STATE(7076)] = 235840, - [SMALL_STATE(7077)] = 235852, - [SMALL_STATE(7078)] = 235864, - [SMALL_STATE(7079)] = 235880, - [SMALL_STATE(7080)] = 235892, - [SMALL_STATE(7081)] = 235908, - [SMALL_STATE(7082)] = 235924, - [SMALL_STATE(7083)] = 235936, - [SMALL_STATE(7084)] = 235948, - [SMALL_STATE(7085)] = 235964, - [SMALL_STATE(7086)] = 235978, - [SMALL_STATE(7087)] = 235994, - [SMALL_STATE(7088)] = 236010, - [SMALL_STATE(7089)] = 236022, - [SMALL_STATE(7090)] = 236038, - [SMALL_STATE(7091)] = 236054, - [SMALL_STATE(7092)] = 236070, - [SMALL_STATE(7093)] = 236082, - [SMALL_STATE(7094)] = 236098, - [SMALL_STATE(7095)] = 236112, - [SMALL_STATE(7096)] = 236128, - [SMALL_STATE(7097)] = 236144, - [SMALL_STATE(7098)] = 236160, - [SMALL_STATE(7099)] = 236176, - [SMALL_STATE(7100)] = 236188, - [SMALL_STATE(7101)] = 236204, - [SMALL_STATE(7102)] = 236220, - [SMALL_STATE(7103)] = 236236, - [SMALL_STATE(7104)] = 236248, - [SMALL_STATE(7105)] = 236264, - [SMALL_STATE(7106)] = 236280, - [SMALL_STATE(7107)] = 236296, - [SMALL_STATE(7108)] = 236312, - [SMALL_STATE(7109)] = 236328, - [SMALL_STATE(7110)] = 236344, - [SMALL_STATE(7111)] = 236360, - [SMALL_STATE(7112)] = 236376, - [SMALL_STATE(7113)] = 236390, - [SMALL_STATE(7114)] = 236406, - [SMALL_STATE(7115)] = 236422, - [SMALL_STATE(7116)] = 236438, - [SMALL_STATE(7117)] = 236454, - [SMALL_STATE(7118)] = 236466, - [SMALL_STATE(7119)] = 236478, - [SMALL_STATE(7120)] = 236490, - [SMALL_STATE(7121)] = 236502, - [SMALL_STATE(7122)] = 236518, - [SMALL_STATE(7123)] = 236534, - [SMALL_STATE(7124)] = 236550, - [SMALL_STATE(7125)] = 236562, - [SMALL_STATE(7126)] = 236574, - [SMALL_STATE(7127)] = 236586, - [SMALL_STATE(7128)] = 236602, - [SMALL_STATE(7129)] = 236618, - [SMALL_STATE(7130)] = 236630, - [SMALL_STATE(7131)] = 236646, - [SMALL_STATE(7132)] = 236662, - [SMALL_STATE(7133)] = 236678, - [SMALL_STATE(7134)] = 236692, - [SMALL_STATE(7135)] = 236708, - [SMALL_STATE(7136)] = 236724, - [SMALL_STATE(7137)] = 236740, - [SMALL_STATE(7138)] = 236756, - [SMALL_STATE(7139)] = 236772, - [SMALL_STATE(7140)] = 236788, - [SMALL_STATE(7141)] = 236800, - [SMALL_STATE(7142)] = 236816, - [SMALL_STATE(7143)] = 236832, - [SMALL_STATE(7144)] = 236848, - [SMALL_STATE(7145)] = 236864, - [SMALL_STATE(7146)] = 236880, - [SMALL_STATE(7147)] = 236896, - [SMALL_STATE(7148)] = 236912, - [SMALL_STATE(7149)] = 236928, - [SMALL_STATE(7150)] = 236944, - [SMALL_STATE(7151)] = 236960, - [SMALL_STATE(7152)] = 236976, - [SMALL_STATE(7153)] = 236992, - [SMALL_STATE(7154)] = 237008, - [SMALL_STATE(7155)] = 237024, - [SMALL_STATE(7156)] = 237040, - [SMALL_STATE(7157)] = 237056, - [SMALL_STATE(7158)] = 237068, - [SMALL_STATE(7159)] = 237084, - [SMALL_STATE(7160)] = 237100, - [SMALL_STATE(7161)] = 237116, - [SMALL_STATE(7162)] = 237128, - [SMALL_STATE(7163)] = 237142, - [SMALL_STATE(7164)] = 237156, - [SMALL_STATE(7165)] = 237172, - [SMALL_STATE(7166)] = 237188, - [SMALL_STATE(7167)] = 237204, - [SMALL_STATE(7168)] = 237220, - [SMALL_STATE(7169)] = 237236, - [SMALL_STATE(7170)] = 237252, - [SMALL_STATE(7171)] = 237264, - [SMALL_STATE(7172)] = 237280, - [SMALL_STATE(7173)] = 237296, - [SMALL_STATE(7174)] = 237312, - [SMALL_STATE(7175)] = 237328, - [SMALL_STATE(7176)] = 237340, - [SMALL_STATE(7177)] = 237356, - [SMALL_STATE(7178)] = 237368, - [SMALL_STATE(7179)] = 237380, - [SMALL_STATE(7180)] = 237396, - [SMALL_STATE(7181)] = 237412, - [SMALL_STATE(7182)] = 237428, - [SMALL_STATE(7183)] = 237440, - [SMALL_STATE(7184)] = 237456, - [SMALL_STATE(7185)] = 237472, - [SMALL_STATE(7186)] = 237488, - [SMALL_STATE(7187)] = 237504, - [SMALL_STATE(7188)] = 237520, - [SMALL_STATE(7189)] = 237536, - [SMALL_STATE(7190)] = 237552, - [SMALL_STATE(7191)] = 237564, - [SMALL_STATE(7192)] = 237580, - [SMALL_STATE(7193)] = 237592, - [SMALL_STATE(7194)] = 237604, - [SMALL_STATE(7195)] = 237620, - [SMALL_STATE(7196)] = 237634, - [SMALL_STATE(7197)] = 237648, - [SMALL_STATE(7198)] = 237664, - [SMALL_STATE(7199)] = 237676, - [SMALL_STATE(7200)] = 237692, - [SMALL_STATE(7201)] = 237708, - [SMALL_STATE(7202)] = 237724, - [SMALL_STATE(7203)] = 237740, - [SMALL_STATE(7204)] = 237756, - [SMALL_STATE(7205)] = 237770, - [SMALL_STATE(7206)] = 237782, - [SMALL_STATE(7207)] = 237798, - [SMALL_STATE(7208)] = 237814, - [SMALL_STATE(7209)] = 237830, - [SMALL_STATE(7210)] = 237842, - [SMALL_STATE(7211)] = 237858, - [SMALL_STATE(7212)] = 237870, - [SMALL_STATE(7213)] = 237882, - [SMALL_STATE(7214)] = 237896, - [SMALL_STATE(7215)] = 237910, - [SMALL_STATE(7216)] = 237926, - [SMALL_STATE(7217)] = 237942, - [SMALL_STATE(7218)] = 237958, - [SMALL_STATE(7219)] = 237974, - [SMALL_STATE(7220)] = 237990, - [SMALL_STATE(7221)] = 238006, - [SMALL_STATE(7222)] = 238022, - [SMALL_STATE(7223)] = 238038, - [SMALL_STATE(7224)] = 238050, - [SMALL_STATE(7225)] = 238066, - [SMALL_STATE(7226)] = 238082, - [SMALL_STATE(7227)] = 238096, - [SMALL_STATE(7228)] = 238112, - [SMALL_STATE(7229)] = 238124, - [SMALL_STATE(7230)] = 238136, - [SMALL_STATE(7231)] = 238148, - [SMALL_STATE(7232)] = 238164, - [SMALL_STATE(7233)] = 238180, - [SMALL_STATE(7234)] = 238196, - [SMALL_STATE(7235)] = 238212, - [SMALL_STATE(7236)] = 238228, - [SMALL_STATE(7237)] = 238244, - [SMALL_STATE(7238)] = 238256, - [SMALL_STATE(7239)] = 238272, - [SMALL_STATE(7240)] = 238288, - [SMALL_STATE(7241)] = 238304, - [SMALL_STATE(7242)] = 238320, - [SMALL_STATE(7243)] = 238336, - [SMALL_STATE(7244)] = 238352, - [SMALL_STATE(7245)] = 238368, - [SMALL_STATE(7246)] = 238384, - [SMALL_STATE(7247)] = 238398, - [SMALL_STATE(7248)] = 238412, - [SMALL_STATE(7249)] = 238424, - [SMALL_STATE(7250)] = 238440, - [SMALL_STATE(7251)] = 238456, - [SMALL_STATE(7252)] = 238472, - [SMALL_STATE(7253)] = 238484, - [SMALL_STATE(7254)] = 238496, - [SMALL_STATE(7255)] = 238508, - [SMALL_STATE(7256)] = 238522, - [SMALL_STATE(7257)] = 238534, - [SMALL_STATE(7258)] = 238550, - [SMALL_STATE(7259)] = 238562, - [SMALL_STATE(7260)] = 238574, - [SMALL_STATE(7261)] = 238586, - [SMALL_STATE(7262)] = 238598, - [SMALL_STATE(7263)] = 238610, - [SMALL_STATE(7264)] = 238624, - [SMALL_STATE(7265)] = 238638, - [SMALL_STATE(7266)] = 238654, - [SMALL_STATE(7267)] = 238670, - [SMALL_STATE(7268)] = 238682, - [SMALL_STATE(7269)] = 238698, - [SMALL_STATE(7270)] = 238714, - [SMALL_STATE(7271)] = 238730, - [SMALL_STATE(7272)] = 238746, - [SMALL_STATE(7273)] = 238758, - [SMALL_STATE(7274)] = 238774, - [SMALL_STATE(7275)] = 238790, - [SMALL_STATE(7276)] = 238802, - [SMALL_STATE(7277)] = 238818, - [SMALL_STATE(7278)] = 238832, - [SMALL_STATE(7279)] = 238844, - [SMALL_STATE(7280)] = 238856, - [SMALL_STATE(7281)] = 238872, - [SMALL_STATE(7282)] = 238888, - [SMALL_STATE(7283)] = 238902, - [SMALL_STATE(7284)] = 238918, - [SMALL_STATE(7285)] = 238934, - [SMALL_STATE(7286)] = 238948, - [SMALL_STATE(7287)] = 238962, - [SMALL_STATE(7288)] = 238978, - [SMALL_STATE(7289)] = 238994, - [SMALL_STATE(7290)] = 239010, - [SMALL_STATE(7291)] = 239026, - [SMALL_STATE(7292)] = 239040, - [SMALL_STATE(7293)] = 239056, - [SMALL_STATE(7294)] = 239072, - [SMALL_STATE(7295)] = 239088, - [SMALL_STATE(7296)] = 239104, - [SMALL_STATE(7297)] = 239118, - [SMALL_STATE(7298)] = 239134, - [SMALL_STATE(7299)] = 239146, - [SMALL_STATE(7300)] = 239162, - [SMALL_STATE(7301)] = 239178, - [SMALL_STATE(7302)] = 239192, - [SMALL_STATE(7303)] = 239204, - [SMALL_STATE(7304)] = 239220, - [SMALL_STATE(7305)] = 239236, - [SMALL_STATE(7306)] = 239252, - [SMALL_STATE(7307)] = 239268, - [SMALL_STATE(7308)] = 239284, - [SMALL_STATE(7309)] = 239300, - [SMALL_STATE(7310)] = 239316, - [SMALL_STATE(7311)] = 239328, - [SMALL_STATE(7312)] = 239344, - [SMALL_STATE(7313)] = 239360, - [SMALL_STATE(7314)] = 239372, - [SMALL_STATE(7315)] = 239388, - [SMALL_STATE(7316)] = 239404, - [SMALL_STATE(7317)] = 239420, - [SMALL_STATE(7318)] = 239432, - [SMALL_STATE(7319)] = 239446, - [SMALL_STATE(7320)] = 239462, - [SMALL_STATE(7321)] = 239474, - [SMALL_STATE(7322)] = 239490, - [SMALL_STATE(7323)] = 239502, - [SMALL_STATE(7324)] = 239514, - [SMALL_STATE(7325)] = 239526, - [SMALL_STATE(7326)] = 239538, - [SMALL_STATE(7327)] = 239550, - [SMALL_STATE(7328)] = 239562, - [SMALL_STATE(7329)] = 239578, - [SMALL_STATE(7330)] = 239594, - [SMALL_STATE(7331)] = 239606, - [SMALL_STATE(7332)] = 239618, - [SMALL_STATE(7333)] = 239634, - [SMALL_STATE(7334)] = 239650, - [SMALL_STATE(7335)] = 239666, - [SMALL_STATE(7336)] = 239678, - [SMALL_STATE(7337)] = 239694, - [SMALL_STATE(7338)] = 239710, - [SMALL_STATE(7339)] = 239722, - [SMALL_STATE(7340)] = 239738, - [SMALL_STATE(7341)] = 239754, - [SMALL_STATE(7342)] = 239766, - [SMALL_STATE(7343)] = 239782, - [SMALL_STATE(7344)] = 239798, - [SMALL_STATE(7345)] = 239814, - [SMALL_STATE(7346)] = 239830, - [SMALL_STATE(7347)] = 239846, - [SMALL_STATE(7348)] = 239862, - [SMALL_STATE(7349)] = 239878, - [SMALL_STATE(7350)] = 239894, - [SMALL_STATE(7351)] = 239910, - [SMALL_STATE(7352)] = 239926, - [SMALL_STATE(7353)] = 239942, - [SMALL_STATE(7354)] = 239958, - [SMALL_STATE(7355)] = 239974, - [SMALL_STATE(7356)] = 239988, - [SMALL_STATE(7357)] = 240002, - [SMALL_STATE(7358)] = 240016, - [SMALL_STATE(7359)] = 240030, - [SMALL_STATE(7360)] = 240042, - [SMALL_STATE(7361)] = 240054, - [SMALL_STATE(7362)] = 240068, - [SMALL_STATE(7363)] = 240084, - [SMALL_STATE(7364)] = 240100, - [SMALL_STATE(7365)] = 240116, - [SMALL_STATE(7366)] = 240132, - [SMALL_STATE(7367)] = 240148, - [SMALL_STATE(7368)] = 240162, - [SMALL_STATE(7369)] = 240178, - [SMALL_STATE(7370)] = 240194, - [SMALL_STATE(7371)] = 240210, - [SMALL_STATE(7372)] = 240222, - [SMALL_STATE(7373)] = 240238, - [SMALL_STATE(7374)] = 240252, - [SMALL_STATE(7375)] = 240268, - [SMALL_STATE(7376)] = 240282, - [SMALL_STATE(7377)] = 240298, - [SMALL_STATE(7378)] = 240314, - [SMALL_STATE(7379)] = 240330, - [SMALL_STATE(7380)] = 240346, - [SMALL_STATE(7381)] = 240360, - [SMALL_STATE(7382)] = 240374, - [SMALL_STATE(7383)] = 240388, - [SMALL_STATE(7384)] = 240404, - [SMALL_STATE(7385)] = 240420, - [SMALL_STATE(7386)] = 240432, - [SMALL_STATE(7387)] = 240448, - [SMALL_STATE(7388)] = 240464, - [SMALL_STATE(7389)] = 240478, - [SMALL_STATE(7390)] = 240492, - [SMALL_STATE(7391)] = 240508, - [SMALL_STATE(7392)] = 240524, - [SMALL_STATE(7393)] = 240536, - [SMALL_STATE(7394)] = 240552, - [SMALL_STATE(7395)] = 240568, - [SMALL_STATE(7396)] = 240584, - [SMALL_STATE(7397)] = 240598, - [SMALL_STATE(7398)] = 240610, - [SMALL_STATE(7399)] = 240624, - [SMALL_STATE(7400)] = 240640, - [SMALL_STATE(7401)] = 240656, - [SMALL_STATE(7402)] = 240672, - [SMALL_STATE(7403)] = 240688, - [SMALL_STATE(7404)] = 240700, - [SMALL_STATE(7405)] = 240714, - [SMALL_STATE(7406)] = 240728, - [SMALL_STATE(7407)] = 240744, - [SMALL_STATE(7408)] = 240760, - [SMALL_STATE(7409)] = 240776, - [SMALL_STATE(7410)] = 240792, - [SMALL_STATE(7411)] = 240804, - [SMALL_STATE(7412)] = 240818, - [SMALL_STATE(7413)] = 240834, - [SMALL_STATE(7414)] = 240848, - [SMALL_STATE(7415)] = 240864, - [SMALL_STATE(7416)] = 240880, - [SMALL_STATE(7417)] = 240896, - [SMALL_STATE(7418)] = 240912, - [SMALL_STATE(7419)] = 240928, - [SMALL_STATE(7420)] = 240942, - [SMALL_STATE(7421)] = 240958, - [SMALL_STATE(7422)] = 240972, - [SMALL_STATE(7423)] = 240988, - [SMALL_STATE(7424)] = 241004, - [SMALL_STATE(7425)] = 241020, - [SMALL_STATE(7426)] = 241036, - [SMALL_STATE(7427)] = 241050, - [SMALL_STATE(7428)] = 241066, - [SMALL_STATE(7429)] = 241080, - [SMALL_STATE(7430)] = 241096, - [SMALL_STATE(7431)] = 241112, - [SMALL_STATE(7432)] = 241124, - [SMALL_STATE(7433)] = 241140, - [SMALL_STATE(7434)] = 241156, - [SMALL_STATE(7435)] = 241170, - [SMALL_STATE(7436)] = 241184, - [SMALL_STATE(7437)] = 241200, - [SMALL_STATE(7438)] = 241216, - [SMALL_STATE(7439)] = 241232, - [SMALL_STATE(7440)] = 241248, - [SMALL_STATE(7441)] = 241264, - [SMALL_STATE(7442)] = 241280, - [SMALL_STATE(7443)] = 241296, - [SMALL_STATE(7444)] = 241310, - [SMALL_STATE(7445)] = 241326, - [SMALL_STATE(7446)] = 241340, - [SMALL_STATE(7447)] = 241356, - [SMALL_STATE(7448)] = 241372, - [SMALL_STATE(7449)] = 241388, - [SMALL_STATE(7450)] = 241404, - [SMALL_STATE(7451)] = 241418, - [SMALL_STATE(7452)] = 241432, - [SMALL_STATE(7453)] = 241448, - [SMALL_STATE(7454)] = 241464, - [SMALL_STATE(7455)] = 241480, - [SMALL_STATE(7456)] = 241492, - [SMALL_STATE(7457)] = 241508, - [SMALL_STATE(7458)] = 241524, - [SMALL_STATE(7459)] = 241540, - [SMALL_STATE(7460)] = 241554, - [SMALL_STATE(7461)] = 241570, - [SMALL_STATE(7462)] = 241586, - [SMALL_STATE(7463)] = 241602, - [SMALL_STATE(7464)] = 241618, - [SMALL_STATE(7465)] = 241634, - [SMALL_STATE(7466)] = 241648, - [SMALL_STATE(7467)] = 241662, - [SMALL_STATE(7468)] = 241678, - [SMALL_STATE(7469)] = 241694, - [SMALL_STATE(7470)] = 241710, - [SMALL_STATE(7471)] = 241726, - [SMALL_STATE(7472)] = 241742, - [SMALL_STATE(7473)] = 241756, - [SMALL_STATE(7474)] = 241770, - [SMALL_STATE(7475)] = 241786, - [SMALL_STATE(7476)] = 241802, - [SMALL_STATE(7477)] = 241818, - [SMALL_STATE(7478)] = 241832, - [SMALL_STATE(7479)] = 241848, - [SMALL_STATE(7480)] = 241864, - [SMALL_STATE(7481)] = 241878, - [SMALL_STATE(7482)] = 241892, - [SMALL_STATE(7483)] = 241906, - [SMALL_STATE(7484)] = 241922, - [SMALL_STATE(7485)] = 241938, - [SMALL_STATE(7486)] = 241954, - [SMALL_STATE(7487)] = 241970, - [SMALL_STATE(7488)] = 241986, - [SMALL_STATE(7489)] = 242000, - [SMALL_STATE(7490)] = 242014, - [SMALL_STATE(7491)] = 242026, - [SMALL_STATE(7492)] = 242042, - [SMALL_STATE(7493)] = 242058, - [SMALL_STATE(7494)] = 242074, - [SMALL_STATE(7495)] = 242090, - [SMALL_STATE(7496)] = 242104, - [SMALL_STATE(7497)] = 242118, - [SMALL_STATE(7498)] = 242134, - [SMALL_STATE(7499)] = 242150, - [SMALL_STATE(7500)] = 242166, - [SMALL_STATE(7501)] = 242182, - [SMALL_STATE(7502)] = 242196, - [SMALL_STATE(7503)] = 242210, - [SMALL_STATE(7504)] = 242222, - [SMALL_STATE(7505)] = 242238, - [SMALL_STATE(7506)] = 242254, - [SMALL_STATE(7507)] = 242270, - [SMALL_STATE(7508)] = 242286, - [SMALL_STATE(7509)] = 242300, - [SMALL_STATE(7510)] = 242314, - [SMALL_STATE(7511)] = 242330, - [SMALL_STATE(7512)] = 242346, - [SMALL_STATE(7513)] = 242362, - [SMALL_STATE(7514)] = 242378, - [SMALL_STATE(7515)] = 242394, - [SMALL_STATE(7516)] = 242410, - [SMALL_STATE(7517)] = 242422, - [SMALL_STATE(7518)] = 242438, - [SMALL_STATE(7519)] = 242454, - [SMALL_STATE(7520)] = 242466, - [SMALL_STATE(7521)] = 242480, - [SMALL_STATE(7522)] = 242496, - [SMALL_STATE(7523)] = 242508, - [SMALL_STATE(7524)] = 242524, - [SMALL_STATE(7525)] = 242540, - [SMALL_STATE(7526)] = 242552, - [SMALL_STATE(7527)] = 242568, - [SMALL_STATE(7528)] = 242582, - [SMALL_STATE(7529)] = 242596, - [SMALL_STATE(7530)] = 242612, - [SMALL_STATE(7531)] = 242628, - [SMALL_STATE(7532)] = 242644, - [SMALL_STATE(7533)] = 242656, - [SMALL_STATE(7534)] = 242672, - [SMALL_STATE(7535)] = 242688, - [SMALL_STATE(7536)] = 242702, - [SMALL_STATE(7537)] = 242718, - [SMALL_STATE(7538)] = 242732, - [SMALL_STATE(7539)] = 242748, - [SMALL_STATE(7540)] = 242764, - [SMALL_STATE(7541)] = 242778, - [SMALL_STATE(7542)] = 242791, - [SMALL_STATE(7543)] = 242804, - [SMALL_STATE(7544)] = 242817, - [SMALL_STATE(7545)] = 242830, - [SMALL_STATE(7546)] = 242841, - [SMALL_STATE(7547)] = 242854, - [SMALL_STATE(7548)] = 242867, - [SMALL_STATE(7549)] = 242880, - [SMALL_STATE(7550)] = 242893, - [SMALL_STATE(7551)] = 242906, - [SMALL_STATE(7552)] = 242919, - [SMALL_STATE(7553)] = 242932, - [SMALL_STATE(7554)] = 242945, - [SMALL_STATE(7555)] = 242958, - [SMALL_STATE(7556)] = 242971, - [SMALL_STATE(7557)] = 242984, - [SMALL_STATE(7558)] = 242997, - [SMALL_STATE(7559)] = 243010, - [SMALL_STATE(7560)] = 243023, - [SMALL_STATE(7561)] = 243036, - [SMALL_STATE(7562)] = 243049, - [SMALL_STATE(7563)] = 243062, - [SMALL_STATE(7564)] = 243073, - [SMALL_STATE(7565)] = 243086, - [SMALL_STATE(7566)] = 243099, - [SMALL_STATE(7567)] = 243112, - [SMALL_STATE(7568)] = 243125, - [SMALL_STATE(7569)] = 243138, - [SMALL_STATE(7570)] = 243151, - [SMALL_STATE(7571)] = 243162, - [SMALL_STATE(7572)] = 243175, - [SMALL_STATE(7573)] = 243188, - [SMALL_STATE(7574)] = 243201, - [SMALL_STATE(7575)] = 243214, - [SMALL_STATE(7576)] = 243227, - [SMALL_STATE(7577)] = 243240, - [SMALL_STATE(7578)] = 243253, - [SMALL_STATE(7579)] = 243266, - [SMALL_STATE(7580)] = 243279, - [SMALL_STATE(7581)] = 243290, - [SMALL_STATE(7582)] = 243301, - [SMALL_STATE(7583)] = 243314, - [SMALL_STATE(7584)] = 243327, - [SMALL_STATE(7585)] = 243340, - [SMALL_STATE(7586)] = 243353, - [SMALL_STATE(7587)] = 243366, - [SMALL_STATE(7588)] = 243379, - [SMALL_STATE(7589)] = 243392, - [SMALL_STATE(7590)] = 243405, - [SMALL_STATE(7591)] = 243418, - [SMALL_STATE(7592)] = 243431, - [SMALL_STATE(7593)] = 243444, - [SMALL_STATE(7594)] = 243457, - [SMALL_STATE(7595)] = 243470, - [SMALL_STATE(7596)] = 243483, - [SMALL_STATE(7597)] = 243496, - [SMALL_STATE(7598)] = 243509, - [SMALL_STATE(7599)] = 243522, - [SMALL_STATE(7600)] = 243535, - [SMALL_STATE(7601)] = 243548, - [SMALL_STATE(7602)] = 243561, - [SMALL_STATE(7603)] = 243574, - [SMALL_STATE(7604)] = 243587, - [SMALL_STATE(7605)] = 243598, - [SMALL_STATE(7606)] = 243611, - [SMALL_STATE(7607)] = 243624, - [SMALL_STATE(7608)] = 243637, - [SMALL_STATE(7609)] = 243650, - [SMALL_STATE(7610)] = 243663, - [SMALL_STATE(7611)] = 243676, - [SMALL_STATE(7612)] = 243689, - [SMALL_STATE(7613)] = 243702, - [SMALL_STATE(7614)] = 243715, - [SMALL_STATE(7615)] = 243726, - [SMALL_STATE(7616)] = 243739, - [SMALL_STATE(7617)] = 243752, - [SMALL_STATE(7618)] = 243765, - [SMALL_STATE(7619)] = 243778, - [SMALL_STATE(7620)] = 243791, - [SMALL_STATE(7621)] = 243804, - [SMALL_STATE(7622)] = 243817, - [SMALL_STATE(7623)] = 243830, - [SMALL_STATE(7624)] = 243843, - [SMALL_STATE(7625)] = 243856, - [SMALL_STATE(7626)] = 243869, - [SMALL_STATE(7627)] = 243882, - [SMALL_STATE(7628)] = 243895, - [SMALL_STATE(7629)] = 243908, - [SMALL_STATE(7630)] = 243921, - [SMALL_STATE(7631)] = 243934, - [SMALL_STATE(7632)] = 243947, - [SMALL_STATE(7633)] = 243958, - [SMALL_STATE(7634)] = 243971, - [SMALL_STATE(7635)] = 243984, - [SMALL_STATE(7636)] = 243997, - [SMALL_STATE(7637)] = 244010, - [SMALL_STATE(7638)] = 244023, - [SMALL_STATE(7639)] = 244036, - [SMALL_STATE(7640)] = 244049, - [SMALL_STATE(7641)] = 244062, - [SMALL_STATE(7642)] = 244075, - [SMALL_STATE(7643)] = 244086, - [SMALL_STATE(7644)] = 244099, - [SMALL_STATE(7645)] = 244112, - [SMALL_STATE(7646)] = 244125, - [SMALL_STATE(7647)] = 244138, - [SMALL_STATE(7648)] = 244151, - [SMALL_STATE(7649)] = 244164, - [SMALL_STATE(7650)] = 244177, - [SMALL_STATE(7651)] = 244190, - [SMALL_STATE(7652)] = 244203, - [SMALL_STATE(7653)] = 244216, - [SMALL_STATE(7654)] = 244229, - [SMALL_STATE(7655)] = 244242, - [SMALL_STATE(7656)] = 244255, - [SMALL_STATE(7657)] = 244268, - [SMALL_STATE(7658)] = 244281, - [SMALL_STATE(7659)] = 244294, - [SMALL_STATE(7660)] = 244307, - [SMALL_STATE(7661)] = 244320, - [SMALL_STATE(7662)] = 244333, - [SMALL_STATE(7663)] = 244346, - [SMALL_STATE(7664)] = 244359, - [SMALL_STATE(7665)] = 244372, - [SMALL_STATE(7666)] = 244385, - [SMALL_STATE(7667)] = 244398, - [SMALL_STATE(7668)] = 244411, - [SMALL_STATE(7669)] = 244424, - [SMALL_STATE(7670)] = 244437, - [SMALL_STATE(7671)] = 244450, - [SMALL_STATE(7672)] = 244463, - [SMALL_STATE(7673)] = 244476, - [SMALL_STATE(7674)] = 244489, - [SMALL_STATE(7675)] = 244502, - [SMALL_STATE(7676)] = 244515, - [SMALL_STATE(7677)] = 244528, - [SMALL_STATE(7678)] = 244541, - [SMALL_STATE(7679)] = 244554, - [SMALL_STATE(7680)] = 244567, - [SMALL_STATE(7681)] = 244580, - [SMALL_STATE(7682)] = 244593, - [SMALL_STATE(7683)] = 244606, - [SMALL_STATE(7684)] = 244619, - [SMALL_STATE(7685)] = 244632, - [SMALL_STATE(7686)] = 244645, - [SMALL_STATE(7687)] = 244658, - [SMALL_STATE(7688)] = 244671, - [SMALL_STATE(7689)] = 244684, - [SMALL_STATE(7690)] = 244697, - [SMALL_STATE(7691)] = 244710, - [SMALL_STATE(7692)] = 244723, - [SMALL_STATE(7693)] = 244736, - [SMALL_STATE(7694)] = 244747, - [SMALL_STATE(7695)] = 244758, - [SMALL_STATE(7696)] = 244771, - [SMALL_STATE(7697)] = 244784, - [SMALL_STATE(7698)] = 244795, - [SMALL_STATE(7699)] = 244808, - [SMALL_STATE(7700)] = 244821, - [SMALL_STATE(7701)] = 244834, - [SMALL_STATE(7702)] = 244847, - [SMALL_STATE(7703)] = 244860, - [SMALL_STATE(7704)] = 244873, - [SMALL_STATE(7705)] = 244886, - [SMALL_STATE(7706)] = 244899, - [SMALL_STATE(7707)] = 244912, - [SMALL_STATE(7708)] = 244925, - [SMALL_STATE(7709)] = 244938, - [SMALL_STATE(7710)] = 244949, - [SMALL_STATE(7711)] = 244962, - [SMALL_STATE(7712)] = 244975, - [SMALL_STATE(7713)] = 244988, - [SMALL_STATE(7714)] = 245001, - [SMALL_STATE(7715)] = 245014, - [SMALL_STATE(7716)] = 245027, - [SMALL_STATE(7717)] = 245040, - [SMALL_STATE(7718)] = 245053, - [SMALL_STATE(7719)] = 245066, - [SMALL_STATE(7720)] = 245079, - [SMALL_STATE(7721)] = 245092, - [SMALL_STATE(7722)] = 245105, - [SMALL_STATE(7723)] = 245118, - [SMALL_STATE(7724)] = 245131, - [SMALL_STATE(7725)] = 245144, - [SMALL_STATE(7726)] = 245157, - [SMALL_STATE(7727)] = 245170, - [SMALL_STATE(7728)] = 245181, - [SMALL_STATE(7729)] = 245191, - [SMALL_STATE(7730)] = 245201, - [SMALL_STATE(7731)] = 245211, - [SMALL_STATE(7732)] = 245221, - [SMALL_STATE(7733)] = 245231, - [SMALL_STATE(7734)] = 245241, - [SMALL_STATE(7735)] = 245251, - [SMALL_STATE(7736)] = 245261, - [SMALL_STATE(7737)] = 245271, - [SMALL_STATE(7738)] = 245281, - [SMALL_STATE(7739)] = 245291, - [SMALL_STATE(7740)] = 245301, - [SMALL_STATE(7741)] = 245311, - [SMALL_STATE(7742)] = 245321, - [SMALL_STATE(7743)] = 245331, - [SMALL_STATE(7744)] = 245341, - [SMALL_STATE(7745)] = 245351, - [SMALL_STATE(7746)] = 245361, - [SMALL_STATE(7747)] = 245371, - [SMALL_STATE(7748)] = 245381, - [SMALL_STATE(7749)] = 245391, - [SMALL_STATE(7750)] = 245401, - [SMALL_STATE(7751)] = 245411, - [SMALL_STATE(7752)] = 245421, - [SMALL_STATE(7753)] = 245431, - [SMALL_STATE(7754)] = 245441, - [SMALL_STATE(7755)] = 245451, - [SMALL_STATE(7756)] = 245461, - [SMALL_STATE(7757)] = 245471, - [SMALL_STATE(7758)] = 245481, - [SMALL_STATE(7759)] = 245491, - [SMALL_STATE(7760)] = 245501, - [SMALL_STATE(7761)] = 245511, - [SMALL_STATE(7762)] = 245521, - [SMALL_STATE(7763)] = 245531, - [SMALL_STATE(7764)] = 245541, - [SMALL_STATE(7765)] = 245551, - [SMALL_STATE(7766)] = 245561, - [SMALL_STATE(7767)] = 245571, - [SMALL_STATE(7768)] = 245581, - [SMALL_STATE(7769)] = 245591, - [SMALL_STATE(7770)] = 245601, - [SMALL_STATE(7771)] = 245611, - [SMALL_STATE(7772)] = 245621, - [SMALL_STATE(7773)] = 245631, - [SMALL_STATE(7774)] = 245641, - [SMALL_STATE(7775)] = 245651, - [SMALL_STATE(7776)] = 245661, - [SMALL_STATE(7777)] = 245671, - [SMALL_STATE(7778)] = 245681, - [SMALL_STATE(7779)] = 245691, - [SMALL_STATE(7780)] = 245701, - [SMALL_STATE(7781)] = 245711, - [SMALL_STATE(7782)] = 245721, - [SMALL_STATE(7783)] = 245731, - [SMALL_STATE(7784)] = 245741, - [SMALL_STATE(7785)] = 245751, - [SMALL_STATE(7786)] = 245761, - [SMALL_STATE(7787)] = 245771, - [SMALL_STATE(7788)] = 245781, - [SMALL_STATE(7789)] = 245791, - [SMALL_STATE(7790)] = 245801, - [SMALL_STATE(7791)] = 245811, - [SMALL_STATE(7792)] = 245821, - [SMALL_STATE(7793)] = 245831, - [SMALL_STATE(7794)] = 245841, - [SMALL_STATE(7795)] = 245851, - [SMALL_STATE(7796)] = 245861, - [SMALL_STATE(7797)] = 245871, - [SMALL_STATE(7798)] = 245881, - [SMALL_STATE(7799)] = 245891, - [SMALL_STATE(7800)] = 245901, - [SMALL_STATE(7801)] = 245911, - [SMALL_STATE(7802)] = 245921, - [SMALL_STATE(7803)] = 245931, - [SMALL_STATE(7804)] = 245941, - [SMALL_STATE(7805)] = 245951, - [SMALL_STATE(7806)] = 245961, - [SMALL_STATE(7807)] = 245971, - [SMALL_STATE(7808)] = 245981, - [SMALL_STATE(7809)] = 245991, - [SMALL_STATE(7810)] = 246001, - [SMALL_STATE(7811)] = 246011, - [SMALL_STATE(7812)] = 246021, - [SMALL_STATE(7813)] = 246031, - [SMALL_STATE(7814)] = 246041, - [SMALL_STATE(7815)] = 246051, - [SMALL_STATE(7816)] = 246061, - [SMALL_STATE(7817)] = 246071, - [SMALL_STATE(7818)] = 246081, - [SMALL_STATE(7819)] = 246091, - [SMALL_STATE(7820)] = 246101, - [SMALL_STATE(7821)] = 246111, - [SMALL_STATE(7822)] = 246121, - [SMALL_STATE(7823)] = 246131, - [SMALL_STATE(7824)] = 246141, - [SMALL_STATE(7825)] = 246151, - [SMALL_STATE(7826)] = 246161, - [SMALL_STATE(7827)] = 246171, - [SMALL_STATE(7828)] = 246181, - [SMALL_STATE(7829)] = 246191, - [SMALL_STATE(7830)] = 246201, - [SMALL_STATE(7831)] = 246211, - [SMALL_STATE(7832)] = 246221, - [SMALL_STATE(7833)] = 246231, - [SMALL_STATE(7834)] = 246241, - [SMALL_STATE(7835)] = 246251, - [SMALL_STATE(7836)] = 246261, - [SMALL_STATE(7837)] = 246271, - [SMALL_STATE(7838)] = 246281, - [SMALL_STATE(7839)] = 246291, - [SMALL_STATE(7840)] = 246301, - [SMALL_STATE(7841)] = 246311, - [SMALL_STATE(7842)] = 246321, - [SMALL_STATE(7843)] = 246331, - [SMALL_STATE(7844)] = 246341, - [SMALL_STATE(7845)] = 246351, - [SMALL_STATE(7846)] = 246361, - [SMALL_STATE(7847)] = 246371, - [SMALL_STATE(7848)] = 246381, - [SMALL_STATE(7849)] = 246391, - [SMALL_STATE(7850)] = 246401, - [SMALL_STATE(7851)] = 246411, - [SMALL_STATE(7852)] = 246421, - [SMALL_STATE(7853)] = 246431, - [SMALL_STATE(7854)] = 246441, - [SMALL_STATE(7855)] = 246451, - [SMALL_STATE(7856)] = 246461, - [SMALL_STATE(7857)] = 246471, - [SMALL_STATE(7858)] = 246481, - [SMALL_STATE(7859)] = 246491, - [SMALL_STATE(7860)] = 246501, - [SMALL_STATE(7861)] = 246511, - [SMALL_STATE(7862)] = 246521, - [SMALL_STATE(7863)] = 246531, - [SMALL_STATE(7864)] = 246541, - [SMALL_STATE(7865)] = 246551, - [SMALL_STATE(7866)] = 246561, - [SMALL_STATE(7867)] = 246571, - [SMALL_STATE(7868)] = 246581, - [SMALL_STATE(7869)] = 246591, - [SMALL_STATE(7870)] = 246601, - [SMALL_STATE(7871)] = 246611, - [SMALL_STATE(7872)] = 246621, - [SMALL_STATE(7873)] = 246631, - [SMALL_STATE(7874)] = 246641, - [SMALL_STATE(7875)] = 246651, - [SMALL_STATE(7876)] = 246661, - [SMALL_STATE(7877)] = 246671, - [SMALL_STATE(7878)] = 246681, - [SMALL_STATE(7879)] = 246691, - [SMALL_STATE(7880)] = 246701, - [SMALL_STATE(7881)] = 246711, - [SMALL_STATE(7882)] = 246721, - [SMALL_STATE(7883)] = 246731, - [SMALL_STATE(7884)] = 246741, - [SMALL_STATE(7885)] = 246751, - [SMALL_STATE(7886)] = 246761, - [SMALL_STATE(7887)] = 246771, - [SMALL_STATE(7888)] = 246781, - [SMALL_STATE(7889)] = 246791, - [SMALL_STATE(7890)] = 246801, - [SMALL_STATE(7891)] = 246811, - [SMALL_STATE(7892)] = 246821, - [SMALL_STATE(7893)] = 246831, - [SMALL_STATE(7894)] = 246841, - [SMALL_STATE(7895)] = 246851, - [SMALL_STATE(7896)] = 246861, - [SMALL_STATE(7897)] = 246871, - [SMALL_STATE(7898)] = 246881, - [SMALL_STATE(7899)] = 246891, - [SMALL_STATE(7900)] = 246901, - [SMALL_STATE(7901)] = 246911, - [SMALL_STATE(7902)] = 246921, - [SMALL_STATE(7903)] = 246931, - [SMALL_STATE(7904)] = 246941, - [SMALL_STATE(7905)] = 246951, - [SMALL_STATE(7906)] = 246961, - [SMALL_STATE(7907)] = 246971, - [SMALL_STATE(7908)] = 246981, - [SMALL_STATE(7909)] = 246991, - [SMALL_STATE(7910)] = 247001, - [SMALL_STATE(7911)] = 247011, - [SMALL_STATE(7912)] = 247021, - [SMALL_STATE(7913)] = 247031, - [SMALL_STATE(7914)] = 247041, - [SMALL_STATE(7915)] = 247051, - [SMALL_STATE(7916)] = 247061, - [SMALL_STATE(7917)] = 247071, - [SMALL_STATE(7918)] = 247081, - [SMALL_STATE(7919)] = 247091, - [SMALL_STATE(7920)] = 247101, - [SMALL_STATE(7921)] = 247111, - [SMALL_STATE(7922)] = 247121, - [SMALL_STATE(7923)] = 247131, - [SMALL_STATE(7924)] = 247141, - [SMALL_STATE(7925)] = 247151, - [SMALL_STATE(7926)] = 247161, - [SMALL_STATE(7927)] = 247171, - [SMALL_STATE(7928)] = 247181, - [SMALL_STATE(7929)] = 247191, - [SMALL_STATE(7930)] = 247201, - [SMALL_STATE(7931)] = 247211, - [SMALL_STATE(7932)] = 247221, - [SMALL_STATE(7933)] = 247231, - [SMALL_STATE(7934)] = 247241, - [SMALL_STATE(7935)] = 247251, - [SMALL_STATE(7936)] = 247261, - [SMALL_STATE(7937)] = 247271, - [SMALL_STATE(7938)] = 247281, - [SMALL_STATE(7939)] = 247291, - [SMALL_STATE(7940)] = 247301, - [SMALL_STATE(7941)] = 247311, - [SMALL_STATE(7942)] = 247321, - [SMALL_STATE(7943)] = 247331, - [SMALL_STATE(7944)] = 247341, - [SMALL_STATE(7945)] = 247351, - [SMALL_STATE(7946)] = 247361, - [SMALL_STATE(7947)] = 247371, - [SMALL_STATE(7948)] = 247381, - [SMALL_STATE(7949)] = 247391, - [SMALL_STATE(7950)] = 247401, - [SMALL_STATE(7951)] = 247411, - [SMALL_STATE(7952)] = 247421, - [SMALL_STATE(7953)] = 247431, - [SMALL_STATE(7954)] = 247441, - [SMALL_STATE(7955)] = 247451, - [SMALL_STATE(7956)] = 247461, - [SMALL_STATE(7957)] = 247471, - [SMALL_STATE(7958)] = 247481, - [SMALL_STATE(7959)] = 247491, - [SMALL_STATE(7960)] = 247501, - [SMALL_STATE(7961)] = 247511, - [SMALL_STATE(7962)] = 247521, - [SMALL_STATE(7963)] = 247531, - [SMALL_STATE(7964)] = 247541, - [SMALL_STATE(7965)] = 247551, - [SMALL_STATE(7966)] = 247561, - [SMALL_STATE(7967)] = 247571, - [SMALL_STATE(7968)] = 247581, - [SMALL_STATE(7969)] = 247591, - [SMALL_STATE(7970)] = 247601, - [SMALL_STATE(7971)] = 247611, - [SMALL_STATE(7972)] = 247621, - [SMALL_STATE(7973)] = 247631, - [SMALL_STATE(7974)] = 247641, - [SMALL_STATE(7975)] = 247651, - [SMALL_STATE(7976)] = 247661, - [SMALL_STATE(7977)] = 247671, - [SMALL_STATE(7978)] = 247681, - [SMALL_STATE(7979)] = 247691, - [SMALL_STATE(7980)] = 247701, - [SMALL_STATE(7981)] = 247711, - [SMALL_STATE(7982)] = 247721, - [SMALL_STATE(7983)] = 247731, - [SMALL_STATE(7984)] = 247741, - [SMALL_STATE(7985)] = 247751, - [SMALL_STATE(7986)] = 247761, - [SMALL_STATE(7987)] = 247771, - [SMALL_STATE(7988)] = 247781, - [SMALL_STATE(7989)] = 247791, - [SMALL_STATE(7990)] = 247801, - [SMALL_STATE(7991)] = 247811, - [SMALL_STATE(7992)] = 247821, - [SMALL_STATE(7993)] = 247831, - [SMALL_STATE(7994)] = 247841, - [SMALL_STATE(7995)] = 247851, - [SMALL_STATE(7996)] = 247861, - [SMALL_STATE(7997)] = 247871, - [SMALL_STATE(7998)] = 247881, - [SMALL_STATE(7999)] = 247891, - [SMALL_STATE(8000)] = 247901, - [SMALL_STATE(8001)] = 247911, - [SMALL_STATE(8002)] = 247921, - [SMALL_STATE(8003)] = 247931, - [SMALL_STATE(8004)] = 247941, - [SMALL_STATE(8005)] = 247951, - [SMALL_STATE(8006)] = 247961, - [SMALL_STATE(8007)] = 247971, - [SMALL_STATE(8008)] = 247981, - [SMALL_STATE(8009)] = 247991, - [SMALL_STATE(8010)] = 248001, - [SMALL_STATE(8011)] = 248011, - [SMALL_STATE(8012)] = 248021, - [SMALL_STATE(8013)] = 248031, - [SMALL_STATE(8014)] = 248041, - [SMALL_STATE(8015)] = 248051, - [SMALL_STATE(8016)] = 248061, - [SMALL_STATE(8017)] = 248071, - [SMALL_STATE(8018)] = 248081, - [SMALL_STATE(8019)] = 248091, - [SMALL_STATE(8020)] = 248101, - [SMALL_STATE(8021)] = 248111, - [SMALL_STATE(8022)] = 248121, - [SMALL_STATE(8023)] = 248131, - [SMALL_STATE(8024)] = 248141, - [SMALL_STATE(8025)] = 248151, - [SMALL_STATE(8026)] = 248161, - [SMALL_STATE(8027)] = 248171, - [SMALL_STATE(8028)] = 248181, - [SMALL_STATE(8029)] = 248191, - [SMALL_STATE(8030)] = 248201, - [SMALL_STATE(8031)] = 248211, - [SMALL_STATE(8032)] = 248221, - [SMALL_STATE(8033)] = 248231, - [SMALL_STATE(8034)] = 248241, - [SMALL_STATE(8035)] = 248251, - [SMALL_STATE(8036)] = 248261, - [SMALL_STATE(8037)] = 248271, - [SMALL_STATE(8038)] = 248281, - [SMALL_STATE(8039)] = 248291, - [SMALL_STATE(8040)] = 248301, - [SMALL_STATE(8041)] = 248311, - [SMALL_STATE(8042)] = 248321, - [SMALL_STATE(8043)] = 248331, - [SMALL_STATE(8044)] = 248341, - [SMALL_STATE(8045)] = 248351, - [SMALL_STATE(8046)] = 248361, - [SMALL_STATE(8047)] = 248371, - [SMALL_STATE(8048)] = 248381, - [SMALL_STATE(8049)] = 248391, - [SMALL_STATE(8050)] = 248401, - [SMALL_STATE(8051)] = 248411, - [SMALL_STATE(8052)] = 248421, - [SMALL_STATE(8053)] = 248431, - [SMALL_STATE(8054)] = 248441, - [SMALL_STATE(8055)] = 248451, - [SMALL_STATE(8056)] = 248461, - [SMALL_STATE(8057)] = 248471, - [SMALL_STATE(8058)] = 248481, - [SMALL_STATE(8059)] = 248491, - [SMALL_STATE(8060)] = 248501, - [SMALL_STATE(8061)] = 248511, + [SMALL_STATE(1474)] = 0, + [SMALL_STATE(1475)] = 75, + [SMALL_STATE(1476)] = 148, + [SMALL_STATE(1477)] = 255, + [SMALL_STATE(1478)] = 332, + [SMALL_STATE(1479)] = 409, + [SMALL_STATE(1480)] = 486, + [SMALL_STATE(1481)] = 563, + [SMALL_STATE(1482)] = 640, + [SMALL_STATE(1483)] = 715, + [SMALL_STATE(1484)] = 790, + [SMALL_STATE(1485)] = 863, + [SMALL_STATE(1486)] = 940, + [SMALL_STATE(1487)] = 1017, + [SMALL_STATE(1488)] = 1092, + [SMALL_STATE(1489)] = 1165, + [SMALL_STATE(1490)] = 1270, + [SMALL_STATE(1491)] = 1343, + [SMALL_STATE(1492)] = 1448, + [SMALL_STATE(1493)] = 1523, + [SMALL_STATE(1494)] = 1596, + [SMALL_STATE(1495)] = 1673, + [SMALL_STATE(1496)] = 1746, + [SMALL_STATE(1497)] = 1819, + [SMALL_STATE(1498)] = 1902, + [SMALL_STATE(1499)] = 1977, + [SMALL_STATE(1500)] = 2054, + [SMALL_STATE(1501)] = 2127, + [SMALL_STATE(1502)] = 2204, + [SMALL_STATE(1503)] = 2277, + [SMALL_STATE(1504)] = 2350, + [SMALL_STATE(1505)] = 2423, + [SMALL_STATE(1506)] = 2500, + [SMALL_STATE(1507)] = 2577, + [SMALL_STATE(1508)] = 2652, + [SMALL_STATE(1509)] = 2725, + [SMALL_STATE(1510)] = 2800, + [SMALL_STATE(1511)] = 2873, + [SMALL_STATE(1512)] = 2950, + [SMALL_STATE(1513)] = 3033, + [SMALL_STATE(1514)] = 3106, + [SMALL_STATE(1515)] = 3179, + [SMALL_STATE(1516)] = 3252, + [SMALL_STATE(1517)] = 3325, + [SMALL_STATE(1518)] = 3432, + [SMALL_STATE(1519)] = 3539, + [SMALL_STATE(1520)] = 3614, + [SMALL_STATE(1521)] = 3689, + [SMALL_STATE(1522)] = 3764, + [SMALL_STATE(1523)] = 3837, + [SMALL_STATE(1524)] = 3912, + [SMALL_STATE(1525)] = 4017, + [SMALL_STATE(1526)] = 4092, + [SMALL_STATE(1527)] = 4165, + [SMALL_STATE(1528)] = 4242, + [SMALL_STATE(1529)] = 4319, + [SMALL_STATE(1530)] = 4396, + [SMALL_STATE(1531)] = 4469, + [SMALL_STATE(1532)] = 4542, + [SMALL_STATE(1533)] = 4615, + [SMALL_STATE(1534)] = 4688, + [SMALL_STATE(1535)] = 4763, + [SMALL_STATE(1536)] = 4840, + [SMALL_STATE(1537)] = 4917, + [SMALL_STATE(1538)] = 4990, + [SMALL_STATE(1539)] = 5063, + [SMALL_STATE(1540)] = 5140, + [SMALL_STATE(1541)] = 5217, + [SMALL_STATE(1542)] = 5297, + [SMALL_STATE(1543)] = 5369, + [SMALL_STATE(1544)] = 5441, + [SMALL_STATE(1545)] = 5513, + [SMALL_STATE(1546)] = 5585, + [SMALL_STATE(1547)] = 5657, + [SMALL_STATE(1548)] = 5729, + [SMALL_STATE(1549)] = 5801, + [SMALL_STATE(1550)] = 5873, + [SMALL_STATE(1551)] = 5945, + [SMALL_STATE(1552)] = 6017, + [SMALL_STATE(1553)] = 6089, + [SMALL_STATE(1554)] = 6161, + [SMALL_STATE(1555)] = 6233, + [SMALL_STATE(1556)] = 6305, + [SMALL_STATE(1557)] = 6377, + [SMALL_STATE(1558)] = 6449, + [SMALL_STATE(1559)] = 6521, + [SMALL_STATE(1560)] = 6593, + [SMALL_STATE(1561)] = 6665, + [SMALL_STATE(1562)] = 6737, + [SMALL_STATE(1563)] = 6809, + [SMALL_STATE(1564)] = 6881, + [SMALL_STATE(1565)] = 6953, + [SMALL_STATE(1566)] = 7025, + [SMALL_STATE(1567)] = 7097, + [SMALL_STATE(1568)] = 7169, + [SMALL_STATE(1569)] = 7241, + [SMALL_STATE(1570)] = 7313, + [SMALL_STATE(1571)] = 7393, + [SMALL_STATE(1572)] = 7465, + [SMALL_STATE(1573)] = 7545, + [SMALL_STATE(1574)] = 7617, + [SMALL_STATE(1575)] = 7689, + [SMALL_STATE(1576)] = 7761, + [SMALL_STATE(1577)] = 7833, + [SMALL_STATE(1578)] = 7905, + [SMALL_STATE(1579)] = 7977, + [SMALL_STATE(1580)] = 8049, + [SMALL_STATE(1581)] = 8121, + [SMALL_STATE(1582)] = 8193, + [SMALL_STATE(1583)] = 8265, + [SMALL_STATE(1584)] = 8337, + [SMALL_STATE(1585)] = 8409, + [SMALL_STATE(1586)] = 8481, + [SMALL_STATE(1587)] = 8553, + [SMALL_STATE(1588)] = 8625, + [SMALL_STATE(1589)] = 8697, + [SMALL_STATE(1590)] = 8769, + [SMALL_STATE(1591)] = 8841, + [SMALL_STATE(1592)] = 8913, + [SMALL_STATE(1593)] = 8985, + [SMALL_STATE(1594)] = 9057, + [SMALL_STATE(1595)] = 9129, + [SMALL_STATE(1596)] = 9201, + [SMALL_STATE(1597)] = 9273, + [SMALL_STATE(1598)] = 9345, + [SMALL_STATE(1599)] = 9425, + [SMALL_STATE(1600)] = 9497, + [SMALL_STATE(1601)] = 9569, + [SMALL_STATE(1602)] = 9641, + [SMALL_STATE(1603)] = 9715, + [SMALL_STATE(1604)] = 9789, + [SMALL_STATE(1605)] = 9861, + [SMALL_STATE(1606)] = 9933, + [SMALL_STATE(1607)] = 10007, + [SMALL_STATE(1608)] = 10113, + [SMALL_STATE(1609)] = 10185, + [SMALL_STATE(1610)] = 10257, + [SMALL_STATE(1611)] = 10331, + [SMALL_STATE(1612)] = 10403, + [SMALL_STATE(1613)] = 10475, + [SMALL_STATE(1614)] = 10549, + [SMALL_STATE(1615)] = 10621, + [SMALL_STATE(1616)] = 10693, + [SMALL_STATE(1617)] = 10765, + [SMALL_STATE(1618)] = 10837, + [SMALL_STATE(1619)] = 10909, + [SMALL_STATE(1620)] = 10981, + [SMALL_STATE(1621)] = 11053, + [SMALL_STATE(1622)] = 11127, + [SMALL_STATE(1623)] = 11199, + [SMALL_STATE(1624)] = 11271, + [SMALL_STATE(1625)] = 11345, + [SMALL_STATE(1626)] = 11419, + [SMALL_STATE(1627)] = 11491, + [SMALL_STATE(1628)] = 11563, + [SMALL_STATE(1629)] = 11635, + [SMALL_STATE(1630)] = 11707, + [SMALL_STATE(1631)] = 11779, + [SMALL_STATE(1632)] = 11851, + [SMALL_STATE(1633)] = 11923, + [SMALL_STATE(1634)] = 11995, + [SMALL_STATE(1635)] = 12139, + [SMALL_STATE(1636)] = 12283, + [SMALL_STATE(1637)] = 12363, + [SMALL_STATE(1638)] = 12443, + [SMALL_STATE(1639)] = 12549, + [SMALL_STATE(1640)] = 12693, + [SMALL_STATE(1641)] = 12765, + [SMALL_STATE(1642)] = 12837, + [SMALL_STATE(1643)] = 12909, + [SMALL_STATE(1644)] = 12981, + [SMALL_STATE(1645)] = 13053, + [SMALL_STATE(1646)] = 13125, + [SMALL_STATE(1647)] = 13197, + [SMALL_STATE(1648)] = 13277, + [SMALL_STATE(1649)] = 13357, + [SMALL_STATE(1650)] = 13429, + [SMALL_STATE(1651)] = 13535, + [SMALL_STATE(1652)] = 13607, + [SMALL_STATE(1653)] = 13687, + [SMALL_STATE(1654)] = 13761, + [SMALL_STATE(1655)] = 13841, + [SMALL_STATE(1656)] = 13921, + [SMALL_STATE(1657)] = 13993, + [SMALL_STATE(1658)] = 14065, + [SMALL_STATE(1659)] = 14145, + [SMALL_STATE(1660)] = 14225, + [SMALL_STATE(1661)] = 14305, + [SMALL_STATE(1662)] = 14385, + [SMALL_STATE(1663)] = 14465, + [SMALL_STATE(1664)] = 14545, + [SMALL_STATE(1665)] = 14625, + [SMALL_STATE(1666)] = 14705, + [SMALL_STATE(1667)] = 14785, + [SMALL_STATE(1668)] = 14865, + [SMALL_STATE(1669)] = 14945, + [SMALL_STATE(1670)] = 15025, + [SMALL_STATE(1671)] = 15105, + [SMALL_STATE(1672)] = 15185, + [SMALL_STATE(1673)] = 15265, + [SMALL_STATE(1674)] = 15345, + [SMALL_STATE(1675)] = 15417, + [SMALL_STATE(1676)] = 15489, + [SMALL_STATE(1677)] = 15561, + [SMALL_STATE(1678)] = 15633, + [SMALL_STATE(1679)] = 15707, + [SMALL_STATE(1680)] = 15779, + [SMALL_STATE(1681)] = 15851, + [SMALL_STATE(1682)] = 15923, + [SMALL_STATE(1683)] = 15995, + [SMALL_STATE(1684)] = 16067, + [SMALL_STATE(1685)] = 16139, + [SMALL_STATE(1686)] = 16211, + [SMALL_STATE(1687)] = 16283, + [SMALL_STATE(1688)] = 16355, + [SMALL_STATE(1689)] = 16427, + [SMALL_STATE(1690)] = 16499, + [SMALL_STATE(1691)] = 16571, + [SMALL_STATE(1692)] = 16643, + [SMALL_STATE(1693)] = 16715, + [SMALL_STATE(1694)] = 16787, + [SMALL_STATE(1695)] = 16859, + [SMALL_STATE(1696)] = 16931, + [SMALL_STATE(1697)] = 17003, + [SMALL_STATE(1698)] = 17075, + [SMALL_STATE(1699)] = 17147, + [SMALL_STATE(1700)] = 17219, + [SMALL_STATE(1701)] = 17291, + [SMALL_STATE(1702)] = 17363, + [SMALL_STATE(1703)] = 17435, + [SMALL_STATE(1704)] = 17507, + [SMALL_STATE(1705)] = 17579, + [SMALL_STATE(1706)] = 17651, + [SMALL_STATE(1707)] = 17725, + [SMALL_STATE(1708)] = 17797, + [SMALL_STATE(1709)] = 17869, + [SMALL_STATE(1710)] = 17941, + [SMALL_STATE(1711)] = 18013, + [SMALL_STATE(1712)] = 18085, + [SMALL_STATE(1713)] = 18157, + [SMALL_STATE(1714)] = 18229, + [SMALL_STATE(1715)] = 18301, + [SMALL_STATE(1716)] = 18373, + [SMALL_STATE(1717)] = 18447, + [SMALL_STATE(1718)] = 18527, + [SMALL_STATE(1719)] = 18599, + [SMALL_STATE(1720)] = 18671, + [SMALL_STATE(1721)] = 18743, + [SMALL_STATE(1722)] = 18815, + [SMALL_STATE(1723)] = 18887, + [SMALL_STATE(1724)] = 18959, + [SMALL_STATE(1725)] = 19039, + [SMALL_STATE(1726)] = 19183, + [SMALL_STATE(1727)] = 19255, + [SMALL_STATE(1728)] = 19327, + [SMALL_STATE(1729)] = 19399, + [SMALL_STATE(1730)] = 19471, + [SMALL_STATE(1731)] = 19615, + [SMALL_STATE(1732)] = 19759, + [SMALL_STATE(1733)] = 19903, + [SMALL_STATE(1734)] = 20047, + [SMALL_STATE(1735)] = 20127, + [SMALL_STATE(1736)] = 20207, + [SMALL_STATE(1737)] = 20287, + [SMALL_STATE(1738)] = 20367, + [SMALL_STATE(1739)] = 20447, + [SMALL_STATE(1740)] = 20527, + [SMALL_STATE(1741)] = 20607, + [SMALL_STATE(1742)] = 20687, + [SMALL_STATE(1743)] = 20767, + [SMALL_STATE(1744)] = 20847, + [SMALL_STATE(1745)] = 20927, + [SMALL_STATE(1746)] = 21007, + [SMALL_STATE(1747)] = 21087, + [SMALL_STATE(1748)] = 21167, + [SMALL_STATE(1749)] = 21247, + [SMALL_STATE(1750)] = 21327, + [SMALL_STATE(1751)] = 21407, + [SMALL_STATE(1752)] = 21487, + [SMALL_STATE(1753)] = 21567, + [SMALL_STATE(1754)] = 21647, + [SMALL_STATE(1755)] = 21727, + [SMALL_STATE(1756)] = 21799, + [SMALL_STATE(1757)] = 21879, + [SMALL_STATE(1758)] = 21950, + [SMALL_STATE(1759)] = 22027, + [SMALL_STATE(1760)] = 22106, + [SMALL_STATE(1761)] = 22183, + [SMALL_STATE(1762)] = 22260, + [SMALL_STATE(1763)] = 22337, + [SMALL_STATE(1764)] = 22414, + [SMALL_STATE(1765)] = 22491, + [SMALL_STATE(1766)] = 22568, + [SMALL_STATE(1767)] = 22645, + [SMALL_STATE(1768)] = 22722, + [SMALL_STATE(1769)] = 22793, + [SMALL_STATE(1770)] = 22870, + [SMALL_STATE(1771)] = 22941, + [SMALL_STATE(1772)] = 23018, + [SMALL_STATE(1773)] = 23089, + [SMALL_STATE(1774)] = 23168, + [SMALL_STATE(1775)] = 23247, + [SMALL_STATE(1776)] = 23324, + [SMALL_STATE(1777)] = 23395, + [SMALL_STATE(1778)] = 23472, + [SMALL_STATE(1779)] = 23543, + [SMALL_STATE(1780)] = 23622, + [SMALL_STATE(1781)] = 23701, + [SMALL_STATE(1782)] = 23780, + [SMALL_STATE(1783)] = 23853, + [SMALL_STATE(1784)] = 23930, + [SMALL_STATE(1785)] = 24001, + [SMALL_STATE(1786)] = 24072, + [SMALL_STATE(1787)] = 24143, + [SMALL_STATE(1788)] = 24214, + [SMALL_STATE(1789)] = 24285, + [SMALL_STATE(1790)] = 24356, + [SMALL_STATE(1791)] = 24427, + [SMALL_STATE(1792)] = 24504, + [SMALL_STATE(1793)] = 24583, + [SMALL_STATE(1794)] = 24654, + [SMALL_STATE(1795)] = 24725, + [SMALL_STATE(1796)] = 24804, + [SMALL_STATE(1797)] = 24883, + [SMALL_STATE(1798)] = 24960, + [SMALL_STATE(1799)] = 25031, + [SMALL_STATE(1800)] = 25102, + [SMALL_STATE(1801)] = 25179, + [SMALL_STATE(1802)] = 25258, + [SMALL_STATE(1803)] = 25337, + [SMALL_STATE(1804)] = 25416, + [SMALL_STATE(1805)] = 25495, + [SMALL_STATE(1806)] = 25574, + [SMALL_STATE(1807)] = 25653, + [SMALL_STATE(1808)] = 25724, + [SMALL_STATE(1809)] = 25795, + [SMALL_STATE(1810)] = 25874, + [SMALL_STATE(1811)] = 25953, + [SMALL_STATE(1812)] = 26024, + [SMALL_STATE(1813)] = 26095, + [SMALL_STATE(1814)] = 26172, + [SMALL_STATE(1815)] = 26243, + [SMALL_STATE(1816)] = 26314, + [SMALL_STATE(1817)] = 26385, + [SMALL_STATE(1818)] = 26462, + [SMALL_STATE(1819)] = 26533, + [SMALL_STATE(1820)] = 26604, + [SMALL_STATE(1821)] = 26675, + [SMALL_STATE(1822)] = 26752, + [SMALL_STATE(1823)] = 26823, + [SMALL_STATE(1824)] = 26894, + [SMALL_STATE(1825)] = 26965, + [SMALL_STATE(1826)] = 27042, + [SMALL_STATE(1827)] = 27113, + [SMALL_STATE(1828)] = 27184, + [SMALL_STATE(1829)] = 27255, + [SMALL_STATE(1830)] = 27332, + [SMALL_STATE(1831)] = 27409, + [SMALL_STATE(1832)] = 27480, + [SMALL_STATE(1833)] = 27551, + [SMALL_STATE(1834)] = 27622, + [SMALL_STATE(1835)] = 27701, + [SMALL_STATE(1836)] = 27780, + [SMALL_STATE(1837)] = 27859, + [SMALL_STATE(1838)] = 27938, + [SMALL_STATE(1839)] = 28015, + [SMALL_STATE(1840)] = 28086, + [SMALL_STATE(1841)] = 28157, + [SMALL_STATE(1842)] = 28228, + [SMALL_STATE(1843)] = 28305, + [SMALL_STATE(1844)] = 28376, + [SMALL_STATE(1845)] = 28447, + [SMALL_STATE(1846)] = 28524, + [SMALL_STATE(1847)] = 28595, + [SMALL_STATE(1848)] = 28666, + [SMALL_STATE(1849)] = 28737, + [SMALL_STATE(1850)] = 28814, + [SMALL_STATE(1851)] = 28885, + [SMALL_STATE(1852)] = 28956, + [SMALL_STATE(1853)] = 29027, + [SMALL_STATE(1854)] = 29098, + [SMALL_STATE(1855)] = 29175, + [SMALL_STATE(1856)] = 29246, + [SMALL_STATE(1857)] = 29317, + [SMALL_STATE(1858)] = 29388, + [SMALL_STATE(1859)] = 29459, + [SMALL_STATE(1860)] = 29530, + [SMALL_STATE(1861)] = 29601, + [SMALL_STATE(1862)] = 29672, + [SMALL_STATE(1863)] = 29743, + [SMALL_STATE(1864)] = 29814, + [SMALL_STATE(1865)] = 29891, + [SMALL_STATE(1866)] = 29962, + [SMALL_STATE(1867)] = 30033, + [SMALL_STATE(1868)] = 30110, + [SMALL_STATE(1869)] = 30189, + [SMALL_STATE(1870)] = 30266, + [SMALL_STATE(1871)] = 30337, + [SMALL_STATE(1872)] = 30414, + [SMALL_STATE(1873)] = 30491, + [SMALL_STATE(1874)] = 30570, + [SMALL_STATE(1875)] = 30641, + [SMALL_STATE(1876)] = 30718, + [SMALL_STATE(1877)] = 30789, + [SMALL_STATE(1878)] = 30868, + [SMALL_STATE(1879)] = 30939, + [SMALL_STATE(1880)] = 31016, + [SMALL_STATE(1881)] = 31093, + [SMALL_STATE(1882)] = 31170, + [SMALL_STATE(1883)] = 31247, + [SMALL_STATE(1884)] = 31318, + [SMALL_STATE(1885)] = 31395, + [SMALL_STATE(1886)] = 31472, + [SMALL_STATE(1887)] = 31549, + [SMALL_STATE(1888)] = 31626, + [SMALL_STATE(1889)] = 31703, + [SMALL_STATE(1890)] = 31774, + [SMALL_STATE(1891)] = 31851, + [SMALL_STATE(1892)] = 31928, + [SMALL_STATE(1893)] = 31999, + [SMALL_STATE(1894)] = 32074, + [SMALL_STATE(1895)] = 32153, + [SMALL_STATE(1896)] = 32232, + [SMALL_STATE(1897)] = 32303, + [SMALL_STATE(1898)] = 32380, + [SMALL_STATE(1899)] = 32451, + [SMALL_STATE(1900)] = 32522, + [SMALL_STATE(1901)] = 32593, + [SMALL_STATE(1902)] = 32670, + [SMALL_STATE(1903)] = 32747, + [SMALL_STATE(1904)] = 32824, + [SMALL_STATE(1905)] = 32895, + [SMALL_STATE(1906)] = 32972, + [SMALL_STATE(1907)] = 33043, + [SMALL_STATE(1908)] = 33120, + [SMALL_STATE(1909)] = 33197, + [SMALL_STATE(1910)] = 33272, + [SMALL_STATE(1911)] = 33343, + [SMALL_STATE(1912)] = 33414, + [SMALL_STATE(1913)] = 33485, + [SMALL_STATE(1914)] = 33556, + [SMALL_STATE(1915)] = 33627, + [SMALL_STATE(1916)] = 33698, + [SMALL_STATE(1917)] = 33769, + [SMALL_STATE(1918)] = 33846, + [SMALL_STATE(1919)] = 33917, + [SMALL_STATE(1920)] = 33988, + [SMALL_STATE(1921)] = 34059, + [SMALL_STATE(1922)] = 34130, + [SMALL_STATE(1923)] = 34201, + [SMALL_STATE(1924)] = 34276, + [SMALL_STATE(1925)] = 34347, + [SMALL_STATE(1926)] = 34418, + [SMALL_STATE(1927)] = 34495, + [SMALL_STATE(1928)] = 34572, + [SMALL_STATE(1929)] = 34642, + [SMALL_STATE(1930)] = 34712, + [SMALL_STATE(1931)] = 34782, + [SMALL_STATE(1932)] = 34856, + [SMALL_STATE(1933)] = 34930, + [SMALL_STATE(1934)] = 35000, + [SMALL_STATE(1935)] = 35074, + [SMALL_STATE(1936)] = 35144, + [SMALL_STATE(1937)] = 35214, + [SMALL_STATE(1938)] = 35284, + [SMALL_STATE(1939)] = 35358, + [SMALL_STATE(1940)] = 35428, + [SMALL_STATE(1941)] = 35506, + [SMALL_STATE(1942)] = 35580, + [SMALL_STATE(1943)] = 35654, + [SMALL_STATE(1944)] = 35728, + [SMALL_STATE(1945)] = 35802, + [SMALL_STATE(1946)] = 35872, + [SMALL_STATE(1947)] = 35942, + [SMALL_STATE(1948)] = 36012, + [SMALL_STATE(1949)] = 36082, + [SMALL_STATE(1950)] = 36152, + [SMALL_STATE(1951)] = 36222, + [SMALL_STATE(1952)] = 36292, + [SMALL_STATE(1953)] = 36362, + [SMALL_STATE(1954)] = 36432, + [SMALL_STATE(1955)] = 36502, + [SMALL_STATE(1956)] = 36572, + [SMALL_STATE(1957)] = 36646, + [SMALL_STATE(1958)] = 36786, + [SMALL_STATE(1959)] = 36856, + [SMALL_STATE(1960)] = 36926, + [SMALL_STATE(1961)] = 36998, + [SMALL_STATE(1962)] = 37076, + [SMALL_STATE(1963)] = 37146, + [SMALL_STATE(1964)] = 37216, + [SMALL_STATE(1965)] = 37286, + [SMALL_STATE(1966)] = 37356, + [SMALL_STATE(1967)] = 37426, + [SMALL_STATE(1968)] = 37498, + [SMALL_STATE(1969)] = 37568, + [SMALL_STATE(1970)] = 37638, + [SMALL_STATE(1971)] = 37712, + [SMALL_STATE(1972)] = 37788, + [SMALL_STATE(1973)] = 37858, + [SMALL_STATE(1974)] = 37928, + [SMALL_STATE(1975)] = 37998, + [SMALL_STATE(1976)] = 38068, + [SMALL_STATE(1977)] = 38138, + [SMALL_STATE(1978)] = 38208, + [SMALL_STATE(1979)] = 38278, + [SMALL_STATE(1980)] = 38348, + [SMALL_STATE(1981)] = 38418, + [SMALL_STATE(1982)] = 38558, + [SMALL_STATE(1983)] = 38628, + [SMALL_STATE(1984)] = 38706, + [SMALL_STATE(1985)] = 38776, + [SMALL_STATE(1986)] = 38854, + [SMALL_STATE(1987)] = 38926, + [SMALL_STATE(1988)] = 38998, + [SMALL_STATE(1989)] = 39068, + [SMALL_STATE(1990)] = 39139, + [SMALL_STATE(1991)] = 39210, + [SMALL_STATE(1992)] = 39281, + [SMALL_STATE(1993)] = 39352, + [SMALL_STATE(1994)] = 39429, + [SMALL_STATE(1995)] = 39500, + [SMALL_STATE(1996)] = 39571, + [SMALL_STATE(1997)] = 39642, + [SMALL_STATE(1998)] = 39713, + [SMALL_STATE(1999)] = 39784, + [SMALL_STATE(2000)] = 39855, + [SMALL_STATE(2001)] = 39926, + [SMALL_STATE(2002)] = 39997, + [SMALL_STATE(2003)] = 40068, + [SMALL_STATE(2004)] = 40137, + [SMALL_STATE(2005)] = 40208, + [SMALL_STATE(2006)] = 40279, + [SMALL_STATE(2007)] = 40350, + [SMALL_STATE(2008)] = 40421, + [SMALL_STATE(2009)] = 40492, + [SMALL_STATE(2010)] = 40563, + [SMALL_STATE(2011)] = 40632, + [SMALL_STATE(2012)] = 40703, + [SMALL_STATE(2013)] = 40774, + [SMALL_STATE(2014)] = 40845, + [SMALL_STATE(2015)] = 40916, + [SMALL_STATE(2016)] = 40987, + [SMALL_STATE(2017)] = 41058, + [SMALL_STATE(2018)] = 41129, + [SMALL_STATE(2019)] = 41200, + [SMALL_STATE(2020)] = 41271, + [SMALL_STATE(2021)] = 41342, + [SMALL_STATE(2022)] = 41413, + [SMALL_STATE(2023)] = 41484, + [SMALL_STATE(2024)] = 41557, + [SMALL_STATE(2025)] = 41628, + [SMALL_STATE(2026)] = 41699, + [SMALL_STATE(2027)] = 41770, + [SMALL_STATE(2028)] = 41841, + [SMALL_STATE(2029)] = 41912, + [SMALL_STATE(2030)] = 41983, + [SMALL_STATE(2031)] = 42054, + [SMALL_STATE(2032)] = 42125, + [SMALL_STATE(2033)] = 42196, + [SMALL_STATE(2034)] = 42267, + [SMALL_STATE(2035)] = 42340, + [SMALL_STATE(2036)] = 42413, + [SMALL_STATE(2037)] = 42484, + [SMALL_STATE(2038)] = 42555, + [SMALL_STATE(2039)] = 42626, + [SMALL_STATE(2040)] = 42697, + [SMALL_STATE(2041)] = 42768, + [SMALL_STATE(2042)] = 42839, + [SMALL_STATE(2043)] = 42910, + [SMALL_STATE(2044)] = 42981, + [SMALL_STATE(2045)] = 43052, + [SMALL_STATE(2046)] = 43123, + [SMALL_STATE(2047)] = 43194, + [SMALL_STATE(2048)] = 43265, + [SMALL_STATE(2049)] = 43338, + [SMALL_STATE(2050)] = 43411, + [SMALL_STATE(2051)] = 43482, + [SMALL_STATE(2052)] = 43553, + [SMALL_STATE(2053)] = 43624, + [SMALL_STATE(2054)] = 43695, + [SMALL_STATE(2055)] = 43766, + [SMALL_STATE(2056)] = 43837, + [SMALL_STATE(2057)] = 43910, + [SMALL_STATE(2058)] = 43983, + [SMALL_STATE(2059)] = 44054, + [SMALL_STATE(2060)] = 44125, + [SMALL_STATE(2061)] = 44198, + [SMALL_STATE(2062)] = 44299, + [SMALL_STATE(2063)] = 44370, + [SMALL_STATE(2064)] = 44441, + [SMALL_STATE(2065)] = 44512, + [SMALL_STATE(2066)] = 44583, + [SMALL_STATE(2067)] = 44654, + [SMALL_STATE(2068)] = 44725, + [SMALL_STATE(2069)] = 44800, + [SMALL_STATE(2070)] = 44871, + [SMALL_STATE(2071)] = 44942, + [SMALL_STATE(2072)] = 45013, + [SMALL_STATE(2073)] = 45086, + [SMALL_STATE(2074)] = 45187, + [SMALL_STATE(2075)] = 45258, + [SMALL_STATE(2076)] = 45329, + [SMALL_STATE(2077)] = 45400, + [SMALL_STATE(2078)] = 45471, + [SMALL_STATE(2079)] = 45540, + [SMALL_STATE(2080)] = 45611, + [SMALL_STATE(2081)] = 45684, + [SMALL_STATE(2082)] = 45753, + [SMALL_STATE(2083)] = 45826, + [SMALL_STATE(2084)] = 45897, + [SMALL_STATE(2085)] = 45968, + [SMALL_STATE(2086)] = 46039, + [SMALL_STATE(2087)] = 46110, + [SMALL_STATE(2088)] = 46181, + [SMALL_STATE(2089)] = 46252, + [SMALL_STATE(2090)] = 46325, + [SMALL_STATE(2091)] = 46398, + [SMALL_STATE(2092)] = 46471, + [SMALL_STATE(2093)] = 46544, + [SMALL_STATE(2094)] = 46617, + [SMALL_STATE(2095)] = 46688, + [SMALL_STATE(2096)] = 46761, + [SMALL_STATE(2097)] = 46834, + [SMALL_STATE(2098)] = 46935, + [SMALL_STATE(2099)] = 47072, + [SMALL_STATE(2100)] = 47209, + [SMALL_STATE(2101)] = 47280, + [SMALL_STATE(2102)] = 47351, + [SMALL_STATE(2103)] = 47424, + [SMALL_STATE(2104)] = 47495, + [SMALL_STATE(2105)] = 47564, + [SMALL_STATE(2106)] = 47637, + [SMALL_STATE(2107)] = 47710, + [SMALL_STATE(2108)] = 47787, + [SMALL_STATE(2109)] = 47860, + [SMALL_STATE(2110)] = 47931, + [SMALL_STATE(2111)] = 48002, + [SMALL_STATE(2112)] = 48073, + [SMALL_STATE(2113)] = 48144, + [SMALL_STATE(2114)] = 48215, + [SMALL_STATE(2115)] = 48286, + [SMALL_STATE(2116)] = 48357, + [SMALL_STATE(2117)] = 48428, + [SMALL_STATE(2118)] = 48499, + [SMALL_STATE(2119)] = 48600, + [SMALL_STATE(2120)] = 48671, + [SMALL_STATE(2121)] = 48742, + [SMALL_STATE(2122)] = 48815, + [SMALL_STATE(2123)] = 48886, + [SMALL_STATE(2124)] = 48959, + [SMALL_STATE(2125)] = 49036, + [SMALL_STATE(2126)] = 49107, + [SMALL_STATE(2127)] = 49176, + [SMALL_STATE(2128)] = 49313, + [SMALL_STATE(2129)] = 49450, + [SMALL_STATE(2130)] = 49521, + [SMALL_STATE(2131)] = 49592, + [SMALL_STATE(2132)] = 49665, + [SMALL_STATE(2133)] = 49738, + [SMALL_STATE(2134)] = 49809, + [SMALL_STATE(2135)] = 49880, + [SMALL_STATE(2136)] = 49951, + [SMALL_STATE(2137)] = 50022, + [SMALL_STATE(2138)] = 50093, + [SMALL_STATE(2139)] = 50164, + [SMALL_STATE(2140)] = 50235, + [SMALL_STATE(2141)] = 50306, + [SMALL_STATE(2142)] = 50375, + [SMALL_STATE(2143)] = 50446, + [SMALL_STATE(2144)] = 50517, + [SMALL_STATE(2145)] = 50588, + [SMALL_STATE(2146)] = 50659, + [SMALL_STATE(2147)] = 50730, + [SMALL_STATE(2148)] = 50801, + [SMALL_STATE(2149)] = 50872, + [SMALL_STATE(2150)] = 50943, + [SMALL_STATE(2151)] = 51014, + [SMALL_STATE(2152)] = 51085, + [SMALL_STATE(2153)] = 51156, + [SMALL_STATE(2154)] = 51225, + [SMALL_STATE(2155)] = 51294, + [SMALL_STATE(2156)] = 51367, + [SMALL_STATE(2157)] = 51440, + [SMALL_STATE(2158)] = 51509, + [SMALL_STATE(2159)] = 51580, + [SMALL_STATE(2160)] = 51650, + [SMALL_STATE(2161)] = 51718, + [SMALL_STATE(2162)] = 51788, + [SMALL_STATE(2163)] = 51886, + [SMALL_STATE(2164)] = 51956, + [SMALL_STATE(2165)] = 52042, + [SMALL_STATE(2166)] = 52112, + [SMALL_STATE(2167)] = 52182, + [SMALL_STATE(2168)] = 52252, + [SMALL_STATE(2169)] = 52320, + [SMALL_STATE(2170)] = 52392, + [SMALL_STATE(2171)] = 52480, + [SMALL_STATE(2172)] = 52554, + [SMALL_STATE(2173)] = 52642, + [SMALL_STATE(2174)] = 52718, + [SMALL_STATE(2175)] = 52808, + [SMALL_STATE(2176)] = 52898, + [SMALL_STATE(2177)] = 52980, + [SMALL_STATE(2178)] = 53064, + [SMALL_STATE(2179)] = 53150, + [SMALL_STATE(2180)] = 53220, + [SMALL_STATE(2181)] = 53290, + [SMALL_STATE(2182)] = 53382, + [SMALL_STATE(2183)] = 53450, + [SMALL_STATE(2184)] = 53538, + [SMALL_STATE(2185)] = 53606, + [SMALL_STATE(2186)] = 53674, + [SMALL_STATE(2187)] = 53764, + [SMALL_STATE(2188)] = 53834, + [SMALL_STATE(2189)] = 53906, + [SMALL_STATE(2190)] = 53980, + [SMALL_STATE(2191)] = 54060, + [SMALL_STATE(2192)] = 54142, + [SMALL_STATE(2193)] = 54226, + [SMALL_STATE(2194)] = 54312, + [SMALL_STATE(2195)] = 54400, + [SMALL_STATE(2196)] = 54490, + [SMALL_STATE(2197)] = 54582, + [SMALL_STATE(2198)] = 54660, + [SMALL_STATE(2199)] = 54736, + [SMALL_STATE(2200)] = 54826, + [SMALL_STATE(2201)] = 54918, + [SMALL_STATE(2202)] = 54986, + [SMALL_STATE(2203)] = 55080, + [SMALL_STATE(2204)] = 55172, + [SMALL_STATE(2205)] = 55252, + [SMALL_STATE(2206)] = 55330, + [SMALL_STATE(2207)] = 55398, + [SMALL_STATE(2208)] = 55466, + [SMALL_STATE(2209)] = 55558, + [SMALL_STATE(2210)] = 55652, + [SMALL_STATE(2211)] = 55746, + [SMALL_STATE(2212)] = 55826, + [SMALL_STATE(2213)] = 55896, + [SMALL_STATE(2214)] = 55994, + [SMALL_STATE(2215)] = 56072, + [SMALL_STATE(2216)] = 56170, + [SMALL_STATE(2217)] = 56242, + [SMALL_STATE(2218)] = 56312, + [SMALL_STATE(2219)] = 56380, + [SMALL_STATE(2220)] = 56448, + [SMALL_STATE(2221)] = 56518, + [SMALL_STATE(2222)] = 56588, + [SMALL_STATE(2223)] = 56658, + [SMALL_STATE(2224)] = 56726, + [SMALL_STATE(2225)] = 56794, + [SMALL_STATE(2226)] = 56864, + [SMALL_STATE(2227)] = 56934, + [SMALL_STATE(2228)] = 57004, + [SMALL_STATE(2229)] = 57098, + [SMALL_STATE(2230)] = 57172, + [SMALL_STATE(2231)] = 57240, + [SMALL_STATE(2232)] = 57308, + [SMALL_STATE(2233)] = 57380, + [SMALL_STATE(2234)] = 57476, + [SMALL_STATE(2235)] = 57574, + [SMALL_STATE(2236)] = 57660, + [SMALL_STATE(2237)] = 57728, + [SMALL_STATE(2238)] = 57800, + [SMALL_STATE(2239)] = 57880, + [SMALL_STATE(2240)] = 57954, + [SMALL_STATE(2241)] = 58036, + [SMALL_STATE(2242)] = 58110, + [SMALL_STATE(2243)] = 58178, + [SMALL_STATE(2244)] = 58246, + [SMALL_STATE(2245)] = 58320, + [SMALL_STATE(2246)] = 58396, + [SMALL_STATE(2247)] = 58470, + [SMALL_STATE(2248)] = 58546, + [SMALL_STATE(2249)] = 58622, + [SMALL_STATE(2250)] = 58700, + [SMALL_STATE(2251)] = 58768, + [SMALL_STATE(2252)] = 58842, + [SMALL_STATE(2253)] = 58918, + [SMALL_STATE(2254)] = 59000, + [SMALL_STATE(2255)] = 59068, + [SMALL_STATE(2256)] = 59152, + [SMALL_STATE(2257)] = 59230, + [SMALL_STATE(2258)] = 59314, + [SMALL_STATE(2259)] = 59400, + [SMALL_STATE(2260)] = 59468, + [SMALL_STATE(2261)] = 59548, + [SMALL_STATE(2262)] = 59624, + [SMALL_STATE(2263)] = 59698, + [SMALL_STATE(2264)] = 59770, + [SMALL_STATE(2265)] = 59838, + [SMALL_STATE(2266)] = 59924, + [SMALL_STATE(2267)] = 59992, + [SMALL_STATE(2268)] = 60068, + [SMALL_STATE(2269)] = 60156, + [SMALL_STATE(2270)] = 60234, + [SMALL_STATE(2271)] = 60312, + [SMALL_STATE(2272)] = 60394, + [SMALL_STATE(2273)] = 60482, + [SMALL_STATE(2274)] = 60564, + [SMALL_STATE(2275)] = 60634, + [SMALL_STATE(2276)] = 60704, + [SMALL_STATE(2277)] = 60794, + [SMALL_STATE(2278)] = 60928, + [SMALL_STATE(2279)] = 61012, + [SMALL_STATE(2280)] = 61102, + [SMALL_STATE(2281)] = 61188, + [SMALL_STATE(2282)] = 61280, + [SMALL_STATE(2283)] = 61368, + [SMALL_STATE(2284)] = 61460, + [SMALL_STATE(2285)] = 61554, + [SMALL_STATE(2286)] = 61638, + [SMALL_STATE(2287)] = 61728, + [SMALL_STATE(2288)] = 61822, + [SMALL_STATE(2289)] = 61914, + [SMALL_STATE(2290)] = 62010, + [SMALL_STATE(2291)] = 62090, + [SMALL_STATE(2292)] = 62172, + [SMALL_STATE(2293)] = 62240, + [SMALL_STATE(2294)] = 62318, + [SMALL_STATE(2295)] = 62412, + [SMALL_STATE(2296)] = 62492, + [SMALL_STATE(2297)] = 62588, + [SMALL_STATE(2298)] = 62722, + [SMALL_STATE(2299)] = 62796, + [SMALL_STATE(2300)] = 62880, + [SMALL_STATE(2301)] = 62956, + [SMALL_STATE(2302)] = 63090, + [SMALL_STATE(2303)] = 63168, + [SMALL_STATE(2304)] = 63250, + [SMALL_STATE(2305)] = 63334, + [SMALL_STATE(2306)] = 63420, + [SMALL_STATE(2307)] = 63490, + [SMALL_STATE(2308)] = 63574, + [SMALL_STATE(2309)] = 63660, + [SMALL_STATE(2310)] = 63748, + [SMALL_STATE(2311)] = 63820, + [SMALL_STATE(2312)] = 63910, + [SMALL_STATE(2313)] = 63990, + [SMALL_STATE(2314)] = 64082, + [SMALL_STATE(2315)] = 64168, + [SMALL_STATE(2316)] = 64262, + [SMALL_STATE(2317)] = 64358, + [SMALL_STATE(2318)] = 64440, + [SMALL_STATE(2319)] = 64528, + [SMALL_STATE(2320)] = 64608, + [SMALL_STATE(2321)] = 64742, + [SMALL_STATE(2322)] = 64876, + [SMALL_STATE(2323)] = 64946, + [SMALL_STATE(2324)] = 65016, + [SMALL_STATE(2325)] = 65150, + [SMALL_STATE(2326)] = 65284, + [SMALL_STATE(2327)] = 65418, + [SMALL_STATE(2328)] = 65488, + [SMALL_STATE(2329)] = 65586, + [SMALL_STATE(2330)] = 65720, + [SMALL_STATE(2331)] = 65854, + [SMALL_STATE(2332)] = 65988, + [SMALL_STATE(2333)] = 66122, + [SMALL_STATE(2334)] = 66192, + [SMALL_STATE(2335)] = 66260, + [SMALL_STATE(2336)] = 66358, + [SMALL_STATE(2337)] = 66492, + [SMALL_STATE(2338)] = 66590, + [SMALL_STATE(2339)] = 66688, + [SMALL_STATE(2340)] = 66786, + [SMALL_STATE(2341)] = 66884, + [SMALL_STATE(2342)] = 66952, + [SMALL_STATE(2343)] = 67020, + [SMALL_STATE(2344)] = 67087, + [SMALL_STATE(2345)] = 67158, + [SMALL_STATE(2346)] = 67225, + [SMALL_STATE(2347)] = 67302, + [SMALL_STATE(2348)] = 67369, + [SMALL_STATE(2349)] = 67436, + [SMALL_STATE(2350)] = 67503, + [SMALL_STATE(2351)] = 67570, + [SMALL_STATE(2352)] = 67657, + [SMALL_STATE(2353)] = 67724, + [SMALL_STATE(2354)] = 67791, + [SMALL_STATE(2355)] = 67876, + [SMALL_STATE(2356)] = 67943, + [SMALL_STATE(2357)] = 68010, + [SMALL_STATE(2358)] = 68077, + [SMALL_STATE(2359)] = 68144, + [SMALL_STATE(2360)] = 68211, + [SMALL_STATE(2361)] = 68278, + [SMALL_STATE(2362)] = 68345, + [SMALL_STATE(2363)] = 68412, + [SMALL_STATE(2364)] = 68479, + [SMALL_STATE(2365)] = 68546, + [SMALL_STATE(2366)] = 68635, + [SMALL_STATE(2367)] = 68702, + [SMALL_STATE(2368)] = 68769, + [SMALL_STATE(2369)] = 68836, + [SMALL_STATE(2370)] = 68903, + [SMALL_STATE(2371)] = 68994, + [SMALL_STATE(2372)] = 69061, + [SMALL_STATE(2373)] = 69128, + [SMALL_STATE(2374)] = 69195, + [SMALL_STATE(2375)] = 69278, + [SMALL_STATE(2376)] = 69345, + [SMALL_STATE(2377)] = 69412, + [SMALL_STATE(2378)] = 69487, + [SMALL_STATE(2379)] = 69554, + [SMALL_STATE(2380)] = 69637, + [SMALL_STATE(2381)] = 69704, + [SMALL_STATE(2382)] = 69773, + [SMALL_STATE(2383)] = 69854, + [SMALL_STATE(2384)] = 69921, + [SMALL_STATE(2385)] = 69988, + [SMALL_STATE(2386)] = 70055, + [SMALL_STATE(2387)] = 70142, + [SMALL_STATE(2388)] = 70225, + [SMALL_STATE(2389)] = 70292, + [SMALL_STATE(2390)] = 70359, + [SMALL_STATE(2391)] = 70426, + [SMALL_STATE(2392)] = 70493, + [SMALL_STATE(2393)] = 70560, + [SMALL_STATE(2394)] = 70627, + [SMALL_STATE(2395)] = 70694, + [SMALL_STATE(2396)] = 70761, + [SMALL_STATE(2397)] = 70828, + [SMALL_STATE(2398)] = 70895, + [SMALL_STATE(2399)] = 70962, + [SMALL_STATE(2400)] = 71029, + [SMALL_STATE(2401)] = 71100, + [SMALL_STATE(2402)] = 71167, + [SMALL_STATE(2403)] = 71234, + [SMALL_STATE(2404)] = 71301, + [SMALL_STATE(2405)] = 71368, + [SMALL_STATE(2406)] = 71435, + [SMALL_STATE(2407)] = 71504, + [SMALL_STATE(2408)] = 71571, + [SMALL_STATE(2409)] = 71638, + [SMALL_STATE(2410)] = 71705, + [SMALL_STATE(2411)] = 71772, + [SMALL_STATE(2412)] = 71843, + [SMALL_STATE(2413)] = 71926, + [SMALL_STATE(2414)] = 71993, + [SMALL_STATE(2415)] = 72066, + [SMALL_STATE(2416)] = 72133, + [SMALL_STATE(2417)] = 72202, + [SMALL_STATE(2418)] = 72269, + [SMALL_STATE(2419)] = 72338, + [SMALL_STATE(2420)] = 72405, + [SMALL_STATE(2421)] = 72482, + [SMALL_STATE(2422)] = 72549, + [SMALL_STATE(2423)] = 72616, + [SMALL_STATE(2424)] = 72695, + [SMALL_STATE(2425)] = 72762, + [SMALL_STATE(2426)] = 72829, + [SMALL_STATE(2427)] = 72896, + [SMALL_STATE(2428)] = 72963, + [SMALL_STATE(2429)] = 73030, + [SMALL_STATE(2430)] = 73097, + [SMALL_STATE(2431)] = 73163, + [SMALL_STATE(2432)] = 73255, + [SMALL_STATE(2433)] = 73321, + [SMALL_STATE(2434)] = 73405, + [SMALL_STATE(2435)] = 73473, + [SMALL_STATE(2436)] = 73553, + [SMALL_STATE(2437)] = 73619, + [SMALL_STATE(2438)] = 73685, + [SMALL_STATE(2439)] = 73751, + [SMALL_STATE(2440)] = 73843, + [SMALL_STATE(2441)] = 73935, + [SMALL_STATE(2442)] = 74027, + [SMALL_STATE(2443)] = 74119, + [SMALL_STATE(2444)] = 74185, + [SMALL_STATE(2445)] = 74251, + [SMALL_STATE(2446)] = 74317, + [SMALL_STATE(2447)] = 74383, + [SMALL_STATE(2448)] = 74475, + [SMALL_STATE(2449)] = 74555, + [SMALL_STATE(2450)] = 74621, + [SMALL_STATE(2451)] = 74713, + [SMALL_STATE(2452)] = 74805, + [SMALL_STATE(2453)] = 74897, + [SMALL_STATE(2454)] = 74977, + [SMALL_STATE(2455)] = 75043, + [SMALL_STATE(2456)] = 75109, + [SMALL_STATE(2457)] = 75199, + [SMALL_STATE(2458)] = 75291, + [SMALL_STATE(2459)] = 75375, + [SMALL_STATE(2460)] = 75443, + [SMALL_STATE(2461)] = 75509, + [SMALL_STATE(2462)] = 75575, + [SMALL_STATE(2463)] = 75641, + [SMALL_STATE(2464)] = 75707, + [SMALL_STATE(2465)] = 75773, + [SMALL_STATE(2466)] = 75857, + [SMALL_STATE(2467)] = 75923, + [SMALL_STATE(2468)] = 76015, + [SMALL_STATE(2469)] = 76095, + [SMALL_STATE(2470)] = 76187, + [SMALL_STATE(2471)] = 76253, + [SMALL_STATE(2472)] = 76333, + [SMALL_STATE(2473)] = 76422, + [SMALL_STATE(2474)] = 76511, + [SMALL_STATE(2475)] = 76600, + [SMALL_STATE(2476)] = 76689, + [SMALL_STATE(2477)] = 76778, + [SMALL_STATE(2478)] = 76843, + [SMALL_STATE(2479)] = 76908, + [SMALL_STATE(2480)] = 76997, + [SMALL_STATE(2481)] = 77062, + [SMALL_STATE(2482)] = 77151, + [SMALL_STATE(2483)] = 77240, + [SMALL_STATE(2484)] = 77329, + [SMALL_STATE(2485)] = 77394, + [SMALL_STATE(2486)] = 77459, + [SMALL_STATE(2487)] = 77524, + [SMALL_STATE(2488)] = 77589, + [SMALL_STATE(2489)] = 77678, + [SMALL_STATE(2490)] = 77743, + [SMALL_STATE(2491)] = 77808, + [SMALL_STATE(2492)] = 77873, + [SMALL_STATE(2493)] = 77962, + [SMALL_STATE(2494)] = 78051, + [SMALL_STATE(2495)] = 78120, + [SMALL_STATE(2496)] = 78209, + [SMALL_STATE(2497)] = 78298, + [SMALL_STATE(2498)] = 78387, + [SMALL_STATE(2499)] = 78452, + [SMALL_STATE(2500)] = 78541, + [SMALL_STATE(2501)] = 78606, + [SMALL_STATE(2502)] = 78671, + [SMALL_STATE(2503)] = 78744, + [SMALL_STATE(2504)] = 78809, + [SMALL_STATE(2505)] = 78898, + [SMALL_STATE(2506)] = 78987, + [SMALL_STATE(2507)] = 79076, + [SMALL_STATE(2508)] = 79149, + [SMALL_STATE(2509)] = 79222, + [SMALL_STATE(2510)] = 79287, + [SMALL_STATE(2511)] = 79360, + [SMALL_STATE(2512)] = 79433, + [SMALL_STATE(2513)] = 79522, + [SMALL_STATE(2514)] = 79611, + [SMALL_STATE(2515)] = 79692, + [SMALL_STATE(2516)] = 79765, + [SMALL_STATE(2517)] = 79838, + [SMALL_STATE(2518)] = 79911, + [SMALL_STATE(2519)] = 79984, + [SMALL_STATE(2520)] = 80057, + [SMALL_STATE(2521)] = 80130, + [SMALL_STATE(2522)] = 80203, + [SMALL_STATE(2523)] = 80276, + [SMALL_STATE(2524)] = 80349, + [SMALL_STATE(2525)] = 80422, + [SMALL_STATE(2526)] = 80495, + [SMALL_STATE(2527)] = 80568, + [SMALL_STATE(2528)] = 80641, + [SMALL_STATE(2529)] = 80714, + [SMALL_STATE(2530)] = 80787, + [SMALL_STATE(2531)] = 80860, + [SMALL_STATE(2532)] = 80933, + [SMALL_STATE(2533)] = 81002, + [SMALL_STATE(2534)] = 81075, + [SMALL_STATE(2535)] = 81164, + [SMALL_STATE(2536)] = 81253, + [SMALL_STATE(2537)] = 81322, + [SMALL_STATE(2538)] = 81411, + [SMALL_STATE(2539)] = 81500, + [SMALL_STATE(2540)] = 81573, + [SMALL_STATE(2541)] = 81646, + [SMALL_STATE(2542)] = 81711, + [SMALL_STATE(2543)] = 81800, + [SMALL_STATE(2544)] = 81889, + [SMALL_STATE(2545)] = 81978, + [SMALL_STATE(2546)] = 82067, + [SMALL_STATE(2547)] = 82156, + [SMALL_STATE(2548)] = 82245, + [SMALL_STATE(2549)] = 82326, + [SMALL_STATE(2550)] = 82395, + [SMALL_STATE(2551)] = 82476, + [SMALL_STATE(2552)] = 82557, + [SMALL_STATE(2553)] = 82630, + [SMALL_STATE(2554)] = 82696, + [SMALL_STATE(2555)] = 82762, + [SMALL_STATE(2556)] = 82830, + [SMALL_STATE(2557)] = 82898, + [SMALL_STATE(2558)] = 82964, + [SMALL_STATE(2559)] = 83028, + [SMALL_STATE(2560)] = 83094, + [SMALL_STATE(2561)] = 83166, + [SMALL_STATE(2562)] = 83236, + [SMALL_STATE(2563)] = 83308, + [SMALL_STATE(2564)] = 83380, + [SMALL_STATE(2565)] = 83450, + [SMALL_STATE(2566)] = 83516, + [SMALL_STATE(2567)] = 83582, + [SMALL_STATE(2568)] = 83645, + [SMALL_STATE(2569)] = 83712, + [SMALL_STATE(2570)] = 83779, + [SMALL_STATE(2571)] = 83842, + [SMALL_STATE(2572)] = 83911, + [SMALL_STATE(2573)] = 83978, + [SMALL_STATE(2574)] = 84041, + [SMALL_STATE(2575)] = 84108, + [SMALL_STATE(2576)] = 84171, + [SMALL_STATE(2577)] = 84238, + [SMALL_STATE(2578)] = 84305, + [SMALL_STATE(2579)] = 84372, + [SMALL_STATE(2580)] = 84439, + [SMALL_STATE(2581)] = 84502, + [SMALL_STATE(2582)] = 84569, + [SMALL_STATE(2583)] = 84632, + [SMALL_STATE(2584)] = 84699, + [SMALL_STATE(2585)] = 84770, + [SMALL_STATE(2586)] = 84833, + [SMALL_STATE(2587)] = 84898, + [SMALL_STATE(2588)] = 84965, + [SMALL_STATE(2589)] = 85032, + [SMALL_STATE(2590)] = 85095, + [SMALL_STATE(2591)] = 85158, + [SMALL_STATE(2592)] = 85225, + [SMALL_STATE(2593)] = 85292, + [SMALL_STATE(2594)] = 85359, + [SMALL_STATE(2595)] = 85426, + [SMALL_STATE(2596)] = 85499, + [SMALL_STATE(2597)] = 85564, + [SMALL_STATE(2598)] = 85629, + [SMALL_STATE(2599)] = 85692, + [SMALL_STATE(2600)] = 85755, + [SMALL_STATE(2601)] = 85822, + [SMALL_STATE(2602)] = 85887, + [SMALL_STATE(2603)] = 85950, + [SMALL_STATE(2604)] = 86013, + [SMALL_STATE(2605)] = 86078, + [SMALL_STATE(2606)] = 86145, + [SMALL_STATE(2607)] = 86218, + [SMALL_STATE(2608)] = 86281, + [SMALL_STATE(2609)] = 86348, + [SMALL_STATE(2610)] = 86411, + [SMALL_STATE(2611)] = 86474, + [SMALL_STATE(2612)] = 86537, + [SMALL_STATE(2613)] = 86608, + [SMALL_STATE(2614)] = 86671, + [SMALL_STATE(2615)] = 86738, + [SMALL_STATE(2616)] = 86801, + [SMALL_STATE(2617)] = 86870, + [SMALL_STATE(2618)] = 86940, + [SMALL_STATE(2619)] = 87002, + [SMALL_STATE(2620)] = 87068, + [SMALL_STATE(2621)] = 87130, + [SMALL_STATE(2622)] = 87192, + [SMALL_STATE(2623)] = 87258, + [SMALL_STATE(2624)] = 87330, + [SMALL_STATE(2625)] = 87394, + [SMALL_STATE(2626)] = 87458, + [SMALL_STATE(2627)] = 87522, + [SMALL_STATE(2628)] = 87584, + [SMALL_STATE(2629)] = 87648, + [SMALL_STATE(2630)] = 87712, + [SMALL_STATE(2631)] = 87774, + [SMALL_STATE(2632)] = 87840, + [SMALL_STATE(2633)] = 87904, + [SMALL_STATE(2634)] = 87968, + [SMALL_STATE(2635)] = 88038, + [SMALL_STATE(2636)] = 88100, + [SMALL_STATE(2637)] = 88164, + [SMALL_STATE(2638)] = 88226, + [SMALL_STATE(2639)] = 88290, + [SMALL_STATE(2640)] = 88352, + [SMALL_STATE(2641)] = 88418, + [SMALL_STATE(2642)] = 88480, + [SMALL_STATE(2643)] = 88544, + [SMALL_STATE(2644)] = 88606, + [SMALL_STATE(2645)] = 88724, + [SMALL_STATE(2646)] = 88794, + [SMALL_STATE(2647)] = 88856, + [SMALL_STATE(2648)] = 88918, + [SMALL_STATE(2649)] = 88980, + [SMALL_STATE(2650)] = 89042, + [SMALL_STATE(2651)] = 89112, + [SMALL_STATE(2652)] = 89182, + [SMALL_STATE(2653)] = 89246, + [SMALL_STATE(2654)] = 89316, + [SMALL_STATE(2655)] = 89378, + [SMALL_STATE(2656)] = 89448, + [SMALL_STATE(2657)] = 89512, + [SMALL_STATE(2658)] = 89582, + [SMALL_STATE(2659)] = 89646, + [SMALL_STATE(2660)] = 89758, + [SMALL_STATE(2661)] = 89820, + [SMALL_STATE(2662)] = 89882, + [SMALL_STATE(2663)] = 89944, + [SMALL_STATE(2664)] = 90062, + [SMALL_STATE(2665)] = 90180, + [SMALL_STATE(2666)] = 90250, + [SMALL_STATE(2667)] = 90312, + [SMALL_STATE(2668)] = 90424, + [SMALL_STATE(2669)] = 90494, + [SMALL_STATE(2670)] = 90608, + [SMALL_STATE(2671)] = 90680, + [SMALL_STATE(2672)] = 90750, + [SMALL_STATE(2673)] = 90820, + [SMALL_STATE(2674)] = 90934, + [SMALL_STATE(2675)] = 91004, + [SMALL_STATE(2676)] = 91066, + [SMALL_STATE(2677)] = 91136, + [SMALL_STATE(2678)] = 91206, + [SMALL_STATE(2679)] = 91276, + [SMALL_STATE(2680)] = 91346, + [SMALL_STATE(2681)] = 91410, + [SMALL_STATE(2682)] = 91472, + [SMALL_STATE(2683)] = 91536, + [SMALL_STATE(2684)] = 91600, + [SMALL_STATE(2685)] = 91670, + [SMALL_STATE(2686)] = 91740, + [SMALL_STATE(2687)] = 91801, + [SMALL_STATE(2688)] = 91862, + [SMALL_STATE(2689)] = 91923, + [SMALL_STATE(2690)] = 91984, + [SMALL_STATE(2691)] = 92045, + [SMALL_STATE(2692)] = 92106, + [SMALL_STATE(2693)] = 92167, + [SMALL_STATE(2694)] = 92236, + [SMALL_STATE(2695)] = 92305, + [SMALL_STATE(2696)] = 92414, + [SMALL_STATE(2697)] = 92475, + [SMALL_STATE(2698)] = 92536, + [SMALL_STATE(2699)] = 92597, + [SMALL_STATE(2700)] = 92658, + [SMALL_STATE(2701)] = 92719, + [SMALL_STATE(2702)] = 92788, + [SMALL_STATE(2703)] = 92849, + [SMALL_STATE(2704)] = 92910, + [SMALL_STATE(2705)] = 93021, + [SMALL_STATE(2706)] = 93130, + [SMALL_STATE(2707)] = 93191, + [SMALL_STATE(2708)] = 93252, + [SMALL_STATE(2709)] = 93313, + [SMALL_STATE(2710)] = 93376, + [SMALL_STATE(2711)] = 93443, + [SMALL_STATE(2712)] = 93504, + [SMALL_STATE(2713)] = 93565, + [SMALL_STATE(2714)] = 93626, + [SMALL_STATE(2715)] = 93687, + [SMALL_STATE(2716)] = 93748, + [SMALL_STATE(2717)] = 93809, + [SMALL_STATE(2718)] = 93870, + [SMALL_STATE(2719)] = 93931, + [SMALL_STATE(2720)] = 93992, + [SMALL_STATE(2721)] = 94053, + [SMALL_STATE(2722)] = 94114, + [SMALL_STATE(2723)] = 94175, + [SMALL_STATE(2724)] = 94236, + [SMALL_STATE(2725)] = 94297, + [SMALL_STATE(2726)] = 94358, + [SMALL_STATE(2727)] = 94419, + [SMALL_STATE(2728)] = 94480, + [SMALL_STATE(2729)] = 94547, + [SMALL_STATE(2730)] = 94658, + [SMALL_STATE(2731)] = 94723, + [SMALL_STATE(2732)] = 94784, + [SMALL_STATE(2733)] = 94853, + [SMALL_STATE(2734)] = 94922, + [SMALL_STATE(2735)] = 94985, + [SMALL_STATE(2736)] = 95046, + [SMALL_STATE(2737)] = 95107, + [SMALL_STATE(2738)] = 95170, + [SMALL_STATE(2739)] = 95239, + [SMALL_STATE(2740)] = 95304, + [SMALL_STATE(2741)] = 95365, + [SMALL_STATE(2742)] = 95426, + [SMALL_STATE(2743)] = 95493, + [SMALL_STATE(2744)] = 95554, + [SMALL_STATE(2745)] = 95617, + [SMALL_STATE(2746)] = 95686, + [SMALL_STATE(2747)] = 95755, + [SMALL_STATE(2748)] = 95816, + [SMALL_STATE(2749)] = 95885, + [SMALL_STATE(2750)] = 95946, + [SMALL_STATE(2751)] = 96015, + [SMALL_STATE(2752)] = 96080, + [SMALL_STATE(2753)] = 96189, + [SMALL_STATE(2754)] = 96256, + [SMALL_STATE(2755)] = 96317, + [SMALL_STATE(2756)] = 96386, + [SMALL_STATE(2757)] = 96451, + [SMALL_STATE(2758)] = 96512, + [SMALL_STATE(2759)] = 96581, + [SMALL_STATE(2760)] = 96644, + [SMALL_STATE(2761)] = 96713, + [SMALL_STATE(2762)] = 96782, + [SMALL_STATE(2763)] = 96847, + [SMALL_STATE(2764)] = 96908, + [SMALL_STATE(2765)] = 96969, + [SMALL_STATE(2766)] = 97030, + [SMALL_STATE(2767)] = 97091, + [SMALL_STATE(2768)] = 97156, + [SMALL_STATE(2769)] = 97217, + [SMALL_STATE(2770)] = 97278, + [SMALL_STATE(2771)] = 97347, + [SMALL_STATE(2772)] = 97416, + [SMALL_STATE(2773)] = 97485, + [SMALL_STATE(2774)] = 97554, + [SMALL_STATE(2775)] = 97615, + [SMALL_STATE(2776)] = 97676, + [SMALL_STATE(2777)] = 97737, + [SMALL_STATE(2778)] = 97798, + [SMALL_STATE(2779)] = 97861, + [SMALL_STATE(2780)] = 97926, + [SMALL_STATE(2781)] = 97995, + [SMALL_STATE(2782)] = 98056, + [SMALL_STATE(2783)] = 98117, + [SMALL_STATE(2784)] = 98178, + [SMALL_STATE(2785)] = 98247, + [SMALL_STATE(2786)] = 98316, + [SMALL_STATE(2787)] = 98425, + [SMALL_STATE(2788)] = 98486, + [SMALL_STATE(2789)] = 98553, + [SMALL_STATE(2790)] = 98613, + [SMALL_STATE(2791)] = 98677, + [SMALL_STATE(2792)] = 98739, + [SMALL_STATE(2793)] = 98799, + [SMALL_STATE(2794)] = 98859, + [SMALL_STATE(2795)] = 98919, + [SMALL_STATE(2796)] = 98983, + [SMALL_STATE(2797)] = 99051, + [SMALL_STATE(2798)] = 99119, + [SMALL_STATE(2799)] = 99185, + [SMALL_STATE(2800)] = 99253, + [SMALL_STATE(2801)] = 99319, + [SMALL_STATE(2802)] = 99387, + [SMALL_STATE(2803)] = 99451, + [SMALL_STATE(2804)] = 99511, + [SMALL_STATE(2805)] = 99571, + [SMALL_STATE(2806)] = 99635, + [SMALL_STATE(2807)] = 99697, + [SMALL_STATE(2808)] = 99757, + [SMALL_STATE(2809)] = 99821, + [SMALL_STATE(2810)] = 99881, + [SMALL_STATE(2811)] = 99945, + [SMALL_STATE(2812)] = 100005, + [SMALL_STATE(2813)] = 100069, + [SMALL_STATE(2814)] = 100129, + [SMALL_STATE(2815)] = 100197, + [SMALL_STATE(2816)] = 100261, + [SMALL_STATE(2817)] = 100325, + [SMALL_STATE(2818)] = 100389, + [SMALL_STATE(2819)] = 100457, + [SMALL_STATE(2820)] = 100517, + [SMALL_STATE(2821)] = 100577, + [SMALL_STATE(2822)] = 100639, + [SMALL_STATE(2823)] = 100703, + [SMALL_STATE(2824)] = 100767, + [SMALL_STATE(2825)] = 100827, + [SMALL_STATE(2826)] = 100895, + [SMALL_STATE(2827)] = 100959, + [SMALL_STATE(2828)] = 101023, + [SMALL_STATE(2829)] = 101091, + [SMALL_STATE(2830)] = 101155, + [SMALL_STATE(2831)] = 101219, + [SMALL_STATE(2832)] = 101279, + [SMALL_STATE(2833)] = 101343, + [SMALL_STATE(2834)] = 101403, + [SMALL_STATE(2835)] = 101467, + [SMALL_STATE(2836)] = 101539, + [SMALL_STATE(2837)] = 101607, + [SMALL_STATE(2838)] = 101675, + [SMALL_STATE(2839)] = 101735, + [SMALL_STATE(2840)] = 101799, + [SMALL_STATE(2841)] = 101867, + [SMALL_STATE(2842)] = 101927, + [SMALL_STATE(2843)] = 101991, + [SMALL_STATE(2844)] = 102055, + [SMALL_STATE(2845)] = 102117, + [SMALL_STATE(2846)] = 102181, + [SMALL_STATE(2847)] = 102249, + [SMALL_STATE(2848)] = 102309, + [SMALL_STATE(2849)] = 102373, + [SMALL_STATE(2850)] = 102437, + [SMALL_STATE(2851)] = 102501, + [SMALL_STATE(2852)] = 102569, + [SMALL_STATE(2853)] = 102637, + [SMALL_STATE(2854)] = 102697, + [SMALL_STATE(2855)] = 102759, + [SMALL_STATE(2856)] = 102818, + [SMALL_STATE(2857)] = 102879, + [SMALL_STATE(2858)] = 102942, + [SMALL_STATE(2859)] = 103001, + [SMALL_STATE(2860)] = 103060, + [SMALL_STATE(2861)] = 103121, + [SMALL_STATE(2862)] = 103182, + [SMALL_STATE(2863)] = 103241, + [SMALL_STATE(2864)] = 103300, + [SMALL_STATE(2865)] = 103361, + [SMALL_STATE(2866)] = 103420, + [SMALL_STATE(2867)] = 103479, + [SMALL_STATE(2868)] = 103538, + [SMALL_STATE(2869)] = 103597, + [SMALL_STATE(2870)] = 103656, + [SMALL_STATE(2871)] = 103717, + [SMALL_STATE(2872)] = 103778, + [SMALL_STATE(2873)] = 103837, + [SMALL_STATE(2874)] = 103896, + [SMALL_STATE(2875)] = 103955, + [SMALL_STATE(2876)] = 104014, + [SMALL_STATE(2877)] = 104073, + [SMALL_STATE(2878)] = 104132, + [SMALL_STATE(2879)] = 104191, + [SMALL_STATE(2880)] = 104254, + [SMALL_STATE(2881)] = 104313, + [SMALL_STATE(2882)] = 104372, + [SMALL_STATE(2883)] = 104431, + [SMALL_STATE(2884)] = 104494, + [SMALL_STATE(2885)] = 104553, + [SMALL_STATE(2886)] = 104614, + [SMALL_STATE(2887)] = 104673, + [SMALL_STATE(2888)] = 104732, + [SMALL_STATE(2889)] = 104803, + [SMALL_STATE(2890)] = 104864, + [SMALL_STATE(2891)] = 104923, + [SMALL_STATE(2892)] = 104982, + [SMALL_STATE(2893)] = 105045, + [SMALL_STATE(2894)] = 105104, + [SMALL_STATE(2895)] = 105165, + [SMALL_STATE(2896)] = 105228, + [SMALL_STATE(2897)] = 105289, + [SMALL_STATE(2898)] = 105348, + [SMALL_STATE(2899)] = 105407, + [SMALL_STATE(2900)] = 105466, + [SMALL_STATE(2901)] = 105525, + [SMALL_STATE(2902)] = 105584, + [SMALL_STATE(2903)] = 105643, + [SMALL_STATE(2904)] = 105704, + [SMALL_STATE(2905)] = 105763, + [SMALL_STATE(2906)] = 105822, + [SMALL_STATE(2907)] = 105881, + [SMALL_STATE(2908)] = 105940, + [SMALL_STATE(2909)] = 105999, + [SMALL_STATE(2910)] = 106062, + [SMALL_STATE(2911)] = 106123, + [SMALL_STATE(2912)] = 106184, + [SMALL_STATE(2913)] = 106243, + [SMALL_STATE(2914)] = 106302, + [SMALL_STATE(2915)] = 106361, + [SMALL_STATE(2916)] = 106420, + [SMALL_STATE(2917)] = 106479, + [SMALL_STATE(2918)] = 106552, + [SMALL_STATE(2919)] = 106611, + [SMALL_STATE(2920)] = 106670, + [SMALL_STATE(2921)] = 106729, + [SMALL_STATE(2922)] = 106788, + [SMALL_STATE(2923)] = 106849, + [SMALL_STATE(2924)] = 106908, + [SMALL_STATE(2925)] = 106967, + [SMALL_STATE(2926)] = 107026, + [SMALL_STATE(2927)] = 107085, + [SMALL_STATE(2928)] = 107144, + [SMALL_STATE(2929)] = 107204, + [SMALL_STATE(2930)] = 107270, + [SMALL_STATE(2931)] = 107328, + [SMALL_STATE(2932)] = 107386, + [SMALL_STATE(2933)] = 107446, + [SMALL_STATE(2934)] = 107506, + [SMALL_STATE(2935)] = 107564, + [SMALL_STATE(2936)] = 107622, + [SMALL_STATE(2937)] = 107680, + [SMALL_STATE(2938)] = 107740, + [SMALL_STATE(2939)] = 107798, + [SMALL_STATE(2940)] = 107856, + [SMALL_STATE(2941)] = 107914, + [SMALL_STATE(2942)] = 107972, + [SMALL_STATE(2943)] = 108032, + [SMALL_STATE(2944)] = 108090, + [SMALL_STATE(2945)] = 108148, + [SMALL_STATE(2946)] = 108206, + [SMALL_STATE(2947)] = 108266, + [SMALL_STATE(2948)] = 108326, + [SMALL_STATE(2949)] = 108384, + [SMALL_STATE(2950)] = 108442, + [SMALL_STATE(2951)] = 108502, + [SMALL_STATE(2952)] = 108562, + [SMALL_STATE(2953)] = 108620, + [SMALL_STATE(2954)] = 108680, + [SMALL_STATE(2955)] = 108738, + [SMALL_STATE(2956)] = 108796, + [SMALL_STATE(2957)] = 108856, + [SMALL_STATE(2958)] = 108916, + [SMALL_STATE(2959)] = 108976, + [SMALL_STATE(2960)] = 109034, + [SMALL_STATE(2961)] = 109092, + [SMALL_STATE(2962)] = 109150, + [SMALL_STATE(2963)] = 109208, + [SMALL_STATE(2964)] = 109266, + [SMALL_STATE(2965)] = 109326, + [SMALL_STATE(2966)] = 109386, + [SMALL_STATE(2967)] = 109446, + [SMALL_STATE(2968)] = 109504, + [SMALL_STATE(2969)] = 109564, + [SMALL_STATE(2970)] = 109622, + [SMALL_STATE(2971)] = 109680, + [SMALL_STATE(2972)] = 109738, + [SMALL_STATE(2973)] = 109796, + [SMALL_STATE(2974)] = 109854, + [SMALL_STATE(2975)] = 109914, + [SMALL_STATE(2976)] = 109972, + [SMALL_STATE(2977)] = 110030, + [SMALL_STATE(2978)] = 110090, + [SMALL_STATE(2979)] = 110148, + [SMALL_STATE(2980)] = 110206, + [SMALL_STATE(2981)] = 110266, + [SMALL_STATE(2982)] = 110326, + [SMALL_STATE(2983)] = 110386, + [SMALL_STATE(2984)] = 110443, + [SMALL_STATE(2985)] = 110500, + [SMALL_STATE(2986)] = 110557, + [SMALL_STATE(2987)] = 110614, + [SMALL_STATE(2988)] = 110671, + [SMALL_STATE(2989)] = 110728, + [SMALL_STATE(2990)] = 110785, + [SMALL_STATE(2991)] = 110842, + [SMALL_STATE(2992)] = 110899, + [SMALL_STATE(2993)] = 110956, + [SMALL_STATE(2994)] = 111013, + [SMALL_STATE(2995)] = 111070, + [SMALL_STATE(2996)] = 111127, + [SMALL_STATE(2997)] = 111184, + [SMALL_STATE(2998)] = 111241, + [SMALL_STATE(2999)] = 111298, + [SMALL_STATE(3000)] = 111355, + [SMALL_STATE(3001)] = 111412, + [SMALL_STATE(3002)] = 111469, + [SMALL_STATE(3003)] = 111526, + [SMALL_STATE(3004)] = 111583, + [SMALL_STATE(3005)] = 111640, + [SMALL_STATE(3006)] = 111697, + [SMALL_STATE(3007)] = 111762, + [SMALL_STATE(3008)] = 111819, + [SMALL_STATE(3009)] = 111876, + [SMALL_STATE(3010)] = 111933, + [SMALL_STATE(3011)] = 111990, + [SMALL_STATE(3012)] = 112047, + [SMALL_STATE(3013)] = 112114, + [SMALL_STATE(3014)] = 112171, + [SMALL_STATE(3015)] = 112228, + [SMALL_STATE(3016)] = 112285, + [SMALL_STATE(3017)] = 112342, + [SMALL_STATE(3018)] = 112399, + [SMALL_STATE(3019)] = 112456, + [SMALL_STATE(3020)] = 112513, + [SMALL_STATE(3021)] = 112570, + [SMALL_STATE(3022)] = 112627, + [SMALL_STATE(3023)] = 112684, + [SMALL_STATE(3024)] = 112741, + [SMALL_STATE(3025)] = 112798, + [SMALL_STATE(3026)] = 112855, + [SMALL_STATE(3027)] = 112912, + [SMALL_STATE(3028)] = 112969, + [SMALL_STATE(3029)] = 113026, + [SMALL_STATE(3030)] = 113083, + [SMALL_STATE(3031)] = 113140, + [SMALL_STATE(3032)] = 113197, + [SMALL_STATE(3033)] = 113254, + [SMALL_STATE(3034)] = 113311, + [SMALL_STATE(3035)] = 113368, + [SMALL_STATE(3036)] = 113425, + [SMALL_STATE(3037)] = 113482, + [SMALL_STATE(3038)] = 113539, + [SMALL_STATE(3039)] = 113596, + [SMALL_STATE(3040)] = 113653, + [SMALL_STATE(3041)] = 113710, + [SMALL_STATE(3042)] = 113767, + [SMALL_STATE(3043)] = 113824, + [SMALL_STATE(3044)] = 113881, + [SMALL_STATE(3045)] = 113938, + [SMALL_STATE(3046)] = 113995, + [SMALL_STATE(3047)] = 114052, + [SMALL_STATE(3048)] = 114109, + [SMALL_STATE(3049)] = 114166, + [SMALL_STATE(3050)] = 114223, + [SMALL_STATE(3051)] = 114280, + [SMALL_STATE(3052)] = 114337, + [SMALL_STATE(3053)] = 114396, + [SMALL_STATE(3054)] = 114453, + [SMALL_STATE(3055)] = 114510, + [SMALL_STATE(3056)] = 114567, + [SMALL_STATE(3057)] = 114643, + [SMALL_STATE(3058)] = 114719, + [SMALL_STATE(3059)] = 114783, + [SMALL_STATE(3060)] = 114839, + [SMALL_STATE(3061)] = 114895, + [SMALL_STATE(3062)] = 114951, + [SMALL_STATE(3063)] = 115027, + [SMALL_STATE(3064)] = 115103, + [SMALL_STATE(3065)] = 115165, + [SMALL_STATE(3066)] = 115241, + [SMALL_STATE(3067)] = 115317, + [SMALL_STATE(3068)] = 115393, + [SMALL_STATE(3069)] = 115469, + [SMALL_STATE(3070)] = 115545, + [SMALL_STATE(3071)] = 115621, + [SMALL_STATE(3072)] = 115693, + [SMALL_STATE(3073)] = 115769, + [SMALL_STATE(3074)] = 115845, + [SMALL_STATE(3075)] = 115921, + [SMALL_STATE(3076)] = 115997, + [SMALL_STATE(3077)] = 116073, + [SMALL_STATE(3078)] = 116149, + [SMALL_STATE(3079)] = 116205, + [SMALL_STATE(3080)] = 116274, + [SMALL_STATE(3081)] = 116339, + [SMALL_STATE(3082)] = 116402, + [SMALL_STATE(3083)] = 116471, + [SMALL_STATE(3084)] = 116540, + [SMALL_STATE(3085)] = 116609, + [SMALL_STATE(3086)] = 116663, + [SMALL_STATE(3087)] = 116723, + [SMALL_STATE(3088)] = 116793, + [SMALL_STATE(3089)] = 116849, + [SMALL_STATE(3090)] = 116905, + [SMALL_STATE(3091)] = 116963, + [SMALL_STATE(3092)] = 117017, + [SMALL_STATE(3093)] = 117073, + [SMALL_STATE(3094)] = 117129, + [SMALL_STATE(3095)] = 117196, + [SMALL_STATE(3096)] = 117253, + [SMALL_STATE(3097)] = 117306, + [SMALL_STATE(3098)] = 117359, + [SMALL_STATE(3099)] = 117414, + [SMALL_STATE(3100)] = 117467, + [SMALL_STATE(3101)] = 117520, + [SMALL_STATE(3102)] = 117577, + [SMALL_STATE(3103)] = 117634, + [SMALL_STATE(3104)] = 117691, + [SMALL_STATE(3105)] = 117744, + [SMALL_STATE(3106)] = 117813, + [SMALL_STATE(3107)] = 117868, + [SMALL_STATE(3108)] = 117929, + [SMALL_STATE(3109)] = 117990, + [SMALL_STATE(3110)] = 118045, + [SMALL_STATE(3111)] = 118102, + [SMALL_STATE(3112)] = 118157, + [SMALL_STATE(3113)] = 118214, + [SMALL_STATE(3114)] = 118269, + [SMALL_STATE(3115)] = 118324, + [SMALL_STATE(3116)] = 118377, + [SMALL_STATE(3117)] = 118430, + [SMALL_STATE(3118)] = 118483, + [SMALL_STATE(3119)] = 118536, + [SMALL_STATE(3120)] = 118589, + [SMALL_STATE(3121)] = 118642, + [SMALL_STATE(3122)] = 118696, + [SMALL_STATE(3123)] = 118748, + [SMALL_STATE(3124)] = 118800, + [SMALL_STATE(3125)] = 118852, + [SMALL_STATE(3126)] = 118906, + [SMALL_STATE(3127)] = 118960, + [SMALL_STATE(3128)] = 119026, + [SMALL_STATE(3129)] = 119080, + [SMALL_STATE(3130)] = 119134, + [SMALL_STATE(3131)] = 119186, + [SMALL_STATE(3132)] = 119240, + [SMALL_STATE(3133)] = 119294, + [SMALL_STATE(3134)] = 119358, + [SMALL_STATE(3135)] = 119408, + [SMALL_STATE(3136)] = 119460, + [SMALL_STATE(3137)] = 119510, + [SMALL_STATE(3138)] = 119574, + [SMALL_STATE(3139)] = 119628, + [SMALL_STATE(3140)] = 119680, + [SMALL_STATE(3141)] = 119734, + [SMALL_STATE(3142)] = 119790, + [SMALL_STATE(3143)] = 119852, + [SMALL_STATE(3144)] = 119916, + [SMALL_STATE(3145)] = 119982, + [SMALL_STATE(3146)] = 120050, + [SMALL_STATE(3147)] = 120120, + [SMALL_STATE(3148)] = 120192, + [SMALL_STATE(3149)] = 120266, + [SMALL_STATE(3150)] = 120326, + [SMALL_STATE(3151)] = 120384, + [SMALL_STATE(3152)] = 120440, + [SMALL_STATE(3153)] = 120498, + [SMALL_STATE(3154)] = 120558, + [SMALL_STATE(3155)] = 120624, + [SMALL_STATE(3156)] = 120692, + [SMALL_STATE(3157)] = 120762, + [SMALL_STATE(3158)] = 120834, + [SMALL_STATE(3159)] = 120908, + [SMALL_STATE(3160)] = 120984, + [SMALL_STATE(3161)] = 121062, + [SMALL_STATE(3162)] = 121126, + [SMALL_STATE(3163)] = 121188, + [SMALL_STATE(3164)] = 121252, + [SMALL_STATE(3165)] = 121308, + [SMALL_STATE(3166)] = 121364, + [SMALL_STATE(3167)] = 121422, + [SMALL_STATE(3168)] = 121480, + [SMALL_STATE(3169)] = 121540, + [SMALL_STATE(3170)] = 121600, + [SMALL_STATE(3171)] = 121666, + [SMALL_STATE(3172)] = 121732, + [SMALL_STATE(3173)] = 121800, + [SMALL_STATE(3174)] = 121868, + [SMALL_STATE(3175)] = 121938, + [SMALL_STATE(3176)] = 122008, + [SMALL_STATE(3177)] = 122080, + [SMALL_STATE(3178)] = 122152, + [SMALL_STATE(3179)] = 122226, + [SMALL_STATE(3180)] = 122300, + [SMALL_STATE(3181)] = 122376, + [SMALL_STATE(3182)] = 122452, + [SMALL_STATE(3183)] = 122530, + [SMALL_STATE(3184)] = 122608, + [SMALL_STATE(3185)] = 122672, + [SMALL_STATE(3186)] = 122736, + [SMALL_STATE(3187)] = 122798, + [SMALL_STATE(3188)] = 122860, + [SMALL_STATE(3189)] = 122916, + [SMALL_STATE(3190)] = 122974, + [SMALL_STATE(3191)] = 123034, + [SMALL_STATE(3192)] = 123100, + [SMALL_STATE(3193)] = 123168, + [SMALL_STATE(3194)] = 123238, + [SMALL_STATE(3195)] = 123310, + [SMALL_STATE(3196)] = 123384, + [SMALL_STATE(3197)] = 123460, + [SMALL_STATE(3198)] = 123512, + [SMALL_STATE(3199)] = 123576, + [SMALL_STATE(3200)] = 123638, + [SMALL_STATE(3201)] = 123694, + [SMALL_STATE(3202)] = 123752, + [SMALL_STATE(3203)] = 123812, + [SMALL_STATE(3204)] = 123878, + [SMALL_STATE(3205)] = 123946, + [SMALL_STATE(3206)] = 124016, + [SMALL_STATE(3207)] = 124088, + [SMALL_STATE(3208)] = 124162, + [SMALL_STATE(3209)] = 124238, + [SMALL_STATE(3210)] = 124316, + [SMALL_STATE(3211)] = 124380, + [SMALL_STATE(3212)] = 124442, + [SMALL_STATE(3213)] = 124498, + [SMALL_STATE(3214)] = 124554, + [SMALL_STATE(3215)] = 124612, + [SMALL_STATE(3216)] = 124670, + [SMALL_STATE(3217)] = 124730, + [SMALL_STATE(3218)] = 124790, + [SMALL_STATE(3219)] = 124856, + [SMALL_STATE(3220)] = 124922, + [SMALL_STATE(3221)] = 124990, + [SMALL_STATE(3222)] = 125058, + [SMALL_STATE(3223)] = 125128, + [SMALL_STATE(3224)] = 125198, + [SMALL_STATE(3225)] = 125270, + [SMALL_STATE(3226)] = 125342, + [SMALL_STATE(3227)] = 125416, + [SMALL_STATE(3228)] = 125490, + [SMALL_STATE(3229)] = 125566, + [SMALL_STATE(3230)] = 125642, + [SMALL_STATE(3231)] = 125720, + [SMALL_STATE(3232)] = 125798, + [SMALL_STATE(3233)] = 125862, + [SMALL_STATE(3234)] = 125926, + [SMALL_STATE(3235)] = 125988, + [SMALL_STATE(3236)] = 126050, + [SMALL_STATE(3237)] = 126106, + [SMALL_STATE(3238)] = 126164, + [SMALL_STATE(3239)] = 126224, + [SMALL_STATE(3240)] = 126290, + [SMALL_STATE(3241)] = 126358, + [SMALL_STATE(3242)] = 126428, + [SMALL_STATE(3243)] = 126500, + [SMALL_STATE(3244)] = 126574, + [SMALL_STATE(3245)] = 126650, + [SMALL_STATE(3246)] = 126728, + [SMALL_STATE(3247)] = 126792, + [SMALL_STATE(3248)] = 126854, + [SMALL_STATE(3249)] = 126920, + [SMALL_STATE(3250)] = 126984, + [SMALL_STATE(3251)] = 127036, + [SMALL_STATE(3252)] = 127088, + [SMALL_STATE(3253)] = 127138, + [SMALL_STATE(3254)] = 127188, + [SMALL_STATE(3255)] = 127240, + [SMALL_STATE(3256)] = 127292, + [SMALL_STATE(3257)] = 127342, + [SMALL_STATE(3258)] = 127392, + [SMALL_STATE(3259)] = 127470, + [SMALL_STATE(3260)] = 127521, + [SMALL_STATE(3261)] = 127582, + [SMALL_STATE(3262)] = 127633, + [SMALL_STATE(3263)] = 127684, + [SMALL_STATE(3264)] = 127739, + [SMALL_STATE(3265)] = 127790, + [SMALL_STATE(3266)] = 127845, + [SMALL_STATE(3267)] = 127906, + [SMALL_STATE(3268)] = 127955, + [SMALL_STATE(3269)] = 128004, + [SMALL_STATE(3270)] = 128065, + [SMALL_STATE(3271)] = 128114, + [SMALL_STATE(3272)] = 128167, + [SMALL_STATE(3273)] = 128218, + [SMALL_STATE(3274)] = 128269, + [SMALL_STATE(3275)] = 128330, + [SMALL_STATE(3276)] = 128391, + [SMALL_STATE(3277)] = 128452, + [SMALL_STATE(3278)] = 128503, + [SMALL_STATE(3279)] = 128556, + [SMALL_STATE(3280)] = 128611, + [SMALL_STATE(3281)] = 128672, + [SMALL_STATE(3282)] = 128735, + [SMALL_STATE(3283)] = 128800, + [SMALL_STATE(3284)] = 128861, + [SMALL_STATE(3285)] = 128928, + [SMALL_STATE(3286)] = 128997, + [SMALL_STATE(3287)] = 129058, + [SMALL_STATE(3288)] = 129129, + [SMALL_STATE(3289)] = 129202, + [SMALL_STATE(3290)] = 129261, + [SMALL_STATE(3291)] = 129320, + [SMALL_STATE(3292)] = 129377, + [SMALL_STATE(3293)] = 129438, + [SMALL_STATE(3294)] = 129489, + [SMALL_STATE(3295)] = 129550, + [SMALL_STATE(3296)] = 129636, + [SMALL_STATE(3297)] = 129690, + [SMALL_STATE(3298)] = 129744, + [SMALL_STATE(3299)] = 129798, + [SMALL_STATE(3300)] = 129852, + [SMALL_STATE(3301)] = 129916, + [SMALL_STATE(3302)] = 129970, + [SMALL_STATE(3303)] = 130056, + [SMALL_STATE(3304)] = 130114, + [SMALL_STATE(3305)] = 130168, + [SMALL_STATE(3306)] = 130220, + [SMALL_STATE(3307)] = 130274, + [SMALL_STATE(3308)] = 130326, + [SMALL_STATE(3309)] = 130384, + [SMALL_STATE(3310)] = 130442, + [SMALL_STATE(3311)] = 130495, + [SMALL_STATE(3312)] = 130560, + [SMALL_STATE(3313)] = 130611, + [SMALL_STATE(3314)] = 130662, + [SMALL_STATE(3315)] = 130725, + [SMALL_STATE(3316)] = 130774, + [SMALL_STATE(3317)] = 130825, + [SMALL_STATE(3318)] = 130880, + [SMALL_STATE(3319)] = 130935, + [SMALL_STATE(3320)] = 130988, + [SMALL_STATE(3321)] = 131043, + [SMALL_STATE(3322)] = 131096, + [SMALL_STATE(3323)] = 131149, + [SMALL_STATE(3324)] = 131200, + [SMALL_STATE(3325)] = 131251, + [SMALL_STATE(3326)] = 131300, + [SMALL_STATE(3327)] = 131351, + [SMALL_STATE(3328)] = 131404, + [SMALL_STATE(3329)] = 131487, + [SMALL_STATE(3330)] = 131570, + [SMALL_STATE(3331)] = 131635, + [SMALL_STATE(3332)] = 131688, + [SMALL_STATE(3333)] = 131741, + [SMALL_STATE(3334)] = 131790, + [SMALL_STATE(3335)] = 131839, + [SMALL_STATE(3336)] = 131894, + [SMALL_STATE(3337)] = 131949, + [SMALL_STATE(3338)] = 132009, + [SMALL_STATE(3339)] = 132057, + [SMALL_STATE(3340)] = 132109, + [SMALL_STATE(3341)] = 132157, + [SMALL_STATE(3342)] = 132205, + [SMALL_STATE(3343)] = 132253, + [SMALL_STATE(3344)] = 132301, + [SMALL_STATE(3345)] = 132349, + [SMALL_STATE(3346)] = 132397, + [SMALL_STATE(3347)] = 132445, + [SMALL_STATE(3348)] = 132493, + [SMALL_STATE(3349)] = 132541, + [SMALL_STATE(3350)] = 132589, + [SMALL_STATE(3351)] = 132639, + [SMALL_STATE(3352)] = 132689, + [SMALL_STATE(3353)] = 132737, + [SMALL_STATE(3354)] = 132785, + [SMALL_STATE(3355)] = 132833, + [SMALL_STATE(3356)] = 132881, + [SMALL_STATE(3357)] = 132929, + [SMALL_STATE(3358)] = 132981, + [SMALL_STATE(3359)] = 133029, + [SMALL_STATE(3360)] = 133077, + [SMALL_STATE(3361)] = 133125, + [SMALL_STATE(3362)] = 133187, + [SMALL_STATE(3363)] = 133249, + [SMALL_STATE(3364)] = 133311, + [SMALL_STATE(3365)] = 133373, + [SMALL_STATE(3366)] = 133421, + [SMALL_STATE(3367)] = 133469, + [SMALL_STATE(3368)] = 133517, + [SMALL_STATE(3369)] = 133565, + [SMALL_STATE(3370)] = 133613, + [SMALL_STATE(3371)] = 133671, + [SMALL_STATE(3372)] = 133721, + [SMALL_STATE(3373)] = 133773, + [SMALL_STATE(3374)] = 133835, + [SMALL_STATE(3375)] = 133887, + [SMALL_STATE(3376)] = 133947, + [SMALL_STATE(3377)] = 133997, + [SMALL_STATE(3378)] = 134059, + [SMALL_STATE(3379)] = 134107, + [SMALL_STATE(3380)] = 134155, + [SMALL_STATE(3381)] = 134203, + [SMALL_STATE(3382)] = 134251, + [SMALL_STATE(3383)] = 134299, + [SMALL_STATE(3384)] = 134347, + [SMALL_STATE(3385)] = 134395, + [SMALL_STATE(3386)] = 134450, + [SMALL_STATE(3387)] = 134497, + [SMALL_STATE(3388)] = 134544, + [SMALL_STATE(3389)] = 134599, + [SMALL_STATE(3390)] = 134646, + [SMALL_STATE(3391)] = 134701, + [SMALL_STATE(3392)] = 134756, + [SMALL_STATE(3393)] = 134811, + [SMALL_STATE(3394)] = 134858, + [SMALL_STATE(3395)] = 134913, + [SMALL_STATE(3396)] = 134968, + [SMALL_STATE(3397)] = 135015, + [SMALL_STATE(3398)] = 135070, + [SMALL_STATE(3399)] = 135125, + [SMALL_STATE(3400)] = 135180, + [SMALL_STATE(3401)] = 135235, + [SMALL_STATE(3402)] = 135282, + [SMALL_STATE(3403)] = 135337, + [SMALL_STATE(3404)] = 135392, + [SMALL_STATE(3405)] = 135447, + [SMALL_STATE(3406)] = 135498, + [SMALL_STATE(3407)] = 135553, + [SMALL_STATE(3408)] = 135604, + [SMALL_STATE(3409)] = 135659, + [SMALL_STATE(3410)] = 135708, + [SMALL_STATE(3411)] = 135763, + [SMALL_STATE(3412)] = 135818, + [SMALL_STATE(3413)] = 135873, + [SMALL_STATE(3414)] = 135920, + [SMALL_STATE(3415)] = 135975, + [SMALL_STATE(3416)] = 136030, + [SMALL_STATE(3417)] = 136085, + [SMALL_STATE(3418)] = 136140, + [SMALL_STATE(3419)] = 136187, + [SMALL_STATE(3420)] = 136242, + [SMALL_STATE(3421)] = 136297, + [SMALL_STATE(3422)] = 136347, + [SMALL_STATE(3423)] = 136401, + [SMALL_STATE(3424)] = 136455, + [SMALL_STATE(3425)] = 136509, + [SMALL_STATE(3426)] = 136563, + [SMALL_STATE(3427)] = 136611, + [SMALL_STATE(3428)] = 136657, + [SMALL_STATE(3429)] = 136711, + [SMALL_STATE(3430)] = 136765, + [SMALL_STATE(3431)] = 136819, + [SMALL_STATE(3432)] = 136873, + [SMALL_STATE(3433)] = 136927, + [SMALL_STATE(3434)] = 136975, + [SMALL_STATE(3435)] = 137029, + [SMALL_STATE(3436)] = 137083, + [SMALL_STATE(3437)] = 137137, + [SMALL_STATE(3438)] = 137183, + [SMALL_STATE(3439)] = 137233, + [SMALL_STATE(3440)] = 137287, + [SMALL_STATE(3441)] = 137333, + [SMALL_STATE(3442)] = 137387, + [SMALL_STATE(3443)] = 137439, + [SMALL_STATE(3444)] = 137493, + [SMALL_STATE(3445)] = 137547, + [SMALL_STATE(3446)] = 137601, + [SMALL_STATE(3447)] = 137655, + [SMALL_STATE(3448)] = 137705, + [SMALL_STATE(3449)] = 137759, + [SMALL_STATE(3450)] = 137813, + [SMALL_STATE(3451)] = 137867, + [SMALL_STATE(3452)] = 137921, + [SMALL_STATE(3453)] = 137975, + [SMALL_STATE(3454)] = 138029, + [SMALL_STATE(3455)] = 138080, + [SMALL_STATE(3456)] = 138131, + [SMALL_STATE(3457)] = 138180, + [SMALL_STATE(3458)] = 138225, + [SMALL_STATE(3459)] = 138270, + [SMALL_STATE(3460)] = 138315, + [SMALL_STATE(3461)] = 138360, + [SMALL_STATE(3462)] = 138405, + [SMALL_STATE(3463)] = 138450, + [SMALL_STATE(3464)] = 138501, + [SMALL_STATE(3465)] = 138552, + [SMALL_STATE(3466)] = 138600, + [SMALL_STATE(3467)] = 138644, + [SMALL_STATE(3468)] = 138692, + [SMALL_STATE(3469)] = 138740, + [SMALL_STATE(3470)] = 138788, + [SMALL_STATE(3471)] = 138836, + [SMALL_STATE(3472)] = 138880, + [SMALL_STATE(3473)] = 138924, + [SMALL_STATE(3474)] = 138968, + [SMALL_STATE(3475)] = 139012, + [SMALL_STATE(3476)] = 139056, + [SMALL_STATE(3477)] = 139102, + [SMALL_STATE(3478)] = 139148, + [SMALL_STATE(3479)] = 139198, + [SMALL_STATE(3480)] = 139242, + [SMALL_STATE(3481)] = 139290, + [SMALL_STATE(3482)] = 139340, + [SMALL_STATE(3483)] = 139388, + [SMALL_STATE(3484)] = 139438, + [SMALL_STATE(3485)] = 139482, + [SMALL_STATE(3486)] = 139526, + [SMALL_STATE(3487)] = 139570, + [SMALL_STATE(3488)] = 139618, + [SMALL_STATE(3489)] = 139663, + [SMALL_STATE(3490)] = 139708, + [SMALL_STATE(3491)] = 139753, + [SMALL_STATE(3492)] = 139796, + [SMALL_STATE(3493)] = 139839, + [SMALL_STATE(3494)] = 139884, + [SMALL_STATE(3495)] = 139927, + [SMALL_STATE(3496)] = 139974, + [SMALL_STATE(3497)] = 140021, + [SMALL_STATE(3498)] = 140068, + [SMALL_STATE(3499)] = 140113, + [SMALL_STATE(3500)] = 140202, + [SMALL_STATE(3501)] = 140249, + [SMALL_STATE(3502)] = 140292, + [SMALL_STATE(3503)] = 140339, + [SMALL_STATE(3504)] = 140386, + [SMALL_STATE(3505)] = 140429, + [SMALL_STATE(3506)] = 140474, + [SMALL_STATE(3507)] = 140525, + [SMALL_STATE(3508)] = 140576, + [SMALL_STATE(3509)] = 140621, + [SMALL_STATE(3510)] = 140664, + [SMALL_STATE(3511)] = 140707, + [SMALL_STATE(3512)] = 140750, + [SMALL_STATE(3513)] = 140797, + [SMALL_STATE(3514)] = 140840, + [SMALL_STATE(3515)] = 140885, + [SMALL_STATE(3516)] = 140930, + [SMALL_STATE(3517)] = 140975, + [SMALL_STATE(3518)] = 141064, + [SMALL_STATE(3519)] = 141111, + [SMALL_STATE(3520)] = 141156, + [SMALL_STATE(3521)] = 141203, + [SMALL_STATE(3522)] = 141248, + [SMALL_STATE(3523)] = 141293, + [SMALL_STATE(3524)] = 141349, + [SMALL_STATE(3525)] = 141393, + [SMALL_STATE(3526)] = 141435, + [SMALL_STATE(3527)] = 141477, + [SMALL_STATE(3528)] = 141519, + [SMALL_STATE(3529)] = 141569, + [SMALL_STATE(3530)] = 141615, + [SMALL_STATE(3531)] = 141661, + [SMALL_STATE(3532)] = 141703, + [SMALL_STATE(3533)] = 141745, + [SMALL_STATE(3534)] = 141787, + [SMALL_STATE(3535)] = 141829, + [SMALL_STATE(3536)] = 141871, + [SMALL_STATE(3537)] = 141917, + [SMALL_STATE(3538)] = 141963, + [SMALL_STATE(3539)] = 142009, + [SMALL_STATE(3540)] = 142055, + [SMALL_STATE(3541)] = 142097, + [SMALL_STATE(3542)] = 142139, + [SMALL_STATE(3543)] = 142181, + [SMALL_STATE(3544)] = 142223, + [SMALL_STATE(3545)] = 142265, + [SMALL_STATE(3546)] = 142307, + [SMALL_STATE(3547)] = 142349, + [SMALL_STATE(3548)] = 142393, + [SMALL_STATE(3549)] = 142437, + [SMALL_STATE(3550)] = 142483, + [SMALL_STATE(3551)] = 142531, + [SMALL_STATE(3552)] = 142581, + [SMALL_STATE(3553)] = 142637, + [SMALL_STATE(3554)] = 142695, + [SMALL_STATE(3555)] = 142755, + [SMALL_STATE(3556)] = 142817, + [SMALL_STATE(3557)] = 142881, + [SMALL_STATE(3558)] = 142947, + [SMALL_STATE(3559)] = 143015, + [SMALL_STATE(3560)] = 143069, + [SMALL_STATE(3561)] = 143121, + [SMALL_STATE(3562)] = 143163, + [SMALL_STATE(3563)] = 143209, + [SMALL_STATE(3564)] = 143255, + [SMALL_STATE(3565)] = 143303, + [SMALL_STATE(3566)] = 143351, + [SMALL_STATE(3567)] = 143401, + [SMALL_STATE(3568)] = 143451, + [SMALL_STATE(3569)] = 143507, + [SMALL_STATE(3570)] = 143563, + [SMALL_STATE(3571)] = 143621, + [SMALL_STATE(3572)] = 143679, + [SMALL_STATE(3573)] = 143739, + [SMALL_STATE(3574)] = 143799, + [SMALL_STATE(3575)] = 143861, + [SMALL_STATE(3576)] = 143923, + [SMALL_STATE(3577)] = 143987, + [SMALL_STATE(3578)] = 144051, + [SMALL_STATE(3579)] = 144117, + [SMALL_STATE(3580)] = 144183, + [SMALL_STATE(3581)] = 144251, + [SMALL_STATE(3582)] = 144319, + [SMALL_STATE(3583)] = 144373, + [SMALL_STATE(3584)] = 144427, + [SMALL_STATE(3585)] = 144479, + [SMALL_STATE(3586)] = 144531, + [SMALL_STATE(3587)] = 144577, + [SMALL_STATE(3588)] = 144625, + [SMALL_STATE(3589)] = 144675, + [SMALL_STATE(3590)] = 144731, + [SMALL_STATE(3591)] = 144789, + [SMALL_STATE(3592)] = 144849, + [SMALL_STATE(3593)] = 144911, + [SMALL_STATE(3594)] = 144975, + [SMALL_STATE(3595)] = 145041, + [SMALL_STATE(3596)] = 145109, + [SMALL_STATE(3597)] = 145163, + [SMALL_STATE(3598)] = 145215, + [SMALL_STATE(3599)] = 145261, + [SMALL_STATE(3600)] = 145309, + [SMALL_STATE(3601)] = 145359, + [SMALL_STATE(3602)] = 145415, + [SMALL_STATE(3603)] = 145473, + [SMALL_STATE(3604)] = 145533, + [SMALL_STATE(3605)] = 145595, + [SMALL_STATE(3606)] = 145659, + [SMALL_STATE(3607)] = 145725, + [SMALL_STATE(3608)] = 145793, + [SMALL_STATE(3609)] = 145847, + [SMALL_STATE(3610)] = 145899, + [SMALL_STATE(3611)] = 145945, + [SMALL_STATE(3612)] = 145991, + [SMALL_STATE(3613)] = 146039, + [SMALL_STATE(3614)] = 146087, + [SMALL_STATE(3615)] = 146137, + [SMALL_STATE(3616)] = 146187, + [SMALL_STATE(3617)] = 146233, + [SMALL_STATE(3618)] = 146289, + [SMALL_STATE(3619)] = 146347, + [SMALL_STATE(3620)] = 146405, + [SMALL_STATE(3621)] = 146465, + [SMALL_STATE(3622)] = 146525, + [SMALL_STATE(3623)] = 146587, + [SMALL_STATE(3624)] = 146649, + [SMALL_STATE(3625)] = 146713, + [SMALL_STATE(3626)] = 146777, + [SMALL_STATE(3627)] = 146843, + [SMALL_STATE(3628)] = 146909, + [SMALL_STATE(3629)] = 146977, + [SMALL_STATE(3630)] = 147045, + [SMALL_STATE(3631)] = 147087, + [SMALL_STATE(3632)] = 147141, + [SMALL_STATE(3633)] = 147193, + [SMALL_STATE(3634)] = 147245, + [SMALL_STATE(3635)] = 147291, + [SMALL_STATE(3636)] = 147339, + [SMALL_STATE(3637)] = 147389, + [SMALL_STATE(3638)] = 147445, + [SMALL_STATE(3639)] = 147503, + [SMALL_STATE(3640)] = 147563, + [SMALL_STATE(3641)] = 147625, + [SMALL_STATE(3642)] = 147689, + [SMALL_STATE(3643)] = 147755, + [SMALL_STATE(3644)] = 147823, + [SMALL_STATE(3645)] = 147877, + [SMALL_STATE(3646)] = 147929, + [SMALL_STATE(3647)] = 147971, + [SMALL_STATE(3648)] = 148013, + [SMALL_STATE(3649)] = 148055, + [SMALL_STATE(3650)] = 148097, + [SMALL_STATE(3651)] = 148139, + [SMALL_STATE(3652)] = 148181, + [SMALL_STATE(3653)] = 148223, + [SMALL_STATE(3654)] = 148265, + [SMALL_STATE(3655)] = 148307, + [SMALL_STATE(3656)] = 148349, + [SMALL_STATE(3657)] = 148391, + [SMALL_STATE(3658)] = 148433, + [SMALL_STATE(3659)] = 148475, + [SMALL_STATE(3660)] = 148517, + [SMALL_STATE(3661)] = 148559, + [SMALL_STATE(3662)] = 148601, + [SMALL_STATE(3663)] = 148643, + [SMALL_STATE(3664)] = 148685, + [SMALL_STATE(3665)] = 148727, + [SMALL_STATE(3666)] = 148769, + [SMALL_STATE(3667)] = 148811, + [SMALL_STATE(3668)] = 148853, + [SMALL_STATE(3669)] = 148895, + [SMALL_STATE(3670)] = 148937, + [SMALL_STATE(3671)] = 148979, + [SMALL_STATE(3672)] = 149021, + [SMALL_STATE(3673)] = 149063, + [SMALL_STATE(3674)] = 149105, + [SMALL_STATE(3675)] = 149147, + [SMALL_STATE(3676)] = 149189, + [SMALL_STATE(3677)] = 149233, + [SMALL_STATE(3678)] = 149279, + [SMALL_STATE(3679)] = 149327, + [SMALL_STATE(3680)] = 149381, + [SMALL_STATE(3681)] = 149437, + [SMALL_STATE(3682)] = 149495, + [SMALL_STATE(3683)] = 149555, + [SMALL_STATE(3684)] = 149617, + [SMALL_STATE(3685)] = 149681, + [SMALL_STATE(3686)] = 149747, + [SMALL_STATE(3687)] = 149799, + [SMALL_STATE(3688)] = 149849, + [SMALL_STATE(3689)] = 149891, + [SMALL_STATE(3690)] = 149933, + [SMALL_STATE(3691)] = 149975, + [SMALL_STATE(3692)] = 150017, + [SMALL_STATE(3693)] = 150067, + [SMALL_STATE(3694)] = 150109, + [SMALL_STATE(3695)] = 150153, + [SMALL_STATE(3696)] = 150195, + [SMALL_STATE(3697)] = 150237, + [SMALL_STATE(3698)] = 150281, + [SMALL_STATE(3699)] = 150335, + [SMALL_STATE(3700)] = 150418, + [SMALL_STATE(3701)] = 150501, + [SMALL_STATE(3702)] = 150584, + [SMALL_STATE(3703)] = 150667, + [SMALL_STATE(3704)] = 150750, + [SMALL_STATE(3705)] = 150833, + [SMALL_STATE(3706)] = 150874, + [SMALL_STATE(3707)] = 150957, + [SMALL_STATE(3708)] = 150998, + [SMALL_STATE(3709)] = 151081, + [SMALL_STATE(3710)] = 151164, + [SMALL_STATE(3711)] = 151247, + [SMALL_STATE(3712)] = 151330, + [SMALL_STATE(3713)] = 151413, + [SMALL_STATE(3714)] = 151496, + [SMALL_STATE(3715)] = 151579, + [SMALL_STATE(3716)] = 151620, + [SMALL_STATE(3717)] = 151661, + [SMALL_STATE(3718)] = 151744, + [SMALL_STATE(3719)] = 151827, + [SMALL_STATE(3720)] = 151910, + [SMALL_STATE(3721)] = 151993, + [SMALL_STATE(3722)] = 152076, + [SMALL_STATE(3723)] = 152159, + [SMALL_STATE(3724)] = 152242, + [SMALL_STATE(3725)] = 152325, + [SMALL_STATE(3726)] = 152370, + [SMALL_STATE(3727)] = 152411, + [SMALL_STATE(3728)] = 152494, + [SMALL_STATE(3729)] = 152561, + [SMALL_STATE(3730)] = 152606, + [SMALL_STATE(3731)] = 152647, + [SMALL_STATE(3732)] = 152714, + [SMALL_STATE(3733)] = 152797, + [SMALL_STATE(3734)] = 152864, + [SMALL_STATE(3735)] = 152931, + [SMALL_STATE(3736)] = 152998, + [SMALL_STATE(3737)] = 153065, + [SMALL_STATE(3738)] = 153106, + [SMALL_STATE(3739)] = 153189, + [SMALL_STATE(3740)] = 153272, + [SMALL_STATE(3741)] = 153324, + [SMALL_STATE(3742)] = 153386, + [SMALL_STATE(3743)] = 153434, + [SMALL_STATE(3744)] = 153480, + [SMALL_STATE(3745)] = 153520, + [SMALL_STATE(3746)] = 153574, + [SMALL_STATE(3747)] = 153626, + [SMALL_STATE(3748)] = 153682, + [SMALL_STATE(3749)] = 153726, + [SMALL_STATE(3750)] = 153776, + [SMALL_STATE(3751)] = 153834, + [SMALL_STATE(3752)] = 153882, + [SMALL_STATE(3753)] = 153942, + [SMALL_STATE(3754)] = 153986, + [SMALL_STATE(3755)] = 154032, + [SMALL_STATE(3756)] = 154072, + [SMALL_STATE(3757)] = 154112, + [SMALL_STATE(3758)] = 154154, + [SMALL_STATE(3759)] = 154198, + [SMALL_STATE(3760)] = 154248, + [SMALL_STATE(3761)] = 154292, + [SMALL_STATE(3762)] = 154354, + [SMALL_STATE(3763)] = 154408, + [SMALL_STATE(3764)] = 154464, + [SMALL_STATE(3765)] = 154522, + [SMALL_STATE(3766)] = 154582, + [SMALL_STATE(3767)] = 154626, + [SMALL_STATE(3768)] = 154668, + [SMALL_STATE(3769)] = 154712, + [SMALL_STATE(3770)] = 154789, + [SMALL_STATE(3771)] = 154866, + [SMALL_STATE(3772)] = 154905, + [SMALL_STATE(3773)] = 154944, + [SMALL_STATE(3774)] = 154983, + [SMALL_STATE(3775)] = 155044, + [SMALL_STATE(3776)] = 155083, + [SMALL_STATE(3777)] = 155144, + [SMALL_STATE(3778)] = 155189, + [SMALL_STATE(3779)] = 155266, + [SMALL_STATE(3780)] = 155343, + [SMALL_STATE(3781)] = 155420, + [SMALL_STATE(3782)] = 155481, + [SMALL_STATE(3783)] = 155558, + [SMALL_STATE(3784)] = 155635, + [SMALL_STATE(3785)] = 155696, + [SMALL_STATE(3786)] = 155757, + [SMALL_STATE(3787)] = 155818, + [SMALL_STATE(3788)] = 155857, + [SMALL_STATE(3789)] = 155918, + [SMALL_STATE(3790)] = 155995, + [SMALL_STATE(3791)] = 156072, + [SMALL_STATE(3792)] = 156149, + [SMALL_STATE(3793)] = 156188, + [SMALL_STATE(3794)] = 156265, + [SMALL_STATE(3795)] = 156342, + [SMALL_STATE(3796)] = 156396, + [SMALL_STATE(3797)] = 156440, + [SMALL_STATE(3798)] = 156491, + [SMALL_STATE(3799)] = 156544, + [SMALL_STATE(3800)] = 156595, + [SMALL_STATE(3801)] = 156645, + [SMALL_STATE(3802)] = 156701, + [SMALL_STATE(3803)] = 156741, + [SMALL_STATE(3804)] = 156791, + [SMALL_STATE(3805)] = 156841, + [SMALL_STATE(3806)] = 156881, + [SMALL_STATE(3807)] = 156920, + [SMALL_STATE(3808)] = 156967, + [SMALL_STATE(3809)] = 157014, + [SMALL_STATE(3810)] = 157053, + [SMALL_STATE(3811)] = 157090, + [SMALL_STATE(3812)] = 157127, + [SMALL_STATE(3813)] = 157174, + [SMALL_STATE(3814)] = 157217, + [SMALL_STATE(3815)] = 157260, + [SMALL_STATE(3816)] = 157303, + [SMALL_STATE(3817)] = 157346, + [SMALL_STATE(3818)] = 157393, + [SMALL_STATE(3819)] = 157446, + [SMALL_STATE(3820)] = 157489, + [SMALL_STATE(3821)] = 157532, + [SMALL_STATE(3822)] = 157575, + [SMALL_STATE(3823)] = 157618, + [SMALL_STATE(3824)] = 157661, + [SMALL_STATE(3825)] = 157704, + [SMALL_STATE(3826)] = 157747, + [SMALL_STATE(3827)] = 157790, + [SMALL_STATE(3828)] = 157833, + [SMALL_STATE(3829)] = 157876, + [SMALL_STATE(3830)] = 157919, + [SMALL_STATE(3831)] = 157962, + [SMALL_STATE(3832)] = 158005, + [SMALL_STATE(3833)] = 158048, + [SMALL_STATE(3834)] = 158091, + [SMALL_STATE(3835)] = 158144, + [SMALL_STATE(3836)] = 158187, + [SMALL_STATE(3837)] = 158240, + [SMALL_STATE(3838)] = 158287, + [SMALL_STATE(3839)] = 158342, + [SMALL_STATE(3840)] = 158385, + [SMALL_STATE(3841)] = 158428, + [SMALL_STATE(3842)] = 158480, + [SMALL_STATE(3843)] = 158530, + [SMALL_STATE(3844)] = 158582, + [SMALL_STATE(3845)] = 158632, + [SMALL_STATE(3846)] = 158666, + [SMALL_STATE(3847)] = 158700, + [SMALL_STATE(3848)] = 158750, + [SMALL_STATE(3849)] = 158788, + [SMALL_STATE(3850)] = 158822, + [SMALL_STATE(3851)] = 158860, + [SMALL_STATE(3852)] = 158896, + [SMALL_STATE(3853)] = 158948, + [SMALL_STATE(3854)] = 158982, + [SMALL_STATE(3855)] = 159032, + [SMALL_STATE(3856)] = 159070, + [SMALL_STATE(3857)] = 159106, + [SMALL_STATE(3858)] = 159144, + [SMALL_STATE(3859)] = 159186, + [SMALL_STATE(3860)] = 159228, + [SMALL_STATE(3861)] = 159274, + [SMALL_STATE(3862)] = 159315, + [SMALL_STATE(3863)] = 159368, + [SMALL_STATE(3864)] = 159401, + [SMALL_STATE(3865)] = 159442, + [SMALL_STATE(3866)] = 159477, + [SMALL_STATE(3867)] = 159526, + [SMALL_STATE(3868)] = 159559, + [SMALL_STATE(3869)] = 159600, + [SMALL_STATE(3870)] = 159647, + [SMALL_STATE(3871)] = 159688, + [SMALL_STATE(3872)] = 159729, + [SMALL_STATE(3873)] = 159778, + [SMALL_STATE(3874)] = 159811, + [SMALL_STATE(3875)] = 159846, + [SMALL_STATE(3876)] = 159887, + [SMALL_STATE(3877)] = 159924, + [SMALL_STATE(3878)] = 159961, + [SMALL_STATE(3879)] = 160002, + [SMALL_STATE(3880)] = 160043, + [SMALL_STATE(3881)] = 160084, + [SMALL_STATE(3882)] = 160125, + [SMALL_STATE(3883)] = 160166, + [SMALL_STATE(3884)] = 160215, + [SMALL_STATE(3885)] = 160256, + [SMALL_STATE(3886)] = 160297, + [SMALL_STATE(3887)] = 160338, + [SMALL_STATE(3888)] = 160379, + [SMALL_STATE(3889)] = 160416, + [SMALL_STATE(3890)] = 160457, + [SMALL_STATE(3891)] = 160498, + [SMALL_STATE(3892)] = 160539, + [SMALL_STATE(3893)] = 160574, + [SMALL_STATE(3894)] = 160615, + [SMALL_STATE(3895)] = 160656, + [SMALL_STATE(3896)] = 160697, + [SMALL_STATE(3897)] = 160738, + [SMALL_STATE(3898)] = 160779, + [SMALL_STATE(3899)] = 160816, + [SMALL_STATE(3900)] = 160857, + [SMALL_STATE(3901)] = 160890, + [SMALL_STATE(3902)] = 160931, + [SMALL_STATE(3903)] = 160972, + [SMALL_STATE(3904)] = 161021, + [SMALL_STATE(3905)] = 161056, + [SMALL_STATE(3906)] = 161088, + [SMALL_STATE(3907)] = 161122, + [SMALL_STATE(3908)] = 161158, + [SMALL_STATE(3909)] = 161192, + [SMALL_STATE(3910)] = 161230, + [SMALL_STATE(3911)] = 161270, + [SMALL_STATE(3912)] = 161302, + [SMALL_STATE(3913)] = 161338, + [SMALL_STATE(3914)] = 161388, + [SMALL_STATE(3915)] = 161422, + [SMALL_STATE(3916)] = 161454, + [SMALL_STATE(3917)] = 161492, + [SMALL_STATE(3918)] = 161524, + [SMALL_STATE(3919)] = 161570, + [SMALL_STATE(3920)] = 161606, + [SMALL_STATE(3921)] = 161642, + [SMALL_STATE(3922)] = 161682, + [SMALL_STATE(3923)] = 161714, + [SMALL_STATE(3924)] = 161764, + [SMALL_STATE(3925)] = 161796, + [SMALL_STATE(3926)] = 161830, + [SMALL_STATE(3927)] = 161870, + [SMALL_STATE(3928)] = 161902, + [SMALL_STATE(3929)] = 161934, + [SMALL_STATE(3930)] = 161966, + [SMALL_STATE(3931)] = 162004, + [SMALL_STATE(3932)] = 162038, + [SMALL_STATE(3933)] = 162074, + [SMALL_STATE(3934)] = 162106, + [SMALL_STATE(3935)] = 162156, + [SMALL_STATE(3936)] = 162188, + [SMALL_STATE(3937)] = 162221, + [SMALL_STATE(3938)] = 162256, + [SMALL_STATE(3939)] = 162287, + [SMALL_STATE(3940)] = 162318, + [SMALL_STATE(3941)] = 162349, + [SMALL_STATE(3942)] = 162382, + [SMALL_STATE(3943)] = 162417, + [SMALL_STATE(3944)] = 162452, + [SMALL_STATE(3945)] = 162483, + [SMALL_STATE(3946)] = 162514, + [SMALL_STATE(3947)] = 162545, + [SMALL_STATE(3948)] = 162582, + [SMALL_STATE(3949)] = 162621, + [SMALL_STATE(3950)] = 162652, + [SMALL_STATE(3951)] = 162683, + [SMALL_STATE(3952)] = 162716, + [SMALL_STATE(3953)] = 162747, + [SMALL_STATE(3954)] = 162778, + [SMALL_STATE(3955)] = 162809, + [SMALL_STATE(3956)] = 162840, + [SMALL_STATE(3957)] = 162871, + [SMALL_STATE(3958)] = 162904, + [SMALL_STATE(3959)] = 162939, + [SMALL_STATE(3960)] = 162970, + [SMALL_STATE(3961)] = 163001, + [SMALL_STATE(3962)] = 163032, + [SMALL_STATE(3963)] = 163063, + [SMALL_STATE(3964)] = 163094, + [SMALL_STATE(3965)] = 163127, + [SMALL_STATE(3966)] = 163158, + [SMALL_STATE(3967)] = 163189, + [SMALL_STATE(3968)] = 163220, + [SMALL_STATE(3969)] = 163251, + [SMALL_STATE(3970)] = 163298, + [SMALL_STATE(3971)] = 163329, + [SMALL_STATE(3972)] = 163360, + [SMALL_STATE(3973)] = 163391, + [SMALL_STATE(3974)] = 163432, + [SMALL_STATE(3975)] = 163463, + [SMALL_STATE(3976)] = 163494, + [SMALL_STATE(3977)] = 163525, + [SMALL_STATE(3978)] = 163556, + [SMALL_STATE(3979)] = 163587, + [SMALL_STATE(3980)] = 163618, + [SMALL_STATE(3981)] = 163649, + [SMALL_STATE(3982)] = 163696, + [SMALL_STATE(3983)] = 163743, + [SMALL_STATE(3984)] = 163774, + [SMALL_STATE(3985)] = 163821, + [SMALL_STATE(3986)] = 163852, + [SMALL_STATE(3987)] = 163883, + [SMALL_STATE(3988)] = 163914, + [SMALL_STATE(3989)] = 163945, + [SMALL_STATE(3990)] = 163976, + [SMALL_STATE(3991)] = 164007, + [SMALL_STATE(3992)] = 164038, + [SMALL_STATE(3993)] = 164075, + [SMALL_STATE(3994)] = 164106, + [SMALL_STATE(3995)] = 164145, + [SMALL_STATE(3996)] = 164178, + [SMALL_STATE(3997)] = 164217, + [SMALL_STATE(3998)] = 164252, + [SMALL_STATE(3999)] = 164289, + [SMALL_STATE(4000)] = 164322, + [SMALL_STATE(4001)] = 164353, + [SMALL_STATE(4002)] = 164384, + [SMALL_STATE(4003)] = 164415, + [SMALL_STATE(4004)] = 164460, + [SMALL_STATE(4005)] = 164491, + [SMALL_STATE(4006)] = 164523, + [SMALL_STATE(4007)] = 164553, + [SMALL_STATE(4008)] = 164587, + [SMALL_STATE(4009)] = 164621, + [SMALL_STATE(4010)] = 164651, + [SMALL_STATE(4011)] = 164689, + [SMALL_STATE(4012)] = 164727, + [SMALL_STATE(4013)] = 164757, + [SMALL_STATE(4014)] = 164795, + [SMALL_STATE(4015)] = 164825, + [SMALL_STATE(4016)] = 164865, + [SMALL_STATE(4017)] = 164895, + [SMALL_STATE(4018)] = 164927, + [SMALL_STATE(4019)] = 164957, + [SMALL_STATE(4020)] = 164989, + [SMALL_STATE(4021)] = 165019, + [SMALL_STATE(4022)] = 165051, + [SMALL_STATE(4023)] = 165081, + [SMALL_STATE(4024)] = 165115, + [SMALL_STATE(4025)] = 165147, + [SMALL_STATE(4026)] = 165181, + [SMALL_STATE(4027)] = 165217, + [SMALL_STATE(4028)] = 165247, + [SMALL_STATE(4029)] = 165281, + [SMALL_STATE(4030)] = 165319, + [SMALL_STATE(4031)] = 165357, + [SMALL_STATE(4032)] = 165389, + [SMALL_STATE(4033)] = 165419, + [SMALL_STATE(4034)] = 165451, + [SMALL_STATE(4035)] = 165481, + [SMALL_STATE(4036)] = 165511, + [SMALL_STATE(4037)] = 165541, + [SMALL_STATE(4038)] = 165573, + [SMALL_STATE(4039)] = 165605, + [SMALL_STATE(4040)] = 165655, + [SMALL_STATE(4041)] = 165685, + [SMALL_STATE(4042)] = 165715, + [SMALL_STATE(4043)] = 165745, + [SMALL_STATE(4044)] = 165777, + [SMALL_STATE(4045)] = 165809, + [SMALL_STATE(4046)] = 165839, + [SMALL_STATE(4047)] = 165876, + [SMALL_STATE(4048)] = 165913, + [SMALL_STATE(4049)] = 165950, + [SMALL_STATE(4050)] = 165987, + [SMALL_STATE(4051)] = 166016, + [SMALL_STATE(4052)] = 166045, + [SMALL_STATE(4053)] = 166074, + [SMALL_STATE(4054)] = 166103, + [SMALL_STATE(4055)] = 166140, + [SMALL_STATE(4056)] = 166171, + [SMALL_STATE(4057)] = 166200, + [SMALL_STATE(4058)] = 166233, + [SMALL_STATE(4059)] = 166262, + [SMALL_STATE(4060)] = 166291, + [SMALL_STATE(4061)] = 166322, + [SMALL_STATE(4062)] = 166353, + [SMALL_STATE(4063)] = 166382, + [SMALL_STATE(4064)] = 166411, + [SMALL_STATE(4065)] = 166442, + [SMALL_STATE(4066)] = 166473, + [SMALL_STATE(4067)] = 166504, + [SMALL_STATE(4068)] = 166533, + [SMALL_STATE(4069)] = 166564, + [SMALL_STATE(4070)] = 166595, + [SMALL_STATE(4071)] = 166632, + [SMALL_STATE(4072)] = 166669, + [SMALL_STATE(4073)] = 166706, + [SMALL_STATE(4074)] = 166737, + [SMALL_STATE(4075)] = 166766, + [SMALL_STATE(4076)] = 166797, + [SMALL_STATE(4077)] = 166828, + [SMALL_STATE(4078)] = 166857, + [SMALL_STATE(4079)] = 166892, + [SMALL_STATE(4080)] = 166925, + [SMALL_STATE(4081)] = 166954, + [SMALL_STATE(4082)] = 166985, + [SMALL_STATE(4083)] = 167016, + [SMALL_STATE(4084)] = 167045, + [SMALL_STATE(4085)] = 167078, + [SMALL_STATE(4086)] = 167115, + [SMALL_STATE(4087)] = 167152, + [SMALL_STATE(4088)] = 167189, + [SMALL_STATE(4089)] = 167218, + [SMALL_STATE(4090)] = 167249, + [SMALL_STATE(4091)] = 167278, + [SMALL_STATE(4092)] = 167309, + [SMALL_STATE(4093)] = 167340, + [SMALL_STATE(4094)] = 167369, + [SMALL_STATE(4095)] = 167398, + [SMALL_STATE(4096)] = 167427, + [SMALL_STATE(4097)] = 167456, + [SMALL_STATE(4098)] = 167485, + [SMALL_STATE(4099)] = 167518, + [SMALL_STATE(4100)] = 167551, + [SMALL_STATE(4101)] = 167584, + [SMALL_STATE(4102)] = 167613, + [SMALL_STATE(4103)] = 167642, + [SMALL_STATE(4104)] = 167671, + [SMALL_STATE(4105)] = 167700, + [SMALL_STATE(4106)] = 167729, + [SMALL_STATE(4107)] = 167766, + [SMALL_STATE(4108)] = 167795, + [SMALL_STATE(4109)] = 167824, + [SMALL_STATE(4110)] = 167855, + [SMALL_STATE(4111)] = 167884, + [SMALL_STATE(4112)] = 167913, + [SMALL_STATE(4113)] = 167942, + [SMALL_STATE(4114)] = 167971, + [SMALL_STATE(4115)] = 168000, + [SMALL_STATE(4116)] = 168029, + [SMALL_STATE(4117)] = 168058, + [SMALL_STATE(4118)] = 168087, + [SMALL_STATE(4119)] = 168116, + [SMALL_STATE(4120)] = 168145, + [SMALL_STATE(4121)] = 168174, + [SMALL_STATE(4122)] = 168203, + [SMALL_STATE(4123)] = 168232, + [SMALL_STATE(4124)] = 168261, + [SMALL_STATE(4125)] = 168298, + [SMALL_STATE(4126)] = 168327, + [SMALL_STATE(4127)] = 168356, + [SMALL_STATE(4128)] = 168385, + [SMALL_STATE(4129)] = 168414, + [SMALL_STATE(4130)] = 168451, + [SMALL_STATE(4131)] = 168480, + [SMALL_STATE(4132)] = 168517, + [SMALL_STATE(4133)] = 168550, + [SMALL_STATE(4134)] = 168579, + [SMALL_STATE(4135)] = 168610, + [SMALL_STATE(4136)] = 168641, + [SMALL_STATE(4137)] = 168678, + [SMALL_STATE(4138)] = 168709, + [SMALL_STATE(4139)] = 168740, + [SMALL_STATE(4140)] = 168771, + [SMALL_STATE(4141)] = 168802, + [SMALL_STATE(4142)] = 168833, + [SMALL_STATE(4143)] = 168870, + [SMALL_STATE(4144)] = 168907, + [SMALL_STATE(4145)] = 168938, + [SMALL_STATE(4146)] = 168975, + [SMALL_STATE(4147)] = 169012, + [SMALL_STATE(4148)] = 169049, + [SMALL_STATE(4149)] = 169086, + [SMALL_STATE(4150)] = 169123, + [SMALL_STATE(4151)] = 169160, + [SMALL_STATE(4152)] = 169197, + [SMALL_STATE(4153)] = 169234, + [SMALL_STATE(4154)] = 169271, + [SMALL_STATE(4155)] = 169308, + [SMALL_STATE(4156)] = 169337, + [SMALL_STATE(4157)] = 169366, + [SMALL_STATE(4158)] = 169403, + [SMALL_STATE(4159)] = 169440, + [SMALL_STATE(4160)] = 169469, + [SMALL_STATE(4161)] = 169498, + [SMALL_STATE(4162)] = 169535, + [SMALL_STATE(4163)] = 169572, + [SMALL_STATE(4164)] = 169603, + [SMALL_STATE(4165)] = 169631, + [SMALL_STATE(4166)] = 169667, + [SMALL_STATE(4167)] = 169697, + [SMALL_STATE(4168)] = 169733, + [SMALL_STATE(4169)] = 169761, + [SMALL_STATE(4170)] = 169789, + [SMALL_STATE(4171)] = 169819, + [SMALL_STATE(4172)] = 169849, + [SMALL_STATE(4173)] = 169885, + [SMALL_STATE(4174)] = 169923, + [SMALL_STATE(4175)] = 169951, + [SMALL_STATE(4176)] = 169987, + [SMALL_STATE(4177)] = 170023, + [SMALL_STATE(4178)] = 170053, + [SMALL_STATE(4179)] = 170089, + [SMALL_STATE(4180)] = 170119, + [SMALL_STATE(4181)] = 170149, + [SMALL_STATE(4182)] = 170193, + [SMALL_STATE(4183)] = 170237, + [SMALL_STATE(4184)] = 170281, + [SMALL_STATE(4185)] = 170309, + [SMALL_STATE(4186)] = 170341, + [SMALL_STATE(4187)] = 170369, + [SMALL_STATE(4188)] = 170401, + [SMALL_STATE(4189)] = 170431, + [SMALL_STATE(4190)] = 170467, + [SMALL_STATE(4191)] = 170499, + [SMALL_STATE(4192)] = 170529, + [SMALL_STATE(4193)] = 170557, + [SMALL_STATE(4194)] = 170589, + [SMALL_STATE(4195)] = 170623, + [SMALL_STATE(4196)] = 170655, + [SMALL_STATE(4197)] = 170691, + [SMALL_STATE(4198)] = 170721, + [SMALL_STATE(4199)] = 170757, + [SMALL_STATE(4200)] = 170789, + [SMALL_STATE(4201)] = 170817, + [SMALL_STATE(4202)] = 170849, + [SMALL_STATE(4203)] = 170885, + [SMALL_STATE(4204)] = 170915, + [SMALL_STATE(4205)] = 170943, + [SMALL_STATE(4206)] = 170971, + [SMALL_STATE(4207)] = 170999, + [SMALL_STATE(4208)] = 171035, + [SMALL_STATE(4209)] = 171071, + [SMALL_STATE(4210)] = 171109, + [SMALL_STATE(4211)] = 171145, + [SMALL_STATE(4212)] = 171173, + [SMALL_STATE(4213)] = 171205, + [SMALL_STATE(4214)] = 171241, + [SMALL_STATE(4215)] = 171277, + [SMALL_STATE(4216)] = 171313, + [SMALL_STATE(4217)] = 171349, + [SMALL_STATE(4218)] = 171377, + [SMALL_STATE(4219)] = 171405, + [SMALL_STATE(4220)] = 171441, + [SMALL_STATE(4221)] = 171477, + [SMALL_STATE(4222)] = 171513, + [SMALL_STATE(4223)] = 171549, + [SMALL_STATE(4224)] = 171577, + [SMALL_STATE(4225)] = 171621, + [SMALL_STATE(4226)] = 171651, + [SMALL_STATE(4227)] = 171687, + [SMALL_STATE(4228)] = 171715, + [SMALL_STATE(4229)] = 171743, + [SMALL_STATE(4230)] = 171773, + [SMALL_STATE(4231)] = 171805, + [SMALL_STATE(4232)] = 171837, + [SMALL_STATE(4233)] = 171873, + [SMALL_STATE(4234)] = 171909, + [SMALL_STATE(4235)] = 171945, + [SMALL_STATE(4236)] = 171981, + [SMALL_STATE(4237)] = 172009, + [SMALL_STATE(4238)] = 172045, + [SMALL_STATE(4239)] = 172081, + [SMALL_STATE(4240)] = 172109, + [SMALL_STATE(4241)] = 172139, + [SMALL_STATE(4242)] = 172169, + [SMALL_STATE(4243)] = 172213, + [SMALL_STATE(4244)] = 172241, + [SMALL_STATE(4245)] = 172277, + [SMALL_STATE(4246)] = 172307, + [SMALL_STATE(4247)] = 172337, + [SMALL_STATE(4248)] = 172373, + [SMALL_STATE(4249)] = 172405, + [SMALL_STATE(4250)] = 172433, + [SMALL_STATE(4251)] = 172469, + [SMALL_STATE(4252)] = 172505, + [SMALL_STATE(4253)] = 172537, + [SMALL_STATE(4254)] = 172569, + [SMALL_STATE(4255)] = 172604, + [SMALL_STATE(4256)] = 172633, + [SMALL_STATE(4257)] = 172664, + [SMALL_STATE(4258)] = 172695, + [SMALL_STATE(4259)] = 172730, + [SMALL_STATE(4260)] = 172755, + [SMALL_STATE(4261)] = 172780, + [SMALL_STATE(4262)] = 172811, + [SMALL_STATE(4263)] = 172846, + [SMALL_STATE(4264)] = 172873, + [SMALL_STATE(4265)] = 172900, + [SMALL_STATE(4266)] = 172935, + [SMALL_STATE(4267)] = 172960, + [SMALL_STATE(4268)] = 172995, + [SMALL_STATE(4269)] = 173030, + [SMALL_STATE(4270)] = 173057, + [SMALL_STATE(4271)] = 173086, + [SMALL_STATE(4272)] = 173117, + [SMALL_STATE(4273)] = 173146, + [SMALL_STATE(4274)] = 173175, + [SMALL_STATE(4275)] = 173200, + [SMALL_STATE(4276)] = 173225, + [SMALL_STATE(4277)] = 173256, + [SMALL_STATE(4278)] = 173287, + [SMALL_STATE(4279)] = 173320, + [SMALL_STATE(4280)] = 173349, + [SMALL_STATE(4281)] = 173378, + [SMALL_STATE(4282)] = 173407, + [SMALL_STATE(4283)] = 173434, + [SMALL_STATE(4284)] = 173461, + [SMALL_STATE(4285)] = 173488, + [SMALL_STATE(4286)] = 173521, + [SMALL_STATE(4287)] = 173550, + [SMALL_STATE(4288)] = 173585, + [SMALL_STATE(4289)] = 173614, + [SMALL_STATE(4290)] = 173641, + [SMALL_STATE(4291)] = 173672, + [SMALL_STATE(4292)] = 173707, + [SMALL_STATE(4293)] = 173738, + [SMALL_STATE(4294)] = 173769, + [SMALL_STATE(4295)] = 173796, + [SMALL_STATE(4296)] = 173827, + [SMALL_STATE(4297)] = 173858, + [SMALL_STATE(4298)] = 173889, + [SMALL_STATE(4299)] = 173916, + [SMALL_STATE(4300)] = 173943, + [SMALL_STATE(4301)] = 173970, + [SMALL_STATE(4302)] = 174001, + [SMALL_STATE(4303)] = 174032, + [SMALL_STATE(4304)] = 174063, + [SMALL_STATE(4305)] = 174094, + [SMALL_STATE(4306)] = 174125, + [SMALL_STATE(4307)] = 174156, + [SMALL_STATE(4308)] = 174189, + [SMALL_STATE(4309)] = 174222, + [SMALL_STATE(4310)] = 174255, + [SMALL_STATE(4311)] = 174290, + [SMALL_STATE(4312)] = 174323, + [SMALL_STATE(4313)] = 174350, + [SMALL_STATE(4314)] = 174381, + [SMALL_STATE(4315)] = 174412, + [SMALL_STATE(4316)] = 174439, + [SMALL_STATE(4317)] = 174466, + [SMALL_STATE(4318)] = 174497, + [SMALL_STATE(4319)] = 174528, + [SMALL_STATE(4320)] = 174561, + [SMALL_STATE(4321)] = 174594, + [SMALL_STATE(4322)] = 174621, + [SMALL_STATE(4323)] = 174648, + [SMALL_STATE(4324)] = 174683, + [SMALL_STATE(4325)] = 174716, + [SMALL_STATE(4326)] = 174747, + [SMALL_STATE(4327)] = 174778, + [SMALL_STATE(4328)] = 174813, + [SMALL_STATE(4329)] = 174848, + [SMALL_STATE(4330)] = 174873, + [SMALL_STATE(4331)] = 174900, + [SMALL_STATE(4332)] = 174931, + [SMALL_STATE(4333)] = 174964, + [SMALL_STATE(4334)] = 174991, + [SMALL_STATE(4335)] = 175024, + [SMALL_STATE(4336)] = 175051, + [SMALL_STATE(4337)] = 175080, + [SMALL_STATE(4338)] = 175109, + [SMALL_STATE(4339)] = 175140, + [SMALL_STATE(4340)] = 175171, + [SMALL_STATE(4341)] = 175198, + [SMALL_STATE(4342)] = 175225, + [SMALL_STATE(4343)] = 175252, + [SMALL_STATE(4344)] = 175279, + [SMALL_STATE(4345)] = 175308, + [SMALL_STATE(4346)] = 175335, + [SMALL_STATE(4347)] = 175366, + [SMALL_STATE(4348)] = 175401, + [SMALL_STATE(4349)] = 175432, + [SMALL_STATE(4350)] = 175459, + [SMALL_STATE(4351)] = 175488, + [SMALL_STATE(4352)] = 175517, + [SMALL_STATE(4353)] = 175548, + [SMALL_STATE(4354)] = 175579, + [SMALL_STATE(4355)] = 175608, + [SMALL_STATE(4356)] = 175633, + [SMALL_STATE(4357)] = 175662, + [SMALL_STATE(4358)] = 175693, + [SMALL_STATE(4359)] = 175728, + [SMALL_STATE(4360)] = 175759, + [SMALL_STATE(4361)] = 175790, + [SMALL_STATE(4362)] = 175825, + [SMALL_STATE(4363)] = 175860, + [SMALL_STATE(4364)] = 175893, + [SMALL_STATE(4365)] = 175920, + [SMALL_STATE(4366)] = 175955, + [SMALL_STATE(4367)] = 175980, + [SMALL_STATE(4368)] = 176007, + [SMALL_STATE(4369)] = 176034, + [SMALL_STATE(4370)] = 176063, + [SMALL_STATE(4371)] = 176092, + [SMALL_STATE(4372)] = 176123, + [SMALL_STATE(4373)] = 176158, + [SMALL_STATE(4374)] = 176189, + [SMALL_STATE(4375)] = 176216, + [SMALL_STATE(4376)] = 176243, + [SMALL_STATE(4377)] = 176270, + [SMALL_STATE(4378)] = 176301, + [SMALL_STATE(4379)] = 176328, + [SMALL_STATE(4380)] = 176359, + [SMALL_STATE(4381)] = 176386, + [SMALL_STATE(4382)] = 176423, + [SMALL_STATE(4383)] = 176454, + [SMALL_STATE(4384)] = 176481, + [SMALL_STATE(4385)] = 176512, + [SMALL_STATE(4386)] = 176539, + [SMALL_STATE(4387)] = 176566, + [SMALL_STATE(4388)] = 176595, + [SMALL_STATE(4389)] = 176620, + [SMALL_STATE(4390)] = 176651, + [SMALL_STATE(4391)] = 176682, + [SMALL_STATE(4392)] = 176717, + [SMALL_STATE(4393)] = 176744, + [SMALL_STATE(4394)] = 176775, + [SMALL_STATE(4395)] = 176808, + [SMALL_STATE(4396)] = 176841, + [SMALL_STATE(4397)] = 176872, + [SMALL_STATE(4398)] = 176903, + [SMALL_STATE(4399)] = 176930, + [SMALL_STATE(4400)] = 176965, + [SMALL_STATE(4401)] = 177000, + [SMALL_STATE(4402)] = 177027, + [SMALL_STATE(4403)] = 177054, + [SMALL_STATE(4404)] = 177081, + [SMALL_STATE(4405)] = 177114, + [SMALL_STATE(4406)] = 177145, + [SMALL_STATE(4407)] = 177180, + [SMALL_STATE(4408)] = 177207, + [SMALL_STATE(4409)] = 177232, + [SMALL_STATE(4410)] = 177263, + [SMALL_STATE(4411)] = 177288, + [SMALL_STATE(4412)] = 177315, + [SMALL_STATE(4413)] = 177346, + [SMALL_STATE(4414)] = 177381, + [SMALL_STATE(4415)] = 177408, + [SMALL_STATE(4416)] = 177439, + [SMALL_STATE(4417)] = 177470, + [SMALL_STATE(4418)] = 177497, + [SMALL_STATE(4419)] = 177524, + [SMALL_STATE(4420)] = 177559, + [SMALL_STATE(4421)] = 177586, + [SMALL_STATE(4422)] = 177619, + [SMALL_STATE(4423)] = 177646, + [SMALL_STATE(4424)] = 177673, + [SMALL_STATE(4425)] = 177704, + [SMALL_STATE(4426)] = 177739, + [SMALL_STATE(4427)] = 177766, + [SMALL_STATE(4428)] = 177797, + [SMALL_STATE(4429)] = 177828, + [SMALL_STATE(4430)] = 177863, + [SMALL_STATE(4431)] = 177896, + [SMALL_STATE(4432)] = 177931, + [SMALL_STATE(4433)] = 177956, + [SMALL_STATE(4434)] = 177989, + [SMALL_STATE(4435)] = 178020, + [SMALL_STATE(4436)] = 178047, + [SMALL_STATE(4437)] = 178074, + [SMALL_STATE(4438)] = 178103, + [SMALL_STATE(4439)] = 178130, + [SMALL_STATE(4440)] = 178165, + [SMALL_STATE(4441)] = 178190, + [SMALL_STATE(4442)] = 178215, + [SMALL_STATE(4443)] = 178250, + [SMALL_STATE(4444)] = 178277, + [SMALL_STATE(4445)] = 178306, + [SMALL_STATE(4446)] = 178337, + [SMALL_STATE(4447)] = 178366, + [SMALL_STATE(4448)] = 178399, + [SMALL_STATE(4449)] = 178430, + [SMALL_STATE(4450)] = 178463, + [SMALL_STATE(4451)] = 178492, + [SMALL_STATE(4452)] = 178527, + [SMALL_STATE(4453)] = 178554, + [SMALL_STATE(4454)] = 178585, + [SMALL_STATE(4455)] = 178616, + [SMALL_STATE(4456)] = 178647, + [SMALL_STATE(4457)] = 178678, + [SMALL_STATE(4458)] = 178709, + [SMALL_STATE(4459)] = 178736, + [SMALL_STATE(4460)] = 178769, + [SMALL_STATE(4461)] = 178798, + [SMALL_STATE(4462)] = 178823, + [SMALL_STATE(4463)] = 178849, + [SMALL_STATE(4464)] = 178879, + [SMALL_STATE(4465)] = 178903, + [SMALL_STATE(4466)] = 178933, + [SMALL_STATE(4467)] = 178959, + [SMALL_STATE(4468)] = 179011, + [SMALL_STATE(4469)] = 179063, + [SMALL_STATE(4470)] = 179093, + [SMALL_STATE(4471)] = 179123, + [SMALL_STATE(4472)] = 179153, + [SMALL_STATE(4473)] = 179183, + [SMALL_STATE(4474)] = 179207, + [SMALL_STATE(4475)] = 179237, + [SMALL_STATE(4476)] = 179263, + [SMALL_STATE(4477)] = 179287, + [SMALL_STATE(4478)] = 179317, + [SMALL_STATE(4479)] = 179343, + [SMALL_STATE(4480)] = 179371, + [SMALL_STATE(4481)] = 179395, + [SMALL_STATE(4482)] = 179423, + [SMALL_STATE(4483)] = 179447, + [SMALL_STATE(4484)] = 179471, + [SMALL_STATE(4485)] = 179495, + [SMALL_STATE(4486)] = 179521, + [SMALL_STATE(4487)] = 179547, + [SMALL_STATE(4488)] = 179571, + [SMALL_STATE(4489)] = 179597, + [SMALL_STATE(4490)] = 179641, + [SMALL_STATE(4491)] = 179665, + [SMALL_STATE(4492)] = 179695, + [SMALL_STATE(4493)] = 179725, + [SMALL_STATE(4494)] = 179755, + [SMALL_STATE(4495)] = 179785, + [SMALL_STATE(4496)] = 179809, + [SMALL_STATE(4497)] = 179833, + [SMALL_STATE(4498)] = 179857, + [SMALL_STATE(4499)] = 179883, + [SMALL_STATE(4500)] = 179909, + [SMALL_STATE(4501)] = 179939, + [SMALL_STATE(4502)] = 179969, + [SMALL_STATE(4503)] = 179993, + [SMALL_STATE(4504)] = 180045, + [SMALL_STATE(4505)] = 180071, + [SMALL_STATE(4506)] = 180099, + [SMALL_STATE(4507)] = 180127, + [SMALL_STATE(4508)] = 180153, + [SMALL_STATE(4509)] = 180197, + [SMALL_STATE(4510)] = 180221, + [SMALL_STATE(4511)] = 180245, + [SMALL_STATE(4512)] = 180271, + [SMALL_STATE(4513)] = 180297, + [SMALL_STATE(4514)] = 180325, + [SMALL_STATE(4515)] = 180353, + [SMALL_STATE(4516)] = 180377, + [SMALL_STATE(4517)] = 180403, + [SMALL_STATE(4518)] = 180431, + [SMALL_STATE(4519)] = 180457, + [SMALL_STATE(4520)] = 180483, + [SMALL_STATE(4521)] = 180513, + [SMALL_STATE(4522)] = 180557, + [SMALL_STATE(4523)] = 180581, + [SMALL_STATE(4524)] = 180605, + [SMALL_STATE(4525)] = 180629, + [SMALL_STATE(4526)] = 180653, + [SMALL_STATE(4527)] = 180685, + [SMALL_STATE(4528)] = 180713, + [SMALL_STATE(4529)] = 180741, + [SMALL_STATE(4530)] = 180765, + [SMALL_STATE(4531)] = 180793, + [SMALL_STATE(4532)] = 180845, + [SMALL_STATE(4533)] = 180869, + [SMALL_STATE(4534)] = 180899, + [SMALL_STATE(4535)] = 180929, + [SMALL_STATE(4536)] = 180955, + [SMALL_STATE(4537)] = 180979, + [SMALL_STATE(4538)] = 181003, + [SMALL_STATE(4539)] = 181055, + [SMALL_STATE(4540)] = 181085, + [SMALL_STATE(4541)] = 181113, + [SMALL_STATE(4542)] = 181143, + [SMALL_STATE(4543)] = 181195, + [SMALL_STATE(4544)] = 181221, + [SMALL_STATE(4545)] = 181251, + [SMALL_STATE(4546)] = 181277, + [SMALL_STATE(4547)] = 181303, + [SMALL_STATE(4548)] = 181333, + [SMALL_STATE(4549)] = 181359, + [SMALL_STATE(4550)] = 181411, + [SMALL_STATE(4551)] = 181439, + [SMALL_STATE(4552)] = 181491, + [SMALL_STATE(4553)] = 181519, + [SMALL_STATE(4554)] = 181549, + [SMALL_STATE(4555)] = 181581, + [SMALL_STATE(4556)] = 181609, + [SMALL_STATE(4557)] = 181633, + [SMALL_STATE(4558)] = 181663, + [SMALL_STATE(4559)] = 181691, + [SMALL_STATE(4560)] = 181721, + [SMALL_STATE(4561)] = 181745, + [SMALL_STATE(4562)] = 181777, + [SMALL_STATE(4563)] = 181807, + [SMALL_STATE(4564)] = 181837, + [SMALL_STATE(4565)] = 181867, + [SMALL_STATE(4566)] = 181897, + [SMALL_STATE(4567)] = 181921, + [SMALL_STATE(4568)] = 181951, + [SMALL_STATE(4569)] = 181977, + [SMALL_STATE(4570)] = 182029, + [SMALL_STATE(4571)] = 182057, + [SMALL_STATE(4572)] = 182081, + [SMALL_STATE(4573)] = 182125, + [SMALL_STATE(4574)] = 182151, + [SMALL_STATE(4575)] = 182179, + [SMALL_STATE(4576)] = 182207, + [SMALL_STATE(4577)] = 182253, + [SMALL_STATE(4578)] = 182305, + [SMALL_STATE(4579)] = 182329, + [SMALL_STATE(4580)] = 182359, + [SMALL_STATE(4581)] = 182389, + [SMALL_STATE(4582)] = 182419, + [SMALL_STATE(4583)] = 182449, + [SMALL_STATE(4584)] = 182473, + [SMALL_STATE(4585)] = 182497, + [SMALL_STATE(4586)] = 182521, + [SMALL_STATE(4587)] = 182546, + [SMALL_STATE(4588)] = 182575, + [SMALL_STATE(4589)] = 182604, + [SMALL_STATE(4590)] = 182635, + [SMALL_STATE(4591)] = 182660, + [SMALL_STATE(4592)] = 182689, + [SMALL_STATE(4593)] = 182716, + [SMALL_STATE(4594)] = 182745, + [SMALL_STATE(4595)] = 182770, + [SMALL_STATE(4596)] = 182799, + [SMALL_STATE(4597)] = 182828, + [SMALL_STATE(4598)] = 182855, + [SMALL_STATE(4599)] = 182884, + [SMALL_STATE(4600)] = 182913, + [SMALL_STATE(4601)] = 182942, + [SMALL_STATE(4602)] = 182971, + [SMALL_STATE(4603)] = 182998, + [SMALL_STATE(4604)] = 183027, + [SMALL_STATE(4605)] = 183052, + [SMALL_STATE(4606)] = 183079, + [SMALL_STATE(4607)] = 183108, + [SMALL_STATE(4608)] = 183133, + [SMALL_STATE(4609)] = 183158, + [SMALL_STATE(4610)] = 183187, + [SMALL_STATE(4611)] = 183228, + [SMALL_STATE(4612)] = 183253, + [SMALL_STATE(4613)] = 183282, + [SMALL_STATE(4614)] = 183311, + [SMALL_STATE(4615)] = 183336, + [SMALL_STATE(4616)] = 183361, + [SMALL_STATE(4617)] = 183390, + [SMALL_STATE(4618)] = 183415, + [SMALL_STATE(4619)] = 183440, + [SMALL_STATE(4620)] = 183465, + [SMALL_STATE(4621)] = 183490, + [SMALL_STATE(4622)] = 183515, + [SMALL_STATE(4623)] = 183540, + [SMALL_STATE(4624)] = 183569, + [SMALL_STATE(4625)] = 183594, + [SMALL_STATE(4626)] = 183623, + [SMALL_STATE(4627)] = 183652, + [SMALL_STATE(4628)] = 183677, + [SMALL_STATE(4629)] = 183706, + [SMALL_STATE(4630)] = 183729, + [SMALL_STATE(4631)] = 183754, + [SMALL_STATE(4632)] = 183779, + [SMALL_STATE(4633)] = 183808, + [SMALL_STATE(4634)] = 183833, + [SMALL_STATE(4635)] = 183862, + [SMALL_STATE(4636)] = 183893, + [SMALL_STATE(4637)] = 183922, + [SMALL_STATE(4638)] = 183947, + [SMALL_STATE(4639)] = 183976, + [SMALL_STATE(4640)] = 184001, + [SMALL_STATE(4641)] = 184026, + [SMALL_STATE(4642)] = 184051, + [SMALL_STATE(4643)] = 184076, + [SMALL_STATE(4644)] = 184101, + [SMALL_STATE(4645)] = 184126, + [SMALL_STATE(4646)] = 184151, + [SMALL_STATE(4647)] = 184176, + [SMALL_STATE(4648)] = 184199, + [SMALL_STATE(4649)] = 184228, + [SMALL_STATE(4650)] = 184253, + [SMALL_STATE(4651)] = 184282, + [SMALL_STATE(4652)] = 184307, + [SMALL_STATE(4653)] = 184336, + [SMALL_STATE(4654)] = 184361, + [SMALL_STATE(4655)] = 184386, + [SMALL_STATE(4656)] = 184411, + [SMALL_STATE(4657)] = 184436, + [SMALL_STATE(4658)] = 184461, + [SMALL_STATE(4659)] = 184486, + [SMALL_STATE(4660)] = 184515, + [SMALL_STATE(4661)] = 184540, + [SMALL_STATE(4662)] = 184569, + [SMALL_STATE(4663)] = 184594, + [SMALL_STATE(4664)] = 184619, + [SMALL_STATE(4665)] = 184646, + [SMALL_STATE(4666)] = 184671, + [SMALL_STATE(4667)] = 184696, + [SMALL_STATE(4668)] = 184725, + [SMALL_STATE(4669)] = 184750, + [SMALL_STATE(4670)] = 184775, + [SMALL_STATE(4671)] = 184798, + [SMALL_STATE(4672)] = 184823, + [SMALL_STATE(4673)] = 184848, + [SMALL_STATE(4674)] = 184873, + [SMALL_STATE(4675)] = 184898, + [SMALL_STATE(4676)] = 184923, + [SMALL_STATE(4677)] = 184948, + [SMALL_STATE(4678)] = 184975, + [SMALL_STATE(4679)] = 185002, + [SMALL_STATE(4680)] = 185033, + [SMALL_STATE(4681)] = 185058, + [SMALL_STATE(4682)] = 185083, + [SMALL_STATE(4683)] = 185112, + [SMALL_STATE(4684)] = 185137, + [SMALL_STATE(4685)] = 185166, + [SMALL_STATE(4686)] = 185191, + [SMALL_STATE(4687)] = 185216, + [SMALL_STATE(4688)] = 185241, + [SMALL_STATE(4689)] = 185266, + [SMALL_STATE(4690)] = 185291, + [SMALL_STATE(4691)] = 185316, + [SMALL_STATE(4692)] = 185347, + [SMALL_STATE(4693)] = 185374, + [SMALL_STATE(4694)] = 185403, + [SMALL_STATE(4695)] = 185432, + [SMALL_STATE(4696)] = 185461, + [SMALL_STATE(4697)] = 185486, + [SMALL_STATE(4698)] = 185515, + [SMALL_STATE(4699)] = 185544, + [SMALL_STATE(4700)] = 185569, + [SMALL_STATE(4701)] = 185596, + [SMALL_STATE(4702)] = 185621, + [SMALL_STATE(4703)] = 185650, + [SMALL_STATE(4704)] = 185679, + [SMALL_STATE(4705)] = 185704, + [SMALL_STATE(4706)] = 185729, + [SMALL_STATE(4707)] = 185758, + [SMALL_STATE(4708)] = 185803, + [SMALL_STATE(4709)] = 185828, + [SMALL_STATE(4710)] = 185857, + [SMALL_STATE(4711)] = 185882, + [SMALL_STATE(4712)] = 185911, + [SMALL_STATE(4713)] = 185940, + [SMALL_STATE(4714)] = 185965, + [SMALL_STATE(4715)] = 185990, + [SMALL_STATE(4716)] = 186015, + [SMALL_STATE(4717)] = 186040, + [SMALL_STATE(4718)] = 186065, + [SMALL_STATE(4719)] = 186094, + [SMALL_STATE(4720)] = 186119, + [SMALL_STATE(4721)] = 186144, + [SMALL_STATE(4722)] = 186167, + [SMALL_STATE(4723)] = 186192, + [SMALL_STATE(4724)] = 186221, + [SMALL_STATE(4725)] = 186246, + [SMALL_STATE(4726)] = 186271, + [SMALL_STATE(4727)] = 186296, + [SMALL_STATE(4728)] = 186321, + [SMALL_STATE(4729)] = 186350, + [SMALL_STATE(4730)] = 186375, + [SMALL_STATE(4731)] = 186398, + [SMALL_STATE(4732)] = 186423, + [SMALL_STATE(4733)] = 186452, + [SMALL_STATE(4734)] = 186479, + [SMALL_STATE(4735)] = 186504, + [SMALL_STATE(4736)] = 186529, + [SMALL_STATE(4737)] = 186558, + [SMALL_STATE(4738)] = 186583, + [SMALL_STATE(4739)] = 186608, + [SMALL_STATE(4740)] = 186635, + [SMALL_STATE(4741)] = 186662, + [SMALL_STATE(4742)] = 186687, + [SMALL_STATE(4743)] = 186716, + [SMALL_STATE(4744)] = 186741, + [SMALL_STATE(4745)] = 186766, + [SMALL_STATE(4746)] = 186811, + [SMALL_STATE(4747)] = 186836, + [SMALL_STATE(4748)] = 186861, + [SMALL_STATE(4749)] = 186886, + [SMALL_STATE(4750)] = 186913, + [SMALL_STATE(4751)] = 186938, + [SMALL_STATE(4752)] = 186963, + [SMALL_STATE(4753)] = 186988, + [SMALL_STATE(4754)] = 187013, + [SMALL_STATE(4755)] = 187038, + [SMALL_STATE(4756)] = 187063, + [SMALL_STATE(4757)] = 187088, + [SMALL_STATE(4758)] = 187113, + [SMALL_STATE(4759)] = 187137, + [SMALL_STATE(4760)] = 187163, + [SMALL_STATE(4761)] = 187187, + [SMALL_STATE(4762)] = 187211, + [SMALL_STATE(4763)] = 187235, + [SMALL_STATE(4764)] = 187279, + [SMALL_STATE(4765)] = 187303, + [SMALL_STATE(4766)] = 187325, + [SMALL_STATE(4767)] = 187363, + [SMALL_STATE(4768)] = 187387, + [SMALL_STATE(4769)] = 187411, + [SMALL_STATE(4770)] = 187435, + [SMALL_STATE(4771)] = 187459, + [SMALL_STATE(4772)] = 187501, + [SMALL_STATE(4773)] = 187525, + [SMALL_STATE(4774)] = 187547, + [SMALL_STATE(4775)] = 187571, + [SMALL_STATE(4776)] = 187595, + [SMALL_STATE(4777)] = 187619, + [SMALL_STATE(4778)] = 187643, + [SMALL_STATE(4779)] = 187667, + [SMALL_STATE(4780)] = 187689, + [SMALL_STATE(4781)] = 187711, + [SMALL_STATE(4782)] = 187735, + [SMALL_STATE(4783)] = 187759, + [SMALL_STATE(4784)] = 187783, + [SMALL_STATE(4785)] = 187807, + [SMALL_STATE(4786)] = 187831, + [SMALL_STATE(4787)] = 187855, + [SMALL_STATE(4788)] = 187879, + [SMALL_STATE(4789)] = 187903, + [SMALL_STATE(4790)] = 187927, + [SMALL_STATE(4791)] = 187951, + [SMALL_STATE(4792)] = 187975, + [SMALL_STATE(4793)] = 187999, + [SMALL_STATE(4794)] = 188021, + [SMALL_STATE(4795)] = 188045, + [SMALL_STATE(4796)] = 188069, + [SMALL_STATE(4797)] = 188091, + [SMALL_STATE(4798)] = 188115, + [SMALL_STATE(4799)] = 188139, + [SMALL_STATE(4800)] = 188161, + [SMALL_STATE(4801)] = 188185, + [SMALL_STATE(4802)] = 188209, + [SMALL_STATE(4803)] = 188233, + [SMALL_STATE(4804)] = 188257, + [SMALL_STATE(4805)] = 188279, + [SMALL_STATE(4806)] = 188303, + [SMALL_STATE(4807)] = 188327, + [SMALL_STATE(4808)] = 188351, + [SMALL_STATE(4809)] = 188375, + [SMALL_STATE(4810)] = 188399, + [SMALL_STATE(4811)] = 188423, + [SMALL_STATE(4812)] = 188447, + [SMALL_STATE(4813)] = 188471, + [SMALL_STATE(4814)] = 188495, + [SMALL_STATE(4815)] = 188519, + [SMALL_STATE(4816)] = 188543, + [SMALL_STATE(4817)] = 188565, + [SMALL_STATE(4818)] = 188589, + [SMALL_STATE(4819)] = 188611, + [SMALL_STATE(4820)] = 188635, + [SMALL_STATE(4821)] = 188659, + [SMALL_STATE(4822)] = 188683, + [SMALL_STATE(4823)] = 188707, + [SMALL_STATE(4824)] = 188731, + [SMALL_STATE(4825)] = 188755, + [SMALL_STATE(4826)] = 188779, + [SMALL_STATE(4827)] = 188803, + [SMALL_STATE(4828)] = 188827, + [SMALL_STATE(4829)] = 188849, + [SMALL_STATE(4830)] = 188873, + [SMALL_STATE(4831)] = 188899, + [SMALL_STATE(4832)] = 188925, + [SMALL_STATE(4833)] = 188971, + [SMALL_STATE(4834)] = 189013, + [SMALL_STATE(4835)] = 189037, + [SMALL_STATE(4836)] = 189061, + [SMALL_STATE(4837)] = 189095, + [SMALL_STATE(4838)] = 189119, + [SMALL_STATE(4839)] = 189143, + [SMALL_STATE(4840)] = 189165, + [SMALL_STATE(4841)] = 189189, + [SMALL_STATE(4842)] = 189215, + [SMALL_STATE(4843)] = 189239, + [SMALL_STATE(4844)] = 189263, + [SMALL_STATE(4845)] = 189305, + [SMALL_STATE(4846)] = 189329, + [SMALL_STATE(4847)] = 189353, + [SMALL_STATE(4848)] = 189377, + [SMALL_STATE(4849)] = 189401, + [SMALL_STATE(4850)] = 189425, + [SMALL_STATE(4851)] = 189447, + [SMALL_STATE(4852)] = 189493, + [SMALL_STATE(4853)] = 189517, + [SMALL_STATE(4854)] = 189541, + [SMALL_STATE(4855)] = 189565, + [SMALL_STATE(4856)] = 189587, + [SMALL_STATE(4857)] = 189625, + [SMALL_STATE(4858)] = 189649, + [SMALL_STATE(4859)] = 189673, + [SMALL_STATE(4860)] = 189695, + [SMALL_STATE(4861)] = 189741, + [SMALL_STATE(4862)] = 189787, + [SMALL_STATE(4863)] = 189811, + [SMALL_STATE(4864)] = 189833, + [SMALL_STATE(4865)] = 189857, + [SMALL_STATE(4866)] = 189881, + [SMALL_STATE(4867)] = 189927, + [SMALL_STATE(4868)] = 189951, + [SMALL_STATE(4869)] = 189989, + [SMALL_STATE(4870)] = 190013, + [SMALL_STATE(4871)] = 190037, + [SMALL_STATE(4872)] = 190061, + [SMALL_STATE(4873)] = 190085, + [SMALL_STATE(4874)] = 190109, + [SMALL_STATE(4875)] = 190131, + [SMALL_STATE(4876)] = 190173, + [SMALL_STATE(4877)] = 190195, + [SMALL_STATE(4878)] = 190217, + [SMALL_STATE(4879)] = 190243, + [SMALL_STATE(4880)] = 190267, + [SMALL_STATE(4881)] = 190291, + [SMALL_STATE(4882)] = 190315, + [SMALL_STATE(4883)] = 190339, + [SMALL_STATE(4884)] = 190363, + [SMALL_STATE(4885)] = 190387, + [SMALL_STATE(4886)] = 190411, + [SMALL_STATE(4887)] = 190435, + [SMALL_STATE(4888)] = 190461, + [SMALL_STATE(4889)] = 190485, + [SMALL_STATE(4890)] = 190531, + [SMALL_STATE(4891)] = 190555, + [SMALL_STATE(4892)] = 190577, + [SMALL_STATE(4893)] = 190601, + [SMALL_STATE(4894)] = 190625, + [SMALL_STATE(4895)] = 190649, + [SMALL_STATE(4896)] = 190695, + [SMALL_STATE(4897)] = 190719, + [SMALL_STATE(4898)] = 190763, + [SMALL_STATE(4899)] = 190787, + [SMALL_STATE(4900)] = 190811, + [SMALL_STATE(4901)] = 190835, + [SMALL_STATE(4902)] = 190859, + [SMALL_STATE(4903)] = 190883, + [SMALL_STATE(4904)] = 190905, + [SMALL_STATE(4905)] = 190927, + [SMALL_STATE(4906)] = 190951, + [SMALL_STATE(4907)] = 190975, + [SMALL_STATE(4908)] = 190999, + [SMALL_STATE(4909)] = 191023, + [SMALL_STATE(4910)] = 191069, + [SMALL_STATE(4911)] = 191115, + [SMALL_STATE(4912)] = 191139, + [SMALL_STATE(4913)] = 191163, + [SMALL_STATE(4914)] = 191187, + [SMALL_STATE(4915)] = 191213, + [SMALL_STATE(4916)] = 191259, + [SMALL_STATE(4917)] = 191281, + [SMALL_STATE(4918)] = 191305, + [SMALL_STATE(4919)] = 191329, + [SMALL_STATE(4920)] = 191353, + [SMALL_STATE(4921)] = 191377, + [SMALL_STATE(4922)] = 191417, + [SMALL_STATE(4923)] = 191441, + [SMALL_STATE(4924)] = 191465, + [SMALL_STATE(4925)] = 191489, + [SMALL_STATE(4926)] = 191513, + [SMALL_STATE(4927)] = 191537, + [SMALL_STATE(4928)] = 191561, + [SMALL_STATE(4929)] = 191585, + [SMALL_STATE(4930)] = 191609, + [SMALL_STATE(4931)] = 191633, + [SMALL_STATE(4932)] = 191675, + [SMALL_STATE(4933)] = 191701, + [SMALL_STATE(4934)] = 191725, + [SMALL_STATE(4935)] = 191749, + [SMALL_STATE(4936)] = 191773, + [SMALL_STATE(4937)] = 191797, + [SMALL_STATE(4938)] = 191821, + [SMALL_STATE(4939)] = 191845, + [SMALL_STATE(4940)] = 191867, + [SMALL_STATE(4941)] = 191891, + [SMALL_STATE(4942)] = 191915, + [SMALL_STATE(4943)] = 191939, + [SMALL_STATE(4944)] = 191963, + [SMALL_STATE(4945)] = 191985, + [SMALL_STATE(4946)] = 192009, + [SMALL_STATE(4947)] = 192033, + [SMALL_STATE(4948)] = 192057, + [SMALL_STATE(4949)] = 192080, + [SMALL_STATE(4950)] = 192101, + [SMALL_STATE(4951)] = 192124, + [SMALL_STATE(4952)] = 192147, + [SMALL_STATE(4953)] = 192170, + [SMALL_STATE(4954)] = 192193, + [SMALL_STATE(4955)] = 192216, + [SMALL_STATE(4956)] = 192239, + [SMALL_STATE(4957)] = 192260, + [SMALL_STATE(4958)] = 192281, + [SMALL_STATE(4959)] = 192302, + [SMALL_STATE(4960)] = 192323, + [SMALL_STATE(4961)] = 192344, + [SMALL_STATE(4962)] = 192365, + [SMALL_STATE(4963)] = 192386, + [SMALL_STATE(4964)] = 192407, + [SMALL_STATE(4965)] = 192428, + [SMALL_STATE(4966)] = 192449, + [SMALL_STATE(4967)] = 192470, + [SMALL_STATE(4968)] = 192511, + [SMALL_STATE(4969)] = 192532, + [SMALL_STATE(4970)] = 192553, + [SMALL_STATE(4971)] = 192574, + [SMALL_STATE(4972)] = 192595, + [SMALL_STATE(4973)] = 192616, + [SMALL_STATE(4974)] = 192637, + [SMALL_STATE(4975)] = 192664, + [SMALL_STATE(4976)] = 192685, + [SMALL_STATE(4977)] = 192706, + [SMALL_STATE(4978)] = 192727, + [SMALL_STATE(4979)] = 192748, + [SMALL_STATE(4980)] = 192775, + [SMALL_STATE(4981)] = 192816, + [SMALL_STATE(4982)] = 192839, + [SMALL_STATE(4983)] = 192876, + [SMALL_STATE(4984)] = 192897, + [SMALL_STATE(4985)] = 192918, + [SMALL_STATE(4986)] = 192939, + [SMALL_STATE(4987)] = 192960, + [SMALL_STATE(4988)] = 192981, + [SMALL_STATE(4989)] = 193002, + [SMALL_STATE(4990)] = 193029, + [SMALL_STATE(4991)] = 193050, + [SMALL_STATE(4992)] = 193071, + [SMALL_STATE(4993)] = 193092, + [SMALL_STATE(4994)] = 193113, + [SMALL_STATE(4995)] = 193134, + [SMALL_STATE(4996)] = 193155, + [SMALL_STATE(4997)] = 193176, + [SMALL_STATE(4998)] = 193199, + [SMALL_STATE(4999)] = 193236, + [SMALL_STATE(5000)] = 193257, + [SMALL_STATE(5001)] = 193280, + [SMALL_STATE(5002)] = 193301, + [SMALL_STATE(5003)] = 193322, + [SMALL_STATE(5004)] = 193343, + [SMALL_STATE(5005)] = 193366, + [SMALL_STATE(5006)] = 193387, + [SMALL_STATE(5007)] = 193408, + [SMALL_STATE(5008)] = 193429, + [SMALL_STATE(5009)] = 193450, + [SMALL_STATE(5010)] = 193473, + [SMALL_STATE(5011)] = 193494, + [SMALL_STATE(5012)] = 193515, + [SMALL_STATE(5013)] = 193536, + [SMALL_STATE(5014)] = 193557, + [SMALL_STATE(5015)] = 193578, + [SMALL_STATE(5016)] = 193599, + [SMALL_STATE(5017)] = 193620, + [SMALL_STATE(5018)] = 193641, + [SMALL_STATE(5019)] = 193662, + [SMALL_STATE(5020)] = 193683, + [SMALL_STATE(5021)] = 193704, + [SMALL_STATE(5022)] = 193743, + [SMALL_STATE(5023)] = 193782, + [SMALL_STATE(5024)] = 193823, + [SMALL_STATE(5025)] = 193864, + [SMALL_STATE(5026)] = 193903, + [SMALL_STATE(5027)] = 193942, + [SMALL_STATE(5028)] = 193981, + [SMALL_STATE(5029)] = 194020, + [SMALL_STATE(5030)] = 194061, + [SMALL_STATE(5031)] = 194100, + [SMALL_STATE(5032)] = 194121, + [SMALL_STATE(5033)] = 194142, + [SMALL_STATE(5034)] = 194183, + [SMALL_STATE(5035)] = 194204, + [SMALL_STATE(5036)] = 194225, + [SMALL_STATE(5037)] = 194266, + [SMALL_STATE(5038)] = 194287, + [SMALL_STATE(5039)] = 194310, + [SMALL_STATE(5040)] = 194333, + [SMALL_STATE(5041)] = 194374, + [SMALL_STATE(5042)] = 194395, + [SMALL_STATE(5043)] = 194418, + [SMALL_STATE(5044)] = 194441, + [SMALL_STATE(5045)] = 194482, + [SMALL_STATE(5046)] = 194521, + [SMALL_STATE(5047)] = 194560, + [SMALL_STATE(5048)] = 194599, + [SMALL_STATE(5049)] = 194638, + [SMALL_STATE(5050)] = 194659, + [SMALL_STATE(5051)] = 194680, + [SMALL_STATE(5052)] = 194703, + [SMALL_STATE(5053)] = 194724, + [SMALL_STATE(5054)] = 194745, + [SMALL_STATE(5055)] = 194766, + [SMALL_STATE(5056)] = 194793, + [SMALL_STATE(5057)] = 194814, + [SMALL_STATE(5058)] = 194841, + [SMALL_STATE(5059)] = 194880, + [SMALL_STATE(5060)] = 194903, + [SMALL_STATE(5061)] = 194926, + [SMALL_STATE(5062)] = 194949, + [SMALL_STATE(5063)] = 194972, + [SMALL_STATE(5064)] = 194999, + [SMALL_STATE(5065)] = 195020, + [SMALL_STATE(5066)] = 195043, + [SMALL_STATE(5067)] = 195066, + [SMALL_STATE(5068)] = 195089, + [SMALL_STATE(5069)] = 195110, + [SMALL_STATE(5070)] = 195149, + [SMALL_STATE(5071)] = 195188, + [SMALL_STATE(5072)] = 195227, + [SMALL_STATE(5073)] = 195250, + [SMALL_STATE(5074)] = 195273, + [SMALL_STATE(5075)] = 195296, + [SMALL_STATE(5076)] = 195319, + [SMALL_STATE(5077)] = 195342, + [SMALL_STATE(5078)] = 195365, + [SMALL_STATE(5079)] = 195388, + [SMALL_STATE(5080)] = 195411, + [SMALL_STATE(5081)] = 195434, + [SMALL_STATE(5082)] = 195455, + [SMALL_STATE(5083)] = 195478, + [SMALL_STATE(5084)] = 195501, + [SMALL_STATE(5085)] = 195522, + [SMALL_STATE(5086)] = 195545, + [SMALL_STATE(5087)] = 195568, + [SMALL_STATE(5088)] = 195591, + [SMALL_STATE(5089)] = 195614, + [SMALL_STATE(5090)] = 195637, + [SMALL_STATE(5091)] = 195664, + [SMALL_STATE(5092)] = 195687, + [SMALL_STATE(5093)] = 195710, + [SMALL_STATE(5094)] = 195737, + [SMALL_STATE(5095)] = 195758, + [SMALL_STATE(5096)] = 195781, + [SMALL_STATE(5097)] = 195802, + [SMALL_STATE(5098)] = 195829, + [SMALL_STATE(5099)] = 195856, + [SMALL_STATE(5100)] = 195879, + [SMALL_STATE(5101)] = 195906, + [SMALL_STATE(5102)] = 195941, + [SMALL_STATE(5103)] = 195978, + [SMALL_STATE(5104)] = 196013, + [SMALL_STATE(5105)] = 196048, + [SMALL_STATE(5106)] = 196083, + [SMALL_STATE(5107)] = 196106, + [SMALL_STATE(5108)] = 196143, + [SMALL_STATE(5109)] = 196164, + [SMALL_STATE(5110)] = 196185, + [SMALL_STATE(5111)] = 196226, + [SMALL_STATE(5112)] = 196259, + [SMALL_STATE(5113)] = 196283, + [SMALL_STATE(5114)] = 196319, + [SMALL_STATE(5115)] = 196351, + [SMALL_STATE(5116)] = 196377, + [SMALL_STATE(5117)] = 196401, + [SMALL_STATE(5118)] = 196427, + [SMALL_STATE(5119)] = 196453, + [SMALL_STATE(5120)] = 196491, + [SMALL_STATE(5121)] = 196523, + [SMALL_STATE(5122)] = 196545, + [SMALL_STATE(5123)] = 196567, + [SMALL_STATE(5124)] = 196599, + [SMALL_STATE(5125)] = 196623, + [SMALL_STATE(5126)] = 196661, + [SMALL_STATE(5127)] = 196693, + [SMALL_STATE(5128)] = 196725, + [SMALL_STATE(5129)] = 196761, + [SMALL_STATE(5130)] = 196789, + [SMALL_STATE(5131)] = 196813, + [SMALL_STATE(5132)] = 196837, + [SMALL_STATE(5133)] = 196863, + [SMALL_STATE(5134)] = 196893, + [SMALL_STATE(5135)] = 196919, + [SMALL_STATE(5136)] = 196955, + [SMALL_STATE(5137)] = 196979, + [SMALL_STATE(5138)] = 197011, + [SMALL_STATE(5139)] = 197049, + [SMALL_STATE(5140)] = 197075, + [SMALL_STATE(5141)] = 197107, + [SMALL_STATE(5142)] = 197133, + [SMALL_STATE(5143)] = 197165, + [SMALL_STATE(5144)] = 197191, + [SMALL_STATE(5145)] = 197217, + [SMALL_STATE(5146)] = 197243, + [SMALL_STATE(5147)] = 197275, + [SMALL_STATE(5148)] = 197313, + [SMALL_STATE(5149)] = 197337, + [SMALL_STATE(5150)] = 197373, + [SMALL_STATE(5151)] = 197399, + [SMALL_STATE(5152)] = 197423, + [SMALL_STATE(5153)] = 197453, + [SMALL_STATE(5154)] = 197483, + [SMALL_STATE(5155)] = 197515, + [SMALL_STATE(5156)] = 197547, + [SMALL_STATE(5157)] = 197581, + [SMALL_STATE(5158)] = 197615, + [SMALL_STATE(5159)] = 197649, + [SMALL_STATE(5160)] = 197683, + [SMALL_STATE(5161)] = 197717, + [SMALL_STATE(5162)] = 197751, + [SMALL_STATE(5163)] = 197787, + [SMALL_STATE(5164)] = 197813, + [SMALL_STATE(5165)] = 197834, + [SMALL_STATE(5166)] = 197867, + [SMALL_STATE(5167)] = 197902, + [SMALL_STATE(5168)] = 197937, + [SMALL_STATE(5169)] = 197972, + [SMALL_STATE(5170)] = 198007, + [SMALL_STATE(5171)] = 198042, + [SMALL_STATE(5172)] = 198077, + [SMALL_STATE(5173)] = 198112, + [SMALL_STATE(5174)] = 198133, + [SMALL_STATE(5175)] = 198154, + [SMALL_STATE(5176)] = 198181, + [SMALL_STATE(5177)] = 198214, + [SMALL_STATE(5178)] = 198247, + [SMALL_STATE(5179)] = 198282, + [SMALL_STATE(5180)] = 198317, + [SMALL_STATE(5181)] = 198350, + [SMALL_STATE(5182)] = 198371, + [SMALL_STATE(5183)] = 198398, + [SMALL_STATE(5184)] = 198433, + [SMALL_STATE(5185)] = 198468, + [SMALL_STATE(5186)] = 198493, + [SMALL_STATE(5187)] = 198528, + [SMALL_STATE(5188)] = 198563, + [SMALL_STATE(5189)] = 198584, + [SMALL_STATE(5190)] = 198609, + [SMALL_STATE(5191)] = 198630, + [SMALL_STATE(5192)] = 198651, + [SMALL_STATE(5193)] = 198672, + [SMALL_STATE(5194)] = 198707, + [SMALL_STATE(5195)] = 198740, + [SMALL_STATE(5196)] = 198771, + [SMALL_STATE(5197)] = 198790, + [SMALL_STATE(5198)] = 198811, + [SMALL_STATE(5199)] = 198834, + [SMALL_STATE(5200)] = 198869, + [SMALL_STATE(5201)] = 198902, + [SMALL_STATE(5202)] = 198921, + [SMALL_STATE(5203)] = 198944, + [SMALL_STATE(5204)] = 198969, + [SMALL_STATE(5205)] = 199004, + [SMALL_STATE(5206)] = 199039, + [SMALL_STATE(5207)] = 199074, + [SMALL_STATE(5208)] = 199109, + [SMALL_STATE(5209)] = 199128, + [SMALL_STATE(5210)] = 199163, + [SMALL_STATE(5211)] = 199188, + [SMALL_STATE(5212)] = 199215, + [SMALL_STATE(5213)] = 199240, + [SMALL_STATE(5214)] = 199275, + [SMALL_STATE(5215)] = 199310, + [SMALL_STATE(5216)] = 199333, + [SMALL_STATE(5217)] = 199364, + [SMALL_STATE(5218)] = 199383, + [SMALL_STATE(5219)] = 199418, + [SMALL_STATE(5220)] = 199453, + [SMALL_STATE(5221)] = 199488, + [SMALL_STATE(5222)] = 199523, + [SMALL_STATE(5223)] = 199546, + [SMALL_STATE(5224)] = 199569, + [SMALL_STATE(5225)] = 199590, + [SMALL_STATE(5226)] = 199615, + [SMALL_STATE(5227)] = 199640, + [SMALL_STATE(5228)] = 199671, + [SMALL_STATE(5229)] = 199706, + [SMALL_STATE(5230)] = 199737, + [SMALL_STATE(5231)] = 199768, + [SMALL_STATE(5232)] = 199803, + [SMALL_STATE(5233)] = 199838, + [SMALL_STATE(5234)] = 199869, + [SMALL_STATE(5235)] = 199888, + [SMALL_STATE(5236)] = 199907, + [SMALL_STATE(5237)] = 199942, + [SMALL_STATE(5238)] = 199977, + [SMALL_STATE(5239)] = 199998, + [SMALL_STATE(5240)] = 200033, + [SMALL_STATE(5241)] = 200068, + [SMALL_STATE(5242)] = 200089, + [SMALL_STATE(5243)] = 200122, + [SMALL_STATE(5244)] = 200155, + [SMALL_STATE(5245)] = 200190, + [SMALL_STATE(5246)] = 200225, + [SMALL_STATE(5247)] = 200260, + [SMALL_STATE(5248)] = 200283, + [SMALL_STATE(5249)] = 200318, + [SMALL_STATE(5250)] = 200339, + [SMALL_STATE(5251)] = 200364, + [SMALL_STATE(5252)] = 200399, + [SMALL_STATE(5253)] = 200434, + [SMALL_STATE(5254)] = 200459, + [SMALL_STATE(5255)] = 200484, + [SMALL_STATE(5256)] = 200503, + [SMALL_STATE(5257)] = 200532, + [SMALL_STATE(5258)] = 200561, + [SMALL_STATE(5259)] = 200590, + [SMALL_STATE(5260)] = 200613, + [SMALL_STATE(5261)] = 200633, + [SMALL_STATE(5262)] = 200663, + [SMALL_STATE(5263)] = 200693, + [SMALL_STATE(5264)] = 200723, + [SMALL_STATE(5265)] = 200747, + [SMALL_STATE(5266)] = 200771, + [SMALL_STATE(5267)] = 200795, + [SMALL_STATE(5268)] = 200817, + [SMALL_STATE(5269)] = 200837, + [SMALL_STATE(5270)] = 200867, + [SMALL_STATE(5271)] = 200897, + [SMALL_STATE(5272)] = 200921, + [SMALL_STATE(5273)] = 200943, + [SMALL_STATE(5274)] = 200973, + [SMALL_STATE(5275)] = 200993, + [SMALL_STATE(5276)] = 201023, + [SMALL_STATE(5277)] = 201043, + [SMALL_STATE(5278)] = 201075, + [SMALL_STATE(5279)] = 201097, + [SMALL_STATE(5280)] = 201127, + [SMALL_STATE(5281)] = 201147, + [SMALL_STATE(5282)] = 201177, + [SMALL_STATE(5283)] = 201197, + [SMALL_STATE(5284)] = 201227, + [SMALL_STATE(5285)] = 201257, + [SMALL_STATE(5286)] = 201287, + [SMALL_STATE(5287)] = 201317, + [SMALL_STATE(5288)] = 201347, + [SMALL_STATE(5289)] = 201377, + [SMALL_STATE(5290)] = 201397, + [SMALL_STATE(5291)] = 201417, + [SMALL_STATE(5292)] = 201447, + [SMALL_STATE(5293)] = 201477, + [SMALL_STATE(5294)] = 201507, + [SMALL_STATE(5295)] = 201537, + [SMALL_STATE(5296)] = 201565, + [SMALL_STATE(5297)] = 201595, + [SMALL_STATE(5298)] = 201625, + [SMALL_STATE(5299)] = 201655, + [SMALL_STATE(5300)] = 201679, + [SMALL_STATE(5301)] = 201709, + [SMALL_STATE(5302)] = 201731, + [SMALL_STATE(5303)] = 201761, + [SMALL_STATE(5304)] = 201791, + [SMALL_STATE(5305)] = 201821, + [SMALL_STATE(5306)] = 201851, + [SMALL_STATE(5307)] = 201873, + [SMALL_STATE(5308)] = 201903, + [SMALL_STATE(5309)] = 201923, + [SMALL_STATE(5310)] = 201947, + [SMALL_STATE(5311)] = 201969, + [SMALL_STATE(5312)] = 201999, + [SMALL_STATE(5313)] = 202023, + [SMALL_STATE(5314)] = 202053, + [SMALL_STATE(5315)] = 202073, + [SMALL_STATE(5316)] = 202103, + [SMALL_STATE(5317)] = 202127, + [SMALL_STATE(5318)] = 202147, + [SMALL_STATE(5319)] = 202169, + [SMALL_STATE(5320)] = 202189, + [SMALL_STATE(5321)] = 202211, + [SMALL_STATE(5322)] = 202235, + [SMALL_STATE(5323)] = 202265, + [SMALL_STATE(5324)] = 202295, + [SMALL_STATE(5325)] = 202315, + [SMALL_STATE(5326)] = 202345, + [SMALL_STATE(5327)] = 202375, + [SMALL_STATE(5328)] = 202395, + [SMALL_STATE(5329)] = 202425, + [SMALL_STATE(5330)] = 202455, + [SMALL_STATE(5331)] = 202487, + [SMALL_STATE(5332)] = 202509, + [SMALL_STATE(5333)] = 202539, + [SMALL_STATE(5334)] = 202561, + [SMALL_STATE(5335)] = 202591, + [SMALL_STATE(5336)] = 202621, + [SMALL_STATE(5337)] = 202651, + [SMALL_STATE(5338)] = 202681, + [SMALL_STATE(5339)] = 202705, + [SMALL_STATE(5340)] = 202735, + [SMALL_STATE(5341)] = 202765, + [SMALL_STATE(5342)] = 202795, + [SMALL_STATE(5343)] = 202817, + [SMALL_STATE(5344)] = 202847, + [SMALL_STATE(5345)] = 202877, + [SMALL_STATE(5346)] = 202897, + [SMALL_STATE(5347)] = 202927, + [SMALL_STATE(5348)] = 202957, + [SMALL_STATE(5349)] = 202979, + [SMALL_STATE(5350)] = 202999, + [SMALL_STATE(5351)] = 203019, + [SMALL_STATE(5352)] = 203049, + [SMALL_STATE(5353)] = 203069, + [SMALL_STATE(5354)] = 203099, + [SMALL_STATE(5355)] = 203129, + [SMALL_STATE(5356)] = 203159, + [SMALL_STATE(5357)] = 203189, + [SMALL_STATE(5358)] = 203219, + [SMALL_STATE(5359)] = 203246, + [SMALL_STATE(5360)] = 203273, + [SMALL_STATE(5361)] = 203300, + [SMALL_STATE(5362)] = 203327, + [SMALL_STATE(5363)] = 203348, + [SMALL_STATE(5364)] = 203375, + [SMALL_STATE(5365)] = 203394, + [SMALL_STATE(5366)] = 203423, + [SMALL_STATE(5367)] = 203448, + [SMALL_STATE(5368)] = 203473, + [SMALL_STATE(5369)] = 203498, + [SMALL_STATE(5370)] = 203523, + [SMALL_STATE(5371)] = 203548, + [SMALL_STATE(5372)] = 203573, + [SMALL_STATE(5373)] = 203598, + [SMALL_STATE(5374)] = 203623, + [SMALL_STATE(5375)] = 203648, + [SMALL_STATE(5376)] = 203673, + [SMALL_STATE(5377)] = 203698, + [SMALL_STATE(5378)] = 203723, + [SMALL_STATE(5379)] = 203748, + [SMALL_STATE(5380)] = 203773, + [SMALL_STATE(5381)] = 203798, + [SMALL_STATE(5382)] = 203823, + [SMALL_STATE(5383)] = 203848, + [SMALL_STATE(5384)] = 203873, + [SMALL_STATE(5385)] = 203898, + [SMALL_STATE(5386)] = 203921, + [SMALL_STATE(5387)] = 203946, + [SMALL_STATE(5388)] = 203973, + [SMALL_STATE(5389)] = 204000, + [SMALL_STATE(5390)] = 204027, + [SMALL_STATE(5391)] = 204054, + [SMALL_STATE(5392)] = 204081, + [SMALL_STATE(5393)] = 204108, + [SMALL_STATE(5394)] = 204135, + [SMALL_STATE(5395)] = 204162, + [SMALL_STATE(5396)] = 204189, + [SMALL_STATE(5397)] = 204216, + [SMALL_STATE(5398)] = 204243, + [SMALL_STATE(5399)] = 204270, + [SMALL_STATE(5400)] = 204297, + [SMALL_STATE(5401)] = 204324, + [SMALL_STATE(5402)] = 204351, + [SMALL_STATE(5403)] = 204378, + [SMALL_STATE(5404)] = 204405, + [SMALL_STATE(5405)] = 204432, + [SMALL_STATE(5406)] = 204459, + [SMALL_STATE(5407)] = 204486, + [SMALL_STATE(5408)] = 204513, + [SMALL_STATE(5409)] = 204540, + [SMALL_STATE(5410)] = 204567, + [SMALL_STATE(5411)] = 204596, + [SMALL_STATE(5412)] = 204615, + [SMALL_STATE(5413)] = 204642, + [SMALL_STATE(5414)] = 204669, + [SMALL_STATE(5415)] = 204696, + [SMALL_STATE(5416)] = 204723, + [SMALL_STATE(5417)] = 204742, + [SMALL_STATE(5418)] = 204769, + [SMALL_STATE(5419)] = 204788, + [SMALL_STATE(5420)] = 204807, + [SMALL_STATE(5421)] = 204826, + [SMALL_STATE(5422)] = 204845, + [SMALL_STATE(5423)] = 204870, + [SMALL_STATE(5424)] = 204889, + [SMALL_STATE(5425)] = 204912, + [SMALL_STATE(5426)] = 204931, + [SMALL_STATE(5427)] = 204950, + [SMALL_STATE(5428)] = 204969, + [SMALL_STATE(5429)] = 204998, + [SMALL_STATE(5430)] = 205019, + [SMALL_STATE(5431)] = 205040, + [SMALL_STATE(5432)] = 205059, + [SMALL_STATE(5433)] = 205078, + [SMALL_STATE(5434)] = 205097, + [SMALL_STATE(5435)] = 205124, + [SMALL_STATE(5436)] = 205147, + [SMALL_STATE(5437)] = 205174, + [SMALL_STATE(5438)] = 205199, + [SMALL_STATE(5439)] = 205220, + [SMALL_STATE(5440)] = 205247, + [SMALL_STATE(5441)] = 205268, + [SMALL_STATE(5442)] = 205291, + [SMALL_STATE(5443)] = 205310, + [SMALL_STATE(5444)] = 205339, + [SMALL_STATE(5445)] = 205366, + [SMALL_STATE(5446)] = 205387, + [SMALL_STATE(5447)] = 205406, + [SMALL_STATE(5448)] = 205425, + [SMALL_STATE(5449)] = 205452, + [SMALL_STATE(5450)] = 205479, + [SMALL_STATE(5451)] = 205506, + [SMALL_STATE(5452)] = 205525, + [SMALL_STATE(5453)] = 205544, + [SMALL_STATE(5454)] = 205563, + [SMALL_STATE(5455)] = 205582, + [SMALL_STATE(5456)] = 205605, + [SMALL_STATE(5457)] = 205626, + [SMALL_STATE(5458)] = 205653, + [SMALL_STATE(5459)] = 205678, + [SMALL_STATE(5460)] = 205705, + [SMALL_STATE(5461)] = 205732, + [SMALL_STATE(5462)] = 205761, + [SMALL_STATE(5463)] = 205784, + [SMALL_STATE(5464)] = 205809, + [SMALL_STATE(5465)] = 205832, + [SMALL_STATE(5466)] = 205851, + [SMALL_STATE(5467)] = 205874, + [SMALL_STATE(5468)] = 205901, + [SMALL_STATE(5469)] = 205920, + [SMALL_STATE(5470)] = 205939, + [SMALL_STATE(5471)] = 205968, + [SMALL_STATE(5472)] = 205987, + [SMALL_STATE(5473)] = 206006, + [SMALL_STATE(5474)] = 206035, + [SMALL_STATE(5475)] = 206062, + [SMALL_STATE(5476)] = 206081, + [SMALL_STATE(5477)] = 206102, + [SMALL_STATE(5478)] = 206129, + [SMALL_STATE(5479)] = 206148, + [SMALL_STATE(5480)] = 206167, + [SMALL_STATE(5481)] = 206188, + [SMALL_STATE(5482)] = 206215, + [SMALL_STATE(5483)] = 206234, + [SMALL_STATE(5484)] = 206261, + [SMALL_STATE(5485)] = 206288, + [SMALL_STATE(5486)] = 206315, + [SMALL_STATE(5487)] = 206334, + [SMALL_STATE(5488)] = 206361, + [SMALL_STATE(5489)] = 206388, + [SMALL_STATE(5490)] = 206409, + [SMALL_STATE(5491)] = 206430, + [SMALL_STATE(5492)] = 206459, + [SMALL_STATE(5493)] = 206480, + [SMALL_STATE(5494)] = 206499, + [SMALL_STATE(5495)] = 206520, + [SMALL_STATE(5496)] = 206541, + [SMALL_STATE(5497)] = 206570, + [SMALL_STATE(5498)] = 206597, + [SMALL_STATE(5499)] = 206618, + [SMALL_STATE(5500)] = 206645, + [SMALL_STATE(5501)] = 206672, + [SMALL_STATE(5502)] = 206691, + [SMALL_STATE(5503)] = 206717, + [SMALL_STATE(5504)] = 206735, + [SMALL_STATE(5505)] = 206761, + [SMALL_STATE(5506)] = 206785, + [SMALL_STATE(5507)] = 206805, + [SMALL_STATE(5508)] = 206831, + [SMALL_STATE(5509)] = 206857, + [SMALL_STATE(5510)] = 206875, + [SMALL_STATE(5511)] = 206901, + [SMALL_STATE(5512)] = 206923, + [SMALL_STATE(5513)] = 206949, + [SMALL_STATE(5514)] = 206967, + [SMALL_STATE(5515)] = 206993, + [SMALL_STATE(5516)] = 207019, + [SMALL_STATE(5517)] = 207045, + [SMALL_STATE(5518)] = 207063, + [SMALL_STATE(5519)] = 207083, + [SMALL_STATE(5520)] = 207101, + [SMALL_STATE(5521)] = 207119, + [SMALL_STATE(5522)] = 207145, + [SMALL_STATE(5523)] = 207171, + [SMALL_STATE(5524)] = 207197, + [SMALL_STATE(5525)] = 207215, + [SMALL_STATE(5526)] = 207241, + [SMALL_STATE(5527)] = 207261, + [SMALL_STATE(5528)] = 207281, + [SMALL_STATE(5529)] = 207307, + [SMALL_STATE(5530)] = 207325, + [SMALL_STATE(5531)] = 207351, + [SMALL_STATE(5532)] = 207377, + [SMALL_STATE(5533)] = 207403, + [SMALL_STATE(5534)] = 207423, + [SMALL_STATE(5535)] = 207441, + [SMALL_STATE(5536)] = 207467, + [SMALL_STATE(5537)] = 207485, + [SMALL_STATE(5538)] = 207511, + [SMALL_STATE(5539)] = 207537, + [SMALL_STATE(5540)] = 207563, + [SMALL_STATE(5541)] = 207589, + [SMALL_STATE(5542)] = 207613, + [SMALL_STATE(5543)] = 207639, + [SMALL_STATE(5544)] = 207667, + [SMALL_STATE(5545)] = 207693, + [SMALL_STATE(5546)] = 207719, + [SMALL_STATE(5547)] = 207745, + [SMALL_STATE(5548)] = 207765, + [SMALL_STATE(5549)] = 207791, + [SMALL_STATE(5550)] = 207817, + [SMALL_STATE(5551)] = 207837, + [SMALL_STATE(5552)] = 207859, + [SMALL_STATE(5553)] = 207885, + [SMALL_STATE(5554)] = 207909, + [SMALL_STATE(5555)] = 207935, + [SMALL_STATE(5556)] = 207961, + [SMALL_STATE(5557)] = 207987, + [SMALL_STATE(5558)] = 208013, + [SMALL_STATE(5559)] = 208039, + [SMALL_STATE(5560)] = 208063, + [SMALL_STATE(5561)] = 208083, + [SMALL_STATE(5562)] = 208109, + [SMALL_STATE(5563)] = 208135, + [SMALL_STATE(5564)] = 208161, + [SMALL_STATE(5565)] = 208187, + [SMALL_STATE(5566)] = 208213, + [SMALL_STATE(5567)] = 208241, + [SMALL_STATE(5568)] = 208261, + [SMALL_STATE(5569)] = 208287, + [SMALL_STATE(5570)] = 208313, + [SMALL_STATE(5571)] = 208339, + [SMALL_STATE(5572)] = 208365, + [SMALL_STATE(5573)] = 208391, + [SMALL_STATE(5574)] = 208407, + [SMALL_STATE(5575)] = 208433, + [SMALL_STATE(5576)] = 208451, + [SMALL_STATE(5577)] = 208473, + [SMALL_STATE(5578)] = 208491, + [SMALL_STATE(5579)] = 208507, + [SMALL_STATE(5580)] = 208533, + [SMALL_STATE(5581)] = 208551, + [SMALL_STATE(5582)] = 208569, + [SMALL_STATE(5583)] = 208587, + [SMALL_STATE(5584)] = 208613, + [SMALL_STATE(5585)] = 208639, + [SMALL_STATE(5586)] = 208665, + [SMALL_STATE(5587)] = 208683, + [SMALL_STATE(5588)] = 208709, + [SMALL_STATE(5589)] = 208731, + [SMALL_STATE(5590)] = 208751, + [SMALL_STATE(5591)] = 208777, + [SMALL_STATE(5592)] = 208795, + [SMALL_STATE(5593)] = 208821, + [SMALL_STATE(5594)] = 208837, + [SMALL_STATE(5595)] = 208863, + [SMALL_STATE(5596)] = 208889, + [SMALL_STATE(5597)] = 208915, + [SMALL_STATE(5598)] = 208941, + [SMALL_STATE(5599)] = 208959, + [SMALL_STATE(5600)] = 208985, + [SMALL_STATE(5601)] = 209005, + [SMALL_STATE(5602)] = 209029, + [SMALL_STATE(5603)] = 209053, + [SMALL_STATE(5604)] = 209075, + [SMALL_STATE(5605)] = 209101, + [SMALL_STATE(5606)] = 209125, + [SMALL_STATE(5607)] = 209141, + [SMALL_STATE(5608)] = 209167, + [SMALL_STATE(5609)] = 209193, + [SMALL_STATE(5610)] = 209219, + [SMALL_STATE(5611)] = 209245, + [SMALL_STATE(5612)] = 209271, + [SMALL_STATE(5613)] = 209291, + [SMALL_STATE(5614)] = 209317, + [SMALL_STATE(5615)] = 209335, + [SMALL_STATE(5616)] = 209361, + [SMALL_STATE(5617)] = 209379, + [SMALL_STATE(5618)] = 209397, + [SMALL_STATE(5619)] = 209415, + [SMALL_STATE(5620)] = 209441, + [SMALL_STATE(5621)] = 209467, + [SMALL_STATE(5622)] = 209487, + [SMALL_STATE(5623)] = 209513, + [SMALL_STATE(5624)] = 209533, + [SMALL_STATE(5625)] = 209559, + [SMALL_STATE(5626)] = 209579, + [SMALL_STATE(5627)] = 209605, + [SMALL_STATE(5628)] = 209631, + [SMALL_STATE(5629)] = 209657, + [SMALL_STATE(5630)] = 209675, + [SMALL_STATE(5631)] = 209699, + [SMALL_STATE(5632)] = 209723, + [SMALL_STATE(5633)] = 209749, + [SMALL_STATE(5634)] = 209774, + [SMALL_STATE(5635)] = 209797, + [SMALL_STATE(5636)] = 209820, + [SMALL_STATE(5637)] = 209845, + [SMALL_STATE(5638)] = 209870, + [SMALL_STATE(5639)] = 209893, + [SMALL_STATE(5640)] = 209918, + [SMALL_STATE(5641)] = 209943, + [SMALL_STATE(5642)] = 209968, + [SMALL_STATE(5643)] = 209991, + [SMALL_STATE(5644)] = 210016, + [SMALL_STATE(5645)] = 210041, + [SMALL_STATE(5646)] = 210066, + [SMALL_STATE(5647)] = 210091, + [SMALL_STATE(5648)] = 210116, + [SMALL_STATE(5649)] = 210141, + [SMALL_STATE(5650)] = 210166, + [SMALL_STATE(5651)] = 210189, + [SMALL_STATE(5652)] = 210214, + [SMALL_STATE(5653)] = 210239, + [SMALL_STATE(5654)] = 210264, + [SMALL_STATE(5655)] = 210287, + [SMALL_STATE(5656)] = 210310, + [SMALL_STATE(5657)] = 210335, + [SMALL_STATE(5658)] = 210360, + [SMALL_STATE(5659)] = 210377, + [SMALL_STATE(5660)] = 210400, + [SMALL_STATE(5661)] = 210417, + [SMALL_STATE(5662)] = 210442, + [SMALL_STATE(5663)] = 210467, + [SMALL_STATE(5664)] = 210492, + [SMALL_STATE(5665)] = 210515, + [SMALL_STATE(5666)] = 210532, + [SMALL_STATE(5667)] = 210557, + [SMALL_STATE(5668)] = 210580, + [SMALL_STATE(5669)] = 210605, + [SMALL_STATE(5670)] = 210630, + [SMALL_STATE(5671)] = 210651, + [SMALL_STATE(5672)] = 210674, + [SMALL_STATE(5673)] = 210699, + [SMALL_STATE(5674)] = 210722, + [SMALL_STATE(5675)] = 210747, + [SMALL_STATE(5676)] = 210772, + [SMALL_STATE(5677)] = 210797, + [SMALL_STATE(5678)] = 210820, + [SMALL_STATE(5679)] = 210839, + [SMALL_STATE(5680)] = 210864, + [SMALL_STATE(5681)] = 210887, + [SMALL_STATE(5682)] = 210906, + [SMALL_STATE(5683)] = 210931, + [SMALL_STATE(5684)] = 210956, + [SMALL_STATE(5685)] = 210979, + [SMALL_STATE(5686)] = 211004, + [SMALL_STATE(5687)] = 211021, + [SMALL_STATE(5688)] = 211042, + [SMALL_STATE(5689)] = 211067, + [SMALL_STATE(5690)] = 211090, + [SMALL_STATE(5691)] = 211109, + [SMALL_STATE(5692)] = 211134, + [SMALL_STATE(5693)] = 211157, + [SMALL_STATE(5694)] = 211182, + [SMALL_STATE(5695)] = 211207, + [SMALL_STATE(5696)] = 211230, + [SMALL_STATE(5697)] = 211255, + [SMALL_STATE(5698)] = 211274, + [SMALL_STATE(5699)] = 211299, + [SMALL_STATE(5700)] = 211322, + [SMALL_STATE(5701)] = 211347, + [SMALL_STATE(5702)] = 211370, + [SMALL_STATE(5703)] = 211393, + [SMALL_STATE(5704)] = 211416, + [SMALL_STATE(5705)] = 211435, + [SMALL_STATE(5706)] = 211458, + [SMALL_STATE(5707)] = 211477, + [SMALL_STATE(5708)] = 211502, + [SMALL_STATE(5709)] = 211525, + [SMALL_STATE(5710)] = 211550, + [SMALL_STATE(5711)] = 211575, + [SMALL_STATE(5712)] = 211600, + [SMALL_STATE(5713)] = 211623, + [SMALL_STATE(5714)] = 211642, + [SMALL_STATE(5715)] = 211667, + [SMALL_STATE(5716)] = 211690, + [SMALL_STATE(5717)] = 211713, + [SMALL_STATE(5718)] = 211736, + [SMALL_STATE(5719)] = 211761, + [SMALL_STATE(5720)] = 211778, + [SMALL_STATE(5721)] = 211795, + [SMALL_STATE(5722)] = 211820, + [SMALL_STATE(5723)] = 211837, + [SMALL_STATE(5724)] = 211860, + [SMALL_STATE(5725)] = 211885, + [SMALL_STATE(5726)] = 211910, + [SMALL_STATE(5727)] = 211931, + [SMALL_STATE(5728)] = 211954, + [SMALL_STATE(5729)] = 211977, + [SMALL_STATE(5730)] = 212002, + [SMALL_STATE(5731)] = 212027, + [SMALL_STATE(5732)] = 212050, + [SMALL_STATE(5733)] = 212073, + [SMALL_STATE(5734)] = 212096, + [SMALL_STATE(5735)] = 212121, + [SMALL_STATE(5736)] = 212146, + [SMALL_STATE(5737)] = 212169, + [SMALL_STATE(5738)] = 212190, + [SMALL_STATE(5739)] = 212207, + [SMALL_STATE(5740)] = 212230, + [SMALL_STATE(5741)] = 212253, + [SMALL_STATE(5742)] = 212278, + [SMALL_STATE(5743)] = 212303, + [SMALL_STATE(5744)] = 212326, + [SMALL_STATE(5745)] = 212349, + [SMALL_STATE(5746)] = 212372, + [SMALL_STATE(5747)] = 212397, + [SMALL_STATE(5748)] = 212422, + [SMALL_STATE(5749)] = 212445, + [SMALL_STATE(5750)] = 212470, + [SMALL_STATE(5751)] = 212495, + [SMALL_STATE(5752)] = 212518, + [SMALL_STATE(5753)] = 212535, + [SMALL_STATE(5754)] = 212552, + [SMALL_STATE(5755)] = 212571, + [SMALL_STATE(5756)] = 212596, + [SMALL_STATE(5757)] = 212621, + [SMALL_STATE(5758)] = 212644, + [SMALL_STATE(5759)] = 212661, + [SMALL_STATE(5760)] = 212682, + [SMALL_STATE(5761)] = 212707, + [SMALL_STATE(5762)] = 212732, + [SMALL_STATE(5763)] = 212755, + [SMALL_STATE(5764)] = 212780, + [SMALL_STATE(5765)] = 212805, + [SMALL_STATE(5766)] = 212828, + [SMALL_STATE(5767)] = 212849, + [SMALL_STATE(5768)] = 212872, + [SMALL_STATE(5769)] = 212897, + [SMALL_STATE(5770)] = 212920, + [SMALL_STATE(5771)] = 212943, + [SMALL_STATE(5772)] = 212966, + [SMALL_STATE(5773)] = 212989, + [SMALL_STATE(5774)] = 213012, + [SMALL_STATE(5775)] = 213035, + [SMALL_STATE(5776)] = 213058, + [SMALL_STATE(5777)] = 213081, + [SMALL_STATE(5778)] = 213104, + [SMALL_STATE(5779)] = 213127, + [SMALL_STATE(5780)] = 213150, + [SMALL_STATE(5781)] = 213173, + [SMALL_STATE(5782)] = 213198, + [SMALL_STATE(5783)] = 213221, + [SMALL_STATE(5784)] = 213244, + [SMALL_STATE(5785)] = 213267, + [SMALL_STATE(5786)] = 213290, + [SMALL_STATE(5787)] = 213313, + [SMALL_STATE(5788)] = 213336, + [SMALL_STATE(5789)] = 213359, + [SMALL_STATE(5790)] = 213382, + [SMALL_STATE(5791)] = 213405, + [SMALL_STATE(5792)] = 213430, + [SMALL_STATE(5793)] = 213451, + [SMALL_STATE(5794)] = 213472, + [SMALL_STATE(5795)] = 213493, + [SMALL_STATE(5796)] = 213510, + [SMALL_STATE(5797)] = 213531, + [SMALL_STATE(5798)] = 213556, + [SMALL_STATE(5799)] = 213581, + [SMALL_STATE(5800)] = 213606, + [SMALL_STATE(5801)] = 213627, + [SMALL_STATE(5802)] = 213644, + [SMALL_STATE(5803)] = 213665, + [SMALL_STATE(5804)] = 213688, + [SMALL_STATE(5805)] = 213707, + [SMALL_STATE(5806)] = 213732, + [SMALL_STATE(5807)] = 213751, + [SMALL_STATE(5808)] = 213776, + [SMALL_STATE(5809)] = 213797, + [SMALL_STATE(5810)] = 213822, + [SMALL_STATE(5811)] = 213845, + [SMALL_STATE(5812)] = 213870, + [SMALL_STATE(5813)] = 213895, + [SMALL_STATE(5814)] = 213920, + [SMALL_STATE(5815)] = 213943, + [SMALL_STATE(5816)] = 213964, + [SMALL_STATE(5817)] = 213985, + [SMALL_STATE(5818)] = 214006, + [SMALL_STATE(5819)] = 214027, + [SMALL_STATE(5820)] = 214048, + [SMALL_STATE(5821)] = 214069, + [SMALL_STATE(5822)] = 214094, + [SMALL_STATE(5823)] = 214119, + [SMALL_STATE(5824)] = 214136, + [SMALL_STATE(5825)] = 214157, + [SMALL_STATE(5826)] = 214178, + [SMALL_STATE(5827)] = 214199, + [SMALL_STATE(5828)] = 214222, + [SMALL_STATE(5829)] = 214243, + [SMALL_STATE(5830)] = 214262, + [SMALL_STATE(5831)] = 214281, + [SMALL_STATE(5832)] = 214306, + [SMALL_STATE(5833)] = 214331, + [SMALL_STATE(5834)] = 214348, + [SMALL_STATE(5835)] = 214373, + [SMALL_STATE(5836)] = 214396, + [SMALL_STATE(5837)] = 214421, + [SMALL_STATE(5838)] = 214438, + [SMALL_STATE(5839)] = 214461, + [SMALL_STATE(5840)] = 214480, + [SMALL_STATE(5841)] = 214505, + [SMALL_STATE(5842)] = 214530, + [SMALL_STATE(5843)] = 214549, + [SMALL_STATE(5844)] = 214574, + [SMALL_STATE(5845)] = 214599, + [SMALL_STATE(5846)] = 214620, + [SMALL_STATE(5847)] = 214645, + [SMALL_STATE(5848)] = 214666, + [SMALL_STATE(5849)] = 214683, + [SMALL_STATE(5850)] = 214708, + [SMALL_STATE(5851)] = 214733, + [SMALL_STATE(5852)] = 214750, + [SMALL_STATE(5853)] = 214767, + [SMALL_STATE(5854)] = 214784, + [SMALL_STATE(5855)] = 214807, + [SMALL_STATE(5856)] = 214824, + [SMALL_STATE(5857)] = 214847, + [SMALL_STATE(5858)] = 214868, + [SMALL_STATE(5859)] = 214891, + [SMALL_STATE(5860)] = 214910, + [SMALL_STATE(5861)] = 214933, + [SMALL_STATE(5862)] = 214956, + [SMALL_STATE(5863)] = 214973, + [SMALL_STATE(5864)] = 214994, + [SMALL_STATE(5865)] = 215019, + [SMALL_STATE(5866)] = 215044, + [SMALL_STATE(5867)] = 215069, + [SMALL_STATE(5868)] = 215094, + [SMALL_STATE(5869)] = 215119, + [SMALL_STATE(5870)] = 215142, + [SMALL_STATE(5871)] = 215167, + [SMALL_STATE(5872)] = 215190, + [SMALL_STATE(5873)] = 215213, + [SMALL_STATE(5874)] = 215236, + [SMALL_STATE(5875)] = 215255, + [SMALL_STATE(5876)] = 215274, + [SMALL_STATE(5877)] = 215295, + [SMALL_STATE(5878)] = 215318, + [SMALL_STATE(5879)] = 215337, + [SMALL_STATE(5880)] = 215356, + [SMALL_STATE(5881)] = 215375, + [SMALL_STATE(5882)] = 215394, + [SMALL_STATE(5883)] = 215411, + [SMALL_STATE(5884)] = 215436, + [SMALL_STATE(5885)] = 215459, + [SMALL_STATE(5886)] = 215484, + [SMALL_STATE(5887)] = 215507, + [SMALL_STATE(5888)] = 215532, + [SMALL_STATE(5889)] = 215557, + [SMALL_STATE(5890)] = 215580, + [SMALL_STATE(5891)] = 215605, + [SMALL_STATE(5892)] = 215622, + [SMALL_STATE(5893)] = 215643, + [SMALL_STATE(5894)] = 215664, + [SMALL_STATE(5895)] = 215687, + [SMALL_STATE(5896)] = 215704, + [SMALL_STATE(5897)] = 215725, + [SMALL_STATE(5898)] = 215748, + [SMALL_STATE(5899)] = 215770, + [SMALL_STATE(5900)] = 215792, + [SMALL_STATE(5901)] = 215808, + [SMALL_STATE(5902)] = 215830, + [SMALL_STATE(5903)] = 215852, + [SMALL_STATE(5904)] = 215870, + [SMALL_STATE(5905)] = 215888, + [SMALL_STATE(5906)] = 215906, + [SMALL_STATE(5907)] = 215924, + [SMALL_STATE(5908)] = 215946, + [SMALL_STATE(5909)] = 215964, + [SMALL_STATE(5910)] = 215986, + [SMALL_STATE(5911)] = 216008, + [SMALL_STATE(5912)] = 216030, + [SMALL_STATE(5913)] = 216052, + [SMALL_STATE(5914)] = 216074, + [SMALL_STATE(5915)] = 216096, + [SMALL_STATE(5916)] = 216118, + [SMALL_STATE(5917)] = 216132, + [SMALL_STATE(5918)] = 216146, + [SMALL_STATE(5919)] = 216168, + [SMALL_STATE(5920)] = 216188, + [SMALL_STATE(5921)] = 216204, + [SMALL_STATE(5922)] = 216218, + [SMALL_STATE(5923)] = 216234, + [SMALL_STATE(5924)] = 216248, + [SMALL_STATE(5925)] = 216266, + [SMALL_STATE(5926)] = 216286, + [SMALL_STATE(5927)] = 216300, + [SMALL_STATE(5928)] = 216322, + [SMALL_STATE(5929)] = 216344, + [SMALL_STATE(5930)] = 216366, + [SMALL_STATE(5931)] = 216388, + [SMALL_STATE(5932)] = 216406, + [SMALL_STATE(5933)] = 216424, + [SMALL_STATE(5934)] = 216442, + [SMALL_STATE(5935)] = 216462, + [SMALL_STATE(5936)] = 216482, + [SMALL_STATE(5937)] = 216502, + [SMALL_STATE(5938)] = 216518, + [SMALL_STATE(5939)] = 216534, + [SMALL_STATE(5940)] = 216552, + [SMALL_STATE(5941)] = 216568, + [SMALL_STATE(5942)] = 216586, + [SMALL_STATE(5943)] = 216608, + [SMALL_STATE(5944)] = 216624, + [SMALL_STATE(5945)] = 216646, + [SMALL_STATE(5946)] = 216668, + [SMALL_STATE(5947)] = 216682, + [SMALL_STATE(5948)] = 216698, + [SMALL_STATE(5949)] = 216714, + [SMALL_STATE(5950)] = 216732, + [SMALL_STATE(5951)] = 216752, + [SMALL_STATE(5952)] = 216772, + [SMALL_STATE(5953)] = 216794, + [SMALL_STATE(5954)] = 216816, + [SMALL_STATE(5955)] = 216838, + [SMALL_STATE(5956)] = 216860, + [SMALL_STATE(5957)] = 216882, + [SMALL_STATE(5958)] = 216904, + [SMALL_STATE(5959)] = 216922, + [SMALL_STATE(5960)] = 216944, + [SMALL_STATE(5961)] = 216966, + [SMALL_STATE(5962)] = 216982, + [SMALL_STATE(5963)] = 217000, + [SMALL_STATE(5964)] = 217020, + [SMALL_STATE(5965)] = 217042, + [SMALL_STATE(5966)] = 217064, + [SMALL_STATE(5967)] = 217086, + [SMALL_STATE(5968)] = 217108, + [SMALL_STATE(5969)] = 217130, + [SMALL_STATE(5970)] = 217152, + [SMALL_STATE(5971)] = 217172, + [SMALL_STATE(5972)] = 217194, + [SMALL_STATE(5973)] = 217216, + [SMALL_STATE(5974)] = 217238, + [SMALL_STATE(5975)] = 217256, + [SMALL_STATE(5976)] = 217278, + [SMALL_STATE(5977)] = 217300, + [SMALL_STATE(5978)] = 217320, + [SMALL_STATE(5979)] = 217336, + [SMALL_STATE(5980)] = 217358, + [SMALL_STATE(5981)] = 217380, + [SMALL_STATE(5982)] = 217402, + [SMALL_STATE(5983)] = 217424, + [SMALL_STATE(5984)] = 217446, + [SMALL_STATE(5985)] = 217468, + [SMALL_STATE(5986)] = 217490, + [SMALL_STATE(5987)] = 217512, + [SMALL_STATE(5988)] = 217534, + [SMALL_STATE(5989)] = 217550, + [SMALL_STATE(5990)] = 217566, + [SMALL_STATE(5991)] = 217588, + [SMALL_STATE(5992)] = 217610, + [SMALL_STATE(5993)] = 217628, + [SMALL_STATE(5994)] = 217650, + [SMALL_STATE(5995)] = 217672, + [SMALL_STATE(5996)] = 217692, + [SMALL_STATE(5997)] = 217714, + [SMALL_STATE(5998)] = 217732, + [SMALL_STATE(5999)] = 217754, + [SMALL_STATE(6000)] = 217776, + [SMALL_STATE(6001)] = 217798, + [SMALL_STATE(6002)] = 217820, + [SMALL_STATE(6003)] = 217842, + [SMALL_STATE(6004)] = 217864, + [SMALL_STATE(6005)] = 217880, + [SMALL_STATE(6006)] = 217902, + [SMALL_STATE(6007)] = 217924, + [SMALL_STATE(6008)] = 217946, + [SMALL_STATE(6009)] = 217962, + [SMALL_STATE(6010)] = 217978, + [SMALL_STATE(6011)] = 218000, + [SMALL_STATE(6012)] = 218022, + [SMALL_STATE(6013)] = 218044, + [SMALL_STATE(6014)] = 218064, + [SMALL_STATE(6015)] = 218082, + [SMALL_STATE(6016)] = 218098, + [SMALL_STATE(6017)] = 218120, + [SMALL_STATE(6018)] = 218142, + [SMALL_STATE(6019)] = 218164, + [SMALL_STATE(6020)] = 218180, + [SMALL_STATE(6021)] = 218202, + [SMALL_STATE(6022)] = 218224, + [SMALL_STATE(6023)] = 218246, + [SMALL_STATE(6024)] = 218268, + [SMALL_STATE(6025)] = 218286, + [SMALL_STATE(6026)] = 218308, + [SMALL_STATE(6027)] = 218330, + [SMALL_STATE(6028)] = 218348, + [SMALL_STATE(6029)] = 218366, + [SMALL_STATE(6030)] = 218388, + [SMALL_STATE(6031)] = 218408, + [SMALL_STATE(6032)] = 218426, + [SMALL_STATE(6033)] = 218446, + [SMALL_STATE(6034)] = 218464, + [SMALL_STATE(6035)] = 218486, + [SMALL_STATE(6036)] = 218508, + [SMALL_STATE(6037)] = 218528, + [SMALL_STATE(6038)] = 218546, + [SMALL_STATE(6039)] = 218568, + [SMALL_STATE(6040)] = 218590, + [SMALL_STATE(6041)] = 218610, + [SMALL_STATE(6042)] = 218628, + [SMALL_STATE(6043)] = 218650, + [SMALL_STATE(6044)] = 218672, + [SMALL_STATE(6045)] = 218694, + [SMALL_STATE(6046)] = 218716, + [SMALL_STATE(6047)] = 218738, + [SMALL_STATE(6048)] = 218760, + [SMALL_STATE(6049)] = 218782, + [SMALL_STATE(6050)] = 218804, + [SMALL_STATE(6051)] = 218826, + [SMALL_STATE(6052)] = 218848, + [SMALL_STATE(6053)] = 218870, + [SMALL_STATE(6054)] = 218892, + [SMALL_STATE(6055)] = 218914, + [SMALL_STATE(6056)] = 218936, + [SMALL_STATE(6057)] = 218958, + [SMALL_STATE(6058)] = 218980, + [SMALL_STATE(6059)] = 219002, + [SMALL_STATE(6060)] = 219022, + [SMALL_STATE(6061)] = 219044, + [SMALL_STATE(6062)] = 219066, + [SMALL_STATE(6063)] = 219088, + [SMALL_STATE(6064)] = 219110, + [SMALL_STATE(6065)] = 219132, + [SMALL_STATE(6066)] = 219154, + [SMALL_STATE(6067)] = 219176, + [SMALL_STATE(6068)] = 219198, + [SMALL_STATE(6069)] = 219220, + [SMALL_STATE(6070)] = 219242, + [SMALL_STATE(6071)] = 219264, + [SMALL_STATE(6072)] = 219286, + [SMALL_STATE(6073)] = 219308, + [SMALL_STATE(6074)] = 219330, + [SMALL_STATE(6075)] = 219352, + [SMALL_STATE(6076)] = 219374, + [SMALL_STATE(6077)] = 219396, + [SMALL_STATE(6078)] = 219418, + [SMALL_STATE(6079)] = 219440, + [SMALL_STATE(6080)] = 219462, + [SMALL_STATE(6081)] = 219484, + [SMALL_STATE(6082)] = 219502, + [SMALL_STATE(6083)] = 219522, + [SMALL_STATE(6084)] = 219540, + [SMALL_STATE(6085)] = 219560, + [SMALL_STATE(6086)] = 219580, + [SMALL_STATE(6087)] = 219598, + [SMALL_STATE(6088)] = 219616, + [SMALL_STATE(6089)] = 219634, + [SMALL_STATE(6090)] = 219652, + [SMALL_STATE(6091)] = 219670, + [SMALL_STATE(6092)] = 219688, + [SMALL_STATE(6093)] = 219710, + [SMALL_STATE(6094)] = 219732, + [SMALL_STATE(6095)] = 219750, + [SMALL_STATE(6096)] = 219772, + [SMALL_STATE(6097)] = 219785, + [SMALL_STATE(6098)] = 219802, + [SMALL_STATE(6099)] = 219817, + [SMALL_STATE(6100)] = 219836, + [SMALL_STATE(6101)] = 219849, + [SMALL_STATE(6102)] = 219868, + [SMALL_STATE(6103)] = 219887, + [SMALL_STATE(6104)] = 219906, + [SMALL_STATE(6105)] = 219925, + [SMALL_STATE(6106)] = 219944, + [SMALL_STATE(6107)] = 219963, + [SMALL_STATE(6108)] = 219982, + [SMALL_STATE(6109)] = 219995, + [SMALL_STATE(6110)] = 220014, + [SMALL_STATE(6111)] = 220033, + [SMALL_STATE(6112)] = 220046, + [SMALL_STATE(6113)] = 220061, + [SMALL_STATE(6114)] = 220074, + [SMALL_STATE(6115)] = 220091, + [SMALL_STATE(6116)] = 220110, + [SMALL_STATE(6117)] = 220123, + [SMALL_STATE(6118)] = 220136, + [SMALL_STATE(6119)] = 220155, + [SMALL_STATE(6120)] = 220170, + [SMALL_STATE(6121)] = 220187, + [SMALL_STATE(6122)] = 220200, + [SMALL_STATE(6123)] = 220213, + [SMALL_STATE(6124)] = 220226, + [SMALL_STATE(6125)] = 220245, + [SMALL_STATE(6126)] = 220258, + [SMALL_STATE(6127)] = 220273, + [SMALL_STATE(6128)] = 220292, + [SMALL_STATE(6129)] = 220309, + [SMALL_STATE(6130)] = 220324, + [SMALL_STATE(6131)] = 220341, + [SMALL_STATE(6132)] = 220358, + [SMALL_STATE(6133)] = 220377, + [SMALL_STATE(6134)] = 220394, + [SMALL_STATE(6135)] = 220407, + [SMALL_STATE(6136)] = 220420, + [SMALL_STATE(6137)] = 220435, + [SMALL_STATE(6138)] = 220448, + [SMALL_STATE(6139)] = 220461, + [SMALL_STATE(6140)] = 220480, + [SMALL_STATE(6141)] = 220499, + [SMALL_STATE(6142)] = 220518, + [SMALL_STATE(6143)] = 220537, + [SMALL_STATE(6144)] = 220556, + [SMALL_STATE(6145)] = 220575, + [SMALL_STATE(6146)] = 220594, + [SMALL_STATE(6147)] = 220613, + [SMALL_STATE(6148)] = 220626, + [SMALL_STATE(6149)] = 220643, + [SMALL_STATE(6150)] = 220660, + [SMALL_STATE(6151)] = 220673, + [SMALL_STATE(6152)] = 220686, + [SMALL_STATE(6153)] = 220703, + [SMALL_STATE(6154)] = 220722, + [SMALL_STATE(6155)] = 220735, + [SMALL_STATE(6156)] = 220748, + [SMALL_STATE(6157)] = 220761, + [SMALL_STATE(6158)] = 220780, + [SMALL_STATE(6159)] = 220799, + [SMALL_STATE(6160)] = 220818, + [SMALL_STATE(6161)] = 220837, + [SMALL_STATE(6162)] = 220856, + [SMALL_STATE(6163)] = 220875, + [SMALL_STATE(6164)] = 220894, + [SMALL_STATE(6165)] = 220913, + [SMALL_STATE(6166)] = 220926, + [SMALL_STATE(6167)] = 220939, + [SMALL_STATE(6168)] = 220952, + [SMALL_STATE(6169)] = 220969, + [SMALL_STATE(6170)] = 220986, + [SMALL_STATE(6171)] = 220999, + [SMALL_STATE(6172)] = 221018, + [SMALL_STATE(6173)] = 221035, + [SMALL_STATE(6174)] = 221054, + [SMALL_STATE(6175)] = 221071, + [SMALL_STATE(6176)] = 221084, + [SMALL_STATE(6177)] = 221099, + [SMALL_STATE(6178)] = 221118, + [SMALL_STATE(6179)] = 221137, + [SMALL_STATE(6180)] = 221156, + [SMALL_STATE(6181)] = 221175, + [SMALL_STATE(6182)] = 221194, + [SMALL_STATE(6183)] = 221213, + [SMALL_STATE(6184)] = 221232, + [SMALL_STATE(6185)] = 221251, + [SMALL_STATE(6186)] = 221270, + [SMALL_STATE(6187)] = 221289, + [SMALL_STATE(6188)] = 221302, + [SMALL_STATE(6189)] = 221315, + [SMALL_STATE(6190)] = 221328, + [SMALL_STATE(6191)] = 221345, + [SMALL_STATE(6192)] = 221364, + [SMALL_STATE(6193)] = 221381, + [SMALL_STATE(6194)] = 221396, + [SMALL_STATE(6195)] = 221413, + [SMALL_STATE(6196)] = 221430, + [SMALL_STATE(6197)] = 221449, + [SMALL_STATE(6198)] = 221466, + [SMALL_STATE(6199)] = 221485, + [SMALL_STATE(6200)] = 221498, + [SMALL_STATE(6201)] = 221511, + [SMALL_STATE(6202)] = 221530, + [SMALL_STATE(6203)] = 221543, + [SMALL_STATE(6204)] = 221562, + [SMALL_STATE(6205)] = 221581, + [SMALL_STATE(6206)] = 221600, + [SMALL_STATE(6207)] = 221619, + [SMALL_STATE(6208)] = 221638, + [SMALL_STATE(6209)] = 221657, + [SMALL_STATE(6210)] = 221676, + [SMALL_STATE(6211)] = 221695, + [SMALL_STATE(6212)] = 221712, + [SMALL_STATE(6213)] = 221725, + [SMALL_STATE(6214)] = 221738, + [SMALL_STATE(6215)] = 221757, + [SMALL_STATE(6216)] = 221774, + [SMALL_STATE(6217)] = 221793, + [SMALL_STATE(6218)] = 221812, + [SMALL_STATE(6219)] = 221829, + [SMALL_STATE(6220)] = 221848, + [SMALL_STATE(6221)] = 221867, + [SMALL_STATE(6222)] = 221886, + [SMALL_STATE(6223)] = 221905, + [SMALL_STATE(6224)] = 221924, + [SMALL_STATE(6225)] = 221943, + [SMALL_STATE(6226)] = 221962, + [SMALL_STATE(6227)] = 221981, + [SMALL_STATE(6228)] = 222000, + [SMALL_STATE(6229)] = 222019, + [SMALL_STATE(6230)] = 222036, + [SMALL_STATE(6231)] = 222049, + [SMALL_STATE(6232)] = 222066, + [SMALL_STATE(6233)] = 222085, + [SMALL_STATE(6234)] = 222100, + [SMALL_STATE(6235)] = 222115, + [SMALL_STATE(6236)] = 222130, + [SMALL_STATE(6237)] = 222147, + [SMALL_STATE(6238)] = 222166, + [SMALL_STATE(6239)] = 222183, + [SMALL_STATE(6240)] = 222200, + [SMALL_STATE(6241)] = 222215, + [SMALL_STATE(6242)] = 222228, + [SMALL_STATE(6243)] = 222247, + [SMALL_STATE(6244)] = 222260, + [SMALL_STATE(6245)] = 222279, + [SMALL_STATE(6246)] = 222298, + [SMALL_STATE(6247)] = 222317, + [SMALL_STATE(6248)] = 222336, + [SMALL_STATE(6249)] = 222355, + [SMALL_STATE(6250)] = 222374, + [SMALL_STATE(6251)] = 222393, + [SMALL_STATE(6252)] = 222412, + [SMALL_STATE(6253)] = 222425, + [SMALL_STATE(6254)] = 222438, + [SMALL_STATE(6255)] = 222451, + [SMALL_STATE(6256)] = 222468, + [SMALL_STATE(6257)] = 222487, + [SMALL_STATE(6258)] = 222500, + [SMALL_STATE(6259)] = 222517, + [SMALL_STATE(6260)] = 222536, + [SMALL_STATE(6261)] = 222549, + [SMALL_STATE(6262)] = 222562, + [SMALL_STATE(6263)] = 222581, + [SMALL_STATE(6264)] = 222600, + [SMALL_STATE(6265)] = 222619, + [SMALL_STATE(6266)] = 222638, + [SMALL_STATE(6267)] = 222657, + [SMALL_STATE(6268)] = 222676, + [SMALL_STATE(6269)] = 222695, + [SMALL_STATE(6270)] = 222714, + [SMALL_STATE(6271)] = 222729, + [SMALL_STATE(6272)] = 222748, + [SMALL_STATE(6273)] = 222761, + [SMALL_STATE(6274)] = 222774, + [SMALL_STATE(6275)] = 222791, + [SMALL_STATE(6276)] = 222806, + [SMALL_STATE(6277)] = 222823, + [SMALL_STATE(6278)] = 222838, + [SMALL_STATE(6279)] = 222853, + [SMALL_STATE(6280)] = 222872, + [SMALL_STATE(6281)] = 222891, + [SMALL_STATE(6282)] = 222910, + [SMALL_STATE(6283)] = 222929, + [SMALL_STATE(6284)] = 222948, + [SMALL_STATE(6285)] = 222967, + [SMALL_STATE(6286)] = 222986, + [SMALL_STATE(6287)] = 223005, + [SMALL_STATE(6288)] = 223024, + [SMALL_STATE(6289)] = 223043, + [SMALL_STATE(6290)] = 223062, + [SMALL_STATE(6291)] = 223075, + [SMALL_STATE(6292)] = 223090, + [SMALL_STATE(6293)] = 223107, + [SMALL_STATE(6294)] = 223126, + [SMALL_STATE(6295)] = 223139, + [SMALL_STATE(6296)] = 223156, + [SMALL_STATE(6297)] = 223171, + [SMALL_STATE(6298)] = 223186, + [SMALL_STATE(6299)] = 223205, + [SMALL_STATE(6300)] = 223224, + [SMALL_STATE(6301)] = 223243, + [SMALL_STATE(6302)] = 223262, + [SMALL_STATE(6303)] = 223281, + [SMALL_STATE(6304)] = 223300, + [SMALL_STATE(6305)] = 223319, + [SMALL_STATE(6306)] = 223338, + [SMALL_STATE(6307)] = 223357, + [SMALL_STATE(6308)] = 223370, + [SMALL_STATE(6309)] = 223383, + [SMALL_STATE(6310)] = 223396, + [SMALL_STATE(6311)] = 223413, + [SMALL_STATE(6312)] = 223428, + [SMALL_STATE(6313)] = 223441, + [SMALL_STATE(6314)] = 223458, + [SMALL_STATE(6315)] = 223471, + [SMALL_STATE(6316)] = 223484, + [SMALL_STATE(6317)] = 223497, + [SMALL_STATE(6318)] = 223516, + [SMALL_STATE(6319)] = 223535, + [SMALL_STATE(6320)] = 223554, + [SMALL_STATE(6321)] = 223573, + [SMALL_STATE(6322)] = 223592, + [SMALL_STATE(6323)] = 223611, + [SMALL_STATE(6324)] = 223630, + [SMALL_STATE(6325)] = 223649, + [SMALL_STATE(6326)] = 223662, + [SMALL_STATE(6327)] = 223675, + [SMALL_STATE(6328)] = 223688, + [SMALL_STATE(6329)] = 223701, + [SMALL_STATE(6330)] = 223718, + [SMALL_STATE(6331)] = 223731, + [SMALL_STATE(6332)] = 223744, + [SMALL_STATE(6333)] = 223761, + [SMALL_STATE(6334)] = 223774, + [SMALL_STATE(6335)] = 223787, + [SMALL_STATE(6336)] = 223800, + [SMALL_STATE(6337)] = 223819, + [SMALL_STATE(6338)] = 223838, + [SMALL_STATE(6339)] = 223857, + [SMALL_STATE(6340)] = 223876, + [SMALL_STATE(6341)] = 223895, + [SMALL_STATE(6342)] = 223914, + [SMALL_STATE(6343)] = 223933, + [SMALL_STATE(6344)] = 223952, + [SMALL_STATE(6345)] = 223965, + [SMALL_STATE(6346)] = 223978, + [SMALL_STATE(6347)] = 223995, + [SMALL_STATE(6348)] = 224012, + [SMALL_STATE(6349)] = 224025, + [SMALL_STATE(6350)] = 224042, + [SMALL_STATE(6351)] = 224057, + [SMALL_STATE(6352)] = 224070, + [SMALL_STATE(6353)] = 224083, + [SMALL_STATE(6354)] = 224102, + [SMALL_STATE(6355)] = 224121, + [SMALL_STATE(6356)] = 224140, + [SMALL_STATE(6357)] = 224159, + [SMALL_STATE(6358)] = 224178, + [SMALL_STATE(6359)] = 224197, + [SMALL_STATE(6360)] = 224216, + [SMALL_STATE(6361)] = 224235, + [SMALL_STATE(6362)] = 224252, + [SMALL_STATE(6363)] = 224265, + [SMALL_STATE(6364)] = 224278, + [SMALL_STATE(6365)] = 224295, + [SMALL_STATE(6366)] = 224308, + [SMALL_STATE(6367)] = 224325, + [SMALL_STATE(6368)] = 224342, + [SMALL_STATE(6369)] = 224357, + [SMALL_STATE(6370)] = 224376, + [SMALL_STATE(6371)] = 224395, + [SMALL_STATE(6372)] = 224414, + [SMALL_STATE(6373)] = 224433, + [SMALL_STATE(6374)] = 224452, + [SMALL_STATE(6375)] = 224471, + [SMALL_STATE(6376)] = 224490, + [SMALL_STATE(6377)] = 224509, + [SMALL_STATE(6378)] = 224522, + [SMALL_STATE(6379)] = 224535, + [SMALL_STATE(6380)] = 224548, + [SMALL_STATE(6381)] = 224565, + [SMALL_STATE(6382)] = 224584, + [SMALL_STATE(6383)] = 224601, + [SMALL_STATE(6384)] = 224620, + [SMALL_STATE(6385)] = 224639, + [SMALL_STATE(6386)] = 224658, + [SMALL_STATE(6387)] = 224677, + [SMALL_STATE(6388)] = 224696, + [SMALL_STATE(6389)] = 224715, + [SMALL_STATE(6390)] = 224734, + [SMALL_STATE(6391)] = 224753, + [SMALL_STATE(6392)] = 224766, + [SMALL_STATE(6393)] = 224783, + [SMALL_STATE(6394)] = 224800, + [SMALL_STATE(6395)] = 224819, + [SMALL_STATE(6396)] = 224838, + [SMALL_STATE(6397)] = 224857, + [SMALL_STATE(6398)] = 224876, + [SMALL_STATE(6399)] = 224895, + [SMALL_STATE(6400)] = 224914, + [SMALL_STATE(6401)] = 224933, + [SMALL_STATE(6402)] = 224952, + [SMALL_STATE(6403)] = 224971, + [SMALL_STATE(6404)] = 224984, + [SMALL_STATE(6405)] = 225001, + [SMALL_STATE(6406)] = 225018, + [SMALL_STATE(6407)] = 225037, + [SMALL_STATE(6408)] = 225056, + [SMALL_STATE(6409)] = 225075, + [SMALL_STATE(6410)] = 225094, + [SMALL_STATE(6411)] = 225113, + [SMALL_STATE(6412)] = 225132, + [SMALL_STATE(6413)] = 225151, + [SMALL_STATE(6414)] = 225170, + [SMALL_STATE(6415)] = 225189, + [SMALL_STATE(6416)] = 225208, + [SMALL_STATE(6417)] = 225221, + [SMALL_STATE(6418)] = 225238, + [SMALL_STATE(6419)] = 225255, + [SMALL_STATE(6420)] = 225274, + [SMALL_STATE(6421)] = 225293, + [SMALL_STATE(6422)] = 225312, + [SMALL_STATE(6423)] = 225331, + [SMALL_STATE(6424)] = 225350, + [SMALL_STATE(6425)] = 225369, + [SMALL_STATE(6426)] = 225388, + [SMALL_STATE(6427)] = 225407, + [SMALL_STATE(6428)] = 225426, + [SMALL_STATE(6429)] = 225443, + [SMALL_STATE(6430)] = 225456, + [SMALL_STATE(6431)] = 225473, + [SMALL_STATE(6432)] = 225490, + [SMALL_STATE(6433)] = 225503, + [SMALL_STATE(6434)] = 225520, + [SMALL_STATE(6435)] = 225537, + [SMALL_STATE(6436)] = 225550, + [SMALL_STATE(6437)] = 225567, + [SMALL_STATE(6438)] = 225584, + [SMALL_STATE(6439)] = 225597, + [SMALL_STATE(6440)] = 225614, + [SMALL_STATE(6441)] = 225631, + [SMALL_STATE(6442)] = 225644, + [SMALL_STATE(6443)] = 225661, + [SMALL_STATE(6444)] = 225678, + [SMALL_STATE(6445)] = 225691, + [SMALL_STATE(6446)] = 225708, + [SMALL_STATE(6447)] = 225725, + [SMALL_STATE(6448)] = 225738, + [SMALL_STATE(6449)] = 225755, + [SMALL_STATE(6450)] = 225772, + [SMALL_STATE(6451)] = 225785, + [SMALL_STATE(6452)] = 225802, + [SMALL_STATE(6453)] = 225819, + [SMALL_STATE(6454)] = 225836, + [SMALL_STATE(6455)] = 225849, + [SMALL_STATE(6456)] = 225866, + [SMALL_STATE(6457)] = 225883, + [SMALL_STATE(6458)] = 225902, + [SMALL_STATE(6459)] = 225915, + [SMALL_STATE(6460)] = 225932, + [SMALL_STATE(6461)] = 225949, + [SMALL_STATE(6462)] = 225962, + [SMALL_STATE(6463)] = 225979, + [SMALL_STATE(6464)] = 225996, + [SMALL_STATE(6465)] = 226009, + [SMALL_STATE(6466)] = 226022, + [SMALL_STATE(6467)] = 226039, + [SMALL_STATE(6468)] = 226056, + [SMALL_STATE(6469)] = 226069, + [SMALL_STATE(6470)] = 226086, + [SMALL_STATE(6471)] = 226103, + [SMALL_STATE(6472)] = 226116, + [SMALL_STATE(6473)] = 226133, + [SMALL_STATE(6474)] = 226150, + [SMALL_STATE(6475)] = 226163, + [SMALL_STATE(6476)] = 226180, + [SMALL_STATE(6477)] = 226197, + [SMALL_STATE(6478)] = 226210, + [SMALL_STATE(6479)] = 226223, + [SMALL_STATE(6480)] = 226240, + [SMALL_STATE(6481)] = 226257, + [SMALL_STATE(6482)] = 226270, + [SMALL_STATE(6483)] = 226287, + [SMALL_STATE(6484)] = 226304, + [SMALL_STATE(6485)] = 226317, + [SMALL_STATE(6486)] = 226334, + [SMALL_STATE(6487)] = 226351, + [SMALL_STATE(6488)] = 226370, + [SMALL_STATE(6489)] = 226383, + [SMALL_STATE(6490)] = 226400, + [SMALL_STATE(6491)] = 226417, + [SMALL_STATE(6492)] = 226432, + [SMALL_STATE(6493)] = 226445, + [SMALL_STATE(6494)] = 226462, + [SMALL_STATE(6495)] = 226479, + [SMALL_STATE(6496)] = 226492, + [SMALL_STATE(6497)] = 226509, + [SMALL_STATE(6498)] = 226526, + [SMALL_STATE(6499)] = 226539, + [SMALL_STATE(6500)] = 226556, + [SMALL_STATE(6501)] = 226573, + [SMALL_STATE(6502)] = 226586, + [SMALL_STATE(6503)] = 226603, + [SMALL_STATE(6504)] = 226620, + [SMALL_STATE(6505)] = 226633, + [SMALL_STATE(6506)] = 226650, + [SMALL_STATE(6507)] = 226667, + [SMALL_STATE(6508)] = 226680, + [SMALL_STATE(6509)] = 226697, + [SMALL_STATE(6510)] = 226714, + [SMALL_STATE(6511)] = 226731, + [SMALL_STATE(6512)] = 226748, + [SMALL_STATE(6513)] = 226765, + [SMALL_STATE(6514)] = 226782, + [SMALL_STATE(6515)] = 226799, + [SMALL_STATE(6516)] = 226816, + [SMALL_STATE(6517)] = 226833, + [SMALL_STATE(6518)] = 226850, + [SMALL_STATE(6519)] = 226867, + [SMALL_STATE(6520)] = 226884, + [SMALL_STATE(6521)] = 226897, + [SMALL_STATE(6522)] = 226910, + [SMALL_STATE(6523)] = 226923, + [SMALL_STATE(6524)] = 226942, + [SMALL_STATE(6525)] = 226955, + [SMALL_STATE(6526)] = 226972, + [SMALL_STATE(6527)] = 226991, + [SMALL_STATE(6528)] = 227004, + [SMALL_STATE(6529)] = 227017, + [SMALL_STATE(6530)] = 227032, + [SMALL_STATE(6531)] = 227045, + [SMALL_STATE(6532)] = 227060, + [SMALL_STATE(6533)] = 227079, + [SMALL_STATE(6534)] = 227098, + [SMALL_STATE(6535)] = 227113, + [SMALL_STATE(6536)] = 227132, + [SMALL_STATE(6537)] = 227147, + [SMALL_STATE(6538)] = 227164, + [SMALL_STATE(6539)] = 227179, + [SMALL_STATE(6540)] = 227194, + [SMALL_STATE(6541)] = 227209, + [SMALL_STATE(6542)] = 227224, + [SMALL_STATE(6543)] = 227241, + [SMALL_STATE(6544)] = 227256, + [SMALL_STATE(6545)] = 227271, + [SMALL_STATE(6546)] = 227288, + [SMALL_STATE(6547)] = 227305, + [SMALL_STATE(6548)] = 227318, + [SMALL_STATE(6549)] = 227333, + [SMALL_STATE(6550)] = 227352, + [SMALL_STATE(6551)] = 227365, + [SMALL_STATE(6552)] = 227378, + [SMALL_STATE(6553)] = 227391, + [SMALL_STATE(6554)] = 227404, + [SMALL_STATE(6555)] = 227417, + [SMALL_STATE(6556)] = 227430, + [SMALL_STATE(6557)] = 227449, + [SMALL_STATE(6558)] = 227462, + [SMALL_STATE(6559)] = 227475, + [SMALL_STATE(6560)] = 227494, + [SMALL_STATE(6561)] = 227511, + [SMALL_STATE(6562)] = 227530, + [SMALL_STATE(6563)] = 227545, + [SMALL_STATE(6564)] = 227558, + [SMALL_STATE(6565)] = 227577, + [SMALL_STATE(6566)] = 227592, + [SMALL_STATE(6567)] = 227611, + [SMALL_STATE(6568)] = 227628, + [SMALL_STATE(6569)] = 227645, + [SMALL_STATE(6570)] = 227662, + [SMALL_STATE(6571)] = 227681, + [SMALL_STATE(6572)] = 227696, + [SMALL_STATE(6573)] = 227715, + [SMALL_STATE(6574)] = 227734, + [SMALL_STATE(6575)] = 227751, + [SMALL_STATE(6576)] = 227768, + [SMALL_STATE(6577)] = 227787, + [SMALL_STATE(6578)] = 227806, + [SMALL_STATE(6579)] = 227825, + [SMALL_STATE(6580)] = 227844, + [SMALL_STATE(6581)] = 227863, + [SMALL_STATE(6582)] = 227882, + [SMALL_STATE(6583)] = 227901, + [SMALL_STATE(6584)] = 227920, + [SMALL_STATE(6585)] = 227933, + [SMALL_STATE(6586)] = 227946, + [SMALL_STATE(6587)] = 227965, + [SMALL_STATE(6588)] = 227984, + [SMALL_STATE(6589)] = 228001, + [SMALL_STATE(6590)] = 228020, + [SMALL_STATE(6591)] = 228039, + [SMALL_STATE(6592)] = 228058, + [SMALL_STATE(6593)] = 228073, + [SMALL_STATE(6594)] = 228090, + [SMALL_STATE(6595)] = 228109, + [SMALL_STATE(6596)] = 228126, + [SMALL_STATE(6597)] = 228143, + [SMALL_STATE(6598)] = 228160, + [SMALL_STATE(6599)] = 228175, + [SMALL_STATE(6600)] = 228192, + [SMALL_STATE(6601)] = 228207, + [SMALL_STATE(6602)] = 228222, + [SMALL_STATE(6603)] = 228235, + [SMALL_STATE(6604)] = 228248, + [SMALL_STATE(6605)] = 228267, + [SMALL_STATE(6606)] = 228286, + [SMALL_STATE(6607)] = 228301, + [SMALL_STATE(6608)] = 228320, + [SMALL_STATE(6609)] = 228333, + [SMALL_STATE(6610)] = 228348, + [SMALL_STATE(6611)] = 228361, + [SMALL_STATE(6612)] = 228374, + [SMALL_STATE(6613)] = 228393, + [SMALL_STATE(6614)] = 228412, + [SMALL_STATE(6615)] = 228431, + [SMALL_STATE(6616)] = 228444, + [SMALL_STATE(6617)] = 228461, + [SMALL_STATE(6618)] = 228478, + [SMALL_STATE(6619)] = 228491, + [SMALL_STATE(6620)] = 228504, + [SMALL_STATE(6621)] = 228519, + [SMALL_STATE(6622)] = 228532, + [SMALL_STATE(6623)] = 228545, + [SMALL_STATE(6624)] = 228558, + [SMALL_STATE(6625)] = 228571, + [SMALL_STATE(6626)] = 228584, + [SMALL_STATE(6627)] = 228603, + [SMALL_STATE(6628)] = 228618, + [SMALL_STATE(6629)] = 228631, + [SMALL_STATE(6630)] = 228644, + [SMALL_STATE(6631)] = 228657, + [SMALL_STATE(6632)] = 228676, + [SMALL_STATE(6633)] = 228691, + [SMALL_STATE(6634)] = 228704, + [SMALL_STATE(6635)] = 228721, + [SMALL_STATE(6636)] = 228738, + [SMALL_STATE(6637)] = 228751, + [SMALL_STATE(6638)] = 228770, + [SMALL_STATE(6639)] = 228789, + [SMALL_STATE(6640)] = 228806, + [SMALL_STATE(6641)] = 228825, + [SMALL_STATE(6642)] = 228840, + [SMALL_STATE(6643)] = 228859, + [SMALL_STATE(6644)] = 228876, + [SMALL_STATE(6645)] = 228893, + [SMALL_STATE(6646)] = 228912, + [SMALL_STATE(6647)] = 228925, + [SMALL_STATE(6648)] = 228944, + [SMALL_STATE(6649)] = 228963, + [SMALL_STATE(6650)] = 228980, + [SMALL_STATE(6651)] = 228999, + [SMALL_STATE(6652)] = 229014, + [SMALL_STATE(6653)] = 229033, + [SMALL_STATE(6654)] = 229052, + [SMALL_STATE(6655)] = 229067, + [SMALL_STATE(6656)] = 229084, + [SMALL_STATE(6657)] = 229101, + [SMALL_STATE(6658)] = 229120, + [SMALL_STATE(6659)] = 229139, + [SMALL_STATE(6660)] = 229154, + [SMALL_STATE(6661)] = 229167, + [SMALL_STATE(6662)] = 229186, + [SMALL_STATE(6663)] = 229205, + [SMALL_STATE(6664)] = 229219, + [SMALL_STATE(6665)] = 229235, + [SMALL_STATE(6666)] = 229251, + [SMALL_STATE(6667)] = 229267, + [SMALL_STATE(6668)] = 229283, + [SMALL_STATE(6669)] = 229299, + [SMALL_STATE(6670)] = 229315, + [SMALL_STATE(6671)] = 229331, + [SMALL_STATE(6672)] = 229347, + [SMALL_STATE(6673)] = 229359, + [SMALL_STATE(6674)] = 229375, + [SMALL_STATE(6675)] = 229391, + [SMALL_STATE(6676)] = 229405, + [SMALL_STATE(6677)] = 229417, + [SMALL_STATE(6678)] = 229433, + [SMALL_STATE(6679)] = 229449, + [SMALL_STATE(6680)] = 229465, + [SMALL_STATE(6681)] = 229477, + [SMALL_STATE(6682)] = 229493, + [SMALL_STATE(6683)] = 229509, + [SMALL_STATE(6684)] = 229523, + [SMALL_STATE(6685)] = 229539, + [SMALL_STATE(6686)] = 229555, + [SMALL_STATE(6687)] = 229571, + [SMALL_STATE(6688)] = 229587, + [SMALL_STATE(6689)] = 229603, + [SMALL_STATE(6690)] = 229619, + [SMALL_STATE(6691)] = 229633, + [SMALL_STATE(6692)] = 229649, + [SMALL_STATE(6693)] = 229665, + [SMALL_STATE(6694)] = 229681, + [SMALL_STATE(6695)] = 229693, + [SMALL_STATE(6696)] = 229705, + [SMALL_STATE(6697)] = 229721, + [SMALL_STATE(6698)] = 229737, + [SMALL_STATE(6699)] = 229749, + [SMALL_STATE(6700)] = 229765, + [SMALL_STATE(6701)] = 229777, + [SMALL_STATE(6702)] = 229793, + [SMALL_STATE(6703)] = 229805, + [SMALL_STATE(6704)] = 229817, + [SMALL_STATE(6705)] = 229833, + [SMALL_STATE(6706)] = 229849, + [SMALL_STATE(6707)] = 229865, + [SMALL_STATE(6708)] = 229877, + [SMALL_STATE(6709)] = 229893, + [SMALL_STATE(6710)] = 229909, + [SMALL_STATE(6711)] = 229925, + [SMALL_STATE(6712)] = 229939, + [SMALL_STATE(6713)] = 229955, + [SMALL_STATE(6714)] = 229969, + [SMALL_STATE(6715)] = 229985, + [SMALL_STATE(6716)] = 230001, + [SMALL_STATE(6717)] = 230015, + [SMALL_STATE(6718)] = 230027, + [SMALL_STATE(6719)] = 230043, + [SMALL_STATE(6720)] = 230055, + [SMALL_STATE(6721)] = 230067, + [SMALL_STATE(6722)] = 230079, + [SMALL_STATE(6723)] = 230091, + [SMALL_STATE(6724)] = 230103, + [SMALL_STATE(6725)] = 230119, + [SMALL_STATE(6726)] = 230131, + [SMALL_STATE(6727)] = 230147, + [SMALL_STATE(6728)] = 230159, + [SMALL_STATE(6729)] = 230171, + [SMALL_STATE(6730)] = 230183, + [SMALL_STATE(6731)] = 230199, + [SMALL_STATE(6732)] = 230215, + [SMALL_STATE(6733)] = 230227, + [SMALL_STATE(6734)] = 230243, + [SMALL_STATE(6735)] = 230255, + [SMALL_STATE(6736)] = 230267, + [SMALL_STATE(6737)] = 230281, + [SMALL_STATE(6738)] = 230297, + [SMALL_STATE(6739)] = 230313, + [SMALL_STATE(6740)] = 230329, + [SMALL_STATE(6741)] = 230345, + [SMALL_STATE(6742)] = 230361, + [SMALL_STATE(6743)] = 230377, + [SMALL_STATE(6744)] = 230393, + [SMALL_STATE(6745)] = 230409, + [SMALL_STATE(6746)] = 230425, + [SMALL_STATE(6747)] = 230441, + [SMALL_STATE(6748)] = 230453, + [SMALL_STATE(6749)] = 230469, + [SMALL_STATE(6750)] = 230481, + [SMALL_STATE(6751)] = 230493, + [SMALL_STATE(6752)] = 230505, + [SMALL_STATE(6753)] = 230521, + [SMALL_STATE(6754)] = 230533, + [SMALL_STATE(6755)] = 230549, + [SMALL_STATE(6756)] = 230565, + [SMALL_STATE(6757)] = 230579, + [SMALL_STATE(6758)] = 230593, + [SMALL_STATE(6759)] = 230609, + [SMALL_STATE(6760)] = 230621, + [SMALL_STATE(6761)] = 230633, + [SMALL_STATE(6762)] = 230649, + [SMALL_STATE(6763)] = 230665, + [SMALL_STATE(6764)] = 230681, + [SMALL_STATE(6765)] = 230697, + [SMALL_STATE(6766)] = 230713, + [SMALL_STATE(6767)] = 230729, + [SMALL_STATE(6768)] = 230745, + [SMALL_STATE(6769)] = 230759, + [SMALL_STATE(6770)] = 230775, + [SMALL_STATE(6771)] = 230787, + [SMALL_STATE(6772)] = 230803, + [SMALL_STATE(6773)] = 230819, + [SMALL_STATE(6774)] = 230831, + [SMALL_STATE(6775)] = 230843, + [SMALL_STATE(6776)] = 230859, + [SMALL_STATE(6777)] = 230871, + [SMALL_STATE(6778)] = 230883, + [SMALL_STATE(6779)] = 230895, + [SMALL_STATE(6780)] = 230909, + [SMALL_STATE(6781)] = 230925, + [SMALL_STATE(6782)] = 230939, + [SMALL_STATE(6783)] = 230955, + [SMALL_STATE(6784)] = 230967, + [SMALL_STATE(6785)] = 230979, + [SMALL_STATE(6786)] = 230993, + [SMALL_STATE(6787)] = 231005, + [SMALL_STATE(6788)] = 231021, + [SMALL_STATE(6789)] = 231033, + [SMALL_STATE(6790)] = 231049, + [SMALL_STATE(6791)] = 231063, + [SMALL_STATE(6792)] = 231075, + [SMALL_STATE(6793)] = 231091, + [SMALL_STATE(6794)] = 231107, + [SMALL_STATE(6795)] = 231123, + [SMALL_STATE(6796)] = 231135, + [SMALL_STATE(6797)] = 231151, + [SMALL_STATE(6798)] = 231163, + [SMALL_STATE(6799)] = 231179, + [SMALL_STATE(6800)] = 231195, + [SMALL_STATE(6801)] = 231211, + [SMALL_STATE(6802)] = 231227, + [SMALL_STATE(6803)] = 231243, + [SMALL_STATE(6804)] = 231255, + [SMALL_STATE(6805)] = 231267, + [SMALL_STATE(6806)] = 231281, + [SMALL_STATE(6807)] = 231297, + [SMALL_STATE(6808)] = 231309, + [SMALL_STATE(6809)] = 231321, + [SMALL_STATE(6810)] = 231337, + [SMALL_STATE(6811)] = 231353, + [SMALL_STATE(6812)] = 231369, + [SMALL_STATE(6813)] = 231381, + [SMALL_STATE(6814)] = 231397, + [SMALL_STATE(6815)] = 231413, + [SMALL_STATE(6816)] = 231429, + [SMALL_STATE(6817)] = 231443, + [SMALL_STATE(6818)] = 231459, + [SMALL_STATE(6819)] = 231475, + [SMALL_STATE(6820)] = 231491, + [SMALL_STATE(6821)] = 231507, + [SMALL_STATE(6822)] = 231521, + [SMALL_STATE(6823)] = 231537, + [SMALL_STATE(6824)] = 231553, + [SMALL_STATE(6825)] = 231567, + [SMALL_STATE(6826)] = 231581, + [SMALL_STATE(6827)] = 231597, + [SMALL_STATE(6828)] = 231613, + [SMALL_STATE(6829)] = 231627, + [SMALL_STATE(6830)] = 231641, + [SMALL_STATE(6831)] = 231653, + [SMALL_STATE(6832)] = 231667, + [SMALL_STATE(6833)] = 231683, + [SMALL_STATE(6834)] = 231699, + [SMALL_STATE(6835)] = 231713, + [SMALL_STATE(6836)] = 231729, + [SMALL_STATE(6837)] = 231743, + [SMALL_STATE(6838)] = 231759, + [SMALL_STATE(6839)] = 231773, + [SMALL_STATE(6840)] = 231785, + [SMALL_STATE(6841)] = 231801, + [SMALL_STATE(6842)] = 231817, + [SMALL_STATE(6843)] = 231833, + [SMALL_STATE(6844)] = 231849, + [SMALL_STATE(6845)] = 231865, + [SMALL_STATE(6846)] = 231879, + [SMALL_STATE(6847)] = 231893, + [SMALL_STATE(6848)] = 231909, + [SMALL_STATE(6849)] = 231925, + [SMALL_STATE(6850)] = 231941, + [SMALL_STATE(6851)] = 231955, + [SMALL_STATE(6852)] = 231969, + [SMALL_STATE(6853)] = 231981, + [SMALL_STATE(6854)] = 231995, + [SMALL_STATE(6855)] = 232011, + [SMALL_STATE(6856)] = 232025, + [SMALL_STATE(6857)] = 232039, + [SMALL_STATE(6858)] = 232051, + [SMALL_STATE(6859)] = 232067, + [SMALL_STATE(6860)] = 232083, + [SMALL_STATE(6861)] = 232099, + [SMALL_STATE(6862)] = 232111, + [SMALL_STATE(6863)] = 232123, + [SMALL_STATE(6864)] = 232137, + [SMALL_STATE(6865)] = 232153, + [SMALL_STATE(6866)] = 232169, + [SMALL_STATE(6867)] = 232185, + [SMALL_STATE(6868)] = 232201, + [SMALL_STATE(6869)] = 232217, + [SMALL_STATE(6870)] = 232231, + [SMALL_STATE(6871)] = 232247, + [SMALL_STATE(6872)] = 232263, + [SMALL_STATE(6873)] = 232279, + [SMALL_STATE(6874)] = 232295, + [SMALL_STATE(6875)] = 232311, + [SMALL_STATE(6876)] = 232327, + [SMALL_STATE(6877)] = 232343, + [SMALL_STATE(6878)] = 232355, + [SMALL_STATE(6879)] = 232369, + [SMALL_STATE(6880)] = 232385, + [SMALL_STATE(6881)] = 232401, + [SMALL_STATE(6882)] = 232417, + [SMALL_STATE(6883)] = 232431, + [SMALL_STATE(6884)] = 232447, + [SMALL_STATE(6885)] = 232463, + [SMALL_STATE(6886)] = 232477, + [SMALL_STATE(6887)] = 232493, + [SMALL_STATE(6888)] = 232509, + [SMALL_STATE(6889)] = 232521, + [SMALL_STATE(6890)] = 232537, + [SMALL_STATE(6891)] = 232553, + [SMALL_STATE(6892)] = 232569, + [SMALL_STATE(6893)] = 232585, + [SMALL_STATE(6894)] = 232599, + [SMALL_STATE(6895)] = 232615, + [SMALL_STATE(6896)] = 232631, + [SMALL_STATE(6897)] = 232647, + [SMALL_STATE(6898)] = 232659, + [SMALL_STATE(6899)] = 232671, + [SMALL_STATE(6900)] = 232687, + [SMALL_STATE(6901)] = 232699, + [SMALL_STATE(6902)] = 232711, + [SMALL_STATE(6903)] = 232723, + [SMALL_STATE(6904)] = 232735, + [SMALL_STATE(6905)] = 232747, + [SMALL_STATE(6906)] = 232763, + [SMALL_STATE(6907)] = 232775, + [SMALL_STATE(6908)] = 232791, + [SMALL_STATE(6909)] = 232807, + [SMALL_STATE(6910)] = 232819, + [SMALL_STATE(6911)] = 232835, + [SMALL_STATE(6912)] = 232851, + [SMALL_STATE(6913)] = 232867, + [SMALL_STATE(6914)] = 232879, + [SMALL_STATE(6915)] = 232895, + [SMALL_STATE(6916)] = 232907, + [SMALL_STATE(6917)] = 232923, + [SMALL_STATE(6918)] = 232939, + [SMALL_STATE(6919)] = 232955, + [SMALL_STATE(6920)] = 232967, + [SMALL_STATE(6921)] = 232983, + [SMALL_STATE(6922)] = 232995, + [SMALL_STATE(6923)] = 233011, + [SMALL_STATE(6924)] = 233025, + [SMALL_STATE(6925)] = 233041, + [SMALL_STATE(6926)] = 233057, + [SMALL_STATE(6927)] = 233073, + [SMALL_STATE(6928)] = 233089, + [SMALL_STATE(6929)] = 233105, + [SMALL_STATE(6930)] = 233121, + [SMALL_STATE(6931)] = 233137, + [SMALL_STATE(6932)] = 233149, + [SMALL_STATE(6933)] = 233165, + [SMALL_STATE(6934)] = 233181, + [SMALL_STATE(6935)] = 233197, + [SMALL_STATE(6936)] = 233213, + [SMALL_STATE(6937)] = 233229, + [SMALL_STATE(6938)] = 233241, + [SMALL_STATE(6939)] = 233253, + [SMALL_STATE(6940)] = 233269, + [SMALL_STATE(6941)] = 233285, + [SMALL_STATE(6942)] = 233301, + [SMALL_STATE(6943)] = 233317, + [SMALL_STATE(6944)] = 233333, + [SMALL_STATE(6945)] = 233349, + [SMALL_STATE(6946)] = 233361, + [SMALL_STATE(6947)] = 233377, + [SMALL_STATE(6948)] = 233391, + [SMALL_STATE(6949)] = 233405, + [SMALL_STATE(6950)] = 233421, + [SMALL_STATE(6951)] = 233437, + [SMALL_STATE(6952)] = 233453, + [SMALL_STATE(6953)] = 233465, + [SMALL_STATE(6954)] = 233479, + [SMALL_STATE(6955)] = 233493, + [SMALL_STATE(6956)] = 233505, + [SMALL_STATE(6957)] = 233517, + [SMALL_STATE(6958)] = 233529, + [SMALL_STATE(6959)] = 233545, + [SMALL_STATE(6960)] = 233561, + [SMALL_STATE(6961)] = 233577, + [SMALL_STATE(6962)] = 233593, + [SMALL_STATE(6963)] = 233607, + [SMALL_STATE(6964)] = 233623, + [SMALL_STATE(6965)] = 233639, + [SMALL_STATE(6966)] = 233655, + [SMALL_STATE(6967)] = 233667, + [SMALL_STATE(6968)] = 233683, + [SMALL_STATE(6969)] = 233695, + [SMALL_STATE(6970)] = 233711, + [SMALL_STATE(6971)] = 233727, + [SMALL_STATE(6972)] = 233743, + [SMALL_STATE(6973)] = 233759, + [SMALL_STATE(6974)] = 233775, + [SMALL_STATE(6975)] = 233791, + [SMALL_STATE(6976)] = 233807, + [SMALL_STATE(6977)] = 233823, + [SMALL_STATE(6978)] = 233839, + [SMALL_STATE(6979)] = 233855, + [SMALL_STATE(6980)] = 233871, + [SMALL_STATE(6981)] = 233887, + [SMALL_STATE(6982)] = 233903, + [SMALL_STATE(6983)] = 233915, + [SMALL_STATE(6984)] = 233927, + [SMALL_STATE(6985)] = 233943, + [SMALL_STATE(6986)] = 233959, + [SMALL_STATE(6987)] = 233975, + [SMALL_STATE(6988)] = 233987, + [SMALL_STATE(6989)] = 234003, + [SMALL_STATE(6990)] = 234015, + [SMALL_STATE(6991)] = 234029, + [SMALL_STATE(6992)] = 234045, + [SMALL_STATE(6993)] = 234061, + [SMALL_STATE(6994)] = 234077, + [SMALL_STATE(6995)] = 234093, + [SMALL_STATE(6996)] = 234109, + [SMALL_STATE(6997)] = 234125, + [SMALL_STATE(6998)] = 234141, + [SMALL_STATE(6999)] = 234157, + [SMALL_STATE(7000)] = 234173, + [SMALL_STATE(7001)] = 234189, + [SMALL_STATE(7002)] = 234201, + [SMALL_STATE(7003)] = 234217, + [SMALL_STATE(7004)] = 234229, + [SMALL_STATE(7005)] = 234241, + [SMALL_STATE(7006)] = 234253, + [SMALL_STATE(7007)] = 234265, + [SMALL_STATE(7008)] = 234277, + [SMALL_STATE(7009)] = 234293, + [SMALL_STATE(7010)] = 234309, + [SMALL_STATE(7011)] = 234321, + [SMALL_STATE(7012)] = 234335, + [SMALL_STATE(7013)] = 234351, + [SMALL_STATE(7014)] = 234367, + [SMALL_STATE(7015)] = 234383, + [SMALL_STATE(7016)] = 234399, + [SMALL_STATE(7017)] = 234413, + [SMALL_STATE(7018)] = 234427, + [SMALL_STATE(7019)] = 234443, + [SMALL_STATE(7020)] = 234459, + [SMALL_STATE(7021)] = 234471, + [SMALL_STATE(7022)] = 234483, + [SMALL_STATE(7023)] = 234497, + [SMALL_STATE(7024)] = 234513, + [SMALL_STATE(7025)] = 234525, + [SMALL_STATE(7026)] = 234541, + [SMALL_STATE(7027)] = 234555, + [SMALL_STATE(7028)] = 234571, + [SMALL_STATE(7029)] = 234585, + [SMALL_STATE(7030)] = 234597, + [SMALL_STATE(7031)] = 234613, + [SMALL_STATE(7032)] = 234627, + [SMALL_STATE(7033)] = 234639, + [SMALL_STATE(7034)] = 234655, + [SMALL_STATE(7035)] = 234669, + [SMALL_STATE(7036)] = 234683, + [SMALL_STATE(7037)] = 234699, + [SMALL_STATE(7038)] = 234711, + [SMALL_STATE(7039)] = 234723, + [SMALL_STATE(7040)] = 234737, + [SMALL_STATE(7041)] = 234753, + [SMALL_STATE(7042)] = 234769, + [SMALL_STATE(7043)] = 234781, + [SMALL_STATE(7044)] = 234793, + [SMALL_STATE(7045)] = 234809, + [SMALL_STATE(7046)] = 234825, + [SMALL_STATE(7047)] = 234841, + [SMALL_STATE(7048)] = 234857, + [SMALL_STATE(7049)] = 234871, + [SMALL_STATE(7050)] = 234887, + [SMALL_STATE(7051)] = 234903, + [SMALL_STATE(7052)] = 234917, + [SMALL_STATE(7053)] = 234929, + [SMALL_STATE(7054)] = 234945, + [SMALL_STATE(7055)] = 234957, + [SMALL_STATE(7056)] = 234971, + [SMALL_STATE(7057)] = 234987, + [SMALL_STATE(7058)] = 235003, + [SMALL_STATE(7059)] = 235017, + [SMALL_STATE(7060)] = 235033, + [SMALL_STATE(7061)] = 235045, + [SMALL_STATE(7062)] = 235061, + [SMALL_STATE(7063)] = 235077, + [SMALL_STATE(7064)] = 235091, + [SMALL_STATE(7065)] = 235107, + [SMALL_STATE(7066)] = 235123, + [SMALL_STATE(7067)] = 235139, + [SMALL_STATE(7068)] = 235153, + [SMALL_STATE(7069)] = 235169, + [SMALL_STATE(7070)] = 235185, + [SMALL_STATE(7071)] = 235199, + [SMALL_STATE(7072)] = 235213, + [SMALL_STATE(7073)] = 235229, + [SMALL_STATE(7074)] = 235245, + [SMALL_STATE(7075)] = 235261, + [SMALL_STATE(7076)] = 235273, + [SMALL_STATE(7077)] = 235289, + [SMALL_STATE(7078)] = 235305, + [SMALL_STATE(7079)] = 235321, + [SMALL_STATE(7080)] = 235337, + [SMALL_STATE(7081)] = 235353, + [SMALL_STATE(7082)] = 235367, + [SMALL_STATE(7083)] = 235381, + [SMALL_STATE(7084)] = 235395, + [SMALL_STATE(7085)] = 235411, + [SMALL_STATE(7086)] = 235427, + [SMALL_STATE(7087)] = 235441, + [SMALL_STATE(7088)] = 235457, + [SMALL_STATE(7089)] = 235473, + [SMALL_STATE(7090)] = 235485, + [SMALL_STATE(7091)] = 235501, + [SMALL_STATE(7092)] = 235517, + [SMALL_STATE(7093)] = 235529, + [SMALL_STATE(7094)] = 235541, + [SMALL_STATE(7095)] = 235553, + [SMALL_STATE(7096)] = 235567, + [SMALL_STATE(7097)] = 235581, + [SMALL_STATE(7098)] = 235595, + [SMALL_STATE(7099)] = 235611, + [SMALL_STATE(7100)] = 235623, + [SMALL_STATE(7101)] = 235639, + [SMALL_STATE(7102)] = 235651, + [SMALL_STATE(7103)] = 235665, + [SMALL_STATE(7104)] = 235679, + [SMALL_STATE(7105)] = 235693, + [SMALL_STATE(7106)] = 235709, + [SMALL_STATE(7107)] = 235721, + [SMALL_STATE(7108)] = 235733, + [SMALL_STATE(7109)] = 235745, + [SMALL_STATE(7110)] = 235759, + [SMALL_STATE(7111)] = 235771, + [SMALL_STATE(7112)] = 235787, + [SMALL_STATE(7113)] = 235803, + [SMALL_STATE(7114)] = 235819, + [SMALL_STATE(7115)] = 235835, + [SMALL_STATE(7116)] = 235851, + [SMALL_STATE(7117)] = 235867, + [SMALL_STATE(7118)] = 235883, + [SMALL_STATE(7119)] = 235895, + [SMALL_STATE(7120)] = 235911, + [SMALL_STATE(7121)] = 235927, + [SMALL_STATE(7122)] = 235941, + [SMALL_STATE(7123)] = 235953, + [SMALL_STATE(7124)] = 235967, + [SMALL_STATE(7125)] = 235983, + [SMALL_STATE(7126)] = 235999, + [SMALL_STATE(7127)] = 236013, + [SMALL_STATE(7128)] = 236027, + [SMALL_STATE(7129)] = 236043, + [SMALL_STATE(7130)] = 236059, + [SMALL_STATE(7131)] = 236075, + [SMALL_STATE(7132)] = 236091, + [SMALL_STATE(7133)] = 236103, + [SMALL_STATE(7134)] = 236117, + [SMALL_STATE(7135)] = 236131, + [SMALL_STATE(7136)] = 236147, + [SMALL_STATE(7137)] = 236161, + [SMALL_STATE(7138)] = 236177, + [SMALL_STATE(7139)] = 236193, + [SMALL_STATE(7140)] = 236209, + [SMALL_STATE(7141)] = 236225, + [SMALL_STATE(7142)] = 236241, + [SMALL_STATE(7143)] = 236253, + [SMALL_STATE(7144)] = 236267, + [SMALL_STATE(7145)] = 236281, + [SMALL_STATE(7146)] = 236295, + [SMALL_STATE(7147)] = 236311, + [SMALL_STATE(7148)] = 236327, + [SMALL_STATE(7149)] = 236343, + [SMALL_STATE(7150)] = 236359, + [SMALL_STATE(7151)] = 236373, + [SMALL_STATE(7152)] = 236387, + [SMALL_STATE(7153)] = 236401, + [SMALL_STATE(7154)] = 236417, + [SMALL_STATE(7155)] = 236433, + [SMALL_STATE(7156)] = 236449, + [SMALL_STATE(7157)] = 236465, + [SMALL_STATE(7158)] = 236481, + [SMALL_STATE(7159)] = 236495, + [SMALL_STATE(7160)] = 236509, + [SMALL_STATE(7161)] = 236523, + [SMALL_STATE(7162)] = 236539, + [SMALL_STATE(7163)] = 236555, + [SMALL_STATE(7164)] = 236571, + [SMALL_STATE(7165)] = 236587, + [SMALL_STATE(7166)] = 236601, + [SMALL_STATE(7167)] = 236615, + [SMALL_STATE(7168)] = 236629, + [SMALL_STATE(7169)] = 236645, + [SMALL_STATE(7170)] = 236661, + [SMALL_STATE(7171)] = 236677, + [SMALL_STATE(7172)] = 236693, + [SMALL_STATE(7173)] = 236709, + [SMALL_STATE(7174)] = 236725, + [SMALL_STATE(7175)] = 236739, + [SMALL_STATE(7176)] = 236755, + [SMALL_STATE(7177)] = 236769, + [SMALL_STATE(7178)] = 236785, + [SMALL_STATE(7179)] = 236801, + [SMALL_STATE(7180)] = 236817, + [SMALL_STATE(7181)] = 236833, + [SMALL_STATE(7182)] = 236849, + [SMALL_STATE(7183)] = 236863, + [SMALL_STATE(7184)] = 236877, + [SMALL_STATE(7185)] = 236889, + [SMALL_STATE(7186)] = 236905, + [SMALL_STATE(7187)] = 236921, + [SMALL_STATE(7188)] = 236937, + [SMALL_STATE(7189)] = 236953, + [SMALL_STATE(7190)] = 236969, + [SMALL_STATE(7191)] = 236983, + [SMALL_STATE(7192)] = 236997, + [SMALL_STATE(7193)] = 237013, + [SMALL_STATE(7194)] = 237029, + [SMALL_STATE(7195)] = 237045, + [SMALL_STATE(7196)] = 237061, + [SMALL_STATE(7197)] = 237075, + [SMALL_STATE(7198)] = 237091, + [SMALL_STATE(7199)] = 237105, + [SMALL_STATE(7200)] = 237121, + [SMALL_STATE(7201)] = 237137, + [SMALL_STATE(7202)] = 237153, + [SMALL_STATE(7203)] = 237169, + [SMALL_STATE(7204)] = 237185, + [SMALL_STATE(7205)] = 237199, + [SMALL_STATE(7206)] = 237215, + [SMALL_STATE(7207)] = 237229, + [SMALL_STATE(7208)] = 237245, + [SMALL_STATE(7209)] = 237261, + [SMALL_STATE(7210)] = 237277, + [SMALL_STATE(7211)] = 237293, + [SMALL_STATE(7212)] = 237309, + [SMALL_STATE(7213)] = 237323, + [SMALL_STATE(7214)] = 237337, + [SMALL_STATE(7215)] = 237353, + [SMALL_STATE(7216)] = 237369, + [SMALL_STATE(7217)] = 237383, + [SMALL_STATE(7218)] = 237399, + [SMALL_STATE(7219)] = 237415, + [SMALL_STATE(7220)] = 237429, + [SMALL_STATE(7221)] = 237443, + [SMALL_STATE(7222)] = 237457, + [SMALL_STATE(7223)] = 237473, + [SMALL_STATE(7224)] = 237489, + [SMALL_STATE(7225)] = 237505, + [SMALL_STATE(7226)] = 237521, + [SMALL_STATE(7227)] = 237535, + [SMALL_STATE(7228)] = 237549, + [SMALL_STATE(7229)] = 237565, + [SMALL_STATE(7230)] = 237581, + [SMALL_STATE(7231)] = 237597, + [SMALL_STATE(7232)] = 237613, + [SMALL_STATE(7233)] = 237627, + [SMALL_STATE(7234)] = 237641, + [SMALL_STATE(7235)] = 237653, + [SMALL_STATE(7236)] = 237669, + [SMALL_STATE(7237)] = 237685, + [SMALL_STATE(7238)] = 237701, + [SMALL_STATE(7239)] = 237717, + [SMALL_STATE(7240)] = 237731, + [SMALL_STATE(7241)] = 237745, + [SMALL_STATE(7242)] = 237761, + [SMALL_STATE(7243)] = 237777, + [SMALL_STATE(7244)] = 237793, + [SMALL_STATE(7245)] = 237809, + [SMALL_STATE(7246)] = 237823, + [SMALL_STATE(7247)] = 237837, + [SMALL_STATE(7248)] = 237853, + [SMALL_STATE(7249)] = 237869, + [SMALL_STATE(7250)] = 237883, + [SMALL_STATE(7251)] = 237899, + [SMALL_STATE(7252)] = 237915, + [SMALL_STATE(7253)] = 237929, + [SMALL_STATE(7254)] = 237943, + [SMALL_STATE(7255)] = 237959, + [SMALL_STATE(7256)] = 237975, + [SMALL_STATE(7257)] = 237991, + [SMALL_STATE(7258)] = 238007, + [SMALL_STATE(7259)] = 238021, + [SMALL_STATE(7260)] = 238035, + [SMALL_STATE(7261)] = 238047, + [SMALL_STATE(7262)] = 238063, + [SMALL_STATE(7263)] = 238079, + [SMALL_STATE(7264)] = 238095, + [SMALL_STATE(7265)] = 238111, + [SMALL_STATE(7266)] = 238125, + [SMALL_STATE(7267)] = 238139, + [SMALL_STATE(7268)] = 238155, + [SMALL_STATE(7269)] = 238171, + [SMALL_STATE(7270)] = 238187, + [SMALL_STATE(7271)] = 238203, + [SMALL_STATE(7272)] = 238217, + [SMALL_STATE(7273)] = 238231, + [SMALL_STATE(7274)] = 238245, + [SMALL_STATE(7275)] = 238257, + [SMALL_STATE(7276)] = 238273, + [SMALL_STATE(7277)] = 238289, + [SMALL_STATE(7278)] = 238305, + [SMALL_STATE(7279)] = 238319, + [SMALL_STATE(7280)] = 238333, + [SMALL_STATE(7281)] = 238347, + [SMALL_STATE(7282)] = 238363, + [SMALL_STATE(7283)] = 238379, + [SMALL_STATE(7284)] = 238395, + [SMALL_STATE(7285)] = 238409, + [SMALL_STATE(7286)] = 238421, + [SMALL_STATE(7287)] = 238437, + [SMALL_STATE(7288)] = 238453, + [SMALL_STATE(7289)] = 238465, + [SMALL_STATE(7290)] = 238479, + [SMALL_STATE(7291)] = 238491, + [SMALL_STATE(7292)] = 238507, + [SMALL_STATE(7293)] = 238523, + [SMALL_STATE(7294)] = 238537, + [SMALL_STATE(7295)] = 238550, + [SMALL_STATE(7296)] = 238561, + [SMALL_STATE(7297)] = 238574, + [SMALL_STATE(7298)] = 238587, + [SMALL_STATE(7299)] = 238600, + [SMALL_STATE(7300)] = 238613, + [SMALL_STATE(7301)] = 238626, + [SMALL_STATE(7302)] = 238639, + [SMALL_STATE(7303)] = 238652, + [SMALL_STATE(7304)] = 238665, + [SMALL_STATE(7305)] = 238678, + [SMALL_STATE(7306)] = 238691, + [SMALL_STATE(7307)] = 238704, + [SMALL_STATE(7308)] = 238717, + [SMALL_STATE(7309)] = 238730, + [SMALL_STATE(7310)] = 238743, + [SMALL_STATE(7311)] = 238756, + [SMALL_STATE(7312)] = 238769, + [SMALL_STATE(7313)] = 238782, + [SMALL_STATE(7314)] = 238795, + [SMALL_STATE(7315)] = 238808, + [SMALL_STATE(7316)] = 238821, + [SMALL_STATE(7317)] = 238834, + [SMALL_STATE(7318)] = 238847, + [SMALL_STATE(7319)] = 238860, + [SMALL_STATE(7320)] = 238873, + [SMALL_STATE(7321)] = 238886, + [SMALL_STATE(7322)] = 238899, + [SMALL_STATE(7323)] = 238912, + [SMALL_STATE(7324)] = 238925, + [SMALL_STATE(7325)] = 238938, + [SMALL_STATE(7326)] = 238951, + [SMALL_STATE(7327)] = 238964, + [SMALL_STATE(7328)] = 238977, + [SMALL_STATE(7329)] = 238990, + [SMALL_STATE(7330)] = 239003, + [SMALL_STATE(7331)] = 239016, + [SMALL_STATE(7332)] = 239029, + [SMALL_STATE(7333)] = 239042, + [SMALL_STATE(7334)] = 239055, + [SMALL_STATE(7335)] = 239068, + [SMALL_STATE(7336)] = 239081, + [SMALL_STATE(7337)] = 239094, + [SMALL_STATE(7338)] = 239107, + [SMALL_STATE(7339)] = 239120, + [SMALL_STATE(7340)] = 239133, + [SMALL_STATE(7341)] = 239146, + [SMALL_STATE(7342)] = 239159, + [SMALL_STATE(7343)] = 239172, + [SMALL_STATE(7344)] = 239185, + [SMALL_STATE(7345)] = 239198, + [SMALL_STATE(7346)] = 239211, + [SMALL_STATE(7347)] = 239224, + [SMALL_STATE(7348)] = 239237, + [SMALL_STATE(7349)] = 239250, + [SMALL_STATE(7350)] = 239263, + [SMALL_STATE(7351)] = 239276, + [SMALL_STATE(7352)] = 239289, + [SMALL_STATE(7353)] = 239302, + [SMALL_STATE(7354)] = 239315, + [SMALL_STATE(7355)] = 239328, + [SMALL_STATE(7356)] = 239341, + [SMALL_STATE(7357)] = 239352, + [SMALL_STATE(7358)] = 239365, + [SMALL_STATE(7359)] = 239378, + [SMALL_STATE(7360)] = 239391, + [SMALL_STATE(7361)] = 239404, + [SMALL_STATE(7362)] = 239417, + [SMALL_STATE(7363)] = 239430, + [SMALL_STATE(7364)] = 239443, + [SMALL_STATE(7365)] = 239456, + [SMALL_STATE(7366)] = 239467, + [SMALL_STATE(7367)] = 239480, + [SMALL_STATE(7368)] = 239493, + [SMALL_STATE(7369)] = 239506, + [SMALL_STATE(7370)] = 239519, + [SMALL_STATE(7371)] = 239532, + [SMALL_STATE(7372)] = 239545, + [SMALL_STATE(7373)] = 239558, + [SMALL_STATE(7374)] = 239571, + [SMALL_STATE(7375)] = 239584, + [SMALL_STATE(7376)] = 239597, + [SMALL_STATE(7377)] = 239610, + [SMALL_STATE(7378)] = 239623, + [SMALL_STATE(7379)] = 239636, + [SMALL_STATE(7380)] = 239647, + [SMALL_STATE(7381)] = 239660, + [SMALL_STATE(7382)] = 239673, + [SMALL_STATE(7383)] = 239686, + [SMALL_STATE(7384)] = 239699, + [SMALL_STATE(7385)] = 239712, + [SMALL_STATE(7386)] = 239725, + [SMALL_STATE(7387)] = 239738, + [SMALL_STATE(7388)] = 239751, + [SMALL_STATE(7389)] = 239764, + [SMALL_STATE(7390)] = 239777, + [SMALL_STATE(7391)] = 239790, + [SMALL_STATE(7392)] = 239803, + [SMALL_STATE(7393)] = 239814, + [SMALL_STATE(7394)] = 239827, + [SMALL_STATE(7395)] = 239840, + [SMALL_STATE(7396)] = 239851, + [SMALL_STATE(7397)] = 239864, + [SMALL_STATE(7398)] = 239877, + [SMALL_STATE(7399)] = 239890, + [SMALL_STATE(7400)] = 239903, + [SMALL_STATE(7401)] = 239916, + [SMALL_STATE(7402)] = 239929, + [SMALL_STATE(7403)] = 239942, + [SMALL_STATE(7404)] = 239955, + [SMALL_STATE(7405)] = 239968, + [SMALL_STATE(7406)] = 239981, + [SMALL_STATE(7407)] = 239994, + [SMALL_STATE(7408)] = 240007, + [SMALL_STATE(7409)] = 240020, + [SMALL_STATE(7410)] = 240033, + [SMALL_STATE(7411)] = 240046, + [SMALL_STATE(7412)] = 240059, + [SMALL_STATE(7413)] = 240072, + [SMALL_STATE(7414)] = 240085, + [SMALL_STATE(7415)] = 240098, + [SMALL_STATE(7416)] = 240111, + [SMALL_STATE(7417)] = 240124, + [SMALL_STATE(7418)] = 240137, + [SMALL_STATE(7419)] = 240150, + [SMALL_STATE(7420)] = 240163, + [SMALL_STATE(7421)] = 240176, + [SMALL_STATE(7422)] = 240189, + [SMALL_STATE(7423)] = 240202, + [SMALL_STATE(7424)] = 240215, + [SMALL_STATE(7425)] = 240228, + [SMALL_STATE(7426)] = 240241, + [SMALL_STATE(7427)] = 240254, + [SMALL_STATE(7428)] = 240267, + [SMALL_STATE(7429)] = 240280, + [SMALL_STATE(7430)] = 240293, + [SMALL_STATE(7431)] = 240306, + [SMALL_STATE(7432)] = 240319, + [SMALL_STATE(7433)] = 240332, + [SMALL_STATE(7434)] = 240345, + [SMALL_STATE(7435)] = 240358, + [SMALL_STATE(7436)] = 240371, + [SMALL_STATE(7437)] = 240382, + [SMALL_STATE(7438)] = 240395, + [SMALL_STATE(7439)] = 240408, + [SMALL_STATE(7440)] = 240421, + [SMALL_STATE(7441)] = 240434, + [SMALL_STATE(7442)] = 240447, + [SMALL_STATE(7443)] = 240460, + [SMALL_STATE(7444)] = 240473, + [SMALL_STATE(7445)] = 240486, + [SMALL_STATE(7446)] = 240499, + [SMALL_STATE(7447)] = 240512, + [SMALL_STATE(7448)] = 240525, + [SMALL_STATE(7449)] = 240538, + [SMALL_STATE(7450)] = 240551, + [SMALL_STATE(7451)] = 240564, + [SMALL_STATE(7452)] = 240577, + [SMALL_STATE(7453)] = 240590, + [SMALL_STATE(7454)] = 240603, + [SMALL_STATE(7455)] = 240616, + [SMALL_STATE(7456)] = 240629, + [SMALL_STATE(7457)] = 240642, + [SMALL_STATE(7458)] = 240655, + [SMALL_STATE(7459)] = 240668, + [SMALL_STATE(7460)] = 240681, + [SMALL_STATE(7461)] = 240694, + [SMALL_STATE(7462)] = 240707, + [SMALL_STATE(7463)] = 240720, + [SMALL_STATE(7464)] = 240733, + [SMALL_STATE(7465)] = 240746, + [SMALL_STATE(7466)] = 240759, + [SMALL_STATE(7467)] = 240772, + [SMALL_STATE(7468)] = 240785, + [SMALL_STATE(7469)] = 240798, + [SMALL_STATE(7470)] = 240811, + [SMALL_STATE(7471)] = 240824, + [SMALL_STATE(7472)] = 240834, + [SMALL_STATE(7473)] = 240844, + [SMALL_STATE(7474)] = 240854, + [SMALL_STATE(7475)] = 240864, + [SMALL_STATE(7476)] = 240874, + [SMALL_STATE(7477)] = 240884, + [SMALL_STATE(7478)] = 240894, + [SMALL_STATE(7479)] = 240904, + [SMALL_STATE(7480)] = 240914, + [SMALL_STATE(7481)] = 240924, + [SMALL_STATE(7482)] = 240934, + [SMALL_STATE(7483)] = 240944, + [SMALL_STATE(7484)] = 240954, + [SMALL_STATE(7485)] = 240964, + [SMALL_STATE(7486)] = 240974, + [SMALL_STATE(7487)] = 240984, + [SMALL_STATE(7488)] = 240994, + [SMALL_STATE(7489)] = 241004, + [SMALL_STATE(7490)] = 241014, + [SMALL_STATE(7491)] = 241024, + [SMALL_STATE(7492)] = 241034, + [SMALL_STATE(7493)] = 241044, + [SMALL_STATE(7494)] = 241054, + [SMALL_STATE(7495)] = 241064, + [SMALL_STATE(7496)] = 241074, + [SMALL_STATE(7497)] = 241084, + [SMALL_STATE(7498)] = 241094, + [SMALL_STATE(7499)] = 241104, + [SMALL_STATE(7500)] = 241114, + [SMALL_STATE(7501)] = 241124, + [SMALL_STATE(7502)] = 241134, + [SMALL_STATE(7503)] = 241144, + [SMALL_STATE(7504)] = 241154, + [SMALL_STATE(7505)] = 241164, + [SMALL_STATE(7506)] = 241174, + [SMALL_STATE(7507)] = 241184, + [SMALL_STATE(7508)] = 241194, + [SMALL_STATE(7509)] = 241204, + [SMALL_STATE(7510)] = 241214, + [SMALL_STATE(7511)] = 241224, + [SMALL_STATE(7512)] = 241234, + [SMALL_STATE(7513)] = 241244, + [SMALL_STATE(7514)] = 241254, + [SMALL_STATE(7515)] = 241264, + [SMALL_STATE(7516)] = 241274, + [SMALL_STATE(7517)] = 241284, + [SMALL_STATE(7518)] = 241294, + [SMALL_STATE(7519)] = 241304, + [SMALL_STATE(7520)] = 241314, + [SMALL_STATE(7521)] = 241324, + [SMALL_STATE(7522)] = 241334, + [SMALL_STATE(7523)] = 241344, + [SMALL_STATE(7524)] = 241354, + [SMALL_STATE(7525)] = 241364, + [SMALL_STATE(7526)] = 241374, + [SMALL_STATE(7527)] = 241384, + [SMALL_STATE(7528)] = 241394, + [SMALL_STATE(7529)] = 241404, + [SMALL_STATE(7530)] = 241414, + [SMALL_STATE(7531)] = 241424, + [SMALL_STATE(7532)] = 241434, + [SMALL_STATE(7533)] = 241444, + [SMALL_STATE(7534)] = 241454, + [SMALL_STATE(7535)] = 241464, + [SMALL_STATE(7536)] = 241474, + [SMALL_STATE(7537)] = 241484, + [SMALL_STATE(7538)] = 241494, + [SMALL_STATE(7539)] = 241504, + [SMALL_STATE(7540)] = 241514, + [SMALL_STATE(7541)] = 241524, + [SMALL_STATE(7542)] = 241534, + [SMALL_STATE(7543)] = 241544, + [SMALL_STATE(7544)] = 241554, + [SMALL_STATE(7545)] = 241564, + [SMALL_STATE(7546)] = 241574, + [SMALL_STATE(7547)] = 241584, + [SMALL_STATE(7548)] = 241594, + [SMALL_STATE(7549)] = 241604, + [SMALL_STATE(7550)] = 241614, + [SMALL_STATE(7551)] = 241624, + [SMALL_STATE(7552)] = 241634, + [SMALL_STATE(7553)] = 241644, + [SMALL_STATE(7554)] = 241654, + [SMALL_STATE(7555)] = 241664, + [SMALL_STATE(7556)] = 241674, + [SMALL_STATE(7557)] = 241684, + [SMALL_STATE(7558)] = 241694, + [SMALL_STATE(7559)] = 241704, + [SMALL_STATE(7560)] = 241714, + [SMALL_STATE(7561)] = 241724, + [SMALL_STATE(7562)] = 241734, + [SMALL_STATE(7563)] = 241744, + [SMALL_STATE(7564)] = 241754, + [SMALL_STATE(7565)] = 241764, + [SMALL_STATE(7566)] = 241774, + [SMALL_STATE(7567)] = 241784, + [SMALL_STATE(7568)] = 241794, + [SMALL_STATE(7569)] = 241804, + [SMALL_STATE(7570)] = 241814, + [SMALL_STATE(7571)] = 241824, + [SMALL_STATE(7572)] = 241834, + [SMALL_STATE(7573)] = 241844, + [SMALL_STATE(7574)] = 241854, + [SMALL_STATE(7575)] = 241864, + [SMALL_STATE(7576)] = 241874, + [SMALL_STATE(7577)] = 241884, + [SMALL_STATE(7578)] = 241894, + [SMALL_STATE(7579)] = 241904, + [SMALL_STATE(7580)] = 241914, + [SMALL_STATE(7581)] = 241924, + [SMALL_STATE(7582)] = 241934, + [SMALL_STATE(7583)] = 241944, + [SMALL_STATE(7584)] = 241954, + [SMALL_STATE(7585)] = 241964, + [SMALL_STATE(7586)] = 241974, + [SMALL_STATE(7587)] = 241984, + [SMALL_STATE(7588)] = 241994, + [SMALL_STATE(7589)] = 242004, + [SMALL_STATE(7590)] = 242014, + [SMALL_STATE(7591)] = 242024, + [SMALL_STATE(7592)] = 242034, + [SMALL_STATE(7593)] = 242044, + [SMALL_STATE(7594)] = 242054, + [SMALL_STATE(7595)] = 242064, + [SMALL_STATE(7596)] = 242074, + [SMALL_STATE(7597)] = 242084, + [SMALL_STATE(7598)] = 242094, + [SMALL_STATE(7599)] = 242104, + [SMALL_STATE(7600)] = 242114, + [SMALL_STATE(7601)] = 242124, + [SMALL_STATE(7602)] = 242134, + [SMALL_STATE(7603)] = 242144, + [SMALL_STATE(7604)] = 242154, + [SMALL_STATE(7605)] = 242164, + [SMALL_STATE(7606)] = 242174, + [SMALL_STATE(7607)] = 242184, + [SMALL_STATE(7608)] = 242194, + [SMALL_STATE(7609)] = 242204, + [SMALL_STATE(7610)] = 242214, + [SMALL_STATE(7611)] = 242224, + [SMALL_STATE(7612)] = 242234, + [SMALL_STATE(7613)] = 242244, + [SMALL_STATE(7614)] = 242254, + [SMALL_STATE(7615)] = 242264, + [SMALL_STATE(7616)] = 242274, + [SMALL_STATE(7617)] = 242284, + [SMALL_STATE(7618)] = 242294, + [SMALL_STATE(7619)] = 242304, + [SMALL_STATE(7620)] = 242314, + [SMALL_STATE(7621)] = 242324, + [SMALL_STATE(7622)] = 242334, + [SMALL_STATE(7623)] = 242344, + [SMALL_STATE(7624)] = 242354, + [SMALL_STATE(7625)] = 242364, + [SMALL_STATE(7626)] = 242374, + [SMALL_STATE(7627)] = 242384, + [SMALL_STATE(7628)] = 242394, + [SMALL_STATE(7629)] = 242404, + [SMALL_STATE(7630)] = 242414, + [SMALL_STATE(7631)] = 242424, + [SMALL_STATE(7632)] = 242434, + [SMALL_STATE(7633)] = 242444, + [SMALL_STATE(7634)] = 242454, + [SMALL_STATE(7635)] = 242464, + [SMALL_STATE(7636)] = 242474, + [SMALL_STATE(7637)] = 242484, + [SMALL_STATE(7638)] = 242494, + [SMALL_STATE(7639)] = 242504, + [SMALL_STATE(7640)] = 242514, + [SMALL_STATE(7641)] = 242524, + [SMALL_STATE(7642)] = 242534, + [SMALL_STATE(7643)] = 242544, + [SMALL_STATE(7644)] = 242554, + [SMALL_STATE(7645)] = 242564, + [SMALL_STATE(7646)] = 242574, + [SMALL_STATE(7647)] = 242584, + [SMALL_STATE(7648)] = 242594, + [SMALL_STATE(7649)] = 242604, + [SMALL_STATE(7650)] = 242614, + [SMALL_STATE(7651)] = 242624, + [SMALL_STATE(7652)] = 242634, + [SMALL_STATE(7653)] = 242644, + [SMALL_STATE(7654)] = 242654, + [SMALL_STATE(7655)] = 242664, + [SMALL_STATE(7656)] = 242674, + [SMALL_STATE(7657)] = 242684, + [SMALL_STATE(7658)] = 242694, + [SMALL_STATE(7659)] = 242704, + [SMALL_STATE(7660)] = 242714, + [SMALL_STATE(7661)] = 242724, + [SMALL_STATE(7662)] = 242734, + [SMALL_STATE(7663)] = 242744, + [SMALL_STATE(7664)] = 242754, + [SMALL_STATE(7665)] = 242764, + [SMALL_STATE(7666)] = 242774, + [SMALL_STATE(7667)] = 242784, + [SMALL_STATE(7668)] = 242794, + [SMALL_STATE(7669)] = 242804, + [SMALL_STATE(7670)] = 242814, + [SMALL_STATE(7671)] = 242824, + [SMALL_STATE(7672)] = 242834, + [SMALL_STATE(7673)] = 242844, + [SMALL_STATE(7674)] = 242854, + [SMALL_STATE(7675)] = 242864, + [SMALL_STATE(7676)] = 242874, + [SMALL_STATE(7677)] = 242884, + [SMALL_STATE(7678)] = 242894, + [SMALL_STATE(7679)] = 242904, + [SMALL_STATE(7680)] = 242914, + [SMALL_STATE(7681)] = 242924, + [SMALL_STATE(7682)] = 242934, + [SMALL_STATE(7683)] = 242944, + [SMALL_STATE(7684)] = 242954, + [SMALL_STATE(7685)] = 242964, + [SMALL_STATE(7686)] = 242974, + [SMALL_STATE(7687)] = 242984, + [SMALL_STATE(7688)] = 242994, + [SMALL_STATE(7689)] = 243004, + [SMALL_STATE(7690)] = 243014, + [SMALL_STATE(7691)] = 243024, + [SMALL_STATE(7692)] = 243034, + [SMALL_STATE(7693)] = 243044, + [SMALL_STATE(7694)] = 243054, + [SMALL_STATE(7695)] = 243064, + [SMALL_STATE(7696)] = 243074, + [SMALL_STATE(7697)] = 243084, + [SMALL_STATE(7698)] = 243094, + [SMALL_STATE(7699)] = 243104, + [SMALL_STATE(7700)] = 243114, + [SMALL_STATE(7701)] = 243124, + [SMALL_STATE(7702)] = 243134, + [SMALL_STATE(7703)] = 243144, + [SMALL_STATE(7704)] = 243154, + [SMALL_STATE(7705)] = 243164, + [SMALL_STATE(7706)] = 243174, + [SMALL_STATE(7707)] = 243184, + [SMALL_STATE(7708)] = 243194, + [SMALL_STATE(7709)] = 243204, + [SMALL_STATE(7710)] = 243214, + [SMALL_STATE(7711)] = 243224, + [SMALL_STATE(7712)] = 243234, + [SMALL_STATE(7713)] = 243244, + [SMALL_STATE(7714)] = 243254, + [SMALL_STATE(7715)] = 243264, + [SMALL_STATE(7716)] = 243274, + [SMALL_STATE(7717)] = 243284, + [SMALL_STATE(7718)] = 243294, + [SMALL_STATE(7719)] = 243304, + [SMALL_STATE(7720)] = 243314, + [SMALL_STATE(7721)] = 243324, + [SMALL_STATE(7722)] = 243334, + [SMALL_STATE(7723)] = 243344, + [SMALL_STATE(7724)] = 243354, + [SMALL_STATE(7725)] = 243364, + [SMALL_STATE(7726)] = 243374, + [SMALL_STATE(7727)] = 243384, + [SMALL_STATE(7728)] = 243394, + [SMALL_STATE(7729)] = 243404, + [SMALL_STATE(7730)] = 243414, + [SMALL_STATE(7731)] = 243424, + [SMALL_STATE(7732)] = 243434, + [SMALL_STATE(7733)] = 243444, + [SMALL_STATE(7734)] = 243454, + [SMALL_STATE(7735)] = 243464, + [SMALL_STATE(7736)] = 243474, + [SMALL_STATE(7737)] = 243484, + [SMALL_STATE(7738)] = 243494, + [SMALL_STATE(7739)] = 243504, + [SMALL_STATE(7740)] = 243514, + [SMALL_STATE(7741)] = 243524, + [SMALL_STATE(7742)] = 243534, + [SMALL_STATE(7743)] = 243544, + [SMALL_STATE(7744)] = 243554, + [SMALL_STATE(7745)] = 243564, + [SMALL_STATE(7746)] = 243574, + [SMALL_STATE(7747)] = 243584, + [SMALL_STATE(7748)] = 243594, + [SMALL_STATE(7749)] = 243604, + [SMALL_STATE(7750)] = 243614, + [SMALL_STATE(7751)] = 243624, + [SMALL_STATE(7752)] = 243634, + [SMALL_STATE(7753)] = 243644, + [SMALL_STATE(7754)] = 243654, + [SMALL_STATE(7755)] = 243664, + [SMALL_STATE(7756)] = 243674, + [SMALL_STATE(7757)] = 243684, + [SMALL_STATE(7758)] = 243694, + [SMALL_STATE(7759)] = 243704, + [SMALL_STATE(7760)] = 243714, + [SMALL_STATE(7761)] = 243724, + [SMALL_STATE(7762)] = 243734, + [SMALL_STATE(7763)] = 243744, + [SMALL_STATE(7764)] = 243754, + [SMALL_STATE(7765)] = 243764, + [SMALL_STATE(7766)] = 243774, + [SMALL_STATE(7767)] = 243784, + [SMALL_STATE(7768)] = 243794, + [SMALL_STATE(7769)] = 243804, + [SMALL_STATE(7770)] = 243814, + [SMALL_STATE(7771)] = 243824, + [SMALL_STATE(7772)] = 243834, + [SMALL_STATE(7773)] = 243844, + [SMALL_STATE(7774)] = 243854, + [SMALL_STATE(7775)] = 243864, + [SMALL_STATE(7776)] = 243874, + [SMALL_STATE(7777)] = 243884, + [SMALL_STATE(7778)] = 243894, + [SMALL_STATE(7779)] = 243904, + [SMALL_STATE(7780)] = 243914, + [SMALL_STATE(7781)] = 243924, + [SMALL_STATE(7782)] = 243934, + [SMALL_STATE(7783)] = 243944, + [SMALL_STATE(7784)] = 243954, + [SMALL_STATE(7785)] = 243964, + [SMALL_STATE(7786)] = 243974, + [SMALL_STATE(7787)] = 243984, + [SMALL_STATE(7788)] = 243994, + [SMALL_STATE(7789)] = 244004, + [SMALL_STATE(7790)] = 244014, + [SMALL_STATE(7791)] = 244024, + [SMALL_STATE(7792)] = 244034, + [SMALL_STATE(7793)] = 244044, + [SMALL_STATE(7794)] = 244054, + [SMALL_STATE(7795)] = 244064, + [SMALL_STATE(7796)] = 244074, + [SMALL_STATE(7797)] = 244084, + [SMALL_STATE(7798)] = 244094, + [SMALL_STATE(7799)] = 244104, + [SMALL_STATE(7800)] = 244114, + [SMALL_STATE(7801)] = 244124, + [SMALL_STATE(7802)] = 244134, + [SMALL_STATE(7803)] = 244144, + [SMALL_STATE(7804)] = 244154, + [SMALL_STATE(7805)] = 244164, + [SMALL_STATE(7806)] = 244174, + [SMALL_STATE(7807)] = 244184, + [SMALL_STATE(7808)] = 244194, + [SMALL_STATE(7809)] = 244204, + [SMALL_STATE(7810)] = 244214, + [SMALL_STATE(7811)] = 244224, + [SMALL_STATE(7812)] = 244234, + [SMALL_STATE(7813)] = 244244, + [SMALL_STATE(7814)] = 244254, + [SMALL_STATE(7815)] = 244264, + [SMALL_STATE(7816)] = 244274, }; 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(7909), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7699), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8020), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5963), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6262), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6286), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6310), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7664), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6929), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7804), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7874), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5305), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5370), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5686), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7568), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5324), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5581), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7671), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5556), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6772), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7819), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6872), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6328), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7791), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5884), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6123), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6124), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6125), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4965), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7287), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6677), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7573), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7778), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7547), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5152), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5153), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5570), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7294), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5155), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7295), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5412), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6290), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7747), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7795), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6899), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8058), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7909), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5886), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6063), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6069), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6126), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7160), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6523), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7689), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8053), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5106), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5564), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7370), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7329), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5468), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6248), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7945), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5781), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5947), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6372), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6373), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6383), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4862), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7692), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6404), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7984), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8034), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5142), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5148), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5633), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7556), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5241), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7610), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5501), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6417), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6762), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6162), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6289), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6296), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6308), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6905), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8001), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5232), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5354), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6333), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6917), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7774), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6909), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6307), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7883), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7972), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7920), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), - [605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), - [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6162), - [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2680), - [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6289), - [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6296), - [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6308), - [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4862), - [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4862), - [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2380), - [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2381), - [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2382), - [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2382), - [646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2530), - [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7692), - [654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2737), - [657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2714), - [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2925), - [663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(718), - [666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(37), - [669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6905), - [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7984), - [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8001), - [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5232), - [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5354), - [684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5633), - [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7556), - [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2497), - [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6333), - [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2174), - [699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1122), - [702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8), - [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5578), - [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6917), - [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(996), - [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2931), - [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3572), - [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2715), - [723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5501), - [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6417), - [729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3771), - [732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5467), - [735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5580), - [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1500), - [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1500), - [744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1675), - [747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1578), - [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2126), - [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1989), - [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7774), - [759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2431), - [762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6909), - [765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1851), - [768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6307), - [771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6153), - [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7791), - [777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1746), - [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5947), - [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2736), - [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6372), - [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6373), - [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6383), - [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4862), - [798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4862), - [801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2301), - [804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2302), - [807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2312), - [810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2312), - [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2530), - [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7692), - [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2737), - [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2714), - [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2925), - [828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(713), - [831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(79), - [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6404), - [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7984), - [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8034), - [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5142), - [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5148), - [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5633), - [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7556), - [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2497), - [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5241), - [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2498), - [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1122), - [867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4), - [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5578), - [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7610), - [876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(996), - [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2931), - [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3572), - [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2715), - [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5501), - [891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6417), - [894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4006), - [897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5407), - [900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5580), - [903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1462), - [906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1462), - [909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1633), - [912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1556), - [915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2277), - [918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1665), - [921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7795), - [924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1734), - [927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6762), - [930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1969), - [933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6371), - [936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6184), - [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7791), - [942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1685), - [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 21), - [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 21), - [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6113), - [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), - [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), - [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), - [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), - [959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6113), - [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), - [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), - [970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 101), - [972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 101), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 102), - [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 102), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 148), - [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 148), - [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 149), - [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 149), - [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), - [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), - [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), - [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), - [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 3, 0, 21), - [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 3, 0, 21), - [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4862), - [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4862), - [1031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2380), - [1034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2381), - [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2382), - [1040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2382), - [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(718), - [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6905), - [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8001), - [1055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5232), - [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5354), - [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6333), - [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2174), - [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1122), - [1070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8), - [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5578), - [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6917), - [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(996), - [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3771), - [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5467), - [1088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5580), - [1091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1500), - [1094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1500), - [1097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1675), - [1100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1578), - [1103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2126), - [1106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1989), - [1109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7774), - [1112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2431), - [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6909), - [1118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1851), - [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6307), - [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6153), - [1127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7791), - [1130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1746), - [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4862), - [1136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4862), - [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2301), - [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2302), - [1145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2312), - [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2312), - [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(713), - [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(79), - [1157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6404), - [1160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(8034), - [1163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5142), - [1166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5148), - [1169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5241), - [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2498), - [1175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1122), - [1178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4), - [1181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5578), - [1184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7610), - [1187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(996), - [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4006), - [1193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5407), - [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5580), - [1199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1462), - [1202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1462), - [1205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1633), - [1208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), - [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2277), - [1214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1665), - [1217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7795), - [1220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1734), - [1223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6762), - [1226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1969), - [1229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6371), - [1232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6184), - [1235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7791), - [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1685), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5927), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7912), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7696), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7696), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6600), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), - [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5998), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6876), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6346), - [1265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), - [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5740), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7764), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6649), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7934), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), - [1303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7764), - [1306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(5927), - [1309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7912), - [1312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7696), - [1315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7696), - [1318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(105), - [1321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6649), - [1324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(8058), - [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), - [1329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(42), - [1332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7934), - [1335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(5998), - [1338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(5998), - [1341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6876), - [1344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6346), - [1347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(1902), - [1350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6899), - [1353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(1668), - [1356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(179), - [1359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(8053), - [1362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5927), - [1365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7912), - [1368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7696), - [1371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7696), - [1374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(105), - [1377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6600), - [1380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(8058), - [1383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(32), - [1386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7945), - [1389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5998), - [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5998), - [1395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6876), - [1398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6346), - [1401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(1902), - [1404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6899), - [1407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(1668), - [1410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(175), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 39), - [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6707), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 39), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), - [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 38), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 38), - [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 136), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6710), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 136), - [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6685), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), - [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6704), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 135), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 135), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 133), - [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 133), - [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 134), - [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 134), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6118), - [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), - [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), - [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), - [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [1619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(242), - [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [1630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2832), - [1633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(315), - [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6115), - [1638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6118), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [1645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(254), - [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [1656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT(2832), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [1685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6104), - [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 23), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 2, 0, 0), - [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5673), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), - [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 23), - [1700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6115), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 87), - [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 3, 0, 0), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 87), - [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), - [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), - [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), - [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), - [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), - [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 215), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6114), - [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 215), - [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 183), - [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 183), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5669), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), - [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), - [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), - [1759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(381), - [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), - [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), - [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), - [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), - [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), - [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), - [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), - [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), - [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), - [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 185), - [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 185), - [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 216), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 216), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 217), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 217), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 215), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 215), - [1828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6104), - [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 240), - [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 240), - [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 217), - [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 217), - [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 240), - [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 240), - [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), - [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), - [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 103), - [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 103), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 184), - [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 184), - [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 21), - [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 21), - [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 150), - [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 150), - [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 153), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 153), - [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 150), - [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 150), - [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 183), - [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 183), - [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 184), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 184), - [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 185), - [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 185), - [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 216), - [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 216), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6105), - [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 121), - [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 121), - [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [1935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 22), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5670), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), - [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 22), - [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 114), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 114), - [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [1957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6114), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 86), - [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 86), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 85), - [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 85), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), - [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4667), - [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4788), - [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), - [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), - [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6617), - [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4711), - [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4562), - [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), - [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5541), - [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5542), - [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7889), - [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), - [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), - [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), - [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4864), - [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4829), - [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7852), - [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4669), - [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6842), - [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), - [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6222), - [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5978), - [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7304), - [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), - [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [2066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 84), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 84), - [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [2078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6105), - [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), - [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), - [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 39), - [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 39), - [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 40), - [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), - [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 40), - [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), - [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 40), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 40), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 125), - [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 4, 0, 0), - [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 125), - [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 174), - [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 5, 0, 0), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 174), - [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), - [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), - [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5667), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4759), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4801), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4870), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6609), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4758), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4770), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5510), - [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5511), - [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7799), - [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5087), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4942), - [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7826), - [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4803), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6524), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4755), - [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6210), - [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), - [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7011), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4891), - [2203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [2207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), - [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), - [2211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), - [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), - [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [2235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7142), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 120), - [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 120), - [2255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), - [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), - [2259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 21), - [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 21), - [2263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 71), - [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 71), - [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [2271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 19), - [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 52), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 105), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [2295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 71), - [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 71), - [2299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), - [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 19), - [2303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), - [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 19), - [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 6), - [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 6), - [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), - [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), - [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), - [2321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(593), - [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 51), - [2326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 10, 0, 240), - [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 10, 0, 240), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), - [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), - [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 130), - [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 130), - [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 103), - [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 103), - [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 153), - [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 153), - [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 150), - [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 150), - [2356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(599), - [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 183), - [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 183), - [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 184), - [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 184), - [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 185), - [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 185), - [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 215), - [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 215), - [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 18), - [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 18), - [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 216), - [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 216), - [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 217), - [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 217), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7123), - [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), - [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 17), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 17), - [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), - [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 38), - [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 38), - [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 122), - [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 122), - [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 123), - [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 123), - [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 124), - [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 124), - [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 167), - [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 167), - [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 168), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 168), - [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 169), - [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 169), - [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 170), - [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 170), - [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 171), - [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 171), - [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 172), - [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 172), - [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 173), - [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 173), - [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), - [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), - [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), - [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), - [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 5, 0, 0), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6633), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5558), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), - [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7876), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6477), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), - [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7674), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7674), - [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [2511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1618), - [2514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1649), - [2517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1695), - [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), - [2522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(703), - [2525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(52), - [2528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6633), - [2531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1616), - [2534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1607), - [2537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(18), - [2540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5558), - [2543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5559), - [2546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1265), - [2549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1265), - [2552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1327), - [2555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1272), - [2558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1944), - [2561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1719), - [2564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7876), - [2567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1677), - [2570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6477), - [2573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1954), - [2576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6246), - [2579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6026), - [2582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7674), - [2585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7674), - [2588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1702), - [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 3, 0, 0), - [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 4, 0, 0), - [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 3, 0, 0), - [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 2, 0, 0), - [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 4, 0, 0), - [2601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1618), - [2604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1649), - [2607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1695), - [2610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(3048), - [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), - [2615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(703), - [2618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(52), - [2621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6633), - [2624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1616), - [2627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1607), - [2630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(18), - [2633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5558), - [2636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5559), - [2639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1265), - [2642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1265), - [2645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1327), - [2648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1272), - [2651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1944), - [2654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1719), - [2657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7876), - [2660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1677), - [2663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6477), - [2666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1954), - [2669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6246), - [2672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6026), - [2675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7674), - [2678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7674), - [2681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1702), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6568), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5493), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), - [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7812), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6885), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6227), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5989), - [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6661), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5230), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), - [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), - [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8026), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6224), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7667), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7667), - [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [2786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1775), - [2789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1725), - [2792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1852), - [2795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(714), - [2798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(45), - [2801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6568), - [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1807), - [2807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1774), - [2810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(12), - [2813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5493), - [2816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5494), - [2819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1287), - [2822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1287), - [2825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1408), - [2828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1308), - [2831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(2028), - [2834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1950), - [2837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7812), - [2840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1728), - [2843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6885), - [2846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(2042), - [2849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6227), - [2852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5989), - [2855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1827), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(738), - [2875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(691), - [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [2884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(692), - [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6806), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7337), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6773), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5486), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), - [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5406), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6776), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5915), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6303), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6298), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), - [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6112), - [3009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(738), - [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [3020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6112), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6111), - [3039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6415), - [3042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6806), - [3045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7337), - [3048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(724), - [3051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(33), - [3054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6773), - [3057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7), - [3060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5486), - [3063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(32), - [3066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5487), - [3069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7945), - [3072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5406), - [3075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5406), - [3078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5650), - [3081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5515), - [3084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3122), - [3087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3054), - [3090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(8026), - [3093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6390), - [3096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6776), - [3099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5801), - [3102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6224), - [3105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6032), - [3108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(705), - [3111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7667), - [3114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7667), - [3117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3180), - [3120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [3123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6496), - [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6151), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), - [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), - [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [3170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6111), - [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [3175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 83), - [3201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 83), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [3207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), - [3211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5552), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), - [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [3247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_return, 1, 0, 0), - [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 1, 0, 0), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7610), - [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [3261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), - [3265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6834), - [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6008), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), - [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6552), - [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6142), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), - [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7671), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6596), - [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), - [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7101), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6641), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), - [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6689), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), - [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6697), - [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8040), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6163), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), - [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7932), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6266), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), - [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), - [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6476), - [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8038), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5562), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), - [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [3521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), - [3523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7899), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6456), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6256), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), - [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4196), - [3537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [3540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [3553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6637), - [3555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8036), - [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5560), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5561), - [3565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), - [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), - [3577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7888), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6497), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6251), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), - [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), - [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [3593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), - [3597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), - [3599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 82), - [3603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 82), - [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), - [3607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6848), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6480), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6629), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), - [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7485), - [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5505), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), - [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5422), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6785), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6653), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5503), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), - [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), - [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5021), - [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7864), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6606), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6242), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6013), - [3713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), - [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5535), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), - [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), - [3747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6848), - [3750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6461), - [3753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6480), - [3756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(3228), - [3759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1244), - [3762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(81), - [3765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6629), - [3768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(184), - [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), - [3773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7566), - [3776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5505), - [3779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5506), - [3782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5422), - [3785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5422), - [3788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5622), - [3791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5513), - [3794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(2126), - [3797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1989), - [3800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7774), - [3803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6785), - [3806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6909), - [3809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1851), - [3812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7674), - [3815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7674), - [3818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1991), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6494), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6908), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7219), - [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5526), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), - [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5449), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5519), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), - [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7684), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7684), - [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6685), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5516), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), - [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7942), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6658), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), - [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [3891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5548), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), - [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7951), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [3933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), - [3935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1235), - [3938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1235), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), - [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7145), - [3945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(7791), - [3952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), - [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6645), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), - [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), - [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7910), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6601), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6062), - [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [4018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7791), - [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6021), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6975), - [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), - [4029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [4031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1264), - [4034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1253), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7566), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [4053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6021), - [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6582), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [4072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6062), - [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5997), - [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [4087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [4089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [4109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5997), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6760), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5993), - [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [4158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [4162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7797), - [4176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6613), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6033), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), - [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), - [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7840), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6928), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6234), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), - [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), - [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6254), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7810), - [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6894), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6155), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6156), - [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5229), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5500), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), - [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6257), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7749), - [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6825), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [4256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6019), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7532), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7264), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7028), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6621), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5488), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5579), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7285), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), - [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5243), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6300), - [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7083), - [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [4328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5993), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7545), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7607), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7974), - [4339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6190), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6191), - [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5632), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5903), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7560), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7872), - [4361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), - [4365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [4377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6100), - [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6763), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6413), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), - [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5410), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5661), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6781), - [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7731), - [4413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6926), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5968), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5969), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6524), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6210), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5953), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7255), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7241), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7885), - [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6514), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), - [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5568), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6973), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6842), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8029), - [4501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6657), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5990), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), - [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), - [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7921), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6622), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6261), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), - [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7968), - [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6002), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), - [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7789), - [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6605), - [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6014), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6015), - [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4970), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5783), - [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4760), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), - [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6091), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [4621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(3201), - [4624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(3196), - [4627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(3193), - [4630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(1236), - [4633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), - [4635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(58), - [4638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(6645), - [4641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(182), - [4644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(5496), - [4647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(5499), - [4650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(2685), - [4653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(2685), - [4656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(2797), - [4659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(2772), - [4662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(3248), - [4665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(3212), - [4668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(7910), - [4671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(3213), - [4674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(6601), - [4677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(3297), - [4680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(7667), - [4683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(7667), - [4686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(3312), - [4689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6100), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [4722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [4724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7031), - [4732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5537), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7008), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [4746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6091), - [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5652), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), - [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6092), - [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5627), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [4845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6036), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [4853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [4865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [4877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), - [4879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [4895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5653), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [4907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6092), - [4910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [4920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), - [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5635), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), - [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [4930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), - [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), - [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [4942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), - [4944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [4950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), - [4952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), - [4954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [4962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), - [4964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [4974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6036), - [4977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), - [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4890), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), - [4991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), - [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [4997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 21), - [5007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 21), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8060), - [5013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8060), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), - [5023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), - [5025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7971), - [5031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7971), - [5033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 15), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6432), - [5039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 21), - [5041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 21), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [5045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 2, 0, 29), - [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 186), - [5049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 186), - [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 43), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6982), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8030), - [5067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8030), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [5071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5071), - [5073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6046), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [5085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [5091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [5095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), - [5097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 0, 0), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), - [5101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7832), - [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7832), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7161), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [5115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6625), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [5119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), - [5123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 10, 0), - [5125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 10, 0), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [5129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 96), - [5131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 96), - [5133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 97), - [5135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 97), - [5137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 142), - [5139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 142), - [5141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 143), - [5143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 143), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [5147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [5149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [5151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), - [5153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), - [5155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6046), - [5158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 96), - [5160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 96), - [5162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 97), - [5164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 97), - [5166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 142), - [5168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 142), - [5170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 143), - [5172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 143), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7266), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [5178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), - [5180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), - [5182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), - [5184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), - [5186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), - [5188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), - [5190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 159), - [5192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 159), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6955), - [5196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5986), - [5199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6150), - [5202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 8), - [5208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 8), - [5210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 50), - [5212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 50), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [5218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [5224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [5227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [5229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [5231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [5233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 7), - [5235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 7), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [5239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6068), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [5247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5698), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5705), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6669), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5637), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), - [5267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [5277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2512), - [5280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), - [5282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), - [5284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), - [5286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), - [5288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), - [5290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), - [5292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 159), - [5294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 159), - [5296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 192), - [5298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 192), - [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [5308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 192), - [5310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 192), - [5312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 193), - [5314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 193), - [5316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6068), - [5319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6172), - [5321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7695), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7695), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7976), - [5327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7976), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7327), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), - [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4934), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [5339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), - [5341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), - [5343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), - [5345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), - [5347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), - [5349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), - [5351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5599), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), - [5355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), - [5357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), - [5359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), - [5361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [5387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 192), SHIFT(2512), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [5400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [5402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), SHIFT(2512), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [5421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), SHIFT(2512), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6995), - [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5080), - [5432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6693), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), - [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [5472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), SHIFT(2512), - [5475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5695), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), - [5483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), - [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), - [5489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [5493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6172), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), - [5526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6946), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [5540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [5544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [5548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6681), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [5554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), - [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), - [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), - [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), - [5562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [5566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), - [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [5580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 147), SHIFT_REPEAT(7695), - [5583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 147), SHIFT_REPEAT(7695), - [5586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 147), SHIFT_REPEAT(7976), - [5589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 147), SHIFT_REPEAT(7976), - [5592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 147), SHIFT_REPEAT(5998), - [5595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 147), SHIFT_REPEAT(6876), - [5598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 147), SHIFT_REPEAT(6346), - [5601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 147), SHIFT_REPEAT(6776), - [5604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 147), SHIFT_REPEAT(5801), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6665), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [5619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [5621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), - [5623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [5627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [5635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), - [5637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), - [5639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [5647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6116), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6097), - [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6109), - [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [5663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [5667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [5671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6116), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7813), - [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7813), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), - [5688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7912), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6771), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [5694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [5708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6109), - [5711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6199), - [5714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [5718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6102), - [5720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6097), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [5727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2832), - [5730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [5738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2844), - [5741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), - [5743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6924), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [5747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6934), - [5749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6722), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [5753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6102), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [5758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [5762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7272), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [5766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), - [5768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 105), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [5772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7392), - [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7360), - [5776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 19), - [5778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [5786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), - [5788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [5792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), - [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [5796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6117), - [5798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [5800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [5802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(2819), - [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [5809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2834), - [5812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 51), - [5814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 52), - [5816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), - [5818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), - [5820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6836), - [5822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7088), - [5824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5663), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), - [5828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [5832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [5834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), - [5837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5946), - [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [5843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5589), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), - [5851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), - [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7395), - [5857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [5861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6110), - [5863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5664), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8049), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [5873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6455), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7919), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6215), - [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5967), - [5881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [5883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [5886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6134), - [5890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [5894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [5902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2984), - [5905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [5909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [5913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [5917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6117), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7928), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [5926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6756), - [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5964), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), - [5936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), - [5938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6103), - [5940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [5942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 16), - [5944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [5948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 16), - [5950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [5964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [5966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [5971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [5979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5620), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), - [5983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5660), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [5993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 201), - [5995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 201), - [5997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3045), - [6000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), - [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [6004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6110), - [6007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [6011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [6013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [6015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [6017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3048), - [6020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [6034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), - [6036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), - [6038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [6042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [6044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [6048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [6050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [6066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [6074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6103), - [6077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), - [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7194), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [6085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), - [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [6089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5656), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), - [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [6101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), - [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [6105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), - [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [6109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), - [6111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), - [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [6115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3185), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [6124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3228), - [6127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 203), - [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [6131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 203), - [6133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 203), - [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [6137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 203), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [6143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [6145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [6147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), - [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [6151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 10, 233), - [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [6155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 10, 233), - [6157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 233), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [6161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 233), - [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [6169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [6185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [6189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [6191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [6197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 10, 203), - [6199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 10, 203), - [6201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 203), - [6203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 203), - [6205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [6207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), - [6210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 10, 233), - [6212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 10, 233), - [6214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 233), - [6216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 233), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7062), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [6230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 1, 0, 0), - [6232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 1, 0, 0), - [6234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 111), - [6236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 111), - [6238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 112), - [6240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 112), - [6242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 197), - [6244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 197), - [6246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 199), - [6248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 199), - [6250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [6252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 231), - [6254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 231), - [6256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 201), - [6258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 201), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6476), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [6264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [6272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6894), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [6306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 198), - [6308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 198), - [6310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6074), - [6312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6074), - [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [6319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [6325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [6333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), - [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [6339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), - [6367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), - [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7637), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [6417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), - [6419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), - [6421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), - [6423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 179), SHIFT_REPEAT(5566), - [6426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 179), SHIFT_REPEAT(5454), - [6429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 179), SHIFT_REPEAT(5457), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [6462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [6470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [6474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6099), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [6498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [6504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [6512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5588), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), - [6516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [6520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [6524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [6528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6099), - [6531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6834), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7588), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7305), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7306), - [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6929), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), - [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7809), - [6583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 98), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [6587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3662), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), - [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7792), - [6604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7811), - [6606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8002), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6010), - [6614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5630), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), - [6618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [6630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6108), - [6632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5252), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), - [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [6638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5315), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [6648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6010), - [6651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6108), - [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5445), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), - [6658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5472), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [6666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), - [6668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), - [6674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5321), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), - [6678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6095), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), - [6691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), - [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), - [6695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6883), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), - [6713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5402), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7084), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [6779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5611), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [6839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [6843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5596), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [6849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), - [6851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7901), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7901), - [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4839), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [6863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7933), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7933), - [6925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), - [6927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), - [6929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 1, 0, 0), - [6931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [6957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6637), - [6975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6605), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [6997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), - [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4802), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), - [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4189), - [7011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), - [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), - [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4390), - [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), - [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4751), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), - [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4332), - [7043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), - [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4996), - [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), - [7059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), - [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), - [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), - [7077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4853), - [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4704), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [7083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), - [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), - [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5101), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), - [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), - [7099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), - [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6101), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), - [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4792), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), - [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), - [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), - [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4779), - [7129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), - [7139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6653), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [7147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), - [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4429), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5657), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), - [7161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7034), - [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), - [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4910), - [7185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6101), - [7188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6098), - [7190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(4305), - [7193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5655), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), - [7197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), - [7199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4446), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), - [7207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6096), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), - [7211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5478), - [7213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6098), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6673), - [7226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4773), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), - [7238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), - [7246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [7250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), - [7252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4408), - [7254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4310), - [7256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4411), - [7258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4327), - [7260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), - [7262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), - [7264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5163), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), - [7268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6096), - [7271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4944), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), - [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4427), - [7281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4479), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [7287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4328), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7010), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), - [7293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 82), - [7295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), - [7299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5073), - [7301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5076), - [7303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), - [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), - [7311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5642), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), - [7315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [7319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4415), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), - [7323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), - [7329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4512), - [7331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), - [7333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 83), - [7335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6107), - [7337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), - [7339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), - [7341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4221), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [7345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), - [7347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [7353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), - [7355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), - [7357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), - [7365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5613), - [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), - [7369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), - [7373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), - [7377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), - [7381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), - [7383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4374), - [7385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4567), - [7387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5615), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), - [7391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), - [7393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), - [7397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), - [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), - [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), - [7405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4477), - [7407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4813), - [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), - [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [7413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 119), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7686), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), - [7425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 119), - [7427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5144), - [7430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5456), - [7433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), - [7435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7929), - [7438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7646), - [7441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7807), - [7444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7905), - [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), - [7451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), - [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), - [7455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), - [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [7459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), - [7461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4595), - [7463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4820), - [7465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [7467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), - [7471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 62), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), - [7475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 62), - [7477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6107), - [7480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), - [7482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), - [7488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6080), - [7491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5649), - [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), - [7495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 74), - [7497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 74), - [7499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 226), - [7501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 128), - [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [7507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 191), - [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [7511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6054), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [7516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 226), - [7518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 128), - [7520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 226), SHIFT(738), - [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [7527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), - [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [7533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), SHIFT(738), - [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [7538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), - [7540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 80), - [7542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 80), - [7544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 190), - [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [7548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4842), - [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [7552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), - [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), - [7556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5644), - [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), - [7560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [7562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [7564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), - [7566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), - [7568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), SHIFT(738), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [7573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4823), - [7575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 128), - [7577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 32), - [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [7583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 32), - [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [7587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 128), SHIFT(738), - [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [7592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 32), - [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [7600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 107), - [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [7604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 107), - [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), - [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), - [7610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5659), - [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), - [7614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), - [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), - [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), - [7620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4846), - [7622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4847), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), - [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), - [7628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), - [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), - [7632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), - [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), - [7636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), - [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), - [7640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4843), - [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [7644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6106), - [7646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(738), - [7649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), - [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6750), - [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7929), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7646), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7807), - [7661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7905), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6751), - [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), - [7673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6872), - [7675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [7677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6328), - [7679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6149), - [7681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5375), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [7687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4693), - [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), - [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [7694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 10, 73), - [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [7700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4989), - [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [7704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4763), - [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), - [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), - [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), - [7712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5085), - [7714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), - [7716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(410), - [7719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6477), - [7721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [7723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6371), - [7725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6184), - [7727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5065), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [7733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4917), - [7735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4794), - [7737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5050), - [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [7741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 165), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), - [7745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 165), - [7747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4879), - [7749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4887), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [7753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 59), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), - [7757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 59), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [7761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5666), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), - [7767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4892), - [7769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5058), - [7771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5018), - [7773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 118), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), - [7777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 118), - [7779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 10, 4), - [7781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [7783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(738), - [7786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), - [7788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 10, 36), - [7790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 10, 37), - [7792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_cmd, 2, 0, 13), - [7794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_cmd, 2, 0, 13), - [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7517), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), - [7800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [7802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6886), - [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6893), - [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [7812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), - [7816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [7818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 117), - [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), - [7822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 117), - [7824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6121), - [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), - [7828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6386), - [7830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6517), - [7832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [7834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), SHIFT(738), - [7837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5960), - [7841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(284), - [7844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 24), - [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6540), - [7848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), - [7850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(456), - [7853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 75), - [7855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 75), - [7857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(419), - [7860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(419), - [7863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), - [7865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), SHIFT(738), - [7868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), - [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [7872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), SHIFT(738), - [7875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), - [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [7879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 155), SHIFT(738), - [7882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 155), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [7886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(6183), - [7889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5060), - [7891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(738), - [7894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), - [7896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 76), - [7898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 76), - [7900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), SHIFT(738), - [7903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), - [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), - [7907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 57), - [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [7911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6856), - [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), - [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), - [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), - [7919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), - [7921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), - [7923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 78), - [7925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 78), - [7927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 79), - [7929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 79), - [7931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), SHIFT(738), - [7934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), - [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), - [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), - [7942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 10, 73), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [7946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(6200), - [7949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6106), - [7952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 164), - [7954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 164), - [7956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), - [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), - [7960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 155), SHIFT(738), - [7963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 155), - [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [7967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [7971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 10, 36), - [7973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 234), - [7975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 234), - [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7319), - [7979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(738), - [7982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), - [7984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4997), - [7986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5368), - [7988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 10, 36), - [7990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), - [7992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), - [7994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 10, 4), - [7996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 204), - [7998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 204), - [8000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 10, 37), - [8002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 10, 73), - [8004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(277), - [8007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(286), - [8010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5009), - [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), - [8014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 10, 37), - [8016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), SHIFT(738), - [8019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), - [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), - [8023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), SHIFT(738), - [8026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), - [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [8030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(292), - [8033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 10, 4), - [8035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 187), SHIFT(738), - [8038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 187), - [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [8044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5156), - [8046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5352), - [8048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 187), SHIFT(738), - [8051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 187), - [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [8055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), SHIFT(738), - [8058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), - [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [8062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5658), - [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), - [8066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4314), - [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), - [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), - [8074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), - [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), - [8078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), - [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), - [8082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 132), - [8084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 132), - [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [8088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6832), - [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), - [8092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5555), - [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), - [8096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5702), - [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6954), - [8100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 119), - [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), - [8104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 119), - [8106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 117), - [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), - [8110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 117), - [8112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), - [8114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), - [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), - [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6826), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), - [8126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [8128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [8130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 2, 0, 0), - [8132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 108), - [8134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 59), - [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), - [8140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 59), - [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), - [8144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 62), - [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), - [8148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 62), - [8150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 33), - [8152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 126), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6554), - [8158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 33), - [8160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 33), - [8162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), - [8164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 5), - [8166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 93), - [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), - [8170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 93), - [8172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6963), - [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), - [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), - [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), - [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [8182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 110), - [8184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), - [8186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 113), - [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), - [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), - [8192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 108), - [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [8196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 1), - [8198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 1), - [8200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 2), - [8202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 2), - [8204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 113), - [8206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 113), - [8208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 110), - [8210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 113), - [8212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [8214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6582), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), - [8220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6139), - [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [8224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 58), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), - [8228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 58), - [8230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [8232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [8234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5328), - [8236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 110), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [8240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 94), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [8244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 94), - [8246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 165), - [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), - [8250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 165), - [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6827), - [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6828), - [8256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), - [8258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), - [8260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), - [8262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), - [8264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 118), - [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), - [8268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 118), - [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), - [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), - [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [8276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6868), - [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), - [8280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5583), - [8282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5863), - [8284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5766), - [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), - [8288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 161), - [8290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 110), - [8292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 162), - [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), - [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7528), - [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6931), - [8300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 62), - [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), - [8306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 62), - [8308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 244), - [8310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 222), - [8312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 161), - [8314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 263), - [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), - [8320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 95), - [8322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 95), - [8324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 245), - [8326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 246), - [8328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 63), - [8330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 63), - [8332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 220), - [8334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5266), - [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), - [8338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), - [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7837), - [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [8344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7065), - [8346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6645), - [8348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), - [8350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [8352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 1), - [8354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 162), - [8356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 224), - [8358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 165), - [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), - [8362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 5, 0, 165), - [8364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 225), - [8366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), - [8368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 126), - [8370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), - [8372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5540), - [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6535), - [8376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7651), - [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), - [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), - [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), - [8384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 61), - [8386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 61), - [8388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 273), - [8390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 223), - [8392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 242), - [8394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 241), - [8396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6431), - [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6055), - [8400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6055), - [8402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6770), - [8404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6306), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), - [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), - [8410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 115), - [8412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 115), - [8414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 188), - [8416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 256), - [8418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5446), - [8420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5546), - [8422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 257), - [8424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 116), - [8426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 116), - [8428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [8430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [8432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), - [8434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 21), - [8436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 21), - [8438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 60), - [8440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 60), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), - [8444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6264), - [8446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 258), - [8448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), - [8450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), - [8452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), - [8454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), - [8456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 117), - [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), - [8460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 117), - [8462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 271), - [8464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 259), - [8466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7119), - [8468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 118), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), - [8472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 118), - [8474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 54), - [8476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 119), - [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), - [8480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 119), - [8482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 260), - [8484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 20), - [8486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 247), - [8488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 264), - [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6760), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [8494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 248), - [8496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 261), - [8498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 262), - [8500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), - [8502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), - [8504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 221), - [8506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 208), - [8508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 208), - [8510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 210), - [8512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 210), - [8514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 266), - [8516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), - [8518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), - [8520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 211), - [8522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 211), - [8524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 267), - [8526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 243), - [8528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 5), - [8530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 268), - [8532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 2), - [8534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(5456), - [8537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 163), - [8539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 163), - [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), - [8543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 218), - [8545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 219), - [8547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), - [8549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 238), - [8551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 238), - [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), - [8555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6027), - [8557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6624), - [8559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6278), - [8561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 270), - [8563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 189), - [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), - [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), - [8569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 269), - [8571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 249), - [8573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 21), - [8575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 21), - [8577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 250), - [8579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 59), - [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), - [8583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 59), - [8585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 272), - [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), - [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7874), - [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), - [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), - [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8038), - [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), - [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), - [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6697), - [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8040), - [8609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, 0, 165), - [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), - [8613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 6, 0, 165), - [8615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), - [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6596), - [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8034), - [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), - [8627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5465), - [8629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), - [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), - [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), - [8635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), - [8637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 140), - [8639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 140), - [8641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 118), - [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), - [8645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 5, 0, 118), - [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), - [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5687), - [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), - [8655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5401), - [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6689), - [8663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 67), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), - [8667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5647), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [8671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 119), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), - [8675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 5, 0, 119), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), - [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6825), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7477), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6769), - [8689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 127), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [8693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5547), - [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), - [8697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5417), - [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), - [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6552), - [8703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 59), - [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), - [8707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 59), - [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), - [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6464), - [8717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5567), - [8719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5672), - [8721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 127), - [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6496), - [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8001), - [8731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 62), - [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), - [8735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 62), - [8737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 117), - [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), - [8741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 5, 0, 117), - [8743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 3, 0, 67), - [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), - [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), - [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), - [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8036), - [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), - [8757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), - [8759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5679), - [8762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5647), - [8765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), - [8767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5741), - [8769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5020), - [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), - [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6944), - [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6533), - [8777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5665), - [8779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773), - [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7118), - [8783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [8785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [8787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [8789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [8791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5962), - [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6136), - [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6137), - [8797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6268), - [8799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6665), - [8801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), - [8803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), - [8805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), - [8807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), - [8809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6673), - [8811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5046), - [8813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4874), - [8815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6629), - [8817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5677), - [8819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5873), - [8821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5720), - [8823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6826), - [8825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6141), - [8827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6879), - [8829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6233), - [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), - [8833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5780), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), - [8839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [8841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [8843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6704), - [8845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [8847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), - [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), - [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5607), - [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), - [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), - [8861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), - [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), - [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6864), - [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6866), - [8869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6136), - [8871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6137), - [8873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4807), - [8875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4566), - [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [8879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5767), - [8881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6173), - [8883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5925), - [8885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6280), - [8887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7528), - [8889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6931), - [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [8899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6535), - [8901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5675), - [8903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5846), - [8905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5719), - [8907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6231), - [8909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7477), - [8911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6769), - [8913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5791), - [8916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5780), - [8919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5527), - [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), - [8923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5296), - [8925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5151), - [8927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [8929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [8931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [8933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [8935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), - [8937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), - [8939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), - [8941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), - [8943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4442), - [8945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), - [8947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), - [8949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), - [8951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), - [8953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), - [8955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), - [8957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), - [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6941), - [8961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6932), - [8963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5674), - [8965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5569), - [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), - [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), - [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), - [8973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6134), - [8976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5592), - [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), - [8980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4905), - [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), - [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6518), - [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6522), - [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), - [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), - [8992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [8994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [8996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 59), - [8998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 5, 0, 59), - [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), - [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), - [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5775), - [9008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, 0, 117), - [9010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 6, 0, 117), - [9012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), - [9014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 9), - [9016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, 0, 118), - [9018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 6, 0, 118), - [9020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 62), - [9022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 5, 0, 62), - [9024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, 0, 119), - [9026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 6, 0, 119), - [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), - [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6926), - [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), - [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), - [9036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 11), - [9038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 11), - [9040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 7, 0, 165), - [9042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 7, 0, 165), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), - [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6431), - [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), - [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), - [9054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5634), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5907), - [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), - [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), - [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6514), - [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), - [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), - [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), - [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [9074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5817), - [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), - [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), - [9080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6429), - [9082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6430), - [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6681), - [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [9096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784), - [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6710), - [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [9110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5628), - [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), - [9114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5586), - [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), - [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), - [9120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5820), - [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [9124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5962), - [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), - [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6278), - [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6770), - [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), - [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), - [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), - [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), - [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7080), - [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7081), - [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), - [9147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6084), - [9149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5832), - [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), - [9153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5849), - [9155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5851), - [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), - [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5902), - [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [9163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5848), - [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7715), - [9167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6145), - [9170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6139), - [9173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6133), - [9176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5965), - [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5929), - [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), - [9183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5913), - [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [9187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7355), - [9189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7357), - [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), - [9193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5088), - [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), - [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), - [9199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, 0, 236), - [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), - [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [9205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, 0, 237), - [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6253), - [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), - [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), - [9217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 209), SHIFT_REPEAT(5908), - [9220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 209), - [9222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 209), SHIFT_REPEAT(6433), - [9225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 209), SHIFT_REPEAT(4863), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7622), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), - [9232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(6121), - [9235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(6121), - [9238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5264), - [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7063), - [9244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7097), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5551), - [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6324), - [9250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6305), - [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [9254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), - [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), - [9258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5037), - [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), - [9262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), - [9264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), - [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), - [9268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, 0, 178), - [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), - [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), - [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [9288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5646), - [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), - [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7668), - [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7670), - [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), - [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), - [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [9302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6088), - [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), - [9307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, 0, 177), - [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6338), - [9313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6084), - [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [9318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), - [9322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7575), - [9324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6324), - [9327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6305), - [9330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7729), - [9332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5699), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), - [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6186), - [9338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 95), - [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), - [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), - [9348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6293), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [9352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 88), - [9354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 42), - [9356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6896), - [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), - [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), - [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), - [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), - [9372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5769), - [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6316), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [9386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), - [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [9390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6321), - [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [9396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 44), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6553), - [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6301), - [9406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6255), - [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6349), - [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6887), - [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), - [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), - [9416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5629), - [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), - [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), - [9422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), - [9426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 27), - [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6406), - [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [9436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799), - [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), - [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6569), - [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [9446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), - [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6676), - [9452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 28), - [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), - [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), - [9462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), - [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6987), - [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [9470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), - [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), - [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), - [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), - [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6583), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [9482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), - [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6572), - [9488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 254), - [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6281), - [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), - [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6766), - [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7843), - [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [9504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 255), - [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6282), - [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6597), - [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [9516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [9518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5976), - [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), - [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), - [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [9537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4783), - [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), - [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6852), - [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), - [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [9555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6761), - [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), - [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), - [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6614), - [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [9571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6618), - [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [9585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [9593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4688), - [9595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), - [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [9607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), - [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6626), - [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [9617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), - [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [9623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7121), - [9627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7135), - [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [9631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7286), - [9633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), - [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6642), - [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), - [9639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), - [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6646), - [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [9645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), - [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), - [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), - [9651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), - [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6654), - [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [9657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), - [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6662), - [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [9663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6666), - [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), - [9669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), - [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6670), - [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [9675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), - [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6674), - [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [9681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), - [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6678), - [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [9687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6682), - [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [9693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [9695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5097), - [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), - [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), - [9701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4663), - [9703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), - [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6690), - [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [9709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), - [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6698), - [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [9715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), - [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6702), - [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [9721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6705), - [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [9727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6708), - [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [9733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), - [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [9739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6713), - [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [9745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6715), - [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [9751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), - [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6717), - [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [9757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), - [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6719), - [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [9763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [9769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), - [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), - [9773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5946), - [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), - [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), - [9782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 13), - [9784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6325), - [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [9788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), - [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [9792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6295), - [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), - [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6418), - [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6302), - [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6352), - [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6888), - [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [9808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [9812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 1, 0, 0), - [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6275), - [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [9828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5643), - [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), - [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6516), - [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [9838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), - [9840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), - [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), - [9844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(97), - [9847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(6896), - [9850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), - [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [9854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5297), - [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), - [9858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5348), - [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), - [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [9868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5697), - [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), - [9872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5349), - [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), - [9876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5316), - [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), - [9880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5317), - [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), - [9884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5318), - [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), - [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [9896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5461), - [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), - [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), - [9902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5625), - [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), - [9906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7226), - [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), - [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), - [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [9918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6170), - [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), - [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [9924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5437), - [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), - [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), - [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6791), - [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7133), - [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), - [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6223), - [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7085), - [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [9956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6121), - [9959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6121), - [9962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(92), - [9965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(7226), - [9968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), - [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), - [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), - [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5892), - [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6779), - [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [9986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 236), - [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), - [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), - [9992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 237), - [9994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6724), - [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), - [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), - [10000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6727), - [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), - [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), - [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), - [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6382), - [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7535), - [10024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 254), - [10026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 255), - [10028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6212), - [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6212), - [10032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6786), - [10034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6787), - [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [10042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6841), - [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [10052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [10056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6844), - [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [10064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 177), - [10066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 178), - [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6930), - [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6780), - [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [10076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5703), - [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), - [10080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704), - [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), - [10084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5459), - [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), - [10088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5462), - [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), - [10092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5463), - [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), - [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6942), - [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7537), - [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), - [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [10104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 151), - [10106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5725), - [10108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5729), - [10110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5731), - [10112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5732), - [10114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5735), - [10116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5736), - [10118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5738), - [10120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5739), - [10122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), - [10124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 12), - [10126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 100), - [10128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7094), - [10132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [10134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5939), - [10136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [10138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [10140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5941), - [10142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 41), - [10144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [10146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5942), - [10148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 228), - [10150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), - [10152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [10154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [10156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [10158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [10160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [10162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [10164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [10166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [10168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 45), - [10170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5875), - [10172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 46), - [10174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4868), - [10176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [10178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 47), - [10180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4871), - [10182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 7, 0, 235), - [10184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(6094), - [10187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [10189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 48), - [10191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), - [10193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), - [10195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), - [10197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), - [10199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), - [10201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), - [10203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), - [10205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), - [10207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 49), - [10209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [10211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_hide, 1, 0, 0), - [10213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [10215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), - [10217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4464), - [10219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4478), - [10221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), - [10223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4508), - [10225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), - [10227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), - [10229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), - [10231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), - [10233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [10235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), - [10237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), - [10239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), - [10241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), - [10243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4453), - [10245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), - [10247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), - [10249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), - [10251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), - [10253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [10255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4491), - [10257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4493), - [10259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [10261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), - [10263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_overlay, 1, 0, 0), - [10265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), - [10267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), - [10269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), - [10271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), - [10273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), - [10275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), - [10277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), - [10279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), - [10281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 3, 0, 55), - [10283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [10285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), - [10287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5920), - [10289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), - [10291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 56), - [10293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [10295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), - [10297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), - [10299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4827), - [10301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4856), - [10303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), - [10305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), - [10307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), - [10309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4736), - [10311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4744), - [10313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4748), - [10315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4426), - [10317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 12), - [10319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [10321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [10323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), - [10325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), - [10327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [10329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [10331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4777), - [10333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), - [10335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), - [10337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), - [10339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), - [10341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), - [10343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), - [10345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), - [10347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), - [10349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [10351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5743), - [10353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [10355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6232), - [10357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), - [10359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6276), - [10361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), - [10363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), - [10365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), - [10367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [10369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), - [10371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), - [10373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), - [10375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), - [10377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 229), - [10379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), - [10381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6309), - [10383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [10385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6311), - [10387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 4, 0, 109), - [10389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [10391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [10393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [10395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [10397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [10399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [10401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [10403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [10405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [10407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5855), - [10409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5872), - [10411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [10413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [10415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [10417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5866), - [10419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [10421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [10423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [10425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [10427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [10429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [10431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [10433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [10435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 251), - [10437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [10439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [10441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [10443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 252), - [10445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [10447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [10449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [10451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [10453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [10455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [10457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [10459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [10461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 64), - [10463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [10465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [10467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [10469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 65), - [10471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6205), - [10473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), - [10475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 3, 0, 29), - [10477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), - [10479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 3, 0, 66), - [10481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), - [10483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4920), - [10485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4921), - [10487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), - [10489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [10491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [10493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 3, 0, 68), - [10495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [10497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), - [10499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), - [10501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_new, 3, 0, 69), - [10503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), - [10505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), - [10507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), - [10509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 227), - [10511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5798), - [10513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), - [10515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), - [10517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [10519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [10521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [10523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [10525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5534), - [10527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), - [10529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), - [10531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [10533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [10535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [10537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), - [10539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [10541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [10543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), - [10545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4407), - [10547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), - [10549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), - [10551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), - [10553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), - [10555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4848), - [10557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [10559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), - [10561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), - [10563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), - [10565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), - [10567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), - [10569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), - [10571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [10573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [10575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [10577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [10579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [10581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [10583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), - [10585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4223), - [10587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), - [10589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [10591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [10593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), - [10595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), - [10597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [10599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4836), - [10601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), - [10603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), - [10605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [10607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [10609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [10611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [10613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [10615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [10617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [10619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6312), - [10621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), - [10623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [10625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), - [10627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), - [10629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), - [10631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), - [10633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), - [10635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), - [10637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), - [10639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [10641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [10643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [10645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [10647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), - [10649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), - [10651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5889), - [10653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [10655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [10657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [10659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [10661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [10663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [10665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [10667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [10669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [10671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [10673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [10675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [10677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [10679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [10681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), - [10683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [10685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), - [10687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), - [10689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [10691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [10693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), - [10695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7787), - [10697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 6, 0, 214), - [10699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5585), - [10701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), - [10703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 253), - [10705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [10707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [10709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [10711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), - [10713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 137), - [10715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 138), - [10717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 139), - [10719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), - [10721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 141), - [10723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [10725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5507), - [10727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5507), - [10729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [10731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), - [10733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), - [10735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [10737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [10739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 144), - [10741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [10743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 145), - [10745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [10747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [10749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6138), - [10751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [10753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 25), - [10755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 26), - [10757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 89), - [10759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 90), - [10761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), - [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), - [10765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7212), - [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [10771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5521), - [10773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 91), - [10775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 2, 0, 30), - [10777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5779), - [10779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [10781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 92), - [10783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_list, 2, 0, 0), - [10785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 160), - [10787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 5, 0, 0), - [10789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [10791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5718), - [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7296), - [10795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4437), - [10797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 166), - [10799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4323), - [10801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4341), - [10803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [10805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), - [10807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4369), - [10809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5948), - [10811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5948), - [10813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), - [10815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5543), - [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), - [10819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5544), - [10821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), - [10823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5545), - [10825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), - [10827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4383), - [10829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), - [10831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 175), - [10833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 176), - [10835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), - [10837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), - [10839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [10841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [10843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [10845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [10847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [10849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [10851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [10853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [10855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6320), - [10857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5910), - [10859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4414), - [10861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [10863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 145), - [10865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 181), - [10867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 182), - [10869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), - [10871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), - [10873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [10875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), - [10877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [10879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), - [10881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [10883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), - [10885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 194), - [10887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [10889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [10891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 195), - [10893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 196), - [10895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), - [10897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 230), - [10899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [10903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5815), - [10905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), - [10907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), - [10909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5826), - [10911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [10913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5829), - [10915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5833), - [10917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5836), - [10919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), - [10921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [10923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), - [10925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), SHIFT_REPEAT(7094), - [10928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4560), - [10930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5582), - [10932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), - [10934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [10936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [10938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 10), - [10940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [10942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), - [10944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 10), - [10946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [10948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [10950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 99), - [10952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [10954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5749), - [10956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5753), - [10958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), - [10960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5756), - [10962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5759), - [10964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [10966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 205), - [10968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 206), - [10970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [10972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 207), - [10974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5760), - [10976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5576), - [10978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), - [10980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5572), - [10982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), - [10984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 9, 0, 265), - [10986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 82), - [10988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), - [10990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5763), - [10992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [10994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [10996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 181), - [10998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [11000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4440), - [11002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), - [11004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [11008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7540), - [11010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 214), - [11012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 182), - [11014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 10), - [11016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), - [11018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), - [11020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), - [11022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), - [11024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [11026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 3), - [11028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7033), - [11030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7061), - [11034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), - [11036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), - [11038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6018), - [11040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), - [11042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 137), - [11044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 141), - [11046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), - [11048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6971), - [11050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [11052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 3), - [11054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), - [11056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5812), - [11058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5816), - [11060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5818), - [11062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5819), - [11064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5824), - [11066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5827), - [11068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), - [11070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 70), - [11072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7632), - [11074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5835), - [11076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [11078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 51), - [11080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 19), - [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7768), - [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7570), - [11086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 52), - [11088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [11090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [11092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5747), - [11094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5750), - [11096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5751), - [11098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5752), - [11100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [11102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), - [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [11106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5757), - [11108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5758), - [11110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), - [11112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [11118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 31), - [11120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 82), - [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), - [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), - [11126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6075), - [11128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 51), - [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [11132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5723), - [11134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5726), - [11136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5727), - [11138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5728), - [11140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), - [11142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5733), - [11144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5734), - [11146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5737), - [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [11150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), - [11152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6837), - [11154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6838), - [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), - [11158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [11160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5921), - [11162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5922), - [11164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5923), - [11166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [11168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [11170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [11172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [11174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [11176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [11178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [11180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [11182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [11184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [11186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(7570), - [11189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 52), - [11191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 105), - [11193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7544), - [11197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [11201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), - [11203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), - [11205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), - [11207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), - [11209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), - [11211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), - [11213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), - [11215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), - [11217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [11221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), - [11223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), - [11225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), - [11227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), - [11229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), - [11231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), - [11233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), - [11235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), - [11237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), - [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [11241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7584), - [11243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), - [11245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7716), - [11247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [11249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [11251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [11253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), - [11255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [11257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), - [11259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), - [11261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), - [11263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [11265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), - [11267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), - [11269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8031), - [11271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [11273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), - [11275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), - [11277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), - [11279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7623), - [11281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [11283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [11285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [11287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [11289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4812), - [11291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4833), - [11293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4835), - [11295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), - [11297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4858), - [11299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [11301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7681), - [11303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4716), - [11305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), - [11307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4738), - [11309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), - [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [11313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [11315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [11317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), - [11319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), - [11321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), - [11323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), - [11325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), - [11327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [11329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), - [11331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), - [11333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), - [11335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 131), - [11337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 131), SHIFT_REPEAT(6971), - [11340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), - [11342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), - [11344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), - [11346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), - [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), - [11350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), - [11352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), - [11354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), - [11356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), - [11358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6933), - [11360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5940), - [11362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5943), - [11364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [11366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5933), - [11368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [11370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [11372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [11374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [11376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [11378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [11380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [11382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [11384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [11386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 202), - [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7604), - [11390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 4, 10, 232), - [11392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7693), - [11394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [11396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), - [11398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [11400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [11402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [11404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [11406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 4, 0, 232), - [11408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7694), - [11410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [11412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [11414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [11416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 202), - [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7727), - [11420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7953), - [11422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [11424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [11426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [11428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [11430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [11432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [11434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [11436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), - [11438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [11442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [11444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [11446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), - [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [11450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8007), - [11452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), - [11454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8050), - [11456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), - [11458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), - [11460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), - [11462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), - [11464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), - [11466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), - [11468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), - [11470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), - [11472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), - [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), - [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), - [11478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7954), - [11480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5856), - [11482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), - [11484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7659), - [11486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8015), - [11488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7298), - [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [11492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7302), - [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [11496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [11498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [11500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [11502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 10), - [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [11506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1430), - [11509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), - [11511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 10), - [11513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 10), - [11515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [11517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), - [11519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5987), - [11521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [11523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7580), - [11525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), - [11529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7581), - [11533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [11535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [11539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7455), - [11541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5959), - [11543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 105), - [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), - [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), - [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [11551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [11553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5428), - [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7858), - [11557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), - [11559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 41), - [11561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7259), - [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), - [11565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), - [11567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [11569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4466), - [11571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4468), - [11573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4471), - [11575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4489), - [11577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [11579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), - [11581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [11583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [11585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [11587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), - [11589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [11591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [11593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [11595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4492), - [11597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [11599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6120), - [11601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6159), - [11603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [11605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [11607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 152), SHIFT_REPEAT(722), - [11610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [11612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6160), - [11614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6169), - [11616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6164), - [11618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6165), - [11620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6198), - [11622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6089), - [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [11626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), - [11628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), - [11630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5972), - [11632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5975), - [11634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5945), - [11636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6758), - [11638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5985), - [11640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5994), - [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [11644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), - [11646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6005), - [11648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), - [11650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6009), - [11652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 91), - [11654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6030), - [11656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), - [11658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5896), - [11660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), - [11662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), - [11664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6042), - [11666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [11668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6045), - [11670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6051), - [11672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6053), - [11674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [11676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [11678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6020), - [11680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [11682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6060), - [11684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6061), - [11686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [11688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6066), - [11690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6067), - [11692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6072), - [11694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6073), - [11696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [11698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7965), - [11700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [11702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), - [11704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6079), - [11706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 92), - [11708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6082), - [11710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6083), - [11712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6086), - [11714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6087), - [11716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6203), - [11718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6090), - [11720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), - [11724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [11726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), - [11728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), - [11730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), - [11732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4391), - [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7977), - [11736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [11738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4438), - [11740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), - [11742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7796), - [11744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4335), - [11746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4333), - [11748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4350), - [11750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4354), - [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [11756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7881), - [11758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), - [11760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5170), - [11762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [11764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [11766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [11768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [11770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), - [11772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), - [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5883), - [11776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [11778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [11780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6441), - [11782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [11786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4393), - [11788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [11790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4394), - [11792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [11794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [11796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4764), - [11798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [11800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4765), - [11802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [11804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 4, 10, 202), - [11806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [11808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [11810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), - [11812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), - [11814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7602), - [11817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [11819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [11821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4841), - [11823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [11825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [11829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), - [11831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), - [11833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [11835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4851), - [11837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [11839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [11841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 2, 0, 35), - [11843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 2, 0, 35), - [11845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), - [11847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [11849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 180), - [11851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 180), - [11853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6485), - [11855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7654), - [11858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), - [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7835), - [11862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6551), - [11864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [11866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6513), - [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [11870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 18), - [11872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 18), - [11874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), - [11876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [11878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [11882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [11884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [11886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5171), - [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7905), - [11890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 5, 10, 232), - [11892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 5, 0, 232), - [11894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4651), - [11896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), - [11898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [11900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4656), - [11902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), - [11904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [11906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7706), - [11909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [11911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), - [11913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), - [11915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), - [11917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4456), - [11919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4482), - [11921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490), - [11923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [11925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [11927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 4, 0, 202), - [11929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [11931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [11935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7680), - [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), - [11939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), - [11941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [11943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), - [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), - [11947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), - [11949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [11951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [11953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [11955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), - [11957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [11959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), - [11961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5928), - [11963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [11965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [11967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [11969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6304), - [11971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [11973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [11975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), - [11977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [11979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [11981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [11983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [11985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [11987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), - [11989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [11991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [11993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [11995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [11997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), - [11999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [12001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [12003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), - [12005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [12007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [12009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 98), - [12011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [12013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [12015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [12017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5862), - [12019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [12021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7631), - [12023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 212), - [12025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), - [12027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 239), - [12029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [12031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [12033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), - [12035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7996), - [12037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [12039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), - [12041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), - [12043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), - [12045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), - [12047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), - [12049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 6, 0, 239), - [12051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 213), - [12053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [12055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [12057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), - [12059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [12061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [12063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [12065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), - [12067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [12069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), - [12071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), - [12073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), - [12075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [12077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [12079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [12081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [12083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [12085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), - [12087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [12089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7979), - [12091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [12093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [12095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [12097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), - [12099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), - [12101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [12103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [12105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), - [12107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), - [12109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7717), - [12111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [12113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [12115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [12117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5442), - [12119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), - [12121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [12123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [12125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [12127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [12129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [12131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [12133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), - [12135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), - [12137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [12139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7065), - [12141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), - [12143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [12145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [12147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7994), - [12149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [12151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7163), - [12153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), - [12155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), - [12157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [12159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6020), - [12161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), - [12163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), - [12165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), - [12167] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [12169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [12171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [12173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [12175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [12177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [12179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), - [12181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [12183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [12185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8028), - [12187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5389), - [12189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), - [12191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [12193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [12195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8061), - [12197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [12199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [12201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), - [12203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), - [12205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), - [12207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [12209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [12211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [12213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), - [12215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), - [12217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [12219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), - [12221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [12223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), - [12225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [12227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [12229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [12231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [12233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [12235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), - [12237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [12239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), - [12241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [12243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [12245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [12247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [12249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), - [12251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [12253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 94), - [12255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [12257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [12259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), - [12261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [12263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [12265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [12267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), - [12269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [12271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [12273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [12275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [12277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [12279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [12281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), - [12283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [12285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), - [12287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5966), - [12289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), - [12291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), - [12293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [12295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6024), - [12297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [12299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [12301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [12303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [12305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [12307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [12309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), - [12311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [12313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), - [12315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [12317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [12319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [12321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [12323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 94), - [12325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [12327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [12329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 212), - [12331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), - [12333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [12335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), - [12337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [12339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), - [12341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7124), - [12343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7582), - [12345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [12347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), - [12349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [12351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [12353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [12355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [12357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [12359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), - [12361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [12363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [12365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [12367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), - [12369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), - [12371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6314), - [12373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [12375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [12377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [12379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [12381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [12383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [12385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [12387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [12389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 94), - [12391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6315), - [12393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), - [12395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5983), - [12397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 213), - [12399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [12401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6018), - [12403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [12405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [12407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [12409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7669), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5834), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6048), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5907), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5914), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4918), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7426), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6608), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7557), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7541), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4973), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7429), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5021), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5300), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7370), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6640), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7501), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7476), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5566), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5797), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5798), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5799), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7036), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6492), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7321), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7553), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7313), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4831), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5232), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7040), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4833), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7044), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5147), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6022), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7475), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7568), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7806), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7699), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5543), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5662), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5679), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5700), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6981), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6166), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7297), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7700), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4759), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4841), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7098), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4931), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7105), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6092), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7487), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5959), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4680), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7432), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6290), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7500), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7790), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4779), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4780), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7448), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5026), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7455), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6110), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5849), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5928), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6123), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7756), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4966), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4968), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5899), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6293), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7549), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5256), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5152), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7284), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5483), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7542), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7652), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7777), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 1, 0, 0), + [675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5849), + [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2506), + [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5928), + [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5965), + [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6034), + [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4680), + [697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4680), + [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2217), + [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2221), + [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2225), + [709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2225), + [712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2337), + [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7432), + [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2535), + [723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2475), + [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2695), + [729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(697), + [732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(38), + [735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6123), + [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7500), + [741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7756), + [744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4966), + [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4968), + [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5330), + [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7448), + [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2325), + [759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5899), + [762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1957), + [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1046), + [768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7), + [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5304), + [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6293), + [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(903), + [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2704), + [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3328), + [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2476), + [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5231), + [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6110), + [795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3499), + [798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5146), + [801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5313), + [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1298), + [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1298), + [810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1382), + [813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1327), + [816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1935), + [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1782), + [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7549), + [825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2168), + [828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6128), + [831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1707), + [834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5956), + [837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5810), + [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7476), + [843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1489), + [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5811), + [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2534), + [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5955), + [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5957), + [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5959), + [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4680), + [864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4680), + [867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2142), + [870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2143), + [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2119), + [876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2119), + [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2337), + [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7432), + [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2535), + [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2475), + [891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2695), + [894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(716), + [897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(36), + [900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6290), + [903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7500), + [906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7790), + [909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4779), + [912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4780), + [915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5330), + [918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7448), + [921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2325), + [924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5026), + [927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2326), + [930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1046), + [933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(24), + [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5304), + [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7455), + [942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(903), + [945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2704), + [948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3328), + [951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2476), + [954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5231), + [957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6110), + [960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3727), + [963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5154), + [966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5313), + [969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1251), + [972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1251), + [975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1469), + [978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1314), + [981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2264), + [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1520), + [987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7568), + [990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1675), + [993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6190), + [996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1946), + [999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5968), + [1002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5861), + [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7476), + [1008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1524), + [1011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 21), + [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 21), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5787), + [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), + [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), + [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), + [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), + [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5787), + [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 102), + [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 102), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 101), + [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 101), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), + [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), + [1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [1052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 148), + [1054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 148), + [1056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), + [1058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), + [1060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 147), + [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 147), + [1064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 3, 0, 21), + [1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 3, 0, 21), + [1068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), + [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), + [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), + [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [1091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4680), + [1094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4680), + [1097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2142), + [1100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2143), + [1103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2119), + [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2119), + [1109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(716), + [1112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [1115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6290), + [1118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7790), + [1121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4779), + [1124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4780), + [1127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5026), + [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2326), + [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1046), + [1136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(24), + [1139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5304), + [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7455), + [1145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(903), + [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3727), + [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5154), + [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5313), + [1157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1251), + [1160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1251), + [1163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1469), + [1166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1314), + [1169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2264), + [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1520), + [1175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7568), + [1178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1675), + [1181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6190), + [1184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1946), + [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5968), + [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5861), + [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7476), + [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1524), + [1199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4680), + [1202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4680), + [1205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2217), + [1208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2221), + [1211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2225), + [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2225), + [1217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(697), + [1220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [1223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6123), + [1226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7756), + [1229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4966), + [1232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4968), + [1235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5899), + [1238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1957), + [1241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1046), + [1244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7), + [1247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5304), + [1250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6293), + [1253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(903), + [1256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3499), + [1259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5146), + [1262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5313), + [1265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1298), + [1268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1298), + [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1382), + [1274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1327), + [1277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1935), + [1280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1782), + [1283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7549), + [1286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2168), + [1289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6128), + [1292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1707), + [1295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5956), + [1298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5810), + [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7476), + [1304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1489), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7779), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7438), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7438), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6432), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5893), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6240), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), + [1337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [1340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), + [1347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7579), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6471), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7686), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [1367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7579), + [1370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(5593), + [1373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7779), + [1376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7438), + [1379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7438), + [1382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(82), + [1385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6471), + [1388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7806), + [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), + [1393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(66), + [1396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7686), + [1399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(5893), + [1402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(5893), + [1405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6240), + [1408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(5931), + [1411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(1674), + [1414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6148), + [1417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(1389), + [1420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(168), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [1425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7700), + [1428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5593), + [1431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7779), + [1434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7438), + [1437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7438), + [1440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(82), + [1443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6432), + [1446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7806), + [1449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(55), + [1452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7487), + [1455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5893), + [1458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5893), + [1461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6240), + [1464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5931), + [1467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(1674), + [1470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6148), + [1473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(1389), + [1476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(169), + [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 39), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6504), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 39), + [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), + [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), + [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), + [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 38), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 38), + [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), + [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6498), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6507), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 134), + [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 134), + [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 133), + [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 133), + [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6501), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 131), + [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 131), + [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 132), + [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 132), + [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5790), + [1629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), + [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [1661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(229), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), + [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), + [1698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5790), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [1711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(257), + [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [1716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT(2662), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [1725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2662), + [1728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(320), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5780), + [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), + [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), + [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), + [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), + [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [1783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 23), + [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 2, 0, 0), + [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5297), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), + [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 23), + [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 87), + [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 3, 0, 0), + [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 87), + [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), + [1808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5789), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 103), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), + [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 103), + [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 149), + [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 149), + [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 152), + [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 152), + [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 149), + [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 149), + [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 183), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 183), + [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 184), + [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 184), + [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 185), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 185), + [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 183), + [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 183), + [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 215), + [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 215), + [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 184), + [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 184), + [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 185), + [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 185), + [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 216), + [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 216), + [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), + [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), + [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [1887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5780), + [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 215), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 215), + [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 216), + [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 216), + [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), + [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), + [1902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(372), + [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), + [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), + [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), + [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 21), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 21), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5293), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), + [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 238), + [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 238), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 217), + [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 217), + [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 238), + [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 238), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), + [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), + [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), + [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), + [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 217), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 217), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5897), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 114), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 114), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [2019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [2023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 119), + [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 119), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 84), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 84), + [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 85), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 85), + [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 86), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 86), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 22), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), + [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 22), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), + [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6444), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4379), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5170), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7484), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4586), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4506), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7616), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4396), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6215), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5979), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5654), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7053), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4507), + [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [2141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5788), + [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5294), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), + [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 39), + [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 39), + [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4516), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4562), + [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4700), + [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6438), + [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4564), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), + [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), + [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5252), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7604), + [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), + [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), + [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4884), + [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4605), + [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7594), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4563), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6168), + [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), + [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5971), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5886), + [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6916), + [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), + [2218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 123), + [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 4, 0, 0), + [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 123), + [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 172), + [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 5, 0, 0), + [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 172), + [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), + [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [2236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5897), + [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), + [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), + [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 40), + [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), + [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 40), + [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), + [2251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 40), + [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 40), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [2259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), + [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), + [2263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), + [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), + [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), + [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6905), + [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 19), + [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 51), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 52), + [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 19), + [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 105), + [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), + [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 19), + [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 21), + [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 21), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), + [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), + [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), + [2361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(585), + [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 6), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 6), + [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), + [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), + [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 71), + [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 71), + [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 71), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 71), + [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 128), + [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 128), + [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 103), + [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 103), + [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 152), + [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 152), + [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 149), + [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 149), + [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 183), + [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 183), + [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 184), + [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 184), + [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 185), + [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 185), + [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 215), + [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 215), + [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 216), + [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 216), + [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 217), + [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 217), + [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 10, 0, 238), + [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 10, 0, 238), + [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), + [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), + [2440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(598), + [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), + [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6883), + [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 38), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 38), + [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 118), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 118), + [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), + [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), + [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), + [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 120), + [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 120), + [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 121), + [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 121), + [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 122), + [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 122), + [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 165), + [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 165), + [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 166), + [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 166), + [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 167), + [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 167), + [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 168), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 168), + [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 169), + [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 169), + [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 170), + [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 170), + [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 171), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 171), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 17), + [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 17), + [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), + [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 18), + [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 18), + [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), + [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 4, 0, 0), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6458), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5205), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), + [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7638), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6329), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), + [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7424), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7424), + [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [2579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1418), + [2582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1427), + [2585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1474), + [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), + [2590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(707), + [2593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(37), + [2596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6458), + [2599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1379), + [2602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1400), + [2605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(17), + [2608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5205), + [2611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5206), + [2614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1052), + [2617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1052), + [2620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1102), + [2623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1068), + [2626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1568), + [2629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1482), + [2632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7638), + [2635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1405), + [2638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6329), + [2641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1657), + [2644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5993), + [2647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5703), + [2650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7424), + [2653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7424), + [2656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1496), + [2659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1418), + [2662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1427), + [2665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1474), + [2668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(2804), + [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), + [2673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(707), + [2676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(37), + [2679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6458), + [2682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1379), + [2685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1400), + [2688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(17), + [2691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5205), + [2694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5206), + [2697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1052), + [2700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1052), + [2703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1102), + [2706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1068), + [2709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1568), + [2712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1482), + [2715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7638), + [2718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1405), + [2721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6329), + [2724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1657), + [2727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5993), + [2730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5703), + [2733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7424), + [2736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7424), + [2739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1496), + [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 3, 0, 0), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 5, 0, 0), + [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 3, 0, 0), + [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 2, 0, 0), + [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 4, 0, 0), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6403), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5171), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), + [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7582), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), + [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6481), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5110), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), + [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7507), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6455), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7437), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7437), + [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [2858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1522), + [2861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1485), + [2864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1610), + [2867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(702), + [2870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(40), + [2873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6403), + [2876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1528), + [2879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1506), + [2882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(12), + [2885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5171), + [2888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5172), + [2891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1076), + [2894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1076), + [2897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1200), + [2900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1083), + [2903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1865), + [2906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1706), + [2909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7582), + [2912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1486), + [2915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6231), + [2918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1910), + [2921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5982), + [2924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5667), + [2927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1646), + [2930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [2938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(693), + [2945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(689), + [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [2954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(687), + [2957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [2963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(693), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6565), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6646), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), + [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6298), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6649), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5953), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), + [3056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6565), + [3059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6280), + [3062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6699), + [3065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(701), + [3068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(42), + [3071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6646), + [3074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5), + [3077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5187), + [3080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(55), + [3083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5228), + [3086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7487), + [3089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(4974), + [3092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(4974), + [3095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5191), + [3098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5131), + [3101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(2908), + [3104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(2821), + [3107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7507), + [3110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6298), + [3113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6649), + [3116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5345), + [3119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5927), + [3122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5634), + [3125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(717), + [3128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7437), + [3131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7437), + [3134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(2880), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6362), + [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5674), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), + [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [3201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_return, 1, 0, 0), + [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 1, 0, 0), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7455), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6230), + [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5843), + [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6391), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5805), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), + [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6465), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), + [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7370), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6429), + [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6345), + [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7794), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5220), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), + [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), + [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7658), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6310), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), + [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6461), + [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7792), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), + [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), + [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7648), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6346), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5996), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), + [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6538), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6542), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6651), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6843), + [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5244), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), + [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5134), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6595), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [3523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6474), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [3527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5237), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), + [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), + [3541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4664), + [3543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7627), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), + [3555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4927), + [3557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7302), + [3559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), + [3561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1029), + [3564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1029), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), + [3583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7706), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6010), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), + [3607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7341), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7341), + [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [3623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6498), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), + [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7697), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6475), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), + [3655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6491), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6191), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6971), + [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), + [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5141), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6589), + [3677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [3683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1040), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7446), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6213), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5246), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6830), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6468), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5033), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), + [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), + [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7667), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5040), + [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5699), + [3766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), + [3768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), + [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7476), + [3775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1051), + [3780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(7476), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [3811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6538), + [3814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6542), + [3817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6651), + [3820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1026), + [3823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(35), + [3826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6454), + [3829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(174), + [3832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7302), + [3835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5244), + [3838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5245), + [3841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5134), + [3844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5134), + [3847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5289), + [3850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5198), + [3853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1935), + [3856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1782), + [3859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7549), + [3862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6595), + [3865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6128), + [3868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1707), + [3871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7424), + [3874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7424), + [3877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1772), + [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5751), + [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6416), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5677), + [3896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [3904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5699), + [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [3911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5677), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6189), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5702), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [3954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5751), + [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7743), + [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6147), + [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5865), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), + [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4471), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), + [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5775), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6877), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7095), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7026), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7720), + [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6447), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5812), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), + [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7097), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6292), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), + [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5940), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5057), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), + [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5044), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7783), + [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6584), + [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5844), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), + [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5098), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7712), + [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6441), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5636), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), + [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), + [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7605), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6255), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5985), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), + [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7365), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7306), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7386), + [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5266), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7382), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7666), + [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5887), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), + [4189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6334), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), + [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7588), + [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6273), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5639), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7071), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7100), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6697), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7788), + [4263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6378), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5656), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), + [4271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7030), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6215), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5979), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), + [4291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [4299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), + [4315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5702), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7807), + [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6478), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), + [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), + [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7677), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6448), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), + [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7631), + [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5682), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), + [4374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7702), + [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6435), + [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5693), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), + [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4736), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7285), + [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5036), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [4422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5775), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5767), + [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5587), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [4447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(2976), + [4450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(2932), + [4453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(2981), + [4456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(1027), + [4459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), + [4461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(45), + [4464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(6468), + [4467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(176), + [4470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(5193), + [4473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(5199), + [4476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(2532), + [4479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(2532), + [4482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(2602), + [4485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(2557), + [4488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(3054), + [4491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(2977), + [4494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(7667), + [4497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(2974), + [4500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(6436), + [4503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(3007), + [4506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(7437), + [4509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(7437), + [4512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 200), SHIFT_REPEAT(3005), + [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [4525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [4529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5273), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7058), + [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5167), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6854), + [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [4549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5767), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [4554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [4568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), + [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5769), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5615), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [4634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [4654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5712), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [4704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), + [4706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [4722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [4726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [4730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5769), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [4735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), + [4737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), + [4739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [4743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 83), + [4745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 83), + [4747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), + [4749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [4759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), + [4761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5285), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), + [4769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), + [4771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [4781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [4783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4688), + [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [4795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), + [4797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), + [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [4805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5712), + [4808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), + [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [4816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [4818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [4820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [4830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [4838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), + [4840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), + [4842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [4844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7546), + [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7546), + [4854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 2, 0, 29), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6344), + [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [4864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), + [4866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6726), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7665), + [4876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7665), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7522), + [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7522), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), + [4888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), + [4890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 186), + [4892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 186), + [4894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4838), + [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [4904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 21), + [4906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 21), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [4914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 21), + [4916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 21), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [4924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), + [4926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), + [4928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 43), + [4930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 15), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6975), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [4950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7607), + [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7607), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7003), + [4962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 10, 0), + [4964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 10, 0), + [4966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), + [4968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 0, 0), + [4970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [4972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 82), + [4974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 82), + [4976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [4979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [4984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6450), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [4990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), + [4992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), + [4994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), + [4996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [5000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [5002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [5006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [5008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7027), + [5012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), + [5014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), + [5016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 96), + [5018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 96), + [5020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 97), + [5022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 97), + [5024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 141), + [5026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 141), + [5028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 142), + [5030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 142), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), + [5034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 96), + [5036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 96), + [5038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 97), + [5040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 97), + [5042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 141), + [5044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 141), + [5046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 142), + [5048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 142), + [5050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), + [5052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), + [5054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), + [5056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7168), + [5060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), + [5062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), + [5064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), + [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), + [5068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5860), + [5071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5736), + [5074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5664), + [5077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 50), + [5079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 50), + [5081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 7), + [5083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 7), + [5085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 8), + [5087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 8), + [5089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5757), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [5097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5339), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [5103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [5106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [5108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [5110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [5112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [5118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [5126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), + [5128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), + [5130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 193), + [5132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 193), + [5134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5835), + [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4735), + [5138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), + [5140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), + [5142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), + [5144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), + [5146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), + [5148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [5154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), + [5156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), + [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7375), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7375), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7515), + [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7515), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), + [5170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2243), + [5173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5757), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [5178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 192), + [5180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 192), + [5182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), + [5186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [5190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), + [5192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), + [5194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), + [5196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6749), + [5200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 192), + [5202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 192), + [5204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), + [5206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), + [5208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), + [5210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), + [5212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [5232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 192), SHIFT(2243), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7049), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [5295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [5301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [5303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [5305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [5307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [5309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), SHIFT(2243), + [5312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [5314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), SHIFT(2243), + [5317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5835), + [5320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), SHIFT(2243), + [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4881), + [5325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5335), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), + [5329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6495), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [5361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), + [5365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [5367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), + [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), + [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), + [5379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [5395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), + [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [5399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6484), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [5405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [5415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), + [5417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [5419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [5421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7375), + [5424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7375), + [5427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7515), + [5430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7515), + [5433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(5893), + [5436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(6240), + [5439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(5931), + [5442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(6649), + [5445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(5345), + [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), + [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5083), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7725), + [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7725), + [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5785), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), + [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7779), + [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5772), + [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [5518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5785), + [5521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5772), + [5524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2589), + [5527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5778), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [5533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), + [5535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 51), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [5539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 52), + [5541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [5543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [5545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(2583), + [5548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), + [5550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6165), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [5554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6260), + [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6272), + [5562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6379), + [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7089), + [5566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [5570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [5574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2662), + [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6702), + [5579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [5583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [5587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 19), + [5589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6931), + [5591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7029), + [5593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [5595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), + [5598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5884), + [5600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [5602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), + [5604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5655), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [5609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2630), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [5614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5778), + [5617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [5625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), + [5627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 105), + [5629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5291), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), + [5633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), + [5639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5786), + [5641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [5645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [5649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5777), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7276), + [5661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7011), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5357), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6275), + [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7774), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [5687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6327), + [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7703), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [5701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5261), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), + [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5212), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), + [5713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6616), + [5715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7687), + [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [5719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [5721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [5724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2769), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [5729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5779), + [5731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 201), + [5733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 201), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [5737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [5739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 16), + [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [5745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 16), + [5747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [5749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7653), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [5756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), + [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), + [5762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [5766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2804), + [5769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2813), + [5772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [5776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [5780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [5782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [5786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [5788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [5794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6134), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5964), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), + [5800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5334), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), + [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5288), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), + [5808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5786), + [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [5819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [5825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), + [5827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4939), + [5829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT(7765), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [5834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), + [5836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4949), + [5838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4996), + [5840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [5844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5779), + [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), + [5849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [5853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [5857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4816), + [5859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), + [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [5863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [5865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [5869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [5871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4818), + [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), + [5875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [5879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [5883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4977), + [5885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [5889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4859), + [5891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5281), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [5903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4904), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [5909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [5913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [5921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4863), + [5923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [5927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [5931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4976), + [5933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), + [5935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [5939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [5943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2948), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [5948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2969), + [5951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [5953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [5955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [5959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [5961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [5975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [5983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [6003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3051), + [6006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [6008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6806), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [6025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 111), + [6027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 111), + [6029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 112), + [6031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 112), + [6033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 197), + [6035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 197), + [6037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 199), + [6039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 199), + [6041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [6043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 231), + [6045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 231), + [6047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 201), + [6049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 201), + [6051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), + [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [6067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [6070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 198), + [6072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 198), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6345), + [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [6096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7491), + [6103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5762), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), + [6112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [6124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), + [6126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7361), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), + [6206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), + [6208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), + [6210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), + [6212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [6252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 179), SHIFT_REPEAT(5255), + [6255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 179), SHIFT_REPEAT(5121), + [6258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 179), SHIFT_REPEAT(5122), + [6261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [6265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [6283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5774), + [6285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [6295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5340), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6608), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [6303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [6317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [6321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5774), + [6324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), + [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7331), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6880), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6881), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [6356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7754), + [6358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 98), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [6366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3393), + [6369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7685), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [6377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [6381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7623), + [6383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7593), + [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [6395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), + [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [6399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5343), + [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), + [6403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5102), + [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [6411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [6415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [6419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5689), + [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), + [6426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5784), + [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [6433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), + [6435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), + [6439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5107), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [6449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), + [6455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5743), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [6460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), + [6462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), + [6464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6253), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [6474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4541), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5135), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6832), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4868), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [6510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5302), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), + [6514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5303), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), + [6518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [6522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [6526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [6530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [6594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [6600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), + [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7778), + [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7778), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [6608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [6662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [6668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), + [6670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7660), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7660), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [6680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 1, 0, 0), + [6682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [6708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), + [6724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4389), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [6746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), + [6748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), + [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), + [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4644), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [6776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), + [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4386), + [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), + [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [6790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4469), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), + [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), + [6802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), + [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4938), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), + [6808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), + [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), + [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4437), + [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3857), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [6844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6474), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [6850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), + [6852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [6862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4544), + [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), + [6866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [6874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4568), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [6882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [6890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [6896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), + [6898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4016), + [6900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [6904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6488), + [6912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6782), + [6922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4708), + [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [6936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5776), + [6939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5059), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [6943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5283), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [6949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3907), + [6951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [6955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5773), + [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5279), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), + [6972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5771), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [6976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(4012), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), + [6989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [6993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [6997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4625), + [7003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), + [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), + [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), + [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4239), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5325), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), + [7019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), + [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3836), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6754), + [7027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 82), + [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), + [7031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5771), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), + [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4227), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), + [7048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 62), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7336), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), + [7060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 62), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [7070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [7074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), + [7076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5329), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), + [7080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), + [7082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), + [7084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4223), + [7086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 83), + [7088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), + [7090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5783), + [7093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), + [7095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), + [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), + [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5354), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), + [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), + [7123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), + [7125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [7133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 59), + [7135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 59), + [7137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 117), + [7139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 117), + [7141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 62), + [7143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 62), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [7149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 74), + [7151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 74), + [7153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [7161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5765), + [7164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [7166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [7174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 117), + [7176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 117), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), + [7180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [7184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [7188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 59), + [7190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 59), + [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), + [7196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5287), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), + [7200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [7204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5782), + [7206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 191), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [7210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), SHIFT(693), + [7213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [7217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 126), + [7219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 126), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [7225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [7229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 107), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [7251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [7255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4485), + [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [7261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 32), + [7263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 80), + [7265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 80), + [7267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), SHIFT(693), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [7274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 126), + [7276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 190), + [7278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 126), SHIFT(693), + [7281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 226), SHIFT(693), + [7284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 226), + [7286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), + [7288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), + [7290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 226), + [7292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [7296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), + [7298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), + [7300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5748), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [7305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), + [7307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [7309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1007), + [7312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(693), + [7315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3275), + [7318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [7320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4575), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [7324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5328), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), + [7328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), + [7330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), + [7332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 107), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [7338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 32), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [7342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_cmd, 2, 0, 13), + [7344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_cmd, 2, 0, 13), + [7346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [7350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 32), + [7352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [7354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [7362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6621), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7596), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7407), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7632), + [7378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7645), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6622), + [7382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4565), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [7388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4739), + [7390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 232), + [7392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 232), + [7394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [7398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5284), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), + [7402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 10, 73), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [7406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), + [7408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(404), + [7411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6329), + [7413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [7415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5968), + [7417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5861), + [7419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4828), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [7435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6677), + [7439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4716), + [7441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 10, 36), + [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6634), + [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5930), + [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5877), + [7451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5108), + [7453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(693), + [7456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), + [7460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4674), + [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4675), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [7468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 10, 4), + [7470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [7472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [7474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 10, 37), + [7476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4448), + [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), + [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [7485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 163), + [7487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 163), + [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), + [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), + [7493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5782), + [7496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 204), + [7498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 204), + [7500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(693), + [7503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), + [7505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), + [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [7517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4864), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [7523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4878), + [7526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), + [7528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7596), + [7531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7407), + [7534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7632), + [7537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7645), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [7542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [7546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), + [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [7550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [7552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), SHIFT(693), + [7555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), + [7559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [7561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [7563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(693), + [7566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), + [7568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), + [7570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), + [7572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 93), + [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), + [7576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 93), + [7578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [7582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 10, 36), + [7584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(270), + [7587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 139), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [7591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 139), + [7593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 10, 73), + [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7119), + [7601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), SHIFT(693), + [7604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), + [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [7608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(261), + [7611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6296), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), + [7619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), SHIFT(693), + [7622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), + [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), + [7626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), SHIFT(693), + [7629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), + [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [7633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(278), + [7636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 10, 4), + [7638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(693), + [7641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), + [7643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), SHIFT(693), + [7646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), + [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), + [7650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 10, 37), + [7652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 10, 37), + [7654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), SHIFT(693), + [7657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [7661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 178), + [7663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 178), + [7665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(272), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6701), + [7670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 75), + [7672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 75), + [7674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 76), + [7676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 76), + [7678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), + [7680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), + [7682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 78), + [7684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 78), + [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), + [7690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 79), + [7692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 79), + [7694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), SHIFT(693), + [7697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), + [7701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(456), + [7704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(456), + [7707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), + [7709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [7711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [7713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5836), + [7716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 10, 73), + [7718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), SHIFT(693), + [7721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [7725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 94), + [7727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 94), + [7729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 187), SHIFT(693), + [7732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 187), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [7736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5891), + [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), + [7740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6115), + [7742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6124), + [7744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [7746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 10, 36), + [7748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 10, 4), + [7750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 187), SHIFT(693), + [7753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 187), + [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [7757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 130), + [7759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 130), + [7761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), SHIFT(693), + [7764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [7768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), SHIFT(693), + [7771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), + [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [7775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5646), + [7778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 24), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), + [7782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), + [7784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), + [7788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4742), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [7794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), + [7796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(420), + [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), + [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), + [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [7805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), + [7807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), + [7809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 57), + [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [7813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 208), + [7815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 208), + [7817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 1), + [7819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 1), + [7821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 236), + [7823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 236), + [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [7827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6109), + [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), + [7831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5299), + [7833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5582), + [7835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5438), + [7837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 161), + [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6585), + [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), + [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), + [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5924), + [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), + [7849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), + [7851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5451), + [7853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5267), + [7855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 124), + [7857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 2), + [7859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), + [7861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), + [7863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), + [7865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), + [7867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 95), + [7869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 95), + [7871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 108), + [7873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 113), + [7875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 5), + [7877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), + [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [7881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 110), + [7883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 113), + [7885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 2), + [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), + [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), + [7891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5737), + [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), + [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), + [7899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 110), + [7901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7034), + [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), + [7905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5424), + [7907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5660), + [7909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5625), + [7911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 33), + [7913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 2, 0, 0), + [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), + [7917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 110), + [7919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 110), + [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [7923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 211), + [7925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 211), + [7927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 113), + [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), + [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), + [7933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 113), + [7935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6781), + [7937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 9, 0, 110), + [7939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 9, 0, 113), + [7941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 58), + [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), + [7945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 58), + [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [7949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 33), + [7951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6590), + [7953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 33), + [7955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 110), + [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [7959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), + [7961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), + [7963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), + [7965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6736), + [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), + [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), + [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), + [7973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [7975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [7977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 108), + [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), + [7981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 113), + [7983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 160), + [7985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 210), + [7987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 210), + [7989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [7991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [7993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 212), + [7995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 212), + [7997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 138), + [7999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 138), + [8001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 218), + [8003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 219), + [8005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 220), + [8007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 221), + [8009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 222), + [8011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 223), + [8013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 224), + [8015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 225), + [8017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 1), + [8019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6309), + [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), + [8023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5759), + [8025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6529), + [8027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5939), + [8029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 2), + [8031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 5), + [8033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), + [8035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 124), + [8037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), + [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), + [8041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 20), + [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), + [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), + [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7070), + [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6546), + [8053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 239), + [8055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 240), + [8057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 241), + [8059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 242), + [8061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 243), + [8063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 244), + [8065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 245), + [8067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 246), + [8069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 247), + [8071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 248), + [8073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 254), + [8075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 255), + [8077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 256), + [8079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 257), + [8081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 258), + [8083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 259), + [8085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 260), + [8087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 261), + [8089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 262), + [8091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 264), + [8093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 265), + [8095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 266), + [8097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 267), + [8099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 268), + [8101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 269), + [8103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 270), + [8105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 271), + [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6189), + [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), + [8113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5925), + [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), + [8117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5793), + [8119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6632), + [8121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), + [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), + [8125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5919), + [8127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7274), + [8129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6468), + [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7789), + [8133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [8135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [8137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6966), + [8139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 162), + [8141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 162), + [8143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), + [8145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 54), + [8147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 177), + [8149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 177), + [8151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), + [8153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 160), + [8155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 161), + [8157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 188), + [8159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 189), + [8161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), + [8163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5063), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), + [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), + [8169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7389), + [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), + [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), + [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), + [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), + [8181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 60), + [8183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 60), + [8185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 61), + [8187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 61), + [8189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 63), + [8191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 63), + [8193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 115), + [8195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 115), + [8197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 116), + [8199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 116), + [8201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 21), + [8203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 21), + [8205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 21), + [8207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 21), + [8209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [8211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [8214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [8216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [8218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [8220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), + [8222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), + [8224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5100), + [8226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5241), + [8228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5151), + [8230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5249), + [8232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), + [8234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), + [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6584), + [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), + [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7109), + [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6574), + [8250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 3, 0, 67), + [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), + [8254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5265), + [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [8258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 59), + [8260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 59), + [8262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [8264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(5224), + [8267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [8269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 62), + [8271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 62), + [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), + [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), + [8277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5845), + [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6391), + [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7790), + [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), + [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7541), + [8291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 67), + [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [8295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 125), + [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [8299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), + [8301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5312), + [8304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5265), + [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [8309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 117), + [8311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 117), + [8313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5635), + [8315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5163), + [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), + [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), + [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7792), + [8325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), + [8327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5317), + [8329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 125), + [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [8333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), + [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), + [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7794), + [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), + [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), + [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6362), + [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7756), + [8351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5259), + [8353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5350), + [8355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), + [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6429), + [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6465), + [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6569), + [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), + [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), + [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [8371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6454), + [8373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5441), + [8375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5882), + [8377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5533), + [8379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [8381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6585), + [8383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), + [8385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7070), + [8387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6546), + [8389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [8391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [8393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [8395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [8401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5385), + [8404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5435), + [8407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [8409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [8411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6501), + [8413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [8415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), + [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6561), + [8423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6570), + [8425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5635), + [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), + [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), + [8432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), + [8434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6484), + [8436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), + [8438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), + [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), + [8442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5226), + [8444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5493), + [8446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [8448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [8450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [8452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [8454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4763), + [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), + [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6647), + [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), + [8462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5253), + [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), + [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), + [8468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), + [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), + [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6784), + [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), + [8476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5435), + [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [8480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), + [8482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), + [8484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), + [8486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), + [8488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4186), + [8490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), + [8492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), + [8494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), + [8496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), + [8498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), + [8500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), + [8502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), + [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), + [8506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(5290), + [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), + [8513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5320), + [8515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5501), + [8517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5829), + [8519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), + [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [8527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4897), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), + [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6605), + [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), + [8535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4218), + [8537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), + [8539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6488), + [8541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4617), + [8543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4481), + [8545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5264), + [8547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5614), + [8549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), + [8551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5670), + [8553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6129), + [8555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), + [8557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5338), + [8559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5513), + [8561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), + [8563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5977), + [8565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7109), + [8567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6574), + [8569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5716), + [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), + [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [8576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5185), + [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), + [8580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5282), + [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6646), + [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), + [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), + [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), + [8590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5316), + [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), + [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [8596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), + [8598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5271), + [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), + [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6632), + [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5949), + [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6378), + [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), + [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), + [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), + [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6495), + [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [8630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), + [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), + [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), + [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), + [8638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6543), + [8640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6544), + [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6507), + [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [8654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5321), + [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), + [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), + [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), + [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), + [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), + [8666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5446), + [8668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5480), + [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [8672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), + [8674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 9), + [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), + [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), + [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), + [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), + [8684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5447), + [8686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 11), + [8688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 11), + [8690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5364), + [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), + [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), + [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), + [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), + [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6273), + [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), + [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), + [8714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5309), + [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5581), + [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6529), + [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), + [8722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4844), + [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), + [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7102), + [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7103), + [8730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 209), SHIFT_REPEAT(5621), + [8733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 209), + [8735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 209), SHIFT_REPEAT(6292), + [8738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 209), SHIFT_REPEAT(4704), + [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), + [8745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5612), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [8749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5731), + [8751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7271), + [8753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7272), + [8755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5817), + [8758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5737), + [8761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5455), + [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), + [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), + [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7360), + [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5519), + [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), + [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [8775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5547), + [8777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5466), + [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), + [8781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [8783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7314), + [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), + [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), + [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), + [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), + [8795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, 0, 234), + [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5916), + [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [8801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5818), + [8804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5845), + [8807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, 0, 235), + [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), + [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), + [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), + [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7124), + [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7125), + [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), + [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [8825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4921), + [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), + [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), + [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), + [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), + [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), + [8839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6028), + [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6984), + [8843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7091), + [8845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4856), + [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), + [8849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5029), + [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), + [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), + [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), + [8859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5891), + [8862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5891), + [8865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5058), + [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), + [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5966), + [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), + [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5738), + [8889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5650), + [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), + [8894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 95), + [8896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5356), + [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), + [8900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7709), + [8902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5723), + [8905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5344), + [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7368), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7369), + [8913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), + [8915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), + [8917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5731), + [8920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6040), + [8923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6028), + [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [8928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7456), + [8930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, 0, 175), + [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), + [8936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, 0, 176), + [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), + [8942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5269), + [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), + [8946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4967), + [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), + [8950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4980), + [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), + [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [8960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6659), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6609), + [8966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5310), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), + [8982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704), + [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [8986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), + [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6660), + [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [8996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), + [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6234), + [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), + [9010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6763), + [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), + [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6404), + [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [9020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [9022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 42), + [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [9026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 13), + [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), + [9032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5069), + [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), + [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), + [9038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [9040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 44), + [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), + [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), + [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), + [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), + [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), + [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [9054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6274), + [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [9062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [9066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6008), + [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [9070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6009), + [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), + [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), + [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6430), + [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [9086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6853), + [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [9092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), + [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [9096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5331), + [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), + [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), + [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), + [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [9130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6024), + [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), + [9140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), + [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [9150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), + [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), + [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [9160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), + [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), + [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6445), + [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [9170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), + [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6627), + [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [9180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), + [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [9186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), + [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), + [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), + [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6451), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [9196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6459), + [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [9204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [9206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6119), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6462), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [9212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6466), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [9218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), + [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [9224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), + [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6472), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [9230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [9236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6482), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [9242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), + [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6485), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6901), + [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6489), + [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [9252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6493), + [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [9258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6496), + [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [9264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [9268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), + [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), + [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [9274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), + [9276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), + [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6505), + [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [9282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), + [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [9288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6512), + [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [9294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6514), + [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [9300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6516), + [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [9306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6518), + [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [9312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [9316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5071), + [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), + [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), + [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), + [9324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4875), + [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), + [9328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5070), + [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), + [9332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4998), + [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), + [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), + [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6098), + [9340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4771), + [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), + [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [9348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5326), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [9356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6041), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [9360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5292), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), + [9364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5323), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [9370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5046), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), + [9374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5047), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), + [9378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5048), + [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), + [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [9384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5286), + [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), + [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6029), + [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6364), + [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [9408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [9410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 252), + [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), + [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [9416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 27), + [9418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [9420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 28), + [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [9424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6037), + [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7771), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), + [9432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 253), + [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), + [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [9438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5884), + [9441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [9445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 203), + [9447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 203), + [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [9451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), + [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), + [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [9461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5337), + [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), + [9465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 88), + [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6031), + [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6562), + [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [9473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5103), + [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), + [9477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5104), + [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), + [9481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5105), + [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), + [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), + [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), + [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), + [9491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6081), + [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), + [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), + [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), + [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [9501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(97), + [9504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(6659), + [9507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), + [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), + [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6193), + [9513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 202), + [9515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5028), + [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), + [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6499), + [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [9523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [9525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7765), + [9527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 234), + [9529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 235), + [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), + [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), + [9535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 175), + [9537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 252), + [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), + [9541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 253), + [9543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7063), + [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6606), + [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6278), + [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), + [9555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5332), + [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), + [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), + [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7096), + [9563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5034), + [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [9569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [9571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 176), + [9573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), + [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), + [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), + [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), + [9581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5037), + [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), + [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), + [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [9601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5891), + [9604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5891), + [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), + [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), + [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), + [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), + [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6947), + [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), + [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), + [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), + [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [9665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4855), + [9667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4874), + [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6154), + [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [9683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6593), + [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6575), + [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7133), + [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), + [9691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5125), + [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), + [9695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5341), + [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), + [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [9701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6596), + [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [9707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6084), + [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6084), + [9711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6600), + [9713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(100), + [9716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(7063), + [9719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), + [9721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6620), + [9723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5803), + [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), + [9727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5346), + [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), + [9731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5347), + [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), + [9735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5157), + [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), + [9739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5159), + [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), + [9743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), + [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), + [9747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5161), + [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), + [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [9755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 230), + [9757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5194), + [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), + [9761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 150), + [9763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [9765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 25), + [9767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [9769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), + [9771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), + [9773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), + [9775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [9777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [9779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), + [9781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 26), + [9783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 164), + [9785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), + [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7069), + [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [9793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 99), + [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6773), + [9797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 173), + [9799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6872), + [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), + [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [9809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [9811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [9813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [9815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 174), + [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6774), + [9819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 2, 0, 30), + [9821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5369), + [9823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5373), + [9825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5375), + [9827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5376), + [9829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5379), + [9831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5380), + [9833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5382), + [9835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5383), + [9837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), + [9839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [9841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5770), + [9844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [9846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_list, 2, 0, 0), + [9848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [9850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [9852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [9854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [9856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [9858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [9860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [9862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [9864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 144), + [9866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [9868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 181), + [9870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4499), + [9872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [9874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 182), + [9876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [9878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), + [9880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [9882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 100), + [9884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), + [9886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), + [9888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), + [9890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4214), + [9892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4222), + [9894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), + [9896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), + [9898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4220), + [9900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), + [9902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [9904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), + [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [9910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [9912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [9914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [9916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 194), + [9918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 195), + [9920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [9922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [9924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [9926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [9928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [9930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [9932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [9934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [9936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), + [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), + [9940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 196), + [9942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5387), + [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [9948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4349), + [9950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5556), + [9952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [9954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4385), + [9956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [9958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), + [9960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), + [9962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), + [9964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), + [9966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), + [9968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), + [9970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), + [9972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), + [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [9978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5606), + [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7514), + [9982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [9984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [9986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [9988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [9990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5552), + [9992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), + [9994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 4, 0, 109), + [9996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 205), + [9998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5439), + [10000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5467), + [10002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5484), + [10004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5499), + [10006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5363), + [10008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5413), + [10010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5415), + [10012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5417), + [10014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 206), + [10016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4327), + [10018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 207), + [10020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [10022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5561), + [10024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [10026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5562), + [10028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 181), + [10030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 214), + [10032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5393), + [10034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5397), + [10036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5399), + [10038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), + [10040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5403), + [10042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5404), + [10044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5406), + [10046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5407), + [10048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 182), + [10050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4244), + [10052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [10054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [10056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [10058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [10060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [10062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [10064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [10066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [10068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [10070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [10072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [10074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), + [10076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), + [10078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4654), + [10080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), + [10082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3887), + [10084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), + [10086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), + [10088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), + [10090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), + [10092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), + [10094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), + [10096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 41), + [10098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), + [10100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5434), + [10102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [10104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 227), + [10106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), + [10108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 89), + [10110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 228), + [10112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), + [10114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), + [10116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [10118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), + [10120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), + [10122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), + [10124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), + [10126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), + [10128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 229), + [10130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [10132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [10134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [10136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 3), + [10138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 90), + [10140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [10142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), + [10144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 45), + [10146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [10148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [10150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [10152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [10154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [10156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), + [10158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [10160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [10162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 46), + [10164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), + [10166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), + [10168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 47), + [10170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), + [10172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 48), + [10174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 49), + [10176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4365), + [10178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), + [10180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), + [10182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), + [10184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4442), + [10186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4323), + [10188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), + [10190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), + [10192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [10194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_hide, 1, 0, 0), + [10196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [10198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_overlay, 1, 0, 0), + [10200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [10202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [10204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), + [10206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), + [10208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [10210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), + [10212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), + [10214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), + [10216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [10218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 7, 0, 233), + [10220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), + [10222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 6, 0, 214), + [10224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6015), + [10226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [10228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6019), + [10230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [10232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), + [10234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), + [10236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [10238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), + [10240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [10242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), + [10244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), + [10246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [10248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5665), + [10250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5758), + [10252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5565), + [10254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5545), + [10256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5568), + [10258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5572), + [10260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5583), + [10262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5592), + [10264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5594), + [10266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5620), + [10268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5622), + [10270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [10272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [10274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [10278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [10280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [10282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [10284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [10286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [10288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [10290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [10294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [10296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [10298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [10300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [10302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [10304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [10306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [10308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [10310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [10312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [10314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [10316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [10318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [10320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [10322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5918), + [10324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [10326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), + [10328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), + [10330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), + [10332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), + [10334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), + [10336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), + [10338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4590), + [10340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [10342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [10344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [10346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), + [10348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [10350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [10352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5481), + [10354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), + [10356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), + [10358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), + [10360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [10362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [10364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5854), + [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), + [10368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), + [10370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), + [10372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [10374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [10376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [10378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [10380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), + [10382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), + [10384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), + [10386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 3, 0, 55), + [10388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), + [10390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [10392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [10394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [10396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), + [10398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), + [10400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [10402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), + [10404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [10406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), + [10408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [10410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [10412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 56), + [10414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [10416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [10418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [10420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [10422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3950), + [10424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), + [10426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [10428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6903), + [10430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6906), + [10432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [10434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4358), + [10436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [10438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [10440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [10442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), + [10444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [10446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [10448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [10450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [10452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [10454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [10456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [10458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [10460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), + [10462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), + [10464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [10466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [10468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [10470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [10472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [10474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [10476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [10478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), + [10480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [10482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [10484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [10486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [10488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [10490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [10492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [10494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [10496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 249), + [10498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 250), + [10500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 251), + [10502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [10504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5555), + [10506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 91), + [10508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 9, 0, 263), + [10510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 92), + [10512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), + [10514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), + [10516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [10518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 10), + [10520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5537), + [10522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 10), + [10524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 10), + [10526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 64), + [10528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 65), + [10530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 3, 0, 29), + [10532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 3, 0, 66), + [10534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 3, 0, 68), + [10536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_new, 3, 0, 69), + [10538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 5, 0, 0), + [10540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6834), + [10542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [10544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 12), + [10546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5777), + [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), + [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [10553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6713), + [10555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [10557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7278), + [10559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [10561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [10563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [10565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [10567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [10569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [10571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [10573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [10575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6035), + [10577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5601), + [10579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [10581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [10583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), + [10585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), + [10587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), + [10589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), SHIFT_REPEAT(7055), + [10592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [10596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), + [10598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), + [10600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), + [10602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), + [10604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [10606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [10608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 135), + [10610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 136), + [10612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [10614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 137), + [10616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [10618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [10620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [10622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6859), + [10624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 140), + [10626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 82), + [10628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 143), + [10630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [10632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 12), + [10634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 144), + [10636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [10638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5936), + [10640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), + [10642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 159), + [10644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [10646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), + [10648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), + [10650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [10652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [10654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5322), + [10656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), + [10658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5243), + [10660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), + [10662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5133), + [10664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5274), + [10666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5570), + [10668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [10670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5349), + [10672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5305), + [10674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), + [10676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [10678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [10680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5505), + [10682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [10684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5734), + [10686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), + [10688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), + [10690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4208), + [10692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [10694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4215), + [10696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), + [10698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4234), + [10700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 135), + [10702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 52), + [10704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [10706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), + [10708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 140), + [10710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), + [10712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [10714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [10716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), + [10718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [10720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [10722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [10724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [10726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [10728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [10730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [10732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [10734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 10), + [10736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 10), + [10738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), + [10740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 10), + [10742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), + [10744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), + [10746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), + [10748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), + [10750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), + [10752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), + [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [10756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), + [10758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), + [10760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), + [10762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 82), + [10764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6735), + [10766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [10768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [10770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7465), + [10772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [10774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5460), + [10776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5448), + [10778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), + [10780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5459), + [10782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5477), + [10784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [10786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [10788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5500), + [10790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5359), + [10792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [10794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5414), + [10796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7020), + [10798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [10800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), + [10802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [10804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5391), + [10806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [10808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7294), + [10810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7769), + [10812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7356), + [10814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), + [10816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5395), + [10818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), + [10820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 151), SHIFT_REPEAT(709), + [10823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), + [10825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5401), + [10827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5402), + [10829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5405), + [10831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [10833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [10837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [10839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [10841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [10843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [10845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [10847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [10849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [10851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [10853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 51), + [10855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), + [10857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [10859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [10863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3879), + [10865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), + [10867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), + [10869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), + [10871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), + [10873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7320), + [10875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), + [10877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), + [10879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), + [10881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [10883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [10885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [10891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [10893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), + [10895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 203), + [10897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 203), + [10899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), + [10901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), + [10903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), + [10905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [10907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), + [10909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), + [10911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), + [10913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), + [10915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), + [10917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 52), + [10919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6863), + [10921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7017), + [10925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [10927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [10929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [10931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [10933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), + [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [10937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [10939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [10941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [10943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7497), + [10945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 105), + [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), + [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [10953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [10957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4406), + [10959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), + [10961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), + [10963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), + [10965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4328), + [10967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), + [10969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4425), + [10971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), + [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [10977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), + [10979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 91), + [10981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [10983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), + [10985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [10987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 92), + [10989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), + [10991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), + [10993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), + [10995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), + [10997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 31), + [10999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [11001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6630), + [11003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 105), + [11005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), + [11007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7581), + [11009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), + [11011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [11013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), + [11015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [11017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [11019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), + [11021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), + [11023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5507), + [11025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5528), + [11027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7506), + [11029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5546), + [11031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5549), + [11033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5564), + [11035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 41), + [11037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5571), + [11039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5584), + [11041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5590), + [11043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5619), + [11045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7735), + [11049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), + [11051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), + [11053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [11055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [11057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [11059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7715), + [11063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [11065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [11067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [11069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [11071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [11075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [11077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [11079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [11083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [11085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6261), + [11087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [11089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [11091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [11093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), + [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7442), + [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [11101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 3), + [11103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), + [11105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), + [11107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), + [11109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), + [11111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [11113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), + [11115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), + [11117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), + [11119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), + [11121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 4, 10, 202), + [11123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 4, 0, 202), + [11125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), + [11127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [11129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), + [11131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [11133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7479), + [11135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5554), + [11137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5563), + [11139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7450), + [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7548), + [11143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5557), + [11145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5558), + [11147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [11149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5885), + [11151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6707), + [11153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7664), + [11155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1219), + [11158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), + [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [11162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6803), + [11164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5791), + [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [11170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5709), + [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [11174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), + [11176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), + [11178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5367), + [11180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 19), + [11182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [11184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [11186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5370), + [11188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5371), + [11190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 70), + [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7379), + [11194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), + [11196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [11198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6167), + [11200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6170), + [11202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5374), + [11204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5540), + [11206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [11208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5542), + [11210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5544), + [11212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7728), + [11214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5377), + [11216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), + [11218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5381), + [11220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7311), + [11224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5085), + [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7773), + [11228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [11230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [11232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [11234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [11236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [11238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [11240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), + [11244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [11246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5711), + [11248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5832), + [11250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5821), + [11252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5831), + [11254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), + [11256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5870), + [11258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5883), + [11260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5633), + [11262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), + [11264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), SHIFT_REPEAT(7067), + [11267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5864), + [11269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [11271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5890), + [11273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), + [11275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5644), + [11277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5648), + [11279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [11281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [11283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5661), + [11285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [11287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5663), + [11289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [11291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5672), + [11293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5676), + [11295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [11297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5685), + [11299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5688), + [11301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5696), + [11303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [11305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5698), + [11307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [11309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5707), + [11311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [11313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5710), + [11315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [11317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5718), + [11319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5721), + [11321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5768), + [11323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5729), + [11325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), + [11327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5735), + [11329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5741), + [11331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5742), + [11333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5746), + [11335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5747), + [11337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5749), + [11339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5750), + [11341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), + [11343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5756), + [11345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5760), + [11347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), + [11349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5763), + [11351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5764), + [11353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), + [11355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), + [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [11361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [11365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), + [11367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 51), + [11369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(7356), + [11372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 202), + [11374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [11376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), + [11378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [11380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [11382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [11384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [11386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [11390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7556), + [11392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4500), + [11394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), + [11396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [11398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), + [11400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), + [11402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 18), + [11404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 18), + [11406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [11408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), + [11410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7645), + [11412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [11414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), + [11416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [11418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), + [11420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [11422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [11424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [11426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), + [11428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), + [11430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [11432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6556), + [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [11436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), + [11438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), + [11440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4732), + [11442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 127), + [11444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 180), + [11446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 180), + [11448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4245), + [11450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6153), + [11452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [11454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7470), + [11457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4246), + [11459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7406), + [11462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), + [11464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6631), + [11466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), + [11468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), + [11470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [11472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), + [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7598), + [11478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [11480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [11482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [11484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), + [11486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [11488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [11490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [11492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [11494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [11496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [11498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [11500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [11502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7430), + [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [11507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), + [11509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), + [11511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6657), + [11513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), + [11515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4325), + [11517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4533), + [11519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4534), + [11521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 2, 0, 35), + [11523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 2, 0, 35), + [11525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4456), + [11527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), + [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [11531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [11533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), + [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7274), + [11537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 98), + [11539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), + [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7462), + [11545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), + [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [11553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), + [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [11557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), + [11561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), + [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), + [11565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), + [11567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [11569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [11571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [11573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [11575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 94), + [11577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [11579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [11581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), + [11583] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [11585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 213), + [11587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [11589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [11591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [11593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [11595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [11597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), + [11599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), + [11601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [11603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [11605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), + [11607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6350), + [11609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [11611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), + [11613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [11615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [11617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [11619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), + [11621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [11625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [11627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), + [11629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [11631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), + [11633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [11635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [11637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), + [11639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), + [11641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [11643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), + [11645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [11647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), + [11653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [11655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7423), + [11657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), + [11659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [11661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [11663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), + [11665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), + [11667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [11669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [11673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [11675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [11677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), + [11679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 94), + [11681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [11683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), + [11685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), + [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), + [11689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7127), + [11691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), + [11695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [11699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), + [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [11703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [11705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [11707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 139), + [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), + [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [11719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [11721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [11723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 94), + [11725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [11727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), + [11729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [11731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), + [11733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), + [11735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), + [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [11741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [11743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [11745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), + [11747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), + [11749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [11751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [11753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [11757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [11759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [11763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [11765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [11767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 6, 0, 237), + [11769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [11771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [11773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [11775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), + [11777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [11779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), + [11781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [11783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [11785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [11787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [11789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [11791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [11793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [11795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [11797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), + [11799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [11801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5089), + [11803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), + [11805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [11807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), + [11809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [11811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [11813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [11815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [11817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [11819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [11821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6601), + [11823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [11825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [11829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [11831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), + [11833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), + [11835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [11837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), + [11839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 139), + [11841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [11843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [11845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [11847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [11849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [11851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7587), + [11853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [11855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), + [11857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [11859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [11861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [11863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7816), + [11865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), + [11867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), + [11869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7322), + [11871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [11873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), + [11875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [11877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), + [11879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [11881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [11883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [11885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [11887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [11889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7388), + [11891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [11893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), + [11895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [11897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 237), + [11899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [11901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [11903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [11905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [11907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), + [11909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [11911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [11913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [11917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [11919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [11921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), + [11923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [11925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [11927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [11929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [11931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [11935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 213), + [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), + [11939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [11941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), + [11943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7166), + [11947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [11949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [11951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), + [11953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [11955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [11957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [11959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [11961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [11963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [11965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [11967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5092), + [11969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [11971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), + [11973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), + [11975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), + [11977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), + [11979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), + [11981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7649), + [11983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [11985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [11987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7646), + [11989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7620), + [11991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [11993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), + [11995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [11997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), + [11999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5883), + [12001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [12003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [12005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), + [12007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6989), + [12009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), + [12011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [12013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [12015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), + [12017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [12019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), + [12021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [12023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [12025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [12027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), + [12029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), + [12031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [12033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), }; #ifdef __cplusplus diff --git a/test/corpus/ctrl/match.nu b/test/corpus/ctrl/match.nu index a0944d0..4696f85 100644 --- a/test/corpus/ctrl/match.nu +++ b/test/corpus/ctrl/match.nu @@ -313,8 +313,8 @@ match $x { (val_variable (identifier)) (record_entry - (identifier) - (val_string)))) + (identifier) + (val_string)))) (block)))))) ===== @@ -343,4 +343,93 @@ match $x { (val_number)))) (block)) (default_arm - (block)))))) \ No newline at end of file + (block)))))) + +===== +match-010-empty +===== + +match [true] {} + +----- + +(nu_script + (pipeline + (pipe_element + (ctrl_match + (val_list + (list_body + (val_entry + (val_bool)))))))) + +===== +match-011-seperator +===== + +match null { +1 => 0 2unquote => 1 +# comment + +3 => $x.0.0, 4 => {$x.0} +# comment +, + +} + +----- + +(nu_script + (pipeline + (pipe_element + (ctrl_match + (val_nothing) + (match_arm + (match_pattern + (val_number)) + (val_number)) + (match_arm + (match_pattern + (val_string)) + (val_number)) + (comment) + (match_arm + (match_pattern + (val_number)) + (val_variable + (identifier) + (cell_path + (path) + (path)))) + (match_arm + (match_pattern + (val_number)) + (block + (pipeline + (pipe_element + (val_variable + (identifier) + (cell_path + (path))))))) + (comment))))) + +===== +match-012-unary-not-allowed +:error +===== + +match 1 { +_ => not true +} + +----- + +===== +match-013-binary-not-allowed +:error +===== + +match 1 { +_ => 1 + 1 +} + +----- diff --git a/test/corpus/expr/closure.nu b/test/corpus/expr/closure.nu index 92c77fd..2eb9943 100644 --- a/test/corpus/expr/closure.nu +++ b/test/corpus/expr/closure.nu @@ -246,3 +246,18 @@ a (identifier)) (parameter (identifier))))))) + +===== +closure-010-dummy-closure +===== + +{ +;; + ;} + +----- + +(nu_script + (pipeline + (pipe_element + (val_closure)))) diff --git a/test/corpus/expr/values.nu b/test/corpus/expr/values.nu index a10b327..dec4eaa 100644 --- a/test/corpus/expr/values.nu +++ b/test/corpus/expr/values.nu @@ -274,3 +274,19 @@ $'foo( (val_string) (comment)))))))))) (unescaped_interpolated_content))))) + +===== +values-009-dummy-parenthesized +===== + +(;; + +; +) + +----- + +(nu_script + (pipeline + (pipe_element + (expr_parenthesized))))